From 138bdd910f81ab53626bfa0dd9603f1684ec52dd Mon Sep 17 00:00:00 2001 From: blindfs Date: Wed, 5 Feb 2025 15:35:33 +0800 Subject: [PATCH] feat!: new operator `has` and `not-has` --- grammar.js | 26 +- queries/nu/highlights.scm | 67 +- src/grammar.json | 501 +- src/node-types.json | 106 +- src/parser.c | 621274 ++++++++++++++++---------------- test/corpus/pipe/where.nu | 27 + test/corpus/stmt/register.nu | 112 - 7 files changed, 312277 insertions(+), 309836 deletions(-) delete mode 100644 test/corpus/stmt/register.nu diff --git a/grammar.js b/grammar.js index 83be623..33439d1 100644 --- a/grammar.js +++ b/grammar.js @@ -583,19 +583,6 @@ module.exports = grammar({ field("file", choice(alias($.unquoted, $.val_string), $._stringish)), ), - stmt_register: ($) => - prec.left( - PREC().low, - seq( - KEYWORD().register, - field( - "plugin", - choice(alias($.unquoted, $.val_string), $.val_variable), - ), - field("signature", optional($.val_record)), - ), - ), - _stmt_hide: ($) => choice($.hide_mod, $.hide_env), hide_mod: ($) => @@ -1530,13 +1517,12 @@ function _block_body_rules(suffix) { /// Statements ["_statement" + suffix]: ( - /**⋅@type {any} */ /** @type {{ [x: string]: string; _ctrl_statement?: any; _stmt_hide?: any; _stmt_overlay?: any; stmt_register?: any; stmt_source?: any; assignment?: any; }} */ $, + /**⋅@type {any} */ /** @type {{ [x: string]: string; _ctrl_statement?: any; _stmt_hide?: any; _stmt_overlay?: any; stmt_source?: any; assignment?: any; }} */ $, ) => choice( $._ctrl_statement, $._stmt_hide, $._stmt_overlay, - $.stmt_register, $.stmt_source, alias_for_suffix($, "assignment", suffix), alias_for_suffix($, "stmt_let", suffix), @@ -2109,6 +2095,8 @@ function OPR() { // membership tests in: "in", not_in: "not-in", + has: "has", + not_has: "not-has", starts_with: "starts-with", ends_with: "ends-with", @@ -2151,12 +2139,6 @@ function PREC() { }; } -function STATEMENT_PREC() { - return { - control: 1, - }; -} - /// map of operators and their precedence function TABLE() { const multiplicatives = [ @@ -2191,6 +2173,8 @@ function PREDICATE() { const memberships = [ OPR().in, OPR().not_in, + OPR().has, + OPR().not_has, OPR().starts_with, OPR().ends_with, ]; diff --git a/queries/nu/highlights.scm b/queries/nu/highlights.scm index a03d2f0..6b0378f 100644 --- a/queries/nu/highlights.scm +++ b/queries/nu/highlights.scm @@ -19,7 +19,6 @@ "source-env" "overlay" - "register" "loop" "while" @@ -96,67 +95,11 @@ file_path: (val_string) @variable.parameter ;;; --- ;;; operators -(expr_binary [ - "+" - "-" - "*" - "/" - "mod" - "//" - "++" - "**" - "==" - "!=" - "<" - "<=" - ">" - ">=" - "=~" - "!~" - "and" - "or" - "xor" - "bit-or" - "bit-xor" - "bit-and" - "bit-shl" - "bit-shr" - "in" - "not-in" - "starts-with" - "ends-with" -] @operator ) - -(where_command [ - "+" - "-" - "*" - "/" - "mod" - "//" - "++" - "**" - "==" - "!=" - "<" - "<=" - ">" - ">=" - "=~" - "!~" - "and" - "or" - "xor" - "bit-or" - "bit-xor" - "bit-and" - "bit-shl" - "bit-shr" - "in" - "not-in" - "starts-with" - "ends-with" -] @operator) +(expr_binary + opr: _ @operator) + +(where_command + opr: _ @operator) (assignment [ "=" diff --git a/src/grammar.json b/src/grammar.json index b1d4fae..d036d36 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -325,10 +325,6 @@ "type": "SYMBOL", "name": "_stmt_overlay" }, - { - "type": "SYMBOL", - "name": "stmt_register" - }, { "type": "SYMBOL", "name": "stmt_source" @@ -685,10 +681,6 @@ "type": "SYMBOL", "name": "_stmt_overlay" }, - { - "type": "SYMBOL", - "name": "stmt_register" - }, { "type": "SYMBOL", "name": "stmt_source" @@ -1791,6 +1783,20 @@ "value": "not-in" } }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "has" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "not-has" + } + }, { "type": "IMMEDIATE_TOKEN", "content": { @@ -4751,57 +4757,6 @@ } ] }, - "stmt_register": { - "type": "PREC_LEFT", - "value": -1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "register" - }, - { - "type": "FIELD", - "name": "plugin", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "unquoted" - }, - "named": true, - "value": "val_string" - }, - { - "type": "SYMBOL", - "name": "val_variable" - } - ] - } - }, - { - "type": "FIELD", - "name": "signature", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "val_record" - }, - { - "type": "BLANK" - } - ] - } - } - ] - } - }, "_stmt_hide": { "type": "CHOICE", "members": [ @@ -5888,6 +5843,168 @@ ] } }, + { + "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": "has" + } + }, + { + "type": "FIELD", + "name": "rhs", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_value" + }, + { + "type": "SYMBOL", + "name": "val_range" + }, + { + "type": "SYMBOL", + "name": "expr_unary" + }, + { + "type": "SYMBOL", + "name": "expr_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": "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": "not-has" + } + }, + { + "type": "FIELD", + "name": "rhs", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_value" + }, + { + "type": "SYMBOL", + "name": "val_range" + }, + { + "type": "SYMBOL", + "name": "expr_unary" + }, + { + "type": "SYMBOL", + "name": "expr_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": "PREC_LEFT", "value": 9, @@ -7966,6 +8083,118 @@ ] } }, + { + "type": "PREC_LEFT", + "value": 9, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "lhs", + "content": { + "type": "SYMBOL", + "name": "_expr_binary_expression" + } + }, + { + "type": "FIELD", + "name": "opr", + "content": { + "type": "STRING", + "value": "has" + } + }, + { + "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": 9, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "lhs", + "content": { + "type": "SYMBOL", + "name": "_expr_binary_expression" + } + }, + { + "type": "FIELD", + "name": "opr", + "content": { + "type": "STRING", + "value": "not-has" + } + }, + { + "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": 9, @@ -10071,6 +10300,160 @@ ] } }, + { + "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": "STRING", + "value": "has" + } + }, + { + "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": "STRING", + "value": "not-has" + } + }, + { + "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, diff --git a/src/node-types.json b/src/node-types.json index 0ac1e2b..af5cbdd 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -157,10 +157,6 @@ "type": "stmt_mut", "named": true }, - { - "type": "stmt_register", - "named": true - }, { "type": "stmt_source", "named": true @@ -1795,6 +1791,10 @@ "type": "ends-with", "named": false }, + { + "type": "has", + "named": false + }, { "type": "in", "named": false @@ -1803,6 +1803,10 @@ "type": "mod", "named": false }, + { + "type": "not-has", + "named": false + }, { "type": "not-in", "named": false @@ -1993,10 +1997,6 @@ "type": "stmt_mut", "named": true }, - { - "type": "stmt_register", - "named": true - }, { "type": "stmt_source", "named": true @@ -2100,10 +2100,6 @@ "type": "stmt_mut", "named": true }, - { - "type": "stmt_register", - "named": true - }, { "type": "stmt_source", "named": true @@ -2211,10 +2207,6 @@ "type": "stmt_mut", "named": true }, - { - "type": "stmt_register", - "named": true - }, { "type": "stmt_source", "named": true @@ -3011,10 +3003,6 @@ "type": "stmt_mut", "named": true }, - { - "type": "stmt_register", - "named": true - }, { "type": "stmt_source", "named": true @@ -4252,36 +4240,6 @@ } } }, - { - "type": "stmt_register", - "named": true, - "fields": { - "plugin": { - "multiple": false, - "required": true, - "types": [ - { - "type": "val_string", - "named": true - }, - { - "type": "val_variable", - "named": true - } - ] - }, - "signature": { - "multiple": false, - "required": false, - "types": [ - { - "type": "val_record", - "named": true - } - ] - } - } - }, { "type": "stmt_source", "named": true, @@ -4443,10 +4401,6 @@ "type": "stmt_mut", "named": true }, - { - "type": "stmt_register", - "named": true - }, { "type": "stmt_source", "named": true @@ -5007,10 +4961,18 @@ "type": "expr_unary", "named": true }, + { + "type": "has", + "named": false + }, { "type": "in", "named": false }, + { + "type": "not-has", + "named": false + }, { "type": "not-in", "named": false @@ -5133,10 +5095,18 @@ "type": "ends-with", "named": false }, + { + "type": "has", + "named": false + }, { "type": "in", "named": false }, + { + "type": "not-has", + "named": false + }, { "type": "not-in", "named": false @@ -5215,10 +5185,18 @@ "type": "expr_unary", "named": true }, + { + "type": "has", + "named": false + }, { "type": "in", "named": false }, + { + "type": "not-has", + "named": false + }, { "type": "not-in", "named": false @@ -5357,10 +5335,18 @@ "type": "expr_unary", "named": true }, + { + "type": "has", + "named": false + }, { "type": "in", "named": false }, + { + "type": "not-has", + "named": false + }, { "type": "not-in", "named": false @@ -5890,6 +5876,10 @@ "type": "glob", "named": false }, + { + "type": "has", + "named": false + }, { "type": "hex_digit", "named": true @@ -5978,6 +5968,10 @@ "type": "not", "named": false }, + { + "type": "not-has", + "named": false + }, { "type": "not-in", "named": false @@ -6090,10 +6084,6 @@ "type": "record", "named": false }, - { - "type": "register", - "named": false - }, { "type": "return", "named": false diff --git a/src/parser.c b/src/parser.c index 2b5b513..7884b37 100644 --- a/src/parser.c +++ b/src/parser.c @@ -13,15 +13,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 7871 -#define LARGE_STATE_COUNT 1701 -#define SYMBOL_COUNT 517 +#define STATE_COUNT 7859 +#define LARGE_STATE_COUNT 1748 +#define SYMBOL_COUNT 520 #define ALIAS_COUNT 4 -#define TOKEN_COUNT 309 +#define TOKEN_COUNT 313 #define EXTERNAL_TOKEN_COUNT 3 -#define FIELD_COUNT 72 +#define FIELD_COUNT 71 #define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 280 +#define PRODUCTION_ID_COUNT 276 enum ts_symbol_identifiers { sym_identifier = 1, @@ -99,451 +99,454 @@ enum ts_symbol_identifiers { anon_sym_or = 73, anon_sym_in = 74, anon_sym_not_DASHin = 75, - anon_sym_starts_DASHwith = 76, - anon_sym_ends_DASHwith = 77, - anon_sym_EQ_EQ = 78, - anon_sym_BANG_EQ = 79, - anon_sym_LT = 80, - anon_sym_LT_EQ = 81, - anon_sym_GT = 82, - anon_sym_GT_EQ = 83, - aux_sym_cmd_identifier_token41 = 84, - sym_long_flag_identifier = 85, - sym__newline = 86, - sym__space = 87, - anon_sym_SEMI = 88, - anon_sym_PIPE = 89, - anon_sym_err_GT_PIPE = 90, - anon_sym_out_GT_PIPE = 91, - anon_sym_e_GT_PIPE = 92, - anon_sym_o_GT_PIPE = 93, - anon_sym_err_PLUSout_GT_PIPE = 94, - anon_sym_out_PLUSerr_GT_PIPE = 95, - anon_sym_o_PLUSe_GT_PIPE = 96, - anon_sym_e_PLUSo_GT_PIPE = 97, - anon_sym_def = 98, - anon_sym_export_DASHenv = 99, - anon_sym_extern = 100, - anon_sym_module = 101, - anon_sym_use = 102, - anon_sym_COLON = 103, - anon_sym_DASH_GT = 104, - anon_sym_LBRACK = 105, - anon_sym_RBRACK = 106, - anon_sym_LPAREN = 107, - anon_sym_RPAREN = 108, - anon_sym_COMMA = 109, - anon_sym_DOLLAR = 110, - anon_sym_any = 111, - anon_sym_binary = 112, - anon_sym_block = 113, - anon_sym_bool = 114, - anon_sym_cell_DASHpath = 115, - anon_sym_closure = 116, - anon_sym_cond = 117, - anon_sym_datetime = 118, - anon_sym_directory = 119, - anon_sym_duration = 120, - anon_sym_error = 121, - anon_sym_expr = 122, - anon_sym_float = 123, - anon_sym_decimal = 124, - anon_sym_filesize = 125, - anon_sym_full_DASHcell_DASHpath = 126, - anon_sym_glob = 127, - anon_sym_int = 128, - anon_sym_import_DASHpattern = 129, - anon_sym_keyword = 130, - anon_sym_math = 131, - anon_sym_nothing = 132, - anon_sym_number = 133, - anon_sym_one_DASHof = 134, - anon_sym_operator = 135, - anon_sym_path = 136, - anon_sym_range = 137, - anon_sym_signature = 138, - anon_sym_string = 139, - anon_sym_table = 140, - anon_sym_variable = 141, - anon_sym_var_DASHwith_DASHopt_DASHtype = 142, - anon_sym_record = 143, - anon_sym_list = 144, - anon_sym_GT2 = 145, - anon_sym_AT = 146, - anon_sym_DOT_DOT_DOT = 147, - anon_sym_QMARK = 148, - anon_sym_DASH_DASH = 149, - anon_sym_DASH2 = 150, - sym_param_short_flag_identifier = 151, - anon_sym_break = 152, - anon_sym_continue = 153, - anon_sym_for = 154, - anon_sym_in2 = 155, - anon_sym_loop = 156, - anon_sym_make = 157, - anon_sym_while = 158, - anon_sym_do = 159, - anon_sym_if = 160, - anon_sym_else = 161, - anon_sym_match = 162, - anon_sym_LBRACE = 163, - anon_sym_RBRACE = 164, - anon_sym_EQ_GT = 165, - anon_sym__ = 166, - anon_sym_DOT_DOT = 167, - anon_sym_DOLLAR2 = 168, - anon_sym_try = 169, - anon_sym_catch = 170, - anon_sym_return = 171, - anon_sym_source = 172, - anon_sym_source_DASHenv = 173, - anon_sym_register = 174, - anon_sym_hide = 175, - anon_sym_hide_DASHenv = 176, - anon_sym_overlay = 177, - anon_sym_new = 178, - anon_sym_as = 179, - anon_sym_STAR2 = 180, - anon_sym_QMARK2 = 181, - anon_sym_where = 182, - anon_sym_and2 = 183, - anon_sym_xor2 = 184, - anon_sym_or2 = 185, - anon_sym_not_DASHin2 = 186, - anon_sym_starts_DASHwith2 = 187, - anon_sym_ends_DASHwith2 = 188, - anon_sym_EQ_EQ2 = 189, - anon_sym_BANG_EQ2 = 190, - anon_sym_LT2 = 191, - anon_sym_LT_EQ2 = 192, - anon_sym_GT_EQ2 = 193, - anon_sym_EQ_TILDE2 = 194, - anon_sym_BANG_TILDE2 = 195, - aux_sym_expr_unary_token1 = 196, - anon_sym_LPAREN2 = 197, - anon_sym_STAR_STAR2 = 198, - anon_sym_PLUS_PLUS2 = 199, - anon_sym_SLASH2 = 200, - anon_sym_mod2 = 201, - anon_sym_SLASH_SLASH2 = 202, - anon_sym_PLUS2 = 203, - anon_sym_bit_DASHshl2 = 204, - anon_sym_bit_DASHshr2 = 205, - anon_sym_bit_DASHand2 = 206, - anon_sym_bit_DASHxor2 = 207, - anon_sym_bit_DASHor2 = 208, - anon_sym_DOT_DOT_DOT_LPAREN = 209, - anon_sym_DOT_DOT2 = 210, - anon_sym_DOT = 211, - anon_sym_DOT_DOT_EQ = 212, - anon_sym_DOT_DOT_LT = 213, - anon_sym_DOT_DOT_EQ2 = 214, - anon_sym_DOT_DOT_LT2 = 215, - aux_sym__immediate_decimal_token1 = 216, - aux_sym__immediate_decimal_token2 = 217, - aux_sym__immediate_decimal_token3 = 218, - aux_sym__immediate_decimal_token4 = 219, - aux_sym__immediate_decimal_token5 = 220, - anon_sym_null = 221, - anon_sym_RPAREN2 = 222, - anon_sym_true = 223, - anon_sym_false = 224, - anon_sym_DOT_DOT_DOT_DOLLAR = 225, - anon_sym_nu = 226, - anon_sym_env = 227, - aux_sym__val_number_decimal_token1 = 228, - aux_sym__val_number_decimal_token2 = 229, - aux_sym__val_number_decimal_token3 = 230, - aux_sym__val_number_decimal_token4 = 231, - aux_sym__val_number_token1 = 232, - aux_sym__val_number_token2 = 233, - aux_sym__val_number_token3 = 234, - aux_sym__val_number_token4 = 235, - aux_sym__val_number_token5 = 236, - aux_sym__val_number_token6 = 237, - anon_sym_0b = 238, - sym_filesize_unit = 239, - sym_duration_unit = 240, - anon_sym_0o = 241, - anon_sym_0x = 242, - anon_sym_LBRACK2 = 243, - sym_hex_digit = 244, - sym_val_date = 245, - anon_sym_DQUOTE = 246, - sym__escaped_str_content = 247, - sym__str_single_quotes = 248, - sym__str_back_ticks = 249, - sym_escape_sequence = 250, - sym_escaped_interpolated_content = 251, - sym_unescaped_interpolated_content = 252, - anon_sym_DOLLAR_SQUOTE = 253, - anon_sym_SQUOTE = 254, - anon_sym_DOLLAR_DQUOTE = 255, - anon_sym_DQUOTE2 = 256, - sym_inter_escape_sequence = 257, - anon_sym_DOT_DOT_DOT_LBRACK = 258, - anon_sym_DOT_DOT_DOT_LBRACE = 259, - sym__entry_separator = 260, - anon_sym_COLON2 = 261, - aux_sym__record_key_token1 = 262, - sym__table_head_separator = 263, - anon_sym_DOT2 = 264, - aux_sym_path_token1 = 265, - aux_sym_env_var_token1 = 266, - aux_sym_env_var_token2 = 267, - anon_sym_CARET = 268, - aux_sym_command_token1 = 269, - anon_sym_err_GT = 270, - anon_sym_out_GT = 271, - anon_sym_e_GT = 272, - anon_sym_o_GT = 273, - anon_sym_err_PLUSout_GT = 274, - anon_sym_out_PLUSerr_GT = 275, - anon_sym_o_PLUSe_GT = 276, - anon_sym_e_PLUSo_GT = 277, - anon_sym_err_GT_GT = 278, - anon_sym_out_GT_GT = 279, - anon_sym_e_GT_GT = 280, - anon_sym_o_GT_GT = 281, - anon_sym_err_PLUSout_GT_GT = 282, - anon_sym_out_PLUSerr_GT_GT = 283, - anon_sym_o_PLUSe_GT_GT = 284, - anon_sym_e_PLUSo_GT_GT = 285, - anon_sym_EQ2 = 286, - sym_short_flag_identifier = 287, - sym__unquoted_naive = 288, - aux_sym_unquoted_token1 = 289, - aux_sym_unquoted_token2 = 290, - aux_sym_unquoted_token3 = 291, - aux_sym_unquoted_token4 = 292, - aux_sym__unquoted_in_list_token1 = 293, - aux_sym__unquoted_in_list_token2 = 294, - aux_sym__unquoted_in_list_token3 = 295, - aux_sym__unquoted_in_list_token4 = 296, - aux_sym__unquoted_in_record_token1 = 297, - aux_sym__unquoted_in_record_token2 = 298, - aux_sym__unquoted_in_record_token3 = 299, - aux_sym__unquoted_in_record_token4 = 300, - aux_sym__unquoted_with_expr_token1 = 301, - aux_sym__unquoted_in_list_with_expr_token1 = 302, - aux_sym__unquoted_in_record_with_expr_token1 = 303, - anon_sym_POUND = 304, - aux_sym_comment_token1 = 305, - sym_raw_string_begin = 306, - sym_raw_string_content = 307, - sym_raw_string_end = 308, - sym_nu_script = 309, - sym_shebang = 310, - sym__block_body_statement = 311, - sym__declaration = 312, - sym_decl_alias = 313, - sym_stmt_let = 314, - sym_stmt_mut = 315, - sym_stmt_const = 316, - sym_assignment = 317, - sym__assignment_pattern = 318, - sym__mutable_assignment_pattern = 319, - sym__statement = 320, - sym_pipeline = 321, - sym__block_body_statement_parenthesized = 322, - sym__declaration_parenthesized = 323, - sym_decl_alias_parenthesized = 324, - sym_stmt_let_parenthesized = 325, - sym_stmt_mut_parenthesized = 326, - sym_stmt_const_parenthesized = 327, - sym_assignment_parenthesized = 328, - sym__assignment_pattern_parenthesized = 329, - sym__mutable_assignment_pattern_parenthesized = 330, - sym__statement_parenthesized = 331, - sym_pipeline_parenthesized = 332, - sym__block_body = 333, - sym_cmd_identifier = 334, - sym__command_name = 335, - sym__variable_name = 336, - aux_sym__pipe_separator = 337, - sym_decl_def = 338, - sym_decl_export = 339, - sym_decl_extern = 340, - sym_decl_module = 341, - sym_decl_use = 342, - sym_returns = 343, - sym__one_type = 344, - sym__multiple_types = 345, - sym_parameter_parens = 346, - sym_parameter_bracks = 347, - sym_parameter_pipes = 348, - sym_parameter = 349, - sym__param_name = 350, - sym_param_type = 351, - sym_param_value = 352, - sym__type_annotation = 353, - sym__all_type = 354, - sym_flat_type = 355, - sym_collection_type = 356, - sym_list_type = 357, - sym_param_cmd = 358, - sym_param_rest = 359, - sym_param_opt = 360, - sym_param_long_flag = 361, - sym_flag_capsule = 362, - sym_param_short_flag = 363, - sym__ctrl_statement = 364, - sym__ctrl_expression = 365, - sym__ctrl_expression_parenthesized = 366, - sym_ctrl_for = 367, - sym_ctrl_loop = 368, - sym_ctrl_error = 369, - sym_ctrl_while = 370, - sym_ctrl_do = 371, - sym_ctrl_do_parenthesized = 372, - sym_ctrl_if = 373, - sym_ctrl_if_parenthesized = 374, - sym_ctrl_match = 375, - sym_match_arm = 376, - sym_default_arm = 377, - sym_match_pattern = 378, - sym__match_pattern = 379, - sym_match_guard = 380, - sym__match_pattern_expression = 381, - sym__match_pattern_value = 382, - sym__match_pattern_list = 383, - sym__match_pattern_rest = 384, - sym__match_pattern_record = 385, - sym_ctrl_try = 386, - sym_ctrl_try_parenthesized = 387, - sym_ctrl_return = 388, - sym_pipe_element = 389, - sym_pipe_element_parenthesized = 390, - sym_stmt_source = 391, - sym_stmt_register = 392, - sym__stmt_hide = 393, - sym_hide_mod = 394, - sym_hide_env = 395, - sym__stmt_overlay = 396, - sym_overlay_list = 397, - sym_overlay_hide = 398, - sym_overlay_new = 399, - sym_overlay_use = 400, - sym_scope_pattern = 401, - sym_wild_card = 402, - sym_command_list = 403, - sym_block = 404, - sym__blosure = 405, - sym__where_predicate_lhs = 406, - sym_where_command = 407, - sym_where_command_parenthesized = 408, - sym__binary_predicate = 409, - sym__binary_predicate_parenthesized = 410, - sym__predicate = 411, - sym__expression = 412, - sym__expression_parenthesized = 413, - sym_expr_unary = 414, - sym__expr_unary_minus = 415, - sym_expr_binary = 416, - sym_expr_binary_parenthesized = 417, - sym__expr_binary_expression = 418, - sym__expr_binary_expression_parenthesized = 419, - sym_expr_parenthesized = 420, - sym__spread_parenthesized = 421, - sym__expr_parenthesized_immediate = 422, - sym__parenthesized_body = 423, - sym_val_range = 424, - sym__val_range = 425, - sym__val_range_with_end = 426, - sym__immediate_decimal = 427, - sym__value = 428, - sym_val_nothing = 429, - sym_val_bool = 430, - sym__spread_variable = 431, - sym_val_variable = 432, - sym_val_number = 433, - sym__val_number_decimal = 434, - sym__val_number = 435, - sym_val_duration = 436, - sym_val_filesize = 437, - sym_val_binary = 438, - sym_val_string = 439, - sym__raw_str = 440, - sym__str_double_quotes = 441, - sym_val_interpolated = 442, - sym__inter_single_quotes = 443, - sym__inter_double_quotes = 444, - sym_expr_interpolated = 445, - sym_val_list = 446, - sym__spread_list = 447, - sym_list_body = 448, - sym_val_entry = 449, - sym_val_record = 450, - sym__spread_record = 451, - sym_record_body = 452, - sym_record_entry = 453, - sym__record_key = 454, - sym_val_table = 455, - sym_val_closure = 456, - sym_cell_path = 457, - sym_path = 458, - sym_env_var = 459, - sym_command = 460, - sym__command_parenthesized = 461, - sym__cmd_arg = 462, - sym_redirection = 463, - sym__flag = 464, - sym__flags_parenthesized = 465, - sym_short_flag = 466, - sym_long_flag = 467, - sym_unquoted = 468, - sym__unquoted_in_list = 469, - sym__unquoted_in_record = 470, - sym__unquoted_with_expr = 471, - sym__unquoted_in_list_with_expr = 472, - sym__unquoted_in_record_with_expr = 473, - sym__unquoted_anonymous_prefix = 474, - sym_comment = 475, - aux_sym_shebang_repeat1 = 476, - aux_sym_pipeline_repeat1 = 477, - aux_sym_pipeline_parenthesized_repeat1 = 478, - aux_sym__block_body_repeat1 = 479, - aux_sym__block_body_repeat2 = 480, - aux_sym_decl_def_repeat1 = 481, - aux_sym__multiple_types_repeat1 = 482, - aux_sym__multiple_types_repeat2 = 483, - aux_sym_parameter_parens_repeat1 = 484, - aux_sym_parameter_repeat1 = 485, - aux_sym_parameter_repeat2 = 486, - aux_sym_collection_type_repeat1 = 487, - aux_sym_ctrl_do_repeat1 = 488, - aux_sym_ctrl_do_repeat2 = 489, - aux_sym_ctrl_do_parenthesized_repeat1 = 490, - aux_sym_ctrl_do_parenthesized_repeat2 = 491, - aux_sym_ctrl_do_parenthesized_repeat3 = 492, - aux_sym_ctrl_match_repeat1 = 493, - aux_sym_match_pattern_repeat1 = 494, - aux_sym__match_pattern_list_repeat1 = 495, - aux_sym__match_pattern_record_repeat1 = 496, - aux_sym_pipe_element_repeat1 = 497, - aux_sym_pipe_element_repeat2 = 498, - aux_sym_pipe_element_parenthesized_repeat1 = 499, - aux_sym_overlay_hide_repeat1 = 500, - aux_sym_command_list_repeat1 = 501, - aux_sym__parenthesized_body_repeat1 = 502, - aux_sym__parenthesized_body_repeat2 = 503, - aux_sym_val_binary_repeat1 = 504, - aux_sym__str_double_quotes_repeat1 = 505, - aux_sym__inter_single_quotes_repeat1 = 506, - aux_sym__inter_double_quotes_repeat1 = 507, - aux_sym_list_body_repeat1 = 508, - aux_sym_record_body_repeat1 = 509, - aux_sym_val_table_repeat1 = 510, - aux_sym_cell_path_repeat1 = 511, - aux_sym_command_repeat1 = 512, - aux_sym__command_parenthesized_repeat1 = 513, - aux_sym__unquoted_with_expr_repeat1 = 514, - aux_sym__unquoted_in_list_with_expr_repeat1 = 515, - aux_sym__unquoted_in_record_with_expr_repeat1 = 516, - anon_alias_sym__head = 517, - anon_alias_sym__prefix = 518, - anon_alias_sym__unit = 519, - anon_alias_sym_quoted = 520, + anon_sym_has = 76, + anon_sym_not_DASHhas = 77, + anon_sym_starts_DASHwith = 78, + anon_sym_ends_DASHwith = 79, + anon_sym_EQ_EQ = 80, + anon_sym_BANG_EQ = 81, + anon_sym_LT = 82, + anon_sym_LT_EQ = 83, + anon_sym_GT = 84, + anon_sym_GT_EQ = 85, + aux_sym_cmd_identifier_token41 = 86, + sym_long_flag_identifier = 87, + sym__newline = 88, + sym__space = 89, + anon_sym_SEMI = 90, + anon_sym_PIPE = 91, + anon_sym_err_GT_PIPE = 92, + anon_sym_out_GT_PIPE = 93, + anon_sym_e_GT_PIPE = 94, + anon_sym_o_GT_PIPE = 95, + anon_sym_err_PLUSout_GT_PIPE = 96, + anon_sym_out_PLUSerr_GT_PIPE = 97, + anon_sym_o_PLUSe_GT_PIPE = 98, + anon_sym_e_PLUSo_GT_PIPE = 99, + anon_sym_def = 100, + anon_sym_export_DASHenv = 101, + anon_sym_extern = 102, + anon_sym_module = 103, + anon_sym_use = 104, + anon_sym_COLON = 105, + anon_sym_DASH_GT = 106, + anon_sym_LBRACK = 107, + anon_sym_RBRACK = 108, + anon_sym_LPAREN = 109, + anon_sym_RPAREN = 110, + anon_sym_COMMA = 111, + anon_sym_DOLLAR = 112, + anon_sym_any = 113, + anon_sym_binary = 114, + anon_sym_block = 115, + anon_sym_bool = 116, + anon_sym_cell_DASHpath = 117, + anon_sym_closure = 118, + anon_sym_cond = 119, + anon_sym_datetime = 120, + anon_sym_directory = 121, + anon_sym_duration = 122, + anon_sym_error = 123, + anon_sym_expr = 124, + anon_sym_float = 125, + anon_sym_decimal = 126, + anon_sym_filesize = 127, + anon_sym_full_DASHcell_DASHpath = 128, + anon_sym_glob = 129, + anon_sym_int = 130, + anon_sym_import_DASHpattern = 131, + anon_sym_keyword = 132, + anon_sym_math = 133, + anon_sym_nothing = 134, + anon_sym_number = 135, + anon_sym_one_DASHof = 136, + anon_sym_operator = 137, + anon_sym_path = 138, + anon_sym_range = 139, + anon_sym_signature = 140, + anon_sym_string = 141, + anon_sym_table = 142, + anon_sym_variable = 143, + anon_sym_var_DASHwith_DASHopt_DASHtype = 144, + anon_sym_record = 145, + anon_sym_list = 146, + anon_sym_GT2 = 147, + anon_sym_AT = 148, + anon_sym_DOT_DOT_DOT = 149, + anon_sym_QMARK = 150, + anon_sym_DASH_DASH = 151, + anon_sym_DASH2 = 152, + sym_param_short_flag_identifier = 153, + anon_sym_break = 154, + anon_sym_continue = 155, + anon_sym_for = 156, + anon_sym_in2 = 157, + anon_sym_loop = 158, + anon_sym_make = 159, + anon_sym_while = 160, + anon_sym_do = 161, + anon_sym_if = 162, + anon_sym_else = 163, + anon_sym_match = 164, + anon_sym_LBRACE = 165, + anon_sym_RBRACE = 166, + anon_sym_EQ_GT = 167, + anon_sym__ = 168, + anon_sym_DOT_DOT = 169, + anon_sym_DOLLAR2 = 170, + anon_sym_try = 171, + anon_sym_catch = 172, + anon_sym_return = 173, + anon_sym_source = 174, + anon_sym_source_DASHenv = 175, + anon_sym_hide = 176, + anon_sym_hide_DASHenv = 177, + anon_sym_overlay = 178, + anon_sym_new = 179, + anon_sym_as = 180, + anon_sym_STAR2 = 181, + anon_sym_QMARK2 = 182, + anon_sym_where = 183, + anon_sym_and2 = 184, + anon_sym_xor2 = 185, + anon_sym_or2 = 186, + anon_sym_not_DASHin2 = 187, + anon_sym_has2 = 188, + anon_sym_not_DASHhas2 = 189, + anon_sym_starts_DASHwith2 = 190, + anon_sym_ends_DASHwith2 = 191, + anon_sym_EQ_EQ2 = 192, + anon_sym_BANG_EQ2 = 193, + anon_sym_LT2 = 194, + anon_sym_LT_EQ2 = 195, + anon_sym_GT_EQ2 = 196, + anon_sym_EQ_TILDE2 = 197, + anon_sym_BANG_TILDE2 = 198, + aux_sym_expr_unary_token1 = 199, + anon_sym_LPAREN2 = 200, + anon_sym_STAR_STAR2 = 201, + anon_sym_PLUS_PLUS2 = 202, + anon_sym_SLASH2 = 203, + anon_sym_mod2 = 204, + anon_sym_SLASH_SLASH2 = 205, + anon_sym_PLUS2 = 206, + anon_sym_bit_DASHshl2 = 207, + anon_sym_bit_DASHshr2 = 208, + anon_sym_bit_DASHand2 = 209, + anon_sym_bit_DASHxor2 = 210, + anon_sym_bit_DASHor2 = 211, + anon_sym_DOT_DOT_DOT_LPAREN = 212, + anon_sym_DOT_DOT2 = 213, + anon_sym_DOT = 214, + anon_sym_DOT_DOT_EQ = 215, + anon_sym_DOT_DOT_LT = 216, + anon_sym_DOT_DOT_EQ2 = 217, + anon_sym_DOT_DOT_LT2 = 218, + aux_sym__immediate_decimal_token1 = 219, + aux_sym__immediate_decimal_token2 = 220, + aux_sym__immediate_decimal_token3 = 221, + aux_sym__immediate_decimal_token4 = 222, + aux_sym__immediate_decimal_token5 = 223, + anon_sym_null = 224, + anon_sym_RPAREN2 = 225, + anon_sym_true = 226, + anon_sym_false = 227, + anon_sym_DOT_DOT_DOT_DOLLAR = 228, + anon_sym_nu = 229, + anon_sym_env = 230, + aux_sym__val_number_decimal_token1 = 231, + aux_sym__val_number_decimal_token2 = 232, + aux_sym__val_number_decimal_token3 = 233, + aux_sym__val_number_decimal_token4 = 234, + aux_sym__val_number_token1 = 235, + aux_sym__val_number_token2 = 236, + aux_sym__val_number_token3 = 237, + aux_sym__val_number_token4 = 238, + aux_sym__val_number_token5 = 239, + aux_sym__val_number_token6 = 240, + anon_sym_0b = 241, + sym_filesize_unit = 242, + sym_duration_unit = 243, + anon_sym_0o = 244, + anon_sym_0x = 245, + anon_sym_LBRACK2 = 246, + sym_hex_digit = 247, + sym_val_date = 248, + anon_sym_DQUOTE = 249, + sym__escaped_str_content = 250, + sym__str_single_quotes = 251, + sym__str_back_ticks = 252, + sym_escape_sequence = 253, + sym_escaped_interpolated_content = 254, + sym_unescaped_interpolated_content = 255, + anon_sym_DOLLAR_SQUOTE = 256, + anon_sym_SQUOTE = 257, + anon_sym_DOLLAR_DQUOTE = 258, + anon_sym_DQUOTE2 = 259, + sym_inter_escape_sequence = 260, + anon_sym_DOT_DOT_DOT_LBRACK = 261, + anon_sym_DOT_DOT_DOT_LBRACE = 262, + sym__entry_separator = 263, + anon_sym_register = 264, + anon_sym_COLON2 = 265, + aux_sym__record_key_token1 = 266, + sym__table_head_separator = 267, + anon_sym_DOT2 = 268, + aux_sym_path_token1 = 269, + aux_sym_env_var_token1 = 270, + aux_sym_env_var_token2 = 271, + anon_sym_CARET = 272, + aux_sym_command_token1 = 273, + anon_sym_err_GT = 274, + anon_sym_out_GT = 275, + anon_sym_e_GT = 276, + anon_sym_o_GT = 277, + anon_sym_err_PLUSout_GT = 278, + anon_sym_out_PLUSerr_GT = 279, + anon_sym_o_PLUSe_GT = 280, + anon_sym_e_PLUSo_GT = 281, + anon_sym_err_GT_GT = 282, + anon_sym_out_GT_GT = 283, + anon_sym_e_GT_GT = 284, + anon_sym_o_GT_GT = 285, + anon_sym_err_PLUSout_GT_GT = 286, + anon_sym_out_PLUSerr_GT_GT = 287, + anon_sym_o_PLUSe_GT_GT = 288, + anon_sym_e_PLUSo_GT_GT = 289, + anon_sym_EQ2 = 290, + sym_short_flag_identifier = 291, + sym__unquoted_naive = 292, + aux_sym_unquoted_token1 = 293, + aux_sym_unquoted_token2 = 294, + aux_sym_unquoted_token3 = 295, + aux_sym_unquoted_token4 = 296, + aux_sym__unquoted_in_list_token1 = 297, + aux_sym__unquoted_in_list_token2 = 298, + aux_sym__unquoted_in_list_token3 = 299, + aux_sym__unquoted_in_list_token4 = 300, + aux_sym__unquoted_in_record_token1 = 301, + aux_sym__unquoted_in_record_token2 = 302, + aux_sym__unquoted_in_record_token3 = 303, + aux_sym__unquoted_in_record_token4 = 304, + aux_sym__unquoted_with_expr_token1 = 305, + aux_sym__unquoted_in_list_with_expr_token1 = 306, + aux_sym__unquoted_in_record_with_expr_token1 = 307, + anon_sym_POUND = 308, + aux_sym_comment_token1 = 309, + sym_raw_string_begin = 310, + sym_raw_string_content = 311, + sym_raw_string_end = 312, + sym_nu_script = 313, + sym_shebang = 314, + sym__block_body_statement = 315, + sym__declaration = 316, + sym_decl_alias = 317, + sym_stmt_let = 318, + sym_stmt_mut = 319, + sym_stmt_const = 320, + sym_assignment = 321, + sym__assignment_pattern = 322, + sym__mutable_assignment_pattern = 323, + sym__statement = 324, + sym_pipeline = 325, + sym__block_body_statement_parenthesized = 326, + sym__declaration_parenthesized = 327, + sym_decl_alias_parenthesized = 328, + sym_stmt_let_parenthesized = 329, + sym_stmt_mut_parenthesized = 330, + sym_stmt_const_parenthesized = 331, + sym_assignment_parenthesized = 332, + sym__assignment_pattern_parenthesized = 333, + sym__mutable_assignment_pattern_parenthesized = 334, + sym__statement_parenthesized = 335, + sym_pipeline_parenthesized = 336, + sym__block_body = 337, + sym_cmd_identifier = 338, + sym__command_name = 339, + sym__variable_name = 340, + aux_sym__pipe_separator = 341, + sym_decl_def = 342, + sym_decl_export = 343, + sym_decl_extern = 344, + sym_decl_module = 345, + sym_decl_use = 346, + sym_returns = 347, + sym__one_type = 348, + sym__multiple_types = 349, + sym_parameter_parens = 350, + sym_parameter_bracks = 351, + sym_parameter_pipes = 352, + sym_parameter = 353, + sym__param_name = 354, + sym_param_type = 355, + sym_param_value = 356, + sym__type_annotation = 357, + sym__all_type = 358, + sym_flat_type = 359, + sym_collection_type = 360, + sym_list_type = 361, + sym_param_cmd = 362, + sym_param_rest = 363, + sym_param_opt = 364, + sym_param_long_flag = 365, + sym_flag_capsule = 366, + sym_param_short_flag = 367, + sym__ctrl_statement = 368, + sym__ctrl_expression = 369, + sym__ctrl_expression_parenthesized = 370, + sym_ctrl_for = 371, + sym_ctrl_loop = 372, + sym_ctrl_error = 373, + sym_ctrl_while = 374, + sym_ctrl_do = 375, + sym_ctrl_do_parenthesized = 376, + sym_ctrl_if = 377, + sym_ctrl_if_parenthesized = 378, + sym_ctrl_match = 379, + sym_match_arm = 380, + sym_default_arm = 381, + sym_match_pattern = 382, + sym__match_pattern = 383, + sym_match_guard = 384, + sym__match_pattern_expression = 385, + sym__match_pattern_value = 386, + sym__match_pattern_list = 387, + sym__match_pattern_rest = 388, + sym__match_pattern_record = 389, + sym_ctrl_try = 390, + sym_ctrl_try_parenthesized = 391, + sym_ctrl_return = 392, + sym_pipe_element = 393, + sym_pipe_element_parenthesized = 394, + sym_stmt_source = 395, + sym__stmt_hide = 396, + sym_hide_mod = 397, + sym_hide_env = 398, + sym__stmt_overlay = 399, + sym_overlay_list = 400, + sym_overlay_hide = 401, + sym_overlay_new = 402, + sym_overlay_use = 403, + sym_scope_pattern = 404, + sym_wild_card = 405, + sym_command_list = 406, + sym_block = 407, + sym__blosure = 408, + sym__where_predicate_lhs = 409, + sym_where_command = 410, + sym_where_command_parenthesized = 411, + sym__binary_predicate = 412, + sym__binary_predicate_parenthesized = 413, + sym__predicate = 414, + sym__expression = 415, + sym__expression_parenthesized = 416, + sym_expr_unary = 417, + sym__expr_unary_minus = 418, + sym_expr_binary = 419, + sym_expr_binary_parenthesized = 420, + sym__expr_binary_expression = 421, + sym__expr_binary_expression_parenthesized = 422, + sym_expr_parenthesized = 423, + sym__spread_parenthesized = 424, + sym__expr_parenthesized_immediate = 425, + sym__parenthesized_body = 426, + sym_val_range = 427, + sym__val_range = 428, + sym__val_range_with_end = 429, + sym__immediate_decimal = 430, + sym__value = 431, + sym_val_nothing = 432, + sym_val_bool = 433, + sym__spread_variable = 434, + sym_val_variable = 435, + sym_val_number = 436, + sym__val_number_decimal = 437, + sym__val_number = 438, + sym_val_duration = 439, + sym_val_filesize = 440, + sym_val_binary = 441, + sym_val_string = 442, + sym__raw_str = 443, + sym__str_double_quotes = 444, + sym_val_interpolated = 445, + sym__inter_single_quotes = 446, + sym__inter_double_quotes = 447, + sym_expr_interpolated = 448, + sym_val_list = 449, + sym__spread_list = 450, + sym_list_body = 451, + sym_val_entry = 452, + sym_val_record = 453, + sym__spread_record = 454, + sym_record_body = 455, + sym_record_entry = 456, + sym__record_key = 457, + sym_val_table = 458, + sym_val_closure = 459, + sym_cell_path = 460, + sym_path = 461, + sym_env_var = 462, + sym_command = 463, + sym__command_parenthesized = 464, + sym__cmd_arg = 465, + sym_redirection = 466, + sym__flag = 467, + sym__flags_parenthesized = 468, + sym_short_flag = 469, + sym_long_flag = 470, + sym_unquoted = 471, + sym__unquoted_in_list = 472, + sym__unquoted_in_record = 473, + sym__unquoted_with_expr = 474, + sym__unquoted_in_list_with_expr = 475, + sym__unquoted_in_record_with_expr = 476, + sym__unquoted_anonymous_prefix = 477, + sym_comment = 478, + aux_sym_shebang_repeat1 = 479, + aux_sym_pipeline_repeat1 = 480, + aux_sym_pipeline_parenthesized_repeat1 = 481, + aux_sym__block_body_repeat1 = 482, + aux_sym__block_body_repeat2 = 483, + aux_sym_decl_def_repeat1 = 484, + aux_sym__multiple_types_repeat1 = 485, + aux_sym__multiple_types_repeat2 = 486, + aux_sym_parameter_parens_repeat1 = 487, + aux_sym_parameter_repeat1 = 488, + aux_sym_parameter_repeat2 = 489, + aux_sym_collection_type_repeat1 = 490, + aux_sym_ctrl_do_repeat1 = 491, + aux_sym_ctrl_do_repeat2 = 492, + aux_sym_ctrl_do_parenthesized_repeat1 = 493, + aux_sym_ctrl_do_parenthesized_repeat2 = 494, + aux_sym_ctrl_do_parenthesized_repeat3 = 495, + aux_sym_ctrl_match_repeat1 = 496, + aux_sym_match_pattern_repeat1 = 497, + aux_sym__match_pattern_list_repeat1 = 498, + aux_sym__match_pattern_record_repeat1 = 499, + aux_sym_pipe_element_repeat1 = 500, + aux_sym_pipe_element_repeat2 = 501, + aux_sym_pipe_element_parenthesized_repeat1 = 502, + aux_sym_overlay_hide_repeat1 = 503, + aux_sym_command_list_repeat1 = 504, + aux_sym__parenthesized_body_repeat1 = 505, + aux_sym__parenthesized_body_repeat2 = 506, + aux_sym_val_binary_repeat1 = 507, + aux_sym__str_double_quotes_repeat1 = 508, + aux_sym__inter_single_quotes_repeat1 = 509, + aux_sym__inter_double_quotes_repeat1 = 510, + aux_sym_list_body_repeat1 = 511, + aux_sym_record_body_repeat1 = 512, + aux_sym_val_table_repeat1 = 513, + aux_sym_cell_path_repeat1 = 514, + aux_sym_command_repeat1 = 515, + aux_sym__command_parenthesized_repeat1 = 516, + aux_sym__unquoted_with_expr_repeat1 = 517, + aux_sym__unquoted_in_list_with_expr_repeat1 = 518, + aux_sym__unquoted_in_record_with_expr_repeat1 = 519, + anon_alias_sym__head = 520, + anon_alias_sym__prefix = 521, + anon_alias_sym__unit = 522, + anon_alias_sym_quoted = 523, }; static const char * const ts_symbol_names[] = { @@ -623,6 +626,8 @@ static const char * const ts_symbol_names[] = { [anon_sym_or] = "or", [anon_sym_in] = "in", [anon_sym_not_DASHin] = "not-in", + [anon_sym_has] = "has", + [anon_sym_not_DASHhas] = "not-has", [anon_sym_starts_DASHwith] = "starts-with", [anon_sym_ends_DASHwith] = "ends-with", [anon_sym_EQ_EQ] = "==", @@ -721,7 +726,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_return] = "return", [anon_sym_source] = "source", [anon_sym_source_DASHenv] = "source-env", - [anon_sym_register] = "register", [anon_sym_hide] = "hide", [anon_sym_hide_DASHenv] = "hide-env", [anon_sym_overlay] = "overlay", @@ -734,6 +738,8 @@ static const char * const ts_symbol_names[] = { [anon_sym_xor2] = "xor", [anon_sym_or2] = "or", [anon_sym_not_DASHin2] = "not-in", + [anon_sym_has2] = "has", + [anon_sym_not_DASHhas2] = "not-has", [anon_sym_starts_DASHwith2] = "starts-with", [anon_sym_ends_DASHwith2] = "ends-with", [anon_sym_EQ_EQ2] = "==", @@ -808,6 +814,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_DOT_DOT_DOT_LBRACK] = "...[", [anon_sym_DOT_DOT_DOT_LBRACE] = "...{", [sym__entry_separator] = "_entry_separator", + [anon_sym_register] = "identifier", [anon_sym_COLON2] = ":", [aux_sym__record_key_token1] = "_record_key_token1", [sym__table_head_separator] = ";", @@ -939,7 +946,6 @@ static const char * const ts_symbol_names[] = { [sym_pipe_element] = "pipe_element", [sym_pipe_element_parenthesized] = "pipe_element", [sym_stmt_source] = "stmt_source", - [sym_stmt_register] = "stmt_register", [sym__stmt_hide] = "_stmt_hide", [sym_hide_mod] = "hide_mod", [sym_hide_env] = "hide_env", @@ -1147,6 +1153,8 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_or] = anon_sym_or, [anon_sym_in] = anon_sym_in, [anon_sym_not_DASHin] = anon_sym_not_DASHin, + [anon_sym_has] = anon_sym_has, + [anon_sym_not_DASHhas] = anon_sym_not_DASHhas, [anon_sym_starts_DASHwith] = anon_sym_starts_DASHwith, [anon_sym_ends_DASHwith] = anon_sym_ends_DASHwith, [anon_sym_EQ_EQ] = anon_sym_EQ_EQ, @@ -1245,7 +1253,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_return] = anon_sym_return, [anon_sym_source] = anon_sym_source, [anon_sym_source_DASHenv] = anon_sym_source_DASHenv, - [anon_sym_register] = anon_sym_register, [anon_sym_hide] = anon_sym_hide, [anon_sym_hide_DASHenv] = anon_sym_hide_DASHenv, [anon_sym_overlay] = anon_sym_overlay, @@ -1258,6 +1265,8 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_xor2] = anon_sym_xor, [anon_sym_or2] = anon_sym_or, [anon_sym_not_DASHin2] = anon_sym_not_DASHin, + [anon_sym_has2] = anon_sym_has, + [anon_sym_not_DASHhas2] = anon_sym_not_DASHhas, [anon_sym_starts_DASHwith2] = anon_sym_starts_DASHwith, [anon_sym_ends_DASHwith2] = anon_sym_ends_DASHwith, [anon_sym_EQ_EQ2] = anon_sym_EQ_EQ, @@ -1332,6 +1341,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_DOT_DOT_DOT_LBRACK] = anon_sym_DOT_DOT_DOT_LBRACK, [anon_sym_DOT_DOT_DOT_LBRACE] = anon_sym_DOT_DOT_DOT_LBRACE, [sym__entry_separator] = sym__entry_separator, + [anon_sym_register] = sym_identifier, [anon_sym_COLON2] = anon_sym_COLON, [aux_sym__record_key_token1] = aux_sym__record_key_token1, [sym__table_head_separator] = anon_sym_SEMI, @@ -1463,7 +1473,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_pipe_element] = sym_pipe_element, [sym_pipe_element_parenthesized] = sym_pipe_element, [sym_stmt_source] = sym_stmt_source, - [sym_stmt_register] = sym_stmt_register, [sym__stmt_hide] = sym__stmt_hide, [sym_hide_mod] = sym_hide_mod, [sym_hide_env] = sym_hide_env, @@ -1899,6 +1908,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_has] = { + .visible = true, + .named = false, + }, + [anon_sym_not_DASHhas] = { + .visible = true, + .named = false, + }, [anon_sym_starts_DASHwith] = { .visible = true, .named = false, @@ -2291,10 +2308,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_register] = { - .visible = true, - .named = false, - }, [anon_sym_hide] = { .visible = true, .named = false, @@ -2343,6 +2356,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_has2] = { + .visible = true, + .named = false, + }, + [anon_sym_not_DASHhas2] = { + .visible = true, + .named = false, + }, [anon_sym_starts_DASHwith2] = { .visible = true, .named = false, @@ -2639,6 +2660,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [anon_sym_register] = { + .visible = true, + .named = true, + }, [anon_sym_COLON2] = { .visible = true, .named = false, @@ -3163,10 +3188,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_stmt_register] = { - .visible = true, - .named = true, - }, [sym__stmt_hide] = { .visible = false, .named = true, @@ -3729,31 +3750,30 @@ enum ts_field_identifiers { field_param_value = 45, field_parameters = 46, field_pattern = 47, - field_plugin = 48, - field_predicate = 49, - field_protected_path = 50, - field_quoted_name = 51, - field_raw_path = 52, - field_redir = 53, - field_rename = 54, - field_rest = 55, - field_return_type = 56, - field_rhs = 57, - field_row = 58, - field_scrutinee = 59, - field_signature = 60, - field_spread = 61, - field_start = 62, - field_step = 63, - field_then_branch = 64, - field_try_branch = 65, - field_type = 66, - field_unit = 67, - field_unquoted_name = 68, - field_value = 69, - field_var_name = 70, - field_variable = 71, - field_wildcard = 72, + field_predicate = 48, + field_protected_path = 49, + field_quoted_name = 50, + field_raw_path = 51, + field_redir = 52, + field_rename = 53, + field_rest = 54, + field_return_type = 55, + field_rhs = 56, + field_row = 57, + field_scrutinee = 58, + field_signature = 59, + field_spread = 60, + field_start = 61, + field_step = 62, + field_then_branch = 63, + field_try_branch = 64, + field_type = 65, + field_unit = 66, + field_unquoted_name = 67, + field_value = 68, + field_var_name = 69, + field_variable = 70, + field_wildcard = 71, }; static const char * const ts_field_names[] = { @@ -3805,7 +3825,6 @@ static const char * const ts_field_names[] = { [field_param_value] = "param_value", [field_parameters] = "parameters", [field_pattern] = "pattern", - [field_plugin] = "plugin", [field_predicate] = "predicate", [field_protected_path] = "protected_path", [field_quoted_name] = "quoted_name", @@ -3858,255 +3877,251 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [24] = {.index = 36, .length = 1}, [25] = {.index = 37, .length = 1}, [26] = {.index = 37, .length = 1}, - [27] = {.index = 38, .length = 1}, - [28] = {.index = 38, .length = 1}, - [29] = {.index = 39, .length = 3}, - [30] = {.index = 42, .length = 3}, - [32] = {.index = 45, .length = 4}, - [33] = {.index = 49, .length = 1}, - [34] = {.index = 50, .length = 1}, - [35] = {.index = 51, .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 = 3}, - [47] = {.index = 84, .length = 2}, - [48] = {.index = 86, .length = 1}, + [27] = {.index = 38, .length = 3}, + [28] = {.index = 41, .length = 3}, + [30] = {.index = 44, .length = 4}, + [31] = {.index = 48, .length = 1}, + [32] = {.index = 49, .length = 1}, + [33] = {.index = 50, .length = 2}, + [34] = {.index = 52, .length = 2}, + [35] = {.index = 54, .length = 6}, + [36] = {.index = 60, .length = 1}, + [37] = {.index = 60, .length = 1}, + [38] = {.index = 61, .length = 2}, + [39] = {.index = 63, .length = 5}, + [40] = {.index = 68, .length = 3}, + [41] = {.index = 71, .length = 1}, + [42] = {.index = 72, .length = 4}, + [43] = {.index = 76, .length = 4}, + [44] = {.index = 80, .length = 3}, + [45] = {.index = 83, .length = 2}, + [46] = {.index = 85, .length = 1}, + [47] = {.index = 86, .length = 1}, [49] = {.index = 87, .length = 1}, - [51] = {.index = 88, .length = 1}, - [52] = {.index = 89, .length = 2}, - [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 = 2}, - [69] = {.index = 121, .length = 1}, - [70] = {.index = 122, .length = 1}, - [71] = {.index = 123, .length = 2}, - [72] = {.index = 125, .length = 7}, - [73] = {.index = 132, .length = 1}, - [74] = {.index = 133, .length = 1}, - [75] = {.index = 134, .length = 2}, - [76] = {.index = 136, .length = 5}, - [77] = {.index = 141, .length = 1}, - [78] = {.index = 142, .length = 1}, - [79] = {.index = 143, .length = 1}, - [80] = {.index = 144, .length = 10}, - [81] = {.index = 154, .length = 3}, - [82] = {.index = 154, .length = 3}, - [83] = {.index = 157, .length = 2}, - [84] = {.index = 157, .length = 2}, - [85] = {.index = 157, .length = 2}, - [86] = {.index = 157, .length = 2}, - [87] = {.index = 159, .length = 4}, - [88] = {.index = 163, .length = 4}, - [89] = {.index = 167, .length = 2}, - [90] = {.index = 169, .length = 4}, - [91] = {.index = 173, .length = 4}, + [50] = {.index = 88, .length = 2}, + [51] = {.index = 90, .length = 2}, + [52] = {.index = 92, .length = 6}, + [53] = {.index = 98, .length = 1}, + [54] = {.index = 99, .length = 2}, + [55] = {.index = 101, .length = 2}, + [56] = {.index = 103, .length = 1}, + [57] = {.index = 104, .length = 4}, + [58] = {.index = 108, .length = 1}, + [59] = {.index = 109, .length = 1}, + [60] = {.index = 110, .length = 1}, + [61] = {.index = 111, .length = 1}, + [62] = {.index = 112, .length = 3}, + [63] = {.index = 115, .length = 1}, + [64] = {.index = 116, .length = 2}, + [65] = {.index = 118, .length = 1}, + [66] = {.index = 119, .length = 1}, + [67] = {.index = 120, .length = 2}, + [68] = {.index = 122, .length = 7}, + [69] = {.index = 129, .length = 1}, + [70] = {.index = 130, .length = 1}, + [71] = {.index = 131, .length = 2}, + [72] = {.index = 133, .length = 5}, + [73] = {.index = 138, .length = 1}, + [74] = {.index = 139, .length = 1}, + [75] = {.index = 140, .length = 1}, + [76] = {.index = 141, .length = 10}, + [77] = {.index = 151, .length = 3}, + [78] = {.index = 151, .length = 3}, + [79] = {.index = 154, .length = 2}, + [80] = {.index = 154, .length = 2}, + [81] = {.index = 154, .length = 2}, + [82] = {.index = 154, .length = 2}, + [83] = {.index = 156, .length = 4}, + [84] = {.index = 160, .length = 4}, + [85] = {.index = 164, .length = 2}, + [86] = {.index = 166, .length = 4}, + [87] = {.index = 170, .length = 4}, + [88] = {.index = 174, .length = 1}, + [89] = {.index = 175, .length = 1}, + [90] = {.index = 176, .length = 1}, + [91] = {.index = 177, .length = 1}, [92] = {.index = 177, .length = 1}, [93] = {.index = 178, .length = 1}, - [94] = {.index = 179, .length = 1}, - [95] = {.index = 180, .length = 1}, - [96] = {.index = 180, .length = 1}, - [97] = {.index = 181, .length = 1}, - [98] = {.index = 182, .length = 5}, - [99] = {.index = 187, .length = 5}, - [100] = {.index = 192, .length = 1}, - [101] = {.index = 192, .length = 1}, - [102] = {.index = 193, .length = 1}, - [104] = {.index = 194, .length = 2}, - [105] = {.index = 196, .length = 1}, - [106] = {.index = 197, .length = 4}, - [107] = {.index = 201, .length = 1}, - [108] = {.index = 202, .length = 1}, - [109] = {.index = 203, .length = 1}, - [110] = {.index = 204, .length = 2}, - [111] = {.index = 206, .length = 1}, - [112] = {.index = 203, .length = 1}, - [113] = {.index = 207, .length = 2}, - [114] = {.index = 209, .length = 1}, - [115] = {.index = 210, .length = 2}, + [94] = {.index = 179, .length = 5}, + [95] = {.index = 184, .length = 5}, + [96] = {.index = 189, .length = 1}, + [97] = {.index = 189, .length = 1}, + [98] = {.index = 190, .length = 1}, + [100] = {.index = 191, .length = 2}, + [101] = {.index = 193, .length = 1}, + [102] = {.index = 194, .length = 4}, + [103] = {.index = 198, .length = 1}, + [104] = {.index = 199, .length = 1}, + [105] = {.index = 200, .length = 1}, + [106] = {.index = 201, .length = 2}, + [107] = {.index = 203, .length = 1}, + [108] = {.index = 200, .length = 1}, + [109] = {.index = 204, .length = 2}, + [110] = {.index = 206, .length = 1}, + [111] = {.index = 207, .length = 2}, + [112] = {.index = 209, .length = 2}, + [113] = {.index = 211, .length = 1}, + [114] = {.index = 204, .length = 2}, + [115] = {.index = 212, .length = 2}, [116] = {.index = 212, .length = 2}, - [117] = {.index = 214, .length = 1}, - [118] = {.index = 207, .length = 2}, - [119] = {.index = 215, .length = 2}, - [120] = {.index = 215, .length = 2}, - [121] = {.index = 215, .length = 2}, - [122] = {.index = 215, .length = 2}, - [123] = {.index = 217, .length = 2}, - [124] = {.index = 219, .length = 1}, - [125] = {.index = 220, .length = 9}, - [126] = {.index = 229, .length = 2}, - [127] = {.index = 231, .length = 1}, + [117] = {.index = 212, .length = 2}, + [118] = {.index = 212, .length = 2}, + [119] = {.index = 214, .length = 2}, + [120] = {.index = 216, .length = 1}, + [121] = {.index = 217, .length = 9}, + [122] = {.index = 226, .length = 2}, + [123] = {.index = 228, .length = 1}, + [124] = {.index = 229, .length = 2}, + [125] = {.index = 231, .length = 1}, + [126] = {.index = 232, .length = 2}, + [127] = {.index = 232, .length = 2}, [128] = {.index = 232, .length = 2}, - [129] = {.index = 234, .length = 1}, - [130] = {.index = 235, .length = 2}, - [131] = {.index = 235, .length = 2}, - [132] = {.index = 235, .length = 2}, - [133] = {.index = 235, .length = 2}, - [134] = {.index = 237, .length = 4}, - [135] = {.index = 241, .length = 5}, - [136] = {.index = 246, .length = 5}, - [137] = {.index = 251, .length = 2}, - [138] = {.index = 253, .length = 1}, - [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 = 2}, - [149] = {.index = 283, .length = 1}, - [150] = {.index = 284, .length = 2}, - [151] = {.index = 286, .length = 1}, - [152] = {.index = 287, .length = 2}, - [153] = {.index = 289, .length = 2}, - [154] = {.index = 291, .length = 3}, - [155] = {.index = 291, .length = 3}, - [156] = {.index = 294, .length = 3}, - [157] = {.index = 294, .length = 3}, - [158] = {.index = 297, .length = 5}, - [159] = {.index = 302, .length = 3}, - [160] = {.index = 305, .length = 3}, - [161] = {.index = 308, .length = 1}, - [162] = {.index = 309, .length = 1}, - [163] = {.index = 310, .length = 3}, - [164] = {.index = 313, .length = 1}, - [165] = {.index = 314, .length = 4}, - [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 = 318, .length = 3}, - [174] = {.index = 321, .length = 6}, - [175] = {.index = 327, .length = 5}, - [176] = {.index = 332, .length = 2}, - [177] = {.index = 334, .length = 1}, - [178] = {.index = 335, .length = 2}, - [179] = {.index = 337, .length = 2}, - [180] = {.index = 339, .length = 3}, - [181] = {.index = 342, .length = 6}, - [182] = {.index = 348, .length = 2}, - [183] = {.index = 350, .length = 3}, - [184] = {.index = 353, .length = 2}, - [186] = {.index = 355, .length = 2}, - [187] = {.index = 357, .length = 2}, - [188] = {.index = 359, .length = 2}, - [189] = {.index = 361, .length = 9}, - [190] = {.index = 370, .length = 9}, - [191] = {.index = 379, .length = 3}, - [192] = {.index = 379, .length = 3}, - [193] = {.index = 382, .length = 1}, - [194] = {.index = 383, .length = 1}, - [195] = {.index = 384, .length = 2}, - [196] = {.index = 386, .length = 2}, - [197] = {.index = 388, .length = 1}, - [198] = {.index = 389, .length = 4}, - [199] = {.index = 393, .length = 6}, - [200] = {.index = 399, .length = 1}, - [201] = {.index = 400, .length = 1}, - [202] = {.index = 399, .length = 1}, - [203] = {.index = 400, .length = 1}, - [204] = {.index = 401, .length = 6}, - [205] = {.index = 407, .length = 2}, - [206] = {.index = 409, .length = 1}, - [207] = {.index = 410, .length = 2}, - [208] = {.index = 412, .length = 2}, - [209] = {.index = 414, .length = 6}, - [210] = {.index = 420, .length = 3}, - [211] = {.index = 423, .length = 2}, - [212] = {.index = 425, .length = 3}, - [213] = {.index = 428, .length = 3}, - [214] = {.index = 431, .length = 3}, - [215] = {.index = 434, .length = 3}, - [216] = {.index = 437, .length = 3}, - [217] = {.index = 440, .length = 3}, - [218] = {.index = 443, .length = 3}, - [219] = {.index = 446, .length = 2}, - [220] = {.index = 448, .length = 2}, - [221] = {.index = 450, .length = 9}, - [222] = {.index = 459, .length = 2}, - [223] = {.index = 461, .length = 1}, - [224] = {.index = 462, .length = 1}, - [225] = {.index = 462, .length = 1}, - [226] = {.index = 463, .length = 4}, - [227] = {.index = 463, .length = 4}, - [228] = {.index = 467, .length = 3}, - [229] = {.index = 470, .length = 2}, - [230] = {.index = 472, .length = 3}, - [231] = {.index = 475, .length = 3}, - [232] = {.index = 478, .length = 3}, - [233] = {.index = 481, .length = 3}, - [234] = {.index = 484, .length = 3}, - [235] = {.index = 487, .length = 3}, - [236] = {.index = 490, .length = 3}, - [237] = {.index = 493, .length = 3}, - [238] = {.index = 496, .length = 3}, - [239] = {.index = 499, .length = 2}, - [240] = {.index = 501, .length = 2}, - [241] = {.index = 503, .length = 2}, - [242] = {.index = 505, .length = 2}, - [243] = {.index = 503, .length = 2}, - [244] = {.index = 505, .length = 2}, - [245] = {.index = 507, .length = 4}, - [246] = {.index = 507, .length = 4}, - [247] = {.index = 511, .length = 3}, - [248] = {.index = 514, .length = 3}, - [249] = {.index = 517, .length = 3}, - [250] = {.index = 520, .length = 3}, - [251] = {.index = 523, .length = 3}, - [252] = {.index = 526, .length = 3}, - [253] = {.index = 529, .length = 3}, - [254] = {.index = 532, .length = 3}, - [255] = {.index = 535, .length = 2}, - [256] = {.index = 537, .length = 3}, - [257] = {.index = 540, .length = 3}, - [258] = {.index = 537, .length = 3}, - [259] = {.index = 540, .length = 3}, - [260] = {.index = 543, .length = 2}, - [261] = {.index = 543, .length = 2}, - [262] = {.index = 545, .length = 5}, - [263] = {.index = 545, .length = 5}, - [264] = {.index = 550, .length = 3}, - [265] = {.index = 553, .length = 3}, - [266] = {.index = 556, .length = 3}, - [267] = {.index = 559, .length = 3}, - [268] = {.index = 562, .length = 3}, - [269] = {.index = 565, .length = 3}, - [270] = {.index = 568, .length = 3}, - [271] = {.index = 568, .length = 3}, - [272] = {.index = 571, .length = 5}, - [273] = {.index = 571, .length = 5}, - [274] = {.index = 576, .length = 6}, - [275] = {.index = 576, .length = 6}, - [276] = {.index = 582, .length = 3}, - [277] = {.index = 585, .length = 3}, - [278] = {.index = 588, .length = 6}, - [279] = {.index = 588, .length = 6}, + [129] = {.index = 232, .length = 2}, + [130] = {.index = 234, .length = 4}, + [131] = {.index = 238, .length = 5}, + [132] = {.index = 243, .length = 5}, + [133] = {.index = 248, .length = 2}, + [134] = {.index = 250, .length = 1}, + [135] = {.index = 251, .length = 5}, + [136] = {.index = 256, .length = 2}, + [137] = {.index = 256, .length = 2}, + [138] = {.index = 258, .length = 6}, + [139] = {.index = 264, .length = 3}, + [140] = {.index = 267, .length = 3}, + [141] = {.index = 270, .length = 6}, + [142] = {.index = 276, .length = 2}, + [143] = {.index = 276, .length = 2}, + [144] = {.index = 278, .length = 2}, + [145] = {.index = 280, .length = 1}, + [146] = {.index = 281, .length = 2}, + [147] = {.index = 283, .length = 1}, + [148] = {.index = 284, .length = 2}, + [149] = {.index = 286, .length = 2}, + [150] = {.index = 288, .length = 3}, + [151] = {.index = 288, .length = 3}, + [152] = {.index = 291, .length = 3}, + [153] = {.index = 291, .length = 3}, + [154] = {.index = 294, .length = 5}, + [155] = {.index = 299, .length = 3}, + [156] = {.index = 302, .length = 3}, + [157] = {.index = 305, .length = 1}, + [158] = {.index = 306, .length = 1}, + [159] = {.index = 307, .length = 3}, + [160] = {.index = 310, .length = 1}, + [161] = {.index = 311, .length = 4}, + [162] = {.index = 315, .length = 3}, + [163] = {.index = 315, .length = 3}, + [164] = {.index = 315, .length = 3}, + [165] = {.index = 315, .length = 3}, + [166] = {.index = 315, .length = 3}, + [167] = {.index = 315, .length = 3}, + [168] = {.index = 315, .length = 3}, + [169] = {.index = 315, .length = 3}, + [170] = {.index = 318, .length = 6}, + [171] = {.index = 324, .length = 5}, + [172] = {.index = 329, .length = 2}, + [173] = {.index = 331, .length = 1}, + [174] = {.index = 332, .length = 2}, + [175] = {.index = 334, .length = 2}, + [176] = {.index = 336, .length = 3}, + [177] = {.index = 339, .length = 6}, + [178] = {.index = 345, .length = 2}, + [179] = {.index = 347, .length = 3}, + [180] = {.index = 350, .length = 2}, + [182] = {.index = 352, .length = 2}, + [183] = {.index = 354, .length = 2}, + [184] = {.index = 356, .length = 2}, + [185] = {.index = 358, .length = 9}, + [186] = {.index = 367, .length = 9}, + [187] = {.index = 376, .length = 3}, + [188] = {.index = 376, .length = 3}, + [189] = {.index = 379, .length = 1}, + [190] = {.index = 380, .length = 1}, + [191] = {.index = 381, .length = 2}, + [192] = {.index = 383, .length = 2}, + [193] = {.index = 385, .length = 1}, + [194] = {.index = 386, .length = 4}, + [195] = {.index = 390, .length = 6}, + [196] = {.index = 396, .length = 1}, + [197] = {.index = 397, .length = 1}, + [198] = {.index = 396, .length = 1}, + [199] = {.index = 397, .length = 1}, + [200] = {.index = 398, .length = 6}, + [201] = {.index = 404, .length = 2}, + [202] = {.index = 406, .length = 1}, + [203] = {.index = 407, .length = 2}, + [204] = {.index = 409, .length = 2}, + [205] = {.index = 411, .length = 6}, + [206] = {.index = 417, .length = 3}, + [207] = {.index = 420, .length = 2}, + [208] = {.index = 422, .length = 3}, + [209] = {.index = 425, .length = 3}, + [210] = {.index = 428, .length = 3}, + [211] = {.index = 431, .length = 3}, + [212] = {.index = 434, .length = 3}, + [213] = {.index = 437, .length = 3}, + [214] = {.index = 440, .length = 3}, + [215] = {.index = 443, .length = 2}, + [216] = {.index = 445, .length = 2}, + [217] = {.index = 447, .length = 9}, + [218] = {.index = 456, .length = 2}, + [219] = {.index = 458, .length = 1}, + [220] = {.index = 459, .length = 1}, + [221] = {.index = 459, .length = 1}, + [222] = {.index = 460, .length = 4}, + [223] = {.index = 460, .length = 4}, + [224] = {.index = 464, .length = 3}, + [225] = {.index = 467, .length = 2}, + [226] = {.index = 469, .length = 3}, + [227] = {.index = 472, .length = 3}, + [228] = {.index = 475, .length = 3}, + [229] = {.index = 478, .length = 3}, + [230] = {.index = 481, .length = 3}, + [231] = {.index = 484, .length = 3}, + [232] = {.index = 487, .length = 3}, + [233] = {.index = 490, .length = 3}, + [234] = {.index = 493, .length = 3}, + [235] = {.index = 496, .length = 2}, + [236] = {.index = 498, .length = 2}, + [237] = {.index = 500, .length = 2}, + [238] = {.index = 502, .length = 2}, + [239] = {.index = 500, .length = 2}, + [240] = {.index = 502, .length = 2}, + [241] = {.index = 504, .length = 4}, + [242] = {.index = 504, .length = 4}, + [243] = {.index = 508, .length = 3}, + [244] = {.index = 511, .length = 3}, + [245] = {.index = 514, .length = 3}, + [246] = {.index = 517, .length = 3}, + [247] = {.index = 520, .length = 3}, + [248] = {.index = 523, .length = 3}, + [249] = {.index = 526, .length = 3}, + [250] = {.index = 529, .length = 3}, + [251] = {.index = 532, .length = 2}, + [252] = {.index = 534, .length = 3}, + [253] = {.index = 537, .length = 3}, + [254] = {.index = 534, .length = 3}, + [255] = {.index = 537, .length = 3}, + [256] = {.index = 540, .length = 2}, + [257] = {.index = 540, .length = 2}, + [258] = {.index = 542, .length = 5}, + [259] = {.index = 542, .length = 5}, + [260] = {.index = 547, .length = 3}, + [261] = {.index = 550, .length = 3}, + [262] = {.index = 553, .length = 3}, + [263] = {.index = 556, .length = 3}, + [264] = {.index = 559, .length = 3}, + [265] = {.index = 562, .length = 3}, + [266] = {.index = 565, .length = 3}, + [267] = {.index = 565, .length = 3}, + [268] = {.index = 568, .length = 5}, + [269] = {.index = 568, .length = 5}, + [270] = {.index = 573, .length = 6}, + [271] = {.index = 573, .length = 6}, + [272] = {.index = 579, .length = 3}, + [273] = {.index = 582, .length = 3}, + [274] = {.index = 585, .length = 6}, + [275] = {.index = 585, .length = 6}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -4172,133 +4187,128 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [37] = {field_file, 1}, [38] = - {field_plugin, 1}, - [39] = {field_module, 1}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [42] = + [41] = {field_dollar_name, 1, .inherited = true}, {field_var_name, 1, .inherited = true}, {field_variable, 1}, - [45] = + [44] = {field_lhs, 1, .inherited = true}, {field_opr, 1, .inherited = true}, {field_predicate, 1}, {field_rhs, 1, .inherited = true}, - [49] = + [48] = {field_predicate, 1}, - [50] = + [49] = {field_expr, 0}, - [51] = + [50] = {field_value, 1}, {field_variable, 0}, - [53] = + [52] = {field_head, 0}, {field_head, 1}, - [55] = + [54] = {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}, - [61] = + [60] = {field_start, 0}, - [62] = + [61] = {field_unit, 1}, {field_value, 0}, - [64] = + [63] = {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}, - [69] = + [68] = {field_name, 2}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [72] = + [71] = {field_module, 2}, - [73] = + [72] = {field_name, 1}, {field_quoted_name, 1, .inherited = true}, {field_signature, 2}, {field_unquoted_name, 1, .inherited = true}, - [77] = + [76] = {field_body, 2}, {field_name, 1}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [81] = + [80] = {field_command, 0}, {field_quoted_name, 0, .inherited = true}, {field_unquoted_name, 0, .inherited = true}, - [84] = + [83] = {field_import_pattern, 2}, {field_module, 1}, - [86] = + [85] = {field_wildcard, 0}, - [87] = + [86] = {field_command_list, 0}, - [88] = + [87] = {field_entry, 1}, - [89] = + [88] = {field_entry, 0, .inherited = true}, {field_entry, 1}, - [91] = + [90] = {field_entry, 0, .inherited = true}, {field_entry, 1, .inherited = true}, - [93] = + [92] = {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] = + [98] = {field_error_record, 2}, - [100] = + [99] = {field_body, 2}, {field_condition, 1}, - [102] = + [101] = {field_condition, 1}, {field_then_branch, 2}, - [104] = + [103] = {field_param_name, 0}, - [105] = + [104] = {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}, - [109] = + [108] = {field_param_rest, 0}, - [110] = + [109] = {field_param_optional, 0}, - [111] = + [110] = {field_param_long_flag, 0}, - [112] = + [111] = {field_param_short_flag, 0}, - [113] = - {field_plugin, 1}, - {field_signature, 2}, - [115] = + [112] = {field_dollar_name, 2, .inherited = true}, {field_var_name, 2, .inherited = true}, {field_variable, 2}, - [118] = + [115] = {field_overlay, 2}, - [119] = + [116] = {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [121] = + [118] = {field_digit, 0}, - [122] = + [119] = {field_expr, 1, .inherited = true}, - [123] = + [120] = {field_expr, 0, .inherited = true}, {field_expr, 1, .inherited = true}, - [125] = + [122] = {field_arg, 2, .inherited = true}, {field_arg_spread, 2, .inherited = true}, {field_arg_str, 2, .inherited = true}, @@ -4306,26 +4316,26 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_head, 0}, {field_head, 1}, {field_redir, 2, .inherited = true}, - [132] = + [129] = {field_arg, 0}, - [133] = + [130] = {field_arg_spread, 0}, - [134] = + [131] = {field_arg_spread, 0}, {field_name, 0, .inherited = true}, - [136] = + [133] = {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}, - [141] = + [138] = {field_redir, 0}, - [142] = + [139] = {field_flag, 0}, - [143] = + [140] = {field_arg_str, 0}, - [144] = + [141] = {field_arg, 0, .inherited = true}, {field_arg, 1, .inherited = true}, {field_arg_spread, 0, .inherited = true}, @@ -4336,105 +4346,105 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_flag, 1, .inherited = true}, {field_redir, 0, .inherited = true}, {field_redir, 1, .inherited = true}, - [154] = + [151] = {field_lhs, 0}, {field_opr, 1}, {field_rhs, 2}, - [157] = + [154] = {field_end, 2}, {field_start, 0}, - [159] = + [156] = {field_name, 2}, {field_quoted_name, 2, .inherited = true}, {field_signature, 3}, {field_unquoted_name, 2, .inherited = true}, - [163] = + [160] = {field_body, 3}, {field_name, 2}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [167] = + [164] = {field_import_pattern, 3}, {field_module, 2}, - [169] = + [166] = {field_name, 1}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, {field_value, 3}, - [173] = + [170] = {field_dollar_name, 0, .inherited = true}, {field_name, 0}, {field_value, 2}, {field_var_name, 0, .inherited = true}, - [177] = + [174] = {field_flat_type, 0}, - [178] = + [175] = {field_type, 1, .inherited = true}, - [179] = + [176] = {field_type, 0}, - [180] = + [177] = {field_value, 2}, - [181] = + [178] = {field_type, 0, .inherited = true}, - [182] = + [179] = {field_body, 3}, {field_name, 1}, {field_parameters, 2}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [187] = + [184] = {field_body, 3}, {field_name, 1}, {field_quoted_name, 1, .inherited = true}, {field_signature, 2}, {field_unquoted_name, 1, .inherited = true}, - [192] = + [189] = {field_raw_path, 1}, - [193] = + [190] = {field_head, 1}, - [194] = + [191] = {field_entry, 1, .inherited = true}, {field_entry, 2}, - [196] = + [193] = {field_try_branch, 2}, - [197] = + [194] = {field_lhs, 2, .inherited = true}, {field_opr, 2, .inherited = true}, {field_predicate, 2}, {field_rhs, 2, .inherited = true}, - [201] = + [198] = {field_predicate, 2}, - [202] = + [199] = {field_error_record, 3}, - [203] = + [200] = {field_scrutinee, 1}, - [204] = + [201] = {field_entry, 0, .inherited = true}, {field_rest, 0, .inherited = true}, - [206] = + [203] = {field_entry, 0, .inherited = true}, - [207] = + [204] = {field_key, 0}, {field_value, 2}, - [209] = + [206] = {field_name, 0}, - [210] = + [207] = {field_param_name, 0}, {field_param_name, 1}, - [212] = + [209] = {field_flag_capsule, 1}, {field_param_long_flag, 0}, - [214] = + [211] = {field_parameters, 1}, - [215] = + [212] = {field_end, 3}, {field_step, 1}, - [217] = + [214] = {field_catch_branch, 3}, {field_try_branch, 1}, - [219] = + [216] = {field_overlay, 3}, - [220] = + [217] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_lhs, 2, .inherited = true}, @@ -4444,187 +4454,187 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_rhs, 0, .inherited = true}, {field_rhs, 2}, {field_rhs, 2, .inherited = true}, - [229] = + [226] = {field_digit, 0}, {field_digit, 1}, - [231] = + [228] = {field_digit, 2, .inherited = true}, - [232] = + [229] = {field_digit, 0, .inherited = true}, {field_digit, 1, .inherited = true}, - [234] = + [231] = {field_file_path, 2}, - [235] = + [232] = {field_start, 0}, {field_step, 2}, - [237] = + [234] = {field_name, 2}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, {field_value, 4}, - [241] = + [238] = {field_body, 4}, {field_name, 2}, {field_parameters, 3}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [246] = + [243] = {field_body, 4}, {field_name, 2}, {field_quoted_name, 2, .inherited = true}, {field_signature, 3}, {field_unquoted_name, 2, .inherited = true}, - [251] = + [248] = {field_completion, 2}, {field_type, 1, .inherited = true}, - [253] = + [250] = {field_type, 2, .inherited = true}, - [254] = + [251] = {field_dollar_name, 0, .inherited = true}, {field_name, 0}, {field_type, 1}, {field_value, 3}, {field_var_name, 0, .inherited = true}, - [259] = + [256] = {field_name, 1}, {field_value, 3}, - [261] = + [258] = {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] = + [264] = {field_cmd, 1}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [270] = + [267] = {field_cmd, 0}, {field_quoted_name, 0, .inherited = true}, {field_unquoted_name, 0, .inherited = true}, - [273] = + [270] = {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] = + [276] = {field_protected_path, 1}, {field_protected_path, 2}, - [281] = + [278] = {field_head, 1}, {field_row, 3}, - [283] = + [280] = {field_row, 0}, - [284] = + [281] = {field_row, 0, .inherited = true}, {field_row, 1, .inherited = true}, - [286] = + [283] = {field_head, 2}, - [287] = + [284] = {field_condition, 1}, {field_then_branch, 3}, - [289] = + [286] = {field_condition, 2}, {field_then_branch, 3}, - [291] = + [288] = {field_lhs, 0}, {field_opr, 1}, {field_rhs, 3}, - [294] = + [291] = {field_lhs, 0}, {field_opr, 2}, {field_rhs, 3}, - [297] = + [294] = {field_body, 4}, {field_dollar_name, 1, .inherited = true}, {field_iterable, 3}, {field_looping_var, 1}, {field_var_name, 1, .inherited = true}, - [302] = + [299] = {field_condition, 1}, {field_else_branch, 4}, {field_then_branch, 2}, - [305] = + [302] = {field_condition, 1}, {field_else_block, 4}, {field_then_branch, 2}, - [308] = + [305] = {field_name, 2}, - [309] = + [306] = {field_param_value, 1}, - [310] = + [307] = {field_key, 0}, {field_key, 1}, {field_value, 3}, - [313] = + [310] = {field_parameters, 2}, - [314] = + [311] = {field_overlay, 2}, {field_quoted_name, 4, .inherited = true}, {field_rename, 4}, {field_unquoted_name, 4, .inherited = true}, - [318] = + [315] = {field_end, 4}, {field_start, 0}, {field_step, 2}, - [321] = + [318] = {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] = + [324] = {field_body, 5}, {field_name, 3}, {field_parameters, 4}, {field_quoted_name, 3, .inherited = true}, {field_unquoted_name, 3, .inherited = true}, - [332] = + [329] = {field_completion, 3}, {field_type, 2, .inherited = true}, - [334] = + [331] = {field_type, 3, .inherited = true}, - [335] = + [332] = {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [337] = + [334] = {field_type, 0, .inherited = true}, {field_type, 2, .inherited = true}, - [339] = + [336] = {field_cmd, 2}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [342] = + [339] = {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}, - [348] = + [345] = {field_head, 1}, {field_row, 4}, - [350] = + [347] = {field_head, 1}, {field_row, 3, .inherited = true}, {field_row, 4}, - [353] = + [350] = {field_head, 2}, {field_row, 4}, - [355] = + [352] = {field_condition, 2}, {field_then_branch, 4}, - [357] = + [354] = {field_catch_branch, 4}, {field_try_branch, 1}, - [359] = + [356] = {field_catch_branch, 4}, {field_try_branch, 2}, - [361] = + [358] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_lhs, 3, .inherited = true}, @@ -4634,7 +4644,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_rhs, 0, .inherited = true}, {field_rhs, 3}, {field_rhs, 3, .inherited = true}, - [370] = + [367] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_lhs, 3, .inherited = true}, @@ -4644,105 +4654,105 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_rhs, 0, .inherited = true}, {field_rhs, 3}, {field_rhs, 3, .inherited = true}, - [379] = + [376] = {field_lhs, 0}, {field_opr, 2}, {field_rhs, 4}, - [382] = + [379] = {field_rest, 1}, - [383] = + [380] = {field_entry, 1, .inherited = true}, - [384] = + [381] = {field_default_pattern, 0}, {field_expression, 2}, - [386] = + [383] = {field_expression, 2}, {field_pattern, 0}, - [388] = + [385] = {field_param_value, 2}, - [389] = + [386] = {field_overlay, 3}, {field_quoted_name, 5, .inherited = true}, {field_rename, 5}, {field_unquoted_name, 5, .inherited = true}, - [393] = + [390] = {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}, - [399] = + [396] = {field_key, 2}, - [400] = + [397] = {field_key, 0}, - [401] = + [398] = {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}, - [407] = + [404] = {field_inner, 2}, {field_type, 2, .inherited = true}, - [409] = + [406] = {field_completion, 2}, - [410] = + [407] = {field_completion, 4}, {field_type, 3, .inherited = true}, - [412] = + [409] = {field_type, 1, .inherited = true}, {field_type, 2, .inherited = true}, - [414] = + [411] = {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}, - [420] = + [417] = {field_head, 1}, {field_row, 4, .inherited = true}, {field_row, 5}, - [423] = + [420] = {field_head, 2}, {field_row, 5}, - [425] = + [422] = {field_head, 2}, {field_row, 4, .inherited = true}, {field_row, 5}, - [428] = + [425] = {field_condition, 1}, {field_else_branch, 5}, {field_then_branch, 2}, - [431] = + [428] = {field_condition, 1}, {field_else_block, 5}, {field_then_branch, 2}, - [434] = + [431] = {field_condition, 1}, {field_else_branch, 5}, {field_then_branch, 3}, - [437] = + [434] = {field_condition, 1}, {field_else_block, 5}, {field_then_branch, 3}, - [440] = + [437] = {field_condition, 2}, {field_else_branch, 5}, {field_then_branch, 3}, - [443] = + [440] = {field_condition, 2}, {field_else_block, 5}, {field_then_branch, 3}, - [446] = + [443] = {field_catch_branch, 5}, {field_try_branch, 1}, - [448] = + [445] = {field_catch_branch, 5}, {field_try_branch, 2}, - [450] = + [447] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_lhs, 4, .inherited = true}, @@ -4752,180 +4762,180 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_rhs, 0, .inherited = true}, {field_rhs, 4}, {field_rhs, 4, .inherited = true}, - [459] = + [456] = {field_entry, 1, .inherited = true}, {field_rest, 2}, - [461] = + [458] = {field_param_value, 3}, - [462] = + [459] = {field_key, 3}, - [463] = + [460] = {field_completion, 2, .inherited = true}, {field_key, 2, .inherited = true}, {field_key, 3}, {field_type, 2, .inherited = true}, - [467] = + [464] = {field_completion, 3}, {field_inner, 2}, {field_type, 2, .inherited = true}, - [470] = + [467] = {field_type, 2, .inherited = true}, {field_type, 3, .inherited = true}, - [472] = + [469] = {field_head, 2}, {field_row, 5, .inherited = true}, {field_row, 6}, - [475] = + [472] = {field_condition, 1}, {field_else_branch, 6}, {field_then_branch, 2}, - [478] = + [475] = {field_condition, 1}, {field_else_block, 6}, {field_then_branch, 2}, - [481] = + [478] = {field_condition, 1}, {field_else_branch, 6}, {field_then_branch, 3}, - [484] = + [481] = {field_condition, 1}, {field_else_block, 6}, {field_then_branch, 3}, - [487] = + [484] = {field_condition, 2}, {field_else_branch, 6}, {field_then_branch, 3}, - [490] = + [487] = {field_condition, 2}, {field_else_block, 6}, {field_then_branch, 3}, - [493] = + [490] = {field_condition, 2}, {field_else_branch, 6}, {field_then_branch, 4}, - [496] = + [493] = {field_condition, 2}, {field_else_block, 6}, {field_then_branch, 4}, - [499] = + [496] = {field_catch_branch, 6}, {field_try_branch, 1}, - [501] = + [498] = {field_catch_branch, 6}, {field_try_branch, 2}, - [503] = + [500] = {field_key, 2}, {field_type, 4, .inherited = true}, - [505] = + [502] = {field_key, 0}, {field_type, 2, .inherited = true}, - [507] = + [504] = {field_completion, 3, .inherited = true}, {field_key, 3, .inherited = true}, {field_key, 4}, {field_type, 3, .inherited = true}, - [511] = + [508] = {field_condition, 1}, {field_else_branch, 7}, {field_then_branch, 2}, - [514] = + [511] = {field_condition, 1}, {field_else_block, 7}, {field_then_branch, 2}, - [517] = + [514] = {field_condition, 1}, {field_else_branch, 7}, {field_then_branch, 3}, - [520] = + [517] = {field_condition, 1}, {field_else_block, 7}, {field_then_branch, 3}, - [523] = + [520] = {field_condition, 2}, {field_else_branch, 7}, {field_then_branch, 3}, - [526] = + [523] = {field_condition, 2}, {field_else_block, 7}, {field_then_branch, 3}, - [529] = + [526] = {field_condition, 2}, {field_else_branch, 7}, {field_then_branch, 4}, - [532] = + [529] = {field_condition, 2}, {field_else_block, 7}, {field_then_branch, 4}, - [535] = + [532] = {field_catch_branch, 7}, {field_try_branch, 2}, - [537] = + [534] = {field_completion, 5}, {field_key, 2}, {field_type, 4, .inherited = true}, - [540] = + [537] = {field_completion, 3}, {field_key, 0}, {field_type, 2, .inherited = true}, - [543] = + [540] = {field_key, 3}, {field_type, 5, .inherited = true}, - [545] = + [542] = {field_completion, 2, .inherited = true}, {field_key, 2, .inherited = true}, {field_key, 3}, {field_type, 2, .inherited = true}, {field_type, 5, .inherited = true}, - [550] = + [547] = {field_condition, 1}, {field_else_branch, 8}, {field_then_branch, 3}, - [553] = + [550] = {field_condition, 1}, {field_else_block, 8}, {field_then_branch, 3}, - [556] = + [553] = {field_condition, 2}, {field_else_branch, 8}, {field_then_branch, 3}, - [559] = + [556] = {field_condition, 2}, {field_else_block, 8}, {field_then_branch, 3}, - [562] = + [559] = {field_condition, 2}, {field_else_branch, 8}, {field_then_branch, 4}, - [565] = + [562] = {field_condition, 2}, {field_else_block, 8}, {field_then_branch, 4}, - [568] = + [565] = {field_completion, 6}, {field_key, 3}, {field_type, 5, .inherited = true}, - [571] = + [568] = {field_completion, 3, .inherited = true}, {field_key, 3, .inherited = true}, {field_key, 4}, {field_type, 3, .inherited = true}, {field_type, 6, .inherited = true}, - [576] = + [573] = {field_completion, 2, .inherited = true}, {field_completion, 6}, {field_key, 2, .inherited = true}, {field_key, 3}, {field_type, 2, .inherited = true}, {field_type, 5, .inherited = true}, - [582] = + [579] = {field_condition, 2}, {field_else_branch, 9}, {field_then_branch, 4}, - [585] = + [582] = {field_condition, 2}, {field_else_block, 9}, {field_then_branch, 4}, - [588] = + [585] = {field_completion, 3, .inherited = true}, {field_completion, 7}, {field_key, 3, .inherited = true}, @@ -4945,165 +4955,159 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [26] = { [1] = sym_val_string, }, - [28] = { - [1] = sym_val_string, - }, - [31] = { + [29] = { [0] = sym_val_string, }, - [39] = { + [37] = { [0] = sym_val_number, }, - [40] = { + [38] = { [0] = sym_val_number, }, - [50] = { + [48] = { [1] = anon_alias_sym__unit, }, - [65] = { - [1] = sym_val_string, - }, - [79] = { + [75] = { [0] = sym_val_string, }, - [82] = { + [78] = { [2] = sym_val_string, }, - [84] = { + [80] = { [2] = sym_val_number, }, - [85] = { + [81] = { [0] = sym_val_number, }, - [86] = { + [82] = { [0] = sym_val_number, [2] = sym_val_number, }, - [96] = { + [92] = { [2] = sym_val_string, }, - [101] = { + [97] = { [1] = anon_alias_sym_quoted, }, - [103] = { + [99] = { [0] = anon_alias_sym__head, }, - [112] = { + [108] = { [1] = sym_val_string, }, - [113] = { + [109] = { [0] = sym_identifier, }, - [120] = { + [116] = { [3] = sym_val_number, }, - [121] = { + [117] = { [1] = sym_val_number, }, - [122] = { + [118] = { [1] = sym_val_number, [3] = sym_val_number, }, - [131] = { + [127] = { [2] = sym_val_number, }, - [132] = { + [128] = { [0] = sym_val_number, }, - [133] = { + [129] = { [0] = sym_val_number, [2] = sym_val_number, }, - [141] = { + [137] = { [3] = sym_val_string, }, - [147] = { + [143] = { [1] = anon_alias_sym_quoted, }, - [155] = { + [151] = { [3] = sym_val_string, }, - [157] = { + [153] = { [3] = sym_val_string, }, - [163] = { + [159] = { [0] = sym_identifier, }, - [167] = { + [163] = { [4] = sym_val_number, }, - [168] = { + [164] = { [2] = sym_val_number, }, - [169] = { + [165] = { [2] = sym_val_number, [4] = sym_val_number, }, - [170] = { + [166] = { [0] = sym_val_number, }, - [171] = { + [167] = { [0] = sym_val_number, [4] = sym_val_number, }, - [172] = { + [168] = { [0] = sym_val_number, [2] = sym_val_number, }, - [173] = { + [169] = { [0] = sym_val_number, [2] = sym_val_number, [4] = sym_val_number, }, - [185] = { + [181] = { [1] = sym_val_string, }, - [192] = { + [188] = { [4] = sym_val_string, }, - [202] = { + [198] = { [2] = sym_identifier, }, - [203] = { + [199] = { [0] = sym_identifier, }, - [225] = { + [221] = { [3] = sym_identifier, }, - [227] = { + [223] = { [3] = sym_identifier, }, - [243] = { + [239] = { [2] = sym_identifier, }, - [244] = { + [240] = { [0] = sym_identifier, }, - [246] = { + [242] = { [4] = sym_identifier, }, - [258] = { + [254] = { [2] = sym_identifier, }, - [259] = { + [255] = { [0] = sym_identifier, }, - [261] = { + [257] = { [3] = sym_identifier, }, - [263] = { + [259] = { [3] = sym_identifier, }, - [271] = { + [267] = { [3] = sym_identifier, }, - [273] = { + [269] = { [4] = sym_identifier, }, - [275] = { + [271] = { [3] = sym_identifier, }, - [279] = { + [275] = { [4] = sym_identifier, }, }; @@ -5143,24 +5147,24 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 3, - [4] = 4, - [5] = 4, + [4] = 3, + [5] = 5, [6] = 3, - [7] = 4, + [7] = 5, [8] = 3, - [9] = 4, - [10] = 4, - [11] = 4, - [12] = 4, - [13] = 4, - [14] = 4, - [15] = 4, - [16] = 4, - [17] = 4, - [18] = 4, - [19] = 4, - [20] = 4, - [21] = 4, + [9] = 5, + [10] = 3, + [11] = 3, + [12] = 3, + [13] = 3, + [14] = 3, + [15] = 3, + [16] = 3, + [17] = 3, + [18] = 3, + [19] = 3, + [20] = 3, + [21] = 3, [22] = 22, [23] = 22, [24] = 22, @@ -5179,11 +5183,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [37] = 35, [38] = 35, [39] = 39, - [40] = 39, - [41] = 41, - [42] = 41, - [43] = 41, - [44] = 41, + [40] = 40, + [41] = 40, + [42] = 39, + [43] = 39, + [44] = 39, [45] = 45, [46] = 45, [47] = 45, @@ -5198,88 +5202,88 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [56] = 45, [57] = 45, [58] = 58, - [59] = 58, - [60] = 60, - [61] = 61, - [62] = 62, - [63] = 60, + [59] = 59, + [60] = 58, + [61] = 59, + [62] = 59, + [63] = 58, [64] = 58, - [65] = 62, - [66] = 60, - [67] = 60, - [68] = 60, - [69] = 60, + [65] = 59, + [66] = 58, + [67] = 58, + [68] = 68, + [69] = 58, [70] = 58, - [71] = 60, - [72] = 60, - [73] = 60, - [74] = 58, - [75] = 60, - [76] = 60, - [77] = 60, - [78] = 60, - [79] = 60, - [80] = 60, - [81] = 62, - [82] = 60, - [83] = 58, - [84] = 61, - [85] = 62, - [86] = 86, + [71] = 58, + [72] = 58, + [73] = 58, + [74] = 74, + [75] = 58, + [76] = 58, + [77] = 58, + [78] = 58, + [79] = 58, + [80] = 68, + [81] = 59, + [82] = 74, + [83] = 59, + [84] = 68, + [85] = 59, + [86] = 58, [87] = 58, - [88] = 60, - [89] = 60, - [90] = 60, + [88] = 68, + [89] = 59, + [90] = 68, [91] = 58, - [92] = 58, - [93] = 62, - [94] = 58, - [95] = 60, - [96] = 60, + [92] = 59, + [93] = 93, + [94] = 59, + [95] = 58, + [96] = 58, [97] = 97, [98] = 98, - [99] = 97, + [99] = 98, [100] = 100, [101] = 101, - [102] = 102, - [103] = 101, - [104] = 104, - [105] = 100, - [106] = 102, - [107] = 104, - [108] = 97, - [109] = 102, - [110] = 97, - [111] = 102, - [112] = 97, - [113] = 102, - [114] = 101, + [102] = 100, + [103] = 103, + [104] = 97, + [105] = 105, + [106] = 100, + [107] = 98, + [108] = 101, + [109] = 97, + [110] = 98, + [111] = 97, + [112] = 98, + [113] = 97, + [114] = 98, [115] = 97, - [116] = 102, + [116] = 98, [117] = 97, - [118] = 102, + [118] = 98, [119] = 97, - [120] = 102, + [120] = 98, [121] = 97, - [122] = 102, + [122] = 98, [123] = 97, - [124] = 102, + [124] = 98, [125] = 97, - [126] = 102, + [126] = 98, [127] = 97, - [128] = 102, + [128] = 98, [129] = 97, - [130] = 102, + [130] = 105, [131] = 131, [132] = 132, - [133] = 133, + [133] = 131, [134] = 134, - [135] = 131, + [135] = 135, [136] = 136, - [137] = 134, + [137] = 131, [138] = 138, - [139] = 131, - [140] = 134, + [139] = 136, + [140] = 136, [141] = 141, [142] = 142, [143] = 143, @@ -5296,46 +5300,46 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [154] = 154, [155] = 155, [156] = 156, - [157] = 156, - [158] = 158, + [157] = 157, + [158] = 155, [159] = 159, - [160] = 160, - [161] = 159, + [160] = 156, + [161] = 161, [162] = 162, - [163] = 163, - [164] = 164, - [165] = 165, - [166] = 166, - [167] = 160, - [168] = 155, - [169] = 163, - [170] = 162, - [171] = 164, + [163] = 159, + [164] = 156, + [165] = 161, + [166] = 162, + [167] = 167, + [168] = 168, + [169] = 161, + [170] = 170, + [171] = 162, [172] = 155, - [173] = 165, - [174] = 156, - [175] = 166, - [176] = 163, - [177] = 158, - [178] = 159, - [179] = 158, - [180] = 155, - [181] = 156, - [182] = 163, - [183] = 158, - [184] = 159, + [173] = 155, + [174] = 157, + [175] = 159, + [176] = 167, + [177] = 156, + [178] = 168, + [179] = 161, + [180] = 180, + [181] = 170, + [182] = 162, + [183] = 159, + [184] = 180, [185] = 185, [186] = 186, - [187] = 185, - [188] = 185, + [187] = 187, + [188] = 187, [189] = 185, - [190] = 190, + [190] = 187, [191] = 191, - [192] = 190, + [192] = 187, [193] = 193, - [194] = 193, - [195] = 195, - [196] = 195, + [194] = 194, + [195] = 193, + [196] = 194, [197] = 193, [198] = 198, [199] = 199, @@ -5344,8 +5348,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [202] = 202, [203] = 203, [204] = 204, - [205] = 202, - [206] = 203, + [205] = 203, + [206] = 204, [207] = 207, [208] = 208, [209] = 209, @@ -5354,28 +5358,28 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [212] = 212, [213] = 213, [214] = 214, - [215] = 215, + [215] = 211, [216] = 216, - [217] = 211, + [217] = 217, [218] = 218, [219] = 219, [220] = 220, [221] = 221, - [222] = 214, - [223] = 212, + [222] = 222, + [223] = 223, [224] = 224, - [225] = 198, + [225] = 225, [226] = 226, - [227] = 227, - [228] = 199, - [229] = 229, - [230] = 230, - [231] = 231, + [227] = 212, + [228] = 213, + [229] = 214, + [230] = 224, + [231] = 217, [232] = 232, - [233] = 233, - [234] = 234, - [235] = 235, - [236] = 236, + [233] = 218, + [234] = 223, + [235] = 224, + [236] = 232, [237] = 237, [238] = 238, [239] = 239, @@ -5384,395 +5388,395 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [242] = 242, [243] = 243, [244] = 244, - [245] = 245, - [246] = 246, - [247] = 247, - [248] = 248, - [249] = 199, - [250] = 210, - [251] = 224, - [252] = 224, - [253] = 226, - [254] = 227, - [255] = 255, - [256] = 229, - [257] = 230, - [258] = 231, - [259] = 232, - [260] = 233, - [261] = 234, - [262] = 235, - [263] = 236, - [264] = 237, - [265] = 238, - [266] = 239, - [267] = 240, - [268] = 241, - [269] = 242, - [270] = 243, - [271] = 244, - [272] = 245, - [273] = 246, - [274] = 247, - [275] = 248, - [276] = 226, - [277] = 227, - [278] = 255, - [279] = 229, - [280] = 213, - [281] = 230, - [282] = 231, - [283] = 232, - [284] = 233, - [285] = 234, - [286] = 235, - [287] = 236, - [288] = 237, - [289] = 238, - [290] = 239, - [291] = 240, - [292] = 241, - [293] = 242, - [294] = 243, - [295] = 244, - [296] = 245, - [297] = 246, - [298] = 247, - [299] = 248, - [300] = 300, - [301] = 301, - [302] = 255, + [245] = 237, + [246] = 238, + [247] = 239, + [248] = 240, + [249] = 249, + [250] = 241, + [251] = 242, + [252] = 243, + [253] = 253, + [254] = 244, + [255] = 232, + [256] = 237, + [257] = 238, + [258] = 239, + [259] = 240, + [260] = 241, + [261] = 242, + [262] = 243, + [263] = 263, + [264] = 264, + [265] = 216, + [266] = 266, + [267] = 219, + [268] = 216, + [269] = 220, + [270] = 270, + [271] = 221, + [272] = 219, + [273] = 222, + [274] = 220, + [275] = 221, + [276] = 225, + [277] = 222, + [278] = 225, + [279] = 279, + [280] = 226, + [281] = 212, + [282] = 210, + [283] = 213, + [284] = 214, + [285] = 226, + [286] = 211, + [287] = 217, + [288] = 288, + [289] = 218, + [290] = 223, + [291] = 291, + [292] = 244, + [293] = 270, + [294] = 279, + [295] = 295, + [296] = 296, + [297] = 297, + [298] = 298, + [299] = 288, + [300] = 291, + [301] = 264, + [302] = 266, [303] = 303, [304] = 304, [305] = 305, - [306] = 306, - [307] = 307, - [308] = 218, - [309] = 219, - [310] = 310, - [311] = 311, + [306] = 249, + [307] = 263, + [308] = 308, + [309] = 309, + [310] = 253, + [311] = 198, [312] = 312, - [313] = 300, - [314] = 201, - [315] = 216, - [316] = 220, + [313] = 199, + [314] = 198, + [315] = 295, + [316] = 316, [317] = 317, - [318] = 221, + [318] = 298, [319] = 319, [320] = 320, - [321] = 321, + [321] = 308, [322] = 322, - [323] = 323, - [324] = 324, - [325] = 325, - [326] = 326, + [323] = 141, + [324] = 303, + [325] = 305, + [326] = 201, [327] = 327, - [328] = 141, - [329] = 323, + [328] = 296, + [329] = 329, [330] = 330, [331] = 331, [332] = 332, - [333] = 319, - [334] = 323, - [335] = 332, + [333] = 333, + [334] = 333, + [335] = 297, [336] = 336, - [337] = 332, - [338] = 325, - [339] = 323, + [337] = 337, + [338] = 338, + [339] = 337, [340] = 340, - [341] = 341, - [342] = 325, - [343] = 343, - [344] = 332, - [345] = 345, - [346] = 346, - [347] = 323, - [348] = 304, - [349] = 307, + [341] = 340, + [342] = 337, + [343] = 333, + [344] = 340, + [345] = 312, + [346] = 337, + [347] = 340, + [348] = 337, + [349] = 340, [350] = 350, - [351] = 312, - [352] = 303, - [353] = 332, - [354] = 311, - [355] = 320, - [356] = 356, - [357] = 350, - [358] = 141, - [359] = 324, + [351] = 331, + [352] = 316, + [353] = 143, + [354] = 142, + [355] = 350, + [356] = 327, + [357] = 329, + [358] = 330, + [359] = 319, [360] = 360, - [361] = 142, - [362] = 143, - [363] = 330, - [364] = 345, - [365] = 341, - [366] = 343, - [367] = 346, - [368] = 327, - [369] = 369, - [370] = 370, + [361] = 361, + [362] = 332, + [363] = 363, + [364] = 364, + [365] = 365, + [366] = 366, + [367] = 367, + [368] = 141, + [369] = 361, + [370] = 145, [371] = 371, - [372] = 372, + [372] = 148, [373] = 373, - [374] = 350, - [375] = 142, - [376] = 145, - [377] = 144, - [378] = 143, + [374] = 374, + [375] = 331, + [376] = 149, + [377] = 332, + [378] = 144, [379] = 146, - [380] = 147, - [381] = 149, + [380] = 360, + [381] = 381, [382] = 382, - [383] = 148, - [384] = 327, - [385] = 360, - [386] = 356, - [387] = 360, - [388] = 388, - [389] = 146, - [390] = 147, + [383] = 142, + [384] = 143, + [385] = 385, + [386] = 147, + [387] = 145, + [388] = 146, + [389] = 147, + [390] = 390, [391] = 391, - [392] = 392, - [393] = 393, - [394] = 382, - [395] = 149, - [396] = 148, - [397] = 145, - [398] = 369, - [399] = 327, - [400] = 373, - [401] = 144, - [402] = 402, - [403] = 372, - [404] = 152, - [405] = 350, - [406] = 350, + [392] = 148, + [393] = 144, + [394] = 141, + [395] = 331, + [396] = 360, + [397] = 397, + [398] = 361, + [399] = 399, + [400] = 332, + [401] = 401, + [402] = 332, + [403] = 403, + [404] = 404, + [405] = 405, + [406] = 406, [407] = 407, [408] = 408, - [409] = 327, - [410] = 356, - [411] = 411, - [412] = 412, + [409] = 409, + [410] = 410, + [411] = 152, + [412] = 385, [413] = 413, [414] = 414, [415] = 415, - [416] = 416, - [417] = 417, + [416] = 381, + [417] = 151, [418] = 418, - [419] = 419, - [420] = 420, - [421] = 370, - [422] = 150, - [423] = 141, - [424] = 424, + [419] = 141, + [420] = 382, + [421] = 371, + [422] = 422, + [423] = 423, + [424] = 150, [425] = 425, - [426] = 426, + [426] = 373, [427] = 427, - [428] = 371, + [428] = 149, [429] = 429, - [430] = 430, + [430] = 374, [431] = 431, - [432] = 141, + [432] = 432, [433] = 433, [434] = 434, - [435] = 435, - [436] = 151, - [437] = 356, - [438] = 370, - [439] = 371, + [435] = 331, + [436] = 436, + [437] = 433, + [438] = 371, + [439] = 406, [440] = 373, - [441] = 382, - [442] = 350, - [443] = 393, - [444] = 444, - [445] = 445, - [446] = 142, - [447] = 143, - [448] = 407, - [449] = 412, - [450] = 152, - [451] = 142, - [452] = 153, - [453] = 413, - [454] = 414, - [455] = 143, - [456] = 151, - [457] = 150, - [458] = 416, - [459] = 417, - [460] = 418, - [461] = 419, - [462] = 424, - [463] = 425, - [464] = 426, - [465] = 465, - [466] = 429, - [467] = 430, - [468] = 431, - [469] = 434, - [470] = 411, - [471] = 435, - [472] = 472, + [441] = 374, + [442] = 407, + [443] = 332, + [444] = 408, + [445] = 152, + [446] = 143, + [447] = 153, + [448] = 410, + [449] = 449, + [450] = 413, + [451] = 418, + [452] = 452, + [453] = 429, + [454] = 142, + [455] = 151, + [456] = 150, + [457] = 414, + [458] = 415, + [459] = 434, + [460] = 391, + [461] = 422, + [462] = 397, + [463] = 399, + [464] = 464, + [465] = 427, + [466] = 405, + [467] = 331, + [468] = 425, + [469] = 360, + [470] = 436, + [471] = 471, + [472] = 361, [473] = 473, - [474] = 388, - [475] = 402, - [476] = 476, + [474] = 409, + [475] = 475, + [476] = 390, [477] = 477, - [478] = 478, + [478] = 401, [479] = 479, - [480] = 415, - [481] = 481, - [482] = 420, - [483] = 408, - [484] = 327, + [480] = 480, + [481] = 431, + [482] = 432, + [483] = 483, + [484] = 143, [485] = 360, - [486] = 356, - [487] = 392, - [488] = 433, - [489] = 489, - [490] = 391, - [491] = 360, - [492] = 492, - [493] = 427, - [494] = 370, - [495] = 495, - [496] = 146, - [497] = 497, - [498] = 147, - [499] = 149, - [500] = 500, + [486] = 142, + [487] = 361, + [488] = 385, + [489] = 404, + [490] = 490, + [491] = 491, + [492] = 423, + [493] = 403, + [494] = 491, + [495] = 145, + [496] = 153, + [497] = 145, + [498] = 149, + [499] = 499, + [500] = 146, [501] = 501, - [502] = 148, - [503] = 503, - [504] = 153, - [505] = 146, - [506] = 147, - [507] = 149, - [508] = 148, - [509] = 145, - [510] = 144, - [511] = 476, - [512] = 477, - [513] = 478, - [514] = 479, - [515] = 481, - [516] = 445, - [517] = 473, - [518] = 518, - [519] = 519, - [520] = 350, - [521] = 521, - [522] = 472, - [523] = 523, - [524] = 524, - [525] = 525, - [526] = 145, - [527] = 360, - [528] = 528, - [529] = 356, - [530] = 370, - [531] = 371, - [532] = 144, - [533] = 373, - [534] = 382, - [535] = 535, + [502] = 147, + [503] = 148, + [504] = 504, + [505] = 505, + [506] = 144, + [507] = 507, + [508] = 146, + [509] = 147, + [510] = 148, + [511] = 144, + [512] = 464, + [513] = 473, + [514] = 360, + [515] = 361, + [516] = 385, + [517] = 371, + [518] = 373, + [519] = 374, + [520] = 385, + [521] = 371, + [522] = 373, + [523] = 374, + [524] = 331, + [525] = 332, + [526] = 526, + [527] = 527, + [528] = 471, + [529] = 475, + [530] = 477, + [531] = 531, + [532] = 532, + [533] = 533, + [534] = 534, + [535] = 479, [536] = 536, [537] = 537, - [538] = 444, - [539] = 492, - [540] = 327, - [541] = 465, - [542] = 489, + [538] = 480, + [539] = 539, + [540] = 540, + [541] = 541, + [542] = 542, [543] = 543, [544] = 544, - [545] = 371, - [546] = 546, - [547] = 547, - [548] = 373, - [549] = 382, - [550] = 550, - [551] = 373, - [552] = 382, - [553] = 536, - [554] = 535, - [555] = 523, - [556] = 501, - [557] = 518, - [558] = 558, - [559] = 559, - [560] = 327, + [545] = 483, + [546] = 449, + [547] = 452, + [548] = 490, + [549] = 149, + [550] = 332, + [551] = 371, + [552] = 501, + [553] = 373, + [554] = 374, + [555] = 504, + [556] = 505, + [557] = 499, + [558] = 331, + [559] = 152, + [560] = 150, [561] = 360, - [562] = 521, - [563] = 524, - [564] = 564, - [565] = 528, - [566] = 350, - [567] = 525, - [568] = 151, - [569] = 152, - [570] = 570, - [571] = 150, - [572] = 151, - [573] = 546, - [574] = 497, - [575] = 543, - [576] = 547, - [577] = 356, - [578] = 150, - [579] = 537, - [580] = 519, - [581] = 500, - [582] = 370, - [583] = 503, + [562] = 151, + [563] = 361, + [564] = 532, + [565] = 152, + [566] = 385, + [567] = 536, + [568] = 568, + [569] = 527, + [570] = 537, + [571] = 539, + [572] = 544, + [573] = 531, + [574] = 533, + [575] = 150, + [576] = 534, + [577] = 577, + [578] = 540, + [579] = 541, + [580] = 580, + [581] = 542, + [582] = 543, + [583] = 583, [584] = 584, - [585] = 544, - [586] = 371, - [587] = 152, + [585] = 585, + [586] = 151, + [587] = 507, [588] = 588, - [589] = 589, + [589] = 385, [590] = 590, [591] = 591, - [592] = 592, + [592] = 371, [593] = 593, - [594] = 594, - [595] = 595, + [594] = 373, + [595] = 374, [596] = 596, [597] = 597, [598] = 598, - [599] = 360, - [600] = 356, + [599] = 599, + [600] = 600, [601] = 601, [602] = 602, [603] = 603, [604] = 604, - [605] = 605, + [605] = 146, [606] = 606, - [607] = 607, + [607] = 360, [608] = 608, - [609] = 609, + [609] = 361, [610] = 610, [611] = 611, [612] = 612, [613] = 613, - [614] = 370, - [615] = 371, - [616] = 373, - [617] = 382, + [614] = 147, + [615] = 615, + [616] = 580, + [617] = 617, [618] = 618, [619] = 619, - [620] = 620, + [620] = 148, [621] = 621, [622] = 622, - [623] = 623, + [623] = 144, [624] = 624, [625] = 625, [626] = 626, [627] = 627, [628] = 628, - [629] = 153, + [629] = 629, [630] = 630, [631] = 631, [632] = 632, - [633] = 633, + [633] = 584, [634] = 634, [635] = 635, [636] = 636, @@ -5780,255 +5784,255 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [638] = 638, [639] = 639, [640] = 640, - [641] = 641, - [642] = 444, - [643] = 445, - [644] = 644, + [641] = 585, + [642] = 642, + [643] = 643, + [644] = 153, [645] = 645, [646] = 646, - [647] = 647, + [647] = 153, [648] = 648, - [649] = 649, - [650] = 650, + [649] = 479, + [650] = 480, [651] = 651, [652] = 652, - [653] = 550, + [653] = 653, [654] = 654, - [655] = 153, + [655] = 655, [656] = 656, [657] = 657, - [658] = 146, - [659] = 147, - [660] = 149, - [661] = 148, + [658] = 658, + [659] = 659, + [660] = 660, + [661] = 661, [662] = 662, [663] = 663, - [664] = 570, + [664] = 664, [665] = 665, [666] = 666, [667] = 667, [668] = 668, - [669] = 558, - [670] = 559, + [669] = 669, + [670] = 670, [671] = 671, [672] = 672, [673] = 673, - [674] = 674, - [675] = 673, - [676] = 647, - [677] = 648, - [678] = 649, - [679] = 622, - [680] = 623, - [681] = 651, - [682] = 641, - [683] = 638, - [684] = 620, - [685] = 621, - [686] = 624, - [687] = 444, - [688] = 445, - [689] = 198, - [690] = 625, - [691] = 626, - [692] = 650, - [693] = 627, - [694] = 370, - [695] = 656, - [696] = 630, - [697] = 631, - [698] = 674, - [699] = 657, - [700] = 371, - [701] = 619, - [702] = 373, - [703] = 633, - [704] = 663, - [705] = 634, - [706] = 635, - [707] = 707, - [708] = 146, - [709] = 665, - [710] = 636, - [711] = 711, - [712] = 147, - [713] = 149, - [714] = 671, - [715] = 613, - [716] = 148, - [717] = 632, - [718] = 589, - [719] = 590, - [720] = 591, - [721] = 592, - [722] = 593, - [723] = 594, - [724] = 595, - [725] = 596, - [726] = 597, - [727] = 618, - [728] = 382, - [729] = 598, - [730] = 601, - [731] = 667, - [732] = 668, - [733] = 602, - [734] = 603, - [735] = 604, - [736] = 736, - [737] = 605, - [738] = 606, - [739] = 607, - [740] = 608, - [741] = 609, - [742] = 672, - [743] = 588, - [744] = 610, - [745] = 628, - [746] = 611, - [747] = 666, - [748] = 644, - [749] = 645, - [750] = 612, - [751] = 637, - [752] = 201, - [753] = 753, - [754] = 754, - [755] = 755, - [756] = 756, - [757] = 757, - [758] = 758, - [759] = 198, - [760] = 758, - [761] = 761, - [762] = 762, - [763] = 220, + [674] = 583, + [675] = 596, + [676] = 638, + [677] = 666, + [678] = 591, + [679] = 385, + [680] = 655, + [681] = 628, + [682] = 629, + [683] = 657, + [684] = 371, + [685] = 640, + [686] = 686, + [687] = 613, + [688] = 652, + [689] = 373, + [690] = 615, + [691] = 374, + [692] = 601, + [693] = 603, + [694] = 634, + [695] = 636, + [696] = 590, + [697] = 598, + [698] = 639, + [699] = 661, + [700] = 632, + [701] = 642, + [702] = 702, + [703] = 643, + [704] = 604, + [705] = 593, + [706] = 599, + [707] = 612, + [708] = 624, + [709] = 626, + [710] = 656, + [711] = 627, + [712] = 621, + [713] = 637, + [714] = 645, + [715] = 648, + [716] = 146, + [717] = 597, + [718] = 654, + [719] = 147, + [720] = 148, + [721] = 660, + [722] = 663, + [723] = 664, + [724] = 724, + [725] = 665, + [726] = 588, + [727] = 479, + [728] = 480, + [729] = 199, + [730] = 668, + [731] = 671, + [732] = 618, + [733] = 600, + [734] = 625, + [735] = 631, + [736] = 608, + [737] = 610, + [738] = 611, + [739] = 617, + [740] = 659, + [741] = 651, + [742] = 653, + [743] = 658, + [744] = 662, + [745] = 667, + [746] = 669, + [747] = 673, + [748] = 622, + [749] = 646, + [750] = 144, + [751] = 670, + [752] = 752, + [753] = 266, + [754] = 201, + [755] = 264, + [756] = 266, + [757] = 264, + [758] = 266, + [759] = 264, + [760] = 303, + [761] = 266, + [762] = 264, + [763] = 305, [764] = 764, - [765] = 765, - [766] = 766, - [767] = 767, + [765] = 305, + [766] = 264, + [767] = 303, [768] = 768, - [769] = 769, - [770] = 770, - [771] = 201, - [772] = 772, - [773] = 773, - [774] = 221, - [775] = 775, - [776] = 776, - [777] = 770, - [778] = 221, - [779] = 773, - [780] = 220, - [781] = 221, - [782] = 220, - [783] = 319, - [784] = 220, - [785] = 221, - [786] = 772, - [787] = 769, - [788] = 320, - [789] = 775, - [790] = 320, - [791] = 346, - [792] = 320, - [793] = 319, - [794] = 341, - [795] = 319, - [796] = 220, - [797] = 319, - [798] = 320, - [799] = 221, - [800] = 343, - [801] = 801, - [802] = 345, - [803] = 343, - [804] = 345, - [805] = 343, - [806] = 341, - [807] = 346, - [808] = 346, - [809] = 346, - [810] = 320, - [811] = 801, - [812] = 221, - [813] = 801, - [814] = 343, - [815] = 341, - [816] = 220, - [817] = 345, - [818] = 345, - [819] = 319, - [820] = 801, - [821] = 341, - [822] = 801, - [823] = 320, - [824] = 319, - [825] = 343, - [826] = 346, - [827] = 341, - [828] = 345, - [829] = 829, - [830] = 829, - [831] = 345, - [832] = 832, - [833] = 829, - [834] = 829, - [835] = 829, - [836] = 829, - [837] = 829, - [838] = 341, - [839] = 829, - [840] = 346, - [841] = 832, - [842] = 829, - [843] = 801, - [844] = 343, - [845] = 829, - [846] = 829, - [847] = 829, - [848] = 829, - [849] = 849, - [850] = 829, - [851] = 832, - [852] = 829, - [853] = 849, - [854] = 829, - [855] = 829, - [856] = 849, - [857] = 849, - [858] = 849, - [859] = 859, - [860] = 860, - [861] = 859, - [862] = 860, - [863] = 860, - [864] = 860, - [865] = 859, - [866] = 859, - [867] = 860, - [868] = 859, - [869] = 869, - [870] = 870, - [871] = 869, - [872] = 869, - [873] = 869, - [874] = 869, - [875] = 869, - [876] = 869, - [877] = 869, - [878] = 869, - [879] = 869, - [880] = 869, - [881] = 869, - [882] = 869, - [883] = 869, - [884] = 869, - [885] = 869, - [886] = 869, - [887] = 869, - [888] = 859, - [889] = 860, + [769] = 303, + [770] = 266, + [771] = 305, + [772] = 329, + [773] = 350, + [774] = 327, + [775] = 330, + [776] = 305, + [777] = 303, + [778] = 778, + [779] = 779, + [780] = 329, + [781] = 779, + [782] = 779, + [783] = 329, + [784] = 350, + [785] = 350, + [786] = 327, + [787] = 264, + [788] = 327, + [789] = 330, + [790] = 330, + [791] = 350, + [792] = 779, + [793] = 793, + [794] = 327, + [795] = 329, + [796] = 330, + [797] = 266, + [798] = 303, + [799] = 799, + [800] = 793, + [801] = 305, + [802] = 199, + [803] = 803, + [804] = 327, + [805] = 805, + [806] = 806, + [807] = 779, + [808] = 330, + [809] = 201, + [810] = 810, + [811] = 811, + [812] = 812, + [813] = 350, + [814] = 814, + [815] = 815, + [816] = 305, + [817] = 817, + [818] = 303, + [819] = 819, + [820] = 820, + [821] = 329, + [822] = 822, + [823] = 823, + [824] = 329, + [825] = 327, + [826] = 779, + [827] = 817, + [828] = 814, + [829] = 803, + [830] = 350, + [831] = 822, + [832] = 330, + [833] = 805, + [834] = 834, + [835] = 835, + [836] = 835, + [837] = 834, + [838] = 834, + [839] = 835, + [840] = 834, + [841] = 835, + [842] = 842, + [843] = 842, + [844] = 844, + [845] = 842, + [846] = 842, + [847] = 842, + [848] = 842, + [849] = 844, + [850] = 842, + [851] = 844, + [852] = 844, + [853] = 842, + [854] = 854, + [855] = 854, + [856] = 842, + [857] = 835, + [858] = 842, + [859] = 842, + [860] = 842, + [861] = 842, + [862] = 854, + [863] = 842, + [864] = 842, + [865] = 834, + [866] = 842, + [867] = 842, + [868] = 844, + [869] = 835, + [870] = 834, + [871] = 871, + [872] = 871, + [873] = 873, + [874] = 871, + [875] = 871, + [876] = 871, + [877] = 871, + [878] = 871, + [879] = 871, + [880] = 871, + [881] = 871, + [882] = 871, + [883] = 871, + [884] = 871, + [885] = 871, + [886] = 871, + [887] = 871, + [888] = 871, + [889] = 871, [890] = 890, [891] = 891, [892] = 892, @@ -6069,130 +6073,130 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [927] = 927, [928] = 928, [929] = 929, - [930] = 930, - [931] = 931, - [932] = 932, - [933] = 933, - [934] = 934, - [935] = 935, - [936] = 936, - [937] = 937, - [938] = 938, - [939] = 939, - [940] = 940, - [941] = 927, - [942] = 928, - [943] = 929, - [944] = 930, - [945] = 931, - [946] = 932, - [947] = 933, - [948] = 934, - [949] = 935, - [950] = 936, - [951] = 937, - [952] = 938, - [953] = 939, - [954] = 954, - [955] = 955, + [930] = 891, + [931] = 892, + [932] = 893, + [933] = 894, + [934] = 895, + [935] = 896, + [936] = 897, + [937] = 898, + [938] = 899, + [939] = 900, + [940] = 901, + [941] = 902, + [942] = 903, + [943] = 904, + [944] = 905, + [945] = 906, + [946] = 907, + [947] = 908, + [948] = 909, + [949] = 910, + [950] = 911, + [951] = 912, + [952] = 913, + [953] = 914, + [954] = 915, + [955] = 916, [956] = 956, [957] = 957, - [958] = 891, - [959] = 892, - [960] = 893, - [961] = 894, - [962] = 895, - [963] = 896, - [964] = 897, - [965] = 898, - [966] = 899, - [967] = 900, - [968] = 901, - [969] = 902, - [970] = 903, - [971] = 904, - [972] = 905, - [973] = 906, - [974] = 907, - [975] = 890, - [976] = 908, - [977] = 909, - [978] = 910, - [979] = 911, - [980] = 912, - [981] = 913, - [982] = 914, - [983] = 915, - [984] = 916, - [985] = 917, - [986] = 918, - [987] = 919, - [988] = 920, - [989] = 921, - [990] = 922, - [991] = 923, - [992] = 924, - [993] = 927, - [994] = 928, - [995] = 929, - [996] = 930, - [997] = 931, - [998] = 932, - [999] = 933, - [1000] = 934, - [1001] = 935, - [1002] = 936, - [1003] = 937, - [1004] = 938, - [1005] = 939, - [1006] = 954, - [1007] = 955, - [1008] = 956, - [1009] = 957, - [1010] = 891, - [1011] = 892, - [1012] = 893, - [1013] = 894, - [1014] = 895, - [1015] = 896, - [1016] = 897, - [1017] = 898, - [1018] = 899, - [1019] = 900, - [1020] = 901, - [1021] = 902, - [1022] = 903, - [1023] = 904, - [1024] = 905, - [1025] = 906, - [1026] = 907, - [1027] = 890, - [1028] = 908, - [1029] = 909, - [1030] = 910, - [1031] = 911, - [1032] = 912, - [1033] = 913, - [1034] = 914, - [1035] = 915, - [1036] = 916, - [1037] = 917, - [1038] = 918, - [1039] = 919, - [1040] = 920, - [1041] = 921, - [1042] = 922, - [1043] = 923, - [1044] = 924, - [1045] = 956, - [1046] = 954, - [1047] = 955, - [1048] = 957, + [958] = 958, + [959] = 959, + [960] = 960, + [961] = 961, + [962] = 962, + [963] = 963, + [964] = 964, + [965] = 965, + [966] = 966, + [967] = 967, + [968] = 968, + [969] = 956, + [970] = 957, + [971] = 958, + [972] = 959, + [973] = 973, + [974] = 917, + [975] = 918, + [976] = 919, + [977] = 920, + [978] = 921, + [979] = 922, + [980] = 923, + [981] = 924, + [982] = 925, + [983] = 926, + [984] = 927, + [985] = 928, + [986] = 929, + [987] = 891, + [988] = 892, + [989] = 893, + [990] = 894, + [991] = 895, + [992] = 896, + [993] = 897, + [994] = 898, + [995] = 899, + [996] = 900, + [997] = 901, + [998] = 902, + [999] = 903, + [1000] = 904, + [1001] = 905, + [1002] = 906, + [1003] = 907, + [1004] = 908, + [1005] = 909, + [1006] = 910, + [1007] = 911, + [1008] = 912, + [1009] = 913, + [1010] = 914, + [1011] = 915, + [1012] = 916, + [1013] = 956, + [1014] = 957, + [1015] = 958, + [1016] = 959, + [1017] = 960, + [1018] = 961, + [1019] = 962, + [1020] = 963, + [1021] = 964, + [1022] = 965, + [1023] = 890, + [1024] = 967, + [1025] = 968, + [1026] = 961, + [1027] = 962, + [1028] = 963, + [1029] = 964, + [1030] = 965, + [1031] = 890, + [1032] = 967, + [1033] = 968, + [1034] = 917, + [1035] = 918, + [1036] = 919, + [1037] = 920, + [1038] = 921, + [1039] = 922, + [1040] = 923, + [1041] = 924, + [1042] = 925, + [1043] = 926, + [1044] = 927, + [1045] = 928, + [1046] = 929, + [1047] = 1047, + [1048] = 960, [1049] = 1049, [1050] = 1050, [1051] = 1051, [1052] = 1052, - [1053] = 1053, + [1053] = 1050, [1054] = 1054, [1055] = 1055, [1056] = 1056, @@ -6200,1231 +6204,1231 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1058] = 1058, [1059] = 1059, [1060] = 1060, - [1061] = 1058, - [1062] = 1059, - [1063] = 1060, - [1064] = 1064, - [1065] = 1050, - [1066] = 1066, - [1067] = 1067, - [1068] = 1050, - [1069] = 1051, - [1070] = 1052, - [1071] = 1053, - [1072] = 1054, - [1073] = 1055, - [1074] = 1056, - [1075] = 1057, - [1076] = 1058, - [1077] = 1059, - [1078] = 1060, - [1079] = 1066, - [1080] = 1067, - [1081] = 1066, - [1082] = 1051, - [1083] = 1067, - [1084] = 1053, - [1085] = 1054, - [1086] = 1055, - [1087] = 1056, - [1088] = 1057, - [1089] = 1058, - [1090] = 1059, - [1091] = 1060, - [1092] = 1066, - [1093] = 1066, - [1094] = 1067, - [1095] = 1050, - [1096] = 1051, - [1097] = 1052, - [1098] = 1053, - [1099] = 1054, - [1100] = 1055, - [1101] = 1056, - [1102] = 1057, - [1103] = 1058, - [1104] = 1059, - [1105] = 1060, - [1106] = 1067, - [1107] = 1066, - [1108] = 1067, - [1109] = 1050, - [1110] = 1051, - [1111] = 1052, - [1112] = 1053, - [1113] = 1054, - [1114] = 1055, - [1115] = 1056, - [1116] = 1057, - [1117] = 1058, - [1118] = 1059, - [1119] = 1060, - [1120] = 1050, - [1121] = 1051, - [1122] = 1052, - [1123] = 1053, - [1124] = 1054, - [1125] = 1064, - [1126] = 1055, - [1127] = 1056, - [1128] = 1057, - [1129] = 1052, - [1130] = 1130, - [1131] = 1130, - [1132] = 1130, - [1133] = 1130, - [1134] = 1134, - [1135] = 1135, + [1061] = 1061, + [1062] = 1062, + [1063] = 1063, + [1064] = 266, + [1065] = 264, + [1066] = 266, + [1067] = 1063, + [1068] = 1051, + [1069] = 1052, + [1070] = 1050, + [1071] = 1054, + [1072] = 1055, + [1073] = 1056, + [1074] = 1057, + [1075] = 1058, + [1076] = 1059, + [1077] = 1060, + [1078] = 1061, + [1079] = 1062, + [1080] = 1063, + [1081] = 1050, + [1082] = 1054, + [1083] = 1055, + [1084] = 1056, + [1085] = 1057, + [1086] = 1058, + [1087] = 1059, + [1088] = 1060, + [1089] = 1061, + [1090] = 1062, + [1091] = 1063, + [1092] = 1051, + [1093] = 1052, + [1094] = 264, + [1095] = 1052, + [1096] = 1050, + [1097] = 1054, + [1098] = 1055, + [1099] = 1056, + [1100] = 1057, + [1101] = 1058, + [1102] = 1059, + [1103] = 1060, + [1104] = 1051, + [1105] = 1052, + [1106] = 1050, + [1107] = 1054, + [1108] = 1055, + [1109] = 1056, + [1110] = 1057, + [1111] = 1058, + [1112] = 1059, + [1113] = 1060, + [1114] = 1061, + [1115] = 1062, + [1116] = 1063, + [1117] = 1061, + [1118] = 1118, + [1119] = 1051, + [1120] = 1052, + [1121] = 1062, + [1122] = 1054, + [1123] = 1055, + [1124] = 1056, + [1125] = 1057, + [1126] = 1058, + [1127] = 1059, + [1128] = 1060, + [1129] = 1061, + [1130] = 1062, + [1131] = 1063, + [1132] = 1118, + [1133] = 264, + [1134] = 266, + [1135] = 1051, [1136] = 1136, - [1137] = 1137, + [1137] = 305, [1138] = 1136, - [1139] = 1139, - [1140] = 1134, - [1141] = 1139, - [1142] = 1142, - [1143] = 1130, - [1144] = 1144, - [1145] = 1145, - [1146] = 198, + [1139] = 305, + [1140] = 303, + [1141] = 264, + [1142] = 1136, + [1143] = 303, + [1144] = 266, + [1145] = 305, + [1146] = 303, [1147] = 1147, [1148] = 1148, - [1149] = 221, - [1150] = 1150, - [1151] = 221, - [1152] = 1152, - [1153] = 1153, - [1154] = 1154, - [1155] = 220, - [1156] = 220, - [1157] = 1157, - [1158] = 220, - [1159] = 1153, - [1160] = 201, - [1161] = 1161, - [1162] = 221, - [1163] = 1154, - [1164] = 1164, - [1165] = 320, - [1166] = 320, - [1167] = 319, - [1168] = 320, - [1169] = 1169, - [1170] = 220, - [1171] = 221, - [1172] = 319, - [1173] = 1173, - [1174] = 1169, - [1175] = 1173, - [1176] = 319, - [1177] = 345, + [1149] = 330, + [1150] = 327, + [1151] = 1151, + [1152] = 1148, + [1153] = 330, + [1154] = 264, + [1155] = 266, + [1156] = 303, + [1157] = 1147, + [1158] = 305, + [1159] = 350, + [1160] = 1160, + [1161] = 329, + [1162] = 1162, + [1163] = 1136, + [1164] = 327, + [1165] = 779, + [1166] = 329, + [1167] = 330, + [1168] = 350, + [1169] = 350, + [1170] = 779, + [1171] = 1151, + [1172] = 327, + [1173] = 779, + [1174] = 329, + [1175] = 1175, + [1176] = 1136, + [1177] = 779, [1178] = 1178, - [1179] = 1178, - [1180] = 1178, - [1181] = 346, - [1182] = 343, - [1183] = 1183, - [1184] = 1183, - [1185] = 345, - [1186] = 341, - [1187] = 343, - [1188] = 346, - [1189] = 345, - [1190] = 801, - [1191] = 346, - [1192] = 1192, - [1193] = 801, - [1194] = 341, - [1195] = 220, - [1196] = 343, - [1197] = 801, - [1198] = 221, - [1199] = 319, - [1200] = 1192, - [1201] = 1192, - [1202] = 320, - [1203] = 1183, - [1204] = 341, + [1179] = 199, + [1180] = 1180, + [1181] = 303, + [1182] = 305, + [1183] = 350, + [1184] = 327, + [1185] = 329, + [1186] = 330, + [1187] = 1187, + [1188] = 1188, + [1189] = 330, + [1190] = 1190, + [1191] = 350, + [1192] = 201, + [1193] = 327, + [1194] = 1194, + [1195] = 329, + [1196] = 1190, + [1197] = 1197, + [1198] = 1198, + [1199] = 1194, + [1200] = 1200, + [1201] = 1201, + [1202] = 1202, + [1203] = 779, + [1204] = 1204, [1205] = 1205, - [1206] = 346, - [1207] = 1207, - [1208] = 319, + [1206] = 1205, + [1207] = 1204, + [1208] = 1208, [1209] = 1209, - [1210] = 801, - [1211] = 320, - [1212] = 1212, - [1213] = 1213, - [1214] = 1214, - [1215] = 1214, - [1216] = 341, - [1217] = 1207, - [1218] = 1209, - [1219] = 343, - [1220] = 1220, - [1221] = 1212, - [1222] = 1205, - [1223] = 1220, - [1224] = 345, - [1225] = 346, - [1226] = 801, - [1227] = 343, - [1228] = 211, - [1229] = 345, - [1230] = 341, + [1210] = 1210, + [1211] = 1210, + [1212] = 1209, + [1213] = 1208, + [1214] = 1208, + [1215] = 1210, + [1216] = 1209, + [1217] = 1217, + [1218] = 835, + [1219] = 1219, + [1220] = 141, + [1221] = 1221, + [1222] = 834, + [1223] = 1223, + [1224] = 1219, + [1225] = 834, + [1226] = 835, + [1227] = 1217, + [1228] = 834, + [1229] = 835, + [1230] = 1230, [1231] = 1231, - [1232] = 1231, - [1233] = 221, - [1234] = 211, - [1235] = 220, - [1236] = 216, - [1237] = 141, - [1238] = 218, - [1239] = 219, - [1240] = 1240, - [1241] = 319, - [1242] = 320, - [1243] = 1243, - [1244] = 1244, - [1245] = 1245, - [1246] = 219, - [1247] = 220, - [1248] = 1248, - [1249] = 1240, - [1250] = 1243, - [1251] = 142, - [1252] = 143, - [1253] = 221, - [1254] = 1243, - [1255] = 1244, - [1256] = 220, - [1257] = 221, - [1258] = 1245, - [1259] = 1259, - [1260] = 304, - [1261] = 1245, - [1262] = 307, - [1263] = 312, - [1264] = 303, - [1265] = 216, - [1266] = 1240, - [1267] = 1244, - [1268] = 1240, - [1269] = 1243, - [1270] = 1244, - [1271] = 1245, - [1272] = 218, - [1273] = 1248, - [1274] = 1243, - [1275] = 1244, - [1276] = 1240, - [1277] = 1243, - [1278] = 1244, - [1279] = 1245, - [1280] = 1240, - [1281] = 1243, - [1282] = 1244, - [1283] = 1245, - [1284] = 1240, - [1285] = 1243, - [1286] = 1244, - [1287] = 1245, - [1288] = 1240, - [1289] = 1243, - [1290] = 1244, - [1291] = 1245, - [1292] = 1243, - [1293] = 1244, - [1294] = 1245, - [1295] = 1240, - [1296] = 1243, - [1297] = 1244, - [1298] = 1245, - [1299] = 1240, - [1300] = 1244, - [1301] = 1245, - [1302] = 1240, - [1303] = 1240, - [1304] = 327, - [1305] = 330, - [1306] = 319, - [1307] = 320, - [1308] = 220, - [1309] = 141, - [1310] = 859, - [1311] = 860, - [1312] = 221, - [1313] = 307, - [1314] = 312, - [1315] = 303, - [1316] = 859, - [1317] = 860, - [1318] = 341, - [1319] = 345, - [1320] = 1259, - [1321] = 859, - [1322] = 1322, - [1323] = 860, - [1324] = 346, - [1325] = 320, - [1326] = 350, - [1327] = 145, - [1328] = 144, - [1329] = 343, - [1330] = 324, - [1331] = 304, - [1332] = 146, - [1333] = 147, - [1334] = 149, - [1335] = 148, - [1336] = 141, - [1337] = 319, - [1338] = 341, - [1339] = 330, - [1340] = 345, - [1341] = 346, - [1342] = 324, - [1343] = 319, - [1344] = 327, - [1345] = 142, - [1346] = 341, - [1347] = 356, - [1348] = 211, - [1349] = 350, - [1350] = 1350, - [1351] = 343, - [1352] = 141, - [1353] = 216, - [1354] = 859, - [1355] = 860, - [1356] = 345, - [1357] = 152, - [1358] = 343, - [1359] = 143, - [1360] = 330, - [1361] = 143, - [1362] = 151, - [1363] = 150, - [1364] = 360, - [1365] = 1365, - [1366] = 346, - [1367] = 142, - [1368] = 324, - [1369] = 1369, - [1370] = 320, - [1371] = 147, - [1372] = 356, - [1373] = 304, - [1374] = 382, - [1375] = 1365, - [1376] = 149, - [1377] = 360, - [1378] = 146, - [1379] = 144, - [1380] = 343, - [1381] = 345, - [1382] = 149, - [1383] = 341, - [1384] = 148, - [1385] = 148, - [1386] = 142, - [1387] = 303, - [1388] = 373, - [1389] = 350, - [1390] = 141, - [1391] = 346, + [1232] = 1232, + [1233] = 1223, + [1234] = 1221, + [1235] = 1232, + [1236] = 1230, + [1237] = 1237, + [1238] = 210, + [1239] = 834, + [1240] = 143, + [1241] = 835, + [1242] = 1237, + [1243] = 142, + [1244] = 148, + [1245] = 264, + [1246] = 835, + [1247] = 288, + [1248] = 141, + [1249] = 146, + [1250] = 147, + [1251] = 291, + [1252] = 145, + [1253] = 834, + [1254] = 279, + [1255] = 149, + [1256] = 266, + [1257] = 210, + [1258] = 144, + [1259] = 298, + [1260] = 297, + [1261] = 1261, + [1262] = 1262, + [1263] = 1261, + [1264] = 1264, + [1265] = 1265, + [1266] = 266, + [1267] = 1265, + [1268] = 316, + [1269] = 319, + [1270] = 1262, + [1271] = 1261, + [1272] = 143, + [1273] = 1273, + [1274] = 1262, + [1275] = 288, + [1276] = 279, + [1277] = 264, + [1278] = 1261, + [1279] = 1264, + [1280] = 1280, + [1281] = 1265, + [1282] = 152, + [1283] = 210, + [1284] = 1262, + [1285] = 1264, + [1286] = 303, + [1287] = 151, + [1288] = 1273, + [1289] = 1261, + [1290] = 1264, + [1291] = 1265, + [1292] = 1262, + [1293] = 1264, + [1294] = 150, + [1295] = 295, + [1296] = 305, + [1297] = 291, + [1298] = 1261, + [1299] = 1264, + [1300] = 1265, + [1301] = 1262, + [1302] = 264, + [1303] = 1261, + [1304] = 1264, + [1305] = 1265, + [1306] = 1262, + [1307] = 1261, + [1308] = 1264, + [1309] = 1265, + [1310] = 1262, + [1311] = 1261, + [1312] = 1264, + [1313] = 1265, + [1314] = 1262, + [1315] = 1261, + [1316] = 1264, + [1317] = 1265, + [1318] = 1262, + [1319] = 1261, + [1320] = 1264, + [1321] = 1265, + [1322] = 1262, + [1323] = 1261, + [1324] = 1265, + [1325] = 266, + [1326] = 1265, + [1327] = 279, + [1328] = 142, + [1329] = 296, + [1330] = 1330, + [1331] = 1330, + [1332] = 297, + [1333] = 298, + [1334] = 296, + [1335] = 303, + [1336] = 210, + [1337] = 147, + [1338] = 143, + [1339] = 141, + [1340] = 332, + [1341] = 297, + [1342] = 316, + [1343] = 288, + [1344] = 319, + [1345] = 291, + [1346] = 298, + [1347] = 296, + [1348] = 1348, + [1349] = 295, + [1350] = 144, + [1351] = 331, + [1352] = 266, + [1353] = 264, + [1354] = 305, + [1355] = 142, + [1356] = 295, + [1357] = 303, + [1358] = 153, + [1359] = 305, + [1360] = 146, + [1361] = 329, + [1362] = 148, + [1363] = 327, + [1364] = 145, + [1365] = 330, + [1366] = 149, + [1367] = 1367, + [1368] = 1368, + [1369] = 141, + [1370] = 350, + [1371] = 145, + [1372] = 303, + [1373] = 305, + [1374] = 316, + [1375] = 329, + [1376] = 1376, + [1377] = 330, + [1378] = 319, + [1379] = 151, + [1380] = 150, + [1381] = 350, + [1382] = 327, + [1383] = 141, + [1384] = 329, + [1385] = 330, + [1386] = 279, + [1387] = 264, + [1388] = 149, + [1389] = 288, + [1390] = 291, + [1391] = 152, [1392] = 146, - [1393] = 1393, - [1394] = 370, - [1395] = 312, - [1396] = 859, - [1397] = 369, - [1398] = 218, - [1399] = 153, - [1400] = 219, - [1401] = 860, - [1402] = 1402, - [1403] = 372, - [1404] = 327, - [1405] = 145, - [1406] = 142, - [1407] = 143, - [1408] = 143, - [1409] = 211, - [1410] = 147, - [1411] = 145, - [1412] = 144, - [1413] = 371, - [1414] = 307, - [1415] = 145, - [1416] = 419, - [1417] = 350, - [1418] = 146, - [1419] = 144, - [1420] = 414, - [1421] = 416, - [1422] = 360, - [1423] = 424, - [1424] = 146, - [1425] = 350, - [1426] = 408, - [1427] = 150, - [1428] = 144, - [1429] = 147, - [1430] = 356, - [1431] = 141, - [1432] = 392, - [1433] = 327, - [1434] = 149, - [1435] = 425, - [1436] = 145, - [1437] = 1437, - [1438] = 427, - [1439] = 429, - [1440] = 372, - [1441] = 153, - [1442] = 426, - [1443] = 418, - [1444] = 412, - [1445] = 430, - [1446] = 415, - [1447] = 151, - [1448] = 150, - [1449] = 417, - [1450] = 431, - [1451] = 371, - [1452] = 420, - [1453] = 434, - [1454] = 152, - [1455] = 216, - [1456] = 373, - [1457] = 407, - [1458] = 147, - [1459] = 382, - [1460] = 149, - [1461] = 148, - [1462] = 411, - [1463] = 369, - [1464] = 370, - [1465] = 220, - [1466] = 218, - [1467] = 221, - [1468] = 152, - [1469] = 327, - [1470] = 435, - [1471] = 1369, - [1472] = 151, - [1473] = 413, - [1474] = 219, - [1475] = 148, - [1476] = 392, - [1477] = 360, - [1478] = 356, - [1479] = 221, - [1480] = 481, - [1481] = 220, - [1482] = 327, - [1483] = 360, - [1484] = 356, - [1485] = 1259, - [1486] = 420, - [1487] = 1487, - [1488] = 407, - [1489] = 412, - [1490] = 413, - [1491] = 414, - [1492] = 416, - [1493] = 417, - [1494] = 418, - [1495] = 419, - [1496] = 424, - [1497] = 425, - [1498] = 370, - [1499] = 426, - [1500] = 427, - [1501] = 371, - [1502] = 429, - [1503] = 430, - [1504] = 373, - [1505] = 382, - [1506] = 431, - [1507] = 434, - [1508] = 411, - [1509] = 435, - [1510] = 408, - [1511] = 319, - [1512] = 153, - [1513] = 1513, - [1514] = 327, - [1515] = 350, - [1516] = 473, - [1517] = 1517, - [1518] = 444, - [1519] = 476, - [1520] = 445, - [1521] = 304, - [1522] = 1402, - [1523] = 1487, - [1524] = 307, - [1525] = 312, - [1526] = 303, - [1527] = 152, - [1528] = 1393, - [1529] = 472, - [1530] = 151, - [1531] = 150, - [1532] = 152, - [1533] = 141, - [1534] = 350, - [1535] = 142, - [1536] = 143, - [1537] = 415, + [1393] = 147, + [1394] = 148, + [1395] = 266, + [1396] = 144, + [1397] = 331, + [1398] = 143, + [1399] = 142, + [1400] = 1400, + [1401] = 350, + [1402] = 1280, + [1403] = 360, + [1404] = 1404, + [1405] = 332, + [1406] = 361, + [1407] = 327, + [1408] = 153, + [1409] = 303, + [1410] = 146, + [1411] = 305, + [1412] = 332, + [1413] = 147, + [1414] = 143, + [1415] = 151, + [1416] = 150, + [1417] = 142, + [1418] = 148, + [1419] = 1419, + [1420] = 144, + [1421] = 382, + [1422] = 1422, + [1423] = 329, + [1424] = 1330, + [1425] = 330, + [1426] = 1376, + [1427] = 350, + [1428] = 152, + [1429] = 1422, + [1430] = 332, + [1431] = 360, + [1432] = 145, + [1433] = 149, + [1434] = 361, + [1435] = 266, + [1436] = 264, + [1437] = 1368, + [1438] = 295, + [1439] = 296, + [1440] = 327, + [1441] = 297, + [1442] = 385, + [1443] = 298, + [1444] = 1367, + [1445] = 381, + [1446] = 371, + [1447] = 331, + [1448] = 1422, + [1449] = 373, + [1450] = 374, + [1451] = 331, + [1452] = 144, + [1453] = 1330, + [1454] = 391, + [1455] = 381, + [1456] = 332, + [1457] = 397, + [1458] = 399, + [1459] = 403, + [1460] = 350, + [1461] = 423, + [1462] = 405, + [1463] = 145, + [1464] = 149, + [1465] = 331, + [1466] = 327, + [1467] = 427, + [1468] = 436, + [1469] = 360, + [1470] = 390, + [1471] = 152, + [1472] = 331, + [1473] = 415, + [1474] = 361, + [1475] = 434, + [1476] = 391, + [1477] = 385, + [1478] = 397, + [1479] = 399, + [1480] = 403, + [1481] = 409, + [1482] = 371, + [1483] = 151, + [1484] = 405, + [1485] = 373, + [1486] = 374, + [1487] = 150, + [1488] = 427, + [1489] = 418, + [1490] = 303, + [1491] = 436, + [1492] = 423, + [1493] = 429, + [1494] = 401, + [1495] = 404, + [1496] = 406, + [1497] = 407, + [1498] = 408, + [1499] = 410, + [1500] = 401, + [1501] = 413, + [1502] = 414, + [1503] = 404, + [1504] = 146, + [1505] = 332, + [1506] = 147, + [1507] = 148, + [1508] = 382, + [1509] = 406, + [1510] = 407, + [1511] = 408, + [1512] = 410, + [1513] = 413, + [1514] = 1419, + [1515] = 360, + [1516] = 414, + [1517] = 415, + [1518] = 329, + [1519] = 464, + [1520] = 1422, + [1521] = 473, + [1522] = 330, + [1523] = 305, + [1524] = 141, + [1525] = 361, + [1526] = 390, + [1527] = 360, + [1528] = 371, + [1529] = 479, + [1530] = 373, + [1531] = 374, + [1532] = 640, + [1533] = 491, + [1534] = 141, + [1535] = 480, + [1536] = 652, + [1537] = 429, [1538] = 151, [1539] = 150, - [1540] = 477, - [1541] = 478, - [1542] = 479, - [1543] = 1487, - [1544] = 320, - [1545] = 356, - [1546] = 444, - [1547] = 1547, - [1548] = 370, + [1540] = 361, + [1541] = 409, + [1542] = 331, + [1543] = 332, + [1544] = 483, + [1545] = 449, + [1546] = 452, + [1547] = 143, + [1548] = 409, [1549] = 142, - [1550] = 536, - [1551] = 445, - [1552] = 1513, - [1553] = 143, - [1554] = 543, - [1555] = 519, - [1556] = 373, - [1557] = 544, - [1558] = 518, - [1559] = 382, - [1560] = 327, - [1561] = 319, - [1562] = 1562, + [1550] = 479, + [1551] = 153, + [1552] = 319, + [1553] = 350, + [1554] = 316, + [1555] = 141, + [1556] = 490, + [1557] = 385, + [1558] = 327, + [1559] = 464, + [1560] = 473, + [1561] = 418, + [1562] = 371, [1563] = 360, - [1564] = 341, - [1565] = 343, - [1566] = 360, - [1567] = 345, - [1568] = 346, - [1569] = 350, + [1564] = 423, + [1565] = 480, + [1566] = 427, + [1567] = 415, + [1568] = 391, + [1569] = 418, [1570] = 1570, - [1571] = 146, - [1572] = 147, - [1573] = 1573, - [1574] = 1574, - [1575] = 528, - [1576] = 1576, - [1577] = 149, - [1578] = 1578, - [1579] = 148, - [1580] = 473, - [1581] = 320, - [1582] = 153, - [1583] = 370, - [1584] = 1584, - [1585] = 371, - [1586] = 497, - [1587] = 1259, - [1588] = 500, - [1589] = 476, - [1590] = 145, - [1591] = 144, - [1592] = 476, - [1593] = 356, - [1594] = 371, - [1595] = 407, - [1596] = 373, - [1597] = 481, - [1598] = 503, - [1599] = 382, - [1600] = 412, - [1601] = 413, - [1602] = 414, - [1603] = 416, - [1604] = 417, - [1605] = 418, - [1606] = 419, - [1607] = 1607, - [1608] = 424, - [1609] = 425, - [1610] = 426, - [1611] = 427, - [1612] = 429, - [1613] = 430, - [1614] = 431, - [1615] = 434, - [1616] = 411, - [1617] = 435, - [1618] = 472, - [1619] = 1517, - [1620] = 1487, - [1621] = 473, - [1622] = 477, - [1623] = 478, - [1624] = 479, - [1625] = 501, - [1626] = 1626, - [1627] = 324, - [1628] = 356, - [1629] = 1629, - [1630] = 141, - [1631] = 503, - [1632] = 370, + [1571] = 397, + [1572] = 399, + [1573] = 403, + [1574] = 405, + [1575] = 436, + [1576] = 390, + [1577] = 401, + [1578] = 404, + [1579] = 406, + [1580] = 407, + [1581] = 408, + [1582] = 410, + [1583] = 413, + [1584] = 414, + [1585] = 429, + [1586] = 385, + [1587] = 373, + [1588] = 374, + [1589] = 331, + [1590] = 332, + [1591] = 361, + [1592] = 329, + [1593] = 330, + [1594] = 434, + [1595] = 153, + [1596] = 152, + [1597] = 434, + [1598] = 148, + [1599] = 537, + [1600] = 539, + [1601] = 331, + [1602] = 499, + [1603] = 153, + [1604] = 1604, + [1605] = 146, + [1606] = 536, + [1607] = 144, + [1608] = 381, + [1609] = 501, + [1610] = 142, + [1611] = 371, + [1612] = 491, + [1613] = 507, + [1614] = 382, + [1615] = 199, + [1616] = 1616, + [1617] = 1617, + [1618] = 1618, + [1619] = 1619, + [1620] = 374, + [1621] = 483, + [1622] = 449, + [1623] = 1570, + [1624] = 452, + [1625] = 373, + [1626] = 360, + [1627] = 142, + [1628] = 371, + [1629] = 147, + [1630] = 374, + [1631] = 544, + [1632] = 332, [1633] = 1633, - [1634] = 536, - [1635] = 501, - [1636] = 370, - [1637] = 503, - [1638] = 550, - [1639] = 350, - [1640] = 147, - [1641] = 153, - [1642] = 1642, - [1643] = 327, - [1644] = 1629, - [1645] = 343, - [1646] = 543, - [1647] = 519, - [1648] = 371, - [1649] = 528, - [1650] = 350, - [1651] = 1651, - [1652] = 373, - [1653] = 146, - [1654] = 382, - [1655] = 330, - [1656] = 1570, - [1657] = 1657, - [1658] = 149, - [1659] = 371, - [1660] = 1660, - [1661] = 1562, - [1662] = 544, - [1663] = 1663, - [1664] = 345, - [1665] = 518, - [1666] = 445, - [1667] = 665, - [1668] = 408, - [1669] = 497, - [1670] = 528, - [1671] = 415, - [1672] = 145, - [1673] = 500, - [1674] = 144, - [1675] = 500, - [1676] = 501, - [1677] = 392, - [1678] = 382, - [1679] = 420, - [1680] = 152, - [1681] = 151, - [1682] = 150, - [1683] = 373, - [1684] = 143, - [1685] = 1573, - [1686] = 1574, - [1687] = 346, - [1688] = 497, - [1689] = 148, - [1690] = 1576, - [1691] = 327, - [1692] = 142, - [1693] = 1693, - [1694] = 1578, - [1695] = 341, - [1696] = 1696, - [1697] = 1547, - [1698] = 444, - [1699] = 360, - [1700] = 663, - [1701] = 589, - [1702] = 382, - [1703] = 609, + [1634] = 360, + [1635] = 1635, + [1636] = 361, + [1637] = 490, + [1638] = 143, + [1639] = 1639, + [1640] = 143, + [1641] = 373, + [1642] = 479, + [1643] = 146, + [1644] = 504, + [1645] = 1645, + [1646] = 505, + [1647] = 147, + [1648] = 145, + [1649] = 480, + [1650] = 144, + [1651] = 149, + [1652] = 464, + [1653] = 148, + [1654] = 473, + [1655] = 361, + [1656] = 385, + [1657] = 532, + [1658] = 385, + [1659] = 1659, + [1660] = 1617, + [1661] = 1619, + [1662] = 1604, + [1663] = 147, + [1664] = 332, + [1665] = 144, + [1666] = 1666, + [1667] = 1667, + [1668] = 507, + [1669] = 150, + [1670] = 331, + [1671] = 1671, + [1672] = 385, + [1673] = 504, + [1674] = 532, + [1675] = 505, + [1676] = 381, + [1677] = 201, + [1678] = 1678, + [1679] = 1679, + [1680] = 1680, + [1681] = 1639, + [1682] = 1682, + [1683] = 1683, + [1684] = 505, + [1685] = 1659, + [1686] = 148, + [1687] = 483, + [1688] = 1688, + [1689] = 1689, + [1690] = 1690, + [1691] = 449, + [1692] = 1692, + [1693] = 452, + [1694] = 1618, + [1695] = 374, + [1696] = 371, + [1697] = 1697, + [1698] = 580, + [1699] = 1619, + [1700] = 152, + [1701] = 499, + [1702] = 1702, + [1703] = 373, [1704] = 1704, - [1705] = 1633, - [1706] = 665, - [1707] = 1633, - [1708] = 671, - [1709] = 1626, - [1710] = 444, + [1705] = 536, + [1706] = 151, + [1707] = 1616, + [1708] = 537, + [1709] = 501, + [1710] = 332, [1711] = 1711, - [1712] = 618, - [1713] = 619, - [1714] = 1660, + [1712] = 331, + [1713] = 1713, + [1714] = 491, [1715] = 1715, - [1716] = 648, - [1717] = 607, - [1718] = 445, - [1719] = 373, - [1720] = 647, - [1721] = 674, - [1722] = 649, + [1716] = 361, + [1717] = 1717, + [1718] = 382, + [1719] = 1719, + [1720] = 1720, + [1721] = 504, + [1722] = 499, [1723] = 1723, - [1724] = 656, - [1725] = 663, - [1726] = 608, - [1727] = 147, - [1728] = 1657, - [1729] = 148, - [1730] = 1629, - [1731] = 146, - [1732] = 146, - [1733] = 644, - [1734] = 147, - [1735] = 372, - [1736] = 1736, - [1737] = 1737, - [1738] = 627, - [1739] = 149, - [1740] = 657, - [1741] = 369, - [1742] = 590, - [1743] = 651, - [1744] = 153, - [1745] = 148, - [1746] = 1746, - [1747] = 591, - [1748] = 633, - [1749] = 152, - [1750] = 1642, - [1751] = 631, - [1752] = 620, - [1753] = 497, - [1754] = 592, - [1755] = 360, - [1756] = 593, - [1757] = 594, + [1724] = 1724, + [1725] = 1725, + [1726] = 1726, + [1727] = 149, + [1728] = 539, + [1729] = 1635, + [1730] = 501, + [1731] = 371, + [1732] = 1616, + [1733] = 1617, + [1734] = 360, + [1735] = 145, + [1736] = 149, + [1737] = 507, + [1738] = 490, + [1739] = 373, + [1740] = 146, + [1741] = 544, + [1742] = 1618, + [1743] = 1743, + [1744] = 374, + [1745] = 580, + [1746] = 385, + [1747] = 145, + [1748] = 504, + [1749] = 600, + [1750] = 414, + [1751] = 1751, + [1752] = 1752, + [1753] = 361, + [1754] = 1754, + [1755] = 507, + [1756] = 1756, + [1757] = 613, [1758] = 1758, - [1759] = 595, - [1760] = 634, - [1761] = 371, - [1762] = 145, - [1763] = 144, + [1759] = 1759, + [1760] = 1743, + [1761] = 1761, + [1762] = 1762, + [1763] = 1659, [1764] = 1764, - [1765] = 1765, - [1766] = 645, - [1767] = 149, - [1768] = 1696, - [1769] = 621, + [1765] = 596, + [1766] = 671, + [1767] = 1767, + [1768] = 1768, + [1769] = 1769, [1770] = 1770, [1771] = 1771, - [1772] = 500, - [1773] = 622, - [1774] = 623, - [1775] = 501, - [1776] = 356, - [1777] = 1746, - [1778] = 610, - [1779] = 597, - [1780] = 611, - [1781] = 360, - [1782] = 598, - [1783] = 635, - [1784] = 601, - [1785] = 1660, - [1786] = 624, - [1787] = 1787, - [1788] = 602, + [1772] = 1772, + [1773] = 1773, + [1774] = 1774, + [1775] = 656, + [1776] = 618, + [1777] = 625, + [1778] = 631, + [1779] = 1779, + [1780] = 608, + [1781] = 671, + [1782] = 1782, + [1783] = 152, + [1784] = 618, + [1785] = 625, + [1786] = 631, + [1787] = 608, + [1788] = 1788, [1789] = 1789, - [1790] = 1790, - [1791] = 603, - [1792] = 636, - [1793] = 356, - [1794] = 528, - [1795] = 1629, - [1796] = 550, - [1797] = 632, - [1798] = 637, - [1799] = 604, - [1800] = 198, - [1801] = 1651, - [1802] = 1802, - [1803] = 625, - [1804] = 626, - [1805] = 151, - [1806] = 503, - [1807] = 370, - [1808] = 612, - [1809] = 613, - [1810] = 605, - [1811] = 606, - [1812] = 630, - [1813] = 150, - [1814] = 1814, - [1815] = 596, - [1816] = 1816, - [1817] = 1817, - [1818] = 1818, - [1819] = 1819, - [1820] = 1820, - [1821] = 1821, - [1822] = 444, - [1823] = 612, - [1824] = 613, - [1825] = 656, - [1826] = 601, - [1827] = 371, - [1828] = 1736, - [1829] = 1737, - [1830] = 606, - [1831] = 607, - [1832] = 350, - [1833] = 472, - [1834] = 608, - [1835] = 370, - [1836] = 1723, - [1837] = 1771, - [1838] = 445, - [1839] = 1765, - [1840] = 609, - [1841] = 1816, - [1842] = 148, + [1790] = 610, + [1791] = 611, + [1792] = 610, + [1793] = 611, + [1794] = 617, + [1795] = 1795, + [1796] = 1796, + [1797] = 617, + [1798] = 659, + [1799] = 651, + [1800] = 653, + [1801] = 658, + [1802] = 662, + [1803] = 667, + [1804] = 669, + [1805] = 660, + [1806] = 1806, + [1807] = 332, + [1808] = 1808, + [1809] = 588, + [1810] = 434, + [1811] = 152, + [1812] = 385, + [1813] = 1813, + [1814] = 659, + [1815] = 371, + [1816] = 651, + [1817] = 653, + [1818] = 373, + [1819] = 374, + [1820] = 658, + [1821] = 662, + [1822] = 667, + [1823] = 669, + [1824] = 668, + [1825] = 1825, + [1826] = 670, + [1827] = 151, + [1828] = 151, + [1829] = 150, + [1830] = 1711, + [1831] = 640, + [1832] = 673, + [1833] = 150, + [1834] = 427, + [1835] = 415, + [1836] = 652, + [1837] = 632, + [1838] = 1838, + [1839] = 1839, + [1840] = 1840, + [1841] = 1841, + [1842] = 1842, [1843] = 1843, - [1844] = 373, - [1845] = 201, - [1846] = 1573, - [1847] = 1574, - [1848] = 1814, - [1849] = 370, - [1850] = 371, - [1851] = 618, - [1852] = 151, - [1853] = 150, - [1854] = 1770, - [1855] = 1576, - [1856] = 1578, - [1857] = 1857, - [1858] = 619, - [1859] = 1859, - [1860] = 1787, - [1861] = 1758, - [1862] = 1764, - [1863] = 550, - [1864] = 373, - [1865] = 481, - [1866] = 382, - [1867] = 602, - [1868] = 477, - [1869] = 478, - [1870] = 479, - [1871] = 1789, - [1872] = 1790, - [1873] = 598, - [1874] = 610, - [1875] = 611, - [1876] = 146, - [1877] = 327, - [1878] = 595, - [1879] = 1711, - [1880] = 1715, - [1881] = 153, - [1882] = 1660, - [1883] = 603, - [1884] = 596, - [1885] = 1802, - [1886] = 604, - [1887] = 605, - [1888] = 1888, - [1889] = 152, - [1890] = 382, - [1891] = 1633, - [1892] = 593, - [1893] = 1893, - [1894] = 594, - [1895] = 147, - [1896] = 1896, - [1897] = 657, - [1898] = 1817, - [1899] = 592, - [1900] = 149, - [1901] = 663, + [1844] = 596, + [1845] = 591, + [1846] = 1846, + [1847] = 638, + [1848] = 646, + [1849] = 1724, + [1850] = 590, + [1851] = 604, + [1852] = 593, + [1853] = 615, + [1854] = 621, + [1855] = 599, + [1856] = 656, + [1857] = 612, + [1858] = 1858, + [1859] = 624, + [1860] = 1860, + [1861] = 598, + [1862] = 660, + [1863] = 626, + [1864] = 627, + [1865] = 588, + [1866] = 645, + [1867] = 648, + [1868] = 668, + [1869] = 654, + [1870] = 670, + [1871] = 580, + [1872] = 632, + [1873] = 591, + [1874] = 638, + [1875] = 655, + [1876] = 505, + [1877] = 657, + [1878] = 590, + [1879] = 604, + [1880] = 593, + [1881] = 599, + [1882] = 612, + [1883] = 405, + [1884] = 624, + [1885] = 661, + [1886] = 1886, + [1887] = 626, + [1888] = 627, + [1889] = 645, + [1890] = 666, + [1891] = 648, + [1892] = 654, + [1893] = 436, + [1894] = 1719, + [1895] = 1895, + [1896] = 390, + [1897] = 1897, + [1898] = 1898, + [1899] = 1899, + [1900] = 1900, + [1901] = 1901, [1902] = 1902, - [1903] = 637, - [1904] = 665, - [1905] = 1905, - [1906] = 671, - [1907] = 620, - [1908] = 1908, - [1909] = 597, + [1903] = 1903, + [1904] = 1659, + [1905] = 401, + [1906] = 404, + [1907] = 406, + [1908] = 601, + [1909] = 603, [1910] = 1910, [1911] = 1911, - [1912] = 1912, - [1913] = 369, + [1912] = 622, + [1913] = 1913, [1914] = 1914, - [1915] = 644, - [1916] = 645, - [1917] = 632, - [1918] = 621, - [1919] = 1919, - [1920] = 622, - [1921] = 623, - [1922] = 1922, - [1923] = 624, - [1924] = 372, - [1925] = 647, - [1926] = 648, - [1927] = 649, - [1928] = 1928, - [1929] = 625, - [1930] = 626, - [1931] = 627, - [1932] = 589, - [1933] = 590, - [1934] = 651, - [1935] = 630, - [1936] = 631, - [1937] = 674, - [1938] = 633, - [1939] = 634, - [1940] = 635, - [1941] = 636, - [1942] = 591, - [1943] = 1817, - [1944] = 1816, - [1945] = 1945, + [1915] = 331, + [1916] = 429, + [1917] = 418, + [1918] = 637, + [1919] = 1683, + [1920] = 1920, + [1921] = 655, + [1922] = 657, + [1923] = 1720, + [1924] = 661, + [1925] = 666, + [1926] = 1697, + [1927] = 479, + [1928] = 601, + [1929] = 603, + [1930] = 480, + [1931] = 1931, + [1932] = 146, + [1933] = 1720, + [1934] = 147, + [1935] = 148, + [1936] = 1697, + [1937] = 1937, + [1938] = 1938, + [1939] = 1939, + [1940] = 153, + [1941] = 1941, + [1942] = 1942, + [1943] = 1943, + [1944] = 144, + [1945] = 360, [1946] = 1946, - [1947] = 1947, - [1948] = 427, - [1949] = 1949, - [1950] = 1950, - [1951] = 429, + [1947] = 409, + [1948] = 361, + [1949] = 332, + [1950] = 423, + [1951] = 1951, [1952] = 1952, [1953] = 1953, [1954] = 1954, [1955] = 1955, - [1956] = 1956, - [1957] = 360, + [1956] = 1756, + [1957] = 1720, [1958] = 1958, [1959] = 1959, [1960] = 1960, - [1961] = 356, + [1961] = 1961, [1962] = 1962, - [1963] = 1963, - [1964] = 1964, - [1965] = 1965, - [1966] = 435, - [1967] = 625, - [1968] = 626, - [1969] = 627, - [1970] = 589, - [1971] = 1971, - [1972] = 1972, - [1973] = 1973, - [1974] = 1974, - [1975] = 1975, - [1976] = 1976, - [1977] = 1977, - [1978] = 1978, - [1979] = 590, + [1963] = 391, + [1964] = 397, + [1965] = 399, + [1966] = 403, + [1967] = 1967, + [1968] = 1968, + [1969] = 1969, + [1970] = 1967, + [1971] = 499, + [1972] = 1697, + [1973] = 407, + [1974] = 408, + [1975] = 410, + [1976] = 413, + [1977] = 501, + [1978] = 360, + [1979] = 597, [1980] = 1980, - [1981] = 327, - [1982] = 1982, - [1983] = 350, - [1984] = 630, + [1981] = 646, + [1982] = 360, + [1983] = 1983, + [1984] = 532, [1985] = 1985, - [1986] = 631, - [1987] = 1987, - [1988] = 350, - [1989] = 1989, - [1990] = 1990, - [1991] = 1991, - [1992] = 1992, - [1993] = 1993, - [1994] = 674, - [1995] = 633, - [1996] = 634, - [1997] = 635, - [1998] = 636, - [1999] = 591, - [2000] = 592, - [2001] = 2001, - [2002] = 412, - [2003] = 413, - [2004] = 414, - [2005] = 416, - [2006] = 407, - [2007] = 417, - [2008] = 593, - [2009] = 594, - [2010] = 418, - [2011] = 408, - [2012] = 420, - [2013] = 595, - [2014] = 596, - [2015] = 2015, - [2016] = 392, - [2017] = 2017, - [2018] = 2018, - [2019] = 1976, - [2020] = 597, - [2021] = 598, - [2022] = 601, - [2023] = 602, - [2024] = 603, - [2025] = 2025, - [2026] = 604, - [2027] = 2027, - [2028] = 605, - [2029] = 606, - [2030] = 607, - [2031] = 608, - [2032] = 609, - [2033] = 2033, - [2034] = 610, - [2035] = 611, + [1986] = 622, + [1987] = 373, + [1988] = 479, + [1989] = 1751, + [1990] = 507, + [1991] = 640, + [1992] = 1759, + [1993] = 536, + [1994] = 673, + [1995] = 652, + [1996] = 655, + [1997] = 657, + [1998] = 501, + [1999] = 499, + [2000] = 1795, + [2001] = 596, + [2002] = 2002, + [2003] = 1796, + [2004] = 537, + [2005] = 671, + [2006] = 661, + [2007] = 666, + [2008] = 1895, + [2009] = 507, + [2010] = 480, + [2011] = 504, + [2012] = 505, + [2013] = 1720, + [2014] = 2014, + [2015] = 153, + [2016] = 613, + [2017] = 539, + [2018] = 1762, + [2019] = 615, + [2020] = 601, + [2021] = 603, + [2022] = 2022, + [2023] = 1697, + [2024] = 615, + [2025] = 621, + [2026] = 621, + [2027] = 656, + [2028] = 1772, + [2029] = 618, + [2030] = 2030, + [2031] = 490, + [2032] = 625, + [2033] = 544, + [2034] = 1773, + [2035] = 631, [2036] = 2036, - [2037] = 2017, - [2038] = 612, - [2039] = 2039, - [2040] = 613, - [2041] = 1990, - [2042] = 1991, - [2043] = 415, - [2044] = 1974, - [2045] = 2045, + [2037] = 608, + [2038] = 1692, + [2039] = 374, + [2040] = 2040, + [2041] = 361, + [2042] = 597, + [2043] = 479, + [2044] = 598, + [2045] = 600, [2046] = 2046, - [2047] = 2047, - [2048] = 671, - [2049] = 2049, - [2050] = 2050, - [2051] = 620, - [2052] = 2052, - [2053] = 2053, - [2054] = 430, - [2055] = 618, - [2056] = 619, - [2057] = 431, - [2058] = 2058, - [2059] = 2059, - [2060] = 1660, - [2061] = 2061, - [2062] = 2062, - [2063] = 2063, - [2064] = 2064, - [2065] = 419, - [2066] = 434, - [2067] = 424, - [2068] = 425, + [2047] = 610, + [2048] = 2048, + [2049] = 1690, + [2050] = 611, + [2051] = 617, + [2052] = 660, + [2053] = 1788, + [2054] = 146, + [2055] = 2055, + [2056] = 588, + [2057] = 613, + [2058] = 659, + [2059] = 1789, + [2060] = 2060, + [2061] = 651, + [2062] = 653, + [2063] = 658, + [2064] = 662, + [2065] = 2065, + [2066] = 464, + [2067] = 669, + [2068] = 1702, [2069] = 2069, - [2070] = 2070, - [2071] = 411, - [2072] = 1633, - [2073] = 632, - [2074] = 621, - [2075] = 622, - [2076] = 623, - [2077] = 2077, - [2078] = 624, - [2079] = 426, + [2070] = 1764, + [2071] = 668, + [2072] = 670, + [2073] = 2073, + [2074] = 1858, + [2075] = 153, + [2076] = 632, + [2077] = 591, + [2078] = 638, + [2079] = 646, [2080] = 2080, - [2081] = 645, - [2082] = 1821, - [2083] = 1843, - [2084] = 2084, - [2085] = 637, - [2086] = 497, - [2087] = 2087, - [2088] = 2088, - [2089] = 647, - [2090] = 2087, - [2091] = 2091, - [2092] = 651, - [2093] = 2093, - [2094] = 1888, - [2095] = 2095, - [2096] = 2091, - [2097] = 536, - [2098] = 2098, - [2099] = 444, - [2100] = 503, - [2101] = 472, - [2102] = 2102, - [2103] = 648, + [2081] = 385, + [2082] = 2082, + [2083] = 590, + [2084] = 637, + [2085] = 371, + [2086] = 604, + [2087] = 373, + [2088] = 483, + [2089] = 449, + [2090] = 374, + [2091] = 452, + [2092] = 1689, + [2093] = 593, + [2094] = 599, + [2095] = 612, + [2096] = 624, + [2097] = 626, + [2098] = 627, + [2099] = 480, + [2100] = 645, + [2101] = 648, + [2102] = 654, + [2103] = 2103, [2104] = 2104, - [2105] = 649, - [2106] = 2088, + [2105] = 673, + [2106] = 597, [2107] = 2107, [2108] = 2108, - [2109] = 2088, + [2109] = 147, [2110] = 2110, - [2111] = 476, + [2111] = 598, [2112] = 2112, - [2113] = 656, - [2114] = 2088, + [2113] = 148, + [2114] = 1983, [2115] = 2115, - [2116] = 373, - [2117] = 360, - [2118] = 543, - [2119] = 153, - [2120] = 2120, - [2121] = 479, - [2122] = 473, + [2116] = 2116, + [2117] = 2117, + [2118] = 600, + [2119] = 2119, + [2120] = 622, + [2121] = 491, + [2122] = 371, [2123] = 2123, - [2124] = 445, - [2125] = 356, - [2126] = 2126, - [2127] = 2127, - [2128] = 2128, - [2129] = 2129, + [2124] = 144, + [2125] = 2125, + [2126] = 1770, + [2127] = 473, + [2128] = 1771, + [2129] = 385, [2130] = 2130, - [2131] = 382, - [2132] = 481, - [2133] = 371, - [2134] = 370, - [2135] = 528, - [2136] = 644, - [2137] = 2137, - [2138] = 657, - [2139] = 2139, - [2140] = 477, - [2141] = 2141, + [2131] = 637, + [2132] = 2132, + [2133] = 1860, + [2134] = 2060, + [2135] = 1983, + [2136] = 2060, + [2137] = 667, + [2138] = 2138, + [2139] = 544, + [2140] = 2140, + [2141] = 1704, [2142] = 2142, - [2143] = 2143, - [2144] = 519, - [2145] = 503, - [2146] = 500, - [2147] = 518, - [2148] = 544, - [2149] = 2088, - [2150] = 1902, + [2143] = 1713, + [2144] = 2144, + [2145] = 2145, + [2146] = 2146, + [2147] = 2147, + [2148] = 2148, + [2149] = 2149, + [2150] = 2150, [2151] = 2151, - [2152] = 501, + [2152] = 2152, [2153] = 2153, - [2154] = 478, + [2154] = 2154, [2155] = 2155, - [2156] = 1573, + [2156] = 2156, [2157] = 2157, - [2158] = 2158, + [2158] = 385, [2159] = 2159, - [2160] = 2160, + [2160] = 1717, [2161] = 2161, [2162] = 2162, - [2163] = 2163, + [2163] = 1723, [2164] = 2164, [2165] = 2165, [2166] = 2166, - [2167] = 497, - [2168] = 1912, + [2167] = 2167, + [2168] = 2168, [2169] = 2169, - [2170] = 2170, - [2171] = 528, - [2172] = 1914, + [2170] = 1725, + [2171] = 1726, + [2172] = 1666, [2173] = 2173, - [2174] = 2174, - [2175] = 2175, - [2176] = 2176, - [2177] = 2177, - [2178] = 371, + [2174] = 532, + [2175] = 1667, + [2176] = 1678, + [2177] = 1679, + [2178] = 2178, [2179] = 2179, - [2180] = 1919, + [2180] = 2180, [2181] = 2181, - [2182] = 1922, - [2183] = 1928, - [2184] = 2184, + [2182] = 1680, + [2183] = 2183, + [2184] = 1682, [2185] = 2185, [2186] = 2186, [2187] = 2187, - [2188] = 370, + [2188] = 1688, [2189] = 2189, [2190] = 2190, - [2191] = 2191, - [2192] = 2192, - [2193] = 2193, + [2191] = 536, + [2192] = 507, + [2193] = 371, [2194] = 2194, [2195] = 2195, [2196] = 2196, [2197] = 2197, - [2198] = 2198, + [2198] = 537, [2199] = 2199, [2200] = 2200, [2201] = 2201, - [2202] = 2202, - [2203] = 2203, + [2202] = 373, + [2203] = 1659, [2204] = 2204, - [2205] = 1818, - [2206] = 1819, - [2207] = 1820, - [2208] = 2173, + [2205] = 2205, + [2206] = 374, + [2207] = 2207, + [2208] = 2208, [2209] = 2209, [2210] = 2210, - [2211] = 501, + [2211] = 2211, [2212] = 2212, - [2213] = 373, + [2213] = 2213, [2214] = 2214, [2215] = 2215, [2216] = 2216, [2217] = 2217, [2218] = 2218, - [2219] = 2219, + [2219] = 2168, [2220] = 2220, [2221] = 2221, [2222] = 2222, [2223] = 2223, [2224] = 2224, [2225] = 2225, - [2226] = 382, - [2227] = 2227, + [2226] = 2226, + [2227] = 501, [2228] = 2228, [2229] = 2229, - [2230] = 1945, - [2231] = 324, + [2230] = 499, + [2231] = 2231, [2232] = 2232, - [2233] = 2233, + [2233] = 1618, [2234] = 2234, [2235] = 2235, - [2236] = 2181, + [2236] = 2236, [2237] = 2237, [2238] = 2238, - [2239] = 2228, - [2240] = 1578, + [2239] = 2239, + [2240] = 2240, [2241] = 2241, [2242] = 2242, - [2243] = 330, - [2244] = 2244, + [2243] = 332, + [2244] = 539, [2245] = 2245, [2246] = 2246, [2247] = 2247, [2248] = 2248, [2249] = 2249, - [2250] = 536, + [2250] = 2210, [2251] = 2251, - [2252] = 2252, + [2252] = 2145, [2253] = 2253, [2254] = 2254, [2255] = 2255, [2256] = 2256, [2257] = 2257, [2258] = 2258, - [2259] = 1574, - [2260] = 350, + [2259] = 2259, + [2260] = 2260, [2261] = 2261, [2262] = 2262, - [2263] = 141, + [2263] = 1619, [2264] = 2264, - [2265] = 1629, - [2266] = 2266, - [2267] = 1905, + [2265] = 2265, + [2266] = 504, + [2267] = 505, [2268] = 2268, [2269] = 2269, [2270] = 2270, - [2271] = 1908, - [2272] = 211, + [2271] = 2271, + [2272] = 2272, [2273] = 2273, [2274] = 2274, - [2275] = 543, + [2275] = 2275, [2276] = 2276, - [2277] = 519, + [2277] = 2277, [2278] = 2278, - [2279] = 2279, - [2280] = 2280, - [2281] = 1910, + [2279] = 1616, + [2280] = 2251, + [2281] = 2281, [2282] = 2282, - [2283] = 2283, - [2284] = 500, - [2285] = 503, + [2283] = 1617, + [2284] = 2284, + [2285] = 2285, [2286] = 2286, [2287] = 2287, [2288] = 2288, @@ -7432,7 +7436,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2290] = 2290, [2291] = 2291, [2292] = 2292, - [2293] = 544, + [2293] = 2293, [2294] = 2294, [2295] = 2295, [2296] = 2296, @@ -7440,43 +7444,43 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2298] = 2298, [2299] = 2299, [2300] = 2300, - [2301] = 1911, + [2301] = 2301, [2302] = 2302, [2303] = 2303, [2304] = 2304, [2305] = 2305, - [2306] = 2189, - [2307] = 518, + [2306] = 2306, + [2307] = 2307, [2308] = 2308, [2309] = 2309, [2310] = 2310, - [2311] = 1576, + [2311] = 2311, [2312] = 2312, [2313] = 2313, [2314] = 2314, - [2315] = 216, - [2316] = 142, + [2315] = 2315, + [2316] = 2316, [2317] = 2317, [2318] = 2318, [2319] = 2319, - [2320] = 143, + [2320] = 2320, [2321] = 2321, [2322] = 2322, [2323] = 2323, [2324] = 2324, - [2325] = 141, + [2325] = 2325, [2326] = 2326, [2327] = 2327, [2328] = 2328, [2329] = 2329, [2330] = 2330, - [2331] = 1660, - [2332] = 220, - [2333] = 1633, - [2334] = 218, - [2335] = 2335, + [2331] = 2331, + [2332] = 2332, + [2333] = 2333, + [2334] = 2334, + [2335] = 1659, [2336] = 2336, - [2337] = 219, + [2337] = 2337, [2338] = 2338, [2339] = 2339, [2340] = 2340, @@ -7492,7 +7496,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2350] = 2350, [2351] = 2351, [2352] = 2352, - [2353] = 221, + [2353] = 2353, [2354] = 2354, [2355] = 2355, [2356] = 2356, @@ -7502,7 +7506,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2360] = 2360, [2361] = 2361, [2362] = 2362, - [2363] = 1629, + [2363] = 2363, [2364] = 2364, [2365] = 2365, [2366] = 2366, @@ -7523,13 +7527,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2381] = 2381, [2382] = 2382, [2383] = 2383, - [2384] = 2384, - [2385] = 220, - [2386] = 221, + [2384] = 1720, + [2385] = 2385, + [2386] = 1697, [2387] = 2387, [2388] = 2388, [2389] = 2389, - [2390] = 324, + [2390] = 580, [2391] = 2391, [2392] = 2392, [2393] = 2393, @@ -7538,16 +7542,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2396] = 2396, [2397] = 2397, [2398] = 2398, - [2399] = 2399, - [2400] = 2400, + [2399] = 2304, + [2400] = 2309, [2401] = 2401, [2402] = 2402, - [2403] = 2403, - [2404] = 2404, + [2403] = 2398, + [2404] = 2362, [2405] = 2405, - [2406] = 2406, - [2407] = 2407, - [2408] = 2408, + [2406] = 2309, + [2407] = 2309, + [2408] = 2309, [2409] = 2409, [2410] = 2410, [2411] = 2411, @@ -7556,2042 +7560,2042 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2414] = 2414, [2415] = 2415, [2416] = 2416, - [2417] = 2417, - [2418] = 2418, - [2419] = 2419, - [2420] = 330, - [2421] = 2421, - [2422] = 2422, - [2423] = 2423, - [2424] = 2424, - [2425] = 2425, - [2426] = 2426, - [2427] = 2427, - [2428] = 2428, - [2429] = 2429, - [2430] = 550, + [2417] = 671, + [2418] = 666, + [2419] = 673, + [2420] = 593, + [2421] = 657, + [2422] = 599, + [2423] = 632, + [2424] = 591, + [2425] = 652, + [2426] = 655, + [2427] = 612, + [2428] = 597, + [2429] = 598, + [2430] = 600, [2431] = 2431, - [2432] = 2432, - [2433] = 2433, - [2434] = 2434, - [2435] = 2435, - [2436] = 2436, - [2437] = 2437, - [2438] = 2438, - [2439] = 2439, - [2440] = 2440, - [2441] = 2441, - [2442] = 2442, - [2443] = 2323, - [2444] = 2423, - [2445] = 2445, - [2446] = 2446, - [2447] = 2313, - [2448] = 2435, - [2449] = 2318, - [2450] = 2324, + [2432] = 638, + [2433] = 610, + [2434] = 611, + [2435] = 617, + [2436] = 1985, + [2437] = 646, + [2438] = 141, + [2439] = 615, + [2440] = 660, + [2441] = 588, + [2442] = 624, + [2443] = 2132, + [2444] = 2444, + [2445] = 621, + [2446] = 2108, + [2447] = 2447, + [2448] = 507, + [2449] = 2444, + [2450] = 2447, [2451] = 2451, - [2452] = 624, - [2453] = 591, - [2454] = 2155, - [2455] = 303, - [2456] = 143, - [2457] = 2411, - [2458] = 2143, - [2459] = 590, - [2460] = 592, - [2461] = 656, - [2462] = 2128, - [2463] = 2130, - [2464] = 632, - [2465] = 2465, - [2466] = 2137, - [2467] = 319, - [2468] = 644, - [2469] = 320, - [2470] = 618, - [2471] = 304, - [2472] = 2412, - [2473] = 2139, - [2474] = 597, - [2475] = 598, - [2476] = 2413, - [2477] = 601, - [2478] = 602, - [2479] = 603, - [2480] = 2107, - [2481] = 604, - [2482] = 2414, - [2483] = 605, - [2484] = 606, - [2485] = 607, - [2486] = 608, - [2487] = 609, - [2488] = 619, - [2489] = 2127, - [2490] = 2093, - [2491] = 2491, - [2492] = 2141, + [2452] = 2451, + [2453] = 590, + [2454] = 656, + [2455] = 622, + [2456] = 604, + [2457] = 601, + [2458] = 603, + [2459] = 2123, + [2460] = 596, + [2461] = 626, + [2462] = 627, + [2463] = 2014, + [2464] = 2349, + [2465] = 645, + [2466] = 2022, + [2467] = 2350, + [2468] = 316, + [2469] = 2431, + [2470] = 2351, + [2471] = 2036, + [2472] = 2352, + [2473] = 2040, + [2474] = 648, + [2475] = 2125, + [2476] = 2353, + [2477] = 2046, + [2478] = 2354, + [2479] = 2055, + [2480] = 2355, + [2481] = 319, + [2482] = 2130, + [2483] = 2073, + [2484] = 2356, + [2485] = 2080, + [2486] = 2082, + [2487] = 2103, + [2488] = 2357, + [2489] = 2104, + [2490] = 2358, + [2491] = 2107, + [2492] = 2359, [2493] = 2110, - [2494] = 2415, - [2495] = 620, - [2496] = 2104, - [2497] = 621, - [2498] = 2123, - [2499] = 2126, - [2500] = 645, - [2501] = 503, - [2502] = 622, - [2503] = 623, - [2504] = 2142, - [2505] = 2112, - [2506] = 2404, - [2507] = 636, - [2508] = 2151, - [2509] = 2084, - [2510] = 612, - [2511] = 613, - [2512] = 665, - [2513] = 2405, - [2514] = 319, - [2515] = 651, - [2516] = 637, - [2517] = 2095, - [2518] = 2406, - [2519] = 307, - [2520] = 647, - [2521] = 630, - [2522] = 648, - [2523] = 2523, - [2524] = 649, - [2525] = 2098, - [2526] = 2407, - [2527] = 610, - [2528] = 611, - [2529] = 2102, - [2530] = 625, - [2531] = 320, - [2532] = 626, - [2533] = 627, - [2534] = 2153, - [2535] = 216, - [2536] = 631, - [2537] = 674, - [2538] = 657, - [2539] = 312, - [2540] = 633, - [2541] = 663, - [2542] = 634, - [2543] = 2408, - [2544] = 589, - [2545] = 2108, - [2546] = 2409, - [2547] = 671, - [2548] = 2115, - [2549] = 146, - [2550] = 2410, - [2551] = 147, - [2552] = 149, - [2553] = 148, - [2554] = 593, - [2555] = 594, - [2556] = 595, - [2557] = 596, - [2558] = 145, - [2559] = 144, - [2560] = 142, - [2561] = 635, - [2562] = 2129, - [2563] = 151, - [2564] = 307, - [2565] = 312, - [2566] = 303, - [2567] = 324, - [2568] = 2568, - [2569] = 148, - [2570] = 341, - [2571] = 145, - [2572] = 144, - [2573] = 341, - [2574] = 1365, - [2575] = 343, - [2576] = 327, - [2577] = 350, - [2578] = 147, - [2579] = 2579, - [2580] = 2580, - [2581] = 345, - [2582] = 2582, + [2494] = 2360, + [2495] = 2112, + [2496] = 618, + [2497] = 625, + [2498] = 631, + [2499] = 2117, + [2500] = 608, + [2501] = 2119, + [2502] = 2002, + [2503] = 654, + [2504] = 210, + [2505] = 613, + [2506] = 637, + [2507] = 659, + [2508] = 651, + [2509] = 653, + [2510] = 658, + [2511] = 662, + [2512] = 667, + [2513] = 669, + [2514] = 2048, + [2515] = 640, + [2516] = 661, + [2517] = 668, + [2518] = 670, + [2519] = 2030, + [2520] = 2520, + [2521] = 141, + [2522] = 266, + [2523] = 2520, + [2524] = 142, + [2525] = 264, + [2526] = 288, + [2527] = 2527, + [2528] = 291, + [2529] = 316, + [2530] = 2530, + [2531] = 2531, + [2532] = 264, + [2533] = 266, + [2534] = 279, + [2535] = 2535, + [2536] = 143, + [2537] = 2527, + [2538] = 2535, + [2539] = 2531, + [2540] = 2530, + [2541] = 2541, + [2542] = 319, + [2543] = 147, + [2544] = 296, + [2545] = 142, + [2546] = 305, + [2547] = 144, + [2548] = 146, + [2549] = 305, + [2550] = 303, + [2551] = 295, + [2552] = 143, + [2553] = 145, + [2554] = 297, + [2555] = 298, + [2556] = 149, + [2557] = 303, + [2558] = 279, + [2559] = 2559, + [2560] = 2560, + [2561] = 2561, + [2562] = 148, + [2563] = 298, + [2564] = 264, + [2565] = 296, + [2566] = 297, + [2567] = 295, + [2568] = 266, + [2569] = 350, + [2570] = 327, + [2571] = 329, + [2572] = 330, + [2573] = 2573, + [2574] = 2574, + [2575] = 146, + [2576] = 152, + [2577] = 316, + [2578] = 2578, + [2579] = 147, + [2580] = 148, + [2581] = 319, + [2582] = 145, [2583] = 2583, - [2584] = 345, - [2585] = 2579, - [2586] = 2580, + [2584] = 331, + [2585] = 151, + [2586] = 150, [2587] = 2587, - [2588] = 152, - [2589] = 2568, - [2590] = 2590, - [2591] = 141, - [2592] = 2590, - [2593] = 343, - [2594] = 304, - [2595] = 2583, - [2596] = 146, - [2597] = 149, - [2598] = 221, - [2599] = 150, - [2600] = 346, - [2601] = 220, - [2602] = 346, - [2603] = 330, - [2604] = 2587, - [2605] = 2605, - [2606] = 320, + [2588] = 350, + [2589] = 1376, + [2590] = 327, + [2591] = 2583, + [2592] = 2592, + [2593] = 329, + [2594] = 2594, + [2595] = 330, + [2596] = 332, + [2597] = 141, + [2598] = 149, + [2599] = 2573, + [2600] = 2574, + [2601] = 2578, + [2602] = 2587, + [2603] = 2594, + [2604] = 144, + [2605] = 360, + [2606] = 655, [2607] = 2607, - [2608] = 151, - [2609] = 150, - [2610] = 2610, - [2611] = 2611, - [2612] = 610, - [2613] = 611, - [2614] = 612, - [2615] = 613, - [2616] = 473, - [2617] = 360, - [2618] = 356, - [2619] = 618, - [2620] = 619, - [2621] = 476, + [2608] = 657, + [2609] = 2609, + [2610] = 146, + [2611] = 601, + [2612] = 1697, + [2613] = 147, + [2614] = 2614, + [2615] = 2615, + [2616] = 2616, + [2617] = 264, + [2618] = 148, + [2619] = 603, + [2620] = 661, + [2621] = 666, [2622] = 2622, - [2623] = 2623, - [2624] = 146, - [2625] = 2611, - [2626] = 147, + [2623] = 2614, + [2624] = 473, + [2625] = 305, + [2626] = 2622, [2627] = 2627, - [2628] = 149, - [2629] = 2629, - [2630] = 148, + [2628] = 144, + [2629] = 153, + [2630] = 2630, [2631] = 2631, [2632] = 2632, [2633] = 2633, - [2634] = 2634, - [2635] = 1660, + [2634] = 150, + [2635] = 2635, [2636] = 2636, [2637] = 2637, - [2638] = 2638, - [2639] = 2607, - [2640] = 2640, - [2641] = 1633, - [2642] = 2642, - [2643] = 2637, - [2644] = 324, - [2645] = 141, - [2646] = 2638, - [2647] = 330, - [2648] = 2623, - [2649] = 2649, - [2650] = 2650, - [2651] = 2605, - [2652] = 2629, - [2653] = 142, - [2654] = 2654, - [2655] = 2649, - [2656] = 2650, - [2657] = 143, - [2658] = 2638, - [2659] = 153, - [2660] = 2654, - [2661] = 2654, - [2662] = 2650, - [2663] = 2654, - [2664] = 2650, - [2665] = 152, - [2666] = 319, - [2667] = 2610, - [2668] = 2642, - [2669] = 2640, - [2670] = 392, - [2671] = 2627, - [2672] = 346, - [2673] = 412, - [2674] = 413, - [2675] = 350, - [2676] = 370, - [2677] = 343, - [2678] = 414, - [2679] = 416, - [2680] = 417, - [2681] = 418, - [2682] = 419, - [2683] = 424, - [2684] = 425, - [2685] = 426, - [2686] = 427, - [2687] = 429, - [2688] = 430, - [2689] = 431, - [2690] = 434, - [2691] = 372, - [2692] = 411, - [2693] = 435, - [2694] = 612, - [2695] = 613, - [2696] = 2696, - [2697] = 371, - [2698] = 146, - [2699] = 148, - [2700] = 373, - [2701] = 382, - [2702] = 2702, - [2703] = 2703, - [2704] = 147, - [2705] = 147, - [2706] = 473, - [2707] = 408, - [2708] = 2632, - [2709] = 142, - [2710] = 2633, - [2711] = 143, - [2712] = 327, + [2638] = 361, + [2639] = 2639, + [2640] = 1720, + [2641] = 2641, + [2642] = 2631, + [2643] = 2622, + [2644] = 2644, + [2645] = 2632, + [2646] = 2646, + [2647] = 2647, + [2648] = 210, + [2649] = 141, + [2650] = 152, + [2651] = 464, + [2652] = 2652, + [2653] = 2607, + [2654] = 2630, + [2655] = 2652, + [2656] = 2637, + [2657] = 319, + [2658] = 2644, + [2659] = 2647, + [2660] = 2607, + [2661] = 2652, + [2662] = 2607, + [2663] = 2652, + [2664] = 143, + [2665] = 2641, + [2666] = 2627, + [2667] = 2615, + [2668] = 303, + [2669] = 142, + [2670] = 151, + [2671] = 316, + [2672] = 2672, + [2673] = 418, + [2674] = 1697, + [2675] = 666, + [2676] = 655, + [2677] = 2639, + [2678] = 2678, + [2679] = 210, + [2680] = 147, + [2681] = 148, + [2682] = 329, + [2683] = 2633, + [2684] = 409, + [2685] = 2685, + [2686] = 2635, + [2687] = 144, + [2688] = 332, + [2689] = 385, + [2690] = 143, + [2691] = 142, + [2692] = 371, + [2693] = 423, + [2694] = 330, + [2695] = 2695, + [2696] = 331, + [2697] = 305, + [2698] = 2646, + [2699] = 373, + [2700] = 2700, + [2701] = 1720, + [2702] = 327, + [2703] = 374, + [2704] = 381, + [2705] = 146, + [2706] = 2706, + [2707] = 382, + [2708] = 434, + [2709] = 147, + [2710] = 331, + [2711] = 619, + [2712] = 2712, [2713] = 2713, - [2714] = 407, - [2715] = 619, - [2716] = 2716, + [2714] = 2714, + [2715] = 146, + [2716] = 291, [2717] = 2717, - [2718] = 662, - [2719] = 2719, - [2720] = 2720, - [2721] = 369, - [2722] = 149, - [2723] = 1660, - [2724] = 2636, - [2725] = 350, - [2726] = 145, - [2727] = 144, - [2728] = 149, - [2729] = 148, - [2730] = 146, - [2731] = 327, - [2732] = 2732, - [2733] = 415, - [2734] = 2734, - [2735] = 2732, - [2736] = 2717, - [2737] = 2631, - [2738] = 153, - [2739] = 610, - [2740] = 611, - [2741] = 476, - [2742] = 420, - [2743] = 141, - [2744] = 2622, - [2745] = 341, - [2746] = 2634, - [2747] = 1633, - [2748] = 2748, - [2749] = 345, - [2750] = 618, - [2751] = 150, - [2752] = 2752, - [2753] = 146, - [2754] = 2754, - [2755] = 2755, - [2756] = 360, - [2757] = 412, - [2758] = 356, - [2759] = 413, - [2760] = 414, - [2761] = 147, - [2762] = 416, - [2763] = 149, - [2764] = 417, - [2765] = 418, - [2766] = 148, - [2767] = 419, - [2768] = 407, - [2769] = 736, - [2770] = 220, - [2771] = 2771, - [2772] = 424, - [2773] = 425, - [2774] = 426, - [2775] = 350, - [2776] = 429, - [2777] = 430, - [2778] = 431, - [2779] = 434, - [2780] = 411, - [2781] = 435, - [2782] = 142, - [2783] = 143, - [2784] = 211, - [2785] = 198, - [2786] = 2748, - [2787] = 145, - [2788] = 144, - [2789] = 327, - [2790] = 2790, - [2791] = 327, - [2792] = 2752, - [2793] = 152, - [2794] = 151, - [2795] = 2754, - [2796] = 360, - [2797] = 356, - [2798] = 350, - [2799] = 2790, - [2800] = 141, - [2801] = 427, - [2802] = 143, - [2803] = 413, - [2804] = 2804, - [2805] = 2805, - [2806] = 2806, - [2807] = 382, - [2808] = 427, - [2809] = 2809, - [2810] = 414, - [2811] = 416, - [2812] = 445, - [2813] = 417, - [2814] = 2814, - [2815] = 411, - [2816] = 435, - [2817] = 418, - [2818] = 419, - [2819] = 424, - [2820] = 371, - [2821] = 425, - [2822] = 444, - [2823] = 198, - [2824] = 152, - [2825] = 218, - [2826] = 473, - [2827] = 2804, - [2828] = 360, - [2829] = 2829, - [2830] = 2830, - [2831] = 320, - [2832] = 151, - [2833] = 150, - [2834] = 662, - [2835] = 476, - [2836] = 370, - [2837] = 356, - [2838] = 426, - [2839] = 481, - [2840] = 360, - [2841] = 201, - [2842] = 2842, - [2843] = 153, - [2844] = 319, - [2845] = 407, - [2846] = 2809, - [2847] = 356, - [2848] = 370, - [2849] = 412, - [2850] = 145, - [2851] = 1562, - [2852] = 141, - [2853] = 2853, - [2854] = 371, - [2855] = 373, - [2856] = 382, - [2857] = 2857, - [2858] = 142, - [2859] = 429, - [2860] = 211, - [2861] = 144, + [2718] = 332, + [2719] = 601, + [2720] = 2616, + [2721] = 603, + [2722] = 288, + [2723] = 427, + [2724] = 415, + [2725] = 148, + [2726] = 141, + [2727] = 429, + [2728] = 657, + [2729] = 145, + [2730] = 149, + [2731] = 2609, + [2732] = 2678, + [2733] = 391, + [2734] = 397, + [2735] = 399, + [2736] = 2672, + [2737] = 144, + [2738] = 403, + [2739] = 405, + [2740] = 303, + [2741] = 436, + [2742] = 390, + [2743] = 2743, + [2744] = 401, + [2745] = 404, + [2746] = 406, + [2747] = 407, + [2748] = 408, + [2749] = 410, + [2750] = 413, + [2751] = 414, + [2752] = 153, + [2753] = 464, + [2754] = 350, + [2755] = 2636, + [2756] = 473, + [2757] = 661, + [2758] = 332, + [2759] = 152, + [2760] = 141, + [2761] = 415, + [2762] = 144, + [2763] = 391, + [2764] = 397, + [2765] = 399, + [2766] = 2766, + [2767] = 145, + [2768] = 403, + [2769] = 405, + [2770] = 436, + [2771] = 142, + [2772] = 266, + [2773] = 390, + [2774] = 360, + [2775] = 2743, + [2776] = 423, + [2777] = 146, + [2778] = 199, + [2779] = 361, + [2780] = 151, + [2781] = 150, + [2782] = 401, + [2783] = 350, + [2784] = 149, + [2785] = 264, + [2786] = 2786, + [2787] = 148, + [2788] = 686, + [2789] = 404, + [2790] = 291, + [2791] = 330, + [2792] = 406, + [2793] = 407, + [2794] = 408, + [2795] = 2795, + [2796] = 2796, + [2797] = 2786, + [2798] = 410, + [2799] = 413, + [2800] = 2766, + [2801] = 414, + [2802] = 332, + [2803] = 331, + [2804] = 2795, + [2805] = 329, + [2806] = 360, + [2807] = 288, + [2808] = 147, + [2809] = 361, + [2810] = 427, + [2811] = 2811, + [2812] = 331, + [2813] = 327, + [2814] = 143, + [2815] = 2815, + [2816] = 391, + [2817] = 397, + [2818] = 399, + [2819] = 403, + [2820] = 405, + [2821] = 436, + [2822] = 390, + [2823] = 401, + [2824] = 404, + [2825] = 406, + [2826] = 407, + [2827] = 408, + [2828] = 410, + [2829] = 413, + [2830] = 414, + [2831] = 2831, + [2832] = 2832, + [2833] = 2833, + [2834] = 146, + [2835] = 2832, + [2836] = 151, + [2837] = 150, + [2838] = 1639, + [2839] = 147, + [2840] = 266, + [2841] = 148, + [2842] = 1330, + [2843] = 483, + [2844] = 449, + [2845] = 2845, + [2846] = 452, + [2847] = 360, + [2848] = 2831, + [2849] = 361, + [2850] = 360, + [2851] = 144, + [2852] = 361, + [2853] = 199, + [2854] = 153, + [2855] = 374, + [2856] = 303, + [2857] = 305, + [2858] = 473, + [2859] = 385, + [2860] = 264, + [2861] = 371, [2862] = 373, - [2863] = 146, - [2864] = 477, - [2865] = 478, - [2866] = 219, - [2867] = 479, - [2868] = 147, - [2869] = 149, - [2870] = 430, - [2871] = 148, - [2872] = 198, - [2873] = 431, - [2874] = 2805, - [2875] = 434, - [2876] = 2806, - [2877] = 2877, - [2878] = 481, - [2879] = 146, - [2880] = 736, - [2881] = 371, - [2882] = 477, - [2883] = 143, - [2884] = 478, - [2885] = 2885, - [2886] = 550, - [2887] = 198, - [2888] = 543, - [2889] = 479, - [2890] = 536, - [2891] = 373, - [2892] = 382, - [2893] = 220, - [2894] = 221, - [2895] = 221, - [2896] = 519, - [2897] = 1651, - [2898] = 148, - [2899] = 473, - [2900] = 370, - [2901] = 497, - [2902] = 2902, - [2903] = 220, - [2904] = 145, - [2905] = 528, - [2906] = 144, - [2907] = 201, - [2908] = 444, - [2909] = 147, - [2910] = 497, - [2911] = 327, - [2912] = 2912, - [2913] = 327, - [2914] = 142, - [2915] = 153, - [2916] = 218, - [2917] = 501, - [2918] = 201, - [2919] = 2919, - [2920] = 503, - [2921] = 503, - [2922] = 345, - [2923] = 1629, - [2924] = 343, - [2925] = 501, - [2926] = 151, - [2927] = 346, - [2928] = 371, - [2929] = 341, - [2930] = 152, - [2931] = 500, - [2932] = 445, - [2933] = 373, - [2934] = 2934, - [2935] = 544, - [2936] = 382, - [2937] = 219, - [2938] = 350, - [2939] = 518, - [2940] = 350, - [2941] = 370, - [2942] = 149, - [2943] = 150, - [2944] = 476, - [2945] = 500, - [2946] = 356, - [2947] = 2947, - [2948] = 550, - [2949] = 360, - [2950] = 2950, - [2951] = 221, - [2952] = 663, - [2953] = 637, - [2954] = 665, - [2955] = 2955, - [2956] = 671, - [2957] = 147, - [2958] = 644, - [2959] = 645, - [2960] = 2960, - [2961] = 632, - [2962] = 148, - [2963] = 327, - [2964] = 319, - [2965] = 320, - [2966] = 220, - [2967] = 221, - [2968] = 360, - [2969] = 356, - [2970] = 648, - [2971] = 589, - [2972] = 350, - [2973] = 590, - [2974] = 591, - [2975] = 592, - [2976] = 593, - [2977] = 594, - [2978] = 595, - [2979] = 596, - [2980] = 597, - [2981] = 598, - [2982] = 601, - [2983] = 602, - [2984] = 603, - [2985] = 604, - [2986] = 605, - [2987] = 606, - [2988] = 607, - [2989] = 608, - [2990] = 609, - [2991] = 1660, - [2992] = 1633, - [2993] = 2993, - [2994] = 2994, - [2995] = 144, - [2996] = 2996, - [2997] = 647, - [2998] = 649, - [2999] = 2999, - [3000] = 651, - [3001] = 2955, - [3002] = 2960, - [3003] = 152, - [3004] = 2993, - [3005] = 2996, - [3006] = 2994, - [3007] = 2947, - [3008] = 151, - [3009] = 150, - [3010] = 198, - [3011] = 1711, - [3012] = 1715, - [3013] = 201, - [3014] = 149, - [3015] = 656, - [3016] = 3016, - [3017] = 153, - [3018] = 3018, - [3019] = 657, - [3020] = 1789, - [3021] = 1790, - [3022] = 319, - [3023] = 320, - [3024] = 610, - [3025] = 611, - [3026] = 146, - [3027] = 612, - [3028] = 613, - [3029] = 147, - [3030] = 149, - [3031] = 148, - [3032] = 662, - [3033] = 1259, - [3034] = 618, - [3035] = 619, - [3036] = 146, - [3037] = 145, - [3038] = 633, - [3039] = 665, - [3040] = 201, - [3041] = 632, - [3042] = 671, - [3043] = 371, - [3044] = 444, - [3045] = 445, - [3046] = 497, - [3047] = 152, - [3048] = 500, - [3049] = 501, - [3050] = 1365, - [3051] = 3016, - [3052] = 151, - [3053] = 150, - [3054] = 589, - [3055] = 360, - [3056] = 373, - [3057] = 356, - [3058] = 503, - [3059] = 3059, - [3060] = 3060, - [3061] = 3061, - [3062] = 146, - [3063] = 147, - [3064] = 149, - [3065] = 341, - [3066] = 382, - [3067] = 343, - [3068] = 3068, - [3069] = 148, - [3070] = 590, - [3071] = 345, - [3072] = 346, - [3073] = 319, - [3074] = 153, - [3075] = 3075, - [3076] = 320, - [3077] = 1259, - [3078] = 350, - [3079] = 591, - [3080] = 736, - [3081] = 592, - [3082] = 593, - [3083] = 594, - [3084] = 595, - [3085] = 596, - [3086] = 663, - [3087] = 370, - [3088] = 3088, - [3089] = 597, - [3090] = 343, - [3091] = 598, - [3092] = 601, - [3093] = 370, - [3094] = 345, - [3095] = 550, - [3096] = 371, - [3097] = 602, - [3098] = 346, - [3099] = 603, - [3100] = 620, - [3101] = 373, - [3102] = 382, - [3103] = 3103, - [3104] = 327, - [3105] = 198, - [3106] = 3106, - [3107] = 604, - [3108] = 605, - [3109] = 606, - [3110] = 607, + [2863] = 374, + [2864] = 266, + [2865] = 201, + [2866] = 199, + [2867] = 619, + [2868] = 2868, + [2869] = 2815, + [2870] = 2833, + [2871] = 142, + [2872] = 152, + [2873] = 490, + [2874] = 2874, + [2875] = 2875, + [2876] = 2876, + [2877] = 479, + [2878] = 145, + [2879] = 143, + [2880] = 149, + [2881] = 141, + [2882] = 385, + [2883] = 423, + [2884] = 480, + [2885] = 371, + [2886] = 427, + [2887] = 415, + [2888] = 2888, + [2889] = 2889, + [2890] = 373, + [2891] = 464, + [2892] = 327, + [2893] = 332, + [2894] = 201, + [2895] = 1659, + [2896] = 201, + [2897] = 479, + [2898] = 580, + [2899] = 504, + [2900] = 480, + [2901] = 264, + [2902] = 332, + [2903] = 385, + [2904] = 371, + [2905] = 331, + [2906] = 373, + [2907] = 374, + [2908] = 385, + [2909] = 371, + [2910] = 373, + [2911] = 374, + [2912] = 452, + [2913] = 143, + [2914] = 350, + [2915] = 329, + [2916] = 330, + [2917] = 266, + [2918] = 303, + [2919] = 464, + [2920] = 2920, + [2921] = 305, + [2922] = 142, + [2923] = 331, + [2924] = 532, + [2925] = 331, + [2926] = 536, + [2927] = 537, + [2928] = 449, + [2929] = 153, + [2930] = 2930, + [2931] = 544, + [2932] = 332, + [2933] = 1719, + [2934] = 505, + [2935] = 501, + [2936] = 499, + [2937] = 2937, + [2938] = 1330, + [2939] = 152, + [2940] = 199, + [2941] = 501, + [2942] = 507, + [2943] = 146, + [2944] = 490, + [2945] = 147, + [2946] = 148, + [2947] = 473, + [2948] = 504, + [2949] = 151, + [2950] = 150, + [2951] = 2951, + [2952] = 2952, + [2953] = 505, + [2954] = 144, + [2955] = 507, + [2956] = 686, + [2957] = 145, + [2958] = 483, + [2959] = 149, + [2960] = 539, + [2961] = 332, + [2962] = 640, + [2963] = 648, + [2964] = 673, + [2965] = 588, + [2966] = 303, + [2967] = 2967, + [2968] = 1697, + [2969] = 652, + [2970] = 331, + [2971] = 201, + [2972] = 150, + [2973] = 305, + [2974] = 654, + [2975] = 2975, + [2976] = 668, + [2977] = 670, + [2978] = 619, + [2979] = 331, + [2980] = 2980, + [2981] = 632, + [2982] = 591, + [2983] = 2983, + [2984] = 151, + [2985] = 660, + [2986] = 350, + [2987] = 661, + [2988] = 146, + [2989] = 327, + [2990] = 361, + [2991] = 329, + [2992] = 597, + [2993] = 638, + [2994] = 330, + [2995] = 600, + [2996] = 646, + [2997] = 360, + [2998] = 1788, + [2999] = 360, + [3000] = 1789, + [3001] = 361, + [3002] = 199, + [3003] = 147, + [3004] = 3004, + [3005] = 148, + [3006] = 153, + [3007] = 3007, + [3008] = 144, + [3009] = 637, + [3010] = 149, + [3011] = 332, + [3012] = 361, + [3013] = 627, + [3014] = 146, + [3015] = 590, + [3016] = 3004, + [3017] = 3007, + [3018] = 596, + [3019] = 666, + [3020] = 613, + [3021] = 1795, + [3022] = 615, + [3023] = 3023, + [3024] = 1796, + [3025] = 621, + [3026] = 604, + [3027] = 593, + [3028] = 147, + [3029] = 599, + [3030] = 3030, + [3031] = 580, + [3032] = 148, + [3033] = 3030, + [3034] = 3034, + [3035] = 3035, + [3036] = 656, + [3037] = 144, + [3038] = 612, + [3039] = 3039, + [3040] = 624, + [3041] = 622, + [3042] = 3035, + [3043] = 152, + [3044] = 655, + [3045] = 1720, + [3046] = 601, + [3047] = 598, + [3048] = 603, + [3049] = 645, + [3050] = 657, + [3051] = 2967, + [3052] = 3034, + [3053] = 360, + [3054] = 626, + [3055] = 145, + [3056] = 618, + [3057] = 645, + [3058] = 385, + [3059] = 611, + [3060] = 617, + [3061] = 373, + [3062] = 329, + [3063] = 668, + [3064] = 385, + [3065] = 670, + [3066] = 479, + [3067] = 632, + [3068] = 501, + [3069] = 371, + [3070] = 659, + [3071] = 373, + [3072] = 651, + [3073] = 507, + [3074] = 374, + [3075] = 653, + [3076] = 591, + [3077] = 371, + [3078] = 658, + [3079] = 662, + [3080] = 152, + [3081] = 3081, + [3082] = 371, + [3083] = 504, + [3084] = 350, + [3085] = 656, + [3086] = 505, + [3087] = 638, + [3088] = 667, + [3089] = 669, + [3090] = 360, + [3091] = 373, + [3092] = 374, + [3093] = 646, + [3094] = 648, + [3095] = 654, + [3096] = 608, + [3097] = 151, + [3098] = 360, + [3099] = 374, + [3100] = 385, + [3101] = 3101, + [3102] = 3102, + [3103] = 201, + [3104] = 3104, + [3105] = 361, + [3106] = 640, + [3107] = 361, + [3108] = 604, + [3109] = 593, + [3110] = 3110, [3111] = 3111, - [3112] = 621, - [3113] = 608, - [3114] = 622, - [3115] = 623, - [3116] = 624, - [3117] = 609, - [3118] = 625, - [3119] = 626, - [3120] = 627, - [3121] = 630, - [3122] = 631, - [3123] = 674, - [3124] = 634, - [3125] = 635, - [3126] = 636, - [3127] = 3127, - [3128] = 341, - [3129] = 595, - [3130] = 621, - [3131] = 345, - [3132] = 622, - [3133] = 623, - [3134] = 327, - [3135] = 624, - [3136] = 346, - [3137] = 148, - [3138] = 625, - [3139] = 626, - [3140] = 627, - [3141] = 2950, - [3142] = 630, - [3143] = 631, - [3144] = 674, - [3145] = 633, - [3146] = 634, - [3147] = 635, - [3148] = 636, - [3149] = 3149, - [3150] = 370, - [3151] = 3151, + [3112] = 3112, + [3113] = 2980, + [3114] = 652, + [3115] = 686, + [3116] = 150, + [3117] = 3117, + [3118] = 330, + [3119] = 146, + [3120] = 596, + [3121] = 588, + [3122] = 381, + [3123] = 580, + [3124] = 3124, + [3125] = 1376, + [3126] = 599, + [3127] = 612, + [3128] = 147, + [3129] = 148, + [3130] = 624, + [3131] = 382, + [3132] = 327, + [3133] = 660, + [3134] = 626, + [3135] = 199, + [3136] = 144, + [3137] = 610, + [3138] = 627, + [3139] = 625, + [3140] = 153, + [3141] = 3141, + [3142] = 631, + [3143] = 480, + [3144] = 671, + [3145] = 590, + [3146] = 374, + [3147] = 147, + [3148] = 148, + [3149] = 373, + [3150] = 3150, + [3151] = 611, [3152] = 3152, - [3153] = 444, - [3154] = 3154, - [3155] = 371, - [3156] = 3156, - [3157] = 445, - [3158] = 3158, + [3153] = 625, + [3154] = 201, + [3155] = 627, + [3156] = 373, + [3157] = 596, + [3158] = 645, [3159] = 3159, - [3160] = 663, - [3161] = 665, - [3162] = 3162, - [3163] = 153, - [3164] = 671, - [3165] = 373, - [3166] = 382, - [3167] = 3167, - [3168] = 3168, - [3169] = 3169, - [3170] = 360, - [3171] = 356, - [3172] = 147, - [3173] = 201, - [3174] = 146, - [3175] = 632, - [3176] = 3176, - [3177] = 3018, - [3178] = 149, - [3179] = 620, - [3180] = 341, - [3181] = 3181, - [3182] = 589, - [3183] = 3183, - [3184] = 590, - [3185] = 343, - [3186] = 591, - [3187] = 592, - [3188] = 593, - [3189] = 594, - [3190] = 596, - [3191] = 597, - [3192] = 598, - [3193] = 601, - [3194] = 602, - [3195] = 603, - [3196] = 604, - [3197] = 605, - [3198] = 606, - [3199] = 607, - [3200] = 608, - [3201] = 609, - [3202] = 350, - [3203] = 370, - [3204] = 414, - [3205] = 3205, - [3206] = 417, - [3207] = 371, - [3208] = 141, - [3209] = 373, - [3210] = 382, - [3211] = 392, - [3212] = 431, - [3213] = 434, - [3214] = 418, - [3215] = 356, - [3216] = 411, - [3217] = 419, - [3218] = 372, - [3219] = 369, - [3220] = 412, - [3221] = 435, - [3222] = 424, - [3223] = 425, - [3224] = 413, - [3225] = 426, - [3226] = 407, - [3227] = 427, - [3228] = 429, - [3229] = 415, - [3230] = 430, - [3231] = 408, - [3232] = 420, - [3233] = 360, - [3234] = 416, - [3235] = 3235, - [3236] = 327, - [3237] = 3237, - [3238] = 3238, - [3239] = 372, - [3240] = 143, - [3241] = 350, - [3242] = 3154, - [3243] = 3243, - [3244] = 370, - [3245] = 3245, - [3246] = 3237, - [3247] = 3238, - [3248] = 142, - [3249] = 371, - [3250] = 3250, - [3251] = 3251, - [3252] = 3252, - [3253] = 373, - [3254] = 382, - [3255] = 3245, - [3256] = 369, - [3257] = 3235, + [3160] = 610, + [3161] = 651, + [3162] = 653, + [3163] = 2983, + [3164] = 479, + [3165] = 3165, + [3166] = 374, + [3167] = 648, + [3168] = 658, + [3169] = 146, + [3170] = 654, + [3171] = 3171, + [3172] = 591, + [3173] = 668, + [3174] = 590, + [3175] = 608, + [3176] = 604, + [3177] = 144, + [3178] = 3178, + [3179] = 662, + [3180] = 385, + [3181] = 659, + [3182] = 332, + [3183] = 669, + [3184] = 331, + [3185] = 660, + [3186] = 3186, + [3187] = 3187, + [3188] = 3188, + [3189] = 652, + [3190] = 2975, + [3191] = 480, + [3192] = 617, + [3193] = 656, + [3194] = 670, + [3195] = 618, + [3196] = 382, + [3197] = 3197, + [3198] = 371, + [3199] = 632, + [3200] = 371, + [3201] = 3201, + [3202] = 631, + [3203] = 3023, + [3204] = 667, + [3205] = 599, + [3206] = 638, + [3207] = 3207, + [3208] = 612, + [3209] = 640, + [3210] = 3210, + [3211] = 671, + [3212] = 588, + [3213] = 624, + [3214] = 153, + [3215] = 381, + [3216] = 3216, + [3217] = 385, + [3218] = 646, + [3219] = 626, + [3220] = 593, + [3221] = 401, + [3222] = 429, + [3223] = 141, + [3224] = 331, + [3225] = 332, + [3226] = 360, + [3227] = 361, + [3228] = 3228, + [3229] = 409, + [3230] = 3152, + [3231] = 418, + [3232] = 434, + [3233] = 423, + [3234] = 427, + [3235] = 415, + [3236] = 391, + [3237] = 397, + [3238] = 399, + [3239] = 403, + [3240] = 405, + [3241] = 436, + [3242] = 390, + [3243] = 404, + [3244] = 406, + [3245] = 407, + [3246] = 408, + [3247] = 410, + [3248] = 413, + [3249] = 414, + [3250] = 532, + [3251] = 507, + [3252] = 501, + [3253] = 3253, + [3254] = 3254, + [3255] = 3255, + [3256] = 3256, + [3257] = 3257, [3258] = 3258, - [3259] = 3251, - [3260] = 3243, + [3259] = 3259, + [3260] = 3260, [3261] = 3261, - [3262] = 3252, - [3263] = 3258, - [3264] = 144, - [3265] = 146, - [3266] = 3250, - [3267] = 327, - [3268] = 145, - [3269] = 147, - [3270] = 1547, - [3271] = 1562, - [3272] = 360, - [3273] = 350, - [3274] = 356, - [3275] = 149, - [3276] = 148, - [3277] = 501, - [3278] = 550, - [3279] = 543, - [3280] = 536, - [3281] = 528, - [3282] = 1651, - [3283] = 3283, - [3284] = 518, - [3285] = 500, + [3262] = 536, + [3263] = 537, + [3264] = 3254, + [3265] = 3255, + [3266] = 539, + [3267] = 544, + [3268] = 143, + [3269] = 361, + [3270] = 504, + [3271] = 385, + [3272] = 505, + [3273] = 371, + [3274] = 142, + [3275] = 373, + [3276] = 374, + [3277] = 3260, + [3278] = 3261, + [3279] = 3279, + [3280] = 3280, + [3281] = 3256, + [3282] = 3257, + [3283] = 499, + [3284] = 3258, + [3285] = 3259, [3286] = 360, - [3287] = 1629, - [3288] = 356, - [3289] = 151, - [3290] = 150, - [3291] = 519, - [3292] = 3292, - [3293] = 3293, - [3294] = 370, - [3295] = 497, - [3296] = 544, - [3297] = 500, - [3298] = 371, - [3299] = 501, - [3300] = 528, - [3301] = 373, - [3302] = 382, - [3303] = 1642, - [3304] = 497, - [3305] = 503, - [3306] = 503, - [3307] = 152, - [3308] = 1737, - [3309] = 603, - [3310] = 382, - [3311] = 601, - [3312] = 148, - [3313] = 671, - [3314] = 1711, - [3315] = 500, - [3316] = 637, - [3317] = 1715, - [3318] = 592, - [3319] = 1660, - [3320] = 3320, - [3321] = 147, - [3322] = 610, - [3323] = 609, - [3324] = 596, - [3325] = 1736, - [3326] = 618, - [3327] = 619, - [3328] = 632, - [3329] = 589, - [3330] = 536, - [3331] = 593, - [3332] = 149, - [3333] = 644, - [3334] = 645, - [3335] = 611, - [3336] = 656, - [3337] = 594, - [3338] = 1789, - [3339] = 665, - [3340] = 501, - [3341] = 1790, - [3342] = 497, - [3343] = 597, - [3344] = 3344, - [3345] = 590, - [3346] = 370, - [3347] = 657, - [3348] = 503, - [3349] = 1633, - [3350] = 1765, - [3351] = 543, - [3352] = 519, - [3353] = 647, - [3354] = 648, - [3355] = 649, - [3356] = 1758, - [3357] = 1629, - [3358] = 602, - [3359] = 1764, - [3360] = 371, - [3361] = 544, - [3362] = 604, - [3363] = 651, - [3364] = 595, - [3365] = 518, - [3366] = 605, - [3367] = 528, - [3368] = 606, - [3369] = 607, - [3370] = 591, - [3371] = 146, - [3372] = 612, - [3373] = 613, - [3374] = 373, - [3375] = 598, - [3376] = 663, - [3377] = 153, - [3378] = 608, - [3379] = 3379, - [3380] = 2371, - [3381] = 2372, - [3382] = 2373, - [3383] = 2374, - [3384] = 2375, - [3385] = 2376, - [3386] = 2377, - [3387] = 2378, - [3388] = 2379, - [3389] = 2380, - [3390] = 2381, - [3391] = 2382, - [3392] = 2383, - [3393] = 2384, - [3394] = 2387, - [3395] = 3395, - [3396] = 2319, - [3397] = 3397, - [3398] = 2321, - [3399] = 2322, - [3400] = 2439, - [3401] = 1629, - [3402] = 2326, - [3403] = 2328, - [3404] = 2329, - [3405] = 211, - [3406] = 2330, - [3407] = 2446, - [3408] = 2404, - [3409] = 2405, - [3410] = 2406, - [3411] = 2407, - [3412] = 2408, - [3413] = 2409, - [3414] = 2410, - [3415] = 2411, - [3416] = 2412, - [3417] = 2413, - [3418] = 2414, - [3419] = 2415, - [3420] = 2442, - [3421] = 2317, - [3422] = 3422, - [3423] = 2440, - [3424] = 2388, - [3425] = 2389, - [3426] = 2391, - [3427] = 2392, - [3428] = 2393, - [3429] = 2394, - [3430] = 2395, - [3431] = 2396, - [3432] = 2397, - [3433] = 2399, - [3434] = 2400, - [3435] = 2401, - [3436] = 2402, - [3437] = 3437, - [3438] = 2403, - [3439] = 2416, - [3440] = 2417, - [3441] = 2418, - [3442] = 2419, - [3443] = 3443, - [3444] = 2422, - [3445] = 2424, - [3446] = 2425, - [3447] = 2426, - [3448] = 3422, - [3449] = 2427, - [3450] = 2428, - [3451] = 2429, - [3452] = 2431, - [3453] = 2432, - [3454] = 3454, - [3455] = 2433, - [3456] = 2434, - [3457] = 2436, - [3458] = 2437, - [3459] = 2441, - [3460] = 2445, - [3461] = 2451, - [3462] = 2314, - [3463] = 3422, - [3464] = 2335, - [3465] = 2336, - [3466] = 2338, - [3467] = 2339, - [3468] = 2340, - [3469] = 2341, - [3470] = 1723, - [3471] = 2342, - [3472] = 2343, - [3473] = 2344, - [3474] = 2345, - [3475] = 2346, - [3476] = 2347, - [3477] = 2348, - [3478] = 2349, - [3479] = 2350, - [3480] = 2351, - [3481] = 2352, - [3482] = 2354, - [3483] = 2355, - [3484] = 2356, - [3485] = 3485, - [3486] = 2357, - [3487] = 2358, - [3488] = 2359, - [3489] = 2360, - [3490] = 2361, - [3491] = 2362, - [3492] = 2364, - [3493] = 2365, - [3494] = 3494, - [3495] = 2366, - [3496] = 2367, - [3497] = 2368, - [3498] = 2369, - [3499] = 2370, - [3500] = 2421, - [3501] = 3501, - [3502] = 3502, - [3503] = 3503, - [3504] = 3292, - [3505] = 3293, - [3506] = 3506, - [3507] = 3503, - [3508] = 219, - [3509] = 218, - [3510] = 1723, - [3511] = 3511, - [3512] = 211, - [3513] = 3513, - [3514] = 2404, - [3515] = 2405, - [3516] = 2406, - [3517] = 2407, - [3518] = 2408, - [3519] = 2409, - [3520] = 2410, - [3521] = 2411, - [3522] = 3522, - [3523] = 2412, - [3524] = 2413, - [3525] = 2414, - [3526] = 3506, - [3527] = 2415, - [3528] = 3502, - [3529] = 3513, - [3530] = 221, - [3531] = 216, - [3532] = 220, + [3287] = 539, + [3288] = 544, + [3289] = 144, + [3290] = 532, + [3291] = 146, + [3292] = 147, + [3293] = 385, + [3294] = 507, + [3295] = 499, + [3296] = 501, + [3297] = 504, + [3298] = 505, + [3299] = 536, + [3300] = 537, + [3301] = 371, + [3302] = 148, + [3303] = 373, + [3304] = 1659, + [3305] = 1604, + [3306] = 374, + [3307] = 1639, + [3308] = 145, + [3309] = 149, + [3310] = 2319, + [3311] = 1724, + [3312] = 1659, + [3313] = 501, + [3314] = 504, + [3315] = 505, + [3316] = 1659, + [3317] = 507, + [3318] = 1719, + [3319] = 1751, + [3320] = 499, + [3321] = 2392, + [3322] = 2394, + [3323] = 2402, + [3324] = 2405, + [3325] = 2410, + [3326] = 2412, + [3327] = 2413, + [3328] = 2414, + [3329] = 2292, + [3330] = 2296, + [3331] = 2297, + [3332] = 2299, + [3333] = 2312, + [3334] = 2313, + [3335] = 2314, + [3336] = 2315, + [3337] = 2316, + [3338] = 2317, + [3339] = 2416, + [3340] = 2320, + [3341] = 2322, + [3342] = 2323, + [3343] = 2324, + [3344] = 2330, + [3345] = 2331, + [3346] = 2334, + [3347] = 2338, + [3348] = 2339, + [3349] = 2340, + [3350] = 2341, + [3351] = 2342, + [3352] = 2343, + [3353] = 2344, + [3354] = 2345, + [3355] = 2346, + [3356] = 2347, + [3357] = 2348, + [3358] = 2361, + [3359] = 2363, + [3360] = 2364, + [3361] = 2365, + [3362] = 2370, + [3363] = 2372, + [3364] = 2373, + [3365] = 2374, + [3366] = 2376, + [3367] = 2378, + [3368] = 2409, + [3369] = 2411, + [3370] = 2383, + [3371] = 2337, + [3372] = 2306, + [3373] = 2300, + [3374] = 580, + [3375] = 2397, + [3376] = 2327, + [3377] = 2291, + [3378] = 2294, + [3379] = 2305, + [3380] = 2308, + [3381] = 2318, + [3382] = 2369, + [3383] = 2389, + [3384] = 2298, + [3385] = 2302, + [3386] = 2307, + [3387] = 2310, + [3388] = 2325, + [3389] = 2329, + [3390] = 2375, + [3391] = 2387, + [3392] = 2293, + [3393] = 2295, + [3394] = 2301, + [3395] = 2303, + [3396] = 2321, + [3397] = 2326, + [3398] = 2333, + [3399] = 2367, + [3400] = 2379, + [3401] = 2385, + [3402] = 2395, + [3403] = 2415, + [3404] = 2328, + [3405] = 2332, + [3406] = 2336, + [3407] = 2366, + [3408] = 2368, + [3409] = 2371, + [3410] = 2377, + [3411] = 2380, + [3412] = 2388, + [3413] = 2393, + [3414] = 2396, + [3415] = 2401, + [3416] = 2349, + [3417] = 2350, + [3418] = 2351, + [3419] = 2352, + [3420] = 2353, + [3421] = 2354, + [3422] = 2355, + [3423] = 2356, + [3424] = 2357, + [3425] = 2358, + [3426] = 2359, + [3427] = 2360, + [3428] = 152, + [3429] = 3429, + [3430] = 210, + [3431] = 151, + [3432] = 150, + [3433] = 2311, + [3434] = 660, + [3435] = 624, + [3436] = 626, + [3437] = 627, + [3438] = 612, + [3439] = 648, + [3440] = 654, + [3441] = 1697, + [3442] = 652, + [3443] = 1788, + [3444] = 1772, + [3445] = 1789, + [3446] = 673, + [3447] = 1770, + [3448] = 1773, + [3449] = 637, + [3450] = 1771, + [3451] = 1751, + [3452] = 210, + [3453] = 1764, + [3454] = 291, + [3455] = 3279, + [3456] = 615, + [3457] = 621, + [3458] = 3280, + [3459] = 147, + [3460] = 3460, + [3461] = 148, + [3462] = 146, + [3463] = 597, + [3464] = 622, + [3465] = 598, + [3466] = 600, + [3467] = 656, + [3468] = 640, + [3469] = 588, + [3470] = 153, + [3471] = 144, + [3472] = 3472, + [3473] = 668, + [3474] = 670, + [3475] = 632, + [3476] = 591, + [3477] = 638, + [3478] = 646, + [3479] = 2349, + [3480] = 2350, + [3481] = 2351, + [3482] = 2352, + [3483] = 2353, + [3484] = 2354, + [3485] = 2355, + [3486] = 288, + [3487] = 2356, + [3488] = 2357, + [3489] = 2358, + [3490] = 2359, + [3491] = 2360, + [3492] = 1720, + [3493] = 596, + [3494] = 1796, + [3495] = 655, + [3496] = 657, + [3497] = 613, + [3498] = 661, + [3499] = 666, + [3500] = 601, + [3501] = 603, + [3502] = 1795, + [3503] = 590, + [3504] = 604, + [3505] = 593, + [3506] = 599, + [3507] = 645, + [3508] = 3508, + [3509] = 1280, + [3510] = 3510, + [3511] = 279, + [3512] = 3510, + [3513] = 3510, + [3514] = 266, + [3515] = 3515, + [3516] = 291, + [3517] = 3517, + [3518] = 3518, + [3519] = 264, + [3520] = 3520, + [3521] = 3521, + [3522] = 288, + [3523] = 3523, + [3524] = 3524, + [3525] = 1330, + [3526] = 3526, + [3527] = 297, + [3528] = 1368, + [3529] = 295, + [3530] = 303, + [3531] = 296, + [3532] = 305, [3533] = 3533, - [3534] = 3533, - [3535] = 218, - [3536] = 1369, - [3537] = 219, - [3538] = 304, + [3534] = 3534, + [3535] = 298, + [3536] = 3536, + [3537] = 3537, + [3538] = 3538, [3539] = 3539, - [3540] = 1393, - [3541] = 221, - [3542] = 3542, - [3543] = 3543, - [3544] = 3539, - [3545] = 3545, - [3546] = 3546, - [3547] = 3547, - [3548] = 3548, - [3549] = 3543, - [3550] = 3550, - [3551] = 3551, - [3552] = 319, - [3553] = 3546, - [3554] = 1402, - [3555] = 307, - [3556] = 3539, - [3557] = 3545, - [3558] = 3546, - [3559] = 3547, - [3560] = 3548, - [3561] = 3543, - [3562] = 3550, - [3563] = 3551, - [3564] = 312, - [3565] = 303, - [3566] = 3547, - [3567] = 3545, - [3568] = 3568, - [3569] = 220, - [3570] = 662, - [3571] = 3550, - [3572] = 3551, - [3573] = 3548, + [3540] = 3526, + [3541] = 266, + [3542] = 3538, + [3543] = 3536, + [3544] = 264, + [3545] = 1367, + [3546] = 3537, + [3547] = 350, + [3548] = 327, + [3549] = 1330, + [3550] = 332, + [3551] = 330, + [3552] = 303, + [3553] = 331, + [3554] = 305, + [3555] = 329, + [3556] = 3556, + [3557] = 332, + [3558] = 331, + [3559] = 3559, + [3560] = 619, + [3561] = 3561, + [3562] = 3556, + [3563] = 3559, + [3564] = 350, + [3565] = 327, + [3566] = 329, + [3567] = 330, + [3568] = 266, + [3569] = 3569, + [3570] = 3570, + [3571] = 3571, + [3572] = 3572, + [3573] = 3573, [3574] = 3574, - [3575] = 3575, - [3576] = 1259, - [3577] = 3568, - [3578] = 320, - [3579] = 3542, - [3580] = 343, + [3575] = 360, + [3576] = 3561, + [3577] = 3556, + [3578] = 3569, + [3579] = 3570, + [3580] = 3571, [3581] = 3581, - [3582] = 3582, - [3583] = 327, - [3584] = 350, - [3585] = 3585, - [3586] = 346, - [3587] = 3587, - [3588] = 345, - [3589] = 1259, - [3590] = 736, - [3591] = 320, - [3592] = 319, - [3593] = 341, - [3594] = 221, - [3595] = 327, - [3596] = 360, - [3597] = 343, - [3598] = 341, - [3599] = 350, - [3600] = 356, + [3582] = 3573, + [3583] = 3574, + [3584] = 3584, + [3585] = 3561, + [3586] = 3569, + [3587] = 3570, + [3588] = 3571, + [3589] = 3581, + [3590] = 3573, + [3591] = 3574, + [3592] = 361, + [3593] = 3581, + [3594] = 3594, + [3595] = 381, + [3596] = 3596, + [3597] = 385, + [3598] = 382, + [3599] = 371, + [3600] = 3600, [3601] = 3601, - [3602] = 345, - [3603] = 346, - [3604] = 198, - [3605] = 201, - [3606] = 356, - [3607] = 370, - [3608] = 372, - [3609] = 373, - [3610] = 371, - [3611] = 382, - [3612] = 360, - [3613] = 369, - [3614] = 3154, + [3602] = 360, + [3603] = 686, + [3604] = 361, + [3605] = 373, + [3606] = 374, + [3607] = 331, + [3608] = 332, + [3609] = 264, + [3610] = 2975, + [3611] = 381, + [3612] = 371, + [3613] = 266, + [3614] = 199, [3615] = 373, - [3616] = 220, - [3617] = 371, - [3618] = 350, - [3619] = 372, - [3620] = 327, - [3621] = 370, - [3622] = 369, - [3623] = 221, - [3624] = 382, - [3625] = 360, - [3626] = 350, - [3627] = 220, - [3628] = 221, - [3629] = 319, - [3630] = 327, - [3631] = 356, - [3632] = 320, - [3633] = 1888, - [3634] = 373, - [3635] = 382, - [3636] = 343, - [3637] = 543, - [3638] = 519, - [3639] = 544, - [3640] = 518, - [3641] = 341, - [3642] = 147, - [3643] = 3643, - [3644] = 149, - [3645] = 497, - [3646] = 528, - [3647] = 345, - [3648] = 500, - [3649] = 536, - [3650] = 320, - [3651] = 148, - [3652] = 3652, - [3653] = 370, - [3654] = 346, - [3655] = 360, - [3656] = 472, - [3657] = 1843, - [3658] = 1902, - [3659] = 1821, - [3660] = 356, + [3616] = 374, + [3617] = 385, + [3618] = 382, + [3619] = 3619, + [3620] = 331, + [3621] = 360, + [3622] = 305, + [3623] = 361, + [3624] = 201, + [3625] = 332, + [3626] = 303, + [3627] = 264, + [3628] = 266, + [3629] = 491, + [3630] = 505, + [3631] = 3631, + [3632] = 371, + [3633] = 329, + [3634] = 305, + [3635] = 507, + [3636] = 350, + [3637] = 303, + [3638] = 330, + [3639] = 536, + [3640] = 327, + [3641] = 544, + [3642] = 501, + [3643] = 499, + [3644] = 360, + [3645] = 537, + [3646] = 373, + [3647] = 1690, + [3648] = 374, + [3649] = 1692, + [3650] = 1702, + [3651] = 1689, + [3652] = 532, + [3653] = 539, + [3654] = 385, + [3655] = 361, + [3656] = 504, + [3657] = 490, + [3658] = 483, + [3659] = 449, + [3660] = 452, [3661] = 3661, - [3662] = 481, - [3663] = 477, - [3664] = 478, - [3665] = 479, - [3666] = 371, - [3667] = 319, - [3668] = 146, - [3669] = 503, - [3670] = 501, - [3671] = 2365, - [3672] = 2422, - [3673] = 2424, - [3674] = 2425, - [3675] = 2426, - [3676] = 2427, - [3677] = 2428, - [3678] = 2429, - [3679] = 2431, - [3680] = 2432, - [3681] = 2442, - [3682] = 2433, - [3683] = 2434, - [3684] = 2436, - [3685] = 2437, - [3686] = 2441, - [3687] = 2445, - [3688] = 2451, - [3689] = 2314, - [3690] = 497, - [3691] = 500, - [3692] = 501, - [3693] = 536, - [3694] = 2335, - [3695] = 2336, - [3696] = 2338, - [3697] = 2339, - [3698] = 2340, - [3699] = 2341, - [3700] = 2342, - [3701] = 2343, - [3702] = 2344, - [3703] = 2345, - [3704] = 2346, - [3705] = 2347, - [3706] = 2348, - [3707] = 2349, - [3708] = 2350, - [3709] = 2351, - [3710] = 2352, - [3711] = 2354, - [3712] = 2355, - [3713] = 2356, - [3714] = 2357, - [3715] = 2358, - [3716] = 2359, - [3717] = 2360, - [3718] = 2361, - [3719] = 2362, - [3720] = 2364, - [3721] = 2439, - [3722] = 2366, - [3723] = 2367, - [3724] = 2368, - [3725] = 2369, - [3726] = 2370, - [3727] = 2371, - [3728] = 2372, - [3729] = 2373, - [3730] = 343, - [3731] = 2317, - [3732] = 2374, - [3733] = 2375, - [3734] = 2376, - [3735] = 2421, - [3736] = 2378, - [3737] = 2379, - [3738] = 2380, - [3739] = 2381, - [3740] = 2382, - [3741] = 2383, - [3742] = 2384, - [3743] = 2387, - [3744] = 1629, - [3745] = 543, - [3746] = 519, - [3747] = 2319, - [3748] = 544, - [3749] = 518, - [3750] = 503, - [3751] = 3751, - [3752] = 2440, - [3753] = 346, - [3754] = 2321, - [3755] = 2322, - [3756] = 2326, - [3757] = 3751, - [3758] = 2328, - [3759] = 2329, - [3760] = 2330, - [3761] = 345, - [3762] = 2446, - [3763] = 3751, - [3764] = 3751, - [3765] = 3751, - [3766] = 2388, - [3767] = 2389, - [3768] = 2391, - [3769] = 350, - [3770] = 370, - [3771] = 2392, - [3772] = 2393, - [3773] = 2394, - [3774] = 2395, - [3775] = 2396, - [3776] = 371, - [3777] = 2397, - [3778] = 373, - [3779] = 382, - [3780] = 528, - [3781] = 2399, - [3782] = 2400, - [3783] = 2401, - [3784] = 2402, - [3785] = 2403, - [3786] = 2416, - [3787] = 3751, - [3788] = 341, - [3789] = 2417, - [3790] = 2418, - [3791] = 2419, - [3792] = 3751, - [3793] = 2377, - [3794] = 3794, - [3795] = 3795, - [3796] = 3796, + [3662] = 2320, + [3663] = 2322, + [3664] = 2323, + [3665] = 2324, + [3666] = 2330, + [3667] = 2331, + [3668] = 2334, + [3669] = 2338, + [3670] = 2339, + [3671] = 2340, + [3672] = 2341, + [3673] = 2342, + [3674] = 2343, + [3675] = 2344, + [3676] = 2345, + [3677] = 2346, + [3678] = 2347, + [3679] = 2348, + [3680] = 2361, + [3681] = 2363, + [3682] = 2364, + [3683] = 2365, + [3684] = 2370, + [3685] = 2372, + [3686] = 2373, + [3687] = 2374, + [3688] = 2376, + [3689] = 2378, + [3690] = 2412, + [3691] = 2409, + [3692] = 2411, + [3693] = 2383, + [3694] = 2337, + [3695] = 2306, + [3696] = 2300, + [3697] = 2311, + [3698] = 2397, + [3699] = 2327, + [3700] = 2291, + [3701] = 2294, + [3702] = 2305, + [3703] = 2308, + [3704] = 2318, + [3705] = 2369, + [3706] = 2389, + [3707] = 2298, + [3708] = 3661, + [3709] = 2302, + [3710] = 2307, + [3711] = 2310, + [3712] = 2325, + [3713] = 2329, + [3714] = 2375, + [3715] = 2394, + [3716] = 350, + [3717] = 2413, + [3718] = 2387, + [3719] = 2293, + [3720] = 3661, + [3721] = 3661, + [3722] = 2402, + [3723] = 2295, + [3724] = 2301, + [3725] = 2303, + [3726] = 539, + [3727] = 2321, + [3728] = 2326, + [3729] = 2333, + [3730] = 2367, + [3731] = 2385, + [3732] = 2395, + [3733] = 2414, + [3734] = 2415, + [3735] = 544, + [3736] = 499, + [3737] = 2328, + [3738] = 537, + [3739] = 2292, + [3740] = 2332, + [3741] = 3661, + [3742] = 2336, + [3743] = 2366, + [3744] = 2368, + [3745] = 2371, + [3746] = 2377, + [3747] = 2380, + [3748] = 2388, + [3749] = 2393, + [3750] = 2296, + [3751] = 385, + [3752] = 330, + [3753] = 2297, + [3754] = 3661, + [3755] = 536, + [3756] = 2299, + [3757] = 2405, + [3758] = 507, + [3759] = 332, + [3760] = 532, + [3761] = 3661, + [3762] = 329, + [3763] = 2410, + [3764] = 2396, + [3765] = 371, + [3766] = 1659, + [3767] = 2312, + [3768] = 2313, + [3769] = 373, + [3770] = 2314, + [3771] = 2315, + [3772] = 2316, + [3773] = 2317, + [3774] = 2416, + [3775] = 2319, + [3776] = 501, + [3777] = 2401, + [3778] = 504, + [3779] = 505, + [3780] = 374, + [3781] = 327, + [3782] = 2392, + [3783] = 2379, + [3784] = 3784, + [3785] = 144, + [3786] = 3784, + [3787] = 3787, + [3788] = 3787, + [3789] = 3789, + [3790] = 3790, + [3791] = 1659, + [3792] = 148, + [3793] = 146, + [3794] = 3784, + [3795] = 147, + [3796] = 3787, [3797] = 3797, - [3798] = 3798, - [3799] = 3799, - [3800] = 3800, - [3801] = 3801, - [3802] = 3802, - [3803] = 3803, - [3804] = 3804, - [3805] = 3805, - [3806] = 3806, - [3807] = 1629, - [3808] = 3808, - [3809] = 3809, - [3810] = 3810, - [3811] = 3811, - [3812] = 3812, - [3813] = 3813, - [3814] = 3795, - [3815] = 3806, - [3816] = 3816, - [3817] = 3795, - [3818] = 3806, - [3819] = 3819, - [3820] = 3820, - [3821] = 3821, - [3822] = 3822, - [3823] = 3804, - [3824] = 3824, - [3825] = 3825, - [3826] = 3826, - [3827] = 3827, - [3828] = 3828, - [3829] = 2413, - [3830] = 3830, - [3831] = 3810, - [3832] = 3830, - [3833] = 2404, - [3834] = 2405, - [3835] = 2406, - [3836] = 2407, - [3837] = 2408, - [3838] = 2409, - [3839] = 2410, - [3840] = 2411, - [3841] = 2412, - [3842] = 2414, - [3843] = 2415, - [3844] = 2404, + [3798] = 3797, + [3799] = 2349, + [3800] = 2350, + [3801] = 2351, + [3802] = 2352, + [3803] = 3797, + [3804] = 2353, + [3805] = 2354, + [3806] = 2355, + [3807] = 2356, + [3808] = 2357, + [3809] = 2358, + [3810] = 2359, + [3811] = 3797, + [3812] = 2360, + [3813] = 3797, + [3814] = 2349, + [3815] = 2350, + [3816] = 2351, + [3817] = 2352, + [3818] = 2353, + [3819] = 2354, + [3820] = 2355, + [3821] = 2356, + [3822] = 2357, + [3823] = 2358, + [3824] = 2359, + [3825] = 2360, + [3826] = 3797, + [3827] = 3797, + [3828] = 3797, + [3829] = 3829, + [3830] = 3829, + [3831] = 3831, + [3832] = 3832, + [3833] = 3833, + [3834] = 3834, + [3835] = 3835, + [3836] = 3829, + [3837] = 3837, + [3838] = 3829, + [3839] = 3839, + [3840] = 3840, + [3841] = 3841, + [3842] = 3842, + [3843] = 3829, + [3844] = 3844, [3845] = 3845, - [3846] = 2405, - [3847] = 3830, - [3848] = 2406, - [3849] = 2407, - [3850] = 3830, - [3851] = 2408, - [3852] = 2409, - [3853] = 2410, - [3854] = 3830, - [3855] = 2411, - [3856] = 2412, - [3857] = 2413, - [3858] = 2414, - [3859] = 2415, + [3846] = 3846, + [3847] = 3847, + [3848] = 3848, + [3849] = 3829, + [3850] = 3850, + [3851] = 3835, + [3852] = 3852, + [3853] = 3853, + [3854] = 3854, + [3855] = 3855, + [3856] = 3856, + [3857] = 3857, + [3858] = 3858, + [3859] = 3859, [3860] = 3860, - [3861] = 3830, - [3862] = 3830, - [3863] = 3797, - [3864] = 3830, + [3861] = 3861, + [3862] = 3862, + [3863] = 3863, + [3864] = 3850, [3865] = 3865, - [3866] = 3866, + [3866] = 3839, [3867] = 3867, - [3868] = 3868, + [3868] = 3845, [3869] = 3869, [3870] = 3870, - [3871] = 153, + [3871] = 3871, [3872] = 3872, - [3873] = 3865, - [3874] = 3865, - [3875] = 3875, - [3876] = 3865, - [3877] = 3866, - [3878] = 3867, + [3873] = 3872, + [3874] = 3874, + [3875] = 3871, + [3876] = 3876, + [3877] = 3870, + [3878] = 3874, [3879] = 3869, - [3880] = 3870, - [3881] = 3868, - [3882] = 3865, - [3883] = 3865, - [3884] = 3875, - [3885] = 211, - [3886] = 3872, - [3887] = 219, - [3888] = 211, - [3889] = 216, - [3890] = 218, - [3891] = 303, - [3892] = 221, - [3893] = 141, - [3894] = 219, - [3895] = 211, - [3896] = 1660, - [3897] = 324, - [3898] = 304, - [3899] = 307, - [3900] = 312, - [3901] = 220, - [3902] = 142, - [3903] = 216, - [3904] = 218, - [3905] = 143, - [3906] = 330, - [3907] = 1633, - [3908] = 320, - [3909] = 221, - [3910] = 319, - [3911] = 1259, - [3912] = 307, - [3913] = 312, - [3914] = 220, - [3915] = 303, - [3916] = 218, - [3917] = 216, - [3918] = 211, - [3919] = 304, - [3920] = 219, - [3921] = 141, - [3922] = 304, - [3923] = 341, - [3924] = 319, - [3925] = 307, - [3926] = 327, - [3927] = 216, - [3928] = 219, - [3929] = 320, - [3930] = 343, - [3931] = 312, - [3932] = 345, - [3933] = 220, - [3934] = 346, - [3935] = 303, - [3936] = 1259, - [3937] = 218, - [3938] = 221, - [3939] = 350, - [3940] = 304, - [3941] = 319, - [3942] = 345, - [3943] = 350, - [3944] = 356, - [3945] = 307, - [3946] = 312, - [3947] = 303, - [3948] = 360, - [3949] = 220, - [3950] = 327, - [3951] = 346, - [3952] = 198, - [3953] = 1259, - [3954] = 343, - [3955] = 211, - [3956] = 320, - [3957] = 341, - [3958] = 221, - [3959] = 141, - [3960] = 412, - [3961] = 350, - [3962] = 416, - [3963] = 417, - [3964] = 426, - [3965] = 427, - [3966] = 429, - [3967] = 1259, - [3968] = 343, - [3969] = 320, - [3970] = 371, - [3971] = 430, - [3972] = 413, - [3973] = 216, - [3974] = 431, - [3975] = 434, - [3976] = 382, - [3977] = 411, - [3978] = 435, - [3979] = 341, - [3980] = 346, - [3981] = 356, - [3982] = 319, - [3983] = 330, - [3984] = 392, - [3985] = 221, - [3986] = 415, - [3987] = 369, - [3988] = 1633, - [3989] = 372, - [3990] = 219, - [3991] = 373, - [3992] = 419, - [3993] = 145, - [3994] = 144, + [3880] = 3876, + [3881] = 153, + [3882] = 210, + [3883] = 291, + [3884] = 279, + [3885] = 288, + [3886] = 210, + [3887] = 291, + [3888] = 288, + [3889] = 1720, + [3890] = 264, + [3891] = 210, + [3892] = 316, + [3893] = 279, + [3894] = 141, + [3895] = 319, + [3896] = 266, + [3897] = 142, + [3898] = 143, + [3899] = 295, + [3900] = 297, + [3901] = 298, + [3902] = 296, + [3903] = 1697, + [3904] = 303, + [3905] = 266, + [3906] = 288, + [3907] = 291, + [3908] = 1330, + [3909] = 295, + [3910] = 305, + [3911] = 264, + [3912] = 298, + [3913] = 210, + [3914] = 297, + [3915] = 296, + [3916] = 279, + [3917] = 296, + [3918] = 279, + [3919] = 330, + [3920] = 264, + [3921] = 303, + [3922] = 332, + [3923] = 327, + [3924] = 331, + [3925] = 1330, + [3926] = 329, + [3927] = 305, + [3928] = 297, + [3929] = 288, + [3930] = 291, + [3931] = 298, + [3932] = 295, + [3933] = 350, + [3934] = 266, + [3935] = 327, + [3936] = 264, + [3937] = 360, + [3938] = 295, + [3939] = 361, + [3940] = 297, + [3941] = 298, + [3942] = 141, + [3943] = 266, + [3944] = 210, + [3945] = 350, + [3946] = 199, + [3947] = 329, + [3948] = 330, + [3949] = 331, + [3950] = 303, + [3951] = 305, + [3952] = 296, + [3953] = 1330, + [3954] = 332, + [3955] = 423, + [3956] = 305, + [3957] = 418, + [3958] = 279, + [3959] = 332, + [3960] = 331, + [3961] = 429, + [3962] = 360, + [3963] = 264, + [3964] = 291, + [3965] = 391, + [3966] = 397, + [3967] = 399, + [3968] = 403, + [3969] = 303, + [3970] = 415, + [3971] = 145, + [3972] = 385, + [3973] = 149, + [3974] = 405, + [3975] = 436, + [3976] = 329, + [3977] = 371, + [3978] = 390, + [3979] = 401, + [3980] = 374, + [3981] = 327, + [3982] = 404, + [3983] = 382, + [3984] = 361, + [3985] = 406, + [3986] = 407, + [3987] = 408, + [3988] = 410, + [3989] = 413, + [3990] = 319, + [3991] = 414, + [3992] = 381, + [3993] = 266, + [3994] = 409, [3995] = 201, - [3996] = 360, - [3997] = 424, - [3998] = 345, - [3999] = 220, - [4000] = 1660, - [4001] = 414, - [4002] = 218, - [4003] = 408, - [4004] = 370, - [4005] = 327, - [4006] = 420, - [4007] = 324, - [4008] = 418, - [4009] = 407, - [4010] = 425, - [4011] = 152, - [4012] = 350, - [4013] = 151, + [3996] = 141, + [3997] = 316, + [3998] = 330, + [3999] = 427, + [4000] = 288, + [4001] = 434, + [4002] = 1330, + [4003] = 350, + [4004] = 373, + [4005] = 312, + [4006] = 305, + [4007] = 141, + [4008] = 142, + [4009] = 373, + [4010] = 374, + [4011] = 332, + [4012] = 331, + [4013] = 298, [4014] = 150, - [4015] = 346, - [4016] = 319, - [4017] = 143, - [4018] = 370, - [4019] = 360, - [4020] = 307, - [4021] = 312, - [4022] = 303, - [4023] = 311, - [4024] = 369, - [4025] = 142, - [4026] = 356, - [4027] = 382, - [4028] = 327, - [4029] = 350, - [4030] = 373, - [4031] = 327, - [4032] = 320, - [4033] = 372, - [4034] = 1365, - [4035] = 343, - [4036] = 330, - [4037] = 345, - [4038] = 141, - [4039] = 324, - [4040] = 304, - [4041] = 341, - [4042] = 371, - [4043] = 479, - [4044] = 330, - [4045] = 147, - [4046] = 345, - [4047] = 356, - [4048] = 327, - [4049] = 149, - [4050] = 372, - [4051] = 370, - [4052] = 343, - [4053] = 382, - [4054] = 346, - [4055] = 341, - [4056] = 371, - [4057] = 327, - [4058] = 146, - [4059] = 369, - [4060] = 142, - [4061] = 324, - [4062] = 148, - [4063] = 350, - [4064] = 145, - [4065] = 360, - [4066] = 144, - [4067] = 141, - [4068] = 360, - [4069] = 4069, - [4070] = 356, - [4071] = 143, - [4072] = 350, + [4015] = 371, + [4016] = 327, + [4017] = 296, + [4018] = 360, + [4019] = 316, + [4020] = 303, + [4021] = 381, + [4022] = 1376, + [4023] = 1697, + [4024] = 319, + [4025] = 152, + [4026] = 385, + [4027] = 297, + [4028] = 332, + [4029] = 151, + [4030] = 295, + [4031] = 350, + [4032] = 143, + [4033] = 1720, + [4034] = 382, + [4035] = 329, + [4036] = 361, + [4037] = 331, + [4038] = 330, + [4039] = 490, + [4040] = 4040, + [4041] = 329, + [4042] = 143, + [4043] = 330, + [4044] = 319, + [4045] = 331, + [4046] = 4046, + [4047] = 382, + [4048] = 4048, + [4049] = 374, + [4050] = 1376, + [4051] = 361, + [4052] = 4052, + [4053] = 332, + [4054] = 381, + [4055] = 360, + [4056] = 148, + [4057] = 4057, + [4058] = 142, + [4059] = 146, + [4060] = 331, + [4061] = 332, + [4062] = 360, + [4063] = 361, + [4064] = 4064, + [4065] = 141, + [4066] = 350, + [4067] = 371, + [4068] = 145, + [4069] = 316, + [4070] = 149, + [4071] = 144, + [4072] = 147, [4073] = 373, - [4074] = 4074, - [4075] = 472, - [4076] = 481, - [4077] = 477, - [4078] = 478, - [4079] = 4079, - [4080] = 1365, - [4081] = 4081, - [4082] = 392, - [4083] = 369, - [4084] = 4081, - [4085] = 382, - [4086] = 519, - [4087] = 425, - [4088] = 528, - [4089] = 388, - [4090] = 145, - [4091] = 426, - [4092] = 144, - [4093] = 427, - [4094] = 497, - [4095] = 429, - [4096] = 2627, - [4097] = 430, - [4098] = 503, - [4099] = 431, - [4100] = 434, - [4101] = 411, - [4102] = 147, - [4103] = 4103, - [4104] = 2632, - [4105] = 500, - [4106] = 4074, - [4107] = 2633, - [4108] = 501, - [4109] = 414, - [4110] = 149, - [4111] = 416, - [4112] = 402, - [4113] = 4113, - [4114] = 408, - [4115] = 472, - [4116] = 417, - [4117] = 435, - [4118] = 544, - [4119] = 420, - [4120] = 372, - [4121] = 2634, - [4122] = 418, - [4123] = 142, - [4124] = 371, - [4125] = 481, - [4126] = 477, - [4127] = 478, - [4128] = 479, - [4129] = 518, - [4130] = 4130, - [4131] = 419, - [4132] = 2636, - [4133] = 148, - [4134] = 327, - [4135] = 356, - [4136] = 370, - [4137] = 370, - [4138] = 393, - [4139] = 143, - [4140] = 360, - [4141] = 371, - [4142] = 543, - [4143] = 373, - [4144] = 407, - [4145] = 382, - [4146] = 2631, - [4147] = 360, - [4148] = 4148, - [4149] = 152, - [4150] = 2622, - [4151] = 350, - [4152] = 373, + [4074] = 327, + [4075] = 491, + [4076] = 483, + [4077] = 449, + [4078] = 452, + [4079] = 385, + [4080] = 332, + [4081] = 423, + [4082] = 2646, + [4083] = 539, + [4084] = 4084, + [4085] = 413, + [4086] = 2616, + [4087] = 385, + [4088] = 544, + [4089] = 2639, + [4090] = 4090, + [4091] = 371, + [4092] = 331, + [4093] = 501, + [4094] = 4057, + [4095] = 360, + [4096] = 391, + [4097] = 143, + [4098] = 4098, + [4099] = 491, + [4100] = 409, + [4101] = 4101, + [4102] = 499, + [4103] = 408, + [4104] = 397, + [4105] = 374, + [4106] = 536, + [4107] = 141, + [4108] = 434, + [4109] = 4046, + [4110] = 399, + [4111] = 490, + [4112] = 537, + [4113] = 414, + [4114] = 483, + [4115] = 449, + [4116] = 452, + [4117] = 427, + [4118] = 403, + [4119] = 415, + [4120] = 381, + [4121] = 148, + [4122] = 405, + [4123] = 145, + [4124] = 410, + [4125] = 360, + [4126] = 436, + [4127] = 371, + [4128] = 149, + [4129] = 390, + [4130] = 361, + [4131] = 361, + [4132] = 373, + [4133] = 144, + [4134] = 374, + [4135] = 4135, + [4136] = 266, + [4137] = 2633, + [4138] = 401, + [4139] = 532, + [4140] = 418, + [4141] = 505, + [4142] = 4142, + [4143] = 507, + [4144] = 404, + [4145] = 4064, + [4146] = 431, + [4147] = 406, + [4148] = 147, + [4149] = 433, + [4150] = 152, + [4151] = 432, + [4152] = 407, [4153] = 146, - [4154] = 356, - [4155] = 4079, - [4156] = 151, - [4157] = 415, - [4158] = 150, - [4159] = 536, - [4160] = 4160, - [4161] = 412, - [4162] = 413, - [4163] = 424, - [4164] = 431, - [4165] = 414, - [4166] = 473, - [4167] = 4167, - [4168] = 360, - [4169] = 1629, - [4170] = 350, - [4171] = 4167, - [4172] = 536, - [4173] = 147, - [4174] = 4167, - [4175] = 402, - [4176] = 4176, - [4177] = 4148, - [4178] = 4160, - [4179] = 500, - [4180] = 518, - [4181] = 370, - [4182] = 477, - [4183] = 478, - [4184] = 149, - [4185] = 416, - [4186] = 501, - [4187] = 417, - [4188] = 4130, - [4189] = 479, - [4190] = 418, - [4191] = 370, - [4192] = 543, - [4193] = 371, - [4194] = 419, - [4195] = 424, - [4196] = 425, - [4197] = 426, - [4198] = 407, - [4199] = 4167, - [4200] = 373, - [4201] = 388, - [4202] = 427, - [4203] = 429, - [4204] = 369, - [4205] = 430, - [4206] = 148, - [4207] = 382, - [4208] = 146, - [4209] = 420, - [4210] = 519, - [4211] = 445, - [4212] = 528, - [4213] = 411, - [4214] = 4214, - [4215] = 435, - [4216] = 503, - [4217] = 408, - [4218] = 476, - [4219] = 4219, - [4220] = 4113, - [4221] = 497, - [4222] = 152, - [4223] = 4223, - [4224] = 4103, - [4225] = 4225, - [4226] = 356, - [4227] = 4227, - [4228] = 4228, - [4229] = 371, - [4230] = 550, - [4231] = 4231, - [4232] = 444, - [4233] = 392, - [4234] = 382, - [4235] = 412, - [4236] = 544, - [4237] = 372, - [4238] = 413, - [4239] = 393, - [4240] = 373, - [4241] = 481, - [4242] = 151, - [4243] = 415, - [4244] = 472, - [4245] = 153, - [4246] = 327, - [4247] = 150, - [4248] = 434, - [4249] = 4249, - [4250] = 4250, - [4251] = 665, - [4252] = 4252, + [4154] = 2636, + [4155] = 429, + [4156] = 142, + [4157] = 382, + [4158] = 2635, + [4159] = 2609, + [4160] = 504, + [4161] = 4161, + [4162] = 151, + [4163] = 150, + [4164] = 373, + [4165] = 385, + [4166] = 4135, + [4167] = 385, + [4168] = 504, + [4169] = 505, + [4170] = 409, + [4171] = 148, + [4172] = 405, + [4173] = 436, + [4174] = 4174, + [4175] = 4084, + [4176] = 390, + [4177] = 401, + [4178] = 144, + [4179] = 404, + [4180] = 423, + [4181] = 406, + [4182] = 544, + [4183] = 371, + [4184] = 371, + [4185] = 491, + [4186] = 499, + [4187] = 452, + [4188] = 532, + [4189] = 331, + [4190] = 4142, + [4191] = 4191, + [4192] = 490, + [4193] = 147, + [4194] = 407, + [4195] = 382, + [4196] = 433, + [4197] = 153, + [4198] = 332, + [4199] = 391, + [4200] = 1659, + [4201] = 408, + [4202] = 410, + [4203] = 413, + [4204] = 580, + [4205] = 397, + [4206] = 146, + [4207] = 399, + [4208] = 4208, + [4209] = 373, + [4210] = 4210, + [4211] = 414, + [4212] = 4161, + [4213] = 418, + [4214] = 507, + [4215] = 483, + [4216] = 464, + [4217] = 431, + [4218] = 151, + [4219] = 403, + [4220] = 373, + [4221] = 536, + [4222] = 374, + [4223] = 537, + [4224] = 150, + [4225] = 381, + [4226] = 473, + [4227] = 4098, + [4228] = 432, + [4229] = 4229, + [4230] = 385, + [4231] = 480, + [4232] = 479, + [4233] = 449, + [4234] = 501, + [4235] = 361, + [4236] = 427, + [4237] = 415, + [4238] = 4208, + [4239] = 429, + [4240] = 434, + [4241] = 4241, + [4242] = 4242, + [4243] = 360, + [4244] = 152, + [4245] = 4208, + [4246] = 539, + [4247] = 4208, + [4248] = 374, + [4249] = 407, + [4250] = 491, + [4251] = 632, + [4252] = 591, [4253] = 4253, [4254] = 4254, - [4255] = 4255, - [4256] = 382, - [4257] = 592, - [4258] = 1562, - [4259] = 644, - [4260] = 593, - [4261] = 594, + [4255] = 638, + [4256] = 646, + [4257] = 4257, + [4258] = 590, + [4259] = 622, + [4260] = 332, + [4261] = 604, [4262] = 4262, [4263] = 4263, - [4264] = 4264, - [4265] = 141, - [4266] = 4266, - [4267] = 645, - [4268] = 371, - [4269] = 370, - [4270] = 4270, - [4271] = 4271, - [4272] = 4272, - [4273] = 4273, - [4274] = 4274, - [4275] = 4275, - [4276] = 444, + [4264] = 593, + [4265] = 599, + [4266] = 612, + [4267] = 624, + [4268] = 640, + [4269] = 626, + [4270] = 627, + [4271] = 645, + [4272] = 648, + [4273] = 654, + [4274] = 507, + [4275] = 673, + [4276] = 652, [4277] = 4277, - [4278] = 4278, - [4279] = 4279, - [4280] = 543, - [4281] = 360, - [4282] = 4282, - [4283] = 4283, - [4284] = 671, - [4285] = 500, + [4278] = 532, + [4279] = 637, + [4280] = 1639, + [4281] = 4174, + [4282] = 361, + [4283] = 490, + [4284] = 464, + [4285] = 596, [4286] = 4286, - [4287] = 1547, - [4288] = 632, - [4289] = 4289, + [4287] = 332, + [4288] = 483, + [4289] = 449, [4290] = 4290, [4291] = 4291, [4292] = 4292, - [4293] = 1576, - [4294] = 501, - [4295] = 4295, - [4296] = 4296, - [4297] = 4297, + [4293] = 4293, + [4294] = 4294, + [4295] = 1604, + [4296] = 452, + [4297] = 385, [4298] = 4298, [4299] = 4299, [4300] = 4300, - [4301] = 4228, - [4302] = 656, + [4301] = 4301, + [4302] = 4302, [4303] = 4303, [4304] = 4304, - [4305] = 4305, + [4305] = 536, [4306] = 4306, - [4307] = 4307, - [4308] = 1578, - [4309] = 327, - [4310] = 595, - [4311] = 4311, - [4312] = 4312, - [4313] = 4307, + [4307] = 434, + [4308] = 537, + [4309] = 4309, + [4310] = 4310, + [4311] = 473, + [4312] = 153, + [4313] = 4313, [4314] = 4314, [4315] = 4315, [4316] = 4316, - [4317] = 479, + [4317] = 371, [4318] = 4318, [4319] = 4319, - [4320] = 596, - [4321] = 518, + [4320] = 4320, + [4321] = 1616, [4322] = 4322, [4323] = 4323, - [4324] = 4324, + [4324] = 1617, [4325] = 4325, [4326] = 4326, [4327] = 4327, - [4328] = 4328, - [4329] = 544, + [4328] = 505, + [4329] = 4329, [4330] = 4330, [4331] = 4331, [4332] = 4332, [4333] = 4333, - [4334] = 477, - [4335] = 597, + [4334] = 4334, + [4335] = 4335, [4336] = 4336, - [4337] = 4337, - [4338] = 1629, - [4339] = 472, - [4340] = 598, - [4341] = 4341, + [4337] = 615, + [4338] = 621, + [4339] = 4339, + [4340] = 4340, + [4341] = 479, [4342] = 4342, - [4343] = 648, - [4344] = 153, - [4345] = 445, + [4343] = 4343, + [4344] = 4344, + [4345] = 4345, [4346] = 4346, - [4347] = 601, - [4348] = 663, - [4349] = 602, - [4350] = 478, - [4351] = 603, - [4352] = 4352, - [4353] = 637, - [4354] = 604, - [4355] = 415, - [4356] = 420, - [4357] = 407, - [4358] = 412, - [4359] = 413, - [4360] = 414, - [4361] = 416, - [4362] = 417, - [4363] = 418, - [4364] = 419, - [4365] = 424, - [4366] = 425, - [4367] = 426, - [4368] = 427, + [4347] = 4347, + [4348] = 373, + [4349] = 4349, + [4350] = 597, + [4351] = 600, + [4352] = 656, + [4353] = 504, + [4354] = 4354, + [4355] = 4355, + [4356] = 539, + [4357] = 374, + [4358] = 4358, + [4359] = 4359, + [4360] = 4360, + [4361] = 4361, + [4362] = 4362, + [4363] = 4363, + [4364] = 4364, + [4365] = 4365, + [4366] = 4366, + [4367] = 4367, + [4368] = 1618, [4369] = 4369, - [4370] = 430, - [4371] = 431, - [4372] = 434, - [4373] = 411, - [4374] = 435, - [4375] = 408, - [4376] = 519, - [4377] = 605, - [4378] = 4378, + [4370] = 544, + [4371] = 4371, + [4372] = 1619, + [4373] = 4373, + [4374] = 613, + [4375] = 4375, + [4376] = 4376, + [4377] = 4377, + [4378] = 598, [4379] = 4379, - [4380] = 4380, + [4380] = 480, [4381] = 4381, [4382] = 4382, - [4383] = 481, - [4384] = 373, + [4383] = 4383, + [4384] = 4384, [4385] = 4385, - [4386] = 4386, + [4386] = 660, [4387] = 4387, - [4388] = 589, + [4388] = 4388, [4389] = 4389, [4390] = 4390, [4391] = 4391, - [4392] = 4392, + [4392] = 588, [4393] = 4393, - [4394] = 350, - [4395] = 4395, + [4394] = 4394, + [4395] = 501, [4396] = 4396, - [4397] = 4397, + [4397] = 499, [4398] = 4398, - [4399] = 4399, + [4399] = 4385, [4400] = 4400, [4401] = 4401, [4402] = 4402, - [4403] = 647, + [4403] = 4403, [4404] = 4404, - [4405] = 392, + [4405] = 4405, [4406] = 4406, - [4407] = 649, - [4408] = 657, - [4409] = 4409, - [4410] = 4410, - [4411] = 4411, - [4412] = 356, - [4413] = 4413, - [4414] = 4414, - [4415] = 4415, - [4416] = 1573, - [4417] = 4417, - [4418] = 4418, - [4419] = 473, - [4420] = 350, - [4421] = 590, - [4422] = 4422, - [4423] = 4423, - [4424] = 4424, - [4425] = 4425, - [4426] = 4426, - [4427] = 1574, + [4407] = 409, + [4408] = 418, + [4409] = 423, + [4410] = 427, + [4411] = 415, + [4412] = 391, + [4413] = 397, + [4414] = 399, + [4415] = 403, + [4416] = 405, + [4417] = 436, + [4418] = 390, + [4419] = 401, + [4420] = 404, + [4421] = 406, + [4422] = 408, + [4423] = 410, + [4424] = 413, + [4425] = 414, + [4426] = 429, + [4427] = 4427, [4428] = 4428, [4429] = 4429, [4430] = 4430, [4431] = 4431, [4432] = 4432, [4433] = 4433, - [4434] = 4434, + [4434] = 668, [4435] = 4435, [4436] = 4436, - [4437] = 4437, + [4437] = 670, [4438] = 4438, [4439] = 4439, - [4440] = 606, - [4441] = 651, - [4442] = 607, + [4440] = 4440, + [4441] = 4441, + [4442] = 4442, [4443] = 4443, - [4444] = 608, - [4445] = 609, - [4446] = 503, - [4447] = 221, - [4448] = 536, + [4444] = 4444, + [4445] = 4445, + [4446] = 4446, + [4447] = 4447, + [4448] = 4448, [4449] = 4449, [4450] = 4450, - [4451] = 497, - [4452] = 528, + [4451] = 4451, + [4452] = 4452, [4453] = 4453, [4454] = 4454, [4455] = 4455, @@ -9601,969 +9605,969 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4459] = 4459, [4460] = 4460, [4461] = 4461, - [4462] = 4462, - [4463] = 476, + [4462] = 360, + [4463] = 331, [4464] = 4464, [4465] = 4465, - [4466] = 591, + [4466] = 4466, [4467] = 4467, - [4468] = 4468, - [4469] = 4469, - [4470] = 4470, - [4471] = 4471, - [4472] = 429, - [4473] = 4273, - [4474] = 544, - [4475] = 518, - [4476] = 444, - [4477] = 445, - [4478] = 497, - [4479] = 528, - [4480] = 500, - [4481] = 501, - [4482] = 4482, - [4483] = 4483, - [4484] = 4484, - [4485] = 4319, - [4486] = 4433, - [4487] = 4255, - [4488] = 4458, - [4489] = 4306, - [4490] = 4435, - [4491] = 4430, - [4492] = 4275, - [4493] = 4391, - [4494] = 4396, - [4495] = 4266, - [4496] = 4272, - [4497] = 4274, - [4498] = 4300, - [4499] = 4385, - [4500] = 4387, - [4501] = 4459, - [4502] = 153, - [4503] = 4503, - [4504] = 503, - [4505] = 1547, - [4506] = 1629, - [4507] = 350, - [4508] = 360, - [4509] = 220, - [4510] = 356, - [4511] = 221, - [4512] = 550, - [4513] = 1562, - [4514] = 4514, - [4515] = 4515, - [4516] = 1660, - [4517] = 472, - [4518] = 4518, - [4519] = 1633, - [4520] = 4520, - [4521] = 4521, - [4522] = 4522, - [4523] = 4523, - [4524] = 4524, - [4525] = 4525, - [4526] = 4526, - [4527] = 4380, - [4528] = 4389, - [4529] = 4392, - [4530] = 4437, - [4531] = 4531, - [4532] = 477, - [4533] = 478, - [4534] = 479, - [4535] = 4535, - [4536] = 370, - [4537] = 481, - [4538] = 4538, - [4539] = 371, - [4540] = 373, - [4541] = 382, - [4542] = 4525, - [4543] = 4543, - [4544] = 4526, - [4545] = 1573, - [4546] = 1574, - [4547] = 1576, - [4548] = 1578, - [4549] = 1802, - [4550] = 536, - [4551] = 473, - [4552] = 476, - [4553] = 1642, - [4554] = 1651, - [4555] = 543, - [4556] = 519, - [4557] = 4522, - [4558] = 4523, + [4468] = 1659, + [4469] = 4316, + [4470] = 1720, + [4471] = 153, + [4472] = 4472, + [4473] = 4389, + [4474] = 1697, + [4475] = 1604, + [4476] = 4304, + [4477] = 1659, + [4478] = 473, + [4479] = 4306, + [4480] = 491, + [4481] = 490, + [4482] = 373, + [4483] = 483, + [4484] = 449, + [4485] = 452, + [4486] = 4486, + [4487] = 4487, + [4488] = 4488, + [4489] = 504, + [4490] = 4394, + [4491] = 1618, + [4492] = 4492, + [4493] = 505, + [4494] = 1619, + [4495] = 1895, + [4496] = 374, + [4497] = 4497, + [4498] = 4313, + [4499] = 371, + [4500] = 4500, + [4501] = 1616, + [4502] = 4336, + [4503] = 4343, + [4504] = 4486, + [4505] = 4497, + [4506] = 544, + [4507] = 4344, + [4508] = 4358, + [4509] = 4509, + [4510] = 4510, + [4511] = 4511, + [4512] = 4512, + [4513] = 499, + [4514] = 4360, + [4515] = 4393, + [4516] = 4364, + [4517] = 4365, + [4518] = 4366, + [4519] = 4398, + [4520] = 4373, + [4521] = 332, + [4522] = 580, + [4523] = 266, + [4524] = 4512, + [4525] = 1639, + [4526] = 1617, + [4527] = 4527, + [4528] = 4528, + [4529] = 4529, + [4530] = 4530, + [4531] = 479, + [4532] = 4375, + [4533] = 4533, + [4534] = 4381, + [4535] = 4382, + [4536] = 4383, + [4537] = 1724, + [4538] = 1719, + [4539] = 4539, + [4540] = 480, + [4541] = 532, + [4542] = 539, + [4543] = 4294, + [4544] = 4544, + [4545] = 501, + [4546] = 507, + [4547] = 464, + [4548] = 360, + [4549] = 264, + [4550] = 385, + [4551] = 536, + [4552] = 537, + [4553] = 361, + [4554] = 4527, + [4555] = 655, + [4556] = 4556, + [4557] = 671, + [4558] = 668, [4559] = 4559, - [4560] = 627, - [4561] = 550, - [4562] = 1711, - [4563] = 1715, - [4564] = 630, - [4565] = 631, - [4566] = 674, - [4567] = 633, - [4568] = 634, - [4569] = 635, - [4570] = 636, - [4571] = 220, - [4572] = 221, - [4573] = 319, - [4574] = 370, - [4575] = 503, + [4560] = 532, + [4561] = 4561, + [4562] = 1770, + [4563] = 4563, + [4564] = 4564, + [4565] = 4565, + [4566] = 4566, + [4567] = 597, + [4568] = 600, + [4569] = 1788, + [4570] = 598, + [4571] = 4571, + [4572] = 540, + [4573] = 1789, + [4574] = 4574, + [4575] = 4575, [4576] = 4576, - [4577] = 371, - [4578] = 320, - [4579] = 4579, - [4580] = 373, - [4581] = 382, - [4582] = 1765, - [4583] = 663, - [4584] = 4584, - [4585] = 637, - [4586] = 665, - [4587] = 610, - [4588] = 611, - [4589] = 2627, - [4590] = 671, - [4591] = 612, - [4592] = 613, - [4593] = 644, - [4594] = 645, - [4595] = 632, - [4596] = 618, - [4597] = 619, - [4598] = 648, - [4599] = 589, - [4600] = 518, - [4601] = 590, - [4602] = 4602, - [4603] = 591, - [4604] = 592, - [4605] = 593, - [4606] = 594, - [4607] = 595, - [4608] = 596, - [4609] = 597, - [4610] = 598, - [4611] = 601, - [4612] = 602, - [4613] = 603, - [4614] = 604, - [4615] = 605, - [4616] = 606, - [4617] = 607, - [4618] = 608, - [4619] = 609, - [4620] = 4620, - [4621] = 2632, - [4622] = 2633, - [4623] = 544, - [4624] = 350, + [4577] = 670, + [4578] = 536, + [4579] = 537, + [4580] = 632, + [4581] = 4529, + [4582] = 4539, + [4583] = 504, + [4584] = 539, + [4585] = 505, + [4586] = 544, + [4587] = 637, + [4588] = 2633, + [4589] = 4589, + [4590] = 2646, + [4591] = 4591, + [4592] = 4592, + [4593] = 591, + [4594] = 4594, + [4595] = 4595, + [4596] = 1895, + [4597] = 541, + [4598] = 4598, + [4599] = 2609, + [4600] = 640, + [4601] = 4601, + [4602] = 673, + [4603] = 4500, + [4604] = 652, + [4605] = 2616, + [4606] = 2635, + [4607] = 657, + [4608] = 603, + [4609] = 542, + [4610] = 638, + [4611] = 610, + [4612] = 4612, + [4613] = 4492, + [4614] = 4614, + [4615] = 4615, + [4616] = 4616, + [4617] = 4617, + [4618] = 611, + [4619] = 4619, + [4620] = 617, + [4621] = 4621, + [4622] = 4622, + [4623] = 4623, + [4624] = 596, [4625] = 4625, - [4626] = 2622, + [4626] = 543, [4627] = 4627, - [4628] = 4628, - [4629] = 4629, - [4630] = 4630, - [4631] = 4631, - [4632] = 4632, - [4633] = 4633, - [4634] = 4634, - [4635] = 647, - [4636] = 649, - [4637] = 1736, - [4638] = 1737, + [4628] = 1724, + [4629] = 615, + [4630] = 613, + [4631] = 1719, + [4632] = 1697, + [4633] = 646, + [4634] = 2609, + [4635] = 4635, + [4636] = 4636, + [4637] = 4637, + [4638] = 4510, [4639] = 4639, - [4640] = 651, - [4641] = 1802, - [4642] = 4642, - [4643] = 4514, - [4644] = 4531, - [4645] = 2327, - [4646] = 625, - [4647] = 626, - [4648] = 656, - [4649] = 2636, - [4650] = 4535, - [4651] = 4651, - [4652] = 2627, + [4640] = 1795, + [4641] = 656, + [4642] = 1796, + [4643] = 501, + [4644] = 4644, + [4645] = 1772, + [4646] = 580, + [4647] = 499, + [4648] = 4648, + [4649] = 1773, + [4650] = 1771, + [4651] = 608, + [4652] = 4652, [4653] = 4653, - [4654] = 4654, - [4655] = 4655, - [4656] = 4656, - [4657] = 1642, - [4658] = 2632, - [4659] = 1758, + [4654] = 659, + [4655] = 1720, + [4656] = 648, + [4657] = 2646, + [4658] = 654, + [4659] = 2616, [4660] = 4660, - [4661] = 4661, - [4662] = 4662, - [4663] = 4663, + [4661] = 2633, + [4662] = 4487, + [4663] = 660, [4664] = 4664, - [4665] = 1764, - [4666] = 657, - [4667] = 4667, - [4668] = 4520, - [4669] = 4521, - [4670] = 2633, - [4671] = 528, - [4672] = 4672, - [4673] = 2636, - [4674] = 650, - [4675] = 4675, - [4676] = 4524, - [4677] = 497, - [4678] = 4678, - [4679] = 4679, - [4680] = 500, - [4681] = 1660, - [4682] = 501, - [4683] = 2622, - [4684] = 620, - [4685] = 4515, - [4686] = 521, - [4687] = 523, - [4688] = 4538, - [4689] = 524, - [4690] = 525, - [4691] = 1629, - [4692] = 1651, - [4693] = 1633, - [4694] = 4694, + [4665] = 590, + [4666] = 2635, + [4667] = 604, + [4668] = 264, + [4669] = 626, + [4670] = 621, + [4671] = 593, + [4672] = 651, + [4673] = 622, + [4674] = 599, + [4675] = 612, + [4676] = 4544, + [4677] = 4556, + [4678] = 663, + [4679] = 661, + [4680] = 1764, + [4681] = 266, + [4682] = 627, + [4683] = 4472, + [4684] = 601, + [4685] = 332, + [4686] = 665, + [4687] = 4687, + [4688] = 618, + [4689] = 4689, + [4690] = 507, + [4691] = 624, + [4692] = 303, + [4693] = 653, + [4694] = 588, [4695] = 4695, - [4696] = 621, - [4697] = 622, - [4698] = 623, - [4699] = 4699, + [4696] = 666, + [4697] = 385, + [4698] = 658, + [4699] = 664, [4700] = 4700, [4701] = 4701, [4702] = 4702, - [4703] = 4703, - [4704] = 4704, - [4705] = 638, - [4706] = 641, - [4707] = 4707, - [4708] = 624, - [4709] = 1789, + [4703] = 625, + [4704] = 2541, + [4705] = 371, + [4706] = 305, + [4707] = 662, + [4708] = 631, + [4709] = 4709, [4710] = 4710, [4711] = 4711, - [4712] = 536, + [4712] = 4712, [4713] = 4713, - [4714] = 4714, - [4715] = 543, - [4716] = 519, - [4717] = 4717, - [4718] = 4718, - [4719] = 1790, + [4714] = 667, + [4715] = 645, + [4716] = 373, + [4717] = 374, + [4718] = 1659, + [4719] = 669, [4720] = 4720, [4721] = 4721, - [4722] = 603, - [4723] = 604, - [4724] = 4724, - [4725] = 4725, - [4726] = 605, - [4727] = 606, - [4728] = 607, - [4729] = 608, - [4730] = 609, + [4722] = 4722, + [4723] = 413, + [4724] = 588, + [4725] = 1773, + [4726] = 4726, + [4727] = 4727, + [4728] = 4728, + [4729] = 615, + [4730] = 4730, [4731] = 4731, - [4732] = 4732, - [4733] = 4733, - [4734] = 4734, + [4732] = 2541, + [4733] = 408, + [4734] = 1772, [4735] = 4735, - [4736] = 4736, + [4736] = 598, [4737] = 4737, - [4738] = 2636, + [4738] = 4738, [4739] = 4739, - [4740] = 4740, - [4741] = 4741, + [4740] = 410, + [4741] = 613, [4742] = 4742, [4743] = 4743, - [4744] = 2622, + [4744] = 4744, [4745] = 4745, - [4746] = 4746, + [4746] = 2609, [4747] = 4747, - [4748] = 647, - [4749] = 649, - [4750] = 4750, - [4751] = 4751, - [4752] = 1770, - [4753] = 1787, - [4754] = 1765, - [4755] = 651, - [4756] = 4756, - [4757] = 319, + [4748] = 4748, + [4749] = 4749, + [4750] = 583, + [4751] = 279, + [4752] = 4752, + [4753] = 659, + [4754] = 651, + [4755] = 4755, + [4756] = 590, + [4757] = 4757, [4758] = 4758, - [4759] = 320, - [4760] = 4760, - [4761] = 341, - [4762] = 4762, - [4763] = 2327, - [4764] = 343, - [4765] = 345, - [4766] = 346, - [4767] = 4767, - [4768] = 211, - [4769] = 1736, - [4770] = 1737, - [4771] = 656, - [4772] = 4772, + [4759] = 4759, + [4760] = 414, + [4761] = 4565, + [4762] = 604, + [4763] = 4763, + [4764] = 2561, + [4765] = 4765, + [4766] = 593, + [4767] = 653, + [4768] = 4768, + [4769] = 599, + [4770] = 658, + [4771] = 4771, + [4772] = 612, [4773] = 4773, - [4774] = 4774, + [4774] = 610, [4775] = 4775, - [4776] = 4776, - [4777] = 4777, - [4778] = 657, - [4779] = 1758, - [4780] = 1764, + [4776] = 611, + [4777] = 621, + [4778] = 4743, + [4779] = 4779, + [4780] = 4780, [4781] = 4781, - [4782] = 4782, - [4783] = 4783, - [4784] = 4784, - [4785] = 4785, + [4782] = 624, + [4783] = 662, + [4784] = 626, + [4785] = 617, [4786] = 4786, [4787] = 4787, - [4788] = 663, - [4789] = 637, - [4790] = 665, - [4791] = 610, - [4792] = 611, + [4788] = 4788, + [4789] = 4789, + [4790] = 661, + [4791] = 656, + [4792] = 4792, [4793] = 4793, - [4794] = 211, + [4794] = 4794, [4795] = 4795, - [4796] = 671, + [4796] = 4796, [4797] = 4797, [4798] = 4798, - [4799] = 4799, - [4800] = 4800, - [4801] = 216, - [4802] = 4802, - [4803] = 620, + [4799] = 660, + [4800] = 429, + [4801] = 4566, + [4802] = 667, + [4803] = 4803, [4804] = 4804, - [4805] = 612, + [4805] = 669, [4806] = 4806, - [4807] = 613, - [4808] = 4808, - [4809] = 4625, - [4810] = 4742, + [4807] = 4807, + [4808] = 4793, + [4809] = 4809, + [4810] = 4810, [4811] = 4811, - [4812] = 2465, - [4813] = 4655, - [4814] = 4746, - [4815] = 4747, - [4816] = 4816, - [4817] = 4656, - [4818] = 4660, - [4819] = 4661, - [4820] = 4662, - [4821] = 4663, - [4822] = 4822, - [4823] = 4664, - [4824] = 4824, - [4825] = 644, - [4826] = 645, - [4827] = 4827, - [4828] = 632, - [4829] = 618, - [4830] = 619, - [4831] = 621, - [4832] = 622, - [4833] = 623, - [4834] = 4834, - [4835] = 624, - [4836] = 4836, - [4837] = 1789, - [4838] = 1790, - [4839] = 601, - [4840] = 2632, - [4841] = 4841, - [4842] = 2633, - [4843] = 4843, - [4844] = 2627, - [4845] = 4845, - [4846] = 638, - [4847] = 641, - [4848] = 4707, - [4849] = 602, - [4850] = 216, - [4851] = 408, - [4852] = 415, - [4853] = 392, - [4854] = 420, - [4855] = 407, - [4856] = 412, - [4857] = 413, - [4858] = 414, - [4859] = 416, - [4860] = 417, - [4861] = 418, - [4862] = 419, - [4863] = 424, - [4864] = 425, - [4865] = 426, - [4866] = 427, - [4867] = 429, - [4868] = 430, - [4869] = 431, - [4870] = 434, - [4871] = 411, - [4872] = 435, - [4873] = 4873, - [4874] = 4874, - [4875] = 558, - [4876] = 4876, - [4877] = 559, - [4878] = 4878, - [4879] = 4879, - [4880] = 648, - [4881] = 4881, - [4882] = 4806, - [4883] = 625, - [4884] = 626, - [4885] = 4672, - [4886] = 627, - [4887] = 4808, - [4888] = 650, - [4889] = 4620, - [4890] = 4890, - [4891] = 589, - [4892] = 4892, + [4812] = 4812, + [4813] = 627, + [4814] = 409, + [4815] = 668, + [4816] = 584, + [4817] = 4817, + [4818] = 141, + [4819] = 640, + [4820] = 4820, + [4821] = 4622, + [4822] = 434, + [4823] = 4797, + [4824] = 673, + [4825] = 418, + [4826] = 423, + [4827] = 2616, + [4828] = 601, + [4829] = 652, + [4830] = 655, + [4831] = 210, + [4832] = 670, + [4833] = 4833, + [4834] = 603, + [4835] = 618, + [4836] = 597, + [4837] = 4837, + [4838] = 210, + [4839] = 4839, + [4840] = 600, + [4841] = 427, + [4842] = 625, + [4843] = 631, + [4844] = 415, + [4845] = 585, + [4846] = 632, + [4847] = 391, + [4848] = 657, + [4849] = 591, + [4850] = 397, + [4851] = 4564, + [4852] = 4722, + [4853] = 4853, + [4854] = 1770, + [4855] = 4855, + [4856] = 1759, + [4857] = 4857, + [4858] = 4858, + [4859] = 303, + [4860] = 4860, + [4861] = 596, + [4862] = 637, + [4863] = 1795, + [4864] = 608, + [4865] = 399, + [4866] = 4710, + [4867] = 4575, + [4868] = 4576, + [4869] = 4598, + [4870] = 4612, + [4871] = 4614, + [4872] = 4615, + [4873] = 4616, + [4874] = 1788, + [4875] = 1771, + [4876] = 4695, + [4877] = 4652, + [4878] = 4653, + [4879] = 403, + [4880] = 4880, + [4881] = 1796, + [4882] = 4882, + [4883] = 4621, + [4884] = 4884, + [4885] = 645, + [4886] = 4781, + [4887] = 305, + [4888] = 4888, + [4889] = 405, + [4890] = 648, + [4891] = 436, + [4892] = 654, [4893] = 4893, [4894] = 4894, - [4895] = 2523, + [4895] = 1789, [4896] = 4896, - [4897] = 570, - [4898] = 4898, - [4899] = 4899, - [4900] = 4900, - [4901] = 4901, + [4897] = 390, + [4898] = 666, + [4899] = 671, + [4900] = 401, + [4901] = 4559, [4902] = 4902, - [4903] = 1711, - [4904] = 1715, - [4905] = 4905, - [4906] = 4906, - [4907] = 4907, + [4903] = 4903, + [4904] = 638, + [4905] = 2559, + [4906] = 4589, + [4907] = 1762, [4908] = 4908, - [4909] = 4909, - [4910] = 141, + [4909] = 1764, + [4910] = 4910, [4911] = 4911, - [4912] = 4912, - [4913] = 1365, - [4914] = 4914, - [4915] = 4915, - [4916] = 4898, - [4917] = 4733, - [4918] = 4741, - [4919] = 4919, - [4920] = 590, + [4912] = 4749, + [4913] = 4913, + [4914] = 404, + [4915] = 4768, + [4916] = 350, + [4917] = 4687, + [4918] = 4722, + [4919] = 279, + [4920] = 4920, [4921] = 4921, [4922] = 4922, - [4923] = 4742, - [4924] = 4924, + [4923] = 4923, + [4924] = 663, [4925] = 4925, - [4926] = 4926, - [4927] = 630, - [4928] = 4928, - [4929] = 631, - [4930] = 4714, - [4931] = 4627, - [4932] = 4628, - [4933] = 4629, - [4934] = 4699, - [4935] = 4702, - [4936] = 4703, - [4937] = 4704, - [4938] = 4576, - [4939] = 4579, - [4940] = 4584, - [4941] = 674, - [4942] = 4695, - [4943] = 4943, - [4944] = 633, - [4945] = 634, - [4946] = 635, - [4947] = 636, - [4948] = 4948, - [4949] = 591, - [4950] = 4950, - [4951] = 592, - [4952] = 593, - [4953] = 594, + [4926] = 406, + [4927] = 4809, + [4928] = 4779, + [4929] = 4929, + [4930] = 327, + [4931] = 4931, + [4932] = 4932, + [4933] = 4933, + [4934] = 4934, + [4935] = 4935, + [4936] = 4936, + [4937] = 4561, + [4938] = 1376, + [4939] = 4939, + [4940] = 4940, + [4941] = 622, + [4942] = 4942, + [4943] = 329, + [4944] = 665, + [4945] = 4945, + [4946] = 664, + [4947] = 407, + [4948] = 2646, + [4949] = 2633, + [4950] = 4702, + [4951] = 4797, + [4952] = 330, + [4953] = 4563, [4954] = 4954, - [4955] = 595, - [4956] = 4672, - [4957] = 596, - [4958] = 597, - [4959] = 598, + [4955] = 4955, + [4956] = 646, + [4957] = 4957, + [4958] = 4958, + [4959] = 4959, [4960] = 4960, - [4961] = 4961, - [4962] = 4777, - [4963] = 4963, - [4964] = 4964, + [4961] = 2635, + [4962] = 4962, + [4963] = 4934, + [4964] = 4755, [4965] = 4965, - [4966] = 4795, - [4967] = 4879, - [4968] = 625, + [4966] = 4966, + [4967] = 4967, + [4968] = 4968, [4969] = 4969, - [4970] = 626, - [4971] = 627, - [4972] = 630, - [4973] = 631, - [4974] = 674, - [4975] = 633, - [4976] = 634, - [4977] = 635, - [4978] = 636, - [4979] = 4979, - [4980] = 4798, - [4981] = 4981, - [4982] = 4982, - [4983] = 4983, - [4984] = 4984, - [4985] = 4985, - [4986] = 4986, - [4987] = 4776, - [4988] = 221, - [4989] = 4989, - [4990] = 4990, - [4991] = 220, - [4992] = 4841, - [4993] = 4781, - [4994] = 4994, - [4995] = 4995, - [4996] = 304, - [4997] = 307, - [4998] = 312, - [4999] = 303, - [5000] = 219, - [5001] = 2523, - [5002] = 5002, + [4970] = 288, + [4971] = 4971, + [4972] = 291, + [4973] = 671, + [4974] = 4893, + [4975] = 4894, + [4976] = 4796, + [4977] = 618, + [4978] = 625, + [4979] = 631, + [4980] = 608, + [4981] = 1759, + [4982] = 350, + [4983] = 1762, + [4984] = 327, + [4985] = 610, + [4986] = 329, + [4987] = 611, + [4988] = 617, + [4989] = 330, + [4990] = 659, + [4991] = 651, + [4992] = 653, + [4993] = 658, + [4994] = 662, + [4995] = 667, + [4996] = 669, + [4997] = 1280, + [4998] = 4998, + [4999] = 4722, + [5000] = 5000, + [5001] = 4882, + [5002] = 4896, [5003] = 5003, [5004] = 5004, - [5005] = 4874, - [5006] = 5006, - [5007] = 220, + [5005] = 5005, + [5006] = 3201, + [5007] = 5007, [5008] = 5008, - [5009] = 5009, - [5010] = 5010, + [5009] = 4817, + [5010] = 4727, [5011] = 5011, [5012] = 5012, [5013] = 5013, - [5014] = 2734, - [5015] = 4892, - [5016] = 4893, + [5014] = 5014, + [5015] = 5015, + [5016] = 5016, [5017] = 5017, [5018] = 5018, [5019] = 5019, [5020] = 5020, - [5021] = 4969, + [5021] = 4945, [5022] = 5022, - [5023] = 341, + [5023] = 291, [5024] = 5024, - [5025] = 5025, - [5026] = 4894, + [5025] = 1376, + [5026] = 5026, [5027] = 5027, - [5028] = 4986, + [5028] = 5028, [5029] = 5029, - [5030] = 4896, - [5031] = 5031, + [5030] = 4747, + [5031] = 4748, [5032] = 5032, [5033] = 5033, - [5034] = 5034, - [5035] = 5035, - [5036] = 221, - [5037] = 307, - [5038] = 312, - [5039] = 303, + [5034] = 266, + [5035] = 264, + [5036] = 4745, + [5037] = 4773, + [5038] = 5007, + [5039] = 5039, [5040] = 5040, [5041] = 5041, - [5042] = 218, + [5042] = 5042, [5043] = 5043, - [5044] = 4782, + [5044] = 5044, [5045] = 5045, - [5046] = 5046, + [5046] = 2561, [5047] = 5047, [5048] = 5048, - [5049] = 1365, + [5049] = 5049, [5050] = 5050, - [5051] = 5048, - [5052] = 5052, - [5053] = 5053, - [5054] = 343, - [5055] = 5055, + [5051] = 4739, + [5052] = 4786, + [5053] = 4792, + [5054] = 5054, + [5055] = 298, [5056] = 5056, - [5057] = 4902, + [5057] = 5057, [5058] = 5058, [5059] = 5059, - [5060] = 345, - [5061] = 142, - [5062] = 143, - [5063] = 304, + [5060] = 5060, + [5061] = 655, + [5062] = 657, + [5063] = 2559, [5064] = 5064, - [5065] = 5065, - [5066] = 346, - [5067] = 219, - [5068] = 5068, - [5069] = 5069, + [5065] = 5000, + [5066] = 5066, + [5067] = 5067, + [5068] = 661, + [5069] = 666, [5070] = 5070, - [5071] = 1770, - [5072] = 1787, + [5071] = 5071, + [5072] = 5072, [5073] = 5073, [5074] = 5074, [5075] = 5075, - [5076] = 610, - [5077] = 611, - [5078] = 1369, + [5076] = 601, + [5077] = 603, + [5078] = 5078, [5079] = 5079, - [5080] = 5080, - [5081] = 612, - [5082] = 613, - [5083] = 2465, - [5084] = 4793, - [5085] = 5085, - [5086] = 5086, - [5087] = 4714, - [5088] = 4627, - [5089] = 4628, - [5090] = 4629, - [5091] = 4699, - [5092] = 4702, - [5093] = 4703, - [5094] = 4704, - [5095] = 4576, - [5096] = 4579, - [5097] = 4584, - [5098] = 618, - [5099] = 619, - [5100] = 4695, + [5080] = 295, + [5081] = 296, + [5082] = 297, + [5083] = 298, + [5084] = 288, + [5085] = 5024, + [5086] = 5007, + [5087] = 2685, + [5088] = 295, + [5089] = 4763, + [5090] = 4771, + [5091] = 5054, + [5092] = 296, + [5093] = 5022, + [5094] = 4903, + [5095] = 5095, + [5096] = 143, + [5097] = 142, + [5098] = 4911, + [5099] = 5099, + [5100] = 5100, [5101] = 5101, - [5102] = 2327, + [5102] = 264, [5103] = 5103, - [5104] = 4873, + [5104] = 5104, [5105] = 5105, - [5106] = 5106, - [5107] = 4783, - [5108] = 620, - [5109] = 4986, - [5110] = 220, - [5111] = 5111, - [5112] = 5112, - [5113] = 5113, - [5114] = 4672, - [5115] = 4981, - [5116] = 221, - [5117] = 4911, - [5118] = 4912, - [5119] = 5058, - [5120] = 218, - [5121] = 4742, + [5106] = 266, + [5107] = 4710, + [5108] = 4575, + [5109] = 4576, + [5110] = 4598, + [5111] = 4612, + [5112] = 4614, + [5113] = 4615, + [5114] = 4616, + [5115] = 4695, + [5116] = 4652, + [5117] = 4653, + [5118] = 4621, + [5119] = 5119, + [5120] = 5120, + [5121] = 5121, [5122] = 5122, - [5123] = 5123, - [5124] = 5124, - [5125] = 5125, + [5123] = 2541, + [5124] = 264, + [5125] = 4954, [5126] = 5126, [5127] = 5127, - [5128] = 621, - [5129] = 5129, - [5130] = 4906, + [5128] = 266, + [5129] = 4797, + [5130] = 5130, [5131] = 5131, - [5132] = 622, - [5133] = 3181, - [5134] = 623, + [5132] = 297, + [5133] = 5133, + [5134] = 5134, [5135] = 5135, [5136] = 5136, - [5137] = 4907, - [5138] = 624, - [5139] = 4901, - [5140] = 5103, + [5137] = 3201, + [5138] = 316, + [5139] = 305, + [5140] = 319, [5141] = 5141, - [5142] = 324, - [5143] = 330, - [5144] = 5144, - [5145] = 2523, - [5146] = 5025, - [5147] = 5141, - [5148] = 5148, - [5149] = 5149, - [5150] = 5144, - [5151] = 320, - [5152] = 5152, + [5142] = 5142, + [5143] = 1367, + [5144] = 5130, + [5145] = 5131, + [5146] = 5146, + [5147] = 5147, + [5148] = 316, + [5149] = 319, + [5150] = 5150, + [5151] = 5150, + [5152] = 141, [5153] = 5153, - [5154] = 330, - [5155] = 1402, - [5156] = 5156, - [5157] = 2465, - [5158] = 320, - [5159] = 319, - [5160] = 5144, - [5161] = 221, - [5162] = 5053, - [5163] = 4742, - [5164] = 320, - [5165] = 141, - [5166] = 5144, - [5167] = 319, - [5168] = 5168, - [5169] = 141, - [5170] = 319, - [5171] = 220, - [5172] = 5024, - [5173] = 324, - [5174] = 5152, - [5175] = 330, - [5176] = 324, - [5177] = 5177, - [5178] = 220, - [5179] = 5179, - [5180] = 5180, - [5181] = 5181, - [5182] = 221, - [5183] = 5183, - [5184] = 3181, - [5185] = 5112, - [5186] = 1393, - [5187] = 5152, - [5188] = 216, - [5189] = 148, - [5190] = 312, - [5191] = 341, - [5192] = 5192, + [5154] = 141, + [5155] = 316, + [5156] = 319, + [5157] = 5157, + [5158] = 2559, + [5159] = 5159, + [5160] = 5150, + [5161] = 5161, + [5162] = 5162, + [5163] = 5163, + [5164] = 5164, + [5165] = 303, + [5166] = 4969, + [5167] = 5167, + [5168] = 305, + [5169] = 264, + [5170] = 266, + [5171] = 5164, + [5172] = 264, + [5173] = 5167, + [5174] = 303, + [5175] = 266, + [5176] = 5150, + [5177] = 303, + [5178] = 279, + [5179] = 2561, + [5180] = 5167, + [5181] = 1368, + [5182] = 305, + [5183] = 4797, + [5184] = 5101, + [5185] = 5185, + [5186] = 5186, + [5187] = 666, + [5188] = 144, + [5189] = 5159, + [5190] = 5190, + [5191] = 5191, + [5192] = 332, [5193] = 5193, - [5194] = 427, - [5195] = 146, - [5196] = 319, - [5197] = 198, - [5198] = 5198, + [5194] = 143, + [5195] = 142, + [5196] = 5196, + [5197] = 5197, + [5198] = 5185, [5199] = 5199, - [5200] = 320, + [5200] = 1764, [5201] = 5201, - [5202] = 5202, + [5202] = 423, [5203] = 5203, - [5204] = 5204, - [5205] = 5192, - [5206] = 5153, - [5207] = 5193, - [5208] = 5201, - [5209] = 141, - [5210] = 5199, - [5211] = 5193, - [5212] = 5212, - [5213] = 5212, - [5214] = 5214, - [5215] = 5214, - [5216] = 341, - [5217] = 220, - [5218] = 311, - [5219] = 221, - [5220] = 343, - [5221] = 429, - [5222] = 343, - [5223] = 5223, - [5224] = 147, - [5225] = 5225, - [5226] = 5203, - [5227] = 345, - [5228] = 417, - [5229] = 142, - [5230] = 304, - [5231] = 430, - [5232] = 346, - [5233] = 2491, - [5234] = 413, - [5235] = 149, - [5236] = 1789, - [5237] = 1365, - [5238] = 1790, - [5239] = 1736, - [5240] = 220, - [5241] = 1737, - [5242] = 1758, - [5243] = 1764, - [5244] = 221, - [5245] = 418, - [5246] = 412, - [5247] = 1765, - [5248] = 142, - [5249] = 143, - [5250] = 431, - [5251] = 350, - [5252] = 5204, - [5253] = 5192, - [5254] = 5254, - [5255] = 5193, - [5256] = 5201, - [5257] = 341, - [5258] = 5258, - [5259] = 434, - [5260] = 5212, - [5261] = 5214, - [5262] = 419, - [5263] = 411, - [5264] = 610, - [5265] = 611, - [5266] = 343, - [5267] = 327, - [5268] = 612, - [5269] = 613, - [5270] = 1711, - [5271] = 1715, - [5272] = 618, - [5273] = 619, - [5274] = 345, - [5275] = 143, - [5276] = 5276, - [5277] = 5277, - [5278] = 435, - [5279] = 5279, - [5280] = 5280, - [5281] = 424, - [5282] = 345, - [5283] = 414, - [5284] = 415, - [5285] = 5285, - [5286] = 5193, - [5287] = 5201, - [5288] = 5212, - [5289] = 5214, - [5290] = 346, - [5291] = 420, - [5292] = 5193, - [5293] = 5201, - [5294] = 5193, - [5295] = 5201, - [5296] = 5193, - [5297] = 5201, - [5298] = 5193, - [5299] = 5201, - [5300] = 5193, - [5301] = 5201, - [5302] = 5193, - [5303] = 5201, - [5304] = 324, - [5305] = 5193, - [5306] = 5201, - [5307] = 5201, - [5308] = 408, - [5309] = 5177, - [5310] = 3261, - [5311] = 392, - [5312] = 330, - [5313] = 319, - [5314] = 425, - [5315] = 416, - [5316] = 1365, - [5317] = 303, - [5318] = 346, - [5319] = 426, - [5320] = 320, - [5321] = 407, - [5322] = 5202, - [5323] = 307, - [5324] = 5204, - [5325] = 5280, - [5326] = 149, - [5327] = 319, - [5328] = 5328, - [5329] = 5329, + [5204] = 5193, + [5205] = 5205, + [5206] = 427, + [5207] = 415, + [5208] = 391, + [5209] = 397, + [5210] = 399, + [5211] = 403, + [5212] = 405, + [5213] = 436, + [5214] = 390, + [5215] = 401, + [5216] = 404, + [5217] = 406, + [5218] = 407, + [5219] = 408, + [5220] = 410, + [5221] = 413, + [5222] = 414, + [5223] = 5196, + [5224] = 5224, + [5225] = 5186, + [5226] = 143, + [5227] = 5197, + [5228] = 142, + [5229] = 601, + [5230] = 1772, + [5231] = 1773, + [5232] = 603, + [5233] = 5233, + [5234] = 5190, + [5235] = 5235, + [5236] = 1795, + [5237] = 5196, + [5238] = 5197, + [5239] = 5239, + [5240] = 330, + [5241] = 296, + [5242] = 297, + [5243] = 298, + [5244] = 5185, + [5245] = 5185, + [5246] = 5199, + [5247] = 5203, + [5248] = 5193, + [5249] = 5201, + [5250] = 264, + [5251] = 5185, + [5252] = 5199, + [5253] = 350, + [5254] = 331, + [5255] = 5185, + [5256] = 5199, + [5257] = 327, + [5258] = 5185, + [5259] = 5199, + [5260] = 266, + [5261] = 5199, + [5262] = 5157, + [5263] = 429, + [5264] = 329, + [5265] = 5185, + [5266] = 5199, + [5267] = 5199, + [5268] = 5268, + [5269] = 330, + [5270] = 5185, + [5271] = 5199, + [5272] = 5185, + [5273] = 5199, + [5274] = 303, + [5275] = 5199, + [5276] = 199, + [5277] = 305, + [5278] = 312, + [5279] = 303, + [5280] = 5185, + [5281] = 1788, + [5282] = 1376, + [5283] = 3253, + [5284] = 1796, + [5285] = 1789, + [5286] = 266, + [5287] = 305, + [5288] = 316, + [5289] = 5203, + [5290] = 350, + [5291] = 146, + [5292] = 141, + [5293] = 409, + [5294] = 5199, + [5295] = 434, + [5296] = 327, + [5297] = 655, + [5298] = 147, + [5299] = 350, + [5300] = 657, + [5301] = 329, + [5302] = 1376, + [5303] = 295, + [5304] = 327, + [5305] = 5305, + [5306] = 5306, + [5307] = 329, + [5308] = 148, + [5309] = 661, + [5310] = 330, + [5311] = 5203, + [5312] = 5193, + [5313] = 5313, + [5314] = 2560, + [5315] = 264, + [5316] = 319, + [5317] = 1770, + [5318] = 1771, + [5319] = 418, + [5320] = 5185, + [5321] = 5321, + [5322] = 5322, + [5323] = 5321, + [5324] = 305, + [5325] = 5322, + [5326] = 5326, + [5327] = 350, + [5328] = 5322, + [5329] = 5321, [5330] = 5330, - [5331] = 148, - [5332] = 320, - [5333] = 5333, - [5334] = 3437, - [5335] = 327, - [5336] = 5336, - [5337] = 5336, - [5338] = 5279, - [5339] = 5339, - [5340] = 345, - [5341] = 5333, - [5342] = 5328, - [5343] = 5329, - [5344] = 5339, - [5345] = 3261, - [5346] = 5330, - [5347] = 319, - [5348] = 201, - [5349] = 5336, - [5350] = 350, - [5351] = 320, - [5352] = 145, - [5353] = 144, - [5354] = 5333, - [5355] = 360, - [5356] = 5356, - [5357] = 5276, - [5358] = 5277, - [5359] = 327, - [5360] = 5328, - [5361] = 5329, - [5362] = 346, - [5363] = 5363, - [5364] = 5339, - [5365] = 343, - [5366] = 5339, - [5367] = 5333, - [5368] = 5330, - [5369] = 5336, - [5370] = 5370, - [5371] = 5328, - [5372] = 5328, - [5373] = 5329, - [5374] = 346, - [5375] = 341, - [5376] = 5330, - [5377] = 5285, - [5378] = 5330, - [5379] = 5328, - [5380] = 146, - [5381] = 5330, - [5382] = 5328, - [5383] = 221, - [5384] = 5330, - [5385] = 5328, - [5386] = 5330, - [5387] = 5328, - [5388] = 5388, - [5389] = 5330, - [5390] = 5328, - [5391] = 5330, - [5392] = 5328, - [5393] = 5258, - [5394] = 5330, - [5395] = 5328, - [5396] = 5330, - [5397] = 5328, - [5398] = 5330, - [5399] = 5330, - [5400] = 5330, - [5401] = 5330, - [5402] = 5330, - [5403] = 220, - [5404] = 1547, - [5405] = 341, - [5406] = 142, + [5331] = 145, + [5332] = 5322, + [5333] = 5321, + [5334] = 5322, + [5335] = 5321, + [5336] = 5321, + [5337] = 327, + [5338] = 5322, + [5339] = 5322, + [5340] = 5322, + [5341] = 5322, + [5342] = 5322, + [5343] = 5321, + [5344] = 329, + [5345] = 1604, + [5346] = 330, + [5347] = 5347, + [5348] = 3253, + [5349] = 350, + [5350] = 5191, + [5351] = 5233, + [5352] = 5352, + [5353] = 5353, + [5354] = 332, + [5355] = 149, + [5356] = 327, + [5357] = 361, + [5358] = 5321, + [5359] = 331, + [5360] = 145, + [5361] = 149, + [5362] = 5322, + [5363] = 5321, + [5364] = 329, + [5365] = 5205, + [5366] = 5366, + [5367] = 5239, + [5368] = 5313, + [5369] = 5224, + [5370] = 5330, + [5371] = 5352, + [5372] = 5347, + [5373] = 5373, + [5374] = 266, + [5375] = 5347, + [5376] = 330, + [5377] = 5377, + [5378] = 1639, + [5379] = 201, + [5380] = 143, + [5381] = 360, + [5382] = 303, + [5383] = 5322, + [5384] = 5321, + [5385] = 5321, + [5386] = 5326, + [5387] = 147, + [5388] = 5347, + [5389] = 5321, + [5390] = 5321, + [5391] = 5373, + [5392] = 5366, + [5393] = 5322, + [5394] = 5321, + [5395] = 3515, + [5396] = 5352, + [5397] = 331, + [5398] = 264, + [5399] = 148, + [5400] = 5322, + [5401] = 5366, + [5402] = 5321, + [5403] = 142, + [5404] = 5373, + [5405] = 5330, + [5406] = 5326, [5407] = 5330, - [5408] = 5388, - [5409] = 5356, - [5410] = 1562, - [5411] = 5328, - [5412] = 350, - [5413] = 5328, - [5414] = 5388, - [5415] = 143, - [5416] = 5356, - [5417] = 343, - [5418] = 147, - [5419] = 356, - [5420] = 145, - [5421] = 144, - [5422] = 345, - [5423] = 5328, - [5424] = 5328, + [5408] = 5321, + [5409] = 144, + [5410] = 303, + [5411] = 5322, + [5412] = 5322, + [5413] = 5321, + [5414] = 5326, + [5415] = 332, + [5416] = 305, + [5417] = 5322, + [5418] = 5373, + [5419] = 146, + [5420] = 5322, + [5421] = 5421, + [5422] = 5422, + [5423] = 5423, + [5424] = 5424, [5425] = 5425, [5426] = 5426, [5427] = 5427, @@ -10576,2440 +10580,2428 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5434] = 5434, [5435] = 5435, [5436] = 5436, - [5437] = 5437, - [5438] = 5438, - [5439] = 5425, - [5440] = 5440, - [5441] = 5441, - [5442] = 5442, + [5437] = 5422, + [5438] = 5423, + [5439] = 5424, + [5440] = 5425, + [5441] = 5430, + [5442] = 5436, [5443] = 5443, - [5444] = 5444, + [5444] = 5421, [5445] = 5445, [5446] = 5446, - [5447] = 356, - [5448] = 5436, - [5449] = 341, - [5450] = 3261, - [5451] = 5451, - [5452] = 5452, - [5453] = 1629, - [5454] = 408, - [5455] = 5451, - [5456] = 5428, - [5457] = 407, - [5458] = 476, - [5459] = 5437, - [5460] = 350, - [5461] = 5427, - [5462] = 5451, - [5463] = 1365, - [5464] = 151, - [5465] = 500, - [5466] = 501, - [5467] = 662, - [5468] = 5468, - [5469] = 412, - [5470] = 413, - [5471] = 392, - [5472] = 5451, - [5473] = 345, - [5474] = 356, - [5475] = 346, - [5476] = 341, - [5477] = 5477, - [5478] = 414, - [5479] = 5451, - [5480] = 416, - [5481] = 5452, - [5482] = 5482, - [5483] = 417, - [5484] = 5451, - [5485] = 418, - [5486] = 419, - [5487] = 5446, - [5488] = 424, - [5489] = 5451, - [5490] = 425, - [5491] = 426, - [5492] = 5477, - [5493] = 5426, - [5494] = 427, - [5495] = 319, - [5496] = 5451, - [5497] = 429, - [5498] = 5427, - [5499] = 1547, - [5500] = 430, - [5501] = 5451, - [5502] = 5429, - [5503] = 431, - [5504] = 5428, - [5505] = 5429, - [5506] = 434, - [5507] = 5451, - [5508] = 411, - [5509] = 5430, - [5510] = 5431, - [5511] = 415, - [5512] = 528, - [5513] = 5451, - [5514] = 435, - [5515] = 473, - [5516] = 5432, - [5517] = 5477, - [5518] = 5451, - [5519] = 343, - [5520] = 5363, - [5521] = 152, - [5522] = 5451, - [5523] = 3261, - [5524] = 141, - [5525] = 5451, - [5526] = 345, - [5527] = 5451, - [5528] = 497, - [5529] = 5451, - [5530] = 1562, - [5531] = 5451, - [5532] = 5430, - [5533] = 5451, - [5534] = 5451, - [5535] = 5431, - [5536] = 5451, - [5537] = 5451, - [5538] = 5451, - [5539] = 5451, - [5540] = 5451, - [5541] = 5451, - [5542] = 5451, - [5543] = 5451, - [5544] = 5451, - [5545] = 5438, - [5546] = 5433, - [5547] = 5432, - [5548] = 5434, - [5549] = 5425, - [5550] = 5440, - [5551] = 5441, - [5552] = 5451, - [5553] = 371, - [5554] = 5435, - [5555] = 5436, - [5556] = 346, - [5557] = 151, - [5558] = 5442, - [5559] = 5437, - [5560] = 5443, - [5561] = 150, - [5562] = 503, - [5563] = 382, - [5564] = 5438, - [5565] = 5433, - [5566] = 5444, - [5567] = 5482, - [5568] = 320, - [5569] = 360, - [5570] = 5451, - [5571] = 1642, - [5572] = 5445, - [5573] = 150, - [5574] = 145, - [5575] = 144, - [5576] = 370, - [5577] = 5434, - [5578] = 5435, - [5579] = 343, - [5580] = 1651, - [5581] = 5440, - [5582] = 327, - [5583] = 420, - [5584] = 5441, - [5585] = 152, - [5586] = 373, - [5587] = 5442, - [5588] = 5443, - [5589] = 5444, - [5590] = 5452, - [5591] = 5482, - [5592] = 5426, - [5593] = 5445, - [5594] = 5451, - [5595] = 5595, - [5596] = 5446, - [5597] = 5451, - [5598] = 360, - [5599] = 143, - [5600] = 5600, - [5601] = 419, - [5602] = 424, - [5603] = 425, - [5604] = 426, - [5605] = 427, - [5606] = 429, - [5607] = 369, - [5608] = 736, - [5609] = 1365, - [5610] = 476, - [5611] = 146, - [5612] = 147, - [5613] = 369, - [5614] = 497, - [5615] = 371, - [5616] = 370, - [5617] = 149, - [5618] = 430, - [5619] = 431, - [5620] = 434, - [5621] = 411, - [5622] = 371, - [5623] = 435, - [5624] = 2853, - [5625] = 2877, - [5626] = 5626, - [5627] = 5627, - [5628] = 2842, - [5629] = 141, - [5630] = 341, - [5631] = 373, - [5632] = 148, - [5633] = 392, - [5634] = 3154, - [5635] = 500, - [5636] = 610, - [5637] = 611, - [5638] = 350, - [5639] = 501, - [5640] = 5363, - [5641] = 5641, - [5642] = 2857, - [5643] = 382, - [5644] = 408, - [5645] = 550, - [5646] = 420, + [5447] = 5447, + [5448] = 5448, + [5449] = 5449, + [5450] = 5450, + [5451] = 330, + [5452] = 427, + [5453] = 415, + [5454] = 5443, + [5455] = 5421, + [5456] = 5445, + [5457] = 5446, + [5458] = 5458, + [5459] = 5447, + [5460] = 5448, + [5461] = 391, + [5462] = 5458, + [5463] = 397, + [5464] = 399, + [5465] = 403, + [5466] = 5449, + [5467] = 5450, + [5468] = 405, + [5469] = 436, + [5470] = 390, + [5471] = 303, + [5472] = 401, + [5473] = 404, + [5474] = 406, + [5475] = 407, + [5476] = 408, + [5477] = 410, + [5478] = 413, + [5479] = 152, + [5480] = 414, + [5481] = 1376, + [5482] = 332, + [5483] = 151, + [5484] = 150, + [5485] = 1639, + [5486] = 504, + [5487] = 505, + [5488] = 141, + [5489] = 5489, + [5490] = 5431, + [5491] = 5426, + [5492] = 5427, + [5493] = 5428, + [5494] = 5429, + [5495] = 5432, + [5496] = 5433, + [5497] = 5434, + [5498] = 5435, + [5499] = 5422, + [5500] = 5423, + [5501] = 5424, + [5502] = 5425, + [5503] = 5430, + [5504] = 5436, + [5505] = 5443, + [5506] = 5445, + [5507] = 5446, + [5508] = 5447, + [5509] = 5448, + [5510] = 5449, + [5511] = 5450, + [5512] = 5458, + [5513] = 5458, + [5514] = 5377, + [5515] = 5458, + [5516] = 3253, + [5517] = 5517, + [5518] = 5458, + [5519] = 350, + [5520] = 619, + [5521] = 5431, + [5522] = 5458, + [5523] = 152, + [5524] = 329, + [5525] = 330, + [5526] = 5458, + [5527] = 5458, + [5528] = 5458, + [5529] = 5426, + [5530] = 151, + [5531] = 5458, + [5532] = 5427, + [5533] = 5428, + [5534] = 5429, + [5535] = 429, + [5536] = 5458, + [5537] = 150, + [5538] = 385, + [5539] = 5458, + [5540] = 507, + [5541] = 5458, + [5542] = 5458, + [5543] = 434, + [5544] = 5458, + [5545] = 305, + [5546] = 5458, + [5547] = 1604, + [5548] = 5458, + [5549] = 409, + [5550] = 5458, + [5551] = 5458, + [5552] = 5458, + [5553] = 5458, + [5554] = 5458, + [5555] = 5458, + [5556] = 5458, + [5557] = 5458, + [5558] = 5458, + [5559] = 5458, + [5560] = 5458, + [5561] = 5458, + [5562] = 5458, + [5563] = 360, + [5564] = 371, + [5565] = 464, + [5566] = 350, + [5567] = 418, + [5568] = 5432, + [5569] = 5433, + [5570] = 361, + [5571] = 5434, + [5572] = 3253, + [5573] = 5435, + [5574] = 373, + [5575] = 1724, + [5576] = 360, + [5577] = 327, + [5578] = 1719, + [5579] = 145, + [5580] = 149, + [5581] = 361, + [5582] = 501, + [5583] = 331, + [5584] = 1659, + [5585] = 5489, + [5586] = 329, + [5587] = 423, + [5588] = 5458, + [5589] = 5589, + [5590] = 499, + [5591] = 473, + [5592] = 374, + [5593] = 5489, + [5594] = 327, + [5595] = 5377, + [5596] = 147, + [5597] = 382, + [5598] = 148, + [5599] = 410, + [5600] = 144, + [5601] = 429, + [5602] = 5602, + [5603] = 399, + [5604] = 501, + [5605] = 413, + [5606] = 433, + [5607] = 414, + [5608] = 405, + [5609] = 436, + [5610] = 655, + [5611] = 3472, + [5612] = 473, + [5613] = 141, + [5614] = 1719, + [5615] = 382, + [5616] = 2889, + [5617] = 401, + [5618] = 434, + [5619] = 329, + [5620] = 409, + [5621] = 404, + [5622] = 5602, + [5623] = 332, + [5624] = 406, + [5625] = 199, + [5626] = 686, + [5627] = 1160, + [5628] = 2975, + [5629] = 2888, + [5630] = 507, + [5631] = 2845, + [5632] = 657, + [5633] = 5633, + [5634] = 385, + [5635] = 418, + [5636] = 331, + [5637] = 371, + [5638] = 403, + [5639] = 432, + [5640] = 5640, + [5641] = 1376, + [5642] = 330, + [5643] = 504, + [5644] = 327, + [5645] = 5645, + [5646] = 464, [5647] = 415, - [5648] = 343, - [5649] = 392, - [5650] = 327, - [5651] = 370, - [5652] = 613, - [5653] = 5641, - [5654] = 412, - [5655] = 413, - [5656] = 373, - [5657] = 152, - [5658] = 1651, - [5659] = 388, - [5660] = 5660, - [5661] = 5661, - [5662] = 1642, - [5663] = 503, - [5664] = 402, - [5665] = 142, + [5648] = 374, + [5649] = 423, + [5650] = 143, + [5651] = 142, + [5652] = 152, + [5653] = 5653, + [5654] = 505, + [5655] = 1724, + [5656] = 5633, + [5657] = 661, + [5658] = 390, + [5659] = 5659, + [5660] = 2874, + [5661] = 1659, + [5662] = 385, + [5663] = 5663, + [5664] = 407, + [5665] = 434, [5666] = 5666, - [5667] = 3320, - [5668] = 5600, - [5669] = 345, - [5670] = 372, - [5671] = 382, - [5672] = 473, - [5673] = 414, - [5674] = 5674, + [5667] = 371, + [5668] = 360, + [5669] = 391, + [5670] = 666, + [5671] = 397, + [5672] = 408, + [5673] = 5673, + [5674] = 373, [5675] = 5675, - [5676] = 416, - [5677] = 528, - [5678] = 417, - [5679] = 418, - [5680] = 393, - [5681] = 5681, - [5682] = 360, - [5683] = 1629, - [5684] = 356, - [5685] = 408, - [5686] = 151, - [5687] = 150, - [5688] = 407, - [5689] = 198, - [5690] = 153, - [5691] = 1137, - [5692] = 618, - [5693] = 346, - [5694] = 619, - [5695] = 372, - [5696] = 5696, - [5697] = 612, + [5676] = 381, + [5677] = 374, + [5678] = 580, + [5679] = 499, + [5680] = 5680, + [5681] = 153, + [5682] = 350, + [5683] = 361, + [5684] = 429, + [5685] = 427, + [5686] = 601, + [5687] = 151, + [5688] = 150, + [5689] = 146, + [5690] = 603, + [5691] = 381, + [5692] = 431, + [5693] = 373, + [5694] = 331, + [5695] = 645, + [5696] = 648, + [5697] = 5697, [5698] = 5698, - [5699] = 445, - [5700] = 356, - [5701] = 153, - [5702] = 5698, + [5699] = 5699, + [5700] = 654, + [5701] = 332, + [5702] = 656, [5703] = 5703, [5704] = 5704, [5705] = 5705, [5706] = 5706, - [5707] = 5707, - [5708] = 472, - [5709] = 1547, - [5710] = 5707, - [5711] = 477, - [5712] = 5712, - [5713] = 1562, - [5714] = 5698, - [5715] = 5703, - [5716] = 5704, - [5717] = 5705, - [5718] = 503, - [5719] = 5706, - [5720] = 478, - [5721] = 5721, - [5722] = 5706, - [5723] = 5723, - [5724] = 5707, - [5725] = 327, - [5726] = 2857, - [5727] = 5727, - [5728] = 5698, - [5729] = 5703, - [5730] = 5704, - [5731] = 2912, - [5732] = 5705, - [5733] = 5707, - [5734] = 5706, - [5735] = 5735, - [5736] = 479, - [5737] = 5737, - [5738] = 5707, - [5739] = 5739, - [5740] = 5740, - [5741] = 4103, - [5742] = 5698, - [5743] = 5705, - [5744] = 5706, - [5745] = 5698, - [5746] = 5703, - [5747] = 5707, - [5748] = 5748, - [5749] = 497, - [5750] = 528, - [5751] = 5698, - [5752] = 5705, - [5753] = 5706, - [5754] = 143, - [5755] = 5707, - [5756] = 350, - [5757] = 5704, - [5758] = 201, - [5759] = 5698, - [5760] = 5705, - [5761] = 5706, - [5762] = 5762, - [5763] = 5707, - [5764] = 656, - [5765] = 5698, + [5707] = 2609, + [5708] = 143, + [5709] = 5709, + [5710] = 5709, + [5711] = 5704, + [5712] = 5705, + [5713] = 5706, + [5714] = 332, + [5715] = 5715, + [5716] = 5716, + [5717] = 5709, + [5718] = 5715, + [5719] = 5719, + [5720] = 5720, + [5721] = 597, + [5722] = 598, + [5723] = 600, + [5724] = 5704, + [5725] = 5705, + [5726] = 5706, + [5727] = 479, + [5728] = 5716, + [5729] = 4135, + [5730] = 3472, + [5731] = 142, + [5732] = 5732, + [5733] = 5709, + [5734] = 5715, + [5735] = 613, + [5736] = 5704, + [5737] = 5705, + [5738] = 5738, + [5739] = 5716, + [5740] = 5715, + [5741] = 5716, + [5742] = 5742, + [5743] = 5720, + [5744] = 5709, + [5745] = 1788, + [5746] = 5704, + [5747] = 5705, + [5748] = 5715, + [5749] = 5716, + [5750] = 2616, + [5751] = 5720, + [5752] = 5720, + [5753] = 5753, + [5754] = 5754, + [5755] = 5709, + [5756] = 5704, + [5757] = 5705, + [5758] = 5715, + [5759] = 491, + [5760] = 5716, + [5761] = 5715, + [5762] = 5720, + [5763] = 331, + [5764] = 5709, + [5765] = 5704, [5766] = 5705, - [5767] = 5706, - [5768] = 433, - [5769] = 5707, - [5770] = 327, - [5771] = 5698, - [5772] = 5705, - [5773] = 5706, - [5774] = 637, - [5775] = 5707, - [5776] = 5776, - [5777] = 5706, - [5778] = 1562, - [5779] = 5707, - [5780] = 5698, - [5781] = 663, - [5782] = 2631, - [5783] = 5703, - [5784] = 5704, - [5785] = 391, - [5786] = 5776, - [5787] = 2934, - [5788] = 1765, - [5789] = 5789, - [5790] = 5790, - [5791] = 2634, - [5792] = 444, - [5793] = 5706, - [5794] = 5698, - [5795] = 5703, - [5796] = 644, - [5797] = 665, - [5798] = 645, - [5799] = 5799, - [5800] = 671, - [5801] = 5801, - [5802] = 5704, - [5803] = 5789, - [5804] = 5801, - [5805] = 5805, - [5806] = 2627, - [5807] = 5805, - [5808] = 5705, - [5809] = 5706, - [5810] = 5703, - [5811] = 5703, - [5812] = 5704, - [5813] = 5776, - [5814] = 327, - [5815] = 5704, - [5816] = 350, - [5817] = 5705, - [5818] = 473, - [5819] = 5819, - [5820] = 647, - [5821] = 648, - [5822] = 5707, - [5823] = 5707, - [5824] = 5705, - [5825] = 5776, - [5826] = 360, - [5827] = 5698, - [5828] = 3320, - [5829] = 632, - [5830] = 657, - [5831] = 481, - [5832] = 481, - [5833] = 477, - [5834] = 478, - [5835] = 479, - [5836] = 5703, - [5837] = 1142, - [5838] = 5704, - [5839] = 2877, - [5840] = 651, - [5841] = 589, - [5842] = 5705, - [5843] = 5706, - [5844] = 5706, - [5845] = 4160, - [5846] = 590, - [5847] = 1711, - [5848] = 591, - [5849] = 2632, - [5850] = 592, - [5851] = 5851, - [5852] = 5852, - [5853] = 5706, - [5854] = 5707, - [5855] = 593, - [5856] = 594, - [5857] = 595, - [5858] = 596, - [5859] = 2633, - [5860] = 5707, - [5861] = 1547, - [5862] = 4700, - [5863] = 5698, - [5864] = 5703, - [5865] = 5704, - [5866] = 500, - [5867] = 501, - [5868] = 597, - [5869] = 598, - [5870] = 5870, - [5871] = 5705, - [5872] = 5706, - [5873] = 5873, - [5874] = 601, - [5875] = 602, - [5876] = 603, - [5877] = 1736, - [5878] = 1737, - [5879] = 604, - [5880] = 4701, - [5881] = 5705, - [5882] = 605, - [5883] = 606, - [5884] = 607, - [5885] = 370, - [5886] = 608, - [5887] = 609, - [5888] = 5888, - [5889] = 5707, - [5890] = 371, - [5891] = 5891, - [5892] = 373, - [5893] = 382, + [5767] = 5715, + [5768] = 5716, + [5769] = 1639, + [5770] = 5720, + [5771] = 5720, + [5772] = 507, + [5773] = 5716, + [5774] = 5709, + [5775] = 5704, + [5776] = 5705, + [5777] = 5715, + [5778] = 5716, + [5779] = 2636, + [5780] = 673, + [5781] = 5720, + [5782] = 2639, + [5783] = 1639, + [5784] = 5709, + [5785] = 5704, + [5786] = 5705, + [5787] = 5715, + [5788] = 5716, + [5789] = 660, + [5790] = 464, + [5791] = 5791, + [5792] = 5720, + [5793] = 1789, + [5794] = 5709, + [5795] = 5704, + [5796] = 5705, + [5797] = 5715, + [5798] = 5716, + [5799] = 5720, + [5800] = 622, + [5801] = 5709, + [5802] = 5715, + [5803] = 5716, + [5804] = 501, + [5805] = 499, + [5806] = 5720, + [5807] = 5807, + [5808] = 588, + [5809] = 5709, + [5810] = 5715, + [5811] = 5716, + [5812] = 5720, + [5813] = 425, + [5814] = 5814, + [5815] = 5709, + [5816] = 5715, + [5817] = 5716, + [5818] = 627, + [5819] = 668, + [5820] = 5709, + [5821] = 483, + [5822] = 5715, + [5823] = 5716, + [5824] = 332, + [5825] = 5720, + [5826] = 449, + [5827] = 5709, + [5828] = 5715, + [5829] = 5716, + [5830] = 5830, + [5831] = 5720, + [5832] = 3152, + [5833] = 5716, + [5834] = 5720, + [5835] = 4161, + [5836] = 5836, + [5837] = 2646, + [5838] = 670, + [5839] = 452, + [5840] = 1604, + [5841] = 5841, + [5842] = 5703, + [5843] = 1604, + [5844] = 5844, + [5845] = 360, + [5846] = 5846, + [5847] = 5847, + [5848] = 5848, + [5849] = 5697, + [5850] = 153, + [5851] = 2888, + [5852] = 2633, + [5853] = 1764, + [5854] = 490, + [5855] = 5720, + [5856] = 2635, + [5857] = 637, + [5858] = 504, + [5859] = 505, + [5860] = 5860, + [5861] = 201, + [5862] = 615, + [5863] = 621, + [5864] = 632, + [5865] = 5865, + [5866] = 2874, + [5867] = 490, + [5868] = 5704, + [5869] = 5705, + [5870] = 483, + [5871] = 449, + [5872] = 452, + [5873] = 591, + [5874] = 1187, + [5875] = 331, + [5876] = 5876, + [5877] = 5877, + [5878] = 1795, + [5879] = 5716, + [5880] = 5720, + [5881] = 2920, + [5882] = 1796, + [5883] = 5883, + [5884] = 5884, + [5885] = 422, + [5886] = 473, + [5887] = 638, + [5888] = 385, + [5889] = 646, + [5890] = 5706, + [5891] = 4592, + [5892] = 5847, + [5893] = 4595, [5894] = 5894, - [5895] = 1789, - [5896] = 5896, - [5897] = 5698, - [5898] = 5898, - [5899] = 5899, - [5900] = 476, - [5901] = 2622, - [5902] = 5698, - [5903] = 5707, - [5904] = 5904, - [5905] = 1790, - [5906] = 5703, - [5907] = 5704, - [5908] = 5705, - [5909] = 5762, - [5910] = 5706, - [5911] = 5762, - [5912] = 5705, - [5913] = 5762, - [5914] = 5706, - [5915] = 5915, - [5916] = 1715, - [5917] = 1758, - [5918] = 1764, - [5919] = 5919, - [5920] = 5920, - [5921] = 5921, - [5922] = 142, - [5923] = 350, - [5924] = 5707, - [5925] = 5870, - [5926] = 2636, - [5927] = 3250, - [5928] = 649, - [5929] = 5929, - [5930] = 5930, - [5931] = 5930, + [5895] = 5848, + [5896] = 590, + [5897] = 5897, + [5898] = 604, + [5899] = 371, + [5900] = 640, + [5901] = 480, + [5902] = 5902, + [5903] = 1770, + [5904] = 1771, + [5905] = 361, + [5906] = 652, + [5907] = 593, + [5908] = 373, + [5909] = 374, + [5910] = 599, + [5911] = 612, + [5912] = 624, + [5913] = 5703, + [5914] = 5709, + [5915] = 5703, + [5916] = 1772, + [5917] = 1773, + [5918] = 596, + [5919] = 626, + [5920] = 5753, + [5921] = 2937, + [5922] = 5720, + [5923] = 1689, + [5924] = 5924, + [5925] = 4759, + [5926] = 4803, + [5927] = 5927, + [5928] = 4728, + [5929] = 145, + [5930] = 5927, + [5931] = 149, [5932] = 5932, - [5933] = 5920, - [5934] = 4878, - [5935] = 4767, - [5936] = 5936, - [5937] = 5921, - [5938] = 360, - [5939] = 382, + [5933] = 4940, + [5934] = 5932, + [5935] = 5932, + [5936] = 4742, + [5937] = 429, + [5938] = 4804, + [5939] = 5699, [5940] = 5940, - [5941] = 5930, - [5942] = 2877, - [5943] = 5943, - [5944] = 5852, - [5945] = 5930, + [5941] = 5927, + [5942] = 5942, + [5943] = 5924, + [5944] = 4765, + [5945] = 4807, [5946] = 5946, - [5947] = 4784, - [5948] = 356, + [5947] = 361, + [5948] = 5948, [5949] = 5949, - [5950] = 5950, - [5951] = 5951, - [5952] = 2857, - [5953] = 4915, - [5954] = 5954, - [5955] = 5940, - [5956] = 1629, - [5957] = 5951, + [5950] = 4735, + [5951] = 4806, + [5952] = 146, + [5953] = 5932, + [5954] = 4910, + [5955] = 1724, + [5956] = 5956, + [5957] = 5927, [5958] = 5958, - [5959] = 5959, - [5960] = 5930, - [5961] = 360, - [5962] = 5962, - [5963] = 5963, - [5964] = 5964, - [5965] = 4919, + [5959] = 4942, + [5960] = 385, + [5961] = 4810, + [5962] = 4731, + [5963] = 5932, + [5964] = 5932, + [5965] = 5927, [5966] = 5966, - [5967] = 5936, - [5968] = 4921, - [5969] = 4922, - [5970] = 4797, - [5971] = 4924, + [5967] = 5967, + [5968] = 4592, + [5969] = 4595, + [5970] = 5932, + [5971] = 5971, [5972] = 5972, - [5973] = 147, - [5974] = 5974, - [5975] = 5959, - [5976] = 1642, - [5977] = 5977, - [5978] = 4760, - [5979] = 5940, - [5980] = 5980, - [5981] = 4881, - [5982] = 5929, - [5983] = 4925, - [5984] = 5984, - [5985] = 5930, - [5986] = 5984, - [5987] = 5930, - [5988] = 4926, - [5989] = 4948, - [5990] = 373, - [5991] = 4758, - [5992] = 5943, - [5993] = 4950, + [5973] = 5973, + [5974] = 4780, + [5975] = 1659, + [5976] = 1659, + [5977] = 332, + [5978] = 5978, + [5979] = 2874, + [5980] = 4857, + [5981] = 1724, + [5982] = 5973, + [5983] = 477, + [5984] = 332, + [5985] = 4922, + [5986] = 5986, + [5987] = 5956, + [5988] = 5988, + [5989] = 4933, + [5990] = 147, + [5991] = 5949, + [5992] = 4858, + [5993] = 5927, [5994] = 5994, - [5995] = 5995, - [5996] = 145, - [5997] = 5994, - [5998] = 5980, - [5999] = 5999, - [6000] = 6000, - [6001] = 1629, - [6002] = 6002, - [6003] = 4954, - [6004] = 4724, - [6005] = 6005, - [6006] = 5940, - [6007] = 1651, - [6008] = 4725, - [6009] = 4785, - [6010] = 350, - [6011] = 4700, - [6012] = 5737, - [6013] = 5930, - [6014] = 5739, - [6015] = 4701, - [6016] = 5949, - [6017] = 4890, - [6018] = 4899, - [6019] = 5950, - [6020] = 6020, - [6021] = 6021, - [6022] = 350, - [6023] = 5940, - [6024] = 4900, - [6025] = 4750, - [6026] = 4731, - [6027] = 408, - [6028] = 5940, - [6029] = 1651, - [6030] = 5930, - [6031] = 5964, - [6032] = 6000, - [6033] = 6002, - [6034] = 6034, - [6035] = 5951, - [6036] = 4786, - [6037] = 5723, - [6038] = 350, - [6039] = 4800, - [6040] = 5972, - [6041] = 144, - [6042] = 1821, - [6043] = 4732, - [6044] = 4751, - [6045] = 360, - [6046] = 5964, - [6047] = 6000, - [6048] = 149, - [6049] = 4734, - [6050] = 5929, - [6051] = 4735, - [6052] = 5984, - [6053] = 4736, - [6054] = 5963, - [6055] = 5940, - [6056] = 4737, - [6057] = 492, - [6058] = 4739, - [6059] = 4802, - [6060] = 6002, - [6061] = 5966, - [6062] = 5930, - [6063] = 4811, - [6064] = 5963, - [6065] = 5966, - [6066] = 146, - [6067] = 4822, - [6068] = 1642, - [6069] = 4762, - [6070] = 4824, - [6071] = 5940, - [6072] = 5819, + [5995] = 141, + [5996] = 148, + [5997] = 5986, + [5998] = 5844, + [5999] = 5846, + [6000] = 5967, + [6001] = 6001, + [6002] = 4860, + [6003] = 6003, + [6004] = 4820, + [6005] = 5932, + [6006] = 6006, + [6007] = 6007, + [6008] = 4932, + [6009] = 144, + [6010] = 6010, + [6011] = 374, + [6012] = 4726, + [6013] = 4744, + [6014] = 5791, + [6015] = 1719, + [6016] = 4758, + [6017] = 5927, + [6018] = 5924, + [6019] = 5994, + [6020] = 471, + [6021] = 4775, + [6022] = 4788, + [6023] = 4795, + [6024] = 5978, + [6025] = 6025, + [6026] = 360, + [6027] = 4935, + [6028] = 4794, + [6029] = 5927, + [6030] = 4798, + [6031] = 6031, + [6032] = 4957, + [6033] = 2888, + [6034] = 4730, + [6035] = 331, + [6036] = 5932, + [6037] = 4902, + [6038] = 361, + [6039] = 5973, + [6040] = 5994, + [6041] = 5986, + [6042] = 6042, + [6043] = 6043, + [6044] = 5932, + [6045] = 4812, + [6046] = 5942, + [6047] = 5902, + [6048] = 4837, + [6049] = 4923, + [6050] = 332, + [6051] = 5932, + [6052] = 6052, + [6053] = 4855, + [6054] = 4913, + [6055] = 6055, + [6056] = 5956, + [6057] = 6043, + [6058] = 5949, + [6059] = 6059, + [6060] = 6060, + [6061] = 4811, + [6062] = 5924, + [6063] = 4757, + [6064] = 4925, + [6065] = 6059, + [6066] = 4931, + [6067] = 6067, + [6068] = 5927, + [6069] = 4853, + [6070] = 5932, + [6071] = 5927, + [6072] = 5972, [6073] = 6073, - [6074] = 4836, - [6075] = 3437, - [6076] = 6076, - [6077] = 5940, - [6078] = 5980, - [6079] = 4905, - [6080] = 5930, - [6081] = 5964, - [6082] = 6000, - [6083] = 6002, - [6084] = 5951, - [6085] = 5949, - [6086] = 5974, - [6087] = 4827, - [6088] = 5929, - [6089] = 5977, - [6090] = 4843, - [6091] = 5929, - [6092] = 5984, - [6093] = 5930, - [6094] = 4834, - [6095] = 4908, - [6096] = 5974, - [6097] = 356, - [6098] = 5929, - [6099] = 5984, - [6100] = 4909, - [6101] = 5940, - [6102] = 5929, - [6103] = 5984, - [6104] = 465, - [6105] = 6105, - [6106] = 327, - [6107] = 5930, - [6108] = 5984, - [6109] = 5977, - [6110] = 371, - [6111] = 141, - [6112] = 5929, - [6113] = 5984, - [6114] = 4773, - [6115] = 4845, - [6116] = 5929, - [6117] = 5984, - [6118] = 5929, - [6119] = 5984, - [6120] = 5950, - [6121] = 5929, - [6122] = 5984, - [6123] = 4774, - [6124] = 6124, - [6125] = 5929, - [6126] = 5984, - [6127] = 5929, - [6128] = 5984, - [6129] = 5929, - [6130] = 5984, - [6131] = 5929, - [6132] = 5984, - [6133] = 5929, - [6134] = 5984, - [6135] = 5929, - [6136] = 5984, - [6137] = 5929, - [6138] = 5984, - [6139] = 5940, - [6140] = 392, - [6141] = 5999, - [6142] = 6021, - [6143] = 6034, - [6144] = 6144, - [6145] = 5932, - [6146] = 5930, - [6147] = 4960, - [6148] = 4775, - [6149] = 356, - [6150] = 5943, - [6151] = 5994, - [6152] = 5940, - [6153] = 370, - [6154] = 5930, - [6155] = 5940, - [6156] = 4787, - [6157] = 4928, - [6158] = 5980, - [6159] = 489, - [6160] = 1843, - [6161] = 5940, - [6162] = 4876, - [6163] = 5930, - [6164] = 5940, - [6165] = 5891, - [6166] = 5940, - [6167] = 148, - [6168] = 4785, + [6074] = 3515, + [6075] = 4939, + [6076] = 4833, + [6077] = 6006, + [6078] = 4884, + [6079] = 5973, + [6080] = 5994, + [6081] = 5986, + [6082] = 6043, + [6083] = 6006, + [6084] = 6010, + [6085] = 475, + [6086] = 5927, + [6087] = 5932, + [6088] = 1719, + [6089] = 5927, + [6090] = 5956, + [6091] = 5949, + [6092] = 6042, + [6093] = 5956, + [6094] = 5949, + [6095] = 6052, + [6096] = 5927, + [6097] = 5932, + [6098] = 5956, + [6099] = 5949, + [6100] = 6042, + [6101] = 360, + [6102] = 5956, + [6103] = 5949, + [6104] = 371, + [6105] = 4936, + [6106] = 373, + [6107] = 5956, + [6108] = 5949, + [6109] = 5956, + [6110] = 5949, + [6111] = 5956, + [6112] = 5949, + [6113] = 5927, + [6114] = 5956, + [6115] = 5949, + [6116] = 4888, + [6117] = 4920, + [6118] = 5956, + [6119] = 5949, + [6120] = 6120, + [6121] = 6060, + [6122] = 361, + [6123] = 5956, + [6124] = 5949, + [6125] = 5956, + [6126] = 5949, + [6127] = 5956, + [6128] = 5949, + [6129] = 5956, + [6130] = 5949, + [6131] = 5956, + [6132] = 5949, + [6133] = 5956, + [6134] = 5949, + [6135] = 5932, + [6136] = 5927, + [6137] = 4921, + [6138] = 6025, + [6139] = 6067, + [6140] = 6120, + [6141] = 5942, + [6142] = 6055, + [6143] = 6007, + [6144] = 6010, + [6145] = 5698, + [6146] = 4929, + [6147] = 5932, + [6148] = 1692, + [6149] = 360, + [6150] = 6059, + [6151] = 6055, + [6152] = 6052, + [6153] = 4789, + [6154] = 6043, + [6155] = 5927, + [6156] = 6156, + [6157] = 6060, + [6158] = 434, + [6159] = 4908, + [6160] = 6160, + [6161] = 6161, + [6162] = 580, + [6163] = 6163, + [6164] = 6164, + [6165] = 6165, + [6166] = 6166, + [6167] = 6167, + [6168] = 539, [6169] = 6169, - [6170] = 6170, + [6170] = 1697, [6171] = 6171, - [6172] = 350, + [6172] = 6172, [6173] = 6173, [6174] = 6174, - [6175] = 370, + [6175] = 371, [6176] = 6176, - [6177] = 151, - [6178] = 150, + [6177] = 504, + [6178] = 505, [6179] = 6179, - [6180] = 4943, + [6180] = 6180, [6181] = 6181, - [6182] = 373, + [6182] = 6182, [6183] = 6183, - [6184] = 6176, - [6185] = 371, + [6184] = 6184, + [6185] = 6185, [6186] = 6186, - [6187] = 5962, + [6187] = 6187, [6188] = 6188, [6189] = 6189, - [6190] = 497, - [6191] = 528, + [6190] = 6189, + [6191] = 1639, [6192] = 6192, [6193] = 6193, [6194] = 6194, - [6195] = 6195, + [6195] = 373, [6196] = 6196, - [6197] = 6197, - [6198] = 6198, - [6199] = 3494, - [6200] = 3443, - [6201] = 6201, + [6197] = 536, + [6198] = 537, + [6199] = 6169, + [6200] = 6200, + [6201] = 3124, [6202] = 6202, [6203] = 6203, - [6204] = 500, - [6205] = 501, + [6204] = 6204, + [6205] = 6160, [6206] = 6206, [6207] = 6207, - [6208] = 481, + [6208] = 6208, [6209] = 6209, [6210] = 6210, [6211] = 6211, [6212] = 6212, - [6213] = 6213, - [6214] = 6214, - [6215] = 373, - [6216] = 6216, - [6217] = 543, + [6213] = 536, + [6214] = 374, + [6215] = 3117, + [6216] = 537, + [6217] = 6217, [6218] = 6218, - [6219] = 519, - [6220] = 3075, - [6221] = 382, - [6222] = 537, + [6219] = 6219, + [6220] = 6220, + [6221] = 6221, + [6222] = 6222, [6223] = 6223, [6224] = 6224, [6225] = 6225, [6226] = 6226, [6227] = 6227, - [6228] = 6216, + [6228] = 6228, [6229] = 6229, - [6230] = 6230, + [6230] = 6073, [6231] = 6231, - [6232] = 6232, + [6232] = 6174, [6233] = 6233, [6234] = 6234, [6235] = 6235, - [6236] = 4750, - [6237] = 4751, - [6238] = 3454, - [6239] = 3485, + [6236] = 6236, + [6237] = 531, + [6238] = 6238, + [6239] = 6239, [6240] = 6240, - [6241] = 6241, - [6242] = 6242, + [6241] = 4929, + [6242] = 4936, [6243] = 6243, - [6244] = 6244, + [6244] = 4940, [6245] = 6245, - [6246] = 6246, + [6246] = 4942, [6247] = 6247, - [6248] = 382, - [6249] = 544, - [6250] = 6229, - [6251] = 6251, - [6252] = 6230, + [6248] = 6169, + [6249] = 6249, + [6250] = 6228, + [6251] = 6220, + [6252] = 6252, [6253] = 6253, - [6254] = 6176, - [6255] = 6231, - [6256] = 518, + [6254] = 6254, + [6255] = 6255, + [6256] = 6256, [6257] = 6257, - [6258] = 6258, - [6259] = 3088, - [6260] = 6260, + [6258] = 542, + [6259] = 6259, + [6260] = 543, [6261] = 6261, [6262] = 6262, - [6263] = 4758, - [6264] = 4760, - [6265] = 4762, + [6263] = 6161, + [6264] = 6176, + [6265] = 6265, [6266] = 6266, - [6267] = 6267, - [6268] = 4767, + [6267] = 152, + [6268] = 6161, [6269] = 6269, - [6270] = 6270, - [6271] = 6271, - [6272] = 6272, - [6273] = 6273, - [6274] = 6274, - [6275] = 546, - [6276] = 497, - [6277] = 500, + [6270] = 6176, + [6271] = 3524, + [6272] = 6200, + [6273] = 539, + [6274] = 6235, + [6275] = 6236, + [6276] = 6200, + [6277] = 253, [6278] = 501, - [6279] = 6179, - [6280] = 6186, - [6281] = 6183, - [6282] = 6282, - [6283] = 4773, - [6284] = 4774, - [6285] = 6214, - [6286] = 4775, - [6287] = 4784, - [6288] = 4786, - [6289] = 4787, + [6279] = 6189, + [6280] = 6204, + [6281] = 6160, + [6282] = 6206, + [6283] = 6225, + [6284] = 6226, + [6285] = 6227, + [6286] = 6238, + [6287] = 3141, + [6288] = 332, + [6289] = 3508, [6290] = 6290, - [6291] = 6291, + [6291] = 490, [6292] = 6292, - [6293] = 6188, - [6294] = 6211, - [6295] = 6212, - [6296] = 6213, - [6297] = 6216, - [6298] = 6229, - [6299] = 6230, - [6300] = 6244, - [6301] = 6301, - [6302] = 6302, - [6303] = 500, - [6304] = 501, - [6305] = 524, - [6306] = 4797, - [6307] = 4800, - [6308] = 4802, - [6309] = 4811, - [6310] = 4822, - [6311] = 4824, - [6312] = 4827, - [6313] = 4834, - [6314] = 6179, - [6315] = 6183, - [6316] = 4836, - [6317] = 4843, - [6318] = 4845, - [6319] = 525, - [6320] = 4960, - [6321] = 4876, - [6322] = 6214, - [6323] = 3127, - [6324] = 4878, - [6325] = 4881, + [6293] = 6293, + [6294] = 6294, + [6295] = 6295, + [6296] = 6161, + [6297] = 6176, + [6298] = 6200, + [6299] = 6299, + [6300] = 534, + [6301] = 6189, + [6302] = 6204, + [6303] = 6160, + [6304] = 6206, + [6305] = 6225, + [6306] = 6226, + [6307] = 6227, + [6308] = 6238, + [6309] = 6161, + [6310] = 6176, + [6311] = 504, + [6312] = 505, + [6313] = 6200, + [6314] = 6238, + [6315] = 501, + [6316] = 6316, + [6317] = 6189, + [6318] = 6204, + [6319] = 6160, + [6320] = 6206, + [6321] = 6225, + [6322] = 6226, + [6323] = 6227, + [6324] = 6238, + [6325] = 6189, [6326] = 6326, - [6327] = 6327, - [6328] = 4890, - [6329] = 4899, - [6330] = 4900, - [6331] = 6188, - [6332] = 6211, - [6333] = 6212, - [6334] = 6213, - [6335] = 6216, - [6336] = 6229, - [6337] = 6230, - [6338] = 6244, - [6339] = 4905, - [6340] = 6179, - [6341] = 4908, - [6342] = 6183, - [6343] = 4909, - [6344] = 6344, - [6345] = 4915, - [6346] = 6214, - [6347] = 4919, - [6348] = 4921, - [6349] = 4922, - [6350] = 4924, - [6351] = 4925, - [6352] = 6188, - [6353] = 6211, - [6354] = 6212, - [6355] = 6213, - [6356] = 6216, - [6357] = 6229, - [6358] = 6230, - [6359] = 6244, - [6360] = 1547, - [6361] = 4926, - [6362] = 4948, - [6363] = 6179, - [6364] = 4950, - [6365] = 6183, - [6366] = 4954, - [6367] = 4724, - [6368] = 4725, - [6369] = 6214, - [6370] = 4731, - [6371] = 4732, - [6372] = 370, - [6373] = 4734, - [6374] = 6374, - [6375] = 4735, - [6376] = 4736, - [6377] = 6188, - [6378] = 6211, - [6379] = 6212, - [6380] = 6213, - [6381] = 6216, - [6382] = 6229, - [6383] = 6230, - [6384] = 6244, - [6385] = 4737, - [6386] = 4739, - [6387] = 6179, - [6388] = 6183, - [6389] = 6389, - [6390] = 6214, - [6391] = 6188, - [6392] = 503, - [6393] = 6393, - [6394] = 6394, - [6395] = 6188, - [6396] = 6211, - [6397] = 6212, - [6398] = 6213, - [6399] = 6216, - [6400] = 6229, - [6401] = 6230, - [6402] = 6244, - [6403] = 6403, - [6404] = 6179, - [6405] = 6183, - [6406] = 6242, - [6407] = 6214, - [6408] = 6243, - [6409] = 371, - [6410] = 6188, - [6411] = 6211, - [6412] = 6212, - [6413] = 6213, - [6414] = 6216, - [6415] = 6229, - [6416] = 6230, - [6417] = 6244, - [6418] = 6209, - [6419] = 6179, - [6420] = 6183, - [6421] = 521, - [6422] = 523, - [6423] = 6210, - [6424] = 6214, - [6425] = 370, - [6426] = 6188, - [6427] = 6211, - [6428] = 6212, - [6429] = 6213, - [6430] = 6216, - [6431] = 6229, - [6432] = 6230, - [6433] = 6244, - [6434] = 373, - [6435] = 6179, - [6436] = 6183, - [6437] = 6179, - [6438] = 6214, - [6439] = 6439, - [6440] = 382, - [6441] = 6105, - [6442] = 6188, - [6443] = 6211, - [6444] = 6212, - [6445] = 6213, - [6446] = 6216, - [6447] = 6229, - [6448] = 6230, - [6449] = 6244, - [6450] = 6179, - [6451] = 6183, - [6452] = 6452, - [6453] = 6214, - [6454] = 6214, - [6455] = 6188, - [6456] = 6211, - [6457] = 6212, - [6458] = 6213, - [6459] = 6216, - [6460] = 6229, - [6461] = 6230, - [6462] = 6244, - [6463] = 6209, - [6464] = 6210, - [6465] = 6179, - [6466] = 6183, - [6467] = 6181, - [6468] = 6214, - [6469] = 6211, - [6470] = 6212, - [6471] = 6188, - [6472] = 6214, - [6473] = 6212, - [6474] = 6213, - [6475] = 6216, - [6476] = 6229, - [6477] = 6230, - [6478] = 6244, - [6479] = 6213, - [6480] = 6179, - [6481] = 6183, - [6482] = 6214, + [6327] = 6161, + [6328] = 151, + [6329] = 6176, + [6330] = 150, + [6331] = 6200, + [6332] = 533, + [6333] = 6333, + [6334] = 6334, + [6335] = 6189, + [6336] = 6204, + [6337] = 6160, + [6338] = 6206, + [6339] = 6225, + [6340] = 6226, + [6341] = 6227, + [6342] = 6238, + [6343] = 6161, + [6344] = 6176, + [6345] = 6345, + [6346] = 6200, + [6347] = 6202, + [6348] = 6203, + [6349] = 331, + [6350] = 6189, + [6351] = 6204, + [6352] = 6160, + [6353] = 6206, + [6354] = 6225, + [6355] = 6226, + [6356] = 6227, + [6357] = 6238, + [6358] = 5958, + [6359] = 6161, + [6360] = 6176, + [6361] = 544, + [6362] = 6362, + [6363] = 6200, + [6364] = 4789, + [6365] = 1659, + [6366] = 4803, + [6367] = 6189, + [6368] = 6204, + [6369] = 6160, + [6370] = 6206, + [6371] = 6225, + [6372] = 6226, + [6373] = 6227, + [6374] = 6238, + [6375] = 6161, + [6376] = 6176, + [6377] = 6200, + [6378] = 4804, + [6379] = 4807, + [6380] = 4810, + [6381] = 6189, + [6382] = 6204, + [6383] = 6160, + [6384] = 6206, + [6385] = 6225, + [6386] = 6226, + [6387] = 6227, + [6388] = 6238, + [6389] = 6161, + [6390] = 6176, + [6391] = 6200, + [6392] = 6202, + [6393] = 6203, + [6394] = 4857, + [6395] = 6189, + [6396] = 6204, + [6397] = 6160, + [6398] = 6206, + [6399] = 6225, + [6400] = 6226, + [6401] = 6227, + [6402] = 6238, + [6403] = 6204, + [6404] = 6161, + [6405] = 6176, + [6406] = 6160, + [6407] = 6206, + [6408] = 6200, + [6409] = 6189, + [6410] = 6204, + [6411] = 6160, + [6412] = 6206, + [6413] = 6225, + [6414] = 6226, + [6415] = 6227, + [6416] = 6238, + [6417] = 4858, + [6418] = 6418, + [6419] = 6161, + [6420] = 6176, + [6421] = 6200, + [6422] = 143, + [6423] = 6189, + [6424] = 6204, + [6425] = 6160, + [6426] = 6206, + [6427] = 6225, + [6428] = 6226, + [6429] = 6227, + [6430] = 6238, + [6431] = 6161, + [6432] = 6176, + [6433] = 6200, + [6434] = 4737, + [6435] = 6435, + [6436] = 6189, + [6437] = 6204, + [6438] = 6160, + [6439] = 6206, + [6440] = 6225, + [6441] = 6226, + [6442] = 6227, + [6443] = 6238, + [6444] = 6161, + [6445] = 6176, + [6446] = 507, + [6447] = 6200, + [6448] = 6189, + [6449] = 6204, + [6450] = 6160, + [6451] = 6206, + [6452] = 6225, + [6453] = 6226, + [6454] = 6227, + [6455] = 6238, + [6456] = 6161, + [6457] = 6176, + [6458] = 540, + [6459] = 6200, + [6460] = 541, + [6461] = 6189, + [6462] = 6204, + [6463] = 6160, + [6464] = 6464, + [6465] = 6225, + [6466] = 6226, + [6467] = 6227, + [6468] = 6238, + [6469] = 142, + [6470] = 6161, + [6471] = 6176, + [6472] = 6200, + [6473] = 6189, + [6474] = 6204, + [6475] = 6160, + [6476] = 6206, + [6477] = 6225, + [6478] = 6226, + [6479] = 6227, + [6480] = 6238, + [6481] = 6161, + [6482] = 6176, [6483] = 6483, - [6484] = 6484, - [6485] = 6188, - [6486] = 6211, - [6487] = 6212, - [6488] = 6213, - [6489] = 6216, - [6490] = 6229, - [6491] = 6230, - [6492] = 6244, - [6493] = 6179, - [6494] = 6183, - [6495] = 503, - [6496] = 6214, - [6497] = 142, - [6498] = 6188, - [6499] = 6211, - [6500] = 6212, - [6501] = 6213, - [6502] = 6216, - [6503] = 6229, - [6504] = 6230, - [6505] = 6244, - [6506] = 497, - [6507] = 6179, - [6508] = 6183, - [6509] = 6214, - [6510] = 528, - [6511] = 6511, - [6512] = 6188, - [6513] = 6211, - [6514] = 6212, - [6515] = 6213, - [6516] = 6216, - [6517] = 6229, - [6518] = 6230, - [6519] = 6244, - [6520] = 6179, - [6521] = 6183, - [6522] = 6214, - [6523] = 6188, - [6524] = 6211, - [6525] = 6212, - [6526] = 6213, - [6527] = 6216, - [6528] = 6229, - [6529] = 6230, - [6530] = 6244, - [6531] = 6179, - [6532] = 6183, - [6533] = 6214, - [6534] = 6179, - [6535] = 6183, - [6536] = 6214, - [6537] = 6179, - [6538] = 6183, - [6539] = 6214, - [6540] = 6179, - [6541] = 6183, - [6542] = 6214, - [6543] = 6179, - [6544] = 6183, - [6545] = 6214, - [6546] = 6546, - [6547] = 6179, - [6548] = 6183, - [6549] = 6214, - [6550] = 6179, - [6551] = 6183, - [6552] = 6214, - [6553] = 6179, - [6554] = 6183, - [6555] = 6214, - [6556] = 6179, - [6557] = 6183, - [6558] = 6214, - [6559] = 6179, - [6560] = 6183, - [6561] = 6214, - [6562] = 6179, - [6563] = 6183, - [6564] = 6214, - [6565] = 6179, - [6566] = 6183, - [6567] = 6214, - [6568] = 6179, - [6569] = 6183, - [6570] = 6214, - [6571] = 6179, - [6572] = 6183, - [6573] = 6214, - [6574] = 6179, - [6575] = 6183, - [6576] = 6214, - [6577] = 6183, - [6578] = 6214, - [6579] = 6183, - [6580] = 6214, - [6581] = 6183, - [6582] = 6214, - [6583] = 6183, - [6584] = 6214, - [6585] = 6183, - [6586] = 6214, - [6587] = 6183, - [6588] = 6214, - [6589] = 6183, - [6590] = 6214, - [6591] = 6179, - [6592] = 6258, - [6593] = 6224, - [6594] = 6225, - [6595] = 6189, - [6596] = 6226, - [6597] = 6227, + [6484] = 6200, + [6485] = 6161, + [6486] = 6176, + [6487] = 6200, + [6488] = 1160, + [6489] = 6161, + [6490] = 6176, + [6491] = 544, + [6492] = 6200, + [6493] = 6221, + [6494] = 6161, + [6495] = 6176, + [6496] = 6222, + [6497] = 6200, + [6498] = 6223, + [6499] = 6161, + [6500] = 6176, + [6501] = 6200, + [6502] = 6224, + [6503] = 6161, + [6504] = 6176, + [6505] = 6200, + [6506] = 6161, + [6507] = 6176, + [6508] = 6200, + [6509] = 6161, + [6510] = 6176, + [6511] = 6200, + [6512] = 6225, + [6513] = 6161, + [6514] = 6176, + [6515] = 6200, + [6516] = 6226, + [6517] = 6161, + [6518] = 6176, + [6519] = 6200, + [6520] = 6161, + [6521] = 6176, + [6522] = 6200, + [6523] = 6227, + [6524] = 6161, + [6525] = 6176, + [6526] = 6200, + [6527] = 6161, + [6528] = 6176, + [6529] = 6200, + [6530] = 6161, + [6531] = 6176, + [6532] = 6200, + [6533] = 6161, + [6534] = 6176, + [6535] = 6200, + [6536] = 6176, + [6537] = 6200, + [6538] = 6176, + [6539] = 6200, + [6540] = 6176, + [6541] = 6200, + [6542] = 6176, + [6543] = 6200, + [6544] = 6176, + [6545] = 6200, + [6546] = 6176, + [6547] = 6200, + [6548] = 6176, + [6549] = 6200, + [6550] = 6186, + [6551] = 6161, + [6552] = 6552, + [6553] = 6204, + [6554] = 6326, + [6555] = 6555, + [6556] = 6556, + [6557] = 6557, + [6558] = 6217, + [6559] = 6559, + [6560] = 6560, + [6561] = 6561, + [6562] = 6562, + [6563] = 6563, + [6564] = 6564, + [6565] = 6565, + [6566] = 532, + [6567] = 4931, + [6568] = 6160, + [6569] = 4860, + [6570] = 4820, + [6571] = 1604, + [6572] = 6243, + [6573] = 6299, + [6574] = 360, + [6575] = 4932, + [6576] = 6235, + [6577] = 6236, + [6578] = 4726, + [6579] = 4794, + [6580] = 6238, + [6581] = 4798, + [6582] = 3520, + [6583] = 6362, + [6584] = 3521, + [6585] = 6585, + [6586] = 6586, + [6587] = 4908, + [6588] = 6206, + [6589] = 6589, + [6590] = 6590, + [6591] = 361, + [6592] = 4855, + [6593] = 6221, + [6594] = 6222, + [6595] = 6223, + [6596] = 6224, + [6597] = 6597, [6598] = 6598, - [6599] = 6216, - [6600] = 6229, - [6601] = 6230, - [6602] = 544, - [6603] = 213, - [6604] = 6604, - [6605] = 143, - [6606] = 6606, - [6607] = 6607, - [6608] = 6282, - [6609] = 6244, - [6610] = 6607, - [6611] = 6611, - [6612] = 550, - [6613] = 518, - [6614] = 152, - [6615] = 6615, - [6616] = 6616, - [6617] = 6617, - [6618] = 6618, - [6619] = 6619, - [6620] = 6223, - [6621] = 4928, - [6622] = 6211, - [6623] = 6242, - [6624] = 6243, - [6625] = 6244, - [6626] = 360, - [6627] = 6627, - [6628] = 6628, - [6629] = 6629, - [6630] = 6212, - [6631] = 6631, - [6632] = 6213, - [6633] = 356, - [6634] = 1629, - [6635] = 6635, - [6636] = 327, - [6637] = 6637, - [6638] = 6638, - [6639] = 6639, - [6640] = 543, - [6641] = 519, - [6642] = 6642, - [6643] = 547, - [6644] = 6188, - [6645] = 6188, - [6646] = 6211, - [6647] = 6212, - [6648] = 6213, - [6649] = 6216, - [6650] = 6229, - [6651] = 6230, - [6652] = 6244, - [6653] = 6179, - [6654] = 472, - [6655] = 3397, - [6656] = 3395, + [6599] = 6599, + [6600] = 4742, + [6601] = 6001, + [6602] = 4758, + [6603] = 6603, + [6604] = 4759, + [6605] = 4780, + [6606] = 4795, + [6607] = 385, + [6608] = 4935, + [6609] = 4811, + [6610] = 6610, + [6611] = 4957, + [6612] = 371, + [6613] = 491, + [6614] = 4728, + [6615] = 4735, + [6616] = 4806, + [6617] = 373, + [6618] = 4730, + [6619] = 4775, + [6620] = 4788, + [6621] = 6189, + [6622] = 6204, + [6623] = 4853, + [6624] = 6206, + [6625] = 6225, + [6626] = 6226, + [6627] = 6227, + [6628] = 6238, + [6629] = 4920, + [6630] = 6161, + [6631] = 374, + [6632] = 4921, + [6633] = 4933, + [6634] = 4744, + [6635] = 3101, + [6636] = 6225, + [6637] = 4812, + [6638] = 3111, + [6639] = 4833, + [6640] = 4837, + [6641] = 6641, + [6642] = 4923, + [6643] = 6226, + [6644] = 6644, + [6645] = 4757, + [6646] = 6227, + [6647] = 3517, + [6648] = 6648, + [6649] = 4765, + [6650] = 4910, + [6651] = 483, + [6652] = 449, + [6653] = 452, + [6654] = 4913, + [6655] = 3518, + [6656] = 6656, [6657] = 6657, - [6658] = 6658, - [6659] = 6659, - [6660] = 6660, + [6658] = 4925, + [6659] = 4939, + [6660] = 501, [6661] = 6661, - [6662] = 6662, - [6663] = 5995, + [6662] = 499, + [6663] = 4884, [6664] = 6664, [6665] = 6665, - [6666] = 6666, - [6667] = 6615, - [6668] = 6668, - [6669] = 371, - [6670] = 6670, - [6671] = 503, - [6672] = 6672, - [6673] = 477, - [6674] = 478, - [6675] = 479, - [6676] = 6676, - [6677] = 3060, - [6678] = 1660, - [6679] = 536, - [6680] = 1562, - [6681] = 6224, - [6682] = 6225, + [6666] = 385, + [6667] = 4888, + [6668] = 385, + [6669] = 4902, + [6670] = 4922, + [6671] = 6671, + [6672] = 4731, + [6673] = 371, + [6674] = 507, + [6675] = 6161, + [6676] = 6176, + [6677] = 504, + [6678] = 505, + [6679] = 507, + [6680] = 373, + [6681] = 6247, + [6682] = 374, [6683] = 6683, - [6684] = 1137, - [6685] = 6685, - [6686] = 6183, - [6687] = 1633, - [6688] = 6253, - [6689] = 6179, - [6690] = 6226, - [6691] = 6227, - [6692] = 6183, - [6693] = 6452, - [6694] = 6694, - [6695] = 6695, - [6696] = 6173, - [6697] = 6174, + [6684] = 6229, + [6685] = 6218, + [6686] = 6219, + [6687] = 6234, + [6688] = 6259, + [6689] = 532, + [6690] = 1720, + [6691] = 499, + [6692] = 6229, + [6693] = 6218, + [6694] = 6219, + [6695] = 6234, + [6696] = 6200, + [6697] = 3081, [6698] = 6698, - [6699] = 6699, - [6700] = 6452, - [6701] = 6694, - [6702] = 6695, - [6703] = 6173, - [6704] = 6694, - [6705] = 3059, - [6706] = 6695, - [6707] = 3061, - [6708] = 536, - [6709] = 6676, - [6710] = 6211, - [6711] = 6711, + [6699] = 6603, + [6700] = 6206, + [6701] = 6701, + [6702] = 6702, + [6703] = 6703, + [6704] = 145, + [6705] = 6705, + [6706] = 6706, + [6707] = 1604, + [6708] = 6708, + [6709] = 6701, + [6710] = 6710, + [6711] = 6589, [6712] = 6712, - [6713] = 6713, + [6713] = 657, [6714] = 6714, - [6715] = 6665, - [6716] = 6716, + [6715] = 6702, + [6716] = 507, [6717] = 6717, [6718] = 6718, - [6719] = 6719, + [6719] = 6590, [6720] = 6720, [6721] = 6721, - [6722] = 6722, - [6723] = 6723, - [6724] = 6711, + [6722] = 6708, + [6723] = 6597, + [6724] = 652, [6725] = 6725, - [6726] = 651, - [6727] = 497, - [6728] = 630, - [6729] = 631, - [6730] = 674, + [6726] = 6701, + [6727] = 6710, + [6728] = 6728, + [6729] = 6729, + [6730] = 6252, [6731] = 6731, - [6732] = 656, - [6733] = 6733, - [6734] = 3167, - [6735] = 6713, - [6736] = 6714, - [6737] = 3151, - [6738] = 6717, - [6739] = 6273, - [6740] = 6719, - [6741] = 6720, - [6742] = 6721, - [6743] = 6722, - [6744] = 6725, - [6745] = 6745, - [6746] = 6723, - [6747] = 6711, - [6748] = 633, - [6749] = 634, - [6750] = 6725, - [6751] = 635, - [6752] = 636, - [6753] = 6274, - [6754] = 6269, - [6755] = 6270, - [6756] = 199, - [6757] = 6757, - [6758] = 6758, - [6759] = 300, - [6760] = 6731, - [6761] = 198, - [6762] = 6374, - [6763] = 6719, - [6764] = 6720, - [6765] = 6721, - [6766] = 6766, - [6767] = 6713, - [6768] = 6714, - [6769] = 6717, - [6770] = 6719, - [6771] = 6720, - [6772] = 6721, - [6773] = 3159, - [6774] = 6722, - [6775] = 6723, - [6776] = 6711, - [6777] = 6725, - [6778] = 6389, - [6779] = 500, - [6780] = 501, - [6781] = 6232, - [6782] = 647, - [6783] = 6233, - [6784] = 6784, - [6785] = 6206, - [6786] = 6234, - [6787] = 6731, - [6788] = 2636, - [6789] = 6789, - [6790] = 1651, - [6791] = 6635, - [6792] = 610, - [6793] = 6793, - [6794] = 6714, - [6795] = 611, - [6796] = 6717, - [6797] = 6797, - [6798] = 6235, - [6799] = 6719, - [6800] = 6720, - [6801] = 6721, + [6732] = 149, + [6733] = 6464, + [6734] = 6734, + [6735] = 6735, + [6736] = 6736, + [6737] = 6703, + [6738] = 6736, + [6739] = 6739, + [6740] = 6705, + [6741] = 3141, + [6742] = 6552, + [6743] = 6708, + [6744] = 6701, + [6745] = 6710, + [6746] = 6712, + [6747] = 6747, + [6748] = 6748, + [6749] = 6714, + [6750] = 6702, + [6751] = 671, + [6752] = 6752, + [6753] = 6718, + [6754] = 3197, + [6755] = 6555, + [6756] = 6557, + [6757] = 6253, + [6758] = 6559, + [6759] = 6731, + [6760] = 6760, + [6761] = 6761, + [6762] = 3207, + [6763] = 2980, + [6764] = 6703, + [6765] = 6736, + [6766] = 2983, + [6767] = 6705, + [6768] = 6166, + [6769] = 6254, + [6770] = 6708, + [6771] = 6701, + [6772] = 6710, + [6773] = 6712, + [6774] = 6714, + [6775] = 6702, + [6776] = 6776, + [6777] = 6718, + [6778] = 6255, + [6779] = 6779, + [6780] = 6780, + [6781] = 199, + [6782] = 6256, + [6783] = 6257, + [6784] = 640, + [6785] = 6731, + [6786] = 659, + [6787] = 651, + [6788] = 6562, + [6789] = 653, + [6790] = 6736, + [6791] = 6705, + [6792] = 6792, + [6793] = 6708, + [6794] = 6701, + [6795] = 6710, + [6796] = 6718, + [6797] = 6712, + [6798] = 5645, + [6799] = 6799, + [6800] = 6714, + [6801] = 6702, [6802] = 6802, - [6803] = 6722, - [6804] = 6657, - [6805] = 591, - [6806] = 6723, - [6807] = 6711, - [6808] = 6725, - [6809] = 6809, - [6810] = 6393, - [6811] = 632, - [6812] = 6812, + [6803] = 6718, + [6804] = 6804, + [6805] = 3216, + [6806] = 6806, + [6807] = 4713, + [6808] = 6266, + [6809] = 637, + [6810] = 601, + [6811] = 603, + [6812] = 6731, [6813] = 6813, - [6814] = 6192, + [6814] = 5653, [6815] = 6815, - [6816] = 6394, - [6817] = 6731, - [6818] = 6725, - [6819] = 6819, + [6816] = 6703, + [6817] = 6736, + [6818] = 3101, + [6819] = 6705, [6820] = 6820, - [6821] = 6714, - [6822] = 145, - [6823] = 144, - [6824] = 6717, - [6825] = 6825, - [6826] = 6719, - [6827] = 6720, - [6828] = 6721, - [6829] = 592, - [6830] = 6722, - [6831] = 6831, - [6832] = 6272, - [6833] = 6723, - [6834] = 6711, - [6835] = 6725, - [6836] = 6836, - [6837] = 6837, - [6838] = 657, - [6839] = 6731, - [6840] = 6840, - [6841] = 6713, - [6842] = 6842, - [6843] = 6666, - [6844] = 6627, - [6845] = 6714, - [6846] = 1547, - [6847] = 6717, - [6848] = 6271, - [6849] = 6719, - [6850] = 6720, - [6851] = 6721, - [6852] = 6722, - [6853] = 6784, - [6854] = 6723, - [6855] = 6711, - [6856] = 6789, - [6857] = 6725, - [6858] = 6716, + [6821] = 6585, + [6822] = 6708, + [6823] = 6701, + [6824] = 6710, + [6825] = 6712, + [6826] = 6187, + [6827] = 6714, + [6828] = 6702, + [6829] = 6718, + [6830] = 6830, + [6831] = 3111, + [6832] = 6656, + [6833] = 6833, + [6834] = 6563, + [6835] = 6657, + [6836] = 6731, + [6837] = 6293, + [6838] = 6779, + [6839] = 6736, + [6840] = 6705, + [6841] = 6841, + [6842] = 6294, + [6843] = 6708, + [6844] = 6701, + [6845] = 6710, + [6846] = 6712, + [6847] = 6714, + [6848] = 6702, + [6849] = 507, + [6850] = 6718, + [6851] = 673, + [6852] = 6564, + [6853] = 6712, + [6854] = 6664, + [6855] = 6665, + [6856] = 6792, + [6857] = 6806, + [6858] = 6269, [6859] = 6731, - [6860] = 6291, - [6861] = 6802, - [6862] = 6731, - [6863] = 2950, - [6864] = 6864, - [6865] = 6865, - [6866] = 6714, - [6867] = 6717, - [6868] = 6719, - [6869] = 6720, - [6870] = 6721, - [6871] = 6722, - [6872] = 6658, - [6873] = 4694, - [6874] = 6723, - [6875] = 6711, - [6876] = 6403, - [6877] = 6725, - [6878] = 528, - [6879] = 6714, - [6880] = 6825, - [6881] = 3169, - [6882] = 6719, + [6860] = 6714, + [6861] = 6702, + [6862] = 658, + [6863] = 6736, + [6864] = 6705, + [6865] = 2616, + [6866] = 6708, + [6867] = 6701, + [6868] = 6710, + [6869] = 6245, + [6870] = 6712, + [6871] = 6871, + [6872] = 6714, + [6873] = 6702, + [6874] = 6718, + [6875] = 3150, + [6876] = 3210, + [6877] = 6841, + [6878] = 1659, + [6879] = 6671, + [6880] = 662, + [6881] = 6185, + [6882] = 6731, [6883] = 6883, - [6884] = 6720, - [6885] = 4667, - [6886] = 6731, - [6887] = 6721, + [6884] = 6565, + [6885] = 6736, + [6886] = 590, + [6887] = 6705, [6888] = 6888, - [6889] = 6889, - [6890] = 6714, - [6891] = 6722, - [6892] = 6717, - [6893] = 648, - [6894] = 6719, - [6895] = 6720, - [6896] = 6721, - [6897] = 6897, - [6898] = 6722, - [6899] = 6865, - [6900] = 6723, - [6901] = 6711, - [6902] = 570, - [6903] = 6725, - [6904] = 6723, - [6905] = 6661, - [6906] = 593, - [6907] = 6301, - [6908] = 594, - [6909] = 6628, - [6910] = 6910, - [6911] = 6731, + [6889] = 6708, + [6890] = 6701, + [6891] = 6710, + [6892] = 6703, + [6893] = 6712, + [6894] = 3159, + [6895] = 360, + [6896] = 6714, + [6897] = 6702, + [6898] = 6898, + [6899] = 3165, + [6900] = 6718, + [6901] = 6901, + [6902] = 6902, + [6903] = 604, + [6904] = 667, + [6905] = 593, + [6906] = 6731, + [6907] = 4635, + [6908] = 6908, + [6909] = 6736, + [6910] = 6705, + [6911] = 6171, [6912] = 6912, - [6913] = 6714, - [6914] = 595, - [6915] = 6717, - [6916] = 6757, - [6917] = 3152, - [6918] = 6719, - [6919] = 6720, - [6920] = 6721, - [6921] = 596, - [6922] = 6722, - [6923] = 656, - [6924] = 2632, - [6925] = 6723, - [6926] = 6711, - [6927] = 6725, - [6928] = 360, - [6929] = 6672, - [6930] = 6930, - [6931] = 6659, - [6932] = 6758, - [6933] = 6660, - [6934] = 6731, - [6935] = 6935, - [6936] = 3156, - [6937] = 6714, - [6938] = 6713, - [6939] = 6717, - [6940] = 6193, - [6941] = 6716, - [6942] = 6719, - [6943] = 6720, - [6944] = 6721, - [6945] = 6722, - [6946] = 6723, - [6947] = 6711, - [6948] = 6725, - [6949] = 6949, - [6950] = 589, - [6951] = 6930, - [6952] = 350, - [6953] = 3016, - [6954] = 6629, - [6955] = 6717, - [6956] = 6836, - [6957] = 6719, - [6958] = 6720, - [6959] = 6721, - [6960] = 6717, - [6961] = 6722, - [6962] = 503, - [6963] = 6723, - [6964] = 6711, - [6965] = 6698, - [6966] = 6725, - [6967] = 6699, - [6968] = 6837, - [6969] = 3018, - [6970] = 6717, - [6971] = 6971, - [6972] = 6719, - [6973] = 6720, - [6974] = 6721, - [6975] = 6722, - [6976] = 6723, - [6977] = 6711, - [6978] = 2633, - [6979] = 6731, - [6980] = 6725, - [6981] = 6201, - [6982] = 3075, - [6983] = 1629, - [6984] = 3059, + [6913] = 6708, + [6914] = 6701, + [6915] = 6710, + [6916] = 6712, + [6917] = 6708, + [6918] = 6714, + [6919] = 6702, + [6920] = 6701, + [6921] = 6710, + [6922] = 6718, + [6923] = 6731, + [6924] = 6924, + [6925] = 6736, + [6926] = 618, + [6927] = 6731, + [6928] = 6928, + [6929] = 599, + [6930] = 6736, + [6931] = 669, + [6932] = 6705, + [6933] = 3117, + [6934] = 6708, + [6935] = 6701, + [6936] = 6710, + [6937] = 6712, + [6938] = 6714, + [6939] = 6702, + [6940] = 2633, + [6941] = 6718, + [6942] = 583, + [6943] = 6648, + [6944] = 6944, + [6945] = 622, + [6946] = 625, + [6947] = 6167, + [6948] = 6705, + [6949] = 6708, + [6950] = 6710, + [6951] = 6813, + [6952] = 6712, + [6953] = 663, + [6954] = 6714, + [6955] = 6702, + [6956] = 6956, + [6957] = 6718, + [6958] = 6958, + [6959] = 632, + [6960] = 661, + [6961] = 631, + [6962] = 6924, + [6963] = 6683, + [6964] = 6705, + [6965] = 6944, + [6966] = 666, + [6967] = 6708, + [6968] = 6701, + [6969] = 6710, + [6970] = 6712, + [6971] = 6714, + [6972] = 6702, + [6973] = 6973, + [6974] = 6718, + [6975] = 6295, + [6976] = 591, + [6977] = 6977, + [6978] = 6708, + [6979] = 6979, + [6980] = 6871, + [6981] = 6981, + [6982] = 6701, + [6983] = 2646, + [6984] = 6830, [6985] = 6985, - [6986] = 3061, - [6987] = 621, - [6988] = 6713, - [6989] = 6202, - [6990] = 6714, - [6991] = 6169, - [6992] = 6717, - [6993] = 6713, - [6994] = 6994, - [6995] = 622, - [6996] = 6712, - [6997] = 6716, - [6998] = 623, - [6999] = 6719, - [7000] = 6720, - [7001] = 6721, - [7002] = 6722, - [7003] = 6723, - [7004] = 6711, - [7005] = 6725, - [7006] = 558, - [7007] = 6664, - [7008] = 597, - [7009] = 598, - [7010] = 6714, - [7011] = 601, - [7012] = 6812, - [7013] = 602, - [7014] = 3127, - [7015] = 612, - [7016] = 613, - [7017] = 603, - [7018] = 6985, - [7019] = 7019, - [7020] = 1629, - [7021] = 6251, - [7022] = 604, - [7023] = 6840, + [6986] = 6725, + [6987] = 664, + [6988] = 6705, + [6989] = 612, + [6990] = 638, + [6991] = 6731, + [6992] = 1639, + [6993] = 6718, + [6994] = 2635, + [6995] = 596, + [6996] = 6996, + [6997] = 6703, + [6998] = 6833, + [6999] = 6736, + [7000] = 7000, + [7001] = 6736, + [7002] = 6705, + [7003] = 585, + [7004] = 584, + [7005] = 7005, + [7006] = 608, + [7007] = 6871, + [7008] = 6708, + [7009] = 7009, + [7010] = 6701, + [7011] = 6712, + [7012] = 6710, + [7013] = 3081, + [7014] = 624, + [7015] = 6712, + [7016] = 6956, + [7017] = 665, + [7018] = 6714, + [7019] = 6702, + [7020] = 7020, + [7021] = 6883, + [7022] = 6239, + [7023] = 7023, [7024] = 7024, - [7025] = 649, - [7026] = 6170, - [7027] = 7027, - [7028] = 7028, - [7029] = 6725, - [7030] = 6598, - [7031] = 6714, - [7032] = 6883, - [7033] = 663, - [7034] = 6240, - [7035] = 6949, + [7025] = 6888, + [7026] = 6240, + [7027] = 3124, + [7028] = 6184, + [7029] = 7029, + [7030] = 385, + [7031] = 6718, + [7032] = 1659, + [7033] = 6705, + [7034] = 7034, + [7035] = 7035, [7036] = 7036, - [7037] = 624, - [7038] = 6241, - [7039] = 6912, - [7040] = 6631, - [7041] = 6245, - [7042] = 6246, - [7043] = 2634, - [7044] = 6247, - [7045] = 7045, - [7046] = 7046, - [7047] = 6717, - [7048] = 620, - [7049] = 637, + [7037] = 7037, + [7038] = 371, + [7039] = 655, + [7040] = 615, + [7041] = 7020, + [7042] = 621, + [7043] = 332, + [7044] = 7044, + [7045] = 6898, + [7046] = 6710, + [7047] = 646, + [7048] = 373, + [7049] = 6979, [7050] = 7050, - [7051] = 605, - [7052] = 606, - [7053] = 607, - [7054] = 6637, - [7055] = 608, - [7056] = 7056, - [7057] = 6731, - [7058] = 7050, - [7059] = 6722, - [7060] = 7060, - [7061] = 650, - [7062] = 7062, - [7063] = 6260, - [7064] = 1142, - [7065] = 1562, + [7051] = 6792, + [7052] = 374, + [7053] = 6806, + [7054] = 6705, + [7055] = 6731, + [7056] = 626, + [7057] = 7057, + [7058] = 613, + [7059] = 627, + [7060] = 6901, + [7061] = 6714, + [7062] = 645, + [7063] = 6586, + [7064] = 7057, + [7065] = 6702, [7066] = 7066, - [7067] = 370, - [7068] = 638, - [7069] = 371, - [7070] = 6809, - [7071] = 6825, - [7072] = 6813, - [7073] = 641, - [7074] = 6723, - [7075] = 373, - [7076] = 7066, - [7077] = 6711, - [7078] = 6194, - [7079] = 382, - [7080] = 7080, - [7081] = 7081, - [7082] = 6195, - [7083] = 6836, - [7084] = 6837, - [7085] = 6731, - [7086] = 618, - [7087] = 619, - [7088] = 6842, - [7089] = 6722, - [7090] = 6840, + [7067] = 6883, + [7068] = 361, + [7069] = 6888, + [7070] = 7070, + [7071] = 648, + [7072] = 6898, + [7073] = 6901, + [7074] = 504, + [7075] = 6418, + [7076] = 6181, + [7077] = 6908, + [7078] = 499, + [7079] = 1719, + [7080] = 6912, + [7081] = 637, + [7082] = 7044, + [7083] = 7083, + [7084] = 6188, + [7085] = 7009, + [7086] = 6703, + [7087] = 6164, + [7088] = 6193, + [7089] = 2609, + [7090] = 6249, [7091] = 6261, - [7092] = 6842, - [7093] = 625, - [7094] = 6784, - [7095] = 626, - [7096] = 6789, - [7097] = 665, - [7098] = 6262, - [7099] = 6717, - [7100] = 6719, - [7101] = 7101, - [7102] = 6719, - [7103] = 6720, - [7104] = 6721, + [7092] = 6192, + [7093] = 654, + [7094] = 6262, + [7095] = 6705, + [7096] = 6708, + [7097] = 6701, + [7098] = 6710, + [7099] = 6712, + [7100] = 6714, + [7101] = 6702, + [7102] = 6731, + [7103] = 6718, + [7104] = 6908, [7105] = 7105, - [7106] = 6722, - [7107] = 6723, - [7108] = 6723, - [7109] = 6711, - [7110] = 6711, - [7111] = 6713, - [7112] = 6725, - [7113] = 7060, - [7114] = 6196, - [7115] = 6720, - [7116] = 6197, - [7117] = 6985, - [7118] = 627, - [7119] = 7046, - [7120] = 6714, - [7121] = 7121, - [7122] = 7056, - [7123] = 644, - [7124] = 7060, - [7125] = 6717, - [7126] = 7062, - [7127] = 6207, - [7128] = 7066, - [7129] = 7129, - [7130] = 7046, - [7131] = 1642, - [7132] = 7132, - [7133] = 5666, - [7134] = 6683, - [7135] = 503, - [7136] = 7136, - [7137] = 6266, - [7138] = 4559, - [7139] = 5696, - [7140] = 6717, - [7141] = 657, - [7142] = 6198, - [7143] = 6719, - [7144] = 4720, - [7145] = 7145, - [7146] = 497, - [7147] = 6720, - [7148] = 6721, - [7149] = 6616, - [7150] = 6218, - [7151] = 2622, - [7152] = 6985, - [7153] = 7046, - [7154] = 6617, - [7155] = 7056, - [7156] = 7060, - [7157] = 7062, - [7158] = 7066, - [7159] = 6722, - [7160] = 590, - [7161] = 6985, - [7162] = 6721, - [7163] = 7046, - [7164] = 6723, - [7165] = 6711, - [7166] = 7056, - [7167] = 7060, - [7168] = 7062, - [7169] = 7066, - [7170] = 6985, - [7171] = 7062, - [7172] = 7046, - [7173] = 6203, - [7174] = 7056, - [7175] = 7060, - [7176] = 7062, - [7177] = 7066, - [7178] = 6985, - [7179] = 6725, - [7180] = 7046, - [7181] = 7027, - [7182] = 7056, - [7183] = 7060, - [7184] = 7062, - [7185] = 7066, - [7186] = 6985, - [7187] = 7187, - [7188] = 671, - [7189] = 7046, - [7190] = 7190, - [7191] = 7056, - [7192] = 7060, - [7193] = 7062, - [7194] = 7066, - [7195] = 6985, - [7196] = 645, - [7197] = 7197, - [7198] = 7046, - [7199] = 6292, - [7200] = 7056, - [7201] = 7060, - [7202] = 500, - [7203] = 7062, - [7204] = 7066, - [7205] = 6985, - [7206] = 7056, - [7207] = 6639, - [7208] = 7046, - [7209] = 3060, - [7210] = 501, - [7211] = 7056, - [7212] = 7060, - [7213] = 7062, - [7214] = 7066, - [7215] = 6985, - [7216] = 609, - [7217] = 7046, - [7218] = 7218, - [7219] = 7056, - [7220] = 7060, - [7221] = 6618, - [7222] = 7062, - [7223] = 7066, - [7224] = 6985, - [7225] = 7225, - [7226] = 7226, - [7227] = 7046, - [7228] = 7228, - [7229] = 7056, - [7230] = 7060, - [7231] = 7062, - [7232] = 7066, - [7233] = 6985, - [7234] = 7234, - [7235] = 7046, - [7236] = 7236, - [7237] = 7056, - [7238] = 7060, - [7239] = 7062, - [7240] = 7066, - [7241] = 6985, - [7242] = 7046, - [7243] = 6619, - [7244] = 7056, - [7245] = 7060, - [7246] = 7062, - [7247] = 7066, - [7248] = 6985, - [7249] = 7046, - [7250] = 559, - [7251] = 7056, - [7252] = 7060, - [7253] = 7062, - [7254] = 7066, - [7255] = 6985, - [7256] = 7046, - [7257] = 7056, - [7258] = 7060, - [7259] = 3176, - [7260] = 7062, - [7261] = 7066, - [7262] = 6985, - [7263] = 7046, - [7264] = 6809, - [7265] = 7056, - [7266] = 7060, - [7267] = 7062, - [7268] = 7066, - [7269] = 6985, - [7270] = 7046, - [7271] = 7056, - [7272] = 7060, - [7273] = 2627, - [7274] = 7062, - [7275] = 7066, - [7276] = 7276, + [7106] = 7009, + [7107] = 6165, + [7108] = 7037, + [7109] = 6912, + [7110] = 7034, + [7111] = 7111, + [7112] = 656, + [7113] = 4636, + [7114] = 7044, + [7115] = 6979, + [7116] = 7116, + [7117] = 7050, + [7118] = 7118, + [7119] = 505, + [7120] = 6210, + [7121] = 6703, + [7122] = 4637, + [7123] = 7057, + [7124] = 7124, + [7125] = 6208, + [7126] = 6209, + [7127] = 2636, + [7128] = 7128, + [7129] = 2639, + [7130] = 6718, + [7131] = 6736, + [7132] = 597, + [7133] = 6705, + [7134] = 6871, + [7135] = 7023, + [7136] = 7009, + [7137] = 7050, + [7138] = 7034, + [7139] = 6708, + [7140] = 6701, + [7141] = 6710, + [7142] = 7044, + [7143] = 6979, + [7144] = 7050, + [7145] = 7057, + [7146] = 7009, + [7147] = 598, + [7148] = 600, + [7149] = 7034, + [7150] = 501, + [7151] = 6712, + [7152] = 7044, + [7153] = 6979, + [7154] = 7050, + [7155] = 7057, + [7156] = 7009, + [7157] = 7034, + [7158] = 7034, + [7159] = 7044, + [7160] = 6979, + [7161] = 6714, + [7162] = 7050, + [7163] = 7057, + [7164] = 7009, + [7165] = 6702, + [7166] = 7034, + [7167] = 7167, + [7168] = 7044, + [7169] = 6979, + [7170] = 7050, + [7171] = 7057, + [7172] = 7009, + [7173] = 6172, + [7174] = 6316, + [7175] = 7034, + [7176] = 6718, + [7177] = 1724, + [7178] = 7044, + [7179] = 6979, + [7180] = 7050, + [7181] = 7057, + [7182] = 7009, + [7183] = 610, + [7184] = 7034, + [7185] = 611, + [7186] = 7044, + [7187] = 6979, + [7188] = 7111, + [7189] = 7050, + [7190] = 7057, + [7191] = 7009, + [7192] = 504, + [7193] = 505, + [7194] = 7034, + [7195] = 617, + [7196] = 668, + [7197] = 7044, + [7198] = 6979, + [7199] = 501, + [7200] = 7050, + [7201] = 7057, + [7202] = 7009, + [7203] = 198, + [7204] = 622, + [7205] = 7034, + [7206] = 6610, + [7207] = 308, + [7208] = 7044, + [7209] = 6979, + [7210] = 6435, + [7211] = 7050, + [7212] = 7057, + [7213] = 7009, + [7214] = 7034, + [7215] = 6182, + [7216] = 6556, + [7217] = 7044, + [7218] = 6979, + [7219] = 7050, + [7220] = 7057, + [7221] = 7009, + [7222] = 6183, + [7223] = 6560, + [7224] = 7034, + [7225] = 6561, + [7226] = 7044, + [7227] = 6979, + [7228] = 7050, + [7229] = 7057, + [7230] = 7009, + [7231] = 7034, + [7232] = 6779, + [7233] = 7044, + [7234] = 6979, + [7235] = 7050, + [7236] = 7057, + [7237] = 7009, + [7238] = 7034, + [7239] = 7044, + [7240] = 6979, + [7241] = 6706, + [7242] = 7050, + [7243] = 7057, + [7244] = 7009, + [7245] = 7034, + [7246] = 7044, + [7247] = 6979, + [7248] = 7050, + [7249] = 7057, + [7250] = 7009, + [7251] = 7034, + [7252] = 3023, + [7253] = 7044, + [7254] = 6979, + [7255] = 7050, + [7256] = 7057, + [7257] = 7009, + [7258] = 7034, + [7259] = 6721, + [7260] = 7044, + [7261] = 6979, + [7262] = 6173, + [7263] = 7050, + [7264] = 7057, + [7265] = 6712, + [7266] = 670, + [7267] = 6211, + [7268] = 7268, + [7269] = 6731, + [7270] = 7270, + [7271] = 6731, + [7272] = 588, + [7273] = 6212, + [7274] = 7274, + [7275] = 7105, + [7276] = 6483, [7277] = 7277, - [7278] = 6267, - [7279] = 3158, - [7280] = 3183, - [7281] = 3168, - [7282] = 6668, - [7283] = 2631, - [7284] = 7284, - [7285] = 356, + [7278] = 3171, + [7279] = 3187, + [7280] = 3188, + [7281] = 6714, + [7282] = 3178, + [7283] = 660, + [7284] = 1187, + [7285] = 6736, [7286] = 7286, - [7287] = 6731, - [7288] = 7190, - [7289] = 3149, - [7290] = 6813, - [7291] = 3088, - [7292] = 6815, - [7293] = 6731, + [7287] = 7287, + [7288] = 1751, + [7289] = 7289, + [7290] = 7290, + [7291] = 636, + [7292] = 7292, + [7293] = 7293, [7294] = 7294, - [7295] = 7295, - [7296] = 7296, - [7297] = 6888, - [7298] = 7298, + [7295] = 1719, + [7296] = 201, + [7297] = 7293, + [7298] = 7294, [7299] = 7299, [7300] = 7300, [7301] = 7301, - [7302] = 382, + [7302] = 7299, [7303] = 7303, - [7304] = 7298, - [7305] = 7305, + [7304] = 7304, + [7305] = 3117, [7306] = 7306, [7307] = 7307, - [7308] = 7308, - [7309] = 7309, - [7310] = 7310, - [7311] = 7298, - [7312] = 7309, - [7313] = 7305, - [7314] = 7299, - [7315] = 7308, - [7316] = 7309, - [7317] = 7317, - [7318] = 7298, + [7308] = 7307, + [7309] = 151, + [7310] = 4737, + [7311] = 7311, + [7312] = 7312, + [7313] = 7311, + [7314] = 4687, + [7315] = 7303, + [7316] = 7304, + [7317] = 7301, + [7318] = 7318, [7319] = 7319, - [7320] = 7320, - [7321] = 7321, + [7320] = 2117, + [7321] = 150, [7322] = 7322, [7323] = 7323, - [7324] = 7324, - [7325] = 1651, - [7326] = 3061, - [7327] = 7306, - [7328] = 7307, + [7324] = 152, + [7325] = 7325, + [7326] = 7299, + [7327] = 7327, + [7328] = 7328, [7329] = 7329, - [7330] = 7323, - [7331] = 7331, - [7332] = 7305, - [7333] = 7333, - [7334] = 7305, - [7335] = 7335, - [7336] = 1629, - [7337] = 7337, - [7338] = 7306, + [7330] = 7118, + [7331] = 1724, + [7332] = 7332, + [7333] = 385, + [7334] = 2119, + [7335] = 373, + [7336] = 7336, + [7337] = 7318, + [7338] = 1985, [7339] = 7339, - [7340] = 7340, + [7340] = 7332, [7341] = 7341, - [7342] = 7342, - [7343] = 4620, - [7344] = 7300, - [7345] = 7307, - [7346] = 7335, - [7347] = 3292, + [7342] = 7332, + [7343] = 7343, + [7344] = 7344, + [7345] = 7345, + [7346] = 3141, + [7347] = 7347, [7348] = 7348, - [7349] = 4943, - [7350] = 3293, + [7349] = 7293, + [7350] = 7350, [7351] = 7351, [7352] = 7352, - [7353] = 7353, - [7354] = 7354, - [7355] = 4707, - [7356] = 588, - [7357] = 371, - [7358] = 7358, + [7353] = 7287, + [7354] = 3279, + [7355] = 7294, + [7356] = 7350, + [7357] = 7357, + [7358] = 634, [7359] = 7359, - [7360] = 7360, + [7360] = 642, [7361] = 7361, [7362] = 7362, - [7363] = 7360, - [7364] = 2112, - [7365] = 7365, - [7366] = 673, - [7367] = 7351, - [7368] = 7358, + [7363] = 7318, + [7364] = 7364, + [7365] = 7327, + [7366] = 1659, + [7367] = 7367, + [7368] = 7368, [7369] = 7369, - [7370] = 7306, - [7371] = 7307, - [7372] = 201, - [7373] = 2129, - [7374] = 3059, - [7375] = 7310, - [7376] = 7321, - [7377] = 7323, - [7378] = 7299, - [7379] = 7339, - [7380] = 1723, - [7381] = 7299, - [7382] = 370, - [7383] = 672, - [7384] = 7300, + [7370] = 4959, + [7371] = 507, + [7372] = 7372, + [7373] = 7373, + [7374] = 4702, + [7375] = 643, + [7376] = 7373, + [7377] = 628, + [7378] = 7378, + [7379] = 3111, + [7380] = 374, + [7381] = 7287, + [7382] = 7293, + [7383] = 7294, + [7384] = 639, [7385] = 7385, - [7386] = 7386, - [7387] = 7387, - [7388] = 2151, - [7389] = 7389, - [7390] = 3088, - [7391] = 7386, - [7392] = 7392, - [7393] = 7299, - [7394] = 7369, - [7395] = 7298, - [7396] = 7358, - [7397] = 3127, - [7398] = 7300, - [7399] = 7305, - [7400] = 503, - [7401] = 7401, - [7402] = 7323, - [7403] = 7403, - [7404] = 7369, - [7405] = 152, - [7406] = 7339, - [7407] = 7339, - [7408] = 7298, - [7409] = 7358, - [7410] = 7308, - [7411] = 7411, - [7412] = 7323, - [7413] = 497, - [7414] = 7323, - [7415] = 528, - [7416] = 7392, - [7417] = 7417, - [7418] = 628, - [7419] = 7322, - [7420] = 7342, - [7421] = 7421, - [7422] = 7422, - [7423] = 7341, - [7424] = 7309, + [7386] = 7318, + [7387] = 7301, + [7388] = 7327, + [7389] = 2130, + [7390] = 7301, + [7391] = 7299, + [7392] = 7287, + [7393] = 7301, + [7394] = 7318, + [7395] = 7395, + [7396] = 7299, + [7397] = 7318, + [7398] = 2048, + [7399] = 3124, + [7400] = 7400, + [7401] = 7299, + [7402] = 7303, + [7403] = 7304, + [7404] = 7287, + [7405] = 7405, + [7406] = 3280, + [7407] = 7307, + [7408] = 7311, + [7409] = 7409, + [7410] = 7410, + [7411] = 507, + [7412] = 501, + [7413] = 7293, + [7414] = 7327, + [7415] = 3101, + [7416] = 7405, + [7417] = 7348, + [7418] = 499, + [7419] = 7294, + [7420] = 7328, + [7421] = 504, + [7422] = 7301, + [7423] = 2108, + [7424] = 629, [7425] = 7425, - [7426] = 7361, - [7427] = 7427, - [7428] = 7428, - [7429] = 7427, - [7430] = 7430, - [7431] = 7353, - [7432] = 7432, - [7433] = 2123, + [7426] = 505, + [7427] = 7303, + [7428] = 7304, + [7429] = 7306, + [7430] = 7307, + [7431] = 7431, + [7432] = 7311, + [7433] = 7433, [7434] = 7434, - [7435] = 7301, - [7436] = 2126, - [7437] = 503, - [7438] = 667, - [7439] = 7439, - [7440] = 7305, - [7441] = 1642, - [7442] = 7401, - [7443] = 6766, - [7444] = 4914, - [7445] = 7308, - [7446] = 500, - [7447] = 7299, - [7448] = 7448, - [7449] = 501, - [7450] = 7300, + [7435] = 7435, + [7436] = 7436, + [7437] = 7400, + [7438] = 7359, + [7439] = 7345, + [7440] = 7440, + [7441] = 7409, + [7442] = 7433, + [7443] = 7367, + [7444] = 7293, + [7445] = 7294, + [7446] = 7431, + [7447] = 7447, + [7448] = 7329, + [7449] = 371, + [7450] = 7364, [7451] = 7451, [7452] = 7452, - [7453] = 7358, + [7453] = 7453, [7454] = 7454, [7455] = 7455, - [7456] = 3075, - [7457] = 151, - [7458] = 668, - [7459] = 150, + [7456] = 7456, + [7457] = 7457, + [7458] = 7458, + [7459] = 480, [7460] = 7460, - [7461] = 373, - [7462] = 2153, - [7463] = 666, - [7464] = 7300, + [7461] = 7461, + [7462] = 7462, + [7463] = 7458, + [7464] = 7458, [7465] = 7465, [7466] = 7466, [7467] = 7467, - [7468] = 657, + [7468] = 7468, [7469] = 7469, - [7470] = 7470, - [7471] = 7466, + [7470] = 7467, + [7471] = 7471, [7472] = 7472, - [7473] = 7473, - [7474] = 7474, - [7475] = 7475, - [7476] = 7476, + [7473] = 7453, + [7474] = 7458, + [7475] = 7458, + [7476] = 7469, [7477] = 7477, - [7478] = 7478, - [7479] = 7472, - [7480] = 7480, - [7481] = 7478, + [7478] = 7455, + [7479] = 7461, + [7480] = 7472, + [7481] = 7481, [7482] = 7482, - [7483] = 7480, + [7483] = 7458, [7484] = 7484, - [7485] = 7485, - [7486] = 7474, + [7485] = 7460, + [7486] = 7461, [7487] = 7487, - [7488] = 7488, - [7489] = 7484, - [7490] = 7466, - [7491] = 7474, - [7492] = 444, - [7493] = 7485, + [7488] = 7471, + [7489] = 7460, + [7490] = 7472, + [7491] = 7458, + [7492] = 7461, + [7493] = 7466, [7494] = 7494, [7495] = 7495, - [7496] = 7478, - [7497] = 7482, - [7498] = 7465, - [7499] = 7499, - [7500] = 7480, + [7496] = 7458, + [7497] = 7458, + [7498] = 7471, + [7499] = 7467, + [7500] = 7453, [7501] = 7501, - [7502] = 7484, - [7503] = 7474, - [7504] = 7485, - [7505] = 7487, - [7506] = 7506, + [7502] = 7502, + [7503] = 7503, + [7504] = 7502, + [7505] = 7505, + [7506] = 7466, [7507] = 7507, - [7508] = 7508, - [7509] = 7487, + [7508] = 7453, + [7509] = 7509, [7510] = 7510, - [7511] = 7511, + [7511] = 7503, [7512] = 7512, - [7513] = 7513, - [7514] = 7514, - [7515] = 7494, - [7516] = 7469, - [7517] = 7517, + [7513] = 7458, + [7514] = 479, + [7515] = 7453, + [7516] = 7509, + [7517] = 7466, [7518] = 7518, - [7519] = 7466, - [7520] = 7499, - [7521] = 7467, - [7522] = 7487, - [7523] = 7465, - [7524] = 7473, - [7525] = 7525, - [7526] = 7513, - [7527] = 7485, - [7528] = 7470, - [7529] = 7487, - [7530] = 7477, - [7531] = 7499, - [7532] = 7513, - [7533] = 7469, - [7534] = 7499, - [7535] = 7469, - [7536] = 7536, - [7537] = 7537, - [7538] = 7513, - [7539] = 7506, - [7540] = 7466, + [7519] = 7467, + [7520] = 7520, + [7521] = 7503, + [7522] = 7522, + [7523] = 7469, + [7524] = 7510, + [7525] = 7472, + [7526] = 7453, + [7527] = 7467, + [7528] = 7528, + [7529] = 7529, + [7530] = 7530, + [7531] = 7469, + [7532] = 7462, + [7533] = 7533, + [7534] = 7534, + [7535] = 7535, + [7536] = 7501, + [7537] = 7461, + [7538] = 7458, + [7539] = 7512, + [7540] = 7457, [7541] = 7541, - [7542] = 7542, - [7543] = 7494, - [7544] = 7513, - [7545] = 7469, - [7546] = 7494, - [7547] = 7499, - [7548] = 7465, - [7549] = 7474, - [7550] = 7478, - [7551] = 7517, - [7552] = 7487, - [7553] = 7487, - [7554] = 7554, + [7542] = 7530, + [7543] = 7543, + [7544] = 7544, + [7545] = 7472, + [7546] = 7471, + [7547] = 7547, + [7548] = 7548, + [7549] = 7549, + [7550] = 7458, + [7551] = 7460, + [7552] = 7458, + [7553] = 7466, + [7554] = 7457, [7555] = 7555, - [7556] = 7499, - [7557] = 7475, - [7558] = 7512, - [7559] = 7485, - [7560] = 7467, - [7561] = 7561, - [7562] = 7562, - [7563] = 7506, - [7564] = 7499, - [7565] = 7473, - [7566] = 7474, - [7567] = 7537, - [7568] = 7466, - [7569] = 7478, - [7570] = 7480, - [7571] = 7485, - [7572] = 7513, + [7556] = 7467, + [7557] = 7469, + [7558] = 7453, + [7559] = 7559, + [7560] = 7453, + [7561] = 7460, + [7562] = 7555, + [7563] = 7461, + [7564] = 7471, + [7565] = 7471, + [7566] = 7472, + [7567] = 7567, + [7568] = 7460, + [7569] = 637, + [7570] = 7570, + [7571] = 7509, + [7572] = 7535, [7573] = 7573, - [7574] = 7574, - [7575] = 7511, - [7576] = 7576, - [7577] = 7487, - [7578] = 7485, - [7579] = 7579, - [7580] = 7580, - [7581] = 7480, - [7582] = 7582, - [7583] = 7499, - [7584] = 7584, - [7585] = 656, - [7586] = 7472, - [7587] = 7579, - [7588] = 7588, - [7589] = 7473, - [7590] = 7487, - [7591] = 7591, - [7592] = 7592, - [7593] = 7467, - [7594] = 7594, - [7595] = 7474, - [7596] = 444, - [7597] = 7474, - [7598] = 7598, - [7599] = 7599, - [7600] = 7555, - [7601] = 7469, - [7602] = 7319, - [7603] = 7467, - [7604] = 7499, - [7605] = 7555, - [7606] = 7465, - [7607] = 7607, + [7574] = 7535, + [7575] = 7575, + [7576] = 7530, + [7577] = 7458, + [7578] = 7461, + [7579] = 7471, + [7580] = 7509, + [7581] = 7581, + [7582] = 7458, + [7583] = 7530, + [7584] = 7547, + [7585] = 7585, + [7586] = 7509, + [7587] = 7585, + [7588] = 7502, + [7589] = 7461, + [7590] = 7503, + [7591] = 7471, + [7592] = 7543, + [7593] = 7501, + [7594] = 7502, + [7595] = 7510, + [7596] = 7512, + [7597] = 7503, + [7598] = 7581, + [7599] = 7581, + [7600] = 7548, + [7601] = 7466, + [7602] = 7458, + [7603] = 7458, + [7604] = 7604, + [7605] = 7510, + [7606] = 7469, + [7607] = 7548, [7608] = 7608, - [7609] = 7517, - [7610] = 7474, - [7611] = 7484, - [7612] = 7466, - [7613] = 7478, - [7614] = 7614, - [7615] = 7480, - [7616] = 445, - [7617] = 7467, - [7618] = 7484, - [7619] = 7485, - [7620] = 7506, - [7621] = 7474, - [7622] = 7488, - [7623] = 7474, - [7624] = 7624, - [7625] = 7625, - [7626] = 7506, - [7627] = 7465, - [7628] = 7517, - [7629] = 7517, - [7630] = 7474, + [7609] = 7461, + [7610] = 7466, + [7611] = 7611, + [7612] = 7458, + [7613] = 7466, + [7614] = 7501, + [7615] = 7467, + [7616] = 7512, + [7617] = 7510, + [7618] = 7467, + [7619] = 7619, + [7620] = 7520, + [7621] = 7469, + [7622] = 7453, + [7623] = 7458, + [7624] = 7466, + [7625] = 7467, + [7626] = 7472, + [7627] = 7469, + [7628] = 7466, + [7629] = 7501, + [7630] = 7512, [7631] = 7631, - [7632] = 7466, - [7633] = 7478, - [7634] = 7584, - [7635] = 7480, - [7636] = 7485, - [7637] = 7637, - [7638] = 7466, - [7639] = 7506, - [7640] = 7561, - [7641] = 7474, - [7642] = 7517, - [7643] = 7472, - [7644] = 7470, - [7645] = 7478, - [7646] = 7499, - [7647] = 7485, - [7648] = 7480, - [7649] = 7649, - [7650] = 7484, - [7651] = 7485, - [7652] = 7652, - [7653] = 7474, - [7654] = 7474, - [7655] = 7465, - [7656] = 7517, - [7657] = 7487, - [7658] = 7518, - [7659] = 7474, - [7660] = 7469, - [7661] = 7537, - [7662] = 7554, - [7663] = 7480, - [7664] = 7664, - [7665] = 7513, - [7666] = 7494, - [7667] = 7474, - [7668] = 7465, - [7669] = 7517, - [7670] = 7466, - [7671] = 7671, - [7672] = 7536, - [7673] = 7469, - [7674] = 7674, - [7675] = 7474, + [7632] = 7632, + [7633] = 7633, + [7634] = 7469, + [7635] = 7453, + [7636] = 7581, + [7637] = 7472, + [7638] = 7530, + [7639] = 7453, + [7640] = 479, + [7641] = 7471, + [7642] = 7471, + [7643] = 7501, + [7644] = 7512, + [7645] = 7467, + [7646] = 7646, + [7647] = 7501, + [7648] = 7585, + [7649] = 7510, + [7650] = 7544, + [7651] = 7469, + [7652] = 7472, + [7653] = 7534, + [7654] = 7559, + [7655] = 7512, + [7656] = 7501, + [7657] = 7512, + [7658] = 7453, + [7659] = 7458, + [7660] = 7457, + [7661] = 7619, + [7662] = 7460, + [7663] = 7460, + [7664] = 7518, + [7665] = 7461, + [7666] = 7666, + [7667] = 7471, + [7668] = 7668, + [7669] = 7501, + [7670] = 7512, + [7671] = 622, + [7672] = 7672, + [7673] = 480, + [7674] = 7522, + [7675] = 7675, [7676] = 7676, - [7677] = 7499, - [7678] = 7513, - [7679] = 7513, - [7680] = 7680, - [7681] = 7465, - [7682] = 7517, - [7683] = 7469, - [7684] = 445, + [7677] = 7677, + [7678] = 7503, + [7679] = 7458, + [7680] = 7467, + [7681] = 7469, + [7682] = 7501, + [7683] = 7512, + [7684] = 7518, [7685] = 7685, - [7686] = 7474, - [7687] = 7478, - [7688] = 7484, - [7689] = 7480, - [7690] = 7690, - [7691] = 7499, - [7692] = 7477, - [7693] = 7472, - [7694] = 7465, - [7695] = 7517, - [7696] = 7474, - [7697] = 7499, - [7698] = 7478, - [7699] = 7480, - [7700] = 7518, - [7701] = 7484, - [7702] = 7702, - [7703] = 7485, + [7686] = 7686, + [7687] = 7467, + [7688] = 7688, + [7689] = 7471, + [7690] = 7518, + [7691] = 7691, + [7692] = 7692, + [7693] = 7458, + [7694] = 7503, + [7695] = 7501, + [7696] = 7512, + [7697] = 7505, + [7698] = 7535, + [7699] = 7699, + [7700] = 7535, + [7701] = 7543, + [7702] = 7460, + [7703] = 7460, [7704] = 7704, - [7705] = 7487, - [7706] = 7487, - [7707] = 7465, - [7708] = 7517, - [7709] = 7709, - [7710] = 7710, - [7711] = 7513, - [7712] = 7474, - [7713] = 7469, - [7714] = 7466, - [7715] = 7472, - [7716] = 7478, - [7717] = 7466, - [7718] = 7494, - [7719] = 7487, - [7720] = 7465, - [7721] = 7517, - [7722] = 7472, - [7723] = 7592, - [7724] = 7724, - [7725] = 7477, - [7726] = 7474, - [7727] = 7499, - [7728] = 7478, - [7729] = 7480, - [7730] = 7730, - [7731] = 7731, - [7732] = 7478, - [7733] = 7465, - [7734] = 7517, - [7735] = 7513, - [7736] = 7499, - [7737] = 7469, - [7738] = 7480, - [7739] = 7474, - [7740] = 7740, + [7705] = 7469, + [7706] = 7692, + [7707] = 7461, + [7708] = 7501, + [7709] = 7512, + [7710] = 7471, + [7711] = 7711, + [7712] = 7460, + [7713] = 479, + [7714] = 7461, + [7715] = 7535, + [7716] = 7471, + [7717] = 7458, + [7718] = 7458, + [7719] = 7467, + [7720] = 7469, + [7721] = 7501, + [7722] = 7512, + [7723] = 7544, + [7724] = 7471, + [7725] = 7460, + [7726] = 7471, + [7727] = 7727, + [7728] = 7458, + [7729] = 7729, + [7730] = 7461, + [7731] = 7456, + [7732] = 7471, + [7733] = 7528, + [7734] = 7501, + [7735] = 7512, + [7736] = 7385, + [7737] = 7503, + [7738] = 7738, + [7739] = 7503, + [7740] = 7677, [7741] = 7741, - [7742] = 7480, - [7743] = 7513, - [7744] = 7484, - [7745] = 7485, - [7746] = 7465, - [7747] = 7517, - [7748] = 7499, - [7749] = 7469, - [7750] = 444, - [7751] = 7484, - [7752] = 7485, - [7753] = 7674, - [7754] = 7754, - [7755] = 7474, - [7756] = 7465, - [7757] = 7517, - [7758] = 7484, - [7759] = 7537, - [7760] = 7482, - [7761] = 7608, - [7762] = 7709, - [7763] = 7562, - [7764] = 7474, - [7765] = 7506, - [7766] = 7465, - [7767] = 7494, - [7768] = 7474, - [7769] = 7525, - [7770] = 7478, - [7771] = 7480, - [7772] = 7467, - [7773] = 7512, - [7774] = 7499, - [7775] = 7465, - [7776] = 7541, - [7777] = 7474, - [7778] = 7474, - [7779] = 7584, - [7780] = 7474, - [7781] = 7474, - [7782] = 7782, - [7783] = 7709, - [7784] = 7465, - [7785] = 7499, - [7786] = 7786, - [7787] = 7554, - [7788] = 7470, - [7789] = 7472, - [7790] = 7474, - [7791] = 7791, - [7792] = 7474, - [7793] = 7465, - [7794] = 7465, - [7795] = 7465, - [7796] = 7465, - [7797] = 7465, - [7798] = 7465, - [7799] = 7465, - [7800] = 7465, - [7801] = 7465, - [7802] = 7465, + [7742] = 7742, + [7743] = 7548, + [7744] = 7501, + [7745] = 7512, + [7746] = 7530, + [7747] = 7530, + [7748] = 7462, + [7749] = 7503, + [7750] = 7458, + [7751] = 7751, + [7752] = 7458, + [7753] = 7458, + [7754] = 7501, + [7755] = 7457, + [7756] = 7466, + [7757] = 7458, + [7758] = 7458, + [7759] = 7467, + [7760] = 7522, + [7761] = 7469, + [7762] = 7510, + [7763] = 7501, + [7764] = 7467, + [7765] = 7471, + [7766] = 7530, + [7767] = 480, + [7768] = 7509, + [7769] = 7466, + [7770] = 7469, + [7771] = 7458, + [7772] = 7501, + [7773] = 7510, + [7774] = 7472, + [7775] = 7471, + [7776] = 7467, + [7777] = 7777, + [7778] = 7503, + [7779] = 7458, + [7780] = 7780, + [7781] = 7501, + [7782] = 7501, + [7783] = 7501, + [7784] = 7501, + [7785] = 7501, + [7786] = 7501, + [7787] = 7501, + [7788] = 7501, + [7789] = 7501, + [7790] = 7501, + [7791] = 7501, + [7792] = 7501, + [7793] = 7501, + [7794] = 7501, + [7795] = 7501, + [7796] = 7501, + [7797] = 7501, + [7798] = 7501, + [7799] = 7501, + [7800] = 7501, + [7801] = 7501, + [7802] = 7675, [7803] = 7465, - [7804] = 7465, - [7805] = 7465, - [7806] = 7465, - [7807] = 7465, - [7808] = 7465, - [7809] = 7465, - [7810] = 7465, - [7811] = 7465, - [7812] = 7465, - [7813] = 7465, - [7814] = 7507, - [7815] = 7815, - [7816] = 7730, - [7817] = 7499, - [7818] = 7474, - [7819] = 7474, - [7820] = 7584, - [7821] = 7518, - [7822] = 7740, - [7823] = 7537, - [7824] = 7501, - [7825] = 7731, - [7826] = 7649, - [7827] = 7474, - [7828] = 7512, - [7829] = 7478, - [7830] = 7470, - [7831] = 7499, - [7832] = 7466, - [7833] = 7472, - [7834] = 7466, - [7835] = 7542, - [7836] = 7466, - [7837] = 445, - [7838] = 7472, - [7839] = 7478, - [7840] = 7506, - [7841] = 7480, - [7842] = 7484, - [7843] = 7485, - [7844] = 7513, - [7845] = 7472, - [7846] = 7815, - [7847] = 7477, - [7848] = 7474, - [7849] = 7849, - [7850] = 7474, - [7851] = 7541, - [7852] = 7469, - [7853] = 7478, - [7854] = 7480, - [7855] = 7499, - [7856] = 7478, - [7857] = 7511, - [7858] = 7480, - [7859] = 7474, - [7860] = 7484, - [7861] = 7485, - [7862] = 7494, - [7863] = 7863, - [7864] = 7467, - [7865] = 7865, - [7866] = 7866, - [7867] = 7474, - [7868] = 7506, - [7869] = 7869, - [7870] = 7870, + [7804] = 7458, + [7805] = 7469, + [7806] = 7466, + [7807] = 7458, + [7808] = 7472, + [7809] = 7510, + [7810] = 7471, + [7811] = 7518, + [7812] = 7495, + [7813] = 7548, + [7814] = 7677, + [7815] = 7467, + [7816] = 7816, + [7817] = 7460, + [7818] = 7466, + [7819] = 7510, + [7820] = 7467, + [7821] = 7469, + [7822] = 7672, + [7823] = 7453, + [7824] = 7469, + [7825] = 7507, + [7826] = 7472, + [7827] = 7666, + [7828] = 7453, + [7829] = 7729, + [7830] = 7453, + [7831] = 7608, + [7832] = 7458, + [7833] = 7466, + [7834] = 7472, + [7835] = 7453, + [7836] = 7503, + [7837] = 7691, + [7838] = 7838, + [7839] = 7509, + [7840] = 7510, + [7841] = 7471, + [7842] = 7842, + [7843] = 7535, + [7844] = 7458, + [7845] = 7845, + [7846] = 7522, + [7847] = 7458, + [7848] = 7608, + [7849] = 7509, + [7850] = 7509, + [7851] = 7458, + [7852] = 7535, + [7853] = 7585, + [7854] = 7458, + [7855] = 7855, + [7856] = 7455, + [7857] = 7503, + [7858] = 7858, }; static TSCharacterRange aux_sym_cmd_identifier_token1_character_set_1[] = { @@ -13455,1294 +13447,1314 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(1777); + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5523, - '$', 3725, - '\'', 4087, - '(', 3802, - ')', 3925, - '*', 3085, - '+', 3090, - ',', 3605, - '-', 3091, - '.', 3844, - '/', 3087, - '0', 3287, - ':', 4098, - ';', 3565, - '<', 3108, - '=', 1791, - '>', 3111, - '?', 3629, - '@', 3626, - '[', 4045, - ']', 3602, - '^', 4119, - '_', 3716, + '"', 4089, + '#', 5550, + '$', 3739, + '\'', 4101, + '(', 3816, + ')', 3939, + '*', 3093, + '+', 3098, + ',', 3619, + '-', 3099, + '.', 3858, + '/', 3095, + '0', 3301, + ':', 4116, + ';', 3579, + '<', 3118, + '=', 1795, + '>', 3121, + '?', 3643, + '@', 3640, + '[', 4059, + ']', 3616, + '^', 4137, + '_', 3730, '`', 482, - '{', 3712, - '|', 3566, - '}', 3713, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1673); + lookahead == ' ') SKIP(1677); if (lookahead == '!' || - lookahead == '&') ADVANCE(5328); + lookahead == '&') ADVANCE(5355); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3340); + lookahead == 'i') ADVANCE(3354); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3334); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3288); + lookahead == 'n') ADVANCE(3348); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3302); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(3348); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(3362); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(3562); + if (lookahead == '\n') ADVANCE(3576); END_STATE(); case 2: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 2431, - '"', 4075, - '#', 5521, - '$', 3607, + '!', 2435, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '*', 3770, - '+', 3820, - ',', 3605, - '-', 3647, - '.', 4106, - '/', 3809, - '0', 3958, - ':', 4098, - ';', 3565, - '<', 3791, - '=', 1792, - '>', 3624, - '?', 3772, - 'I', 2846, - 'N', 2839, - '_', 2450, + '(', 3617, + '*', 3780, + '+', 3834, + ',', 3619, + '-', 3661, + '.', 4124, + '/', 3823, + '0', 3972, + ':', 4116, + ';', 3579, + '<', 3805, + '=', 1796, + '>', 3638, + '?', 3782, + 'I', 2854, + 'N', 2847, + '_', 2454, '`', 482, - 'a', 2627, - 'b', 2593, - 'c', 2466, - 'd', 2520, - 'e', 1905, - 'f', 2459, - 'h', 2595, - 'i', 2443, - 'l', 2537, - 'm', 2461, - 'n', 2694, - 'o', 1906, - 'r', 2521, - 's', 2675, - 't', 2714, - 'u', 2756, - 'w', 2585, - 'x', 2683, - '|', 3566, - '}', 3713, + 'a', 2630, + 'b', 2600, + 'c', 2471, + 'd', 2526, + 'e', 1909, + 'f', 2463, + 'h', 2470, + 'i', 2447, + 'l', 2543, + 'm', 2465, + 'n', 2700, + 'o', 1910, + 'r', 2527, + 's', 2681, + 't', 2720, + 'u', 2764, + 'w', 2590, + 'x', 2689, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || lookahead == ' ') SKIP(3); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3981); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2860); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2868); END_STATE(); case 3: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 2431, - '"', 4075, - '#', 5521, - '$', 3607, + '!', 2435, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '*', 3770, - '+', 3820, - ',', 3605, - '-', 3647, - '.', 4107, - '/', 3809, - '0', 3958, - ':', 4098, - ';', 3565, - '<', 3791, - '=', 1792, - '>', 3624, - '?', 3772, - 'I', 2846, - 'N', 2839, - '_', 2450, + '(', 3617, + '*', 3780, + '+', 3834, + ',', 3619, + '-', 3661, + '.', 4125, + '/', 3823, + '0', 3972, + ':', 4116, + ';', 3579, + '<', 3805, + '=', 1796, + '>', 3638, + '?', 3782, + 'I', 2854, + 'N', 2847, + '_', 2454, '`', 482, - 'a', 2627, - 'b', 2593, - 'c', 2466, - 'd', 2520, - 'e', 1905, - 'f', 2459, - 'h', 2595, - 'i', 2443, - 'l', 2537, - 'm', 2461, - 'n', 2694, - 'o', 1906, - 'r', 2521, - 's', 2675, - 't', 2714, - 'u', 2756, - 'w', 2585, - 'x', 2683, - '|', 3566, - '}', 3713, + 'a', 2630, + 'b', 2600, + 'c', 2471, + 'd', 2526, + 'e', 1909, + 'f', 2463, + 'h', 2470, + 'i', 2447, + 'l', 2543, + 'm', 2465, + 'n', 2700, + 'o', 1910, + 'r', 2527, + 's', 2681, + 't', 2720, + 'u', 2764, + 'w', 2590, + 'x', 2689, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || lookahead == ' ') SKIP(3); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3981); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2860); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2868); END_STATE(); case 4: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 2431, - '"', 4075, - '#', 5521, - '$', 3607, + '!', 2435, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '*', 3770, - '+', 3820, - ',', 3605, - '-', 3647, - '.', 2069, - '/', 3809, - '0', 3958, - ':', 4098, - ';', 3565, - '<', 3791, - '=', 1792, - '>', 3624, - 'I', 2846, - 'N', 2839, - '_', 2450, + '(', 3617, + '*', 3780, + '+', 3834, + ',', 3619, + '-', 3661, + '.', 2073, + '/', 3823, + '0', 3972, + ':', 4116, + ';', 3579, + '<', 3805, + '=', 1796, + '>', 3638, + 'I', 2854, + 'N', 2847, + '_', 2454, '`', 482, - 'a', 2627, - 'b', 2593, - 'c', 2466, - 'd', 2520, - 'e', 1905, - 'f', 2459, - 'h', 2595, - 'i', 2443, - 'l', 2537, - 'm', 2461, - 'n', 2694, - 'o', 1906, - 'r', 2521, - 's', 2675, - 't', 2714, - 'u', 2756, - 'w', 2585, - 'x', 2683, - '|', 3566, - '}', 3713, + 'a', 2630, + 'b', 2600, + 'c', 2471, + 'd', 2526, + 'e', 1909, + 'f', 2463, + 'h', 2470, + 'i', 2447, + 'l', 2543, + 'm', 2465, + 'n', 2700, + 'o', 1910, + 'r', 2527, + 's', 2681, + 't', 2720, + 'u', 2764, + 'w', 2590, + 'x', 2689, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || lookahead == ' ') SKIP(5); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3981); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2860); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2868); END_STATE(); case 5: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 2431, - '"', 4075, - '#', 5521, - '$', 3607, + '!', 2435, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '*', 3770, - '+', 3820, - ',', 3605, - '-', 3647, - '.', 2070, - '/', 3809, - '0', 3958, - ':', 4098, - ';', 3565, - '<', 3791, - '=', 1792, - '>', 3624, - 'I', 2846, - 'N', 2839, - '_', 2450, + '(', 3617, + '*', 3780, + '+', 3834, + ',', 3619, + '-', 3661, + '.', 2074, + '/', 3823, + '0', 3972, + ':', 4116, + ';', 3579, + '<', 3805, + '=', 1796, + '>', 3638, + 'I', 2854, + 'N', 2847, + '_', 2454, '`', 482, - 'a', 2627, - 'b', 2593, - 'c', 2466, - 'd', 2520, - 'e', 1905, - 'f', 2459, - 'h', 2595, - 'i', 2443, - 'l', 2537, - 'm', 2461, - 'n', 2694, - 'o', 1906, - 'r', 2521, - 's', 2675, - 't', 2714, - 'u', 2756, - 'w', 2585, - 'x', 2683, - '|', 3566, - '}', 3713, + 'a', 2630, + 'b', 2600, + 'c', 2471, + 'd', 2526, + 'e', 1909, + 'f', 2463, + 'h', 2470, + 'i', 2447, + 'l', 2543, + 'm', 2465, + 'n', 2700, + 'o', 1910, + 'r', 2527, + 's', 2681, + 't', 2720, + 'u', 2764, + 'w', 2590, + 'x', 2689, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || lookahead == ' ') SKIP(5); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3981); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2860); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2868); END_STATE(); case 6: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 4513, - '#', 5521, - '$', 3606, - '(', 3802, - '*', 3769, - '+', 3819, - '-', 3653, - '.', 3867, - '/', 3808, - '<', 3791, - '=', 4515, - '>', 3624, - '_', 4538, - 'a', 4590, - 'b', 4579, - 'e', 4591, - 'i', 4589, - 'm', 4595, - 'n', 4597, - 'o', 4604, - 's', 4628, - 'x', 4599, - '{', 3712, + '!', 4531, + '#', 5548, + '$', 3620, + '(', 3816, + '*', 3779, + '+', 3833, + '-', 3667, + '.', 3881, + '/', 3822, + '<', 3805, + '=', 4533, + '>', 3638, + '_', 4556, + 'a', 4611, + 'b', 4600, + 'e', 4612, + 'h', 4575, + 'i', 4610, + 'm', 4616, + 'n', 4618, + 'o', 4625, + 's', 4654, + 'x', 4620, + '{', 3726, ); if (lookahead == '\t' || lookahead == ' ') SKIP(21); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 7: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 4513, - '#', 5521, - '$', 3606, - '(', 3802, - '*', 3769, - '+', 3819, - '-', 3653, - '.', 4540, - '/', 3808, - '<', 3791, - '=', 4515, - '>', 3624, - '_', 4538, - 'a', 4590, - 'b', 4579, - 'e', 4591, - 'i', 4589, - 'm', 4595, - 'n', 4597, - 'o', 4604, - 's', 4628, - 'x', 4599, - '{', 3712, + '!', 4531, + '#', 5548, + '$', 3620, + '(', 3816, + '*', 3779, + '+', 3833, + '-', 3667, + '.', 4558, + '/', 3822, + '<', 3805, + '=', 4533, + '>', 3638, + '_', 4556, + 'a', 4611, + 'b', 4600, + 'e', 4612, + 'h', 4575, + 'i', 4610, + 'm', 4616, + 'n', 4618, + 'o', 4625, + 's', 4654, + 'x', 4620, + '{', 3726, ); if (lookahead == '\t' || lookahead == ' ') SKIP(21); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 8: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 4513, - '#', 5521, - '(', 3802, - '*', 3769, - '+', 3817, - '-', 3634, - '.', 3857, - '/', 3808, - '<', 3791, - '=', 4515, - '>', 3624, - 'B', 4024, - 'E', 4531, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'P', 4535, - 'T', 4535, - 'a', 4590, - 'b', 4026, - 'd', 4555, - 'e', 4529, - 'g', 4534, - 'h', 4608, - 'i', 4589, - 'k', 4534, - 'm', 4536, - 'n', 4596, - 'o', 4604, - 'p', 4534, - 's', 4566, - 't', 4534, - 'u', 4621, - 'w', 4582, - 'x', 4599, - '{', 3712, - 0xb5, 4621, + '!', 4531, + '#', 5548, + '(', 3816, + '*', 3779, + '+', 3831, + '-', 3648, + '.', 3871, + '/', 3822, + '<', 3805, + '=', 4533, + '>', 3638, + 'B', 4038, + 'E', 4549, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'P', 4553, + 'T', 4553, + 'a', 4611, + 'b', 4040, + 'd', 4573, + 'e', 4547, + 'g', 4552, + 'h', 4574, + 'i', 4610, + 'k', 4552, + 'm', 4554, + 'n', 4617, + 'o', 4625, + 'p', 4552, + 's', 4587, + 't', 4552, + 'u', 4644, + 'w', 4603, + 'x', 4620, + '{', 3726, + 0xb5, 4644, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 9: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 4513, - '#', 5521, - '(', 3802, - '*', 3769, - '+', 3817, - '-', 3634, - '.', 3857, - '/', 3808, - '<', 3791, - '=', 4515, - '>', 3624, - 'E', 4550, - 'a', 4590, - 'b', 4579, - 'e', 4546, - 'i', 4589, - 'm', 4595, - 'n', 4597, - 'o', 4604, - 's', 4628, - 'x', 4599, - '{', 3712, + '!', 4531, + '#', 5548, + '(', 3816, + '*', 3779, + '+', 3831, + '-', 3648, + '.', 3871, + '/', 3822, + '<', 3805, + '=', 4533, + '>', 3638, + 'E', 4567, + 'a', 4611, + 'b', 4600, + 'e', 4563, + 'h', 4575, + 'i', 4610, + 'm', 4616, + 'n', 4618, + 'o', 4625, + 's', 4654, + 'x', 4620, + '{', 3726, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 10: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 4513, - '#', 5521, - '(', 3802, - '*', 3769, - '+', 3817, - '-', 3634, - '.', 4507, - '/', 3808, - '<', 3791, - '=', 4515, - '>', 3624, - 'B', 4024, - 'E', 4531, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'P', 4535, - 'T', 4535, - '_', 4538, - 'a', 4590, - 'b', 4026, - 'd', 4555, - 'e', 4529, - 'g', 4534, - 'h', 4608, - 'i', 4589, - 'k', 4534, - 'm', 4536, - 'n', 4596, - 'o', 4604, - 'p', 4534, - 's', 4566, - 't', 4534, - 'u', 4621, - 'w', 4582, - 'x', 4599, - '{', 3712, - 0xb5, 4621, + '!', 4531, + '#', 5548, + '(', 3816, + '*', 3779, + '+', 3831, + '-', 3648, + '.', 4525, + '/', 3822, + '<', 3805, + '=', 4533, + '>', 3638, + 'B', 4038, + 'E', 4549, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'P', 4553, + 'T', 4553, + '_', 4556, + 'a', 4611, + 'b', 4040, + 'd', 4573, + 'e', 4547, + 'g', 4552, + 'h', 4574, + 'i', 4610, + 'k', 4552, + 'm', 4554, + 'n', 4617, + 'o', 4625, + 'p', 4552, + 's', 4587, + 't', 4552, + 'u', 4644, + 'w', 4603, + 'x', 4620, + '{', 3726, + 0xb5, 4644, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 11: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 4513, - '#', 5521, - '(', 3802, - '*', 3769, - '+', 3817, - '-', 3634, - '.', 4507, - '/', 3808, - '<', 3791, - '=', 4515, - '>', 3624, - 'B', 4024, - 'E', 4531, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'P', 4535, - 'T', 4535, - 'a', 4590, - 'b', 4026, - 'd', 4555, - 'e', 4529, - 'g', 4534, - 'h', 4608, - 'i', 4589, - 'k', 4534, - 'm', 4536, - 'n', 4596, - 'o', 4604, - 'p', 4534, - 's', 4566, - 't', 4534, - 'u', 4621, - 'w', 4582, - 'x', 4599, - '{', 3712, - 0xb5, 4621, + '!', 4531, + '#', 5548, + '(', 3816, + '*', 3779, + '+', 3831, + '-', 3648, + '.', 4525, + '/', 3822, + '<', 3805, + '=', 4533, + '>', 3638, + 'B', 4038, + 'E', 4549, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'P', 4553, + 'T', 4553, + 'a', 4611, + 'b', 4040, + 'd', 4573, + 'e', 4547, + 'g', 4552, + 'h', 4574, + 'i', 4610, + 'k', 4552, + 'm', 4554, + 'n', 4617, + 'o', 4625, + 'p', 4552, + 's', 4587, + 't', 4552, + 'u', 4644, + 'w', 4603, + 'x', 4620, + '{', 3726, + 0xb5, 4644, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 12: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 4513, - '#', 5521, - '(', 3802, - '*', 3769, - '+', 3817, - '-', 3634, - '.', 4507, - '/', 3808, - '<', 3791, - '=', 4515, - '>', 3624, - 'B', 4024, - 'E', 4535, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'P', 4535, - 'T', 4535, - 'a', 4590, - 'b', 4026, - 'd', 4555, - 'e', 4532, - 'g', 4534, - 'h', 4608, - 'i', 4589, - 'k', 4534, - 'm', 4536, - 'n', 4596, - 'o', 4604, - 'p', 4534, - 's', 4566, - 't', 4534, - 'u', 4621, - 'w', 4582, - 'x', 4599, - '{', 3712, - 0xb5, 4621, + '!', 4531, + '#', 5548, + '(', 3816, + '*', 3779, + '+', 3831, + '-', 3648, + '.', 4525, + '/', 3822, + '<', 3805, + '=', 4533, + '>', 3638, + 'B', 4038, + 'E', 4553, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'P', 4553, + 'T', 4553, + 'a', 4611, + 'b', 4040, + 'd', 4573, + 'e', 4550, + 'g', 4552, + 'h', 4574, + 'i', 4610, + 'k', 4552, + 'm', 4554, + 'n', 4617, + 'o', 4625, + 'p', 4552, + 's', 4587, + 't', 4552, + 'u', 4644, + 'w', 4603, + 'x', 4620, + '{', 3726, + 0xb5, 4644, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 13: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 4513, - '#', 5521, - '(', 3802, - '*', 3769, - '+', 3817, - '-', 3634, - '.', 4507, - '/', 3808, - '<', 3791, - '=', 4515, - '>', 3624, - 'E', 4550, - '_', 4538, - 'a', 4590, - 'b', 4579, - 'e', 4546, - 'i', 4589, - 'm', 4595, - 'n', 4597, - 'o', 4604, - 's', 4628, - 'x', 4599, - '{', 3712, + '!', 4531, + '#', 5548, + '(', 3816, + '*', 3779, + '+', 3831, + '-', 3648, + '.', 4525, + '/', 3822, + '<', 3805, + '=', 4533, + '>', 3638, + 'E', 4567, + '_', 4556, + 'a', 4611, + 'b', 4600, + 'e', 4563, + 'h', 4575, + 'i', 4610, + 'm', 4616, + 'n', 4618, + 'o', 4625, + 's', 4654, + 'x', 4620, + '{', 3726, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 14: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 4513, - '#', 5521, - '(', 3802, - '*', 3769, - '+', 3817, - '-', 3634, - '.', 4507, - '/', 3808, - '<', 3791, - '=', 4515, - '>', 3624, - 'E', 4550, - 'a', 4590, - 'b', 4579, - 'e', 4546, - 'i', 4589, - 'm', 4595, - 'n', 4597, - 'o', 4604, - 's', 4628, - 'x', 4599, - '{', 3712, + '!', 4531, + '#', 5548, + '(', 3816, + '*', 3779, + '+', 3831, + '-', 3648, + '.', 4525, + '/', 3822, + '<', 3805, + '=', 4533, + '>', 3638, + 'E', 4567, + 'a', 4611, + 'b', 4600, + 'e', 4563, + 'h', 4575, + 'i', 4610, + 'm', 4616, + 'n', 4618, + 'o', 4625, + 's', 4654, + 'x', 4620, + '{', 3726, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 15: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 4513, - '#', 5521, - '(', 3802, - '*', 3769, - '+', 3817, - '-', 3634, - '.', 4507, - '/', 3808, - '<', 3791, - '=', 4515, - '>', 3624, - 'a', 4590, - 'b', 4579, - 'e', 4591, - 'i', 4589, - 'm', 4595, - 'n', 4597, - 'o', 4604, - 's', 4628, - 'x', 4599, - '{', 3712, + '!', 4531, + '#', 5548, + '(', 3816, + '*', 3779, + '+', 3831, + '-', 3648, + '.', 4525, + '/', 3822, + '<', 3805, + '=', 4533, + '>', 3638, + 'a', 4611, + 'b', 4600, + 'e', 4612, + 'h', 4575, + 'i', 4610, + 'm', 4616, + 'n', 4618, + 'o', 4625, + 's', 4654, + 'x', 4620, + '{', 3726, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 16: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 4513, - '#', 5521, - '(', 3802, - '*', 3769, - '+', 3817, - '-', 3634, - '.', 3843, - '/', 3808, - '<', 3791, - '=', 4515, - '>', 3624, - 'E', 4550, - 'a', 4590, - 'b', 4579, - 'e', 4546, - 'i', 4589, - 'm', 4595, - 'n', 4597, - 'o', 4604, - 's', 4628, - 'x', 4599, - '{', 3712, + '!', 4531, + '#', 5548, + '(', 3816, + '*', 3779, + '+', 3831, + '-', 3648, + '.', 3857, + '/', 3822, + '<', 3805, + '=', 4533, + '>', 3638, + 'E', 4567, + 'a', 4611, + 'b', 4600, + 'e', 4563, + 'h', 4575, + 'i', 4610, + 'm', 4616, + 'n', 4618, + 'o', 4625, + 's', 4654, + 'x', 4620, + '{', 3726, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 17: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 4513, - '#', 5521, - '(', 3802, - '*', 3769, - '+', 3817, - '-', 3634, - '/', 3808, - '<', 3791, - '=', 4515, - '>', 3624, - 'E', 4550, - '_', 4538, - 'a', 4590, - 'b', 4579, - 'e', 4546, - 'i', 4589, - 'm', 4595, - 'n', 4597, - 'o', 4604, - 's', 4628, - 'x', 4599, - '{', 3712, + '!', 4531, + '#', 5548, + '(', 3816, + '*', 3779, + '+', 3831, + '-', 3648, + '/', 3822, + '<', 3805, + '=', 4533, + '>', 3638, + 'E', 4567, + '_', 4556, + 'a', 4611, + 'b', 4600, + 'e', 4563, + 'h', 4575, + 'i', 4610, + 'm', 4616, + 'n', 4618, + 'o', 4625, + 's', 4654, + 'x', 4620, + '{', 3726, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 18: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 4513, - '#', 5521, - '(', 3802, - '*', 3769, - '+', 3817, - '-', 3634, - '/', 3808, - '<', 3791, - '=', 4515, - '>', 3624, - 'E', 4550, - 'a', 4590, - 'b', 4579, - 'e', 4546, - 'i', 4589, - 'm', 4595, - 'n', 4597, - 'o', 4604, - 's', 4628, - 'x', 4599, - '{', 3712, + '!', 4531, + '#', 5548, + '(', 3816, + '*', 3779, + '+', 3831, + '-', 3648, + '/', 3822, + '<', 3805, + '=', 4533, + '>', 3638, + 'E', 4567, + 'a', 4611, + 'b', 4600, + 'e', 4563, + 'h', 4575, + 'i', 4610, + 'm', 4616, + 'n', 4618, + 'o', 4625, + 's', 4654, + 'x', 4620, + '{', 3726, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 19: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 4513, - '#', 5521, - '(', 3802, - '*', 3769, - '+', 3817, - '-', 3634, - '/', 3808, - '<', 3791, - '=', 4515, - '>', 3624, - 'a', 4590, - 'b', 4579, - 'e', 4591, - 'i', 4589, - 'm', 4595, - 'n', 4597, - 'o', 4604, - 's', 4628, - 'x', 4599, - '{', 3712, + '!', 4531, + '#', 5548, + '(', 3816, + '*', 3779, + '+', 3831, + '-', 3648, + '/', 3822, + '<', 3805, + '=', 4533, + '>', 3638, + 'a', 4611, + 'b', 4600, + 'e', 4612, + 'h', 4575, + 'i', 4610, + 'm', 4616, + 'n', 4618, + 'o', 4625, + 's', 4654, + 'x', 4620, + '{', 3726, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 20: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 4727, - '#', 5527, - '(', 3802, - '*', 3771, - '+', 3822, - '-', 3657, - '/', 3810, - '<', 3792, - '=', 4729, - '>', 3625, - 'a', 4822, - 'b', 4805, - 'e', 4827, - 'i', 4823, - 'm', 4835, - 'n', 4838, - 'o', 4849, - 's', 4880, - 'x', 4837, - '{', 3712, + '!', 4750, + '#', 5554, + '(', 3816, + '*', 3781, + '+', 3836, + '-', 3671, + '/', 3824, + '<', 3806, + '=', 4752, + '>', 3639, + 'a', 4847, + 'b', 4830, + 'e', 4852, + 'h', 4786, + 'i', 4848, + 'm', 4860, + 'n', 4863, + 'o', 4874, + 's', 4910, + 'x', 4862, + '{', 3726, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 21: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, '!', 451, - '#', 5521, - '$', 3606, - '*', 3769, - '+', 3818, - '-', 3652, + '#', 5548, + '$', 3620, + '*', 3779, + '+', 3832, + '-', 3666, '.', 479, - '/', 3808, - '<', 3791, + '/', 3822, + '<', 3805, '=', 453, - '>', 3624, - 'a', 1134, - 'b', 946, - 'e', 1166, - 'i', 1110, - 'm', 1200, - 'n', 1217, - 'o', 1287, - 's', 1491, - 'x', 1219, - '{', 3712, + '>', 3638, + 'a', 1137, + 'b', 949, + 'e', 1169, + 'h', 554, + 'i', 1113, + 'm', 1203, + 'n', 1220, + 'o', 1290, + 's', 1495, + 'x', 1222, + '{', 3726, ); if (lookahead == '\t' || lookahead == ' ') SKIP(21); END_STATE(); case 22: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, '!', 451, - '#', 5521, - ')', 3604, - '*', 3769, - '+', 3817, - '-', 3634, - '/', 3808, - ';', 3565, - '<', 3791, + '#', 5548, + ')', 3618, + '*', 3779, + '+', 3831, + '-', 3648, + '/', 3822, + ';', 3579, + '<', 3805, '=', 453, - '>', 3624, - 'a', 1134, - 'b', 946, + '>', 3638, + 'a', 1137, + 'b', 949, 'e', 380, - 'i', 1110, - 'm', 1200, - 'n', 1217, + 'h', 554, + 'i', 1113, + 'm', 1203, + 'n', 1220, 'o', 385, - 's', 1491, - 'x', 1219, - '|', 3566, + 's', 1495, + 'x', 1222, + '|', 3580, ); if (lookahead == '\t' || lookahead == ' ') SKIP(22); END_STATE(); case 23: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, '!', 451, - '#', 5521, - ')', 3604, - '*', 3769, - '+', 3817, - '-', 3634, - '/', 3808, - ';', 3565, - '<', 3791, + '#', 5548, + ')', 3618, + '*', 3779, + '+', 3831, + '-', 3648, + '/', 3822, + ';', 3579, + '<', 3805, '=', 453, - '>', 3624, - 'a', 1134, - 'b', 946, + '>', 3638, + 'a', 1137, + 'b', 949, 'e', 383, - 'i', 1110, - 'm', 1200, - 'n', 1217, + 'h', 554, + 'i', 1113, + 'm', 1203, + 'n', 1220, 'o', 387, - 's', 1491, - 'x', 1219, - '|', 3566, + 's', 1495, + 'x', 1222, + '|', 3580, ); if (lookahead == '\t' || lookahead == ' ') SKIP(23); END_STATE(); case 24: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, '!', 451, - '#', 5521, - '*', 3769, - '+', 3817, - '-', 3634, - '/', 3808, - ':', 4098, - ';', 3565, - '<', 3791, + '#', 5548, + '*', 3779, + '+', 3831, + '-', 3648, + '/', 3822, + ':', 4116, + ';', 3579, + '<', 3805, '=', 453, - '>', 3624, - 'a', 1134, - 'b', 946, + '>', 3638, + 'a', 1137, + 'b', 949, 'e', 380, - 'i', 1110, - 'm', 1200, - 'n', 1217, + 'h', 554, + 'i', 1113, + 'm', 1203, + 'n', 1220, 'o', 385, - 's', 1491, - 'x', 1219, - '|', 3566, - '}', 3713, + 's', 1495, + 'x', 1222, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || lookahead == ' ') SKIP(24); END_STATE(); case 25: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, '!', 451, - '#', 5521, - '*', 3769, - '+', 3817, - '-', 3634, - '/', 3808, - ';', 3565, - '<', 3791, + '#', 5548, + '*', 3779, + '+', 3831, + '-', 3648, + '/', 3822, + ';', 3579, + '<', 3805, '=', 453, - '>', 3624, - 'a', 1134, - 'b', 946, + '>', 3638, + 'a', 1137, + 'b', 949, 'e', 380, - 'i', 1110, - 'm', 1200, - 'n', 1217, + 'h', 554, + 'i', 1113, + 'm', 1203, + 'n', 1220, 'o', 385, - 's', 1491, - 'x', 1219, - '|', 3566, - '}', 3713, + 's', 1495, + 'x', 1222, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || lookahead == ' ') SKIP(25); END_STATE(); case 26: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, '!', 451, - '#', 5521, - '*', 3769, - '+', 3817, - '-', 3634, - '/', 3808, - ';', 3565, - '<', 3791, + '#', 5548, + '*', 3779, + '+', 3831, + '-', 3648, + '/', 3822, + ';', 3579, + '<', 3805, '=', 453, - '>', 3624, - 'a', 1134, - 'b', 946, + '>', 3638, + 'a', 1137, + 'b', 949, 'e', 383, - 'i', 1110, - 'm', 1200, - 'n', 1217, + 'h', 554, + 'i', 1113, + 'm', 1203, + 'n', 1220, 'o', 387, - 's', 1491, - 'x', 1219, - '|', 3566, - '}', 3713, + 's', 1495, + 'x', 1222, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || lookahead == ' ') SKIP(26); END_STATE(); case 27: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, '!', 451, - '#', 5521, - '*', 3769, - '+', 3817, - '-', 3634, - '/', 3808, - '<', 3791, + '#', 5548, + '*', 3779, + '+', 3831, + '-', 3648, + '/', 3822, + '<', 3805, '=', 453, - '>', 3624, - 'a', 1134, - 'b', 946, + '>', 3638, + 'a', 1137, + 'b', 949, 'e', 380, - 'i', 1110, - 'm', 1200, - 'n', 1217, + 'h', 554, + 'i', 1113, + 'm', 1203, + 'n', 1220, 'o', 385, - 's', 1491, - 'x', 1219, - '|', 3566, + 's', 1495, + 'x', 1222, + '|', 3580, ); if (lookahead == '\t' || lookahead == ' ') SKIP(27); END_STATE(); case 28: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, '!', 451, - '#', 5521, - '*', 3769, - '+', 3817, - '-', 3634, - '/', 3808, - '<', 3791, + '#', 5548, + '*', 3779, + '+', 3831, + '-', 3648, + '/', 3822, + '<', 3805, '=', 453, - '>', 3624, - 'a', 1134, - 'b', 946, + '>', 3638, + 'a', 1137, + 'b', 949, 'e', 383, - 'i', 1110, - 'm', 1200, - 'n', 1217, + 'h', 554, + 'i', 1113, + 'm', 1203, + 'n', 1220, 'o', 387, - 's', 1491, - 'x', 1219, - '|', 3566, + 's', 1495, + 'x', 1222, + '|', 3580, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); END_STATE(); case 29: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, '!', 451, - '#', 5521, - '*', 3769, - '+', 3817, - '-', 3634, - '/', 3808, - '<', 3791, + '#', 5548, + '*', 3779, + '+', 3831, + '-', 3648, + '/', 3822, + '<', 3805, '=', 453, - '>', 3624, - 'a', 1134, - 'b', 946, - 'e', 1166, - 'i', 1110, - 'm', 1200, - 'n', 1217, - 'o', 1287, - 's', 1491, - 'x', 1219, - '{', 3712, + '>', 3638, + 'a', 1137, + 'b', 949, + 'e', 1169, + 'h', 554, + 'i', 1113, + 'm', 1203, + 'n', 1220, + 'o', 1290, + 's', 1495, + 'x', 1222, + '{', 3726, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); END_STATE(); case 30: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - ')', 3604, - '+', 2065, - '-', 3648, - '.', 2066, - '0', 3951, - ';', 3565, - '=', 4309, - 'I', 2404, - 'N', 2402, - '[', 3601, - '^', 4119, - '_', 2082, + '(', 3617, + ')', 3618, + '+', 2069, + '-', 3662, + '.', 2070, + '0', 3965, + ';', 3579, + '=', 4327, + 'I', 2408, + 'N', 2406, + '[', 3615, + '^', 4137, + '_', 2086, '`', 482, - 'a', 2236, - 'b', 2210, - 'c', 2083, - 'd', 2112, - 'e', 2086, - 'f', 2089, - 'g', 2202, - 'h', 2101, - 'i', 2079, - 'j', 2338, - 'k', 2143, - 'l', 2163, - 'm', 2091, - 'n', 2286, - 'o', 2394, - 'p', 2106, - 'q', 2388, - 'r', 2093, - 's', 2130, - 't', 2096, - 'u', 2296, - 'v', 2214, - 'w', 2199, - '{', 3712, - '}', 3713, + 'a', 2240, + 'b', 2214, + 'c', 2087, + 'd', 2116, + 'e', 2090, + 'f', 2093, + 'g', 2206, + 'h', 2105, + 'i', 2083, + 'j', 2342, + 'k', 2147, + 'l', 2167, + 'm', 2095, + 'n', 2290, + 'o', 2398, + 'p', 2110, + 'q', 2392, + 'r', 2097, + 's', 2134, + 't', 2100, + 'u', 2300, + 'v', 2218, + 'w', 2203, + '{', 3726, + '}', 3727, ); if (lookahead == '\t' || lookahead == ' ') SKIP(31); if (lookahead == '!' || ('&' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3974); + lookahead == '@') ADVANCE(2868); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3988); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'w' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2407); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2411); END_STATE(); case 31: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - ')', 3604, - '+', 2065, - '-', 3648, - '.', 2066, - '0', 3951, - ';', 3565, - 'I', 2404, - 'N', 2402, - '[', 3601, - '^', 4119, - '_', 2082, + '(', 3617, + ')', 3618, + '+', 2069, + '-', 3662, + '.', 2070, + '0', 3965, + ';', 3579, + 'I', 2408, + 'N', 2406, + '[', 3615, + '^', 4137, + '_', 2086, '`', 482, - 'a', 2236, - 'b', 2210, - 'c', 2083, - 'd', 2112, - 'e', 2086, - 'f', 2089, - 'g', 2202, - 'h', 2101, - 'i', 2079, - 'j', 2338, - 'k', 2143, - 'l', 2163, - 'm', 2091, - 'n', 2286, - 'o', 2394, - 'p', 2106, - 'q', 2388, - 'r', 2093, - 's', 2130, - 't', 2096, - 'u', 2296, - 'v', 2214, - 'w', 2199, - '{', 3712, - '}', 3713, + 'a', 2240, + 'b', 2214, + 'c', 2087, + 'd', 2116, + 'e', 2090, + 'f', 2093, + 'g', 2206, + 'h', 2105, + 'i', 2083, + 'j', 2342, + 'k', 2147, + 'l', 2167, + 'm', 2095, + 'n', 2290, + 'o', 2398, + 'p', 2110, + 'q', 2392, + 'r', 2097, + 's', 2134, + 't', 2100, + 'u', 2300, + 'v', 2218, + 'w', 2203, + '{', 3726, + '}', 3727, ); if (lookahead == '\t' || lookahead == ' ') SKIP(31); if (lookahead == '!' || ('&' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3974); + lookahead == '@') ADVANCE(2868); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3988); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'w' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2407); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2411); END_STATE(); case 32: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 2065, - '-', 3648, - '.', 2066, - '0', 3951, - '=', 4309, - 'I', 2404, - 'N', 2402, - '[', 3601, - '^', 4119, - '_', 2082, + '(', 3617, + '+', 2069, + '-', 3662, + '.', 2070, + '0', 3965, + '=', 4327, + 'I', 2408, + 'N', 2406, + '[', 3615, + '^', 4137, + '_', 2086, '`', 482, - 'a', 2250, - 'b', 2211, - 'c', 2085, - 'd', 2114, - 'e', 2087, - 'f', 2090, - 'g', 2202, - 'h', 2102, - 'i', 2081, - 'j', 2338, - 'k', 2143, - 'l', 2173, - 'm', 2118, - 'n', 2286, - 'o', 2395, - 'p', 2106, - 'q', 2388, - 'r', 2094, - 's', 2131, - 't', 2097, - 'u', 2297, - 'v', 2214, - 'w', 2204, - '{', 3712, - '\t', 3564, - ' ', 3564, - '!', 2860, - '&', 2860, - '*', 2860, - ',', 2860, - '?', 2860, - '@', 2860, + 'a', 2254, + 'b', 2215, + 'c', 2089, + 'd', 2118, + 'e', 2091, + 'f', 2094, + 'g', 2206, + 'h', 2106, + 'i', 2085, + 'j', 2342, + 'k', 2147, + 'l', 2176, + 'm', 2122, + 'n', 2290, + 'o', 2399, + 'p', 2110, + 'q', 2392, + 'r', 2098, + 's', 2135, + 't', 2101, + 'u', 2301, + 'v', 2218, + 'w', 2208, + '{', 3726, + '\t', 3578, + ' ', 3578, + '!', 2868, + '&', 2868, + '*', 2868, + ',', 2868, + '?', 2868, + '@', 2868, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3974); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3988); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '&' || '.' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'w' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2407); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2411); END_STATE(); case 33: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 2065, - '-', 3648, - '.', 2066, - '0', 3951, - 'I', 2404, - 'N', 2402, - '[', 3601, - '^', 4119, - '_', 2082, + '(', 3617, + '+', 2069, + '-', 3662, + '.', 2070, + '0', 3965, + 'I', 2408, + 'N', 2406, + '[', 3615, + '^', 4137, + '_', 2086, '`', 482, - 'a', 2250, - 'b', 2210, - 'c', 2084, - 'd', 2113, - 'e', 1908, - 'f', 2090, - 'g', 2202, - 'h', 2102, - 'i', 2079, - 'j', 2338, - 'k', 2143, - 'l', 2173, - 'm', 2092, - 'n', 2286, - 'o', 1910, - 'p', 2106, - 'q', 2388, - 'r', 2095, - 's', 2131, - 't', 2096, - 'u', 2297, - 'v', 2214, - 'w', 2209, - '{', 3712, - '|', 3566, + 'a', 2254, + 'b', 2214, + 'c', 2088, + 'd', 2117, + 'e', 1912, + 'f', 2094, + 'g', 2206, + 'h', 2106, + 'i', 2083, + 'j', 2342, + 'k', 2147, + 'l', 2176, + 'm', 2096, + 'n', 2290, + 'o', 1914, + 'p', 2110, + 'q', 2392, + 'r', 2097, + 's', 2135, + 't', 2100, + 'u', 2301, + 'v', 2218, + 'w', 2213, + '{', 3726, + '|', 3580, ); if (lookahead == '\t' || lookahead == ' ') SKIP(33); @@ -14750,421 +14762,421 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3974); + lookahead == '@') ADVANCE(2868); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3988); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '&' || '.' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'w' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2407); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2411); END_STATE(); case 34: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 2065, - '-', 3648, - '.', 2066, - '0', 3951, - 'I', 2846, - 'N', 2839, - '[', 3601, - '^', 4119, - '_', 2450, + '(', 3617, + '+', 2069, + '-', 3662, + '.', 2070, + '0', 3965, + 'I', 2854, + 'N', 2847, + '[', 3615, + '^', 4137, + '_', 2454, '`', 482, - 'a', 2649, - 'b', 2605, - 'c', 2465, - 'd', 2484, - 'e', 2485, - 'f', 2488, - 'g', 2584, - 'h', 2475, - 'i', 2444, - 'j', 2760, - 'k', 2535, - 'l', 2567, - 'm', 2468, - 'n', 2688, - 'o', 2829, - 'p', 2477, - 'q', 2827, - 'r', 2483, - 's', 2498, - 't', 2469, - 'u', 2703, - 'v', 2606, - 'w', 2592, - '{', 3712, + 'a', 2655, + 'b', 2611, + 'c', 2469, + 'd', 2490, + 'e', 2491, + 'f', 2494, + 'g', 2591, + 'h', 2481, + 'i', 2448, + 'j', 2768, + 'k', 2541, + 'l', 2573, + 'm', 2473, + 'n', 2694, + 'o', 2837, + 'p', 2483, + 'q', 2835, + 'r', 2489, + 's', 2504, + 't', 2474, + 'u', 2709, + 'v', 2612, + 'w', 2599, + '{', 3726, ); if (lookahead == '\t' || lookahead == ' ') SKIP(34); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3974); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3988); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'w' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2860); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2868); END_STATE(); case 35: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 2065, + '(', 3617, + '+', 2069, '-', 398, - '.', 2447, - ':', 4098, - '=', 4309, - 'I', 2848, - 'N', 2840, - '[', 4045, - ']', 3602, - '_', 2450, + '.', 2451, + ':', 4116, + '=', 4327, + 'I', 2856, + 'N', 2848, + '[', 4059, + ']', 3616, + '_', 2454, '`', 482, - 'a', 2650, - 'b', 2740, - 'c', 2482, - 'd', 2532, - 'e', 2646, - 'f', 2460, - 'h', 2612, - 'i', 2445, - 'l', 2567, - 'm', 2481, - 'n', 2811, - 'o', 2829, - 'r', 2568, - 's', 2699, - 't', 2741, - 'u', 2766, - 'w', 2592, + 'a', 2656, + 'b', 2746, + 'c', 2488, + 'd', 2538, + 'e', 2652, + 'f', 2464, + 'h', 2618, + 'i', 2449, + 'l', 2573, + 'm', 2487, + 'n', 2819, + 'o', 2837, + 'r', 2574, + 's', 2705, + 't', 2747, + 'u', 2774, + 'w', 2599, ); if (lookahead == '\t' || lookahead == ' ') SKIP(36); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2860); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2868); END_STATE(); case 36: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 2065, + '(', 3617, + '+', 2069, '-', 398, - '.', 2447, - ':', 4098, - 'I', 2848, - 'N', 2840, - ']', 3602, - '_', 2450, + '.', 2451, + ':', 4116, + 'I', 2856, + 'N', 2848, + ']', 3616, + '_', 2454, '`', 482, - 'a', 2650, - 'b', 2740, - 'c', 2482, - 'd', 2532, - 'e', 2646, - 'f', 2460, - 'h', 2612, - 'i', 2445, - 'l', 2567, - 'm', 2481, - 'n', 2811, - 'o', 2829, - 'r', 2568, - 's', 2699, - 't', 2741, - 'u', 2766, - 'w', 2592, + 'a', 2656, + 'b', 2746, + 'c', 2488, + 'd', 2538, + 'e', 2652, + 'f', 2464, + 'h', 2618, + 'i', 2449, + 'l', 2573, + 'm', 2487, + 'n', 2819, + 'o', 2837, + 'r', 2574, + 's', 2705, + 't', 2747, + 'u', 2774, + 'w', 2599, ); if (lookahead == '\t' || lookahead == ' ') SKIP(36); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2860); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2868); END_STATE(); case 37: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 3823, - '-', 3648, - '.', 2070, - '0', 3958, - 'I', 2846, - 'N', 2839, - '_', 2450, + '(', 3617, + '+', 3837, + '-', 3662, + '.', 2074, + '0', 3972, + 'I', 2854, + 'N', 2847, + '_', 2454, '`', 482, - 'a', 2628, - 'b', 2723, - 'c', 2466, - 'd', 2520, - 'e', 2641, - 'f', 2459, - 'h', 2595, - 'i', 2443, - 'l', 2537, - 'm', 2462, - 'n', 2810, - 'o', 2828, - 'r', 2521, - 's', 2676, - 't', 2714, - 'u', 2756, - 'w', 2585, - '}', 3713, + 'a', 2631, + 'b', 2729, + 'c', 2471, + 'd', 2526, + 'e', 2647, + 'f', 2463, + 'h', 2602, + 'i', 2447, + 'l', 2543, + 'm', 2466, + 'n', 2818, + 'o', 2836, + 'r', 2527, + 's', 2682, + 't', 2720, + 'u', 2764, + 'w', 2590, + '}', 3727, ); if (lookahead == '\t' || lookahead == ' ') SKIP(37); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3981); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2860); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2868); END_STATE(); case 38: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 4386, - '-', 3636, - '.', 4385, - '0', 3952, - ':', 4098, - ';', 3565, - 'N', 4444, - '[', 3601, - '_', 4399, + '(', 3617, + '+', 4404, + '-', 3650, + '.', 4403, + '0', 3966, + ':', 4116, + ';', 3579, + 'N', 4462, + '[', 3615, + '_', 4417, '`', 482, - 'e', 4372, - 'f', 4412, - 'n', 4440, - 'o', 4373, - 't', 4427, - '{', 3712, - '|', 3566, - '}', 3713, - '\t', 3563, - ' ', 3563, - 'I', 4447, - 'i', 4447, + 'e', 4390, + 'f', 4430, + 'n', 4458, + 'o', 4391, + 't', 4445, + '{', 3726, + '|', 3580, + '}', 3727, + '\t', 3577, + ' ', 3577, + 'I', 4465, + 'i', 4465, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3975); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3989); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ']') ADVANCE(4467); + lookahead != ']') ADVANCE(4485); END_STATE(); case 39: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 4386, - '-', 3636, - '.', 4382, - '0', 3952, - 'N', 4444, - '[', 3601, - '_', 4399, + '(', 3617, + '+', 4404, + '-', 3650, + '.', 4400, + '0', 3966, + 'N', 4462, + '[', 3615, + '_', 4417, '`', 482, - 'e', 4377, - 'f', 4412, - 'n', 4440, - 'o', 4378, - 't', 4427, - '{', 3712, + 'e', 4395, + 'f', 4430, + 'n', 4458, + 'o', 4396, + 't', 4445, + '{', 3726, ); if (lookahead == '\t' || lookahead == ' ') SKIP(39); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4447); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3975); + lookahead == 'i') ADVANCE(4465); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3989); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4467); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4485); END_STATE(); case 40: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 4386, - '-', 3649, - '.', 4382, - '0', 3952, - 'N', 4444, - '[', 3601, - '_', 4399, + '(', 3617, + '+', 4404, + '-', 3663, + '.', 4400, + '0', 3966, + 'N', 4462, + '[', 3615, + '_', 4417, '`', 482, - 'e', 4377, - 'f', 4412, - 'n', 4424, - 'o', 4378, - 't', 4427, - '{', 3712, + 'e', 4395, + 'f', 4430, + 'n', 4442, + 'o', 4396, + 't', 4445, + '{', 3726, ); if (lookahead == '\t' || lookahead == ' ') SKIP(40); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4447); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3975); + lookahead == 'i') ADVANCE(4465); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3989); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4467); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4485); END_STATE(); case 41: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 4970, - ',', 3605, - '-', 4969, - '.', 4971, - '0', 3953, - 'N', 5014, - '[', 3601, - ']', 3602, - '_', 4981, + '(', 3617, + '+', 4997, + ',', 3619, + '-', 4996, + '.', 4998, + '0', 3967, + 'N', 5041, + '[', 3615, + ']', 3616, + '_', 5008, '`', 482, - 'e', 4960, - 'f', 4994, - 'n', 5011, - 'o', 4961, - 't', 5004, - '{', 3712, + 'e', 4987, + 'f', 5021, + 'n', 5038, + 'o', 4988, + 't', 5031, + '{', 3726, ); if (lookahead == '\t' || lookahead == ' ') SKIP(41); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5020); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3976); + lookahead == 'i') ADVANCE(5047); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3990); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5042); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5069); END_STATE(); case 42: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 5238, - '-', 5237, - '.', 5236, - '0', 3955, - 'N', 5270, - '[', 3601, - '_', 5247, + '(', 3617, + '+', 5265, + '-', 5264, + '.', 5263, + '0', 3969, + 'N', 5297, + '[', 3615, + '_', 5274, '`', 482, - 'e', 5230, - 'f', 5249, - 'n', 5266, - 'o', 5231, - 't', 5259, - '{', 3712, + 'e', 5257, + 'f', 5276, + 'n', 5293, + 'o', 5258, + 't', 5286, + '{', 3726, ); if (lookahead == '\t' || lookahead == ' ') SKIP(42); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5276); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3978); + lookahead == 'i') ADVANCE(5303); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3992); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || ';' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5290); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5317); END_STATE(); case 43: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3603, - ')', 3604, - ',', 3605, - '-', 3635, - '.', 4112, - ':', 3599, - ';', 3565, - '<', 3108, - '=', 1791, - '>', 3623, - '?', 3772, - '@', 3626, - '[', 3601, - ']', 3602, + '(', 3617, + ')', 3618, + ',', 3619, + '-', 3649, + '.', 4130, + ':', 3613, + ';', 3579, + '<', 3118, + '=', 1795, + '>', 3637, + '?', 3782, + '@', 3640, + '[', 3615, + ']', 3616, '`', 482, - '{', 3712, - '|', 3566, - '}', 3713, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || lookahead == ' ') SKIP(44); @@ -15173,32 +15185,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ' ' || '$' < lookahead) && (lookahead < '&' || '.' < lookahead) && lookahead != ']' && - lookahead != '^') ADVANCE(3348); + lookahead != '^') ADVANCE(3362); END_STATE(); case 44: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3603, - ')', 3604, - ',', 3605, - '-', 3635, - '.', 4111, - ':', 3599, - ';', 3565, - '=', 1791, - '>', 3623, - '?', 3772, - '[', 3601, - ']', 3602, + '(', 3617, + ')', 3618, + ',', 3619, + '-', 3649, + '.', 4129, + ':', 3613, + ';', 3579, + '=', 1795, + '>', 3637, + '?', 3782, + '[', 3615, + ']', 3616, '`', 482, - '{', 3712, - '|', 3566, - '}', 3713, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || lookahead == ' ') SKIP(44); @@ -15208,99 +15220,99 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '&' || '.' < lookahead) && (lookahead < ':' || '@' < lookahead) && lookahead != ']' && - lookahead != '^') ADVANCE(3348); + lookahead != '^') ADVANCE(3362); END_STATE(); case 45: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3603, - '+', 4386, + '(', 3617, + '+', 4404, '-', 430, - '.', 4382, - '0', 3952, - 'N', 4444, - '[', 3601, - '_', 3717, + '.', 4400, + '0', 3966, + 'N', 4462, + '[', 3615, + '_', 3731, '`', 482, - 'e', 4377, - 'f', 4412, - 'n', 4440, - 'o', 4378, - 't', 4427, - '{', 3712, - '}', 3713, + 'e', 4395, + 'f', 4430, + 'n', 4458, + 'o', 4396, + 't', 4445, + '{', 3726, + '}', 3727, ); if (lookahead == '\t' || lookahead == ' ') SKIP(45); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4447); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3975); + lookahead == 'i') ADVANCE(4465); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3989); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4467); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4485); END_STATE(); case 46: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3603, - '+', 4970, - ',', 3605, - '-', 4969, - '.', 4966, - '0', 3953, - 'N', 5014, - '[', 3601, - ']', 3602, - '_', 4981, + '(', 3617, + '+', 4997, + ',', 3619, + '-', 4996, + '.', 4993, + '0', 3967, + 'N', 5041, + '[', 3615, + ']', 3616, + '_', 5008, '`', 482, - 'e', 4960, - 'f', 4994, - 'n', 5011, - 'o', 4961, - 't', 5004, - '{', 3712, + 'e', 4987, + 'f', 5021, + 'n', 5038, + 'o', 4988, + 't', 5031, + '{', 3726, ); if (lookahead == '\t' || lookahead == ' ') SKIP(46); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5020); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3976); + lookahead == 'i') ADVANCE(5047); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3990); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5042); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5069); END_STATE(); case 47: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '$', 3606, - '(', 3802, - ')', 3604, - '+', 5296, - ',', 3605, - '-', 3640, - '.', 5294, - ':', 3599, - '=', 1791, - ']', 3602, - '_', 3289, - '|', 3566, + '#', 5548, + '$', 3620, + '(', 3816, + ')', 3618, + '+', 5323, + ',', 3619, + '-', 3654, + '.', 5321, + ':', 3613, + '=', 1795, + ']', 3616, + '_', 3303, + '|', 3580, ); if (lookahead == '\t' || lookahead == ' ') SKIP(62); @@ -15308,27 +15320,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '&' || lookahead == '*' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5328); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3901); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3348); + lookahead == '^') ADVANCE(5355); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3915); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3362); END_STATE(); case 48: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '$', 3606, - '(', 3802, - ')', 3604, - '+', 5296, - ',', 3605, - '-', 3640, - '.', 3864, - ':', 3599, - '=', 1791, - ']', 3602, - '_', 3289, - '|', 3566, + '#', 5548, + '$', 3620, + '(', 3816, + ')', 3618, + '+', 5323, + ',', 3619, + '-', 3654, + '.', 3878, + ':', 3613, + '=', 1795, + ']', 3616, + '_', 3303, + '|', 3580, ); if (lookahead == '\t' || lookahead == ' ') SKIP(62); @@ -15336,374 +15348,372 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '&' || lookahead == '*' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5328); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3901); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3348); + lookahead == '^') ADVANCE(5355); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3915); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3362); END_STATE(); case 49: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '$', 3606, - '(', 3802, - ')', 3604, - ',', 3605, - '-', 3635, - '.', 3866, - ':', 3599, - '=', 1791, - ']', 3602, - '|', 3566, + '#', 5548, + '$', 3620, + '(', 3816, + ')', 3618, + ',', 3619, + '-', 3649, + '.', 3880, + ':', 3613, + '=', 1795, + 'E', 3289, + 'G', 3299, + 'K', 3299, + 'M', 3299, + 'P', 3299, + 'T', 3299, + ']', 3616, + 'd', 3305, + 'e', 3288, + 'g', 3298, + 'h', 3336, + 'k', 3298, + 'm', 3300, + 'n', 3340, + 'p', 3298, + 's', 3315, + 't', 3298, + 'u', 3340, + 'w', 3319, + '|', 3580, + 0xb5, 3340, ); if (lookahead == '\t' || lookahead == ' ') SKIP(65); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3276); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4044); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5328); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3348); + lookahead == '^') ADVANCE(5355); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3362); END_STATE(); case 50: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '$', 3606, - '(', 3802, - ')', 3604, - ',', 3605, - '-', 3635, - '.', 5297, - ':', 3599, - ';', 3565, - '=', 1791, - '[', 4045, - ']', 3602, - '{', 3712, - '|', 3566, - '}', 3713, + '#', 5548, + '$', 3620, + '(', 3816, + ')', 3618, + ',', 3619, + '-', 3649, + '.', 3880, + ':', 3613, + '=', 1795, + ']', 3616, + '|', 3580, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(63); + lookahead == ' ') SKIP(65); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3290); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5328); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - lookahead != '`') ADVANCE(3348); + lookahead == '^') ADVANCE(5355); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3362); END_STATE(); case 51: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '$', 3606, - '(', 3802, - ')', 3604, - ',', 3605, - '-', 3635, - '.', 5297, - ':', 3599, - '=', 1791, - 'E', 3275, - 'G', 3285, - 'K', 3285, - 'M', 3285, - 'P', 3285, - 'T', 3285, - ']', 3602, - '_', 3289, - 'd', 3291, - 'e', 3274, - 'g', 3284, - 'h', 3322, - 'k', 3284, - 'm', 3286, - 'n', 3326, - 'p', 3284, - 's', 3301, - 't', 3284, - 'u', 3326, - 'w', 3305, - '|', 3566, - 0xb5, 3326, + '#', 5548, + '$', 3620, + '(', 3816, + ')', 3618, + ',', 3619, + '-', 3649, + '.', 5324, + ':', 3613, + ';', 3579, + '=', 1795, + '[', 4059, + ']', 3616, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(65); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4030); + lookahead == ' ') SKIP(63); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5328); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3901); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3348); + lookahead == '^') ADVANCE(5355); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '&' || '.' < lookahead) && + lookahead != '`') ADVANCE(3362); END_STATE(); case 52: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '$', 3606, - '(', 3802, - ')', 3604, - ',', 3605, - '-', 3635, - '.', 5297, - ':', 3599, - '=', 1791, - 'E', 3275, - 'G', 3285, - 'K', 3285, - 'M', 3285, - 'P', 3285, - 'T', 3285, - ']', 3602, - 'd', 3291, - 'e', 3274, - 'g', 3284, - 'h', 3322, - 'k', 3284, - 'm', 3286, - 'n', 3326, - 'p', 3284, - 's', 3301, - 't', 3284, - 'u', 3326, - 'w', 3305, - '|', 3566, - 0xb5, 3326, + '#', 5548, + '$', 3620, + '(', 3816, + ')', 3618, + ',', 3619, + '-', 3649, + '.', 5324, + ':', 3613, + '=', 1795, + 'E', 3289, + 'G', 3299, + 'K', 3299, + 'M', 3299, + 'P', 3299, + 'T', 3299, + ']', 3616, + 'd', 3305, + 'e', 3288, + 'g', 3298, + 'h', 3336, + 'k', 3298, + 'm', 3300, + 'n', 3340, + 'p', 3298, + 's', 3315, + 't', 3298, + 'u', 3340, + 'w', 3319, + '|', 3580, + 0xb5, 3340, ); if (lookahead == '\t' || lookahead == ' ') SKIP(65); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4030); + lookahead == 'b') ADVANCE(4044); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5328); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3348); + lookahead == '^') ADVANCE(5355); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3362); END_STATE(); case 53: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '$', 3606, - '(', 3802, - ')', 3604, - ',', 3605, - '-', 3635, - '.', 5297, - ':', 3599, - '=', 1791, - 'E', 3285, - 'G', 3285, - 'K', 3285, - 'M', 3285, - 'P', 3285, - 'T', 3285, - ']', 3602, - 'd', 3291, - 'e', 3284, - 'g', 3284, - 'h', 3322, - 'k', 3284, - 'm', 3286, - 'n', 3326, - 'p', 3284, - 's', 3301, - 't', 3284, - 'u', 3326, - 'w', 3305, - '|', 3566, - 0xb5, 3326, + '#', 5548, + '$', 3620, + '(', 3816, + ')', 3618, + ',', 3619, + '-', 3649, + '.', 5324, + ':', 3613, + '=', 1795, + 'E', 3299, + 'G', 3299, + 'K', 3299, + 'M', 3299, + 'P', 3299, + 'T', 3299, + ']', 3616, + 'd', 3305, + 'e', 3298, + 'g', 3298, + 'h', 3336, + 'k', 3298, + 'm', 3300, + 'n', 3340, + 'p', 3298, + 's', 3315, + 't', 3298, + 'u', 3340, + 'w', 3319, + '|', 3580, + 0xb5, 3340, ); if (lookahead == '\t' || lookahead == ' ') SKIP(65); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4030); + lookahead == 'b') ADVANCE(4044); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5328); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3348); + lookahead == '^') ADVANCE(5355); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3362); END_STATE(); case 54: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '$', 3606, - '(', 3802, - ')', 3604, - ',', 3605, - '-', 3635, - '.', 5297, - ':', 3599, - '=', 1791, - ']', 3602, - '_', 3289, - '|', 3566, + '#', 5548, + '$', 3620, + '(', 3816, + ')', 3618, + ',', 3619, + '-', 3649, + '.', 5324, + ':', 3613, + '=', 1795, + ']', 3616, + '_', 3303, + '|', 3580, ); if (lookahead == '\t' || lookahead == ' ') SKIP(65); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3276); + lookahead == 'e') ADVANCE(3290); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5328); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3901); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3348); + lookahead == '^') ADVANCE(5355); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3915); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3362); END_STATE(); case 55: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '$', 3606, - '(', 3802, - ')', 3604, - ',', 3605, - '-', 3635, - '.', 5297, - ':', 3599, - '=', 1791, - ']', 3602, - '|', 3566, + '#', 5548, + '$', 3620, + '(', 3816, + ')', 3618, + ',', 3619, + '-', 3649, + '.', 5324, + ':', 3613, + '=', 1795, + ']', 3616, + '|', 3580, ); if (lookahead == '\t' || lookahead == ' ') SKIP(65); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3276); + lookahead == 'e') ADVANCE(3290); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5328); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3348); + lookahead == '^') ADVANCE(5355); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3362); END_STATE(); case 56: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '$', 3606, - '(', 3802, - ')', 3604, - ',', 3605, - '-', 3635, - '.', 3863, - ':', 3599, - '=', 1791, - ']', 3602, - '|', 3566, + '#', 5548, + '$', 3620, + '(', 3816, + ')', 3618, + ',', 3619, + '-', 3649, + '.', 3877, + ':', 3613, + '=', 1795, + ']', 3616, + '|', 3580, ); if (lookahead == '\t' || lookahead == ' ') SKIP(65); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3276); + lookahead == 'e') ADVANCE(3290); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5328); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3348); + lookahead == '^') ADVANCE(5355); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3362); END_STATE(); case 57: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '$', 3606, - '(', 3802, - ')', 3604, - ',', 3605, - '-', 3635, - '.', 5295, - ':', 3599, - '=', 1791, - ']', 3602, - '_', 3289, - '|', 3566, + '#', 5548, + '$', 3620, + '(', 3816, + ')', 3618, + ',', 3619, + '-', 3649, + '.', 5322, + ':', 3613, + '=', 1795, + ']', 3616, + '_', 3303, + '|', 3580, ); if (lookahead == '\t' || lookahead == ' ') SKIP(65); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3276); + lookahead == 'e') ADVANCE(3290); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5328); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3901); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3348); + lookahead == '^') ADVANCE(5355); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3915); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3362); END_STATE(); case 58: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '$', 3606, - '(', 3802, - ')', 3604, - ',', 3605, - '-', 3635, - '.', 5295, - ':', 3599, - '=', 1791, - ']', 3602, - '|', 3566, + '#', 5548, + '$', 3620, + '(', 3816, + ')', 3618, + ',', 3619, + '-', 3649, + '.', 5322, + ':', 3613, + '=', 1795, + ']', 3616, + '|', 3580, ); if (lookahead == '\t' || lookahead == ' ') SKIP(65); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3276); + lookahead == 'e') ADVANCE(3290); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5328); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3348); + lookahead == '^') ADVANCE(5355); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3362); END_STATE(); case 59: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '$', 3606, - '(', 3802, - ')', 3604, - ',', 3605, - '-', 3635, - '.', 5295, - ':', 3599, - '=', 1791, - ']', 3602, - '|', 3566, + '#', 5548, + '$', 3620, + '(', 3816, + ')', 3618, + ',', 3619, + '-', 3649, + '.', 5322, + ':', 3613, + '=', 1795, + ']', 3616, + '|', 3580, ); if (lookahead == '\t' || lookahead == ' ') SKIP(65); @@ -15712,98 +15722,98 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5328); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3348); + lookahead == '^') ADVANCE(5355); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3362); END_STATE(); case 60: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '$', 3606, - '(', 3802, - ')', 3604, - '-', 3635, - ';', 3565, + '#', 5548, + '$', 3620, + '(', 3816, + ')', 3618, + '-', 3649, + ';', 3579, '=', 455, - '[', 3601, - 'a', 1135, + '[', 3615, + 'a', 1138, 'e', 384, - 'i', 837, + 'i', 840, 'o', 387, - 'x', 1219, - '{', 3712, - '|', 3566, - '}', 3713, + 'x', 1222, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || lookahead == ' ') SKIP(66); END_STATE(); case 61: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '$', 3606, - '(', 3603, + '#', 5548, + '$', 3620, + '(', 3617, '+', 433, - '-', 3649, + '-', 3663, '.', 472, - '0', 3287, - ':', 3599, - '=', 1791, - 'N', 3334, - '_', 3288, - 'f', 3293, - 'n', 3315, - 't', 3324, - '{', 3712, + '0', 3301, + ':', 3613, + '=', 1795, + 'N', 3348, + '_', 3302, + 'f', 3307, + 'n', 3329, + 't', 3338, + '{', 3726, ); if (lookahead == '\t' || lookahead == ' ') SKIP(61); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3340); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3288); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3348); + lookahead == 'i') ADVANCE(3354); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3302); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3362); END_STATE(); case 62: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '$', 3606, - ')', 3604, + '#', 5548, + '$', 3620, + ')', 3618, '+', 438, - ',', 3605, - '-', 3638, + ',', 3619, + '-', 3652, '.', 437, - ':', 3599, - '=', 1791, - ']', 3602, - '|', 3566, + ':', 3613, + '=', 1795, + ']', 3616, + '|', 3580, ); if (lookahead == '\t' || lookahead == ' ') SKIP(62); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3348); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3362); END_STATE(); case 63: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '$', 3606, - ')', 3604, - ',', 3605, - '-', 3635, + '#', 5548, + '$', 3620, + ')', 3618, + ',', 3619, + '-', 3649, '.', 436, - ':', 3599, - ';', 3565, - '=', 1791, - '[', 3601, - ']', 3602, - '{', 3712, - '|', 3566, - '}', 3713, + ':', 3613, + ';', 3579, + '=', 1795, + '[', 3615, + ']', 3616, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || lookahead == ' ') SKIP(63); @@ -15814,241 +15824,241 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ':' || '@' < lookahead) && lookahead != ']' && lookahead != '^' && - lookahead != '`') ADVANCE(3348); + lookahead != '`') ADVANCE(3362); END_STATE(); case 64: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '$', 3606, - ')', 3604, - ',', 3605, - '-', 3635, + '#', 5548, + '$', 3620, + ')', 3618, + ',', 3619, + '-', 3649, '.', 436, - ':', 3599, - '=', 1791, - '?', 3629, - ']', 3602, - '|', 3566, + ':', 3613, + '=', 1795, + '?', 3643, + ']', 3616, + '|', 3580, ); if (lookahead == '\t' || lookahead == ' ') SKIP(65); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3348); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3362); END_STATE(); case 65: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '$', 3606, - ')', 3604, - ',', 3605, - '-', 3635, + '#', 5548, + '$', 3620, + ')', 3618, + ',', 3619, + '-', 3649, '.', 436, - ':', 3599, - '=', 1791, - ']', 3602, - '|', 3566, + ':', 3613, + '=', 1795, + ']', 3616, + '|', 3580, ); if (lookahead == '\t' || lookahead == ' ') SKIP(65); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3348); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3362); END_STATE(); case 66: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '$', 3606, - ')', 3604, - '-', 3635, - ';', 3565, + '#', 5548, + '$', 3620, + ')', 3618, + '-', 3649, + ';', 3579, '=', 455, - '[', 3601, - 'a', 1135, + '[', 3615, + 'a', 1138, 'e', 384, - 'i', 837, + 'i', 840, 'o', 387, - 'x', 1219, - '{', 3712, - '|', 3566, - '}', 3713, + 'x', 1222, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || lookahead == ' ') SKIP(66); END_STATE(); case 67: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '.', 3857, - 'E', 4531, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'P', 4535, - 'T', 4535, - 'd', 4555, - 'e', 4530, - 'g', 4534, - 'h', 4608, - 'k', 4534, - 'm', 4537, - 'n', 4621, - 'p', 4534, - 's', 4567, - 't', 4534, - 'u', 4621, - 'w', 4582, - 0xb5, 4621, - '\t', 3564, - ' ', 3564, - 'B', 4024, - 'b', 4024, + '#', 5548, + '.', 3871, + 'E', 4549, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'P', 4553, + 'T', 4553, + 'd', 4573, + 'e', 4548, + 'g', 4552, + 'h', 4629, + 'k', 4552, + 'm', 4555, + 'n', 4644, + 'p', 4552, + 's', 4588, + 't', 4552, + 'u', 4644, + 'w', 4603, + 0xb5, 4644, + '\t', 3578, + ' ', 3578, + 'B', 4038, + 'b', 4038, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 68: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '.', 4507, - 'E', 4531, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'P', 4535, - 'T', 4535, - '_', 4538, - 'd', 4555, - 'e', 4530, - 'g', 4534, - 'h', 4608, - 'k', 4534, - 'm', 4537, - 'n', 4621, - 'p', 4534, - 's', 4567, - 't', 4534, - 'u', 4621, - 'w', 4582, - 0xb5, 4621, - '\t', 3564, - ' ', 3564, - 'B', 4024, - 'b', 4024, + '#', 5548, + '.', 4525, + 'E', 4549, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'P', 4553, + 'T', 4553, + '_', 4556, + 'd', 4573, + 'e', 4548, + 'g', 4552, + 'h', 4629, + 'k', 4552, + 'm', 4555, + 'n', 4644, + 'p', 4552, + 's', 4588, + 't', 4552, + 'u', 4644, + 'w', 4603, + 0xb5, 4644, + '\t', 3578, + ' ', 3578, + 'B', 4038, + 'b', 4038, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 69: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '.', 4507, - 'E', 4531, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'P', 4535, - 'T', 4535, - 'd', 4555, - 'e', 4530, - 'g', 4534, - 'h', 4608, - 'k', 4534, - 'm', 4537, - 'n', 4621, - 'p', 4534, - 's', 4567, - 't', 4534, - 'u', 4621, - 'w', 4582, - 0xb5, 4621, - '\t', 3564, - ' ', 3564, - 'B', 4024, - 'b', 4024, + '#', 5548, + '.', 4525, + 'E', 4549, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'P', 4553, + 'T', 4553, + 'd', 4573, + 'e', 4548, + 'g', 4552, + 'h', 4629, + 'k', 4552, + 'm', 4555, + 'n', 4644, + 'p', 4552, + 's', 4588, + 't', 4552, + 'u', 4644, + 'w', 4603, + 0xb5, 4644, + '\t', 3578, + ' ', 3578, + 'B', 4038, + 'b', 4038, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 70: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '.', 4507, - 'E', 4535, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'P', 4535, - 'T', 4535, - 'd', 4555, - 'e', 4534, - 'g', 4534, - 'h', 4608, - 'k', 4534, - 'm', 4537, - 'n', 4621, - 'p', 4534, - 's', 4567, - 't', 4534, - 'u', 4621, - 'w', 4582, - 0xb5, 4621, - '\t', 3564, - ' ', 3564, - 'B', 4024, - 'b', 4024, + '#', 5548, + '.', 4525, + 'E', 4553, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'P', 4553, + 'T', 4553, + 'd', 4573, + 'e', 4552, + 'g', 4552, + 'h', 4629, + 'k', 4552, + 'm', 4555, + 'n', 4644, + 'p', 4552, + 's', 4588, + 't', 4552, + 'u', 4644, + 'w', 4603, + 0xb5, 4644, + '\t', 3578, + ' ', 3578, + 'B', 4038, + 'b', 4038, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 71: - if (lookahead == '\n') ADVANCE(3562); + if (lookahead == '\n') ADVANCE(3576); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '=') ADVANCE(4309); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '=') ADVANCE(4327); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3564); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3526); + lookahead == ' ') ADVANCE(3578); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3540); END_STATE(); case 72: - if (lookahead == '\n') ADVANCE(3562); + if (lookahead == '\n') ADVANCE(3576); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '=') ADVANCE(4309); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '=') ADVANCE(4327); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3564); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + lookahead == ' ') ADVANCE(3578); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 73: - if (lookahead == '\n') ADVANCE(3562); + if (lookahead == '\n') ADVANCE(3576); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(5521); + if (lookahead == '#') ADVANCE(5548); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3564); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == ' ') ADVANCE(3578); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 74: ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5524, - '$', 3610, - '(', 3802, - ')', 3604, - ',', 3605, - '-', 3646, - '.', 5406, - ':', 3599, - '=', 1793, - ']', 3602, - '|', 3566, + '#', 5551, + '$', 3624, + '(', 3816, + ')', 3618, + ',', 3619, + '-', 3660, + '.', 5433, + ':', 3613, + '=', 1797, + ']', 3616, + '|', 3580, ); if (lookahead == '\t' || lookahead == ' ') SKIP(65); @@ -16057,529 +16067,541 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5514); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(5513); + lookahead == '^') ADVANCE(5541); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(5540); END_STATE(); case 75: - if (lookahead == '\n') ADVANCE(3562); + if (lookahead == '\n') ADVANCE(3576); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(5527); - if (lookahead == '(') ADVANCE(3802); + if (lookahead == '#') ADVANCE(5554); + if (lookahead == '(') ADVANCE(3816); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3564); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + lookahead == ' ') ADVANCE(3578); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 76: - if (lookahead == ' ') ADVANCE(706); + if (lookahead == ' ') ADVANCE(709); END_STATE(); case 77: - if (lookahead == ' ') ADVANCE(617); + if (lookahead == ' ') ADVANCE(620); END_STATE(); case 78: ADVANCE_MAP( - '!', 4513, - '#', 5521, - '$', 3606, - '(', 3802, - '*', 3769, - '+', 3819, - '-', 3653, - '.', 3867, - '/', 3808, - '<', 3791, - '=', 4514, - '>', 3624, - '_', 4538, - 'a', 4590, - 'b', 4579, - 'e', 4591, - 'i', 4589, - 'm', 4595, - 'n', 4597, - 'o', 4604, - 's', 4628, - 'x', 4599, + '!', 4531, + '#', 5548, + '$', 3620, + '(', 3816, + '*', 3779, + '+', 3833, + '-', 3667, + '.', 3881, + '/', 3822, + '<', 3805, + '=', 4532, + '>', 3638, + '_', 4556, + 'a', 4611, + 'b', 4600, + 'e', 4612, + 'h', 4575, + 'i', 4610, + 'm', 4616, + 'n', 4618, + 'o', 4625, + 's', 4654, + 'x', 4620, ); if (lookahead == '\t' || lookahead == ' ') SKIP(93); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 79: ADVANCE_MAP( - '!', 4513, - '#', 5521, - '$', 3606, - '(', 3802, - '*', 3769, - '+', 3819, - '-', 3653, - '.', 4540, - '/', 3808, - '<', 3791, - '=', 4514, - '>', 3624, - '_', 4538, - 'a', 4590, - 'b', 4579, - 'e', 4591, - 'i', 4589, - 'm', 4595, - 'n', 4597, - 'o', 4604, - 's', 4628, - 'x', 4599, + '!', 4531, + '#', 5548, + '$', 3620, + '(', 3816, + '*', 3779, + '+', 3833, + '-', 3667, + '.', 4558, + '/', 3822, + '<', 3805, + '=', 4532, + '>', 3638, + '_', 4556, + 'a', 4611, + 'b', 4600, + 'e', 4612, + 'h', 4575, + 'i', 4610, + 'm', 4616, + 'n', 4618, + 'o', 4625, + 's', 4654, + 'x', 4620, ); if (lookahead == '\t' || lookahead == ' ') SKIP(93); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 80: ADVANCE_MAP( - '!', 4513, - '#', 5521, - '(', 3802, - '*', 3769, - '+', 3817, - '-', 3634, - '.', 3857, - '/', 3808, - '<', 3791, - '=', 4514, - '>', 3624, - 'B', 4024, - 'E', 4531, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'P', 4535, - 'T', 4535, - 'a', 4590, - 'b', 4026, - 'd', 4555, - 'e', 4529, - 'g', 4534, - 'h', 4608, - 'i', 4589, - 'k', 4534, - 'm', 4536, - 'n', 4596, - 'o', 4604, - 'p', 4534, - 's', 4566, - 't', 4534, - 'u', 4621, - 'w', 4582, - 'x', 4599, - 0xb5, 4621, + '!', 4531, + '#', 5548, + '(', 3816, + '*', 3779, + '+', 3831, + '-', 3648, + '.', 3871, + '/', 3822, + '<', 3805, + '=', 4532, + '>', 3638, + 'B', 4038, + 'E', 4549, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'P', 4553, + 'T', 4553, + 'a', 4611, + 'b', 4040, + 'd', 4573, + 'e', 4547, + 'g', 4552, + 'h', 4574, + 'i', 4610, + 'k', 4552, + 'm', 4554, + 'n', 4617, + 'o', 4625, + 'p', 4552, + 's', 4587, + 't', 4552, + 'u', 4644, + 'w', 4603, + 'x', 4620, + 0xb5, 4644, ); if (lookahead == '\t' || lookahead == ' ') SKIP(94); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 81: ADVANCE_MAP( - '!', 4513, - '#', 5521, - '(', 3802, - '*', 3769, - '+', 3817, - '-', 3634, - '.', 3857, - '/', 3808, - '<', 3791, - '=', 4514, - '>', 3624, - 'E', 4550, - 'a', 4590, - 'b', 4579, - 'e', 4546, - 'i', 4589, - 'm', 4595, - 'n', 4597, - 'o', 4604, - 's', 4628, - 'x', 4599, + '!', 4531, + '#', 5548, + '(', 3816, + '*', 3779, + '+', 3831, + '-', 3648, + '.', 3871, + '/', 3822, + '<', 3805, + '=', 4532, + '>', 3638, + 'E', 4567, + 'a', 4611, + 'b', 4600, + 'e', 4563, + 'h', 4575, + 'i', 4610, + 'm', 4616, + 'n', 4618, + 'o', 4625, + 's', 4654, + 'x', 4620, ); if (lookahead == '\t' || lookahead == ' ') SKIP(94); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 82: ADVANCE_MAP( - '!', 4513, - '#', 5521, - '(', 3802, - '*', 3769, - '+', 3817, - '-', 3634, - '.', 4507, - '/', 3808, - '<', 3791, - '=', 4514, - '>', 3624, - 'B', 4024, - 'E', 4531, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'P', 4535, - 'T', 4535, - '_', 4538, - 'a', 4590, - 'b', 4026, - 'd', 4555, - 'e', 4529, - 'g', 4534, - 'h', 4608, - 'i', 4589, - 'k', 4534, - 'm', 4536, - 'n', 4596, - 'o', 4604, - 'p', 4534, - 's', 4566, - 't', 4534, - 'u', 4621, - 'w', 4582, - 'x', 4599, - 0xb5, 4621, + '!', 4531, + '#', 5548, + '(', 3816, + '*', 3779, + '+', 3831, + '-', 3648, + '.', 4525, + '/', 3822, + '<', 3805, + '=', 4532, + '>', 3638, + 'B', 4038, + 'E', 4549, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'P', 4553, + 'T', 4553, + '_', 4556, + 'a', 4611, + 'b', 4040, + 'd', 4573, + 'e', 4547, + 'g', 4552, + 'h', 4574, + 'i', 4610, + 'k', 4552, + 'm', 4554, + 'n', 4617, + 'o', 4625, + 'p', 4552, + 's', 4587, + 't', 4552, + 'u', 4644, + 'w', 4603, + 'x', 4620, + 0xb5, 4644, ); if (lookahead == '\t' || lookahead == ' ') SKIP(94); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 83: ADVANCE_MAP( - '!', 4513, - '#', 5521, - '(', 3802, - '*', 3769, - '+', 3817, - '-', 3634, - '.', 4507, - '/', 3808, - '<', 3791, - '=', 4514, - '>', 3624, - 'B', 4024, - 'E', 4531, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'P', 4535, - 'T', 4535, - 'a', 4590, - 'b', 4026, - 'd', 4555, - 'e', 4529, - 'g', 4534, - 'h', 4608, - 'i', 4589, - 'k', 4534, - 'm', 4536, - 'n', 4596, - 'o', 4604, - 'p', 4534, - 's', 4566, - 't', 4534, - 'u', 4621, - 'w', 4582, - 'x', 4599, - 0xb5, 4621, + '!', 4531, + '#', 5548, + '(', 3816, + '*', 3779, + '+', 3831, + '-', 3648, + '.', 4525, + '/', 3822, + '<', 3805, + '=', 4532, + '>', 3638, + 'B', 4038, + 'E', 4549, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'P', 4553, + 'T', 4553, + 'a', 4611, + 'b', 4040, + 'd', 4573, + 'e', 4547, + 'g', 4552, + 'h', 4574, + 'i', 4610, + 'k', 4552, + 'm', 4554, + 'n', 4617, + 'o', 4625, + 'p', 4552, + 's', 4587, + 't', 4552, + 'u', 4644, + 'w', 4603, + 'x', 4620, + 0xb5, 4644, ); if (lookahead == '\t' || lookahead == ' ') SKIP(94); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 84: ADVANCE_MAP( - '!', 4513, - '#', 5521, - '(', 3802, - '*', 3769, - '+', 3817, - '-', 3634, - '.', 4507, - '/', 3808, - '<', 3791, - '=', 4514, - '>', 3624, - 'B', 4024, - 'E', 4535, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'P', 4535, - 'T', 4535, - 'a', 4590, - 'b', 4026, - 'd', 4555, - 'e', 4532, - 'g', 4534, - 'h', 4608, - 'i', 4589, - 'k', 4534, - 'm', 4536, - 'n', 4596, - 'o', 4604, - 'p', 4534, - 's', 4566, - 't', 4534, - 'u', 4621, - 'w', 4582, - 'x', 4599, - 0xb5, 4621, + '!', 4531, + '#', 5548, + '(', 3816, + '*', 3779, + '+', 3831, + '-', 3648, + '.', 4525, + '/', 3822, + '<', 3805, + '=', 4532, + '>', 3638, + 'B', 4038, + 'E', 4553, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'P', 4553, + 'T', 4553, + 'a', 4611, + 'b', 4040, + 'd', 4573, + 'e', 4550, + 'g', 4552, + 'h', 4574, + 'i', 4610, + 'k', 4552, + 'm', 4554, + 'n', 4617, + 'o', 4625, + 'p', 4552, + 's', 4587, + 't', 4552, + 'u', 4644, + 'w', 4603, + 'x', 4620, + 0xb5, 4644, ); if (lookahead == '\t' || lookahead == ' ') SKIP(94); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 85: ADVANCE_MAP( - '!', 4513, - '#', 5521, - '(', 3802, - '*', 3769, - '+', 3817, - '-', 3634, - '.', 4507, - '/', 3808, - '<', 3791, - '=', 4514, - '>', 3624, - 'E', 4550, - '_', 4538, - 'a', 4590, - 'b', 4579, - 'e', 4546, - 'i', 4589, - 'm', 4595, - 'n', 4597, - 'o', 4604, - 's', 4628, - 'x', 4599, + '!', 4531, + '#', 5548, + '(', 3816, + '*', 3779, + '+', 3831, + '-', 3648, + '.', 4525, + '/', 3822, + '<', 3805, + '=', 4532, + '>', 3638, + 'E', 4567, + '_', 4556, + 'a', 4611, + 'b', 4600, + 'e', 4563, + 'h', 4575, + 'i', 4610, + 'm', 4616, + 'n', 4618, + 'o', 4625, + 's', 4654, + 'x', 4620, ); if (lookahead == '\t' || lookahead == ' ') SKIP(94); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 86: ADVANCE_MAP( - '!', 4513, - '#', 5521, - '(', 3802, - '*', 3769, - '+', 3817, - '-', 3634, - '.', 4507, - '/', 3808, - '<', 3791, - '=', 4514, - '>', 3624, - 'E', 4550, - 'a', 4590, - 'b', 4579, - 'e', 4546, - 'i', 4589, - 'm', 4595, - 'n', 4597, - 'o', 4604, - 's', 4628, - 'x', 4599, + '!', 4531, + '#', 5548, + '(', 3816, + '*', 3779, + '+', 3831, + '-', 3648, + '.', 4525, + '/', 3822, + '<', 3805, + '=', 4532, + '>', 3638, + 'E', 4567, + 'a', 4611, + 'b', 4600, + 'e', 4563, + 'h', 4575, + 'i', 4610, + 'm', 4616, + 'n', 4618, + 'o', 4625, + 's', 4654, + 'x', 4620, ); if (lookahead == '\t' || lookahead == ' ') SKIP(94); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 87: ADVANCE_MAP( - '!', 4513, - '#', 5521, - '(', 3802, - '*', 3769, - '+', 3817, - '-', 3634, - '.', 4507, - '/', 3808, - '<', 3791, - '=', 4514, - '>', 3624, - 'a', 4590, - 'b', 4579, - 'e', 4591, - 'i', 4589, - 'm', 4595, - 'n', 4597, - 'o', 4604, - 's', 4628, - 'x', 4599, + '!', 4531, + '#', 5548, + '(', 3816, + '*', 3779, + '+', 3831, + '-', 3648, + '.', 4525, + '/', 3822, + '<', 3805, + '=', 4532, + '>', 3638, + 'a', 4611, + 'b', 4600, + 'e', 4612, + 'h', 4575, + 'i', 4610, + 'm', 4616, + 'n', 4618, + 'o', 4625, + 's', 4654, + 'x', 4620, ); if (lookahead == '\t' || lookahead == ' ') SKIP(94); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 88: ADVANCE_MAP( - '!', 4513, - '#', 5521, - '(', 3802, - '*', 3769, - '+', 3817, - '-', 3634, - '.', 3843, - '/', 3808, - '<', 3791, - '=', 4514, - '>', 3624, - 'E', 4550, - 'a', 4590, - 'b', 4579, - 'e', 4546, - 'i', 4589, - 'm', 4595, - 'n', 4597, - 'o', 4604, - 's', 4628, - 'x', 4599, + '!', 4531, + '#', 5548, + '(', 3816, + '*', 3779, + '+', 3831, + '-', 3648, + '.', 3857, + '/', 3822, + '<', 3805, + '=', 4532, + '>', 3638, + 'E', 4567, + 'a', 4611, + 'b', 4600, + 'e', 4563, + 'h', 4575, + 'i', 4610, + 'm', 4616, + 'n', 4618, + 'o', 4625, + 's', 4654, + 'x', 4620, ); if (lookahead == '\t' || lookahead == ' ') SKIP(94); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 89: ADVANCE_MAP( - '!', 4513, - '#', 5521, - '(', 3802, - '*', 3769, - '+', 3817, - '-', 3634, - '/', 3808, - '<', 3791, - '=', 4514, - '>', 3624, - 'E', 4550, - '_', 4538, - 'a', 4590, - 'b', 4579, - 'e', 4546, - 'i', 4589, - 'm', 4595, - 'n', 4597, - 'o', 4604, - 's', 4628, - 'x', 4599, + '!', 4531, + '#', 5548, + '(', 3816, + '*', 3779, + '+', 3831, + '-', 3648, + '/', 3822, + '<', 3805, + '=', 4532, + '>', 3638, + 'E', 4567, + '_', 4556, + 'a', 4611, + 'b', 4600, + 'e', 4563, + 'h', 4575, + 'i', 4610, + 'm', 4616, + 'n', 4618, + 'o', 4625, + 's', 4654, + 'x', 4620, ); if (lookahead == '\t' || lookahead == ' ') SKIP(94); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 90: ADVANCE_MAP( - '!', 4513, - '#', 5521, - '(', 3802, - '*', 3769, - '+', 3817, - '-', 3634, - '/', 3808, - '<', 3791, - '=', 4514, - '>', 3624, - 'E', 4550, - 'a', 4590, - 'b', 4579, - 'e', 4546, - 'i', 4589, - 'm', 4595, - 'n', 4597, - 'o', 4604, - 's', 4628, - 'x', 4599, + '!', 4531, + '#', 5548, + '(', 3816, + '*', 3779, + '+', 3831, + '-', 3648, + '/', 3822, + '<', 3805, + '=', 4532, + '>', 3638, + 'E', 4567, + 'a', 4611, + 'b', 4600, + 'e', 4563, + 'h', 4575, + 'i', 4610, + 'm', 4616, + 'n', 4618, + 'o', 4625, + 's', 4654, + 'x', 4620, ); if (lookahead == '\t' || lookahead == ' ') SKIP(94); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 91: ADVANCE_MAP( - '!', 4513, - '#', 5521, - '(', 3802, - '*', 3769, - '+', 3817, - '-', 3634, - '/', 3808, - '<', 3791, - '=', 4514, - '>', 3624, - 'a', 4590, - 'b', 4579, - 'e', 4591, - 'i', 4589, - 'm', 4595, - 'n', 4597, - 'o', 4604, - 's', 4628, - 'x', 4599, + '!', 4531, + '#', 5548, + '(', 3816, + '*', 3779, + '+', 3831, + '-', 3648, + '/', 3822, + '<', 3805, + '=', 4532, + '>', 3638, + 'a', 4611, + 'b', 4600, + 'e', 4612, + 'h', 4575, + 'i', 4610, + 'm', 4616, + 'n', 4618, + 'o', 4625, + 's', 4654, + 'x', 4620, ); if (lookahead == '\t' || lookahead == ' ') SKIP(94); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 92: ADVANCE_MAP( - '!', 4727, - '#', 5527, - '(', 3802, - '*', 3771, - '+', 3822, - '-', 3657, - '/', 3810, - '<', 3792, - '=', 4728, - '>', 3625, - 'a', 4822, - 'b', 4805, - 'e', 4827, - 'i', 4823, - 'm', 4835, - 'n', 4838, - 'o', 4849, - 's', 4880, - 'x', 4837, + '!', 4750, + '#', 5554, + '(', 3816, + '*', 3781, + '+', 3836, + '-', 3671, + '/', 3824, + '<', 3806, + '=', 4751, + '>', 3639, + 'a', 4847, + 'b', 4830, + 'e', 4852, + 'h', 4786, + 'i', 4848, + 'm', 4860, + 'n', 4863, + 'o', 4874, + 's', 4910, + 'x', 4862, ); if (lookahead == '\t' || lookahead == ' ') SKIP(94); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 93: ADVANCE_MAP( '!', 451, - '#', 5521, - '$', 3606, - '*', 3769, - '+', 3818, - '-', 3652, + '#', 5548, + '$', 3620, + '*', 3779, + '+', 3832, + '-', 3666, '.', 479, - '/', 3808, - '<', 3791, + '/', 3822, + '<', 3805, '=', 452, - '>', 3624, - 'a', 1134, - 'b', 946, - 'e', 1166, - 'i', 1110, - 'm', 1200, - 'n', 1217, - 'o', 1287, - 's', 1491, - 'x', 1219, + '>', 3638, + 'a', 1137, + 'b', 949, + 'e', 1169, + 'h', 554, + 'i', 1113, + 'm', 1203, + 'n', 1220, + 'o', 1290, + 's', 1495, + 'x', 1222, ); if (lookahead == '\t' || lookahead == ' ') SKIP(93); @@ -16587,1514 +16609,1515 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 94: ADVANCE_MAP( '!', 451, - '#', 5521, - '*', 3769, - '+', 3817, - '-', 3634, - '/', 3808, - '<', 3791, + '#', 5548, + '*', 3779, + '+', 3831, + '-', 3648, + '/', 3822, + '<', 3805, '=', 452, - '>', 3624, - 'a', 1134, - 'b', 946, - 'e', 1166, - 'i', 1110, - 'm', 1200, - 'n', 1217, - 'o', 1287, - 's', 1491, - 'x', 1219, + '>', 3638, + 'a', 1137, + 'b', 949, + 'e', 1169, + 'h', 554, + 'i', 1113, + 'm', 1203, + 'n', 1220, + 'o', 1290, + 's', 1495, + 'x', 1222, ); if (lookahead == '\t' || lookahead == ' ') SKIP(94); END_STATE(); case 95: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3802, - '+', 3825, - ',', 3605, - '-', 3654, - '.', 3855, - '0', 3887, - 'I', 2043, - 'N', 2040, - '_', 1927, + '(', 3816, + '+', 3839, + ',', 3619, + '-', 3668, + '.', 3869, + '0', 3901, + 'I', 2047, + 'N', 2044, + '_', 1931, '`', 482, - 'a', 1986, - 'b', 2009, - 'c', 1940, - 'd', 1954, - 'e', 1992, - 'f', 1941, - 'h', 1979, - 'i', 1926, - 'l', 1964, - 'm', 1942, - 'n', 2031, - 'o', 2037, - 'r', 1955, - 's', 1999, - 't', 2005, - 'u', 2020, - 'w', 1977, - '}', 3713, + 'a', 1990, + 'b', 2013, + 'c', 1944, + 'd', 1958, + 'e', 1996, + 'f', 1945, + 'h', 1983, + 'i', 1930, + 'l', 1968, + 'm', 1946, + 'n', 2035, + 'o', 2041, + 'r', 1959, + 's', 2003, + 't', 2009, + 'u', 2024, + 'w', 1981, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(167); + lookahead == ' ') SKIP(169); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5328); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3888); + lookahead == '^') ADVANCE(5355); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3902); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2048); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2052); END_STATE(); case 96: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3802, - '+', 3825, - ',', 3605, - '-', 3654, - '.', 1913, - '0', 3887, - 'I', 2043, - 'N', 2040, - '_', 1927, + '(', 3816, + '+', 3839, + ',', 3619, + '-', 3668, + '.', 1917, + '0', 3901, + 'I', 2047, + 'N', 2044, + '_', 1931, '`', 482, - 'a', 1986, - 'b', 2009, - 'c', 1940, - 'd', 1954, - 'e', 1992, - 'f', 1941, - 'h', 1979, - 'i', 1926, - 'l', 1964, - 'm', 1942, - 'n', 2031, - 'o', 2037, - 'r', 1955, - 's', 1999, - 't', 2005, - 'u', 2020, - 'w', 1977, - '}', 3713, + 'a', 1990, + 'b', 2013, + 'c', 1944, + 'd', 1958, + 'e', 1996, + 'f', 1945, + 'h', 1983, + 'i', 1930, + 'l', 1968, + 'm', 1946, + 'n', 2035, + 'o', 2041, + 'r', 1959, + 's', 2003, + 't', 2009, + 'u', 2024, + 'w', 1981, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(167); + lookahead == ' ') SKIP(169); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5328); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3888); + lookahead == '^') ADVANCE(5355); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3902); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2048); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2052); END_STATE(); case 97: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3802, - '+', 3825, - ',', 4093, - '-', 3654, - '.', 3855, - '0', 3887, - ':', 3599, - 'I', 2043, - 'N', 2040, - '[', 3601, - ']', 3602, - '_', 1927, + '(', 3816, + '+', 3839, + ',', 4107, + '-', 3668, + '.', 3869, + '0', 3901, + ':', 3613, + 'I', 2047, + 'N', 2044, + '[', 3615, + ']', 3616, + '_', 1931, '`', 482, - 'a', 1986, - 'b', 2009, - 'c', 1940, - 'd', 1954, - 'e', 1992, - 'f', 1941, - 'h', 1979, - 'i', 1926, - 'l', 1964, - 'm', 1942, - 'n', 2031, - 'o', 2037, - 'r', 1955, - 's', 1999, - 't', 2005, - 'u', 2020, - 'w', 1977, - '}', 3713, - '\t', 4094, - ' ', 4094, + 'a', 1990, + 'b', 2013, + 'c', 1944, + 'd', 1958, + 'e', 1996, + 'f', 1945, + 'h', 1983, + 'i', 1930, + 'l', 1968, + 'm', 1946, + 'n', 2035, + 'o', 2041, + 'r', 1959, + 's', 2003, + 't', 2009, + 'u', 2024, + 'w', 1981, + '}', 3727, + '\t', 4108, + ' ', 4108, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5328); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3888); + lookahead == '^') ADVANCE(5355); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3902); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2048); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2052); END_STATE(); case 98: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3802, - '+', 3825, - ',', 4093, - '-', 3654, - '.', 1913, - '0', 3887, - 'I', 2043, - 'N', 2040, - '[', 4045, - ']', 3602, - '_', 1927, + '(', 3816, + '+', 3839, + ',', 4107, + '-', 3668, + '.', 1917, + '0', 3901, + 'I', 2047, + 'N', 2044, + '_', 1931, '`', 482, - 'a', 1986, - 'b', 2009, - 'c', 1940, - 'd', 1954, - 'e', 1992, - 'f', 1941, - 'h', 1979, - 'i', 1926, - 'l', 1964, - 'm', 1942, - 'n', 2031, - 'o', 2037, - 'r', 1955, - 's', 1999, - 't', 2005, - 'u', 2020, - 'w', 1977, - '}', 3713, - '\t', 4094, - ' ', 4094, + 'a', 1990, + 'b', 2013, + 'c', 1944, + 'd', 1958, + 'e', 1996, + 'f', 1945, + 'h', 1983, + 'i', 1930, + 'l', 1968, + 'm', 1946, + 'n', 2035, + 'o', 2041, + 'r', 1959, + 's', 2003, + 't', 2009, + 'u', 2024, + 'w', 1981, + '}', 3727, + '\t', 4108, + ' ', 4108, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5328); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3888); + lookahead == '^') ADVANCE(5355); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3902); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2048); + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2052); END_STATE(); case 99: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3802, - '+', 3827, - ',', 3605, - '-', 3655, - '.', 3865, - '0', 3959, - 'B', 4024, - 'E', 1920, - 'G', 1925, - 'I', 2043, - 'K', 1925, - 'M', 1925, - 'N', 2040, - 'P', 1925, - 'T', 1925, - '_', 1939, + '(', 3816, + '+', 3841, + ',', 3619, + '-', 3669, + '.', 1920, + '0', 3901, + 'B', 4038, + 'E', 1924, + 'G', 1929, + 'I', 2047, + 'K', 1929, + 'M', 1929, + 'N', 2044, + 'P', 1929, + 'T', 1929, + '_', 1931, '`', 482, - 'a', 1986, - 'b', 4028, - 'c', 1940, - 'd', 1946, - 'e', 1919, - 'f', 1941, - 'g', 1924, - 'h', 1978, - 'i', 1926, - 'k', 1924, - 'l', 1964, - 'm', 1921, - 'n', 2017, - 'o', 2037, - 'p', 1924, - 'r', 1955, - 's', 1967, - 't', 1923, - 'u', 2019, - 'w', 1976, - '}', 3713, - 0xb5, 2018, + 'a', 1990, + 'b', 4042, + 'c', 1944, + 'd', 1950, + 'e', 1923, + 'f', 1945, + 'g', 1928, + 'h', 1982, + 'i', 1930, + 'k', 1928, + 'l', 1968, + 'm', 1925, + 'n', 2021, + 'o', 2041, + 'p', 1928, + 'r', 1959, + 's', 1971, + 't', 1927, + 'u', 2023, + 'w', 1980, + '}', 3727, + 0xb5, 2022, ); if (lookahead == '\t' || lookahead == ' ') SKIP(137); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5328); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3981); + lookahead == '^') ADVANCE(5355); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3902); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2048); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2052); END_STATE(); case 100: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3802, - '+', 3827, - ',', 3605, - '-', 3655, - '.', 3865, - '0', 3959, - 'E', 1935, - 'I', 2043, - 'N', 2040, - '_', 1939, + '(', 3816, + '+', 3841, + ',', 3619, + '-', 3669, + '.', 1920, + '0', 3901, + 'E', 1939, + 'I', 2047, + 'N', 2044, + '_', 1931, '`', 482, - 'a', 1986, - 'b', 2009, - 'c', 1940, - 'd', 1954, - 'e', 1934, - 'f', 1941, - 'h', 1979, - 'i', 1926, - 'l', 1964, - 'm', 1942, - 'n', 2031, - 'o', 2037, - 'r', 1955, - 's', 1999, - 't', 2005, - 'u', 2020, - 'w', 1977, - '}', 3713, + 'a', 1990, + 'b', 2013, + 'c', 1944, + 'd', 1958, + 'e', 1938, + 'f', 1945, + 'h', 1983, + 'i', 1930, + 'l', 1968, + 'm', 1946, + 'n', 2035, + 'o', 2041, + 'r', 1959, + 's', 2003, + 't', 2009, + 'u', 2024, + 'w', 1981, + '}', 3727, ); if (lookahead == '\t' || lookahead == ' ') SKIP(137); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5328); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3981); + lookahead == '^') ADVANCE(5355); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3902); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2048); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2052); END_STATE(); case 101: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3802, - '+', 3827, - ',', 3605, - '-', 3655, - '.', 1916, - '0', 3887, - 'B', 4024, - 'E', 1920, - 'G', 1925, - 'I', 2043, - 'K', 1925, - 'M', 1925, - 'N', 2040, - 'P', 1925, - 'T', 1925, - '_', 1927, + '(', 3816, + '+', 3841, + ',', 3619, + '-', 3669, + '.', 1920, + '0', 3973, + 'B', 4038, + 'E', 1924, + 'G', 1929, + 'I', 2047, + 'K', 1929, + 'M', 1929, + 'N', 2044, + 'P', 1929, + 'T', 1929, + '_', 1943, '`', 482, - 'a', 1986, - 'b', 4028, - 'c', 1940, - 'd', 1946, - 'e', 1919, - 'f', 1941, - 'g', 1924, - 'h', 1978, - 'i', 1926, - 'k', 1924, - 'l', 1964, - 'm', 1921, - 'n', 2017, - 'o', 2037, - 'p', 1924, - 'r', 1955, - 's', 1967, - 't', 1923, - 'u', 2019, - 'w', 1976, - '}', 3713, - 0xb5, 2018, + 'a', 1990, + 'b', 4042, + 'c', 1944, + 'd', 1950, + 'e', 1923, + 'f', 1945, + 'g', 1928, + 'h', 1982, + 'i', 1930, + 'k', 1928, + 'l', 1968, + 'm', 1925, + 'n', 2021, + 'o', 2041, + 'p', 1928, + 'r', 1959, + 's', 1971, + 't', 1927, + 'u', 2023, + 'w', 1980, + '}', 3727, + 0xb5, 2022, ); if (lookahead == '\t' || lookahead == ' ') SKIP(137); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5328); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3888); + lookahead == '^') ADVANCE(5355); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2048); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2052); END_STATE(); case 102: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3802, - '+', 3827, - ',', 3605, - '-', 3655, - '.', 1916, - '0', 3887, - 'E', 1935, - 'I', 2043, - 'N', 2040, - '_', 1927, + '(', 3816, + '+', 3841, + ',', 3619, + '-', 3669, + '.', 1920, + '0', 3973, + 'B', 4038, + 'E', 1929, + 'G', 1929, + 'I', 2047, + 'K', 1929, + 'M', 1929, + 'N', 2044, + 'P', 1929, + 'T', 1929, + '_', 1943, '`', 482, - 'a', 1986, - 'b', 2009, - 'c', 1940, - 'd', 1954, - 'e', 1934, - 'f', 1941, - 'h', 1979, - 'i', 1926, - 'l', 1964, - 'm', 1942, - 'n', 2031, - 'o', 2037, - 'r', 1955, - 's', 1999, - 't', 2005, - 'u', 2020, - 'w', 1977, - '}', 3713, + 'a', 1990, + 'b', 4042, + 'c', 1944, + 'd', 1950, + 'e', 1926, + 'f', 1945, + 'g', 1928, + 'h', 1982, + 'i', 1930, + 'k', 1928, + 'l', 1968, + 'm', 1925, + 'n', 2021, + 'o', 2041, + 'p', 1928, + 'r', 1959, + 's', 1971, + 't', 1927, + 'u', 2023, + 'w', 1980, + '}', 3727, + 0xb5, 2022, ); if (lookahead == '\t' || lookahead == ' ') SKIP(137); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5328); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3888); + lookahead == '^') ADVANCE(5355); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2048); + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2052); END_STATE(); case 103: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3802, - '+', 3827, - ',', 3605, - '-', 3655, - '.', 1916, - '0', 3959, - 'B', 4024, - 'E', 1920, - 'G', 1925, - 'I', 2043, - 'K', 1925, - 'M', 1925, - 'N', 2040, - 'P', 1925, - 'T', 1925, - '_', 1939, + '(', 3816, + '+', 3841, + ',', 3619, + '-', 3669, + '.', 1920, + '0', 3973, + 'E', 1939, + 'I', 2047, + 'N', 2044, + '_', 1943, '`', 482, - 'a', 1986, - 'b', 4028, - 'c', 1940, - 'd', 1946, - 'e', 1919, - 'f', 1941, - 'g', 1924, - 'h', 1978, - 'i', 1926, - 'k', 1924, - 'l', 1964, - 'm', 1921, - 'n', 2017, - 'o', 2037, - 'p', 1924, - 'r', 1955, - 's', 1967, - 't', 1923, - 'u', 2019, - 'w', 1976, - '}', 3713, - 0xb5, 2018, + 'a', 1990, + 'b', 2013, + 'c', 1944, + 'd', 1958, + 'e', 1938, + 'f', 1945, + 'h', 1983, + 'i', 1930, + 'l', 1968, + 'm', 1946, + 'n', 2035, + 'o', 2041, + 'r', 1959, + 's', 2003, + 't', 2009, + 'u', 2024, + 'w', 1981, + '}', 3727, ); if (lookahead == '\t' || lookahead == ' ') SKIP(137); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5328); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3981); + lookahead == '^') ADVANCE(5355); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2048); + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2052); END_STATE(); case 104: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3802, - '+', 3827, - ',', 3605, - '-', 3655, - '.', 1916, - '0', 3959, - 'B', 4024, - 'E', 1925, - 'G', 1925, - 'I', 2043, - 'K', 1925, - 'M', 1925, - 'N', 2040, - 'P', 1925, - 'T', 1925, - '_', 1939, + '(', 3816, + '+', 3841, + ',', 3619, + '-', 3669, + '.', 1920, + '0', 3973, + 'I', 2047, + 'N', 2044, + '_', 1943, '`', 482, - 'a', 1986, - 'b', 4028, - 'c', 1940, - 'd', 1946, - 'e', 1922, - 'f', 1941, - 'g', 1924, - 'h', 1978, - 'i', 1926, - 'k', 1924, - 'l', 1964, - 'm', 1921, - 'n', 2017, - 'o', 2037, - 'p', 1924, - 'r', 1955, - 's', 1967, - 't', 1923, - 'u', 2019, - 'w', 1976, - '}', 3713, - 0xb5, 2018, + 'a', 1990, + 'b', 2013, + 'c', 1944, + 'd', 1958, + 'e', 1996, + 'f', 1945, + 'h', 1983, + 'i', 1930, + 'l', 1968, + 'm', 1946, + 'n', 2035, + 'o', 2041, + 'r', 1959, + 's', 2003, + 't', 2009, + 'u', 2024, + 'w', 1981, + '}', 3727, ); if (lookahead == '\t' || lookahead == ' ') SKIP(137); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5328); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3981); + lookahead == '^') ADVANCE(5355); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2048); + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2052); END_STATE(); case 105: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3802, - '+', 3827, - ',', 3605, - '-', 3655, - '.', 1916, - '0', 3959, - 'E', 1935, - 'I', 2043, - 'N', 2040, - '_', 1939, + '(', 3816, + '+', 3841, + ',', 3619, + '-', 3669, + '.', 3879, + '0', 3973, + 'B', 4038, + 'E', 1924, + 'G', 1929, + 'I', 2047, + 'K', 1929, + 'M', 1929, + 'N', 2044, + 'P', 1929, + 'T', 1929, + '_', 1943, '`', 482, - 'a', 1986, - 'b', 2009, - 'c', 1940, - 'd', 1954, - 'e', 1934, - 'f', 1941, - 'h', 1979, - 'i', 1926, - 'l', 1964, - 'm', 1942, - 'n', 2031, - 'o', 2037, - 'r', 1955, - 's', 1999, - 't', 2005, - 'u', 2020, - 'w', 1977, - '}', 3713, + 'a', 1990, + 'b', 4042, + 'c', 1944, + 'd', 1950, + 'e', 1923, + 'f', 1945, + 'g', 1928, + 'h', 1982, + 'i', 1930, + 'k', 1928, + 'l', 1968, + 'm', 1925, + 'n', 2021, + 'o', 2041, + 'p', 1928, + 'r', 1959, + 's', 1971, + 't', 1927, + 'u', 2023, + 'w', 1980, + '}', 3727, + 0xb5, 2022, ); if (lookahead == '\t' || lookahead == ' ') SKIP(137); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5328); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3981); + lookahead == '^') ADVANCE(5355); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2048); + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2052); END_STATE(); case 106: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3802, - '+', 3827, - ',', 3605, - '-', 3655, - '.', 1916, - '0', 3959, - 'I', 2043, - 'N', 2040, - '_', 1939, + '(', 3816, + '+', 3841, + ',', 3619, + '-', 3669, + '.', 3879, + '0', 3973, + 'E', 1939, + 'I', 2047, + 'N', 2044, + '_', 1943, '`', 482, - 'a', 1986, - 'b', 2009, - 'c', 1940, - 'd', 1954, - 'e', 1992, - 'f', 1941, - 'h', 1979, - 'i', 1926, - 'l', 1964, - 'm', 1942, - 'n', 2031, - 'o', 2037, - 'r', 1955, - 's', 1999, - 't', 2005, - 'u', 2020, - 'w', 1977, - '}', 3713, + 'a', 1990, + 'b', 2013, + 'c', 1944, + 'd', 1958, + 'e', 1938, + 'f', 1945, + 'h', 1983, + 'i', 1930, + 'l', 1968, + 'm', 1946, + 'n', 2035, + 'o', 2041, + 'r', 1959, + 's', 2003, + 't', 2009, + 'u', 2024, + 'w', 1981, + '}', 3727, ); if (lookahead == '\t' || lookahead == ' ') SKIP(137); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5328); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3981); + lookahead == '^') ADVANCE(5355); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2048); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2052); END_STATE(); case 107: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3802, - '+', 3827, - ',', 3605, - '-', 3655, - '.', 3856, - '0', 3959, - 'E', 1935, - 'I', 2043, - 'N', 2040, - '_', 1939, + '(', 3816, + '+', 3841, + ',', 3619, + '-', 3669, + '.', 3870, + '0', 3973, + 'E', 1939, + 'I', 2047, + 'N', 2044, + '_', 1943, '`', 482, - 'a', 1986, - 'b', 2009, - 'c', 1940, - 'd', 1954, - 'e', 1934, - 'f', 1941, - 'h', 1979, - 'i', 1926, - 'l', 1964, - 'm', 1942, - 'n', 2031, - 'o', 2037, - 'r', 1955, - 's', 1999, - 't', 2005, - 'u', 2020, - 'w', 1977, - '}', 3713, + 'a', 1990, + 'b', 2013, + 'c', 1944, + 'd', 1958, + 'e', 1938, + 'f', 1945, + 'h', 1983, + 'i', 1930, + 'l', 1968, + 'm', 1946, + 'n', 2035, + 'o', 2041, + 'r', 1959, + 's', 2003, + 't', 2009, + 'u', 2024, + 'w', 1981, + '}', 3727, ); if (lookahead == '\t' || lookahead == ' ') SKIP(137); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5328); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3981); + lookahead == '^') ADVANCE(5355); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2048); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2052); END_STATE(); case 108: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3802, - '+', 3827, - ',', 3605, - '-', 3655, - '.', 1914, - '0', 3887, - 'E', 1935, - 'I', 2043, - 'N', 2040, - '_', 1927, + '(', 3816, + '+', 3841, + ',', 3619, + '-', 3669, + '.', 1918, + '0', 3901, + 'E', 1939, + 'I', 2047, + 'N', 2044, + '_', 1931, '`', 482, - 'a', 1986, - 'b', 2009, - 'c', 1940, - 'd', 1954, - 'e', 1934, - 'f', 1941, - 'h', 1979, - 'i', 1926, - 'l', 1964, - 'm', 1942, - 'n', 2031, - 'o', 2037, - 'r', 1955, - 's', 1999, - 't', 2005, - 'u', 2020, - 'w', 1977, - '}', 3713, + 'a', 1990, + 'b', 2013, + 'c', 1944, + 'd', 1958, + 'e', 1938, + 'f', 1945, + 'h', 1983, + 'i', 1930, + 'l', 1968, + 'm', 1946, + 'n', 2035, + 'o', 2041, + 'r', 1959, + 's', 2003, + 't', 2009, + 'u', 2024, + 'w', 1981, + '}', 3727, ); if (lookahead == '\t' || lookahead == ' ') SKIP(137); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5328); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3888); + lookahead == '^') ADVANCE(5355); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3902); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2048); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2052); END_STATE(); case 109: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3802, - '+', 3827, - ',', 3605, - '-', 3655, - '.', 1914, - '0', 3959, - 'E', 1935, - 'I', 2043, - 'N', 2040, - '_', 1939, + '(', 3816, + '+', 3841, + ',', 3619, + '-', 3669, + '.', 1918, + '0', 3973, + 'E', 1939, + 'I', 2047, + 'N', 2044, + '_', 1943, '`', 482, - 'a', 1986, - 'b', 2009, - 'c', 1940, - 'd', 1954, - 'e', 1934, - 'f', 1941, - 'h', 1979, - 'i', 1926, - 'l', 1964, - 'm', 1942, - 'n', 2031, - 'o', 2037, - 'r', 1955, - 's', 1999, - 't', 2005, - 'u', 2020, - 'w', 1977, - '}', 3713, + 'a', 1990, + 'b', 2013, + 'c', 1944, + 'd', 1958, + 'e', 1938, + 'f', 1945, + 'h', 1983, + 'i', 1930, + 'l', 1968, + 'm', 1946, + 'n', 2035, + 'o', 2041, + 'r', 1959, + 's', 2003, + 't', 2009, + 'u', 2024, + 'w', 1981, + '}', 3727, ); if (lookahead == '\t' || lookahead == ' ') SKIP(137); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5328); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3981); + lookahead == '^') ADVANCE(5355); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2048); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2052); END_STATE(); case 110: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3802, - '+', 3827, - ',', 3605, - '-', 3655, - '.', 1914, - '0', 3959, - 'I', 2043, - 'N', 2040, - '_', 1939, + '(', 3816, + '+', 3841, + ',', 3619, + '-', 3669, + '.', 1918, + '0', 3973, + 'I', 2047, + 'N', 2044, + '_', 1943, '`', 482, - 'a', 1986, - 'b', 2009, - 'c', 1940, - 'd', 1954, - 'e', 1992, - 'f', 1941, - 'h', 1979, - 'i', 1926, - 'l', 1964, - 'm', 1942, - 'n', 2031, - 'o', 2037, - 'r', 1955, - 's', 1999, - 't', 2005, - 'u', 2020, - 'w', 1977, - '}', 3713, + 'a', 1990, + 'b', 2013, + 'c', 1944, + 'd', 1958, + 'e', 1996, + 'f', 1945, + 'h', 1983, + 'i', 1930, + 'l', 1968, + 'm', 1946, + 'n', 2035, + 'o', 2041, + 'r', 1959, + 's', 2003, + 't', 2009, + 'u', 2024, + 'w', 1981, + '}', 3727, ); if (lookahead == '\t' || lookahead == ' ') SKIP(137); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5328); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3981); + lookahead == '^') ADVANCE(5355); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2048); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2052); END_STATE(); case 111: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3802, - '+', 3827, - ',', 4093, - '-', 3655, - '.', 3865, - '0', 3959, - 'B', 4024, - 'E', 1920, - 'G', 1925, - 'I', 2043, - 'K', 1925, - 'M', 1925, - 'N', 2040, - 'P', 1925, - 'T', 1925, - '_', 1939, + '(', 3816, + '+', 3841, + ',', 4107, + '-', 3669, + '.', 1920, + '0', 3901, + 'B', 4038, + 'E', 1924, + 'G', 1929, + 'I', 2047, + 'K', 1929, + 'M', 1929, + 'N', 2044, + 'P', 1929, + 'T', 1929, + '[', 4059, + ']', 3616, + '_', 1931, '`', 482, - 'a', 1986, - 'b', 4028, - 'c', 1940, - 'd', 1946, - 'e', 1919, - 'f', 1941, - 'g', 1924, - 'h', 1978, - 'i', 1926, - 'k', 1924, - 'l', 1964, - 'm', 1921, - 'n', 2017, - 'o', 2037, - 'p', 1924, - 'r', 1955, - 's', 1967, - 't', 1923, - 'u', 2019, - 'w', 1976, - '}', 3713, - 0xb5, 2018, - '\t', 4094, - ' ', 4094, + 'a', 1990, + 'b', 4042, + 'c', 1944, + 'd', 1950, + 'e', 1923, + 'f', 1945, + 'g', 1928, + 'h', 1982, + 'i', 1930, + 'k', 1928, + 'l', 1968, + 'm', 1925, + 'n', 2021, + 'o', 2041, + 'p', 1928, + 'r', 1959, + 's', 1971, + 't', 1927, + 'u', 2023, + 'w', 1980, + '}', 3727, + 0xb5, 2022, + '\t', 4108, + ' ', 4108, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5328); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3981); + lookahead == '^') ADVANCE(5355); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3902); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2048); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2052); END_STATE(); case 112: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3802, - '+', 3827, - ',', 4093, - '-', 3655, - '.', 3865, - '0', 3959, - 'E', 1935, - 'I', 2043, - 'N', 2040, - '_', 1939, + '(', 3816, + '+', 3841, + ',', 4107, + '-', 3669, + '.', 1920, + '0', 3901, + 'E', 1939, + 'I', 2047, + 'N', 2044, + '_', 1931, '`', 482, - 'a', 1986, - 'b', 2009, - 'c', 1940, - 'd', 1954, - 'e', 1934, - 'f', 1941, - 'h', 1979, - 'i', 1926, - 'l', 1964, - 'm', 1942, - 'n', 2031, - 'o', 2037, - 'r', 1955, - 's', 1999, - 't', 2005, - 'u', 2020, - 'w', 1977, - '}', 3713, - '\t', 4094, - ' ', 4094, + 'a', 1990, + 'b', 2013, + 'c', 1944, + 'd', 1958, + 'e', 1938, + 'f', 1945, + 'h', 1983, + 'i', 1930, + 'l', 1968, + 'm', 1946, + 'n', 2035, + 'o', 2041, + 'r', 1959, + 's', 2003, + 't', 2009, + 'u', 2024, + 'w', 1981, + '}', 3727, + '\t', 4108, + ' ', 4108, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5328); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3981); + lookahead == '^') ADVANCE(5355); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3902); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2048); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2052); END_STATE(); case 113: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3802, - '+', 3827, - ',', 4093, - '-', 3655, - '.', 1916, - '0', 3887, - 'B', 4024, - 'E', 1920, - 'G', 1925, - 'I', 2043, - 'K', 1925, - 'M', 1925, - 'N', 2040, - 'P', 1925, - 'T', 1925, - '_', 1927, + '(', 3816, + '+', 3841, + ',', 4107, + '-', 3669, + '.', 1920, + '0', 3973, + 'B', 4038, + 'E', 1924, + 'G', 1929, + 'I', 2047, + 'K', 1929, + 'M', 1929, + 'N', 2044, + 'P', 1929, + 'T', 1929, + '_', 1943, '`', 482, - 'a', 1986, - 'b', 4028, - 'c', 1940, - 'd', 1946, - 'e', 1919, - 'f', 1941, - 'g', 1924, - 'h', 1978, - 'i', 1926, - 'k', 1924, - 'l', 1964, - 'm', 1921, - 'n', 2017, - 'o', 2037, - 'p', 1924, - 'r', 1955, - 's', 1967, - 't', 1923, - 'u', 2019, - 'w', 1976, - '}', 3713, - 0xb5, 2018, - '\t', 4094, - ' ', 4094, + 'a', 1990, + 'b', 4042, + 'c', 1944, + 'd', 1950, + 'e', 1923, + 'f', 1945, + 'g', 1928, + 'h', 1982, + 'i', 1930, + 'k', 1928, + 'l', 1968, + 'm', 1925, + 'n', 2021, + 'o', 2041, + 'p', 1928, + 'r', 1959, + 's', 1971, + 't', 1927, + 'u', 2023, + 'w', 1980, + '}', 3727, + 0xb5, 2022, + '\t', 4108, + ' ', 4108, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5328); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3888); + lookahead == '^') ADVANCE(5355); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2048); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2052); END_STATE(); case 114: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3802, - '+', 3827, - ',', 4093, - '-', 3655, - '.', 1916, - '0', 3887, - 'E', 1935, - 'I', 2043, - 'N', 2040, - '_', 1927, + '(', 3816, + '+', 3841, + ',', 4107, + '-', 3669, + '.', 1920, + '0', 3973, + 'B', 4038, + 'E', 1929, + 'G', 1929, + 'I', 2047, + 'K', 1929, + 'M', 1929, + 'N', 2044, + 'P', 1929, + 'T', 1929, + '_', 1943, '`', 482, - 'a', 1986, - 'b', 2009, - 'c', 1940, - 'd', 1954, - 'e', 1934, - 'f', 1941, - 'h', 1979, - 'i', 1926, - 'l', 1964, - 'm', 1942, - 'n', 2031, - 'o', 2037, - 'r', 1955, - 's', 1999, - 't', 2005, - 'u', 2020, - 'w', 1977, - '}', 3713, - '\t', 4094, - ' ', 4094, + 'a', 1990, + 'b', 4042, + 'c', 1944, + 'd', 1950, + 'e', 1926, + 'f', 1945, + 'g', 1928, + 'h', 1982, + 'i', 1930, + 'k', 1928, + 'l', 1968, + 'm', 1925, + 'n', 2021, + 'o', 2041, + 'p', 1928, + 'r', 1959, + 's', 1971, + 't', 1927, + 'u', 2023, + 'w', 1980, + '}', 3727, + 0xb5, 2022, + '\t', 4108, + ' ', 4108, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5328); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3888); + lookahead == '^') ADVANCE(5355); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2048); + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2052); END_STATE(); case 115: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3802, - '+', 3827, - ',', 4093, - '-', 3655, - '.', 1916, - '0', 3959, - 'B', 4024, - 'E', 1920, - 'G', 1925, - 'I', 2043, - 'K', 1925, - 'M', 1925, - 'N', 2040, - 'P', 1925, - 'T', 1925, - '_', 1939, + '(', 3816, + '+', 3841, + ',', 4107, + '-', 3669, + '.', 1920, + '0', 3973, + 'E', 1939, + 'I', 2047, + 'N', 2044, + '_', 1943, '`', 482, - 'a', 1986, - 'b', 4028, - 'c', 1940, - 'd', 1946, - 'e', 1919, - 'f', 1941, - 'g', 1924, - 'h', 1978, - 'i', 1926, - 'k', 1924, - 'l', 1964, - 'm', 1921, - 'n', 2017, - 'o', 2037, - 'p', 1924, - 'r', 1955, - 's', 1967, - 't', 1923, - 'u', 2019, - 'w', 1976, - '}', 3713, - 0xb5, 2018, - '\t', 4094, - ' ', 4094, + 'a', 1990, + 'b', 2013, + 'c', 1944, + 'd', 1958, + 'e', 1938, + 'f', 1945, + 'h', 1983, + 'i', 1930, + 'l', 1968, + 'm', 1946, + 'n', 2035, + 'o', 2041, + 'r', 1959, + 's', 2003, + 't', 2009, + 'u', 2024, + 'w', 1981, + '}', 3727, + '\t', 4108, + ' ', 4108, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5328); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3981); + lookahead == '^') ADVANCE(5355); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2048); + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2052); END_STATE(); case 116: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3802, - '+', 3827, - ',', 4093, - '-', 3655, - '.', 1916, - '0', 3959, - 'B', 4024, - 'E', 1925, - 'G', 1925, - 'I', 2043, - 'K', 1925, - 'M', 1925, - 'N', 2040, - 'P', 1925, - 'T', 1925, - '_', 1939, + '(', 3816, + '+', 3841, + ',', 4107, + '-', 3669, + '.', 1920, + '0', 3973, + 'I', 2047, + 'N', 2044, + '_', 1943, '`', 482, - 'a', 1986, - 'b', 4028, - 'c', 1940, - 'd', 1946, - 'e', 1922, - 'f', 1941, - 'g', 1924, - 'h', 1978, - 'i', 1926, - 'k', 1924, - 'l', 1964, - 'm', 1921, - 'n', 2017, - 'o', 2037, - 'p', 1924, - 'r', 1955, - 's', 1967, - 't', 1923, - 'u', 2019, - 'w', 1976, - '}', 3713, - 0xb5, 2018, - '\t', 4094, - ' ', 4094, + 'a', 1990, + 'b', 2013, + 'c', 1944, + 'd', 1958, + 'e', 1996, + 'f', 1945, + 'h', 1983, + 'i', 1930, + 'l', 1968, + 'm', 1946, + 'n', 2035, + 'o', 2041, + 'r', 1959, + 's', 2003, + 't', 2009, + 'u', 2024, + 'w', 1981, + '}', 3727, + '\t', 4108, + ' ', 4108, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5328); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3981); + lookahead == '^') ADVANCE(5355); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2048); + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2052); END_STATE(); case 117: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3802, - '+', 3827, - ',', 4093, - '-', 3655, - '.', 1916, - '0', 3959, - 'E', 1935, - 'I', 2043, - 'N', 2040, - '_', 1939, + '(', 3816, + '+', 3841, + ',', 4107, + '-', 3669, + '.', 3879, + '0', 3973, + 'B', 4038, + 'E', 1924, + 'G', 1929, + 'I', 2047, + 'K', 1929, + 'M', 1929, + 'N', 2044, + 'P', 1929, + 'T', 1929, + '_', 1943, '`', 482, - 'a', 1986, - 'b', 2009, - 'c', 1940, - 'd', 1954, - 'e', 1934, - 'f', 1941, - 'h', 1979, - 'i', 1926, - 'l', 1964, - 'm', 1942, - 'n', 2031, - 'o', 2037, - 'r', 1955, - 's', 1999, - 't', 2005, - 'u', 2020, - 'w', 1977, - '}', 3713, - '\t', 4094, - ' ', 4094, + 'a', 1990, + 'b', 4042, + 'c', 1944, + 'd', 1950, + 'e', 1923, + 'f', 1945, + 'g', 1928, + 'h', 1982, + 'i', 1930, + 'k', 1928, + 'l', 1968, + 'm', 1925, + 'n', 2021, + 'o', 2041, + 'p', 1928, + 'r', 1959, + 's', 1971, + 't', 1927, + 'u', 2023, + 'w', 1980, + '}', 3727, + 0xb5, 2022, + '\t', 4108, + ' ', 4108, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5328); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3981); + lookahead == '^') ADVANCE(5355); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2048); + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2052); END_STATE(); case 118: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3802, - '+', 3827, - ',', 4093, - '-', 3655, - '.', 1916, - '0', 3959, - 'I', 2043, - 'N', 2040, - '_', 1939, + '(', 3816, + '+', 3841, + ',', 4107, + '-', 3669, + '.', 3879, + '0', 3973, + 'E', 1939, + 'I', 2047, + 'N', 2044, + '_', 1943, '`', 482, - 'a', 1986, - 'b', 2009, - 'c', 1940, - 'd', 1954, - 'e', 1992, - 'f', 1941, - 'h', 1979, - 'i', 1926, - 'l', 1964, - 'm', 1942, - 'n', 2031, - 'o', 2037, - 'r', 1955, - 's', 1999, - 't', 2005, - 'u', 2020, - 'w', 1977, - '}', 3713, - '\t', 4094, - ' ', 4094, + 'a', 1990, + 'b', 2013, + 'c', 1944, + 'd', 1958, + 'e', 1938, + 'f', 1945, + 'h', 1983, + 'i', 1930, + 'l', 1968, + 'm', 1946, + 'n', 2035, + 'o', 2041, + 'r', 1959, + 's', 2003, + 't', 2009, + 'u', 2024, + 'w', 1981, + '}', 3727, + '\t', 4108, + ' ', 4108, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5328); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3981); + lookahead == '^') ADVANCE(5355); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2048); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2052); END_STATE(); case 119: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3802, - '+', 3827, - ',', 4093, - '-', 3655, - '.', 3856, - '0', 3959, - 'E', 1935, - 'I', 2043, - 'N', 2040, - '_', 1939, + '(', 3816, + '+', 3841, + ',', 4107, + '-', 3669, + '.', 3870, + '0', 3973, + 'E', 1939, + 'I', 2047, + 'N', 2044, + '_', 1943, '`', 482, - 'a', 1986, - 'b', 2009, - 'c', 1940, - 'd', 1954, - 'e', 1934, - 'f', 1941, - 'h', 1979, - 'i', 1926, - 'l', 1964, - 'm', 1942, - 'n', 2031, - 'o', 2037, - 'r', 1955, - 's', 1999, - 't', 2005, - 'u', 2020, - 'w', 1977, - '}', 3713, - '\t', 4094, - ' ', 4094, + 'a', 1990, + 'b', 2013, + 'c', 1944, + 'd', 1958, + 'e', 1938, + 'f', 1945, + 'h', 1983, + 'i', 1930, + 'l', 1968, + 'm', 1946, + 'n', 2035, + 'o', 2041, + 'r', 1959, + 's', 2003, + 't', 2009, + 'u', 2024, + 'w', 1981, + '}', 3727, + '\t', 4108, + ' ', 4108, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5328); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3981); + lookahead == '^') ADVANCE(5355); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2048); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2052); END_STATE(); case 120: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3802, - '+', 3827, - ',', 4093, - '-', 3655, - '.', 1914, - '0', 3887, - 'E', 1935, - 'I', 2043, - 'N', 2040, - '_', 1927, + '(', 3816, + '+', 3841, + ',', 4107, + '-', 3669, + '.', 1918, + '0', 3901, + 'E', 1939, + 'I', 2047, + 'N', 2044, + '_', 1931, '`', 482, - 'a', 1986, - 'b', 2009, - 'c', 1940, - 'd', 1954, - 'e', 1934, - 'f', 1941, - 'h', 1979, - 'i', 1926, - 'l', 1964, - 'm', 1942, - 'n', 2031, - 'o', 2037, - 'r', 1955, - 's', 1999, - 't', 2005, - 'u', 2020, - 'w', 1977, - '}', 3713, - '\t', 4094, - ' ', 4094, + 'a', 1990, + 'b', 2013, + 'c', 1944, + 'd', 1958, + 'e', 1938, + 'f', 1945, + 'h', 1983, + 'i', 1930, + 'l', 1968, + 'm', 1946, + 'n', 2035, + 'o', 2041, + 'r', 1959, + 's', 2003, + 't', 2009, + 'u', 2024, + 'w', 1981, + '}', 3727, + '\t', 4108, + ' ', 4108, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5328); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3888); + lookahead == '^') ADVANCE(5355); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3902); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2048); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2052); END_STATE(); case 121: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3802, - '+', 3827, - ',', 4093, - '-', 3655, - '.', 1914, - '0', 3959, - 'E', 1935, - 'I', 2043, - 'N', 2040, - '_', 1939, + '(', 3816, + '+', 3841, + ',', 4107, + '-', 3669, + '.', 1918, + '0', 3973, + 'E', 1939, + 'I', 2047, + 'N', 2044, + '_', 1943, '`', 482, - 'a', 1986, - 'b', 2009, - 'c', 1940, - 'd', 1954, - 'e', 1934, - 'f', 1941, - 'h', 1979, - 'i', 1926, - 'l', 1964, - 'm', 1942, - 'n', 2031, - 'o', 2037, - 'r', 1955, - 's', 1999, - 't', 2005, - 'u', 2020, - 'w', 1977, - '}', 3713, - '\t', 4094, - ' ', 4094, + 'a', 1990, + 'b', 2013, + 'c', 1944, + 'd', 1958, + 'e', 1938, + 'f', 1945, + 'h', 1983, + 'i', 1930, + 'l', 1968, + 'm', 1946, + 'n', 2035, + 'o', 2041, + 'r', 1959, + 's', 2003, + 't', 2009, + 'u', 2024, + 'w', 1981, + '}', 3727, + '\t', 4108, + ' ', 4108, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5328); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3981); + lookahead == '^') ADVANCE(5355); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2048); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2052); END_STATE(); case 122: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3802, - '+', 3827, - ',', 4093, - '-', 3655, - '.', 1914, - '0', 3959, - 'I', 2043, - 'N', 2040, - '_', 1939, + '(', 3816, + '+', 3841, + ',', 4107, + '-', 3669, + '.', 1918, + '0', 3973, + 'I', 2047, + 'N', 2044, + '_', 1943, '`', 482, - 'a', 1986, - 'b', 2009, - 'c', 1940, - 'd', 1954, - 'e', 1992, - 'f', 1941, - 'h', 1979, - 'i', 1926, - 'l', 1964, - 'm', 1942, - 'n', 2031, - 'o', 2037, - 'r', 1955, - 's', 1999, - 't', 2005, - 'u', 2020, - 'w', 1977, - '}', 3713, - '\t', 4094, - ' ', 4094, + 'a', 1990, + 'b', 2013, + 'c', 1944, + 'd', 1958, + 'e', 1996, + 'f', 1945, + 'h', 1983, + 'i', 1930, + 'l', 1968, + 'm', 1946, + 'n', 2035, + 'o', 2041, + 'r', 1959, + 's', 2003, + 't', 2009, + 'u', 2024, + 'w', 1981, + '}', 3727, + '\t', 4108, + ' ', 4108, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5328); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3981); + lookahead == '^') ADVANCE(5355); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2048); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2052); END_STATE(); case 123: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 2065, - '-', 3648, - '.', 2066, - '0', 3951, - ';', 4101, - 'I', 2404, - 'N', 2402, - '[', 3601, - '^', 4119, - '_', 2082, + '(', 3617, + '+', 2069, + '-', 3662, + '.', 2070, + '0', 3965, + ';', 4119, + 'I', 2408, + 'N', 2406, + '[', 3615, + '^', 4137, + '_', 2086, '`', 482, - 'a', 2250, - 'b', 2210, - 'c', 2084, - 'd', 2113, - 'e', 2087, - 'f', 2090, - 'g', 2202, - 'h', 2102, - 'i', 2079, - 'j', 2338, - 'k', 2143, - 'l', 2173, - 'm', 2092, - 'n', 2286, - 'o', 2395, - 'p', 2106, - 'q', 2388, - 'r', 2095, - 's', 2131, - 't', 2096, - 'u', 2297, - 'v', 2214, - 'w', 2209, - '{', 3712, + 'a', 2254, + 'b', 2214, + 'c', 2088, + 'd', 2117, + 'e', 2091, + 'f', 2094, + 'g', 2206, + 'h', 2106, + 'i', 2083, + 'j', 2342, + 'k', 2147, + 'l', 2176, + 'm', 2096, + 'n', 2290, + 'o', 2399, + 'p', 2110, + 'q', 2392, + 'r', 2097, + 's', 2135, + 't', 2100, + 'u', 2301, + 'v', 2218, + 'w', 2213, + '{', 3726, '\t', 123, ' ', 123, ); @@ -18103,55 +18126,55 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3974); + lookahead == '@') ADVANCE(2868); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3988); if (lookahead != 0 && (lookahead < '&' || '.' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'w' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2407); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2411); END_STATE(); case 124: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 2065, - '-', 3648, - '.', 2066, - '0', 3951, - 'I', 2404, - 'N', 2402, - '[', 3601, - '^', 4119, - '_', 2082, + '(', 3617, + '+', 2069, + '-', 3662, + '.', 2070, + '0', 3965, + 'I', 2408, + 'N', 2406, + '[', 3615, + '^', 4137, + '_', 2086, '`', 482, - 'a', 2250, - 'b', 2211, - 'c', 2085, - 'd', 2114, - 'e', 2087, - 'f', 2090, - 'g', 2202, - 'h', 2102, - 'i', 2081, - 'j', 2338, - 'k', 2143, - 'l', 2173, - 'm', 2118, - 'n', 2286, - 'o', 2395, - 'p', 2106, - 'q', 2388, - 'r', 2094, - 's', 2131, - 't', 2097, - 'u', 2297, - 'v', 2214, - 'w', 2204, - '{', 3712, + 'a', 2254, + 'b', 2215, + 'c', 2089, + 'd', 2118, + 'e', 2091, + 'f', 2094, + 'g', 2206, + 'h', 2106, + 'i', 2085, + 'j', 2342, + 'k', 2147, + 'l', 2176, + 'm', 2122, + 'n', 2290, + 'o', 2399, + 'p', 2110, + 'q', 2392, + 'r', 2098, + 's', 2135, + 't', 2101, + 'u', 2301, + 'v', 2218, + 'w', 2208, + '{', 3726, ); if (lookahead == '\t' || lookahead == ' ') SKIP(124); @@ -18159,4888 +18182,4888 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3974); + lookahead == '@') ADVANCE(2868); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3988); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '&' || '.' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'w' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2407); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2411); END_STATE(); case 125: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 3823, - ',', 3605, - '-', 3648, - '.', 4106, - '0', 3958, - '?', 3772, - 'I', 2846, - 'N', 2839, - '_', 2450, + '(', 3617, + '+', 3837, + ',', 3619, + '-', 3662, + '.', 4124, + '0', 3972, + '?', 3782, + 'I', 2854, + 'N', 2847, + '_', 2454, '`', 482, - 'a', 2628, - 'b', 2723, - 'c', 2466, - 'd', 2520, - 'e', 2641, - 'f', 2459, - 'h', 2595, - 'i', 2443, - 'l', 2537, - 'm', 2462, - 'n', 2810, - 'o', 2828, - 'r', 2521, - 's', 2676, - 't', 2714, - 'u', 2756, - 'w', 2585, - '}', 3713, + 'a', 2631, + 'b', 2729, + 'c', 2471, + 'd', 2526, + 'e', 2647, + 'f', 2463, + 'h', 2602, + 'i', 2447, + 'l', 2543, + 'm', 2466, + 'n', 2818, + 'o', 2836, + 'r', 2527, + 's', 2682, + 't', 2720, + 'u', 2764, + 'w', 2590, + '}', 3727, ); if (lookahead == '\t' || lookahead == ' ') SKIP(129); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3981); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2860); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2868); END_STATE(); case 126: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 3823, - ',', 3605, - '-', 3648, - '.', 4106, - '0', 3958, - 'I', 2846, - 'N', 2839, - '_', 2450, + '(', 3617, + '+', 3837, + ',', 3619, + '-', 3662, + '.', 4124, + '0', 3972, + 'I', 2854, + 'N', 2847, + '_', 2454, '`', 482, - 'a', 2628, - 'b', 2723, - 'c', 2466, - 'd', 2520, - 'e', 2641, - 'f', 2459, - 'h', 2595, - 'i', 2443, - 'l', 2537, - 'm', 2462, - 'n', 2810, - 'o', 2828, - 'r', 2521, - 's', 2676, - 't', 2714, - 'u', 2756, - 'w', 2585, - '}', 3713, + 'a', 2631, + 'b', 2729, + 'c', 2471, + 'd', 2526, + 'e', 2647, + 'f', 2463, + 'h', 2602, + 'i', 2447, + 'l', 2543, + 'm', 2466, + 'n', 2818, + 'o', 2836, + 'r', 2527, + 's', 2682, + 't', 2720, + 'u', 2764, + 'w', 2590, + '}', 3727, ); if (lookahead == '\t' || lookahead == ' ') SKIP(130); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3981); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2860); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2868); END_STATE(); case 127: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 3823, - ',', 3605, - '-', 3648, - '.', 4107, - '0', 3958, - ':', 4098, - '?', 3772, - 'I', 2846, - 'N', 2839, - '_', 2450, + '(', 3617, + '+', 3837, + ',', 3619, + '-', 3662, + '.', 4125, + '0', 3972, + ':', 4116, + '?', 3782, + 'I', 2854, + 'N', 2847, + '_', 2454, '`', 482, - 'a', 2628, - 'b', 2723, - 'c', 2466, - 'd', 2520, - 'e', 2641, - 'f', 2459, - 'h', 2595, - 'i', 2443, - 'l', 2537, - 'm', 2462, - 'n', 2810, - 'o', 2828, - 'r', 2521, - 's', 2676, - 't', 2714, - 'u', 2756, - 'w', 2585, - '}', 3713, + 'a', 2631, + 'b', 2729, + 'c', 2471, + 'd', 2526, + 'e', 2647, + 'f', 2463, + 'h', 2602, + 'i', 2447, + 'l', 2543, + 'm', 2466, + 'n', 2818, + 'o', 2836, + 'r', 2527, + 's', 2682, + 't', 2720, + 'u', 2764, + 'w', 2590, + '}', 3727, ); if (lookahead == '\t' || lookahead == ' ') SKIP(127); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3981); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2860); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2868); END_STATE(); case 128: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 3823, - ',', 3605, - '-', 3648, - '.', 4107, - '0', 3958, - ':', 4098, - 'I', 2846, - 'N', 2839, - '_', 2450, + '(', 3617, + '+', 3837, + ',', 3619, + '-', 3662, + '.', 4125, + '0', 3972, + ':', 4116, + 'I', 2854, + 'N', 2847, + '_', 2454, '`', 482, - 'a', 2628, - 'b', 2723, - 'c', 2466, - 'd', 2520, - 'e', 2641, - 'f', 2459, - 'h', 2595, - 'i', 2443, - 'l', 2537, - 'm', 2462, - 'n', 2810, - 'o', 2828, - 'r', 2521, - 's', 2676, - 't', 2714, - 'u', 2756, - 'w', 2585, - '}', 3713, + 'a', 2631, + 'b', 2729, + 'c', 2471, + 'd', 2526, + 'e', 2647, + 'f', 2463, + 'h', 2602, + 'i', 2447, + 'l', 2543, + 'm', 2466, + 'n', 2818, + 'o', 2836, + 'r', 2527, + 's', 2682, + 't', 2720, + 'u', 2764, + 'w', 2590, + '}', 3727, ); if (lookahead == '\t' || lookahead == ' ') SKIP(128); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3981); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2860); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2868); END_STATE(); case 129: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 3823, - ',', 3605, - '-', 3648, - '.', 4107, - '0', 3958, - '?', 3772, - 'I', 2846, - 'N', 2839, - '_', 2450, + '(', 3617, + '+', 3837, + ',', 3619, + '-', 3662, + '.', 4125, + '0', 3972, + '?', 3782, + 'I', 2854, + 'N', 2847, + '_', 2454, '`', 482, - 'a', 2628, - 'b', 2723, - 'c', 2466, - 'd', 2520, - 'e', 2641, - 'f', 2459, - 'h', 2595, - 'i', 2443, - 'l', 2537, - 'm', 2462, - 'n', 2810, - 'o', 2828, - 'r', 2521, - 's', 2676, - 't', 2714, - 'u', 2756, - 'w', 2585, - '}', 3713, + 'a', 2631, + 'b', 2729, + 'c', 2471, + 'd', 2526, + 'e', 2647, + 'f', 2463, + 'h', 2602, + 'i', 2447, + 'l', 2543, + 'm', 2466, + 'n', 2818, + 'o', 2836, + 'r', 2527, + 's', 2682, + 't', 2720, + 'u', 2764, + 'w', 2590, + '}', 3727, ); if (lookahead == '\t' || lookahead == ' ') SKIP(129); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3981); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2860); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2868); END_STATE(); case 130: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 3823, - ',', 3605, - '-', 3648, - '.', 4107, - '0', 3958, - 'I', 2846, - 'N', 2839, - '_', 2450, + '(', 3617, + '+', 3837, + ',', 3619, + '-', 3662, + '.', 4125, + '0', 3972, + 'I', 2854, + 'N', 2847, + '_', 2454, '`', 482, - 'a', 2628, - 'b', 2723, - 'c', 2466, - 'd', 2520, - 'e', 2641, - 'f', 2459, - 'h', 2595, - 'i', 2443, - 'l', 2537, - 'm', 2462, - 'n', 2810, - 'o', 2828, - 'r', 2521, - 's', 2676, - 't', 2714, - 'u', 2756, - 'w', 2585, - '}', 3713, + 'a', 2631, + 'b', 2729, + 'c', 2471, + 'd', 2526, + 'e', 2647, + 'f', 2463, + 'h', 2602, + 'i', 2447, + 'l', 2543, + 'm', 2466, + 'n', 2818, + 'o', 2836, + 'r', 2527, + 's', 2682, + 't', 2720, + 'u', 2764, + 'w', 2590, + '}', 3727, ); if (lookahead == '\t' || lookahead == ' ') SKIP(130); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3981); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2860); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2868); END_STATE(); case 131: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 3823, - ',', 3605, - '-', 3648, - '.', 3853, - '0', 3958, - 'E', 2456, - 'I', 2846, - 'N', 2839, - '_', 2450, + '(', 3617, + '+', 3837, + ',', 3619, + '-', 3662, + '.', 3867, + '0', 3972, + 'E', 2461, + 'I', 2854, + 'N', 2847, + '_', 2454, '`', 482, - 'a', 2628, - 'b', 2723, - 'c', 2466, - 'd', 2520, - 'e', 2455, - 'f', 2459, - 'h', 2595, - 'i', 2443, - 'l', 2537, - 'm', 2462, - 'n', 2810, - 'o', 2828, - 'r', 2521, - 's', 2676, - 't', 2714, - 'u', 2756, - 'w', 2585, - '}', 3713, + 'a', 2631, + 'b', 2729, + 'c', 2471, + 'd', 2526, + 'e', 2460, + 'f', 2463, + 'h', 2602, + 'i', 2447, + 'l', 2543, + 'm', 2466, + 'n', 2818, + 'o', 2836, + 'r', 2527, + 's', 2682, + 't', 2720, + 'u', 2764, + 'w', 2590, + '}', 3727, ); if (lookahead == '\t' || lookahead == ' ') SKIP(137); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3981); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2860); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2868); END_STATE(); case 132: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 3823, - ',', 3605, - '-', 3648, - '.', 2069, - '0', 3958, - 'E', 2456, - 'I', 2846, - 'N', 2839, - '_', 2450, + '(', 3617, + '+', 3837, + ',', 3619, + '-', 3662, + '.', 2073, + '0', 3972, + 'E', 2461, + 'I', 2854, + 'N', 2847, + '_', 2454, '`', 482, - 'a', 2628, - 'b', 2723, - 'c', 2466, - 'd', 2520, - 'e', 2455, - 'f', 2459, - 'h', 2595, - 'i', 2443, - 'l', 2537, - 'm', 2462, - 'n', 2810, - 'o', 2828, - 'r', 2521, - 's', 2676, - 't', 2714, - 'u', 2756, - 'w', 2585, - '}', 3713, + 'a', 2631, + 'b', 2729, + 'c', 2471, + 'd', 2526, + 'e', 2460, + 'f', 2463, + 'h', 2602, + 'i', 2447, + 'l', 2543, + 'm', 2466, + 'n', 2818, + 'o', 2836, + 'r', 2527, + 's', 2682, + 't', 2720, + 'u', 2764, + 'w', 2590, + '}', 3727, ); if (lookahead == '\t' || lookahead == ' ') SKIP(137); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3981); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2860); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2868); END_STATE(); case 133: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 3823, - ',', 3605, - '-', 3648, - '.', 2069, - '0', 3958, - 'I', 2846, - 'N', 2839, - '_', 2450, + '(', 3617, + '+', 3837, + ',', 3619, + '-', 3662, + '.', 2073, + '0', 3972, + 'I', 2854, + 'N', 2847, + '_', 2454, '`', 482, - 'a', 2628, - 'b', 2723, - 'c', 2466, - 'd', 2520, - 'e', 2641, - 'f', 2459, - 'h', 2595, - 'i', 2443, - 'l', 2537, - 'm', 2462, - 'n', 2810, - 'o', 2828, - 'r', 2521, - 's', 2676, - 't', 2714, - 'u', 2756, - 'w', 2585, - '}', 3713, + 'a', 2631, + 'b', 2729, + 'c', 2471, + 'd', 2526, + 'e', 2647, + 'f', 2463, + 'h', 2602, + 'i', 2447, + 'l', 2543, + 'm', 2466, + 'n', 2818, + 'o', 2836, + 'r', 2527, + 's', 2682, + 't', 2720, + 'u', 2764, + 'w', 2590, + '}', 3727, ); if (lookahead == '\t' || lookahead == ' ') SKIP(137); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3981); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2860); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2868); END_STATE(); case 134: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 3823, - ',', 3605, - '-', 3648, - '.', 2069, - '0', 3886, - 'E', 2456, - 'I', 2846, - 'N', 2839, - '_', 2458, + '(', 3617, + '+', 3837, + ',', 3619, + '-', 3662, + '.', 2073, + '0', 3900, + 'E', 2461, + 'I', 2854, + 'N', 2847, + '_', 2459, '`', 482, - 'a', 2628, - 'b', 2723, - 'c', 2466, - 'd', 2520, - 'e', 2455, - 'f', 2459, - 'h', 2595, - 'i', 2443, - 'l', 2537, - 'm', 2462, - 'n', 2810, - 'o', 2828, - 'r', 2521, - 's', 2676, - 't', 2714, - 'u', 2756, - 'w', 2585, - '}', 3713, + 'a', 2631, + 'b', 2729, + 'c', 2471, + 'd', 2526, + 'e', 2460, + 'f', 2463, + 'h', 2602, + 'i', 2447, + 'l', 2543, + 'm', 2466, + 'n', 2818, + 'o', 2836, + 'r', 2527, + 's', 2682, + 't', 2720, + 'u', 2764, + 'w', 2590, + '}', 3727, ); if (lookahead == '\t' || lookahead == ' ') SKIP(137); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3888); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3902); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2860); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2868); END_STATE(); case 135: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 3823, - ',', 3605, - '-', 3648, - '.', 2070, - '0', 3958, - ':', 4098, - 'I', 2846, - 'N', 2839, - '_', 2450, + '(', 3617, + '+', 3837, + ',', 3619, + '-', 3662, + '.', 2074, + '0', 3972, + ':', 4116, + 'I', 2854, + 'N', 2847, + '_', 2454, '`', 482, - 'a', 2628, - 'b', 2723, - 'c', 2466, - 'd', 2520, - 'e', 2641, - 'f', 2459, - 'h', 2595, - 'i', 2443, - 'l', 2537, - 'm', 2462, - 'n', 2810, - 'o', 2828, - 'r', 2521, - 's', 2676, - 't', 2714, - 'u', 2756, - 'w', 2585, - '}', 3713, + 'a', 2631, + 'b', 2729, + 'c', 2471, + 'd', 2526, + 'e', 2647, + 'f', 2463, + 'h', 2602, + 'i', 2447, + 'l', 2543, + 'm', 2466, + 'n', 2818, + 'o', 2836, + 'r', 2527, + 's', 2682, + 't', 2720, + 'u', 2764, + 'w', 2590, + '}', 3727, ); if (lookahead == '\t' || lookahead == ' ') SKIP(135); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3981); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2860); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2868); END_STATE(); case 136: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 3823, - ',', 3605, - '-', 3648, - '.', 2070, - '0', 3958, - 'E', 2456, - 'I', 2846, - 'N', 2839, - '_', 2450, + '(', 3617, + '+', 3837, + ',', 3619, + '-', 3662, + '.', 2074, + '0', 3972, + 'E', 2461, + 'I', 2854, + 'N', 2847, + '_', 2454, '`', 482, - 'a', 2628, - 'b', 2723, - 'c', 2466, - 'd', 2520, - 'e', 2455, - 'f', 2459, - 'h', 2595, - 'i', 2443, - 'l', 2537, - 'm', 2462, - 'n', 2810, - 'o', 2828, - 'r', 2521, - 's', 2676, - 't', 2714, - 'u', 2756, - 'w', 2585, - '}', 3713, + 'a', 2631, + 'b', 2729, + 'c', 2471, + 'd', 2526, + 'e', 2460, + 'f', 2463, + 'h', 2602, + 'i', 2447, + 'l', 2543, + 'm', 2466, + 'n', 2818, + 'o', 2836, + 'r', 2527, + 's', 2682, + 't', 2720, + 'u', 2764, + 'w', 2590, + '}', 3727, ); if (lookahead == '\t' || lookahead == ' ') SKIP(137); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3981); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2860); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2868); END_STATE(); case 137: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 3823, - ',', 3605, - '-', 3648, - '.', 2070, - '0', 3958, - 'I', 2846, - 'N', 2839, - '_', 2450, + '(', 3617, + '+', 3837, + ',', 3619, + '-', 3662, + '.', 2074, + '0', 3972, + 'I', 2854, + 'N', 2847, + '_', 2454, '`', 482, - 'a', 2628, - 'b', 2723, - 'c', 2466, - 'd', 2520, - 'e', 2641, - 'f', 2459, - 'h', 2595, - 'i', 2443, - 'l', 2537, - 'm', 2462, - 'n', 2810, - 'o', 2828, - 'r', 2521, - 's', 2676, - 't', 2714, - 'u', 2756, - 'w', 2585, - '}', 3713, + 'a', 2631, + 'b', 2729, + 'c', 2471, + 'd', 2526, + 'e', 2647, + 'f', 2463, + 'h', 2602, + 'i', 2447, + 'l', 2543, + 'm', 2466, + 'n', 2818, + 'o', 2836, + 'r', 2527, + 's', 2682, + 't', 2720, + 'u', 2764, + 'w', 2590, + '}', 3727, ); if (lookahead == '\t' || lookahead == ' ') SKIP(137); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3981); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2860); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2868); END_STATE(); case 138: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 3823, - ',', 3605, - '-', 3648, - '.', 2070, - '0', 3886, - 'E', 2456, - 'I', 2846, - 'N', 2839, - '_', 2458, + '(', 3617, + '+', 3837, + ',', 3619, + '-', 3662, + '.', 2074, + '0', 3900, + 'E', 2461, + 'I', 2854, + 'N', 2847, + '_', 2459, '`', 482, - 'a', 2628, - 'b', 2723, - 'c', 2466, - 'd', 2520, - 'e', 2455, - 'f', 2459, - 'h', 2595, - 'i', 2443, - 'l', 2537, - 'm', 2462, - 'n', 2810, - 'o', 2828, - 'r', 2521, - 's', 2676, - 't', 2714, - 'u', 2756, - 'w', 2585, - '}', 3713, + 'a', 2631, + 'b', 2729, + 'c', 2471, + 'd', 2526, + 'e', 2460, + 'f', 2463, + 'h', 2602, + 'i', 2447, + 'l', 2543, + 'm', 2466, + 'n', 2818, + 'o', 2836, + 'r', 2527, + 's', 2682, + 't', 2720, + 'u', 2764, + 'w', 2590, + '}', 3727, ); if (lookahead == '\t' || lookahead == ' ') SKIP(137); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3888); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3902); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2860); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2868); END_STATE(); case 139: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 3823, - ',', 3605, - '-', 3648, - '.', 3854, - '0', 3958, - 'E', 2456, - 'I', 2846, - 'N', 2839, - '_', 2450, + '(', 3617, + '+', 3837, + ',', 3619, + '-', 3662, + '.', 3868, + '0', 3972, + 'E', 2461, + 'I', 2854, + 'N', 2847, + '_', 2454, '`', 482, - 'a', 2628, - 'b', 2723, - 'c', 2466, - 'd', 2520, - 'e', 2455, - 'f', 2459, - 'h', 2595, - 'i', 2443, - 'l', 2537, - 'm', 2462, - 'n', 2810, - 'o', 2828, - 'r', 2521, - 's', 2676, - 't', 2714, - 'u', 2756, - 'w', 2585, - '}', 3713, + 'a', 2631, + 'b', 2729, + 'c', 2471, + 'd', 2526, + 'e', 2460, + 'f', 2463, + 'h', 2602, + 'i', 2447, + 'l', 2543, + 'm', 2466, + 'n', 2818, + 'o', 2836, + 'r', 2527, + 's', 2682, + 't', 2720, + 'u', 2764, + 'w', 2590, + '}', 3727, ); if (lookahead == '\t' || lookahead == ' ') SKIP(137); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3981); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2860); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2868); END_STATE(); case 140: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 3823, - ',', 4093, - '-', 3648, - '.', 4106, - '0', 3958, - ':', 3599, - '>', 3623, - 'I', 2846, - 'N', 2839, - ']', 3602, - '_', 2450, + '(', 3617, + '+', 3837, + ',', 4107, + '-', 3662, + '.', 4124, + '0', 3972, + ':', 3613, + '>', 3637, + 'I', 2854, + 'N', 2847, + ']', 3616, + '_', 2454, '`', 482, - 'a', 2628, - 'b', 2723, - 'c', 2466, - 'd', 2520, - 'e', 2641, - 'f', 2459, - 'h', 2595, - 'i', 2443, - 'l', 2537, - 'm', 2462, - 'n', 2810, - 'o', 2828, - 'r', 2521, - 's', 2676, - 't', 2714, - 'u', 2756, - 'w', 2585, - '}', 3713, - '\t', 4094, - ' ', 4094, + 'a', 2631, + 'b', 2729, + 'c', 2471, + 'd', 2526, + 'e', 2647, + 'f', 2463, + 'h', 2602, + 'i', 2447, + 'l', 2543, + 'm', 2466, + 'n', 2818, + 'o', 2836, + 'r', 2527, + 's', 2682, + 't', 2720, + 'u', 2764, + 'w', 2590, + '}', 3727, + '\t', 4108, + ' ', 4108, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3981); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2860); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2868); END_STATE(); case 141: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 3823, - ',', 4093, - '-', 3648, - '.', 4106, - '0', 3958, - '?', 3772, - 'I', 2846, - 'N', 2839, - '_', 2450, + '(', 3617, + '+', 3837, + ',', 4107, + '-', 3662, + '.', 4124, + '0', 3972, + '?', 3782, + 'I', 2854, + 'N', 2847, + '_', 2454, '`', 482, - 'a', 2628, - 'b', 2723, - 'c', 2466, - 'd', 2520, - 'e', 2641, - 'f', 2459, - 'h', 2595, - 'i', 2443, - 'l', 2537, - 'm', 2462, - 'n', 2810, - 'o', 2828, - 'r', 2521, - 's', 2676, - 't', 2714, - 'u', 2756, - 'w', 2585, - '}', 3713, - '\t', 4094, - ' ', 4094, + 'a', 2631, + 'b', 2729, + 'c', 2471, + 'd', 2526, + 'e', 2647, + 'f', 2463, + 'h', 2602, + 'i', 2447, + 'l', 2543, + 'm', 2466, + 'n', 2818, + 'o', 2836, + 'r', 2527, + 's', 2682, + 't', 2720, + 'u', 2764, + 'w', 2590, + '}', 3727, + '\t', 4108, + ' ', 4108, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3981); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2860); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2868); END_STATE(); case 142: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 3823, - ',', 4093, - '-', 3648, - '.', 4107, - '0', 3958, - '?', 3772, - 'I', 2846, - 'N', 2839, - '_', 2450, + '(', 3617, + '+', 3837, + ',', 4107, + '-', 3662, + '.', 4125, + '0', 3972, + '?', 3782, + 'I', 2854, + 'N', 2847, + '_', 2454, '`', 482, - 'a', 2628, - 'b', 2723, - 'c', 2466, - 'd', 2520, - 'e', 2641, - 'f', 2459, - 'h', 2595, - 'i', 2443, - 'l', 2537, - 'm', 2462, - 'n', 2810, - 'o', 2828, - 'r', 2521, - 's', 2676, - 't', 2714, - 'u', 2756, - 'w', 2585, - '}', 3713, - '\t', 4094, - ' ', 4094, + 'a', 2631, + 'b', 2729, + 'c', 2471, + 'd', 2526, + 'e', 2647, + 'f', 2463, + 'h', 2602, + 'i', 2447, + 'l', 2543, + 'm', 2466, + 'n', 2818, + 'o', 2836, + 'r', 2527, + 's', 2682, + 't', 2720, + 'u', 2764, + 'w', 2590, + '}', 3727, + '\t', 4108, + ' ', 4108, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3981); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2860); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2868); END_STATE(); case 143: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 3823, - ',', 4093, - '-', 3648, - '.', 4107, - '0', 3958, - 'I', 2846, - 'N', 2839, - '_', 2450, + '(', 3617, + '+', 3837, + ',', 4107, + '-', 3662, + '.', 4125, + '0', 3972, + 'I', 2854, + 'N', 2847, + '_', 2454, '`', 482, - 'a', 2628, - 'b', 2723, - 'c', 2466, - 'd', 2520, - 'e', 2641, - 'f', 2459, - 'h', 2595, - 'i', 2443, - 'l', 2537, - 'm', 2462, - 'n', 2810, - 'o', 2828, - 'r', 2521, - 's', 2676, - 't', 2714, - 'u', 2756, - 'w', 2585, - '}', 3713, - '\t', 4094, - ' ', 4094, + 'a', 2631, + 'b', 2729, + 'c', 2471, + 'd', 2526, + 'e', 2647, + 'f', 2463, + 'h', 2602, + 'i', 2447, + 'l', 2543, + 'm', 2466, + 'n', 2818, + 'o', 2836, + 'r', 2527, + 's', 2682, + 't', 2720, + 'u', 2764, + 'w', 2590, + '}', 3727, + '\t', 4108, + ' ', 4108, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3981); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2860); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2868); END_STATE(); case 144: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 3823, - ',', 4093, - '-', 3648, - '.', 3853, - '0', 3958, - 'E', 2456, - 'I', 2846, - 'N', 2839, - '_', 2450, + '(', 3617, + '+', 3837, + ',', 4107, + '-', 3662, + '.', 3867, + '0', 3972, + 'E', 2461, + 'I', 2854, + 'N', 2847, + '_', 2454, '`', 482, - 'a', 2628, - 'b', 2723, - 'c', 2466, - 'd', 2520, - 'e', 2455, - 'f', 2459, - 'h', 2595, - 'i', 2443, - 'l', 2537, - 'm', 2462, - 'n', 2810, - 'o', 2828, - 'r', 2521, - 's', 2676, - 't', 2714, - 'u', 2756, - 'w', 2585, - '}', 3713, - '\t', 4094, - ' ', 4094, + 'a', 2631, + 'b', 2729, + 'c', 2471, + 'd', 2526, + 'e', 2460, + 'f', 2463, + 'h', 2602, + 'i', 2447, + 'l', 2543, + 'm', 2466, + 'n', 2818, + 'o', 2836, + 'r', 2527, + 's', 2682, + 't', 2720, + 'u', 2764, + 'w', 2590, + '}', 3727, + '\t', 4108, + ' ', 4108, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3981); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2860); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2868); END_STATE(); case 145: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 3823, - ',', 4093, - '-', 3648, - '.', 2069, - '0', 3958, - 'E', 2456, - 'I', 2846, - 'N', 2839, - '_', 2450, + '(', 3617, + '+', 3837, + ',', 4107, + '-', 3662, + '.', 2073, + '0', 3972, + 'E', 2461, + 'I', 2854, + 'N', 2847, + '_', 2454, '`', 482, - 'a', 2628, - 'b', 2723, - 'c', 2466, - 'd', 2520, - 'e', 2455, - 'f', 2459, - 'h', 2595, - 'i', 2443, - 'l', 2537, - 'm', 2462, - 'n', 2810, - 'o', 2828, - 'r', 2521, - 's', 2676, - 't', 2714, - 'u', 2756, - 'w', 2585, - '}', 3713, - '\t', 4094, - ' ', 4094, + 'a', 2631, + 'b', 2729, + 'c', 2471, + 'd', 2526, + 'e', 2460, + 'f', 2463, + 'h', 2602, + 'i', 2447, + 'l', 2543, + 'm', 2466, + 'n', 2818, + 'o', 2836, + 'r', 2527, + 's', 2682, + 't', 2720, + 'u', 2764, + 'w', 2590, + '}', 3727, + '\t', 4108, + ' ', 4108, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3981); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2860); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2868); END_STATE(); case 146: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 3823, - ',', 4093, - '-', 3648, - '.', 2069, - '0', 3958, - 'I', 2846, - 'N', 2839, - '_', 2450, + '(', 3617, + '+', 3837, + ',', 4107, + '-', 3662, + '.', 2073, + '0', 3972, + 'I', 2854, + 'N', 2847, + '_', 2454, '`', 482, - 'a', 2628, - 'b', 2723, - 'c', 2466, - 'd', 2520, - 'e', 2641, - 'f', 2459, - 'h', 2595, - 'i', 2443, - 'l', 2537, - 'm', 2462, - 'n', 2810, - 'o', 2828, - 'r', 2521, - 's', 2676, - 't', 2714, - 'u', 2756, - 'w', 2585, - '}', 3713, - '\t', 4094, - ' ', 4094, + 'a', 2631, + 'b', 2729, + 'c', 2471, + 'd', 2526, + 'e', 2647, + 'f', 2463, + 'h', 2602, + 'i', 2447, + 'l', 2543, + 'm', 2466, + 'n', 2818, + 'o', 2836, + 'r', 2527, + 's', 2682, + 't', 2720, + 'u', 2764, + 'w', 2590, + '}', 3727, + '\t', 4108, + ' ', 4108, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3981); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2860); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2868); END_STATE(); case 147: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 3823, - ',', 4093, - '-', 3648, - '.', 2069, - '0', 3886, - 'E', 2456, - 'I', 2846, - 'N', 2839, - '_', 2458, + '(', 3617, + '+', 3837, + ',', 4107, + '-', 3662, + '.', 2073, + '0', 3900, + 'E', 2461, + 'I', 2854, + 'N', 2847, + '_', 2459, '`', 482, - 'a', 2628, - 'b', 2723, - 'c', 2466, - 'd', 2520, - 'e', 2455, - 'f', 2459, - 'h', 2595, - 'i', 2443, - 'l', 2537, - 'm', 2462, - 'n', 2810, - 'o', 2828, - 'r', 2521, - 's', 2676, - 't', 2714, - 'u', 2756, - 'w', 2585, - '}', 3713, - '\t', 4094, - ' ', 4094, + 'a', 2631, + 'b', 2729, + 'c', 2471, + 'd', 2526, + 'e', 2460, + 'f', 2463, + 'h', 2602, + 'i', 2447, + 'l', 2543, + 'm', 2466, + 'n', 2818, + 'o', 2836, + 'r', 2527, + 's', 2682, + 't', 2720, + 'u', 2764, + 'w', 2590, + '}', 3727, + '\t', 4108, + ' ', 4108, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3888); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3902); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2860); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2868); END_STATE(); case 148: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 3823, - ',', 4093, - '-', 3648, - '.', 2070, - '0', 3958, - 'E', 2456, - 'I', 2846, - 'N', 2839, - '_', 2450, + '(', 3617, + '+', 3837, + ',', 4107, + '-', 3662, + '.', 2074, + '0', 3972, + 'E', 2461, + 'I', 2854, + 'N', 2847, + '_', 2454, '`', 482, - 'a', 2628, - 'b', 2723, - 'c', 2466, - 'd', 2520, - 'e', 2455, - 'f', 2459, - 'h', 2595, - 'i', 2443, - 'l', 2537, - 'm', 2462, - 'n', 2810, - 'o', 2828, - 'r', 2521, - 's', 2676, - 't', 2714, - 'u', 2756, - 'w', 2585, - '}', 3713, - '\t', 4094, - ' ', 4094, + 'a', 2631, + 'b', 2729, + 'c', 2471, + 'd', 2526, + 'e', 2460, + 'f', 2463, + 'h', 2602, + 'i', 2447, + 'l', 2543, + 'm', 2466, + 'n', 2818, + 'o', 2836, + 'r', 2527, + 's', 2682, + 't', 2720, + 'u', 2764, + 'w', 2590, + '}', 3727, + '\t', 4108, + ' ', 4108, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3981); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2860); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2868); END_STATE(); case 149: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 3823, - ',', 4093, - '-', 3648, - '.', 2070, - '0', 3958, - 'I', 2846, - 'N', 2839, - '_', 2450, + '(', 3617, + '+', 3837, + ',', 4107, + '-', 3662, + '.', 2074, + '0', 3972, + 'I', 2854, + 'N', 2847, + '_', 2454, '`', 482, - 'a', 2628, - 'b', 2723, - 'c', 2466, - 'd', 2520, - 'e', 2641, - 'f', 2459, - 'h', 2595, - 'i', 2443, - 'l', 2537, - 'm', 2462, - 'n', 2810, - 'o', 2828, - 'r', 2521, - 's', 2676, - 't', 2714, - 'u', 2756, - 'w', 2585, - '}', 3713, - '\t', 4094, - ' ', 4094, + 'a', 2631, + 'b', 2729, + 'c', 2471, + 'd', 2526, + 'e', 2647, + 'f', 2463, + 'h', 2602, + 'i', 2447, + 'l', 2543, + 'm', 2466, + 'n', 2818, + 'o', 2836, + 'r', 2527, + 's', 2682, + 't', 2720, + 'u', 2764, + 'w', 2590, + '}', 3727, + '\t', 4108, + ' ', 4108, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3981); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2860); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2868); END_STATE(); case 150: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 3823, - ',', 4093, - '-', 3648, - '.', 2070, - '0', 3886, - 'E', 2456, - 'I', 2846, - 'N', 2839, - '_', 2458, + '(', 3617, + '+', 3837, + ',', 4107, + '-', 3662, + '.', 2074, + '0', 3900, + 'E', 2461, + 'I', 2854, + 'N', 2847, + '_', 2459, '`', 482, - 'a', 2628, - 'b', 2723, - 'c', 2466, - 'd', 2520, - 'e', 2455, - 'f', 2459, - 'h', 2595, - 'i', 2443, - 'l', 2537, - 'm', 2462, - 'n', 2810, - 'o', 2828, - 'r', 2521, - 's', 2676, - 't', 2714, - 'u', 2756, - 'w', 2585, - '}', 3713, - '\t', 4094, - ' ', 4094, + 'a', 2631, + 'b', 2729, + 'c', 2471, + 'd', 2526, + 'e', 2460, + 'f', 2463, + 'h', 2602, + 'i', 2447, + 'l', 2543, + 'm', 2466, + 'n', 2818, + 'o', 2836, + 'r', 2527, + 's', 2682, + 't', 2720, + 'u', 2764, + 'w', 2590, + '}', 3727, + '\t', 4108, + ' ', 4108, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3888); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3902); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2860); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2868); END_STATE(); case 151: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 3823, - ',', 4093, - '-', 3648, - '.', 3854, - '0', 3958, - 'E', 2456, - 'I', 2846, - 'N', 2839, - '_', 2450, + '(', 3617, + '+', 3837, + ',', 4107, + '-', 3662, + '.', 3868, + '0', 3972, + 'E', 2461, + 'I', 2854, + 'N', 2847, + '_', 2454, '`', 482, - 'a', 2628, - 'b', 2723, - 'c', 2466, - 'd', 2520, - 'e', 2455, - 'f', 2459, - 'h', 2595, - 'i', 2443, - 'l', 2537, - 'm', 2462, - 'n', 2810, - 'o', 2828, - 'r', 2521, - 's', 2676, - 't', 2714, - 'u', 2756, - 'w', 2585, - '}', 3713, - '\t', 4094, - ' ', 4094, + 'a', 2631, + 'b', 2729, + 'c', 2471, + 'd', 2526, + 'e', 2460, + 'f', 2463, + 'h', 2602, + 'i', 2447, + 'l', 2543, + 'm', 2466, + 'n', 2818, + 'o', 2836, + 'r', 2527, + 's', 2682, + 't', 2720, + 'u', 2764, + 'w', 2590, + '}', 3727, + '\t', 4108, + ' ', 4108, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3981); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2860); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2868); END_STATE(); case 152: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 4386, - '-', 3636, - '.', 4382, - '=', 4309, - 'N', 4444, - '[', 3601, - '_', 4399, + '(', 3617, + '+', 4404, + '-', 3650, + '.', 4400, + '=', 4327, + 'N', 4462, + '[', 3615, + '_', 4417, '`', 482, - 'e', 4377, - 'f', 4412, - 'n', 4440, - 'o', 4378, - 't', 4427, + 'e', 4395, + 'f', 4430, + 'n', 4458, + 'o', 4396, + 't', 4445, ); if (lookahead == '\t' || lookahead == ' ') SKIP(155); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4447); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3975); + lookahead == 'i') ADVANCE(4465); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3989); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4467); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4485); END_STATE(); case 153: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 4386, - '-', 3636, - '.', 4382, - '=', 4309, - 'N', 3493, - '[', 3601, - '_', 3371, + '(', 3617, + '+', 4404, + '-', 3650, + '.', 4400, + '=', 4327, + 'N', 3507, + '[', 3615, + '_', 3385, '`', 482, - 'e', 3355, - 'f', 3375, - 'n', 3479, - 'o', 3356, - 't', 3447, + 'e', 3369, + 'f', 3389, + 'n', 3493, + 'o', 3370, + 't', 3461, ); if (lookahead == '\t' || lookahead == ' ') SKIP(155); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3505); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3374); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3526); + lookahead == 'i') ADVANCE(3519); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3388); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3540); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(4467); + (lookahead < '_' || '}' < lookahead)) ADVANCE(4485); END_STATE(); case 154: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 4386, - '-', 3636, - '.', 4382, - 'N', 4444, - '[', 4045, - '_', 4399, + '(', 3617, + '+', 4404, + '-', 3650, + '.', 4400, + 'N', 4462, + '[', 4059, + '_', 4417, '`', 482, - 'e', 4377, - 'f', 4412, - 'n', 4440, - 'o', 4378, - 't', 4427, + 'e', 4395, + 'f', 4430, + 'n', 4458, + 'o', 4396, + 't', 4445, ); if (lookahead == '\t' || lookahead == ' ') SKIP(155); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4447); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3975); + lookahead == 'i') ADVANCE(4465); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3989); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4467); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4485); END_STATE(); case 155: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 4386, - '-', 3636, - '.', 4382, - 'N', 4444, - '[', 3601, - '_', 4399, + '(', 3617, + '+', 4404, + '-', 3650, + '.', 4400, + 'N', 4462, + '[', 3615, + '_', 4417, '`', 482, - 'e', 4377, - 'f', 4412, - 'n', 4440, - 'o', 4378, - 't', 4427, + 'e', 4395, + 'f', 4430, + 'n', 4458, + 'o', 4396, + 't', 4445, ); if (lookahead == '\t' || lookahead == ' ') SKIP(155); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4447); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3975); + lookahead == 'i') ADVANCE(4465); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3989); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4467); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4485); END_STATE(); case 156: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 4386, - '-', 3636, - '.', 4104, - '?', 3772, - 'N', 4444, - '[', 3601, - '_', 4399, + '(', 3617, + '+', 4404, + '-', 3650, + '.', 4122, + '?', 3782, + 'N', 4462, + '[', 3615, + '_', 4417, '`', 482, - 'e', 4377, - 'f', 4412, - 'n', 4440, - 'o', 4378, - 't', 4427, + 'e', 4395, + 'f', 4430, + 'n', 4458, + 'o', 4396, + 't', 4445, ); if (lookahead == '\t' || lookahead == ' ') SKIP(156); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4447); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3975); + lookahead == 'i') ADVANCE(4465); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3989); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4467); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4485); END_STATE(); case 157: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 4386, - '-', 3636, - '.', 4104, - 'N', 4444, - '[', 3601, - '_', 4399, + '(', 3617, + '+', 4404, + '-', 3650, + '.', 4122, + 'N', 4462, + '[', 3615, + '_', 4417, '`', 482, - 'e', 4377, - 'f', 4412, - 'n', 4440, - 'o', 4378, - 't', 4427, + 'e', 4395, + 'f', 4430, + 'n', 4458, + 'o', 4396, + 't', 4445, ); if (lookahead == '\t' || lookahead == ' ') SKIP(157); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4447); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3975); + lookahead == 'i') ADVANCE(4465); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3989); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4467); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4485); END_STATE(); case 158: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 4386, + '(', 3617, + '+', 4404, '-', 431, - '.', 4382, - '0', 3952, - ':', 4098, - 'N', 4444, - '[', 3601, - '_', 4399, + '.', 4400, + '0', 3966, + ':', 4116, + 'N', 4462, + '[', 3615, + '_', 4417, '`', 482, - 'e', 4377, - 'f', 4412, - 'n', 4440, - 'o', 4378, - 't', 4427, - '{', 3712, + 'e', 4395, + 'f', 4430, + 'n', 4458, + 'o', 4396, + 't', 4445, + '{', 3726, ); if (lookahead == '\t' || lookahead == ' ') SKIP(158); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4447); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3975); + lookahead == 'i') ADVANCE(4465); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3989); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4467); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4485); END_STATE(); case 159: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 4386, + '(', 3617, + '+', 4404, '-', 431, - '.', 4382, - ':', 4098, - 'N', 4444, - '_', 4399, + '.', 4400, + ':', 4116, + 'N', 4462, + '_', 4417, '`', 482, - 'e', 4377, - 'f', 4412, - 'n', 4440, - 'o', 4378, - 't', 4427, + 'e', 4395, + 'f', 4430, + 'n', 4458, + 'o', 4396, + 't', 4445, ); if (lookahead == '\t' || lookahead == ' ') SKIP(159); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4447); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3975); + lookahead == 'i') ADVANCE(4465); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3989); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4467); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4485); END_STATE(); case 160: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 4386, - '-', 3642, - '.', 4382, - '=', 4309, - 'N', 4348, - '[', 3601, - '_', 4328, + '(', 3617, + '+', 4404, + '-', 3658, + '.', 4400, + '=', 4327, + 'N', 4366, + '[', 3615, + '_', 4346, '`', 482, - 'e', 4316, - 'f', 4332, - 'n', 4347, - 'o', 4317, - 't', 4338, + 'e', 4334, + 'f', 4350, + 'n', 4365, + 'o', 4335, + 't', 4356, ); if (lookahead == '\t' || lookahead == ' ') SKIP(155); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4353); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4331); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + lookahead == 'i') ADVANCE(4371); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4349); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(4467); + (lookahead < '_' || '}' < lookahead)) ADVANCE(4485); END_STATE(); case 161: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 4970, - '-', 4969, - '.', 4971, - '0', 3953, - 'N', 5014, - '[', 3601, - ']', 3602, - '_', 4981, + '(', 3617, + '+', 4997, + '-', 4996, + '.', 4998, + '0', 3967, + 'N', 5041, + '[', 3615, + ']', 3616, + '_', 5008, '`', 482, - 'e', 4960, - 'f', 4994, - 'n', 5011, - 'o', 4961, - 't', 5004, - '{', 3712, - '\t', 4097, - ' ', 4097, - 'I', 5020, - 'i', 5020, + 'e', 4987, + 'f', 5021, + 'n', 5038, + 'o', 4988, + 't', 5031, + '{', 3726, + '\t', 4111, + ' ', 4111, + 'I', 5047, + 'i', 5047, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3976); + lookahead == ',') ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3990); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5042); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5069); END_STATE(); case 162: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 4509, - '-', 3641, - '.', 4506, - 'E', 4531, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'N', 4653, - 'P', 4535, - 'T', 4535, - '[', 3601, - '_', 4538, + '(', 3617, + '+', 4527, + '-', 3655, + '.', 4524, + 'E', 4549, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'N', 4676, + 'P', 4553, + 'T', 4553, + '[', 3615, + '_', 4556, '`', 482, - 'd', 4555, - 'e', 4490, - 'f', 4554, - 'g', 4534, - 'h', 4608, - 'k', 4534, - 'm', 4537, - 'n', 4620, - 'o', 4493, - 'p', 4534, - 's', 4567, - 't', 4533, - 'u', 4621, - 'w', 4582, - 0xb5, 4621, + 'd', 4573, + 'e', 4508, + 'f', 4572, + 'g', 4552, + 'h', 4629, + 'k', 4552, + 'm', 4555, + 'n', 4643, + 'o', 4511, + 'p', 4552, + 's', 4588, + 't', 4551, + 'u', 4644, + 'w', 4603, + 0xb5, 4644, ); if (lookahead == '\t' || lookahead == ' ') SKIP(155); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); + lookahead == 'b') ADVANCE(4038); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4662); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3897); + lookahead == 'i') ADVANCE(4685); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3911); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4685); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4708); END_STATE(); case 163: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 4509, - '-', 3641, - '.', 4506, - 'E', 4531, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'N', 4653, - 'P', 4535, - 'T', 4535, - '[', 3601, - '_', 4543, + '(', 3617, + '+', 4527, + '-', 3655, + '.', 4524, + 'E', 4549, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'N', 4676, + 'P', 4553, + 'T', 4553, + '[', 3615, + '_', 4571, '`', 482, - 'd', 4555, - 'e', 4490, - 'f', 4554, - 'g', 4534, - 'h', 4608, - 'k', 4534, - 'm', 4537, - 'n', 4620, - 'o', 4493, - 'p', 4534, - 's', 4567, - 't', 4533, - 'u', 4621, - 'w', 4582, - 0xb5, 4621, + 'd', 4573, + 'e', 4508, + 'f', 4572, + 'g', 4552, + 'h', 4629, + 'k', 4552, + 'm', 4555, + 'n', 4643, + 'o', 4511, + 'p', 4552, + 's', 4588, + 't', 4551, + 'u', 4644, + 'w', 4603, + 0xb5, 4644, ); if (lookahead == '\t' || lookahead == ' ') SKIP(155); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); + lookahead == 'b') ADVANCE(4038); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4662); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3979); + lookahead == 'i') ADVANCE(4685); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3993); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4685); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4708); END_STATE(); case 164: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 4509, - '-', 3641, - '.', 4506, - 'E', 4535, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'N', 4653, - 'P', 4535, - 'T', 4535, - '[', 3601, - '_', 4543, + '(', 3617, + '+', 4527, + '-', 3655, + '.', 4524, + 'E', 4553, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'N', 4676, + 'P', 4553, + 'T', 4553, + '[', 3615, + '_', 4571, '`', 482, - 'd', 4555, - 'e', 4491, - 'f', 4554, - 'g', 4534, - 'h', 4608, - 'k', 4534, - 'm', 4537, - 'n', 4620, - 'o', 4493, - 'p', 4534, - 's', 4567, - 't', 4533, - 'u', 4621, - 'w', 4582, - 0xb5, 4621, + 'd', 4573, + 'e', 4509, + 'f', 4572, + 'g', 4552, + 'h', 4629, + 'k', 4552, + 'm', 4555, + 'n', 4643, + 'o', 4511, + 'p', 4552, + 's', 4588, + 't', 4551, + 'u', 4644, + 'w', 4603, + 0xb5, 4644, ); if (lookahead == '\t' || lookahead == ' ') SKIP(155); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); + lookahead == 'b') ADVANCE(4038); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4662); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3979); + lookahead == 'i') ADVANCE(4685); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3993); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4685); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4708); END_STATE(); case 165: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 4509, - '-', 3641, - '.', 4505, - 'N', 4653, - '[', 3601, - '_', 4543, + '(', 3617, + '+', 4527, + '-', 3655, + '.', 4523, + 'N', 4676, + '[', 3615, + '_', 4571, '`', 482, - 'e', 4492, - 'f', 4554, - 'n', 4637, - 'o', 4493, - 't', 4609, + 'e', 4510, + 'f', 4572, + 'n', 4660, + 'o', 4511, + 't', 4630, ); if (lookahead == '\t' || lookahead == ' ') SKIP(155); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4662); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3979); + lookahead == 'i') ADVANCE(4685); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3993); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4685); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4708); END_STATE(); case 166: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 4509, - '-', 3641, - '.', 3862, - 'E', 4531, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'N', 4653, - 'P', 4535, - 'T', 4535, - '[', 3601, - '_', 4543, + '(', 3617, + '+', 4527, + '-', 3655, + '.', 3875, + 'E', 4549, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'N', 4676, + 'P', 4553, + 'T', 4553, + '[', 3615, + '_', 4571, '`', 482, - 'd', 4555, - 'e', 4490, - 'f', 4554, - 'g', 4534, - 'h', 4608, - 'k', 4534, - 'm', 4537, - 'n', 4620, - 'o', 4493, - 'p', 4534, - 's', 4567, - 't', 4533, - 'u', 4621, - 'w', 4582, - 0xb5, 4621, + 'd', 4573, + 'e', 4508, + 'f', 4572, + 'g', 4552, + 'h', 4629, + 'k', 4552, + 'm', 4555, + 'n', 4643, + 'o', 4511, + 'p', 4552, + 's', 4588, + 't', 4551, + 'u', 4644, + 'w', 4603, + 0xb5, 4644, ); if (lookahead == '\t' || lookahead == ' ') SKIP(155); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); + lookahead == 'b') ADVANCE(4038); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4662); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3979); + lookahead == 'i') ADVANCE(4685); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3993); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4685); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4708); END_STATE(); case 167: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 3826, - ',', 3605, - '-', 3651, - '.', 2071, - '0', 3958, - 'I', 2846, - 'N', 2839, - '_', 2450, + '(', 3617, + '+', 3841, + ',', 3619, + '-', 3669, + '.', 1918, + '0', 3973, + ':', 4116, + 'I', 2047, + 'N', 2044, + '[', 4059, + '_', 1943, '`', 482, - 'a', 2628, - 'b', 2723, - 'c', 2466, - 'd', 2520, - 'e', 2641, - 'f', 2459, - 'h', 2595, - 'i', 2443, - 'l', 2537, - 'm', 2462, - 'n', 2810, - 'o', 2828, - 'r', 2521, - 's', 2676, - 't', 2714, - 'u', 2756, - 'w', 2585, - '}', 3713, + 'a', 1990, + 'b', 2013, + 'c', 1944, + 'd', 1958, + 'e', 1996, + 'f', 1945, + 'h', 1983, + 'i', 1930, + 'l', 1968, + 'm', 1946, + 'n', 2035, + 'o', 2041, + 'r', 1959, + 's', 2003, + 't', 2009, + 'u', 2024, + 'w', 1981, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(167); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3981); + lookahead == ' ') SKIP(135); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(5355); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2860); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2052); END_STATE(); case 168: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 3827, - ',', 3605, - '-', 3655, - '.', 1914, - '0', 3959, - ':', 4098, - 'I', 2043, - 'N', 2040, - '[', 4045, - '_', 1939, + '(', 3617, + '+', 3841, + ',', 4107, + '-', 3669, + '.', 1918, + '0', 3973, + 'I', 2047, + 'N', 2044, + '[', 4059, + '_', 1943, '`', 482, - 'a', 1986, - 'b', 2009, - 'c', 1940, - 'd', 1954, - 'e', 1992, - 'f', 1941, - 'h', 1979, - 'i', 1926, - 'l', 1964, - 'm', 1942, - 'n', 2031, - 'o', 2037, - 'r', 1955, - 's', 1999, - 't', 2005, - 'u', 2020, - 'w', 1977, - '}', 3713, + 'a', 1990, + 'b', 2013, + 'c', 1944, + 'd', 1958, + 'e', 1996, + 'f', 1945, + 'h', 1983, + 'i', 1930, + 'l', 1968, + 'm', 1946, + 'n', 2035, + 'o', 2041, + 'r', 1959, + 's', 2003, + 't', 2009, + 'u', 2024, + 'w', 1981, + '}', 3727, + '\t', 4108, + ' ', 4108, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(135); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5328); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3981); + lookahead == '^') ADVANCE(5355); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2048); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2052); END_STATE(); case 169: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - '+', 3827, - ',', 4093, - '-', 3655, - '.', 1914, - '0', 3959, - 'I', 2043, - 'N', 2040, - '[', 4045, - '_', 1939, + '(', 3617, + '+', 3840, + ',', 3619, + '-', 3665, + '.', 2075, + '0', 3972, + 'I', 2854, + 'N', 2847, + '_', 2454, '`', 482, - 'a', 1986, - 'b', 2009, - 'c', 1940, - 'd', 1954, - 'e', 1992, - 'f', 1941, - 'h', 1979, - 'i', 1926, - 'l', 1964, - 'm', 1942, - 'n', 2031, - 'o', 2037, - 'r', 1955, - 's', 1999, - 't', 2005, - 'u', 2020, - 'w', 1977, - '}', 3713, - '\t', 4094, - ' ', 4094, + 'a', 2631, + 'b', 2729, + 'c', 2471, + 'd', 2526, + 'e', 2647, + 'f', 2463, + 'h', 2602, + 'i', 2447, + 'l', 2543, + 'm', 2466, + 'n', 2818, + 'o', 2836, + 'r', 2527, + 's', 2682, + 't', 2720, + 'u', 2764, + 'w', 2590, + '}', 3727, ); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5328); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3981); + if (lookahead == '\t' || + lookahead == ' ') SKIP(169); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2048); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2868); END_STATE(); case 170: - if (lookahead == '"') ADVANCE(4075); - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '$') ADVANCE(3607); - if (lookahead == '\'') ADVANCE(4368); - if (lookahead == '(') ADVANCE(3603); - if (lookahead == '`') ADVANCE(4369); + if (lookahead == '"') ADVANCE(4089); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '$') ADVANCE(3621); + if (lookahead == '\'') ADVANCE(4386); + if (lookahead == '(') ADVANCE(3617); + if (lookahead == '`') ADVANCE(4387); if (lookahead == '\t' || lookahead == ' ') SKIP(170); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4370); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4388); END_STATE(); case 171: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3802, - '+', 4970, - ',', 4093, - '-', 4969, - '.', 4966, - '0', 3953, - 'N', 5014, - '[', 3601, - ']', 3602, - '_', 4981, + '(', 3816, + '+', 4997, + ',', 4107, + '-', 4996, + '.', 4993, + '0', 3967, + 'N', 5041, + '[', 3615, + ']', 3616, + '_', 5008, '`', 482, - 'e', 4960, - 'f', 4994, - 'n', 5011, - 'o', 4961, - 't', 5004, - '{', 3712, - '\t', 4094, - ' ', 4094, - 'I', 5020, - 'i', 5020, + 'e', 4987, + 'f', 5021, + 'n', 5038, + 'o', 4988, + 't', 5031, + '{', 3726, + '\t', 4108, + ' ', 4108, + 'I', 5047, + 'i', 5047, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3976); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3990); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5042); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5069); END_STATE(); case 172: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3802, - '+', 5056, - ',', 3605, - '-', 5055, - '.', 5051, - '0', 3884, - 'N', 5115, - '[', 3601, - ']', 3602, - '_', 5072, + '(', 3816, + '+', 5083, + ',', 3619, + '-', 5082, + '.', 5078, + '0', 3898, + 'N', 5142, + '[', 3615, + ']', 3616, + '_', 5099, '`', 482, - 'e', 5044, - 'f', 5085, - 'n', 5111, - 'o', 5045, - 't', 5102, - '{', 3712, + 'e', 5071, + 'f', 5112, + 'n', 5138, + 'o', 5072, + 't', 5129, + '{', 3726, ); if (lookahead == '\t' || lookahead == ' ') SKIP(234); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5122); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3899); + lookahead == 'i') ADVANCE(5149); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3913); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5144); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5171); END_STATE(); case 173: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3802, - '+', 5056, - ',', 3605, - '-', 5055, - '.', 3848, - '0', 3884, - 'N', 5115, - '[', 3601, - ']', 3602, - '_', 5072, + '(', 3816, + '+', 5083, + ',', 3619, + '-', 5082, + '.', 3862, + '0', 3898, + 'N', 5142, + '[', 3615, + ']', 3616, + '_', 5099, '`', 482, - 'e', 5044, - 'f', 5085, - 'n', 5111, - 'o', 5045, - 't', 5102, - '{', 3712, + 'e', 5071, + 'f', 5112, + 'n', 5138, + 'o', 5072, + 't', 5129, + '{', 3726, ); if (lookahead == '\t' || lookahead == ' ') SKIP(234); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5122); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3899); + lookahead == 'i') ADVANCE(5149); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3913); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5144); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5171); END_STATE(); case 174: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3802, - '+', 5056, - ',', 4093, - '-', 5055, - '.', 5051, - '0', 3884, - 'N', 5115, - '[', 3601, - ']', 3602, - '_', 5072, + '(', 3816, + '+', 5083, + ',', 4107, + '-', 5082, + '.', 5078, + '0', 3898, + 'N', 5142, + '[', 3615, + ']', 3616, + '_', 5099, '`', 482, - 'e', 5044, - 'f', 5085, - 'n', 5111, - 'o', 5045, - 't', 5102, - '{', 3712, - '\t', 4094, - ' ', 4094, - 'I', 5122, - 'i', 5122, + 'e', 5071, + 'f', 5112, + 'n', 5138, + 'o', 5072, + 't', 5129, + '{', 3726, + '\t', 4108, + ' ', 4108, + 'I', 5149, + 'i', 5149, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3899); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3913); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5144); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5171); END_STATE(); case 175: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3802, - '+', 5056, - ',', 4093, - '-', 5055, - '.', 3848, - '0', 3884, - 'N', 5115, - '[', 3601, - ']', 3602, - '_', 5072, + '(', 3816, + '+', 5083, + ',', 4107, + '-', 5082, + '.', 3862, + '0', 3898, + 'N', 5142, + '[', 3615, + ']', 3616, + '_', 5099, '`', 482, - 'e', 5044, - 'f', 5085, - 'n', 5111, - 'o', 5045, - 't', 5102, - '{', 3712, - '\t', 4094, - ' ', 4094, - 'I', 5122, - 'i', 5122, + 'e', 5071, + 'f', 5112, + 'n', 5138, + 'o', 5072, + 't', 5129, + '{', 3726, + '\t', 4108, + ' ', 4108, + 'I', 5149, + 'i', 5149, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3899); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3913); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5144); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5171); END_STATE(); case 176: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3802, - '+', 5058, - ',', 4093, - '-', 5057, - '.', 5053, - '0', 3884, - 'E', 5067, - 'G', 5070, - 'K', 5070, - 'M', 5070, - 'N', 5115, - 'P', 5070, - 'T', 5070, - '[', 3601, - ']', 3602, - '_', 5072, + '(', 3816, + '+', 5085, + ',', 4107, + '-', 5084, + '.', 5080, + '0', 3898, + 'E', 5094, + 'G', 5097, + 'K', 5097, + 'M', 5097, + 'N', 5142, + 'P', 5097, + 'T', 5097, + '[', 3615, + ']', 3616, + '_', 5099, '`', 482, - 'd', 5086, - 'e', 5046, - 'f', 5085, - 'g', 5069, - 'h', 5101, - 'k', 5069, - 'm', 5071, - 'n', 5106, - 'o', 5045, - 'p', 5069, - 's', 5091, - 't', 5068, - 'u', 5107, - 'w', 5094, - '{', 3712, - 0xb5, 5107, - '\t', 4094, - ' ', 4094, - 'B', 4024, - 'b', 4024, - 'I', 5122, - 'i', 5122, + 'd', 5113, + 'e', 5073, + 'f', 5112, + 'g', 5096, + 'h', 5128, + 'k', 5096, + 'm', 5098, + 'n', 5133, + 'o', 5072, + 'p', 5096, + 's', 5118, + 't', 5095, + 'u', 5134, + 'w', 5121, + '{', 3726, + 0xb5, 5134, + '\t', 4108, + ' ', 4108, + 'B', 4038, + 'b', 4038, + 'I', 5149, + 'i', 5149, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3899); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3913); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5144); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5171); END_STATE(); case 177: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3802, - '+', 5058, - ',', 4093, - '-', 5057, - '.', 5053, - '0', 3884, - 'E', 5080, - 'N', 5115, - '[', 3601, - ']', 3602, - '_', 5072, + '(', 3816, + '+', 5085, + ',', 4107, + '-', 5084, + '.', 5080, + '0', 3898, + 'E', 5108, + 'N', 5142, + '[', 3615, + ']', 3616, + '_', 5099, '`', 482, - 'e', 5047, - 'f', 5085, - 'n', 5111, - 'o', 5045, - 't', 5102, - '{', 3712, - '\t', 4094, - ' ', 4094, - 'I', 5122, - 'i', 5122, + 'e', 5074, + 'f', 5112, + 'n', 5138, + 'o', 5072, + 't', 5129, + '{', 3726, + '\t', 4108, + ' ', 4108, + 'I', 5149, + 'i', 5149, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3899); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3913); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5144); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5171); END_STATE(); case 178: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3802, - '+', 5058, - ',', 4093, - '-', 5057, - '.', 5053, - '0', 3957, - 'E', 5067, - 'G', 5070, - 'K', 5070, - 'M', 5070, - 'N', 5115, - 'P', 5070, - 'T', 5070, - '[', 3601, - ']', 3602, - '_', 5084, + '(', 3816, + '+', 5085, + ',', 4107, + '-', 5084, + '.', 5080, + '0', 3971, + 'E', 5094, + 'G', 5097, + 'K', 5097, + 'M', 5097, + 'N', 5142, + 'P', 5097, + 'T', 5097, + '[', 3615, + ']', 3616, + '_', 5104, '`', 482, - 'd', 5086, - 'e', 5046, - 'f', 5085, - 'g', 5069, - 'h', 5101, - 'k', 5069, - 'm', 5071, - 'n', 5106, - 'o', 5045, - 'p', 5069, - 's', 5091, - 't', 5068, - 'u', 5107, - 'w', 5094, - '{', 3712, - 0xb5, 5107, - '\t', 4094, - ' ', 4094, - 'B', 4024, - 'b', 4024, - 'I', 5122, - 'i', 5122, + 'd', 5113, + 'e', 5073, + 'f', 5112, + 'g', 5096, + 'h', 5128, + 'k', 5096, + 'm', 5098, + 'n', 5133, + 'o', 5072, + 'p', 5096, + 's', 5118, + 't', 5095, + 'u', 5134, + 'w', 5121, + '{', 3726, + 0xb5, 5134, + '\t', 4108, + ' ', 4108, + 'B', 4038, + 'b', 4038, + 'I', 5149, + 'i', 5149, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3980); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3994); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5144); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5171); END_STATE(); case 179: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3802, - '+', 5058, - ',', 4093, - '-', 5057, - '.', 5053, - '0', 3957, - 'E', 5070, - 'G', 5070, - 'K', 5070, - 'M', 5070, - 'N', 5115, - 'P', 5070, - 'T', 5070, - '[', 3601, - ']', 3602, - '_', 5084, + '(', 3816, + '+', 5085, + ',', 4107, + '-', 5084, + '.', 5080, + '0', 3971, + 'E', 5097, + 'G', 5097, + 'K', 5097, + 'M', 5097, + 'N', 5142, + 'P', 5097, + 'T', 5097, + '[', 3615, + ']', 3616, + '_', 5104, '`', 482, - 'd', 5086, - 'e', 5043, - 'f', 5085, - 'g', 5069, - 'h', 5101, - 'k', 5069, - 'm', 5071, - 'n', 5106, - 'o', 5045, - 'p', 5069, - 's', 5091, - 't', 5068, - 'u', 5107, - 'w', 5094, - '{', 3712, - 0xb5, 5107, - '\t', 4094, - ' ', 4094, - 'B', 4024, - 'b', 4024, - 'I', 5122, - 'i', 5122, + 'd', 5113, + 'e', 5070, + 'f', 5112, + 'g', 5096, + 'h', 5128, + 'k', 5096, + 'm', 5098, + 'n', 5133, + 'o', 5072, + 'p', 5096, + 's', 5118, + 't', 5095, + 'u', 5134, + 'w', 5121, + '{', 3726, + 0xb5, 5134, + '\t', 4108, + ' ', 4108, + 'B', 4038, + 'b', 4038, + 'I', 5149, + 'i', 5149, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3980); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3994); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5144); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5171); END_STATE(); case 180: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3802, - '+', 5058, - ',', 4093, - '-', 5057, - '.', 5053, - '0', 3957, - 'E', 5080, - 'N', 5115, - '[', 3601, - ']', 3602, - '_', 5084, + '(', 3816, + '+', 5085, + ',', 4107, + '-', 5084, + '.', 5080, + '0', 3971, + 'E', 5108, + 'N', 5142, + '[', 3615, + ']', 3616, + '_', 5104, '`', 482, - 'e', 5047, - 'f', 5085, - 'n', 5111, - 'o', 5045, - 't', 5102, - '{', 3712, - '\t', 4094, - ' ', 4094, - 'I', 5122, - 'i', 5122, + 'e', 5074, + 'f', 5112, + 'n', 5138, + 'o', 5072, + 't', 5129, + '{', 3726, + '\t', 4108, + ' ', 4108, + 'I', 5149, + 'i', 5149, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3980); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3994); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5144); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5171); END_STATE(); case 181: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3802, - '+', 5058, - ',', 4093, - '-', 5057, - '.', 5053, - '0', 3957, - 'N', 5115, - '[', 3601, - ']', 3602, - '_', 5084, + '(', 3816, + '+', 5085, + ',', 4107, + '-', 5084, + '.', 5080, + '0', 3971, + 'N', 5142, + '[', 3615, + ']', 3616, + '_', 5104, '`', 482, - 'e', 5044, - 'f', 5085, - 'n', 5111, - 'o', 5045, - 't', 5102, - '{', 3712, - '\t', 4094, - ' ', 4094, - 'I', 5122, - 'i', 5122, + 'e', 5071, + 'f', 5112, + 'n', 5138, + 'o', 5072, + 't', 5129, + '{', 3726, + '\t', 4108, + ' ', 4108, + 'I', 5149, + 'i', 5149, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3980); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3994); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5144); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5171); END_STATE(); case 182: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3802, - '+', 5058, - ',', 4093, - '-', 5057, - '.', 5052, - '0', 3884, - 'E', 5080, - 'N', 5115, - '[', 3601, - ']', 3602, - '_', 5072, + '(', 3816, + '+', 5085, + ',', 4107, + '-', 5084, + '.', 5079, + '0', 3898, + 'E', 5108, + 'N', 5142, + '[', 3615, + ']', 3616, + '_', 5099, '`', 482, - 'e', 5047, - 'f', 5085, - 'n', 5111, - 'o', 5045, - 't', 5102, - '{', 3712, - '\t', 4094, - ' ', 4094, - 'I', 5122, - 'i', 5122, + 'e', 5074, + 'f', 5112, + 'n', 5138, + 'o', 5072, + 't', 5129, + '{', 3726, + '\t', 4108, + ' ', 4108, + 'I', 5149, + 'i', 5149, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3899); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3913); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5144); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5171); END_STATE(); case 183: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3802, - '+', 5058, - ',', 4093, - '-', 5057, - '.', 5052, - '0', 3957, - 'E', 5080, - 'N', 5115, - '[', 3601, - ']', 3602, - '_', 5084, + '(', 3816, + '+', 5085, + ',', 4107, + '-', 5084, + '.', 5079, + '0', 3971, + 'E', 5108, + 'N', 5142, + '[', 3615, + ']', 3616, + '_', 5104, '`', 482, - 'e', 5047, - 'f', 5085, - 'n', 5111, - 'o', 5045, - 't', 5102, - '{', 3712, - '\t', 4094, - ' ', 4094, - 'I', 5122, - 'i', 5122, + 'e', 5074, + 'f', 5112, + 'n', 5138, + 'o', 5072, + 't', 5129, + '{', 3726, + '\t', 4108, + ' ', 4108, + 'I', 5149, + 'i', 5149, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3980); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3994); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5144); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5171); END_STATE(); case 184: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3802, - '+', 5058, - ',', 4093, - '-', 5057, - '.', 5052, - '0', 3957, - 'N', 5115, - '[', 3601, - ']', 3602, - '_', 5084, + '(', 3816, + '+', 5085, + ',', 4107, + '-', 5084, + '.', 5079, + '0', 3971, + 'N', 5142, + '[', 3615, + ']', 3616, + '_', 5104, '`', 482, - 'e', 5044, - 'f', 5085, - 'n', 5111, - 'o', 5045, - 't', 5102, - '{', 3712, - '\t', 4094, - ' ', 4094, - 'I', 5122, - 'i', 5122, + 'e', 5071, + 'f', 5112, + 'n', 5138, + 'o', 5072, + 't', 5129, + '{', 3726, + '\t', 4108, + ' ', 4108, + 'I', 5149, + 'i', 5149, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3980); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3994); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5144); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5171); END_STATE(); case 185: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3802, - '+', 5058, - ',', 4093, - '-', 5057, - '.', 3861, - '0', 3957, - 'E', 5067, - 'G', 5070, - 'K', 5070, - 'M', 5070, - 'N', 5115, - 'P', 5070, - 'T', 5070, - '[', 3601, - ']', 3602, - '_', 5084, + '(', 3816, + '+', 5085, + ',', 4107, + '-', 5084, + '.', 3876, + '0', 3971, + 'E', 5094, + 'G', 5097, + 'K', 5097, + 'M', 5097, + 'N', 5142, + 'P', 5097, + 'T', 5097, + '[', 3615, + ']', 3616, + '_', 5104, '`', 482, - 'd', 5086, - 'e', 5046, - 'f', 5085, - 'g', 5069, - 'h', 5101, - 'k', 5069, - 'm', 5071, - 'n', 5106, - 'o', 5045, - 'p', 5069, - 's', 5091, - 't', 5068, - 'u', 5107, - 'w', 5094, - '{', 3712, - 0xb5, 5107, - '\t', 4094, - ' ', 4094, - 'B', 4024, - 'b', 4024, - 'I', 5122, - 'i', 5122, + 'd', 5113, + 'e', 5073, + 'f', 5112, + 'g', 5096, + 'h', 5128, + 'k', 5096, + 'm', 5098, + 'n', 5133, + 'o', 5072, + 'p', 5096, + 's', 5118, + 't', 5095, + 'u', 5134, + 'w', 5121, + '{', 3726, + 0xb5, 5134, + '\t', 4108, + ' ', 4108, + 'B', 4038, + 'b', 4038, + 'I', 5149, + 'i', 5149, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3980); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3994); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5144); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5171); END_STATE(); case 186: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3802, - '+', 5058, - ',', 4093, - '-', 5057, - '.', 3861, - '0', 3957, - 'E', 5080, - 'N', 5115, - '[', 3601, - ']', 3602, - '_', 5084, + '(', 3816, + '+', 5085, + ',', 4107, + '-', 5084, + '.', 3876, + '0', 3971, + 'E', 5108, + 'N', 5142, + '[', 3615, + ']', 3616, + '_', 5104, '`', 482, - 'e', 5047, - 'f', 5085, - 'n', 5111, - 'o', 5045, - 't', 5102, - '{', 3712, - '\t', 4094, - ' ', 4094, - 'I', 5122, - 'i', 5122, + 'e', 5074, + 'f', 5112, + 'n', 5138, + 'o', 5072, + 't', 5129, + '{', 3726, + '\t', 4108, + ' ', 4108, + 'I', 5149, + 'i', 5149, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3980); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3994); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5144); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5171); END_STATE(); case 187: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3802, - '+', 5058, - ',', 4093, - '-', 5057, - '.', 3850, - '0', 3957, - 'E', 5080, - 'N', 5115, - '[', 3601, - ']', 3602, - '_', 5084, + '(', 3816, + '+', 5085, + ',', 4107, + '-', 5084, + '.', 3866, + '0', 3971, + 'E', 5108, + 'N', 5142, + '[', 3615, + ']', 3616, + '_', 5104, '`', 482, - 'e', 5047, - 'f', 5085, - 'n', 5111, - 'o', 5045, - 't', 5102, - '{', 3712, - '\t', 4094, - ' ', 4094, - 'I', 5122, - 'i', 5122, + 'e', 5074, + 'f', 5112, + 'n', 5138, + 'o', 5072, + 't', 5129, + '{', 3726, + '\t', 4108, + ' ', 4108, + 'I', 5149, + 'i', 5149, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3980); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3994); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5144); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5171); END_STATE(); case 188: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3802, - '+', 4973, - ',', 3605, - '-', 4972, - '.', 4967, - '0', 3885, - 'N', 5014, - '[', 3601, - ']', 3602, - '_', 4986, + '(', 3816, + '+', 5000, + ',', 3619, + '-', 4999, + '.', 4994, + '0', 3899, + 'N', 5041, + '[', 3615, + ']', 3616, + '_', 5013, '`', 482, - 'e', 4960, - 'f', 4994, - 'n', 5011, - 'o', 4961, - 't', 5004, - '{', 3712, + 'e', 4987, + 'f', 5021, + 'n', 5038, + 'o', 4988, + 't', 5031, + '{', 3726, ); if (lookahead == '\t' || lookahead == ' ') SKIP(234); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5020); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3900); + lookahead == 'i') ADVANCE(5047); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3914); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5042); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5069); END_STATE(); case 189: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3802, - '+', 4973, - ',', 3605, - '-', 4972, - '.', 3851, - '0', 3885, - 'N', 5014, - '[', 3601, - ']', 3602, - '_', 4986, + '(', 3816, + '+', 5000, + ',', 3619, + '-', 4999, + '.', 3865, + '0', 3899, + 'N', 5041, + '[', 3615, + ']', 3616, + '_', 5013, '`', 482, - 'e', 4960, - 'f', 4994, - 'n', 5011, - 'o', 4961, - 't', 5004, - '{', 3712, + 'e', 4987, + 'f', 5021, + 'n', 5038, + 'o', 4988, + 't', 5031, + '{', 3726, ); if (lookahead == '\t' || lookahead == ' ') SKIP(234); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5020); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3900); + lookahead == 'i') ADVANCE(5047); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3914); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5042); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5069); END_STATE(); case 190: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3802, - '+', 4973, - ',', 4093, - '-', 4972, - '.', 4967, - '0', 3885, - 'N', 5014, - '[', 3601, - ']', 3602, - '_', 4986, + '(', 3816, + '+', 5000, + ',', 4107, + '-', 4999, + '.', 4994, + '0', 3899, + 'N', 5041, + '[', 3615, + ']', 3616, + '_', 5013, '`', 482, - 'e', 4960, - 'f', 4994, - 'n', 5011, - 'o', 4961, - 't', 5004, - '{', 3712, - '\t', 4094, - ' ', 4094, - 'I', 5020, - 'i', 5020, + 'e', 4987, + 'f', 5021, + 'n', 5038, + 'o', 4988, + 't', 5031, + '{', 3726, + '\t', 4108, + ' ', 4108, + 'I', 5047, + 'i', 5047, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3900); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3914); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5042); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5069); END_STATE(); case 191: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3802, - '+', 4973, - ',', 4093, - '-', 4972, - '.', 3851, - '0', 3885, - 'N', 5014, - '[', 3601, - ']', 3602, - '_', 4986, + '(', 3816, + '+', 5000, + ',', 4107, + '-', 4999, + '.', 3865, + '0', 3899, + 'N', 5041, + '[', 3615, + ']', 3616, + '_', 5013, '`', 482, - 'e', 4960, - 'f', 4994, - 'n', 5011, - 'o', 4961, - 't', 5004, - '{', 3712, - '\t', 4094, - ' ', 4094, - 'I', 5020, - 'i', 5020, + 'e', 4987, + 'f', 5021, + 'n', 5038, + 'o', 4988, + 't', 5031, + '{', 3726, + '\t', 4108, + ' ', 4108, + 'I', 5047, + 'i', 5047, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3900); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3914); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5042); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5069); END_STATE(); case 192: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3603, - '+', 4386, - ',', 4093, + '(', 3617, + '+', 4404, + ',', 4107, '-', 431, - '.', 4382, - '0', 3952, - 'N', 4444, - '[', 3601, - '_', 3717, + '.', 4400, + '0', 3966, + 'N', 4462, + '[', 3615, + '_', 3731, '`', 482, - 'e', 4377, - 'f', 4412, - 'n', 4440, - 'o', 4378, - 't', 4427, - '{', 3712, - '}', 3713, - '\t', 4094, - ' ', 4094, - 'I', 4447, - 'i', 4447, + 'e', 4395, + 'f', 4430, + 'n', 4458, + 'o', 4396, + 't', 4445, + '{', 3726, + '}', 3727, + '\t', 4108, + ' ', 4108, + 'I', 4465, + 'i', 4465, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3975); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3989); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4467); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4485); END_STATE(); case 193: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3603, - '+', 4970, - ',', 3605, - '-', 4969, - '.', 4966, - '0', 3953, - 'E', 4992, - 'N', 5014, - '[', 3601, - ']', 3602, - '_', 4981, + '(', 3617, + '+', 4997, + ',', 3619, + '-', 4996, + '.', 4993, + '0', 3967, + 'E', 5019, + 'N', 5041, + '[', 3615, + ']', 3616, + '_', 5008, '`', 482, - 'e', 4962, - 'f', 4994, - 'n', 5011, - 'o', 4961, - 't', 5004, - '{', 3712, + 'e', 4989, + 'f', 5021, + 'n', 5038, + 'o', 4988, + 't', 5031, + '{', 3726, ); if (lookahead == '\t' || lookahead == ' ') SKIP(195); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5020); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3976); + lookahead == 'i') ADVANCE(5047); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3990); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5042); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5069); END_STATE(); case 194: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3603, - '+', 4970, - ',', 3605, - '-', 4969, - '.', 4966, - '0', 3953, - 'N', 5014, - '[', 4045, - ']', 3602, - '_', 4981, + '(', 3617, + '+', 4997, + ',', 3619, + '-', 4996, + '.', 4993, + '0', 3967, + 'N', 5041, + '[', 4059, + ']', 3616, + '_', 5008, '`', 482, - 'e', 4960, - 'f', 4994, - 'n', 5011, - 'o', 4961, - 't', 5004, - '{', 3712, + 'e', 4987, + 'f', 5021, + 'n', 5038, + 'o', 4988, + 't', 5031, + '{', 3726, ); if (lookahead == '\t' || lookahead == ' ') SKIP(195); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5020); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3976); + lookahead == 'i') ADVANCE(5047); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3990); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5042); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5069); END_STATE(); case 195: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3603, - '+', 4970, - ',', 3605, - '-', 4969, - '.', 4966, - '0', 3953, - 'N', 5014, - '[', 3601, - ']', 3602, - '_', 4981, + '(', 3617, + '+', 4997, + ',', 3619, + '-', 4996, + '.', 4993, + '0', 3967, + 'N', 5041, + '[', 3615, + ']', 3616, + '_', 5008, '`', 482, - 'e', 4960, - 'f', 4994, - 'n', 5011, - 'o', 4961, - 't', 5004, - '{', 3712, + 'e', 4987, + 'f', 5021, + 'n', 5038, + 'o', 4988, + 't', 5031, + '{', 3726, ); if (lookahead == '\t' || lookahead == ' ') SKIP(195); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5020); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3976); + lookahead == 'i') ADVANCE(5047); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3990); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5042); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5069); END_STATE(); case 196: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3603, - '+', 4970, - ',', 3605, - '-', 4969, - '.', 4966, - '0', 3885, - 'E', 4992, - 'N', 5014, - '[', 3601, - ']', 3602, - '_', 4986, + '(', 3617, + '+', 4997, + ',', 3619, + '-', 4996, + '.', 4993, + '0', 3899, + 'E', 5019, + 'N', 5041, + '[', 3615, + ']', 3616, + '_', 5013, '`', 482, - 'e', 4962, - 'f', 4994, - 'n', 5011, - 'o', 4961, - 't', 5004, - '{', 3712, + 'e', 4989, + 'f', 5021, + 'n', 5038, + 'o', 4988, + 't', 5031, + '{', 3726, ); if (lookahead == '\t' || lookahead == ' ') SKIP(195); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5020); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3900); + lookahead == 'i') ADVANCE(5047); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3914); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5042); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5069); END_STATE(); case 197: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3603, - '+', 4970, - ',', 3605, - '-', 4969, - '.', 4110, - '0', 3953, - '?', 3772, - 'N', 5014, - '[', 3601, - ']', 3602, - '_', 4981, + '(', 3617, + '+', 4997, + ',', 3619, + '-', 4996, + '.', 4128, + '0', 3967, + '?', 3782, + 'N', 5041, + '[', 3615, + ']', 3616, + '_', 5008, '`', 482, - 'e', 4960, - 'f', 4994, - 'n', 5011, - 'o', 4961, - 't', 5004, - '{', 3712, + 'e', 4987, + 'f', 5021, + 'n', 5038, + 'o', 4988, + 't', 5031, + '{', 3726, ); if (lookahead == '\t' || lookahead == ' ') SKIP(203); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5020); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3976); + lookahead == 'i') ADVANCE(5047); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3990); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5042); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5069); END_STATE(); case 198: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3603, - '+', 4970, - ',', 3605, - '-', 4969, - '.', 4110, - '0', 3953, - 'N', 5014, - '[', 3601, - ']', 3602, - '_', 4981, + '(', 3617, + '+', 4997, + ',', 3619, + '-', 4996, + '.', 4128, + '0', 3967, + 'N', 5041, + '[', 3615, + ']', 3616, + '_', 5008, '`', 482, - 'e', 4960, - 'f', 4994, - 'n', 5011, - 'o', 4961, - 't', 5004, - '{', 3712, + 'e', 4987, + 'f', 5021, + 'n', 5038, + 'o', 4988, + 't', 5031, + '{', 3726, ); if (lookahead == '\t' || lookahead == ' ') SKIP(204); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5020); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3976); + lookahead == 'i') ADVANCE(5047); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3990); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5042); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5069); END_STATE(); case 199: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3603, - '+', 4970, - ',', 3605, - '-', 4969, - '.', 4968, - '0', 3953, - 'E', 4992, - 'N', 5014, - '[', 3601, - ']', 3602, - '_', 4981, + '(', 3617, + '+', 4997, + ',', 3619, + '-', 4996, + '.', 4995, + '0', 3967, + 'E', 5019, + 'N', 5041, + '[', 3615, + ']', 3616, + '_', 5008, '`', 482, - 'e', 4962, - 'f', 4994, - 'n', 5011, - 'o', 4961, - 't', 5004, - '{', 3712, + 'e', 4989, + 'f', 5021, + 'n', 5038, + 'o', 4988, + 't', 5031, + '{', 3726, ); if (lookahead == '\t' || lookahead == ' ') SKIP(195); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5020); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3976); + lookahead == 'i') ADVANCE(5047); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3990); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5042); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5069); END_STATE(); case 200: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3603, - '+', 4970, - ',', 3605, - '-', 4969, - '.', 4968, - '0', 3953, - 'N', 5014, - '[', 3601, - ']', 3602, - '_', 4981, + '(', 3617, + '+', 4997, + ',', 3619, + '-', 4996, + '.', 4995, + '0', 3967, + 'N', 5041, + '[', 3615, + ']', 3616, + '_', 5008, '`', 482, - 'e', 4960, - 'f', 4994, - 'n', 5011, - 'o', 4961, - 't', 5004, - '{', 3712, + 'e', 4987, + 'f', 5021, + 'n', 5038, + 'o', 4988, + 't', 5031, + '{', 3726, ); if (lookahead == '\t' || lookahead == ' ') SKIP(195); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5020); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3976); + lookahead == 'i') ADVANCE(5047); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3990); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5042); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5069); END_STATE(); case 201: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3603, - '+', 4970, - ',', 3605, - '-', 4969, - '.', 4968, - '0', 3885, - 'E', 4992, - 'N', 5014, - '[', 3601, - ']', 3602, - '_', 4986, + '(', 3617, + '+', 4997, + ',', 3619, + '-', 4996, + '.', 4995, + '0', 3899, + 'E', 5019, + 'N', 5041, + '[', 3615, + ']', 3616, + '_', 5013, '`', 482, - 'e', 4962, - 'f', 4994, - 'n', 5011, - 'o', 4961, - 't', 5004, - '{', 3712, + 'e', 4989, + 'f', 5021, + 'n', 5038, + 'o', 4988, + 't', 5031, + '{', 3726, ); if (lookahead == '\t' || lookahead == ' ') SKIP(195); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5020); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3900); + lookahead == 'i') ADVANCE(5047); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3914); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5042); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5069); END_STATE(); case 202: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3603, - '+', 4970, - ',', 3605, - '-', 4969, - '.', 4105, - '0', 3953, - ';', 4101, - 'N', 5014, - '[', 3601, - ']', 3602, - '_', 4981, + '(', 3617, + '+', 4997, + ',', 3619, + '-', 4996, + '.', 4123, + '0', 3967, + ';', 4119, + 'N', 5041, + '[', 3615, + ']', 3616, + '_', 5008, '`', 482, - 'e', 4960, - 'f', 4994, - 'n', 5011, - 'o', 4961, - 't', 5004, - '{', 3712, + 'e', 4987, + 'f', 5021, + 'n', 5038, + 'o', 4988, + 't', 5031, + '{', 3726, '\t', 202, ' ', 202, - 'I', 5020, - 'i', 5020, + 'I', 5047, + 'i', 5047, ); if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(450); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3976); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3990); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5042); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5069); END_STATE(); case 203: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3603, - '+', 4970, - ',', 3605, - '-', 4969, - '.', 4105, - '0', 3953, - '?', 3772, - 'N', 5014, - '[', 3601, - ']', 3602, - '_', 4981, + '(', 3617, + '+', 4997, + ',', 3619, + '-', 4996, + '.', 4123, + '0', 3967, + '?', 3782, + 'N', 5041, + '[', 3615, + ']', 3616, + '_', 5008, '`', 482, - 'e', 4960, - 'f', 4994, - 'n', 5011, - 'o', 4961, - 't', 5004, - '{', 3712, + 'e', 4987, + 'f', 5021, + 'n', 5038, + 'o', 4988, + 't', 5031, + '{', 3726, ); if (lookahead == '\t' || lookahead == ' ') SKIP(203); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5020); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3976); + lookahead == 'i') ADVANCE(5047); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3990); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5042); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5069); END_STATE(); case 204: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3603, - '+', 4970, - ',', 3605, - '-', 4969, - '.', 4105, - '0', 3953, - 'N', 5014, - '[', 3601, - ']', 3602, - '_', 4981, + '(', 3617, + '+', 4997, + ',', 3619, + '-', 4996, + '.', 4123, + '0', 3967, + 'N', 5041, + '[', 3615, + ']', 3616, + '_', 5008, '`', 482, - 'e', 4960, - 'f', 4994, - 'n', 5011, - 'o', 4961, - 't', 5004, - '{', 3712, + 'e', 4987, + 'f', 5021, + 'n', 5038, + 'o', 4988, + 't', 5031, + '{', 3726, ); if (lookahead == '\t' || lookahead == ' ') SKIP(204); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5020); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3976); + lookahead == 'i') ADVANCE(5047); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3990); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5042); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5069); END_STATE(); case 205: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3603, - '+', 4970, - ',', 3605, - '-', 4969, - '.', 3860, - '0', 3953, - 'E', 4992, - 'N', 5014, - '[', 3601, - ']', 3602, - '_', 4981, + '(', 3617, + '+', 4997, + ',', 3619, + '-', 4996, + '.', 3874, + '0', 3967, + 'E', 5019, + 'N', 5041, + '[', 3615, + ']', 3616, + '_', 5008, '`', 482, - 'e', 4962, - 'f', 4994, - 'n', 5011, - 'o', 4961, - 't', 5004, - '{', 3712, + 'e', 4989, + 'f', 5021, + 'n', 5038, + 'o', 4988, + 't', 5031, + '{', 3726, ); if (lookahead == '\t' || lookahead == ' ') SKIP(195); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5020); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3976); + lookahead == 'i') ADVANCE(5047); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3990); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5042); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5069); END_STATE(); case 206: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3603, - '+', 4970, - ',', 3605, - '-', 4969, - '.', 3846, - '0', 3953, - 'E', 4992, - 'N', 5014, - '[', 3601, - ']', 3602, - '_', 4981, + '(', 3617, + '+', 4997, + ',', 3619, + '-', 4996, + '.', 3860, + '0', 3967, + 'E', 5019, + 'N', 5041, + '[', 3615, + ']', 3616, + '_', 5008, '`', 482, - 'e', 4962, - 'f', 4994, - 'n', 5011, - 'o', 4961, - 't', 5004, - '{', 3712, + 'e', 4989, + 'f', 5021, + 'n', 5038, + 'o', 4988, + 't', 5031, + '{', 3726, ); if (lookahead == '\t' || lookahead == ' ') SKIP(195); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5020); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3976); + lookahead == 'i') ADVANCE(5047); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3990); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5042); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5069); END_STATE(); case 207: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3603, - '+', 4970, - ',', 4093, - '-', 4969, - '.', 4966, - '0', 3953, - 'E', 4992, - 'N', 5014, - '[', 3601, - ']', 3602, - '_', 4981, + '(', 3617, + '+', 4997, + ',', 4107, + '-', 4996, + '.', 4993, + '0', 3967, + 'E', 5019, + 'N', 5041, + '[', 3615, + ']', 3616, + '_', 5008, '`', 482, - 'e', 4962, - 'f', 4994, - 'n', 5011, - 'o', 4961, - 't', 5004, - '{', 3712, - '\t', 4094, - ' ', 4094, - 'I', 5020, - 'i', 5020, + 'e', 4989, + 'f', 5021, + 'n', 5038, + 'o', 4988, + 't', 5031, + '{', 3726, + '\t', 4108, + ' ', 4108, + 'I', 5047, + 'i', 5047, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3976); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3990); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5042); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5069); END_STATE(); case 208: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3603, - '+', 4970, - ',', 4093, - '-', 4969, - '.', 4966, - '0', 3953, - 'N', 5014, - '[', 4045, - ']', 3602, - '_', 4981, + '(', 3617, + '+', 4997, + ',', 4107, + '-', 4996, + '.', 4993, + '0', 3967, + 'N', 5041, + '[', 4059, + ']', 3616, + '_', 5008, '`', 482, - 'e', 4960, - 'f', 4994, - 'n', 5011, - 'o', 4961, - 't', 5004, - '{', 3712, - '\t', 4094, - ' ', 4094, - 'I', 5020, - 'i', 5020, + 'e', 4987, + 'f', 5021, + 'n', 5038, + 'o', 4988, + 't', 5031, + '{', 3726, + '\t', 4108, + ' ', 4108, + 'I', 5047, + 'i', 5047, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3976); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3990); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5042); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5069); END_STATE(); case 209: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3603, - '+', 4970, - ',', 4093, - '-', 4969, - '.', 4966, - '0', 3953, - 'N', 5014, - '[', 3601, - ']', 3602, - '_', 4981, + '(', 3617, + '+', 4997, + ',', 4107, + '-', 4996, + '.', 4993, + '0', 3967, + 'N', 5041, + '[', 3615, + ']', 3616, + '_', 5008, '`', 482, - 'e', 4960, - 'f', 4994, - 'n', 5011, - 'o', 4961, - 't', 5004, - '{', 3712, - '\t', 4094, - ' ', 4094, - 'I', 5020, - 'i', 5020, + 'e', 4987, + 'f', 5021, + 'n', 5038, + 'o', 4988, + 't', 5031, + '{', 3726, + '\t', 4108, + ' ', 4108, + 'I', 5047, + 'i', 5047, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3976); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3990); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5042); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5069); END_STATE(); case 210: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3603, - '+', 4970, - ',', 4093, - '-', 4969, - '.', 4966, - '0', 3885, - 'E', 4992, - 'N', 5014, - '[', 3601, - ']', 3602, - '_', 4986, + '(', 3617, + '+', 4997, + ',', 4107, + '-', 4996, + '.', 4993, + '0', 3899, + 'E', 5019, + 'N', 5041, + '[', 3615, + ']', 3616, + '_', 5013, '`', 482, - 'e', 4962, - 'f', 4994, - 'n', 5011, - 'o', 4961, - 't', 5004, - '{', 3712, - '\t', 4094, - ' ', 4094, - 'I', 5020, - 'i', 5020, + 'e', 4989, + 'f', 5021, + 'n', 5038, + 'o', 4988, + 't', 5031, + '{', 3726, + '\t', 4108, + ' ', 4108, + 'I', 5047, + 'i', 5047, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3900); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3914); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5042); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5069); END_STATE(); case 211: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3603, - '+', 4970, - ',', 4093, - '-', 4969, - '.', 4110, - '0', 3953, - '?', 3772, - 'N', 5014, - '[', 3601, - ']', 3602, - '_', 4981, + '(', 3617, + '+', 4997, + ',', 4107, + '-', 4996, + '.', 4128, + '0', 3967, + '?', 3782, + 'N', 5041, + '[', 3615, + ']', 3616, + '_', 5008, '`', 482, - 'e', 4960, - 'f', 4994, - 'n', 5011, - 'o', 4961, - 't', 5004, - '{', 3712, - '\t', 4094, - ' ', 4094, - 'I', 5020, - 'i', 5020, + 'e', 4987, + 'f', 5021, + 'n', 5038, + 'o', 4988, + 't', 5031, + '{', 3726, + '\t', 4108, + ' ', 4108, + 'I', 5047, + 'i', 5047, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3976); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3990); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5042); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5069); END_STATE(); case 212: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3603, - '+', 4970, - ',', 4093, - '-', 4969, - '.', 4110, - '0', 3953, - 'N', 5014, - '[', 3601, - ']', 3602, - '_', 4981, + '(', 3617, + '+', 4997, + ',', 4107, + '-', 4996, + '.', 4128, + '0', 3967, + 'N', 5041, + '[', 3615, + ']', 3616, + '_', 5008, '`', 482, - 'e', 4960, - 'f', 4994, - 'n', 5011, - 'o', 4961, - 't', 5004, - '{', 3712, - '\t', 4094, - ' ', 4094, - 'I', 5020, - 'i', 5020, + 'e', 4987, + 'f', 5021, + 'n', 5038, + 'o', 4988, + 't', 5031, + '{', 3726, + '\t', 4108, + ' ', 4108, + 'I', 5047, + 'i', 5047, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3976); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3990); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5042); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5069); END_STATE(); case 213: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3603, - '+', 4970, - ',', 4093, - '-', 4969, - '.', 4968, - '0', 3953, - 'E', 4992, - 'N', 5014, - '[', 3601, - ']', 3602, - '_', 4981, + '(', 3617, + '+', 4997, + ',', 4107, + '-', 4996, + '.', 4995, + '0', 3967, + 'E', 5019, + 'N', 5041, + '[', 3615, + ']', 3616, + '_', 5008, '`', 482, - 'e', 4962, - 'f', 4994, - 'n', 5011, - 'o', 4961, - 't', 5004, - '{', 3712, - '\t', 4094, - ' ', 4094, - 'I', 5020, - 'i', 5020, + 'e', 4989, + 'f', 5021, + 'n', 5038, + 'o', 4988, + 't', 5031, + '{', 3726, + '\t', 4108, + ' ', 4108, + 'I', 5047, + 'i', 5047, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3976); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3990); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5042); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5069); END_STATE(); case 214: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3603, - '+', 4970, - ',', 4093, - '-', 4969, - '.', 4968, - '0', 3953, - 'N', 5014, - '[', 3601, - ']', 3602, - '_', 4981, + '(', 3617, + '+', 4997, + ',', 4107, + '-', 4996, + '.', 4995, + '0', 3967, + 'N', 5041, + '[', 3615, + ']', 3616, + '_', 5008, '`', 482, - 'e', 4960, - 'f', 4994, - 'n', 5011, - 'o', 4961, - 't', 5004, - '{', 3712, - '\t', 4094, - ' ', 4094, - 'I', 5020, - 'i', 5020, + 'e', 4987, + 'f', 5021, + 'n', 5038, + 'o', 4988, + 't', 5031, + '{', 3726, + '\t', 4108, + ' ', 4108, + 'I', 5047, + 'i', 5047, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3976); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3990); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5042); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5069); END_STATE(); case 215: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3603, - '+', 4970, - ',', 4093, - '-', 4969, - '.', 4968, - '0', 3885, - 'E', 4992, - 'N', 5014, - '[', 3601, - ']', 3602, - '_', 4986, + '(', 3617, + '+', 4997, + ',', 4107, + '-', 4996, + '.', 4995, + '0', 3899, + 'E', 5019, + 'N', 5041, + '[', 3615, + ']', 3616, + '_', 5013, '`', 482, - 'e', 4962, - 'f', 4994, - 'n', 5011, - 'o', 4961, - 't', 5004, - '{', 3712, - '\t', 4094, - ' ', 4094, - 'I', 5020, - 'i', 5020, + 'e', 4989, + 'f', 5021, + 'n', 5038, + 'o', 4988, + 't', 5031, + '{', 3726, + '\t', 4108, + ' ', 4108, + 'I', 5047, + 'i', 5047, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3900); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3914); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5042); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5069); END_STATE(); case 216: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3603, - '+', 4970, - ',', 4093, - '-', 4969, - '.', 4105, - '0', 3953, - ';', 4101, - 'N', 5014, - '[', 3601, - ']', 3602, - '_', 4981, + '(', 3617, + '+', 4997, + ',', 4107, + '-', 4996, + '.', 4123, + '0', 3967, + ';', 4119, + 'N', 5041, + '[', 3615, + ']', 3616, + '_', 5008, '`', 482, - 'e', 4960, - 'f', 4994, - 'n', 5011, - 'o', 4961, - 't', 5004, - '{', 3712, - '\t', 4095, - ' ', 4095, - 'I', 5020, - 'i', 5020, + 'e', 4987, + 'f', 5021, + 'n', 5038, + 'o', 4988, + 't', 5031, + '{', 3726, + '\t', 4109, + ' ', 4109, + 'I', 5047, + 'i', 5047, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4096); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3976); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4110); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3990); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5042); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5069); END_STATE(); case 217: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3603, - '+', 4970, - ',', 4093, - '-', 4969, - '.', 4105, - '0', 3953, - '?', 3772, - 'N', 5014, - '[', 3601, - ']', 3602, - '_', 4981, + '(', 3617, + '+', 4997, + ',', 4107, + '-', 4996, + '.', 4123, + '0', 3967, + '?', 3782, + 'N', 5041, + '[', 3615, + ']', 3616, + '_', 5008, '`', 482, - 'e', 4960, - 'f', 4994, - 'n', 5011, - 'o', 4961, - 't', 5004, - '{', 3712, - '\t', 4094, - ' ', 4094, - 'I', 5020, - 'i', 5020, + 'e', 4987, + 'f', 5021, + 'n', 5038, + 'o', 4988, + 't', 5031, + '{', 3726, + '\t', 4108, + ' ', 4108, + 'I', 5047, + 'i', 5047, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3976); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3990); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5042); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5069); END_STATE(); case 218: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3603, - '+', 4970, - ',', 4093, - '-', 4969, - '.', 4105, - '0', 3953, - 'N', 5014, - '[', 3601, - ']', 3602, - '_', 4981, + '(', 3617, + '+', 4997, + ',', 4107, + '-', 4996, + '.', 4123, + '0', 3967, + 'N', 5041, + '[', 3615, + ']', 3616, + '_', 5008, '`', 482, - 'e', 4960, - 'f', 4994, - 'n', 5011, - 'o', 4961, - 't', 5004, - '{', 3712, - '\t', 4094, - ' ', 4094, - 'I', 5020, - 'i', 5020, + 'e', 4987, + 'f', 5021, + 'n', 5038, + 'o', 4988, + 't', 5031, + '{', 3726, + '\t', 4108, + ' ', 4108, + 'I', 5047, + 'i', 5047, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3976); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3990); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5042); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5069); END_STATE(); case 219: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3603, - '+', 4970, - ',', 4093, - '-', 4969, - '.', 3860, - '0', 3953, - 'E', 4992, - 'N', 5014, - '[', 3601, - ']', 3602, - '_', 4981, + '(', 3617, + '+', 4997, + ',', 4107, + '-', 4996, + '.', 3874, + '0', 3967, + 'E', 5019, + 'N', 5041, + '[', 3615, + ']', 3616, + '_', 5008, '`', 482, - 'e', 4962, - 'f', 4994, - 'n', 5011, - 'o', 4961, - 't', 5004, - '{', 3712, - '\t', 4094, - ' ', 4094, - 'I', 5020, - 'i', 5020, + 'e', 4989, + 'f', 5021, + 'n', 5038, + 'o', 4988, + 't', 5031, + '{', 3726, + '\t', 4108, + ' ', 4108, + 'I', 5047, + 'i', 5047, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3976); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3990); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5042); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5069); END_STATE(); case 220: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3603, - '+', 4970, - ',', 4093, - '-', 4969, - '.', 3846, - '0', 3953, - 'E', 4992, - 'N', 5014, - '[', 3601, - ']', 3602, - '_', 4981, + '(', 3617, + '+', 4997, + ',', 4107, + '-', 4996, + '.', 3860, + '0', 3967, + 'E', 5019, + 'N', 5041, + '[', 3615, + ']', 3616, + '_', 5008, '`', 482, - 'e', 4962, - 'f', 4994, - 'n', 5011, - 'o', 4961, - 't', 5004, - '{', 3712, - '\t', 4094, - ' ', 4094, - 'I', 5020, - 'i', 5020, + 'e', 4989, + 'f', 5021, + 'n', 5038, + 'o', 4988, + 't', 5031, + '{', 3726, + '\t', 4108, + ' ', 4108, + 'I', 5047, + 'i', 5047, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3976); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3990); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5042); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5069); END_STATE(); case 221: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3603, - '+', 5058, - ',', 3605, - '-', 5057, - '.', 5053, - '0', 3884, - 'E', 5067, - 'G', 5070, - 'K', 5070, - 'M', 5070, - 'N', 5115, - 'P', 5070, - 'T', 5070, - '[', 3601, - ']', 3602, - '_', 5072, + '(', 3617, + '+', 5085, + ',', 3619, + '-', 5084, + '.', 5080, + '0', 3898, + 'E', 5094, + 'G', 5097, + 'K', 5097, + 'M', 5097, + 'N', 5142, + 'P', 5097, + 'T', 5097, + '[', 3615, + ']', 3616, + '_', 5099, '`', 482, - 'd', 5086, - 'e', 5046, - 'f', 5085, - 'g', 5069, - 'h', 5101, - 'k', 5069, - 'm', 5071, - 'n', 5106, - 'o', 5045, - 'p', 5069, - 's', 5091, - 't', 5068, - 'u', 5107, - 'w', 5094, - '{', 3712, - 0xb5, 5107, + 'd', 5113, + 'e', 5073, + 'f', 5112, + 'g', 5096, + 'h', 5128, + 'k', 5096, + 'm', 5098, + 'n', 5133, + 'o', 5072, + 'p', 5096, + 's', 5118, + 't', 5095, + 'u', 5134, + 'w', 5121, + '{', 3726, + 0xb5, 5134, ); if (lookahead == '\t' || lookahead == ' ') SKIP(195); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); + lookahead == 'b') ADVANCE(4038); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5122); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3899); + lookahead == 'i') ADVANCE(5149); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3913); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5144); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5171); END_STATE(); case 222: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3603, - '+', 5058, - ',', 3605, - '-', 5057, - '.', 5053, - '0', 3884, - 'E', 5080, - 'N', 5115, - '[', 3601, - ']', 3602, - '_', 5072, + '(', 3617, + '+', 5085, + ',', 3619, + '-', 5084, + '.', 5080, + '0', 3898, + 'E', 5108, + 'N', 5142, + '[', 3615, + ']', 3616, + '_', 5099, '`', 482, - 'e', 5047, - 'f', 5085, - 'n', 5111, - 'o', 5045, - 't', 5102, - '{', 3712, + 'e', 5074, + 'f', 5112, + 'n', 5138, + 'o', 5072, + 't', 5129, + '{', 3726, ); if (lookahead == '\t' || lookahead == ' ') SKIP(195); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5122); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3899); + lookahead == 'i') ADVANCE(5149); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3913); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5144); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5171); END_STATE(); case 223: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3603, - '+', 5058, - ',', 3605, - '-', 5057, - '.', 5053, - '0', 3957, - 'E', 5067, - 'G', 5070, - 'K', 5070, - 'M', 5070, - 'N', 5115, - 'P', 5070, - 'T', 5070, - '[', 3601, - ']', 3602, - '_', 5084, + '(', 3617, + '+', 5085, + ',', 3619, + '-', 5084, + '.', 5080, + '0', 3971, + 'E', 5094, + 'G', 5097, + 'K', 5097, + 'M', 5097, + 'N', 5142, + 'P', 5097, + 'T', 5097, + '[', 3615, + ']', 3616, + '_', 5104, '`', 482, - 'd', 5086, - 'e', 5046, - 'f', 5085, - 'g', 5069, - 'h', 5101, - 'k', 5069, - 'm', 5071, - 'n', 5106, - 'o', 5045, - 'p', 5069, - 's', 5091, - 't', 5068, - 'u', 5107, - 'w', 5094, - '{', 3712, - 0xb5, 5107, + 'd', 5113, + 'e', 5073, + 'f', 5112, + 'g', 5096, + 'h', 5128, + 'k', 5096, + 'm', 5098, + 'n', 5133, + 'o', 5072, + 'p', 5096, + 's', 5118, + 't', 5095, + 'u', 5134, + 'w', 5121, + '{', 3726, + 0xb5, 5134, ); if (lookahead == '\t' || lookahead == ' ') SKIP(195); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); + lookahead == 'b') ADVANCE(4038); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5122); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3980); + lookahead == 'i') ADVANCE(5149); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3994); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5144); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5171); END_STATE(); case 224: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3603, - '+', 5058, - ',', 3605, - '-', 5057, - '.', 5053, - '0', 3957, - 'E', 5070, - 'G', 5070, - 'K', 5070, - 'M', 5070, - 'N', 5115, - 'P', 5070, - 'T', 5070, - '[', 3601, - ']', 3602, - '_', 5084, + '(', 3617, + '+', 5085, + ',', 3619, + '-', 5084, + '.', 5080, + '0', 3971, + 'E', 5097, + 'G', 5097, + 'K', 5097, + 'M', 5097, + 'N', 5142, + 'P', 5097, + 'T', 5097, + '[', 3615, + ']', 3616, + '_', 5104, '`', 482, - 'd', 5086, - 'e', 5043, - 'f', 5085, - 'g', 5069, - 'h', 5101, - 'k', 5069, - 'm', 5071, - 'n', 5106, - 'o', 5045, - 'p', 5069, - 's', 5091, - 't', 5068, - 'u', 5107, - 'w', 5094, - '{', 3712, - 0xb5, 5107, + 'd', 5113, + 'e', 5070, + 'f', 5112, + 'g', 5096, + 'h', 5128, + 'k', 5096, + 'm', 5098, + 'n', 5133, + 'o', 5072, + 'p', 5096, + 's', 5118, + 't', 5095, + 'u', 5134, + 'w', 5121, + '{', 3726, + 0xb5, 5134, ); if (lookahead == '\t' || lookahead == ' ') SKIP(195); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); + lookahead == 'b') ADVANCE(4038); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5122); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3980); + lookahead == 'i') ADVANCE(5149); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3994); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5144); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5171); END_STATE(); case 225: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3603, - '+', 5058, - ',', 3605, - '-', 5057, - '.', 5053, - '0', 3957, - 'E', 5080, - 'N', 5115, - '[', 3601, - ']', 3602, - '_', 5084, + '(', 3617, + '+', 5085, + ',', 3619, + '-', 5084, + '.', 5080, + '0', 3971, + 'E', 5108, + 'N', 5142, + '[', 3615, + ']', 3616, + '_', 5104, '`', 482, - 'e', 5047, - 'f', 5085, - 'n', 5111, - 'o', 5045, - 't', 5102, - '{', 3712, + 'e', 5074, + 'f', 5112, + 'n', 5138, + 'o', 5072, + 't', 5129, + '{', 3726, ); if (lookahead == '\t' || lookahead == ' ') SKIP(195); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5122); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3980); + lookahead == 'i') ADVANCE(5149); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3994); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5144); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5171); END_STATE(); case 226: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3603, - '+', 5058, - ',', 3605, - '-', 5057, - '.', 5053, - '0', 3957, - 'N', 5115, - '[', 3601, - ']', 3602, - '_', 5084, + '(', 3617, + '+', 5085, + ',', 3619, + '-', 5084, + '.', 5080, + '0', 3971, + 'N', 5142, + '[', 3615, + ']', 3616, + '_', 5104, '`', 482, - 'e', 5044, - 'f', 5085, - 'n', 5111, - 'o', 5045, - 't', 5102, - '{', 3712, + 'e', 5071, + 'f', 5112, + 'n', 5138, + 'o', 5072, + 't', 5129, + '{', 3726, ); if (lookahead == '\t' || lookahead == ' ') SKIP(195); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5122); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3980); + lookahead == 'i') ADVANCE(5149); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3994); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5144); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5171); END_STATE(); case 227: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3603, - '+', 5058, - ',', 3605, - '-', 5057, - '.', 5052, - '0', 3884, - 'E', 5080, - 'N', 5115, - '[', 3601, - ']', 3602, - '_', 5072, + '(', 3617, + '+', 5085, + ',', 3619, + '-', 5084, + '.', 5079, + '0', 3898, + 'E', 5108, + 'N', 5142, + '[', 3615, + ']', 3616, + '_', 5099, '`', 482, - 'e', 5047, - 'f', 5085, - 'n', 5111, - 'o', 5045, - 't', 5102, - '{', 3712, + 'e', 5074, + 'f', 5112, + 'n', 5138, + 'o', 5072, + 't', 5129, + '{', 3726, ); if (lookahead == '\t' || lookahead == ' ') SKIP(195); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5122); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3899); + lookahead == 'i') ADVANCE(5149); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3913); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5144); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5171); END_STATE(); case 228: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3603, - '+', 5058, - ',', 3605, - '-', 5057, - '.', 5052, - '0', 3957, - 'E', 5080, - 'N', 5115, - '[', 3601, - ']', 3602, - '_', 5084, + '(', 3617, + '+', 5085, + ',', 3619, + '-', 5084, + '.', 5079, + '0', 3971, + 'E', 5108, + 'N', 5142, + '[', 3615, + ']', 3616, + '_', 5104, '`', 482, - 'e', 5047, - 'f', 5085, - 'n', 5111, - 'o', 5045, - 't', 5102, - '{', 3712, + 'e', 5074, + 'f', 5112, + 'n', 5138, + 'o', 5072, + 't', 5129, + '{', 3726, ); if (lookahead == '\t' || lookahead == ' ') SKIP(195); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5122); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3980); + lookahead == 'i') ADVANCE(5149); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3994); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5144); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5171); END_STATE(); case 229: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3603, - '+', 5058, - ',', 3605, - '-', 5057, - '.', 5052, - '0', 3957, - 'N', 5115, - '[', 3601, - ']', 3602, - '_', 5084, + '(', 3617, + '+', 5085, + ',', 3619, + '-', 5084, + '.', 5079, + '0', 3971, + 'N', 5142, + '[', 3615, + ']', 3616, + '_', 5104, '`', 482, - 'e', 5044, - 'f', 5085, - 'n', 5111, - 'o', 5045, - 't', 5102, - '{', 3712, + 'e', 5071, + 'f', 5112, + 'n', 5138, + 'o', 5072, + 't', 5129, + '{', 3726, ); if (lookahead == '\t' || lookahead == ' ') SKIP(195); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5122); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3980); + lookahead == 'i') ADVANCE(5149); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3994); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5144); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5171); END_STATE(); case 230: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3603, - '+', 5058, - ',', 3605, - '-', 5057, - '.', 3861, - '0', 3957, - 'E', 5067, - 'G', 5070, - 'K', 5070, - 'M', 5070, - 'N', 5115, - 'P', 5070, - 'T', 5070, - '[', 3601, - ']', 3602, - '_', 5084, + '(', 3617, + '+', 5085, + ',', 3619, + '-', 5084, + '.', 3876, + '0', 3971, + 'E', 5094, + 'G', 5097, + 'K', 5097, + 'M', 5097, + 'N', 5142, + 'P', 5097, + 'T', 5097, + '[', 3615, + ']', 3616, + '_', 5104, '`', 482, - 'd', 5086, - 'e', 5046, - 'f', 5085, - 'g', 5069, - 'h', 5101, - 'k', 5069, - 'm', 5071, - 'n', 5106, - 'o', 5045, - 'p', 5069, - 's', 5091, - 't', 5068, - 'u', 5107, - 'w', 5094, - '{', 3712, - 0xb5, 5107, + 'd', 5113, + 'e', 5073, + 'f', 5112, + 'g', 5096, + 'h', 5128, + 'k', 5096, + 'm', 5098, + 'n', 5133, + 'o', 5072, + 'p', 5096, + 's', 5118, + 't', 5095, + 'u', 5134, + 'w', 5121, + '{', 3726, + 0xb5, 5134, ); if (lookahead == '\t' || lookahead == ' ') SKIP(195); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); + lookahead == 'b') ADVANCE(4038); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5122); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3980); + lookahead == 'i') ADVANCE(5149); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3994); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5144); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5171); END_STATE(); case 231: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3603, - '+', 5058, - ',', 3605, - '-', 5057, - '.', 3861, - '0', 3957, - 'E', 5080, - 'N', 5115, - '[', 3601, - ']', 3602, - '_', 5084, + '(', 3617, + '+', 5085, + ',', 3619, + '-', 5084, + '.', 3876, + '0', 3971, + 'E', 5108, + 'N', 5142, + '[', 3615, + ']', 3616, + '_', 5104, '`', 482, - 'e', 5047, - 'f', 5085, - 'n', 5111, - 'o', 5045, - 't', 5102, - '{', 3712, + 'e', 5074, + 'f', 5112, + 'n', 5138, + 'o', 5072, + 't', 5129, + '{', 3726, ); if (lookahead == '\t' || lookahead == ' ') SKIP(195); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5122); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3980); + lookahead == 'i') ADVANCE(5149); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3994); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5144); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5171); END_STATE(); case 232: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3603, - '+', 5058, - ',', 3605, - '-', 5057, - '.', 3850, - '0', 3957, - 'E', 5080, - 'N', 5115, - '[', 3601, - ']', 3602, - '_', 5084, + '(', 3617, + '+', 5085, + ',', 3619, + '-', 5084, + '.', 3866, + '0', 3971, + 'E', 5108, + 'N', 5142, + '[', 3615, + ']', 3616, + '_', 5104, '`', 482, - 'e', 5047, - 'f', 5085, - 'n', 5111, - 'o', 5045, - 't', 5102, - '{', 3712, + 'e', 5074, + 'f', 5112, + 'n', 5138, + 'o', 5072, + 't', 5129, + '{', 3726, ); if (lookahead == '\t' || lookahead == ' ') SKIP(195); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5122); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3980); + lookahead == 'i') ADVANCE(5149); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3994); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5144); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5171); END_STATE(); case 233: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3603, - '+', 5058, - ',', 4093, - '-', 5057, - '.', 5052, - '0', 3957, - 'N', 5115, - '[', 3601, - ']', 3602, - '_', 5084, + '(', 3617, + '+', 5085, + ',', 4107, + '-', 5084, + '.', 5079, + '0', 3971, + 'N', 5142, + '[', 3615, + ']', 3616, + '_', 5104, '`', 482, - 'e', 5044, - 'f', 5085, - 'n', 5111, - 'o', 5045, - 't', 5102, - '{', 3712, - '\t', 4094, - ' ', 4094, - 'I', 5122, - 'i', 5122, + 'e', 5071, + 'f', 5112, + 'n', 5138, + 'o', 5072, + 't', 5129, + '{', 3726, + '\t', 4108, + ' ', 4108, + 'I', 5149, + 'i', 5149, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3980); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3994); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5144); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5171); END_STATE(); case 234: ADVANCE_MAP( - '"', 4075, - '#', 5521, - '$', 3606, + '"', 4089, + '#', 5548, + '$', 3620, '\'', 376, - '(', 3603, - '+', 4973, - ',', 3605, - '-', 4972, - '.', 4967, - '0', 3953, - 'N', 5014, - '[', 3601, - ']', 3602, - '_', 4981, + '(', 3617, + '+', 5000, + ',', 3619, + '-', 4999, + '.', 4994, + '0', 3967, + 'N', 5041, + '[', 3615, + ']', 3616, + '_', 5008, '`', 482, - 'e', 4960, - 'f', 4994, - 'n', 5011, - 'o', 4961, - 't', 5004, - '{', 3712, + 'e', 4987, + 'f', 5021, + 'n', 5038, + 'o', 4988, + 't', 5031, + '{', 3726, ); if (lookahead == '\t' || lookahead == ' ') SKIP(234); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5020); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3976); + lookahead == 'i') ADVANCE(5047); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3990); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5042); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5069); END_STATE(); case 235: ADVANCE_MAP( - '"', 4075, - '#', 5521, + '"', 4089, + '#', 5548, '\'', 376, - '+', 2065, - ',', 4093, + '+', 2069, + ',', 4107, '-', 432, - '.', 2447, - 'I', 2848, - 'N', 2840, - ']', 3602, - '_', 2450, + '.', 2451, + 'I', 2856, + 'N', 2848, + ']', 3616, + '_', 2454, '`', 482, - 'a', 2650, - 'b', 2740, - 'c', 2482, - 'd', 2532, - 'e', 2646, - 'f', 2460, - 'h', 2612, - 'i', 2445, - 'l', 2567, - 'm', 2481, - 'n', 2811, - 'o', 2829, - 'r', 2568, - 's', 2699, - 't', 2741, - 'u', 2766, - 'w', 2592, - '\t', 4094, - ' ', 4094, + 'a', 2656, + 'b', 2746, + 'c', 2488, + 'd', 2538, + 'e', 2652, + 'f', 2464, + 'h', 2618, + 'i', 2449, + 'l', 2573, + 'm', 2487, + 'n', 2819, + 'o', 2837, + 'r', 2574, + 's', 2705, + 't', 2747, + 'u', 2774, + 'w', 2599, + '\t', 4108, + ' ', 4108, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2860); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2868); END_STATE(); case 236: ADVANCE_MAP( - '"', 4075, - '#', 5521, + '"', 4089, + '#', 5548, '\'', 376, - '+', 2065, + '+', 2069, '-', 398, - '.', 4113, - '?', 3772, - 'I', 2848, - 'N', 2840, - '_', 2450, + '.', 4131, + '?', 3782, + 'I', 2856, + 'N', 2848, + '_', 2454, '`', 482, - 'a', 2650, - 'b', 2740, - 'c', 2482, - 'd', 2532, - 'e', 2646, - 'f', 2460, - 'h', 2612, - 'i', 2445, - 'l', 2567, - 'm', 2481, - 'n', 2811, - 'o', 2829, - 'r', 2568, - 's', 2699, - 't', 2741, - 'u', 2766, - 'w', 2592, + 'a', 2656, + 'b', 2746, + 'c', 2488, + 'd', 2538, + 'e', 2652, + 'f', 2464, + 'h', 2618, + 'i', 2449, + 'l', 2573, + 'm', 2487, + 'n', 2819, + 'o', 2837, + 'r', 2574, + 's', 2705, + 't', 2747, + 'u', 2774, + 'w', 2599, ); if (lookahead == '\t' || lookahead == ' ') SKIP(236); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(2860); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3995); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(2868); END_STATE(); case 237: ADVANCE_MAP( - '"', 4075, - '#', 5521, + '"', 4089, + '#', 5548, '\'', 376, - '+', 2065, + '+', 2069, '-', 398, - '.', 4113, - 'I', 2848, - 'N', 2840, - '_', 2450, + '.', 4131, + 'I', 2856, + 'N', 2848, + '_', 2454, '`', 482, - 'a', 2650, - 'b', 2740, - 'c', 2482, - 'd', 2532, - 'e', 2646, - 'f', 2460, - 'h', 2612, - 'i', 2445, - 'l', 2567, - 'm', 2481, - 'n', 2811, - 'o', 2829, - 'r', 2568, - 's', 2699, - 't', 2741, - 'u', 2766, - 'w', 2592, + 'a', 2656, + 'b', 2746, + 'c', 2488, + 'd', 2538, + 'e', 2652, + 'f', 2464, + 'h', 2618, + 'i', 2449, + 'l', 2573, + 'm', 2487, + 'n', 2819, + 'o', 2837, + 'r', 2574, + 's', 2705, + 't', 2747, + 'u', 2774, + 'w', 2599, ); if (lookahead == '\t' || lookahead == ' ') SKIP(237); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(2860); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3995); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(2868); END_STATE(); case 238: ADVANCE_MAP( - '"', 4075, - '#', 5521, + '"', 4089, + '#', 5548, '\'', 376, - '+', 2065, + '+', 2069, '-', 398, - '.', 2447, - '=', 4309, - 'I', 3506, - 'N', 3494, - '_', 3371, + '.', 2451, + '=', 4327, + 'I', 3520, + 'N', 3508, + '_', 3385, '`', 482, - 'a', 3424, - 'b', 3454, - 'c', 3379, - 'd', 3389, - 'e', 3429, - 'f', 3381, - 'h', 3415, - 'i', 3368, - 'l', 3395, - 'm', 3376, - 'n', 3481, - 'o', 3486, - 'r', 3390, - 's', 3442, - 't', 3449, - 'u', 3464, - 'w', 3412, + 'a', 3438, + 'b', 3468, + 'c', 3393, + 'd', 3403, + 'e', 3443, + 'f', 3395, + 'h', 3429, + 'i', 3382, + 'l', 3409, + 'm', 3390, + 'n', 3495, + 'o', 3500, + 'r', 3404, + 's', 3456, + 't', 3463, + 'u', 3478, + 'w', 3426, ); if (lookahead == '\t' || lookahead == ' ') SKIP(239); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3371); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3526); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3540); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && - (lookahead < ']' || '}' < lookahead)) ADVANCE(2860); + (lookahead < ']' || '}' < lookahead)) ADVANCE(2868); END_STATE(); case 239: ADVANCE_MAP( - '"', 4075, - '#', 5521, + '"', 4089, + '#', 5548, '\'', 376, - '+', 2065, + '+', 2069, '-', 398, - '.', 2447, - 'I', 2848, - 'N', 2840, - '_', 2450, + '.', 2451, + 'I', 2856, + 'N', 2848, + '_', 2454, '`', 482, - 'a', 2650, - 'b', 2740, - 'c', 2482, - 'd', 2532, - 'e', 2646, - 'f', 2460, - 'h', 2612, - 'i', 2445, - 'l', 2567, - 'm', 2481, - 'n', 2811, - 'o', 2829, - 'r', 2568, - 's', 2699, - 't', 2741, - 'u', 2766, - 'w', 2592, + 'a', 2656, + 'b', 2746, + 'c', 2488, + 'd', 2538, + 'e', 2652, + 'f', 2464, + 'h', 2618, + 'i', 2449, + 'l', 2573, + 'm', 2487, + 'n', 2819, + 'o', 2837, + 'r', 2574, + 's', 2705, + 't', 2747, + 'u', 2774, + 'w', 2599, ); if (lookahead == '\t' || lookahead == ' ') SKIP(239); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(2860); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3995); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(2868); END_STATE(); case 240: ADVANCE_MAP( - '"', 4075, - '#', 5521, + '"', 4089, + '#', 5548, '\'', 376, - '+', 2065, - '-', 4498, - '.', 2447, - 'I', 2848, - 'N', 2840, - '_', 2450, + '+', 2069, + '-', 4516, + '.', 2451, + 'I', 2856, + 'N', 2848, + '_', 2454, '`', 482, - 'a', 2650, - 'b', 2740, - 'c', 2482, - 'd', 2532, - 'e', 2646, - 'f', 2460, - 'h', 2612, - 'i', 2445, - 'l', 2567, - 'm', 2481, - 'n', 2811, - 'o', 2829, - 'r', 2568, - 's', 2699, - 't', 2741, - 'u', 2766, - 'w', 2592, + 'a', 2656, + 'b', 2746, + 'c', 2488, + 'd', 2538, + 'e', 2652, + 'f', 2464, + 'h', 2618, + 'i', 2449, + 'l', 2573, + 'm', 2487, + 'n', 2819, + 'o', 2837, + 'r', 2574, + 's', 2705, + 't', 2747, + 'u', 2774, + 'w', 2599, ); if (lookahead == '\t' || lookahead == ' ') SKIP(239); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4685); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); + lookahead == '^') ADVANCE(4708); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2860); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2868); END_STATE(); case 241: ADVANCE_MAP( - '"', 4075, - '#', 5521, + '"', 4089, + '#', 5548, '\'', 376, - '+', 2065, - '-', 4498, - '.', 2072, - 'B', 4024, - 'E', 2437, - 'G', 2442, - 'I', 2848, - 'K', 2442, - 'M', 2442, - 'N', 2840, - 'P', 2442, - 'T', 2442, - '_', 2450, + '+', 2069, + '-', 4516, + '.', 2076, + 'B', 4038, + 'E', 2441, + 'G', 2446, + 'I', 2856, + 'K', 2446, + 'M', 2446, + 'N', 2848, + 'P', 2446, + 'T', 2446, + '_', 2454, '`', 482, - 'a', 2650, - 'b', 4029, - 'c', 2482, - 'd', 2473, - 'e', 2436, - 'f', 2460, - 'g', 2441, - 'h', 2611, - 'i', 2445, - 'k', 2441, - 'l', 2567, - 'm', 2438, - 'n', 2752, - 'o', 2829, - 'p', 2441, - 'r', 2568, - 's', 2543, - 't', 2440, - 'u', 2754, - 'w', 2591, - 0xb5, 2753, + 'a', 2656, + 'b', 4043, + 'c', 2488, + 'd', 2478, + 'e', 2440, + 'f', 2464, + 'g', 2445, + 'h', 2617, + 'i', 2449, + 'k', 2445, + 'l', 2573, + 'm', 2442, + 'n', 2760, + 'o', 2837, + 'p', 2445, + 'r', 2574, + 's', 2549, + 't', 2444, + 'u', 2762, + 'w', 2598, + 0xb5, 2761, ); if (lookahead == '\t' || lookahead == ' ') SKIP(239); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4685); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); + lookahead == '^') ADVANCE(4708); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2860); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2868); END_STATE(); case 242: ADVANCE_MAP( - '"', 4075, - '#', 5521, + '"', 4089, + '#', 5548, '\'', 376, - '+', 2065, - '-', 4498, - '.', 2072, - 'B', 4024, - 'E', 2437, - 'G', 2442, - 'I', 2848, - 'K', 2442, - 'M', 2442, - 'N', 2840, - 'P', 2442, - 'T', 2442, - '_', 2458, + '+', 2069, + '-', 4516, + '.', 2076, + 'B', 4038, + 'E', 2441, + 'G', 2446, + 'I', 2856, + 'K', 2446, + 'M', 2446, + 'N', 2848, + 'P', 2446, + 'T', 2446, + '_', 2459, '`', 482, - 'a', 2650, - 'b', 4029, - 'c', 2482, - 'd', 2473, - 'e', 2436, - 'f', 2460, - 'g', 2441, - 'h', 2611, - 'i', 2445, - 'k', 2441, - 'l', 2567, - 'm', 2438, - 'n', 2752, - 'o', 2829, - 'p', 2441, - 'r', 2568, - 's', 2543, - 't', 2440, - 'u', 2754, - 'w', 2591, - 0xb5, 2753, + 'a', 2656, + 'b', 4043, + 'c', 2488, + 'd', 2478, + 'e', 2440, + 'f', 2464, + 'g', 2445, + 'h', 2617, + 'i', 2449, + 'k', 2445, + 'l', 2573, + 'm', 2442, + 'n', 2760, + 'o', 2837, + 'p', 2445, + 'r', 2574, + 's', 2549, + 't', 2444, + 'u', 2762, + 'w', 2598, + 0xb5, 2761, ); if (lookahead == '\t' || lookahead == ' ') SKIP(239); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4685); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); + lookahead == '^') ADVANCE(4708); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2860); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2868); END_STATE(); case 243: ADVANCE_MAP( - '"', 4075, - '#', 5521, + '"', 4089, + '#', 5548, '\'', 376, - '+', 2065, - '-', 4498, - '.', 2072, - 'B', 4024, - 'E', 2442, - 'G', 2442, - 'I', 2848, - 'K', 2442, - 'M', 2442, - 'N', 2840, - 'P', 2442, - 'T', 2442, - '_', 2450, + '+', 2069, + '-', 4516, + '.', 2076, + 'B', 4038, + 'E', 2446, + 'G', 2446, + 'I', 2856, + 'K', 2446, + 'M', 2446, + 'N', 2848, + 'P', 2446, + 'T', 2446, + '_', 2454, '`', 482, - 'a', 2650, - 'b', 4029, - 'c', 2482, - 'd', 2473, - 'e', 2439, - 'f', 2460, - 'g', 2441, - 'h', 2611, - 'i', 2445, - 'k', 2441, - 'l', 2567, - 'm', 2438, - 'n', 2752, - 'o', 2829, - 'p', 2441, - 'r', 2568, - 's', 2543, - 't', 2440, - 'u', 2754, - 'w', 2591, - 0xb5, 2753, + 'a', 2656, + 'b', 4043, + 'c', 2488, + 'd', 2478, + 'e', 2443, + 'f', 2464, + 'g', 2445, + 'h', 2617, + 'i', 2449, + 'k', 2445, + 'l', 2573, + 'm', 2442, + 'n', 2760, + 'o', 2837, + 'p', 2445, + 'r', 2574, + 's', 2549, + 't', 2444, + 'u', 2762, + 'w', 2598, + 0xb5, 2761, ); if (lookahead == '\t' || lookahead == ' ') SKIP(239); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4685); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); + lookahead == '^') ADVANCE(4708); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2860); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2868); END_STATE(); case 244: ADVANCE_MAP( - '"', 4075, - '#', 5521, + '"', 4089, + '#', 5548, '\'', 376, - '+', 2065, - '-', 4498, - '.', 3858, - 'B', 4024, - 'E', 2437, - 'G', 2442, - 'I', 2848, - 'K', 2442, - 'M', 2442, - 'N', 2840, - 'P', 2442, - 'T', 2442, - '_', 2450, + '+', 2069, + '-', 4516, + '.', 3872, + 'B', 4038, + 'E', 2441, + 'G', 2446, + 'I', 2856, + 'K', 2446, + 'M', 2446, + 'N', 2848, + 'P', 2446, + 'T', 2446, + '_', 2454, '`', 482, - 'a', 2650, - 'b', 4029, - 'c', 2482, - 'd', 2473, - 'e', 2436, - 'f', 2460, - 'g', 2441, - 'h', 2611, - 'i', 2445, - 'k', 2441, - 'l', 2567, - 'm', 2438, - 'n', 2752, - 'o', 2829, - 'p', 2441, - 'r', 2568, - 's', 2543, - 't', 2440, - 'u', 2754, - 'w', 2591, - 0xb5, 2753, + 'a', 2656, + 'b', 4043, + 'c', 2488, + 'd', 2478, + 'e', 2440, + 'f', 2464, + 'g', 2445, + 'h', 2617, + 'i', 2449, + 'k', 2445, + 'l', 2573, + 'm', 2442, + 'n', 2760, + 'o', 2837, + 'p', 2445, + 'r', 2574, + 's', 2549, + 't', 2444, + 'u', 2762, + 'w', 2598, + 0xb5, 2761, ); if (lookahead == '\t' || lookahead == ' ') SKIP(239); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4685); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); + lookahead == '^') ADVANCE(4708); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2860); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2868); END_STATE(); case 245: - if (lookahead == '"') ADVANCE(4075); - if (lookahead == '#') ADVANCE(5521); + if (lookahead == '"') ADVANCE(4089); + if (lookahead == '#') ADVANCE(5548); if (lookahead == '\'') ADVANCE(376); - if (lookahead == '>') ADVANCE(3623); + if (lookahead == '>') ADVANCE(3637); if (lookahead == '`') ADVANCE(482); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4097); + lookahead == ' ') ADVANCE(4111); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4093); + lookahead == ',') ADVANCE(4107); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '&' || '.' < lookahead) && @@ -23048,439 +23071,446 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '^' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3348); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3362); END_STATE(); case 246: - if (lookahead == '"') ADVANCE(4075); - if (lookahead == '#') ADVANCE(5521); + if (lookahead == '"') ADVANCE(4089); + if (lookahead == '#') ADVANCE(5548); if (lookahead == '\'') ADVANCE(376); if (lookahead == '`') ADVANCE(482); if (lookahead == '\t' || lookahead == ' ') SKIP(246); END_STATE(); case 247: - if (lookahead == '"') ADVANCE(4075); - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '\'') ADVANCE(4114); - if (lookahead == '`') ADVANCE(4115); + if (lookahead == '"') ADVANCE(4089); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '\'') ADVANCE(4132); + if (lookahead == '`') ADVANCE(4133); if (lookahead == '\t' || lookahead == ' ') SKIP(246); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(4116); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(4134); END_STATE(); case 248: ADVANCE_MAP( - '"', 4075, - '#', 5524, - '$', 3608, + '"', 4089, + '#', 5551, + '$', 3622, '\'', 376, - '(', 3802, - '+', 3824, - ',', 3605, - '-', 3650, - '.', 5403, - '0', 5408, - 'I', 5506, - 'N', 5503, - '_', 5410, + '(', 3816, + '+', 3838, + ',', 3619, + '-', 3664, + '.', 5430, + '0', 5435, + 'I', 5533, + 'N', 5530, + '_', 5437, '`', 482, - 'a', 5454, - 'b', 5476, - 'c', 5414, - 'd', 5425, - 'e', 5460, - 'f', 5415, - 'h', 5447, - 'i', 5407, - 'l', 5435, - 'm', 5416, - 'n', 5495, - 'o', 5501, - 'r', 5426, - 's', 5466, - 't', 5472, - 'u', 5484, - 'w', 5446, - '}', 3713, + 'a', 5481, + 'b', 5503, + 'c', 5441, + 'd', 5452, + 'e', 5487, + 'f', 5442, + 'h', 5474, + 'i', 5434, + 'l', 5462, + 'm', 5443, + 'n', 5522, + 'o', 5528, + 'r', 5453, + 's', 5493, + 't', 5499, + 'u', 5511, + 'w', 5473, + '}', 3727, ); if (lookahead == '\t' || lookahead == ' ') SKIP(137); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5514); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(5410); + lookahead == '^') ADVANCE(5541); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(5437); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5512); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5539); END_STATE(); case 249: ADVANCE_MAP( - '"', 4075, - '#', 5524, - '$', 3608, + '"', 4089, + '#', 5551, + '$', 3622, '\'', 376, - '(', 3802, - '+', 3824, - ',', 4093, - '-', 3650, - '.', 5403, - '0', 5408, - 'I', 5506, - 'N', 5503, - '_', 5410, + '(', 3816, + '+', 3838, + ',', 4107, + '-', 3664, + '.', 5430, + '0', 5435, + 'I', 5533, + 'N', 5530, + '_', 5437, '`', 482, - 'a', 5454, - 'b', 5476, - 'c', 5414, - 'd', 5425, - 'e', 5460, - 'f', 5415, - 'h', 5447, - 'i', 5407, - 'l', 5435, - 'm', 5416, - 'n', 5495, - 'o', 5501, - 'r', 5426, - 's', 5466, - 't', 5472, - 'u', 5484, - 'w', 5446, - '}', 3713, - '\t', 4094, - ' ', 4094, + 'a', 5481, + 'b', 5503, + 'c', 5441, + 'd', 5452, + 'e', 5487, + 'f', 5442, + 'h', 5474, + 'i', 5434, + 'l', 5462, + 'm', 5443, + 'n', 5522, + 'o', 5528, + 'r', 5453, + 's', 5493, + 't', 5499, + 'u', 5511, + 'w', 5473, + '}', 3727, + '\t', 4108, + ' ', 4108, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5514); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(5410); + lookahead == '^') ADVANCE(5541); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(5437); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5512); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5539); END_STATE(); case 250: ADVANCE_MAP( - '"', 4075, - '#', 5527, - '$', 3609, + '"', 4089, + '#', 5554, + '$', 3623, '\'', 376, - '(', 3603, - '+', 4719, - '-', 3644, - '.', 4720, - 'N', 4918, - '[', 3601, - '_', 4747, + '(', 3617, + '+', 4742, + '-', 3656, + '.', 4743, + 'N', 4945, + '[', 3615, + '_', 4770, '`', 482, - 'e', 4705, - 'f', 4757, - 'n', 4893, - 'o', 4706, - 't', 4847, + 'e', 4728, + 'f', 4780, + 'n', 4920, + 'o', 4729, + 't', 4872, ); if (lookahead == '\t' || lookahead == ' ') SKIP(155); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4928); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4750); + lookahead == 'i') ADVANCE(4955); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4773); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4958); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4985); END_STATE(); case 251: ADVANCE_MAP( - '"', 4075, - '#', 5527, + '"', 4089, + '#', 5554, '\'', 376, - '+', 4721, - '-', 4711, - '.', 4752, - 'I', 4930, - 'N', 4919, - '_', 4756, + '+', 4744, + '-', 4734, + '.', 4775, + 'I', 4957, + 'N', 4946, + '_', 4779, '`', 482, - 'a', 4817, - 'b', 4855, - 'c', 4758, - 'd', 4777, - 'e', 4814, - 'f', 4759, - 'h', 4800, - 'i', 4743, - 'l', 4781, - 'm', 4760, - 'n', 4896, - 'o', 4905, - 'r', 4778, - 's', 4832, - 't', 4854, - 'u', 4874, - 'w', 4799, + 'a', 4842, + 'b', 4880, + 'c', 4781, + 'd', 4802, + 'e', 4839, + 'f', 4782, + 'h', 4826, + 'i', 4766, + 'l', 4806, + 'm', 4783, + 'n', 4923, + 'o', 4932, + 'r', 4803, + 's', 4857, + 't', 4879, + 'u', 4901, + 'w', 4824, ); if (lookahead == '\t' || lookahead == ' ') SKIP(239); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4958); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4756); + lookahead == '^') ADVANCE(4985); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4779); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4939); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4966); END_STATE(); case 252: ADVANCE_MAP( - '"', 4075, - '#', 5526, - '$', 3611, + '"', 4089, + '#', 5553, + '$', 3625, '\'', 376, - '(', 3802, - '+', 5161, - ',', 4093, - '-', 5160, - '.', 5162, - '0', 5173, - 'N', 5202, - '[', 3601, - ']', 3602, - '_', 5175, + '(', 3816, + '+', 5188, + ',', 4107, + '-', 5187, + '.', 5189, + '0', 5200, + 'N', 5229, + '[', 3615, + ']', 3616, + '_', 5202, '`', 482, - 'e', 5154, - 'f', 5181, - 'n', 5198, - 'o', 5155, - 't', 5191, - '{', 3712, - '\t', 4094, - ' ', 4094, - 'I', 5207, - 'i', 5207, + 'e', 5181, + 'f', 5208, + 'n', 5225, + 'o', 5182, + 't', 5218, + '{', 3726, + '\t', 4108, + ' ', 4108, + 'I', 5234, + 'i', 5234, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(5178); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(5205); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5229); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5256); END_STATE(); case 253: ADVANCE_MAP( - '"', 4075, - '#', 5526, - '$', 3611, + '"', 4089, + '#', 5553, + '$', 3625, '\'', 376, - '(', 3603, - '+', 5161, - ',', 3605, - '-', 5160, - '.', 5162, - '0', 5173, - 'N', 5202, - '[', 3601, - ']', 3602, - '_', 5175, + '(', 3617, + '+', 5188, + ',', 3619, + '-', 5187, + '.', 5189, + '0', 5200, + 'N', 5229, + '[', 3615, + ']', 3616, + '_', 5202, '`', 482, - 'e', 5154, - 'f', 5181, - 'n', 5198, - 'o', 5155, - 't', 5191, - '{', 3712, + 'e', 5181, + 'f', 5208, + 'n', 5225, + 'o', 5182, + 't', 5218, + '{', 3726, ); if (lookahead == '\t' || lookahead == ' ') SKIP(195); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5207); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(5178); + lookahead == 'i') ADVANCE(5234); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(5205); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5229); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5256); END_STATE(); case 254: - if (lookahead == '"') ADVANCE(4075); - if (lookahead == '#') ADVANCE(4077); - if (lookahead == '\\') ADVANCE(1524); + if (lookahead == '"') ADVANCE(4089); + if (lookahead == '#') ADVANCE(4091); + if (lookahead == '\\') ADVANCE(1528); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4076); - if (lookahead != 0) ADVANCE(4077); + lookahead == ' ') ADVANCE(4090); + if (lookahead != 0) ADVANCE(4091); END_STATE(); case 255: - if (lookahead == '"') ADVANCE(4089); - if (lookahead == '#') ADVANCE(4082); - if (lookahead == '(') ADVANCE(3603); - if (lookahead == '\\') ADVANCE(1495); + if (lookahead == '"') ADVANCE(4103); + if (lookahead == '#') ADVANCE(4096); + if (lookahead == '(') ADVANCE(3617); + if (lookahead == '\\') ADVANCE(1499); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4081); - if (lookahead != 0) ADVANCE(4082); + lookahead == ' ') ADVANCE(4095); + if (lookahead != 0) ADVANCE(4096); END_STATE(); case 256: ADVANCE_MAP( - '#', 5521, - '$', 3606, - '(', 3802, - '.', 3867, - '=', 4516, - '_', 4538, - 'i', 4574, - '|', 3566, + '#', 5548, + '$', 3620, + '(', 3816, + '.', 3881, + '=', 4534, + '_', 4556, + 'i', 4595, + '|', 3580, ); if (lookahead == '\t' || lookahead == ' ') SKIP(283); if (lookahead == '+' || - lookahead == '-') ADVANCE(4508); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == '-') ADVANCE(4526); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 257: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '$') ADVANCE(3606); - if (lookahead == '(') ADVANCE(3802); - if (lookahead == '.') ADVANCE(3867); - if (lookahead == '=') ADVANCE(4516); - if (lookahead == '_') ADVANCE(4538); - if (lookahead == '|') ADVANCE(3566); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '$') ADVANCE(3620); + if (lookahead == '(') ADVANCE(3816); + if (lookahead == '.') ADVANCE(3881); + if (lookahead == '=') ADVANCE(4534); + if (lookahead == '_') ADVANCE(4556); + if (lookahead == '|') ADVANCE(3580); if (lookahead == '\t' || lookahead == ' ') SKIP(284); if (lookahead == '+' || - lookahead == '-') ADVANCE(4508); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == '-') ADVANCE(4526); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 258: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '$') ADVANCE(3606); - if (lookahead == '(') ADVANCE(3802); - if (lookahead == '.') ADVANCE(3867); - if (lookahead == '_') ADVANCE(4538); - if (lookahead == '{') ADVANCE(3712); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '$') ADVANCE(3620); + if (lookahead == '(') ADVANCE(3816); + if (lookahead == '.') ADVANCE(3881); + if (lookahead == '_') ADVANCE(4556); + if (lookahead == '{') ADVANCE(3726); if (lookahead == '\t' || lookahead == ' ') SKIP(286); if (lookahead == '+' || - lookahead == '-') ADVANCE(4508); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == '-') ADVANCE(4526); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 259: ADVANCE_MAP( - '#', 5521, - '$', 3606, - '(', 3802, - '.', 3868, - ']', 3602, - '_', 5072, - '}', 3713, - '\t', 4097, - ' ', 4097, - '+', 5056, - '-', 5056, + '#', 5548, + '$', 3620, + '(', 3816, + '.', 3883, + ']', 3616, + '_', 5341, + '}', 3727, + '\t', 4111, + ' ', 4111, + '+', 5323, + '-', 5323, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4093); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); + lookahead == ',') ADVANCE(4107); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && + (lookahead < '0' || ';' < lookahead) && lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5144); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5355); END_STATE(); case 260: ADVANCE_MAP( - '#', 5521, - '$', 3606, - '(', 3802, - '.', 4540, - '=', 4516, - '_', 4538, - 'i', 4574, - '|', 3566, + '#', 5548, + '$', 3620, + '(', 3816, + '.', 4558, + '=', 4534, + '_', 4556, + 'i', 4595, + '|', 3580, ); if (lookahead == '\t' || lookahead == ' ') SKIP(283); if (lookahead == '+' || - lookahead == '-') ADVANCE(4508); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == '-') ADVANCE(4526); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 261: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '$') ADVANCE(3606); - if (lookahead == '(') ADVANCE(3802); - if (lookahead == '.') ADVANCE(4540); - if (lookahead == '=') ADVANCE(4516); - if (lookahead == '_') ADVANCE(4538); - if (lookahead == '|') ADVANCE(3566); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '$') ADVANCE(3620); + if (lookahead == '(') ADVANCE(3816); + if (lookahead == '.') ADVANCE(4558); + if (lookahead == '=') ADVANCE(4534); + if (lookahead == '_') ADVANCE(4556); + if (lookahead == '|') ADVANCE(3580); if (lookahead == '\t' || lookahead == ' ') SKIP(284); if (lookahead == '+' || - lookahead == '-') ADVANCE(4508); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == '-') ADVANCE(4526); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 262: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '$') ADVANCE(3606); - if (lookahead == '(') ADVANCE(3802); - if (lookahead == '.') ADVANCE(4540); - if (lookahead == '_') ADVANCE(4538); - if (lookahead == '{') ADVANCE(3712); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '$') ADVANCE(3620); + if (lookahead == '(') ADVANCE(3816); + if (lookahead == '.') ADVANCE(4558); + if (lookahead == '_') ADVANCE(4556); + if (lookahead == '{') ADVANCE(3726); if (lookahead == '\t' || lookahead == ' ') SKIP(286); if (lookahead == '+' || - lookahead == '-') ADVANCE(4508); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == '-') ADVANCE(4526); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 263: ADVANCE_MAP( - '#', 5521, - '$', 3606, - '(', 3802, - '.', 3869, - '_', 5314, - '}', 3713, - '\t', 4097, - ' ', 4097, - '+', 5296, - '-', 5296, + '#', 5548, + '$', 3620, + '(', 3816, + '.', 3882, + ']', 3616, + '_', 5099, + '\t', 4111, + ' ', 4111, + '+', 5083, + '-', 5083, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4093); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(5328); + lookahead == ',') ADVANCE(4107); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if (lookahead != 0 && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != '_' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5171); END_STATE(); case 264: ADVANCE_MAP( - '#', 5521, - '$', 3606, - '(', 3802, - '.', 5074, - ']', 3602, - '_', 5072, - '\t', 4097, - ' ', 4097, - '+', 5056, - '-', 5056, + '#', 5548, + '$', 3620, + '(', 3816, + '.', 5101, + ']', 3616, + '_', 5099, + '\t', 4111, + ' ', 4111, + '+', 5083, + '-', 5083, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4093); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); + lookahead == ',') ADVANCE(4107); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -23488,390 +23518,390 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5144); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5171); END_STATE(); case 265: ADVANCE_MAP( - '#', 5521, - '$', 3606, - '(', 3802, - '.', 5309, - '_', 5314, - '}', 3713, - '\t', 4097, - ' ', 4097, - '+', 5296, - '-', 5296, + '#', 5548, + '$', 3620, + '(', 3816, + '.', 5336, + '_', 5341, + '}', 3727, + '\t', 4111, + ' ', 4111, + '+', 5323, + '-', 5323, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4093); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(5328); + lookahead == ',') ADVANCE(4107); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(5355); END_STATE(); case 266: ADVANCE_MAP( - '#', 5521, - '$', 3606, - '-', 3635, - '.', 3857, - 'E', 4531, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'P', 4535, - 'T', 4535, - 'd', 4555, - 'e', 4530, - 'g', 4534, - 'h', 4608, - 'k', 4534, - 'm', 4537, - 'n', 4621, - 'p', 4534, - 's', 4567, - 't', 4534, - 'u', 4621, - 'w', 4582, - '{', 3712, - 0xb5, 4621, + '#', 5548, + '$', 3620, + '-', 3649, + '.', 3871, + 'E', 4549, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'P', 4553, + 'T', 4553, + 'd', 4573, + 'e', 4548, + 'g', 4552, + 'h', 4629, + 'k', 4552, + 'm', 4555, + 'n', 4644, + 'p', 4552, + 's', 4588, + 't', 4552, + 'u', 4644, + 'w', 4603, + '{', 3726, + 0xb5, 4644, ); if (lookahead == '\t' || lookahead == ' ') SKIP(277); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 267: ADVANCE_MAP( - '#', 5521, - '$', 3606, - '-', 3635, - '.', 3857, - 'E', 3278, - 'G', 3285, - 'K', 3285, - 'M', 3285, - 'P', 3285, - 'T', 3285, - 'd', 3291, - 'e', 3277, - 'g', 3284, - 'h', 3322, - 'k', 3284, - 'm', 3286, - 'n', 3326, - 'p', 3284, - 's', 3301, - 't', 3284, - 'u', 3326, - 'w', 3305, - 0xb5, 3326, + '#', 5548, + '$', 3620, + '-', 3649, + '.', 3871, + 'E', 3292, + 'G', 3299, + 'K', 3299, + 'M', 3299, + 'P', 3299, + 'T', 3299, + 'd', 3305, + 'e', 3291, + 'g', 3298, + 'h', 3336, + 'k', 3298, + 'm', 3300, + 'n', 3340, + 'p', 3298, + 's', 3315, + 't', 3298, + 'u', 3340, + 'w', 3319, + 0xb5, 3340, ); if (lookahead == '\t' || lookahead == ' ') SKIP(281); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4030); + lookahead == 'b') ADVANCE(4044); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4685); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3348); + lookahead == '^') ADVANCE(4708); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3362); END_STATE(); case 268: ADVANCE_MAP( - '#', 5521, - '$', 3606, - '-', 3635, - '.', 4102, - ':', 4098, - ';', 4101, - '=', 4309, - '?', 3772, + '#', 5548, + '$', 3620, + '-', 3649, + '.', 4120, + ':', 4116, + ';', 4119, + '=', 4327, + '?', 3782, '\t', 269, ' ', 269, ); if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(450); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3348); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3362); END_STATE(); case 269: ADVANCE_MAP( - '#', 5521, - '$', 3606, - '-', 3635, - '.', 4102, - ':', 4098, - ';', 4101, - '?', 3772, + '#', 5548, + '$', 3620, + '-', 3649, + '.', 4120, + ':', 4116, + ';', 4119, + '?', 3782, '\t', 269, ' ', 269, ); if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(450); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3348); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3362); END_STATE(); case 270: ADVANCE_MAP( - '#', 5521, - '$', 3606, - '-', 3635, - '.', 4507, - 'E', 4531, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'P', 4535, - 'T', 4535, - '_', 4538, - 'd', 4555, - 'e', 4530, - 'g', 4534, - 'h', 4608, - 'k', 4534, - 'm', 4537, - 'n', 4621, - 'p', 4534, - 's', 4567, - 't', 4534, - 'u', 4621, - 'w', 4582, - '{', 3712, - 0xb5, 4621, + '#', 5548, + '$', 3620, + '-', 3649, + '.', 4525, + 'E', 4549, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'P', 4553, + 'T', 4553, + '_', 4556, + 'd', 4573, + 'e', 4548, + 'g', 4552, + 'h', 4629, + 'k', 4552, + 'm', 4555, + 'n', 4644, + 'p', 4552, + 's', 4588, + 't', 4552, + 'u', 4644, + 'w', 4603, + '{', 3726, + 0xb5, 4644, ); if (lookahead == '\t' || lookahead == ' ') SKIP(277); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == 'b') ADVANCE(4038); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 271: ADVANCE_MAP( - '#', 5521, - '$', 3606, - '-', 3635, - '.', 4507, - 'E', 4531, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'P', 4535, - 'T', 4535, - 'd', 4555, - 'e', 4530, - 'g', 4534, - 'h', 4608, - 'k', 4534, - 'm', 4537, - 'n', 4621, - 'p', 4534, - 's', 4567, - 't', 4534, - 'u', 4621, - 'w', 4582, - '{', 3712, - 0xb5, 4621, + '#', 5548, + '$', 3620, + '-', 3649, + '.', 4525, + 'E', 4549, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'P', 4553, + 'T', 4553, + 'd', 4573, + 'e', 4548, + 'g', 4552, + 'h', 4629, + 'k', 4552, + 'm', 4555, + 'n', 4644, + 'p', 4552, + 's', 4588, + 't', 4552, + 'u', 4644, + 'w', 4603, + '{', 3726, + 0xb5, 4644, ); if (lookahead == '\t' || lookahead == ' ') SKIP(277); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 272: ADVANCE_MAP( - '#', 5521, - '$', 3606, - '-', 3635, - '.', 4507, - 'E', 4535, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'P', 4535, - 'T', 4535, - 'd', 4555, - 'e', 4534, - 'g', 4534, - 'h', 4608, - 'k', 4534, - 'm', 4537, - 'n', 4621, - 'p', 4534, - 's', 4567, - 't', 4534, - 'u', 4621, - 'w', 4582, - '{', 3712, - 0xb5, 4621, + '#', 5548, + '$', 3620, + '-', 3649, + '.', 4525, + 'E', 4553, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'P', 4553, + 'T', 4553, + 'd', 4573, + 'e', 4552, + 'g', 4552, + 'h', 4629, + 'k', 4552, + 'm', 4555, + 'n', 4644, + 'p', 4552, + 's', 4588, + 't', 4552, + 'u', 4644, + 'w', 4603, + '{', 3726, + 0xb5, 4644, ); if (lookahead == '\t' || lookahead == ' ') SKIP(277); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 273: ADVANCE_MAP( - '#', 5521, - '$', 3606, - '-', 3635, - '.', 4507, - 'E', 3285, - 'G', 3285, - 'K', 3285, - 'M', 3285, - 'P', 3285, - 'T', 3285, - 'd', 3291, - 'e', 3284, - 'g', 3284, - 'h', 3322, - 'k', 3284, - 'm', 3286, - 'n', 3326, - 'p', 3284, - 's', 3301, - 't', 3284, - 'u', 3326, - 'w', 3305, - 0xb5, 3326, + '#', 5548, + '$', 3620, + '-', 3649, + '.', 4525, + 'E', 3299, + 'G', 3299, + 'K', 3299, + 'M', 3299, + 'P', 3299, + 'T', 3299, + 'd', 3305, + 'e', 3298, + 'g', 3298, + 'h', 3336, + 'k', 3298, + 'm', 3300, + 'n', 3340, + 'p', 3298, + 's', 3315, + 't', 3298, + 'u', 3340, + 'w', 3319, + 0xb5, 3340, ); if (lookahead == '\t' || lookahead == ' ') SKIP(281); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4030); + lookahead == 'b') ADVANCE(4044); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4685); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3348); + lookahead == '^') ADVANCE(4708); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3362); END_STATE(); case 274: ADVANCE_MAP( - '#', 5521, - '$', 3606, - '-', 3635, - '.', 4507, - 'E', 3278, - 'G', 3285, - 'K', 3285, - 'M', 3285, - 'P', 3285, - 'T', 3285, - '_', 3289, - 'd', 3291, - 'e', 3277, - 'g', 3284, - 'h', 3322, - 'k', 3284, - 'm', 3286, - 'n', 3326, - 'p', 3284, - 's', 3301, - 't', 3284, - 'u', 3326, - 'w', 3305, - 0xb5, 3326, + '#', 5548, + '$', 3620, + '-', 3649, + '.', 4525, + 'E', 3292, + 'G', 3299, + 'K', 3299, + 'M', 3299, + 'P', 3299, + 'T', 3299, + '_', 3303, + 'd', 3305, + 'e', 3291, + 'g', 3298, + 'h', 3336, + 'k', 3298, + 'm', 3300, + 'n', 3340, + 'p', 3298, + 's', 3315, + 't', 3298, + 'u', 3340, + 'w', 3319, + 0xb5, 3340, ); if (lookahead == '\t' || lookahead == ' ') SKIP(281); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4030); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3901); + lookahead == 'b') ADVANCE(4044); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3915); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4685); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3348); + lookahead == '^') ADVANCE(4708); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3362); END_STATE(); case 275: ADVANCE_MAP( - '#', 5521, - '$', 3606, - '-', 3635, - '.', 4507, - 'E', 3278, - 'G', 3285, - 'K', 3285, - 'M', 3285, - 'P', 3285, - 'T', 3285, - 'd', 3291, - 'e', 3277, - 'g', 3284, - 'h', 3322, - 'k', 3284, - 'm', 3286, - 'n', 3326, - 'p', 3284, - 's', 3301, - 't', 3284, - 'u', 3326, - 'w', 3305, - 0xb5, 3326, + '#', 5548, + '$', 3620, + '-', 3649, + '.', 4525, + 'E', 3292, + 'G', 3299, + 'K', 3299, + 'M', 3299, + 'P', 3299, + 'T', 3299, + 'd', 3305, + 'e', 3291, + 'g', 3298, + 'h', 3336, + 'k', 3298, + 'm', 3300, + 'n', 3340, + 'p', 3298, + 's', 3315, + 't', 3298, + 'u', 3340, + 'w', 3319, + 0xb5, 3340, ); if (lookahead == '\t' || lookahead == ' ') SKIP(281); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4030); + lookahead == 'b') ADVANCE(4044); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4685); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3348); + lookahead == '^') ADVANCE(4708); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3362); END_STATE(); case 276: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '$') ADVANCE(3606); - if (lookahead == '-') ADVANCE(3635); - if (lookahead == '=') ADVANCE(4309); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '$') ADVANCE(3620); + if (lookahead == '-') ADVANCE(3649); + if (lookahead == '=') ADVANCE(4327); if (lookahead == '\t' || lookahead == ' ') SKIP(281); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3492); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3506); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '$' < lookahead) && (lookahead < '&' || '.' < lookahead) && (lookahead < '0' || '[' < lookahead) && - (lookahead < ']' || '}' < lookahead)) ADVANCE(3348); + (lookahead < ']' || '}' < lookahead)) ADVANCE(3362); END_STATE(); case 277: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '$') ADVANCE(3606); - if (lookahead == '-') ADVANCE(3635); - if (lookahead == '{') ADVANCE(3712); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '$') ADVANCE(3620); + if (lookahead == '-') ADVANCE(3649); + if (lookahead == '{') ADVANCE(3726); if (lookahead == '\t' || lookahead == ' ') SKIP(277); END_STATE(); case 278: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '$') ADVANCE(3606); - if (lookahead == '-') ADVANCE(3635); - if (lookahead == '{') ADVANCE(3712); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '$') ADVANCE(3620); + if (lookahead == '-') ADVANCE(3649); + if (lookahead == '{') ADVANCE(3726); if (lookahead == '\t' || lookahead == ' ') SKIP(277); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 279: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '$') ADVANCE(3606); - if (lookahead == '-') ADVANCE(3635); - if (lookahead == '{') ADVANCE(3712); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '$') ADVANCE(3620); + if (lookahead == '-') ADVANCE(3649); + if (lookahead == '{') ADVANCE(3726); if (lookahead == '\t' || lookahead == ' ') SKIP(279); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3348); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3362); END_STATE(); case 280: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '$') ADVANCE(3606); - if (lookahead == '-') ADVANCE(3635); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '$') ADVANCE(3620); + if (lookahead == '-') ADVANCE(3649); if (lookahead == '\t' || lookahead == ' ') SKIP(281); if (lookahead == '!' || @@ -23879,80 +23909,80 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('*' <= lookahead && lookahead <= '.') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4685); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3348); + lookahead == '^') ADVANCE(4708); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3362); END_STATE(); case 281: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '$') ADVANCE(3606); - if (lookahead == '-') ADVANCE(3635); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '$') ADVANCE(3620); + if (lookahead == '-') ADVANCE(3649); if (lookahead == '\t' || lookahead == ' ') SKIP(281); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3348); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3362); END_STATE(); case 282: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '$') ADVANCE(3606); - if (lookahead == '-') ADVANCE(3643); - if (lookahead == '=') ADVANCE(4309); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '$') ADVANCE(3620); + if (lookahead == '-') ADVANCE(3659); + if (lookahead == '=') ADVANCE(4327); if (lookahead == '\t' || lookahead == ' ') SKIP(281); if (lookahead == '!' || lookahead == '?' || - lookahead == '@') ADVANCE(4367); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4357); + lookahead == '@') ADVANCE(4385); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4375); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '.' < lookahead) && (lookahead < '0' || '[' < lookahead) && - (lookahead < ']' || '}' < lookahead)) ADVANCE(3348); + (lookahead < ']' || '}' < lookahead)) ADVANCE(3362); END_STATE(); case 283: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '$') ADVANCE(3606); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '$') ADVANCE(3620); if (lookahead == '.') ADVANCE(479); if (lookahead == '=') ADVANCE(455); - if (lookahead == 'i') ADVANCE(837); - if (lookahead == '|') ADVANCE(3566); + if (lookahead == 'i') ADVANCE(840); + if (lookahead == '|') ADVANCE(3580); if (lookahead == '\t' || lookahead == ' ') SKIP(283); if (lookahead == '+' || lookahead == '-') ADVANCE(438); END_STATE(); case 284: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '$') ADVANCE(3606); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '$') ADVANCE(3620); if (lookahead == '.') ADVANCE(479); if (lookahead == '=') ADVANCE(455); - if (lookahead == '|') ADVANCE(3566); + if (lookahead == '|') ADVANCE(3580); if (lookahead == '\t' || lookahead == ' ') SKIP(284); if (lookahead == '+' || lookahead == '-') ADVANCE(438); END_STATE(); case 285: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '$') ADVANCE(3606); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '$') ADVANCE(3620); if (lookahead == '.') ADVANCE(479); - if (lookahead == ']') ADVANCE(3602); + if (lookahead == ']') ADVANCE(3616); if (lookahead == '\t' || lookahead == ' ') SKIP(285); if (lookahead == '+' || lookahead == '-') ADVANCE(438); END_STATE(); case 286: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '$') ADVANCE(3606); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '$') ADVANCE(3620); if (lookahead == '.') ADVANCE(479); - if (lookahead == '{') ADVANCE(3712); + if (lookahead == '{') ADVANCE(3726); if (lookahead == '\t' || lookahead == ' ') SKIP(286); if (lookahead == '+' || lookahead == '-') ADVANCE(438); END_STATE(); case 287: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '$') ADVANCE(3606); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '$') ADVANCE(3620); if (lookahead == '.') ADVANCE(479); if (lookahead == '\t' || lookahead == ' ') SKIP(287); @@ -23961,37 +23991,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 288: ADVANCE_MAP( - '#', 5521, - '(', 3802, - '.', 3857, - 'E', 5067, - 'G', 5070, - 'K', 5070, - 'M', 5070, - 'P', 5070, - 'T', 5070, - ']', 3602, - 'd', 5086, - 'e', 5066, - 'g', 5069, - 'h', 5101, - 'k', 5069, - 'm', 5071, - 'n', 5107, - 'p', 5069, - 's', 5091, - 't', 5069, - 'u', 5107, - 'w', 5094, - '}', 3713, - 0xb5, 5107, - '\t', 4097, - ' ', 4097, - 'B', 4024, - 'b', 4024, + '#', 5548, + '(', 3816, + '.', 3871, + 'E', 5094, + 'G', 5097, + 'K', 5097, + 'M', 5097, + 'P', 5097, + 'T', 5097, + ']', 3616, + 'd', 5113, + 'e', 5093, + 'g', 5096, + 'h', 5128, + 'k', 5096, + 'm', 5098, + 'n', 5134, + 'p', 5096, + 's', 5118, + 't', 5096, + 'u', 5134, + 'w', 5121, + '}', 3727, + 0xb5, 5134, + '\t', 4111, + ' ', 4111, + 'B', 4038, + 'b', 4038, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4093); + lookahead == ',') ADVANCE(4107); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -23999,56 +24029,56 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5144); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5171); END_STATE(); case 289: ADVANCE_MAP( - '#', 5521, - '(', 3802, - '.', 3857, - 'E', 5300, - 'G', 5302, - 'K', 5302, - 'M', 5302, - 'P', 5302, - 'T', 5302, - 'd', 5315, - 'e', 5299, - 'g', 5301, - 'h', 5321, - 'k', 5301, - 'm', 5303, - 'n', 5322, - 'p', 5301, - 's', 5318, - 't', 5301, - 'u', 5322, - 'w', 5319, - '}', 3713, - 0xb5, 5322, - '\t', 4097, - ' ', 4097, - 'B', 4024, - 'b', 4024, + '#', 5548, + '(', 3816, + '.', 3871, + 'E', 5327, + 'G', 5329, + 'K', 5329, + 'M', 5329, + 'P', 5329, + 'T', 5329, + 'd', 5342, + 'e', 5326, + 'g', 5328, + 'h', 5348, + 'k', 5328, + 'm', 5330, + 'n', 5349, + 'p', 5328, + 's', 5345, + 't', 5328, + 'u', 5349, + 'w', 5346, + '}', 3727, + 0xb5, 5349, + '\t', 4111, + ' ', 4111, + 'B', 4038, + 'b', 4038, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4093); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); + lookahead == ',') ADVANCE(4107); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 290: ADVANCE_MAP( - '#', 5521, - '(', 3802, - '.', 3857, - ']', 3602, - '}', 3713, - '\t', 4097, - ' ', 4097, - 'E', 5080, - 'e', 5080, + '#', 5548, + '(', 3816, + '.', 3871, + ']', 3616, + '}', 3727, + '\t', 4111, + ' ', 4111, + 'E', 5108, + 'e', 5108, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4093); + lookahead == ',') ADVANCE(4107); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -24056,104 +24086,96 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5144); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5171); END_STATE(); case 291: ADVANCE_MAP( - '#', 5521, - '(', 3802, - '.', 3857, - '}', 3713, - '\t', 4097, - ' ', 4097, - 'E', 5312, - 'e', 5312, + '#', 5548, + '(', 3816, + '.', 3871, + '}', 3727, + '\t', 4111, + ' ', 4111, + 'E', 5339, + 'e', 5339, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4093); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); + lookahead == ',') ADVANCE(4107); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 292: ADVANCE_MAP( - '#', 5521, - '(', 3802, - '.', 3843, - ']', 3602, - '}', 3713, - '\t', 4097, - ' ', 4097, - 'E', 5312, - 'e', 5312, + '#', 5548, + '(', 3816, + '.', 3857, + ']', 3616, + '}', 3727, + '\t', 4111, + ' ', 4111, + 'E', 5108, + 'e', 5108, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4093); + lookahead == ',') ADVANCE(4107); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && (lookahead < '\'' || ')' < lookahead) && - lookahead != ':' && lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5328); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5171); END_STATE(); case 293: ADVANCE_MAP( - '#', 5521, - '(', 3802, - '.', 3843, - ']', 3602, - '\t', 4097, - ' ', 4097, - 'E', 5080, - 'e', 5080, + '#', 5548, + '(', 3816, + '.', 3857, + '}', 3727, + '\t', 4111, + ' ', 4111, + 'E', 5339, + 'e', 5339, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4093); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '#' && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '[' && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5144); + lookahead == ',') ADVANCE(4107); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 294: ADVANCE_MAP( - '#', 5521, - '(', 3802, - '.', 5054, - 'E', 5067, - 'G', 5070, - 'K', 5070, - 'M', 5070, - 'P', 5070, - 'T', 5070, - ']', 3602, - '_', 5072, - 'd', 5086, - 'e', 5066, - 'g', 5069, - 'h', 5101, - 'k', 5069, - 'm', 5071, - 'n', 5107, - 'p', 5069, - 's', 5091, - 't', 5069, - 'u', 5107, - 'w', 5094, - '}', 3713, - 0xb5, 5107, - '\t', 4097, - ' ', 4097, - 'B', 4024, - 'b', 4024, + '#', 5548, + '(', 3816, + '.', 5081, + 'E', 5094, + 'G', 5097, + 'K', 5097, + 'M', 5097, + 'P', 5097, + 'T', 5097, + ']', 3616, + '_', 5099, + 'd', 5113, + 'e', 5093, + 'g', 5096, + 'h', 5128, + 'k', 5096, + 'm', 5098, + 'n', 5134, + 'p', 5096, + 's', 5118, + 't', 5096, + 'u', 5134, + 'w', 5121, + '}', 3727, + 0xb5, 5134, + '\t', 4111, + ' ', 4111, + 'B', 4038, + 'b', 4038, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4093); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); + lookahead == ',') ADVANCE(4107); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -24162,41 +24184,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5144); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5171); END_STATE(); case 295: ADVANCE_MAP( - '#', 5521, - '(', 3802, - '.', 5054, - 'E', 5067, - 'G', 5070, - 'K', 5070, - 'M', 5070, - 'P', 5070, - 'T', 5070, - ']', 3602, - 'd', 5086, - 'e', 5066, - 'g', 5069, - 'h', 5101, - 'k', 5069, - 'm', 5071, - 'n', 5107, - 'p', 5069, - 's', 5091, - 't', 5069, - 'u', 5107, - 'w', 5094, - '}', 3713, - 0xb5, 5107, - '\t', 4097, - ' ', 4097, - 'B', 4024, - 'b', 4024, + '#', 5548, + '(', 3816, + '.', 5081, + 'E', 5094, + 'G', 5097, + 'K', 5097, + 'M', 5097, + 'P', 5097, + 'T', 5097, + ']', 3616, + 'd', 5113, + 'e', 5093, + 'g', 5096, + 'h', 5128, + 'k', 5096, + 'm', 5098, + 'n', 5134, + 'p', 5096, + 's', 5118, + 't', 5096, + 'u', 5134, + 'w', 5121, + '}', 3727, + 0xb5, 5134, + '\t', 4111, + ' ', 4111, + 'B', 4038, + 'b', 4038, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4093); + lookahead == ',') ADVANCE(4107); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -24204,41 +24226,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5144); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5171); END_STATE(); case 296: ADVANCE_MAP( - '#', 5521, - '(', 3802, - '.', 5054, - 'E', 5070, - 'G', 5070, - 'K', 5070, - 'M', 5070, - 'P', 5070, - 'T', 5070, - ']', 3602, - 'd', 5086, - 'e', 5069, - 'g', 5069, - 'h', 5101, - 'k', 5069, - 'm', 5071, - 'n', 5107, - 'p', 5069, - 's', 5091, - 't', 5069, - 'u', 5107, - 'w', 5094, - '}', 3713, - 0xb5, 5107, - '\t', 4097, - ' ', 4097, - 'B', 4024, - 'b', 4024, + '#', 5548, + '(', 3816, + '.', 5081, + 'E', 5097, + 'G', 5097, + 'K', 5097, + 'M', 5097, + 'P', 5097, + 'T', 5097, + ']', 3616, + 'd', 5113, + 'e', 5096, + 'g', 5096, + 'h', 5128, + 'k', 5096, + 'm', 5098, + 'n', 5134, + 'p', 5096, + 's', 5118, + 't', 5096, + 'u', 5134, + 'w', 5121, + '}', 3727, + 0xb5, 5134, + '\t', 4111, + ' ', 4111, + 'B', 4038, + 'b', 4038, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4093); + lookahead == ',') ADVANCE(4107); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -24246,24 +24268,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5144); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5171); END_STATE(); case 297: ADVANCE_MAP( - '#', 5521, - '(', 3802, - '.', 5054, - ']', 3602, - '_', 5072, - '}', 3713, - '\t', 4097, - ' ', 4097, - 'E', 5080, - 'e', 5080, + '#', 5548, + '(', 3816, + '.', 5081, + ']', 3616, + '_', 5099, + '}', 3727, + '\t', 4111, + ' ', 4111, + 'E', 5108, + 'e', 5108, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4093); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); + lookahead == ',') ADVANCE(4107); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -24272,22 +24294,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5144); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5171); END_STATE(); case 298: ADVANCE_MAP( - '#', 5521, - '(', 3802, - '.', 5054, - ']', 3602, - '}', 3713, - '\t', 4097, - ' ', 4097, - 'E', 5080, - 'e', 5080, + '#', 5548, + '(', 3816, + '.', 5081, + ']', 3616, + '}', 3727, + '\t', 4111, + ' ', 4111, + 'E', 5108, + 'e', 5108, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4093); + lookahead == ',') ADVANCE(4107); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -24295,18 +24317,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5144); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5171); END_STATE(); case 299: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '(') ADVANCE(3802); - if (lookahead == '.') ADVANCE(5054); - if (lookahead == ']') ADVANCE(3602); - if (lookahead == '}') ADVANCE(3713); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '(') ADVANCE(3816); + if (lookahead == '.') ADVANCE(5081); + if (lookahead == ']') ADVANCE(3616); + if (lookahead == '}') ADVANCE(3727); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4097); + lookahead == ' ') ADVANCE(4111); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4093); + lookahead == ',') ADVANCE(4107); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -24314,169 +24336,169 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5144); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5171); END_STATE(); case 300: ADVANCE_MAP( - '#', 5521, - '(', 3802, - '.', 5292, - 'E', 5300, - 'G', 5302, - 'K', 5302, - 'M', 5302, - 'P', 5302, - 'T', 5302, - '_', 5314, - 'd', 5315, - 'e', 5299, - 'g', 5301, - 'h', 5321, - 'k', 5301, - 'm', 5303, - 'n', 5322, - 'p', 5301, - 's', 5318, - 't', 5301, - 'u', 5322, - 'w', 5319, - '}', 3713, - 0xb5, 5322, - '\t', 4097, - ' ', 4097, - 'B', 4024, - 'b', 4024, + '#', 5548, + '(', 3816, + '.', 5319, + 'E', 5327, + 'G', 5329, + 'K', 5329, + 'M', 5329, + 'P', 5329, + 'T', 5329, + '_', 5341, + 'd', 5342, + 'e', 5326, + 'g', 5328, + 'h', 5348, + 'k', 5328, + 'm', 5330, + 'n', 5349, + 'p', 5328, + 's', 5345, + 't', 5328, + 'u', 5349, + 'w', 5346, + '}', 3727, + 0xb5, 5349, + '\t', 4111, + ' ', 4111, + 'B', 4038, + 'b', 4038, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4093); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); + lookahead == ',') ADVANCE(4107); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 301: ADVANCE_MAP( - '#', 5521, - '(', 3802, - '.', 5292, - 'E', 5300, - 'G', 5302, - 'K', 5302, - 'M', 5302, - 'P', 5302, - 'T', 5302, - 'd', 5315, - 'e', 5299, - 'g', 5301, - 'h', 5321, - 'k', 5301, - 'm', 5303, - 'n', 5322, - 'p', 5301, - 's', 5318, - 't', 5301, - 'u', 5322, - 'w', 5319, - '}', 3713, - 0xb5, 5322, - '\t', 4097, - ' ', 4097, - 'B', 4024, - 'b', 4024, + '#', 5548, + '(', 3816, + '.', 5319, + 'E', 5327, + 'G', 5329, + 'K', 5329, + 'M', 5329, + 'P', 5329, + 'T', 5329, + 'd', 5342, + 'e', 5326, + 'g', 5328, + 'h', 5348, + 'k', 5328, + 'm', 5330, + 'n', 5349, + 'p', 5328, + 's', 5345, + 't', 5328, + 'u', 5349, + 'w', 5346, + '}', 3727, + 0xb5, 5349, + '\t', 4111, + ' ', 4111, + 'B', 4038, + 'b', 4038, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4093); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); + lookahead == ',') ADVANCE(4107); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 302: ADVANCE_MAP( - '#', 5521, - '(', 3802, - '.', 5292, - 'E', 5302, - 'G', 5302, - 'K', 5302, - 'M', 5302, - 'P', 5302, - 'T', 5302, - 'd', 5315, - 'e', 5301, - 'g', 5301, - 'h', 5321, - 'k', 5301, - 'm', 5303, - 'n', 5322, - 'p', 5301, - 's', 5318, - 't', 5301, - 'u', 5322, - 'w', 5319, - '}', 3713, - 0xb5, 5322, - '\t', 4097, - ' ', 4097, - 'B', 4024, - 'b', 4024, + '#', 5548, + '(', 3816, + '.', 5319, + 'E', 5329, + 'G', 5329, + 'K', 5329, + 'M', 5329, + 'P', 5329, + 'T', 5329, + 'd', 5342, + 'e', 5328, + 'g', 5328, + 'h', 5348, + 'k', 5328, + 'm', 5330, + 'n', 5349, + 'p', 5328, + 's', 5345, + 't', 5328, + 'u', 5349, + 'w', 5346, + '}', 3727, + 0xb5, 5349, + '\t', 4111, + ' ', 4111, + 'B', 4038, + 'b', 4038, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4093); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); + lookahead == ',') ADVANCE(4107); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 303: ADVANCE_MAP( - '#', 5521, - '(', 3802, - '.', 5292, - '_', 5314, - '}', 3713, - '\t', 4097, - ' ', 4097, - 'E', 5312, - 'e', 5312, + '#', 5548, + '(', 3816, + '.', 5319, + '_', 5341, + '}', 3727, + '\t', 4111, + ' ', 4111, + 'E', 5339, + 'e', 5339, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4093); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); + lookahead == ',') ADVANCE(4107); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 304: ADVANCE_MAP( - '#', 5521, - '(', 3802, - '.', 5292, - '}', 3713, - '\t', 4097, - ' ', 4097, - 'E', 5312, - 'e', 5312, + '#', 5548, + '(', 3816, + '.', 5319, + '}', 3727, + '\t', 4111, + ' ', 4111, + 'E', 5339, + 'e', 5339, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4093); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); + lookahead == ',') ADVANCE(4107); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 305: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '(') ADVANCE(3802); - if (lookahead == '.') ADVANCE(5292); - if (lookahead == '}') ADVANCE(3713); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '(') ADVANCE(3816); + if (lookahead == '.') ADVANCE(5319); + if (lookahead == '}') ADVANCE(3727); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4097); + lookahead == ' ') ADVANCE(4111); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4093); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); + lookahead == ',') ADVANCE(4107); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 306: ADVANCE_MAP( - '#', 5521, - '(', 3802, - ']', 3602, - '_', 5072, - '\t', 4097, - ' ', 4097, - 'E', 5080, - 'e', 5080, + '#', 5548, + '(', 3816, + ']', 3616, + '_', 5099, + '\t', 4111, + ' ', 4111, + 'E', 5108, + 'e', 5108, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4093); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); + lookahead == ',') ADVANCE(4107); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -24485,18 +24507,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5144); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5171); END_STATE(); case 307: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '(') ADVANCE(3802); - if (lookahead == ']') ADVANCE(3602); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '(') ADVANCE(3816); + if (lookahead == ']') ADVANCE(3616); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4097); + lookahead == ' ') ADVANCE(4111); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(5080); + lookahead == 'e') ADVANCE(5108); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4093); + lookahead == ',') ADVANCE(4107); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -24504,16 +24526,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5144); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5171); END_STATE(); case 308: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '(') ADVANCE(3802); - if (lookahead == ']') ADVANCE(3602); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '(') ADVANCE(3816); + if (lookahead == ']') ADVANCE(3616); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4097); + lookahead == ' ') ADVANCE(4111); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4093); + lookahead == ',') ADVANCE(4107); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -24521,253 +24543,253 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5144); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5171); END_STATE(); case 309: ADVANCE_MAP( - '#', 5521, - '(', 3802, - '_', 5314, - '}', 3713, - '\t', 4097, - ' ', 4097, - 'E', 5312, - 'e', 5312, + '#', 5548, + '(', 3816, + '_', 5341, + '}', 3727, + '\t', 4111, + ' ', 4111, + 'E', 5339, + 'e', 5339, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4093); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); + lookahead == ',') ADVANCE(4107); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 310: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '(') ADVANCE(3802); - if (lookahead == '}') ADVANCE(3713); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '(') ADVANCE(3816); + if (lookahead == '}') ADVANCE(3727); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4097); + lookahead == ' ') ADVANCE(4111); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(5312); + lookahead == 'e') ADVANCE(5339); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4093); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); + lookahead == ',') ADVANCE(4107); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 311: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '(') ADVANCE(3802); - if (lookahead == '}') ADVANCE(3713); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '(') ADVANCE(3816); + if (lookahead == '}') ADVANCE(3727); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4097); + lookahead == ' ') ADVANCE(4111); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4093); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); + lookahead == ',') ADVANCE(4107); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 312: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == ',') ADVANCE(3605); - if (lookahead == ']') ADVANCE(3602); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == ',') ADVANCE(3619); + if (lookahead == ']') ADVANCE(3616); if (lookahead == '\t' || lookahead == ' ') SKIP(312); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4046); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4060); END_STATE(); case 313: ADVANCE_MAP( - '#', 5521, - ',', 4093, - '.', 4102, - ';', 4101, - '?', 3772, - ']', 3602, - '\t', 4095, - ' ', 4095, + '#', 5548, + ',', 4107, + '.', 4120, + ';', 4119, + '?', 3782, + ']', 3616, + '\t', 4109, + ' ', 4109, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4096); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4110); END_STATE(); case 314: ADVANCE_MAP( - '#', 5521, + '#', 5548, '-', 460, - ':', 4098, - '<', 3108, - '=', 1791, - '>', 3623, - '@', 3626, - 'h', 3304, - 'u', 3328, - '{', 3712, + ':', 4116, + '<', 3118, + '=', 1795, + '>', 3637, + '@', 3640, + 'h', 3318, + 'u', 3342, + '{', 3726, ); if (lookahead == '\t' || lookahead == ' ') SKIP(315); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3348); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3362); END_STATE(); case 315: ADVANCE_MAP( - '#', 5521, + '#', 5548, '-', 460, - ':', 4098, - '=', 1791, - '>', 3623, - 'h', 3304, - 'u', 3328, - '{', 3712, + ':', 4116, + '=', 1795, + '>', 3637, + 'h', 3318, + 'u', 3342, + '{', 3726, ); if (lookahead == '\t' || lookahead == ' ') SKIP(315); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3348); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3362); END_STATE(); case 316: ADVANCE_MAP( - '#', 5521, - '.', 3857, - '=', 4516, - 'E', 4531, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'P', 4535, - 'T', 4535, - 'd', 4555, - 'e', 4530, - 'g', 4534, - 'h', 4608, - 'i', 4574, - 'k', 4534, - 'm', 4537, - 'n', 4621, - 'p', 4534, - 's', 4567, - 't', 4534, - 'u', 4621, - 'w', 4582, - '|', 3566, - 0xb5, 4621, + '#', 5548, + '.', 3871, + '=', 4534, + 'E', 4549, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'P', 4553, + 'T', 4553, + 'd', 4573, + 'e', 4548, + 'g', 4552, + 'h', 4629, + 'i', 4595, + 'k', 4552, + 'm', 4555, + 'n', 4644, + 'p', 4552, + 's', 4588, + 't', 4552, + 'u', 4644, + 'w', 4603, + '|', 3580, + 0xb5, 4644, ); if (lookahead == '\t' || lookahead == ' ') SKIP(348); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 317: ADVANCE_MAP( - '#', 5521, - '.', 3857, - '=', 4516, - 'E', 4531, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'P', 4535, - 'T', 4535, - 'd', 4555, - 'e', 4530, - 'g', 4534, - 'h', 4608, - 'k', 4534, - 'm', 4537, - 'n', 4621, - 'p', 4534, - 's', 4567, - 't', 4534, - 'u', 4621, - 'w', 4582, - '|', 3566, - 0xb5, 4621, + '#', 5548, + '.', 3871, + '=', 4534, + 'E', 4549, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'P', 4553, + 'T', 4553, + 'd', 4573, + 'e', 4548, + 'g', 4552, + 'h', 4629, + 'k', 4552, + 'm', 4555, + 'n', 4644, + 'p', 4552, + 's', 4588, + 't', 4552, + 'u', 4644, + 'w', 4603, + '|', 3580, + 0xb5, 4644, ); if (lookahead == '\t' || lookahead == ' ') SKIP(349); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 318: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '.') ADVANCE(3857); - if (lookahead == '=') ADVANCE(4516); - if (lookahead == 'i') ADVANCE(4574); - if (lookahead == '|') ADVANCE(3566); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '.') ADVANCE(3871); + if (lookahead == '=') ADVANCE(4534); + if (lookahead == 'i') ADVANCE(4595); + if (lookahead == '|') ADVANCE(3580); if (lookahead == '\t' || lookahead == ' ') SKIP(348); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4550); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == 'e') ADVANCE(4567); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 319: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '.') ADVANCE(3857); - if (lookahead == '=') ADVANCE(4516); - if (lookahead == '|') ADVANCE(3566); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '.') ADVANCE(3871); + if (lookahead == '=') ADVANCE(4534); + if (lookahead == '|') ADVANCE(3580); if (lookahead == '\t' || lookahead == ' ') SKIP(349); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4550); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == 'e') ADVANCE(4567); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 320: ADVANCE_MAP( - '#', 5521, - '.', 3857, - 'E', 4531, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'P', 4535, - 'T', 4535, - 'd', 4555, - 'e', 4530, - 'g', 4534, - 'h', 4608, - 'k', 4534, - 'm', 4537, - 'n', 4621, - 'p', 4534, - 's', 4567, - 't', 4534, - 'u', 4621, - 'w', 4582, - '{', 3712, - 0xb5, 4621, + '#', 5548, + '.', 3871, + 'E', 4549, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'P', 4553, + 'T', 4553, + 'd', 4573, + 'e', 4548, + 'g', 4552, + 'h', 4629, + 'k', 4552, + 'm', 4555, + 'n', 4644, + 'p', 4552, + 's', 4588, + 't', 4552, + 'u', 4644, + 'w', 4603, + '{', 3726, + 0xb5, 4644, ); if (lookahead == '\t' || lookahead == ' ') SKIP(359); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 321: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '.') ADVANCE(3857); - if (lookahead == '{') ADVANCE(3712); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '.') ADVANCE(3871); + if (lookahead == '{') ADVANCE(3726); if (lookahead == '\t' || lookahead == ' ') SKIP(359); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4550); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == 'e') ADVANCE(4567); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 322: ADVANCE_MAP( - '#', 5521, - '.', 4108, - ':', 3599, - '<', 3108, - '>', 3623, - '?', 3772, - '@', 3626, - '[', 3601, - ']', 3602, - 'c', 3297, - 'e', 3323, - 'f', 3332, - 'i', 3311, - 'o', 3314, - 'v', 3292, - '}', 3713, - '\t', 4097, - ' ', 4097, + '#', 5548, + '.', 4126, + ':', 3613, + '<', 3118, + '>', 3637, + '?', 3782, + '@', 3640, + '[', 3615, + ']', 3616, + 'c', 3311, + 'e', 3337, + 'f', 3346, + 'i', 3325, + 'o', 3328, + 'v', 3306, + '}', 3727, + '\t', 4111, + ' ', 4111, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4093); + lookahead == ',') ADVANCE(4107); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '&' || '.' < lookahead) && @@ -24775,458 +24797,458 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '^' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3348); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3362); END_STATE(); case 323: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '.') ADVANCE(3867); - if (lookahead == '_') ADVANCE(4538); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '.') ADVANCE(3881); + if (lookahead == '_') ADVANCE(4556); if (lookahead == '\t' || lookahead == ' ') SKIP(346); if (lookahead == '+' || - lookahead == '-') ADVANCE(4508); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == '-') ADVANCE(4526); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 324: ADVANCE_MAP( - '#', 5521, - '.', 4507, - '=', 4516, - 'E', 4531, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'P', 4535, - 'T', 4535, - '_', 4538, - 'd', 4555, - 'e', 4530, - 'g', 4534, - 'h', 4608, - 'i', 4574, - 'k', 4534, - 'm', 4537, - 'n', 4621, - 'p', 4534, - 's', 4567, - 't', 4534, - 'u', 4621, - 'w', 4582, - '|', 3566, - 0xb5, 4621, + '#', 5548, + '.', 4525, + '=', 4534, + 'E', 4549, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'P', 4553, + 'T', 4553, + '_', 4556, + 'd', 4573, + 'e', 4548, + 'g', 4552, + 'h', 4629, + 'i', 4595, + 'k', 4552, + 'm', 4555, + 'n', 4644, + 'p', 4552, + 's', 4588, + 't', 4552, + 'u', 4644, + 'w', 4603, + '|', 3580, + 0xb5, 4644, ); if (lookahead == '\t' || lookahead == ' ') SKIP(348); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == 'b') ADVANCE(4038); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 325: ADVANCE_MAP( - '#', 5521, - '.', 4507, - '=', 4516, - 'E', 4531, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'P', 4535, - 'T', 4535, - '_', 4538, - 'd', 4555, - 'e', 4530, - 'g', 4534, - 'h', 4608, - 'k', 4534, - 'm', 4537, - 'n', 4621, - 'p', 4534, - 's', 4567, - 't', 4534, - 'u', 4621, - 'w', 4582, - '|', 3566, - 0xb5, 4621, + '#', 5548, + '.', 4525, + '=', 4534, + 'E', 4549, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'P', 4553, + 'T', 4553, + '_', 4556, + 'd', 4573, + 'e', 4548, + 'g', 4552, + 'h', 4629, + 'k', 4552, + 'm', 4555, + 'n', 4644, + 'p', 4552, + 's', 4588, + 't', 4552, + 'u', 4644, + 'w', 4603, + '|', 3580, + 0xb5, 4644, ); if (lookahead == '\t' || lookahead == ' ') SKIP(349); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == 'b') ADVANCE(4038); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 326: ADVANCE_MAP( - '#', 5521, - '.', 4507, - '=', 4516, - 'E', 4531, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'P', 4535, - 'T', 4535, - 'd', 4555, - 'e', 4530, - 'g', 4534, - 'h', 4608, - 'i', 4574, - 'k', 4534, - 'm', 4537, - 'n', 4621, - 'p', 4534, - 's', 4567, - 't', 4534, - 'u', 4621, - 'w', 4582, - '|', 3566, - 0xb5, 4621, + '#', 5548, + '.', 4525, + '=', 4534, + 'E', 4549, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'P', 4553, + 'T', 4553, + 'd', 4573, + 'e', 4548, + 'g', 4552, + 'h', 4629, + 'i', 4595, + 'k', 4552, + 'm', 4555, + 'n', 4644, + 'p', 4552, + 's', 4588, + 't', 4552, + 'u', 4644, + 'w', 4603, + '|', 3580, + 0xb5, 4644, ); if (lookahead == '\t' || lookahead == ' ') SKIP(348); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 327: ADVANCE_MAP( - '#', 5521, - '.', 4507, - '=', 4516, - 'E', 4531, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'P', 4535, - 'T', 4535, - 'd', 4555, - 'e', 4530, - 'g', 4534, - 'h', 4608, - 'k', 4534, - 'm', 4537, - 'n', 4621, - 'p', 4534, - 's', 4567, - 't', 4534, - 'u', 4621, - 'w', 4582, - '|', 3566, - 0xb5, 4621, + '#', 5548, + '.', 4525, + '=', 4534, + 'E', 4549, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'P', 4553, + 'T', 4553, + 'd', 4573, + 'e', 4548, + 'g', 4552, + 'h', 4629, + 'k', 4552, + 'm', 4555, + 'n', 4644, + 'p', 4552, + 's', 4588, + 't', 4552, + 'u', 4644, + 'w', 4603, + '|', 3580, + 0xb5, 4644, ); if (lookahead == '\t' || lookahead == ' ') SKIP(349); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 328: ADVANCE_MAP( - '#', 5521, - '.', 4507, - '=', 4516, - 'E', 4535, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'P', 4535, - 'T', 4535, - 'd', 4555, - 'e', 4534, - 'g', 4534, - 'h', 4608, - 'i', 4574, - 'k', 4534, - 'm', 4537, - 'n', 4621, - 'p', 4534, - 's', 4567, - 't', 4534, - 'u', 4621, - 'w', 4582, - '|', 3566, - 0xb5, 4621, + '#', 5548, + '.', 4525, + '=', 4534, + 'E', 4553, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'P', 4553, + 'T', 4553, + 'd', 4573, + 'e', 4552, + 'g', 4552, + 'h', 4629, + 'i', 4595, + 'k', 4552, + 'm', 4555, + 'n', 4644, + 'p', 4552, + 's', 4588, + 't', 4552, + 'u', 4644, + 'w', 4603, + '|', 3580, + 0xb5, 4644, ); if (lookahead == '\t' || lookahead == ' ') SKIP(348); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 329: ADVANCE_MAP( - '#', 5521, - '.', 4507, - '=', 4516, - 'E', 4535, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'P', 4535, - 'T', 4535, - 'd', 4555, - 'e', 4534, - 'g', 4534, - 'h', 4608, - 'k', 4534, - 'm', 4537, - 'n', 4621, - 'p', 4534, - 's', 4567, - 't', 4534, - 'u', 4621, - 'w', 4582, - '|', 3566, - 0xb5, 4621, + '#', 5548, + '.', 4525, + '=', 4534, + 'E', 4553, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'P', 4553, + 'T', 4553, + 'd', 4573, + 'e', 4552, + 'g', 4552, + 'h', 4629, + 'k', 4552, + 'm', 4555, + 'n', 4644, + 'p', 4552, + 's', 4588, + 't', 4552, + 'u', 4644, + 'w', 4603, + '|', 3580, + 0xb5, 4644, ); if (lookahead == '\t' || lookahead == ' ') SKIP(349); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 330: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '.') ADVANCE(4507); - if (lookahead == '=') ADVANCE(4516); - if (lookahead == '_') ADVANCE(4538); - if (lookahead == 'i') ADVANCE(4574); - if (lookahead == '|') ADVANCE(3566); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '.') ADVANCE(4525); + if (lookahead == '=') ADVANCE(4534); + if (lookahead == '_') ADVANCE(4556); + if (lookahead == 'i') ADVANCE(4595); + if (lookahead == '|') ADVANCE(3580); if (lookahead == '\t' || lookahead == ' ') SKIP(348); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4550); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == 'e') ADVANCE(4567); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 331: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '.') ADVANCE(4507); - if (lookahead == '=') ADVANCE(4516); - if (lookahead == '_') ADVANCE(4538); - if (lookahead == '|') ADVANCE(3566); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '.') ADVANCE(4525); + if (lookahead == '=') ADVANCE(4534); + if (lookahead == '_') ADVANCE(4556); + if (lookahead == '|') ADVANCE(3580); if (lookahead == '\t' || lookahead == ' ') SKIP(349); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4550); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == 'e') ADVANCE(4567); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 332: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '.') ADVANCE(4507); - if (lookahead == '=') ADVANCE(4516); - if (lookahead == 'i') ADVANCE(4574); - if (lookahead == '|') ADVANCE(3566); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '.') ADVANCE(4525); + if (lookahead == '=') ADVANCE(4534); + if (lookahead == 'i') ADVANCE(4595); + if (lookahead == '|') ADVANCE(3580); if (lookahead == '\t' || lookahead == ' ') SKIP(348); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4550); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == 'e') ADVANCE(4567); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 333: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '.') ADVANCE(4507); - if (lookahead == '=') ADVANCE(4516); - if (lookahead == 'i') ADVANCE(4574); - if (lookahead == '|') ADVANCE(3566); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '.') ADVANCE(4525); + if (lookahead == '=') ADVANCE(4534); + if (lookahead == 'i') ADVANCE(4595); + if (lookahead == '|') ADVANCE(3580); if (lookahead == '\t' || lookahead == ' ') SKIP(348); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 334: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '.') ADVANCE(4507); - if (lookahead == '=') ADVANCE(4516); - if (lookahead == '|') ADVANCE(3566); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '.') ADVANCE(4525); + if (lookahead == '=') ADVANCE(4534); + if (lookahead == '|') ADVANCE(3580); if (lookahead == '\t' || lookahead == ' ') SKIP(349); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4550); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == 'e') ADVANCE(4567); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 335: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '.') ADVANCE(4507); - if (lookahead == '=') ADVANCE(4516); - if (lookahead == '|') ADVANCE(3566); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '.') ADVANCE(4525); + if (lookahead == '=') ADVANCE(4534); + if (lookahead == '|') ADVANCE(3580); if (lookahead == '\t' || lookahead == ' ') SKIP(349); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 336: ADVANCE_MAP( - '#', 5521, - '.', 4507, - 'E', 4531, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'P', 4535, - 'T', 4535, - '_', 4538, - 'd', 4555, - 'e', 4530, - 'g', 4534, - 'h', 4608, - 'k', 4534, - 'm', 4537, - 'n', 4621, - 'p', 4534, - 's', 4567, - 't', 4534, - 'u', 4621, - 'w', 4582, - '{', 3712, - 0xb5, 4621, + '#', 5548, + '.', 4525, + 'E', 4549, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'P', 4553, + 'T', 4553, + '_', 4556, + 'd', 4573, + 'e', 4548, + 'g', 4552, + 'h', 4629, + 'k', 4552, + 'm', 4555, + 'n', 4644, + 'p', 4552, + 's', 4588, + 't', 4552, + 'u', 4644, + 'w', 4603, + '{', 3726, + 0xb5, 4644, ); if (lookahead == '\t' || lookahead == ' ') SKIP(359); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == 'b') ADVANCE(4038); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 337: ADVANCE_MAP( - '#', 5521, - '.', 4507, - 'E', 4531, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'P', 4535, - 'T', 4535, - 'd', 4555, - 'e', 4530, - 'g', 4534, - 'h', 4608, - 'k', 4534, - 'm', 4537, - 'n', 4621, - 'p', 4534, - 's', 4567, - 't', 4534, - 'u', 4621, - 'w', 4582, - '{', 3712, - 0xb5, 4621, + '#', 5548, + '.', 4525, + 'E', 4549, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'P', 4553, + 'T', 4553, + 'd', 4573, + 'e', 4548, + 'g', 4552, + 'h', 4629, + 'k', 4552, + 'm', 4555, + 'n', 4644, + 'p', 4552, + 's', 4588, + 't', 4552, + 'u', 4644, + 'w', 4603, + '{', 3726, + 0xb5, 4644, ); if (lookahead == '\t' || lookahead == ' ') SKIP(359); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 338: ADVANCE_MAP( - '#', 5521, - '.', 4507, - 'E', 4535, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'P', 4535, - 'T', 4535, - 'd', 4555, - 'e', 4534, - 'g', 4534, - 'h', 4608, - 'k', 4534, - 'm', 4537, - 'n', 4621, - 'p', 4534, - 's', 4567, - 't', 4534, - 'u', 4621, - 'w', 4582, - '{', 3712, - 0xb5, 4621, + '#', 5548, + '.', 4525, + 'E', 4553, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'P', 4553, + 'T', 4553, + 'd', 4573, + 'e', 4552, + 'g', 4552, + 'h', 4629, + 'k', 4552, + 'm', 4555, + 'n', 4644, + 'p', 4552, + 's', 4588, + 't', 4552, + 'u', 4644, + 'w', 4603, + '{', 3726, + 0xb5, 4644, ); if (lookahead == '\t' || lookahead == ' ') SKIP(359); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 339: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '.') ADVANCE(4507); - if (lookahead == '_') ADVANCE(4538); - if (lookahead == '{') ADVANCE(3712); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '.') ADVANCE(4525); + if (lookahead == '_') ADVANCE(4556); + if (lookahead == '{') ADVANCE(3726); if (lookahead == '\t' || lookahead == ' ') SKIP(359); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4550); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == 'e') ADVANCE(4567); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 340: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '.') ADVANCE(4507); - if (lookahead == '{') ADVANCE(3712); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '.') ADVANCE(4525); + if (lookahead == '{') ADVANCE(3726); if (lookahead == '\t' || lookahead == ' ') SKIP(359); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4550); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == 'e') ADVANCE(4567); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 341: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '.') ADVANCE(4507); - if (lookahead == '{') ADVANCE(3712); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '.') ADVANCE(4525); + if (lookahead == '{') ADVANCE(3726); if (lookahead == '\t' || lookahead == ' ') SKIP(359); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 342: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '.') ADVANCE(3843); - if (lookahead == '=') ADVANCE(4516); - if (lookahead == 'i') ADVANCE(4574); - if (lookahead == '|') ADVANCE(3566); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '.') ADVANCE(3857); + if (lookahead == '=') ADVANCE(4534); + if (lookahead == 'i') ADVANCE(4595); + if (lookahead == '|') ADVANCE(3580); if (lookahead == '\t' || lookahead == ' ') SKIP(348); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4550); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == 'e') ADVANCE(4567); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 343: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '.') ADVANCE(3843); - if (lookahead == '=') ADVANCE(4516); - if (lookahead == '|') ADVANCE(3566); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '.') ADVANCE(3857); + if (lookahead == '=') ADVANCE(4534); + if (lookahead == '|') ADVANCE(3580); if (lookahead == '\t' || lookahead == ' ') SKIP(349); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4550); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == 'e') ADVANCE(4567); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 344: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '.') ADVANCE(3843); - if (lookahead == '{') ADVANCE(3712); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '.') ADVANCE(3857); + if (lookahead == '{') ADVANCE(3726); if (lookahead == '\t' || lookahead == ' ') SKIP(359); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4550); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == 'e') ADVANCE(4567); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 345: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '.') ADVANCE(4540); - if (lookahead == '_') ADVANCE(4538); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '.') ADVANCE(4558); + if (lookahead == '_') ADVANCE(4556); if (lookahead == '\t' || lookahead == ' ') SKIP(346); if (lookahead == '+' || - lookahead == '-') ADVANCE(4508); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == '-') ADVANCE(4526); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 346: - if (lookahead == '#') ADVANCE(5521); + if (lookahead == '#') ADVANCE(5548); if (lookahead == '.') ADVANCE(479); if (lookahead == '\t' || lookahead == ' ') SKIP(346); @@ -25234,188 +25256,188 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '-') ADVANCE(438); END_STATE(); case 347: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == ':') ADVANCE(4098); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == ':') ADVANCE(4116); if (lookahead == '\t' || lookahead == ' ') SKIP(347); END_STATE(); case 348: - if (lookahead == '#') ADVANCE(5521); + if (lookahead == '#') ADVANCE(5548); if (lookahead == '=') ADVANCE(455); - if (lookahead == 'i') ADVANCE(837); - if (lookahead == '|') ADVANCE(3566); + if (lookahead == 'i') ADVANCE(840); + if (lookahead == '|') ADVANCE(3580); if (lookahead == '\t' || lookahead == ' ') SKIP(348); END_STATE(); case 349: - if (lookahead == '#') ADVANCE(5521); + if (lookahead == '#') ADVANCE(5548); if (lookahead == '=') ADVANCE(455); - if (lookahead == '|') ADVANCE(3566); + if (lookahead == '|') ADVANCE(3580); if (lookahead == '\t' || lookahead == ' ') SKIP(349); END_STATE(); case 350: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '=') ADVANCE(4309); - if (lookahead == '{') ADVANCE(3712); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '=') ADVANCE(4327); + if (lookahead == '{') ADVANCE(3726); if (lookahead == '\t' || lookahead == ' ') SKIP(359); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 351: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '=') ADVANCE(4516); - if (lookahead == '_') ADVANCE(4538); - if (lookahead == 'i') ADVANCE(4574); - if (lookahead == '|') ADVANCE(3566); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '=') ADVANCE(4534); + if (lookahead == '_') ADVANCE(4556); + if (lookahead == 'i') ADVANCE(4595); + if (lookahead == '|') ADVANCE(3580); if (lookahead == '\t' || lookahead == ' ') SKIP(348); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4550); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == 'e') ADVANCE(4567); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 352: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '=') ADVANCE(4516); - if (lookahead == '_') ADVANCE(4538); - if (lookahead == '|') ADVANCE(3566); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '=') ADVANCE(4534); + if (lookahead == '_') ADVANCE(4556); + if (lookahead == '|') ADVANCE(3580); if (lookahead == '\t' || lookahead == ' ') SKIP(349); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4550); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == 'e') ADVANCE(4567); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 353: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '=') ADVANCE(4516); - if (lookahead == 'i') ADVANCE(4574); - if (lookahead == '|') ADVANCE(3566); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '=') ADVANCE(4534); + if (lookahead == 'i') ADVANCE(4595); + if (lookahead == '|') ADVANCE(3580); if (lookahead == '\t' || lookahead == ' ') SKIP(348); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4550); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == 'e') ADVANCE(4567); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 354: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '=') ADVANCE(4516); - if (lookahead == 'i') ADVANCE(4574); - if (lookahead == '|') ADVANCE(3566); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '=') ADVANCE(4534); + if (lookahead == 'i') ADVANCE(4595); + if (lookahead == '|') ADVANCE(3580); if (lookahead == '\t' || lookahead == ' ') SKIP(348); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 355: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '=') ADVANCE(4516); - if (lookahead == '|') ADVANCE(3566); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '=') ADVANCE(4534); + if (lookahead == '|') ADVANCE(3580); if (lookahead == '\t' || lookahead == ' ') SKIP(349); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4550); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == 'e') ADVANCE(4567); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 356: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '=') ADVANCE(4516); - if (lookahead == '|') ADVANCE(3566); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '=') ADVANCE(4534); + if (lookahead == '|') ADVANCE(3580); if (lookahead == '\t' || lookahead == ' ') SKIP(349); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 357: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '_') ADVANCE(4538); - if (lookahead == '{') ADVANCE(3712); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '_') ADVANCE(4556); + if (lookahead == '{') ADVANCE(3726); if (lookahead == '\t' || lookahead == ' ') SKIP(359); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4550); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == 'e') ADVANCE(4567); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 358: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == 'i') ADVANCE(3313); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == 'i') ADVANCE(3327); if (lookahead == '\t' || lookahead == ' ') SKIP(358); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3348); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3362); END_STATE(); case 359: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '{') ADVANCE(3712); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '{') ADVANCE(3726); if (lookahead == '\t' || lookahead == ' ') SKIP(359); END_STATE(); case 360: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '{') ADVANCE(3712); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '{') ADVANCE(3726); if (lookahead == '\t' || lookahead == ' ') SKIP(359); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4550); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == 'e') ADVANCE(4567); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 361: - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '{') ADVANCE(3712); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '{') ADVANCE(3726); if (lookahead == '\t' || lookahead == ' ') SKIP(359); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 362: - if (lookahead == '#') ADVANCE(5521); + if (lookahead == '#') ADVANCE(5548); if (lookahead == '\t' || lookahead == ' ') SKIP(362); END_STATE(); case 363: - if (lookahead == '#') ADVANCE(5521); + if (lookahead == '#') ADVANCE(5548); if (lookahead == '\t' || lookahead == ' ') SKIP(362); - if (set_contains(sym_param_short_flag_identifier_character_set_1, 724, lookahead)) ADVANCE(3658); + if (set_contains(sym_param_short_flag_identifier_character_set_1, 724, lookahead)) ADVANCE(3672); END_STATE(); case 364: - if (lookahead == '#') ADVANCE(5521); + if (lookahead == '#') ADVANCE(5548); if (lookahead == '\t' || lookahead == ' ') SKIP(362); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(4118); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(4136); END_STATE(); case 365: - if (lookahead == '#') ADVANCE(5521); + if (lookahead == '#') ADVANCE(5548); if (lookahead == '\t' || lookahead == ' ') SKIP(362); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 366: - if (lookahead == '#') ADVANCE(5521); + if (lookahead == '#') ADVANCE(5548); if (lookahead == '\t' || lookahead == ' ') SKIP(362); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 367: - if (lookahead == '#') ADVANCE(5524); - if (lookahead == '(') ADVANCE(3802); - if (lookahead == '}') ADVANCE(3713); + if (lookahead == '#') ADVANCE(5551); + if (lookahead == '(') ADVANCE(3816); + if (lookahead == '}') ADVANCE(3727); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4097); + lookahead == ' ') ADVANCE(4111); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4093); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5514); + lookahead == ',') ADVANCE(4107); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5541); END_STATE(); case 368: - if (lookahead == '#') ADVANCE(5524); - if (lookahead == '(') ADVANCE(3802); + if (lookahead == '#') ADVANCE(5551); + if (lookahead == '(') ADVANCE(3816); if (lookahead == '\t' || lookahead == ' ') SKIP(362); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5514); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5541); END_STATE(); case 369: - if (lookahead == '#') ADVANCE(5527); - if (lookahead == '$') ADVANCE(3612); - if (lookahead == '-') ADVANCE(3645); - if (lookahead == '{') ADVANCE(3712); + if (lookahead == '#') ADVANCE(5554); + if (lookahead == '$') ADVANCE(3626); + if (lookahead == '-') ADVANCE(3657); + if (lookahead == '{') ADVANCE(3726); if (lookahead == '\t' || lookahead == ' ') SKIP(279); if (lookahead == '!' || @@ -25423,42 +25445,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('*' <= lookahead && lookahead <= '.') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4958); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4942); + lookahead == '^') ADVANCE(4985); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4969); END_STATE(); case 370: - if (lookahead == '#') ADVANCE(5527); - if (lookahead == '(') ADVANCE(3802); - if (lookahead == '{') ADVANCE(3712); + if (lookahead == '#') ADVANCE(5554); + if (lookahead == '(') ADVANCE(3816); + if (lookahead == '{') ADVANCE(3726); if (lookahead == '\t' || lookahead == ' ') SKIP(359); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 371: - if (lookahead == '#') ADVANCE(5527); - if (lookahead == '=') ADVANCE(4738); - if (lookahead == 'i') ADVANCE(4793); - if (lookahead == '|') ADVANCE(3566); + if (lookahead == '#') ADVANCE(5554); + if (lookahead == '=') ADVANCE(4761); + if (lookahead == 'i') ADVANCE(4818); + if (lookahead == '|') ADVANCE(3580); if (lookahead == '\t' || lookahead == ' ') SKIP(348); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 372: - if (lookahead == '#') ADVANCE(5527); - if (lookahead == '=') ADVANCE(4738); - if (lookahead == '|') ADVANCE(3566); + if (lookahead == '#') ADVANCE(5554); + if (lookahead == '=') ADVANCE(4761); + if (lookahead == '|') ADVANCE(3580); if (lookahead == '\t' || lookahead == ' ') SKIP(349); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 373: - if (lookahead == '#') ADVANCE(5526); - if (lookahead == '(') ADVANCE(3802); - if (lookahead == ']') ADVANCE(3602); + if (lookahead == '#') ADVANCE(5553); + if (lookahead == '(') ADVANCE(3816); + if (lookahead == ']') ADVANCE(3616); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4097); + lookahead == ' ') ADVANCE(4111); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4093); + lookahead == ',') ADVANCE(4107); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -25466,276 +25488,276 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5229); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5256); END_STATE(); case 374: - if (lookahead == '#') ADVANCE(5526); - if (lookahead == '(') ADVANCE(3802); + if (lookahead == '#') ADVANCE(5553); + if (lookahead == '(') ADVANCE(3816); if (lookahead == '\t' || lookahead == ' ') SKIP(362); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 375: - if (lookahead == '#') ADVANCE(4084); - if (lookahead == '\'') ADVANCE(4086); - if (lookahead == '(') ADVANCE(3603); + if (lookahead == '#') ADVANCE(4098); + if (lookahead == '\'') ADVANCE(4100); + if (lookahead == '(') ADVANCE(3617); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4083); - if (lookahead != 0) ADVANCE(4084); + lookahead == ' ') ADVANCE(4097); + if (lookahead != 0) ADVANCE(4098); END_STATE(); case 376: - if (lookahead == '\'') ADVANCE(4078); + if (lookahead == '\'') ADVANCE(4092); if (lookahead != 0) ADVANCE(376); END_STATE(); case 377: ADVANCE_MAP( '+', 476, '-', 478, - '>', 4256, - 'I', 1584, + '>', 4274, + 'I', 1588, '_', 478, - 'i', 1584, - 'n', 710, - 'r', 1292, - 'B', 4024, - 'b', 4024, + 'i', 1588, + 'n', 713, + 'r', 1294, + 'B', 4038, + 'b', 4038, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); END_STATE(); case 378: if (lookahead == '+') ADVANCE(476); if (lookahead == '-') ADVANCE(478); - if (lookahead == '>') ADVANCE(4256); + if (lookahead == '>') ADVANCE(4274); if (lookahead == '_') ADVANCE(478); - if (lookahead == 'l') ADVANCE(1391); - if (lookahead == 'n') ADVANCE(710); - if (lookahead == 'r') ADVANCE(1292); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if (lookahead == 'l') ADVANCE(1395); + if (lookahead == 'n') ADVANCE(713); + if (lookahead == 'r') ADVANCE(1294); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); END_STATE(); case 379: - if (lookahead == '+') ADVANCE(1177); - if (lookahead == '>') ADVANCE(4256); - if (lookahead == 'l') ADVANCE(1391); - if (lookahead == 'n') ADVANCE(710); - if (lookahead == 'r') ADVANCE(1292); + if (lookahead == '+') ADVANCE(1180); + if (lookahead == '>') ADVANCE(4274); + if (lookahead == 'l') ADVANCE(1395); + if (lookahead == 'n') ADVANCE(713); + if (lookahead == 'r') ADVANCE(1294); END_STATE(); case 380: - if (lookahead == '+') ADVANCE(1177); - if (lookahead == '>') ADVANCE(4256); - if (lookahead == 'n') ADVANCE(710); - if (lookahead == 'r') ADVANCE(1292); + if (lookahead == '+') ADVANCE(1180); + if (lookahead == '>') ADVANCE(4274); + if (lookahead == 'n') ADVANCE(713); + if (lookahead == 'r') ADVANCE(1294); END_STATE(); case 381: - if (lookahead == '+') ADVANCE(1212); - if (lookahead == '>') ADVANCE(4246); + if (lookahead == '+') ADVANCE(1215); + if (lookahead == '>') ADVANCE(4264); END_STATE(); case 382: - if (lookahead == '+') ADVANCE(1186); - if (lookahead == '>') ADVANCE(1573); - if (lookahead == 'l') ADVANCE(1391); - if (lookahead == 'r') ADVANCE(1301); - if (lookahead == 'x') ADVANCE(1463); + if (lookahead == '+') ADVANCE(1189); + if (lookahead == '>') ADVANCE(1577); + if (lookahead == 'l') ADVANCE(1395); + if (lookahead == 'r') ADVANCE(1303); + if (lookahead == 'x') ADVANCE(1467); END_STATE(); case 383: - if (lookahead == '+') ADVANCE(1186); - if (lookahead == '>') ADVANCE(1573); - if (lookahead == 'n') ADVANCE(710); - if (lookahead == 'r') ADVANCE(1301); + if (lookahead == '+') ADVANCE(1189); + if (lookahead == '>') ADVANCE(1577); + if (lookahead == 'n') ADVANCE(713); + if (lookahead == 'r') ADVANCE(1303); END_STATE(); case 384: - if (lookahead == '+') ADVANCE(1186); - if (lookahead == '>') ADVANCE(1573); - if (lookahead == 'r') ADVANCE(1301); + if (lookahead == '+') ADVANCE(1189); + if (lookahead == '>') ADVANCE(1577); + if (lookahead == 'r') ADVANCE(1303); END_STATE(); case 385: - if (lookahead == '+') ADVANCE(739); - if (lookahead == '>') ADVANCE(4261); - if (lookahead == 'r') ADVANCE(3778); - if (lookahead == 'u') ADVANCE(1416); + if (lookahead == '+') ADVANCE(742); + if (lookahead == '>') ADVANCE(4279); + if (lookahead == 'r') ADVANCE(3788); + if (lookahead == 'u') ADVANCE(1420); END_STATE(); case 386: - if (lookahead == '+') ADVANCE(804); - if (lookahead == '>') ADVANCE(4251); + if (lookahead == '+') ADVANCE(807); + if (lookahead == '>') ADVANCE(4269); END_STATE(); case 387: - if (lookahead == '+') ADVANCE(760); - if (lookahead == '>') ADVANCE(1574); - if (lookahead == 'r') ADVANCE(3778); - if (lookahead == 'u') ADVANCE(1422); + if (lookahead == '+') ADVANCE(763); + if (lookahead == '>') ADVANCE(1578); + if (lookahead == 'r') ADVANCE(3788); + if (lookahead == 'u') ADVANCE(1426); END_STATE(); case 388: - if (lookahead == '+') ADVANCE(760); - if (lookahead == '>') ADVANCE(1574); - if (lookahead == 'u') ADVANCE(1422); + if (lookahead == '+') ADVANCE(763); + if (lookahead == '>') ADVANCE(1578); + if (lookahead == 'u') ADVANCE(1426); END_STATE(); case 389: - if (lookahead == '+') ADVANCE(1231); - if (lookahead == '>') ADVANCE(1576); + if (lookahead == '+') ADVANCE(1234); + if (lookahead == '>') ADVANCE(1580); END_STATE(); case 390: - if (lookahead == '+') ADVANCE(818); - if (lookahead == '>') ADVANCE(1578); + if (lookahead == '+') ADVANCE(821); + if (lookahead == '>') ADVANCE(1582); END_STATE(); case 391: - if (lookahead == '-') ADVANCE(1250); + if (lookahead == '-') ADVANCE(1253); END_STATE(); case 392: - if (lookahead == '-') ADVANCE(694); + if (lookahead == '-') ADVANCE(697); END_STATE(); case 393: - if (lookahead == '-') ADVANCE(850); + if (lookahead == '-') ADVANCE(853); END_STATE(); case 394: - if (lookahead == '-') ADVANCE(1071); + if (lookahead == '-') ADVANCE(1074); END_STATE(); case 395: - if (lookahead == '-') ADVANCE(981); - if (lookahead == 'f') ADVANCE(1450); + if (lookahead == '-') ADVANCE(984); + if (lookahead == 'f') ADVANCE(1454); END_STATE(); case 396: - if (lookahead == '-') ADVANCE(684); + if (lookahead == '-') ADVANCE(687); END_STATE(); case 397: - if (lookahead == '-') ADVANCE(858); + if (lookahead == '-') ADVANCE(861); END_STATE(); case 398: - if (lookahead == '-') ADVANCE(3630); + if (lookahead == '-') ADVANCE(3644); if (lookahead == '.') ADVANCE(469); if (lookahead == '_') ADVANCE(433); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1597); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3982); + lookahead == 'i') ADVANCE(1601); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3996); END_STATE(); case 399: - if (lookahead == '-') ADVANCE(583); + if (lookahead == '-') ADVANCE(586); END_STATE(); case 400: - if (lookahead == '-') ADVANCE(990); + if (lookahead == '-') ADVANCE(993); END_STATE(); case 401: - if (lookahead == '-') ADVANCE(1324); + if (lookahead == '-') ADVANCE(1326); END_STATE(); case 402: - if (lookahead == '-') ADVANCE(664); + if (lookahead == '-') ADVANCE(897); END_STATE(); case 403: - if (lookahead == '-') ADVANCE(1544); + if (lookahead == '-') ADVANCE(897); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3815); END_STATE(); case 404: - if (lookahead == '-') ADVANCE(612); + if (lookahead == '-') ADVANCE(667); END_STATE(); case 405: - if (lookahead == '-') ADVANCE(1529); - if (lookahead == 'o') ADVANCE(1406); + if (lookahead == '-') ADVANCE(1548); END_STATE(); case 406: - if (lookahead == '-') ADVANCE(1261); + if (lookahead == '-') ADVANCE(615); END_STATE(); case 407: - if (lookahead == '-') ADVANCE(1384); + if (lookahead == '-') ADVANCE(1533); + if (lookahead == 'o') ADVANCE(1410); END_STATE(); case 408: - if (lookahead == '-') ADVANCE(663); + if (lookahead == '-') ADVANCE(1264); END_STATE(); case 409: - if (lookahead == '-') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1388); END_STATE(); case 410: - if (lookahead == '-') ADVANCE(1505); + if (lookahead == '-') ADVANCE(666); END_STATE(); case 411: - if (lookahead == '-') ADVANCE(1129); + if (lookahead == '-') ADVANCE(1406); END_STATE(); case 412: - if (lookahead == '-') ADVANCE(1116); + if (lookahead == '-') ADVANCE(1509); END_STATE(); case 413: - if (lookahead == '-') ADVANCE(1154); + if (lookahead == '-') ADVANCE(1132); END_STATE(); case 414: - if (lookahead == '-') ADVANCE(1417); + if (lookahead == '-') ADVANCE(1119); END_STATE(); case 415: - if (lookahead == '-') ADVANCE(1173); + if (lookahead == '-') ADVANCE(1157); END_STATE(); case 416: - if (lookahead == '-') ADVANCE(1486); + if (lookahead == '-') ADVANCE(1421); END_STATE(); case 417: - if (lookahead == '-') ADVANCE(1228); + if (lookahead == '-') ADVANCE(1176); END_STATE(); case 418: - if (lookahead == '-') ADVANCE(1508); + if (lookahead == '-') ADVANCE(1490); END_STATE(); case 419: - if (lookahead == '-') ADVANCE(656); + if (lookahead == '-') ADVANCE(1231); END_STATE(); case 420: - if (lookahead == '-') ADVANCE(1615); + if (lookahead == '-') ADVANCE(1512); END_STATE(); case 421: - if (lookahead == '-') ADVANCE(1469); + if (lookahead == '-') ADVANCE(659); END_STATE(); case 422: - if (lookahead == '-') ADVANCE(1385); + if (lookahead == '-') ADVANCE(1619); END_STATE(); case 423: - if (lookahead == '-') ADVANCE(945); + if (lookahead == '-') ADVANCE(1473); END_STATE(); case 424: - if (lookahead == '-') ADVANCE(945); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3801); + if (lookahead == '-') ADVANCE(1389); END_STATE(); case 425: - if (lookahead == '-') ADVANCE(1547); + if (lookahead == '-') ADVANCE(1551); END_STATE(); case 426: - if (lookahead == '-') ADVANCE(645); + if (lookahead == '-') ADVANCE(648); END_STATE(); case 427: - if (lookahead == '-') ADVANCE(1275); + if (lookahead == '-') ADVANCE(1278); END_STATE(); case 428: - if (lookahead == '-') ADVANCE(1278); + if (lookahead == '-') ADVANCE(1281); END_STATE(); case 429: - if (lookahead == '-') ADVANCE(1551); + if (lookahead == '-') ADVANCE(1555); END_STATE(); case 430: if (lookahead == '.') ADVANCE(469); - if (lookahead == '>') ADVANCE(3600); + if (lookahead == '>') ADVANCE(3614); if (lookahead == '_') ADVANCE(433); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1595); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3982); + lookahead == 'i') ADVANCE(1599); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3996); END_STATE(); case 431: if (lookahead == '.') ADVANCE(469); if (lookahead == '_') ADVANCE(433); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1595); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3982); + lookahead == 'i') ADVANCE(1599); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3996); END_STATE(); case 432: if (lookahead == '.') ADVANCE(469); if (lookahead == '_') ADVANCE(433); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1597); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3982); + lookahead == 'i') ADVANCE(1601); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3996); END_STATE(); case 433: if (lookahead == '.') ADVANCE(469); if (lookahead == '_') ADVANCE(433); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3982); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3996); END_STATE(); case 434: - if (lookahead == '.') ADVANCE(3721); + if (lookahead == '.') ADVANCE(3735); if (lookahead == '_') ADVANCE(472); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3990); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4004); END_STATE(); case 435: - if (lookahead == '.') ADVANCE(3627); + if (lookahead == '.') ADVANCE(3641); END_STATE(); case 436: if (lookahead == '.') ADVANCE(435); @@ -25743,8365 +25765,8416 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 437: if (lookahead == '.') ADVANCE(435); if (lookahead == '_') ADVANCE(479); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3910); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3924); END_STATE(); case 438: if (lookahead == '.') ADVANCE(470); if (lookahead == '_') ADVANCE(438); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3904); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3918); END_STATE(); case 439: - if (lookahead == '2') ADVANCE(4244); + if (lookahead == '2') ADVANCE(4262); END_STATE(); case 440: - if (lookahead == '2') ADVANCE(1604); + if (lookahead == '2') ADVANCE(1608); if (lookahead == '0' || - lookahead == '1') ADVANCE(1610); + lookahead == '1') ADVANCE(1614); END_STATE(); case 441: if (lookahead == '2') ADVANCE(446); END_STATE(); case 442: - if (lookahead == '2') ADVANCE(4178); + if (lookahead == '2') ADVANCE(4196); END_STATE(); case 443: if (lookahead == '3') ADVANCE(442); if (lookahead == '6') ADVANCE(444); END_STATE(); case 444: - if (lookahead == '4') ADVANCE(4244); + if (lookahead == '4') ADVANCE(4262); END_STATE(); case 445: - if (lookahead == '5') ADVANCE(4244); + if (lookahead == '5') ADVANCE(4262); END_STATE(); case 446: if (lookahead == '5') ADVANCE(447); END_STATE(); case 447: - if (lookahead == '6') ADVANCE(4244); + if (lookahead == '6') ADVANCE(4262); END_STATE(); case 448: - if (lookahead == ':') ADVANCE(1611); + if (lookahead == ':') ADVANCE(1615); END_STATE(); case 449: - if (lookahead == ':') ADVANCE(1612); + if (lookahead == ':') ADVANCE(1616); END_STATE(); case 450: - if (lookahead == ';') ADVANCE(4101); + if (lookahead == ';') ADVANCE(4119); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(450); END_STATE(); case 451: - if (lookahead == '=') ADVANCE(3788); - if (lookahead == '~') ADVANCE(3799); + if (lookahead == '=') ADVANCE(3802); + if (lookahead == '~') ADVANCE(3813); END_STATE(); case 452: - if (lookahead == '=') ADVANCE(3786); - if (lookahead == '>') ADVANCE(3714); - if (lookahead == '~') ADVANCE(3797); + if (lookahead == '=') ADVANCE(3800); + if (lookahead == '>') ADVANCE(3728); + if (lookahead == '~') ADVANCE(3811); END_STATE(); case 453: - if (lookahead == '=') ADVANCE(3786); - if (lookahead == '~') ADVANCE(3797); + if (lookahead == '=') ADVANCE(3800); + if (lookahead == '~') ADVANCE(3811); END_STATE(); case 454: - if (lookahead == '=') ADVANCE(3106); - if (lookahead == '~') ADVANCE(3094); + if (lookahead == '=') ADVANCE(3116); + if (lookahead == '~') ADVANCE(3102); END_STATE(); case 455: - if (lookahead == '>') ADVANCE(3714); + if (lookahead == '>') ADVANCE(3728); END_STATE(); case 456: - if (lookahead == '>') ADVANCE(4281); + if (lookahead == '>') ADVANCE(4299); END_STATE(); case 457: - if (lookahead == '>') ADVANCE(4276); + if (lookahead == '>') ADVANCE(4294); END_STATE(); case 458: - if (lookahead == '>') ADVANCE(4266); + if (lookahead == '>') ADVANCE(4284); END_STATE(); case 459: - if (lookahead == '>') ADVANCE(4271); + if (lookahead == '>') ADVANCE(4289); END_STATE(); case 460: - if (lookahead == '>') ADVANCE(3600); + if (lookahead == '>') ADVANCE(3614); END_STATE(); case 461: - if (lookahead == '>') ADVANCE(1575); + if (lookahead == '>') ADVANCE(1579); END_STATE(); case 462: - if (lookahead == '>') ADVANCE(1577); + if (lookahead == '>') ADVANCE(1581); END_STATE(); case 463: - if (lookahead == '>') ADVANCE(1579); + if (lookahead == '>') ADVANCE(1583); END_STATE(); case 464: - if (lookahead == '>') ADVANCE(1580); + if (lookahead == '>') ADVANCE(1584); END_STATE(); case 465: - if (lookahead == 'I') ADVANCE(1584); + if (lookahead == 'I') ADVANCE(1588); if (lookahead == '_') ADVANCE(478); - if (lookahead == 'i') ADVANCE(609); + if (lookahead == 'i') ADVANCE(612); if (lookahead == '+' || lookahead == '-') ADVANCE(478); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + lookahead == 'b') ADVANCE(4038); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); END_STATE(); case 466: - if (lookahead == 'I') ADVANCE(1584); - if (lookahead == 'i') ADVANCE(1584); + if (lookahead == 'I') ADVANCE(1588); + if (lookahead == 'i') ADVANCE(1588); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); + lookahead == 'b') ADVANCE(4038); END_STATE(); case 467: - if (lookahead == 'I') ADVANCE(1584); - if (lookahead == 'i') ADVANCE(1109); - if (lookahead == 'o') ADVANCE(681); - if (lookahead == 's') ADVANCE(4031); + if (lookahead == 'I') ADVANCE(1588); + if (lookahead == 'i') ADVANCE(1112); + if (lookahead == 'o') ADVANCE(684); + if (lookahead == 's') ADVANCE(4045); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); + lookahead == 'b') ADVANCE(4038); END_STATE(); case 468: - if (lookahead == 'I') ADVANCE(1584); - if (lookahead == 'i') ADVANCE(609); + if (lookahead == 'I') ADVANCE(1588); + if (lookahead == 'i') ADVANCE(612); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); + lookahead == 'b') ADVANCE(4038); END_STATE(); case 469: if (lookahead == '_') ADVANCE(469); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3993); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4007); END_STATE(); case 470: if (lookahead == '_') ADVANCE(470); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3917); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3931); END_STATE(); case 471: if (lookahead == '_') ADVANCE(471); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3995); END_STATE(); case 472: if (lookahead == '_') ADVANCE(472); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3990); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4004); END_STATE(); case 473: if (lookahead == '_') ADVANCE(474); if (lookahead == '+' || lookahead == '-') ADVANCE(474); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); END_STATE(); case 474: if (lookahead == '_') ADVANCE(474); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); END_STATE(); case 475: if (lookahead == '_') ADVANCE(475); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); END_STATE(); case 476: if (lookahead == '_') ADVANCE(478); if (lookahead == 'o') ADVANCE(456); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); END_STATE(); case 477: if (lookahead == '_') ADVANCE(478); if (lookahead == '+' || lookahead == '-') ADVANCE(478); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); END_STATE(); case 478: if (lookahead == '_') ADVANCE(478); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); END_STATE(); case 479: if (lookahead == '_') ADVANCE(479); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3910); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3924); END_STATE(); case 480: if (lookahead == '_') ADVANCE(481); if (lookahead == '+' || lookahead == '-') ADVANCE(481); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3906); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3920); END_STATE(); case 481: if (lookahead == '_') ADVANCE(481); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3906); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3920); END_STATE(); case 482: - if (lookahead == '`') ADVANCE(4079); + if (lookahead == '`') ADVANCE(4093); if (lookahead != 0) ADVANCE(482); END_STATE(); case 483: ADVANCE_MAP( - 'a', 682, - 'b', 953, - 'c', 882, - 'd', 897, - 'f', 808, - 'g', 1322, - 'h', 733, - 'i', 1125, - 'l', 1174, - 'p', 1307, - 'r', 717, - 's', 1426, + 'a', 685, + 'b', 956, + 'c', 885, + 'd', 901, + 'f', 811, + 'g', 1324, + 'h', 736, + 'i', 1128, + 'l', 1177, + 'p', 1309, + 'r', 720, + 's', 1430, 't', 506, - 'w', 1201, + 'w', 1204, ); END_STATE(); case 484: ADVANCE_MAP( - 'a', 682, - 'b', 777, - 'c', 886, - 'd', 1193, - 'h', 733, - 'i', 1105, - 'm', 824, - 'n', 711, - 'p', 1498, - 'r', 1504, - 's', 828, - 't', 741, - 'u', 1157, + 'a', 685, + 'b', 780, + 'c', 889, + 'd', 1196, + 'h', 736, + 'i', 1108, + 'm', 827, + 'n', 714, + 'p', 1502, + 'r', 1508, + 's', 831, + 't', 744, + 'u', 1160, ); END_STATE(); case 485: - if (lookahead == 'a') ADVANCE(682); - if (lookahead == 'd') ADVANCE(897); - if (lookahead == 'f') ADVANCE(1179); - if (lookahead == 'n') ADVANCE(1167); + if (lookahead == 'a') ADVANCE(685); + if (lookahead == 'd') ADVANCE(901); + if (lookahead == 'f') ADVANCE(1182); + if (lookahead == 'n') ADVANCE(1170); if (lookahead == 'p') ADVANCE(518); - if (lookahead == 't') ADVANCE(1168); - if (lookahead == 'u') ADVANCE(1407); + if (lookahead == 't') ADVANCE(1171); + if (lookahead == 'u') ADVANCE(1411); END_STATE(); case 486: - if (lookahead == 'a') ADVANCE(682); - if (lookahead == 'g') ADVANCE(799); - if (lookahead == 'r') ADVANCE(737); - if (lookahead == 's') ADVANCE(799); + if (lookahead == 'a') ADVANCE(685); + if (lookahead == 'g') ADVANCE(802); + if (lookahead == 'r') ADVANCE(740); + if (lookahead == 's') ADVANCE(802); END_STATE(); case 487: - if (lookahead == 'a') ADVANCE(682); - if (lookahead == 'l') ADVANCE(908); - if (lookahead == 'm') ADVANCE(1223); - if (lookahead == 'p') ADVANCE(1306); - if (lookahead == 'r') ADVANCE(773); - if (lookahead == 'u') ADVANCE(1159); + if (lookahead == 'a') ADVANCE(685); + if (lookahead == 'l') ADVANCE(912); + if (lookahead == 'm') ADVANCE(1226); + if (lookahead == 'p') ADVANCE(1308); + if (lookahead == 'r') ADVANCE(776); + if (lookahead == 'u') ADVANCE(1162); END_STATE(); case 488: - if (lookahead == 'a') ADVANCE(682); - if (lookahead == 'l') ADVANCE(907); - if (lookahead == 'r') ADVANCE(1067); - if (lookahead == 's') ADVANCE(1454); - if (lookahead == 'u') ADVANCE(1382); + if (lookahead == 'a') ADVANCE(685); + if (lookahead == 'l') ADVANCE(911); + if (lookahead == 'r') ADVANCE(1070); + if (lookahead == 's') ADVANCE(1458); + if (lookahead == 'u') ADVANCE(1386); END_STATE(); case 489: - if (lookahead == 'a') ADVANCE(682); - if (lookahead == 'r') ADVANCE(773); + if (lookahead == 'a') ADVANCE(685); + if (lookahead == 'r') ADVANCE(776); END_STATE(); case 490: ADVANCE_MAP( - 'a', 1001, - 'b', 1302, + 'a', 1004, + 'b', 1304, 'c', 505, - 'e', 1554, - 'g', 951, - 'i', 1367, + 'e', 1558, + 'g', 954, + 'i', 1371, 'l', 492, - 'o', 1295, - 'p', 1283, - 'r', 713, - 's', 714, + 'o', 1297, + 'p', 1286, + 'r', 716, + 's', 717, 'v', 523, - 'w', 1187, + 'w', 1190, ); END_STATE(); case 491: - if (lookahead == 'a') ADVANCE(4244); + if (lookahead == 'a') ADVANCE(4262); END_STATE(); case 492: - if (lookahead == 'a') ADVANCE(616); + if (lookahead == 'a') ADVANCE(619); END_STATE(); case 493: - if (lookahead == 'a') ADVANCE(1068); + if (lookahead == 'a') ADVANCE(1071); END_STATE(); case 494: - if (lookahead == 'a') ADVANCE(1068); - if (lookahead == 'm') ADVANCE(994); + if (lookahead == 'a') ADVANCE(1071); + if (lookahead == 'm') ADVANCE(997); END_STATE(); case 495: - if (lookahead == 'a') ADVANCE(994); + if (lookahead == 'a') ADVANCE(997); END_STATE(); case 496: ADVANCE_MAP( - 'a', 615, - 'c', 778, - 'e', 1556, - 'f', 1029, - 'l', 1103, + 'a', 618, + 'c', 781, + 'e', 1560, + 'f', 1032, + 'l', 1106, 'm', 520, - 'p', 1343, - 'r', 1192, - 's', 928, + 'p', 1345, + 'r', 1195, + 's', 932, 't', 545, - 'v', 591, + 'v', 594, ); END_STATE(); case 497: - if (lookahead == 'a') ADVANCE(1099); - if (lookahead == 'o') ADVANCE(1079); + if (lookahead == 'a') ADVANCE(1102); + if (lookahead == 'o') ADVANCE(1082); END_STATE(); case 498: ADVANCE_MAP( - 'a', 683, - 'b', 1528, - 'c', 1205, - 'e', 1150, - 'i', 1130, - 'l', 761, - 'r', 721, - 's', 1479, + 'a', 686, + 'b', 1532, + 'c', 1208, + 'e', 1153, + 'i', 1133, + 'l', 764, + 'r', 724, + 's', 1483, ); END_STATE(); case 499: - if (lookahead == 'a') ADVANCE(1371); + if (lookahead == 'a') ADVANCE(1375); END_STATE(); case 500: - if (lookahead == 'a') ADVANCE(1321); + if (lookahead == 'a') ADVANCE(1323); END_STATE(); case 501: ADVANCE_MAP( - 'a', 857, + 'a', 860, 'c', 502, - 'd', 585, - 'e', 1559, - 'f', 809, - 'g', 791, - 'i', 1097, - 'j', 1226, + 'd', 588, + 'e', 1563, + 'f', 812, + 'g', 794, + 'i', 1100, + 'j', 1229, 'l', 513, 'm', 519, - 'n', 405, - 'o', 1269, - 'p', 906, - 'q', 1494, - 'r', 722, + 'n', 407, + 'o', 1272, + 'p', 910, + 'q', 1498, + 'r', 725, 's', 503, - 't', 570, - 'u', 1107, + 't', 573, + 'u', 1110, 'v', 512, - 'w', 892, + 'w', 895, ); END_STATE(); case 502: - if (lookahead == 'a') ADVANCE(640); - if (lookahead == 'o') ADVANCE(997); - if (lookahead == 'u') ADVANCE(1081); + if (lookahead == 'a') ADVANCE(643); + if (lookahead == 'o') ADVANCE(1000); + if (lookahead == 'u') ADVANCE(1084); END_STATE(); case 503: ADVANCE_MAP( - 'a', 1100, - 'c', 889, - 'e', 1044, - 'h', 564, - 'l', 925, - 'o', 1328, - 't', 676, - 'u', 1070, + 'a', 1103, + 'c', 892, + 'e', 1047, + 'h', 567, + 'l', 929, + 'o', 1330, + 't', 679, + 'u', 1073, ); END_STATE(); case 504: - if (lookahead == 'a') ADVANCE(675); + if (lookahead == 'a') ADVANCE(678); END_STATE(); case 505: - if (lookahead == 'a') ADVANCE(639); - if (lookahead == 'o') ADVANCE(689); + if (lookahead == 'a') ADVANCE(642); + if (lookahead == 'o') ADVANCE(692); END_STATE(); case 506: - if (lookahead == 'a') ADVANCE(852); + if (lookahead == 'a') ADVANCE(855); END_STATE(); case 507: if (lookahead == 'a') ADVANCE(441); END_STATE(); case 508: - if (lookahead == 'a') ADVANCE(992); - if (lookahead == 'o') ADVANCE(709); + if (lookahead == 'a') ADVANCE(995); + if (lookahead == 'o') ADVANCE(712); END_STATE(); case 509: - if (lookahead == 'a') ADVANCE(1423); + if (lookahead == 'a') ADVANCE(1427); END_STATE(); case 510: - if (lookahead == 'a') ADVANCE(1060); - if (lookahead == 'c') ADVANCE(1190); - if (lookahead == 'e') ADVANCE(1393); - if (lookahead == 'm') ADVANCE(1185); - if (lookahead == 'o') ADVANCE(1260); + if (lookahead == 'a') ADVANCE(1063); + if (lookahead == 'c') ADVANCE(1193); + if (lookahead == 'e') ADVANCE(1397); + if (lookahead == 'm') ADVANCE(1188); + if (lookahead == 'o') ADVANCE(1263); END_STATE(); case 511: - if (lookahead == 'a') ADVANCE(1060); - if (lookahead == 'c') ADVANCE(1190); - if (lookahead == 'e') ADVANCE(1127); - if (lookahead == 'm') ADVANCE(1185); - if (lookahead == 'v') ADVANCE(602); + if (lookahead == 'a') ADVANCE(1063); + if (lookahead == 'c') ADVANCE(1193); + if (lookahead == 'e') ADVANCE(1130); + if (lookahead == 'm') ADVANCE(1188); + if (lookahead == 'v') ADVANCE(605); END_STATE(); case 512: - if (lookahead == 'a') ADVANCE(1054); + if (lookahead == 'a') ADVANCE(1057); END_STATE(); case 513: - if (lookahead == 'a') ADVANCE(1365); - if (lookahead == 'e') ADVANCE(1102); - if (lookahead == 'i') ADVANCE(1406); - if (lookahead == 'o') ADVANCE(1545); + if (lookahead == 'a') ADVANCE(1369); + if (lookahead == 'e') ADVANCE(1105); + if (lookahead == 'i') ADVANCE(1410); + if (lookahead == 'o') ADVANCE(1549); END_STATE(); case 514: - if (lookahead == 'a') ADVANCE(1113); + if (lookahead == 'a') ADVANCE(1116); END_STATE(); case 515: - if (lookahead == 'a') ADVANCE(1113); - if (lookahead == 'n') ADVANCE(1182); - if (lookahead == 'o') ADVANCE(1282); - if (lookahead == 'r') ADVANCE(1171); - if (lookahead == 's') ADVANCE(870); - if (lookahead == 'x') ADVANCE(1197); + if (lookahead == 'a') ADVANCE(1116); + if (lookahead == 'n') ADVANCE(1185); + if (lookahead == 'o') ADVANCE(1285); + if (lookahead == 'r') ADVANCE(1174); + if (lookahead == 's') ADVANCE(873); + if (lookahead == 'x') ADVANCE(1200); END_STATE(); case 516: - if (lookahead == 'a') ADVANCE(1562); + if (lookahead == 'a') ADVANCE(1566); END_STATE(); case 517: - if (lookahead == 'a') ADVANCE(1406); + if (lookahead == 'a') ADVANCE(1410); END_STATE(); case 518: - if (lookahead == 'a') ADVANCE(1305); + if (lookahead == 'a') ADVANCE(1307); END_STATE(); case 519: - if (lookahead == 'a') ADVANCE(1552); + if (lookahead == 'a') ADVANCE(1556); if (lookahead == 'e') ADVANCE(532); - if (lookahead == 'i') ADVANCE(1102); + if (lookahead == 'i') ADVANCE(1105); END_STATE(); case 520: - if (lookahead == 'a') ADVANCE(1552); - if (lookahead == 'e') ADVANCE(703); - if (lookahead == 'i') ADVANCE(1102); - if (lookahead == 'o') ADVANCE(696); + if (lookahead == 'a') ADVANCE(1556); + if (lookahead == 'e') ADVANCE(706); + if (lookahead == 'i') ADVANCE(1105); + if (lookahead == 'o') ADVANCE(699); END_STATE(); case 521: - if (lookahead == 'a') ADVANCE(1552); - if (lookahead == 'i') ADVANCE(1102); + if (lookahead == 'a') ADVANCE(1556); + if (lookahead == 'i') ADVANCE(1105); END_STATE(); case 522: - if (lookahead == 'a') ADVANCE(1568); + if (lookahead == 'a') ADVANCE(1572); END_STATE(); case 523: - if (lookahead == 'a') ADVANCE(1341); + if (lookahead == 'a') ADVANCE(1343); END_STATE(); case 524: - if (lookahead == 'a') ADVANCE(624); + if (lookahead == 'a') ADVANCE(627); END_STATE(); case 525: - if (lookahead == 'a') ADVANCE(624); - if (lookahead == 'i') ADVANCE(1092); + if (lookahead == 'a') ADVANCE(627); + if (lookahead == 'i') ADVANCE(1095); END_STATE(); case 526: - if (lookahead == 'a') ADVANCE(1240); + if (lookahead == 'a') ADVANCE(1243); END_STATE(); case 527: - if (lookahead == 'a') ADVANCE(1427); + if (lookahead == 'a') ADVANCE(1431); END_STATE(); case 528: - if (lookahead == 'a') ADVANCE(1397); + if (lookahead == 'a') ADVANCE(1401); END_STATE(); case 529: - if (lookahead == 'a') ADVANCE(614); + if (lookahead == 'a') ADVANCE(617); END_STATE(); case 530: - if (lookahead == 'a') ADVANCE(695); + if (lookahead == 'a') ADVANCE(698); END_STATE(); case 531: - if (lookahead == 'a') ADVANCE(1102); + if (lookahead == 'a') ADVANCE(1105); END_STATE(); case 532: - if (lookahead == 'a') ADVANCE(1102); - if (lookahead == 'd') ADVANCE(960); + if (lookahead == 'a') ADVANCE(1105); + if (lookahead == 'd') ADVANCE(963); END_STATE(); case 533: - if (lookahead == 'a') ADVANCE(1102); - if (lookahead == 'u') ADVANCE(995); + if (lookahead == 'a') ADVANCE(1105); + if (lookahead == 'u') ADVANCE(998); END_STATE(); case 534: - if (lookahead == 'a') ADVANCE(1286); - if (lookahead == 'l') ADVANCE(907); - if (lookahead == 'n') ADVANCE(852); + if (lookahead == 'a') ADVANCE(1289); + if (lookahead == 'l') ADVANCE(911); + if (lookahead == 'n') ADVANCE(855); END_STATE(); case 535: - if (lookahead == 'a') ADVANCE(1356); + if (lookahead == 'a') ADVANCE(1358); END_STATE(); case 536: - if (lookahead == 'a') ADVANCE(1282); + if (lookahead == 'a') ADVANCE(1285); END_STATE(); case 537: - if (lookahead == 'a') ADVANCE(643); + if (lookahead == 'a') ADVANCE(646); END_STATE(); case 538: - if (lookahead == 'a') ADVANCE(1005); + if (lookahead == 'a') ADVANCE(1008); END_STATE(); case 539: - if (lookahead == 'a') ADVANCE(1342); + if (lookahead == 'a') ADVANCE(1344); END_STATE(); case 540: - if (lookahead == 'a') ADVANCE(1342); - if (lookahead == 'c') ADVANCE(1312); + if (lookahead == 'a') ADVANCE(1344); + if (lookahead == 'c') ADVANCE(1314); END_STATE(); case 541: - if (lookahead == 'a') ADVANCE(1401); + if (lookahead == 'a') ADVANCE(1405); END_STATE(); case 542: - if (lookahead == 'a') ADVANCE(1149); + if (lookahead == 'a') ADVANCE(1152); END_STATE(); case 543: - if (lookahead == 'a') ADVANCE(1345); + if (lookahead == 'a') ADVANCE(1347); END_STATE(); case 544: - if (lookahead == 'a') ADVANCE(653); + if (lookahead == 'a') ADVANCE(656); END_STATE(); case 545: - if (lookahead == 'a') ADVANCE(1106); + if (lookahead == 'a') ADVANCE(1109); END_STATE(); case 546: - if (lookahead == 'a') ADVANCE(661); - if (lookahead == 's') ADVANCE(744); + if (lookahead == 'a') ADVANCE(664); + if (lookahead == 's') ADVANCE(747); END_STATE(); case 547: - if (lookahead == 'a') ADVANCE(1481); + if (lookahead == 'a') ADVANCE(1485); END_STATE(); case 548: - if (lookahead == 'a') ADVANCE(1011); + if (lookahead == 'a') ADVANCE(1014); END_STATE(); case 549: - if (lookahead == 'a') ADVANCE(1316); + if (lookahead == 'a') ADVANCE(1318); END_STATE(); case 550: - if (lookahead == 'a') ADVANCE(1516); + if (lookahead == 'a') ADVANCE(1520); END_STATE(); case 551: - if (lookahead == 'a') ADVANCE(1527); - if (lookahead == 'p') ADVANCE(1330); + if (lookahead == 'a') ADVANCE(1531); + if (lookahead == 'p') ADVANCE(1332); END_STATE(); case 552: - if (lookahead == 'a') ADVANCE(1431); + if (lookahead == 'a') ADVANCE(1435); END_STATE(); case 553: - if (lookahead == 'a') ADVANCE(1297); + if (lookahead == 'a') ADVANCE(1299); END_STATE(); case 554: - if (lookahead == 'a') ADVANCE(1360); + if (lookahead == 'a') ADVANCE(1361); END_STATE(); case 555: - if (lookahead == 'a') ADVANCE(1320); + if (lookahead == 'a') ADVANCE(1361); + if (lookahead == 'r') ADVANCE(4045); END_STATE(); case 556: - if (lookahead == 'a') ADVANCE(995); + if (lookahead == 'a') ADVANCE(1362); END_STATE(); case 557: - if (lookahead == 'a') ADVANCE(1428); + if (lookahead == 'a') ADVANCE(1322); END_STATE(); case 558: - if (lookahead == 'a') ADVANCE(1052); + if (lookahead == 'a') ADVANCE(1364); END_STATE(); case 559: - if (lookahead == 'a') ADVANCE(1466); - if (lookahead == 'o') ADVANCE(1365); - if (lookahead == 'u') ADVANCE(1406); + if (lookahead == 'a') ADVANCE(998); END_STATE(); case 560: - if (lookahead == 'a') ADVANCE(1311); - if (lookahead == 'o') ADVANCE(1211); + if (lookahead == 'a') ADVANCE(1432); END_STATE(); case 561: - if (lookahead == 'a') ADVANCE(991); + if (lookahead == 'a') ADVANCE(1055); END_STATE(); case 562: - if (lookahead == 'a') ADVANCE(1451); + if (lookahead == 'a') ADVANCE(1470); + if (lookahead == 'o') ADVANCE(1369); + if (lookahead == 'u') ADVANCE(1410); END_STATE(); case 563: - if (lookahead == 'a') ADVANCE(1451); - if (lookahead == 'u') ADVANCE(1349); + if (lookahead == 'a') ADVANCE(1313); + if (lookahead == 'o') ADVANCE(1214); END_STATE(); case 564: - if (lookahead == 'a') ADVANCE(1259); - if (lookahead == 'i') ADVANCE(844); + if (lookahead == 'a') ADVANCE(994); END_STATE(); case 565: - if (lookahead == 'a') ADVANCE(1084); + if (lookahead == 'a') ADVANCE(1455); END_STATE(); case 566: - if (lookahead == 'a') ADVANCE(1344); + if (lookahead == 'a') ADVANCE(1455); + if (lookahead == 'u') ADVANCE(1351); END_STATE(); case 567: - if (lookahead == 'a') ADVANCE(1487); + if (lookahead == 'a') ADVANCE(1262); + if (lookahead == 'i') ADVANCE(847); END_STATE(); case 568: - if (lookahead == 'a') ADVANCE(1132); + if (lookahead == 'a') ADVANCE(1087); END_STATE(); case 569: - if (lookahead == 'a') ADVANCE(1313); + if (lookahead == 'a') ADVANCE(1346); END_STATE(); case 570: - if (lookahead == 'a') ADVANCE(988); + if (lookahead == 'a') ADVANCE(1491); END_STATE(); case 571: - if (lookahead == 'a') ADVANCE(1137); + if (lookahead == 'a') ADVANCE(1135); END_STATE(); case 572: - if (lookahead == 'a') ADVANCE(1101); + if (lookahead == 'a') ADVANCE(1315); END_STATE(); case 573: - if (lookahead == 'a') ADVANCE(1262); + if (lookahead == 'a') ADVANCE(991); END_STATE(); case 574: - if (lookahead == 'a') ADVANCE(1382); + if (lookahead == 'a') ADVANCE(1140); END_STATE(); case 575: - if (lookahead == 'a') ADVANCE(1016); + if (lookahead == 'a') ADVANCE(1104); END_STATE(); case 576: - if (lookahead == 'a') ADVANCE(657); + if (lookahead == 'a') ADVANCE(1265); END_STATE(); case 577: - if (lookahead == 'a') ADVANCE(1117); + if (lookahead == 'a') ADVANCE(1386); END_STATE(); case 578: - if (lookahead == 'a') ADVANCE(1470); - if (lookahead == 'u') ADVANCE(1349); + if (lookahead == 'a') ADVANCE(1019); END_STATE(); case 579: - if (lookahead == 'a') ADVANCE(1035); + if (lookahead == 'a') ADVANCE(660); END_STATE(); case 580: - if (lookahead == 'a') ADVANCE(1452); + if (lookahead == 'a') ADVANCE(1120); END_STATE(); case 581: - if (lookahead == 'a') ADVANCE(1439); + if (lookahead == 'a') ADVANCE(1474); + if (lookahead == 'u') ADVANCE(1351); END_STATE(); case 582: - if (lookahead == 'a') ADVANCE(1456); + if (lookahead == 'a') ADVANCE(1038); END_STATE(); case 583: - if (lookahead == 'a') ADVANCE(1136); - if (lookahead == 'o') ADVANCE(1289); - if (lookahead == 's') ADVANCE(880); - if (lookahead == 'x') ADVANCE(1221); + if (lookahead == 'a') ADVANCE(1456); END_STATE(); case 584: - if (lookahead == 'a') ADVANCE(1441); + if (lookahead == 'a') ADVANCE(1443); END_STATE(); case 585: if (lookahead == 'a') ADVANCE(1460); - if (lookahead == 'e') ADVANCE(654); - if (lookahead == 'r') ADVANCE(1203); - if (lookahead == 'u') ADVANCE(1098); END_STATE(); case 586: - if (lookahead == 'a') ADVANCE(1389); + if (lookahead == 'a') ADVANCE(1139); + if (lookahead == 'o') ADVANCE(1292); + if (lookahead == 's') ADVANCE(883); + if (lookahead == 'x') ADVANCE(1224); END_STATE(); case 587: - if (lookahead == 'a') ADVANCE(939); + if (lookahead == 'a') ADVANCE(1445); END_STATE(); case 588: - if (lookahead == 'a') ADVANCE(1388); + if (lookahead == 'a') ADVANCE(1464); + if (lookahead == 'e') ADVANCE(657); + if (lookahead == 'r') ADVANCE(1206); + if (lookahead == 'u') ADVANCE(1101); END_STATE(); case 589: - if (lookahead == 'a') ADVANCE(1462); + if (lookahead == 'a') ADVANCE(1393); END_STATE(); case 590: if (lookahead == 'a') ADVANCE(943); END_STATE(); case 591: - if (lookahead == 'a') ADVANCE(1347); + if (lookahead == 'a') ADVANCE(1392); END_STATE(); case 592: - if (lookahead == 'a') ADVANCE(623); + if (lookahead == 'a') ADVANCE(1466); END_STATE(); case 593: - if (lookahead == 'a') ADVANCE(1161); - if (lookahead == 'e') ADVANCE(1297); + if (lookahead == 'a') ADVANCE(947); END_STATE(); case 594: - if (lookahead == 'a') ADVANCE(707); + if (lookahead == 'a') ADVANCE(1349); END_STATE(); case 595: - if (lookahead == 'a') ADVANCE(1483); + if (lookahead == 'a') ADVANCE(626); END_STATE(); case 596: - if (lookahead == 'a') ADVANCE(1468); + if (lookahead == 'a') ADVANCE(1164); + if (lookahead == 'e') ADVANCE(1299); END_STATE(); case 597: - if (lookahead == 'a') ADVANCE(1484); + if (lookahead == 'a') ADVANCE(710); END_STATE(); case 598: - if (lookahead == 'a') ADVANCE(1059); + if (lookahead == 'a') ADVANCE(1487); END_STATE(); case 599: - if (lookahead == 'a') ADVANCE(1476); + if (lookahead == 'a') ADVANCE(1472); END_STATE(); case 600: - if (lookahead == 'a') ADVANCE(1476); - if (lookahead == 'o') ADVANCE(1165); + if (lookahead == 'a') ADVANCE(1488); END_STATE(); case 601: - if (lookahead == 'a') ADVANCE(1490); + if (lookahead == 'a') ADVANCE(1062); END_STATE(); case 602: - if (lookahead == 'a') ADVANCE(1354); + if (lookahead == 'a') ADVANCE(1480); END_STATE(); case 603: - if (lookahead == 'a') ADVANCE(1355); + if (lookahead == 'a') ADVANCE(1480); + if (lookahead == 'o') ADVANCE(1168); END_STATE(); case 604: - ADVANCE_MAP( - 'b', 1567, - 'c', 1357, - 'e', 1068, - 'g', 1566, - 'i', 644, - 'j', 1370, - 'm', 1361, - 'n', 1501, - 'o', 688, - 'p', 534, - 's', 1357, - 't', 1169, - 'u', 1284, - 'v', 632, - 'x', 1017, - 'y', 494, - 'z', 1365, - ); + if (lookahead == 'a') ADVANCE(1494); END_STATE(); case 605: - ADVANCE_MAP( - 'b', 1567, - 'c', 1357, - 'g', 1566, - 'h', 1408, - 'j', 1370, - 'm', 677, - 'n', 1501, - 'p', 534, - 't', 810, - 'x', 1069, - 'y', 493, - 'z', 1365, - ); + if (lookahead == 'a') ADVANCE(1356); END_STATE(); case 606: - if (lookahead == 'b') ADVANCE(4244); + if (lookahead == 'a') ADVANCE(1357); END_STATE(); case 607: ADVANCE_MAP( - 'b', 900, - 'c', 766, - 'd', 578, - 'f', 963, - 'g', 1027, - 'i', 1120, - 'r', 752, - 's', 1280, - 'v', 538, + 'b', 1571, + 'c', 1359, + 'e', 1071, + 'g', 1570, + 'i', 647, + 'j', 1374, + 'm', 1365, + 'n', 1505, + 'o', 691, + 'p', 534, + 's', 1359, + 't', 1172, + 'u', 1287, + 'v', 635, + 'x', 1020, + 'y', 494, + 'z', 1369, ); END_STATE(); case 608: - if (lookahead == 'b') ADVANCE(4213); + ADVANCE_MAP( + 'b', 1571, + 'c', 1359, + 'g', 1570, + 'h', 1412, + 'j', 1374, + 'm', 680, + 'n', 1505, + 'p', 534, + 't', 813, + 'x', 1072, + 'y', 493, + 'z', 1369, + ); END_STATE(); case 609: - if (lookahead == 'b') ADVANCE(4024); + if (lookahead == 'b') ADVANCE(4262); END_STATE(); case 610: - if (lookahead == 'b') ADVANCE(1507); - if (lookahead == 'd') ADVANCE(748); - if (lookahead == 'e') ADVANCE(1122); - if (lookahead == 'j') ADVANCE(1226); - if (lookahead == 'p') ADVANCE(543); - if (lookahead == 's') ADVANCE(1247); + ADVANCE_MAP( + 'b', 904, + 'c', 769, + 'd', 581, + 'f', 966, + 'g', 1030, + 'i', 1123, + 'r', 755, + 's', 1283, + 'v', 538, + ); END_STATE(); case 611: - if (lookahead == 'b') ADVANCE(937); - if (lookahead == 'c') ADVANCE(894); - if (lookahead == 'd') ADVANCE(925); - if (lookahead == 'f') ADVANCE(1026); - if (lookahead == 'i') ADVANCE(1120); - if (lookahead == 'u') ADVANCE(1513); + if (lookahead == 'b') ADVANCE(4231); END_STATE(); case 612: - if (lookahead == 'b') ADVANCE(1561); + if (lookahead == 'b') ADVANCE(4038); END_STATE(); case 613: - ADVANCE_MAP( - 'b', 740, - 'c', 497, - 'd', 718, - 'e', 1151, - 'i', 1119, - 'j', 1226, - 'k', 732, - 'l', 761, - 'p', 528, - 'r', 719, - 's', 665, - 't', 916, - 'u', 1243, - 'w', 1317, - ); + if (lookahead == 'b') ADVANCE(1511); + if (lookahead == 'd') ADVANCE(751); + if (lookahead == 'e') ADVANCE(1125); + if (lookahead == 'j') ADVANCE(1229); + if (lookahead == 'p') ADVANCE(543); + if (lookahead == 's') ADVANCE(1250); END_STATE(); case 614: - if (lookahead == 'b') ADVANCE(402); + if (lookahead == 'b') ADVANCE(941); + if (lookahead == 'c') ADVANCE(898); + if (lookahead == 'd') ADVANCE(929); + if (lookahead == 'f') ADVANCE(1029); + if (lookahead == 'i') ADVANCE(1123); + if (lookahead == 'u') ADVANCE(1517); END_STATE(); case 615: - if (lookahead == 'b') ADVANCE(1356); - if (lookahead == 'r') ADVANCE(628); - if (lookahead == 'v') ADVANCE(852); + if (lookahead == 'b') ADVANCE(1565); END_STATE(); case 616: - if (lookahead == 'b') ADVANCE(716); + ADVANCE_MAP( + 'b', 743, + 'c', 497, + 'd', 721, + 'e', 1154, + 'i', 1122, + 'j', 1229, + 'k', 735, + 'l', 764, + 'p', 528, + 'r', 722, + 's', 668, + 't', 920, + 'u', 1246, + 'w', 1319, + ); END_STATE(); case 617: - if (lookahead == 'b') ADVANCE(504); - if (lookahead == 'g') ADVANCE(1216); - if (lookahead == 'r') ADVANCE(826); - if (lookahead == 's') ADVANCE(987); + if (lookahead == 'b') ADVANCE(404); END_STATE(); case 618: - if (lookahead == 'b') ADVANCE(529); + if (lookahead == 'b') ADVANCE(1358); + if (lookahead == 'r') ADVANCE(631); + if (lookahead == 'v') ADVANCE(855); END_STATE(); case 619: - ADVANCE_MAP( - 'b', 541, - 'd', 932, - 'e', 1553, - 'j', 1226, - 'p', 543, - 'r', 774, - 's', 1252, - 't', 1564, - ); + if (lookahead == 'b') ADVANCE(719); END_STATE(); case 620: - if (lookahead == 'b') ADVANCE(574); - if (lookahead == 'f') ADVANCE(1006); - if (lookahead == 'm') ADVANCE(1236); - if (lookahead == 's') ADVANCE(1480); + if (lookahead == 'b') ADVANCE(504); + if (lookahead == 'g') ADVANCE(1219); + if (lookahead == 'r') ADVANCE(829); + if (lookahead == 's') ADVANCE(990); END_STATE(); case 621: - if (lookahead == 'b') ADVANCE(1398); + if (lookahead == 'b') ADVANCE(529); END_STATE(); case 622: - if (lookahead == 'b') ADVANCE(586); - if (lookahead == 'h') ADVANCE(746); + ADVANCE_MAP( + 'b', 541, + 'd', 936, + 'e', 1557, + 'j', 1229, + 'p', 543, + 'r', 777, + 's', 1255, + 't', 1568, + ); END_STATE(); case 623: - if (lookahead == 'b') ADVANCE(1042); + if (lookahead == 'b') ADVANCE(577); + if (lookahead == 'f') ADVANCE(1009); + if (lookahead == 'm') ADVANCE(1239); + if (lookahead == 's') ADVANCE(1484); END_STATE(); case 624: - if (lookahead == 'b') ADVANCE(1034); + if (lookahead == 'b') ADVANCE(1402); END_STATE(); case 625: - if (lookahead == 'b') ADVANCE(1053); + if (lookahead == 'b') ADVANCE(589); + if (lookahead == 'h') ADVANCE(749); END_STATE(); case 626: - if (lookahead == 'c') ADVANCE(4244); + if (lookahead == 'b') ADVANCE(1045); END_STATE(); case 627: - if (lookahead == 'c') ADVANCE(767); - if (lookahead == 'l') ADVANCE(907); - if (lookahead == 'r') ADVANCE(1167); - if (lookahead == 'w') ADVANCE(1208); + if (lookahead == 'b') ADVANCE(1037); END_STATE(); case 628: - if (lookahead == 'c') ADVANCE(655); + if (lookahead == 'b') ADVANCE(1056); END_STATE(); case 629: - if (lookahead == 'c') ADVANCE(1046); - if (lookahead == 'd') ADVANCE(817); - if (lookahead == 'e') ADVANCE(686); - if (lookahead == 'l') ADVANCE(907); - if (lookahead == 'r') ADVANCE(785); - if (lookahead == 'v') ADVANCE(940); + if (lookahead == 'c') ADVANCE(4262); END_STATE(); case 630: - if (lookahead == 'c') ADVANCE(1046); - if (lookahead == 'f') ADVANCE(1215); - if (lookahead == 'l') ADVANCE(907); - if (lookahead == 'v') ADVANCE(940); + if (lookahead == 'c') ADVANCE(770); + if (lookahead == 'l') ADVANCE(911); + if (lookahead == 'r') ADVANCE(1170); + if (lookahead == 'w') ADVANCE(1211); END_STATE(); case 631: - if (lookahead == 'c') ADVANCE(4031); + if (lookahead == 'c') ADVANCE(658); END_STATE(); case 632: - if (lookahead == 'c') ADVANCE(836); + if (lookahead == 'c') ADVANCE(1049); + if (lookahead == 'd') ADVANCE(820); + if (lookahead == 'e') ADVANCE(689); + if (lookahead == 'l') ADVANCE(911); + if (lookahead == 'r') ADVANCE(788); + if (lookahead == 'v') ADVANCE(944); END_STATE(); case 633: - if (lookahead == 'c') ADVANCE(893); - if (lookahead == 'd') ADVANCE(562); + if (lookahead == 'c') ADVANCE(1049); + if (lookahead == 'f') ADVANCE(1218); + if (lookahead == 'l') ADVANCE(911); + if (lookahead == 'v') ADVANCE(944); END_STATE(); case 634: - if (lookahead == 'c') ADVANCE(1246); - if (lookahead == 'd') ADVANCE(917); - if (lookahead == 'h') ADVANCE(1180); - if (lookahead == 'm') ADVANCE(749); - if (lookahead == 'n') ADVANCE(744); - if (lookahead == 't') ADVANCE(754); - if (lookahead == 'u') ADVANCE(1379); + if (lookahead == 'c') ADVANCE(4045); END_STATE(); case 635: - if (lookahead == 'c') ADVANCE(1406); + if (lookahead == 'c') ADVANCE(839); END_STATE(); case 636: - if (lookahead == 'c') ADVANCE(868); + if (lookahead == 'c') ADVANCE(896); + if (lookahead == 'd') ADVANCE(565); END_STATE(); case 637: - if (lookahead == 'c') ADVANCE(1114); + if (lookahead == 'c') ADVANCE(1249); + if (lookahead == 'd') ADVANCE(921); + if (lookahead == 'h') ADVANCE(1183); + if (lookahead == 'm') ADVANCE(752); + if (lookahead == 'n') ADVANCE(747); + if (lookahead == 't') ADVANCE(757); + if (lookahead == 'u') ADVANCE(1383); END_STATE(); case 638: - if (lookahead == 'c') ADVANCE(982); + if (lookahead == 'c') ADVANCE(1410); END_STATE(); case 639: - if (lookahead == 'c') ADVANCE(885); + if (lookahead == 'c') ADVANCE(871); END_STATE(); case 640: - if (lookahead == 'c') ADVANCE(885); - if (lookahead == 's') ADVANCE(1406); + if (lookahead == 'c') ADVANCE(1117); END_STATE(); case 641: - if (lookahead == 'c') ADVANCE(989); + if (lookahead == 'c') ADVANCE(985); END_STATE(); case 642: - if (lookahead == 'c') ADVANCE(989); - if (lookahead == 'r') ADVANCE(1300); + if (lookahead == 'c') ADVANCE(888); END_STATE(); case 643: - if (lookahead == 'c') ADVANCE(983); + if (lookahead == 'c') ADVANCE(888); + if (lookahead == 's') ADVANCE(1410); END_STATE(); case 644: - if (lookahead == 'c') ADVANCE(1356); - if (lookahead == 'n') ADVANCE(898); + if (lookahead == 'c') ADVANCE(992); END_STATE(); case 645: - if (lookahead == 'c') ADVANCE(1191); + if (lookahead == 'c') ADVANCE(992); + if (lookahead == 'r') ADVANCE(1302); END_STATE(); case 646: - if (lookahead == 'c') ADVANCE(1191); - if (lookahead == 'n') ADVANCE(1423); + if (lookahead == 'c') ADVANCE(986); END_STATE(); case 647: - if (lookahead == 'c') ADVANCE(874); + if (lookahead == 'c') ADVANCE(1358); + if (lookahead == 'n') ADVANCE(902); END_STATE(); case 648: - if (lookahead == 'c') ADVANCE(875); + if (lookahead == 'c') ADVANCE(1194); END_STATE(); case 649: - if (lookahead == 'c') ADVANCE(1415); + if (lookahead == 'c') ADVANCE(1194); + if (lookahead == 'n') ADVANCE(1427); END_STATE(); case 650: - if (lookahead == 'c') ADVANCE(573); + if (lookahead == 'c') ADVANCE(877); END_STATE(); case 651: - if (lookahead == 'c') ADVANCE(1229); - if (lookahead == 'd') ADVANCE(753); - if (lookahead == 'u') ADVANCE(1140); + if (lookahead == 'c') ADVANCE(878); END_STATE(); case 652: - if (lookahead == 'c') ADVANCE(1225); + if (lookahead == 'c') ADVANCE(1419); END_STATE(); case 653: - if (lookahead == 'c') ADVANCE(712); + if (lookahead == 'c') ADVANCE(576); END_STATE(); case 654: - if (lookahead == 'c') ADVANCE(964); + if (lookahead == 'c') ADVANCE(1232); + if (lookahead == 'd') ADVANCE(756); + if (lookahead == 'u') ADVANCE(1143); END_STATE(); case 655: - if (lookahead == 'c') ADVANCE(1199); - if (lookahead == 's') ADVANCE(927); - if (lookahead == 't') ADVANCE(545); + if (lookahead == 'c') ADVANCE(1228); END_STATE(); case 656: - if (lookahead == 'c') ADVANCE(1233); + if (lookahead == 'c') ADVANCE(715); END_STATE(); case 657: - if (lookahead == 'c') ADVANCE(768); + if (lookahead == 'c') ADVANCE(967); END_STATE(); case 658: - if (lookahead == 'c') ADVANCE(887); + if (lookahead == 'c') ADVANCE(1202); + if (lookahead == 's') ADVANCE(931); + if (lookahead == 't') ADVANCE(545); END_STATE(); case 659: - if (lookahead == 'c') ADVANCE(896); + if (lookahead == 'c') ADVANCE(1236); END_STATE(); case 660: - if (lookahead == 'c') ADVANCE(548); + if (lookahead == 'c') ADVANCE(771); END_STATE(); case 661: - if (lookahead == 'c') ADVANCE(672); + if (lookahead == 'c') ADVANCE(890); END_STATE(); case 662: - if (lookahead == 'c') ADVANCE(1331); - if (lookahead == 'd') ADVANCE(817); - if (lookahead == 'e') ADVANCE(1558); - if (lookahead == 'i') ADVANCE(1077); - if (lookahead == 'o') ADVANCE(1268); - if (lookahead == 'r') ADVANCE(826); - if (lookahead == 'u') ADVANCE(1248); + if (lookahead == 'c') ADVANCE(900); END_STATE(); case 663: - if (lookahead == 'c') ADVANCE(1518); + if (lookahead == 'c') ADVANCE(548); END_STATE(); case 664: - if (lookahead == 'c') ADVANCE(574); + if (lookahead == 'c') ADVANCE(675); END_STATE(); case 665: if (lookahead == 'c') ADVANCE(1333); - if (lookahead == 'i') ADVANCE(1094); - if (lookahead == 'n') ADVANCE(561); - if (lookahead == 't') ADVANCE(500); - if (lookahead == 'u') ADVANCE(621); + if (lookahead == 'd') ADVANCE(820); + if (lookahead == 'e') ADVANCE(1562); + if (lookahead == 'i') ADVANCE(1080); + if (lookahead == 'o') ADVANCE(1271); + if (lookahead == 'r') ADVANCE(829); + if (lookahead == 'u') ADVANCE(1251); END_STATE(); case 666: - if (lookahead == 'c') ADVANCE(822); + if (lookahead == 'c') ADVANCE(1522); END_STATE(); case 667: - if (lookahead == 'c') ADVANCE(1213); + if (lookahead == 'c') ADVANCE(577); END_STATE(); case 668: - if (lookahead == 'c') ADVANCE(569); - if (lookahead == 'r') ADVANCE(1533); + if (lookahead == 'c') ADVANCE(1335); + if (lookahead == 'i') ADVANCE(1097); + if (lookahead == 'n') ADVANCE(564); + if (lookahead == 't') ADVANCE(500); + if (lookahead == 'u') ADVANCE(624); END_STATE(); case 669: - if (lookahead == 'c') ADVANCE(557); - if (lookahead == 't') ADVANCE(587); + if (lookahead == 'c') ADVANCE(825); END_STATE(); case 670: - if (lookahead == 'c') ADVANCE(1238); + if (lookahead == 'c') ADVANCE(1216); END_STATE(); case 671: - ADVANCE_MAP( - 'c', 1235, - 'd', 755, - 'h', 733, - 'o', 1539, - 'r', 1504, - 's', 735, - 't', 560, - 'u', 1248, - ); + if (lookahead == 'c') ADVANCE(572); + if (lookahead == 'r') ADVANCE(1537); END_STATE(); case 672: - if (lookahead == 'c') ADVANCE(819); + if (lookahead == 'c') ADVANCE(560); + if (lookahead == 't') ADVANCE(590); END_STATE(); case 673: - if (lookahead == 'c') ADVANCE(589); + if (lookahead == 'c') ADVANCE(1241); END_STATE(); case 674: - if (lookahead == 'c') ADVANCE(833); + ADVANCE_MAP( + 'c', 1238, + 'd', 758, + 'h', 736, + 'o', 1543, + 'r', 1508, + 's', 738, + 't', 563, + 'u', 1251, + ); END_STATE(); case 675: - if (lookahead == 'd') ADVANCE(4244); + if (lookahead == 'c') ADVANCE(822); END_STATE(); case 676: - if (lookahead == 'd') ADVANCE(4244); - if (lookahead == 'o') ADVANCE(1340); - if (lookahead == 'r') ADVANCE(395); + if (lookahead == 'c') ADVANCE(592); END_STATE(); case 677: - if (lookahead == 'd') ADVANCE(4244); - if (lookahead == 's') ADVANCE(866); + if (lookahead == 'c') ADVANCE(836); END_STATE(); case 678: - if (lookahead == 'd') ADVANCE(445); + if (lookahead == 'd') ADVANCE(4262); END_STATE(); case 679: - if (lookahead == 'd') ADVANCE(3774); + if (lookahead == 'd') ADVANCE(4262); + if (lookahead == 'o') ADVANCE(1342); + if (lookahead == 'r') ADVANCE(395); END_STATE(); case 680: - if (lookahead == 'd') ADVANCE(3832); + if (lookahead == 'd') ADVANCE(4262); + if (lookahead == 's') ADVANCE(869); END_STATE(); case 681: - if (lookahead == 'd') ADVANCE(3812); + if (lookahead == 'd') ADVANCE(445); END_STATE(); case 682: - if (lookahead == 'd') ADVANCE(675); + if (lookahead == 'd') ADVANCE(3784); END_STATE(); case 683: - if (lookahead == 'd') ADVANCE(675); - if (lookahead == 't') ADVANCE(4244); + if (lookahead == 'd') ADVANCE(3846); END_STATE(); case 684: - if (lookahead == 'd') ADVANCE(836); - if (lookahead == 'l') ADVANCE(522); - if (lookahead == 'n') ADVANCE(1493); + if (lookahead == 'd') ADVANCE(3826); END_STATE(); case 685: - if (lookahead == 'd') ADVANCE(606); - if (lookahead == 'g') ADVANCE(910); - if (lookahead == 'j') ADVANCE(1370); - if (lookahead == 'w') ADVANCE(756); - if (lookahead == 'x') ADVANCE(1068); + if (lookahead == 'd') ADVANCE(678); END_STATE(); case 686: - if (lookahead == 'd') ADVANCE(910); + if (lookahead == 'd') ADVANCE(678); + if (lookahead == 't') ADVANCE(4262); END_STATE(); case 687: - if (lookahead == 'd') ADVANCE(428); + if (lookahead == 'd') ADVANCE(839); + if (lookahead == 'l') ADVANCE(522); + if (lookahead == 'n') ADVANCE(1497); END_STATE(); case 688: - if (lookahead == 'd') ADVANCE(1356); + if (lookahead == 'd') ADVANCE(609); + if (lookahead == 'g') ADVANCE(914); + if (lookahead == 'j') ADVANCE(1374); + if (lookahead == 'w') ADVANCE(759); + if (lookahead == 'x') ADVANCE(1071); END_STATE(); case 689: - if (lookahead == 'd') ADVANCE(771); - if (lookahead == 'm') ADVANCE(1249); - if (lookahead == 'n') ADVANCE(846); + if (lookahead == 'd') ADVANCE(914); END_STATE(); case 690: - if (lookahead == 'd') ADVANCE(1531); + if (lookahead == 'd') ADVANCE(428); END_STATE(); case 691: - if (lookahead == 'd') ADVANCE(1510); + if (lookahead == 'd') ADVANCE(1358); END_STATE(); case 692: - if (lookahead == 'd') ADVANCE(1362); + if (lookahead == 'd') ADVANCE(774); + if (lookahead == 'm') ADVANCE(1252); + if (lookahead == 'n') ADVANCE(849); END_STATE(); case 693: - if (lookahead == 'd') ADVANCE(1184); - if (lookahead == 'l') ADVANCE(747); - if (lookahead == 'r') ADVANCE(909); - if (lookahead == 'u') ADVANCE(1240); + if (lookahead == 'd') ADVANCE(1535); END_STATE(); case 694: - if (lookahead == 'd') ADVANCE(1534); - if (lookahead == 'i') ADVANCE(1102); - if (lookahead == 'n') ADVANCE(1214); - if (lookahead == 'u') ADVANCE(1147); + if (lookahead == 'd') ADVANCE(1514); END_STATE(); case 695: - if (lookahead == 'd') ADVANCE(968); + if (lookahead == 'd') ADVANCE(1366); END_STATE(); case 696: - if (lookahead == 'd') ADVANCE(712); + if (lookahead == 'd') ADVANCE(1187); + if (lookahead == 'l') ADVANCE(750); + if (lookahead == 'r') ADVANCE(913); + if (lookahead == 'u') ADVANCE(1243); END_STATE(); case 697: - if (lookahead == 'd') ADVANCE(736); + if (lookahead == 'd') ADVANCE(1538); + if (lookahead == 'i') ADVANCE(1105); + if (lookahead == 'n') ADVANCE(1217); + if (lookahead == 'u') ADVANCE(1150); END_STATE(); case 698: - if (lookahead == 'd') ADVANCE(755); - if (lookahead == 'l') ADVANCE(972); + if (lookahead == 'd') ADVANCE(971); END_STATE(); case 699: if (lookahead == 'd') ADVANCE(715); END_STATE(); case 700: - if (lookahead == 'd') ADVANCE(759); + if (lookahead == 'd') ADVANCE(739); END_STATE(); case 701: - if (lookahead == 'd') ADVANCE(817); - if (lookahead == 'g') ADVANCE(744); - if (lookahead == 'h') ADVANCE(781); - if (lookahead == 'o') ADVANCE(1251); - if (lookahead == 'p') ADVANCE(559); + if (lookahead == 'd') ADVANCE(758); + if (lookahead == 'l') ADVANCE(975); END_STATE(); case 702: - if (lookahead == 'd') ADVANCE(562); + if (lookahead == 'd') ADVANCE(718); END_STATE(); case 703: - if (lookahead == 'd') ADVANCE(960); + if (lookahead == 'd') ADVANCE(762); END_STATE(); case 704: - if (lookahead == 'd') ADVANCE(751); + if (lookahead == 'd') ADVANCE(820); + if (lookahead == 'g') ADVANCE(747); + if (lookahead == 'h') ADVANCE(784); + if (lookahead == 'o') ADVANCE(1254); + if (lookahead == 'p') ADVANCE(562); END_STATE(); case 705: - if (lookahead == 'd') ADVANCE(699); + if (lookahead == 'd') ADVANCE(565); END_STATE(); case 706: - if (lookahead == 'd') ADVANCE(1332); - if (lookahead == 'l') ADVANCE(907); - if (lookahead == 'p') ADVANCE(1189); - if (lookahead == 's') ADVANCE(878); + if (lookahead == 'd') ADVANCE(963); END_STATE(); case 707: - if (lookahead == 'd') ADVANCE(582); + if (lookahead == 'd') ADVANCE(754); END_STATE(); case 708: - if (lookahead == 'd') ADVANCE(563); - if (lookahead == 'f') ADVANCE(962); - if (lookahead == 'p') ADVANCE(547); + if (lookahead == 'd') ADVANCE(702); END_STATE(); case 709: - if (lookahead == 'd') ADVANCE(1532); + if (lookahead == 'd') ADVANCE(1334); + if (lookahead == 'l') ADVANCE(911); + if (lookahead == 'p') ADVANCE(1192); + if (lookahead == 's') ADVANCE(881); END_STATE(); case 710: - if (lookahead == 'd') ADVANCE(1404); + if (lookahead == 'd') ADVANCE(585); END_STATE(); case 711: - if (lookahead == 'e') ADVANCE(1541); + if (lookahead == 'd') ADVANCE(566); + if (lookahead == 'f') ADVANCE(965); + if (lookahead == 'p') ADVANCE(547); END_STATE(); case 712: - if (lookahead == 'e') ADVANCE(4244); + if (lookahead == 'd') ADVANCE(1536); END_STATE(); case 713: - if (lookahead == 'e') ADVANCE(1020); - if (lookahead == 'u') ADVANCE(1021); + if (lookahead == 'd') ADVANCE(1408); END_STATE(); case 714: - if (lookahead == 'e') ADVANCE(540); - if (lookahead == 's') ADVANCE(869); - if (lookahead == 't') ADVANCE(527); + if (lookahead == 'e') ADVANCE(1545); END_STATE(); case 715: - if (lookahead == 'e') ADVANCE(1536); + if (lookahead == 'e') ADVANCE(4262); END_STATE(); case 716: - if (lookahead == 'e') ADVANCE(994); + if (lookahead == 'e') ADVANCE(1023); + if (lookahead == 'u') ADVANCE(1024); END_STATE(); case 717: - if (lookahead == 'e') ADVANCE(620); - if (lookahead == 'm') ADVANCE(4244); + if (lookahead == 'e') ADVANCE(540); + if (lookahead == 's') ADVANCE(872); + if (lookahead == 't') ADVANCE(527); END_STATE(); case 718: - if (lookahead == 'e') ADVANCE(651); - if (lookahead == 'i') ADVANCE(1395); - if (lookahead == 'o') ADVANCE(1546); + if (lookahead == 'e') ADVANCE(1540); END_STATE(); case 719: - if (lookahead == 'e') ADVANCE(1254); + if (lookahead == 'e') ADVANCE(997); END_STATE(); case 720: - if (lookahead == 'e') ADVANCE(642); + if (lookahead == 'e') ADVANCE(623); + if (lookahead == 'm') ADVANCE(4262); END_STATE(); case 721: - if (lookahead == 'e') ADVANCE(1087); + if (lookahead == 'e') ADVANCE(654); + if (lookahead == 'i') ADVANCE(1399); + if (lookahead == 'o') ADVANCE(1550); END_STATE(); case 722: - if (lookahead == 'e') ADVANCE(1145); - if (lookahead == 'o') ADVANCE(1028); + if (lookahead == 'e') ADVANCE(1257); END_STATE(); case 723: - if (lookahead == 'e') ADVANCE(443); + if (lookahead == 'e') ADVANCE(645); END_STATE(); case 724: - if (lookahead == 'e') ADVANCE(3926); + if (lookahead == 'e') ADVANCE(1090); END_STATE(); case 725: - if (lookahead == 'e') ADVANCE(3934); + if (lookahead == 'e') ADVANCE(1148); + if (lookahead == 'o') ADVANCE(1031); END_STATE(); case 726: - if (lookahead == 'e') ADVANCE(3593); + if (lookahead == 'e') ADVANCE(443); END_STATE(); case 727: - if (lookahead == 'e') ADVANCE(3702); + if (lookahead == 'e') ADVANCE(3940); END_STATE(); case 728: - if (lookahead == 'e') ADVANCE(3682); + if (lookahead == 'e') ADVANCE(3948); END_STATE(); case 729: - if (lookahead == 'e') ADVANCE(3588); + if (lookahead == 'e') ADVANCE(3607); END_STATE(); case 730: - if (lookahead == 'e') ADVANCE(3622); + if (lookahead == 'e') ADVANCE(3716); END_STATE(); case 731: - if (lookahead == 'e') ADVANCE(675); + if (lookahead == 'e') ADVANCE(3696); END_STATE(); case 732: - if (lookahead == 'e') ADVANCE(618); + if (lookahead == 'e') ADVANCE(3602); END_STATE(); case 733: - if (lookahead == 'e') ADVANCE(1010); + if (lookahead == 'e') ADVANCE(3636); END_STATE(); case 734: - if (lookahead == 'e') ADVANCE(1561); + if (lookahead == 'e') ADVANCE(678); END_STATE(); case 735: - if (lookahead == 'e') ADVANCE(1003); + if (lookahead == 'e') ADVANCE(621); END_STATE(); case 736: - if (lookahead == 'e') ADVANCE(1121); + if (lookahead == 'e') ADVANCE(1013); END_STATE(); case 737: - if (lookahead == 'e') ADVANCE(1086); + if (lookahead == 'e') ADVANCE(1565); END_STATE(); case 738: - if (lookahead == 'e') ADVANCE(4122); + if (lookahead == 'e') ADVANCE(1006); END_STATE(); case 739: - if (lookahead == 'e') ADVANCE(457); + if (lookahead == 'e') ADVANCE(1124); END_STATE(); case 740: - if (lookahead == 'e') ADVANCE(1560); + if (lookahead == 'e') ADVANCE(1089); END_STATE(); case 741: - if (lookahead == 'e') ADVANCE(1365); + if (lookahead == 'e') ADVANCE(4140); END_STATE(); case 742: - if (lookahead == 'e') ADVANCE(1570); + if (lookahead == 'e') ADVANCE(457); END_STATE(); case 743: - if (lookahead == 'e') ADVANCE(1113); + if (lookahead == 'e') ADVANCE(1564); END_STATE(); case 744: - if (lookahead == 'e') ADVANCE(1406); + if (lookahead == 'e') ADVANCE(1369); END_STATE(); case 745: - if (lookahead == 'e') ADVANCE(1305); + if (lookahead == 'e') ADVANCE(1574); END_STATE(); case 746: - if (lookahead == 'e') ADVANCE(1552); + if (lookahead == 'e') ADVANCE(1116); END_STATE(); case 747: - if (lookahead == 'e') ADVANCE(844); + if (lookahead == 'e') ADVANCE(1410); END_STATE(); case 748: - if (lookahead == 'e') ADVANCE(652); + if (lookahead == 'e') ADVANCE(1307); END_STATE(); case 749: - if (lookahead == 'e') ADVANCE(1067); + if (lookahead == 'e') ADVANCE(1556); END_STATE(); case 750: - if (lookahead == 'e') ADVANCE(4124); + if (lookahead == 'e') ADVANCE(847); END_STATE(); case 751: - if (lookahead == 'e') ADVANCE(1557); + if (lookahead == 'e') ADVANCE(655); END_STATE(); case 752: - if (lookahead == 'e') ADVANCE(667); + if (lookahead == 'e') ADVANCE(1070); END_STATE(); case 753: - if (lookahead == 'e') ADVANCE(1120); + if (lookahead == 'e') ADVANCE(4142); END_STATE(); case 754: - if (lookahead == 'e') ADVANCE(1074); + if (lookahead == 'e') ADVANCE(1561); END_STATE(); case 755: - if (lookahead == 'e') ADVANCE(849); + if (lookahead == 'e') ADVANCE(670); END_STATE(); case 756: - if (lookahead == 'e') ADVANCE(608); + if (lookahead == 'e') ADVANCE(1123); END_STATE(); case 757: - if (lookahead == 'e') ADVANCE(1240); + if (lookahead == 'e') ADVANCE(1077); END_STATE(); case 758: - if (lookahead == 'e') ADVANCE(402); + if (lookahead == 'e') ADVANCE(852); END_STATE(); case 759: - if (lookahead == 'e') ADVANCE(4126); + if (lookahead == 'e') ADVANCE(611); END_STATE(); case 760: - if (lookahead == 'e') ADVANCE(462); + if (lookahead == 'e') ADVANCE(1243); END_STATE(); case 761: - if (lookahead == 'e') ADVANCE(1123); + if (lookahead == 'e') ADVANCE(404); END_STATE(); case 762: - if (lookahead == 'e') ADVANCE(840); - if (lookahead == 'o') ADVANCE(3691); + if (lookahead == 'e') ADVANCE(4144); END_STATE(); case 763: - if (lookahead == 'e') ADVANCE(1102); + if (lookahead == 'e') ADVANCE(462); END_STATE(); case 764: - if (lookahead == 'e') ADVANCE(1356); + if (lookahead == 'e') ADVANCE(1126); END_STATE(); case 765: - if (lookahead == 'e') ADVANCE(649); + if (lookahead == 'e') ADVANCE(843); + if (lookahead == 'o') ADVANCE(3705); END_STATE(); case 766: - if (lookahead == 'e') ADVANCE(1023); + if (lookahead == 'e') ADVANCE(1105); END_STATE(); case 767: - if (lookahead == 'e') ADVANCE(1023); - if (lookahead == 'h') ADVANCE(549); - if (lookahead == 'o') ADVANCE(1018); + if (lookahead == 'e') ADVANCE(1358); END_STATE(); case 768: - if (lookahead == 'e') ADVANCE(4138); + if (lookahead == 'e') ADVANCE(652); END_STATE(); case 769: - if (lookahead == 'e') ADVANCE(1282); + if (lookahead == 'e') ADVANCE(1026); END_STATE(); case 770: - if (lookahead == 'e') ADVANCE(686); - if (lookahead == 'g') ADVANCE(801); - if (lookahead == 's') ADVANCE(801); + if (lookahead == 'e') ADVANCE(1026); + if (lookahead == 'h') ADVANCE(549); + if (lookahead == 'o') ADVANCE(1021); END_STATE(); case 771: - if (lookahead == 'e') ADVANCE(1400); + if (lookahead == 'e') ADVANCE(4156); END_STATE(); case 772: - if (lookahead == 'e') ADVANCE(638); + if (lookahead == 'e') ADVANCE(1285); END_STATE(); case 773: - if (lookahead == 'e') ADVANCE(1085); + if (lookahead == 'e') ADVANCE(689); + if (lookahead == 'g') ADVANCE(804); + if (lookahead == 's') ADVANCE(804); END_STATE(); case 774: - if (lookahead == 'e') ADVANCE(1056); + if (lookahead == 'e') ADVANCE(1404); END_STATE(); case 775: if (lookahead == 'e') ADVANCE(641); END_STATE(); case 776: - if (lookahead == 'e') ADVANCE(1138); + if (lookahead == 'e') ADVANCE(1088); END_STATE(); case 777: - if (lookahead == 'e') ADVANCE(1149); - if (lookahead == 'u') ADVANCE(938); + if (lookahead == 'e') ADVANCE(1059); END_STATE(); case 778: - if (lookahead == 'e') ADVANCE(899); - if (lookahead == 'o') ADVANCE(1358); + if (lookahead == 'e') ADVANCE(644); END_STATE(); case 779: - if (lookahead == 'e') ADVANCE(1345); + if (lookahead == 'e') ADVANCE(1141); END_STATE(); case 780: - if (lookahead == 'e') ADVANCE(635); + if (lookahead == 'e') ADVANCE(1152); + if (lookahead == 'u') ADVANCE(942); END_STATE(); case 781: - if (lookahead == 'e') ADVANCE(504); + if (lookahead == 'e') ADVANCE(903); + if (lookahead == 'o') ADVANCE(1360); END_STATE(); case 782: - if (lookahead == 'e') ADVANCE(1376); + if (lookahead == 'e') ADVANCE(1347); END_STATE(); case 783: - if (lookahead == 'e') ADVANCE(1104); - if (lookahead == 'n') ADVANCE(1493); - if (lookahead == 'r') ADVANCE(826); + if (lookahead == 'e') ADVANCE(638); END_STATE(); case 784: - if (lookahead == 'e') ADVANCE(397); + if (lookahead == 'e') ADVANCE(504); END_STATE(); case 785: - if (lookahead == 'e') ADVANCE(1144); + if (lookahead == 'e') ADVANCE(1380); END_STATE(); case 786: - if (lookahead == 'e') ADVANCE(1239); + if (lookahead == 'e') ADVANCE(1107); + if (lookahead == 'n') ADVANCE(1497); + if (lookahead == 'r') ADVANCE(829); END_STATE(); case 787: - if (lookahead == 'e') ADVANCE(422); + if (lookahead == 'e') ADVANCE(397); END_STATE(); case 788: - if (lookahead == 'e') ADVANCE(1011); + if (lookahead == 'e') ADVANCE(1147); END_STATE(); case 789: - if (lookahead == 'e') ADVANCE(1316); + if (lookahead == 'e') ADVANCE(1242); END_STATE(); case 790: - if (lookahead == 'e') ADVANCE(631); - if (lookahead == 't') ADVANCE(603); + if (lookahead == 'e') ADVANCE(424); END_STATE(); case 791: - if (lookahead == 'e') ADVANCE(1419); - if (lookahead == 'r') ADVANCE(1206); + if (lookahead == 'e') ADVANCE(1014); END_STATE(); case 792: - if (lookahead == 'e') ADVANCE(1297); + if (lookahead == 'e') ADVANCE(1318); END_STATE(); case 793: - if (lookahead == 'e') ADVANCE(1327); + if (lookahead == 'e') ADVANCE(634); + if (lookahead == 't') ADVANCE(606); END_STATE(); case 794: - if (lookahead == 'e') ADVANCE(572); + if (lookahead == 'e') ADVANCE(1423); + if (lookahead == 'r') ADVANCE(1209); END_STATE(); case 795: - if (lookahead == 'e') ADVANCE(1424); + if (lookahead == 'e') ADVANCE(1299); END_STATE(); case 796: - if (lookahead == 'e') ADVANCE(1346); + if (lookahead == 'e') ADVANCE(1329); END_STATE(); case 797: - if (lookahead == 'e') ADVANCE(1013); + if (lookahead == 'e') ADVANCE(575); END_STATE(); case 798: - if (lookahead == 'e') ADVANCE(1304); + if (lookahead == 'e') ADVANCE(1428); END_STATE(); case 799: - if (lookahead == 'e') ADVANCE(1443); + if (lookahead == 'e') ADVANCE(1348); END_STATE(); case 800: - if (lookahead == 'e') ADVANCE(1310); + if (lookahead == 'e') ADVANCE(1016); END_STATE(); case 801: - if (lookahead == 'e') ADVANCE(1444); + if (lookahead == 'e') ADVANCE(1306); END_STATE(); case 802: - if (lookahead == 'e') ADVANCE(1314); + if (lookahead == 'e') ADVANCE(1447); END_STATE(); case 803: - if (lookahead == 'e') ADVANCE(1352); + if (lookahead == 'e') ADVANCE(1312); END_STATE(); case 804: - if (lookahead == 'e') ADVANCE(1337); + if (lookahead == 'e') ADVANCE(1448); END_STATE(); case 805: - if (lookahead == 'e') ADVANCE(1335); + if (lookahead == 'e') ADVANCE(1316); END_STATE(); case 806: - if (lookahead == 'e') ADVANCE(1336); + if (lookahead == 'e') ADVANCE(1354); END_STATE(); case 807: - if (lookahead == 'e') ADVANCE(750); + if (lookahead == 'e') ADVANCE(1339); END_STATE(); case 808: - if (lookahead == 'e') ADVANCE(1466); + if (lookahead == 'e') ADVANCE(1337); END_STATE(); case 809: - if (lookahead == 'e') ADVANCE(1466); - if (lookahead == 'i') ADVANCE(1004); - if (lookahead == 'l') ADVANCE(567); + if (lookahead == 'e') ADVANCE(1338); END_STATE(); case 810: - if (lookahead == 'e') ADVANCE(1555); - if (lookahead == 'o') ADVANCE(1068); - if (lookahead == 's') ADVANCE(1536); + if (lookahead == 'e') ADVANCE(753); END_STATE(); case 811: - if (lookahead == 'e') ADVANCE(1378); + if (lookahead == 'e') ADVANCE(1470); END_STATE(); case 812: - if (lookahead == 'e') ADVANCE(562); + if (lookahead == 'e') ADVANCE(1470); + if (lookahead == 'i') ADVANCE(1007); + if (lookahead == 'l') ADVANCE(570); END_STATE(); case 813: - if (lookahead == 'e') ADVANCE(1451); + if (lookahead == 'e') ADVANCE(1559); + if (lookahead == 'o') ADVANCE(1071); + if (lookahead == 's') ADVANCE(1540); END_STATE(); case 814: - if (lookahead == 'e') ADVANCE(414); + if (lookahead == 'e') ADVANCE(1382); END_STATE(); case 815: - if (lookahead == 'e') ADVANCE(863); - if (lookahead == 'o') ADVANCE(396); + if (lookahead == 'e') ADVANCE(565); END_STATE(); case 816: - if (lookahead == 'e') ADVANCE(1152); + if (lookahead == 'e') ADVANCE(1455); END_STATE(); case 817: - if (lookahead == 'e') ADVANCE(1040); + if (lookahead == 'e') ADVANCE(416); END_STATE(); case 818: - if (lookahead == 'e') ADVANCE(1338); + if (lookahead == 'e') ADVANCE(866); + if (lookahead == 'o') ADVANCE(396); END_STATE(); case 819: - if (lookahead == 'e') ADVANCE(1375); + if (lookahead == 'e') ADVANCE(1155); END_STATE(); case 820: - if (lookahead == 'e') ADVANCE(531); - if (lookahead == 'i') ADVANCE(1253); + if (lookahead == 'e') ADVANCE(1043); END_STATE(); case 821: - if (lookahead == 'e') ADVANCE(1146); + if (lookahead == 'e') ADVANCE(1340); END_STATE(); case 822: - if (lookahead == 'e') ADVANCE(1030); + if (lookahead == 'e') ADVANCE(1379); END_STATE(); case 823: - if (lookahead == 'e') ADVANCE(1450); + if (lookahead == 'e') ADVANCE(531); + if (lookahead == 'i') ADVANCE(1256); END_STATE(); case 824: - if (lookahead == 'e') ADVANCE(1453); + if (lookahead == 'e') ADVANCE(1149); END_STATE(); case 825: - if (lookahead == 'e') ADVANCE(574); + if (lookahead == 'e') ADVANCE(1033); END_STATE(); case 826: - if (lookahead == 'e') ADVANCE(1372); + if (lookahead == 'e') ADVANCE(1454); END_STATE(); case 827: - if (lookahead == 'e') ADVANCE(1091); + if (lookahead == 'e') ADVANCE(1457); END_STATE(); case 828: - if (lookahead == 'e') ADVANCE(539); + if (lookahead == 'e') ADVANCE(577); END_STATE(); case 829: - if (lookahead == 'e') ADVANCE(1329); + if (lookahead == 'e') ADVANCE(1376); END_STATE(); case 830: - if (lookahead == 'e') ADVANCE(1468); + if (lookahead == 'e') ADVANCE(1094); END_STATE(); case 831: - if (lookahead == 'e') ADVANCE(419); + if (lookahead == 'e') ADVANCE(539); END_STATE(); case 832: - if (lookahead == 'e') ADVANCE(1351); + if (lookahead == 'e') ADVANCE(1331); END_STATE(); case 833: - if (lookahead == 'e') ADVANCE(1062); + if (lookahead == 'e') ADVANCE(1472); END_STATE(); case 834: - if (lookahead == 'e') ADVANCE(1489); + if (lookahead == 'e') ADVANCE(421); END_STATE(); case 835: - if (lookahead == 'f') ADVANCE(1179); - if (lookahead == 'h') ADVANCE(1525); - if (lookahead == 'l') ADVANCE(966); - if (lookahead == 'n') ADVANCE(1167); - if (lookahead == 't') ADVANCE(1175); + if (lookahead == 'e') ADVANCE(1353); END_STATE(); case 836: - if (lookahead == 'f') ADVANCE(4244); + if (lookahead == 'e') ADVANCE(1065); END_STATE(); case 837: - if (lookahead == 'f') ADVANCE(3696); + if (lookahead == 'e') ADVANCE(1493); END_STATE(); case 838: - if (lookahead == 'f') ADVANCE(3696); - if (lookahead == 'n') ADVANCE(3671); + if (lookahead == 'f') ADVANCE(1182); + if (lookahead == 'h') ADVANCE(1529); + if (lookahead == 'l') ADVANCE(969); + if (lookahead == 'n') ADVANCE(1170); + if (lookahead == 't') ADVANCE(1178); END_STATE(); case 839: - if (lookahead == 'f') ADVANCE(3696); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1588); + if (lookahead == 'f') ADVANCE(4262); END_STATE(); case 840: - if (lookahead == 'f') ADVANCE(3575); + if (lookahead == 'f') ADVANCE(3710); END_STATE(); case 841: - if (lookahead == 'f') ADVANCE(3621); + if (lookahead == 'f') ADVANCE(3710); + if (lookahead == 'n') ADVANCE(3685); END_STATE(); case 842: - if (lookahead == 'f') ADVANCE(836); + if (lookahead == 'f') ADVANCE(3710); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1592); END_STATE(); case 843: - if (lookahead == 'f') ADVANCE(1168); + if (lookahead == 'f') ADVANCE(3589); END_STATE(); case 844: - if (lookahead == 'f') ADVANCE(1406); + if (lookahead == 'f') ADVANCE(3635); END_STATE(); case 845: - if (lookahead == 'f') ADVANCE(971); - if (lookahead == 'i') ADVANCE(1282); - if (lookahead == 's') ADVANCE(1195); + if (lookahead == 'f') ADVANCE(839); END_STATE(); case 846: - if (lookahead == 'f') ADVANCE(902); + if (lookahead == 'f') ADVANCE(1171); END_STATE(); case 847: - if (lookahead == 'f') ADVANCE(1002); + if (lookahead == 'f') ADVANCE(1410); END_STATE(); case 848: - if (lookahead == 'f') ADVANCE(410); + if (lookahead == 'f') ADVANCE(974); + if (lookahead == 'i') ADVANCE(1285); + if (lookahead == 's') ADVANCE(1198); END_STATE(); case 849: - if (lookahead == 'f') ADVANCE(550); + if (lookahead == 'f') ADVANCE(906); END_STATE(); case 850: - if (lookahead == 'f') ADVANCE(558); - if (lookahead == 't') ADVANCE(1303); + if (lookahead == 'f') ADVANCE(1005); END_STATE(); case 851: - if (lookahead == 'f') ADVANCE(974); + if (lookahead == 'f') ADVANCE(412); END_STATE(); case 852: - if (lookahead == 'g') ADVANCE(4244); + if (lookahead == 'f') ADVANCE(550); END_STATE(); case 853: - if (lookahead == 'g') ADVANCE(400); + if (lookahead == 'f') ADVANCE(561); + if (lookahead == 't') ADVANCE(1305); END_STATE(); case 854: - if (lookahead == 'g') ADVANCE(4131); + if (lookahead == 'f') ADVANCE(976); END_STATE(); case 855: - if (lookahead == 'g') ADVANCE(1168); + if (lookahead == 'g') ADVANCE(4262); END_STATE(); case 856: - if (lookahead == 'g') ADVANCE(1423); + if (lookahead == 'g') ADVANCE(400); END_STATE(); case 857: - if (lookahead == 'g') ADVANCE(854); - if (lookahead == 'l') ADVANCE(1019); - if (lookahead == 'p') ADVANCE(1263); - if (lookahead == 'r') ADVANCE(860); - if (lookahead == 's') ADVANCE(4130); + if (lookahead == 'g') ADVANCE(4149); END_STATE(); case 858: - if (lookahead == 'g') ADVANCE(744); - if (lookahead == 'l') ADVANCE(1356); - if (lookahead == 'r') ADVANCE(1067); + if (lookahead == 'g') ADVANCE(1171); END_STATE(); case 859: - if (lookahead == 'g') ADVANCE(879); + if (lookahead == 'g') ADVANCE(1427); END_STATE(); case 860: - if (lookahead == 'g') ADVANCE(394); + if (lookahead == 'g') ADVANCE(857); + if (lookahead == 'l') ADVANCE(1022); + if (lookahead == 'p') ADVANCE(1266); + if (lookahead == 'r') ADVANCE(863); + if (lookahead == 's') ADVANCE(4148); END_STATE(); case 861: - if (lookahead == 'g') ADVANCE(407); + if (lookahead == 'g') ADVANCE(747); + if (lookahead == 'l') ADVANCE(1358); + if (lookahead == 'r') ADVANCE(1070); END_STATE(); case 862: - if (lookahead == 'g') ADVANCE(795); + if (lookahead == 'g') ADVANCE(882); END_STATE(); case 863: - if (lookahead == 'g') ADVANCE(769); + if (lookahead == 'g') ADVANCE(394); END_STATE(); case 864: - if (lookahead == 'g') ADVANCE(1432); + if (lookahead == 'g') ADVANCE(409); END_STATE(); case 865: - if (lookahead == 'g') ADVANCE(1318); - if (lookahead == 'l') ADVANCE(919); - if (lookahead == 's') ADVANCE(1438); + if (lookahead == 'g') ADVANCE(798); END_STATE(); case 866: - if (lookahead == 'g') ADVANCE(1257); + if (lookahead == 'g') ADVANCE(772); END_STATE(); case 867: - if (lookahead == 'g') ADVANCE(955); + if (lookahead == 'g') ADVANCE(1436); END_STATE(); case 868: - if (lookahead == 'h') ADVANCE(4244); + if (lookahead == 'g') ADVANCE(1320); + if (lookahead == 'l') ADVANCE(923); + if (lookahead == 's') ADVANCE(1442); END_STATE(); case 869: - if (lookahead == 'h') ADVANCE(400); + if (lookahead == 'g') ADVANCE(1260); END_STATE(); case 870: - if (lookahead == 'h') ADVANCE(1603); + if (lookahead == 'g') ADVANCE(958); END_STATE(); case 871: - if (lookahead == 'h') ADVANCE(76); + if (lookahead == 'h') ADVANCE(4262); END_STATE(); case 872: - if (lookahead == 'h') ADVANCE(3784); + if (lookahead == 'h') ADVANCE(400); END_STATE(); case 873: - if (lookahead == 'h') ADVANCE(3782); + if (lookahead == 'h') ADVANCE(1607); END_STATE(); case 874: - if (lookahead == 'h') ADVANCE(3731); + if (lookahead == 'h') ADVANCE(76); END_STATE(); case 875: - if (lookahead == 'h') ADVANCE(3707); + if (lookahead == 'h') ADVANCE(3798); END_STATE(); case 876: - if (lookahead == 'h') ADVANCE(3613); + if (lookahead == 'h') ADVANCE(3796); END_STATE(); case 877: - if (lookahead == 'h') ADVANCE(3619); + if (lookahead == 'h') ADVANCE(3745); END_STATE(); case 878: - if (lookahead == 'h') ADVANCE(1167); + if (lookahead == 'h') ADVANCE(3721); END_STATE(); case 879: - if (lookahead == 'h') ADVANCE(1406); + if (lookahead == 'h') ADVANCE(3627); END_STATE(); case 880: - if (lookahead == 'h') ADVANCE(998); + if (lookahead == 'h') ADVANCE(3633); END_STATE(); case 881: - if (lookahead == 'h') ADVANCE(1356); + if (lookahead == 'h') ADVANCE(1170); END_STATE(); case 882: - if (lookahead == 'h') ADVANCE(720); - if (lookahead == 'l') ADVANCE(1202); - if (lookahead == 'o') ADVANCE(1093); + if (lookahead == 'h') ADVANCE(1410); END_STATE(); case 883: - if (lookahead == 'h') ADVANCE(507); + if (lookahead == 'h') ADVANCE(1001); END_STATE(); case 884: - if (lookahead == 'h') ADVANCE(426); + if (lookahead == 'h') ADVANCE(1358); END_STATE(); case 885: - if (lookahead == 'h') ADVANCE(712); + if (lookahead == 'h') ADVANCE(723); + if (lookahead == 'l') ADVANCE(1205); + if (lookahead == 'o') ADVANCE(1096); END_STATE(); case 886: - if (lookahead == 'h') ADVANCE(772); - if (lookahead == 'l') ADVANCE(820); + if (lookahead == 'h') ADVANCE(507); END_STATE(); case 887: - if (lookahead == 'h') ADVANCE(775); + if (lookahead == 'h') ADVANCE(426); END_STATE(); case 888: - if (lookahead == 'h') ADVANCE(800); + if (lookahead == 'h') ADVANCE(715); END_STATE(); case 889: - if (lookahead == 'h') ADVANCE(827); + if (lookahead == 'h') ADVANCE(775); + if (lookahead == 'l') ADVANCE(823); END_STATE(); case 890: - if (lookahead == 'h') ADVANCE(829); + if (lookahead == 'h') ADVANCE(778); END_STATE(); case 891: - if (lookahead == 'h') ADVANCE(417); + if (lookahead == 'h') ADVANCE(803); END_STATE(); case 892: - if (lookahead == 'h') ADVANCE(763); - if (lookahead == 'i') ADVANCE(1465); + if (lookahead == 'h') ADVANCE(830); END_STATE(); case 893: - if (lookahead == 'h') ADVANCE(536); + if (lookahead == 'h') ADVANCE(832); END_STATE(); case 894: - if (lookahead == 'h') ADVANCE(549); + if (lookahead == 'h') ADVANCE(419); END_STATE(); case 895: - if (lookahead == 'h') ADVANCE(974); + if (lookahead == 'h') ADVANCE(766); + if (lookahead == 'i') ADVANCE(1469); END_STATE(); case 896: - if (lookahead == 'h') ADVANCE(590); + if (lookahead == 'h') ADVANCE(536); END_STATE(); case 897: - if (lookahead == 'i') ADVANCE(842); + if (lookahead == 'h') ADVANCE(556); + if (lookahead == 'i') ADVANCE(1111); END_STATE(); case 898: - if (lookahead == 'i') ADVANCE(4244); + if (lookahead == 'h') ADVANCE(549); END_STATE(); case 899: - if (lookahead == 'i') ADVANCE(994); + if (lookahead == 'h') ADVANCE(976); END_STATE(); case 900: - if (lookahead == 'i') ADVANCE(1163); - if (lookahead == 'o') ADVANCE(1170); + if (lookahead == 'h') ADVANCE(593); END_STATE(); case 901: - if (lookahead == 'i') ADVANCE(675); + if (lookahead == 'i') ADVANCE(845); END_STATE(); case 902: - if (lookahead == 'i') ADVANCE(852); + if (lookahead == 'i') ADVANCE(4262); END_STATE(); case 903: - if (lookahead == 'i') ADVANCE(1423); + if (lookahead == 'i') ADVANCE(997); END_STATE(); case 904: - if (lookahead == 'i') ADVANCE(1569); + if (lookahead == 'i') ADVANCE(1166); + if (lookahead == 'o') ADVANCE(1173); END_STATE(); case 905: - if (lookahead == 'i') ADVANCE(1537); + if (lookahead == 'i') ADVANCE(678); END_STATE(); case 906: - if (lookahead == 'i') ADVANCE(1537); - if (lookahead == 'r') ADVANCE(1224); + if (lookahead == 'i') ADVANCE(855); END_STATE(); case 907: - if (lookahead == 'i') ADVANCE(1365); + if (lookahead == 'i') ADVANCE(1427); END_STATE(); case 908: - if (lookahead == 'i') ADVANCE(1365); - if (lookahead == 'o') ADVANCE(638); + if (lookahead == 'i') ADVANCE(1573); END_STATE(); case 909: - if (lookahead == 'i') ADVANCE(859); + if (lookahead == 'i') ADVANCE(1541); END_STATE(); case 910: - if (lookahead == 'i') ADVANCE(1406); + if (lookahead == 'i') ADVANCE(1541); + if (lookahead == 'r') ADVANCE(1227); END_STATE(); case 911: - if (lookahead == 'i') ADVANCE(1406); - if (lookahead == 's') ADVANCE(1474); + if (lookahead == 'i') ADVANCE(1369); END_STATE(); case 912: - if (lookahead == 'i') ADVANCE(652); + if (lookahead == 'i') ADVANCE(1369); + if (lookahead == 'o') ADVANCE(641); END_STATE(); case 913: - if (lookahead == 'i') ADVANCE(1067); + if (lookahead == 'i') ADVANCE(862); END_STATE(); case 914: - if (lookahead == 'i') ADVANCE(1240); + if (lookahead == 'i') ADVANCE(1410); END_STATE(); case 915: - if (lookahead == 'i') ADVANCE(1194); + if (lookahead == 'i') ADVANCE(1410); + if (lookahead == 's') ADVANCE(1478); END_STATE(); case 916: - if (lookahead == 'i') ADVANCE(1477); - if (lookahead == 'r') ADVANCE(913); + if (lookahead == 'i') ADVANCE(655); END_STATE(); case 917: - if (lookahead == 'i') ADVANCE(1364); + if (lookahead == 'i') ADVANCE(1070); END_STATE(); case 918: - if (lookahead == 'i') ADVANCE(1102); + if (lookahead == 'i') ADVANCE(1243); END_STATE(); case 919: - if (lookahead == 'i') ADVANCE(1124); + if (lookahead == 'i') ADVANCE(1197); END_STATE(); case 920: - if (lookahead == 'i') ADVANCE(1282); + if (lookahead == 'i') ADVANCE(1481); + if (lookahead == 'r') ADVANCE(917); END_STATE(); case 921: - if (lookahead == 'i') ADVANCE(1092); + if (lookahead == 'i') ADVANCE(1368); END_STATE(); case 922: - if (lookahead == 'i') ADVANCE(638); + if (lookahead == 'i') ADVANCE(1105); END_STATE(); case 923: - if (lookahead == 'i') ADVANCE(1126); - if (lookahead == 'p') ADVANCE(1330); + if (lookahead == 'i') ADVANCE(1127); END_STATE(); case 924: - if (lookahead == 'i') ADVANCE(524); + if (lookahead == 'i') ADVANCE(1285); END_STATE(); case 925: - if (lookahead == 'i') ADVANCE(653); + if (lookahead == 'i') ADVANCE(1095); END_STATE(); case 926: - if (lookahead == 'i') ADVANCE(1015); + if (lookahead == 'i') ADVANCE(641); END_STATE(); case 927: - if (lookahead == 'i') ADVANCE(1106); + if (lookahead == 'i') ADVANCE(1129); + if (lookahead == 'p') ADVANCE(1332); END_STATE(); case 928: - if (lookahead == 'i') ADVANCE(1106); - if (lookahead == 'q') ADVANCE(1305); - if (lookahead == 't') ADVANCE(705); - if (lookahead == 'u') ADVANCE(1067); + if (lookahead == 'i') ADVANCE(524); END_STATE(); case 929: - if (lookahead == 'i') ADVANCE(1430); + if (lookahead == 'i') ADVANCE(656); END_STATE(); case 930: - if (lookahead == 'i') ADVANCE(1368); + if (lookahead == 'i') ADVANCE(1018); END_STATE(); case 931: - if (lookahead == 'i') ADVANCE(673); + if (lookahead == 'i') ADVANCE(1109); END_STATE(); case 932: - if (lookahead == 'i') ADVANCE(1325); + if (lookahead == 'i') ADVANCE(1109); + if (lookahead == 'q') ADVANCE(1307); + if (lookahead == 't') ADVANCE(708); + if (lookahead == 'u') ADVANCE(1070); END_STATE(); case 933: - if (lookahead == 'i') ADVANCE(1164); + if (lookahead == 'i') ADVANCE(1434); END_STATE(); case 934: - if (lookahead == 'i') ADVANCE(1164); - if (lookahead == 'u') ADVANCE(1156); + if (lookahead == 'i') ADVANCE(1372); END_STATE(); case 935: - if (lookahead == 'i') ADVANCE(1115); + if (lookahead == 'i') ADVANCE(676); END_STATE(); case 936: - if (lookahead == 'i') ADVANCE(1058); + if (lookahead == 'i') ADVANCE(1327); END_STATE(); case 937: - if (lookahead == 'i') ADVANCE(1162); - if (lookahead == 'o') ADVANCE(1170); + if (lookahead == 'i') ADVANCE(1167); END_STATE(); case 938: - if (lookahead == 'i') ADVANCE(1000); + if (lookahead == 'i') ADVANCE(1167); + if (lookahead == 'u') ADVANCE(1159); END_STATE(); case 939: - if (lookahead == 'i') ADVANCE(1131); + if (lookahead == 'i') ADVANCE(1118); END_STATE(); case 940: - if (lookahead == 'i') ADVANCE(711); + if (lookahead == 'i') ADVANCE(1061); END_STATE(); case 941: - if (lookahead == 'i') ADVANCE(1155); + if (lookahead == 'i') ADVANCE(1165); + if (lookahead == 'o') ADVANCE(1173); END_STATE(); case 942: - if (lookahead == 'i') ADVANCE(571); + if (lookahead == 'i') ADVANCE(1003); END_STATE(); case 943: - if (lookahead == 'i') ADVANCE(1128); + if (lookahead == 'i') ADVANCE(1134); END_STATE(); case 944: - if (lookahead == 'i') ADVANCE(1413); + if (lookahead == 'i') ADVANCE(714); END_STATE(); case 945: - if (lookahead == 'i') ADVANCE(1108); + if (lookahead == 'i') ADVANCE(1158); END_STATE(); case 946: - if (lookahead == 'i') ADVANCE(1447); + if (lookahead == 'i') ADVANCE(574); END_STATE(); case 947: - if (lookahead == 'i') ADVANCE(764); + if (lookahead == 'i') ADVANCE(1131); END_STATE(); case 948: - if (lookahead == 'i') ADVANCE(1466); + if (lookahead == 'i') ADVANCE(1417); END_STATE(); case 949: - if (lookahead == 'i') ADVANCE(1538); + if (lookahead == 'i') ADVANCE(1451); END_STATE(); case 950: - if (lookahead == 'i') ADVANCE(1451); + if (lookahead == 'i') ADVANCE(767); END_STATE(); case 951: - if (lookahead == 'i') ADVANCE(1369); - if (lookahead == 'p') ADVANCE(853); + if (lookahead == 'i') ADVANCE(1470); END_STATE(); case 952: - if (lookahead == 'i') ADVANCE(535); + if (lookahead == 'i') ADVANCE(1542); END_STATE(); case 953: - if (lookahead == 'i') ADVANCE(1383); - if (lookahead == 'r') ADVANCE(542); + if (lookahead == 'i') ADVANCE(1455); END_STATE(); case 954: - if (lookahead == 'i') ADVANCE(1084); + if (lookahead == 'i') ADVANCE(1373); + if (lookahead == 'p') ADVANCE(856); END_STATE(); case 955: - if (lookahead == 'i') ADVANCE(1148); + if (lookahead == 'i') ADVANCE(535); END_STATE(); case 956: - if (lookahead == 'i') ADVANCE(1540); + if (lookahead == 'i') ADVANCE(1387); + if (lookahead == 'r') ADVANCE(542); END_STATE(); case 957: - if (lookahead == 'i') ADVANCE(1433); + if (lookahead == 'i') ADVANCE(1087); END_STATE(); case 958: - if (lookahead == 'i') ADVANCE(1382); + if (lookahead == 'i') ADVANCE(1151); END_STATE(); case 959: - if (lookahead == 'i') ADVANCE(1076); - if (lookahead == 's') ADVANCE(811); + if (lookahead == 'i') ADVANCE(1544); END_STATE(); case 960: - if (lookahead == 'i') ADVANCE(531); + if (lookahead == 'i') ADVANCE(1437); END_STATE(); case 961: - if (lookahead == 'i') ADVANCE(1209); + if (lookahead == 'i') ADVANCE(1386); END_STATE(); case 962: - if (lookahead == 'i') ADVANCE(1048); + if (lookahead == 'i') ADVANCE(1079); + if (lookahead == 's') ADVANCE(814); END_STATE(); case 963: - if (lookahead == 'i') ADVANCE(1048); - if (lookahead == 'l') ADVANCE(1232); + if (lookahead == 'i') ADVANCE(531); END_STATE(); case 964: - if (lookahead == 'i') ADVANCE(1090); + if (lookahead == 'i') ADVANCE(1212); END_STATE(); case 965: - if (lookahead == 'i') ADVANCE(1434); + if (lookahead == 'i') ADVANCE(1051); END_STATE(); case 966: - if (lookahead == 'i') ADVANCE(1377); + if (lookahead == 'i') ADVANCE(1051); + if (lookahead == 'l') ADVANCE(1235); END_STATE(); case 967: - if (lookahead == 'i') ADVANCE(700); + if (lookahead == 'i') ADVANCE(1093); END_STATE(); case 968: - if (lookahead == 'i') ADVANCE(753); + if (lookahead == 'i') ADVANCE(1438); END_STATE(); case 969: - if (lookahead == 'i') ADVANCE(1230); + if (lookahead == 'i') ADVANCE(1381); END_STATE(); case 970: - if (lookahead == 'i') ADVANCE(1455); + if (lookahead == 'i') ADVANCE(703); END_STATE(); case 971: - if (lookahead == 'i') ADVANCE(1042); + if (lookahead == 'i') ADVANCE(756); END_STATE(); case 972: - if (lookahead == 'i') ADVANCE(1380); + if (lookahead == 'i') ADVANCE(1233); END_STATE(); case 973: - if (lookahead == 'i') ADVANCE(554); + if (lookahead == 'i') ADVANCE(1459); END_STATE(); case 974: - if (lookahead == 'i') ADVANCE(1034); + if (lookahead == 'i') ADVANCE(1045); END_STATE(); case 975: - if (lookahead == 'i') ADVANCE(1381); - if (lookahead == 'p') ADVANCE(514); + if (lookahead == 'i') ADVANCE(1384); END_STATE(); case 976: - if (lookahead == 'i') ADVANCE(1277); + if (lookahead == 'i') ADVANCE(1037); END_STATE(); case 977: - if (lookahead == 'i') ADVANCE(1277); - if (lookahead == 'n') ADVANCE(741); - if (lookahead == 'p') ADVANCE(905); + if (lookahead == 'i') ADVANCE(1385); + if (lookahead == 'p') ADVANCE(514); END_STATE(); case 978: - if (lookahead == 'i') ADVANCE(592); + if (lookahead == 'i') ADVANCE(558); END_STATE(); case 979: - if (lookahead == 'i') ADVANCE(1471); + if (lookahead == 'i') ADVANCE(1280); END_STATE(); case 980: - if (lookahead == 'i') ADVANCE(588); + if (lookahead == 'i') ADVANCE(1280); + if (lookahead == 'n') ADVANCE(744); + if (lookahead == 'p') ADVANCE(909); END_STATE(); case 981: - if (lookahead == 'j') ADVANCE(1226); - if (lookahead == 'l') ADVANCE(816); - if (lookahead == 's') ADVANCE(1025); + if (lookahead == 'i') ADVANCE(595); END_STATE(); case 982: - if (lookahead == 'k') ADVANCE(4244); + if (lookahead == 'i') ADVANCE(1475); END_STATE(); case 983: - if (lookahead == 'k') ADVANCE(4243); + if (lookahead == 'i') ADVANCE(591); END_STATE(); case 984: - if (lookahead == 'k') ADVANCE(4031); + if (lookahead == 'j') ADVANCE(1229); + if (lookahead == 'l') ADVANCE(819); + if (lookahead == 's') ADVANCE(1028); END_STATE(); case 985: - if (lookahead == 'k') ADVANCE(847); + if (lookahead == 'k') ADVANCE(4262); END_STATE(); case 986: - if (lookahead == 'k') ADVANCE(1356); + if (lookahead == 'k') ADVANCE(4261); END_STATE(); case 987: - if (lookahead == 'k') ADVANCE(914); - if (lookahead == 't') ADVANCE(518); + if (lookahead == 'k') ADVANCE(4045); END_STATE(); case 988: - if (lookahead == 'k') ADVANCE(712); + if (lookahead == 'k') ADVANCE(850); END_STATE(); case 989: - if (lookahead == 'k') ADVANCE(1204); + if (lookahead == 'k') ADVANCE(1358); END_STATE(); case 990: - if (lookahead == 'k') ADVANCE(734); + if (lookahead == 'k') ADVANCE(918); + if (lookahead == 't') ADVANCE(518); END_STATE(); case 991: - if (lookahead == 'k') ADVANCE(758); + if (lookahead == 'k') ADVANCE(715); END_STATE(); case 992: - if (lookahead == 'k') ADVANCE(728); - if (lookahead == 't') ADVANCE(648); + if (lookahead == 'k') ADVANCE(1207); END_STATE(); case 993: - if (lookahead == 'k') ADVANCE(1482); + if (lookahead == 'k') ADVANCE(737); END_STATE(); case 994: - if (lookahead == 'l') ADVANCE(4244); + if (lookahead == 'k') ADVANCE(761); END_STATE(); case 995: - if (lookahead == 'l') ADVANCE(994); + if (lookahead == 'k') ADVANCE(731); + if (lookahead == 't') ADVANCE(651); END_STATE(); case 996: - if (lookahead == 'l') ADVANCE(994); - if (lookahead == 's') ADVANCE(868); + if (lookahead == 'k') ADVANCE(1486); END_STATE(); case 997: - if (lookahead == 'l') ADVANCE(4191); - if (lookahead == 'n') ADVANCE(669); - if (lookahead == 'u') ADVANCE(1143); + if (lookahead == 'l') ADVANCE(4262); END_STATE(); case 998: - if (lookahead == 'l') ADVANCE(3828); - if (lookahead == 'r') ADVANCE(3830); + if (lookahead == 'l') ADVANCE(997); END_STATE(); case 999: - if (lookahead == 'l') ADVANCE(3918); + if (lookahead == 'l') ADVANCE(997); + if (lookahead == 's') ADVANCE(871); END_STATE(); case 1000: - if (lookahead == 'l') ADVANCE(675); + if (lookahead == 'l') ADVANCE(4209); + if (lookahead == 'n') ADVANCE(672); + if (lookahead == 'u') ADVANCE(1146); END_STATE(); case 1001: - if (lookahead == 'l') ADVANCE(952); - if (lookahead == 'p') ADVANCE(898); - if (lookahead == 'u') ADVANCE(1423); + if (lookahead == 'l') ADVANCE(3842); + if (lookahead == 'r') ADVANCE(3844); END_STATE(); case 1002: - if (lookahead == 'l') ADVANCE(1167); + if (lookahead == 'l') ADVANCE(3932); END_STATE(); case 1003: - if (lookahead == 'l') ADVANCE(836); - if (lookahead == 't') ADVANCE(4123); + if (lookahead == 'l') ADVANCE(678); END_STATE(); case 1004: - if (lookahead == 'l') ADVANCE(1049); - if (lookahead == 'r') ADVANCE(1365); + if (lookahead == 'l') ADVANCE(955); + if (lookahead == 'p') ADVANCE(902); + if (lookahead == 'u') ADVANCE(1427); END_STATE(); case 1005: - if (lookahead == 'l') ADVANCE(1514); + if (lookahead == 'l') ADVANCE(1170); END_STATE(); case 1006: - if (lookahead == 'l') ADVANCE(1174); + if (lookahead == 'l') ADVANCE(839); + if (lookahead == 't') ADVANCE(4141); END_STATE(); case 1007: - if (lookahead == 'l') ADVANCE(1406); + if (lookahead == 'l') ADVANCE(1052); + if (lookahead == 'r') ADVANCE(1369); END_STATE(); case 1008: - if (lookahead == 'l') ADVANCE(391); + if (lookahead == 'l') ADVANCE(1518); END_STATE(); case 1009: - if (lookahead == 'l') ADVANCE(910); + if (lookahead == 'l') ADVANCE(1177); END_STATE(); case 1010: - if (lookahead == 'l') ADVANCE(1240); + if (lookahead == 'l') ADVANCE(1410); END_STATE(); case 1011: - if (lookahead == 'l') ADVANCE(402); + if (lookahead == 'l') ADVANCE(391); END_STATE(); case 1012: - if (lookahead == 'l') ADVANCE(4139); + if (lookahead == 'l') ADVANCE(914); END_STATE(); case 1013: - if (lookahead == 'l') ADVANCE(848); + if (lookahead == 'l') ADVANCE(1243); END_STATE(); case 1014: - if (lookahead == 'l') ADVANCE(1356); + if (lookahead == 'l') ADVANCE(404); END_STATE(); case 1015: - if (lookahead == 'l') ADVANCE(687); + if (lookahead == 'l') ADVANCE(4157); END_STATE(); case 1016: - if (lookahead == 'l') ADVANCE(904); + if (lookahead == 'l') ADVANCE(851); END_STATE(); case 1017: - if (lookahead == 'l') ADVANCE(1366); - if (lookahead == 'm') ADVANCE(994); - if (lookahead == 'z') ADVANCE(4244); + if (lookahead == 'l') ADVANCE(1358); END_STATE(); case 1018: - if (lookahead == 'l') ADVANCE(1503); + if (lookahead == 'l') ADVANCE(690); END_STATE(); case 1019: - if (lookahead == 'l') ADVANCE(393); + if (lookahead == 'l') ADVANCE(908); END_STATE(); case 1020: - if (lookahead == 'l') ADVANCE(825); - if (lookahead == 'p') ADVANCE(1176); + if (lookahead == 'l') ADVANCE(1370); + if (lookahead == 'm') ADVANCE(997); + if (lookahead == 'z') ADVANCE(4262); END_STATE(); case 1021: - if (lookahead == 'l') ADVANCE(826); - if (lookahead == 'n') ADVANCE(4244); + if (lookahead == 'l') ADVANCE(1507); END_STATE(); case 1022: - if (lookahead == 'l') ADVANCE(929); + if (lookahead == 'l') ADVANCE(393); END_STATE(); case 1023: - if (lookahead == 'l') ADVANCE(1008); + if (lookahead == 'l') ADVANCE(828); + if (lookahead == 'p') ADVANCE(1179); END_STATE(); case 1024: - if (lookahead == 'l') ADVANCE(950); + if (lookahead == 'l') ADVANCE(829); + if (lookahead == 'n') ADVANCE(4262); END_STATE(); case 1025: - if (lookahead == 'l') ADVANCE(925); + if (lookahead == 'l') ADVANCE(933); END_STATE(); case 1026: - if (lookahead == 'l') ADVANCE(1232); + if (lookahead == 'l') ADVANCE(1011); END_STATE(); case 1027: - if (lookahead == 'l') ADVANCE(1181); + if (lookahead == 'l') ADVANCE(953); END_STATE(); case 1028: - if (lookahead == 'l') ADVANCE(1055); + if (lookahead == 'l') ADVANCE(929); END_STATE(); case 1029: - if (lookahead == 'l') ADVANCE(1234); + if (lookahead == 'l') ADVANCE(1235); END_STATE(); case 1030: - if (lookahead == 'l') ADVANCE(1014); + if (lookahead == 'l') ADVANCE(1184); END_STATE(); case 1031: - if (lookahead == 'l') ADVANCE(1225); + if (lookahead == 'l') ADVANCE(1058); END_STATE(); case 1032: - if (lookahead == 'l') ADVANCE(1225); - if (lookahead == 'r') ADVANCE(411); + if (lookahead == 'l') ADVANCE(1237); END_STATE(); case 1033: - if (lookahead == 'l') ADVANCE(544); + if (lookahead == 'l') ADVANCE(1017); END_STATE(); case 1034: - if (lookahead == 'l') ADVANCE(712); + if (lookahead == 'l') ADVANCE(1228); END_STATE(); case 1035: - if (lookahead == 'l') ADVANCE(1012); + if (lookahead == 'l') ADVANCE(1228); + if (lookahead == 'r') ADVANCE(413); END_STATE(); case 1036: - if (lookahead == 'l') ADVANCE(999); + if (lookahead == 'l') ADVANCE(544); END_STATE(); case 1037: - if (lookahead == 'l') ADVANCE(931); + if (lookahead == 'l') ADVANCE(715); END_STATE(); case 1038: - if (lookahead == 'l') ADVANCE(830); + if (lookahead == 'l') ADVANCE(1015); END_STATE(); case 1039: - if (lookahead == 'l') ADVANCE(1198); + if (lookahead == 'l') ADVANCE(1002); END_STATE(); case 1040: - if (lookahead == 'l') ADVANCE(813); + if (lookahead == 'l') ADVANCE(935); END_STATE(); case 1041: - if (lookahead == 'l') ADVANCE(758); + if (lookahead == 'l') ADVANCE(833); END_STATE(); case 1042: - if (lookahead == 'l') ADVANCE(764); + if (lookahead == 'l') ADVANCE(1201); END_STATE(); case 1043: - if (lookahead == 'l') ADVANCE(780); + if (lookahead == 'l') ADVANCE(816); END_STATE(); case 1044: - if (lookahead == 'l') ADVANCE(780); - if (lookahead == 't') ADVANCE(4133); + if (lookahead == 'l') ADVANCE(761); END_STATE(); case 1045: - if (lookahead == 'l') ADVANCE(729); + if (lookahead == 'l') ADVANCE(767); END_STATE(); case 1046: - if (lookahead == 'l') ADVANCE(1202); - if (lookahead == 'r') ADVANCE(812); + if (lookahead == 'l') ADVANCE(783); END_STATE(); case 1047: - if (lookahead == 'l') ADVANCE(1526); + if (lookahead == 'l') ADVANCE(783); + if (lookahead == 't') ADVANCE(4151); END_STATE(); case 1048: - if (lookahead == 'l') ADVANCE(782); + if (lookahead == 'l') ADVANCE(732); END_STATE(); case 1049: - if (lookahead == 'l') ADVANCE(412); - if (lookahead == 't') ADVANCE(803); + if (lookahead == 'l') ADVANCE(1205); + if (lookahead == 'r') ADVANCE(815); END_STATE(); case 1050: - if (lookahead == 'l') ADVANCE(576); + if (lookahead == 'l') ADVANCE(1530); END_STATE(); case 1051: - if (lookahead == 'l') ADVANCE(659); + if (lookahead == 'l') ADVANCE(785); END_STATE(); case 1052: - if (lookahead == 'l') ADVANCE(1382); + if (lookahead == 'l') ADVANCE(414); + if (lookahead == 't') ADVANCE(806); END_STATE(); case 1053: - if (lookahead == 'l') ADVANCE(930); + if (lookahead == 'l') ADVANCE(579); END_STATE(); case 1054: - if (lookahead == 'l') ADVANCE(1521); - if (lookahead == 'r') ADVANCE(4244); + if (lookahead == 'l') ADVANCE(662); END_STATE(); case 1055: - if (lookahead == 'l') ADVANCE(935); + if (lookahead == 'l') ADVANCE(1386); END_STATE(); case 1056: - if (lookahead == 'l') ADVANCE(580); + if (lookahead == 'l') ADVANCE(934); END_STATE(); case 1057: - if (lookahead == 'l') ADVANCE(1043); + if (lookahead == 'l') ADVANCE(1525); + if (lookahead == 'r') ADVANCE(4262); END_STATE(); case 1058: - if (lookahead == 'l') ADVANCE(566); + if (lookahead == 'l') ADVANCE(939); END_STATE(); case 1059: - if (lookahead == 'l') ADVANCE(1392); + if (lookahead == 'l') ADVANCE(583); END_STATE(); case 1060: - if (lookahead == 'l') ADVANCE(980); + if (lookahead == 'l') ADVANCE(1046); END_STATE(); case 1061: - if (lookahead == 'l') ADVANCE(427); + if (lookahead == 'l') ADVANCE(569); END_STATE(); case 1062: - if (lookahead == 'l') ADVANCE(1061); + if (lookahead == 'l') ADVANCE(1396); END_STATE(); case 1063: - if (lookahead == 'l') ADVANCE(834); - if (lookahead == 'o') ADVANCE(1160); + if (lookahead == 'l') ADVANCE(983); END_STATE(); case 1064: - if (lookahead == 'l') ADVANCE(972); + if (lookahead == 'l') ADVANCE(427); END_STATE(); case 1065: - if (lookahead == 'l') ADVANCE(601); + if (lookahead == 'l') ADVANCE(1064); END_STATE(); case 1066: - if (lookahead == 'l') ADVANCE(973); + if (lookahead == 'l') ADVANCE(837); + if (lookahead == 'o') ADVANCE(1163); END_STATE(); case 1067: - if (lookahead == 'm') ADVANCE(4244); + if (lookahead == 'l') ADVANCE(975); END_STATE(); case 1068: - if (lookahead == 'm') ADVANCE(994); + if (lookahead == 'l') ADVANCE(604); END_STATE(); case 1069: - if (lookahead == 'm') ADVANCE(994); - if (lookahead == 'z') ADVANCE(4244); + if (lookahead == 'l') ADVANCE(978); END_STATE(); case 1070: - if (lookahead == 'm') ADVANCE(4197); + if (lookahead == 'm') ADVANCE(4262); END_STATE(); case 1071: - if (lookahead == 'm') ADVANCE(521); - if (lookahead == 's') ADVANCE(1183); - if (lookahead == 't') ADVANCE(1303); - if (lookahead == 'u') ADVANCE(1147); - if (lookahead == 'w') ADVANCE(890); + if (lookahead == 'm') ADVANCE(997); END_STATE(); case 1072: - if (lookahead == 'm') ADVANCE(678); - if (lookahead == 's') ADVANCE(883); + if (lookahead == 'm') ADVANCE(997); + if (lookahead == 'z') ADVANCE(4262); END_STATE(); case 1073: - if (lookahead == 'm') ADVANCE(910); + if (lookahead == 'm') ADVANCE(4215); END_STATE(); case 1074: - if (lookahead == 'm') ADVANCE(1240); + if (lookahead == 'm') ADVANCE(521); + if (lookahead == 's') ADVANCE(1186); + if (lookahead == 't') ADVANCE(1305); + if (lookahead == 'u') ADVANCE(1150); + if (lookahead == 'w') ADVANCE(893); END_STATE(); case 1075: - if (lookahead == 'm') ADVANCE(1102); + if (lookahead == 'm') ADVANCE(681); + if (lookahead == 's') ADVANCE(886); END_STATE(); case 1076: - if (lookahead == 'm') ADVANCE(1274); + if (lookahead == 'm') ADVANCE(914); END_STATE(); case 1077: - if (lookahead == 'm') ADVANCE(1274); - if (lookahead == 'n') ADVANCE(1387); + if (lookahead == 'm') ADVANCE(1243); END_STATE(); case 1078: - if (lookahead == 'm') ADVANCE(1272); + if (lookahead == 'm') ADVANCE(1105); END_STATE(); case 1079: - if (lookahead == 'm') ADVANCE(1272); - if (lookahead == 'n') ADVANCE(1445); + if (lookahead == 'm') ADVANCE(1277); END_STATE(); case 1080: - if (lookahead == 'm') ADVANCE(1241); + if (lookahead == 'm') ADVANCE(1277); + if (lookahead == 'n') ADVANCE(1391); END_STATE(); case 1081: - if (lookahead == 'm') ADVANCE(1535); + if (lookahead == 'm') ADVANCE(1275); END_STATE(); case 1082: - if (lookahead == 'm') ADVANCE(568); + if (lookahead == 'm') ADVANCE(1275); + if (lookahead == 'n') ADVANCE(1449); END_STATE(); case 1083: - if (lookahead == 'm') ADVANCE(1131); + if (lookahead == 'm') ADVANCE(1244); END_STATE(); case 1084: - if (lookahead == 'm') ADVANCE(712); + if (lookahead == 'm') ADVANCE(1539); END_STATE(); case 1085: - if (lookahead == 'm') ADVANCE(1223); + if (lookahead == 'm') ADVANCE(571); END_STATE(); case 1086: - if (lookahead == 'm') ADVANCE(1223); - if (lookahead == 'n') ADVANCE(565); + if (lookahead == 'm') ADVANCE(1134); END_STATE(); case 1087: - if (lookahead == 'm') ADVANCE(1223); - if (lookahead == 'p') ADVANCE(1033); - if (lookahead == 'v') ADVANCE(779); + if (lookahead == 'm') ADVANCE(715); END_STATE(); case 1088: - if (lookahead == 'm') ADVANCE(577); + if (lookahead == 'm') ADVANCE(1226); END_STATE(); case 1089: - if (lookahead == 'm') ADVANCE(947); + if (lookahead == 'm') ADVANCE(1226); + if (lookahead == 'n') ADVANCE(568); END_STATE(); case 1090: - if (lookahead == 'm') ADVANCE(495); + if (lookahead == 'm') ADVANCE(1226); + if (lookahead == 'p') ADVANCE(1036); + if (lookahead == 'v') ADVANCE(782); END_STATE(); case 1091: - if (lookahead == 'm') ADVANCE(491); + if (lookahead == 'm') ADVANCE(580); END_STATE(); case 1092: - if (lookahead == 'm') ADVANCE(742); + if (lookahead == 'm') ADVANCE(950); END_STATE(); case 1093: - if (lookahead == 'm') ADVANCE(1073); + if (lookahead == 'm') ADVANCE(495); END_STATE(); case 1094: - if (lookahead == 'm') ADVANCE(936); + if (lookahead == 'm') ADVANCE(491); END_STATE(); case 1095: - if (lookahead == 'm') ADVANCE(1088); + if (lookahead == 'm') ADVANCE(745); END_STATE(); case 1096: - if (lookahead == 'm') ADVANCE(517); + if (lookahead == 'm') ADVANCE(1076); END_STATE(); case 1097: - if (lookahead == 'm') ADVANCE(1270); - if (lookahead == 'n') ADVANCE(1418); - if (lookahead == 's') ADVANCE(392); + if (lookahead == 'm') ADVANCE(940); END_STATE(); case 1098: - if (lookahead == 'm') ADVANCE(1089); + if (lookahead == 'm') ADVANCE(1091); END_STATE(); case 1099: - if (lookahead == 'm') ADVANCE(788); - if (lookahead == 'p') ADVANCE(970); + if (lookahead == 'm') ADVANCE(517); END_STATE(); case 1100: if (lookahead == 'm') ADVANCE(1273); - if (lookahead == 'v') ADVANCE(712); + if (lookahead == 'n') ADVANCE(1422); + if (lookahead == 's') ADVANCE(392); END_STATE(); case 1101: - if (lookahead == 'm') ADVANCE(941); + if (lookahead == 'm') ADVANCE(1092); END_STATE(); case 1102: - if (lookahead == 'n') ADVANCE(4244); + if (lookahead == 'm') ADVANCE(791); + if (lookahead == 'p') ADVANCE(973); END_STATE(); case 1103: - if (lookahead == 'n') ADVANCE(4244); - if (lookahead == 'o') ADVANCE(852); + if (lookahead == 'm') ADVANCE(1276); + if (lookahead == 'v') ADVANCE(715); END_STATE(); case 1104: - if (lookahead == 'n') ADVANCE(1536); + if (lookahead == 'm') ADVANCE(945); END_STATE(); case 1105: - if (lookahead == 'n') ADVANCE(911); + if (lookahead == 'n') ADVANCE(4262); END_STATE(); case 1106: - if (lookahead == 'n') ADVANCE(4177); + if (lookahead == 'n') ADVANCE(4262); + if (lookahead == 'o') ADVANCE(855); END_STATE(); case 1107: - if (lookahead == 'n') ADVANCE(977); - if (lookahead == 'p') ADVANCE(1264); + if (lookahead == 'n') ADVANCE(1540); END_STATE(); case 1108: - if (lookahead == 'n') ADVANCE(3780); + if (lookahead == 'n') ADVANCE(915); END_STATE(); case 1109: - if (lookahead == 'n') ADVANCE(4031); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); + if (lookahead == 'n') ADVANCE(4195); END_STATE(); case 1110: - if (lookahead == 'n') ADVANCE(3671); + if (lookahead == 'n') ADVANCE(980); + if (lookahead == 'p') ADVANCE(1267); END_STATE(); case 1111: - if (lookahead == 'n') ADVANCE(3583); + if (lookahead == 'n') ADVANCE(3790); END_STATE(); case 1112: - if (lookahead == 'n') ADVANCE(3620); + if (lookahead == 'n') ADVANCE(4045); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4038); END_STATE(); case 1113: - if (lookahead == 'n') ADVANCE(675); + if (lookahead == 'n') ADVANCE(3685); END_STATE(); case 1114: - if (lookahead == 'n') ADVANCE(1167); + if (lookahead == 'n') ADVANCE(3597); END_STATE(); case 1115: - if (lookahead == 'n') ADVANCE(852); + if (lookahead == 'n') ADVANCE(3634); END_STATE(); case 1116: - if (lookahead == 'n') ADVANCE(533); + if (lookahead == 'n') ADVANCE(678); END_STATE(); case 1117: - if (lookahead == 'n') ADVANCE(688); + if (lookahead == 'n') ADVANCE(1170); END_STATE(); case 1118: - if (lookahead == 'n') ADVANCE(664); + if (lookahead == 'n') ADVANCE(855); END_STATE(); case 1119: - if (lookahead == 'n') ADVANCE(697); + if (lookahead == 'n') ADVANCE(533); END_STATE(); case 1120: - if (lookahead == 'n') ADVANCE(1406); + if (lookahead == 'n') ADVANCE(691); END_STATE(); case 1121: - if (lookahead == 'n') ADVANCE(1406); - if (lookahead == 'x') ADVANCE(415); + if (lookahead == 'n') ADVANCE(667); END_STATE(); case 1122: - if (lookahead == 'n') ADVANCE(652); + if (lookahead == 'n') ADVANCE(700); END_STATE(); case 1123: - if (lookahead == 'n') ADVANCE(856); + if (lookahead == 'n') ADVANCE(1410); END_STATE(); case 1124: - if (lookahead == 'n') ADVANCE(982); + if (lookahead == 'n') ADVANCE(1410); + if (lookahead == 'x') ADVANCE(417); END_STATE(); case 1125: - if (lookahead == 'n') ADVANCE(910); + if (lookahead == 'n') ADVANCE(655); END_STATE(); case 1126: - if (lookahead == 'n') ADVANCE(843); + if (lookahead == 'n') ADVANCE(859); END_STATE(); case 1127: - if (lookahead == 'n') ADVANCE(867); - if (lookahead == 'x') ADVANCE(1458); + if (lookahead == 'n') ADVANCE(985); END_STATE(); case 1128: - if (lookahead == 'n') ADVANCE(4127); + if (lookahead == 'n') ADVANCE(914); END_STATE(); case 1129: - if (lookahead == 'n') ADVANCE(1182); + if (lookahead == 'n') ADVANCE(846); END_STATE(); case 1130: - if (lookahead == 'n') ADVANCE(704); + if (lookahead == 'n') ADVANCE(870); + if (lookahead == 'x') ADVANCE(1462); END_STATE(); case 1131: - if (lookahead == 'n') ADVANCE(1356); + if (lookahead == 'n') ADVANCE(4145); END_STATE(); case 1132: - if (lookahead == 'n') ADVANCE(904); + if (lookahead == 'n') ADVANCE(1185); END_STATE(); case 1133: - if (lookahead == 'n') ADVANCE(561); + if (lookahead == 'n') ADVANCE(707); END_STATE(); case 1134: - if (lookahead == 'n') ADVANCE(679); + if (lookahead == 'n') ADVANCE(1358); END_STATE(); case 1135: - if (lookahead == 'n') ADVANCE(679); - if (lookahead == 's') ADVANCE(3763); + if (lookahead == 'n') ADVANCE(908); END_STATE(); case 1136: - if (lookahead == 'n') ADVANCE(680); + if (lookahead == 'n') ADVANCE(564); END_STATE(); case 1137: - if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'n') ADVANCE(682); END_STATE(); case 1138: - if (lookahead == 'n') ADVANCE(1396); + if (lookahead == 'n') ADVANCE(682); + if (lookahead == 's') ADVANCE(3773); END_STATE(); case 1139: - if (lookahead == 'n') ADVANCE(1374); + if (lookahead == 'n') ADVANCE(683); END_STATE(); case 1140: - if (lookahead == 'n') ADVANCE(912); + if (lookahead == 'n') ADVANCE(656); END_STATE(); case 1141: - if (lookahead == 'n') ADVANCE(1431); + if (lookahead == 'n') ADVANCE(1400); END_STATE(); case 1142: - if (lookahead == 'n') ADVANCE(712); + if (lookahead == 'n') ADVANCE(1378); END_STATE(); case 1143: - if (lookahead == 'n') ADVANCE(1425); + if (lookahead == 'n') ADVANCE(916); END_STATE(); case 1144: - if (lookahead == 'n') ADVANCE(565); + if (lookahead == 'n') ADVANCE(1435); END_STATE(); case 1145: - if (lookahead == 'n') ADVANCE(565); - if (lookahead == 'p') ADVANCE(1050); - if (lookahead == 'v') ADVANCE(779); + if (lookahead == 'n') ADVANCE(715); END_STATE(); case 1146: - if (lookahead == 'n') ADVANCE(1424); + if (lookahead == 'n') ADVANCE(1429); END_STATE(); case 1147: - if (lookahead == 'n') ADVANCE(976); + if (lookahead == 'n') ADVANCE(568); END_STATE(); case 1148: - if (lookahead == 'n') ADVANCE(787); + if (lookahead == 'n') ADVANCE(568); + if (lookahead == 'p') ADVANCE(1053); + if (lookahead == 'v') ADVANCE(782); END_STATE(); case 1149: - if (lookahead == 'n') ADVANCE(636); + if (lookahead == 'n') ADVANCE(1428); END_STATE(); case 1150: - if (lookahead == 'n') ADVANCE(692); + if (lookahead == 'n') ADVANCE(979); END_STATE(); case 1151: - if (lookahead == 'n') ADVANCE(692); - if (lookahead == 'x') ADVANCE(1256); + if (lookahead == 'n') ADVANCE(790); END_STATE(); case 1152: - if (lookahead == 'n') ADVANCE(864); + if (lookahead == 'n') ADVANCE(639); END_STATE(); case 1153: - if (lookahead == 'n') ADVANCE(1435); + if (lookahead == 'n') ADVANCE(695); END_STATE(); case 1154: - if (lookahead == 'n') ADVANCE(1515); + if (lookahead == 'n') ADVANCE(695); + if (lookahead == 'x') ADVANCE(1259); END_STATE(); case 1155: - if (lookahead == 'n') ADVANCE(861); + if (lookahead == 'n') ADVANCE(867); END_STATE(); case 1156: - if (lookahead == 'n') ADVANCE(933); + if (lookahead == 'n') ADVANCE(1439); END_STATE(); case 1157: - if (lookahead == 'n') ADVANCE(933); - if (lookahead == 'p') ADVANCE(702); + if (lookahead == 'n') ADVANCE(1519); END_STATE(); case 1158: - if (lookahead == 'n') ADVANCE(1372); + if (lookahead == 'n') ADVANCE(864); END_STATE(); case 1159: - if (lookahead == 'n') ADVANCE(1039); + if (lookahead == 'n') ADVANCE(937); END_STATE(); case 1160: - if (lookahead == 'n') ADVANCE(821); + if (lookahead == 'n') ADVANCE(937); + if (lookahead == 'p') ADVANCE(705); END_STATE(); case 1161: - if (lookahead == 'n') ADVANCE(1488); + if (lookahead == 'n') ADVANCE(1376); END_STATE(); case 1162: - if (lookahead == 'n') ADVANCE(553); + if (lookahead == 'n') ADVANCE(1042); END_STATE(); case 1163: - if (lookahead == 'n') ADVANCE(553); - if (lookahead == 't') ADVANCE(1356); + if (lookahead == 'n') ADVANCE(824); END_STATE(); case 1164: - if (lookahead == 'n') ADVANCE(1403); + if (lookahead == 'n') ADVANCE(1492); END_STATE(); case 1165: - if (lookahead == 'n') ADVANCE(1386); + if (lookahead == 'n') ADVANCE(553); END_STATE(); case 1166: - if (lookahead == 'n') ADVANCE(710); + if (lookahead == 'n') ADVANCE(553); + if (lookahead == 't') ADVANCE(1358); END_STATE(); case 1167: - if (lookahead == 'o') ADVANCE(1541); + if (lookahead == 'n') ADVANCE(1407); END_STATE(); case 1168: - if (lookahead == 'o') ADVANCE(4244); + if (lookahead == 'n') ADVANCE(1390); END_STATE(); case 1169: - if (lookahead == 'o') ADVANCE(1068); - if (lookahead == 's') ADVANCE(1536); + if (lookahead == 'n') ADVANCE(713); END_STATE(); case 1170: - if (lookahead == 'o') ADVANCE(994); + if (lookahead == 'o') ADVANCE(1545); END_STATE(); case 1171: - if (lookahead == 'o') ADVANCE(1603); + if (lookahead == 'o') ADVANCE(4262); END_STATE(); case 1172: - if (lookahead == 'o') ADVANCE(675); + if (lookahead == 'o') ADVANCE(1071); + if (lookahead == 's') ADVANCE(1540); END_STATE(); case 1173: - if (lookahead == 'o') ADVANCE(836); + if (lookahead == 'o') ADVANCE(997); END_STATE(); case 1174: - if (lookahead == 'o') ADVANCE(852); + if (lookahead == 'o') ADVANCE(1607); END_STATE(); case 1175: - if (lookahead == 'o') ADVANCE(401); + if (lookahead == 'o') ADVANCE(678); END_STATE(); case 1176: - if (lookahead == 'o') ADVANCE(4121); + if (lookahead == 'o') ADVANCE(839); END_STATE(); case 1177: - if (lookahead == 'o') ADVANCE(456); + if (lookahead == 'o') ADVANCE(855); END_STATE(); case 1178: - if (lookahead == 'o') ADVANCE(1548); + if (lookahead == 'o') ADVANCE(401); END_STATE(); case 1179: - if (lookahead == 'o') ADVANCE(1296); + if (lookahead == 'o') ADVANCE(4139); END_STATE(); case 1180: - if (lookahead == 'o') ADVANCE(1365); + if (lookahead == 'o') ADVANCE(456); END_STATE(); case 1181: - if (lookahead == 'o') ADVANCE(606); + if (lookahead == 'o') ADVANCE(1552); END_STATE(); case 1182: - if (lookahead == 'o') ADVANCE(1406); + if (lookahead == 'o') ADVANCE(1298); END_STATE(); case 1183: - if (lookahead == 'o') ADVANCE(1305); + if (lookahead == 'o') ADVANCE(1369); END_STATE(); case 1184: - if (lookahead == 'o') ADVANCE(1543); + if (lookahead == 'o') ADVANCE(609); END_STATE(); case 1185: - if (lookahead == 'o') ADVANCE(690); + if (lookahead == 'o') ADVANCE(1410); END_STATE(); case 1186: - if (lookahead == 'o') ADVANCE(461); + if (lookahead == 'o') ADVANCE(1307); END_STATE(); case 1187: - if (lookahead == 'o') ADVANCE(1285); + if (lookahead == 'o') ADVANCE(1547); END_STATE(); case 1188: - if (lookahead == 'o') ADVANCE(1240); + if (lookahead == 'o') ADVANCE(693); END_STATE(); case 1189: - if (lookahead == 'o') ADVANCE(1240); - if (lookahead == 'u') ADVANCE(1368); + if (lookahead == 'o') ADVANCE(461); END_STATE(); case 1190: - if (lookahead == 'o') ADVANCE(1095); + if (lookahead == 'o') ADVANCE(1288); END_STATE(); case 1191: - if (lookahead == 'o') ADVANCE(1018); + if (lookahead == 'o') ADVANCE(1243); END_STATE(); case 1192: - if (lookahead == 'o') ADVANCE(1496); + if (lookahead == 'o') ADVANCE(1243); + if (lookahead == 'u') ADVANCE(1372); END_STATE(); case 1193: - if (lookahead == 'o') ADVANCE(626); + if (lookahead == 'o') ADVANCE(1098); END_STATE(); case 1194: - if (lookahead == 'o') ADVANCE(1102); + if (lookahead == 'o') ADVANCE(1021); END_STATE(); case 1195: - if (lookahead == 'o') ADVANCE(1512); - if (lookahead == 'p') ADVANCE(531); + if (lookahead == 'o') ADVANCE(1500); END_STATE(); case 1196: - if (lookahead == 'o') ADVANCE(841); + if (lookahead == 'o') ADVANCE(629); END_STATE(); case 1197: - if (lookahead == 'o') ADVANCE(1282); + if (lookahead == 'o') ADVANCE(1105); END_STATE(); case 1198: - if (lookahead == 'o') ADVANCE(638); + if (lookahead == 'o') ADVANCE(1516); + if (lookahead == 'p') ADVANCE(531); END_STATE(); case 1199: - if (lookahead == 'o') ADVANCE(1358); + if (lookahead == 'o') ADVANCE(844); END_STATE(); case 1200: - if (lookahead == 'o') ADVANCE(681); + if (lookahead == 'o') ADVANCE(1285); END_STATE(); case 1201: - if (lookahead == 'o') ADVANCE(1299); + if (lookahead == 'o') ADVANCE(641); END_STATE(); case 1202: - if (lookahead == 'o') ADVANCE(1142); + if (lookahead == 'o') ADVANCE(1360); END_STATE(); case 1203: - if (lookahead == 'o') ADVANCE(1245); + if (lookahead == 'o') ADVANCE(684); END_STATE(); case 1204: - if (lookahead == 'o') ADVANCE(1497); + if (lookahead == 'o') ADVANCE(1301); END_STATE(); case 1205: - if (lookahead == 'o') ADVANCE(1057); + if (lookahead == 'o') ADVANCE(1145); END_STATE(); case 1206: - if (lookahead == 'o') ADVANCE(1511); + if (lookahead == 'o') ADVANCE(1248); END_STATE(); case 1207: - if (lookahead == 'o') ADVANCE(1316); + if (lookahead == 'o') ADVANCE(1501); END_STATE(); case 1208: - if (lookahead == 'o') ADVANCE(1298); + if (lookahead == 'o') ADVANCE(1060); END_STATE(); case 1209: - if (lookahead == 'o') ADVANCE(1131); + if (lookahead == 'o') ADVANCE(1515); END_STATE(); case 1210: - if (lookahead == 'o') ADVANCE(409); + if (lookahead == 'o') ADVANCE(1318); END_STATE(); case 1211: - if (lookahead == 'o') ADVANCE(1051); + if (lookahead == 'o') ADVANCE(1300); END_STATE(); case 1212: - if (lookahead == 'o') ADVANCE(1519); + if (lookahead == 'o') ADVANCE(1134); END_STATE(); case 1213: - if (lookahead == 'o') ADVANCE(1294); + if (lookahead == 'o') ADVANCE(411); END_STATE(); case 1214: - if (lookahead == 'o') ADVANCE(1475); - if (lookahead == 'u') ADVANCE(995); + if (lookahead == 'o') ADVANCE(1054); END_STATE(); case 1215: - if (lookahead == 'o') ADVANCE(1308); + if (lookahead == 'o') ADVANCE(1523); END_STATE(); case 1216: - if (lookahead == 'o') ADVANCE(1172); + if (lookahead == 'o') ADVANCE(1296); END_STATE(); case 1217: - if (lookahead == 'o') ADVANCE(1449); + if (lookahead == 'o') ADVANCE(1479); + if (lookahead == 'u') ADVANCE(998); END_STATE(); case 1218: - if (lookahead == 'o') ADVANCE(1449); - if (lookahead == 's') ADVANCE(4031); + if (lookahead == 'o') ADVANCE(1310); END_STATE(); case 1219: - if (lookahead == 'o') ADVANCE(1288); + if (lookahead == 'o') ADVANCE(1175); END_STATE(); case 1220: - if (lookahead == 'o') ADVANCE(1410); - if (lookahead == 'u') ADVANCE(1036); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1593); + if (lookahead == 'o') ADVANCE(1453); END_STATE(); case 1221: - if (lookahead == 'o') ADVANCE(1290); + if (lookahead == 'o') ADVANCE(1453); + if (lookahead == 's') ADVANCE(4045); END_STATE(); case 1222: - if (lookahead == 'o') ADVANCE(1412); + if (lookahead == 'o') ADVANCE(1291); END_STATE(); case 1223: - if (lookahead == 'o') ADVANCE(1538); + if (lookahead == 'o') ADVANCE(1414); + if (lookahead == 'u') ADVANCE(1039); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1597); END_STATE(); case 1224: - if (lookahead == 'o') ADVANCE(851); + if (lookahead == 'o') ADVANCE(1293); END_STATE(); case 1225: - if (lookahead == 'o') ADVANCE(696); + if (lookahead == 'o') ADVANCE(1416); END_STATE(); case 1226: - if (lookahead == 'o') ADVANCE(918); + if (lookahead == 'o') ADVANCE(1542); END_STATE(); case 1227: - if (lookahead == 'o') ADVANCE(691); + if (lookahead == 'o') ADVANCE(854); END_STATE(); case 1228: - if (lookahead == 'o') ADVANCE(1267); + if (lookahead == 'o') ADVANCE(699); END_STATE(); case 1229: - if (lookahead == 'o') ADVANCE(1078); + if (lookahead == 'o') ADVANCE(922); END_STATE(); case 1230: - if (lookahead == 'o') ADVANCE(1139); + if (lookahead == 'o') ADVANCE(694); END_STATE(); case 1231: - if (lookahead == 'o') ADVANCE(1520); + if (lookahead == 'o') ADVANCE(1270); END_STATE(); case 1232: - if (lookahead == 'o') ADVANCE(517); + if (lookahead == 'o') ADVANCE(1081); END_STATE(); case 1233: - if (lookahead == 'o') ADVANCE(1530); + if (lookahead == 'o') ADVANCE(1142); END_STATE(); case 1234: - if (lookahead == 'o') ADVANCE(1197); + if (lookahead == 'o') ADVANCE(1524); END_STATE(); case 1235: - if (lookahead == 'o') ADVANCE(1080); + if (lookahead == 'o') ADVANCE(517); END_STATE(); case 1236: - if (lookahead == 'o') ADVANCE(1459); + if (lookahead == 'o') ADVANCE(1534); END_STATE(); case 1237: - if (lookahead == 'o') ADVANCE(1329); + if (lookahead == 'o') ADVANCE(1200); END_STATE(); case 1238: - if (lookahead == 'o') ADVANCE(1047); + if (lookahead == 'o') ADVANCE(1083); END_STATE(); case 1239: - if (lookahead == 'p') ADVANCE(518); + if (lookahead == 'o') ADVANCE(1463); END_STATE(); case 1240: - if (lookahead == 'p') ADVANCE(4244); + if (lookahead == 'o') ADVANCE(1331); END_STATE(); case 1241: - if (lookahead == 'p') ADVANCE(1063); + if (lookahead == 'o') ADVANCE(1050); END_STATE(); case 1242: - if (lookahead == 'p') ADVANCE(1561); + if (lookahead == 'p') ADVANCE(518); END_STATE(); case 1243: - if (lookahead == 'p') ADVANCE(664); + if (lookahead == 'p') ADVANCE(4262); END_STATE(); case 1244: - if (lookahead == 'p') ADVANCE(1032); + if (lookahead == 'p') ADVANCE(1066); END_STATE(); case 1245: - if (lookahead == 'p') ADVANCE(4134); + if (lookahead == 'p') ADVANCE(1565); END_STATE(); case 1246: - if (lookahead == 'p') ADVANCE(1493); + if (lookahead == 'p') ADVANCE(667); END_STATE(); case 1247: - if (lookahead == 'p') ADVANCE(1022); + if (lookahead == 'p') ADVANCE(1035); END_STATE(); case 1248: - if (lookahead == 'p') ADVANCE(702); + if (lookahead == 'p') ADVANCE(4152); END_STATE(); case 1249: - if (lookahead == 'p') ADVANCE(1038); + if (lookahead == 'p') ADVANCE(1497); END_STATE(); case 1250: - if (lookahead == 'p') ADVANCE(509); + if (lookahead == 'p') ADVANCE(1025); END_STATE(); case 1251: - if (lookahead == 'p') ADVANCE(1442); + if (lookahead == 'p') ADVANCE(705); END_STATE(); case 1252: - if (lookahead == 'p') ADVANCE(1009); + if (lookahead == 'p') ADVANCE(1041); END_STATE(); case 1253: - if (lookahead == 'p') ADVANCE(1242); + if (lookahead == 'p') ADVANCE(509); END_STATE(); case 1254: - if (lookahead == 'p') ADVANCE(1033); - if (lookahead == 'v') ADVANCE(779); + if (lookahead == 'p') ADVANCE(1446); END_STATE(); case 1255: - if (lookahead == 'p') ADVANCE(404); + if (lookahead == 'p') ADVANCE(1012); END_STATE(); case 1256: - if (lookahead == 'p') ADVANCE(514); + if (lookahead == 'p') ADVANCE(1245); END_STATE(); case 1257: - if (lookahead == 'p') ADVANCE(537); + if (lookahead == 'p') ADVANCE(1036); + if (lookahead == 'v') ADVANCE(782); END_STATE(); case 1258: - if (lookahead == 'p') ADVANCE(544); + if (lookahead == 'p') ADVANCE(406); END_STATE(); case 1259: - if (lookahead == 'p') ADVANCE(712); + if (lookahead == 'p') ADVANCE(514); END_STATE(); case 1260: - if (lookahead == 'p') ADVANCE(832); + if (lookahead == 'p') ADVANCE(537); END_STATE(); case 1261: - if (lookahead == 'p') ADVANCE(922); + if (lookahead == 'p') ADVANCE(544); END_STATE(); case 1262: - if (lookahead == 'p') ADVANCE(764); + if (lookahead == 'p') ADVANCE(715); END_STATE(); case 1263: - if (lookahead == 'p') ADVANCE(743); + if (lookahead == 'p') ADVANCE(835); END_STATE(); case 1264: - if (lookahead == 'p') ADVANCE(798); + if (lookahead == 'p') ADVANCE(926); END_STATE(); case 1265: - if (lookahead == 'p') ADVANCE(730); + if (lookahead == 'p') ADVANCE(767); END_STATE(); case 1266: - if (lookahead == 'p') ADVANCE(581); + if (lookahead == 'p') ADVANCE(746); END_STATE(); case 1267: - if (lookahead == 'p') ADVANCE(1472); + if (lookahead == 'p') ADVANCE(801); END_STATE(); case 1268: - if (lookahead == 'p') ADVANCE(763); + if (lookahead == 'p') ADVANCE(733); END_STATE(); case 1269: - if (lookahead == 'p') ADVANCE(763); - if (lookahead == 't') ADVANCE(888); + if (lookahead == 'p') ADVANCE(584); END_STATE(); case 1270: - if (lookahead == 'p') ADVANCE(1031); + if (lookahead == 'p') ADVANCE(1476); END_STATE(); case 1271: - if (lookahead == 'p') ADVANCE(1037); + if (lookahead == 'p') ADVANCE(766); END_STATE(); case 1272: - if (lookahead == 'p') ADVANCE(1353); + if (lookahead == 'p') ADVANCE(766); + if (lookahead == 't') ADVANCE(891); END_STATE(); case 1273: if (lookahead == 'p') ADVANCE(1034); END_STATE(); case 1274: - if (lookahead == 'p') ADVANCE(1183); + if (lookahead == 'p') ADVANCE(1040); END_STATE(); case 1275: - if (lookahead == 'p') ADVANCE(584); + if (lookahead == 'p') ADVANCE(1355); END_STATE(); case 1276: - if (lookahead == 'p') ADVANCE(597); + if (lookahead == 'p') ADVANCE(1037); END_STATE(); case 1277: - if (lookahead == 'q') ADVANCE(1514); + if (lookahead == 'p') ADVANCE(1186); END_STATE(); case 1278: - if (lookahead == 'q') ADVANCE(1517); + if (lookahead == 'p') ADVANCE(587); END_STATE(); case 1279: - if (lookahead == 'q') ADVANCE(1517); - if (lookahead == 's') ADVANCE(904); + if (lookahead == 'p') ADVANCE(600); END_STATE(); case 1280: - if (lookahead == 'q') ADVANCE(1024); - if (lookahead == 't') ADVANCE(1348); + if (lookahead == 'q') ADVANCE(1518); END_STATE(); case 1281: - if (lookahead == 'q') ADVANCE(1502); + if (lookahead == 'q') ADVANCE(1521); END_STATE(); case 1282: - if (lookahead == 'r') ADVANCE(4244); + if (lookahead == 'q') ADVANCE(1521); + if (lookahead == 's') ADVANCE(908); END_STATE(); case 1283: - if (lookahead == 'r') ADVANCE(4129); + if (lookahead == 'q') ADVANCE(1027); + if (lookahead == 't') ADVANCE(1350); END_STATE(); case 1284: - if (lookahead == 'r') ADVANCE(994); + if (lookahead == 'q') ADVANCE(1506); END_STATE(); case 1285: - if (lookahead == 'r') ADVANCE(985); + if (lookahead == 'r') ADVANCE(4262); END_STATE(); case 1286: - if (lookahead == 'r') ADVANCE(1281); + if (lookahead == 'r') ADVANCE(4147); END_STATE(); case 1287: - if (lookahead == 'r') ADVANCE(3778); + if (lookahead == 'r') ADVANCE(997); END_STATE(); case 1288: - if (lookahead == 'r') ADVANCE(3776); + if (lookahead == 'r') ADVANCE(988); END_STATE(); case 1289: - if (lookahead == 'r') ADVANCE(3836); + if (lookahead == 'r') ADVANCE(1284); END_STATE(); case 1290: - if (lookahead == 'r') ADVANCE(3834); + if (lookahead == 'r') ADVANCE(3788); END_STATE(); case 1291: - if (lookahead == 'r') ADVANCE(4031); + if (lookahead == 'r') ADVANCE(3786); END_STATE(); case 1292: - if (lookahead == 'r') ADVANCE(381); + if (lookahead == 'r') ADVANCE(3850); END_STATE(); case 1293: - if (lookahead == 'r') ADVANCE(1523); + if (lookahead == 'r') ADVANCE(3848); END_STATE(); case 1294: - if (lookahead == 'r') ADVANCE(675); + if (lookahead == 'r') ADVANCE(381); END_STATE(); case 1295: - if (lookahead == 'r') ADVANCE(852); + if (lookahead == 'r') ADVANCE(1527); END_STATE(); case 1296: - if (lookahead == 'r') ADVANCE(1096); + if (lookahead == 'r') ADVANCE(678); END_STATE(); case 1297: - if (lookahead == 'r') ADVANCE(1561); + if (lookahead == 'r') ADVANCE(855); END_STATE(); case 1298: - if (lookahead == 'r') ADVANCE(688); + if (lookahead == 'r') ADVANCE(1099); END_STATE(); case 1299: - if (lookahead == 'r') ADVANCE(993); + if (lookahead == 'r') ADVANCE(1565); END_STATE(); case 1300: - if (lookahead == 'r') ADVANCE(1563); + if (lookahead == 'r') ADVANCE(691); END_STATE(); case 1301: - if (lookahead == 'r') ADVANCE(389); + if (lookahead == 'r') ADVANCE(996); END_STATE(); case 1302: - if (lookahead == 'r') ADVANCE(1178); + if (lookahead == 'r') ADVANCE(1567); END_STATE(); case 1303: - if (lookahead == 'r') ADVANCE(1514); + if (lookahead == 'r') ADVANCE(389); END_STATE(); case 1304: - if (lookahead == 'r') ADVANCE(664); + if (lookahead == 'r') ADVANCE(1181); END_STATE(); case 1305: - if (lookahead == 'r') ADVANCE(1406); + if (lookahead == 'r') ADVANCE(1518); END_STATE(); case 1306: - if (lookahead == 'r') ADVANCE(1509); + if (lookahead == 'r') ADVANCE(667); END_STATE(); case 1307: - if (lookahead == 'r') ADVANCE(1509); - if (lookahead == 'u') ADVANCE(996); + if (lookahead == 'r') ADVANCE(1410); END_STATE(); case 1308: - if (lookahead == 'r') ADVANCE(982); + if (lookahead == 'r') ADVANCE(1513); END_STATE(); case 1309: - if (lookahead == 'r') ADVANCE(459); + if (lookahead == 'r') ADVANCE(1513); + if (lookahead == 'u') ADVANCE(999); END_STATE(); case 1310: - if (lookahead == 'r') ADVANCE(1550); + if (lookahead == 'r') ADVANCE(985); END_STATE(); case 1311: - if (lookahead == 'r') ADVANCE(862); + if (lookahead == 'r') ADVANCE(459); END_STATE(); case 1312: - if (lookahead == 'r') ADVANCE(744); + if (lookahead == 'r') ADVANCE(1554); END_STATE(); case 1313: - if (lookahead == 'r') ADVANCE(855); + if (lookahead == 'r') ADVANCE(865); END_STATE(); case 1314: - if (lookahead == 'r') ADVANCE(1102); + if (lookahead == 'r') ADVANCE(747); END_STATE(); case 1315: - if (lookahead == 'r') ADVANCE(464); + if (lookahead == 'r') ADVANCE(858); END_STATE(); case 1316: - if (lookahead == 'r') ADVANCE(1356); + if (lookahead == 'r') ADVANCE(1105); END_STATE(); case 1317: - if (lookahead == 'r') ADVANCE(526); + if (lookahead == 'r') ADVANCE(464); END_STATE(); case 1318: - if (lookahead == 'r') ADVANCE(530); + if (lookahead == 'r') ADVANCE(1358); END_STATE(); case 1319: - if (lookahead == 'r') ADVANCE(653); + if (lookahead == 'r') ADVANCE(526); END_STATE(); case 1320: - if (lookahead == 'r') ADVANCE(1436); + if (lookahead == 'r') ADVANCE(530); END_STATE(); case 1321: - if (lookahead == 'r') ADVANCE(1436); - if (lookahead == 't') ADVANCE(1356); + if (lookahead == 'r') ADVANCE(656); END_STATE(); case 1322: - if (lookahead == 'r') ADVANCE(757); + if (lookahead == 'r') ADVANCE(1440); END_STATE(); case 1323: - if (lookahead == 'r') ADVANCE(914); + if (lookahead == 'r') ADVANCE(1440); + if (lookahead == 't') ADVANCE(1358); END_STATE(); case 1324: - if (lookahead == 'r') ADVANCE(752); - if (lookahead == 't') ADVANCE(525); + if (lookahead == 'r') ADVANCE(760); END_STATE(); case 1325: - if (lookahead == 'r') ADVANCE(1144); + if (lookahead == 'r') ADVANCE(918); END_STATE(); case 1326: - if (lookahead == 'r') ADVANCE(1399); + if (lookahead == 'r') ADVANCE(755); + if (lookahead == 't') ADVANCE(525); END_STATE(); case 1327: - if (lookahead == 'r') ADVANCE(1131); + if (lookahead == 'r') ADVANCE(1147); END_STATE(); case 1328: - if (lookahead == 'r') ADVANCE(1437); + if (lookahead == 'r') ADVANCE(1403); END_STATE(); case 1329: - if (lookahead == 'r') ADVANCE(712); + if (lookahead == 'r') ADVANCE(1134); END_STATE(); case 1330: - if (lookahead == 'r') ADVANCE(1224); + if (lookahead == 'r') ADVANCE(1441); END_STATE(); case 1331: - if (lookahead == 'r') ADVANCE(812); + if (lookahead == 'r') ADVANCE(715); END_STATE(); case 1332: - if (lookahead == 'r') ADVANCE(1188); + if (lookahead == 'r') ADVANCE(1227); END_STATE(); case 1333: - if (lookahead == 'r') ADVANCE(794); + if (lookahead == 'r') ADVANCE(815); END_STATE(); case 1334: - if (lookahead == 'r') ADVANCE(967); + if (lookahead == 'r') ADVANCE(1191); END_STATE(); case 1335: - if (lookahead == 'r') ADVANCE(1111); + if (lookahead == 'r') ADVANCE(797); END_STATE(); case 1336: - if (lookahead == 'r') ADVANCE(1112); + if (lookahead == 'r') ADVANCE(970); END_STATE(); case 1337: - if (lookahead == 'r') ADVANCE(1309); + if (lookahead == 'r') ADVANCE(1114); END_STATE(); case 1338: - if (lookahead == 'r') ADVANCE(1315); + if (lookahead == 'r') ADVANCE(1115); END_STATE(); case 1339: - if (lookahead == 'r') ADVANCE(807); + if (lookahead == 'r') ADVANCE(1311); END_STATE(); case 1340: - if (lookahead == 'r') ADVANCE(784); + if (lookahead == 'r') ADVANCE(1317); END_STATE(); case 1341: - if (lookahead == 'r') ADVANCE(924); + if (lookahead == 'r') ADVANCE(810); END_STATE(); case 1342: - if (lookahead == 'r') ADVANCE(636); + if (lookahead == 'r') ADVANCE(787); END_STATE(); case 1343: - if (lookahead == 'r') ADVANCE(1227); + if (lookahead == 'r') ADVANCE(928); END_STATE(); case 1344: - if (lookahead == 'r') ADVANCE(944); + if (lookahead == 'r') ADVANCE(639); END_STATE(); case 1345: - if (lookahead == 'r') ADVANCE(1382); + if (lookahead == 'r') ADVANCE(1230); END_STATE(); case 1346: - if (lookahead == 'r') ADVANCE(1334); + if (lookahead == 'r') ADVANCE(948); END_STATE(); case 1347: - if (lookahead == 'r') ADVANCE(942); + if (lookahead == 'r') ADVANCE(1386); END_STATE(); case 1348: - if (lookahead == 'r') ADVANCE(935); + if (lookahead == 'r') ADVANCE(1336); END_STATE(); case 1349: - if (lookahead == 'r') ADVANCE(596); + if (lookahead == 'r') ADVANCE(946); END_STATE(); case 1350: - if (lookahead == 'r') ADVANCE(1522); + if (lookahead == 'r') ADVANCE(939); END_STATE(); case 1351: - if (lookahead == 'r') ADVANCE(595); + if (lookahead == 'r') ADVANCE(599); END_STATE(); case 1352: - if (lookahead == 'r') ADVANCE(4141); + if (lookahead == 'r') ADVANCE(1526); END_STATE(); case 1353: - if (lookahead == 'r') ADVANCE(819); + if (lookahead == 'r') ADVANCE(598); END_STATE(); case 1354: - if (lookahead == 'r') ADVANCE(978); + if (lookahead == 'r') ADVANCE(4159); END_STATE(); case 1355: - if (lookahead == 'r') ADVANCE(1492); + if (lookahead == 'r') ADVANCE(822); END_STATE(); case 1356: - if (lookahead == 's') ADVANCE(4244); + if (lookahead == 'r') ADVANCE(981); END_STATE(); case 1357: - if (lookahead == 's') ADVANCE(1536); + if (lookahead == 'r') ADVANCE(1496); END_STATE(); case 1358: - if (lookahead == 's') ADVANCE(4177); + if (lookahead == 's') ADVANCE(4262); END_STATE(); case 1359: - if (lookahead == 's') ADVANCE(4031); + if (lookahead == 's') ADVANCE(1540); END_STATE(); case 1360: - if (lookahead == 's') ADVANCE(1786); + if (lookahead == 's') ADVANCE(4195); END_STATE(); case 1361: - if (lookahead == 's') ADVANCE(866); + if (lookahead == 's') ADVANCE(3792); END_STATE(); case 1362: - if (lookahead == 's') ADVANCE(403); + if (lookahead == 's') ADVANCE(3794); END_STATE(); case 1363: - if (lookahead == 's') ADVANCE(1514); + if (lookahead == 's') ADVANCE(4045); END_STATE(); case 1364: - if (lookahead == 's') ADVANCE(986); + if (lookahead == 's') ADVANCE(1790); END_STATE(); case 1365: - if (lookahead == 's') ADVANCE(1406); + if (lookahead == 's') ADVANCE(869); END_STATE(); case 1366: - if (lookahead == 's') ADVANCE(1552); + if (lookahead == 's') ADVANCE(405); END_STATE(); case 1367: - if (lookahead == 's') ADVANCE(1363); + if (lookahead == 's') ADVANCE(1518); END_STATE(); case 1368: - if (lookahead == 's') ADVANCE(868); + if (lookahead == 's') ADVANCE(989); END_STATE(); case 1369: - if (lookahead == 's') ADVANCE(1409); + if (lookahead == 's') ADVANCE(1410); END_STATE(); case 1370: - if (lookahead == 's') ADVANCE(1194); + if (lookahead == 's') ADVANCE(1556); END_STATE(); case 1371: - if (lookahead == 's') ADVANCE(871); - if (lookahead == 't') ADVANCE(1506); + if (lookahead == 's') ADVANCE(1367); END_STATE(); case 1372: - if (lookahead == 's') ADVANCE(744); + if (lookahead == 's') ADVANCE(871); END_STATE(); case 1373: - if (lookahead == 's') ADVANCE(744); - if (lookahead == 'u') ADVANCE(1158); + if (lookahead == 's') ADVANCE(1413); END_STATE(); case 1374: - if (lookahead == 's') ADVANCE(4128); + if (lookahead == 's') ADVANCE(1197); END_STATE(); case 1375: - if (lookahead == 's') ADVANCE(1356); + if (lookahead == 's') ADVANCE(874); + if (lookahead == 't') ADVANCE(1510); END_STATE(); case 1376: - if (lookahead == 's') ADVANCE(904); + if (lookahead == 's') ADVANCE(747); END_STATE(); case 1377: - if (lookahead == 's') ADVANCE(1420); + if (lookahead == 's') ADVANCE(747); + if (lookahead == 'u') ADVANCE(1161); END_STATE(); case 1378: - if (lookahead == 's') ADVANCE(1396); + if (lookahead == 's') ADVANCE(4146); END_STATE(); case 1379: - if (lookahead == 's') ADVANCE(789); + if (lookahead == 's') ADVANCE(1358); END_STATE(); case 1380: - if (lookahead == 's') ADVANCE(1414); + if (lookahead == 's') ADVANCE(908); END_STATE(); case 1381: - if (lookahead == 's') ADVANCE(1431); + if (lookahead == 's') ADVANCE(1424); END_STATE(); case 1382: - if (lookahead == 's') ADVANCE(712); + if (lookahead == 's') ADVANCE(1400); END_STATE(); case 1383: - if (lookahead == 's') ADVANCE(765); + if (lookahead == 's') ADVANCE(792); END_STATE(); case 1384: - if (lookahead == 's') ADVANCE(1133); + if (lookahead == 's') ADVANCE(1418); END_STATE(); case 1385: - if (lookahead == 's') ADVANCE(1485); + if (lookahead == 's') ADVANCE(1435); END_STATE(); case 1386: - if (lookahead == 's') ADVANCE(1411); + if (lookahead == 's') ADVANCE(715); END_STATE(); case 1387: - if (lookahead == 's') ADVANCE(745); + if (lookahead == 's') ADVANCE(768); END_STATE(); case 1388: - if (lookahead == 's') ADVANCE(764); + if (lookahead == 's') ADVANCE(1136); END_STATE(); case 1389: - if (lookahead == 's') ADVANCE(723); + if (lookahead == 's') ADVANCE(1489); END_STATE(); case 1390: - if (lookahead == 's') ADVANCE(726); + if (lookahead == 's') ADVANCE(1415); END_STATE(); case 1391: - if (lookahead == 's') ADVANCE(727); + if (lookahead == 's') ADVANCE(748); END_STATE(); case 1392: - if (lookahead == 's') ADVANCE(725); + if (lookahead == 's') ADVANCE(767); END_STATE(); case 1393: - if (lookahead == 's') ADVANCE(650); - if (lookahead == 'x') ADVANCE(1458); + if (lookahead == 's') ADVANCE(726); END_STATE(); case 1394: - if (lookahead == 's') ADVANCE(1446); + if (lookahead == 's') ADVANCE(729); END_STATE(); case 1395: - if (lookahead == 's') ADVANCE(1448); + if (lookahead == 's') ADVANCE(730); END_STATE(); case 1396: - if (lookahead == 's') ADVANCE(915); + if (lookahead == 's') ADVANCE(728); END_STATE(); case 1397: - if (lookahead == 's') ADVANCE(660); + if (lookahead == 's') ADVANCE(653); + if (lookahead == 'x') ADVANCE(1462); END_STATE(); case 1398: - if (lookahead == 's') ADVANCE(1440); + if (lookahead == 's') ADVANCE(1450); END_STATE(); case 1399: - if (lookahead == 's') ADVANCE(1197); + if (lookahead == 's') ADVANCE(1452); END_STATE(); case 1400: - if (lookahead == 's') ADVANCE(1258); + if (lookahead == 's') ADVANCE(919); END_STATE(); case 1401: - if (lookahead == 's') ADVANCE(785); + if (lookahead == 's') ADVANCE(663); END_STATE(); case 1402: - if (lookahead == 's') ADVANCE(797); + if (lookahead == 's') ADVANCE(1444); END_STATE(); case 1403: - if (lookahead == 's') ADVANCE(1478); + if (lookahead == 's') ADVANCE(1200); END_STATE(); case 1404: - if (lookahead == 's') ADVANCE(425); + if (lookahead == 's') ADVANCE(1261); END_STATE(); case 1405: - if (lookahead == 's') ADVANCE(429); + if (lookahead == 's') ADVANCE(788); END_STATE(); case 1406: - if (lookahead == 't') ADVANCE(4244); + if (lookahead == 's') ADVANCE(800); END_STATE(); case 1407: - if (lookahead == 't') ADVANCE(637); + if (lookahead == 's') ADVANCE(1482); END_STATE(); case 1408: - if (lookahead == 't') ADVANCE(1068); + if (lookahead == 's') ADVANCE(425); END_STATE(); case 1409: - if (lookahead == 't') ADVANCE(4120); + if (lookahead == 's') ADVANCE(429); END_STATE(); case 1410: - if (lookahead == 't') ADVANCE(1605); + if (lookahead == 't') ADVANCE(4262); END_STATE(); case 1411: - if (lookahead == 't') ADVANCE(1805); + if (lookahead == 't') ADVANCE(640); END_STATE(); case 1412: - if (lookahead == 't') ADVANCE(424); + if (lookahead == 't') ADVANCE(1071); END_STATE(); case 1413: - if (lookahead == 't') ADVANCE(1561); + if (lookahead == 't') ADVANCE(4138); END_STATE(); case 1414: - if (lookahead == 't') ADVANCE(4165); + if (lookahead == 't') ADVANCE(1609); END_STATE(); case 1415: - if (lookahead == 't') ADVANCE(77); + if (lookahead == 't') ADVANCE(1809); END_STATE(); case 1416: - if (lookahead == 't') ADVANCE(386); + if (lookahead == 't') ADVANCE(403); END_STATE(); case 1417: - if (lookahead == 't') ADVANCE(1168); + if (lookahead == 't') ADVANCE(1565); END_STATE(); case 1418: - if (lookahead == 't') ADVANCE(815); + if (lookahead == 't') ADVANCE(4183); END_STATE(); case 1419: - if (lookahead == 't') ADVANCE(4132); + if (lookahead == 't') ADVANCE(77); END_STATE(); case 1420: - if (lookahead == 't') ADVANCE(421); + if (lookahead == 't') ADVANCE(386); END_STATE(); case 1421: - if (lookahead == 't') ADVANCE(458); + if (lookahead == 't') ADVANCE(1171); END_STATE(); case 1422: - if (lookahead == 't') ADVANCE(390); + if (lookahead == 't') ADVANCE(818); END_STATE(); case 1423: - if (lookahead == 't') ADVANCE(868); + if (lookahead == 't') ADVANCE(4150); END_STATE(); case 1424: - if (lookahead == 't') ADVANCE(4125); + if (lookahead == 't') ADVANCE(423); END_STATE(); case 1425: - if (lookahead == 't') ADVANCE(4136); + if (lookahead == 't') ADVANCE(458); END_STATE(); case 1426: - if (lookahead == 't') ADVANCE(499); - if (lookahead == 'w') ADVANCE(948); + if (lookahead == 't') ADVANCE(390); END_STATE(); case 1427: - if (lookahead == 't') ADVANCE(1506); + if (lookahead == 't') ADVANCE(871); END_STATE(); case 1428: - if (lookahead == 't') ADVANCE(4135); + if (lookahead == 't') ADVANCE(4143); END_STATE(); case 1429: - if (lookahead == 't') ADVANCE(463); + if (lookahead == 't') ADVANCE(4154); END_STATE(); case 1430: - if (lookahead == 't') ADVANCE(428); + if (lookahead == 't') ADVANCE(499); + if (lookahead == 'w') ADVANCE(951); END_STATE(); case 1431: - if (lookahead == 't') ADVANCE(1356); + if (lookahead == 't') ADVANCE(1510); END_STATE(); case 1432: - if (lookahead == 't') ADVANCE(881); + if (lookahead == 't') ADVANCE(4153); END_STATE(); case 1433: - if (lookahead == 't') ADVANCE(872); + if (lookahead == 't') ADVANCE(463); END_STATE(); case 1434: - if (lookahead == 't') ADVANCE(873); + if (lookahead == 't') ADVANCE(428); END_STATE(); case 1435: - if (lookahead == 't') ADVANCE(899); + if (lookahead == 't') ADVANCE(1358); END_STATE(); case 1436: - if (lookahead == 't') ADVANCE(1362); + if (lookahead == 't') ADVANCE(884); END_STATE(); case 1437: - if (lookahead == 't') ADVANCE(404); + if (lookahead == 't') ADVANCE(875); END_STATE(); case 1438: - if (lookahead == 't') ADVANCE(1323); + if (lookahead == 't') ADVANCE(876); END_STATE(); case 1439: - if (lookahead == 't') ADVANCE(876); + if (lookahead == 't') ADVANCE(903); END_STATE(); case 1440: - if (lookahead == 't') ADVANCE(1348); + if (lookahead == 't') ADVANCE(1366); END_STATE(); case 1441: - if (lookahead == 't') ADVANCE(877); + if (lookahead == 't') ADVANCE(406); END_STATE(); case 1442: - if (lookahead == 't') ADVANCE(961); + if (lookahead == 't') ADVANCE(1325); END_STATE(); case 1443: - if (lookahead == 't') ADVANCE(418); + if (lookahead == 't') ADVANCE(879); END_STATE(); case 1444: - if (lookahead == 't') ADVANCE(408); + if (lookahead == 't') ADVANCE(1350); END_STATE(); case 1445: - if (lookahead == 't') ADVANCE(587); + if (lookahead == 't') ADVANCE(880); END_STATE(); case 1446: - if (lookahead == 't') ADVANCE(1500); + if (lookahead == 't') ADVANCE(964); END_STATE(); case 1447: - if (lookahead == 't') ADVANCE(399); + if (lookahead == 't') ADVANCE(420); END_STATE(); case 1448: - if (lookahead == 't') ADVANCE(571); + if (lookahead == 't') ADVANCE(410); END_STATE(); case 1449: - if (lookahead == 't') ADVANCE(423); + if (lookahead == 't') ADVANCE(590); END_STATE(); case 1450: - if (lookahead == 't') ADVANCE(954); + if (lookahead == 't') ADVANCE(1504); END_STATE(); case 1451: - if (lookahead == 't') ADVANCE(712); + if (lookahead == 't') ADVANCE(399); END_STATE(); case 1452: - if (lookahead == 't') ADVANCE(956); + if (lookahead == 't') ADVANCE(574); END_STATE(); case 1453: - if (lookahead == 't') ADVANCE(594); + if (lookahead == 't') ADVANCE(402); END_STATE(); case 1454: - if (lookahead == 't') ADVANCE(1188); + if (lookahead == 't') ADVANCE(957); END_STATE(); case 1455: - if (lookahead == 't') ADVANCE(575); + if (lookahead == 't') ADVANCE(715); END_STATE(); case 1456: - if (lookahead == 't') ADVANCE(491); + if (lookahead == 't') ADVANCE(959); END_STATE(); case 1457: - if (lookahead == 't') ADVANCE(1210); + if (lookahead == 't') ADVANCE(597); END_STATE(); case 1458: - if (lookahead == 't') ADVANCE(793); + if (lookahead == 't') ADVANCE(1191); END_STATE(); case 1459: - if (lookahead == 't') ADVANCE(738); + if (lookahead == 't') ADVANCE(578); END_STATE(); case 1460: - if (lookahead == 't') ADVANCE(786); + if (lookahead == 't') ADVANCE(491); END_STATE(); case 1461: - if (lookahead == 't') ADVANCE(802); + if (lookahead == 't') ADVANCE(1213); END_STATE(); case 1462: - if (lookahead == 't') ADVANCE(731); + if (lookahead == 't') ADVANCE(796); END_STATE(); case 1463: - if (lookahead == 't') ADVANCE(805); + if (lookahead == 't') ADVANCE(741); END_STATE(); case 1464: - if (lookahead == 't') ADVANCE(806); + if (lookahead == 't') ADVANCE(789); END_STATE(); case 1465: - if (lookahead == 't') ADVANCE(884); + if (lookahead == 't') ADVANCE(805); END_STATE(); case 1466: - if (lookahead == 't') ADVANCE(636); + if (lookahead == 't') ADVANCE(734); END_STATE(); case 1467: - if (lookahead == 't') ADVANCE(776); + if (lookahead == 't') ADVANCE(808); END_STATE(); case 1468: - if (lookahead == 't') ADVANCE(915); + if (lookahead == 't') ADVANCE(809); END_STATE(); case 1469: - if (lookahead == 't') ADVANCE(921); + if (lookahead == 't') ADVANCE(887); END_STATE(); case 1470: - if (lookahead == 't') ADVANCE(823); + if (lookahead == 't') ADVANCE(639); END_STATE(); case 1471: - if (lookahead == 't') ADVANCE(891); + if (lookahead == 't') ADVANCE(779); END_STATE(); case 1472: - if (lookahead == 't') ADVANCE(416); + if (lookahead == 't') ADVANCE(919); END_STATE(); case 1473: - if (lookahead == 't') ADVANCE(763); + if (lookahead == 't') ADVANCE(925); END_STATE(); case 1474: - if (lookahead == 't') ADVANCE(579); + if (lookahead == 't') ADVANCE(826); END_STATE(); case 1475: - if (lookahead == 't') ADVANCE(413); + if (lookahead == 't') ADVANCE(894); END_STATE(); case 1476: - if (lookahead == 't') ADVANCE(647); + if (lookahead == 't') ADVANCE(418); END_STATE(); case 1477: - if (lookahead == 't') ADVANCE(1041); + if (lookahead == 't') ADVANCE(766); END_STATE(); case 1478: - if (lookahead == 't') ADVANCE(556); + if (lookahead == 't') ADVANCE(582); END_STATE(); case 1479: - if (lookahead == 't') ADVANCE(555); + if (lookahead == 't') ADVANCE(415); END_STATE(); case 1480: - if (lookahead == 't') ADVANCE(1237); + if (lookahead == 't') ADVANCE(650); END_STATE(); case 1481: - if (lookahead == 't') ADVANCE(1461); + if (lookahead == 't') ADVANCE(1044); END_STATE(); case 1482: - if (lookahead == 't') ADVANCE(1339); + if (lookahead == 't') ADVANCE(559); END_STATE(); case 1483: - if (lookahead == 't') ADVANCE(1207); + if (lookahead == 't') ADVANCE(557); END_STATE(); case 1484: - if (lookahead == 't') ADVANCE(1464); + if (lookahead == 't') ADVANCE(1240); END_STATE(); case 1485: - if (lookahead == 't') ADVANCE(552); + if (lookahead == 't') ADVANCE(1465); END_STATE(); case 1486: - if (lookahead == 't') ADVANCE(1565); + if (lookahead == 't') ADVANCE(1341); END_STATE(); case 1487: - if (lookahead == 't') ADVANCE(1473); + if (lookahead == 't') ADVANCE(1210); END_STATE(); case 1488: - if (lookahead == 't') ADVANCE(974); + if (lookahead == 't') ADVANCE(1468); END_STATE(); case 1489: - if (lookahead == 't') ADVANCE(969); + if (lookahead == 't') ADVANCE(552); END_STATE(); case 1490: - if (lookahead == 't') ADVANCE(949); + if (lookahead == 't') ADVANCE(1569); END_STATE(); case 1491: - if (lookahead == 't') ADVANCE(603); + if (lookahead == 't') ADVANCE(1477); END_STATE(); case 1492: - if (lookahead == 't') ADVANCE(1405); + if (lookahead == 't') ADVANCE(976); END_STATE(); case 1493: - if (lookahead == 'u') ADVANCE(4244); + if (lookahead == 't') ADVANCE(972); END_STATE(); case 1494: - if (lookahead == 'u') ADVANCE(593); + if (lookahead == 't') ADVANCE(952); END_STATE(); case 1495: - if (lookahead == 'u') ADVANCE(1571); - if (lookahead == 'x') ADVANCE(1624); - if (lookahead != 0) ADVANCE(4090); + if (lookahead == 't') ADVANCE(606); END_STATE(); case 1496: - if (lookahead == 'u') ADVANCE(1113); + if (lookahead == 't') ADVANCE(1409); END_STATE(); case 1497: - if (lookahead == 'u') ADVANCE(1406); + if (lookahead == 'u') ADVANCE(4262); END_STATE(); case 1498: - if (lookahead == 'u') ADVANCE(625); + if (lookahead == 'u') ADVANCE(596); END_STATE(); case 1499: - if (lookahead == 'u') ADVANCE(1153); - if (lookahead == 'w') ADVANCE(895); + if (lookahead == 'u') ADVANCE(1575); + if (lookahead == 'x') ADVANCE(1628); + if (lookahead != 0) ADVANCE(4104); END_STATE(); case 1500: - if (lookahead == 'u') ADVANCE(1240); + if (lookahead == 'u') ADVANCE(1116); END_STATE(); case 1501: - if (lookahead == 'u') ADVANCE(1194); + if (lookahead == 'u') ADVANCE(1410); END_STATE(); case 1502: - if (lookahead == 'u') ADVANCE(744); + if (lookahead == 'u') ADVANCE(628); END_STATE(); case 1503: - if (lookahead == 'u') ADVANCE(1075); + if (lookahead == 'u') ADVANCE(1156); + if (lookahead == 'w') ADVANCE(899); END_STATE(); case 1504: - if (lookahead == 'u') ADVANCE(1102); + if (lookahead == 'u') ADVANCE(1243); END_STATE(); case 1505: - if (lookahead == 'u') ADVANCE(1248); + if (lookahead == 'u') ADVANCE(1197); END_STATE(); case 1506: - if (lookahead == 'u') ADVANCE(1356); + if (lookahead == 'u') ADVANCE(747); END_STATE(); case 1507: - if (lookahead == 'u') ADVANCE(926); + if (lookahead == 'u') ADVANCE(1078); END_STATE(); case 1508: - if (lookahead == 'u') ADVANCE(1284); + if (lookahead == 'u') ADVANCE(1105); END_STATE(); case 1509: - if (lookahead == 'u') ADVANCE(1142); + if (lookahead == 'u') ADVANCE(1251); END_STATE(); case 1510: - if (lookahead == 'u') ADVANCE(635); + if (lookahead == 'u') ADVANCE(1358); END_STATE(); case 1511: - if (lookahead == 'u') ADVANCE(1255); + if (lookahead == 'u') ADVANCE(930); END_STATE(); case 1512: - if (lookahead == 'u') ADVANCE(1319); + if (lookahead == 'u') ADVANCE(1287); END_STATE(); case 1513: - if (lookahead == 'u') ADVANCE(901); + if (lookahead == 'u') ADVANCE(1145); END_STATE(); case 1514: - if (lookahead == 'u') ADVANCE(712); + if (lookahead == 'u') ADVANCE(638); END_STATE(); case 1515: - if (lookahead == 'u') ADVANCE(995); + if (lookahead == 'u') ADVANCE(1258); END_STATE(); case 1516: - if (lookahead == 'u') ADVANCE(1007); + if (lookahead == 'u') ADVANCE(1321); END_STATE(); case 1517: - if (lookahead == 'u') ADVANCE(792); + if (lookahead == 'u') ADVANCE(905); END_STATE(); case 1518: - if (lookahead == 'u') ADVANCE(1326); + if (lookahead == 'u') ADVANCE(715); END_STATE(); case 1519: - if (lookahead == 'u') ADVANCE(1421); + if (lookahead == 'u') ADVANCE(998); END_STATE(); case 1520: - if (lookahead == 'u') ADVANCE(1429); + if (lookahead == 'u') ADVANCE(1010); END_STATE(); case 1521: - if (lookahead == 'u') ADVANCE(831); + if (lookahead == 'u') ADVANCE(795); END_STATE(); case 1522: - if (lookahead == 'u') ADVANCE(724); + if (lookahead == 'u') ADVANCE(1328); END_STATE(); case 1523: - if (lookahead == 'u') ADVANCE(724); - if (lookahead == 'y') ADVANCE(3726); + if (lookahead == 'u') ADVANCE(1425); END_STATE(); case 1524: - if (lookahead == 'u') ADVANCE(1572); - if (lookahead == 'x') ADVANCE(1625); - if (lookahead != 0) ADVANCE(4080); + if (lookahead == 'u') ADVANCE(1433); END_STATE(); case 1525: - if (lookahead == 'u') ADVANCE(1082); + if (lookahead == 'u') ADVANCE(834); END_STATE(); case 1526: - if (lookahead == 'u') ADVANCE(1083); + if (lookahead == 'u') ADVANCE(727); END_STATE(); case 1527: - if (lookahead == 'u') ADVANCE(1457); + if (lookahead == 'u') ADVANCE(727); + if (lookahead == 'y') ADVANCE(3740); END_STATE(); case 1528: - if (lookahead == 'u') ADVANCE(938); + if (lookahead == 'u') ADVANCE(1576); + if (lookahead == 'x') ADVANCE(1629); + if (lookahead != 0) ADVANCE(4094); END_STATE(); case 1529: - if (lookahead == 'u') ADVANCE(1147); + if (lookahead == 'u') ADVANCE(1085); END_STATE(); case 1530: - if (lookahead == 'u') ADVANCE(1141); + if (lookahead == 'u') ADVANCE(1086); END_STATE(); case 1531: - if (lookahead == 'u') ADVANCE(1042); + if (lookahead == 'u') ADVANCE(1461); END_STATE(); case 1532: - if (lookahead == 'u') ADVANCE(1045); + if (lookahead == 'u') ADVANCE(942); END_STATE(); case 1533: - if (lookahead == 'u') ADVANCE(1394); + if (lookahead == 'u') ADVANCE(1150); END_STATE(); case 1534: - if (lookahead == 'u') ADVANCE(1271); + if (lookahead == 'u') ADVANCE(1144); END_STATE(); case 1535: - if (lookahead == 'u') ADVANCE(1065); + if (lookahead == 'u') ADVANCE(1045); END_STATE(); case 1536: - if (lookahead == 'v') ADVANCE(4244); + if (lookahead == 'u') ADVANCE(1048); END_STATE(); case 1537: - if (lookahead == 'v') ADVANCE(1182); + if (lookahead == 'u') ADVANCE(1398); END_STATE(); case 1538: - if (lookahead == 'v') ADVANCE(712); + if (lookahead == 'u') ADVANCE(1274); END_STATE(); case 1539: - if (lookahead == 'v') ADVANCE(796); + if (lookahead == 'u') ADVANCE(1068); END_STATE(); case 1540: - if (lookahead == 'v') ADVANCE(814); + if (lookahead == 'v') ADVANCE(4262); END_STATE(); case 1541: - if (lookahead == 'w') ADVANCE(4244); + if (lookahead == 'v') ADVANCE(1185); END_STATE(); case 1542: - if (lookahead == 'w') ADVANCE(895); + if (lookahead == 'v') ADVANCE(715); END_STATE(); case 1543: - if (lookahead == 'w') ADVANCE(1102); + if (lookahead == 'v') ADVANCE(799); END_STATE(); case 1544: - if (lookahead == 'w') ADVANCE(903); + if (lookahead == 'v') ADVANCE(817); END_STATE(); case 1545: - if (lookahead == 'w') ADVANCE(798); + if (lookahead == 'w') ADVANCE(4262); END_STATE(); case 1546: - if (lookahead == 'w') ADVANCE(1118); + if (lookahead == 'w') ADVANCE(899); END_STATE(); case 1547: - if (lookahead == 'w') ADVANCE(957); + if (lookahead == 'w') ADVANCE(1105); END_STATE(); case 1548: - if (lookahead == 'w') ADVANCE(1382); + if (lookahead == 'w') ADVANCE(907); END_STATE(); case 1549: - if (lookahead == 'w') ADVANCE(979); + if (lookahead == 'w') ADVANCE(801); END_STATE(); case 1550: - if (lookahead == 'w') ADVANCE(958); + if (lookahead == 'w') ADVANCE(1121); END_STATE(); case 1551: - if (lookahead == 'w') ADVANCE(965); + if (lookahead == 'w') ADVANCE(960); END_STATE(); case 1552: - if (lookahead == 'x') ADVANCE(4244); + if (lookahead == 'w') ADVANCE(1386); END_STATE(); case 1553: - if (lookahead == 'x') ADVANCE(975); + if (lookahead == 'w') ADVANCE(982); END_STATE(); case 1554: - if (lookahead == 'x') ADVANCE(1467); + if (lookahead == 'w') ADVANCE(961); END_STATE(); case 1555: - if (lookahead == 'x') ADVANCE(1406); + if (lookahead == 'w') ADVANCE(968); END_STATE(); case 1556: - if (lookahead == 'x') ADVANCE(1240); + if (lookahead == 'x') ADVANCE(4262); END_STATE(); case 1557: - if (lookahead == 'x') ADVANCE(415); + if (lookahead == 'x') ADVANCE(977); END_STATE(); case 1558: - if (lookahead == 'x') ADVANCE(1274); + if (lookahead == 'x') ADVANCE(1471); END_STATE(); case 1559: - if (lookahead == 'x') ADVANCE(1244); + if (lookahead == 'x') ADVANCE(1410); END_STATE(); case 1560: - if (lookahead == 'x') ADVANCE(1256); + if (lookahead == 'x') ADVANCE(1243); END_STATE(); case 1561: - if (lookahead == 'y') ADVANCE(4244); + if (lookahead == 'x') ADVANCE(417); END_STATE(); case 1562: - if (lookahead == 'y') ADVANCE(4031); + if (lookahead == 'x') ADVANCE(1277); END_STATE(); case 1563: - if (lookahead == 'y') ADVANCE(406); + if (lookahead == 'x') ADVANCE(1247); END_STATE(); case 1564: - if (lookahead == 'y') ADVANCE(1259); + if (lookahead == 'x') ADVANCE(1259); END_STATE(); case 1565: - if (lookahead == 'y') ADVANCE(1265); + if (lookahead == 'y') ADVANCE(4262); END_STATE(); case 1566: - if (lookahead == 'z') ADVANCE(4244); + if (lookahead == 'y') ADVANCE(4045); END_STATE(); case 1567: - if (lookahead == 'z') ADVANCE(439); + if (lookahead == 'y') ADVANCE(408); END_STATE(); case 1568: - if (lookahead == 'z') ADVANCE(1561); + if (lookahead == 'y') ADVANCE(1262); END_STATE(); case 1569: - if (lookahead == 'z') ADVANCE(712); + if (lookahead == 'y') ADVANCE(1268); END_STATE(); case 1570: - if (lookahead == 'z') ADVANCE(1202); + if (lookahead == 'z') ADVANCE(4262); END_STATE(); case 1571: - if (lookahead == '{') ADVANCE(1621); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1619); + if (lookahead == 'z') ADVANCE(439); END_STATE(); case 1572: - if (lookahead == '{') ADVANCE(1623); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1626); + if (lookahead == 'z') ADVANCE(1565); END_STATE(); case 1573: - if (lookahead == '|') ADVANCE(3569); + if (lookahead == 'z') ADVANCE(715); END_STATE(); case 1574: - if (lookahead == '|') ADVANCE(3570); + if (lookahead == 'z') ADVANCE(1205); END_STATE(); case 1575: - if (lookahead == '|') ADVANCE(3574); + if (lookahead == '{') ADVANCE(1625); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1623); END_STATE(); case 1576: - if (lookahead == '|') ADVANCE(3567); + if (lookahead == '{') ADVANCE(1627); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1630); END_STATE(); case 1577: - if (lookahead == '|') ADVANCE(3573); + if (lookahead == '|') ADVANCE(3583); END_STATE(); case 1578: - if (lookahead == '|') ADVANCE(3568); + if (lookahead == '|') ADVANCE(3584); END_STATE(); case 1579: - if (lookahead == '|') ADVANCE(3571); + if (lookahead == '|') ADVANCE(3588); END_STATE(); case 1580: - if (lookahead == '|') ADVANCE(3572); + if (lookahead == '|') ADVANCE(3581); END_STATE(); case 1581: - if (lookahead == '}') ADVANCE(4090); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1581); + if (lookahead == '|') ADVANCE(3587); END_STATE(); case 1582: - if (lookahead == '}') ADVANCE(4080); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1582); + if (lookahead == '|') ADVANCE(3582); END_STATE(); case 1583: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1593); + if (lookahead == '|') ADVANCE(3585); END_STATE(); case 1584: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); + if (lookahead == '|') ADVANCE(3586); END_STATE(); case 1585: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4009); + if (lookahead == '}') ADVANCE(4104); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1585); END_STATE(); case 1586: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4010); + if (lookahead == '}') ADVANCE(4094); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1586); END_STATE(); case 1587: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1589); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1597); END_STATE(); case 1588: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4006); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4038); END_STATE(); case 1589: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3076); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3079); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4023); END_STATE(); case 1590: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1599); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4024); END_STATE(); case 1591: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1600); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1593); END_STATE(); case 1592: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1585); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4020); END_STATE(); case 1593: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4015); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3084); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3087); END_STATE(); case 1594: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1590); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1603); END_STATE(); case 1595: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1586); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1604); END_STATE(); case 1596: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1588); + lookahead == 'n') ADVANCE(1589); END_STATE(); case 1597: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1587); + lookahead == 'n') ADVANCE(4029); END_STATE(); case 1598: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1591); + lookahead == 'n') ADVANCE(1594); END_STATE(); case 1599: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1602); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1590); END_STATE(); case 1600: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1601); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1592); END_STATE(); case 1601: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3997); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1591); END_STATE(); case 1602: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4007); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1595); END_STATE(); case 1603: - if (lookahead == 'l' || - lookahead == 'r') ADVANCE(4244); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1606); END_STATE(); case 1604: - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4053); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1605); END_STATE(); case 1605: - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3801); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(4011); END_STATE(); case 1606: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(449); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(4021); END_STATE(); case 1607: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4048); + if (lookahead == 'l' || + lookahead == 'r') ADVANCE(4262); END_STATE(); case 1608: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4047); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4067); END_STATE(); case 1609: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4065); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3815); END_STATE(); case 1610: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4053); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(449); END_STATE(); case 1611: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4062); END_STATE(); case 1612: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1607); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4061); END_STATE(); case 1613: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4064); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4079); END_STATE(); case 1614: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4067); END_STATE(); case 1615: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); END_STATE(); case 1616: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(420); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); END_STATE(); case 1617: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); END_STATE(); case 1618: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1620); END_STATE(); case 1619: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1624); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); END_STATE(); case 1620: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4090); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(422); END_STATE(); case 1621: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1581); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(448); END_STATE(); case 1622: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4080); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1621); END_STATE(); case 1623: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1582); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1628); END_STATE(); case 1624: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1620); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4104); END_STATE(); case 1625: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1622); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1585); END_STATE(); case 1626: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1625); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4094); END_STATE(); case 1627: - if (eof) ADVANCE(1777); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1586); + END_STATE(); + case 1628: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1624); + END_STATE(); + case 1629: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1626); + END_STATE(); + case 1630: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1629); + END_STATE(); + case 1631: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 2431, - '"', 4075, - '#', 5521, - '$', 3607, + '!', 2435, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - ')', 3604, - '*', 3770, - '+', 3820, - ',', 3605, - '-', 3647, - '.', 4106, - '/', 3809, - '0', 3958, - ':', 4098, - ';', 3565, - '<', 3791, - '=', 1792, - '>', 3624, - 'I', 2846, - 'N', 2839, - '[', 4045, - ']', 3602, - '_', 2450, + '(', 3617, + ')', 3618, + '*', 3780, + '+', 3834, + ',', 3619, + '-', 3661, + '.', 4124, + '/', 3823, + '0', 3972, + ':', 4116, + ';', 3579, + '<', 3805, + '=', 1796, + '>', 3638, + 'I', 2854, + 'N', 2847, + '[', 4059, + ']', 3616, + '_', 2454, '`', 482, - 'a', 2627, - 'b', 2593, - 'c', 2466, - 'd', 2520, - 'e', 1905, - 'f', 2459, - 'h', 2595, - 'i', 2443, - 'l', 2537, - 'm', 2461, - 'n', 2694, - 'o', 1906, - 'r', 2521, - 's', 2675, - 't', 2714, - 'u', 2756, - 'w', 2585, - 'x', 2683, - '|', 3566, - '}', 3713, + 'a', 2630, + 'b', 2600, + 'c', 2471, + 'd', 2526, + 'e', 1909, + 'f', 2463, + 'h', 2470, + 'i', 2447, + 'l', 2543, + 'm', 2465, + 'n', 2700, + 'o', 1910, + 'r', 2527, + 's', 2681, + 't', 2720, + 'u', 2764, + 'w', 2590, + 'x', 2689, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1628); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3981); + lookahead == ' ') SKIP(1632); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2860); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2868); END_STATE(); - case 1628: - if (eof) ADVANCE(1777); + case 1632: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 2431, - '"', 4075, - '#', 5521, - '$', 3607, + '!', 2435, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - ')', 3604, - '*', 3770, - '+', 3820, - ',', 3605, - '-', 3647, - '.', 4107, - '/', 3809, - '0', 3958, - ':', 4098, - ';', 3565, - '<', 3791, - '=', 1792, - '>', 3624, - 'I', 2846, - 'N', 2839, - ']', 3602, - '_', 2450, + '(', 3617, + ')', 3618, + '*', 3780, + '+', 3834, + ',', 3619, + '-', 3661, + '.', 4125, + '/', 3823, + '0', 3972, + ':', 4116, + ';', 3579, + '<', 3805, + '=', 1796, + '>', 3638, + 'I', 2854, + 'N', 2847, + ']', 3616, + '_', 2454, '`', 482, - 'a', 2627, - 'b', 2593, - 'c', 2466, - 'd', 2520, - 'e', 1905, - 'f', 2459, - 'h', 2595, - 'i', 2443, - 'l', 2537, - 'm', 2461, - 'n', 2694, - 'o', 1906, - 'r', 2521, - 's', 2675, - 't', 2714, - 'u', 2756, - 'w', 2585, - 'x', 2683, - '|', 3566, - '}', 3713, + 'a', 2630, + 'b', 2600, + 'c', 2471, + 'd', 2526, + 'e', 1909, + 'f', 2463, + 'h', 2470, + 'i', 2447, + 'l', 2543, + 'm', 2465, + 'n', 2700, + 'o', 1910, + 'r', 2527, + 's', 2681, + 't', 2720, + 'u', 2764, + 'w', 2590, + 'x', 2689, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1628); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3981); + lookahead == ' ') SKIP(1632); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2860); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2868); END_STATE(); - case 1629: - if (eof) ADVANCE(1777); + case 1633: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 4513, - '#', 5521, - '$', 3606, - '(', 3802, - ')', 3604, - '*', 3769, - '+', 3819, - '-', 3653, - '.', 3867, - '/', 3808, - ';', 3565, - '<', 3791, - '=', 4515, - '>', 3624, - '_', 4538, - 'a', 4590, - 'b', 4579, - 'e', 4470, - 'i', 4589, - 'm', 4595, - 'n', 4597, - 'o', 4472, - 's', 4628, - 'x', 4599, - '{', 3712, - '|', 3566, - '}', 3713, + '!', 4531, + '#', 5548, + '$', 3620, + '(', 3816, + ')', 3618, + '*', 3779, + '+', 3833, + '-', 3667, + '.', 3881, + '/', 3822, + ';', 3579, + '<', 3805, + '=', 4533, + '>', 3638, + '_', 4556, + 'a', 4611, + 'b', 4600, + 'e', 4488, + 'h', 4575, + 'i', 4610, + 'm', 4616, + 'n', 4618, + 'o', 4490, + 's', 4654, + 'x', 4620, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1661); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); + lookahead == ' ') SKIP(1665); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '_' || 'b' < lookahead)) ADVANCE(4685); + (lookahead < '_' || 'b' < lookahead)) ADVANCE(4708); END_STATE(); - case 1630: - if (eof) ADVANCE(1777); + case 1634: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 4513, - '#', 5521, - '$', 3606, - '(', 3802, - ')', 3604, - '*', 3769, - '+', 3819, - '-', 3653, - '.', 3867, - '/', 3808, - ';', 3565, - '<', 3791, - '=', 4515, - '>', 3624, - '_', 4538, - 'a', 4590, - 'b', 4579, - 'e', 4486, - 'i', 4589, - 'm', 4595, - 'n', 4597, - 'o', 4488, - 's', 4628, - 'x', 4599, - '|', 3566, - '}', 3713, + '!', 4531, + '#', 5548, + '$', 3620, + '(', 3816, + ')', 3618, + '*', 3779, + '+', 3833, + '-', 3667, + '.', 3881, + '/', 3822, + ';', 3579, + '<', 3805, + '=', 4533, + '>', 3638, + '_', 4556, + 'a', 4611, + 'b', 4600, + 'e', 4504, + 'h', 4575, + 'i', 4610, + 'm', 4616, + 'n', 4618, + 'o', 4506, + 's', 4654, + 'x', 4620, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1663); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == ' ') SKIP(1667); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); - case 1631: - if (eof) ADVANCE(1777); + case 1635: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 4513, - '#', 5521, - '$', 3606, - '(', 3802, - ')', 3604, - '*', 3769, - '+', 3819, - '-', 3653, - '.', 4540, - '/', 3808, - ';', 3565, - '<', 3791, - '=', 4515, - '>', 3624, - '_', 4538, - 'a', 4590, - 'b', 4579, - 'e', 4470, - 'i', 4589, - 'm', 4595, - 'n', 4597, - 'o', 4472, - 's', 4628, - 'x', 4599, - '|', 3566, - '}', 3713, + '!', 4531, + '#', 5548, + '$', 3620, + '(', 3816, + ')', 3618, + '*', 3779, + '+', 3833, + '-', 3667, + '.', 4558, + '/', 3822, + ';', 3579, + '<', 3805, + '=', 4533, + '>', 3638, + '_', 4556, + 'a', 4611, + 'b', 4600, + 'e', 4488, + 'h', 4575, + 'i', 4610, + 'm', 4616, + 'n', 4618, + 'o', 4490, + 's', 4654, + 'x', 4620, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1662); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == ' ') SKIP(1666); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); - case 1632: - if (eof) ADVANCE(1777); + case 1636: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 4513, - '#', 5521, - '$', 3606, - '(', 3802, - ')', 3604, - '*', 3769, - '+', 3819, - '-', 3653, - '.', 4540, - '/', 3808, - ';', 3565, - '<', 3791, - '=', 4515, - '>', 3624, - '_', 4538, - 'a', 4590, - 'b', 4579, - 'e', 4486, - 'i', 4589, - 'm', 4595, - 'n', 4597, - 'o', 4488, - 's', 4628, - 'x', 4599, - '|', 3566, - '}', 3713, + '!', 4531, + '#', 5548, + '$', 3620, + '(', 3816, + ')', 3618, + '*', 3779, + '+', 3833, + '-', 3667, + '.', 4558, + '/', 3822, + ';', 3579, + '<', 3805, + '=', 4533, + '>', 3638, + '_', 4556, + 'a', 4611, + 'b', 4600, + 'e', 4504, + 'h', 4575, + 'i', 4610, + 'm', 4616, + 'n', 4618, + 'o', 4506, + 's', 4654, + 'x', 4620, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1663); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == ' ') SKIP(1667); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); - case 1633: - if (eof) ADVANCE(1777); + case 1637: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 4513, - '#', 5521, - '(', 3802, - ')', 3604, - '*', 3769, - '+', 3817, - '-', 3634, - '.', 3857, - '/', 3808, - ';', 3565, - '<', 3791, - '=', 4515, - '>', 3624, - 'B', 4024, - 'E', 4531, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'P', 4535, - 'T', 4535, - 'a', 4590, - 'b', 4026, - 'd', 4555, - 'e', 4474, - 'g', 4534, - 'h', 4608, - 'i', 4589, - 'k', 4534, - 'm', 4536, - 'n', 4596, - 'o', 4472, - 'p', 4534, - 's', 4566, - 't', 4534, - 'u', 4621, - 'w', 4582, - 'x', 4599, - '{', 3712, - '|', 3566, - '}', 3713, - 0xb5, 4621, + '!', 4531, + '#', 5548, + '(', 3816, + ')', 3618, + '*', 3779, + '+', 3831, + '-', 3648, + '.', 3871, + '/', 3822, + ';', 3579, + '<', 3805, + '=', 4533, + '>', 3638, + 'B', 4038, + 'E', 4549, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'P', 4553, + 'T', 4553, + 'a', 4611, + 'b', 4040, + 'd', 4573, + 'e', 4492, + 'g', 4552, + 'h', 4574, + 'i', 4610, + 'k', 4552, + 'm', 4554, + 'n', 4617, + 'o', 4490, + 'p', 4552, + 's', 4587, + 't', 4552, + 'u', 4644, + 'w', 4603, + 'x', 4620, + '{', 3726, + '|', 3580, + '}', 3727, + 0xb5, 4644, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1667); + lookahead == ' ') SKIP(1671); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(4685); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(4708); END_STATE(); - case 1634: - if (eof) ADVANCE(1777); + case 1638: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 4513, - '#', 5521, - '(', 3802, - ')', 3604, - '*', 3769, - '+', 3817, - '-', 3634, - '.', 3857, - '/', 3808, - ';', 3565, - '<', 3791, - '=', 4515, - '>', 3624, - 'B', 4024, - 'E', 4531, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'P', 4535, - 'T', 4535, - 'a', 4590, - 'b', 4026, - 'd', 4555, - 'e', 4479, - 'g', 4534, - 'h', 4608, - 'i', 4589, - 'k', 4534, - 'm', 4536, - 'n', 4596, - 'o', 4488, - 'p', 4534, - 's', 4566, - 't', 4534, - 'u', 4621, - 'w', 4582, - 'x', 4599, - '|', 3566, - '}', 3713, - 0xb5, 4621, + '!', 4531, + '#', 5548, + '(', 3816, + ')', 3618, + '*', 3779, + '+', 3831, + '-', 3648, + '.', 3871, + '/', 3822, + ';', 3579, + '<', 3805, + '=', 4533, + '>', 3638, + 'B', 4038, + 'E', 4549, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'P', 4553, + 'T', 4553, + 'a', 4611, + 'b', 4040, + 'd', 4573, + 'e', 4497, + 'g', 4552, + 'h', 4574, + 'i', 4610, + 'k', 4552, + 'm', 4554, + 'n', 4617, + 'o', 4506, + 'p', 4552, + 's', 4587, + 't', 4552, + 'u', 4644, + 'w', 4603, + 'x', 4620, + '|', 3580, + '}', 3727, + 0xb5, 4644, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1669); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == ' ') SKIP(1673); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); - case 1635: - if (eof) ADVANCE(1777); + case 1639: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 4513, - '#', 5521, - '(', 3802, - ')', 3604, - '*', 3769, - '+', 3817, - '-', 3634, - '.', 3857, - '/', 3808, - ';', 3565, - '<', 3791, - '=', 4515, - '>', 3624, - 'E', 4550, - 'a', 4590, - 'b', 4579, - 'e', 4476, - 'i', 4589, - 'm', 4595, - 'n', 4597, - 'o', 4472, - 's', 4628, - 'x', 4599, - '{', 3712, - '|', 3566, - '}', 3713, + '!', 4531, + '#', 5548, + '(', 3816, + ')', 3618, + '*', 3779, + '+', 3831, + '-', 3648, + '.', 3871, + '/', 3822, + ';', 3579, + '<', 3805, + '=', 4533, + '>', 3638, + 'E', 4567, + 'a', 4611, + 'b', 4600, + 'e', 4494, + 'h', 4575, + 'i', 4610, + 'm', 4616, + 'n', 4618, + 'o', 4490, + 's', 4654, + 'x', 4620, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1667); + lookahead == ' ') SKIP(1671); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(4685); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(4708); END_STATE(); - case 1636: - if (eof) ADVANCE(1777); + case 1640: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 4513, - '#', 5521, - '(', 3802, - ')', 3604, - '*', 3769, - '+', 3817, - '-', 3634, - '.', 3857, - '/', 3808, - ';', 3565, - '<', 3791, - '=', 4515, - '>', 3624, - 'E', 4550, - 'a', 4590, - 'b', 4579, - 'e', 4481, - 'i', 4589, - 'm', 4595, - 'n', 4597, - 'o', 4488, - 's', 4628, - 'x', 4599, - '|', 3566, - '}', 3713, + '!', 4531, + '#', 5548, + '(', 3816, + ')', 3618, + '*', 3779, + '+', 3831, + '-', 3648, + '.', 3871, + '/', 3822, + ';', 3579, + '<', 3805, + '=', 4533, + '>', 3638, + 'E', 4567, + 'a', 4611, + 'b', 4600, + 'e', 4499, + 'h', 4575, + 'i', 4610, + 'm', 4616, + 'n', 4618, + 'o', 4506, + 's', 4654, + 'x', 4620, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1669); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == ' ') SKIP(1673); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); - case 1637: - if (eof) ADVANCE(1777); + case 1641: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 4513, - '#', 5521, - '(', 3802, - ')', 3604, - '*', 3769, - '+', 3817, - '-', 3634, - '.', 4507, - '/', 3808, - ';', 3565, - '<', 3791, - '=', 4515, - '>', 3624, - 'B', 4024, - 'E', 4531, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'P', 4535, - 'T', 4535, - '_', 4538, - 'a', 4590, - 'b', 4026, - 'd', 4555, - 'e', 4474, - 'g', 4534, - 'h', 4608, - 'i', 4589, - 'k', 4534, - 'm', 4536, - 'n', 4596, - 'o', 4472, - 'p', 4534, - 's', 4566, - 't', 4534, - 'u', 4621, - 'w', 4582, - 'x', 4599, - '|', 3566, - '}', 3713, - 0xb5, 4621, + '!', 4531, + '#', 5548, + '(', 3816, + ')', 3618, + '*', 3779, + '+', 3831, + '-', 3648, + '.', 4525, + '/', 3822, + ';', 3579, + '<', 3805, + '=', 4533, + '>', 3638, + 'B', 4038, + 'E', 4549, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'P', 4553, + 'T', 4553, + '_', 4556, + 'a', 4611, + 'b', 4040, + 'd', 4573, + 'e', 4492, + 'g', 4552, + 'h', 4574, + 'i', 4610, + 'k', 4552, + 'm', 4554, + 'n', 4617, + 'o', 4490, + 'p', 4552, + 's', 4587, + 't', 4552, + 'u', 4644, + 'w', 4603, + 'x', 4620, + '|', 3580, + '}', 3727, + 0xb5, 4644, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1668); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == ' ') SKIP(1672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); - case 1638: - if (eof) ADVANCE(1777); + case 1642: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 4513, - '#', 5521, - '(', 3802, - ')', 3604, - '*', 3769, - '+', 3817, - '-', 3634, - '.', 4507, - '/', 3808, - ';', 3565, - '<', 3791, - '=', 4515, - '>', 3624, - 'B', 4024, - 'E', 4531, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'P', 4535, - 'T', 4535, - '_', 4538, - 'a', 4590, - 'b', 4026, - 'd', 4555, - 'e', 4479, - 'g', 4534, - 'h', 4608, - 'i', 4589, - 'k', 4534, - 'm', 4536, - 'n', 4596, - 'o', 4488, - 'p', 4534, - 's', 4566, - 't', 4534, - 'u', 4621, - 'w', 4582, - 'x', 4599, - '|', 3566, - '}', 3713, - 0xb5, 4621, + '!', 4531, + '#', 5548, + '(', 3816, + ')', 3618, + '*', 3779, + '+', 3831, + '-', 3648, + '.', 4525, + '/', 3822, + ';', 3579, + '<', 3805, + '=', 4533, + '>', 3638, + 'B', 4038, + 'E', 4549, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'P', 4553, + 'T', 4553, + '_', 4556, + 'a', 4611, + 'b', 4040, + 'd', 4573, + 'e', 4497, + 'g', 4552, + 'h', 4574, + 'i', 4610, + 'k', 4552, + 'm', 4554, + 'n', 4617, + 'o', 4506, + 'p', 4552, + 's', 4587, + 't', 4552, + 'u', 4644, + 'w', 4603, + 'x', 4620, + '|', 3580, + '}', 3727, + 0xb5, 4644, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1669); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == ' ') SKIP(1673); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); - case 1639: - if (eof) ADVANCE(1777); + case 1643: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 4513, - '#', 5521, - '(', 3802, - ')', 3604, - '*', 3769, - '+', 3817, - '-', 3634, - '.', 4507, - '/', 3808, - ';', 3565, - '<', 3791, - '=', 4515, - '>', 3624, - 'B', 4024, - 'E', 4531, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'P', 4535, - 'T', 4535, - 'a', 4590, - 'b', 4026, - 'd', 4555, - 'e', 4474, - 'g', 4534, - 'h', 4608, - 'i', 4589, - 'k', 4534, - 'm', 4536, - 'n', 4596, - 'o', 4472, - 'p', 4534, - 's', 4566, - 't', 4534, - 'u', 4621, - 'w', 4582, - 'x', 4599, - '|', 3566, - '}', 3713, - 0xb5, 4621, + '!', 4531, + '#', 5548, + '(', 3816, + ')', 3618, + '*', 3779, + '+', 3831, + '-', 3648, + '.', 4525, + '/', 3822, + ';', 3579, + '<', 3805, + '=', 4533, + '>', 3638, + 'B', 4038, + 'E', 4549, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'P', 4553, + 'T', 4553, + 'a', 4611, + 'b', 4040, + 'd', 4573, + 'e', 4492, + 'g', 4552, + 'h', 4574, + 'i', 4610, + 'k', 4552, + 'm', 4554, + 'n', 4617, + 'o', 4490, + 'p', 4552, + 's', 4587, + 't', 4552, + 'u', 4644, + 'w', 4603, + 'x', 4620, + '|', 3580, + '}', 3727, + 0xb5, 4644, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1668); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == ' ') SKIP(1672); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); - case 1640: - if (eof) ADVANCE(1777); + case 1644: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 4513, - '#', 5521, - '(', 3802, - ')', 3604, - '*', 3769, - '+', 3817, - '-', 3634, - '.', 4507, - '/', 3808, - ';', 3565, - '<', 3791, - '=', 4515, - '>', 3624, - 'B', 4024, - 'E', 4531, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'P', 4535, - 'T', 4535, - 'a', 4590, - 'b', 4026, - 'd', 4555, - 'e', 4479, - 'g', 4534, - 'h', 4608, - 'i', 4589, - 'k', 4534, - 'm', 4536, - 'n', 4596, - 'o', 4488, - 'p', 4534, - 's', 4566, - 't', 4534, - 'u', 4621, - 'w', 4582, - 'x', 4599, - '|', 3566, - '}', 3713, - 0xb5, 4621, + '!', 4531, + '#', 5548, + '(', 3816, + ')', 3618, + '*', 3779, + '+', 3831, + '-', 3648, + '.', 4525, + '/', 3822, + ';', 3579, + '<', 3805, + '=', 4533, + '>', 3638, + 'B', 4038, + 'E', 4549, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'P', 4553, + 'T', 4553, + 'a', 4611, + 'b', 4040, + 'd', 4573, + 'e', 4497, + 'g', 4552, + 'h', 4574, + 'i', 4610, + 'k', 4552, + 'm', 4554, + 'n', 4617, + 'o', 4506, + 'p', 4552, + 's', 4587, + 't', 4552, + 'u', 4644, + 'w', 4603, + 'x', 4620, + '|', 3580, + '}', 3727, + 0xb5, 4644, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1669); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == ' ') SKIP(1673); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); - case 1641: - if (eof) ADVANCE(1777); + case 1645: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 4513, - '#', 5521, - '(', 3802, - ')', 3604, - '*', 3769, - '+', 3817, - '-', 3634, - '.', 4507, - '/', 3808, - ';', 3565, - '<', 3791, - '=', 4515, - '>', 3624, - 'B', 4024, - 'E', 4535, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'P', 4535, - 'T', 4535, - 'a', 4590, - 'b', 4026, - 'd', 4555, - 'e', 4468, - 'g', 4534, - 'h', 4608, - 'i', 4589, - 'k', 4534, - 'm', 4536, - 'n', 4596, - 'o', 4472, - 'p', 4534, - 's', 4566, - 't', 4534, - 'u', 4621, - 'w', 4582, - 'x', 4599, - '|', 3566, - '}', 3713, - 0xb5, 4621, + '!', 4531, + '#', 5548, + '(', 3816, + ')', 3618, + '*', 3779, + '+', 3831, + '-', 3648, + '.', 4525, + '/', 3822, + ';', 3579, + '<', 3805, + '=', 4533, + '>', 3638, + 'B', 4038, + 'E', 4553, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'P', 4553, + 'T', 4553, + 'a', 4611, + 'b', 4040, + 'd', 4573, + 'e', 4486, + 'g', 4552, + 'h', 4574, + 'i', 4610, + 'k', 4552, + 'm', 4554, + 'n', 4617, + 'o', 4490, + 'p', 4552, + 's', 4587, + 't', 4552, + 'u', 4644, + 'w', 4603, + 'x', 4620, + '|', 3580, + '}', 3727, + 0xb5, 4644, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1668); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == ' ') SKIP(1672); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); - case 1642: - if (eof) ADVANCE(1777); + case 1646: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 4513, - '#', 5521, - '(', 3802, - ')', 3604, - '*', 3769, - '+', 3817, - '-', 3634, - '.', 4507, - '/', 3808, - ';', 3565, - '<', 3791, - '=', 4515, - '>', 3624, - 'B', 4024, - 'E', 4535, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'P', 4535, - 'T', 4535, - 'a', 4590, - 'b', 4026, - 'd', 4555, - 'e', 4484, - 'g', 4534, - 'h', 4608, - 'i', 4589, - 'k', 4534, - 'm', 4536, - 'n', 4596, - 'o', 4488, - 'p', 4534, - 's', 4566, - 't', 4534, - 'u', 4621, - 'w', 4582, - 'x', 4599, - '|', 3566, - '}', 3713, - 0xb5, 4621, + '!', 4531, + '#', 5548, + '(', 3816, + ')', 3618, + '*', 3779, + '+', 3831, + '-', 3648, + '.', 4525, + '/', 3822, + ';', 3579, + '<', 3805, + '=', 4533, + '>', 3638, + 'B', 4038, + 'E', 4553, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'P', 4553, + 'T', 4553, + 'a', 4611, + 'b', 4040, + 'd', 4573, + 'e', 4502, + 'g', 4552, + 'h', 4574, + 'i', 4610, + 'k', 4552, + 'm', 4554, + 'n', 4617, + 'o', 4506, + 'p', 4552, + 's', 4587, + 't', 4552, + 'u', 4644, + 'w', 4603, + 'x', 4620, + '|', 3580, + '}', 3727, + 0xb5, 4644, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1669); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == ' ') SKIP(1673); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); - case 1643: - if (eof) ADVANCE(1777); + case 1647: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 4513, - '#', 5521, - '(', 3802, - ')', 3604, - '*', 3769, - '+', 3817, - '-', 3634, - '.', 4507, - '/', 3808, - ';', 3565, - '<', 3791, - '=', 4515, - '>', 3624, - 'E', 4550, - '_', 4538, - 'a', 4590, - 'b', 4579, - 'e', 4476, - 'i', 4589, - 'm', 4595, - 'n', 4597, - 'o', 4472, - 's', 4628, - 'x', 4599, - '{', 3712, - '|', 3566, - '}', 3713, + '!', 4531, + '#', 5548, + '(', 3816, + ')', 3618, + '*', 3779, + '+', 3831, + '-', 3648, + '.', 4525, + '/', 3822, + ';', 3579, + '<', 3805, + '=', 4533, + '>', 3638, + 'E', 4567, + '_', 4556, + 'a', 4611, + 'b', 4600, + 'e', 4494, + 'h', 4575, + 'i', 4610, + 'm', 4616, + 'n', 4618, + 'o', 4490, + 's', 4654, + 'x', 4620, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1667); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); + lookahead == ' ') SKIP(1671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '_' || 'b' < lookahead)) ADVANCE(4685); + (lookahead < '_' || 'b' < lookahead)) ADVANCE(4708); END_STATE(); - case 1644: - if (eof) ADVANCE(1777); + case 1648: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 4513, - '#', 5521, - '(', 3802, - ')', 3604, - '*', 3769, - '+', 3817, - '-', 3634, - '.', 4507, - '/', 3808, - ';', 3565, - '<', 3791, - '=', 4515, - '>', 3624, - 'E', 4550, - '_', 4538, - 'a', 4590, - 'b', 4579, - 'e', 4481, - 'i', 4589, - 'm', 4595, - 'n', 4597, - 'o', 4488, - 's', 4628, - 'x', 4599, - '|', 3566, - '}', 3713, + '!', 4531, + '#', 5548, + '(', 3816, + ')', 3618, + '*', 3779, + '+', 3831, + '-', 3648, + '.', 4525, + '/', 3822, + ';', 3579, + '<', 3805, + '=', 4533, + '>', 3638, + 'E', 4567, + '_', 4556, + 'a', 4611, + 'b', 4600, + 'e', 4499, + 'h', 4575, + 'i', 4610, + 'm', 4616, + 'n', 4618, + 'o', 4506, + 's', 4654, + 'x', 4620, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1669); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == ' ') SKIP(1673); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); - case 1645: - if (eof) ADVANCE(1777); + case 1649: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 4513, - '#', 5521, - '(', 3802, - ')', 3604, - '*', 3769, - '+', 3817, - '-', 3634, - '.', 4507, - '/', 3808, - ';', 3565, - '<', 3791, - '=', 4515, - '>', 3624, - 'E', 4550, - 'a', 4590, - 'b', 4579, - 'e', 4476, - 'i', 4589, - 'm', 4595, - 'n', 4597, - 'o', 4472, - 's', 4628, - 'x', 4599, - '{', 3712, - '|', 3566, - '}', 3713, + '!', 4531, + '#', 5548, + '(', 3816, + ')', 3618, + '*', 3779, + '+', 3831, + '-', 3648, + '.', 4525, + '/', 3822, + ';', 3579, + '<', 3805, + '=', 4533, + '>', 3638, + 'E', 4567, + 'a', 4611, + 'b', 4600, + 'e', 4494, + 'h', 4575, + 'i', 4610, + 'm', 4616, + 'n', 4618, + 'o', 4490, + 's', 4654, + 'x', 4620, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1667); + lookahead == ' ') SKIP(1671); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(4685); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(4708); END_STATE(); - case 1646: - if (eof) ADVANCE(1777); + case 1650: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 4513, - '#', 5521, - '(', 3802, - ')', 3604, - '*', 3769, - '+', 3817, - '-', 3634, - '.', 4507, - '/', 3808, - ';', 3565, - '<', 3791, - '=', 4515, - '>', 3624, - 'E', 4550, - 'a', 4590, - 'b', 4579, - 'e', 4481, - 'i', 4589, - 'm', 4595, - 'n', 4597, - 'o', 4488, - 's', 4628, - 'x', 4599, - '|', 3566, - '}', 3713, + '!', 4531, + '#', 5548, + '(', 3816, + ')', 3618, + '*', 3779, + '+', 3831, + '-', 3648, + '.', 4525, + '/', 3822, + ';', 3579, + '<', 3805, + '=', 4533, + '>', 3638, + 'E', 4567, + 'a', 4611, + 'b', 4600, + 'e', 4499, + 'h', 4575, + 'i', 4610, + 'm', 4616, + 'n', 4618, + 'o', 4506, + 's', 4654, + 'x', 4620, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1669); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == ' ') SKIP(1673); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); - case 1647: - if (eof) ADVANCE(1777); + case 1651: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 4513, - '#', 5521, - '(', 3802, - ')', 3604, - '*', 3769, - '+', 3817, - '-', 3634, - '.', 4507, - '/', 3808, - ';', 3565, - '<', 3791, - '=', 4515, - '>', 3624, - 'a', 4590, - 'b', 4579, - 'e', 4470, - 'i', 4589, - 'm', 4595, - 'n', 4597, - 'o', 4472, - 's', 4628, - 'x', 4599, - '{', 3712, - '|', 3566, - '}', 3713, + '!', 4531, + '#', 5548, + '(', 3816, + ')', 3618, + '*', 3779, + '+', 3831, + '-', 3648, + '.', 4525, + '/', 3822, + ';', 3579, + '<', 3805, + '=', 4533, + '>', 3638, + 'a', 4611, + 'b', 4600, + 'e', 4488, + 'h', 4575, + 'i', 4610, + 'm', 4616, + 'n', 4618, + 'o', 4490, + 's', 4654, + 'x', 4620, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1667); + lookahead == ' ') SKIP(1671); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(4685); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(4708); END_STATE(); - case 1648: - if (eof) ADVANCE(1777); + case 1652: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 4513, - '#', 5521, - '(', 3802, - ')', 3604, - '*', 3769, - '+', 3817, - '-', 3634, - '.', 4507, - '/', 3808, - ';', 3565, - '<', 3791, - '=', 4515, - '>', 3624, - 'a', 4590, - 'b', 4579, - 'e', 4486, - 'i', 4589, - 'm', 4595, - 'n', 4597, - 'o', 4488, - 's', 4628, - 'x', 4599, - '|', 3566, - '}', 3713, + '!', 4531, + '#', 5548, + '(', 3816, + ')', 3618, + '*', 3779, + '+', 3831, + '-', 3648, + '.', 4525, + '/', 3822, + ';', 3579, + '<', 3805, + '=', 4533, + '>', 3638, + 'a', 4611, + 'b', 4600, + 'e', 4504, + 'h', 4575, + 'i', 4610, + 'm', 4616, + 'n', 4618, + 'o', 4506, + 's', 4654, + 'x', 4620, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1669); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == ' ') SKIP(1673); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); - case 1649: - if (eof) ADVANCE(1777); + case 1653: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 4513, - '#', 5521, - '(', 3802, - ')', 3604, - '*', 3769, - '+', 3817, - '-', 3634, - '.', 3843, - '/', 3808, - ';', 3565, - '<', 3791, - '=', 4515, - '>', 3624, - 'E', 4550, - 'a', 4590, - 'b', 4579, - 'e', 4476, - 'i', 4589, - 'm', 4595, - 'n', 4597, - 'o', 4472, - 's', 4628, - 'x', 4599, - '|', 3566, - '}', 3713, + '!', 4531, + '#', 5548, + '(', 3816, + ')', 3618, + '*', 3779, + '+', 3831, + '-', 3648, + '.', 3857, + '/', 3822, + ';', 3579, + '<', 3805, + '=', 4533, + '>', 3638, + 'E', 4567, + 'a', 4611, + 'b', 4600, + 'e', 4494, + 'h', 4575, + 'i', 4610, + 'm', 4616, + 'n', 4618, + 'o', 4490, + 's', 4654, + 'x', 4620, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1668); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == ' ') SKIP(1672); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); - case 1650: - if (eof) ADVANCE(1777); + case 1654: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 4513, - '#', 5521, - '(', 3802, - ')', 3604, - '*', 3769, - '+', 3817, - '-', 3634, - '.', 3843, - '/', 3808, - ';', 3565, - '<', 3791, - '=', 4515, - '>', 3624, - 'E', 4550, - 'a', 4590, - 'b', 4579, - 'e', 4481, - 'i', 4589, - 'm', 4595, - 'n', 4597, - 'o', 4488, - 's', 4628, - 'x', 4599, - '|', 3566, - '}', 3713, + '!', 4531, + '#', 5548, + '(', 3816, + ')', 3618, + '*', 3779, + '+', 3831, + '-', 3648, + '.', 3857, + '/', 3822, + ';', 3579, + '<', 3805, + '=', 4533, + '>', 3638, + 'E', 4567, + 'a', 4611, + 'b', 4600, + 'e', 4499, + 'h', 4575, + 'i', 4610, + 'm', 4616, + 'n', 4618, + 'o', 4506, + 's', 4654, + 'x', 4620, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1669); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == ' ') SKIP(1673); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); - case 1651: - if (eof) ADVANCE(1777); + case 1655: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 4513, - '#', 5521, - '(', 3802, - ')', 3604, - '*', 3769, - '+', 3817, - '-', 3634, - '/', 3808, - ';', 3565, - '<', 3791, - '=', 4515, - '>', 3624, - 'E', 4550, - '_', 4538, - 'a', 4590, - 'b', 4579, - 'e', 4476, - 'i', 4589, - 'm', 4595, - 'n', 4597, - 'o', 4472, - 's', 4628, - 'x', 4599, - '|', 3566, - '}', 3713, + '!', 4531, + '#', 5548, + '(', 3816, + ')', 3618, + '*', 3779, + '+', 3831, + '-', 3648, + '/', 3822, + ';', 3579, + '<', 3805, + '=', 4533, + '>', 3638, + 'E', 4567, + '_', 4556, + 'a', 4611, + 'b', 4600, + 'e', 4494, + 'h', 4575, + 'i', 4610, + 'm', 4616, + 'n', 4618, + 'o', 4490, + 's', 4654, + 'x', 4620, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1668); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == ' ') SKIP(1672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); - case 1652: - if (eof) ADVANCE(1777); + case 1656: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 4513, - '#', 5521, - '(', 3802, - ')', 3604, - '*', 3769, - '+', 3817, - '-', 3634, - '/', 3808, - ';', 3565, - '<', 3791, - '=', 4515, - '>', 3624, - 'E', 4550, - '_', 4538, - 'a', 4590, - 'b', 4579, - 'e', 4481, - 'i', 4589, - 'm', 4595, - 'n', 4597, - 'o', 4488, - 's', 4628, - 'x', 4599, - '|', 3566, - '}', 3713, + '!', 4531, + '#', 5548, + '(', 3816, + ')', 3618, + '*', 3779, + '+', 3831, + '-', 3648, + '/', 3822, + ';', 3579, + '<', 3805, + '=', 4533, + '>', 3638, + 'E', 4567, + '_', 4556, + 'a', 4611, + 'b', 4600, + 'e', 4499, + 'h', 4575, + 'i', 4610, + 'm', 4616, + 'n', 4618, + 'o', 4506, + 's', 4654, + 'x', 4620, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1669); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == ' ') SKIP(1673); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); - case 1653: - if (eof) ADVANCE(1777); + case 1657: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 4513, - '#', 5521, - '(', 3802, - ')', 3604, - '*', 3769, - '+', 3817, - '-', 3634, - '/', 3808, - ';', 3565, - '<', 3791, - '=', 4515, - '>', 3624, - 'E', 4550, - 'a', 4590, - 'b', 4579, - 'e', 4476, - 'i', 4589, - 'm', 4595, - 'n', 4597, - 'o', 4472, - 's', 4628, - 'x', 4599, - '|', 3566, - '}', 3713, + '!', 4531, + '#', 5548, + '(', 3816, + ')', 3618, + '*', 3779, + '+', 3831, + '-', 3648, + '/', 3822, + ';', 3579, + '<', 3805, + '=', 4533, + '>', 3638, + 'E', 4567, + 'a', 4611, + 'b', 4600, + 'e', 4494, + 'h', 4575, + 'i', 4610, + 'm', 4616, + 'n', 4618, + 'o', 4490, + 's', 4654, + 'x', 4620, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1668); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == ' ') SKIP(1672); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); - case 1654: - if (eof) ADVANCE(1777); + case 1658: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 4513, - '#', 5521, - '(', 3802, - ')', 3604, - '*', 3769, - '+', 3817, - '-', 3634, - '/', 3808, - ';', 3565, - '<', 3791, - '=', 4515, - '>', 3624, - 'E', 4550, - 'a', 4590, - 'b', 4579, - 'e', 4481, - 'i', 4589, - 'm', 4595, - 'n', 4597, - 'o', 4488, - 's', 4628, - 'x', 4599, - '|', 3566, - '}', 3713, + '!', 4531, + '#', 5548, + '(', 3816, + ')', 3618, + '*', 3779, + '+', 3831, + '-', 3648, + '/', 3822, + ';', 3579, + '<', 3805, + '=', 4533, + '>', 3638, + 'E', 4567, + 'a', 4611, + 'b', 4600, + 'e', 4499, + 'h', 4575, + 'i', 4610, + 'm', 4616, + 'n', 4618, + 'o', 4506, + 's', 4654, + 'x', 4620, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1669); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == ' ') SKIP(1673); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); - case 1655: - if (eof) ADVANCE(1777); + case 1659: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 4513, - '#', 5521, - '(', 3802, - ')', 3604, - '*', 3769, - '+', 3817, - '-', 3634, - '/', 3808, - ';', 3565, - '<', 3791, - '=', 4515, - '>', 3624, - 'a', 4590, - 'b', 4579, - 'e', 4470, - 'i', 4589, - 'm', 4595, - 'n', 4597, - 'o', 4472, - 's', 4628, - 'x', 4599, - '|', 3566, - '}', 3713, + '!', 4531, + '#', 5548, + '(', 3816, + ')', 3618, + '*', 3779, + '+', 3831, + '-', 3648, + '/', 3822, + ';', 3579, + '<', 3805, + '=', 4533, + '>', 3638, + 'a', 4611, + 'b', 4600, + 'e', 4488, + 'h', 4575, + 'i', 4610, + 'm', 4616, + 'n', 4618, + 'o', 4490, + 's', 4654, + 'x', 4620, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1668); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == ' ') SKIP(1672); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); - case 1656: - if (eof) ADVANCE(1777); + case 1660: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 4513, - '#', 5521, - '(', 3802, - ')', 3604, - '*', 3769, - '+', 3817, - '-', 3634, - '/', 3808, - ';', 3565, - '<', 3791, - '=', 4515, - '>', 3624, - 'a', 4590, - 'b', 4579, - 'e', 4486, - 'i', 4589, - 'm', 4595, - 'n', 4597, - 'o', 4488, - 's', 4628, - 'x', 4599, - '|', 3566, - '}', 3713, + '!', 4531, + '#', 5548, + '(', 3816, + ')', 3618, + '*', 3779, + '+', 3831, + '-', 3648, + '/', 3822, + ';', 3579, + '<', 3805, + '=', 4533, + '>', 3638, + 'a', 4611, + 'b', 4600, + 'e', 4504, + 'h', 4575, + 'i', 4610, + 'm', 4616, + 'n', 4618, + 'o', 4506, + 's', 4654, + 'x', 4620, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1669); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == ' ') SKIP(1673); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); - case 1657: - if (eof) ADVANCE(1777); + case 1661: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 4727, - '#', 5527, - '(', 3802, - ')', 3604, - '*', 3771, - '+', 3822, - '-', 3657, - '/', 3810, - ';', 3565, - '<', 3792, - '=', 4729, - '>', 3625, - 'a', 4822, - 'b', 4805, - 'e', 4695, - 'i', 4823, - 'm', 4835, - 'n', 4838, - 'o', 4697, - 's', 4880, - 'x', 4837, - '|', 3566, - '}', 3713, + '!', 4750, + '#', 5554, + '(', 3816, + ')', 3618, + '*', 3781, + '+', 3836, + '-', 3671, + '/', 3824, + ';', 3579, + '<', 3806, + '=', 4752, + '>', 3639, + 'a', 4847, + 'b', 4830, + 'e', 4718, + 'h', 4786, + 'i', 4848, + 'm', 4860, + 'n', 4863, + 'o', 4720, + 's', 4910, + 'x', 4862, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1668); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + lookahead == ' ') SKIP(1672); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); - case 1658: - if (eof) ADVANCE(1777); + case 1662: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 4727, - '#', 5527, - '(', 3802, - ')', 3604, - '*', 3771, - '+', 3822, - '-', 3657, - '/', 3810, - ';', 3565, - '<', 3792, - '=', 4729, - '>', 3625, - 'a', 4822, - 'b', 4805, - 'e', 4701, - 'i', 4823, - 'm', 4835, - 'n', 4838, - 'o', 4703, - 's', 4880, - 'x', 4837, - '|', 3566, - '}', 3713, + '!', 4750, + '#', 5554, + '(', 3816, + ')', 3618, + '*', 3781, + '+', 3836, + '-', 3671, + '/', 3824, + ';', 3579, + '<', 3806, + '=', 4752, + '>', 3639, + 'a', 4847, + 'b', 4830, + 'e', 4724, + 'h', 4786, + 'i', 4848, + 'm', 4860, + 'n', 4863, + 'o', 4726, + 's', 4910, + 'x', 4862, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1669); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + lookahead == ' ') SKIP(1673); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); - case 1659: - if (eof) ADVANCE(1777); + case 1663: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, '!', 451, - '#', 5521, - '$', 3606, - '(', 3603, - ')', 3604, - '*', 3769, - '+', 3817, - '-', 3634, - '.', 4102, - '/', 3808, - ':', 3599, - ';', 3565, - '<', 3791, + '#', 5548, + '$', 3620, + '(', 3617, + ')', 3618, + '*', 3779, + '+', 3831, + '-', 3648, + '.', 4120, + '/', 3822, + ':', 3613, + ';', 3579, + '<', 3805, '=', 452, - '>', 3624, - '?', 3772, - '[', 3601, - 'a', 1134, - 'b', 946, - 'c', 599, + '>', 3638, + '?', 3782, + '[', 3615, + 'a', 1137, + 'b', 949, + 'c', 602, 'e', 379, - 'f', 598, - 'i', 838, - 'm', 1200, - 'n', 1222, + 'f', 601, + 'h', 554, + 'i', 841, + 'm', 1203, + 'n', 1225, 'o', 385, - 's', 1491, - 't', 1350, - 'x', 1219, - '{', 3712, - '|', 3566, - '}', 3713, + 's', 1495, + 't', 1352, + 'x', 1222, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1659); + lookahead == ' ') SKIP(1663); END_STATE(); - case 1660: - if (eof) ADVANCE(1777); + case 1664: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, '!', 451, - '#', 5521, - '$', 3606, - '(', 3603, - ')', 3604, - '*', 3769, - '+', 3817, - '-', 3634, - '.', 3843, - '/', 3808, - ':', 3599, - ';', 3565, - '<', 3791, + '#', 5548, + '$', 3620, + '(', 3617, + ')', 3618, + '*', 3779, + '+', 3831, + '-', 3648, + '.', 3857, + '/', 3822, + ':', 3613, + ';', 3579, + '<', 3805, '=', 452, - '>', 3624, - '?', 3772, + '>', 3638, + '?', 3782, 'E', 477, - '[', 3601, - 'a', 1134, - 'b', 946, - 'c', 599, + '[', 3615, + 'a', 1137, + 'b', 949, + 'c', 602, 'e', 378, - 'f', 598, - 'i', 838, - 'm', 1200, - 'n', 1222, + 'f', 601, + 'h', 554, + 'i', 841, + 'm', 1203, + 'n', 1225, 'o', 385, - 's', 1491, - 't', 1350, - 'x', 1219, - '{', 3712, - '|', 3566, - '}', 3713, + 's', 1495, + 't', 1352, + 'x', 1222, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1659); + lookahead == ' ') SKIP(1663); END_STATE(); - case 1661: - if (eof) ADVANCE(1777); + case 1665: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, '!', 451, - '#', 5521, - '$', 3606, - ')', 3604, - '*', 3769, - '+', 3818, - '-', 3652, + '#', 5548, + '$', 3620, + ')', 3618, + '*', 3779, + '+', 3832, + '-', 3666, '.', 479, - '/', 3808, - ';', 3565, - '<', 3791, + '/', 3822, + ';', 3579, + '<', 3805, '=', 453, - '>', 3624, - 'a', 1134, - 'b', 946, + '>', 3638, + 'a', 1137, + 'b', 949, 'e', 380, - 'i', 1110, - 'm', 1200, - 'n', 1217, + 'h', 554, + 'i', 1113, + 'm', 1203, + 'n', 1220, 'o', 385, - 's', 1491, - 'x', 1219, - '{', 3712, - '|', 3566, - '}', 3713, + 's', 1495, + 'x', 1222, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1661); + lookahead == ' ') SKIP(1665); END_STATE(); - case 1662: - if (eof) ADVANCE(1777); + case 1666: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, '!', 451, - '#', 5521, - '$', 3606, - ')', 3604, - '*', 3769, - '+', 3818, - '-', 3652, + '#', 5548, + '$', 3620, + ')', 3618, + '*', 3779, + '+', 3832, + '-', 3666, '.', 479, - '/', 3808, - ';', 3565, - '<', 3791, + '/', 3822, + ';', 3579, + '<', 3805, '=', 453, - '>', 3624, - 'a', 1134, - 'b', 946, + '>', 3638, + 'a', 1137, + 'b', 949, 'e', 380, - 'i', 1110, - 'm', 1200, - 'n', 1217, + 'h', 554, + 'i', 1113, + 'm', 1203, + 'n', 1220, 'o', 385, - 's', 1491, - 'x', 1219, - '|', 3566, - '}', 3713, + 's', 1495, + 'x', 1222, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1662); + lookahead == ' ') SKIP(1666); END_STATE(); - case 1663: - if (eof) ADVANCE(1777); + case 1667: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, '!', 451, - '#', 5521, - '$', 3606, - ')', 3604, - '*', 3769, - '+', 3818, - '-', 3652, + '#', 5548, + '$', 3620, + ')', 3618, + '*', 3779, + '+', 3832, + '-', 3666, '.', 479, - '/', 3808, - ';', 3565, - '<', 3791, + '/', 3822, + ';', 3579, + '<', 3805, '=', 453, - '>', 3624, - 'a', 1134, - 'b', 946, + '>', 3638, + 'a', 1137, + 'b', 949, 'e', 383, - 'i', 1110, - 'm', 1200, - 'n', 1217, + 'h', 554, + 'i', 1113, + 'm', 1203, + 'n', 1220, 'o', 387, - 's', 1491, - 'x', 1219, - '|', 3566, - '}', 3713, + 's', 1495, + 'x', 1222, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1663); + lookahead == ' ') SKIP(1667); END_STATE(); - case 1664: - if (eof) ADVANCE(1777); + case 1668: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, '!', 451, - '#', 5521, - '(', 3802, - ')', 3604, - '*', 3769, - '+', 3817, - '-', 3634, - '.', 4108, - '/', 3808, - ':', 4098, - ';', 3565, - '<', 3791, + '#', 5548, + '(', 3816, + ')', 3618, + '*', 3779, + '+', 3831, + '-', 3648, + '.', 4126, + '/', 3822, + ':', 4116, + ';', 3579, + '<', 3805, '=', 452, - '>', 3624, - '?', 3772, - 'B', 4024, + '>', 3638, + '?', 3782, + 'B', 4038, 'E', 465, 'G', 468, 'K', 468, 'M', 468, 'P', 468, 'T', 468, - '[', 4045, + '[', 4059, '_', 475, - 'a', 1134, - 'b', 4027, + 'a', 1137, + 'b', 4041, 'd', 516, 'e', 377, 'g', 466, - 'h', 1291, - 'i', 838, + 'h', 555, + 'i', 841, 'k', 466, 'm', 467, - 'n', 1218, + 'n', 1221, 'o', 385, 'p', 466, - 's', 790, + 's', 793, 't', 466, - 'u', 1359, - 'w', 984, - 'x', 1219, - '{', 3712, - '|', 3566, - '}', 3713, - 0xb5, 1359, + 'u', 1363, + 'w', 987, + 'x', 1222, + '{', 3726, + '|', 3580, + '}', 3727, + 0xb5, 1363, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1666); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); + lookahead == ' ') SKIP(1670); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); END_STATE(); - case 1665: - if (eof) ADVANCE(1777); + case 1669: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, '!', 451, - '#', 5521, - '(', 3802, - ')', 3604, - '*', 3770, - '+', 3821, - '-', 3656, - '.', 4108, - '/', 3809, - ':', 4098, - ';', 3565, - '<', 3791, - '=', 1792, - '>', 3624, - '?', 3772, - 'a', 1134, - 'b', 946, + '#', 5548, + '(', 3816, + ')', 3618, + '*', 3780, + '+', 3835, + '-', 3670, + '.', 4126, + '/', 3823, + ':', 4116, + ';', 3579, + '<', 3805, + '=', 1796, + '>', 3638, + '?', 3782, + 'a', 1137, + 'b', 949, 'e', 380, - 'i', 1110, - 'm', 1200, - 'n', 1217, + 'h', 554, + 'i', 1113, + 'm', 1203, + 'n', 1220, 'o', 385, - 's', 1491, - 'x', 1219, - '{', 3712, - '|', 3566, - '}', 3713, + 's', 1495, + 'x', 1222, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1670); + lookahead == ' ') SKIP(1674); END_STATE(); - case 1666: - if (eof) ADVANCE(1777); + case 1670: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, '!', 451, - '#', 5521, - ')', 3604, - '*', 3769, - '+', 3817, - '-', 3634, - '.', 4102, - '/', 3808, - ':', 4098, - ';', 3565, - '<', 3791, + '#', 5548, + ')', 3618, + '*', 3779, + '+', 3831, + '-', 3648, + '.', 4120, + '/', 3822, + ':', 4116, + ';', 3579, + '<', 3805, '=', 452, - '>', 3624, - '?', 3772, - 'a', 1134, - 'b', 946, + '>', 3638, + '?', 3782, + 'a', 1137, + 'b', 949, 'e', 380, - 'i', 838, - 'm', 1200, - 'n', 1217, + 'h', 554, + 'i', 841, + 'm', 1203, + 'n', 1220, 'o', 385, - 's', 1491, - 'x', 1219, - '{', 3712, - '|', 3566, - '}', 3713, + 's', 1495, + 'x', 1222, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1666); + lookahead == ' ') SKIP(1670); END_STATE(); - case 1667: - if (eof) ADVANCE(1777); + case 1671: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, '!', 451, - '#', 5521, - ')', 3604, - '*', 3769, - '+', 3817, - '-', 3634, - '/', 3808, - ';', 3565, - '<', 3791, + '#', 5548, + ')', 3618, + '*', 3779, + '+', 3831, + '-', 3648, + '/', 3822, + ';', 3579, + '<', 3805, '=', 453, - '>', 3624, - 'a', 1134, - 'b', 946, + '>', 3638, + 'a', 1137, + 'b', 949, 'e', 380, - 'i', 1110, - 'm', 1200, - 'n', 1217, + 'h', 554, + 'i', 1113, + 'm', 1203, + 'n', 1220, 'o', 385, - 's', 1491, - 'x', 1219, - '{', 3712, - '|', 3566, - '}', 3713, + 's', 1495, + 'x', 1222, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1667); + lookahead == ' ') SKIP(1671); END_STATE(); - case 1668: - if (eof) ADVANCE(1777); + case 1672: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, '!', 451, - '#', 5521, - ')', 3604, - '*', 3769, - '+', 3817, - '-', 3634, - '/', 3808, - ';', 3565, - '<', 3791, + '#', 5548, + ')', 3618, + '*', 3779, + '+', 3831, + '-', 3648, + '/', 3822, + ';', 3579, + '<', 3805, '=', 453, - '>', 3624, - 'a', 1134, - 'b', 946, + '>', 3638, + 'a', 1137, + 'b', 949, 'e', 380, - 'i', 1110, - 'm', 1200, - 'n', 1217, + 'h', 554, + 'i', 1113, + 'm', 1203, + 'n', 1220, 'o', 385, - 's', 1491, - 'x', 1219, - '|', 3566, - '}', 3713, + 's', 1495, + 'x', 1222, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1668); + lookahead == ' ') SKIP(1672); END_STATE(); - case 1669: - if (eof) ADVANCE(1777); + case 1673: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, '!', 451, - '#', 5521, - ')', 3604, - '*', 3769, - '+', 3817, - '-', 3634, - '/', 3808, - ';', 3565, - '<', 3791, + '#', 5548, + ')', 3618, + '*', 3779, + '+', 3831, + '-', 3648, + '/', 3822, + ';', 3579, + '<', 3805, '=', 453, - '>', 3624, - 'a', 1134, - 'b', 946, + '>', 3638, + 'a', 1137, + 'b', 949, 'e', 383, - 'i', 1110, - 'm', 1200, - 'n', 1217, + 'h', 554, + 'i', 1113, + 'm', 1203, + 'n', 1220, 'o', 387, - 's', 1491, - 'x', 1219, - '|', 3566, - '}', 3713, + 's', 1495, + 'x', 1222, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1669); + lookahead == ' ') SKIP(1673); END_STATE(); - case 1670: - if (eof) ADVANCE(1777); + case 1674: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, '!', 451, - '#', 5521, - ')', 3604, - '*', 3770, - '+', 3821, - '-', 3656, - '.', 4102, - '/', 3809, - ':', 4098, - ';', 3565, - '<', 3791, - '=', 1792, - '>', 3624, - '?', 3772, - 'a', 1134, - 'b', 946, + '#', 5548, + ')', 3618, + '*', 3780, + '+', 3835, + '-', 3670, + '.', 4120, + '/', 3823, + ':', 4116, + ';', 3579, + '<', 3805, + '=', 1796, + '>', 3638, + '?', 3782, + 'a', 1137, + 'b', 949, 'e', 380, - 'i', 1110, - 'm', 1200, - 'n', 1217, + 'h', 554, + 'i', 1113, + 'm', 1203, + 'n', 1220, 'o', 385, - 's', 1491, - 'x', 1219, - '{', 3712, - '|', 3566, - '}', 3713, + 's', 1495, + 'x', 1222, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1670); + lookahead == ' ') SKIP(1674); END_STATE(); - case 1671: - if (eof) ADVANCE(1777); + case 1675: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, '!', 451, - '#', 5521, - '*', 3769, - '+', 3817, - '-', 3634, - '/', 3808, - ';', 3565, - '<', 3791, + '#', 5548, + '*', 3779, + '+', 3831, + '-', 3648, + '/', 3822, + ';', 3579, + '<', 3805, '=', 453, - '>', 3624, - 'a', 1134, - 'b', 946, + '>', 3638, + 'a', 1137, + 'b', 949, 'e', 380, - 'i', 1110, - 'm', 1200, - 'n', 1217, + 'h', 554, + 'i', 1113, + 'm', 1203, + 'n', 1220, 'o', 385, - 's', 1491, - 'x', 1219, - '|', 3566, + 's', 1495, + 'x', 1222, + '|', 3580, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1671); + lookahead == ' ') SKIP(1675); END_STATE(); - case 1672: - if (eof) ADVANCE(1777); + case 1676: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, '!', 451, - '#', 5521, - '*', 3769, - '+', 3817, - '-', 3634, - '/', 3808, - ';', 3565, - '<', 3791, + '#', 5548, + '*', 3779, + '+', 3831, + '-', 3648, + '/', 3822, + ';', 3579, + '<', 3805, '=', 453, - '>', 3624, - 'a', 1134, - 'b', 946, + '>', 3638, + 'a', 1137, + 'b', 949, 'e', 383, - 'i', 1110, - 'm', 1200, - 'n', 1217, + 'h', 554, + 'i', 1113, + 'm', 1203, + 'n', 1220, 'o', 387, - 's', 1491, - 'x', 1219, - '|', 3566, + 's', 1495, + 'x', 1222, + '|', 3580, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1672); + lookahead == ' ') SKIP(1676); END_STATE(); - case 1673: - if (eof) ADVANCE(1777); + case 1677: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5523, - '$', 3607, + '"', 4089, + '#', 5550, + '$', 3621, '\'', 376, - '(', 3603, - ')', 3604, - '*', 3769, - '+', 3817, - ',', 3605, - '-', 3634, - '.', 4103, - '/', 3811, - '0', 3287, - ':', 4098, - ';', 3565, - '<', 3790, - '=', 1791, - '>', 3623, - '?', 3772, - '[', 3601, - ']', 3602, - '^', 4119, - '_', 3716, + '(', 3617, + ')', 3618, + '*', 3779, + '+', 3831, + ',', 3619, + '-', 3648, + '.', 4121, + '/', 3825, + '0', 3301, + ':', 4116, + ';', 3579, + '<', 3804, + '=', 1795, + '>', 3637, + '?', 3782, + '[', 3615, + ']', 3616, + '^', 4137, + '_', 3730, '`', 482, - '{', 3712, - '|', 3566, - '}', 3713, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1673); + lookahead == ' ') SKIP(1677); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3340); + lookahead == 'i') ADVANCE(3354); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3334); + lookahead == 'n') ADVANCE(3348); if (lookahead == '!' || lookahead == '&' || - lookahead == '@') ADVANCE(5290); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3288); + lookahead == '@') ADVANCE(5317); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3302); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(3348); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(3362); END_STATE(); - case 1674: - if (eof) ADVANCE(1777); + case 1678: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5523, - '$', 3607, + '"', 4089, + '#', 5550, + '$', 3621, '\'', 376, - '(', 3603, - '+', 2065, - '-', 3648, - '.', 2066, - '0', 3951, - ';', 3565, - 'I', 2404, - 'N', 2402, - '[', 3601, - '^', 4119, - '_', 2082, + '(', 3617, + '+', 2069, + '-', 3662, + '.', 2070, + '0', 3965, + ';', 3579, + 'I', 2408, + 'N', 2406, + '[', 3615, + '^', 4137, + '_', 2086, '`', 482, - 'a', 2236, - 'b', 2210, - 'c', 2083, - 'd', 2112, - 'e', 2086, - 'f', 2089, - 'g', 2202, - 'h', 2101, - 'i', 2079, - 'j', 2338, - 'k', 2143, - 'l', 2163, - 'm', 2091, - 'n', 2286, - 'o', 2394, - 'p', 2106, - 'q', 2388, - 'r', 2093, - 's', 2130, - 't', 2096, - 'u', 2296, - 'v', 2214, - 'w', 2199, - '{', 3712, + 'a', 2240, + 'b', 2214, + 'c', 2087, + 'd', 2116, + 'e', 2090, + 'f', 2093, + 'g', 2206, + 'h', 2105, + 'i', 2083, + 'j', 2342, + 'k', 2147, + 'l', 2167, + 'm', 2095, + 'n', 2290, + 'o', 2398, + 'p', 2110, + 'q', 2392, + 'r', 2097, + 's', 2134, + 't', 2100, + 'u', 2300, + 'v', 2218, + 'w', 2203, + '{', 3726, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1674); + lookahead == ' ') SKIP(1678); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3974); + lookahead == '@') ADVANCE(2868); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3988); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '&' || '.' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'w' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2407); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2411); END_STATE(); - case 1675: - if (eof) ADVANCE(1777); + case 1679: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3802, - ')', 3604, - '+', 4386, - '-', 3636, - '.', 4382, - '0', 3952, - ';', 3565, - 'N', 4444, - '[', 3601, - '_', 4399, + '(', 3816, + ')', 3618, + '+', 4404, + '-', 3650, + '.', 4400, + '0', 3966, + ';', 3579, + 'N', 4462, + '[', 3615, + '_', 4417, '`', 482, - 'e', 4372, - 'f', 4412, - 'n', 4440, - 'o', 4373, - 't', 4427, - '{', 3712, - '|', 3566, - '}', 3713, + 'e', 4390, + 'f', 4430, + 'n', 4458, + 'o', 4391, + 't', 4445, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1706); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4447); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3975); + lookahead == 'i') ADVANCE(4465); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3989); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4467); + lookahead != ']') ADVANCE(4485); END_STATE(); - case 1676: - if (eof) ADVANCE(1777); + case 1680: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3802, - ')', 3604, - '+', 4508, - '-', 3639, - '.', 4504, - '0', 3882, - ';', 3565, - 'N', 4653, - '[', 3601, - '_', 4538, + '(', 3816, + ')', 3618, + '+', 4526, + '-', 3653, + '.', 4522, + '0', 3896, + ';', 3579, + 'N', 4676, + '[', 3615, + '_', 4556, '`', 482, - 'e', 4471, - 'f', 4554, - 'n', 4637, - 'o', 4473, - 't', 4609, - '{', 3712, - '|', 3566, - '}', 3713, + 'e', 4489, + 'f', 4572, + 'n', 4660, + 'o', 4491, + 't', 4630, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1719); + lookahead == ' ') SKIP(1723); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4662); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3897); + lookahead == 'i') ADVANCE(4685); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3911); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4685); + lookahead != ']') ADVANCE(4708); END_STATE(); - case 1677: - if (eof) ADVANCE(1777); + case 1681: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3802, - ')', 3604, - '+', 4508, - '-', 3639, - '.', 3847, - '0', 3882, - ';', 3565, - 'N', 4653, - '[', 3601, - '_', 4538, + '(', 3816, + ')', 3618, + '+', 4526, + '-', 3653, + '.', 3861, + '0', 3896, + ';', 3579, + 'N', 4676, + '[', 3615, + '_', 4556, '`', 482, - 'e', 4471, - 'f', 4554, - 'n', 4637, - 'o', 4473, - 't', 4609, - '{', 3712, - '|', 3566, - '}', 3713, + 'e', 4489, + 'f', 4572, + 'n', 4660, + 'o', 4491, + 't', 4630, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1719); + lookahead == ' ') SKIP(1723); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4662); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3897); + lookahead == 'i') ADVANCE(4685); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3911); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4685); + lookahead != ']') ADVANCE(4708); END_STATE(); - case 1678: - if (eof) ADVANCE(1777); + case 1682: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3802, - ')', 3604, - '+', 4509, - '-', 3641, - '.', 4506, - '0', 3882, - ';', 3565, - 'E', 4531, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'N', 4653, - 'P', 4535, - 'T', 4535, - '[', 3601, - '_', 4538, + '(', 3816, + ')', 3618, + '+', 4527, + '-', 3655, + '.', 4524, + '0', 3896, + ';', 3579, + 'E', 4549, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'N', 4676, + 'P', 4553, + 'T', 4553, + '[', 3615, + '_', 4556, '`', 482, - 'd', 4555, - 'e', 4475, - 'f', 4554, - 'g', 4534, - 'h', 4608, - 'k', 4534, - 'm', 4537, - 'n', 4620, - 'o', 4473, - 'p', 4534, - 's', 4567, - 't', 4533, - 'u', 4621, - 'w', 4582, - '{', 3712, - '|', 3566, - '}', 3713, - 0xb5, 4621, + 'd', 4573, + 'e', 4493, + 'f', 4572, + 'g', 4552, + 'h', 4629, + 'k', 4552, + 'm', 4555, + 'n', 4643, + 'o', 4491, + 'p', 4552, + 's', 4588, + 't', 4551, + 'u', 4644, + 'w', 4603, + '{', 3726, + '|', 3580, + '}', 3727, + 0xb5, 4644, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1706); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); + lookahead == 'b') ADVANCE(4038); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4662); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3897); + lookahead == 'i') ADVANCE(4685); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3911); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4685); + lookahead != ']') ADVANCE(4708); END_STATE(); - case 1679: - if (eof) ADVANCE(1777); + case 1683: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3802, - ')', 3604, - '+', 4509, - '-', 3641, - '.', 4506, - '0', 3882, - ';', 3565, - 'E', 4550, - 'N', 4653, - '[', 3601, - '_', 4538, + '(', 3816, + ')', 3618, + '+', 4527, + '-', 3655, + '.', 4524, + '0', 3896, + ';', 3579, + 'E', 4567, + 'N', 4676, + '[', 3615, + '_', 4556, '`', 482, - 'e', 4477, - 'f', 4554, - 'n', 4637, - 'o', 4473, - 't', 4609, - '{', 3712, - '|', 3566, - '}', 3713, + 'e', 4495, + 'f', 4572, + 'n', 4660, + 'o', 4491, + 't', 4630, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1706); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4662); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3897); + lookahead == 'i') ADVANCE(4685); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3911); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4685); + lookahead != ']') ADVANCE(4708); END_STATE(); - case 1680: - if (eof) ADVANCE(1777); + case 1684: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3802, - ')', 3604, - '+', 4509, - '-', 3641, - '.', 4506, - '0', 3956, - ';', 3565, - 'E', 4531, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'N', 4653, - 'P', 4535, - 'T', 4535, - '[', 3601, - '_', 4543, + '(', 3816, + ')', 3618, + '+', 4527, + '-', 3655, + '.', 4524, + '0', 3970, + ';', 3579, + 'E', 4549, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'N', 4676, + 'P', 4553, + 'T', 4553, + '[', 3615, + '_', 4571, '`', 482, - 'd', 4555, - 'e', 4475, - 'f', 4554, - 'g', 4534, - 'h', 4608, - 'k', 4534, - 'm', 4537, - 'n', 4620, - 'o', 4473, - 'p', 4534, - 's', 4567, - 't', 4533, - 'u', 4621, - 'w', 4582, - '{', 3712, - '|', 3566, - '}', 3713, - 0xb5, 4621, + 'd', 4573, + 'e', 4493, + 'f', 4572, + 'g', 4552, + 'h', 4629, + 'k', 4552, + 'm', 4555, + 'n', 4643, + 'o', 4491, + 'p', 4552, + 's', 4588, + 't', 4551, + 'u', 4644, + 'w', 4603, + '{', 3726, + '|', 3580, + '}', 3727, + 0xb5, 4644, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1706); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); + lookahead == 'b') ADVANCE(4038); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4662); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3979); + lookahead == 'i') ADVANCE(4685); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3993); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4685); + lookahead != ']') ADVANCE(4708); END_STATE(); - case 1681: - if (eof) ADVANCE(1777); + case 1685: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3802, - ')', 3604, - '+', 4509, - '-', 3641, - '.', 4506, - '0', 3956, - ';', 3565, - 'E', 4535, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'N', 4653, - 'P', 4535, - 'T', 4535, - '[', 3601, - '_', 4543, + '(', 3816, + ')', 3618, + '+', 4527, + '-', 3655, + '.', 4524, + '0', 3970, + ';', 3579, + 'E', 4553, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'N', 4676, + 'P', 4553, + 'T', 4553, + '[', 3615, + '_', 4571, '`', 482, - 'd', 4555, - 'e', 4469, - 'f', 4554, - 'g', 4534, - 'h', 4608, - 'k', 4534, - 'm', 4537, - 'n', 4620, - 'o', 4473, - 'p', 4534, - 's', 4567, - 't', 4533, - 'u', 4621, - 'w', 4582, - '{', 3712, - '|', 3566, - '}', 3713, - 0xb5, 4621, + 'd', 4573, + 'e', 4487, + 'f', 4572, + 'g', 4552, + 'h', 4629, + 'k', 4552, + 'm', 4555, + 'n', 4643, + 'o', 4491, + 'p', 4552, + 's', 4588, + 't', 4551, + 'u', 4644, + 'w', 4603, + '{', 3726, + '|', 3580, + '}', 3727, + 0xb5, 4644, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1706); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); + lookahead == 'b') ADVANCE(4038); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4662); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3979); + lookahead == 'i') ADVANCE(4685); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3993); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4685); + lookahead != ']') ADVANCE(4708); END_STATE(); - case 1682: - if (eof) ADVANCE(1777); + case 1686: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3802, - ')', 3604, - '+', 4509, - '-', 3641, - '.', 4506, - '0', 3956, - ';', 3565, - 'E', 4550, - 'N', 4653, - '[', 3601, - '_', 4543, + '(', 3816, + ')', 3618, + '+', 4527, + '-', 3655, + '.', 4524, + '0', 3970, + ';', 3579, + 'E', 4567, + 'N', 4676, + '[', 3615, + '_', 4571, '`', 482, - 'e', 4477, - 'f', 4554, - 'n', 4637, - 'o', 4473, - 't', 4609, - '{', 3712, - '|', 3566, - '}', 3713, + 'e', 4495, + 'f', 4572, + 'n', 4660, + 'o', 4491, + 't', 4630, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1706); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4662); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3979); + lookahead == 'i') ADVANCE(4685); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3993); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4685); + lookahead != ']') ADVANCE(4708); END_STATE(); - case 1683: - if (eof) ADVANCE(1777); + case 1687: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3802, - ')', 3604, - '+', 4509, - '-', 3641, - '.', 4506, - '0', 3956, - ';', 3565, - 'N', 4653, - '[', 3601, - '_', 4543, + '(', 3816, + ')', 3618, + '+', 4527, + '-', 3655, + '.', 4524, + '0', 3970, + ';', 3579, + 'N', 4676, + '[', 3615, + '_', 4571, '`', 482, - 'e', 4471, - 'f', 4554, - 'n', 4637, - 'o', 4473, - 't', 4609, - '{', 3712, - '|', 3566, - '}', 3713, + 'e', 4489, + 'f', 4572, + 'n', 4660, + 'o', 4491, + 't', 4630, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1706); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4662); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3979); + lookahead == 'i') ADVANCE(4685); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3993); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4685); + lookahead != ']') ADVANCE(4708); END_STATE(); - case 1684: - if (eof) ADVANCE(1777); + case 1688: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3802, - ')', 3604, - '+', 4509, - '-', 3641, - '.', 4505, - '0', 3882, - ';', 3565, - 'E', 4550, - 'N', 4653, - '[', 3601, - '_', 4538, + '(', 3816, + ')', 3618, + '+', 4527, + '-', 3655, + '.', 4523, + '0', 3896, + ';', 3579, + 'E', 4567, + 'N', 4676, + '[', 3615, + '_', 4556, '`', 482, - 'e', 4477, - 'f', 4554, - 'n', 4637, - 'o', 4473, - 't', 4609, - '{', 3712, - '|', 3566, - '}', 3713, + 'e', 4495, + 'f', 4572, + 'n', 4660, + 'o', 4491, + 't', 4630, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1706); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4662); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3897); + lookahead == 'i') ADVANCE(4685); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3911); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4685); + lookahead != ']') ADVANCE(4708); END_STATE(); - case 1685: - if (eof) ADVANCE(1777); + case 1689: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3802, - ')', 3604, - '+', 4509, - '-', 3641, - '.', 4505, - '0', 3956, - ';', 3565, - 'E', 4550, - 'N', 4653, - '[', 3601, - '_', 4543, + '(', 3816, + ')', 3618, + '+', 4527, + '-', 3655, + '.', 4523, + '0', 3970, + ';', 3579, + 'E', 4567, + 'N', 4676, + '[', 3615, + '_', 4571, '`', 482, - 'e', 4477, - 'f', 4554, - 'n', 4637, - 'o', 4473, - 't', 4609, - '{', 3712, - '|', 3566, - '}', 3713, + 'e', 4495, + 'f', 4572, + 'n', 4660, + 'o', 4491, + 't', 4630, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1706); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4662); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3979); + lookahead == 'i') ADVANCE(4685); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3993); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4685); + lookahead != ']') ADVANCE(4708); END_STATE(); - case 1686: - if (eof) ADVANCE(1777); + case 1690: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3802, - ')', 3604, - '+', 4509, - '-', 3641, - '.', 4505, - '0', 3956, - ';', 3565, - 'N', 4653, - '[', 3601, - '_', 4543, + '(', 3816, + ')', 3618, + '+', 4527, + '-', 3655, + '.', 4523, + '0', 3970, + ';', 3579, + 'N', 4676, + '[', 3615, + '_', 4571, '`', 482, - 'e', 4471, - 'f', 4554, - 'n', 4637, - 'o', 4473, - 't', 4609, - '{', 3712, - '|', 3566, - '}', 3713, + 'e', 4489, + 'f', 4572, + 'n', 4660, + 'o', 4491, + 't', 4630, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1706); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4662); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3979); + lookahead == 'i') ADVANCE(4685); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3993); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4685); + lookahead != ']') ADVANCE(4708); END_STATE(); - case 1687: - if (eof) ADVANCE(1777); + case 1691: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3802, - ')', 3604, - '+', 4509, - '-', 3641, - '.', 3862, - '0', 3956, - ';', 3565, - 'E', 4531, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'N', 4653, - 'P', 4535, - 'T', 4535, - '[', 3601, - '_', 4543, + '(', 3816, + ')', 3618, + '+', 4527, + '-', 3655, + '.', 3875, + '0', 3970, + ';', 3579, + 'E', 4549, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'N', 4676, + 'P', 4553, + 'T', 4553, + '[', 3615, + '_', 4571, '`', 482, - 'd', 4555, - 'e', 4475, - 'f', 4554, - 'g', 4534, - 'h', 4608, - 'k', 4534, - 'm', 4537, - 'n', 4620, - 'o', 4473, - 'p', 4534, - 's', 4567, - 't', 4533, - 'u', 4621, - 'w', 4582, - '{', 3712, - '|', 3566, - '}', 3713, - 0xb5, 4621, + 'd', 4573, + 'e', 4493, + 'f', 4572, + 'g', 4552, + 'h', 4629, + 'k', 4552, + 'm', 4555, + 'n', 4643, + 'o', 4491, + 'p', 4552, + 's', 4588, + 't', 4551, + 'u', 4644, + 'w', 4603, + '{', 3726, + '|', 3580, + '}', 3727, + 0xb5, 4644, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1706); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); + lookahead == 'b') ADVANCE(4038); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4662); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3979); + lookahead == 'i') ADVANCE(4685); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3993); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4685); + lookahead != ']') ADVANCE(4708); END_STATE(); - case 1688: - if (eof) ADVANCE(1777); + case 1692: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3802, - ')', 3604, - '+', 4509, - '-', 3641, - '.', 3862, - '0', 3956, - ';', 3565, - 'E', 4550, - 'N', 4653, - '[', 3601, - '_', 4543, + '(', 3816, + ')', 3618, + '+', 4527, + '-', 3655, + '.', 3875, + '0', 3970, + ';', 3579, + 'E', 4567, + 'N', 4676, + '[', 3615, + '_', 4571, '`', 482, - 'e', 4477, - 'f', 4554, - 'n', 4637, - 'o', 4473, - 't', 4609, - '{', 3712, - '|', 3566, - '}', 3713, + 'e', 4495, + 'f', 4572, + 'n', 4660, + 'o', 4491, + 't', 4630, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1706); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4662); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3979); + lookahead == 'i') ADVANCE(4685); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3993); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4685); + lookahead != ']') ADVANCE(4708); END_STATE(); - case 1689: - if (eof) ADVANCE(1777); + case 1693: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3802, - ')', 3604, - '+', 4509, - '-', 3641, - '.', 3852, - '0', 3956, - ';', 3565, - 'E', 4550, - 'N', 4653, - '[', 3601, - '_', 4543, + '(', 3816, + ')', 3618, + '+', 4527, + '-', 3655, + '.', 3864, + '0', 3970, + ';', 3579, + 'E', 4567, + 'N', 4676, + '[', 3615, + '_', 4571, '`', 482, - 'e', 4477, - 'f', 4554, - 'n', 4637, - 'o', 4473, - 't', 4609, - '{', 3712, - '|', 3566, - '}', 3713, + 'e', 4495, + 'f', 4572, + 'n', 4660, + 'o', 4491, + 't', 4630, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1706); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4662); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3979); + lookahead == 'i') ADVANCE(4685); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3993); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4685); + lookahead != ']') ADVANCE(4708); END_STATE(); - case 1690: - if (eof) ADVANCE(1777); + case 1694: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3802, - ')', 3604, - '+', 4387, - '-', 3637, - '.', 4383, - '0', 3883, - ';', 3565, - 'N', 4444, - '[', 3601, - '_', 4408, + '(', 3816, + ')', 3618, + '+', 4405, + '-', 3651, + '.', 4401, + '0', 3897, + ';', 3579, + 'N', 4462, + '[', 3615, + '_', 4426, '`', 482, - 'e', 4372, - 'f', 4412, - 'n', 4440, - 'o', 4373, - 't', 4427, - '{', 3712, - '|', 3566, - '}', 3713, + 'e', 4390, + 'f', 4430, + 'n', 4458, + 'o', 4391, + 't', 4445, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1719); + lookahead == ' ') SKIP(1723); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4447); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3898); + lookahead == 'i') ADVANCE(4465); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3912); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4467); + lookahead != ']') ADVANCE(4485); END_STATE(); - case 1691: - if (eof) ADVANCE(1777); + case 1695: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3802, - ')', 3604, - '+', 4387, - '-', 3637, - '.', 3849, - '0', 3883, - ';', 3565, - 'N', 4444, - '[', 3601, - '_', 4408, + '(', 3816, + ')', 3618, + '+', 4405, + '-', 3651, + '.', 3863, + '0', 3897, + ';', 3579, + 'N', 4462, + '[', 3615, + '_', 4426, '`', 482, - 'e', 4372, - 'f', 4412, - 'n', 4440, - 'o', 4373, - 't', 4427, - '{', 3712, - '|', 3566, - '}', 3713, + 'e', 4390, + 'f', 4430, + 'n', 4458, + 'o', 4391, + 't', 4445, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1719); + lookahead == ' ') SKIP(1723); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4447); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3898); + lookahead == 'i') ADVANCE(4465); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3912); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4467); + lookahead != ']') ADVANCE(4485); END_STATE(); - case 1692: - if (eof) ADVANCE(1777); + case 1696: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - ')', 3925, - '+', 2065, - '-', 3648, - '.', 2066, - '0', 3951, - ':', 4098, - ';', 3565, + '(', 3617, + ')', 3939, + '+', 2069, + '-', 3662, + '.', 2070, + '0', 3965, + ':', 4116, + ';', 3579, '=', 455, - 'I', 2404, - 'N', 2402, - '[', 3601, - '^', 4119, - '_', 2082, + 'I', 2408, + 'N', 2406, + '[', 3615, + '^', 4137, + '_', 2086, '`', 482, - 'a', 2236, - 'b', 2210, - 'c', 2083, - 'd', 2112, - 'e', 2086, - 'f', 2089, - 'g', 2202, - 'h', 2101, - 'i', 2079, - 'j', 2338, - 'k', 2143, - 'l', 2163, - 'm', 2091, - 'n', 2286, - 'o', 2394, - 'p', 2106, - 'q', 2388, - 'r', 2093, - 's', 2130, - 't', 2096, - 'u', 2296, - 'v', 2214, - 'w', 2199, - '{', 3712, - '|', 3566, - '}', 3713, + 'a', 2240, + 'b', 2214, + 'c', 2087, + 'd', 2116, + 'e', 2090, + 'f', 2093, + 'g', 2206, + 'h', 2105, + 'i', 2083, + 'j', 2342, + 'k', 2147, + 'l', 2167, + 'm', 2095, + 'n', 2290, + 'o', 2398, + 'p', 2110, + 'q', 2392, + 'r', 2097, + 's', 2134, + 't', 2100, + 'u', 2300, + 'v', 2218, + 'w', 2203, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1693); + lookahead == ' ') SKIP(1697); if (lookahead == '!' || ('&' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3974); + lookahead == '@') ADVANCE(2868); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3988); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '0' || '@' < lookahead) && - (lookahead < ']' || 'w' < lookahead)) ADVANCE(2407); + (lookahead < ']' || 'w' < lookahead)) ADVANCE(2411); END_STATE(); - case 1693: - if (eof) ADVANCE(1777); + case 1697: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - ')', 3604, - '+', 2065, - '-', 3648, - '.', 2066, - '0', 3951, - ':', 4098, - ';', 3565, + '(', 3617, + ')', 3618, + '+', 2069, + '-', 3662, + '.', 2070, + '0', 3965, + ':', 4116, + ';', 3579, '=', 455, - 'I', 2404, - 'N', 2402, - '[', 3601, - '^', 4119, - '_', 2082, + 'I', 2408, + 'N', 2406, + '[', 3615, + '^', 4137, + '_', 2086, '`', 482, - 'a', 2236, - 'b', 2210, - 'c', 2083, - 'd', 2112, - 'e', 2086, - 'f', 2089, - 'g', 2202, - 'h', 2101, - 'i', 2079, - 'j', 2338, - 'k', 2143, - 'l', 2163, - 'm', 2091, - 'n', 2286, - 'o', 2394, - 'p', 2106, - 'q', 2388, - 'r', 2093, - 's', 2130, - 't', 2096, - 'u', 2296, - 'v', 2214, - 'w', 2199, - '{', 3712, - '|', 3566, - '}', 3713, + 'a', 2240, + 'b', 2214, + 'c', 2087, + 'd', 2116, + 'e', 2090, + 'f', 2093, + 'g', 2206, + 'h', 2105, + 'i', 2083, + 'j', 2342, + 'k', 2147, + 'l', 2167, + 'm', 2095, + 'n', 2290, + 'o', 2398, + 'p', 2110, + 'q', 2392, + 'r', 2097, + 's', 2134, + 't', 2100, + 'u', 2300, + 'v', 2218, + 'w', 2203, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1693); + lookahead == ' ') SKIP(1697); if (lookahead == '!' || ('&' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3974); + lookahead == '@') ADVANCE(2868); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3988); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '0' || '@' < lookahead) && - (lookahead < ']' || 'w' < lookahead)) ADVANCE(2407); + (lookahead < ']' || 'w' < lookahead)) ADVANCE(2411); END_STATE(); - case 1694: - if (eof) ADVANCE(1777); + case 1698: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - ')', 3604, + '(', 3617, + ')', 3618, '+', 433, - '-', 3649, + '-', 3663, '.', 434, - '0', 3954, - ':', 4098, - ';', 3565, + '0', 3968, + ':', 4116, + ';', 3579, '=', 455, - '>', 3623, - '@', 3626, - 'I', 1596, - 'N', 1583, - '[', 3601, + '>', 3637, + '@', 3640, + 'I', 1600, + 'N', 1587, + '[', 3615, '_', 471, '`', 482, - 'a', 1066, - 'c', 600, - 'd', 762, + 'a', 1069, + 'c', 603, + 'd', 765, 'e', 382, - 'f', 598, - 'i', 839, + 'f', 601, + 'i', 842, 'm', 508, - 'n', 1220, + 'n', 1223, 'o', 388, - 't', 1293, - 'u', 1390, - '{', 3712, - '|', 3566, - '}', 3713, + 't', 1295, + 'u', 1394, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1695); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3977); + lookahead == ' ') SKIP(1699); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3991); END_STATE(); - case 1695: - if (eof) ADVANCE(1777); + case 1699: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - ')', 3604, + '(', 3617, + ')', 3618, '+', 433, - '-', 3649, + '-', 3663, '.', 434, - '0', 3954, - ':', 4098, - ';', 3565, + '0', 3968, + ':', 4116, + ';', 3579, '=', 455, - '>', 3623, - 'I', 1596, - 'N', 1583, - '[', 3601, + '>', 3637, + 'I', 1600, + 'N', 1587, + '[', 3615, '_', 471, '`', 482, - 'a', 1066, - 'c', 600, - 'd', 762, + 'a', 1069, + 'c', 603, + 'd', 765, 'e', 382, - 'f', 598, - 'i', 839, + 'f', 601, + 'i', 842, 'm', 508, - 'n', 1220, + 'n', 1223, 'o', 388, - 't', 1293, - 'u', 1390, - '{', 3712, - '|', 3566, - '}', 3713, + 't', 1295, + 'u', 1394, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1695); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3977); + lookahead == ' ') SKIP(1699); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3991); END_STATE(); - case 1696: - if (eof) ADVANCE(1777); + case 1700: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - ')', 3604, - '+', 3823, - '-', 3648, - '.', 2067, - '0', 3951, - ':', 3599, - ';', 3565, - '=', 1791, - '>', 3623, - 'I', 2404, - 'N', 2402, - '[', 3601, - ']', 3602, - '^', 4119, - '_', 2082, + '(', 3617, + ')', 3618, + '+', 3837, + '-', 3662, + '.', 2071, + '0', 3965, + ':', 3613, + ';', 3579, + '=', 1795, + '>', 3637, + 'I', 2408, + 'N', 2406, + '[', 3615, + ']', 3616, + '^', 4137, + '_', 2086, '`', 482, - 'a', 2235, - 'b', 2210, - 'c', 2117, - 'd', 2112, - 'e', 2088, - 'f', 2089, - 'g', 2202, - 'h', 2101, - 'i', 2080, - 'j', 2338, - 'k', 2143, - 'l', 2163, - 'm', 2110, - 'n', 2286, - 'o', 2394, - 'p', 2106, - 'q', 2388, - 'r', 2093, - 's', 2130, - 't', 2096, - 'u', 2296, - 'v', 2214, - 'w', 2199, - '{', 3712, - '|', 3566, - '}', 3713, + 'a', 2239, + 'b', 2214, + 'c', 2121, + 'd', 2116, + 'e', 2092, + 'f', 2093, + 'g', 2206, + 'h', 2105, + 'i', 2084, + 'j', 2342, + 'k', 2147, + 'l', 2167, + 'm', 2114, + 'n', 2290, + 'o', 2398, + 'p', 2110, + 'q', 2392, + 'r', 2099, + 's', 2134, + 't', 2100, + 'u', 2300, + 'v', 2218, + 'w', 2203, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1696); + lookahead == ' ') SKIP(1700); if (lookahead == '!' || ('&' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3974); + lookahead == '@') ADVANCE(2868); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3988); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '0' || '@' < lookahead)) ADVANCE(2407); + (lookahead < '0' || '@' < lookahead)) ADVANCE(2411); END_STATE(); - case 1697: - if (eof) ADVANCE(1777); + case 1701: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - ')', 3604, - '+', 4386, - '-', 3636, - '.', 4385, - '0', 3952, - ';', 3565, - 'N', 4444, - '[', 3601, - '_', 4399, + '(', 3617, + ')', 3618, + '+', 4404, + '-', 3650, + '.', 4403, + '0', 3966, + ';', 3579, + 'N', 4462, + '[', 3615, + '_', 4417, '`', 482, - 'e', 4372, - 'f', 4412, - 'n', 4440, - 'o', 4373, - 't', 4427, - '{', 3712, - '|', 3566, - '}', 3713, - '\t', 3564, - ' ', 3564, - 'I', 4447, - 'i', 4447, + 'e', 4390, + 'f', 4430, + 'n', 4458, + 'o', 4391, + 't', 4445, + '{', 3726, + '|', 3580, + '}', 3727, + '\t', 3578, + ' ', 3578, + 'I', 4465, + 'i', 4465, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3975); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3989); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4467); + lookahead != ']') ADVANCE(4485); END_STATE(); - case 1698: - if (eof) ADVANCE(1777); + case 1702: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - ')', 3604, - '+', 4386, - '-', 3636, - '.', 4382, - '0', 3370, - ';', 3565, - '=', 4309, - 'N', 3493, - '[', 3601, - '_', 3371, + '(', 3617, + ')', 3618, + '+', 4404, + '-', 3650, + '.', 4400, + '0', 3384, + ';', 3579, + '=', 4327, + 'N', 3507, + '[', 3615, + '_', 3385, '`', 482, - 'e', 3349, - 'f', 3375, - 'n', 3479, - 'o', 3350, - 't', 3447, - '{', 3712, - '|', 3566, - '}', 3713, + 'e', 3363, + 'f', 3389, + 'n', 3493, + 'o', 3364, + 't', 3461, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1706); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3505); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3374); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3526); + lookahead == 'i') ADVANCE(3519); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3388); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3540); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4467); + lookahead != ']') ADVANCE(4485); END_STATE(); - case 1699: - if (eof) ADVANCE(1777); + case 1703: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - ')', 3604, - '+', 4386, - '-', 3636, - '.', 4382, - '0', 3952, - ';', 3565, - '=', 4309, - 'N', 4444, - '[', 3601, - '_', 4399, + '(', 3617, + ')', 3618, + '+', 4404, + '-', 3650, + '.', 4400, + '0', 3966, + ';', 3579, + '=', 4327, + 'N', 4462, + '[', 3615, + '_', 4417, '`', 482, - 'e', 4372, - 'f', 4412, - 'n', 4440, - 'o', 4373, - 't', 4427, - '{', 3712, - '|', 3566, - '}', 3713, + 'e', 4390, + 'f', 4430, + 'n', 4458, + 'o', 4391, + 't', 4445, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1706); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4447); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3975); + lookahead == 'i') ADVANCE(4465); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3989); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4467); + lookahead != ']') ADVANCE(4485); END_STATE(); - case 1700: - if (eof) ADVANCE(1777); + case 1704: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - ')', 3604, - '+', 4386, - '-', 3636, - '.', 4382, - '0', 3952, - ';', 3565, - 'E', 4410, - 'N', 4444, - '[', 3601, - '_', 4399, + '(', 3617, + ')', 3618, + '+', 4404, + '-', 3650, + '.', 4400, + '0', 3966, + ';', 3579, + 'E', 4428, + 'N', 4462, + '[', 3615, + '_', 4417, '`', 482, - 'e', 4374, - 'f', 4412, - 'n', 4440, - 'o', 4373, - 't', 4427, - '{', 3712, - '|', 3566, - '}', 3713, + 'e', 4392, + 'f', 4430, + 'n', 4458, + 'o', 4391, + 't', 4445, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1706); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4447); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3975); + lookahead == 'i') ADVANCE(4465); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3989); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4467); + lookahead != ']') ADVANCE(4485); END_STATE(); - case 1701: - if (eof) ADVANCE(1777); + case 1705: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - ')', 3604, - '+', 4386, - '-', 3636, - '.', 4382, - '0', 3952, - ';', 3565, - 'N', 4444, - '[', 4045, - '_', 4399, + '(', 3617, + ')', 3618, + '+', 4404, + '-', 3650, + '.', 4400, + '0', 3966, + ';', 3579, + 'N', 4462, + '[', 4059, + '_', 4417, '`', 482, - 'e', 4372, - 'f', 4412, - 'n', 4440, - 'o', 4373, - 't', 4427, - '{', 3712, - '|', 3566, - '}', 3713, + 'e', 4390, + 'f', 4430, + 'n', 4458, + 'o', 4391, + 't', 4445, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1706); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4447); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3975); + lookahead == 'i') ADVANCE(4465); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3989); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4467); + lookahead != ']') ADVANCE(4485); END_STATE(); - case 1702: - if (eof) ADVANCE(1777); + case 1706: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - ')', 3604, - '+', 4386, - '-', 3636, - '.', 4382, - '0', 3952, - ';', 3565, - 'N', 4444, - '[', 3601, - '_', 4399, + '(', 3617, + ')', 3618, + '+', 4404, + '-', 3650, + '.', 4400, + '0', 3966, + ';', 3579, + 'N', 4462, + '[', 3615, + '_', 4417, '`', 482, - 'e', 4372, - 'f', 4412, - 'n', 4440, - 'o', 4373, - 't', 4427, - '{', 3712, - '|', 3566, - '}', 3713, + 'e', 4390, + 'f', 4430, + 'n', 4458, + 'o', 4391, + 't', 4445, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1706); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4447); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3975); + lookahead == 'i') ADVANCE(4465); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3989); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4467); + lookahead != ']') ADVANCE(4485); END_STATE(); - case 1703: - if (eof) ADVANCE(1777); + case 1707: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - ')', 3604, - '+', 4386, - '-', 3636, - '.', 4382, - '0', 3883, - ';', 3565, - 'E', 4410, - 'N', 4444, - '[', 3601, - '_', 4408, + '(', 3617, + ')', 3618, + '+', 4404, + '-', 3650, + '.', 4400, + '0', 3897, + ';', 3579, + 'E', 4428, + 'N', 4462, + '[', 3615, + '_', 4426, '`', 482, - 'e', 4374, - 'f', 4412, - 'n', 4440, - 'o', 4373, - 't', 4427, - '{', 3712, - '|', 3566, - '}', 3713, + 'e', 4392, + 'f', 4430, + 'n', 4458, + 'o', 4391, + 't', 4445, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1706); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4447); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3898); + lookahead == 'i') ADVANCE(4465); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3912); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4467); + lookahead != ']') ADVANCE(4485); END_STATE(); - case 1704: - if (eof) ADVANCE(1777); + case 1708: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - ')', 3604, - '+', 4386, - '-', 3636, - '.', 4109, - '0', 3952, - ';', 3565, - '?', 3772, - 'N', 4444, - '[', 3601, - '_', 4399, + '(', 3617, + ')', 3618, + '+', 4404, + '-', 3650, + '.', 4127, + '0', 3966, + ';', 3579, + '?', 3782, + 'N', 4462, + '[', 3615, + '_', 4417, '`', 482, - 'e', 4372, - 'f', 4412, - 'n', 4440, - 'o', 4373, - 't', 4427, - '{', 3712, - '|', 3566, - '}', 3713, + 'e', 4390, + 'f', 4430, + 'n', 4458, + 'o', 4391, + 't', 4445, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1706); + lookahead == ' ') SKIP(1710); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4447); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3975); + lookahead == 'i') ADVANCE(4465); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3989); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4467); + lookahead != ']') ADVANCE(4485); END_STATE(); - case 1705: - if (eof) ADVANCE(1777); + case 1709: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - ')', 3604, - '+', 4386, - '-', 3636, - '.', 4109, - '0', 3952, - ';', 3565, - 'N', 4444, - '[', 3601, - '_', 4399, + '(', 3617, + ')', 3618, + '+', 4404, + '-', 3650, + '.', 4127, + '0', 3966, + ';', 3579, + 'N', 4462, + '[', 3615, + '_', 4417, '`', 482, - 'e', 4372, - 'f', 4412, - 'n', 4440, - 'o', 4373, - 't', 4427, - '{', 3712, - '|', 3566, - '}', 3713, + 'e', 4390, + 'f', 4430, + 'n', 4458, + 'o', 4391, + 't', 4445, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1707); + lookahead == ' ') SKIP(1711); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4447); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3975); + lookahead == 'i') ADVANCE(4465); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3989); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4467); + lookahead != ']') ADVANCE(4485); END_STATE(); - case 1706: - if (eof) ADVANCE(1777); + case 1710: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - ')', 3604, - '+', 4386, - '-', 3636, - '.', 4104, - '0', 3952, - ';', 3565, - '?', 3772, - 'N', 4444, - '[', 3601, - '_', 4399, + '(', 3617, + ')', 3618, + '+', 4404, + '-', 3650, + '.', 4122, + '0', 3966, + ';', 3579, + '?', 3782, + 'N', 4462, + '[', 3615, + '_', 4417, '`', 482, - 'e', 4372, - 'f', 4412, - 'n', 4440, - 'o', 4373, - 't', 4427, - '{', 3712, - '|', 3566, - '}', 3713, + 'e', 4390, + 'f', 4430, + 'n', 4458, + 'o', 4391, + 't', 4445, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1706); + lookahead == ' ') SKIP(1710); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4447); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3975); + lookahead == 'i') ADVANCE(4465); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3989); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4467); + lookahead != ']') ADVANCE(4485); END_STATE(); - case 1707: - if (eof) ADVANCE(1777); + case 1711: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - ')', 3604, - '+', 4386, - '-', 3636, - '.', 4104, - '0', 3952, - ';', 3565, - 'N', 4444, - '[', 3601, - '_', 4399, + '(', 3617, + ')', 3618, + '+', 4404, + '-', 3650, + '.', 4122, + '0', 3966, + ';', 3579, + 'N', 4462, + '[', 3615, + '_', 4417, '`', 482, - 'e', 4372, - 'f', 4412, - 'n', 4440, - 'o', 4373, - 't', 4427, - '{', 3712, - '|', 3566, - '}', 3713, + 'e', 4390, + 'f', 4430, + 'n', 4458, + 'o', 4391, + 't', 4445, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1707); + lookahead == ' ') SKIP(1711); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4447); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3975); + lookahead == 'i') ADVANCE(4465); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3989); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4467); + lookahead != ']') ADVANCE(4485); END_STATE(); - case 1708: - if (eof) ADVANCE(1777); + case 1712: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - ')', 3604, - '+', 4386, - '-', 3636, - '.', 4384, - '0', 3952, - ';', 3565, - 'E', 4410, - 'N', 4444, - '[', 3601, - '_', 4399, + '(', 3617, + ')', 3618, + '+', 4404, + '-', 3650, + '.', 4402, + '0', 3966, + ';', 3579, + 'E', 4428, + 'N', 4462, + '[', 3615, + '_', 4417, '`', 482, - 'e', 4374, - 'f', 4412, - 'n', 4440, - 'o', 4373, - 't', 4427, - '{', 3712, - '|', 3566, - '}', 3713, + 'e', 4392, + 'f', 4430, + 'n', 4458, + 'o', 4391, + 't', 4445, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1706); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4447); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3975); + lookahead == 'i') ADVANCE(4465); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3989); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4467); + lookahead != ']') ADVANCE(4485); END_STATE(); - case 1709: - if (eof) ADVANCE(1777); + case 1713: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - ')', 3604, - '+', 4386, - '-', 3636, - '.', 4384, - '0', 3952, - ';', 3565, - 'N', 4444, - '[', 3601, - '_', 4399, + '(', 3617, + ')', 3618, + '+', 4404, + '-', 3650, + '.', 4402, + '0', 3966, + ';', 3579, + 'N', 4462, + '[', 3615, + '_', 4417, '`', 482, - 'e', 4372, - 'f', 4412, - 'n', 4440, - 'o', 4373, - 't', 4427, - '{', 3712, - '|', 3566, - '}', 3713, + 'e', 4390, + 'f', 4430, + 'n', 4458, + 'o', 4391, + 't', 4445, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1706); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4447); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3975); + lookahead == 'i') ADVANCE(4465); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3989); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4467); + lookahead != ']') ADVANCE(4485); END_STATE(); - case 1710: - if (eof) ADVANCE(1777); + case 1714: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - ')', 3604, - '+', 4386, - '-', 3636, - '.', 4384, - '0', 3883, - ';', 3565, - 'E', 4410, - 'N', 4444, - '[', 3601, - '_', 4408, + '(', 3617, + ')', 3618, + '+', 4404, + '-', 3650, + '.', 4402, + '0', 3897, + ';', 3579, + 'E', 4428, + 'N', 4462, + '[', 3615, + '_', 4426, '`', 482, - 'e', 4374, - 'f', 4412, - 'n', 4440, - 'o', 4373, - 't', 4427, - '{', 3712, - '|', 3566, - '}', 3713, + 'e', 4392, + 'f', 4430, + 'n', 4458, + 'o', 4391, + 't', 4445, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1706); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4447); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3898); + lookahead == 'i') ADVANCE(4465); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3912); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4467); + lookahead != ']') ADVANCE(4485); END_STATE(); - case 1711: - if (eof) ADVANCE(1777); + case 1715: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - ')', 3604, - '+', 4386, - '-', 3636, - '.', 3859, - '0', 3952, - ';', 3565, - 'E', 4410, - 'N', 4444, - '[', 3601, - '_', 4399, + '(', 3617, + ')', 3618, + '+', 4404, + '-', 3650, + '.', 3873, + '0', 3966, + ';', 3579, + 'E', 4428, + 'N', 4462, + '[', 3615, + '_', 4417, '`', 482, - 'e', 4374, - 'f', 4412, - 'n', 4440, - 'o', 4373, - 't', 4427, - '{', 3712, - '|', 3566, - '}', 3713, + 'e', 4392, + 'f', 4430, + 'n', 4458, + 'o', 4391, + 't', 4445, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1706); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4447); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3975); + lookahead == 'i') ADVANCE(4465); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3989); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4467); + lookahead != ']') ADVANCE(4485); END_STATE(); - case 1712: - if (eof) ADVANCE(1777); + case 1716: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - ')', 3604, - '+', 4386, - '-', 3636, - '.', 3845, - '0', 3952, - ';', 3565, - 'E', 4410, - 'N', 4444, - '[', 3601, - '_', 4399, + '(', 3617, + ')', 3618, + '+', 4404, + '-', 3650, + '.', 3859, + '0', 3966, + ';', 3579, + 'E', 4428, + 'N', 4462, + '[', 3615, + '_', 4417, '`', 482, - 'e', 4374, - 'f', 4412, - 'n', 4440, - 'o', 4373, - 't', 4427, - '{', 3712, - '|', 3566, - '}', 3713, + 'e', 4392, + 'f', 4430, + 'n', 4458, + 'o', 4391, + 't', 4445, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1706); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4447); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3975); + lookahead == 'i') ADVANCE(4465); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3989); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4467); + lookahead != ']') ADVANCE(4485); END_STATE(); - case 1713: - if (eof) ADVANCE(1777); + case 1717: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - ')', 3604, - '+', 4386, - '-', 3642, - '.', 4382, - '0', 4327, - ';', 3565, - '=', 4309, - 'N', 4348, - '[', 3601, - '_', 4328, + '(', 3617, + ')', 3618, + '+', 4404, + '-', 3658, + '.', 4400, + '0', 4345, + ';', 3579, + '=', 4327, + 'N', 4366, + '[', 3615, + '_', 4346, '`', 482, - 'e', 4310, - 'f', 4332, - 'n', 4347, - 'o', 4311, - 't', 4338, - '{', 3712, - '|', 3566, - '}', 3713, + 'e', 4328, + 'f', 4350, + 'n', 4365, + 'o', 4329, + 't', 4356, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1706); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4353); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4331); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + lookahead == 'i') ADVANCE(4371); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4349); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4467); + lookahead != ']') ADVANCE(4485); END_STATE(); - case 1714: - if (eof) ADVANCE(1777); + case 1718: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - ')', 3604, - '+', 4509, - '-', 3641, - '.', 4506, - '0', 3882, - ';', 3565, - 'E', 4531, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'N', 4653, - 'P', 4535, - 'T', 4535, - '[', 3601, - '_', 4538, + '(', 3617, + ')', 3618, + '+', 4527, + '-', 3655, + '.', 4524, + '0', 3896, + ';', 3579, + 'E', 4549, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'N', 4676, + 'P', 4553, + 'T', 4553, + '[', 3615, + '_', 4556, '`', 482, - 'd', 4555, - 'e', 4475, - 'f', 4554, - 'g', 4534, - 'h', 4608, - 'k', 4534, - 'm', 4537, - 'n', 4620, - 'o', 4473, - 'p', 4534, - 's', 4567, - 't', 4533, - 'u', 4621, - 'w', 4582, - '{', 3712, - '|', 3566, - '}', 3713, - 0xb5, 4621, + 'd', 4573, + 'e', 4493, + 'f', 4572, + 'g', 4552, + 'h', 4629, + 'k', 4552, + 'm', 4555, + 'n', 4643, + 'o', 4491, + 'p', 4552, + 's', 4588, + 't', 4551, + 'u', 4644, + 'w', 4603, + '{', 3726, + '|', 3580, + '}', 3727, + 0xb5, 4644, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1706); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); + lookahead == 'b') ADVANCE(4038); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4662); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3897); + lookahead == 'i') ADVANCE(4685); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3911); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4685); + lookahead != ']') ADVANCE(4708); END_STATE(); - case 1715: - if (eof) ADVANCE(1777); + case 1719: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - ')', 3604, - '+', 4509, - '-', 3641, - '.', 4506, - '0', 3956, - ';', 3565, - 'E', 4531, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'N', 4653, - 'P', 4535, - 'T', 4535, - '[', 3601, - '_', 4543, + '(', 3617, + ')', 3618, + '+', 4527, + '-', 3655, + '.', 4524, + '0', 3970, + ';', 3579, + 'E', 4549, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'N', 4676, + 'P', 4553, + 'T', 4553, + '[', 3615, + '_', 4571, '`', 482, - 'd', 4555, - 'e', 4475, - 'f', 4554, - 'g', 4534, - 'h', 4608, - 'k', 4534, - 'm', 4537, - 'n', 4620, - 'o', 4473, - 'p', 4534, - 's', 4567, - 't', 4533, - 'u', 4621, - 'w', 4582, - '{', 3712, - '|', 3566, - '}', 3713, - 0xb5, 4621, + 'd', 4573, + 'e', 4493, + 'f', 4572, + 'g', 4552, + 'h', 4629, + 'k', 4552, + 'm', 4555, + 'n', 4643, + 'o', 4491, + 'p', 4552, + 's', 4588, + 't', 4551, + 'u', 4644, + 'w', 4603, + '{', 3726, + '|', 3580, + '}', 3727, + 0xb5, 4644, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1706); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); + lookahead == 'b') ADVANCE(4038); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4662); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3979); + lookahead == 'i') ADVANCE(4685); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3993); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4685); + lookahead != ']') ADVANCE(4708); END_STATE(); - case 1716: - if (eof) ADVANCE(1777); + case 1720: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - ')', 3604, - '+', 4509, - '-', 3641, - '.', 4506, - '0', 3956, - ';', 3565, - 'E', 4535, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'N', 4653, - 'P', 4535, - 'T', 4535, - '[', 3601, - '_', 4543, + '(', 3617, + ')', 3618, + '+', 4527, + '-', 3655, + '.', 4524, + '0', 3970, + ';', 3579, + 'E', 4553, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'N', 4676, + 'P', 4553, + 'T', 4553, + '[', 3615, + '_', 4571, '`', 482, - 'd', 4555, - 'e', 4469, - 'f', 4554, - 'g', 4534, - 'h', 4608, - 'k', 4534, - 'm', 4537, - 'n', 4620, - 'o', 4473, - 'p', 4534, - 's', 4567, - 't', 4533, - 'u', 4621, - 'w', 4582, - '{', 3712, - '|', 3566, - '}', 3713, - 0xb5, 4621, + 'd', 4573, + 'e', 4487, + 'f', 4572, + 'g', 4552, + 'h', 4629, + 'k', 4552, + 'm', 4555, + 'n', 4643, + 'o', 4491, + 'p', 4552, + 's', 4588, + 't', 4551, + 'u', 4644, + 'w', 4603, + '{', 3726, + '|', 3580, + '}', 3727, + 0xb5, 4644, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1706); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); + lookahead == 'b') ADVANCE(4038); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4662); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3979); + lookahead == 'i') ADVANCE(4685); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3993); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4685); + lookahead != ']') ADVANCE(4708); END_STATE(); - case 1717: - if (eof) ADVANCE(1777); + case 1721: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - ')', 3604, - '+', 4509, - '-', 3641, - '.', 4505, - '0', 3956, - ';', 3565, - 'N', 4653, - '[', 3601, - '_', 4543, + '(', 3617, + ')', 3618, + '+', 4527, + '-', 3655, + '.', 4523, + '0', 3970, + ';', 3579, + 'N', 4676, + '[', 3615, + '_', 4571, '`', 482, - 'e', 4471, - 'f', 4554, - 'n', 4637, - 'o', 4473, - 't', 4609, - '{', 3712, - '|', 3566, - '}', 3713, + 'e', 4489, + 'f', 4572, + 'n', 4660, + 'o', 4491, + 't', 4630, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1706); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4662); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3979); + lookahead == 'i') ADVANCE(4685); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3993); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4685); + lookahead != ']') ADVANCE(4708); END_STATE(); - case 1718: - if (eof) ADVANCE(1777); + case 1722: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - ')', 3604, - '+', 4509, - '-', 3641, - '.', 3862, - '0', 3956, - ';', 3565, - 'E', 4531, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'N', 4653, - 'P', 4535, - 'T', 4535, - '[', 3601, - '_', 4543, + '(', 3617, + ')', 3618, + '+', 4527, + '-', 3655, + '.', 3875, + '0', 3970, + ';', 3579, + 'E', 4549, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'N', 4676, + 'P', 4553, + 'T', 4553, + '[', 3615, + '_', 4571, '`', 482, - 'd', 4555, - 'e', 4475, - 'f', 4554, - 'g', 4534, - 'h', 4608, - 'k', 4534, - 'm', 4537, - 'n', 4620, - 'o', 4473, - 'p', 4534, - 's', 4567, - 't', 4533, - 'u', 4621, - 'w', 4582, - '{', 3712, - '|', 3566, - '}', 3713, - 0xb5, 4621, + 'd', 4573, + 'e', 4493, + 'f', 4572, + 'g', 4552, + 'h', 4629, + 'k', 4552, + 'm', 4555, + 'n', 4643, + 'o', 4491, + 'p', 4552, + 's', 4588, + 't', 4551, + 'u', 4644, + 'w', 4603, + '{', 3726, + '|', 3580, + '}', 3727, + 0xb5, 4644, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1706); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); + lookahead == 'b') ADVANCE(4038); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4662); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3979); + lookahead == 'i') ADVANCE(4685); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3993); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4685); + lookahead != ']') ADVANCE(4708); END_STATE(); - case 1719: - if (eof) ADVANCE(1777); + case 1723: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, - '$', 3607, + '"', 4089, + '#', 5548, + '$', 3621, '\'', 376, - '(', 3603, - ')', 3604, - '+', 4387, - '-', 3637, - '.', 4383, - '0', 3952, - ';', 3565, - 'N', 4444, - '[', 3601, - '_', 4399, + '(', 3617, + ')', 3618, + '+', 4405, + '-', 3651, + '.', 4401, + '0', 3966, + ';', 3579, + 'N', 4462, + '[', 3615, + '_', 4417, '`', 482, - 'e', 4372, - 'f', 4412, - 'n', 4440, - 'o', 4373, - 't', 4427, - '{', 3712, - '|', 3566, - '}', 3713, + 'e', 4390, + 'f', 4430, + 'n', 4458, + 'o', 4391, + 't', 4445, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1719); + lookahead == ' ') SKIP(1723); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4447); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3975); + lookahead == 'i') ADVANCE(4465); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3989); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4467); + lookahead != ']') ADVANCE(4485); END_STATE(); - case 1720: - if (eof) ADVANCE(1777); + case 1724: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, + '"', 4089, + '#', 5548, '\'', 376, - ')', 3604, - '*', 3768, - '+', 2065, + ')', 3618, + '*', 3778, + '+', 2069, '-', 432, - '.', 4113, - ';', 3565, - '?', 3772, - 'I', 2848, - 'N', 2840, - '[', 3601, - '_', 2450, + '.', 4131, + ';', 3579, + '?', 3782, + 'I', 2856, + 'N', 2848, + '[', 3615, + '_', 2454, '`', 482, - 'a', 2650, - 'b', 2740, - 'c', 2482, - 'd', 2532, - 'e', 2646, - 'f', 2460, - 'h', 2612, - 'i', 2445, - 'l', 2567, - 'm', 2481, - 'n', 2811, - 'o', 2829, - 'r', 2568, - 's', 2699, - 't', 2741, - 'u', 2766, - 'w', 2592, - '}', 3713, + 'a', 2656, + 'b', 2746, + 'c', 2488, + 'd', 2538, + 'e', 2652, + 'f', 2464, + 'h', 2618, + 'i', 2449, + 'l', 2573, + 'm', 2487, + 'n', 2819, + 'o', 2837, + 'r', 2574, + 's', 2705, + 't', 2747, + 'u', 2774, + 'w', 2599, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1720); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); + lookahead == ' ') SKIP(1724); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || '+' < lookahead) && (lookahead < '0' || '?' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2860); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2868); END_STATE(); - case 1721: - if (eof) ADVANCE(1777); + case 1725: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, + '"', 4089, + '#', 5548, '\'', 376, - ')', 3604, - '*', 3768, - '+', 2065, + ')', 3618, + '*', 3778, + '+', 2069, '-', 432, - '.', 4113, - ';', 3565, - 'I', 2848, - 'N', 2840, - '[', 3601, - '_', 2450, + '.', 4131, + ';', 3579, + 'I', 2856, + 'N', 2848, + '[', 3615, + '_', 2454, '`', 482, - 'a', 2650, - 'b', 2740, - 'c', 2482, - 'd', 2532, - 'e', 2646, - 'f', 2460, - 'h', 2612, - 'i', 2445, - 'l', 2567, - 'm', 2481, - 'n', 2811, - 'o', 2829, - 'r', 2568, - 's', 2699, - 't', 2741, - 'u', 2766, - 'w', 2592, - '}', 3713, + 'a', 2656, + 'b', 2746, + 'c', 2488, + 'd', 2538, + 'e', 2652, + 'f', 2464, + 'h', 2618, + 'i', 2449, + 'l', 2573, + 'm', 2487, + 'n', 2819, + 'o', 2837, + 'r', 2574, + 's', 2705, + 't', 2747, + 'u', 2774, + 'w', 2599, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1721); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); + lookahead == ' ') SKIP(1725); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || '+' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2860); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2868); END_STATE(); - case 1722: - if (eof) ADVANCE(1777); + case 1726: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5521, + '"', 4089, + '#', 5548, '\'', 376, - ')', 3604, - '*', 3768, - '+', 2065, + ')', 3618, + '*', 3778, + '+', 2069, '-', 432, - '.', 2447, - ';', 3565, - 'I', 2848, - 'N', 2840, - '[', 3601, - '_', 2450, + '.', 2451, + ';', 3579, + 'I', 2856, + 'N', 2848, + '[', 3615, + '_', 2454, '`', 482, - 'a', 2650, - 'b', 2740, - 'c', 2482, - 'd', 2532, - 'e', 2646, - 'f', 2460, - 'h', 2612, - 'i', 2445, - 'l', 2567, - 'm', 2481, - 'n', 2811, - 'o', 2829, - 'r', 2568, - 's', 2699, - 't', 2741, - 'u', 2766, - 'w', 2592, - '}', 3713, + 'a', 2656, + 'b', 2746, + 'c', 2488, + 'd', 2538, + 'e', 2652, + 'f', 2464, + 'h', 2618, + 'i', 2449, + 'l', 2573, + 'm', 2487, + 'n', 2819, + 'o', 2837, + 'r', 2574, + 's', 2705, + 't', 2747, + 'u', 2774, + 'w', 2599, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1722); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); + lookahead == ' ') SKIP(1726); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || '+' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2860); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2868); END_STATE(); - case 1723: - if (eof) ADVANCE(1777); + case 1727: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5527, - '$', 3609, + '"', 4089, + '#', 5554, + '$', 3623, '\'', 376, - '(', 3802, - ')', 3604, - '+', 4719, - '-', 3644, - '.', 4720, - '0', 4745, - ';', 3565, - 'N', 4918, - '[', 3601, - '_', 4747, + '(', 3816, + ')', 3618, + '+', 4742, + '-', 3656, + '.', 4743, + '0', 4768, + ';', 3579, + 'N', 4945, + '[', 3615, + '_', 4770, '`', 482, - 'e', 4696, - 'f', 4757, - 'n', 4893, - 'o', 4698, - 't', 4847, - '{', 3712, - '|', 3566, - '}', 3713, + 'e', 4719, + 'f', 4780, + 'n', 4920, + 'o', 4721, + 't', 4872, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1706); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4928); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4750); + lookahead == 'i') ADVANCE(4955); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4773); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4958); + lookahead != ']') ADVANCE(4985); END_STATE(); - case 1724: - if (eof) ADVANCE(1777); + case 1728: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '"', 4075, - '#', 5527, - '$', 3609, + '"', 4089, + '#', 5554, + '$', 3623, '\'', 376, - '(', 3603, - ')', 3604, - '+', 4719, - '-', 3644, - '.', 4720, - '0', 4745, - ';', 3565, - 'N', 4918, - '[', 3601, - '_', 4747, + '(', 3617, + ')', 3618, + '+', 4742, + '-', 3656, + '.', 4743, + '0', 4768, + ';', 3579, + 'N', 4945, + '[', 3615, + '_', 4770, '`', 482, - 'e', 4696, - 'f', 4757, - 'n', 4893, - 'o', 4698, - 't', 4847, - '{', 3712, - '|', 3566, - '}', 3713, + 'e', 4719, + 'f', 4780, + 'n', 4920, + 'o', 4721, + 't', 4872, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1706); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4928); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4750); + lookahead == 'i') ADVANCE(4955); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4773); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4958); + lookahead != ']') ADVANCE(4985); END_STATE(); - case 1725: - if (eof) ADVANCE(1777); + case 1729: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '$', 3606, - '(', 3802, - ')', 3604, - ',', 3605, - '-', 3635, - '.', 3866, - ':', 3599, - ';', 3565, - '=', 1791, - 'E', 3275, - 'G', 3285, - 'K', 3285, - 'M', 3285, - 'P', 3285, - 'T', 3285, - '[', 4045, - ']', 3602, - 'd', 3291, - 'e', 3274, - 'g', 3284, - 'h', 3322, - 'k', 3284, - 'm', 3286, - 'n', 3326, - 'p', 3284, - 's', 3301, - 't', 3284, - 'u', 3326, - 'w', 3305, - '|', 3566, - 0xb5, 3326, + '#', 5548, + '$', 3620, + '(', 3816, + ')', 3618, + ',', 3619, + '-', 3649, + '.', 5324, + ':', 3613, + ';', 3579, + '=', 1795, + 'E', 3289, + 'G', 3299, + 'K', 3299, + 'M', 3299, + 'P', 3299, + 'T', 3299, + '[', 4059, + ']', 3616, + '_', 3303, + 'd', 3305, + 'e', 3288, + 'g', 3298, + 'h', 3336, + 'k', 3298, + 'm', 3300, + 'n', 3340, + 'p', 3298, + 's', 3315, + 't', 3298, + 'u', 3340, + 'w', 3319, + '|', 3580, + 0xb5, 3340, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1733); + lookahead == ' ') SKIP(1737); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4030); + lookahead == 'b') ADVANCE(4044); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5328); + lookahead == '^') ADVANCE(5355); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3915); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '$' < lookahead) && (lookahead < '&' || '.' < lookahead) && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3348); + (lookahead < ']' || '`' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3362); END_STATE(); - case 1726: - if (eof) ADVANCE(1777); + case 1730: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '$', 3606, - '(', 3802, - ')', 3604, - '-', 3635, - '.', 4108, - ':', 3599, - ';', 3565, - '=', 1791, - '[', 3601, - 'a', 1135, + '#', 5548, + '$', 3620, + '(', 3816, + ')', 3618, + '-', 3649, + '.', 4126, + ':', 3613, + ';', 3579, + '=', 1795, + '[', 3615, + 'a', 1138, 'e', 384, - 'i', 1110, + 'i', 1113, 'o', 387, - 'x', 1219, - '{', 3712, - '|', 3566, - '}', 3713, + 'x', 1222, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1735); + lookahead == ' ') SKIP(1739); END_STATE(); - case 1727: - if (eof) ADVANCE(1777); + case 1731: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '$', 3606, - '(', 3802, - ')', 3604, - '.', 3867, - ';', 3565, - '[', 4045, - '_', 4538, - 'e', 4487, - 'o', 4489, - '|', 3566, - '}', 3713, - '\t', 3564, - ' ', 3564, - '+', 4508, - '-', 4508, + '#', 5548, + '$', 3620, + '(', 3816, + ')', 3618, + '.', 3881, + ';', 3579, + '[', 4059, + '_', 4556, + 'e', 4505, + 'o', 4507, + '|', 3580, + '}', 3727, + '\t', 3578, + ' ', 3578, + '+', 4526, + '-', 4526, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && @@ -34109,1043 +34182,1043 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4685); - END_STATE(); - case 1728: - if (eof) ADVANCE(1777); - ADVANCE_MAP( - '\n', 3562, - '\r', 1, - '#', 5521, - '$', 3606, - '(', 3802, - ')', 3604, - '.', 3867, - ';', 3565, - '_', 4538, - 'a', 4590, - 'e', 4487, - 'o', 4488, - 'x', 4599, - '|', 3566, - '}', 3713, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1741); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4508); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); - END_STATE(); - case 1729: - if (eof) ADVANCE(1777); - ADVANCE_MAP( - '\n', 3562, - '\r', 1, - '#', 5521, - '$', 3606, - '(', 3802, - ')', 3604, - '.', 4540, - ';', 3565, - '_', 4538, - 'a', 4590, - 'e', 4487, - 'o', 4488, - 'x', 4599, - '|', 3566, - '}', 3713, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1741); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4508); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); - END_STATE(); - case 1730: - if (eof) ADVANCE(1777); - ADVANCE_MAP( - '\n', 3562, - '\r', 1, - '#', 5521, - '$', 3606, - '(', 3802, - ')', 3604, - '.', 4540, - ';', 3565, - '_', 4538, - 'e', 4487, - 'o', 4489, - '|', 3566, - '}', 3713, - '\t', 3564, - ' ', 3564, - '+', 4508, - '-', 4508, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); - END_STATE(); - case 1731: - if (eof) ADVANCE(1777); - ADVANCE_MAP( - '\n', 3562, - '\r', 1, - '#', 5521, - '$', 3606, - '(', 3603, - ')', 3604, - '-', 3635, - '.', 4108, - ':', 4098, - ';', 3565, - '=', 1791, - '>', 3623, - '?', 3772, - '@', 3626, - '[', 3601, - 'a', 1135, - 'e', 384, - 'i', 1110, - 'o', 387, - 'x', 1219, - '{', 3712, - '|', 3566, - '}', 3713, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1732); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4708); END_STATE(); case 1732: - if (eof) ADVANCE(1777); + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '$', 3606, - '(', 3603, - ')', 3604, - '-', 3635, - '.', 4102, - ':', 4098, - ';', 3565, - '=', 1791, - '>', 3623, - '?', 3772, - '[', 3601, - 'a', 1135, - 'e', 384, - 'i', 1110, - 'o', 387, - 'x', 1219, - '{', 3712, - '|', 3566, - '}', 3713, + '#', 5548, + '$', 3620, + '(', 3816, + ')', 3618, + '.', 3881, + ';', 3579, + '_', 4556, + 'a', 4611, + 'e', 4505, + 'o', 4506, + 'x', 4620, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1732); + lookahead == ' ') SKIP(1745); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4526); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 1733: - if (eof) ADVANCE(1777); + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '$', 3606, - ')', 3604, - ',', 3605, - '-', 3635, - '.', 436, - ':', 3599, - ';', 3565, - '=', 1791, - '[', 3601, - ']', 3602, - '|', 3566, + '#', 5548, + '$', 3620, + '(', 3816, + ')', 3618, + '.', 4558, + ';', 3579, + '_', 4556, + 'a', 4611, + 'e', 4505, + 'o', 4506, + 'x', 4620, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1733); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3348); + lookahead == ' ') SKIP(1745); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4526); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 1734: - if (eof) ADVANCE(1777); + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '$', 3606, - ')', 3604, - '-', 3635, - '.', 4108, - ';', 3565, - '=', 4309, - '?', 3772, - 'e', 3353, - 'o', 3354, - '{', 3712, - '|', 3566, - '}', 3713, - '\t', 3564, - ' ', 3564, + '#', 5548, + '$', 3620, + '(', 3816, + ')', 3618, + '.', 4558, + ';', 3579, + '_', 4556, + 'e', 4505, + 'o', 4507, + '|', 3580, + '}', 3727, + '\t', 3578, + ' ', 3578, + '+', 4526, + '-', 4526, ); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3526); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 1735: - if (eof) ADVANCE(1777); + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '$', 3606, - ')', 3604, - '-', 3635, - '.', 4102, - ':', 3599, - ';', 3565, - '=', 1791, - '[', 3601, - 'a', 1135, + '#', 5548, + '$', 3620, + '(', 3617, + ')', 3618, + '-', 3649, + '.', 4126, + ':', 4116, + ';', 3579, + '=', 1795, + '>', 3637, + '?', 3782, + '@', 3640, + '[', 3615, + 'a', 1138, 'e', 384, - 'i', 1110, + 'i', 1113, 'o', 387, - 'x', 1219, - '{', 3712, - '|', 3566, - '}', 3713, + 'x', 1222, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1735); + lookahead == ' ') SKIP(1736); END_STATE(); case 1736: - if (eof) ADVANCE(1777); + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '$', 3606, - ')', 3604, - '-', 3635, - '.', 4102, - ':', 3599, - ';', 3565, - '=', 4309, - '>', 3623, - '@', 3626, - '[', 3601, - ']', 3602, - 'c', 3297, - 'e', 3323, - 'f', 3332, - 'i', 3311, - 'o', 3314, - 'v', 3292, - '{', 3712, - '}', 3713, + '#', 5548, + '$', 3620, + '(', 3617, + ')', 3618, + '-', 3649, + '.', 4120, + ':', 4116, + ';', 3579, + '=', 1795, + '>', 3637, + '?', 3782, + '[', 3615, + 'a', 1138, + 'e', 384, + 'i', 1113, + 'o', 387, + 'x', 1222, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1737); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3348); + lookahead == ' ') SKIP(1736); END_STATE(); case 1737: - if (eof) ADVANCE(1777); + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '$', 3606, - ')', 3604, - '-', 3635, - '.', 4102, - ':', 3599, - ';', 3565, - '>', 3623, - '[', 3601, - ']', 3602, - 'c', 3297, - 'e', 3323, - 'f', 3332, - 'i', 3311, - 'o', 3314, - 'v', 3292, - '{', 3712, - '}', 3713, + '#', 5548, + '$', 3620, + ')', 3618, + ',', 3619, + '-', 3649, + '.', 436, + ':', 3613, + ';', 3579, + '=', 1795, + '[', 3615, + ']', 3616, + '|', 3580, ); if (lookahead == '\t' || lookahead == ' ') SKIP(1737); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3348); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3362); END_STATE(); case 1738: - if (eof) ADVANCE(1777); + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '$', 3606, - ')', 3604, - '-', 3635, - ';', 3565, - '=', 4309, - '[', 3601, - '{', 3712, - '}', 3713, + '#', 5548, + '$', 3620, + ')', 3618, + '-', 3649, + '.', 4126, + ';', 3579, + '=', 4327, + '?', 3782, + 'e', 3367, + 'o', 3368, + '{', 3726, + '|', 3580, + '}', 3727, + '\t', 3578, + ' ', 3578, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1739); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3526); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3540); END_STATE(); case 1739: - if (eof) ADVANCE(1777); + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '$', 3606, - ')', 3604, - '-', 3635, - ';', 3565, - '[', 3601, - '{', 3712, - '}', 3713, + '#', 5548, + '$', 3620, + ')', 3618, + '-', 3649, + '.', 4120, + ':', 3613, + ';', 3579, + '=', 1795, + '[', 3615, + 'a', 1138, + 'e', 384, + 'i', 1113, + 'o', 387, + 'x', 1222, + '{', 3726, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || lookahead == ' ') SKIP(1739); END_STATE(); case 1740: - if (eof) ADVANCE(1777); + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '$', 3606, - ')', 3604, - '-', 3643, - ';', 3565, - '=', 4309, - '[', 3601, - '{', 3712, - '}', 3713, + '#', 5548, + '$', 3620, + ')', 3618, + '-', 3649, + '.', 4120, + ':', 3613, + ';', 3579, + '=', 4327, + '>', 3637, + '@', 3640, + '[', 3615, + ']', 3616, + 'c', 3311, + 'e', 3337, + 'f', 3346, + 'i', 3325, + 'o', 3328, + 'v', 3306, + '{', 3726, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1739); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + lookahead == ' ') SKIP(1741); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3362); END_STATE(); case 1741: - if (eof) ADVANCE(1777); + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '$', 3606, - ')', 3604, - '.', 479, - ';', 3565, - 'a', 1134, - 'e', 384, - 'o', 387, - 'x', 1219, - '|', 3566, - '}', 3713, + '#', 5548, + '$', 3620, + ')', 3618, + '-', 3649, + '.', 4120, + ':', 3613, + ';', 3579, + '>', 3637, + '[', 3615, + ']', 3616, + 'c', 3311, + 'e', 3337, + 'f', 3346, + 'i', 3325, + 'o', 3328, + 'v', 3306, + '{', 3726, + '}', 3727, ); if (lookahead == '\t' || lookahead == ' ') SKIP(1741); - if (lookahead == '+' || - lookahead == '-') ADVANCE(438); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3362); END_STATE(); case 1742: - if (eof) ADVANCE(1777); + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '(', 3802, - ')', 3604, - '.', 3857, - ';', 3565, - 'E', 4531, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'P', 4535, - 'T', 4535, - 'a', 4590, - 'd', 4555, - 'e', 4480, - 'g', 4534, - 'h', 4608, - 'k', 4534, - 'm', 4537, - 'n', 4621, - 'o', 4488, - 'p', 4534, - 's', 4567, - 't', 4534, - 'u', 4621, - 'w', 4582, - 'x', 4599, - '|', 3566, - '}', 3713, - 0xb5, 4621, + '#', 5548, + '$', 3620, + ')', 3618, + '-', 3649, + ';', 3579, + '=', 4327, + '[', 3615, + '{', 3726, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1773); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == ' ') SKIP(1743); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3540); END_STATE(); case 1743: - if (eof) ADVANCE(1777); + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '(', 3802, - ')', 3604, - '.', 3857, - ';', 3565, - 'E', 4531, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'P', 4535, - 'T', 4535, - 'd', 4555, - 'e', 4480, - 'g', 4534, - 'h', 4608, - 'k', 4534, - 'm', 4537, - 'n', 4621, - 'o', 4489, - 'p', 4534, - 's', 4567, - 't', 4534, - 'u', 4621, - 'w', 4582, - '|', 3566, - '}', 3713, - 0xb5, 4621, - '\t', 3564, - ' ', 3564, - 'B', 4024, - 'b', 4024, + '#', 5548, + '$', 3620, + ')', 3618, + '-', 3649, + ';', 3579, + '[', 3615, + '{', 3726, + '}', 3727, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1743); END_STATE(); case 1744: - if (eof) ADVANCE(1777); + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '(', 3802, - ')', 3604, - '.', 3857, - ';', 3565, - 'E', 4550, - 'a', 4590, - 'e', 4482, - 'o', 4488, - 'x', 4599, - '|', 3566, - '}', 3713, + '#', 5548, + '$', 3620, + ')', 3618, + '-', 3659, + ';', 3579, + '=', 4327, + '[', 3615, + '{', 3726, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1773); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == ' ') SKIP(1743); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 1745: - if (eof) ADVANCE(1777); + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '(', 3802, - ')', 3604, - '.', 3857, - ';', 3565, - 'E', 4550, - 'e', 4482, - 'o', 4489, - '|', 3566, - '}', 3713, - '\t', 3564, - ' ', 3564, + '#', 5548, + '$', 3620, + ')', 3618, + '.', 479, + ';', 3579, + 'a', 1137, + 'e', 384, + 'o', 387, + 'x', 1222, + '|', 3580, + '}', 3727, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1745); + if (lookahead == '+' || + lookahead == '-') ADVANCE(438); END_STATE(); case 1746: - if (eof) ADVANCE(1777); + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '(', 3802, - ')', 3604, - '.', 4507, - ';', 3565, - 'E', 4531, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'P', 4535, - 'T', 4535, - '_', 4538, - 'a', 4590, - 'd', 4555, - 'e', 4480, - 'g', 4534, - 'h', 4608, - 'k', 4534, - 'm', 4537, - 'n', 4621, - 'o', 4488, - 'p', 4534, - 's', 4567, - 't', 4534, - 'u', 4621, - 'w', 4582, - 'x', 4599, - '|', 3566, - '}', 3713, - 0xb5, 4621, + '#', 5548, + '(', 3816, + ')', 3618, + '.', 3871, + ';', 3579, + 'E', 4549, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'P', 4553, + 'T', 4553, + 'a', 4611, + 'd', 4573, + 'e', 4498, + 'g', 4552, + 'h', 4629, + 'k', 4552, + 'm', 4555, + 'n', 4644, + 'o', 4506, + 'p', 4552, + 's', 4588, + 't', 4552, + 'u', 4644, + 'w', 4603, + 'x', 4620, + '|', 3580, + '}', 3727, + 0xb5, 4644, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1773); + lookahead == ' ') SKIP(1777); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 1747: - if (eof) ADVANCE(1777); + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '(', 3802, - ')', 3604, - '.', 4507, - ';', 3565, - 'E', 4531, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'P', 4535, - 'T', 4535, - '_', 4538, - 'd', 4555, - 'e', 4480, - 'g', 4534, - 'h', 4608, - 'k', 4534, - 'm', 4537, - 'n', 4621, - 'o', 4489, - 'p', 4534, - 's', 4567, - 't', 4534, - 'u', 4621, - 'w', 4582, - '|', 3566, - '}', 3713, - 0xb5, 4621, - '\t', 3564, - ' ', 3564, - 'B', 4024, - 'b', 4024, + '#', 5548, + '(', 3816, + ')', 3618, + '.', 3871, + ';', 3579, + 'E', 4549, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'P', 4553, + 'T', 4553, + 'd', 4573, + 'e', 4498, + 'g', 4552, + 'h', 4629, + 'k', 4552, + 'm', 4555, + 'n', 4644, + 'o', 4507, + 'p', 4552, + 's', 4588, + 't', 4552, + 'u', 4644, + 'w', 4603, + '|', 3580, + '}', 3727, + 0xb5, 4644, + '\t', 3578, + ' ', 3578, + 'B', 4038, + 'b', 4038, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 1748: - if (eof) ADVANCE(1777); + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '(', 3802, - ')', 3604, - '.', 4507, - ';', 3565, - 'E', 4531, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'P', 4535, - 'T', 4535, - 'a', 4590, - 'd', 4555, - 'e', 4480, - 'g', 4534, - 'h', 4608, - 'k', 4534, - 'm', 4537, - 'n', 4621, - 'o', 4488, - 'p', 4534, - 's', 4567, - 't', 4534, - 'u', 4621, - 'w', 4582, - 'x', 4599, - '|', 3566, - '}', 3713, - 0xb5, 4621, + '#', 5548, + '(', 3816, + ')', 3618, + '.', 3871, + ';', 3579, + 'E', 4567, + 'a', 4611, + 'e', 4500, + 'o', 4506, + 'x', 4620, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1773); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == ' ') SKIP(1777); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 1749: - if (eof) ADVANCE(1777); + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '(', 3802, - ')', 3604, - '.', 4507, - ';', 3565, - 'E', 4531, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'P', 4535, - 'T', 4535, - 'd', 4555, - 'e', 4480, - 'g', 4534, - 'h', 4608, - 'k', 4534, - 'm', 4537, - 'n', 4621, - 'o', 4489, - 'p', 4534, - 's', 4567, - 't', 4534, - 'u', 4621, - 'w', 4582, - '|', 3566, - '}', 3713, - 0xb5, 4621, - '\t', 3564, - ' ', 3564, - 'B', 4024, - 'b', 4024, + '#', 5548, + '(', 3816, + ')', 3618, + '.', 3871, + ';', 3579, + 'E', 4567, + 'e', 4500, + 'o', 4507, + '|', 3580, + '}', 3727, + '\t', 3578, + ' ', 3578, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 1750: - if (eof) ADVANCE(1777); + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '(', 3802, - ')', 3604, - '.', 4507, - ';', 3565, - 'E', 4535, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'P', 4535, - 'T', 4535, - 'a', 4590, - 'd', 4555, - 'e', 4485, - 'g', 4534, - 'h', 4608, - 'k', 4534, - 'm', 4537, - 'n', 4621, - 'o', 4488, - 'p', 4534, - 's', 4567, - 't', 4534, - 'u', 4621, - 'w', 4582, - 'x', 4599, - '|', 3566, - '}', 3713, - 0xb5, 4621, + '#', 5548, + '(', 3816, + ')', 3618, + '.', 4525, + ';', 3579, + 'E', 4549, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'P', 4553, + 'T', 4553, + '_', 4556, + 'a', 4611, + 'd', 4573, + 'e', 4498, + 'g', 4552, + 'h', 4629, + 'k', 4552, + 'm', 4555, + 'n', 4644, + 'o', 4506, + 'p', 4552, + 's', 4588, + 't', 4552, + 'u', 4644, + 'w', 4603, + 'x', 4620, + '|', 3580, + '}', 3727, + 0xb5, 4644, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1773); + lookahead == ' ') SKIP(1777); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == 'b') ADVANCE(4038); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 1751: - if (eof) ADVANCE(1777); + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '(', 3802, - ')', 3604, - '.', 4507, - ';', 3565, - 'E', 4535, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'P', 4535, - 'T', 4535, - 'd', 4555, - 'e', 4485, - 'g', 4534, - 'h', 4608, - 'k', 4534, - 'm', 4537, - 'n', 4621, - 'o', 4489, - 'p', 4534, - 's', 4567, - 't', 4534, - 'u', 4621, - 'w', 4582, - '|', 3566, - '}', 3713, - 0xb5, 4621, - '\t', 3564, - ' ', 3564, - 'B', 4024, - 'b', 4024, + '#', 5548, + '(', 3816, + ')', 3618, + '.', 4525, + ';', 3579, + 'E', 4549, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'P', 4553, + 'T', 4553, + '_', 4556, + 'd', 4573, + 'e', 4498, + 'g', 4552, + 'h', 4629, + 'k', 4552, + 'm', 4555, + 'n', 4644, + 'o', 4507, + 'p', 4552, + 's', 4588, + 't', 4552, + 'u', 4644, + 'w', 4603, + '|', 3580, + '}', 3727, + 0xb5, 4644, + '\t', 3578, + ' ', 3578, + 'B', 4038, + 'b', 4038, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 1752: - if (eof) ADVANCE(1777); + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '(', 3802, - ')', 3604, - '.', 4507, - ';', 3565, - 'E', 4550, - '_', 4538, - 'a', 4590, - 'e', 4482, - 'o', 4488, - 'x', 4599, - '|', 3566, - '}', 3713, + '#', 5548, + '(', 3816, + ')', 3618, + '.', 4525, + ';', 3579, + 'E', 4549, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'P', 4553, + 'T', 4553, + 'a', 4611, + 'd', 4573, + 'e', 4498, + 'g', 4552, + 'h', 4629, + 'k', 4552, + 'm', 4555, + 'n', 4644, + 'o', 4506, + 'p', 4552, + 's', 4588, + 't', 4552, + 'u', 4644, + 'w', 4603, + 'x', 4620, + '|', 3580, + '}', 3727, + 0xb5, 4644, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1773); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == ' ') SKIP(1777); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 1753: - if (eof) ADVANCE(1777); + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '(', 3802, - ')', 3604, - '.', 4507, - ';', 3565, - 'E', 4550, - '_', 4538, - 'e', 4482, - 'o', 4489, - '|', 3566, - '}', 3713, - '\t', 3564, - ' ', 3564, + '#', 5548, + '(', 3816, + ')', 3618, + '.', 4525, + ';', 3579, + 'E', 4549, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'P', 4553, + 'T', 4553, + 'd', 4573, + 'e', 4498, + 'g', 4552, + 'h', 4629, + 'k', 4552, + 'm', 4555, + 'n', 4644, + 'o', 4507, + 'p', 4552, + 's', 4588, + 't', 4552, + 'u', 4644, + 'w', 4603, + '|', 3580, + '}', 3727, + 0xb5, 4644, + '\t', 3578, + ' ', 3578, + 'B', 4038, + 'b', 4038, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 1754: - if (eof) ADVANCE(1777); + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '(', 3802, - ')', 3604, - '.', 4507, - ';', 3565, - 'E', 4550, - 'a', 4590, - 'e', 4482, - 'o', 4488, - 'x', 4599, - '|', 3566, - '}', 3713, + '#', 5548, + '(', 3816, + ')', 3618, + '.', 4525, + ';', 3579, + 'E', 4553, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'P', 4553, + 'T', 4553, + 'a', 4611, + 'd', 4573, + 'e', 4503, + 'g', 4552, + 'h', 4629, + 'k', 4552, + 'm', 4555, + 'n', 4644, + 'o', 4506, + 'p', 4552, + 's', 4588, + 't', 4552, + 'u', 4644, + 'w', 4603, + 'x', 4620, + '|', 3580, + '}', 3727, + 0xb5, 4644, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1773); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == ' ') SKIP(1777); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 1755: - if (eof) ADVANCE(1777); + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '(', 3802, - ')', 3604, - '.', 4507, - ';', 3565, - 'E', 4550, - 'e', 4482, - 'o', 4489, - '|', 3566, - '}', 3713, - '\t', 3564, - ' ', 3564, + '#', 5548, + '(', 3816, + ')', 3618, + '.', 4525, + ';', 3579, + 'E', 4553, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'P', 4553, + 'T', 4553, + 'd', 4573, + 'e', 4503, + 'g', 4552, + 'h', 4629, + 'k', 4552, + 'm', 4555, + 'n', 4644, + 'o', 4507, + 'p', 4552, + 's', 4588, + 't', 4552, + 'u', 4644, + 'w', 4603, + '|', 3580, + '}', 3727, + 0xb5, 4644, + '\t', 3578, + ' ', 3578, + 'B', 4038, + 'b', 4038, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 1756: - if (eof) ADVANCE(1777); + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '(', 3802, - ')', 3604, - '.', 4507, - ';', 3565, - 'a', 4590, - 'e', 4487, - 'o', 4488, - 'x', 4599, - '|', 3566, - '}', 3713, + '#', 5548, + '(', 3816, + ')', 3618, + '.', 4525, + ';', 3579, + 'E', 4567, + '_', 4556, + 'a', 4611, + 'e', 4500, + 'o', 4506, + 'x', 4620, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1773); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == ' ') SKIP(1777); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 1757: - if (eof) ADVANCE(1777); + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '(', 3802, - ')', 3604, - '.', 4507, - ';', 3565, - 'e', 4487, - 'o', 4489, - '|', 3566, - '}', 3713, - '\t', 3564, - ' ', 3564, + '#', 5548, + '(', 3816, + ')', 3618, + '.', 4525, + ';', 3579, + 'E', 4567, + '_', 4556, + 'e', 4500, + 'o', 4507, + '|', 3580, + '}', 3727, + '\t', 3578, + ' ', 3578, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 1758: - if (eof) ADVANCE(1777); + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '(', 3802, - ')', 3604, - '.', 3843, - ';', 3565, - 'E', 4550, - 'a', 4590, - 'e', 4482, - 'o', 4488, - 'x', 4599, - '|', 3566, - '}', 3713, + '#', 5548, + '(', 3816, + ')', 3618, + '.', 4525, + ';', 3579, + 'E', 4567, + 'a', 4611, + 'e', 4500, + 'o', 4506, + 'x', 4620, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1773); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == ' ') SKIP(1777); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 1759: - if (eof) ADVANCE(1777); + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '(', 3802, - ')', 3604, - '.', 3843, - ';', 3565, - 'E', 4550, - 'e', 4482, - 'o', 4489, - '|', 3566, - '}', 3713, - '\t', 3564, - ' ', 3564, + '#', 5548, + '(', 3816, + ')', 3618, + '.', 4525, + ';', 3579, + 'E', 4567, + 'e', 4500, + 'o', 4507, + '|', 3580, + '}', 3727, + '\t', 3578, + ' ', 3578, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 1760: - if (eof) ADVANCE(1777); + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '(', 3802, - ')', 3604, - ';', 3565, - 'E', 4550, - '_', 4538, - 'a', 4590, - 'e', 4482, - 'o', 4488, - 'x', 4599, - '|', 3566, - '}', 3713, + '#', 5548, + '(', 3816, + ')', 3618, + '.', 4525, + ';', 3579, + 'a', 4611, + 'e', 4505, + 'o', 4506, + 'x', 4620, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1773); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == ' ') SKIP(1777); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 1761: - if (eof) ADVANCE(1777); + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '(', 3802, - ')', 3604, - ';', 3565, - 'E', 4550, - '_', 4538, - 'e', 4482, - 'o', 4489, - '|', 3566, - '}', 3713, - '\t', 3564, - ' ', 3564, + '#', 5548, + '(', 3816, + ')', 3618, + '.', 4525, + ';', 3579, + 'e', 4505, + 'o', 4507, + '|', 3580, + '}', 3727, + '\t', 3578, + ' ', 3578, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 1762: - if (eof) ADVANCE(1777); + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '(', 3802, - ')', 3604, - ';', 3565, - 'E', 4550, - 'a', 4590, - 'e', 4482, - 'o', 4488, - 'x', 4599, - '|', 3566, - '}', 3713, + '#', 5548, + '(', 3816, + ')', 3618, + '.', 3857, + ';', 3579, + 'E', 4567, + 'a', 4611, + 'e', 4500, + 'o', 4506, + 'x', 4620, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1773); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == ' ') SKIP(1777); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 1763: - if (eof) ADVANCE(1777); + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '(', 3802, - ')', 3604, - ';', 3565, - 'E', 4550, - 'e', 4482, - 'o', 4489, - '|', 3566, - '}', 3713, - '\t', 3564, - ' ', 3564, + '#', 5548, + '(', 3816, + ')', 3618, + '.', 3857, + ';', 3579, + 'E', 4567, + 'e', 4500, + 'o', 4507, + '|', 3580, + '}', 3727, + '\t', 3578, + ' ', 3578, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 1764: - if (eof) ADVANCE(1777); + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '(', 3802, - ')', 3604, - ';', 3565, - 'a', 4590, - 'e', 4487, - 'o', 4488, - 'x', 4599, - '|', 3566, - '}', 3713, + '#', 5548, + '(', 3816, + ')', 3618, + ';', 3579, + 'E', 4567, + '_', 4556, + 'a', 4611, + 'e', 4500, + 'o', 4506, + 'x', 4620, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1773); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + lookahead == ' ') SKIP(1777); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 1765: - if (eof) ADVANCE(1777); + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - '(', 3802, - ')', 3604, - ';', 3565, - 'e', 4487, - 'o', 4489, - '|', 3566, - '}', 3713, - '\t', 3564, - ' ', 3564, + '#', 5548, + '(', 3816, + ')', 3618, + ';', 3579, + 'E', 4567, + '_', 4556, + 'e', 4500, + 'o', 4507, + '|', 3580, + '}', 3727, + '\t', 3578, + ' ', 3578, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 1766: - if (eof) ADVANCE(1777); + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - ')', 3604, - '-', 3635, - '.', 3857, - ';', 3565, - 'E', 4531, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'P', 4535, - 'T', 4535, - '[', 3601, - 'd', 4555, - 'e', 4530, - 'g', 4534, - 'h', 4608, - 'k', 4534, - 'm', 4537, - 'n', 4621, - 'p', 4534, - 's', 4567, - 't', 4534, - 'u', 4621, - 'w', 4582, - '}', 3713, - 0xb5, 4621, + '#', 5548, + '(', 3816, + ')', 3618, + ';', 3579, + 'E', 4567, + 'a', 4611, + 'e', 4500, + 'o', 4506, + 'x', 4620, + '|', 3580, + '}', 3727, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1777); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); + END_STATE(); + case 1767: + if (eof) ADVANCE(1781); + ADVANCE_MAP( + '\n', 3576, + '\r', 1, + '#', 5548, + '(', 3816, + ')', 3618, + ';', 3579, + 'E', 4567, + 'e', 4500, + 'o', 4507, + '|', 3580, + '}', 3727, + '\t', 3578, + ' ', 3578, + ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); + END_STATE(); + case 1768: + if (eof) ADVANCE(1781); + ADVANCE_MAP( + '\n', 3576, + '\r', 1, + '#', 5548, + '(', 3816, + ')', 3618, + ';', 3579, + 'a', 4611, + 'e', 4505, + 'o', 4506, + 'x', 4620, + '|', 3580, + '}', 3727, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1777); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); + END_STATE(); + case 1769: + if (eof) ADVANCE(1781); + ADVANCE_MAP( + '\n', 3576, + '\r', 1, + '#', 5548, + '(', 3816, + ')', 3618, + ';', 3579, + 'e', 4505, + 'o', 4507, + '|', 3580, + '}', 3727, + '\t', 3578, + ' ', 3578, + ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); + END_STATE(); + case 1770: + if (eof) ADVANCE(1781); + ADVANCE_MAP( + '\n', 3576, + '\r', 1, + '#', 5548, + ')', 3618, + '-', 3649, + '.', 3871, + ';', 3579, + 'E', 4549, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'P', 4553, + 'T', 4553, + '[', 3615, + 'd', 4573, + 'e', 4548, + 'g', 4552, + 'h', 4629, + 'k', 4552, + 'm', 4555, + 'n', 4644, + 'p', 4552, + 's', 4588, + 't', 4552, + 'u', 4644, + 'w', 4603, + '}', 3727, + 0xb5, 4644, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1770); + lookahead == ' ') SKIP(1774); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); + lookahead == 'b') ADVANCE(4038); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '"' && @@ -35153,46 +35226,46 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '\'' || ')' < lookahead) && lookahead != ']' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4685); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4708); END_STATE(); - case 1767: - if (eof) ADVANCE(1777); + case 1771: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - ')', 3604, - '-', 3635, - '.', 4507, - ';', 3565, - 'E', 4531, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'P', 4535, - 'T', 4535, - '[', 3601, - '_', 4538, - 'd', 4555, - 'e', 4530, - 'g', 4534, - 'h', 4608, - 'k', 4534, - 'm', 4537, - 'n', 4621, - 'p', 4534, - 's', 4567, - 't', 4534, - 'u', 4621, - 'w', 4582, - '}', 3713, - 0xb5, 4621, + '#', 5548, + ')', 3618, + '-', 3649, + '.', 4525, + ';', 3579, + 'E', 4549, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'P', 4553, + 'T', 4553, + '[', 3615, + '_', 4556, + 'd', 4573, + 'e', 4548, + 'g', 4552, + 'h', 4629, + 'k', 4552, + 'm', 4555, + 'n', 4644, + 'p', 4552, + 's', 4588, + 't', 4552, + 'u', 4644, + 'w', 4603, + '}', 3727, + 0xb5, 4644, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1770); + lookahead == ' ') SKIP(1774); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); + lookahead == 'b') ADVANCE(4038); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '"' && @@ -35201,44 +35274,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4685); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4708); END_STATE(); - case 1768: - if (eof) ADVANCE(1777); + case 1772: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - ')', 3604, - '-', 3635, - '.', 4507, - ';', 3565, - 'E', 4531, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'P', 4535, - 'T', 4535, - '[', 3601, - 'd', 4555, - 'e', 4530, - 'g', 4534, - 'h', 4608, - 'k', 4534, - 'm', 4537, - 'n', 4621, - 'p', 4534, - 's', 4567, - 't', 4534, - 'u', 4621, - 'w', 4582, - '}', 3713, - 0xb5, 4621, + '#', 5548, + ')', 3618, + '-', 3649, + '.', 4525, + ';', 3579, + 'E', 4549, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'P', 4553, + 'T', 4553, + '[', 3615, + 'd', 4573, + 'e', 4548, + 'g', 4552, + 'h', 4629, + 'k', 4552, + 'm', 4555, + 'n', 4644, + 'p', 4552, + 's', 4588, + 't', 4552, + 'u', 4644, + 'w', 4603, + '}', 3727, + 0xb5, 4644, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1770); + lookahead == ' ') SKIP(1774); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); + lookahead == 'b') ADVANCE(4038); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '"' && @@ -35246,44 +35319,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '\'' || ')' < lookahead) && lookahead != ']' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4685); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4708); END_STATE(); - case 1769: - if (eof) ADVANCE(1777); + case 1773: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - ')', 3604, - '-', 3635, - '.', 4507, - ';', 3565, - 'E', 4535, - 'G', 4535, - 'K', 4535, - 'M', 4535, - 'P', 4535, - 'T', 4535, - '[', 3601, - 'd', 4555, - 'e', 4534, - 'g', 4534, - 'h', 4608, - 'k', 4534, - 'm', 4537, - 'n', 4621, - 'p', 4534, - 's', 4567, - 't', 4534, - 'u', 4621, - 'w', 4582, - '}', 3713, - 0xb5, 4621, + '#', 5548, + ')', 3618, + '-', 3649, + '.', 4525, + ';', 3579, + 'E', 4553, + 'G', 4553, + 'K', 4553, + 'M', 4553, + 'P', 4553, + 'T', 4553, + '[', 3615, + 'd', 4573, + 'e', 4552, + 'g', 4552, + 'h', 4629, + 'k', 4552, + 'm', 4555, + 'n', 4644, + 'p', 4552, + 's', 4588, + 't', 4552, + 'u', 4644, + 'w', 4603, + '}', 3727, + 0xb5, 4644, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1770); + lookahead == ' ') SKIP(1774); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); + lookahead == 'b') ADVANCE(4038); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '"' && @@ -35291,37 +35364,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '\'' || ')' < lookahead) && lookahead != ']' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4685); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4708); END_STATE(); - case 1770: - if (eof) ADVANCE(1777); + case 1774: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - ')', 3604, - '-', 3635, - ';', 3565, - '[', 3601, - '}', 3713, + '#', 5548, + ')', 3618, + '-', 3649, + ';', 3579, + '[', 3615, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1770); + lookahead == ' ') SKIP(1774); END_STATE(); - case 1771: - if (eof) ADVANCE(1777); + case 1775: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - ')', 3604, - '-', 3635, - ';', 3565, - '[', 3601, - '}', 3713, + '#', 5548, + ')', 3618, + '-', 3649, + ';', 3579, + '[', 3615, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1770); + lookahead == ' ') SKIP(1774); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '"' && @@ -35329,96 +35402,96 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '\'' || ')' < lookahead) && lookahead != ']' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4685); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4708); END_STATE(); - case 1772: - if (eof) ADVANCE(1777); + case 1776: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - ')', 3604, - ';', 3565, - '=', 4309, - 'e', 4314, - 'o', 4315, - '|', 3566, - '}', 3713, - '\t', 3564, - ' ', 3564, + '#', 5548, + ')', 3618, + ';', 3579, + '=', 4327, + 'e', 4332, + 'o', 4333, + '|', 3580, + '}', 3727, + '\t', 3578, + ' ', 3578, ); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); - case 1773: - if (eof) ADVANCE(1777); + case 1777: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5521, - ')', 3604, - ';', 3565, - 'a', 1134, + '#', 5548, + ')', 3618, + ';', 3579, + 'a', 1137, 'e', 384, 'o', 387, - 'x', 1219, - '|', 3566, - '}', 3713, + 'x', 1222, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1773); + lookahead == ' ') SKIP(1777); END_STATE(); - case 1774: - if (eof) ADVANCE(1777); + case 1778: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5527, - '(', 3802, - ')', 3604, - ';', 3565, - 'a', 4822, - 'e', 4702, - 'o', 4703, - 'x', 4837, - '|', 3566, - '}', 3713, + '#', 5554, + '(', 3816, + ')', 3618, + ';', 3579, + 'a', 4847, + 'e', 4725, + 'o', 4726, + 'x', 4862, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1773); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + lookahead == ' ') SKIP(1777); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); - case 1775: - if (eof) ADVANCE(1777); + case 1779: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5527, - '(', 3802, - ')', 3604, - ';', 3565, - 'e', 4702, - 'o', 4704, - '|', 3566, - '}', 3713, - '\t', 3564, - ' ', 3564, + '#', 5554, + '(', 3816, + ')', 3618, + ';', 3579, + 'e', 4725, + 'o', 4727, + '|', 3580, + '}', 3727, + '\t', 3578, + ' ', 3578, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); - case 1776: - if (eof) ADVANCE(1777); + case 1780: + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '#', 5527, - ')', 3604, - '-', 3645, - ';', 3565, - '[', 3601, - '}', 3713, + '#', 5554, + ')', 3618, + '-', 3657, + ';', 3579, + '[', 3615, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1770); + lookahead == ' ') SKIP(1774); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '"' && @@ -35426,7781 +35499,7771 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '\'' || ')' < lookahead) && lookahead != ']' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4958); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4985); END_STATE(); - case 1777: + case 1781: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 1778: + case 1782: ACCEPT_TOKEN(anon_sym_POUND_BANG); END_STATE(); - case 1779: + case 1783: ACCEPT_TOKEN(aux_sym_shebang_token1); END_STATE(); - case 1780: + case 1784: ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(1779); - if (lookahead == '\r') ADVANCE(1781); - if (lookahead == '#') ADVANCE(5522); + if (lookahead == '\n') ADVANCE(1783); + if (lookahead == '\r') ADVANCE(1785); + if (lookahead == '#') ADVANCE(5549); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1780); - if (lookahead != 0) ADVANCE(1781); + lookahead == ' ') ADVANCE(1784); + if (lookahead != 0) ADVANCE(1785); END_STATE(); - case 1781: + case 1785: ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(1779); - if (lookahead == '\r') ADVANCE(1781); - if (lookahead != 0) ADVANCE(1781); + if (lookahead == '\n') ADVANCE(1783); + if (lookahead == '\r') ADVANCE(1785); + if (lookahead != 0) ADVANCE(1785); END_STATE(); - case 1782: + case 1786: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == ',') ADVANCE(3044); - if (lookahead == '-') ADVANCE(3033); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == ',') ADVANCE(3052); + if (lookahead == '-') ADVANCE(3041); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3044); END_STATE(); - case 1783: + case 1787: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == ',') ADVANCE(3044); - if (lookahead == '-') ADVANCE(5386); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5389); + if (lookahead == ',') ADVANCE(3052); + if (lookahead == '-') ADVANCE(5413); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5416); END_STATE(); - case 1784: + case 1788: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(3037); + if (lookahead == '-') ADVANCE(3045); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3044); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3043); + lookahead == '@') ADVANCE(3052); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3051); END_STATE(); - case 1785: + case 1789: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(3037); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3044); + if (lookahead == '-') ADVANCE(3045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3052); END_STATE(); - case 1786: + case 1790: ACCEPT_TOKEN(anon_sym_alias); END_STATE(); - case 1787: + case 1791: ACCEPT_TOKEN(anon_sym_alias); - if (lookahead == ',') ADVANCE(2894); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5378); + if (lookahead == ',') ADVANCE(2902); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5405); END_STATE(); - case 1788: + case 1792: ACCEPT_TOKEN(anon_sym_alias); - if (lookahead == ',') ADVANCE(2894); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2892); + if (lookahead == ',') ADVANCE(2902); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2900); END_STATE(); - case 1789: + case 1793: ACCEPT_TOKEN(anon_sym_alias); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2894); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2893); + lookahead == '@') ADVANCE(2902); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2901); END_STATE(); - case 1790: + case 1794: ACCEPT_TOKEN(anon_sym_alias); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2902); END_STATE(); - case 1791: + case 1795: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 1792: + case 1796: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(3786); - if (lookahead == '~') ADVANCE(3797); + if (lookahead == '=') ADVANCE(3800); + if (lookahead == '~') ADVANCE(3811); END_STATE(); - case 1793: + case 1797: ACCEPT_TOKEN(anon_sym_EQ); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5514); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5541); END_STATE(); - case 1794: + case 1798: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == ',') ADVANCE(2917); - if (lookahead == '-') ADVANCE(2906); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2909); + if (lookahead == ',') ADVANCE(2925); + if (lookahead == '-') ADVANCE(2914); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2917); END_STATE(); - case 1795: + case 1799: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == ',') ADVANCE(2917); - if (lookahead == '-') ADVANCE(5356); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5359); + if (lookahead == ',') ADVANCE(2925); + if (lookahead == '-') ADVANCE(5383); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5386); END_STATE(); - case 1796: + case 1800: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == '-') ADVANCE(2910); + if (lookahead == '-') ADVANCE(2918); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2917); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2916); + lookahead == '@') ADVANCE(2925); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2924); END_STATE(); - case 1797: + case 1801: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == '-') ADVANCE(2910); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2917); + if (lookahead == '-') ADVANCE(2918); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2925); END_STATE(); - case 1798: + case 1802: ACCEPT_TOKEN(anon_sym_let_DASHenv); - if (lookahead == ',') ADVANCE(2917); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5359); + if (lookahead == ',') ADVANCE(2925); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5386); END_STATE(); - case 1799: + case 1803: ACCEPT_TOKEN(anon_sym_let_DASHenv); - if (lookahead == ',') ADVANCE(2917); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2909); + if (lookahead == ',') ADVANCE(2925); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2917); END_STATE(); - case 1800: + case 1804: ACCEPT_TOKEN(anon_sym_let_DASHenv); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2917); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2925); END_STATE(); - case 1801: + case 1805: ACCEPT_TOKEN(anon_sym_mut); - if (lookahead == ',') ADVANCE(2920); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5360); + if (lookahead == ',') ADVANCE(2928); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5387); END_STATE(); - case 1802: + case 1806: ACCEPT_TOKEN(anon_sym_mut); - if (lookahead == ',') ADVANCE(2920); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2918); + if (lookahead == ',') ADVANCE(2928); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2926); END_STATE(); - case 1803: + case 1807: ACCEPT_TOKEN(anon_sym_mut); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2920); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2919); + lookahead == '@') ADVANCE(2928); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2927); END_STATE(); - case 1804: + case 1808: ACCEPT_TOKEN(anon_sym_mut); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2920); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2928); END_STATE(); - case 1805: + case 1809: ACCEPT_TOKEN(anon_sym_const); END_STATE(); - case 1806: + case 1810: ACCEPT_TOKEN(anon_sym_const); - if (lookahead == ',') ADVANCE(2923); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5381); + if (lookahead == ',') ADVANCE(2931); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5408); END_STATE(); - case 1807: + case 1811: ACCEPT_TOKEN(anon_sym_const); - if (lookahead == ',') ADVANCE(2923); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2921); + if (lookahead == ',') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2929); END_STATE(); - case 1808: + case 1812: ACCEPT_TOKEN(anon_sym_const); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2923); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2922); - END_STATE(); - case 1809: - ACCEPT_TOKEN(anon_sym_const); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2923); - END_STATE(); - case 1810: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); - END_STATE(); - case 1811: - ACCEPT_TOKEN(anon_sym_DASH_EQ); - END_STATE(); - case 1812: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2930); END_STATE(); case 1813: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_const); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 1814: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 1815: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(485); - if (lookahead == '=') ADVANCE(4117); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 1816: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(485); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 1817: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(490); - if (lookahead == '=') ADVANCE(4117); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 1818: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(490); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS_EQ); END_STATE(); case 1819: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(605); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == ' ') ADVANCE(485); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 1820: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(605); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == ' ') ADVANCE(485); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 1821: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(483); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == ' ') ADVANCE(490); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 1822: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(483); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == ' ') ADVANCE(490); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 1823: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(633); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == ' ') ADVANCE(608); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 1824: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(633); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == ' ') ADVANCE(608); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 1825: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(613); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == ' ') ADVANCE(483); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 1826: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(613); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == ' ') ADVANCE(483); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 1827: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(634); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == ' ') ADVANCE(636); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 1828: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(634); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == ' ') ADVANCE(636); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 1829: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(610); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == ' ') ADVANCE(616); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 1830: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(610); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == ' ') ADVANCE(616); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 1831: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(865); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == ' ') ADVANCE(637); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 1832: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(865); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == ' ') ADVANCE(637); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 1833: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(515); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == ' ') ADVANCE(613); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 1834: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(515); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == ' ') ADVANCE(613); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 1835: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(835); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == ' ') ADVANCE(868); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 1836: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(835); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == ' ') ADVANCE(868); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 1837: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(646); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == ' ') ADVANCE(515); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 1838: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(646); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == ' ') ADVANCE(515); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 1839: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(604); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == ' ') ADVANCE(838); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 1840: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(604); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == ' ') ADVANCE(838); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 1841: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(1072); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == ' ') ADVANCE(649); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 1842: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(1072); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == ' ') ADVANCE(649); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 1843: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(510); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == ' ') ADVANCE(607); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 1844: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(510); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == ' ') ADVANCE(607); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 1845: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(701); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == ' ') ADVANCE(1075); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 1846: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(701); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == ' ') ADVANCE(1075); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 1847: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(1250); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == ' ') ADVANCE(510); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 1848: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(1250); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == ' ') ADVANCE(510); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 1849: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(496); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == ' ') ADVANCE(704); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 1850: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(496); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == ' ') ADVANCE(704); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 1851: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(619); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == ' ') ADVANCE(1253); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 1852: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(619); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == ' ') ADVANCE(1253); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 1853: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(693); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == ' ') ADVANCE(496); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 1854: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(693); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == ' ') ADVANCE(496); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 1855: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(1499); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == ' ') ADVANCE(622); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 1856: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(1499); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == ' ') ADVANCE(622); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 1857: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(662); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == ' ') ADVANCE(696); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 1858: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(662); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == ' ') ADVANCE(696); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 1859: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(1279); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == ' ') ADVANCE(1503); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 1860: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(1279); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == ' ') ADVANCE(1503); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 1861: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(845); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == ' ') ADVANCE(665); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 1862: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(845); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == ' ') ADVANCE(665); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 1863: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(498); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == ' ') ADVANCE(1282); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 1864: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(498); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == ' ') ADVANCE(1282); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 1865: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(484); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == ' ') ADVANCE(848); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 1866: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(484); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == ' ') ADVANCE(848); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 1867: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(685); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == ' ') ADVANCE(498); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 1868: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(685); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == ' ') ADVANCE(498); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 1869: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(511); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == ' ') ADVANCE(484); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 1870: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(511); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == ' ') ADVANCE(484); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 1871: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(627); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == ' ') ADVANCE(688); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 1872: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(627); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == ' ') ADVANCE(688); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 1873: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(783); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == ' ') ADVANCE(511); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 1874: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(783); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == ' ') ADVANCE(511); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 1875: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(622); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == ' ') ADVANCE(630); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 1876: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(622); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == ' ') ADVANCE(630); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 1877: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(488); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == ' ') ADVANCE(786); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 1878: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(488); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == ' ') ADVANCE(786); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 1879: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(501); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == ' ') ADVANCE(625); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 1880: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(501); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == ' ') ADVANCE(625); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 1881: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(611); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == ' ') ADVANCE(488); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 1882: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(611); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == ' ') ADVANCE(488); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 1883: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(671); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == ' ') ADVANCE(501); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 1884: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(671); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == ' ') ADVANCE(501); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 1885: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(546); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == ' ') ADVANCE(614); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 1886: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(546); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == ' ') ADVANCE(614); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 1887: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(770); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == ' ') ADVANCE(674); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 1888: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(770); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == ' ') ADVANCE(674); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 1889: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(698); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == ' ') ADVANCE(546); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 1890: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(698); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == ' ') ADVANCE(546); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 1891: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(923); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == ' ') ADVANCE(773); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 1892: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(923); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == ' ') ADVANCE(773); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 1893: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(1542); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == ' ') ADVANCE(701); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 1894: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(1542); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == ' ') ADVANCE(701); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 1895: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(959); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == ' ') ADVANCE(927); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 1896: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(959); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == ' ') ADVANCE(927); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 1897: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(666); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == ' ') ADVANCE(1546); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 1898: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(666); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == ' ') ADVANCE(1546); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 1899: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(670); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == ' ') ADVANCE(962); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 1900: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(670); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == ' ') ADVANCE(962); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 1901: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(920); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == ' ') ADVANCE(669); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 1902: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(920); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == ' ') ADVANCE(669); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 1903: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '$') ADVANCE(3942); - if (lookahead == '(') ADVANCE(3838); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == '{') ADVANCE(4092); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ' ') ADVANCE(673); + if (lookahead == '=') ADVANCE(4135); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 1904: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '$') ADVANCE(3942); - if (lookahead == '(') ADVANCE(3838); - if (lookahead == '{') ADVANCE(4092); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == ' ') ADVANCE(673); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 1905: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(2677); - if (lookahead == '>') ADVANCE(4256); - if (lookahead == 'l') ADVANCE(2757); - if (lookahead == 'n') ADVANCE(2508); - if (lookahead == 'r') ADVANCE(2715); - if (lookahead == 'x') ADVANCE(2711); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == ' ') ADVANCE(924); + if (lookahead == '=') ADVANCE(4135); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 1906: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(2533); - if (lookahead == '>') ADVANCE(4261); - if (lookahead == 'r') ADVANCE(3778); - if (lookahead == 'u') ADVANCE(2780); - if (lookahead == 'v') ADVANCE(2541); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == ' ') ADVANCE(924); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 1907: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(2679); - if (lookahead == '>') ADVANCE(4246); - if (lookahead == 'o') ADVANCE(2718); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == '$') ADVANCE(3956); + if (lookahead == '(') ADVANCE(3852); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == '{') ADVANCE(4106); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1908: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - '+', 2277, - '=', 4117, - '>', 1573, - 'a', 2122, - 'l', 2341, - 'n', 2125, - 'r', 2312, - 'x', 2305, - ); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + if (lookahead == '$') ADVANCE(3956); + if (lookahead == '(') ADVANCE(3852); + if (lookahead == '{') ADVANCE(4106); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 1909: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(2284); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == '>') ADVANCE(1576); - if (lookahead == 'o') ADVANCE(2320); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + if (lookahead == '+') ADVANCE(2683); + if (lookahead == '>') ADVANCE(4274); + if (lookahead == 'l') ADVANCE(2765); + if (lookahead == 'n') ADVANCE(2514); + if (lookahead == 'r') ADVANCE(2721); + if (lookahead == 'x') ADVANCE(2717); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 1910: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(2185); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == '>') ADVANCE(1574); - if (lookahead == 'u') ADVANCE(2359); - if (lookahead == 'v') ADVANCE(2187); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + if (lookahead == '+') ADVANCE(2539); + if (lookahead == '>') ADVANCE(4279); + if (lookahead == 'r') ADVANCE(3788); + if (lookahead == 'u') ADVANCE(2788); + if (lookahead == 'v') ADVANCE(2547); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 1911: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(2550); - if (lookahead == '>') ADVANCE(4251); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == '+') ADVANCE(2685); + if (lookahead == '>') ADVANCE(4264); + if (lookahead == 'o') ADVANCE(2724); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 1912: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(2177); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == '>') ADVANCE(1578); + ADVANCE_MAP( + '+', 2281, + '=', 4135, + '>', 1577, + 'a', 2126, + 'l', 2345, + 'n', 2129, + 'r', 2316, + 'x', 2309, + ); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 1913: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == '.') ADVANCE(1915); - if (lookahead == '_') ADVANCE(1929); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3905); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == '+') ADVANCE(2288); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == '>') ADVANCE(1580); + if (lookahead == 'o') ADVANCE(2325); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 1914: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == '.') ADVANCE(1915); - if (lookahead == '_') ADVANCE(1933); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3987); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == '+') ADVANCE(2189); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == '>') ADVANCE(1578); + if (lookahead == 'u') ADVANCE(2363); + if (lookahead == 'v') ADVANCE(2191); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 1915: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == '.') ADVANCE(1903); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == '+') ADVANCE(2556); + if (lookahead == '>') ADVANCE(4269); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 1916: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == '.') ADVANCE(3840); - if (lookahead == '_') ADVANCE(1933); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3987); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == '+') ADVANCE(2181); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == '>') ADVANCE(1582); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 1917: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == '.') ADVANCE(1928); - if (lookahead == '_') ADVANCE(1917); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3904); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == '.') ADVANCE(1919); + if (lookahead == '_') ADVANCE(1933); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3919); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1918: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == '.') ADVANCE(1932); - if (lookahead == '_') ADVANCE(1918); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3982); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == '.') ADVANCE(1919); + if (lookahead == '_') ADVANCE(1937); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4001); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1919: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - ',', 2860, - 'I', 2041, - '_', 1936, - 'i', 2041, - 'l', 2022, - 'r', 2011, - 'x', 2004, - '+', 1936, - '-', 1936, - 'B', 4024, - 'b', 4024, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == '.') ADVANCE(1907); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1920: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - ',', 2860, - 'I', 2041, - '_', 1936, - 'i', 1947, - '+', 1936, - '-', 1936, - 'B', 4024, - 'b', 4024, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == '.') ADVANCE(3854); + if (lookahead == '_') ADVANCE(1937); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4001); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1921: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - ',', 2860, - 'I', 2041, - 'a', 1985, - 'i', 1997, - 'o', 1952, - 's', 4031, - 'u', 2027, - 'B', 4024, - 'b', 4024, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == '.') ADVANCE(1932); + if (lookahead == '_') ADVANCE(1921); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3918); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1922: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - ',', 2860, - 'I', 2041, - 'i', 2041, - 'l', 2022, - 'r', 2011, - 'x', 2004, - 'B', 4024, - 'b', 4024, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == '.') ADVANCE(1936); + if (lookahead == '_') ADVANCE(1922); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3996); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1923: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'I') ADVANCE(2041); - if (lookahead == 'i') ADVANCE(2041); - if (lookahead == 'r') ADVANCE(2033); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + ADVANCE_MAP( + ',', 2868, + 'I', 2045, + '_', 1940, + 'i', 2045, + 'l', 2026, + 'r', 2015, + 'x', 2008, + '+', 1940, + '-', 1940, + 'B', 4038, + 'b', 4038, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1924: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'I') ADVANCE(2041); - if (lookahead == 'i') ADVANCE(2041); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + ADVANCE_MAP( + ',', 2868, + 'I', 2045, + '_', 1940, + 'i', 1951, + '+', 1940, + '-', 1940, + 'B', 4038, + 'b', 4038, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1925: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'I') ADVANCE(2041); - if (lookahead == 'i') ADVANCE(1947); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + ADVANCE_MAP( + ',', 2868, + 'I', 2045, + 'a', 1989, + 'i', 2001, + 'o', 1956, + 's', 4045, + 'u', 2031, + 'B', 4038, + 'b', 4038, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1926: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'N') ADVANCE(2042); - if (lookahead == 'f') ADVANCE(3698); - if (lookahead == 'n') ADVANCE(3672); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + ADVANCE_MAP( + ',', 2868, + 'I', 2045, + 'i', 2045, + 'l', 2026, + 'r', 2015, + 'x', 2008, + 'B', 4038, + 'b', 4038, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1927: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == '_') ADVANCE(1927); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'I') ADVANCE(2045); + if (lookahead == 'i') ADVANCE(2045); + if (lookahead == 'r') ADVANCE(2037); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1928: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == '_') ADVANCE(1928); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3917); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'I') ADVANCE(2045); + if (lookahead == 'i') ADVANCE(2045); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1929: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == '_') ADVANCE(1929); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3905); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'I') ADVANCE(2045); + if (lookahead == 'i') ADVANCE(1951); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1930: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == '_') ADVANCE(1931); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(1931); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3906); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'N') ADVANCE(2046); + if (lookahead == 'f') ADVANCE(3712); + if (lookahead == 'n') ADVANCE(3686); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1931: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); + if (lookahead == ',') ADVANCE(2868); if (lookahead == '_') ADVANCE(1931); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3906); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1932: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); + if (lookahead == ',') ADVANCE(2868); if (lookahead == '_') ADVANCE(1932); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3993); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1933: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); + if (lookahead == ',') ADVANCE(2868); if (lookahead == '_') ADVANCE(1933); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3987); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3919); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1934: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == '_') ADVANCE(1936); - if (lookahead == 'l') ADVANCE(2022); - if (lookahead == 'r') ADVANCE(2011); - if (lookahead == 'x') ADVANCE(2004); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(1936); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == '_') ADVANCE(1935); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(1935); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3920); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1935: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == '_') ADVANCE(1936); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(1936); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == '_') ADVANCE(1935); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3920); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1936: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); + if (lookahead == ',') ADVANCE(2868); if (lookahead == '_') ADVANCE(1936); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4007); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1937: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == '_') ADVANCE(1938); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(1938); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == '_') ADVANCE(1937); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4001); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1938: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == '_') ADVANCE(1938); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == '_') ADVANCE(1940); + if (lookahead == 'l') ADVANCE(2026); + if (lookahead == 'r') ADVANCE(2015); + if (lookahead == 'x') ADVANCE(2008); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(1940); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1939: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == '_') ADVANCE(1939); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == '_') ADVANCE(1940); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(1940); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1940: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'a') ADVANCE(2025); - if (lookahead == 'o') ADVANCE(1994); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == '_') ADVANCE(1940); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1941: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'a') ADVANCE(1993); - if (lookahead == 'o') ADVANCE(2006); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == '_') ADVANCE(1942); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(1942); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1942: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'a') ADVANCE(1985); - if (lookahead == 'o') ADVANCE(1952); - if (lookahead == 'u') ADVANCE(2027); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == '_') ADVANCE(1942); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1943: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'a') ADVANCE(1984); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == '_') ADVANCE(1943); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3995); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1944: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'a') ADVANCE(2038); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'a') ADVANCE(2029); + if (lookahead == 'o') ADVANCE(1998); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1945: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'a') ADVANCE(2016); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'a') ADVANCE(1997); + if (lookahead == 'o') ADVANCE(2010); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1946: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'a') ADVANCE(2039); - if (lookahead == 'e') ADVANCE(1972); - if (lookahead == 'o') ADVANCE(3693); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'a') ADVANCE(1989); + if (lookahead == 'o') ADVANCE(1956); + if (lookahead == 'u') ADVANCE(2031); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1947: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'a') ADVANCE(1988); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1948: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'c') ADVANCE(4031); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'a') ADVANCE(2042); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1949: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'c') ADVANCE(1974); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'a') ADVANCE(2020); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1950: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'c') ADVANCE(1975); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'a') ADVANCE(2043); + if (lookahead == 'e') ADVANCE(1976); + if (lookahead == 'o') ADVANCE(3707); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1951: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'c') ADVANCE(1962); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1952: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'd') ADVANCE(2036); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'c') ADVANCE(4045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1953: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'd') ADVANCE(1958); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'c') ADVANCE(1978); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1954: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'e') ADVANCE(1972); - if (lookahead == 'o') ADVANCE(3693); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'c') ADVANCE(1979); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1955: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'e') ADVANCE(1973); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'c') ADVANCE(1966); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1956: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'e') ADVANCE(3595); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'd') ADVANCE(2040); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1957: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'e') ADVANCE(3704); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'd') ADVANCE(1962); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1958: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'e') ADVANCE(3751); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'e') ADVANCE(1976); + if (lookahead == 'o') ADVANCE(3707); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1959: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'e') ADVANCE(3684); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'e') ADVANCE(1977); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1960: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'e') ADVANCE(3688); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'e') ADVANCE(3609); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1961: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'e') ADVANCE(3590); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'e') ADVANCE(3718); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1962: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'e') ADVANCE(3740); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'e') ADVANCE(3761); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1963: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'e') ADVANCE(3664); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'e') ADVANCE(3698); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1964: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'e') ADVANCE(2026); - if (lookahead == 'o') ADVANCE(2000); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'e') ADVANCE(3702); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1965: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'e') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'e') ADVANCE(3604); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1966: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'e') ADVANCE(2050); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'e') ADVANCE(3754); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1967: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'e') ADVANCE(1948); - if (lookahead == 'o') ADVANCE(2032); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'e') ADVANCE(3678); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1968: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'e') ADVANCE(2051); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'e') ADVANCE(2030); + if (lookahead == 'o') ADVANCE(2004); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1969: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'e') ADVANCE(2015); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'e') ADVANCE(1947); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1970: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'e') ADVANCE(2012); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'e') ADVANCE(2054); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1971: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'e') ADVANCE(2008); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'e') ADVANCE(1952); + if (lookahead == 'o') ADVANCE(2036); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1972: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'f') ADVANCE(3577); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'e') ADVANCE(2055); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1973: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'g') ADVANCE(1982); - if (lookahead == 't') ADVANCE(2034); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'e') ADVANCE(2019); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1974: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'h') ADVANCE(3733); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'e') ADVANCE(2016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1975: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'h') ADVANCE(3709); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'e') ADVANCE(2012); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1976: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'h') ADVANCE(1983); - if (lookahead == 'k') ADVANCE(4031); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'f') ADVANCE(3591); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1977: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'h') ADVANCE(1983); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'g') ADVANCE(1986); + if (lookahead == 't') ADVANCE(2038); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1978: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'i') ADVANCE(1953); - if (lookahead == 'r') ADVANCE(4031); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'h') ADVANCE(3747); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1979: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'i') ADVANCE(1953); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'h') ADVANCE(3723); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1980: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'i') ADVANCE(1945); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'h') ADVANCE(1987); + if (lookahead == 'k') ADVANCE(4045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1981: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'i') ADVANCE(1998); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'h') ADVANCE(1987); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1982: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'i') ADVANCE(2023); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'i') ADVANCE(1957); + if (lookahead == 'r') ADVANCE(4045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1983: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'i') ADVANCE(1990); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'i') ADVANCE(1957); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1984: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'k') ADVANCE(3660); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'i') ADVANCE(1949); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1985: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'k') ADVANCE(1959); - if (lookahead == 't') ADVANCE(1950); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'i') ADVANCE(2002); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1986: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'l') ADVANCE(1980); - if (lookahead == 's') ADVANCE(3765); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'i') ADVANCE(2027); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1987: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'l') ADVANCE(2049); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'i') ADVANCE(1994); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1988: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'l') ADVANCE(1987); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'k') ADVANCE(3674); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1989: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'l') ADVANCE(1944); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'k') ADVANCE(1963); + if (lookahead == 't') ADVANCE(1954); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1990: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'l') ADVANCE(1960); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'l') ADVANCE(1984); + if (lookahead == 's') ADVANCE(3775); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1991: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'l') ADVANCE(1961); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'l') ADVANCE(2053); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1992: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'l') ADVANCE(2022); - if (lookahead == 'r') ADVANCE(2011); - if (lookahead == 'x') ADVANCE(2004); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'l') ADVANCE(1991); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1993: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'l') ADVANCE(2024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'l') ADVANCE(1948); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1994: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'n') ADVANCE(2021); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'l') ADVANCE(1964); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1995: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'n') ADVANCE(3585); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'l') ADVANCE(1965); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1996: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'n') ADVANCE(3737); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'l') ADVANCE(2026); + if (lookahead == 'r') ADVANCE(2015); + if (lookahead == 'x') ADVANCE(2008); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1997: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'n') ADVANCE(4031); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'l') ADVANCE(2028); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1998: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'n') ADVANCE(2035); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'n') ADVANCE(2025); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 1999: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'o') ADVANCE(2032); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'n') ADVANCE(3599); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2000: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'o') ADVANCE(2003); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'n') ADVANCE(3751); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2001: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'o') ADVANCE(2007); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'n') ADVANCE(4045); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2002: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'o') ADVANCE(2014); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'n') ADVANCE(2039); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2003: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'p') ADVANCE(3679); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'o') ADVANCE(2036); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2004: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'p') ADVANCE(2002); - if (lookahead == 't') ADVANCE(1970); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'o') ADVANCE(2007); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2005: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'r') ADVANCE(2033); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'o') ADVANCE(2011); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2006: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'r') ADVANCE(3668); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'o') ADVANCE(2018); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2007: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'r') ADVANCE(3615); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'p') ADVANCE(3693); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2008: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'r') ADVANCE(3748); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'p') ADVANCE(2006); + if (lookahead == 't') ADVANCE(1974); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2009: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'r') ADVANCE(1965); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'r') ADVANCE(2037); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2010: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'r') ADVANCE(1951); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'r') ADVANCE(3682); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2011: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'r') ADVANCE(2001); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'r') ADVANCE(3629); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2012: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'r') ADVANCE(1995); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'r') ADVANCE(4113); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2013: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'r') ADVANCE(1996); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'r') ADVANCE(1969); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2014: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'r') ADVANCE(2029); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'r') ADVANCE(1955); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2015: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'r') ADVANCE(1989); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'r') ADVANCE(2005); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2016: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 's') ADVANCE(1788); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'r') ADVANCE(1999); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2017: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 's') ADVANCE(4031); - if (lookahead == 'u') ADVANCE(1988); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2044); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'r') ADVANCE(2000); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2018: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 's') ADVANCE(4031); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'r') ADVANCE(2033); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2019: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 's') ADVANCE(4032); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'r') ADVANCE(1993); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2020: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 's') ADVANCE(1956); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 's') ADVANCE(1792); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2021: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 's') ADVANCE(2028); - if (lookahead == 't') ADVANCE(1981); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 's') ADVANCE(4045); + if (lookahead == 'u') ADVANCE(1992); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2048); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2022: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 's') ADVANCE(1957); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 's') ADVANCE(4045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2023: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 's') ADVANCE(2030); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 's') ADVANCE(4046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2024: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 's') ADVANCE(1968); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 's') ADVANCE(1960); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2025: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 't') ADVANCE(1949); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 's') ADVANCE(2032); + if (lookahead == 't') ADVANCE(1985); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2026: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 't') ADVANCE(1794); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 's') ADVANCE(1961); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2027: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 't') ADVANCE(1802); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 's') ADVANCE(2034); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2028: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 't') ADVANCE(1807); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 's') ADVANCE(1972); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2029: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 't') ADVANCE(1782); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 't') ADVANCE(1953); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2030: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 't') ADVANCE(1971); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 't') ADVANCE(1798); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2031: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'u') ADVANCE(1988); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2044); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 't') ADVANCE(1806); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2032: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'u') ADVANCE(2010); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 't') ADVANCE(1811); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2033: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'u') ADVANCE(1966); - if (lookahead == 'y') ADVANCE(3728); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 't') ADVANCE(1786); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2034: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'u') ADVANCE(2013); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 't') ADVANCE(1975); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2035: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'u') ADVANCE(1963); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'u') ADVANCE(1992); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2048); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2036: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'u') ADVANCE(1991); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'u') ADVANCE(2014); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2037: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'v') ADVANCE(1969); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'u') ADVANCE(1970); + if (lookahead == 'y') ADVANCE(3742); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2038: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'y') ADVANCE(3760); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'u') ADVANCE(2017); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2039: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'y') ADVANCE(4031); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'u') ADVANCE(1967); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2040: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2044); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'u') ADVANCE(1995); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2041: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'v') ADVANCE(1973); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2042: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3998); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'y') ADVANCE(3770); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2043: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2042); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'y') ADVANCE(4045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2044: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4016); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2048); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2045: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(3995); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2046: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3996); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4012); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2047: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3994); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2048: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4030); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2049: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(3054); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3052); + if (lookahead == ',') ADVANCE(2868); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(4009); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2050: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(3048); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3046); + if (lookahead == ',') ADVANCE(2868); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(4010); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2051: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(3051); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3049); + if (lookahead == ',') ADVANCE(2868); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4008); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2052: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(2467); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == ',') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2053: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(2830); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == ',') ADVANCE(3062); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3060); END_STATE(); case 2054: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(2599); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == ',') ADVANCE(3056); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3054); END_STATE(); case 2055: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(2857); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == ',') ADVANCE(3059); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3057); END_STATE(); case 2056: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(2911); - if (lookahead == '=') ADVANCE(4117); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2917); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2916); + if (lookahead == '-') ADVANCE(2472); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2057: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(2911); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2917); + if (lookahead == '-') ADVANCE(2597); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2058: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(2929); - if (lookahead == '=') ADVANCE(4117); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2935); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2934); + if (lookahead == '-') ADVANCE(2838); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2059: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(2929); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2935); + if (lookahead == '-') ADVANCE(2865); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2060: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(3038); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == '-') ADVANCE(2919); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3044); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3043); + lookahead == '@') ADVANCE(2925); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2924); END_STATE(); case 2061: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(3038); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3044); + if (lookahead == '-') ADVANCE(2919); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2925); END_STATE(); case 2062: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(2941); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == '-') ADVANCE(2937); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2947); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2946); + lookahead == '@') ADVANCE(2943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2942); END_STATE(); case 2063: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(2941); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2947); + if (lookahead == '-') ADVANCE(2937); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2943); END_STATE(); case 2064: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(2832); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == '-') ADVANCE(3046); + if (lookahead == '=') ADVANCE(4135); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3052); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3051); END_STATE(); case 2065: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(2446); - if (lookahead == '_') ADVANCE(2065); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3982); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == '-') ADVANCE(3046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3052); END_STATE(); case 2066: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(3721); - if (lookahead == '_') ADVANCE(2447); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3986); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == '-') ADVANCE(2949); + if (lookahead == '=') ADVANCE(4135); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2955); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2954); END_STATE(); case 2067: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(3718); - if (lookahead == '_') ADVANCE(2447); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3986); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == '-') ADVANCE(2949); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2955); END_STATE(); case 2068: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1904); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == '-') ADVANCE(2840); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2069: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(3839); - if (lookahead == '_') ADVANCE(2447); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3986); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == '.') ADVANCE(2450); + if (lookahead == '_') ADVANCE(2069); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3996); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2070: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(2068); - if (lookahead == '_') ADVANCE(2447); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3986); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == '.') ADVANCE(3735); + if (lookahead == '_') ADVANCE(2451); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2071: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(2068); - if (lookahead == '_') ADVANCE(2452); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3907); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == '.') ADVANCE(3732); + if (lookahead == '_') ADVANCE(2451); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2072: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(3842); - if (lookahead == '_') ADVANCE(2447); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3986); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == '.') ADVANCE(1908); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2073: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(2451); - if (lookahead == '_') ADVANCE(2073); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3904); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == '.') ADVANCE(3853); + if (lookahead == '_') ADVANCE(2451); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2074: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ':') ADVANCE(1611); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == '.') ADVANCE(2072); + if (lookahead == '_') ADVANCE(2451); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2075: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == '>') ADVANCE(1575); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + if (lookahead == '.') ADVANCE(2072); + if (lookahead == '_') ADVANCE(2456); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3921); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2076: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == '>') ADVANCE(1577); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + if (lookahead == '.') ADVANCE(3856); + if (lookahead == '_') ADVANCE(2451); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2077: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == '>') ADVANCE(1579); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + if (lookahead == '.') ADVANCE(2455); + if (lookahead == '_') ADVANCE(2077); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3918); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2078: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == '>') ADVANCE(1580); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + if (lookahead == ':') ADVANCE(1615); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2079: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'N') ADVANCE(2403); - if (lookahead == 'f') ADVANCE(3699); - if (lookahead == 'n') ADVANCE(2294); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == '>') ADVANCE(1579); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2080: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'N') ADVANCE(2403); - if (lookahead == 'f') ADVANCE(3699); - if (lookahead == 'n') ADVANCE(3674); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == '>') ADVANCE(1581); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2081: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'N') ADVANCE(2403); - if (lookahead == 'f') ADVANCE(2410); - if (lookahead == 'n') ADVANCE(2294); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == '>') ADVANCE(1583); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2082: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == '_') ADVANCE(2082); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == '>') ADVANCE(1584); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2083: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'a') ADVANCE(2307); - if (lookahead == 'o') ADVANCE(2255); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'N') ADVANCE(2407); + if (lookahead == 'f') ADVANCE(3713); + if (lookahead == 'n') ADVANCE(2298); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2084: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'a') ADVANCE(2307); - if (lookahead == 'o') ADVANCE(2256); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'N') ADVANCE(2407); + if (lookahead == 'f') ADVANCE(3713); + if (lookahead == 'n') ADVANCE(3688); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2085: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'a') ADVANCE(2307); - if (lookahead == 'o') ADVANCE(2257); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'N') ADVANCE(2407); + if (lookahead == 'f') ADVANCE(2414); + if (lookahead == 'n') ADVANCE(2298); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2086: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'a') ADVANCE(2122); - if (lookahead == 'l') ADVANCE(2341); - if (lookahead == 'n') ADVANCE(2125); - if (lookahead == 'r') ADVANCE(2317); - if (lookahead == 'x') ADVANCE(2293); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == '_') ADVANCE(2086); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3995); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2087: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'a') ADVANCE(2122); - if (lookahead == 'l') ADVANCE(2341); - if (lookahead == 'n') ADVANCE(2125); - if (lookahead == 'r') ADVANCE(2334); - if (lookahead == 'x') ADVANCE(2305); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'a') ADVANCE(2311); + if (lookahead == 'o') ADVANCE(2259); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2088: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'a') ADVANCE(2122); - if (lookahead == 'l') ADVANCE(2346); - if (lookahead == 'n') ADVANCE(2125); - if (lookahead == 'r') ADVANCE(2317); - if (lookahead == 'x') ADVANCE(2293); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'a') ADVANCE(2311); + if (lookahead == 'o') ADVANCE(2260); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2089: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'a') ADVANCE(2251); - if (lookahead == 'o') ADVANCE(2309); - if (lookahead == 'r') ADVANCE(2279); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'a') ADVANCE(2311); + if (lookahead == 'o') ADVANCE(2261); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2090: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'a') ADVANCE(2251); - if (lookahead == 'o') ADVANCE(2314); - if (lookahead == 'r') ADVANCE(2279); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'a') ADVANCE(2126); + if (lookahead == 'l') ADVANCE(2345); + if (lookahead == 'n') ADVANCE(2129); + if (lookahead == 'r') ADVANCE(2321); + if (lookahead == 'x') ADVANCE(2297); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2091: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'a') ADVANCE(2229); - if (lookahead == 'e') ADVANCE(2360); - if (lookahead == 'o') ADVANCE(2133); - if (lookahead == 'u') ADVANCE(2354); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'a') ADVANCE(2126); + if (lookahead == 'l') ADVANCE(2345); + if (lookahead == 'n') ADVANCE(2129); + if (lookahead == 'r') ADVANCE(2338); + if (lookahead == 'x') ADVANCE(2309); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2092: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'a') ADVANCE(2229); - if (lookahead == 'e') ADVANCE(2360); - if (lookahead == 'o') ADVANCE(2142); - if (lookahead == 'u') ADVANCE(2366); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'a') ADVANCE(2126); + if (lookahead == 'l') ADVANCE(2350); + if (lookahead == 'n') ADVANCE(2129); + if (lookahead == 'r') ADVANCE(2321); + if (lookahead == 'x') ADVANCE(2297); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2093: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'a') ADVANCE(2265); - if (lookahead == 'e') ADVANCE(2191); - if (lookahead == 'o') ADVANCE(2254); - if (lookahead == 'u') ADVANCE(2344); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'a') ADVANCE(2255); + if (lookahead == 'o') ADVANCE(2313); + if (lookahead == 'r') ADVANCE(2283); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2094: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'a') ADVANCE(2265); - if (lookahead == 'e') ADVANCE(2198); - if (lookahead == 'o') ADVANCE(2254); - if (lookahead == 'u') ADVANCE(2344); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'a') ADVANCE(2255); + if (lookahead == 'o') ADVANCE(2318); + if (lookahead == 'r') ADVANCE(2283); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2095: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'a') ADVANCE(2265); - if (lookahead == 'e') ADVANCE(2197); - if (lookahead == 'o') ADVANCE(2254); - if (lookahead == 'u') ADVANCE(2344); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'a') ADVANCE(2233); + if (lookahead == 'e') ADVANCE(2364); + if (lookahead == 'o') ADVANCE(2137); + if (lookahead == 'u') ADVANCE(2358); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2096: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == '=') ADVANCE(4135); if (lookahead == 'a') ADVANCE(2233); - if (lookahead == 'e') ADVANCE(2328); - if (lookahead == 'o') ADVANCE(1819); - if (lookahead == 'r') ADVANCE(2382); + if (lookahead == 'e') ADVANCE(2364); + if (lookahead == 'o') ADVANCE(2146); + if (lookahead == 'u') ADVANCE(2370); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2097: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'a') ADVANCE(2233); - if (lookahead == 'e') ADVANCE(2328); - if (lookahead == 'o') ADVANCE(1819); - if (lookahead == 'r') ADVANCE(2383); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'a') ADVANCE(2269); + if (lookahead == 'e') ADVANCE(2195); + if (lookahead == 'o') ADVANCE(2258); + if (lookahead == 'u') ADVANCE(2348); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2098: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'a') ADVANCE(2228); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'a') ADVANCE(2269); + if (lookahead == 'e') ADVANCE(2196); + if (lookahead == 'o') ADVANCE(2258); + if (lookahead == 'u') ADVANCE(2348); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2099: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'a') ADVANCE(2398); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'a') ADVANCE(2269); + if (lookahead == 'e') ADVANCE(2202); + if (lookahead == 'o') ADVANCE(2258); + if (lookahead == 'u') ADVANCE(2348); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2100: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'a') ADVANCE(2232); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'a') ADVANCE(2237); + if (lookahead == 'e') ADVANCE(2332); + if (lookahead == 'o') ADVANCE(1823); + if (lookahead == 'r') ADVANCE(2386); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2101: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'a') ADVANCE(2350); - if (lookahead == 'e') ADVANCE(2249); - if (lookahead == 'i') ADVANCE(2136); - if (lookahead == 't') ADVANCE(2372); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'a') ADVANCE(2237); + if (lookahead == 'e') ADVANCE(2332); + if (lookahead == 'o') ADVANCE(1823); + if (lookahead == 'r') ADVANCE(2387); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2102: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'a') ADVANCE(2350); - if (lookahead == 'e') ADVANCE(2249); - if (lookahead == 'i') ADVANCE(2138); - if (lookahead == 't') ADVANCE(2372); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'a') ADVANCE(2232); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2103: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'a') ADVANCE(2399); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'a') ADVANCE(2402); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2104: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'a') ADVANCE(2337); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'a') ADVANCE(2236); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2105: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'a') ADVANCE(2342); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'a') ADVANCE(2354); + if (lookahead == 'e') ADVANCE(2253); + if (lookahead == 'i') ADVANCE(2140); + if (lookahead == 't') ADVANCE(2376); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2106: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'a') ADVANCE(2374); - if (lookahead == 'l') ADVANCE(2379); - if (lookahead == 'o') ADVANCE(2237); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'a') ADVANCE(2354); + if (lookahead == 'e') ADVANCE(2253); + if (lookahead == 'i') ADVANCE(2142); + if (lookahead == 't') ADVANCE(2376); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2107: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'a') ADVANCE(2335); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'a') ADVANCE(2403); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2108: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'a') ADVANCE(2367); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'a') ADVANCE(2341); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2109: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'a') ADVANCE(1885); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'a') ADVANCE(2347); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2110: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'a') ADVANCE(2231); - if (lookahead == 'e') ADVANCE(2360); - if (lookahead == 'o') ADVANCE(2133); - if (lookahead == 'u') ADVANCE(2354); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'a') ADVANCE(2378); + if (lookahead == 'l') ADVANCE(2383); + if (lookahead == 'o') ADVANCE(2241); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2111: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'a') ADVANCE(2267); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'a') ADVANCE(2339); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2112: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'a') ADVANCE(2365); - if (lookahead == 'e') ADVANCE(2120); - if (lookahead == 'o') ADVANCE(3694); - if (lookahead == 'r') ADVANCE(2276); - if (lookahead == 't') ADVANCE(1815); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'a') ADVANCE(2371); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2113: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'a') ADVANCE(2365); - if (lookahead == 'e') ADVANCE(2121); - if (lookahead == 'o') ADVANCE(3694); - if (lookahead == 'r') ADVANCE(2276); - if (lookahead == 't') ADVANCE(1815); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'a') ADVANCE(1889); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2114: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'a') ADVANCE(2365); - if (lookahead == 'e') ADVANCE(2121); - if (lookahead == 'o') ADVANCE(2409); - if (lookahead == 'r') ADVANCE(2276); - if (lookahead == 't') ADVANCE(1815); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'a') ADVANCE(2235); + if (lookahead == 'e') ADVANCE(2364); + if (lookahead == 'o') ADVANCE(2137); + if (lookahead == 'u') ADVANCE(2358); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2115: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'a') ADVANCE(2135); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'a') ADVANCE(2271); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2116: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'a') ADVANCE(2377); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'a') ADVANCE(2369); + if (lookahead == 'e') ADVANCE(2124); + if (lookahead == 'o') ADVANCE(3708); + if (lookahead == 'r') ADVANCE(2280); + if (lookahead == 't') ADVANCE(1819); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2117: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'a') ADVANCE(2308); - if (lookahead == 'o') ADVANCE(2255); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'a') ADVANCE(2369); + if (lookahead == 'e') ADVANCE(2125); + if (lookahead == 'o') ADVANCE(3708); + if (lookahead == 'r') ADVANCE(2280); + if (lookahead == 't') ADVANCE(1819); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2118: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'a') ADVANCE(2230); - if (lookahead == 'e') ADVANCE(2360); - if (lookahead == 'o') ADVANCE(2142); - if (lookahead == 'u') ADVANCE(2366); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'a') ADVANCE(2369); + if (lookahead == 'e') ADVANCE(2125); + if (lookahead == 'o') ADVANCE(2413); + if (lookahead == 'r') ADVANCE(2280); + if (lookahead == 't') ADVANCE(1819); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2119: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'b') ADVANCE(2223); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'a') ADVANCE(2139); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2120: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'b') ADVANCE(2380); - if (lookahead == 'c') ADVANCE(2282); - if (lookahead == 'f') ADVANCE(3578); - if (lookahead == 't') ADVANCE(2159); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'a') ADVANCE(2382); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2121: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'b') ADVANCE(2380); - if (lookahead == 'c') ADVANCE(2282); - if (lookahead == 'f') ADVANCE(2411); - if (lookahead == 't') ADVANCE(2159); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'a') ADVANCE(2312); + if (lookahead == 'o') ADVANCE(2259); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2122: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'c') ADVANCE(2205); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'a') ADVANCE(2234); + if (lookahead == 'e') ADVANCE(2364); + if (lookahead == 'o') ADVANCE(2146); + if (lookahead == 'u') ADVANCE(2370); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2123: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'c') ADVANCE(2203); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'b') ADVANCE(2227); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2124: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'c') ADVANCE(2200); - if (lookahead == 'h') ADVANCE(1849); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'b') ADVANCE(2384); + if (lookahead == 'c') ADVANCE(2286); + if (lookahead == 'f') ADVANCE(3592); + if (lookahead == 't') ADVANCE(2163); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2125: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'c') ADVANCE(2282); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'b') ADVANCE(2384); + if (lookahead == 'c') ADVANCE(2286); + if (lookahead == 'f') ADVANCE(2415); + if (lookahead == 't') ADVANCE(2163); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2126: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'c') ADVANCE(2201); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'c') ADVANCE(2209); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2127: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'c') ADVANCE(2152); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'c') ADVANCE(2207); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2128: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'c') ADVANCE(2162); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'c') ADVANCE(2204); + if (lookahead == 'h') ADVANCE(1853); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2129: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'c') ADVANCE(2208); - if (lookahead == 'h') ADVANCE(1849); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'c') ADVANCE(2286); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2130: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - '=', 4117, - 'c', 2281, - 'e', 2306, - 'k', 2225, - 'o', 2381, - 'p', 2238, - 't', 2285, - 'y', 2340, - ); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'c') ADVANCE(2205); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2131: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - '=', 4117, - 'c', 2281, - 'e', 2306, - 'k', 2225, - 'o', 2389, - 'p', 2238, - 't', 2285, - 'y', 2340, - ); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'c') ADVANCE(2156); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2132: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'c') ADVANCE(2370); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'c') ADVANCE(2166); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2133: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'd') ADVANCE(2390); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'c') ADVANCE(2212); + if (lookahead == 'h') ADVANCE(1853); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2134: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'd') ADVANCE(2116); + ADVANCE_MAP( + '=', 4135, + 'c', 2285, + 'e', 2310, + 'k', 2229, + 'o', 2385, + 'p', 2242, + 't', 2289, + 'y', 2344, + ); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2135: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'd') ADVANCE(2108); + ADVANCE_MAP( + '=', 4135, + 'c', 2285, + 'e', 2310, + 'k', 2229, + 'o', 2393, + 'p', 2242, + 't', 2289, + 'y', 2344, + ); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2136: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'd') ADVANCE(2146); - if (lookahead == 's') ADVANCE(2375); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'c') ADVANCE(2374); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2137: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'd') ADVANCE(2215); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'd') ADVANCE(2394); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2138: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'd') ADVANCE(2157); - if (lookahead == 's') ADVANCE(2375); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'd') ADVANCE(2120); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2139: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'd') ADVANCE(2243); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'd') ADVANCE(2112); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2140: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'd') ADVANCE(2181); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'd') ADVANCE(2150); + if (lookahead == 's') ADVANCE(2379); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2141: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'd') ADVANCE(2292); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'd') ADVANCE(2219); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2142: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'd') ADVANCE(2392); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'd') ADVANCE(2161); + if (lookahead == 's') ADVANCE(2379); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2143: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'e') ADVANCE(2397); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'd') ADVANCE(2247); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2144: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'e') ADVANCE(3596); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'd') ADVANCE(2185); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2145: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'e') ADVANCE(2396); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'd') ADVANCE(2296); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2146: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'e') ADVANCE(3753); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'd') ADVANCE(2396); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2147: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'e') ADVANCE(3927); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'e') ADVANCE(2401); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2148: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'e') ADVANCE(3935); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'e') ADVANCE(3610); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2149: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'e') ADVANCE(3773); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'e') ADVANCE(2400); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2150: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'e') ADVANCE(3689); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'e') ADVANCE(3763); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2151: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'e') ADVANCE(3591); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'e') ADVANCE(3941); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2152: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'e') ADVANCE(3742); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'e') ADVANCE(3949); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2153: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'e') ADVANCE(3665); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'e') ADVANCE(3783); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2154: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'e') ADVANCE(3705); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'e') ADVANCE(3703); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2155: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'e') ADVANCE(3685); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'e') ADVANCE(3605); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2156: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'e') ADVANCE(2098); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'e') ADVANCE(3756); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2157: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'e') ADVANCE(2058); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'e') ADVANCE(3679); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2158: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'e') ADVANCE(2415); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'e') ADVANCE(3719); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2159: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'e') ADVANCE(2132); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'e') ADVANCE(3699); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2160: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'e') ADVANCE(2417); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'e') ADVANCE(2102); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2161: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'e') ADVANCE(2330); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'e') ADVANCE(2062); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2162: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'e') ADVANCE(2062); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'e') ADVANCE(2419); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2163: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'e') ADVANCE(2353); - if (lookahead == 'o') ADVANCE(2280); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'e') ADVANCE(2136); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2164: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'e') ADVANCE(2313); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'e') ADVANCE(2421); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2165: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'e') ADVANCE(2414); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'e') ADVANCE(2334); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2166: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'e') ADVANCE(2322); - if (lookahead == 'i') ADVANCE(2244); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'e') ADVANCE(2066); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2167: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'e') ADVANCE(2322); - if (lookahead == 'i') ADVANCE(2247); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'e') ADVANCE(2357); + if (lookahead == 'o') ADVANCE(2284); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2168: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'e') ADVANCE(1835); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'e') ADVANCE(2317); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2169: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'e') ADVANCE(2316); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'e') ADVANCE(2327); + if (lookahead == 'i') ADVANCE(2248); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2170: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'e') ADVANCE(2100); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'e') ADVANCE(2327); + if (lookahead == 'i') ADVANCE(2251); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2171: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'e') ADVANCE(2424); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'e') ADVANCE(2418); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2172: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'e') ADVANCE(2426); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'e') ADVANCE(1839); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2173: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'e') ADVANCE(2358); - if (lookahead == 'o') ADVANCE(2283); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'e') ADVANCE(2320); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2174: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'e') ADVANCE(2311); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'e') ADVANCE(2104); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2175: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'e') ADVANCE(2319); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'e') ADVANCE(2428); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2176: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'e') ADVANCE(2323); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'e') ADVANCE(2362); + if (lookahead == 'o') ADVANCE(2287); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2177: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'e') ADVANCE(2325); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'e') ADVANCE(2323); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2178: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'e') ADVANCE(1855); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'e') ADVANCE(2430); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2179: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'e') ADVANCE(2429); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'e') ADVANCE(2315); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2180: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'e') ADVANCE(1869); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'e') ADVANCE(2324); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2181: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'e') ADVANCE(1875); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'e') ADVANCE(2329); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2182: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'e') ADVANCE(1897); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'e') ADVANCE(1859); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2183: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'e') ADVANCE(1901); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'e') ADVANCE(2433); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2184: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'e') ADVANCE(1887); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'e') ADVANCE(1873); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2185: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'e') ADVANCE(2076); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'e') ADVANCE(1879); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2186: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'e') ADVANCE(2347); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'e') ADVANCE(1901); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2187: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'e') ADVANCE(2332); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'e') ADVANCE(1905); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2188: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'f') ADVANCE(2222); - if (lookahead == 's') ADVANCE(2356); - if (lookahead == 't') ADVANCE(2213); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'e') ADVANCE(1891); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2189: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'f') ADVANCE(2222); - if (lookahead == 's') ADVANCE(2368); - if (lookahead == 't') ADVANCE(2213); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'e') ADVANCE(2080); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2190: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'f') ADVANCE(2222); - if (lookahead == 's') ADVANCE(2368); - if (lookahead == 't') ADVANCE(2226); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'e') ADVANCE(2351); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2191: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'g') ADVANCE(2217); - if (lookahead == 't') ADVANCE(2384); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'e') ADVANCE(2336); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2192: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'g') ADVANCE(2290); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'f') ADVANCE(2226); + if (lookahead == 's') ADVANCE(2360); + if (lookahead == 't') ADVANCE(2217); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2193: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'g') ADVANCE(2220); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'f') ADVANCE(2226); + if (lookahead == 's') ADVANCE(2372); + if (lookahead == 't') ADVANCE(2217); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2194: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'g') ADVANCE(1891); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'f') ADVANCE(2226); + if (lookahead == 's') ADVANCE(2372); + if (lookahead == 't') ADVANCE(2230); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2195: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'g') ADVANCE(1873); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'g') ADVANCE(2221); + if (lookahead == 't') ADVANCE(2388); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2196: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'g') ADVANCE(2349); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'g') ADVANCE(2221); + if (lookahead == 't') ADVANCE(2395); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2197: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'g') ADVANCE(2227); - if (lookahead == 't') ADVANCE(2384); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'g') ADVANCE(2294); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2198: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'g') ADVANCE(2227); - if (lookahead == 't') ADVANCE(2391); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'g') ADVANCE(2224); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2199: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'h') ADVANCE(2166); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'g') ADVANCE(1895); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2200: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'h') ADVANCE(3710); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'g') ADVANCE(1877); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2201: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'h') ADVANCE(3734); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'g') ADVANCE(2353); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2202: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'h') ADVANCE(1817); - if (lookahead == 'i') ADVANCE(2362); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'g') ADVANCE(2231); + if (lookahead == 't') ADVANCE(2388); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2203: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'h') ADVANCE(2420); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'h') ADVANCE(2169); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2204: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'h') ADVANCE(2224); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'h') ADVANCE(3724); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2205: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'h') ADVANCE(1893); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'h') ADVANCE(3748); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2206: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'h') ADVANCE(1841); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'h') ADVANCE(1821); + if (lookahead == 'i') ADVANCE(2366); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2207: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'h') ADVANCE(1851); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'h') ADVANCE(2424); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2208: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'h') ADVANCE(2423); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'h') ADVANCE(2228); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2209: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'h') ADVANCE(2167); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'h') ADVANCE(1897); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2210: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'i') ADVANCE(2371); - if (lookahead == 'r') ADVANCE(2156); - if (lookahead == 'y') ADVANCE(2364); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'h') ADVANCE(1845); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2211: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'i') ADVANCE(2371); - if (lookahead == 'r') ADVANCE(2170); - if (lookahead == 'y') ADVANCE(2364); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'h') ADVANCE(1855); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2212: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'i') ADVANCE(2104); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'h') ADVANCE(2427); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2213: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'i') ADVANCE(2273); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'h') ADVANCE(2170); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2214: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'i') ADVANCE(2145); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'i') ADVANCE(2375); + if (lookahead == 'r') ADVANCE(2160); + if (lookahead == 'y') ADVANCE(2368); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2215: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'i') ADVANCE(2266); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'i') ADVANCE(2375); + if (lookahead == 'r') ADVANCE(2174); + if (lookahead == 'y') ADVANCE(2368); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2216: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'i') ADVANCE(2275); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'i') ADVANCE(2108); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2217: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'i') ADVANCE(2351); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'i') ADVANCE(2277); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2218: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'i') ADVANCE(1831); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'i') ADVANCE(2149); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2219: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'i') ADVANCE(2105); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'i') ADVANCE(2270); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2220: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'i') ADVANCE(2272); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'i') ADVANCE(2279); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2221: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'i') ADVANCE(2369); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'i') ADVANCE(2355); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2222: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'i') ADVANCE(2195); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'i') ADVANCE(1835); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2223: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'i') ADVANCE(2268); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'i') ADVANCE(2109); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2224: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'i') ADVANCE(2247); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'i') ADVANCE(2276); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2225: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'i') ADVANCE(2302); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'i') ADVANCE(2373); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2226: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'i') ADVANCE(2274); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'i') ADVANCE(2200); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2227: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'i') ADVANCE(2352); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'i') ADVANCE(2272); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2228: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'k') ADVANCE(3661); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'i') ADVANCE(2251); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2229: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'k') ADVANCE(2160); - if (lookahead == 't') ADVANCE(2124); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'i') ADVANCE(2306); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2230: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'k') ADVANCE(2160); - if (lookahead == 't') ADVANCE(2129); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'i') ADVANCE(2278); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2231: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'k') ADVANCE(2155); - if (lookahead == 't') ADVANCE(2124); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'i') ADVANCE(2356); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2232: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'k') ADVANCE(2419); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'k') ADVANCE(3675); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2233: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'k') ADVANCE(2178); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'k') ADVANCE(2164); + if (lookahead == 't') ADVANCE(2128); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2234: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'l') ADVANCE(3919); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'k') ADVANCE(2164); + if (lookahead == 't') ADVANCE(2133); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2235: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'l') ADVANCE(2212); - if (lookahead == 'n') ADVANCE(2339); - if (lookahead == 's') ADVANCE(3766); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'k') ADVANCE(2159); + if (lookahead == 't') ADVANCE(2128); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2236: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'l') ADVANCE(2212); - if (lookahead == 'n') ADVANCE(2339); - if (lookahead == 's') ADVANCE(2408); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'k') ADVANCE(2423); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2237: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'l') ADVANCE(2107); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'k') ADVANCE(2182); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2238: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'l') ADVANCE(2221); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'l') ADVANCE(3933); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2239: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'l') ADVANCE(2234); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'l') ADVANCE(2216); + if (lookahead == 'n') ADVANCE(2343); + if (lookahead == 's') ADVANCE(3776); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2240: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'l') ADVANCE(1829); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'l') ADVANCE(2216); + if (lookahead == 'n') ADVANCE(2343); + if (lookahead == 's') ADVANCE(2412); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2241: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'l') ADVANCE(2099); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'l') ADVANCE(2111); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2242: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'l') ADVANCE(2103); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'l') ADVANCE(2225); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2243: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'l') ADVANCE(2216); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'l') ADVANCE(2238); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2244: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'l') ADVANCE(2150); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'l') ADVANCE(1833); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2245: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'l') ADVANCE(2151); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'l') ADVANCE(2103); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2246: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'l') ADVANCE(1853); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'l') ADVANCE(2107); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2247: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'l') ADVANCE(2171); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'l') ADVANCE(2220); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2248: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'l') ADVANCE(2172); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'l') ADVANCE(2154); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2249: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'l') ADVANCE(2300); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'l') ADVANCE(2155); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2250: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'l') ADVANCE(2219); - if (lookahead == 'n') ADVANCE(2339); - if (lookahead == 's') ADVANCE(2408); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'l') ADVANCE(1857); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2251: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'l') ADVANCE(2345); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'l') ADVANCE(2175); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2252: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'l') ADVANCE(2288); - if (lookahead == 'o') ADVANCE(2321); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'l') ADVANCE(2178); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2253: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'l') ADVANCE(2288); - if (lookahead == 'o') ADVANCE(2324); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'l') ADVANCE(2304); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2254: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'l') ADVANCE(2246); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'l') ADVANCE(2223); + if (lookahead == 'n') ADVANCE(2343); + if (lookahead == 's') ADVANCE(2412); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2255: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'm') ADVANCE(2259); - if (lookahead == 'n') ADVANCE(2188); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'l') ADVANCE(2349); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2256: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'm') ADVANCE(2259); - if (lookahead == 'n') ADVANCE(2189); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'l') ADVANCE(2292); + if (lookahead == 'o') ADVANCE(2326); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2257: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'm') ADVANCE(2259); - if (lookahead == 'n') ADVANCE(2190); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'l') ADVANCE(2292); + if (lookahead == 'o') ADVANCE(2328); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2258: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'm') ADVANCE(2957); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'l') ADVANCE(2250); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2962); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2961); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2259: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'm') ADVANCE(2111); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'm') ADVANCE(2263); + if (lookahead == 'n') ADVANCE(2192); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2260: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'm') ADVANCE(1839); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'm') ADVANCE(2263); + if (lookahead == 'n') ADVANCE(2193); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2261: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'm') ADVANCE(1859); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'm') ADVANCE(2263); + if (lookahead == 'n') ADVANCE(2194); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2262: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'm') ADVANCE(1881); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'm') ADVANCE(2965); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2970); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2969); END_STATE(); case 2263: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'n') ADVANCE(3586); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'm') ADVANCE(2115); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2264: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'n') ADVANCE(3738); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'm') ADVANCE(1843); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2265: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'n') ADVANCE(2141); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'm') ADVANCE(1863); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2266: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'n') ADVANCE(2196); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'm') ADVANCE(1885); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2267: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'n') ADVANCE(2139); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'n') ADVANCE(3600); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2268: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'n') ADVANCE(2137); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'n') ADVANCE(3752); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2269: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'n') ADVANCE(2425); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'n') ADVANCE(2145); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2270: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'n') ADVANCE(1847); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'n') ADVANCE(2201); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2271: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'n') ADVANCE(2427); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'n') ADVANCE(2143); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2272: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'n') ADVANCE(1877); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'n') ADVANCE(2141); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2273: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'n') ADVANCE(2385); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'n') ADVANCE(2429); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2274: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'n') ADVANCE(2387); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'n') ADVANCE(1851); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2275: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'n') ADVANCE(2184); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'n') ADVANCE(2431); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2276: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'o') ADVANCE(2299); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'n') ADVANCE(1881); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2277: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'o') ADVANCE(2075); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'n') ADVANCE(2389); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2278: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'o') ADVANCE(2270); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'n') ADVANCE(2391); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2279: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'o') ADVANCE(2260); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'n') ADVANCE(2188); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2280: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'o') ADVANCE(2295); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'o') ADVANCE(2303); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2281: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'o') ADVANCE(2304); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'o') ADVANCE(2079); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2282: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'o') ADVANCE(2140); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'o') ADVANCE(2274); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2283: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'o') ADVANCE(2298); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'o') ADVANCE(2264); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2284: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'o') ADVANCE(2386); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'o') ADVANCE(2299); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2285: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'o') ADVANCE(2326); - if (lookahead == 'r') ADVANCE(1825); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'o') ADVANCE(2308); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2286: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'o') ADVANCE(2355); - if (lookahead == 'u') ADVANCE(2239); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2405); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'o') ADVANCE(2144); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2287: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'o') ADVANCE(2310); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'o') ADVANCE(2302); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2288: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'o') ADVANCE(2336); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'o') ADVANCE(2390); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2289: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'o') ADVANCE(2320); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'o') ADVANCE(2330); + if (lookahead == 'r') ADVANCE(1829); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2290: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'o') ADVANCE(1865); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'o') ADVANCE(2359); + if (lookahead == 'u') ADVANCE(2243); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2409); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2291: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'o') ADVANCE(2327); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'o') ADVANCE(2314); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2292: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'o') ADVANCE(2262); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'o') ADVANCE(2340); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2293: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'p') ADVANCE(2252); - if (lookahead == 't') ADVANCE(2169); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'o') ADVANCE(2325); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2294: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'p') ADVANCE(3016); - if (lookahead == 't') ADVANCE(3012); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3018); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'o') ADVANCE(1869); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3029); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3028); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2295: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'p') ADVANCE(3680); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'o') ADVANCE(2331); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2296: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'p') ADVANCE(2134); - if (lookahead == 'r') ADVANCE(2240); - if (lookahead == 's') ADVANCE(2144); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'o') ADVANCE(2266); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2297: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'p') ADVANCE(2134); - if (lookahead == 'r') ADVANCE(2240); - if (lookahead == 's') ADVANCE(2165); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'p') ADVANCE(2256); + if (lookahead == 't') ADVANCE(2173); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2298: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'p') ADVANCE(2416); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'p') ADVANCE(3024); + if (lookahead == 't') ADVANCE(3020); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3026); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(3037); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3036); END_STATE(); case 2299: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'p') ADVANCE(1837); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'p') ADVANCE(3694); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2300: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'p') ADVANCE(1843); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'p') ADVANCE(2138); + if (lookahead == 'r') ADVANCE(2244); + if (lookahead == 's') ADVANCE(2148); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2301: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'p') ADVANCE(1845); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'p') ADVANCE(2138); + if (lookahead == 'r') ADVANCE(2244); + if (lookahead == 's') ADVANCE(2171); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2302: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'p') ADVANCE(1855); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'p') ADVANCE(2420); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2303: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'p') ADVANCE(1883); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'p') ADVANCE(1841); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2304: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'p') ADVANCE(2180); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'p') ADVANCE(1847); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2305: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'p') ADVANCE(2253); - if (lookahead == 't') ADVANCE(2175); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'p') ADVANCE(1849); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2306: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'q') ADVANCE(1823); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'p') ADVANCE(1859); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2307: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'r') ADVANCE(2192); - if (lookahead == 't') ADVANCE(2123); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'p') ADVANCE(1887); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2308: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'r') ADVANCE(2192); - if (lookahead == 't') ADVANCE(2126); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'p') ADVANCE(2184); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2309: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'r') ADVANCE(3669); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'p') ADVANCE(2257); + if (lookahead == 't') ADVANCE(2180); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2310: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'r') ADVANCE(3616); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'q') ADVANCE(1827); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2311: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'r') ADVANCE(3749); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'r') ADVANCE(2197); + if (lookahead == 't') ADVANCE(2127); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2312: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'r') ADVANCE(1909); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'r') ADVANCE(2197); + if (lookahead == 't') ADVANCE(2130); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2313: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'r') ADVANCE(2400); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'r') ADVANCE(3683); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2314: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'r') ADVANCE(2258); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'r') ADVANCE(3630); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2315: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'r') ADVANCE(2127); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'r') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2316: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'r') ADVANCE(2263); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'r') ADVANCE(1913); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2317: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'r') ADVANCE(2287); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'r') ADVANCE(2404); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2318: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'r') ADVANCE(2264); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'r') ADVANCE(2262); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2319: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'r') ADVANCE(2269); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'r') ADVANCE(2131); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2320: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'r') ADVANCE(2422); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'r') ADVANCE(2267); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2321: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'r') ADVANCE(2357); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'r') ADVANCE(2291); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2322: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'r') ADVANCE(2149); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'r') ADVANCE(2268); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2323: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'r') ADVANCE(2430); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'r') ADVANCE(2434); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2324: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'r') ADVANCE(2361); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'r') ADVANCE(2273); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2325: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'r') ADVANCE(2333); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'r') ADVANCE(2426); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2326: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'r') ADVANCE(1857); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'r') ADVANCE(2361); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2327: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'r') ADVANCE(2401); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'r') ADVANCE(2153); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2328: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'r') ADVANCE(2261); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'r') ADVANCE(2365); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2329: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'r') ADVANCE(2128); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'r') ADVANCE(2337); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2330: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'r') ADVANCE(2241); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'r') ADVANCE(1861); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2331: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'r') ADVANCE(2271); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'r') ADVANCE(2405); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2332: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'r') ADVANCE(2242); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'r') ADVANCE(2265); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2333: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'r') ADVANCE(2078); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'r') ADVANCE(2132); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2334: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'r') ADVANCE(2289); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'r') ADVANCE(2245); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2335: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'r') ADVANCE(2348); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'r') ADVANCE(2275); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2336: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'r') ADVANCE(2183); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'r') ADVANCE(2246); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2337: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 's') ADVANCE(1789); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'r') ADVANCE(2082); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2338: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 's') ADVANCE(2278); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'r') ADVANCE(2293); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2339: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 's') ADVANCE(2218); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'r') ADVANCE(2352); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2340: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 's') ADVANCE(1827); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'r') ADVANCE(2187); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2341: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 's') ADVANCE(2158); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 's') ADVANCE(1793); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2342: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 's') ADVANCE(2418); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 's') ADVANCE(2282); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2343: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 's') ADVANCE(1833); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 's') ADVANCE(2222); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2344: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 's') ADVANCE(2363); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 's') ADVANCE(1831); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2345: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 's') ADVANCE(2148); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 's') ADVANCE(2162); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2346: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 's') ADVANCE(2154); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 's') ADVANCE(1837); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2347: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 's') ADVANCE(1863); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 's') ADVANCE(2422); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2348: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 's') ADVANCE(1879); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 's') ADVANCE(2367); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2349: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 's') ADVANCE(1889); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 's') ADVANCE(2152); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2350: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 's') ADVANCE(2206); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 's') ADVANCE(2158); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2351: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 's') ADVANCE(2376); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 's') ADVANCE(1867); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2352: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 's') ADVANCE(2378); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 's') ADVANCE(1883); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2353: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 't') ADVANCE(1796); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 's') ADVANCE(1893); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2354: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 't') ADVANCE(1803); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 's') ADVANCE(2210); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2355: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 't') ADVANCE(2406); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 's') ADVANCE(2380); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2356: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 't') ADVANCE(1808); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 's') ADVANCE(2381); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2357: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 't') ADVANCE(1784); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 't') ADVANCE(1800); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2358: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 't') ADVANCE(2056); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 't') ADVANCE(1807); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2359: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 't') ADVANCE(1912); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 't') ADVANCE(2410); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2360: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 't') ADVANCE(2115); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 't') ADVANCE(1812); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2361: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 't') ADVANCE(2060); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 't') ADVANCE(1788); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2362: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 't') ADVANCE(1821); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 't') ADVANCE(2060); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2363: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 't') ADVANCE(2393); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 't') ADVANCE(1916); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2364: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 't') ADVANCE(2186); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 't') ADVANCE(2119); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2365: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 't') ADVANCE(2168); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 't') ADVANCE(2064); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2366: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 't') ADVANCE(2412); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 't') ADVANCE(1825); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2367: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 't') ADVANCE(2109); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 't') ADVANCE(2397); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2368: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 't') ADVANCE(2421); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 't') ADVANCE(2190); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2369: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 't') ADVANCE(1871); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 't') ADVANCE(2172); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2370: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 't') ADVANCE(1899); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 't') ADVANCE(2416); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2371: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 't') ADVANCE(2343); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 't') ADVANCE(2113); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2372: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 't') ADVANCE(2301); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 't') ADVANCE(2425); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2373: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 't') ADVANCE(2077); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 't') ADVANCE(1875); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2374: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 't') ADVANCE(2207); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 't') ADVANCE(1903); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2375: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 't') ADVANCE(2291); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 't') ADVANCE(2346); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2376: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 't') ADVANCE(2174); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 't') ADVANCE(2305); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2377: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 't') ADVANCE(2182); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 't') ADVANCE(2081); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2378: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 't') ADVANCE(2176); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 't') ADVANCE(2211); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2379: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'u') ADVANCE(2193); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 't') ADVANCE(2295); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2380: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'u') ADVANCE(2194); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 't') ADVANCE(2177); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2381: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'u') ADVANCE(2315); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 't') ADVANCE(2179); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2382: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'u') ADVANCE(2147); - if (lookahead == 'y') ADVANCE(3729); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 't') ADVANCE(2186); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2383: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'u') ADVANCE(2147); - if (lookahead == 'y') ADVANCE(2413); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'u') ADVANCE(2198); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2384: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'u') ADVANCE(2318); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'u') ADVANCE(2199); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2385: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'u') ADVANCE(2153); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'u') ADVANCE(2319); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2386: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'u') ADVANCE(2373); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'u') ADVANCE(2151); + if (lookahead == 'y') ADVANCE(3743); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2387: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'u') ADVANCE(2179); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'u') ADVANCE(2151); + if (lookahead == 'y') ADVANCE(2417); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2388: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'u') ADVANCE(2164); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'u') ADVANCE(2322); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2389: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'u') ADVANCE(2329); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'u') ADVANCE(2157); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2390: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'u') ADVANCE(2245); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'u') ADVANCE(2377); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2391: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'u') ADVANCE(2331); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'u') ADVANCE(2183); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2392: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'u') ADVANCE(2248); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'u') ADVANCE(2168); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2393: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'u') ADVANCE(2303); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'u') ADVANCE(2333); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2394: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'v') ADVANCE(2161); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'u') ADVANCE(2249); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2395: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'v') ADVANCE(2187); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'u') ADVANCE(2335); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2396: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'w') ADVANCE(1861); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'u') ADVANCE(2252); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2397: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'y') ADVANCE(2119); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'u') ADVANCE(2307); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2398: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'y') ADVANCE(3761); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'v') ADVANCE(2165); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2399: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'y') ADVANCE(2428); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'v') ADVANCE(2191); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2400: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'y') ADVANCE(1867); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'w') ADVANCE(1865); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2401: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'y') ADVANCE(1895); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'y') ADVANCE(2123); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2402: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2405); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'y') ADVANCE(3771); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2403: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3999); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'y') ADVANCE(2432); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2404: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2403); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'y') ADVANCE(1871); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2405: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4017); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'y') ADVANCE(1899); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2406: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2409); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3801); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2407: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4013); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2407); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2408: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2407); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3001); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3000); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2409: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == '=') ADVANCE(4135); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4031); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2974); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2973); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2410: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2977); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2976); + lookahead == '@') ADVANCE(2868); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3815); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2411: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2890); + lookahead == '@') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2411); END_STATE(); case 2412: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2920); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2919); + lookahead == '@') ADVANCE(3009); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3008); END_STATE(); case 2413: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2983); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2982); + lookahead == '@') ADVANCE(2982); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2981); END_STATE(); case 2414: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2897); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2896); + lookahead == '@') ADVANCE(2985); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2984); END_STATE(); case 2415: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2980); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2979); + lookahead == '@') ADVANCE(2899); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2898); END_STATE(); case 2416: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2965); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2964); + lookahead == '@') ADVANCE(2928); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2927); END_STATE(); case 2417: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3032); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3031); + lookahead == '@') ADVANCE(2991); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2990); END_STATE(); case 2418: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2894); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2893); + lookahead == '@') ADVANCE(2905); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2904); END_STATE(); case 2419: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2992); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2991); + lookahead == '@') ADVANCE(2988); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2987); END_STATE(); case 2420: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2986); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2985); + lookahead == '@') ADVANCE(2973); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2972); END_STATE(); case 2421: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2923); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2922); + lookahead == '@') ADVANCE(3040); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3039); END_STATE(); case 2422: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2971); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2970); + lookahead == '@') ADVANCE(2902); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2901); END_STATE(); case 2423: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2989); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2988); + lookahead == '@') ADVANCE(3000); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2999); END_STATE(); case 2424: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2968); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2967); + lookahead == '@') ADVANCE(2994); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2993); END_STATE(); case 2425: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2902); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2901); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2930); END_STATE(); case 2426: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2905); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2904); + lookahead == '@') ADVANCE(2979); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2978); END_STATE(); case 2427: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2998); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2997); + lookahead == '@') ADVANCE(2997); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2996); END_STATE(); case 2428: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2950); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2949); + lookahead == '@') ADVANCE(2976); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2975); END_STATE(); case 2429: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2995); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2994); + lookahead == '@') ADVANCE(2910); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2909); END_STATE(); case 2430: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4117); + if (lookahead == '=') ADVANCE(4135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2953); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2952); + lookahead == '@') ADVANCE(2913); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2912); END_STATE(); case 2431: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3788); - if (lookahead == '~') ADVANCE(3799); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == '=') ADVANCE(4135); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3006); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3005); END_STATE(); case 2432: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(4281); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == '=') ADVANCE(4135); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2958); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2957); END_STATE(); case 2433: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(4276); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == '=') ADVANCE(4135); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3003); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); case 2434: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(4266); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == '=') ADVANCE(4135); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2961); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2960); END_STATE(); case 2435: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(4271); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == '=') ADVANCE(3802); + if (lookahead == '~') ADVANCE(3813); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2436: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - 'I', 2841, - '_', 2457, - 'i', 2841, - 'l', 2767, - 'r', 2750, - 'x', 2712, - '+', 2457, - '-', 2457, - 'B', 4024, - 'b', 4024, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == '>') ADVANCE(4299); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2437: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(2841); - if (lookahead == '_') ADVANCE(2457); - if (lookahead == 'i') ADVANCE(2490); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2457); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == '>') ADVANCE(4294); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2438: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - 'I', 2841, - 'a', 2622, - 'i', 2661, - 'o', 2519, - 's', 4031, - 'u', 2794, - 'B', 4024, - 'b', 4024, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == '>') ADVANCE(4284); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2439: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(2841); - if (lookahead == 'i') ADVANCE(2841); - if (lookahead == 'l') ADVANCE(2767); - if (lookahead == 'r') ADVANCE(2750); - if (lookahead == 'x') ADVANCE(2712); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == '>') ADVANCE(4289); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2440: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(2841); - if (lookahead == 'i') ADVANCE(2841); - if (lookahead == 'r') ADVANCE(2816); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + ADVANCE_MAP( + 'I', 2849, + '_', 2462, + 'i', 2849, + 'l', 2775, + 'r', 2756, + 'x', 2718, + '+', 2462, + '-', 2462, + 'B', 4038, + 'b', 4038, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2441: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(2841); - if (lookahead == 'i') ADVANCE(2841); + if (lookahead == 'I') ADVANCE(2849); + if (lookahead == '_') ADVANCE(2462); + if (lookahead == 'i') ADVANCE(2496); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2462); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + lookahead == 'b') ADVANCE(4038); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2442: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(2841); - if (lookahead == 'i') ADVANCE(2490); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + ADVANCE_MAP( + 'I', 2849, + 'a', 2628, + 'i', 2667, + 'o', 2525, + 's', 4045, + 'u', 2802, + 'B', 4038, + 'b', 4038, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2443: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N') ADVANCE(2842); - if (lookahead == 'f') ADVANCE(3700); - if (lookahead == 'n') ADVANCE(3675); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'I') ADVANCE(2849); + if (lookahead == 'i') ADVANCE(2849); + if (lookahead == 'l') ADVANCE(2775); + if (lookahead == 'r') ADVANCE(2756); + if (lookahead == 'x') ADVANCE(2718); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2444: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N') ADVANCE(2842); - if (lookahead == 'f') ADVANCE(3700); - if (lookahead == 'n') ADVANCE(2702); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'I') ADVANCE(2849); + if (lookahead == 'i') ADVANCE(2849); + if (lookahead == 'r') ADVANCE(2824); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2445: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N') ADVANCE(2844); - if (lookahead == 'f') ADVANCE(2863); - if (lookahead == 'n') ADVANCE(2843); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'I') ADVANCE(2849); + if (lookahead == 'i') ADVANCE(2849); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2446: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(2446); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3993); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'I') ADVANCE(2849); + if (lookahead == 'i') ADVANCE(2496); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2447: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(2447); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3986); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'N') ADVANCE(2850); + if (lookahead == 'f') ADVANCE(3714); + if (lookahead == 'n') ADVANCE(3689); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2448: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(2449); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2449); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'N') ADVANCE(2850); + if (lookahead == 'f') ADVANCE(3714); + if (lookahead == 'n') ADVANCE(2708); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2449: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(2449); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'N') ADVANCE(2852); + if (lookahead == 'f') ADVANCE(2871); + if (lookahead == 'n') ADVANCE(2851); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2450: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(2450); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4007); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2451: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(2451); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3917); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2452: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(2452); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3907); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == '_') ADVANCE(2453); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2453: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(2454); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2454); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3906); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == '_') ADVANCE(2453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2454: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(2454); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3906); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3995); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2455: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(2457); - if (lookahead == 'l') ADVANCE(2757); - if (lookahead == 'r') ADVANCE(2747); - if (lookahead == 'x') ADVANCE(2711); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2457); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == '_') ADVANCE(2455); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2456: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(2457); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2457); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == '_') ADVANCE(2456); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3921); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2457: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(2457); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == '_') ADVANCE(2458); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2458); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3920); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2458: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(2458); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3920); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2459: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2644); - if (lookahead == 'o') ADVANCE(2716); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == '_') ADVANCE(2459); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2460: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2644); - if (lookahead == 'o') ADVANCE(2739); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == '_') ADVANCE(2462); + if (lookahead == 'l') ADVANCE(2765); + if (lookahead == 'r') ADVANCE(2753); + if (lookahead == 'x') ADVANCE(2717); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2462); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2461: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2619); - if (lookahead == 'o') ADVANCE(2506); - if (lookahead == 'u') ADVANCE(2779); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == '_') ADVANCE(2462); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2462); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2462: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2619); - if (lookahead == 'o') ADVANCE(2509); - if (lookahead == 'u') ADVANCE(2779); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == '_') ADVANCE(2462); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2463: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2618); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'a') ADVANCE(2650); + if (lookahead == 'o') ADVANCE(2722); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2464: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2833); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'a') ADVANCE(2650); + if (lookahead == 'o') ADVANCE(2745); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2465: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2722); - if (lookahead == 'o') ADVANCE(2651); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'a') ADVANCE(2625); + if (lookahead == 'o') ADVANCE(2512); + if (lookahead == 'u') ADVANCE(2787); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2466: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2777); - if (lookahead == 'o') ADVANCE(2657); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'a') ADVANCE(2625); + if (lookahead == 'o') ADVANCE(2515); + if (lookahead == 'u') ADVANCE(2787); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2467: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2664); - if (lookahead == 'o') ADVANCE(2719); - if (lookahead == 's') ADVANCE(2581); - if (lookahead == 'x') ADVANCE(2687); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'a') ADVANCE(2624); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2468: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2621); - if (lookahead == 'e') ADVANCE(2791); - if (lookahead == 'o') ADVANCE(2519); - if (lookahead == 'u') ADVANCE(2794); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'a') ADVANCE(2841); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2469: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2623); - if (lookahead == 'e') ADVANCE(2744); - if (lookahead == 'o') ADVANCE(1820); - if (lookahead == 'r') ADVANCE(2820); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'a') ADVANCE(2728); + if (lookahead == 'o') ADVANCE(2657); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2470: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2751); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'a') ADVANCE(2757); + if (lookahead == 'i') ADVANCE(2516); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2471: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2620); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'a') ADVANCE(2785); + if (lookahead == 'o') ADVANCE(2663); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2472: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2836); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'a') ADVANCE(2670); + if (lookahead == 'o') ADVANCE(2725); + if (lookahead == 's') ADVANCE(2587); + if (lookahead == 'x') ADVANCE(2693); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2473: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2834); - if (lookahead == 'e') ADVANCE(2570); - if (lookahead == 'o') ADVANCE(2862); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'a') ADVANCE(2627); + if (lookahead == 'e') ADVANCE(2799); + if (lookahead == 'o') ADVANCE(2525); + if (lookahead == 'u') ADVANCE(2802); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2474: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'a') ADVANCE(2629); + if (lookahead == 'e') ADVANCE(2750); + if (lookahead == 'o') ADVANCE(1824); + if (lookahead == 'r') ADVANCE(2828); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2475: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2774); - if (lookahead == 'e') ADVANCE(2643); - if (lookahead == 'i') ADVANCE(2514); - if (lookahead == 't') ADVANCE(2802); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'a') ADVANCE(2626); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2476: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2765); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'a') ADVANCE(2758); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2477: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2803); - if (lookahead == 'l') ADVANCE(2812); - if (lookahead == 'o') ADVANCE(2642); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'a') ADVANCE(2844); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2478: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2746); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'a') ADVANCE(2843); + if (lookahead == 'e') ADVANCE(2576); + if (lookahead == 'o') ADVANCE(2870); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2479: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2796); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'a') ADVANCE(2759); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2480: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1886); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'a') ADVANCE(2737); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2481: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2622); - if (lookahead == 'o') ADVANCE(2519); - if (lookahead == 'u') ADVANCE(2794); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'a') ADVANCE(2782); + if (lookahead == 'e') ADVANCE(2649); + if (lookahead == 'i') ADVANCE(2520); + if (lookahead == 't') ADVANCE(2810); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2482: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2805); - if (lookahead == 'o') ADVANCE(2672); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'a') ADVANCE(2773); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2483: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2665); - if (lookahead == 'e') ADVANCE(2578); - if (lookahead == 'o') ADVANCE(2635); - if (lookahead == 'u') ADVANCE(2768); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'a') ADVANCE(2811); + if (lookahead == 'l') ADVANCE(2820); + if (lookahead == 'o') ADVANCE(2648); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2484: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2799); - if (lookahead == 'e') ADVANCE(2491); - if (lookahead == 'o') ADVANCE(2862); - if (lookahead == 'r') ADVANCE(2680); - if (lookahead == 't') ADVANCE(1816); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'a') ADVANCE(2752); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2485: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2496); - if (lookahead == 'l') ADVANCE(2767); - if (lookahead == 'n') ADVANCE(2499); - if (lookahead == 'r') ADVANCE(2750); - if (lookahead == 'x') ADVANCE(2701); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'a') ADVANCE(2803); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2486: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2666); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'a') ADVANCE(1890); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2487: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2804); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'a') ADVANCE(2628); + if (lookahead == 'o') ADVANCE(2525); + if (lookahead == 'u') ADVANCE(2802); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2488: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2647); - if (lookahead == 'o') ADVANCE(2725); - if (lookahead == 'r') ADVANCE(2682); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'a') ADVANCE(2813); + if (lookahead == 'o') ADVANCE(2678); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2489: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2517); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'a') ADVANCE(2671); + if (lookahead == 'e') ADVANCE(2584); + if (lookahead == 'o') ADVANCE(2641); + if (lookahead == 'u') ADVANCE(2776); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2490: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'a') ADVANCE(2807); + if (lookahead == 'e') ADVANCE(2497); + if (lookahead == 'o') ADVANCE(2870); + if (lookahead == 'r') ADVANCE(2686); + if (lookahead == 't') ADVANCE(1820); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2491: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'b') ADVANCE(2813); - if (lookahead == 'c') ADVANCE(2695); - if (lookahead == 'f') ADVANCE(2865); - if (lookahead == 't') ADVANCE(2540); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'a') ADVANCE(2502); + if (lookahead == 'l') ADVANCE(2775); + if (lookahead == 'n') ADVANCE(2505); + if (lookahead == 'r') ADVANCE(2756); + if (lookahead == 'x') ADVANCE(2707); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2492: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'b') ADVANCE(2614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'a') ADVANCE(2672); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2493: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(4031); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'a') ADVANCE(2812); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2494: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(2579); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'a') ADVANCE(2653); + if (lookahead == 'o') ADVANCE(2731); + if (lookahead == 'r') ADVANCE(2688); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2495: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(2580); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'a') ADVANCE(2523); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2496: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(2586); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2497: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(2588); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'b') ADVANCE(2821); + if (lookahead == 'c') ADVANCE(2701); + if (lookahead == 'f') ADVANCE(2873); + if (lookahead == 't') ADVANCE(2546); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2498: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(2684); - if (lookahead == 'e') ADVANCE(2713); - if (lookahead == 'k') ADVANCE(2615); - if (lookahead == 'o') ADVANCE(2823); - if (lookahead == 'p') ADVANCE(2645); - if (lookahead == 't') ADVANCE(2689); - if (lookahead == 'y') ADVANCE(2759); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'b') ADVANCE(2620); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2499: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(2695); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'c') ADVANCE(4045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2500: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(2528); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'c') ADVANCE(2585); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2501: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(2545); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'c') ADVANCE(2586); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2502: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(2589); - if (lookahead == 'h') ADVANCE(1850); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'c') ADVANCE(2592); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2503: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(2589); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'c') ADVANCE(2594); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2504: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(2801); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'c') ADVANCE(2690); + if (lookahead == 'e') ADVANCE(2719); + if (lookahead == 'k') ADVANCE(2621); + if (lookahead == 'o') ADVANCE(2831); + if (lookahead == 'p') ADVANCE(2651); + if (lookahead == 't') ADVANCE(2695); + if (lookahead == 'y') ADVANCE(2767); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2505: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(3774); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'c') ADVANCE(2701); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2506: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(3813); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'c') ADVANCE(2534); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2507: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(3832); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'c') ADVANCE(2551); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2508: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2755); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'c') ADVANCE(2595); + if (lookahead == 'h') ADVANCE(1854); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2509: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2822); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'c') ADVANCE(2595); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2510: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2524); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'c') ADVANCE(2809); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2511: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2487); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'd') ADVANCE(3784); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2512: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2637); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'd') ADVANCE(3827); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2513: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2600); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'd') ADVANCE(3846); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2514: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2544); - if (lookahead == 's') ADVANCE(2807); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'd') ADVANCE(2763); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2515: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2544); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'd') ADVANCE(2830); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2516: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2698); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'd') ADVANCE(2530); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2517: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2479); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'd') ADVANCE(2493); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2518: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2561); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'd') ADVANCE(2606); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2519: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2825); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'd') ADVANCE(2643); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2520: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2569); - if (lookahead == 'o') ADVANCE(3695); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'd') ADVANCE(2550); + if (lookahead == 's') ADVANCE(2815); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2521: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2572); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'd') ADVANCE(2550); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2522: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3598); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'd') ADVANCE(2704); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2523: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3706); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'd') ADVANCE(2485); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2524: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3754); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'd') ADVANCE(2568); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2525: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3686); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'd') ADVANCE(2833); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2526: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3690); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'e') ADVANCE(2575); + if (lookahead == 'o') ADVANCE(3709); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2527: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3592); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'e') ADVANCE(2578); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2528: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3743); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'e') ADVANCE(3612); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2529: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3666); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'e') ADVANCE(3720); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2530: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3931); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'e') ADVANCE(3764); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2531: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3939); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'e') ADVANCE(3700); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2532: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2570); - if (lookahead == 'o') ADVANCE(2862); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'e') ADVANCE(3704); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2533: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2433); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'e') ADVANCE(3606); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2534: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2831); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'e') ADVANCE(3757); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2535: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2835); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'e') ADVANCE(3680); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2536: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2874); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'e') ADVANCE(3945); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2537: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2778); - if (lookahead == 'o') ADVANCE(2678); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'e') ADVANCE(3953); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2538: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2463); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'e') ADVANCE(2576); + if (lookahead == 'o') ADVANCE(2870); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2539: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2880); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'e') ADVANCE(2437); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2540: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2504); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'e') ADVANCE(2839); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2541: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2729); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'e') ADVANCE(2842); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2542: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2471); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'e') ADVANCE(2882); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2543: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2493); - if (lookahead == 'o') ADVANCE(2823); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'e') ADVANCE(2786); + if (lookahead == 'o') ADVANCE(2684); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2544: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2059); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'e') ADVANCE(2467); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2545: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2063); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'e') ADVANCE(2888); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2546: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2727); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'e') ADVANCE(2510); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2547: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2869); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'e') ADVANCE(2735); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2548: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2870); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'e') ADVANCE(2475); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2549: 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(2860); + if (lookahead == 'e') ADVANCE(2499); + if (lookahead == 'o') ADVANCE(2831); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2550: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2735); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'e') ADVANCE(2063); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2551: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2872); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'e') ADVANCE(2067); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2552: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2721); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'e') ADVANCE(2733); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2553: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2882); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'e') ADVANCE(2877); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2554: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2726); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'e') ADVANCE(2878); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2555: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2884); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'e') ADVANCE(1840); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2556: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1856); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'e') ADVANCE(2741); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2557: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2733); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'e') ADVANCE(2880); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2558: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2887); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'e') ADVANCE(2779); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2559: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2738); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'e') ADVANCE(2727); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2560: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1870); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'e') ADVANCE(2890); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2561: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1876); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'e') ADVANCE(2732); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2562: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1898); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'e') ADVANCE(2892); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2563: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1902); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'e') ADVANCE(1860); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2564: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1888); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'e') ADVANCE(2739); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2565: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2734); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'e') ADVANCE(2895); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2566: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2771); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'e') ADVANCE(2744); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2567: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2788); - if (lookahead == 'o') ADVANCE(2681); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'e') ADVANCE(1874); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2568: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2578); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'e') ADVANCE(1880); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2569: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'f') ADVANCE(3579); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'e') ADVANCE(1902); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2570: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'f') ADVANCE(2865); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'e') ADVANCE(1906); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2571: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'f') ADVANCE(2609); - if (lookahead == 's') ADVANCE(2797); - if (lookahead == 't') ADVANCE(2616); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'e') ADVANCE(1892); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2572: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'g') ADVANCE(2597); - if (lookahead == 't') ADVANCE(2817); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'e') ADVANCE(2740); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2573: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'g') ADVANCE(2693); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'e') ADVANCE(2796); + if (lookahead == 'o') ADVANCE(2687); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2574: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'g') ADVANCE(2610); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'e') ADVANCE(2584); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2575: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'g') ADVANCE(1892); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'f') ADVANCE(3593); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2576: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'g') ADVANCE(1874); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'f') ADVANCE(2873); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2577: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'g') ADVANCE(2773); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'f') ADVANCE(2614); + if (lookahead == 's') ADVANCE(2805); + if (lookahead == 't') ADVANCE(2622); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2578: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'g') ADVANCE(2617); - if (lookahead == 't') ADVANCE(2824); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'g') ADVANCE(2605); + if (lookahead == 't') ADVANCE(2825); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2579: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(3735); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'g') ADVANCE(2699); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2580: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(3711); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'g') ADVANCE(2615); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2581: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(2624); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'g') ADVANCE(1896); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2582: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(3784); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'g') ADVANCE(1878); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2583: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(3782); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'g') ADVANCE(2781); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2584: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1818); - if (lookahead == 'i') ADVANCE(2787); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'g') ADVANCE(2623); + if (lookahead == 't') ADVANCE(2832); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2585: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(2598); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'h') ADVANCE(3749); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2586: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1894); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'h') ADVANCE(3725); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2587: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1842); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'h') ADVANCE(2632); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2588: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(2877); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'h') ADVANCE(3798); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2589: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(2881); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'h') ADVANCE(3796); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2590: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1852); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'h') ADVANCE(2604); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2591: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(2613); - if (lookahead == 'k') ADVANCE(4031); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'h') ADVANCE(1822); + if (lookahead == 'i') ADVANCE(2795); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2592: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(2613); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'h') ADVANCE(1898); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2593: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2784); - if (lookahead == 'r') ADVANCE(2538); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'h') ADVANCE(1846); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2594: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2470); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'h') ADVANCE(2885); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2595: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2510); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'h') ADVANCE(2889); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2596: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2662); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'h') ADVANCE(1856); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2597: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2761); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'h') ADVANCE(2479); + if (lookahead == 'i') ADVANCE(2665); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2598: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2634); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'h') ADVANCE(2619); + if (lookahead == 'k') ADVANCE(4045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2599: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2659); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'h') ADVANCE(2619); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2600: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2663); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'i') ADVANCE(2792); + if (lookahead == 'r') ADVANCE(2544); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2601: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1832); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'i') ADVANCE(2476); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2602: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2674); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'i') ADVANCE(2516); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2603: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2789); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'i') ADVANCE(2668); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2604: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2790); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'i') ADVANCE(2640); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2605: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2795); - if (lookahead == 'r') ADVANCE(2542); - if (lookahead == 'y') ADVANCE(2798); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'i') ADVANCE(2770); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2606: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2534); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'i') ADVANCE(2669); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2607: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2800); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'i') ADVANCE(1836); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2608: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2476); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'i') ADVANCE(2680); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2609: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2576); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'i') ADVANCE(2797); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2610: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2671); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'i') ADVANCE(2798); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2611: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2515); - if (lookahead == 'r') ADVANCE(4031); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'i') ADVANCE(2804); + if (lookahead == 'r') ADVANCE(2548); + if (lookahead == 'y') ADVANCE(2806); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2612: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2515); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'i') ADVANCE(2540); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2613: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2639); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'i') ADVANCE(2808); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2614: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2667); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'i') ADVANCE(2582); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2615: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2708); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'i') ADVANCE(2677); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2616: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2673); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'i') ADVANCE(2482); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2617: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2776); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'i') ADVANCE(2521); + if (lookahead == 'r') ADVANCE(4045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2618: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'k') ADVANCE(3662); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'i') ADVANCE(2521); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2619: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'k') ADVANCE(2525); - if (lookahead == 't') ADVANCE(2495); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'i') ADVANCE(2645); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2620: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'k') ADVANCE(2876); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'i') ADVANCE(2673); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2621: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'k') ADVANCE(2551); - if (lookahead == 't') ADVANCE(2502); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'i') ADVANCE(2714); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2622: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'k') ADVANCE(2551); - if (lookahead == 't') ADVANCE(2503); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'i') ADVANCE(2679); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2623: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'k') ADVANCE(2556); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'i') ADVANCE(2784); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2624: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(3828); - if (lookahead == 'r') ADVANCE(3830); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'k') ADVANCE(3676); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2625: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(3922); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'k') ADVANCE(2531); + if (lookahead == 't') ADVANCE(2501); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2626: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2873); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'k') ADVANCE(2884); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2627: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2594); - if (lookahead == 'n') ADVANCE(2505); - if (lookahead == 's') ADVANCE(3767); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'k') ADVANCE(2557); + if (lookahead == 't') ADVANCE(2508); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2628: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2594); - if (lookahead == 's') ADVANCE(3767); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'k') ADVANCE(2557); + if (lookahead == 't') ADVANCE(2509); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2629: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2626); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'k') ADVANCE(2563); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2630: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2464); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'l') ADVANCE(2601); + if (lookahead == 'n') ADVANCE(2511); + if (lookahead == 's') ADVANCE(3777); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2631: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1830); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'l') ADVANCE(2601); + if (lookahead == 's') ADVANCE(3777); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2632: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2472); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'l') ADVANCE(3842); + if (lookahead == 'r') ADVANCE(3844); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2633: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2625); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'l') ADVANCE(3936); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2634: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2526); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'l') ADVANCE(2881); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2635: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2638); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'l') ADVANCE(2634); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2636: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2527); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'l') ADVANCE(2468); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2637: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2602); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'l') ADVANCE(1834); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2638: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1854); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'l') ADVANCE(2477); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2639: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2553); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'l') ADVANCE(2633); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2640: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2555); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'l') ADVANCE(2532); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2641: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2757); - if (lookahead == 'r') ADVANCE(2747); - if (lookahead == 'x') ADVANCE(2711); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'l') ADVANCE(2644); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2642: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2478); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'l') ADVANCE(2533); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2643: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2706); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'l') ADVANCE(2608); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2644: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2763); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'l') ADVANCE(1858); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2645: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2607); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'l') ADVANCE(2560); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2646: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2767); - if (lookahead == 'r') ADVANCE(2750); - if (lookahead == 'x') ADVANCE(2712); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'l') ADVANCE(2562); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2647: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2770); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'l') ADVANCE(2765); + if (lookahead == 'r') ADVANCE(2753); + if (lookahead == 'x') ADVANCE(2717); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2648: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2692); - if (lookahead == 'o') ADVANCE(2748); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'l') ADVANCE(2484); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2649: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2608); - if (lookahead == 'n') ADVANCE(2762); - if (lookahead == 's') ADVANCE(2861); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'l') ADVANCE(2712); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2650: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2608); - if (lookahead == 's') ADVANCE(2861); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'l') ADVANCE(2771); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2651: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'm') ADVANCE(2653); - if (lookahead == 'n') ADVANCE(2571); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'l') ADVANCE(2613); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2652: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'm') ADVANCE(2958); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2962); + if (lookahead == 'l') ADVANCE(2775); + if (lookahead == 'r') ADVANCE(2756); + if (lookahead == 'x') ADVANCE(2718); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2653: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'm') ADVANCE(2486); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'l') ADVANCE(2778); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2654: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'm') ADVANCE(1840); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'l') ADVANCE(2698); + if (lookahead == 'o') ADVANCE(2754); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2655: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'm') ADVANCE(1860); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'l') ADVANCE(2616); + if (lookahead == 'n') ADVANCE(2769); + if (lookahead == 's') ADVANCE(2869); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2656: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'm') ADVANCE(1882); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'l') ADVANCE(2616); + if (lookahead == 's') ADVANCE(2869); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2657: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2758); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'm') ADVANCE(2659); + if (lookahead == 'n') ADVANCE(2577); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2658: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(3587); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'm') ADVANCE(2966); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2970); END_STATE(); case 2659: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(3780); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'm') ADVANCE(2492); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2660: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(3739); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'm') ADVANCE(1844); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2661: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(4031); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'm') ADVANCE(1864); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2662: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2819); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'm') ADVANCE(1886); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2663: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2577); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'n') ADVANCE(2766); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2664: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2507); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'n') ADVANCE(3601); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2665: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2516); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'n') ADVANCE(3790); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2666: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2512); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'n') ADVANCE(3753); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2667: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2513); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'n') ADVANCE(4045); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2668: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1848); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'n') ADVANCE(2827); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2669: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2883); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'n') ADVANCE(2583); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2670: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2885); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'n') ADVANCE(2513); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2671: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1878); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'n') ADVANCE(2522); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2672: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2769); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'n') ADVANCE(2519); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2673: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2821); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'n') ADVANCE(2518); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2674: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2564); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'n') ADVANCE(1852); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2675: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2814); - if (lookahead == 't') ADVANCE(2474); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'n') ADVANCE(2891); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2676: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2814); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'n') ADVANCE(2893); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2677: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2432); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'n') ADVANCE(1882); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2678: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2700); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'n') ADVANCE(2777); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2679: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2818); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'n') ADVANCE(2829); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2680: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2705); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'n') ADVANCE(2571); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2681: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2704); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'o') ADVANCE(2822); + if (lookahead == 't') ADVANCE(2480); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2682: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2654); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'o') ADVANCE(2822); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2683: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2717); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'o') ADVANCE(2436); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2684: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2709); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'o') ADVANCE(2706); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2685: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2668); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'o') ADVANCE(2826); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2686: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2718); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'o') ADVANCE(2711); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2687: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2720); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'o') ADVANCE(2710); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2688: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2783); - if (lookahead == 'u') ADVANCE(2633); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2847); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'o') ADVANCE(2660); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2689: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2737); - if (lookahead == 'r') ADVANCE(1826); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'o') ADVANCE(2723); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2690: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2736); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'o') ADVANCE(2715); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2691: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2748); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'o') ADVANCE(2674); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2692: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2749); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'o') ADVANCE(2724); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2693: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'o') ADVANCE(2726); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2694: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2785); - if (lookahead == 'u') ADVANCE(2629); + if (lookahead == 'o') ADVANCE(2791); + if (lookahead == 'u') ADVANCE(2639); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2847); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + lookahead == 'a') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2695: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2518); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'o') ADVANCE(2743); + if (lookahead == 'r') ADVANCE(1830); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2696: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2732); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'o') ADVANCE(2742); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2697: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2743); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'o') ADVANCE(2754); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2698: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2656); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'o') ADVANCE(2755); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2699: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2823); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'o') ADVANCE(1870); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2700: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(3681); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'o') ADVANCE(2793); + if (lookahead == 'u') ADVANCE(2635); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2701: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(2648); - if (lookahead == 't') ADVANCE(2557); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'o') ADVANCE(2524); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2702: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(3017); - if (lookahead == 't') ADVANCE(3013); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3020); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3029); + if (lookahead == 'o') ADVANCE(2738); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2703: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(2511); - if (lookahead == 'r') ADVANCE(2631); - if (lookahead == 's') ADVANCE(2547); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'o') ADVANCE(2749); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2704: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(2871); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'o') ADVANCE(2662); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2705: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(1838); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'o') ADVANCE(2831); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2706: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(1844); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'p') ADVANCE(3695); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2707: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(1846); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'p') ADVANCE(2654); + if (lookahead == 't') ADVANCE(2564); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2708: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(1856); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'p') ADVANCE(3025); + if (lookahead == 't') ADVANCE(3021); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3028); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2709: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(2560); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'p') ADVANCE(2517); + if (lookahead == 'r') ADVANCE(2637); + if (lookahead == 's') ADVANCE(2553); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2710: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'p') ADVANCE(2879); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2711: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(2696); - if (lookahead == 't') ADVANCE(2546); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'p') ADVANCE(1842); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2712: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(2691); - if (lookahead == 't') ADVANCE(2557); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'p') ADVANCE(1848); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2713: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'q') ADVANCE(1824); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'p') ADVANCE(1850); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2714: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2815); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'p') ADVANCE(1860); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2715: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1907); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'p') ADVANCE(2567); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2716: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(3670); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'p') ADVANCE(1888); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2717: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(3776); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'p') ADVANCE(2702); + if (lookahead == 't') ADVANCE(2552); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2718: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(3618); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'p') ADVANCE(2697); + if (lookahead == 't') ADVANCE(2564); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2719: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(3836); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'q') ADVANCE(1828); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2720: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(3834); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'r') ADVANCE(2823); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2721: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(3750); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'r') ADVANCE(1911); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2722: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2573); - if (lookahead == 't') ADVANCE(2497); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'r') ADVANCE(3684); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2723: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2538); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'r') ADVANCE(3786); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2724: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2500); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'r') ADVANCE(3632); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2725: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2652); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'r') ADVANCE(3850); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2726: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2837); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'r') ADVANCE(3848); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2727: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'r') ADVANCE(4115); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2728: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2435); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'r') ADVANCE(2579); + if (lookahead == 't') ADVANCE(2503); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2729: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2630); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'r') ADVANCE(2544); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2730: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2660); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'r') ADVANCE(2506); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2731: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2809); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'r') ADVANCE(2658); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2732: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2782); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'r') ADVANCE(2845); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2733: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2669); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'r') ADVANCE(2664); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2734: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2632); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'r') ADVANCE(2439); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2735: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2728); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'r') ADVANCE(2636); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2736: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2879); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'r') ADVANCE(2666); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2737: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1858); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'r') ADVANCE(2817); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2738: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2888); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'r') ADVANCE(2790); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2739: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'r') ADVANCE(2675); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2740: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2542); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'r') ADVANCE(2638); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2741: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2816); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'r') ADVANCE(2734); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2742: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2501); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'r') ADVANCE(2887); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2743: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2838); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'r') ADVANCE(1862); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2744: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2655); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'r') ADVANCE(2896); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2745: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2670); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'r') ADVANCE(2874); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2746: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2772); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'r') ADVANCE(2548); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2747: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2686); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'r') ADVANCE(2824); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2748: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2792); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'r') ADVANCE(2507); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2749: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2563); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'r') ADVANCE(2846); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2750: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2690); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'r') ADVANCE(2661); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2751: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1790); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'r') ADVANCE(2676); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2752: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(4031); - if (lookahead == 'u') ADVANCE(2629); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2849); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'r') ADVANCE(2780); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2753: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(4031); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'r') ADVANCE(2692); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2754: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(4033); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'r') ADVANCE(2800); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2755: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2053); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'r') ADVANCE(2570); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2756: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2522); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'r') ADVANCE(2696); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2757: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2523); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 's') ADVANCE(3792); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2758: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2781); - if (lookahead == 't') ADVANCE(2596); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 's') ADVANCE(1794); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2759: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1828); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 's') ADVANCE(3794); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2760: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2685); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 's') ADVANCE(4045); + if (lookahead == 'u') ADVANCE(2635); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2857); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2761: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2806); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 's') ADVANCE(4045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2762: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2601); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 's') ADVANCE(4047); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2763: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2539); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 's') ADVANCE(2058); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2764: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1834); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 's') ADVANCE(2528); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2765: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2875); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 's') ADVANCE(2529); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2766: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2547); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 's') ADVANCE(2789); + if (lookahead == 't') ADVANCE(2603); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2767: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2548); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 's') ADVANCE(1832); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2768: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2793); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 's') ADVANCE(2691); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2769: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2797); - if (lookahead == 't') ADVANCE(2616); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 's') ADVANCE(2607); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2770: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2531); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 's') ADVANCE(2814); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2771: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1864); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 's') ADVANCE(2545); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2772: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1880); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 's') ADVANCE(1838); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2773: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1890); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 's') ADVANCE(2883); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2774: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2587); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 's') ADVANCE(2553); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2775: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2064); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 's') ADVANCE(2554); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2776: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2808); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 's') ADVANCE(2801); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2777: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2494); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 's') ADVANCE(2805); + if (lookahead == 't') ADVANCE(2622); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2778: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1797); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 's') ADVANCE(2537); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2779: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1804); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 's') ADVANCE(1868); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2780: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1911); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 's') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2781: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1809); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 's') ADVANCE(1894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2782: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1785); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 's') ADVANCE(2593); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2783: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2851); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 's') ADVANCE(2068); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2784: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2052); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 's') ADVANCE(2816); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2785: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2054); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 't') ADVANCE(2500); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2786: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2434); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 't') ADVANCE(1801); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2787: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1822); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 't') ADVANCE(1808); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2788: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2057); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 't') ADVANCE(1915); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2789: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2582); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 't') ADVANCE(1813); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2790: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2583); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 't') ADVANCE(1789); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2791: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2489); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 't') ADVANCE(2859); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2792: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2061); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 't') ADVANCE(2056); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2793: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2826); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 't') ADVANCE(2057); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2794: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2867); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 't') ADVANCE(2438); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2795: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2764); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 't') ADVANCE(1826); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2796: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2480); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 't') ADVANCE(2061); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2797: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2878); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 't') ADVANCE(2588); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2798: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2566); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 't') ADVANCE(2589); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2799: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2549); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 't') ADVANCE(2495); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2800: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1872); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 't') ADVANCE(2065); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2801: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1900); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 't') ADVANCE(2834); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2802: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2707); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 't') ADVANCE(2875); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2803: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2590); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 't') ADVANCE(2486); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2804: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2562); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 't') ADVANCE(2772); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2805: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2497); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 't') ADVANCE(2886); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2806: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2552); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 't') ADVANCE(2558); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2807: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2697); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 't') ADVANCE(2555); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2808: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2559); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 't') ADVANCE(1876); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2809: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2775); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 't') ADVANCE(1904); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2810: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2629); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2847); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 't') ADVANCE(2713); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2811: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2629); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2849); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 't') ADVANCE(2596); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2812: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2574); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 't') ADVANCE(2569); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2813: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2575); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 't') ADVANCE(2503); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2814: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2724); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 't') ADVANCE(2559); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2815: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2536); - if (lookahead == 'y') ADVANCE(3730); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 't') ADVANCE(2703); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2816: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2536); - if (lookahead == 'y') ADVANCE(2868); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 't') ADVANCE(2566); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2817: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2730); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 't') ADVANCE(2783); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2818: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2786); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'u') ADVANCE(2635); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2819: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'u') ADVANCE(2635); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2857); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2820: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2530); - if (lookahead == 'y') ADVANCE(2868); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'u') ADVANCE(2580); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2821: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2558); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'u') ADVANCE(2581); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2822: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2636); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'u') ADVANCE(2730); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2823: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2742); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'u') ADVANCE(2542); + if (lookahead == 'y') ADVANCE(3744); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2824: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2745); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'u') ADVANCE(2542); + if (lookahead == 'y') ADVANCE(2876); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2825: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2640); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'u') ADVANCE(2736); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2826: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2710); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'u') ADVANCE(2794); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2827: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2554); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'u') ADVANCE(2535); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2828: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'v') ADVANCE(2541); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'u') ADVANCE(2536); + if (lookahead == 'y') ADVANCE(2876); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2829: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'v') ADVANCE(2565); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'u') ADVANCE(2565); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2830: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'w') ADVANCE(2603); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'u') ADVANCE(2642); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2831: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'w') ADVANCE(1862); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'u') ADVANCE(2748); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2832: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'w') ADVANCE(2604); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'u') ADVANCE(2751); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2833: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(3762); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'u') ADVANCE(2646); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2834: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(4031); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'u') ADVANCE(2716); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2835: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(2492); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'u') ADVANCE(2561); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2836: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(2886); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'v') ADVANCE(2547); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2837: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(1868); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'v') ADVANCE(2572); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2838: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(1896); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'w') ADVANCE(2609); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2839: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2847); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'w') ADVANCE(1866); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2840: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2849); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'w') ADVANCE(2610); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2841: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'y') ADVANCE(3772); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2842: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4000); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'y') ADVANCE(2498); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2843: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3020); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3029); + if (lookahead == 'y') ADVANCE(4045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2844: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2845); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'y') ADVANCE(2894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2845: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3063); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3069); + if (lookahead == 'y') ADVANCE(1872); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2846: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2842); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'y') ADVANCE(1900); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2847: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4018); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2848: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2844); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2857); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2849: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2864); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2850: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(3995); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4014); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2851: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3801); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3028); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2852: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3996); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2853); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2853: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2055); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3071); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3077); END_STATE(); case 2854: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4058); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2850); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2855: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2074); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4032); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2856: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2853); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2852); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2857: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2854); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2872); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2858: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2855); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(4009); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2859: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3994); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3815); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2860: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2860); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(4010); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2861: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3001); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2059); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2862: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2974); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4072); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2863: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2977); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2078); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2864: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3082); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2861); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2865: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2862); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2866: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2962); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2863); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2867: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2920); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4008); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2868: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2983); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2868); END_STATE(); case 2869: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2897); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3009); END_STATE(); case 2870: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2980); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2982); END_STATE(); case 2871: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2965); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2985); END_STATE(); case 2872: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3032); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3090); END_STATE(); case 2873: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3054); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2899); END_STATE(); case 2874: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3048); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2970); END_STATE(); case 2875: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2928); END_STATE(); case 2876: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2992); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2991); END_STATE(); case 2877: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2986); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2905); END_STATE(); case 2878: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2923); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2988); END_STATE(); case 2879: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2971); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2973); END_STATE(); case 2880: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3051); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3040); END_STATE(); case 2881: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2989); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3062); END_STATE(); case 2882: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2968); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3056); END_STATE(); case 2883: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); @@ -43208,8670 +43271,8753 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 2884: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2905); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3000); END_STATE(); case 2885: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2998); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2994); END_STATE(); case 2886: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2950); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2887: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2995); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2979); END_STATE(); case 2888: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2953); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3059); END_STATE(); case 2889: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == ',') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2889); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2997); END_STATE(); case 2890: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2890); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2976); END_STATE(); case 2891: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2910); END_STATE(); case 2892: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if (lookahead == ',') ADVANCE(2894); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2913); END_STATE(); case 2893: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2894); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2893); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3006); END_STATE(); case 2894: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2894); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2958); END_STATE(); case 2895: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); - if (lookahead == ',') ADVANCE(2897); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2895); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3003); END_STATE(); case 2896: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2897); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2896); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2961); END_STATE(); case 2897: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (lookahead == ',') ADVANCE(2899); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2897); END_STATE(); case 2898: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); - if (lookahead == ',') ADVANCE(2899); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2898); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2899); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2898); END_STATE(); case 2899: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2899); END_STATE(); case 2900: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if (lookahead == ',') ADVANCE(2902); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2900); END_STATE(); case 2901: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(2902); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2901); END_STATE(); case 2902: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2902); END_STATE(); case 2903: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token7); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); if (lookahead == ',') ADVANCE(2905); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2903); END_STATE(); case 2904: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token7); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(2905); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2904); END_STATE(); case 2905: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token7); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2905); END_STATE(); case 2906: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == ',') ADVANCE(2917); - if (lookahead == 'e') ADVANCE(2907); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2909); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); + if (lookahead == ',') ADVANCE(2907); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2906); END_STATE(); case 2907: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == ',') ADVANCE(2917); - if (lookahead == 'n') ADVANCE(2908); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2909); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2907); END_STATE(); case 2908: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == ',') ADVANCE(2917); - if (lookahead == 'v') ADVANCE(1799); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2909); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (lookahead == ',') ADVANCE(2910); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2908); END_STATE(); case 2909: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == ',') ADVANCE(2917); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2909); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2910); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2909); END_STATE(); case 2910: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'e') ADVANCE(2912); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2917); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2910); END_STATE(); case 2911: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'e') ADVANCE(2913); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2917); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token7); + if (lookahead == ',') ADVANCE(2913); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2911); END_STATE(); case 2912: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'n') ADVANCE(2915); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2917); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token7); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2913); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2912); END_STATE(); case 2913: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'n') ADVANCE(2914); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2917); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token7); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2913); END_STATE(); case 2914: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'v') ADVANCE(2917); + if (lookahead == ',') ADVANCE(2925); + if (lookahead == 'e') ADVANCE(2915); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2917); END_STATE(); case 2915: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'v') ADVANCE(1800); + if (lookahead == ',') ADVANCE(2925); + if (lookahead == 'n') ADVANCE(2916); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2917); END_STATE(); case 2916: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2917); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2916); + if (lookahead == ',') ADVANCE(2925); + if (lookahead == 'v') ADVANCE(1803); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2917); END_STATE(); case 2917: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); + if (lookahead == ',') ADVANCE(2925); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2917); END_STATE(); case 2918: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); - if (lookahead == ',') ADVANCE(2920); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2918); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); + if (lookahead == 'e') ADVANCE(2920); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2925); END_STATE(); case 2919: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2920); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2919); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); + if (lookahead == 'e') ADVANCE(2921); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2925); END_STATE(); case 2920: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2920); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); + if (lookahead == 'n') ADVANCE(2923); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2925); END_STATE(); case 2921: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); - if (lookahead == ',') ADVANCE(2923); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2921); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); + if (lookahead == 'n') ADVANCE(2922); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2925); END_STATE(); case 2922: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2923); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2922); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); + if (lookahead == 'v') ADVANCE(2925); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2925); END_STATE(); case 2923: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2923); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); + if (lookahead == 'v') ADVANCE(1804); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2925); END_STATE(); case 2924: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(2935); - if (lookahead == 'e') ADVANCE(2925); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2927); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2925); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2924); END_STATE(); case 2925: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(2935); - if (lookahead == 'n') ADVANCE(2926); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2927); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2925); END_STATE(); case 2926: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(2935); - if (lookahead == 'v') ADVANCE(3757); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2927); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); + if (lookahead == ',') ADVANCE(2928); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2926); END_STATE(); case 2927: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(2935); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2927); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2928); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2927); END_STATE(); case 2928: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'e') ADVANCE(2930); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2935); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2928); END_STATE(); case 2929: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'e') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2935); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); + if (lookahead == ',') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2929); END_STATE(); case 2930: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'n') ADVANCE(2933); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2935); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2930); END_STATE(); case 2931: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'n') ADVANCE(2932); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2935); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2932: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'v') ADVANCE(2935); + if (lookahead == ',') ADVANCE(2943); + if (lookahead == 'e') ADVANCE(2933); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2935); END_STATE(); case 2933: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'v') ADVANCE(3758); + if (lookahead == ',') ADVANCE(2943); + if (lookahead == 'n') ADVANCE(2934); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2935); END_STATE(); case 2934: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2935); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2934); + if (lookahead == ',') ADVANCE(2943); + if (lookahead == 'v') ADVANCE(3767); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2935); END_STATE(); case 2935: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); + if (lookahead == ',') ADVANCE(2943); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2935); END_STATE(); case 2936: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(2947); - if (lookahead == 'e') ADVANCE(2937); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2939); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); + if (lookahead == 'e') ADVANCE(2938); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2943); END_STATE(); case 2937: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(2947); - if (lookahead == 'n') ADVANCE(2938); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2939); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); + if (lookahead == 'e') ADVANCE(2939); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2943); END_STATE(); case 2938: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(2947); - if (lookahead == 'v') ADVANCE(3745); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2939); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); + if (lookahead == 'n') ADVANCE(2941); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2943); END_STATE(); case 2939: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(2947); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2939); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); + if (lookahead == 'n') ADVANCE(2940); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2943); END_STATE(); case 2940: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'e') ADVANCE(2942); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2947); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); + if (lookahead == 'v') ADVANCE(2943); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2943); END_STATE(); case 2941: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'e') ADVANCE(2943); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2947); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); + if (lookahead == 'v') ADVANCE(3768); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2943); END_STATE(); case 2942: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'n') ADVANCE(2945); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2947); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2943); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2942); END_STATE(); case 2943: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'n') ADVANCE(2944); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2947); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2943); END_STATE(); case 2944: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'v') ADVANCE(2947); + if (lookahead == ',') ADVANCE(2955); + if (lookahead == 'e') ADVANCE(2945); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2947); END_STATE(); case 2945: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'v') ADVANCE(3746); + if (lookahead == ',') ADVANCE(2955); + if (lookahead == 'n') ADVANCE(2946); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2947); END_STATE(); case 2946: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2947); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2946); + if (lookahead == ',') ADVANCE(2955); + if (lookahead == 'v') ADVANCE(3759); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2947); END_STATE(); case 2947: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); + if (lookahead == ',') ADVANCE(2955); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2947); END_STATE(); case 2948: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token16); - if (lookahead == ',') ADVANCE(2950); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2948); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); + if (lookahead == 'e') ADVANCE(2950); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2955); END_STATE(); case 2949: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); + if (lookahead == 'e') ADVANCE(2951); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2955); + END_STATE(); + case 2950: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); + if (lookahead == 'n') ADVANCE(2953); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2955); + END_STATE(); + case 2951: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); + if (lookahead == 'n') ADVANCE(2952); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2955); + END_STATE(); + case 2952: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); + if (lookahead == 'v') ADVANCE(2955); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2955); + END_STATE(); + case 2953: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); + if (lookahead == 'v') ADVANCE(3760); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2955); + END_STATE(); + case 2954: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2955); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2954); + END_STATE(); + case 2955: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2955); + END_STATE(); + case 2956: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token16); + if (lookahead == ',') ADVANCE(2958); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2956); + END_STATE(); + case 2957: ACCEPT_TOKEN(aux_sym_cmd_identifier_token16); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2950); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2949); + lookahead == '@') ADVANCE(2958); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2957); END_STATE(); - case 2950: + case 2958: ACCEPT_TOKEN(aux_sym_cmd_identifier_token16); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2950); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2958); END_STATE(); - case 2951: + case 2959: ACCEPT_TOKEN(aux_sym_cmd_identifier_token17); - if (lookahead == ',') ADVANCE(2953); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2951); + if (lookahead == ',') ADVANCE(2961); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2959); END_STATE(); - case 2952: + case 2960: ACCEPT_TOKEN(aux_sym_cmd_identifier_token17); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2953); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2952); + lookahead == '@') ADVANCE(2961); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2960); END_STATE(); - case 2953: + case 2961: ACCEPT_TOKEN(aux_sym_cmd_identifier_token17); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2953); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2961); END_STATE(); - case 2954: + case 2962: ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if (lookahead == ' ') ADVANCE(708); + if (lookahead == ' ') ADVANCE(711); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2962); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2961); + lookahead == '@') ADVANCE(2970); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2969); END_STATE(); - case 2955: + case 2963: ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if (lookahead == ' ') ADVANCE(708); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2962); + if (lookahead == ' ') ADVANCE(711); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2970); END_STATE(); - case 2956: + case 2964: ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if (lookahead == ',') ADVANCE(2962); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2956); + if (lookahead == ',') ADVANCE(2970); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2964); END_STATE(); - case 2957: + case 2965: ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if (lookahead == 'a') ADVANCE(2959); + if (lookahead == 'a') ADVANCE(2967); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2962); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2961); + lookahead == '@') ADVANCE(2970); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2969); END_STATE(); - case 2958: + case 2966: ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if (lookahead == 'a') ADVANCE(2960); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2962); + if (lookahead == 'a') ADVANCE(2968); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2970); END_STATE(); - case 2959: + case 2967: ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if (lookahead == 't') ADVANCE(2954); + if (lookahead == 't') ADVANCE(2962); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2962); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2961); + lookahead == '@') ADVANCE(2970); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2969); END_STATE(); - case 2960: + case 2968: ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if (lookahead == 't') ADVANCE(2955); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2962); + if (lookahead == 't') ADVANCE(2963); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2970); END_STATE(); - case 2961: + case 2969: ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2962); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2961); + lookahead == '@') ADVANCE(2970); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2969); END_STATE(); - case 2962: + case 2970: ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2962); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2970); END_STATE(); - case 2963: + case 2971: ACCEPT_TOKEN(aux_sym_cmd_identifier_token19); - if (lookahead == ',') ADVANCE(2965); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2963); + if (lookahead == ',') ADVANCE(2973); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2971); END_STATE(); - case 2964: + case 2972: ACCEPT_TOKEN(aux_sym_cmd_identifier_token19); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2965); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2964); + lookahead == '@') ADVANCE(2973); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2972); END_STATE(); - case 2965: + case 2973: ACCEPT_TOKEN(aux_sym_cmd_identifier_token19); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2965); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2973); END_STATE(); - case 2966: + case 2974: ACCEPT_TOKEN(aux_sym_cmd_identifier_token20); - if (lookahead == ',') ADVANCE(2968); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2966); + if (lookahead == ',') ADVANCE(2976); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2974); END_STATE(); - case 2967: + case 2975: ACCEPT_TOKEN(aux_sym_cmd_identifier_token20); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2968); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2967); + lookahead == '@') ADVANCE(2976); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2975); END_STATE(); - case 2968: + case 2976: ACCEPT_TOKEN(aux_sym_cmd_identifier_token20); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2968); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2976); END_STATE(); - case 2969: + case 2977: ACCEPT_TOKEN(aux_sym_cmd_identifier_token21); - if (lookahead == ',') ADVANCE(2971); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2969); + if (lookahead == ',') ADVANCE(2979); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2977); END_STATE(); - case 2970: + case 2978: ACCEPT_TOKEN(aux_sym_cmd_identifier_token21); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2971); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2970); + lookahead == '@') ADVANCE(2979); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2978); END_STATE(); - case 2971: + case 2979: ACCEPT_TOKEN(aux_sym_cmd_identifier_token21); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2971); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2979); END_STATE(); - case 2972: + case 2980: ACCEPT_TOKEN(aux_sym_cmd_identifier_token22); - if (lookahead == ',') ADVANCE(2974); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2972); + if (lookahead == ',') ADVANCE(2982); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2980); END_STATE(); - case 2973: + case 2981: ACCEPT_TOKEN(aux_sym_cmd_identifier_token22); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2974); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2973); + lookahead == '@') ADVANCE(2982); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2981); END_STATE(); - case 2974: + case 2982: ACCEPT_TOKEN(aux_sym_cmd_identifier_token22); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2974); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2982); END_STATE(); - case 2975: + case 2983: ACCEPT_TOKEN(aux_sym_cmd_identifier_token23); - if (lookahead == ',') ADVANCE(2977); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2975); + if (lookahead == ',') ADVANCE(2985); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2983); END_STATE(); - case 2976: + case 2984: ACCEPT_TOKEN(aux_sym_cmd_identifier_token23); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2977); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2976); + lookahead == '@') ADVANCE(2985); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2984); END_STATE(); - case 2977: + case 2985: ACCEPT_TOKEN(aux_sym_cmd_identifier_token23); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2977); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2985); END_STATE(); - case 2978: + case 2986: ACCEPT_TOKEN(aux_sym_cmd_identifier_token24); - if (lookahead == ',') ADVANCE(2980); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2978); + if (lookahead == ',') ADVANCE(2988); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2986); END_STATE(); - case 2979: + case 2987: ACCEPT_TOKEN(aux_sym_cmd_identifier_token24); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2980); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2979); + lookahead == '@') ADVANCE(2988); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2987); END_STATE(); - case 2980: + case 2988: ACCEPT_TOKEN(aux_sym_cmd_identifier_token24); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2980); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2988); END_STATE(); - case 2981: + case 2989: ACCEPT_TOKEN(aux_sym_cmd_identifier_token25); - if (lookahead == ',') ADVANCE(2983); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2981); + if (lookahead == ',') ADVANCE(2991); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2989); END_STATE(); - case 2982: + case 2990: ACCEPT_TOKEN(aux_sym_cmd_identifier_token25); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2983); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2982); + lookahead == '@') ADVANCE(2991); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2990); END_STATE(); - case 2983: + case 2991: ACCEPT_TOKEN(aux_sym_cmd_identifier_token25); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2983); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2991); END_STATE(); - case 2984: + case 2992: ACCEPT_TOKEN(aux_sym_cmd_identifier_token26); - if (lookahead == ',') ADVANCE(2986); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2984); + if (lookahead == ',') ADVANCE(2994); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2992); END_STATE(); - case 2985: + case 2993: ACCEPT_TOKEN(aux_sym_cmd_identifier_token26); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2986); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2985); + lookahead == '@') ADVANCE(2994); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2993); END_STATE(); - case 2986: + case 2994: ACCEPT_TOKEN(aux_sym_cmd_identifier_token26); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2986); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2994); END_STATE(); - case 2987: + case 2995: ACCEPT_TOKEN(aux_sym_cmd_identifier_token27); - if (lookahead == ',') ADVANCE(2989); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2987); + if (lookahead == ',') ADVANCE(2997); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2995); END_STATE(); - case 2988: + case 2996: ACCEPT_TOKEN(aux_sym_cmd_identifier_token27); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2989); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2988); + lookahead == '@') ADVANCE(2997); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2996); END_STATE(); - case 2989: + case 2997: ACCEPT_TOKEN(aux_sym_cmd_identifier_token27); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2989); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2997); END_STATE(); - case 2990: + case 2998: ACCEPT_TOKEN(aux_sym_cmd_identifier_token28); - if (lookahead == ',') ADVANCE(2992); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2990); + if (lookahead == ',') ADVANCE(3000); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2998); END_STATE(); - case 2991: + case 2999: ACCEPT_TOKEN(aux_sym_cmd_identifier_token28); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2992); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2991); + lookahead == '@') ADVANCE(3000); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2999); END_STATE(); - case 2992: + case 3000: ACCEPT_TOKEN(aux_sym_cmd_identifier_token28); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2992); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3000); END_STATE(); - case 2993: + case 3001: ACCEPT_TOKEN(aux_sym_cmd_identifier_token29); - if (lookahead == ',') ADVANCE(2995); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2993); + if (lookahead == ',') ADVANCE(3003); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3001); END_STATE(); - case 2994: + case 3002: ACCEPT_TOKEN(aux_sym_cmd_identifier_token29); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2995); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2994); + lookahead == '@') ADVANCE(3003); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3002); END_STATE(); - case 2995: + case 3003: ACCEPT_TOKEN(aux_sym_cmd_identifier_token29); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2995); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3003); END_STATE(); - case 2996: + case 3004: ACCEPT_TOKEN(aux_sym_cmd_identifier_token30); - if (lookahead == ',') ADVANCE(2998); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2996); + if (lookahead == ',') ADVANCE(3006); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3004); END_STATE(); - case 2997: + case 3005: ACCEPT_TOKEN(aux_sym_cmd_identifier_token30); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2998); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2997); + lookahead == '@') ADVANCE(3006); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3005); END_STATE(); - case 2998: + case 3006: ACCEPT_TOKEN(aux_sym_cmd_identifier_token30); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2998); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3006); END_STATE(); - case 2999: + case 3007: ACCEPT_TOKEN(aux_sym_cmd_identifier_token31); - if (lookahead == ',') ADVANCE(3001); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2999); + if (lookahead == ',') ADVANCE(3009); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3007); END_STATE(); - case 3000: + case 3008: ACCEPT_TOKEN(aux_sym_cmd_identifier_token31); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3001); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3000); + lookahead == '@') ADVANCE(3009); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3008); END_STATE(); - case 3001: + case 3009: ACCEPT_TOKEN(aux_sym_cmd_identifier_token31); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3001); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3009); END_STATE(); - case 3002: + case 3010: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ' ') ADVANCE(607); + if (lookahead == ' ') ADVANCE(610); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3029); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3028); + lookahead == '@') ADVANCE(3037); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3036); END_STATE(); - case 3003: + case 3011: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ' ') ADVANCE(607); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3029); + if (lookahead == ' ') ADVANCE(610); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); - case 3004: + case 3012: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ' ') ADVANCE(1064); + if (lookahead == ' ') ADVANCE(1067); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3029); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3028); + lookahead == '@') ADVANCE(3037); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3036); END_STATE(); - case 3005: + case 3013: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ' ') ADVANCE(1064); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3029); + if (lookahead == ' ') ADVANCE(1067); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); - case 3006: + case 3014: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(3029); + if (lookahead == ',') ADVANCE(3037); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3008); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3011); + lookahead == 'i') ADVANCE(3016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3019); END_STATE(); - case 3007: + case 3015: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(3029); + if (lookahead == ',') ADVANCE(3037); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3009); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3011); + lookahead == 'i') ADVANCE(3017); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3019); END_STATE(); - case 3008: + case 3016: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(3029); + if (lookahead == ',') ADVANCE(3037); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3007); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3011); + lookahead == 'n') ADVANCE(3015); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3019); END_STATE(); - case 3009: + case 3017: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(3029); + if (lookahead == ',') ADVANCE(3037); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3010); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3011); + lookahead == 't') ADVANCE(3018); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3019); END_STATE(); - case 3010: + case 3018: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(3029); + if (lookahead == ',') ADVANCE(3037); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3011); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3011); + lookahead == 'y') ADVANCE(3019); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3019); END_STATE(); - case 3011: + case 3019: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(3029); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3011); + if (lookahead == ',') ADVANCE(3037); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3019); END_STATE(); - case 3012: + case 3020: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == 'o') ADVANCE(3002); + if (lookahead == 'o') ADVANCE(3010); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3029); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3028); + lookahead == '@') ADVANCE(3037); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3036); END_STATE(); - case 3013: + case 3021: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == 'o') ADVANCE(3003); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3029); + if (lookahead == 'o') ADVANCE(3011); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); - case 3014: + case 3022: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == 't') ADVANCE(3004); + if (lookahead == 't') ADVANCE(3012); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3029); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3028); + lookahead == '@') ADVANCE(3037); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3036); END_STATE(); - case 3015: + case 3023: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == 't') ADVANCE(3005); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3029); + if (lookahead == 't') ADVANCE(3013); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); - case 3016: + case 3024: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == 'u') ADVANCE(3014); + if (lookahead == 'u') ADVANCE(3022); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3029); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3028); + lookahead == '@') ADVANCE(3037); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3036); END_STATE(); - case 3017: + case 3025: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == 'u') ADVANCE(3015); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3029); + if (lookahead == 'u') ADVANCE(3023); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); - case 3018: + case 3026: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3022); + lookahead == 'i') ADVANCE(3030); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3029); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3028); + lookahead == '@') ADVANCE(3037); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3036); END_STATE(); - case 3019: + case 3027: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3024); + lookahead == 'i') ADVANCE(3032); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3029); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3028); + lookahead == '@') ADVANCE(3037); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3036); END_STATE(); - case 3020: + case 3028: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3023); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3029); + lookahead == 'i') ADVANCE(3031); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); - case 3021: + case 3029: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3025); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3029); + lookahead == 'i') ADVANCE(3033); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); - case 3022: + case 3030: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3019); + lookahead == 'n') ADVANCE(3027); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3029); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3028); + lookahead == '@') ADVANCE(3037); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3036); END_STATE(); - case 3023: + case 3031: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3021); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3029); + lookahead == 'n') ADVANCE(3029); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); - case 3024: + case 3032: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3027); + lookahead == 't') ADVANCE(3035); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3029); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3028); + lookahead == '@') ADVANCE(3037); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3036); END_STATE(); - case 3025: + case 3033: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3026); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3029); + lookahead == 't') ADVANCE(3034); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); - case 3026: + case 3034: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3029); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3029); + lookahead == 'y') ADVANCE(3037); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); - case 3027: + case 3035: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3028); + lookahead == 'y') ADVANCE(3036); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3029); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3028); + lookahead == '@') ADVANCE(3037); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3036); END_STATE(); - case 3028: + case 3036: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3029); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3028); + lookahead == '@') ADVANCE(3037); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3036); END_STATE(); - case 3029: + case 3037: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3029); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); - case 3030: + case 3038: ACCEPT_TOKEN(aux_sym_cmd_identifier_token33); - if (lookahead == ',') ADVANCE(3032); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3030); + if (lookahead == ',') ADVANCE(3040); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3038); END_STATE(); - case 3031: + case 3039: ACCEPT_TOKEN(aux_sym_cmd_identifier_token33); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3032); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3031); + lookahead == '@') ADVANCE(3040); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3039); END_STATE(); - case 3032: + case 3040: ACCEPT_TOKEN(aux_sym_cmd_identifier_token33); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3032); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3040); END_STATE(); - case 3033: + case 3041: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == ',') ADVANCE(3044); - if (lookahead == 'e') ADVANCE(3034); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == ',') ADVANCE(3052); + if (lookahead == 'e') ADVANCE(3042); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3044); END_STATE(); - case 3034: + case 3042: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == ',') ADVANCE(3044); - if (lookahead == 'n') ADVANCE(3035); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == ',') ADVANCE(3052); + if (lookahead == 'n') ADVANCE(3043); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3044); END_STATE(); - case 3035: + case 3043: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == ',') ADVANCE(3044); - if (lookahead == 'v') ADVANCE(3581); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == ',') ADVANCE(3052); + if (lookahead == 'v') ADVANCE(3595); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3044); END_STATE(); - case 3036: + case 3044: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == ',') ADVANCE(3044); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == ',') ADVANCE(3052); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3044); END_STATE(); - case 3037: + case 3045: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == 'e') ADVANCE(3039); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3044); + if (lookahead == 'e') ADVANCE(3047); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3052); END_STATE(); - case 3038: + case 3046: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == 'e') ADVANCE(3040); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3044); + if (lookahead == 'e') ADVANCE(3048); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3052); END_STATE(); - case 3039: + case 3047: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == 'n') ADVANCE(3041); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3044); + if (lookahead == 'n') ADVANCE(3049); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3052); END_STATE(); - case 3040: + case 3048: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == 'n') ADVANCE(3042); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3044); + if (lookahead == 'n') ADVANCE(3050); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3052); END_STATE(); - case 3041: + case 3049: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == 'v') ADVANCE(3582); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3044); + if (lookahead == 'v') ADVANCE(3596); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3052); END_STATE(); - case 3042: + case 3050: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == 'v') ADVANCE(3045); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3044); + if (lookahead == 'v') ADVANCE(3053); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3052); END_STATE(); - case 3043: + case 3051: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3044); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3043); + lookahead == '@') ADVANCE(3052); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3051); END_STATE(); - case 3044: + case 3052: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3044); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3052); END_STATE(); - case 3045: + case 3053: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2899); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2907); END_STATE(); - case 3046: + case 3054: ACCEPT_TOKEN(aux_sym_cmd_identifier_token35); - if (lookahead == ',') ADVANCE(3048); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3046); + if (lookahead == ',') ADVANCE(3056); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3054); END_STATE(); - case 3047: + case 3055: ACCEPT_TOKEN(aux_sym_cmd_identifier_token35); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3048); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3047); + lookahead == '@') ADVANCE(3056); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3055); END_STATE(); - case 3048: + case 3056: ACCEPT_TOKEN(aux_sym_cmd_identifier_token35); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3048); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3056); END_STATE(); - case 3049: + case 3057: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == ',') ADVANCE(3051); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3049); + if (lookahead == ',') ADVANCE(3059); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3057); END_STATE(); - case 3050: + case 3058: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3051); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3050); + lookahead == '@') ADVANCE(3059); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3058); END_STATE(); - case 3051: + case 3059: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3051); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3059); END_STATE(); - case 3052: + case 3060: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == ',') ADVANCE(3054); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3052); + if (lookahead == ',') ADVANCE(3062); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3060); END_STATE(); - case 3053: + case 3061: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3054); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3053); + lookahead == '@') ADVANCE(3062); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3061); END_STATE(); - case 3054: + case 3062: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3054); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3062); END_STATE(); - case 3055: + case 3063: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == ',') ADVANCE(3069); + if (lookahead == ',') ADVANCE(3077); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3057); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3059); + lookahead == 'i') ADVANCE(3065); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3067); END_STATE(); - case 3056: + case 3064: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == ',') ADVANCE(3069); + if (lookahead == ',') ADVANCE(3077); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3055); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3059); + lookahead == 'n') ADVANCE(3063); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3067); END_STATE(); - case 3057: + case 3065: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == ',') ADVANCE(3069); + if (lookahead == ',') ADVANCE(3077); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3058); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3059); + lookahead == 't') ADVANCE(3066); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3067); END_STATE(); - case 3058: + case 3066: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == ',') ADVANCE(3069); + if (lookahead == ',') ADVANCE(3077); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3059); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3059); + lookahead == 'y') ADVANCE(3067); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3067); END_STATE(); - case 3059: + case 3067: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == ',') ADVANCE(3069); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3059); + if (lookahead == ',') ADVANCE(3077); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3067); END_STATE(); - case 3060: + case 3068: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3064); + lookahead == 'i') ADVANCE(3072); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3069); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3068); + lookahead == '@') ADVANCE(3077); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3076); END_STATE(); - case 3061: + case 3069: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3065); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3069); + lookahead == 'i') ADVANCE(3073); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3077); END_STATE(); - case 3062: + case 3070: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3060); + lookahead == 'n') ADVANCE(3068); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3069); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3068); + lookahead == '@') ADVANCE(3077); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3076); END_STATE(); - case 3063: + case 3071: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3061); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3069); + lookahead == 'n') ADVANCE(3069); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3077); END_STATE(); - case 3064: + case 3072: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3067); + lookahead == 't') ADVANCE(3075); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3069); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3068); + lookahead == '@') ADVANCE(3077); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3076); END_STATE(); - case 3065: + case 3073: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3066); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3069); + lookahead == 't') ADVANCE(3074); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3077); END_STATE(); - case 3066: + case 3074: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3069); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3069); + lookahead == 'y') ADVANCE(3077); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3077); END_STATE(); - case 3067: + case 3075: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3068); + lookahead == 'y') ADVANCE(3076); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3069); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3068); + lookahead == '@') ADVANCE(3077); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3076); END_STATE(); - case 3068: + case 3076: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3069); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3068); + lookahead == '@') ADVANCE(3077); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3076); END_STATE(); - case 3069: + case 3077: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3069); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3077); END_STATE(); - case 3070: + case 3078: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == ',') ADVANCE(3079); + if (lookahead == ',') ADVANCE(3087); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3072); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3074); + lookahead == 'i') ADVANCE(3080); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3082); END_STATE(); - case 3071: + case 3079: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == ',') ADVANCE(3079); + if (lookahead == ',') ADVANCE(3087); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3070); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3074); + lookahead == 'n') ADVANCE(3078); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3082); END_STATE(); - case 3072: + case 3080: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == ',') ADVANCE(3079); + if (lookahead == ',') ADVANCE(3087); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3073); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3074); + lookahead == 't') ADVANCE(3081); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3082); END_STATE(); - case 3073: + case 3081: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == ',') ADVANCE(3079); + if (lookahead == ',') ADVANCE(3087); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3074); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3074); + lookahead == 'y') ADVANCE(3082); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3082); END_STATE(); - case 3074: + case 3082: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == ',') ADVANCE(3079); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3074); + if (lookahead == ',') ADVANCE(3087); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3082); END_STATE(); - case 3075: + case 3083: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3077); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3079); + lookahead == 'i') ADVANCE(3085); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3087); END_STATE(); - case 3076: + case 3084: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3075); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3079); + lookahead == 'n') ADVANCE(3083); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3087); END_STATE(); - case 3077: + case 3085: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3078); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3079); + lookahead == 't') ADVANCE(3086); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3087); END_STATE(); - case 3078: + case 3086: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3079); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3079); + lookahead == 'y') ADVANCE(3087); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3087); END_STATE(); - case 3079: + case 3087: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3079); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3087); END_STATE(); - case 3080: + case 3088: ACCEPT_TOKEN(aux_sym_cmd_identifier_token40); - if (lookahead == ',') ADVANCE(3082); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3080); + if (lookahead == ',') ADVANCE(3090); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3088); END_STATE(); - case 3081: + case 3089: ACCEPT_TOKEN(aux_sym_cmd_identifier_token40); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3082); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3081); - END_STATE(); - case 3082: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token40); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3082); - END_STATE(); - case 3083: - ACCEPT_TOKEN(anon_sym_STAR_STAR); - END_STATE(); - case 3084: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); - END_STATE(); - case 3085: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(3083); - END_STATE(); - case 3086: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(3089); - END_STATE(); - case 3087: - ACCEPT_TOKEN(anon_sym_SLASH); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); - END_STATE(); - case 3088: - ACCEPT_TOKEN(anon_sym_mod); - END_STATE(); - case 3089: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + lookahead == '@') ADVANCE(3090); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3089); END_STATE(); case 3090: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(3084); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token40); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3090); END_STATE(); case 3091: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); case 3092: - ACCEPT_TOKEN(anon_sym_bit_DASHshl); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); case 3093: - ACCEPT_TOKEN(anon_sym_bit_DASHshr); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(3091); END_STATE(); case 3094: - ACCEPT_TOKEN(anon_sym_EQ_TILDE); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(3097); END_STATE(); case 3095: - ACCEPT_TOKEN(anon_sym_BANG_TILDE); + ACCEPT_TOKEN(anon_sym_SLASH); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3096: - ACCEPT_TOKEN(anon_sym_bit_DASHand); + ACCEPT_TOKEN(anon_sym_mod); END_STATE(); case 3097: - ACCEPT_TOKEN(anon_sym_bit_DASHxor); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); END_STATE(); case 3098: - ACCEPT_TOKEN(anon_sym_bit_DASHor); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(3092); END_STATE(); case 3099: - ACCEPT_TOKEN(anon_sym_and); + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 3100: - ACCEPT_TOKEN(anon_sym_xor); + ACCEPT_TOKEN(anon_sym_bit_DASHshl); END_STATE(); case 3101: - ACCEPT_TOKEN(anon_sym_or); + ACCEPT_TOKEN(anon_sym_bit_DASHshr); END_STATE(); case 3102: - ACCEPT_TOKEN(anon_sym_in); + ACCEPT_TOKEN(anon_sym_EQ_TILDE); END_STATE(); case 3103: - ACCEPT_TOKEN(anon_sym_not_DASHin); + ACCEPT_TOKEN(anon_sym_BANG_TILDE); END_STATE(); case 3104: - ACCEPT_TOKEN(anon_sym_starts_DASHwith); + ACCEPT_TOKEN(anon_sym_bit_DASHand); END_STATE(); case 3105: - ACCEPT_TOKEN(anon_sym_ends_DASHwith); + ACCEPT_TOKEN(anon_sym_bit_DASHxor); END_STATE(); case 3106: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_bit_DASHor); END_STATE(); case 3107: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_and); END_STATE(); case 3108: - ACCEPT_TOKEN(anon_sym_LT); + ACCEPT_TOKEN(anon_sym_xor); END_STATE(); case 3109: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(3110); + ACCEPT_TOKEN(anon_sym_or); END_STATE(); case 3110: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_in); END_STATE(); case 3111: - ACCEPT_TOKEN(anon_sym_GT); + ACCEPT_TOKEN(anon_sym_not_DASHin); END_STATE(); case 3112: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(3113); + ACCEPT_TOKEN(anon_sym_has); END_STATE(); case 3113: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_not_DASHhas); END_STATE(); case 3114: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - ADVANCE_MAP( - '\n', 3562, - '\r', 1, - '!', 3175, - '#', 5521, - ')', 3604, - '*', 3085, - '+', 3090, - '-', 3091, - '.', 3174, - '/', 3086, - ';', 3565, - '<', 3109, - '=', 454, - '>', 3112, - 'B', 4024, - 'E', 3185, - 'G', 3188, - 'K', 3188, - 'M', 3188, - 'P', 3188, - 'T', 3188, - '_', 3190, - 'a', 3218, - 'b', 4025, - 'd', 3194, - 'e', 3158, - 'g', 3187, - 'h', 3232, - 'i', 3219, - 'k', 3187, - 'm', 3189, - 'n', 3229, - 'o', 3159, - 'p', 3187, - 's', 3203, - 't', 3187, - 'u', 3244, - 'w', 3215, - 'x', 3225, - '|', 3566, - 0xb5, 3244, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(22); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + ACCEPT_TOKEN(anon_sym_starts_DASHwith); END_STATE(); case 3115: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - ADVANCE_MAP( - '\n', 3562, - '\r', 1, - '!', 3175, - '#', 5521, - ')', 3604, - '*', 3085, - '+', 3090, - '-', 3091, - '.', 3174, - '/', 3086, - ';', 3565, - '<', 3109, - '=', 454, - '>', 3112, - 'B', 4024, - 'E', 3185, - 'G', 3188, - 'K', 3188, - 'M', 3188, - 'P', 3188, - 'T', 3188, - '_', 3190, - 'a', 3218, - 'b', 4025, - 'd', 3194, - 'e', 3166, - 'g', 3187, - 'h', 3232, - 'i', 3219, - 'k', 3187, - 'm', 3189, - 'n', 3229, - 'o', 3167, - 'p', 3187, - 's', 3203, - 't', 3187, - 'u', 3244, - 'w', 3215, - 'x', 3225, - '|', 3566, - 0xb5, 3244, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(23); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + ACCEPT_TOKEN(anon_sym_ends_DASHwith); END_STATE(); case 3116: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - ADVANCE_MAP( - '\n', 3562, - '\r', 1, - '!', 3175, - '#', 5521, - ')', 3604, - '*', 3085, - '+', 3090, - '-', 3091, - '.', 3174, - '/', 3086, - ';', 3565, - '<', 3109, - '=', 454, - '>', 3112, - 'B', 4024, - 'E', 3185, - 'G', 3188, - 'K', 3188, - 'M', 3188, - 'P', 3188, - 'T', 3188, - 'a', 3218, - 'b', 4025, - 'd', 3194, - 'e', 3158, - 'g', 3187, - 'h', 3232, - 'i', 3219, - 'k', 3187, - 'm', 3189, - 'n', 3229, - 'o', 3159, - 'p', 3187, - 's', 3203, - 't', 3187, - 'u', 3244, - 'w', 3215, - 'x', 3225, - '|', 3566, - 0xb5, 3244, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(22); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 3117: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - ADVANCE_MAP( - '\n', 3562, - '\r', 1, - '!', 3175, - '#', 5521, - ')', 3604, - '*', 3085, - '+', 3090, - '-', 3091, - '.', 3174, - '/', 3086, - ';', 3565, - '<', 3109, - '=', 454, - '>', 3112, - 'B', 4024, - 'E', 3185, - 'G', 3188, - 'K', 3188, - 'M', 3188, - 'P', 3188, - 'T', 3188, - 'a', 3218, - 'b', 4025, - 'd', 3194, - 'e', 3166, - 'g', 3187, - 'h', 3232, - 'i', 3219, - 'k', 3187, - 'm', 3189, - 'n', 3229, - 'o', 3167, - 'p', 3187, - 's', 3203, - 't', 3187, - 'u', 3244, - 'w', 3215, - 'x', 3225, - '|', 3566, - 0xb5, 3244, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(23); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 3118: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - ADVANCE_MAP( - '\n', 3562, - '\r', 1, - '!', 3175, - '#', 5521, - ')', 3604, - '*', 3085, - '+', 3090, - '-', 3091, - '.', 3174, - '/', 3086, - ';', 3565, - '<', 3109, - '=', 454, - '>', 3112, - 'B', 4024, - 'E', 3188, - 'G', 3188, - 'K', 3188, - 'M', 3188, - 'P', 3188, - 'T', 3188, - 'a', 3218, - 'b', 4025, - 'd', 3194, - 'e', 3162, - 'g', 3187, - 'h', 3232, - 'i', 3219, - 'k', 3187, - 'm', 3189, - 'n', 3229, - 'o', 3159, - 'p', 3187, - 's', 3203, - 't', 3187, - 'u', 3244, - 'w', 3215, - 'x', 3225, - '|', 3566, - 0xb5, 3244, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(22); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + ACCEPT_TOKEN(anon_sym_LT); END_STATE(); case 3119: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - ADVANCE_MAP( - '\n', 3562, - '\r', 1, - '!', 3175, - '#', 5521, - ')', 3604, - '*', 3085, - '+', 3090, - '-', 3091, - '.', 3174, - '/', 3086, - ';', 3565, - '<', 3109, - '=', 454, - '>', 3112, - 'B', 4024, - 'E', 3188, - 'G', 3188, - 'K', 3188, - 'M', 3188, - 'P', 3188, - 'T', 3188, - 'a', 3218, - 'b', 4025, - 'd', 3194, - 'e', 3164, - 'g', 3187, - 'h', 3232, - 'i', 3219, - 'k', 3187, - 'm', 3189, - 'n', 3229, - 'o', 3167, - 'p', 3187, - 's', 3203, - 't', 3187, - 'u', 3244, - 'w', 3215, - 'x', 3225, - '|', 3566, - 0xb5, 3244, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(23); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '=') ADVANCE(3120); END_STATE(); case 3120: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - ADVANCE_MAP( - '\n', 3562, - '\r', 1, - '!', 3175, - '#', 5521, - ')', 3604, - '*', 3085, - '+', 3090, - '-', 3091, - '.', 3857, - '/', 3086, - ';', 3565, - '<', 3109, - '=', 454, - '>', 3112, - 'B', 4024, - 'E', 3185, - 'G', 3188, - 'K', 3188, - 'M', 3188, - 'P', 3188, - 'T', 3188, - 'a', 3218, - 'b', 4025, - 'd', 3194, - 'e', 3158, - 'g', 3187, - 'h', 3232, - 'i', 3219, - 'k', 3187, - 'm', 3189, - 'n', 3229, - 'o', 3159, - 'p', 3187, - 's', 3203, - 't', 3187, - 'u', 3244, - 'w', 3215, - 'x', 3225, - '|', 3566, - 0xb5, 3244, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(22); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 3121: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - ADVANCE_MAP( - '\n', 3562, - '\r', 1, - '!', 3175, - '#', 5521, - ')', 3604, - '*', 3085, - '+', 3090, - '-', 3091, - '.', 3857, - '/', 3086, - ';', 3565, - '<', 3109, - '=', 454, - '>', 3112, - 'B', 4024, - 'E', 3185, - 'G', 3188, - 'K', 3188, - 'M', 3188, - 'P', 3188, - 'T', 3188, - 'a', 3218, - 'b', 4025, - 'd', 3194, - 'e', 3166, - 'g', 3187, - 'h', 3232, - 'i', 3219, - 'k', 3187, - 'm', 3189, - 'n', 3229, - 'o', 3167, - 'p', 3187, - 's', 3203, - 't', 3187, - 'u', 3244, - 'w', 3215, - 'x', 3225, - '|', 3566, - 0xb5, 3244, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(23); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + ACCEPT_TOKEN(anon_sym_GT); END_STATE(); case 3122: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - ADVANCE_MAP( - '\n', 3562, - '\r', 1, - '!', 3175, - '#', 5521, - ')', 3604, - '*', 3085, - '+', 3090, - '-', 3091, - '/', 3086, - ';', 3565, - '<', 3109, - '=', 454, - '>', 3112, - 'a', 3218, - 'b', 3211, - 'e', 3163, - 'i', 3219, - 'm', 3226, - 'n', 3230, - 'o', 3159, - 's', 3248, - 'x', 3225, - '|', 3566, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(22); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(3123); END_STATE(); case 3123: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - ADVANCE_MAP( - '\n', 3562, - '\r', 1, - '!', 3175, - '#', 5521, - ')', 3604, - '*', 3085, - '+', 3090, - '-', 3091, - '/', 3086, - ';', 3565, - '<', 3109, - '=', 454, - '>', 3112, - 'a', 3218, - 'b', 3211, - 'e', 3165, - 'i', 3219, - 'm', 3226, - 'n', 3230, - 'o', 3167, - 's', 3248, - 'x', 3225, - '|', 3566, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(23); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 3124: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 3175, - '#', 5521, - '*', 3085, - '+', 3090, - '-', 3091, - '.', 3174, - '/', 3086, - ':', 4098, - ';', 3565, - '<', 3109, + '!', 3185, + '#', 5548, + ')', 3618, + '*', 3093, + '+', 3098, + '-', 3099, + '.', 3871, + '/', 3094, + ';', 3579, + '<', 3119, '=', 454, - '>', 3112, - 'B', 4024, - 'E', 3185, - 'G', 3188, - 'K', 3188, - 'M', 3188, - 'P', 3188, - 'T', 3188, - '_', 3190, - 'a', 3218, - 'b', 4025, - 'd', 3194, - 'e', 3158, - 'g', 3187, - 'h', 3232, - 'i', 3219, - 'k', 3187, - 'm', 3189, - 'n', 3229, - 'o', 3159, - 'p', 3187, - 's', 3203, - 't', 3187, - 'u', 3244, - 'w', 3215, - 'x', 3225, - '|', 3566, - '}', 3713, - 0xb5, 3244, + '>', 3122, + 'B', 4038, + 'E', 3195, + 'G', 3198, + 'K', 3198, + 'M', 3198, + 'P', 3198, + 'T', 3198, + 'a', 3231, + 'b', 4039, + 'd', 3204, + 'e', 3168, + 'g', 3197, + 'h', 3205, + 'i', 3232, + 'k', 3197, + 'm', 3199, + 'n', 3242, + 'o', 3169, + 'p', 3197, + 's', 3216, + 't', 3197, + 'u', 3256, + 'w', 3228, + 'x', 3238, + '|', 3580, + 0xb5, 3256, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(24); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + lookahead == ' ') SKIP(22); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3125: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 3175, - '#', 5521, - '*', 3085, - '+', 3090, - '-', 3091, - '.', 3174, - '/', 3086, - ':', 4098, - ';', 3565, - '<', 3109, + '!', 3185, + '#', 5548, + ')', 3618, + '*', 3093, + '+', 3098, + '-', 3099, + '.', 3871, + '/', 3094, + ';', 3579, + '<', 3119, '=', 454, - '>', 3112, - 'B', 4024, - 'E', 3185, - 'G', 3188, - 'K', 3188, - 'M', 3188, - 'P', 3188, - 'T', 3188, - 'a', 3218, - 'b', 4025, - 'd', 3194, - 'e', 3158, - 'g', 3187, - 'h', 3232, - 'i', 3219, - 'k', 3187, - 'm', 3189, - 'n', 3229, - 'o', 3159, - 'p', 3187, - 's', 3203, - 't', 3187, - 'u', 3244, - 'w', 3215, - 'x', 3225, - '|', 3566, - '}', 3713, - 0xb5, 3244, + '>', 3122, + 'B', 4038, + 'E', 3195, + 'G', 3198, + 'K', 3198, + 'M', 3198, + 'P', 3198, + 'T', 3198, + 'a', 3231, + 'b', 4039, + 'd', 3204, + 'e', 3176, + 'g', 3197, + 'h', 3205, + 'i', 3232, + 'k', 3197, + 'm', 3199, + 'n', 3242, + 'o', 3177, + 'p', 3197, + 's', 3216, + 't', 3197, + 'u', 3256, + 'w', 3228, + 'x', 3238, + '|', 3580, + 0xb5, 3256, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(24); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + lookahead == ' ') SKIP(23); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3126: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 3175, - '#', 5521, - '*', 3085, - '+', 3090, - '-', 3091, - '.', 3174, - '/', 3086, - ':', 4098, - ';', 3565, - '<', 3109, + '!', 3185, + '#', 5548, + ')', 3618, + '*', 3093, + '+', 3098, + '-', 3099, + '.', 3184, + '/', 3094, + ';', 3579, + '<', 3119, '=', 454, - '>', 3112, - 'B', 4024, - 'E', 3188, - 'G', 3188, - 'K', 3188, - 'M', 3188, - 'P', 3188, - 'T', 3188, - 'a', 3218, - 'b', 4025, - 'd', 3194, - 'e', 3162, - 'g', 3187, - 'h', 3232, - 'i', 3219, - 'k', 3187, - 'm', 3189, - 'n', 3229, - 'o', 3159, - 'p', 3187, - 's', 3203, - 't', 3187, - 'u', 3244, - 'w', 3215, - 'x', 3225, - '|', 3566, - '}', 3713, - 0xb5, 3244, + '>', 3122, + 'B', 4038, + 'E', 3195, + 'G', 3198, + 'K', 3198, + 'M', 3198, + 'P', 3198, + 'T', 3198, + '_', 3203, + 'a', 3231, + 'b', 4039, + 'd', 3204, + 'e', 3168, + 'g', 3197, + 'h', 3205, + 'i', 3232, + 'k', 3197, + 'm', 3199, + 'n', 3242, + 'o', 3169, + 'p', 3197, + 's', 3216, + 't', 3197, + 'u', 3256, + 'w', 3228, + 'x', 3238, + '|', 3580, + 0xb5, 3256, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(24); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + lookahead == ' ') SKIP(22); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3127: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 3175, - '#', 5521, - '*', 3085, - '+', 3090, - '-', 3091, - '.', 3174, - '/', 3086, - ';', 3565, - '<', 3109, + '!', 3185, + '#', 5548, + ')', 3618, + '*', 3093, + '+', 3098, + '-', 3099, + '.', 3184, + '/', 3094, + ';', 3579, + '<', 3119, '=', 454, - '>', 3112, - 'B', 4024, - 'E', 3185, - 'G', 3188, - 'K', 3188, - 'M', 3188, - 'P', 3188, - 'T', 3188, - '_', 3190, - 'a', 3218, - 'b', 4025, - 'd', 3194, - 'e', 3158, - 'g', 3187, - 'h', 3232, - 'i', 3219, - 'k', 3187, - 'm', 3189, - 'n', 3229, - 'o', 3159, - 'p', 3187, - 's', 3203, - 't', 3187, - 'u', 3244, - 'w', 3215, - 'x', 3225, - '|', 3566, - '}', 3713, - 0xb5, 3244, + '>', 3122, + 'B', 4038, + 'E', 3195, + 'G', 3198, + 'K', 3198, + 'M', 3198, + 'P', 3198, + 'T', 3198, + '_', 3203, + 'a', 3231, + 'b', 4039, + 'd', 3204, + 'e', 3176, + 'g', 3197, + 'h', 3205, + 'i', 3232, + 'k', 3197, + 'm', 3199, + 'n', 3242, + 'o', 3177, + 'p', 3197, + 's', 3216, + 't', 3197, + 'u', 3256, + 'w', 3228, + 'x', 3238, + '|', 3580, + 0xb5, 3256, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + lookahead == ' ') SKIP(23); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3128: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 3175, - '#', 5521, - '*', 3085, - '+', 3090, - '-', 3091, - '.', 3174, - '/', 3086, - ';', 3565, - '<', 3109, + '!', 3185, + '#', 5548, + ')', 3618, + '*', 3093, + '+', 3098, + '-', 3099, + '.', 3184, + '/', 3094, + ';', 3579, + '<', 3119, '=', 454, - '>', 3112, - 'B', 4024, - 'E', 3185, - 'G', 3188, - 'K', 3188, - 'M', 3188, - 'P', 3188, - 'T', 3188, - '_', 3190, - 'a', 3218, - 'b', 4025, - 'd', 3194, - 'e', 3166, - 'g', 3187, - 'h', 3232, - 'i', 3219, - 'k', 3187, - 'm', 3189, - 'n', 3229, - 'o', 3167, - 'p', 3187, - 's', 3203, - 't', 3187, - 'u', 3244, - 'w', 3215, - 'x', 3225, - '|', 3566, - '}', 3713, - 0xb5, 3244, + '>', 3122, + 'B', 4038, + 'E', 3195, + 'G', 3198, + 'K', 3198, + 'M', 3198, + 'P', 3198, + 'T', 3198, + 'a', 3231, + 'b', 4039, + 'd', 3204, + 'e', 3168, + 'g', 3197, + 'h', 3205, + 'i', 3232, + 'k', 3197, + 'm', 3199, + 'n', 3242, + 'o', 3169, + 'p', 3197, + 's', 3216, + 't', 3197, + 'u', 3256, + 'w', 3228, + 'x', 3238, + '|', 3580, + 0xb5, 3256, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + lookahead == ' ') SKIP(22); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3129: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 3175, - '#', 5521, - '*', 3085, - '+', 3090, - '-', 3091, - '.', 3174, - '/', 3086, - ';', 3565, - '<', 3109, + '!', 3185, + '#', 5548, + ')', 3618, + '*', 3093, + '+', 3098, + '-', 3099, + '.', 3184, + '/', 3094, + ';', 3579, + '<', 3119, '=', 454, - '>', 3112, - 'B', 4024, - 'E', 3185, - 'G', 3188, - 'K', 3188, - 'M', 3188, - 'P', 3188, - 'T', 3188, - 'a', 3218, - 'b', 4025, - 'd', 3194, - 'e', 3158, - 'g', 3187, - 'h', 3232, - 'i', 3219, - 'k', 3187, - 'm', 3189, - 'n', 3229, - 'o', 3159, - 'p', 3187, - 's', 3203, - 't', 3187, - 'u', 3244, - 'w', 3215, - 'x', 3225, - '|', 3566, - '}', 3713, - 0xb5, 3244, + '>', 3122, + 'B', 4038, + 'E', 3195, + 'G', 3198, + 'K', 3198, + 'M', 3198, + 'P', 3198, + 'T', 3198, + 'a', 3231, + 'b', 4039, + 'd', 3204, + 'e', 3176, + 'g', 3197, + 'h', 3205, + 'i', 3232, + 'k', 3197, + 'm', 3199, + 'n', 3242, + 'o', 3177, + 'p', 3197, + 's', 3216, + 't', 3197, + 'u', 3256, + 'w', 3228, + 'x', 3238, + '|', 3580, + 0xb5, 3256, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + lookahead == ' ') SKIP(23); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3130: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 3175, - '#', 5521, - '*', 3085, - '+', 3090, - '-', 3091, - '.', 3174, - '/', 3086, - ';', 3565, - '<', 3109, + '!', 3185, + '#', 5548, + ')', 3618, + '*', 3093, + '+', 3098, + '-', 3099, + '.', 3184, + '/', 3094, + ';', 3579, + '<', 3119, '=', 454, - '>', 3112, - 'B', 4024, - 'E', 3185, - 'G', 3188, - 'K', 3188, - 'M', 3188, - 'P', 3188, - 'T', 3188, - 'a', 3218, - 'b', 4025, - 'd', 3194, - 'e', 3166, - 'g', 3187, - 'h', 3232, - 'i', 3219, - 'k', 3187, - 'm', 3189, - 'n', 3229, - 'o', 3167, - 'p', 3187, - 's', 3203, - 't', 3187, - 'u', 3244, - 'w', 3215, - 'x', 3225, - '|', 3566, - '}', 3713, - 0xb5, 3244, + '>', 3122, + 'B', 4038, + 'E', 3198, + 'G', 3198, + 'K', 3198, + 'M', 3198, + 'P', 3198, + 'T', 3198, + 'a', 3231, + 'b', 4039, + 'd', 3204, + 'e', 3172, + 'g', 3197, + 'h', 3205, + 'i', 3232, + 'k', 3197, + 'm', 3199, + 'n', 3242, + 'o', 3169, + 'p', 3197, + 's', 3216, + 't', 3197, + 'u', 3256, + 'w', 3228, + 'x', 3238, + '|', 3580, + 0xb5, 3256, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + lookahead == ' ') SKIP(22); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3131: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 3175, - '#', 5521, - '*', 3085, - '+', 3090, - '-', 3091, - '.', 3174, - '/', 3086, - ';', 3565, - '<', 3109, + '!', 3185, + '#', 5548, + ')', 3618, + '*', 3093, + '+', 3098, + '-', 3099, + '.', 3184, + '/', 3094, + ';', 3579, + '<', 3119, '=', 454, - '>', 3112, - 'B', 4024, - 'E', 3188, - 'G', 3188, - 'K', 3188, - 'M', 3188, - 'P', 3188, - 'T', 3188, - 'a', 3218, - 'b', 4025, - 'd', 3194, - 'e', 3162, - 'g', 3187, - 'h', 3232, - 'i', 3219, - 'k', 3187, - 'm', 3189, - 'n', 3229, - 'o', 3159, - 'p', 3187, - 's', 3203, - 't', 3187, - 'u', 3244, - 'w', 3215, - 'x', 3225, - '|', 3566, - '}', 3713, - 0xb5, 3244, + '>', 3122, + 'B', 4038, + 'E', 3198, + 'G', 3198, + 'K', 3198, + 'M', 3198, + 'P', 3198, + 'T', 3198, + 'a', 3231, + 'b', 4039, + 'd', 3204, + 'e', 3174, + 'g', 3197, + 'h', 3205, + 'i', 3232, + 'k', 3197, + 'm', 3199, + 'n', 3242, + 'o', 3177, + 'p', 3197, + 's', 3216, + 't', 3197, + 'u', 3256, + 'w', 3228, + 'x', 3238, + '|', 3580, + 0xb5, 3256, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + lookahead == ' ') SKIP(23); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3132: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 3175, - '#', 5521, - '*', 3085, - '+', 3090, - '-', 3091, - '.', 3174, - '/', 3086, - ';', 3565, - '<', 3109, + '!', 3185, + '#', 5548, + ')', 3618, + '*', 3093, + '+', 3098, + '-', 3099, + '/', 3094, + ';', 3579, + '<', 3119, '=', 454, - '>', 3112, - 'B', 4024, - 'E', 3188, - 'G', 3188, - 'K', 3188, - 'M', 3188, - 'P', 3188, - 'T', 3188, - 'a', 3218, - 'b', 4025, - 'd', 3194, - 'e', 3164, - 'g', 3187, - 'h', 3232, - 'i', 3219, - 'k', 3187, - 'm', 3189, - 'n', 3229, - 'o', 3167, - 'p', 3187, - 's', 3203, - 't', 3187, - 'u', 3244, - 'w', 3215, - 'x', 3225, - '|', 3566, - '}', 3713, - 0xb5, 3244, + '>', 3122, + 'a', 3231, + 'b', 3225, + 'e', 3173, + 'h', 3206, + 'i', 3232, + 'm', 3239, + 'n', 3243, + 'o', 3169, + 's', 3262, + 'x', 3238, + '|', 3580, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + lookahead == ' ') SKIP(22); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3133: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 3175, - '#', 5521, - '*', 3085, - '+', 3090, - '-', 3091, - '.', 3174, - '/', 3086, - '<', 3109, + '!', 3185, + '#', 5548, + ')', 3618, + '*', 3093, + '+', 3098, + '-', 3099, + '/', 3094, + ';', 3579, + '<', 3119, '=', 454, - '>', 3112, - 'B', 4024, - 'E', 3185, - 'G', 3188, - 'K', 3188, - 'M', 3188, - 'P', 3188, - 'T', 3188, - '_', 3190, - 'a', 3218, - 'b', 4025, - 'd', 3194, - 'e', 3158, - 'g', 3187, - 'h', 3232, - 'i', 3219, - 'k', 3187, - 'm', 3189, - 'n', 3229, - 'o', 3159, - 'p', 3187, - 's', 3203, - 't', 3187, - 'u', 3244, - 'w', 3215, - 'x', 3225, - '|', 3566, - 0xb5, 3244, + '>', 3122, + 'a', 3231, + 'b', 3225, + 'e', 3175, + 'h', 3206, + 'i', 3232, + 'm', 3239, + 'n', 3243, + 'o', 3177, + 's', 3262, + 'x', 3238, + '|', 3580, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + lookahead == ' ') SKIP(23); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3134: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 3175, - '#', 5521, - '*', 3085, - '+', 3090, - '-', 3091, - '.', 3174, - '/', 3086, - '<', 3109, + '!', 3185, + '#', 5548, + '*', 3093, + '+', 3098, + '-', 3099, + '.', 3871, + '/', 3094, + ':', 4116, + ';', 3579, + '<', 3119, '=', 454, - '>', 3112, - 'B', 4024, - 'E', 3185, - 'G', 3188, - 'K', 3188, - 'M', 3188, - 'P', 3188, - 'T', 3188, - '_', 3190, - 'a', 3218, - 'b', 4025, - 'd', 3194, - 'e', 3166, - 'g', 3187, - 'h', 3232, - 'i', 3219, - 'k', 3187, - 'm', 3189, - 'n', 3229, - 'o', 3167, - 'p', 3187, - 's', 3203, - 't', 3187, - 'u', 3244, - 'w', 3215, - 'x', 3225, - '|', 3566, - 0xb5, 3244, + '>', 3122, + 'B', 4038, + 'E', 3195, + 'G', 3198, + 'K', 3198, + 'M', 3198, + 'P', 3198, + 'T', 3198, + 'a', 3231, + 'b', 4039, + 'd', 3204, + 'e', 3168, + 'g', 3197, + 'h', 3205, + 'i', 3232, + 'k', 3197, + 'm', 3199, + 'n', 3242, + 'o', 3169, + 'p', 3197, + 's', 3216, + 't', 3197, + 'u', 3256, + 'w', 3228, + 'x', 3238, + '|', 3580, + '}', 3727, + 0xb5, 3256, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + lookahead == ' ') SKIP(24); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3135: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 3175, - '#', 5521, - '*', 3085, - '+', 3090, - '-', 3091, - '.', 3174, - '/', 3086, - '<', 3109, + '!', 3185, + '#', 5548, + '*', 3093, + '+', 3098, + '-', 3099, + '.', 3871, + '/', 3094, + ';', 3579, + '<', 3119, '=', 454, - '>', 3112, - 'B', 4024, - 'E', 3185, - 'G', 3188, - 'K', 3188, - 'M', 3188, - 'P', 3188, - 'T', 3188, - 'a', 3218, - 'b', 4025, - 'd', 3194, - 'e', 3158, - 'g', 3187, - 'h', 3232, - 'i', 3219, - 'k', 3187, - 'm', 3189, - 'n', 3229, - 'o', 3159, - 'p', 3187, - 's', 3203, - 't', 3187, - 'u', 3244, - 'w', 3215, - 'x', 3225, - '|', 3566, - 0xb5, 3244, + '>', 3122, + 'B', 4038, + 'E', 3195, + 'G', 3198, + 'K', 3198, + 'M', 3198, + 'P', 3198, + 'T', 3198, + 'a', 3231, + 'b', 4039, + 'd', 3204, + 'e', 3168, + 'g', 3197, + 'h', 3205, + 'i', 3232, + 'k', 3197, + 'm', 3199, + 'n', 3242, + 'o', 3169, + 'p', 3197, + 's', 3216, + 't', 3197, + 'u', 3256, + 'w', 3228, + 'x', 3238, + '|', 3580, + '}', 3727, + 0xb5, 3256, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + lookahead == ' ') SKIP(25); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3136: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 3175, - '#', 5521, - '*', 3085, - '+', 3090, - '-', 3091, - '.', 3174, - '/', 3086, - '<', 3109, + '!', 3185, + '#', 5548, + '*', 3093, + '+', 3098, + '-', 3099, + '.', 3871, + '/', 3094, + ';', 3579, + '<', 3119, '=', 454, - '>', 3112, - 'B', 4024, - 'E', 3185, - 'G', 3188, - 'K', 3188, - 'M', 3188, - 'P', 3188, - 'T', 3188, - 'a', 3218, - 'b', 4025, - 'd', 3194, - 'e', 3166, - 'g', 3187, - 'h', 3232, - 'i', 3219, - 'k', 3187, - 'm', 3189, - 'n', 3229, - 'o', 3167, - 'p', 3187, - 's', 3203, - 't', 3187, - 'u', 3244, - 'w', 3215, - 'x', 3225, - '|', 3566, - 0xb5, 3244, + '>', 3122, + 'B', 4038, + 'E', 3195, + 'G', 3198, + 'K', 3198, + 'M', 3198, + 'P', 3198, + 'T', 3198, + 'a', 3231, + 'b', 4039, + 'd', 3204, + 'e', 3176, + 'g', 3197, + 'h', 3205, + 'i', 3232, + 'k', 3197, + 'm', 3199, + 'n', 3242, + 'o', 3177, + 'p', 3197, + 's', 3216, + 't', 3197, + 'u', 3256, + 'w', 3228, + 'x', 3238, + '|', 3580, + '}', 3727, + 0xb5, 3256, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + lookahead == ' ') SKIP(26); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3137: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 3175, - '#', 5521, - '*', 3085, - '+', 3090, - '-', 3091, - '.', 3174, - '/', 3086, - '<', 3109, + '!', 3185, + '#', 5548, + '*', 3093, + '+', 3098, + '-', 3099, + '.', 3871, + '/', 3094, + '<', 3119, '=', 454, - '>', 3112, - 'B', 4024, - 'E', 3188, - 'G', 3188, - 'K', 3188, - 'M', 3188, - 'P', 3188, - 'T', 3188, - 'a', 3218, - 'b', 4025, - 'd', 3194, - 'e', 3162, - 'g', 3187, - 'h', 3232, - 'i', 3219, - 'k', 3187, - 'm', 3189, - 'n', 3229, - 'o', 3159, - 'p', 3187, - 's', 3203, - 't', 3187, - 'u', 3244, - 'w', 3215, - 'x', 3225, - '|', 3566, - 0xb5, 3244, + '>', 3122, + 'B', 4038, + 'E', 3195, + 'G', 3198, + 'K', 3198, + 'M', 3198, + 'P', 3198, + 'T', 3198, + 'a', 3231, + 'b', 4039, + 'd', 3204, + 'e', 3168, + 'g', 3197, + 'h', 3205, + 'i', 3232, + 'k', 3197, + 'm', 3199, + 'n', 3242, + 'o', 3169, + 'p', 3197, + 's', 3216, + 't', 3197, + 'u', 3256, + 'w', 3228, + 'x', 3238, + '|', 3580, + 0xb5, 3256, ); if (lookahead == '\t' || lookahead == ' ') SKIP(27); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3138: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 3175, - '#', 5521, - '*', 3085, - '+', 3090, - '-', 3091, - '.', 3174, - '/', 3086, - '<', 3109, + '!', 3185, + '#', 5548, + '*', 3093, + '+', 3098, + '-', 3099, + '.', 3871, + '/', 3094, + '<', 3119, '=', 454, - '>', 3112, - 'B', 4024, - 'E', 3188, - 'G', 3188, - 'K', 3188, - 'M', 3188, - 'P', 3188, - 'T', 3188, - 'a', 3218, - 'b', 4025, - 'd', 3194, - 'e', 3164, - 'g', 3187, - 'h', 3232, - 'i', 3219, - 'k', 3187, - 'm', 3189, - 'n', 3229, - 'o', 3167, - 'p', 3187, - 's', 3203, - 't', 3187, - 'u', 3244, - 'w', 3215, - 'x', 3225, - '|', 3566, - 0xb5, 3244, + '>', 3122, + 'B', 4038, + 'E', 3195, + 'G', 3198, + 'K', 3198, + 'M', 3198, + 'P', 3198, + 'T', 3198, + 'a', 3231, + 'b', 4039, + 'd', 3204, + 'e', 3176, + 'g', 3197, + 'h', 3205, + 'i', 3232, + 'k', 3197, + 'm', 3199, + 'n', 3242, + 'o', 3177, + 'p', 3197, + 's', 3216, + 't', 3197, + 'u', 3256, + 'w', 3228, + 'x', 3238, + '|', 3580, + 0xb5, 3256, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3139: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 3175, - '#', 5521, - '*', 3085, - '+', 3090, - '-', 3091, - '.', 3857, - '/', 3086, - ':', 4098, - ';', 3565, - '<', 3109, + '!', 3185, + '#', 5548, + '*', 3093, + '+', 3098, + '-', 3099, + '.', 3184, + '/', 3094, + ':', 4116, + ';', 3579, + '<', 3119, '=', 454, - '>', 3112, - 'B', 4024, - 'E', 3185, - 'G', 3188, - 'K', 3188, - 'M', 3188, - 'P', 3188, - 'T', 3188, - 'a', 3218, - 'b', 4025, - 'd', 3194, - 'e', 3158, - 'g', 3187, - 'h', 3232, - 'i', 3219, - 'k', 3187, - 'm', 3189, - 'n', 3229, - 'o', 3159, - 'p', 3187, - 's', 3203, - 't', 3187, - 'u', 3244, - 'w', 3215, - 'x', 3225, - '|', 3566, - '}', 3713, - 0xb5, 3244, + '>', 3122, + 'B', 4038, + 'E', 3195, + 'G', 3198, + 'K', 3198, + 'M', 3198, + 'P', 3198, + 'T', 3198, + '_', 3203, + 'a', 3231, + 'b', 4039, + 'd', 3204, + 'e', 3168, + 'g', 3197, + 'h', 3205, + 'i', 3232, + 'k', 3197, + 'm', 3199, + 'n', 3242, + 'o', 3169, + 'p', 3197, + 's', 3216, + 't', 3197, + 'u', 3256, + 'w', 3228, + 'x', 3238, + '|', 3580, + '}', 3727, + 0xb5, 3256, ); if (lookahead == '\t' || lookahead == ' ') SKIP(24); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3140: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 3175, - '#', 5521, - '*', 3085, - '+', 3090, - '-', 3091, - '.', 3857, - '/', 3086, - ';', 3565, - '<', 3109, + '!', 3185, + '#', 5548, + '*', 3093, + '+', 3098, + '-', 3099, + '.', 3184, + '/', 3094, + ':', 4116, + ';', 3579, + '<', 3119, '=', 454, - '>', 3112, - 'B', 4024, - 'E', 3185, - 'G', 3188, - 'K', 3188, - 'M', 3188, - 'P', 3188, - 'T', 3188, - 'a', 3218, - 'b', 4025, - 'd', 3194, - 'e', 3158, - 'g', 3187, - 'h', 3232, - 'i', 3219, - 'k', 3187, - 'm', 3189, - 'n', 3229, - 'o', 3159, - 'p', 3187, - 's', 3203, - 't', 3187, - 'u', 3244, - 'w', 3215, - 'x', 3225, - '|', 3566, - '}', 3713, - 0xb5, 3244, + '>', 3122, + 'B', 4038, + 'E', 3195, + 'G', 3198, + 'K', 3198, + 'M', 3198, + 'P', 3198, + 'T', 3198, + 'a', 3231, + 'b', 4039, + 'd', 3204, + 'e', 3168, + 'g', 3197, + 'h', 3205, + 'i', 3232, + 'k', 3197, + 'm', 3199, + 'n', 3242, + 'o', 3169, + 'p', 3197, + 's', 3216, + 't', 3197, + 'u', 3256, + 'w', 3228, + 'x', 3238, + '|', 3580, + '}', 3727, + 0xb5, 3256, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + lookahead == ' ') SKIP(24); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3141: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 3175, - '#', 5521, - '*', 3085, - '+', 3090, - '-', 3091, - '.', 3857, - '/', 3086, - ';', 3565, - '<', 3109, + '!', 3185, + '#', 5548, + '*', 3093, + '+', 3098, + '-', 3099, + '.', 3184, + '/', 3094, + ':', 4116, + ';', 3579, + '<', 3119, '=', 454, - '>', 3112, - 'B', 4024, - 'E', 3185, - 'G', 3188, - 'K', 3188, - 'M', 3188, - 'P', 3188, - 'T', 3188, - 'a', 3218, - 'b', 4025, - 'd', 3194, - 'e', 3166, - 'g', 3187, - 'h', 3232, - 'i', 3219, - 'k', 3187, - 'm', 3189, - 'n', 3229, - 'o', 3167, - 'p', 3187, - 's', 3203, - 't', 3187, - 'u', 3244, - 'w', 3215, - 'x', 3225, - '|', 3566, - '}', 3713, - 0xb5, 3244, + '>', 3122, + 'B', 4038, + 'E', 3198, + 'G', 3198, + 'K', 3198, + 'M', 3198, + 'P', 3198, + 'T', 3198, + 'a', 3231, + 'b', 4039, + 'd', 3204, + 'e', 3172, + 'g', 3197, + 'h', 3205, + 'i', 3232, + 'k', 3197, + 'm', 3199, + 'n', 3242, + 'o', 3169, + 'p', 3197, + 's', 3216, + 't', 3197, + 'u', 3256, + 'w', 3228, + 'x', 3238, + '|', 3580, + '}', 3727, + 0xb5, 3256, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + lookahead == ' ') SKIP(24); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3142: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 3175, - '#', 5521, - '*', 3085, - '+', 3090, - '-', 3091, - '.', 3857, - '/', 3086, - '<', 3109, + '!', 3185, + '#', 5548, + '*', 3093, + '+', 3098, + '-', 3099, + '.', 3184, + '/', 3094, + ';', 3579, + '<', 3119, '=', 454, - '>', 3112, - 'B', 4024, - 'E', 3185, - 'G', 3188, - 'K', 3188, - 'M', 3188, - 'P', 3188, - 'T', 3188, - 'a', 3218, - 'b', 4025, - 'd', 3194, - 'e', 3158, - 'g', 3187, - 'h', 3232, - 'i', 3219, - 'k', 3187, - 'm', 3189, - 'n', 3229, - 'o', 3159, - 'p', 3187, - 's', 3203, - 't', 3187, - 'u', 3244, - 'w', 3215, - 'x', 3225, - '|', 3566, - 0xb5, 3244, + '>', 3122, + 'B', 4038, + 'E', 3195, + 'G', 3198, + 'K', 3198, + 'M', 3198, + 'P', 3198, + 'T', 3198, + '_', 3203, + 'a', 3231, + 'b', 4039, + 'd', 3204, + 'e', 3168, + 'g', 3197, + 'h', 3205, + 'i', 3232, + 'k', 3197, + 'm', 3199, + 'n', 3242, + 'o', 3169, + 'p', 3197, + 's', 3216, + 't', 3197, + 'u', 3256, + 'w', 3228, + 'x', 3238, + '|', 3580, + '}', 3727, + 0xb5, 3256, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + lookahead == ' ') SKIP(25); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3143: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 3175, - '#', 5521, - '*', 3085, - '+', 3090, - '-', 3091, - '.', 3857, - '/', 3086, - '<', 3109, + '!', 3185, + '#', 5548, + '*', 3093, + '+', 3098, + '-', 3099, + '.', 3184, + '/', 3094, + ';', 3579, + '<', 3119, '=', 454, - '>', 3112, - 'B', 4024, - 'E', 3185, - 'G', 3188, - 'K', 3188, - 'M', 3188, - 'P', 3188, - 'T', 3188, - 'a', 3218, - 'b', 4025, - 'd', 3194, - 'e', 3166, - 'g', 3187, - 'h', 3232, - 'i', 3219, - 'k', 3187, - 'm', 3189, - 'n', 3229, - 'o', 3167, - 'p', 3187, - 's', 3203, - 't', 3187, - 'u', 3244, - 'w', 3215, - 'x', 3225, - '|', 3566, - 0xb5, 3244, + '>', 3122, + 'B', 4038, + 'E', 3195, + 'G', 3198, + 'K', 3198, + 'M', 3198, + 'P', 3198, + 'T', 3198, + '_', 3203, + 'a', 3231, + 'b', 4039, + 'd', 3204, + 'e', 3176, + 'g', 3197, + 'h', 3205, + 'i', 3232, + 'k', 3197, + 'm', 3199, + 'n', 3242, + 'o', 3177, + 'p', 3197, + 's', 3216, + 't', 3197, + 'u', 3256, + 'w', 3228, + 'x', 3238, + '|', 3580, + '}', 3727, + 0xb5, 3256, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + lookahead == ' ') SKIP(26); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3144: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 3175, - '#', 5521, - '*', 3085, - '+', 3090, - '-', 3091, - '/', 3086, - ';', 3565, - '<', 3109, + '!', 3185, + '#', 5548, + '*', 3093, + '+', 3098, + '-', 3099, + '.', 3184, + '/', 3094, + ';', 3579, + '<', 3119, '=', 454, - '>', 3112, - 'a', 3218, - 'b', 3211, - 'e', 3163, - 'i', 3219, - 'm', 3226, - 'n', 3230, - 'o', 3159, - 's', 3248, - 'x', 3225, - '|', 3566, - '}', 3713, + '>', 3122, + 'B', 4038, + 'E', 3195, + 'G', 3198, + 'K', 3198, + 'M', 3198, + 'P', 3198, + 'T', 3198, + 'a', 3231, + 'b', 4039, + 'd', 3204, + 'e', 3168, + 'g', 3197, + 'h', 3205, + 'i', 3232, + 'k', 3197, + 'm', 3199, + 'n', 3242, + 'o', 3169, + 'p', 3197, + 's', 3216, + 't', 3197, + 'u', 3256, + 'w', 3228, + 'x', 3238, + '|', 3580, + '}', 3727, + 0xb5, 3256, ); if (lookahead == '\t' || lookahead == ' ') SKIP(25); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3145: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 3175, - '#', 5521, - '*', 3085, - '+', 3090, - '-', 3091, - '/', 3086, - ';', 3565, - '<', 3109, + '!', 3185, + '#', 5548, + '*', 3093, + '+', 3098, + '-', 3099, + '.', 3184, + '/', 3094, + ';', 3579, + '<', 3119, '=', 454, - '>', 3112, - 'a', 3218, - 'b', 3211, - 'e', 3165, - 'i', 3219, - 'm', 3226, - 'n', 3230, - 'o', 3167, - 's', 3248, - 'x', 3225, - '|', 3566, - '}', 3713, + '>', 3122, + 'B', 4038, + 'E', 3195, + 'G', 3198, + 'K', 3198, + 'M', 3198, + 'P', 3198, + 'T', 3198, + 'a', 3231, + 'b', 4039, + 'd', 3204, + 'e', 3176, + 'g', 3197, + 'h', 3205, + 'i', 3232, + 'k', 3197, + 'm', 3199, + 'n', 3242, + 'o', 3177, + 'p', 3197, + 's', 3216, + 't', 3197, + 'u', 3256, + 'w', 3228, + 'x', 3238, + '|', 3580, + '}', 3727, + 0xb5, 3256, ); if (lookahead == '\t' || lookahead == ' ') SKIP(26); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3146: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 3175, - '#', 5521, - '*', 3085, - '+', 3090, - '-', 3091, - '/', 3086, - '<', 3109, + '!', 3185, + '#', 5548, + '*', 3093, + '+', 3098, + '-', 3099, + '.', 3184, + '/', 3094, + ';', 3579, + '<', 3119, '=', 454, - '>', 3112, - 'a', 3218, - 'b', 3211, - 'e', 3163, - 'i', 3219, - 'm', 3226, - 'n', 3230, - 'o', 3159, - 's', 3248, - 'x', 3225, - '|', 3566, + '>', 3122, + 'B', 4038, + 'E', 3198, + 'G', 3198, + 'K', 3198, + 'M', 3198, + 'P', 3198, + 'T', 3198, + 'a', 3231, + 'b', 4039, + 'd', 3204, + 'e', 3172, + 'g', 3197, + 'h', 3205, + 'i', 3232, + 'k', 3197, + 'm', 3199, + 'n', 3242, + 'o', 3169, + 'p', 3197, + 's', 3216, + 't', 3197, + 'u', 3256, + 'w', 3228, + 'x', 3238, + '|', 3580, + '}', 3727, + 0xb5, 3256, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + lookahead == ' ') SKIP(25); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3147: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 3175, - '#', 5521, - '*', 3085, - '+', 3090, - '-', 3091, - '/', 3086, - '<', 3109, + '!', 3185, + '#', 5548, + '*', 3093, + '+', 3098, + '-', 3099, + '.', 3184, + '/', 3094, + ';', 3579, + '<', 3119, '=', 454, - '>', 3112, - 'a', 3218, - 'b', 3211, - 'e', 3165, - 'i', 3219, - 'm', 3226, - 'n', 3230, - 'o', 3167, - 's', 3248, - 'x', 3225, - '|', 3566, + '>', 3122, + 'B', 4038, + 'E', 3198, + 'G', 3198, + 'K', 3198, + 'M', 3198, + 'P', 3198, + 'T', 3198, + 'a', 3231, + 'b', 4039, + 'd', 3204, + 'e', 3174, + 'g', 3197, + 'h', 3205, + 'i', 3232, + 'k', 3197, + 'm', 3199, + 'n', 3242, + 'o', 3177, + 'p', 3197, + 's', 3216, + 't', 3197, + 'u', 3256, + 'w', 3228, + 'x', 3238, + '|', 3580, + '}', 3727, + 0xb5, 3256, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + lookahead == ' ') SKIP(26); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3148: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 3175, - '#', 5521, - '*', 3085, - '+', 3090, - '-', 3091, - '.', 3843, - '/', 3086, - ':', 4098, - '<', 3109, + '\n', 3576, + '\r', 1, + '!', 3185, + '#', 5548, + '*', 3093, + '+', 3098, + '-', 3099, + '.', 3184, + '/', 3094, + '<', 3119, '=', 454, - '>', 3112, - 'B', 4024, - 'E', 3185, - 'G', 3188, - 'K', 3188, - 'M', 3188, - 'P', 3188, - 'T', 3188, - 'a', 3218, - 'b', 4025, - 'd', 3194, - 'e', 3184, - 'g', 3187, - 'h', 3232, - 'i', 3219, - 'k', 3187, - 'm', 3189, - 'n', 3229, - 'o', 3233, - 'p', 3187, - 's', 3203, - 't', 3187, - 'u', 3244, - 'w', 3215, - 'x', 3225, - 0xb5, 3244, + '>', 3122, + 'B', 4038, + 'E', 3195, + 'G', 3198, + 'K', 3198, + 'M', 3198, + 'P', 3198, + 'T', 3198, + '_', 3203, + 'a', 3231, + 'b', 4039, + 'd', 3204, + 'e', 3168, + 'g', 3197, + 'h', 3205, + 'i', 3232, + 'k', 3197, + 'm', 3199, + 'n', 3242, + 'o', 3169, + 'p', 3197, + 's', 3216, + 't', 3197, + 'u', 3256, + 'w', 3228, + 'x', 3238, + '|', 3580, + 0xb5, 3256, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(347); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + lookahead == ' ') SKIP(27); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3149: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 3175, - '#', 5521, - '*', 3085, - '+', 3090, - '-', 3091, - '.', 3843, - '/', 3086, - '<', 3109, + '\n', 3576, + '\r', 1, + '!', 3185, + '#', 5548, + '*', 3093, + '+', 3098, + '-', 3099, + '.', 3184, + '/', 3094, + '<', 3119, '=', 454, - '>', 3112, - 'B', 4024, - 'E', 3185, - 'G', 3188, - 'K', 3188, - 'M', 3188, - 'P', 3188, - 'T', 3188, - 'a', 3218, - 'b', 4025, - 'd', 3194, - 'e', 3184, - 'g', 3187, - 'h', 3232, - 'i', 3219, - 'k', 3187, - 'm', 3189, - 'n', 3229, - 'o', 3233, - 'p', 3187, - 's', 3203, - 't', 3187, - 'u', 3244, - 'w', 3215, - 'x', 3225, - 0xb5, 3244, + '>', 3122, + 'B', 4038, + 'E', 3195, + 'G', 3198, + 'K', 3198, + 'M', 3198, + 'P', 3198, + 'T', 3198, + '_', 3203, + 'a', 3231, + 'b', 4039, + 'd', 3204, + 'e', 3176, + 'g', 3197, + 'h', 3205, + 'i', 3232, + 'k', 3197, + 'm', 3199, + 'n', 3242, + 'o', 3177, + 'p', 3197, + 's', 3216, + 't', 3197, + 'u', 3256, + 'w', 3228, + 'x', 3238, + '|', 3580, + 0xb5, 3256, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(362); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + lookahead == ' ') SKIP(28); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3150: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 3175, - '#', 5521, - '*', 3085, - '+', 3090, - '-', 3091, - '/', 3086, - ':', 4098, - '<', 3109, + '\n', 3576, + '\r', 1, + '!', 3185, + '#', 5548, + '*', 3093, + '+', 3098, + '-', 3099, + '.', 3184, + '/', 3094, + '<', 3119, '=', 454, - '>', 3112, - 'B', 4024, - 'E', 3185, - 'G', 3188, - 'K', 3188, - 'M', 3188, - 'P', 3188, - 'T', 3188, - '_', 3190, - 'a', 3218, - 'b', 4025, - 'd', 3194, - 'e', 3184, - 'g', 3187, - 'h', 3232, - 'i', 3219, - 'k', 3187, - 'm', 3189, - 'n', 3229, - 'o', 3233, - 'p', 3187, - 's', 3203, - 't', 3187, - 'u', 3244, - 'w', 3215, - 'x', 3225, - 0xb5, 3244, + '>', 3122, + 'B', 4038, + 'E', 3195, + 'G', 3198, + 'K', 3198, + 'M', 3198, + 'P', 3198, + 'T', 3198, + 'a', 3231, + 'b', 4039, + 'd', 3204, + 'e', 3168, + 'g', 3197, + 'h', 3205, + 'i', 3232, + 'k', 3197, + 'm', 3199, + 'n', 3242, + 'o', 3169, + 'p', 3197, + 's', 3216, + 't', 3197, + 'u', 3256, + 'w', 3228, + 'x', 3238, + '|', 3580, + 0xb5, 3256, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(347); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + lookahead == ' ') SKIP(27); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3151: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 3175, - '#', 5521, - '*', 3085, - '+', 3090, - '-', 3091, - '/', 3086, - ':', 4098, - '<', 3109, + '\n', 3576, + '\r', 1, + '!', 3185, + '#', 5548, + '*', 3093, + '+', 3098, + '-', 3099, + '.', 3184, + '/', 3094, + '<', 3119, '=', 454, - '>', 3112, - 'B', 4024, - 'E', 3185, - 'G', 3188, - 'K', 3188, - 'M', 3188, - 'P', 3188, - 'T', 3188, - 'a', 3218, - 'b', 4025, - 'd', 3194, - 'e', 3184, - 'g', 3187, - 'h', 3232, - 'i', 3219, - 'k', 3187, - 'm', 3189, - 'n', 3229, - 'o', 3233, - 'p', 3187, - 's', 3203, - 't', 3187, - 'u', 3244, - 'w', 3215, - 'x', 3225, - 0xb5, 3244, + '>', 3122, + 'B', 4038, + 'E', 3195, + 'G', 3198, + 'K', 3198, + 'M', 3198, + 'P', 3198, + 'T', 3198, + 'a', 3231, + 'b', 4039, + 'd', 3204, + 'e', 3176, + 'g', 3197, + 'h', 3205, + 'i', 3232, + 'k', 3197, + 'm', 3199, + 'n', 3242, + 'o', 3177, + 'p', 3197, + 's', 3216, + 't', 3197, + 'u', 3256, + 'w', 3228, + 'x', 3238, + '|', 3580, + 0xb5, 3256, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(347); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + lookahead == ' ') SKIP(28); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3152: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 3175, - '#', 5521, - '*', 3085, - '+', 3090, - '-', 3091, - '/', 3086, - ':', 4098, - '<', 3109, + '\n', 3576, + '\r', 1, + '!', 3185, + '#', 5548, + '*', 3093, + '+', 3098, + '-', 3099, + '.', 3184, + '/', 3094, + '<', 3119, '=', 454, - '>', 3112, - 'B', 4024, - 'E', 3188, - 'G', 3188, - 'K', 3188, - 'M', 3188, - 'P', 3188, - 'T', 3188, - 'a', 3218, - 'b', 4025, - 'd', 3194, - 'e', 3186, - 'g', 3187, - 'h', 3232, - 'i', 3219, - 'k', 3187, - 'm', 3189, - 'n', 3229, - 'o', 3233, - 'p', 3187, - 's', 3203, - 't', 3187, - 'u', 3244, - 'w', 3215, - 'x', 3225, - 0xb5, 3244, + '>', 3122, + 'B', 4038, + 'E', 3198, + 'G', 3198, + 'K', 3198, + 'M', 3198, + 'P', 3198, + 'T', 3198, + 'a', 3231, + 'b', 4039, + 'd', 3204, + 'e', 3172, + 'g', 3197, + 'h', 3205, + 'i', 3232, + 'k', 3197, + 'm', 3199, + 'n', 3242, + 'o', 3169, + 'p', 3197, + 's', 3216, + 't', 3197, + 'u', 3256, + 'w', 3228, + 'x', 3238, + '|', 3580, + 0xb5, 3256, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(347); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + lookahead == ' ') SKIP(27); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3153: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 3175, - '#', 5521, - '*', 3085, - '+', 3090, - '-', 3091, - '/', 3086, - '<', 3109, + '\n', 3576, + '\r', 1, + '!', 3185, + '#', 5548, + '*', 3093, + '+', 3098, + '-', 3099, + '.', 3184, + '/', 3094, + '<', 3119, '=', 454, - '>', 3112, - 'B', 4024, - 'E', 3185, - 'G', 3188, - 'K', 3188, - 'M', 3188, - 'P', 3188, - 'T', 3188, - '_', 3190, - 'a', 3218, - 'b', 4025, - 'd', 3194, - 'e', 3184, - 'g', 3187, - 'h', 3232, - 'i', 3219, - 'k', 3187, - 'm', 3189, - 'n', 3229, - 'o', 3233, - 'p', 3187, - 's', 3203, - 't', 3187, - 'u', 3244, - 'w', 3215, - 'x', 3225, - 0xb5, 3244, + '>', 3122, + 'B', 4038, + 'E', 3198, + 'G', 3198, + 'K', 3198, + 'M', 3198, + 'P', 3198, + 'T', 3198, + 'a', 3231, + 'b', 4039, + 'd', 3204, + 'e', 3174, + 'g', 3197, + 'h', 3205, + 'i', 3232, + 'k', 3197, + 'm', 3199, + 'n', 3242, + 'o', 3177, + 'p', 3197, + 's', 3216, + 't', 3197, + 'u', 3256, + 'w', 3228, + 'x', 3238, + '|', 3580, + 0xb5, 3256, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(362); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + lookahead == ' ') SKIP(28); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3154: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 3175, - '#', 5521, - '*', 3085, - '+', 3090, - '-', 3091, - '/', 3086, - '<', 3109, + '\n', 3576, + '\r', 1, + '!', 3185, + '#', 5548, + '*', 3093, + '+', 3098, + '-', 3099, + '/', 3094, + ';', 3579, + '<', 3119, '=', 454, - '>', 3112, - 'B', 4024, - 'E', 3185, - 'G', 3188, - 'K', 3188, - 'M', 3188, - 'P', 3188, - 'T', 3188, - 'a', 3218, - 'b', 4025, - 'd', 3194, - 'e', 3184, - 'g', 3187, - 'h', 3232, - 'i', 3219, - 'k', 3187, - 'm', 3189, - 'n', 3229, - 'o', 3233, - 'p', 3187, - 's', 3203, - 't', 3187, - 'u', 3244, - 'w', 3215, - 'x', 3225, - 0xb5, 3244, + '>', 3122, + 'a', 3231, + 'b', 3225, + 'e', 3173, + 'h', 3206, + 'i', 3232, + 'm', 3239, + 'n', 3243, + 'o', 3169, + 's', 3262, + 'x', 3238, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(362); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + lookahead == ' ') SKIP(25); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3155: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 3175, - '#', 5521, - '*', 3085, - '+', 3090, - '-', 3091, - '/', 3086, - '<', 3109, + '\n', 3576, + '\r', 1, + '!', 3185, + '#', 5548, + '*', 3093, + '+', 3098, + '-', 3099, + '/', 3094, + ';', 3579, + '<', 3119, '=', 454, - '>', 3112, - 'B', 4024, - 'E', 3188, - 'G', 3188, - 'K', 3188, - 'M', 3188, - 'P', 3188, - 'T', 3188, - 'a', 3218, - 'b', 4025, - 'd', 3194, - 'e', 3186, - 'g', 3187, - 'h', 3232, - 'i', 3219, - 'k', 3187, - 'm', 3189, - 'n', 3229, - 'o', 3233, - 'p', 3187, - 's', 3203, - 't', 3187, - 'u', 3244, - 'w', 3215, - 'x', 3225, - 0xb5, 3244, + '>', 3122, + 'a', 3231, + 'b', 3225, + 'e', 3175, + 'h', 3206, + 'i', 3232, + 'm', 3239, + 'n', 3243, + 'o', 3177, + 's', 3262, + 'x', 3238, + '|', 3580, + '}', 3727, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(362); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + lookahead == ' ') SKIP(26); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3156: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 3175, - '#', 5521, - '*', 3085, - '+', 3090, - '-', 3091, - '/', 3086, - '<', 3109, + '\n', 3576, + '\r', 1, + '!', 3185, + '#', 5548, + '*', 3093, + '+', 3098, + '-', 3099, + '/', 3094, + '<', 3119, '=', 454, - '>', 3112, - 'a', 3218, - 'b', 3211, - 'e', 3221, - 'i', 3219, - 'm', 3226, - 'n', 3230, - 'o', 3233, - 's', 3248, - 'x', 3225, + '>', 3122, + 'a', 3231, + 'b', 3225, + 'e', 3173, + 'h', 3206, + 'i', 3232, + 'm', 3239, + 'n', 3243, + 'o', 3169, + 's', 3262, + 'x', 3238, + '|', 3580, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(362); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + lookahead == ' ') SKIP(27); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3157: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '#') ADVANCE(5521); + ADVANCE_MAP( + '\n', 3576, + '\r', 1, + '!', 3185, + '#', 5548, + '*', 3093, + '+', 3098, + '-', 3099, + '/', 3094, + '<', 3119, + '=', 454, + '>', 3122, + 'a', 3231, + 'b', 3225, + 'e', 3175, + 'h', 3206, + 'i', 3232, + 'm', 3239, + 'n', 3243, + 'o', 3177, + 's', 3262, + 'x', 3238, + '|', 3580, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(362); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + lookahead == ' ') SKIP(28); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3158: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '+', 3191, - '-', 3193, - '>', 4256, - 'I', 3262, - '_', 3193, - 'i', 3262, - 'n', 3202, - 'r', 3234, - 'B', 4024, - 'b', 4024, + '!', 3185, + '#', 5548, + '*', 3093, + '+', 3098, + '-', 3099, + '.', 3857, + '/', 3094, + ':', 4116, + '<', 3119, + '=', 454, + '>', 3122, + 'B', 4038, + 'E', 3195, + 'G', 3198, + 'K', 3198, + 'M', 3198, + 'P', 3198, + 'T', 3198, + 'a', 3231, + 'b', 4039, + 'd', 3204, + 'e', 3194, + 'g', 3197, + 'h', 3205, + 'i', 3232, + 'k', 3197, + 'm', 3199, + 'n', 3242, + 'o', 3245, + 'p', 3197, + 's', 3216, + 't', 3197, + 'u', 3256, + 'w', 3228, + 'x', 3238, + 0xb5, 3256, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == '\t' || + lookahead == ' ') SKIP(347); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3159: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(3204); - if (lookahead == '>') ADVANCE(4261); - if (lookahead == 'r') ADVANCE(3101); - if (lookahead == 'u') ADVANCE(3250); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + ADVANCE_MAP( + '!', 3185, + '#', 5548, + '*', 3093, + '+', 3098, + '-', 3099, + '.', 3857, + '/', 3094, + '<', 3119, + '=', 454, + '>', 3122, + 'B', 4038, + 'E', 3195, + 'G', 3198, + 'K', 3198, + 'M', 3198, + 'P', 3198, + 'T', 3198, + 'a', 3231, + 'b', 4039, + 'd', 3204, + 'e', 3194, + 'g', 3197, + 'h', 3205, + 'i', 3232, + 'k', 3197, + 'm', 3199, + 'n', 3242, + 'o', 3245, + 'p', 3197, + 's', 3216, + 't', 3197, + 'u', 3256, + 'w', 3228, + 'x', 3238, + 0xb5, 3256, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(362); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3160: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(3224); - if (lookahead == '>') ADVANCE(4246); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + ADVANCE_MAP( + '!', 3185, + '#', 5548, + '*', 3093, + '+', 3098, + '-', 3099, + '/', 3094, + ':', 4116, + '<', 3119, + '=', 454, + '>', 3122, + 'B', 4038, + 'E', 3195, + 'G', 3198, + 'K', 3198, + 'M', 3198, + 'P', 3198, + 'T', 3198, + '_', 3203, + 'a', 3231, + 'b', 4039, + 'd', 3204, + 'e', 3194, + 'g', 3197, + 'h', 3205, + 'i', 3232, + 'k', 3197, + 'm', 3199, + 'n', 3242, + 'o', 3245, + 'p', 3197, + 's', 3216, + 't', 3197, + 'u', 3256, + 'w', 3228, + 'x', 3238, + 0xb5, 3256, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(347); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3161: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(3205); - if (lookahead == '>') ADVANCE(4251); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + ADVANCE_MAP( + '!', 3185, + '#', 5548, + '*', 3093, + '+', 3098, + '-', 3099, + '/', 3094, + ':', 4116, + '<', 3119, + '=', 454, + '>', 3122, + 'B', 4038, + 'E', 3195, + 'G', 3198, + 'K', 3198, + 'M', 3198, + 'P', 3198, + 'T', 3198, + 'a', 3231, + 'b', 4039, + 'd', 3204, + 'e', 3194, + 'g', 3197, + 'h', 3205, + 'i', 3232, + 'k', 3197, + 'm', 3199, + 'n', 3242, + 'o', 3245, + 'p', 3197, + 's', 3216, + 't', 3197, + 'u', 3256, + 'w', 3228, + 'x', 3238, + 0xb5, 3256, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(347); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3162: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '+', 3223, - '>', 4256, - 'I', 3262, - 'i', 3262, - 'n', 3202, - 'r', 3234, - 'B', 4024, - 'b', 4024, + '!', 3185, + '#', 5548, + '*', 3093, + '+', 3098, + '-', 3099, + '/', 3094, + ':', 4116, + '<', 3119, + '=', 454, + '>', 3122, + 'B', 4038, + 'E', 3198, + 'G', 3198, + 'K', 3198, + 'M', 3198, + 'P', 3198, + 'T', 3198, + 'a', 3231, + 'b', 4039, + 'd', 3204, + 'e', 3196, + 'g', 3197, + 'h', 3205, + 'i', 3232, + 'k', 3197, + 'm', 3199, + 'n', 3242, + 'o', 3245, + 'p', 3197, + 's', 3216, + 't', 3197, + 'u', 3256, + 'w', 3228, + 'x', 3238, + 0xb5, 3256, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == '\t' || + lookahead == ' ') SKIP(347); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3163: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(3223); - if (lookahead == '>') ADVANCE(4256); - if (lookahead == 'n') ADVANCE(3202); - if (lookahead == 'r') ADVANCE(3234); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + ADVANCE_MAP( + '!', 3185, + '#', 5548, + '*', 3093, + '+', 3098, + '-', 3099, + '/', 3094, + '<', 3119, + '=', 454, + '>', 3122, + 'B', 4038, + 'E', 3195, + 'G', 3198, + 'K', 3198, + 'M', 3198, + 'P', 3198, + 'T', 3198, + '_', 3203, + 'a', 3231, + 'b', 4039, + 'd', 3204, + 'e', 3194, + 'g', 3197, + 'h', 3205, + 'i', 3232, + 'k', 3197, + 'm', 3199, + 'n', 3242, + 'o', 3245, + 'p', 3197, + 's', 3216, + 't', 3197, + 'u', 3256, + 'w', 3228, + 'x', 3238, + 0xb5, 3256, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(362); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3164: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '+', 3227, - '>', 1573, - 'I', 3262, - 'i', 3262, - 'n', 3202, - 'r', 3239, - 'B', 4024, - 'b', 4024, + '!', 3185, + '#', 5548, + '*', 3093, + '+', 3098, + '-', 3099, + '/', 3094, + '<', 3119, + '=', 454, + '>', 3122, + 'B', 4038, + 'E', 3195, + 'G', 3198, + 'K', 3198, + 'M', 3198, + 'P', 3198, + 'T', 3198, + 'a', 3231, + 'b', 4039, + 'd', 3204, + 'e', 3194, + 'g', 3197, + 'h', 3205, + 'i', 3232, + 'k', 3197, + 'm', 3199, + 'n', 3242, + 'o', 3245, + 'p', 3197, + 's', 3216, + 't', 3197, + 'u', 3256, + 'w', 3228, + 'x', 3238, + 0xb5, 3256, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == '\t' || + lookahead == ' ') SKIP(362); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3165: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(3227); - if (lookahead == '>') ADVANCE(1573); - if (lookahead == 'n') ADVANCE(3202); - if (lookahead == 'r') ADVANCE(3239); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + ADVANCE_MAP( + '!', 3185, + '#', 5548, + '*', 3093, + '+', 3098, + '-', 3099, + '/', 3094, + '<', 3119, + '=', 454, + '>', 3122, + 'B', 4038, + 'E', 3198, + 'G', 3198, + 'K', 3198, + 'M', 3198, + 'P', 3198, + 'T', 3198, + 'a', 3231, + 'b', 4039, + 'd', 3204, + 'e', 3196, + 'g', 3197, + 'h', 3205, + 'i', 3232, + 'k', 3197, + 'm', 3199, + 'n', 3242, + 'o', 3245, + 'p', 3197, + 's', 3216, + 't', 3197, + 'u', 3256, + 'w', 3228, + 'x', 3238, + 0xb5, 3256, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(362); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3166: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '+', 3192, - '-', 3193, - '>', 1573, - 'I', 3262, - '_', 3193, - 'i', 3262, - 'n', 3202, - 'r', 3239, - 'B', 4024, - 'b', 4024, + '!', 3185, + '#', 5548, + '*', 3093, + '+', 3098, + '-', 3099, + '/', 3094, + '<', 3119, + '=', 454, + '>', 3122, + 'a', 3231, + 'b', 3225, + 'e', 3234, + 'h', 3206, + 'i', 3232, + 'm', 3239, + 'n', 3243, + 'o', 3245, + 's', 3262, + 'x', 3238, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == '\t' || + lookahead == ' ') SKIP(362); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3167: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(3206); - if (lookahead == '>') ADVANCE(1574); - if (lookahead == 'r') ADVANCE(3101); - if (lookahead == 'u') ADVANCE(3254); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '\t' || + lookahead == ' ') SKIP(362); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3168: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(3231); - if (lookahead == '>') ADVANCE(1576); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + ADVANCE_MAP( + '+', 3200, + '-', 3202, + '>', 4274, + 'I', 3276, + '_', 3202, + 'i', 3276, + 'n', 3215, + 'r', 3246, + 'B', 4038, + 'b', 4038, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3169: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(3207); - if (lookahead == '>') ADVANCE(1578); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == '+') ADVANCE(3217); + if (lookahead == '>') ADVANCE(4279); + if (lookahead == 'r') ADVANCE(3109); + if (lookahead == 'u') ADVANCE(3264); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3170: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '-') ADVANCE(3196); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == '+') ADVANCE(3237); + if (lookahead == '>') ADVANCE(4264); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3171: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '-') ADVANCE(3212); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == '+') ADVANCE(3218); + if (lookahead == '>') ADVANCE(4269); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3172: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '-') ADVANCE(3259); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + ADVANCE_MAP( + '+', 3236, + '>', 4274, + 'I', 3276, + 'i', 3276, + 'n', 3215, + 'r', 3246, + 'B', 4038, + 'b', 4038, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3173: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '-') ADVANCE(3260); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == '+') ADVANCE(3236); + if (lookahead == '>') ADVANCE(4274); + if (lookahead == 'n') ADVANCE(3215); + if (lookahead == 'r') ADVANCE(3246); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3174: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '.') ADVANCE(3842); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + ADVANCE_MAP( + '+', 3240, + '>', 1577, + 'I', 3276, + 'i', 3276, + 'n', 3215, + 'r', 3251, + 'B', 4038, + 'b', 4038, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3175: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '=') ADVANCE(3107); - if (lookahead == '~') ADVANCE(3095); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == '+') ADVANCE(3240); + if (lookahead == '>') ADVANCE(1577); + if (lookahead == 'n') ADVANCE(3215); + if (lookahead == 'r') ADVANCE(3251); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3176: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(4281); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + ADVANCE_MAP( + '+', 3201, + '-', 3202, + '>', 1577, + 'I', 3276, + '_', 3202, + 'i', 3276, + 'n', 3215, + 'r', 3251, + 'B', 4038, + 'b', 4038, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3177: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(4276); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == '+') ADVANCE(3219); + if (lookahead == '>') ADVANCE(1578); + if (lookahead == 'r') ADVANCE(3109); + if (lookahead == 'u') ADVANCE(3268); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3178: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(4266); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == '+') ADVANCE(3244); + if (lookahead == '>') ADVANCE(1580); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3179: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(4271); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == '+') ADVANCE(3220); + if (lookahead == '>') ADVANCE(1582); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3180: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(1575); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == '-') ADVANCE(3209); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3181: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(1577); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == '-') ADVANCE(3224); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3182: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(1579); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == '-') ADVANCE(3273); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3183: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(1580); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == '-') ADVANCE(3274); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3184: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - ADVANCE_MAP( - 'I', 3262, - '_', 3193, - 'i', 3262, - 'n', 3202, - '+', 3193, - '-', 3193, - 'B', 4024, - 'b', 4024, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == '.') ADVANCE(3856); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3185: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'I') ADVANCE(3262); - if (lookahead == '_') ADVANCE(3193); - if (lookahead == 'i') ADVANCE(3197); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3193); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == '=') ADVANCE(3117); + if (lookahead == '~') ADVANCE(3103); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3186: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'I') ADVANCE(3262); - if (lookahead == 'i') ADVANCE(3262); - if (lookahead == 'n') ADVANCE(3202); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == '>') ADVANCE(4299); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3187: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'I') ADVANCE(3262); - if (lookahead == 'i') ADVANCE(3262); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == '>') ADVANCE(4294); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3188: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'I') ADVANCE(3262); - if (lookahead == 'i') ADVANCE(3197); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == '>') ADVANCE(4284); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3189: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'I') ADVANCE(3262); - if (lookahead == 'i') ADVANCE(3217); - if (lookahead == 'o') ADVANCE(3200); - if (lookahead == 's') ADVANCE(4031); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == '>') ADVANCE(4289); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3190: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '_') ADVANCE(3190); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == '>') ADVANCE(1579); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3191: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '_') ADVANCE(3193); - if (lookahead == 'o') ADVANCE(3176); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == '>') ADVANCE(1581); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3192: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '_') ADVANCE(3193); - if (lookahead == 'o') ADVANCE(3180); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == '>') ADVANCE(1583); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3193: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '_') ADVANCE(3193); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == '>') ADVANCE(1584); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3194: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'a') ADVANCE(3261); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + ADVANCE_MAP( + 'I', 3276, + '_', 3202, + 'i', 3276, + 'n', 3215, + '+', 3202, + '-', 3202, + 'B', 4038, + 'b', 4038, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3195: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'a') ADVANCE(3238); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'I') ADVANCE(3276); + if (lookahead == '_') ADVANCE(3202); + if (lookahead == 'i') ADVANCE(3210); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3202); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4038); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3196: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'a') ADVANCE(3222); - if (lookahead == 'o') ADVANCE(3236); - if (lookahead == 's') ADVANCE(3208); - if (lookahead == 'x') ADVANCE(3228); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'I') ADVANCE(3276); + if (lookahead == 'i') ADVANCE(3276); + if (lookahead == 'n') ADVANCE(3215); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3197: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'I') ADVANCE(3276); + if (lookahead == 'i') ADVANCE(3276); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3198: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'c') ADVANCE(4031); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'I') ADVANCE(3276); + if (lookahead == 'i') ADVANCE(3210); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3199: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'd') ADVANCE(3099); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'I') ADVANCE(3276); + if (lookahead == 'i') ADVANCE(3230); + if (lookahead == 'o') ADVANCE(3213); + if (lookahead == 's') ADVANCE(4045); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3200: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'd') ADVANCE(3088); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == '_') ADVANCE(3202); + if (lookahead == 'o') ADVANCE(3186); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3201: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'd') ADVANCE(3096); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == '_') ADVANCE(3202); + if (lookahead == 'o') ADVANCE(3190); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3202: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'd') ADVANCE(3245); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == '_') ADVANCE(3202); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3203: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'e') ADVANCE(3198); - if (lookahead == 't') ADVANCE(3195); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == '_') ADVANCE(3203); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3204: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'e') ADVANCE(3177); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'a') ADVANCE(3275); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3205: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'e') ADVANCE(3241); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'a') ADVANCE(3257); + if (lookahead == 'r') ADVANCE(4045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3206: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'e') ADVANCE(3181); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'a') ADVANCE(3257); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3207: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'e') ADVANCE(3243); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'a') ADVANCE(3250); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3208: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'h') ADVANCE(3216); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'a') ADVANCE(3258); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3209: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'h') ADVANCE(3105); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'a') ADVANCE(3235); + if (lookahead == 'o') ADVANCE(3248); + if (lookahead == 's') ADVANCE(3221); + if (lookahead == 'x') ADVANCE(3241); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3210: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'h') ADVANCE(3104); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3211: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'i') ADVANCE(3247); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'c') ADVANCE(4045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3212: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'i') ADVANCE(3220); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'd') ADVANCE(3107); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3213: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'i') ADVANCE(3251); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'd') ADVANCE(3096); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3214: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'i') ADVANCE(3253); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'd') ADVANCE(3104); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3215: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'k') ADVANCE(4031); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'd') ADVANCE(3259); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3216: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'l') ADVANCE(3092); - if (lookahead == 'r') ADVANCE(3093); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'e') ADVANCE(3211); + if (lookahead == 't') ADVANCE(3207); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3217: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'n') ADVANCE(4031); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'e') ADVANCE(3187); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3218: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'n') ADVANCE(3199); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'e') ADVANCE(3253); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3219: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'n') ADVANCE(3102); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'e') ADVANCE(3191); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3220: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'n') ADVANCE(3103); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'e') ADVANCE(3254); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3221: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'n') ADVANCE(3202); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'h') ADVANCE(3229); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3222: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'n') ADVANCE(3201); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'h') ADVANCE(3115); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3223: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(3176); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'h') ADVANCE(3114); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3224: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(3257); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'h') ADVANCE(3208); + if (lookahead == 'i') ADVANCE(3233); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3225: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(3235); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'i') ADVANCE(3261); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3226: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(3200); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'i') ADVANCE(3265); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3227: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(3180); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'i') ADVANCE(3267); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3228: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(3237); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'k') ADVANCE(4045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3229: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(3249); - if (lookahead == 's') ADVANCE(4031); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'l') ADVANCE(3100); + if (lookahead == 'r') ADVANCE(3101); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3230: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(3249); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'n') ADVANCE(4045); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3231: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(3258); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'n') ADVANCE(3212); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3232: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(4031); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'n') ADVANCE(3110); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3233: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(3101); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'n') ADVANCE(3111); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3234: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(3160); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'n') ADVANCE(3215); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3235: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(3100); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'n') ADVANCE(3214); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3236: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(3098); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'o') ADVANCE(3186); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3237: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(3097); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'o') ADVANCE(3271); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3238: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(3256); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'o') ADVANCE(3247); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3239: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(3168); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'o') ADVANCE(3213); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3240: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(3179); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'o') ADVANCE(3190); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3241: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(3240); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'o') ADVANCE(3249); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3242: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(3183); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'o') ADVANCE(3263); + if (lookahead == 's') ADVANCE(4045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3243: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(3242); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'o') ADVANCE(3263); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3244: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 's') ADVANCE(4031); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'o') ADVANCE(3272); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3245: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 's') ADVANCE(3172); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'r') ADVANCE(3109); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3246: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 's') ADVANCE(3173); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'r') ADVANCE(3170); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3247: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(3170); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'r') ADVANCE(3108); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3248: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(3195); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'r') ADVANCE(3106); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3249: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(3171); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'r') ADVANCE(3105); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3250: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(3161); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'r') ADVANCE(3270); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3251: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(3209); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'r') ADVANCE(3178); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3252: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(3178); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'r') ADVANCE(3189); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3253: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(3210); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'r') ADVANCE(3252); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3254: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(3169); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'r') ADVANCE(3255); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3255: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(3182); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 'r') ADVANCE(3193); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3256: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(3246); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 's') ADVANCE(4045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3257: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'u') ADVANCE(3252); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 's') ADVANCE(3112); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3258: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'u') ADVANCE(3255); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 's') ADVANCE(3113); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3259: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'w') ADVANCE(3213); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 's') ADVANCE(3182); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3260: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'w') ADVANCE(3214); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 's') ADVANCE(3183); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3261: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'y') ADVANCE(4031); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 't') ADVANCE(3180); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3262: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 't') ADVANCE(3207); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3263: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + if (lookahead == 't') ADVANCE(3181); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3264: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(1777); + if (lookahead == 't') ADVANCE(3171); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); + END_STATE(); + case 3265: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 't') ADVANCE(3222); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); + END_STATE(); + case 3266: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 't') ADVANCE(3188); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); + END_STATE(); + case 3267: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 't') ADVANCE(3223); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); + END_STATE(); + case 3268: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 't') ADVANCE(3179); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); + END_STATE(); + case 3269: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 't') ADVANCE(3192); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); + END_STATE(); + case 3270: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 't') ADVANCE(3260); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); + END_STATE(); + case 3271: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'u') ADVANCE(3266); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); + END_STATE(); + case 3272: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'u') ADVANCE(3269); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); + END_STATE(); + case 3273: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'w') ADVANCE(3226); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); + END_STATE(); + case 3274: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'w') ADVANCE(3227); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); + END_STATE(); + case 3275: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'y') ADVANCE(4045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); + END_STATE(); + case 3276: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); + END_STATE(); + case 3277: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); + END_STATE(); + case 3278: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 3175, - '#', 5521, - '*', 3085, - '+', 3090, - '-', 3091, - '.', 3174, - '/', 3086, - ';', 3565, - '<', 3109, + '!', 3185, + '#', 5548, + '*', 3093, + '+', 3098, + '-', 3099, + '.', 3871, + '/', 3094, + ';', 3579, + '<', 3119, '=', 454, - '>', 3112, - 'B', 4024, - 'E', 3185, - 'G', 3188, - 'K', 3188, - 'M', 3188, - 'P', 3188, - 'T', 3188, - '_', 3190, - 'a', 3218, - 'b', 4025, - 'd', 3194, - 'e', 3158, - 'g', 3187, - 'h', 3232, - 'i', 3219, - 'k', 3187, - 'm', 3189, - 'n', 3229, - 'o', 3159, - 'p', 3187, - 's', 3203, - 't', 3187, - 'u', 3244, - 'w', 3215, - 'x', 3225, - '|', 3566, - 0xb5, 3244, + '>', 3122, + 'B', 4038, + 'E', 3195, + 'G', 3198, + 'K', 3198, + 'M', 3198, + 'P', 3198, + 'T', 3198, + 'a', 3231, + 'b', 4039, + 'd', 3204, + 'e', 3168, + 'g', 3197, + 'h', 3205, + 'i', 3232, + 'k', 3197, + 'm', 3199, + 'n', 3242, + 'o', 3169, + 'p', 3197, + 's', 3216, + 't', 3197, + 'u', 3256, + 'w', 3228, + 'x', 3238, + '|', 3580, + 0xb5, 3256, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + lookahead == ' ') SKIP(1675); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); - case 3265: + case 3279: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(1777); + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 3175, - '#', 5521, - '*', 3085, - '+', 3090, - '-', 3091, - '.', 3174, - '/', 3086, - ';', 3565, - '<', 3109, + '!', 3185, + '#', 5548, + '*', 3093, + '+', 3098, + '-', 3099, + '.', 3871, + '/', 3094, + ';', 3579, + '<', 3119, '=', 454, - '>', 3112, - 'B', 4024, - 'E', 3185, - 'G', 3188, - 'K', 3188, - 'M', 3188, - 'P', 3188, - 'T', 3188, - '_', 3190, - 'a', 3218, - 'b', 4025, - 'd', 3194, - 'e', 3166, - 'g', 3187, - 'h', 3232, - 'i', 3219, - 'k', 3187, - 'm', 3189, - 'n', 3229, - 'o', 3167, - 'p', 3187, - 's', 3203, - 't', 3187, - 'u', 3244, - 'w', 3215, - 'x', 3225, - '|', 3566, - 0xb5, 3244, + '>', 3122, + 'B', 4038, + 'E', 3195, + 'G', 3198, + 'K', 3198, + 'M', 3198, + 'P', 3198, + 'T', 3198, + 'a', 3231, + 'b', 4039, + 'd', 3204, + 'e', 3176, + 'g', 3197, + 'h', 3205, + 'i', 3232, + 'k', 3197, + 'm', 3199, + 'n', 3242, + 'o', 3177, + 'p', 3197, + 's', 3216, + 't', 3197, + 'u', 3256, + 'w', 3228, + 'x', 3238, + '|', 3580, + 0xb5, 3256, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1672); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + lookahead == ' ') SKIP(1676); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); - case 3266: + case 3280: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(1777); + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 3175, - '#', 5521, - '*', 3085, - '+', 3090, - '-', 3091, - '.', 3174, - '/', 3086, - ';', 3565, - '<', 3109, + '!', 3185, + '#', 5548, + '*', 3093, + '+', 3098, + '-', 3099, + '.', 3184, + '/', 3094, + ';', 3579, + '<', 3119, '=', 454, - '>', 3112, - 'B', 4024, - 'E', 3185, - 'G', 3188, - 'K', 3188, - 'M', 3188, - 'P', 3188, - 'T', 3188, - 'a', 3218, - 'b', 4025, - 'd', 3194, - 'e', 3158, - 'g', 3187, - 'h', 3232, - 'i', 3219, - 'k', 3187, - 'm', 3189, - 'n', 3229, - 'o', 3159, - 'p', 3187, - 's', 3203, - 't', 3187, - 'u', 3244, - 'w', 3215, - 'x', 3225, - '|', 3566, - 0xb5, 3244, + '>', 3122, + 'B', 4038, + 'E', 3195, + 'G', 3198, + 'K', 3198, + 'M', 3198, + 'P', 3198, + 'T', 3198, + '_', 3203, + 'a', 3231, + 'b', 4039, + 'd', 3204, + 'e', 3168, + 'g', 3197, + 'h', 3205, + 'i', 3232, + 'k', 3197, + 'm', 3199, + 'n', 3242, + 'o', 3169, + 'p', 3197, + 's', 3216, + 't', 3197, + 'u', 3256, + 'w', 3228, + 'x', 3238, + '|', 3580, + 0xb5, 3256, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1671); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + lookahead == ' ') SKIP(1675); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); - case 3267: + case 3281: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(1777); + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 3175, - '#', 5521, - '*', 3085, - '+', 3090, - '-', 3091, - '.', 3174, - '/', 3086, - ';', 3565, - '<', 3109, + '!', 3185, + '#', 5548, + '*', 3093, + '+', 3098, + '-', 3099, + '.', 3184, + '/', 3094, + ';', 3579, + '<', 3119, '=', 454, - '>', 3112, - 'B', 4024, - 'E', 3185, - 'G', 3188, - 'K', 3188, - 'M', 3188, - 'P', 3188, - 'T', 3188, - 'a', 3218, - 'b', 4025, - 'd', 3194, - 'e', 3166, - 'g', 3187, - 'h', 3232, - 'i', 3219, - 'k', 3187, - 'm', 3189, - 'n', 3229, - 'o', 3167, - 'p', 3187, - 's', 3203, - 't', 3187, - 'u', 3244, - 'w', 3215, - 'x', 3225, - '|', 3566, - 0xb5, 3244, + '>', 3122, + 'B', 4038, + 'E', 3195, + 'G', 3198, + 'K', 3198, + 'M', 3198, + 'P', 3198, + 'T', 3198, + '_', 3203, + 'a', 3231, + 'b', 4039, + 'd', 3204, + 'e', 3176, + 'g', 3197, + 'h', 3205, + 'i', 3232, + 'k', 3197, + 'm', 3199, + 'n', 3242, + 'o', 3177, + 'p', 3197, + 's', 3216, + 't', 3197, + 'u', 3256, + 'w', 3228, + 'x', 3238, + '|', 3580, + 0xb5, 3256, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1672); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + lookahead == ' ') SKIP(1676); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); - case 3268: + case 3282: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(1777); + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 3175, - '#', 5521, - '*', 3085, - '+', 3090, - '-', 3091, - '.', 3174, - '/', 3086, - ';', 3565, - '<', 3109, + '!', 3185, + '#', 5548, + '*', 3093, + '+', 3098, + '-', 3099, + '.', 3184, + '/', 3094, + ';', 3579, + '<', 3119, '=', 454, - '>', 3112, - 'B', 4024, - 'E', 3188, - 'G', 3188, - 'K', 3188, - 'M', 3188, - 'P', 3188, - 'T', 3188, - 'a', 3218, - 'b', 4025, - 'd', 3194, - 'e', 3162, - 'g', 3187, - 'h', 3232, - 'i', 3219, - 'k', 3187, - 'm', 3189, - 'n', 3229, - 'o', 3159, - 'p', 3187, - 's', 3203, - 't', 3187, - 'u', 3244, - 'w', 3215, - 'x', 3225, - '|', 3566, - 0xb5, 3244, + '>', 3122, + 'B', 4038, + 'E', 3195, + 'G', 3198, + 'K', 3198, + 'M', 3198, + 'P', 3198, + 'T', 3198, + 'a', 3231, + 'b', 4039, + 'd', 3204, + 'e', 3168, + 'g', 3197, + 'h', 3205, + 'i', 3232, + 'k', 3197, + 'm', 3199, + 'n', 3242, + 'o', 3169, + 'p', 3197, + 's', 3216, + 't', 3197, + 'u', 3256, + 'w', 3228, + 'x', 3238, + '|', 3580, + 0xb5, 3256, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1671); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + lookahead == ' ') SKIP(1675); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); - case 3269: + case 3283: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(1777); + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 3175, - '#', 5521, - '*', 3085, - '+', 3090, - '-', 3091, - '.', 3174, - '/', 3086, - ';', 3565, - '<', 3109, + '!', 3185, + '#', 5548, + '*', 3093, + '+', 3098, + '-', 3099, + '.', 3184, + '/', 3094, + ';', 3579, + '<', 3119, '=', 454, - '>', 3112, - 'B', 4024, - 'E', 3188, - 'G', 3188, - 'K', 3188, - 'M', 3188, - 'P', 3188, - 'T', 3188, - 'a', 3218, - 'b', 4025, - 'd', 3194, - 'e', 3164, - 'g', 3187, - 'h', 3232, - 'i', 3219, - 'k', 3187, - 'm', 3189, - 'n', 3229, - 'o', 3167, - 'p', 3187, - 's', 3203, - 't', 3187, - 'u', 3244, - 'w', 3215, - 'x', 3225, - '|', 3566, - 0xb5, 3244, + '>', 3122, + 'B', 4038, + 'E', 3195, + 'G', 3198, + 'K', 3198, + 'M', 3198, + 'P', 3198, + 'T', 3198, + 'a', 3231, + 'b', 4039, + 'd', 3204, + 'e', 3176, + 'g', 3197, + 'h', 3205, + 'i', 3232, + 'k', 3197, + 'm', 3199, + 'n', 3242, + 'o', 3177, + 'p', 3197, + 's', 3216, + 't', 3197, + 'u', 3256, + 'w', 3228, + 'x', 3238, + '|', 3580, + 0xb5, 3256, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1672); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + lookahead == ' ') SKIP(1676); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); - case 3270: + case 3284: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(1777); + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 3175, - '#', 5521, - '*', 3085, - '+', 3090, - '-', 3091, - '.', 3857, - '/', 3086, - ';', 3565, - '<', 3109, + '!', 3185, + '#', 5548, + '*', 3093, + '+', 3098, + '-', 3099, + '.', 3184, + '/', 3094, + ';', 3579, + '<', 3119, '=', 454, - '>', 3112, - 'B', 4024, - 'E', 3185, - 'G', 3188, - 'K', 3188, - 'M', 3188, - 'P', 3188, - 'T', 3188, - 'a', 3218, - 'b', 4025, - 'd', 3194, - 'e', 3158, - 'g', 3187, - 'h', 3232, - 'i', 3219, - 'k', 3187, - 'm', 3189, - 'n', 3229, - 'o', 3159, - 'p', 3187, - 's', 3203, - 't', 3187, - 'u', 3244, - 'w', 3215, - 'x', 3225, - '|', 3566, - 0xb5, 3244, + '>', 3122, + 'B', 4038, + 'E', 3198, + 'G', 3198, + 'K', 3198, + 'M', 3198, + 'P', 3198, + 'T', 3198, + 'a', 3231, + 'b', 4039, + 'd', 3204, + 'e', 3172, + 'g', 3197, + 'h', 3205, + 'i', 3232, + 'k', 3197, + 'm', 3199, + 'n', 3242, + 'o', 3169, + 'p', 3197, + 's', 3216, + 't', 3197, + 'u', 3256, + 'w', 3228, + 'x', 3238, + '|', 3580, + 0xb5, 3256, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1671); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + lookahead == ' ') SKIP(1675); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); - case 3271: + case 3285: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(1777); + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 3175, - '#', 5521, - '*', 3085, - '+', 3090, - '-', 3091, - '.', 3857, - '/', 3086, - ';', 3565, - '<', 3109, + '!', 3185, + '#', 5548, + '*', 3093, + '+', 3098, + '-', 3099, + '.', 3184, + '/', 3094, + ';', 3579, + '<', 3119, '=', 454, - '>', 3112, - 'B', 4024, - 'E', 3185, - 'G', 3188, - 'K', 3188, - 'M', 3188, - 'P', 3188, - 'T', 3188, - 'a', 3218, - 'b', 4025, - 'd', 3194, - 'e', 3166, - 'g', 3187, - 'h', 3232, - 'i', 3219, - 'k', 3187, - 'm', 3189, - 'n', 3229, - 'o', 3167, - 'p', 3187, - 's', 3203, - 't', 3187, - 'u', 3244, - 'w', 3215, - 'x', 3225, - '|', 3566, - 0xb5, 3244, + '>', 3122, + 'B', 4038, + 'E', 3198, + 'G', 3198, + 'K', 3198, + 'M', 3198, + 'P', 3198, + 'T', 3198, + 'a', 3231, + 'b', 4039, + 'd', 3204, + 'e', 3174, + 'g', 3197, + 'h', 3205, + 'i', 3232, + 'k', 3197, + 'm', 3199, + 'n', 3242, + 'o', 3177, + 'p', 3197, + 's', 3216, + 't', 3197, + 'u', 3256, + 'w', 3228, + 'x', 3238, + '|', 3580, + 0xb5, 3256, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1672); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + lookahead == ' ') SKIP(1676); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); - case 3272: + case 3286: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(1777); + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 3175, - '#', 5521, - '*', 3085, - '+', 3090, - '-', 3091, - '/', 3086, - ';', 3565, - '<', 3109, + '!', 3185, + '#', 5548, + '*', 3093, + '+', 3098, + '-', 3099, + '/', 3094, + ';', 3579, + '<', 3119, '=', 454, - '>', 3112, - 'a', 3218, - 'b', 3211, - 'e', 3163, - 'i', 3219, - 'm', 3226, - 'n', 3230, - 'o', 3159, - 's', 3248, - 'x', 3225, - '|', 3566, + '>', 3122, + 'a', 3231, + 'b', 3225, + 'e', 3173, + 'h', 3206, + 'i', 3232, + 'm', 3239, + 'n', 3243, + 'o', 3169, + 's', 3262, + 'x', 3238, + '|', 3580, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1671); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); + lookahead == ' ') SKIP(1675); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); - case 3273: + case 3287: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(1777); + if (eof) ADVANCE(1781); ADVANCE_MAP( - '\n', 3562, + '\n', 3576, '\r', 1, - '!', 3175, - '#', 5521, - '*', 3085, - '+', 3090, - '-', 3091, - '/', 3086, - ';', 3565, - '<', 3109, + '!', 3185, + '#', 5548, + '*', 3093, + '+', 3098, + '-', 3099, + '/', 3094, + ';', 3579, + '<', 3119, '=', 454, - '>', 3112, - 'a', 3218, - 'b', 3211, - 'e', 3165, - 'i', 3219, - 'm', 3226, - 'n', 3230, - 'o', 3167, - 's', 3248, - 'x', 3225, - '|', 3566, + '>', 3122, + 'a', 3231, + 'b', 3225, + 'e', 3175, + 'h', 3206, + 'i', 3232, + 'm', 3239, + 'n', 3243, + 'o', 3177, + 's', 3262, + 'x', 3238, + '|', 3580, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1672); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3263); - END_STATE(); - case 3274: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(3290); - if (lookahead == '-') ADVANCE(5313); - if (lookahead == 'I') ADVANCE(3335); - if (lookahead == '_') ADVANCE(3290); - if (lookahead == 'i') ADVANCE(3335); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4030); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3903); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); - END_STATE(); - case 3275: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(3290); - if (lookahead == '-') ADVANCE(5313); - if (lookahead == 'I') ADVANCE(3335); - if (lookahead == '_') ADVANCE(3290); - if (lookahead == 'i') ADVANCE(3294); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4030); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3903); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); - END_STATE(); - case 3276: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(3290); - if (lookahead == '-') ADVANCE(5313); - if (lookahead == '_') ADVANCE(3290); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3903); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); - END_STATE(); - case 3277: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(3290); - if (lookahead == '-') ADVANCE(4551); - if (lookahead == 'I') ADVANCE(3335); - if (lookahead == '_') ADVANCE(3290); - if (lookahead == 'i') ADVANCE(3335); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4030); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3903); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); - END_STATE(); - case 3278: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(3290); - if (lookahead == '-') ADVANCE(4551); - if (lookahead == 'I') ADVANCE(3335); - if (lookahead == '_') ADVANCE(3290); - if (lookahead == 'i') ADVANCE(3294); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4030); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3903); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); - END_STATE(); - case 3279: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1196); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); - END_STATE(); - case 3280: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1549); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); - END_STATE(); - case 3281: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1276); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); - END_STATE(); - case 3282: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1266); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); - END_STATE(); - case 3283: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(674); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); - END_STATE(); - case 3284: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(3335); - if (lookahead == 'i') ADVANCE(3335); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4030); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); - END_STATE(); - case 3285: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(3335); - if (lookahead == 'i') ADVANCE(3294); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4030); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); - END_STATE(); - case 3286: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(3335); - if (lookahead == 'i') ADVANCE(3312); - if (lookahead == 's') ADVANCE(4034); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4030); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); - END_STATE(); - case 3287: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(3288); - if (lookahead == 'b') ADVANCE(3344); - if (lookahead == 'o') ADVANCE(3346); - if (lookahead == 'x') ADVANCE(3347); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3288); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + lookahead == ' ') SKIP(1676); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3277); END_STATE(); case 3288: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(3288); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3288); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == '+') ADVANCE(3304); + if (lookahead == '-') ADVANCE(5340); + if (lookahead == 'I') ADVANCE(3349); + if (lookahead == '_') ADVANCE(3304); + if (lookahead == 'i') ADVANCE(3349); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4044); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3917); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3289: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(3289); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3901); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == '+') ADVANCE(3304); + if (lookahead == '-') ADVANCE(5340); + if (lookahead == 'I') ADVANCE(3349); + if (lookahead == '_') ADVANCE(3304); + if (lookahead == 'i') ADVANCE(3308); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4044); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3917); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3290: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(3290); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3903); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == '+') ADVANCE(3304); + if (lookahead == '-') ADVANCE(5340); + if (lookahead == '_') ADVANCE(3304); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3917); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3291: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(3333); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == '+') ADVANCE(3304); + if (lookahead == '-') ADVANCE(4568); + if (lookahead == 'I') ADVANCE(3349); + if (lookahead == '_') ADVANCE(3304); + if (lookahead == 'i') ADVANCE(3349); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4044); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3917); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3292: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(3325); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == '+') ADVANCE(3304); + if (lookahead == '-') ADVANCE(4568); + if (lookahead == 'I') ADVANCE(3349); + if (lookahead == '_') ADVANCE(3304); + if (lookahead == 'i') ADVANCE(3308); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4044); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3917); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3293: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(3306); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == '-') ADVANCE(1199); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3294: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'b') ADVANCE(4030); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == '-') ADVANCE(1553); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3295: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(4034); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == '-') ADVANCE(1279); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3296: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(3303); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == '-') ADVANCE(1269); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3297: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3307); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == '-') ADVANCE(677); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3298: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3279); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == 'I') ADVANCE(3349); + if (lookahead == 'i') ADVANCE(3349); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4044); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3299: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3930); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == 'I') ADVANCE(3349); + if (lookahead == 'i') ADVANCE(3308); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4044); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3300: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3938); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == 'I') ADVANCE(3349); + if (lookahead == 'i') ADVANCE(3326); + if (lookahead == 's') ADVANCE(4048); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4044); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3301: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3295); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == '_') ADVANCE(3302); + if (lookahead == 'b') ADVANCE(3358); + if (lookahead == 'o') ADVANCE(3360); + if (lookahead == 'x') ADVANCE(3361); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3302); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3302: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3597); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == '_') ADVANCE(3302); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3302); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3303: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3755); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == '_') ADVANCE(3303); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3915); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3304: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(3296); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == '_') ADVANCE(3304); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3917); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3305: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'k') ADVANCE(4034); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == 'a') ADVANCE(3347); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3306: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(3327); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == 'a') ADVANCE(3339); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3307: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(3308); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == 'a') ADVANCE(3320); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3308: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(3282); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == 'b') ADVANCE(4044); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3309: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(3283); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == 'c') ADVANCE(4048); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3310: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(3309); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == 'd') ADVANCE(3317); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3311: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'm') ADVANCE(3318); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == 'e') ADVANCE(3321); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3312: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(4034); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4030); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == 'e') ADVANCE(3293); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3313: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(3676); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == 'e') ADVANCE(3944); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3314: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(3298); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == 'e') ADVANCE(3952); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3315: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(3329); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3339); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == 'e') ADVANCE(3309); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3316: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(3320); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == 'e') ADVANCE(3611); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3317: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(3321); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == 'e') ADVANCE(3765); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3318: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(3317); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == 'i') ADVANCE(3310); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3319: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3316); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == 'k') ADVANCE(4048); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3320: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3617); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == 'l') ADVANCE(3341); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3321: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3330); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == 'l') ADVANCE(3322); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3322: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(4034); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == 'l') ADVANCE(3296); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3323: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3319); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == 'l') ADVANCE(3297); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3324: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3331); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == 'l') ADVANCE(3323); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3325: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3280); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == 'm') ADVANCE(3332); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3326: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(4034); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == 'n') ADVANCE(4048); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4044); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3327: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(3300); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == 'n') ADVANCE(3690); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3328: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(3302); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == 'n') ADVANCE(3312); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3329: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(3345); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == 'o') ADVANCE(3343); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3353); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3330: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(3281); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == 'o') ADVANCE(3334); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3331: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(3299); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == 'o') ADVANCE(3335); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3332: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(3310); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == 'p') ADVANCE(3331); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3333: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(4034); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == 'r') ADVANCE(3330); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3334: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3339); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == 'r') ADVANCE(3631); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3335: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4030); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == 'r') ADVANCE(3344); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3336: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3338); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == 'r') ADVANCE(4048); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3337: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3342); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == 'r') ADVANCE(3333); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3338: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3341); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == 'r') ADVANCE(3345); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3339: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3348); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == 'r') ADVANCE(3294); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3340: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3336); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == 's') ADVANCE(4048); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3341: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3337); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == 's') ADVANCE(3314); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3342: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3343); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == 's') ADVANCE(3316); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3343: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3348); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == 't') ADVANCE(3359); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3344: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(3344); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == 't') ADVANCE(3295); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3345: ACCEPT_TOKEN(sym_identifier); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3801); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == 'u') ADVANCE(3313); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3346: ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3346); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == 'u') ADVANCE(3324); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3347: ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3347); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == 'y') ADVANCE(4048); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3348: ACCEPT_TOKEN(sym_identifier); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3353); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3349: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(4422); - if (lookahead == '>') ADVANCE(4256); - if (lookahead == 'r') ADVANCE(3448); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4044); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3350: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(4415); - if (lookahead == '>') ADVANCE(4261); - if (lookahead == 'u') ADVANCE(3471); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3352); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3351: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(4423); - if (lookahead == '>') ADVANCE(4246); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3356); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3352: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(4416); - if (lookahead == '>') ADVANCE(4251); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3355); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3353: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(1186); - if (lookahead == '>') ADVANCE(1573); - if (lookahead == 'r') ADVANCE(3456); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3362); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3354: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(760); - if (lookahead == '>') ADVANCE(1574); - if (lookahead == 'u') ADVANCE(3474); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3350); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3355: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(4425); - if (lookahead == '>') ADVANCE(4255); - if (lookahead == 'r') ADVANCE(3451); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3351); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3356: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(4417); - if (lookahead == '>') ADVANCE(4260); - if (lookahead == 'u') ADVANCE(3473); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(3357); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3357: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(1231); - if (lookahead == '>') ADVANCE(1576); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(3362); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3358: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(818); - if (lookahead == '>') ADVANCE(1578); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(3358); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3359: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(4426); - if (lookahead == '>') ADVANCE(4245); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + ACCEPT_TOKEN(sym_identifier); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3815); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3360: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(4418); - if (lookahead == '>') ADVANCE(4250); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + ACCEPT_TOKEN(sym_identifier); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(3360); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3361: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(3522); - if (lookahead == '_') ADVANCE(3371); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3371); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + ACCEPT_TOKEN(sym_identifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3361); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3362: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(3391); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3539); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2917); + ACCEPT_TOKEN(sym_identifier); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3363: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(3393); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3550); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2935); + if (lookahead == '+') ADVANCE(4440); + if (lookahead == '>') ADVANCE(4274); + if (lookahead == 'r') ADVANCE(3462); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3364: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(3396); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3556); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3044); + if (lookahead == '+') ADVANCE(4433); + if (lookahead == '>') ADVANCE(4279); + if (lookahead == 'u') ADVANCE(3485); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3365: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(3398); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3558); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2947); + if (lookahead == '+') ADVANCE(4441); + if (lookahead == '>') ADVANCE(4264); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3366: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(3523); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == '+') ADVANCE(4434); + if (lookahead == '>') ADVANCE(4269); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3367: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == ':') ADVANCE(4466); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == '+') ADVANCE(1189); + if (lookahead == '>') ADVANCE(1577); + if (lookahead == 'r') ADVANCE(3470); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3368: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N') ADVANCE(3496); - if (lookahead == 'f') ADVANCE(3529); - if (lookahead == 'n') ADVANCE(3497); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == '+') ADVANCE(763); + if (lookahead == '>') ADVANCE(1578); + if (lookahead == 'u') ADVANCE(3488); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3369: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'T') ADVANCE(3524); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == '+') ADVANCE(4443); + if (lookahead == '>') ADVANCE(4273); + if (lookahead == 'r') ADVANCE(3465); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3370: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(3371); - if (lookahead == 'b') ADVANCE(4021); - if (lookahead == 'o') ADVANCE(4037); - if (lookahead == 'x') ADVANCE(4042); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3373); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == '+') ADVANCE(4435); + if (lookahead == '>') ADVANCE(4278); + if (lookahead == 'u') ADVANCE(3487); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3371: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(3371); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3371); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == '+') ADVANCE(1234); + if (lookahead == '>') ADVANCE(1580); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3372: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(3371); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3361); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == '+') ADVANCE(821); + if (lookahead == '>') ADVANCE(1582); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3373: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(3371); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3372); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == '+') ADVANCE(4444); + if (lookahead == '>') ADVANCE(4263); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3374: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(3371); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3373); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == '+') ADVANCE(4436); + if (lookahead == '>') ADVANCE(4268); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3375: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(3422); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == '-') ADVANCE(3536); + if (lookahead == '_') ADVANCE(3385); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3376: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(3421); - if (lookahead == 'o') ADVANCE(3385); - if (lookahead == 'u') ADVANCE(3475); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == '-') ADVANCE(3405); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3553); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2925); END_STATE(); case 3377: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(3420); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == '-') ADVANCE(3407); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3564); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2943); END_STATE(); case 3378: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(3491); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == '-') ADVANCE(3410); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3052); END_STATE(); case 3379: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(3469); - if (lookahead == 'o') ADVANCE(3433); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == '-') ADVANCE(3412); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3572); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2955); END_STATE(); case 3380: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(3465); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == '-') ADVANCE(3537); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3381: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(3430); - if (lookahead == 'o') ADVANCE(3458); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == ':') ADVANCE(4484); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3382: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(3413); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'N') ADVANCE(3510); + if (lookahead == 'f') ADVANCE(3543); + if (lookahead == 'n') ADVANCE(3511); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3383: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(3397); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'T') ADVANCE(3538); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3384: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(3414); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == '_') ADVANCE(3385); + if (lookahead == 'b') ADVANCE(4036); + if (lookahead == 'o') ADVANCE(4052); + if (lookahead == 'x') ADVANCE(4057); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3387); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3385: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'd') ADVANCE(3485); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == '_') ADVANCE(3385); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3386: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'd') ADVANCE(3392); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == '_') ADVANCE(3385); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3375); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3387: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3928); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == '_') ADVANCE(3385); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3388: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3936); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == '_') ADVANCE(3385); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3387); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3389: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3410); - if (lookahead == 'o') ADVANCE(3528); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'a') ADVANCE(3436); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3390: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3411); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'a') ADVANCE(3435); + if (lookahead == 'o') ADVANCE(3399); + if (lookahead == 'u') ADVANCE(3489); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3391: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3434); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3539); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2917); + if (lookahead == 'a') ADVANCE(3434); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3392: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3363); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'a') ADVANCE(3505); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3393: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3435); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3550); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2935); + if (lookahead == 'a') ADVANCE(3483); + if (lookahead == 'o') ADVANCE(3447); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3394: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3377); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'a') ADVANCE(3479); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3395: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3470); - if (lookahead == 'o') ADVANCE(3441); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'a') ADVANCE(3444); + if (lookahead == 'o') ADVANCE(3472); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3396: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3436); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3556); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3044); + if (lookahead == 'c') ADVANCE(3427); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3397: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3365); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'c') ADVANCE(3411); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3398: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3437); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3558); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2947); + if (lookahead == 'c') ADVANCE(3428); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3399: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3457); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'd') ADVANCE(3499); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3400: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3453); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'd') ADVANCE(3406); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3401: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3536); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'e') ADVANCE(3942); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3402: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3538); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'e') ADVANCE(3950); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3403: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3541); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'e') ADVANCE(3424); + if (lookahead == 'o') ADVANCE(3542); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3404: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3543); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'e') ADVANCE(3425); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3405: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3549); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'e') ADVANCE(3448); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3553); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2925); END_STATE(); case 3406: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3552); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'e') ADVANCE(3377); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3407: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3554); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'e') ADVANCE(3449); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3564); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2943); END_STATE(); case 3408: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3559); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'e') ADVANCE(3391); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3409: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3460); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'e') ADVANCE(3484); + if (lookahead == 'o') ADVANCE(3455); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3410: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'f') ADVANCE(3531); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'e') ADVANCE(3450); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3052); END_STATE(); case 3411: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'g') ADVANCE(3418); - if (lookahead == 't') ADVANCE(3482); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'e') ADVANCE(3379); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3412: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(3419); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'e') ADVANCE(3451); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3572); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2955); END_STATE(); case 3413: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(3546); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'e') ADVANCE(3471); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3414: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(3551); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'e') ADVANCE(3467); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3415: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(3386); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'e') ADVANCE(3550); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3416: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(3380); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'e') ADVANCE(3552); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3417: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(3440); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'e') ADVANCE(3555); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3418: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(3463); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'e') ADVANCE(3557); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3419: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(3431); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'e') ADVANCE(3563); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3420: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'k') ADVANCE(3545); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'e') ADVANCE(3566); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3421: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'k') ADVANCE(3403); - if (lookahead == 't') ADVANCE(3384); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'e') ADVANCE(3568); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3422: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(3462); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'e') ADVANCE(3573); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3423: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(3920); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'e') ADVANCE(3474); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3424: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(3416); - if (lookahead == 's') ADVANCE(3527); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'f') ADVANCE(3545); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3425: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(3423); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'g') ADVANCE(3432); + if (lookahead == 't') ADVANCE(3496); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3426: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(3378); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'h') ADVANCE(3433); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3427: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(3428); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'h') ADVANCE(3560); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3428: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(3542); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'h') ADVANCE(3565); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3429: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(3467); - if (lookahead == 'r') ADVANCE(3452); - if (lookahead == 'x') ADVANCE(3446); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'i') ADVANCE(3400); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3430: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(3468); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'i') ADVANCE(3394); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3431: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(3406); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'i') ADVANCE(3454); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3432: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(3407); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'i') ADVANCE(3477); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3433: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(3466); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'i') ADVANCE(3445); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3434: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(3487); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3539); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2917); + if (lookahead == 'k') ADVANCE(3559); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3435: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(3488); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3550); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2935); + if (lookahead == 'k') ADVANCE(3417); + if (lookahead == 't') ADVANCE(3398); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3436: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(3490); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3556); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3044); + if (lookahead == 'l') ADVANCE(3476); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3437: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(3489); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3558); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2947); + if (lookahead == 'l') ADVANCE(3934); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3438: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(3553); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'l') ADVANCE(3430); + if (lookahead == 's') ADVANCE(3541); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3439: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(3555); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'l') ADVANCE(3437); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3440: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(3484); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'l') ADVANCE(3392); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3441: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(3445); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'l') ADVANCE(3442); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3442: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(3480); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'l') ADVANCE(3556); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3443: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(3455); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'l') ADVANCE(3481); + if (lookahead == 'r') ADVANCE(3466); + if (lookahead == 'x') ADVANCE(3460); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3444: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(3459); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'l') ADVANCE(3482); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3445: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'p') ADVANCE(3540); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'l') ADVANCE(3420); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3446: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'p') ADVANCE(3443); - if (lookahead == 't') ADVANCE(3400); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'l') ADVANCE(3421); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3447: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3478); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'n') ADVANCE(3480); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3448: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3351); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'n') ADVANCE(3501); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3553); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2925); END_STATE(); case 3449: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3483); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'n') ADVANCE(3502); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3564); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2943); END_STATE(); case 3450: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3383); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'n') ADVANCE(3504); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3052); END_STATE(); case 3451: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3359); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'n') ADVANCE(3503); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3572); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2955); END_STATE(); case 3452: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3444); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'n') ADVANCE(3567); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3453: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3438); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'n') ADVANCE(3569); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3454: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3394); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'n') ADVANCE(3498); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3455: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3472); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'o') ADVANCE(3459); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3456: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3357); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'o') ADVANCE(3494); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3457: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3426); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'o') ADVANCE(3469); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3458: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3532); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'o') ADVANCE(3473); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3459: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3548); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'p') ADVANCE(3554); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3460: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3560); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'p') ADVANCE(3457); + if (lookahead == 't') ADVANCE(3414); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3461: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3439); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'r') ADVANCE(3492); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3462: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(3388); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'r') ADVANCE(3365); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3463: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(3477); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'r') ADVANCE(3497); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3464: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(3401); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'r') ADVANCE(3397); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3465: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(3544); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'r') ADVANCE(3373); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3466: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(3476); - if (lookahead == 't') ADVANCE(3417); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'r') ADVANCE(3458); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3467: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(3402); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'r') ADVANCE(3452); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3468: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(3405); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'r') ADVANCE(3408); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3469: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(3382); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'r') ADVANCE(3486); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3470: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(3362); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'r') ADVANCE(3371); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3471: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(3352); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'r') ADVANCE(3440); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3472: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(3364); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'r') ADVANCE(3546); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3473: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(3360); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'r') ADVANCE(3562); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3474: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(3358); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'r') ADVANCE(3574); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3475: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(3534); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'r') ADVANCE(3453); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3476: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(3547); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 's') ADVANCE(3402); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3477: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(3409); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 's') ADVANCE(3491); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3478: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(3387); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 's') ADVANCE(3415); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3479: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(3425); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3504); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 's') ADVANCE(3558); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3480: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(3450); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 's') ADVANCE(3490); + if (lookahead == 't') ADVANCE(3431); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3481: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(3427); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3509); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 's') ADVANCE(3416); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3482: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(3461); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 's') ADVANCE(3419); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3483: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(3404); - if (lookahead == 'y') ADVANCE(3535); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 't') ADVANCE(3396); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3484: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(3408); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 't') ADVANCE(3376); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3485: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(3432); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 't') ADVANCE(3366); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3486: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(3399); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 't') ADVANCE(3378); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3487: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(3539); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3539); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2917); + if (lookahead == 't') ADVANCE(3374); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3488: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(3550); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3550); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2935); + if (lookahead == 't') ADVANCE(3372); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3489: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(3558); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3558); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2947); + if (lookahead == 't') ADVANCE(3548); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3490: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(3561); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3556); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3044); + if (lookahead == 't') ADVANCE(3561); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3491: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'y') ADVANCE(3557); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 't') ADVANCE(3423); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3492: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-' || - lookahead == '?') ADVANCE(3526); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3492); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == 'u') ADVANCE(3401); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3493: ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'u') ADVANCE(3439); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3504); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + lookahead == 'a') ADVANCE(3518); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3494: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3509); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'u') ADVANCE(3464); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3495: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3503); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'u') ADVANCE(3441); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3523); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3496: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3499); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'u') ADVANCE(3475); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3497: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3501); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3533); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3029); + if (lookahead == 'u') ADVANCE(3418); + if (lookahead == 'y') ADVANCE(3549); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3498: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3511); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'u') ADVANCE(3422); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3499: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3508); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3537); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3069); + if (lookahead == 'u') ADVANCE(3446); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3500: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3512); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3537); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3069); + if (lookahead == 'v') ADVANCE(3413); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3501: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3510); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3533); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3029); + if (lookahead == 'v') ADVANCE(3553); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3553); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2925); END_STATE(); case 3502: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3513); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3533); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3029); + if (lookahead == 'v') ADVANCE(3564); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3564); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2943); END_STATE(); case 3503: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3507); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'v') ADVANCE(3572); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3572); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2955); END_STATE(); case 3504: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3526); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'v') ADVANCE(3575); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3052); END_STATE(); case 3505: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3495); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'y') ADVANCE(3571); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3506: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3496); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == '-' || + lookahead == '?') ADVANCE(3540); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3506); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3507: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3498); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3518); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3508: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3500); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3537); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3069); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3523); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3509: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3530); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3517); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3510: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3502); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3533); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3029); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3513); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3511: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3514); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3515); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3547); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 3512: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3516); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3537); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3069); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3525); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3513: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3515); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3533); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3029); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3522); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3551); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3077); END_STATE(); case 3514: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3526); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3526); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3551); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3077); END_STATE(); case 3515: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3533); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3533); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3029); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3524); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3547); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 3516: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3537); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3537); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3069); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3527); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3547); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 3517: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(3517); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3521); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3518: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3518); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3540); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3519: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3366); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3509); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3520: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3369); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3510); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3521: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3367); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3512); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3522: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3519); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3514); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3551); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3077); END_STATE(); case 3523: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3520); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3544); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3524: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3521); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3516); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3547); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 3525: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3525); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(3528); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3526: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(3530); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3551); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3077); END_STATE(); case 3527: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3527); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3001); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(3529); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3547); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 3528: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3528); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2974); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(3540); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3529: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2977); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(3547); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3547); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 3530: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3530); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3082); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(3551); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3551); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3077); END_STATE(); case 3531: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3531); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(3531); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3532: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3532); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2962); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(3532); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3533: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3533); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3029); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3380); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3534: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3534); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2920); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3383); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3535: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3535); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2983); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3381); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3536: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2897); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3533); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3537: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3537); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3069); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3534); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3538: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3538); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2980); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3535); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3539: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3539); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2917); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3539); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3540: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2965); END_STATE(); case 3541: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3541); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3032); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3009); END_STATE(); case 3542: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3542); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3054); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2982); END_STATE(); case 3543: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3543); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3048); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2985); END_STATE(); case 3544: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3544); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3090); END_STATE(); case 3545: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3545); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2992); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2899); END_STATE(); case 3546: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3546); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2986); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2970); END_STATE(); case 3547: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3547); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2923); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 3548: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3548); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2971); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2928); END_STATE(); case 3549: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3549); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3051); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2991); END_STATE(); case 3550: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3550); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2935); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2905); END_STATE(); case 3551: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3551); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2989); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3077); END_STATE(); case 3552: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3552); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2968); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2988); END_STATE(); case 3553: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3553); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2902); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2925); END_STATE(); case 3554: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3554); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2905); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2973); END_STATE(); case 3555: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3555); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2998); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3040); END_STATE(); case 3556: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3556); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3044); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3062); END_STATE(); case 3557: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3557); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2950); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3056); END_STATE(); case 3558: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3558); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2947); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2902); END_STATE(); case 3559: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3559); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2995); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3000); END_STATE(); case 3560: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3560); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2953); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2994); END_STATE(); case 3561: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3561); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2899); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 3562: - ACCEPT_TOKEN(sym__newline); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3562); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2979); END_STATE(); case 3563: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3563); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3059); + END_STATE(); + case 3564: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3564); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2943); + END_STATE(); + case 3565: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3565); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2997); + END_STATE(); + case 3566: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3566); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2976); + END_STATE(); + case 3567: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3567); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2910); + END_STATE(); + case 3568: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3568); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2913); + END_STATE(); + case 3569: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3569); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3006); + END_STATE(); + case 3570: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3052); + END_STATE(); + case 3571: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3571); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2958); + END_STATE(); + case 3572: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3572); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2955); + END_STATE(); + case 3573: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3573); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3003); + END_STATE(); + case 3574: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3574); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2961); + END_STATE(); + case 3575: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3575); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2907); + END_STATE(); + case 3576: + ACCEPT_TOKEN(sym__newline); + END_STATE(); + case 3577: ACCEPT_TOKEN(sym__space); - if (lookahead == ':') ADVANCE(4098); + if (lookahead == ':') ADVANCE(4116); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3563); + lookahead == ' ') ADVANCE(3577); END_STATE(); - case 3564: + case 3578: ACCEPT_TOKEN(sym__space); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3564); + lookahead == ' ') ADVANCE(3578); END_STATE(); - case 3565: + case 3579: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 3566: + case 3580: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 3567: + case 3581: ACCEPT_TOKEN(anon_sym_err_GT_PIPE); END_STATE(); - case 3568: + case 3582: ACCEPT_TOKEN(anon_sym_out_GT_PIPE); END_STATE(); - case 3569: + case 3583: ACCEPT_TOKEN(anon_sym_e_GT_PIPE); END_STATE(); - case 3570: + case 3584: ACCEPT_TOKEN(anon_sym_o_GT_PIPE); END_STATE(); - case 3571: + case 3585: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_PIPE); END_STATE(); - case 3572: + case 3586: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_PIPE); END_STATE(); - case 3573: + case 3587: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_PIPE); END_STATE(); - case 3574: + case 3588: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_PIPE); END_STATE(); - case 3575: + case 3589: ACCEPT_TOKEN(anon_sym_def); END_STATE(); - case 3576: + case 3590: ACCEPT_TOKEN(anon_sym_def); - if (lookahead == ',') ADVANCE(2891); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5354); + if (lookahead == ',') ADVANCE(2899); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5381); END_STATE(); - case 3577: + case 3591: ACCEPT_TOKEN(anon_sym_def); - if (lookahead == ',') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2889); + if (lookahead == ',') ADVANCE(2899); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2897); END_STATE(); - case 3578: + case 3592: ACCEPT_TOKEN(anon_sym_def); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2890); + lookahead == '@') ADVANCE(2899); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2898); END_STATE(); - case 3579: + case 3593: ACCEPT_TOKEN(anon_sym_def); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2899); END_STATE(); - case 3580: + case 3594: ACCEPT_TOKEN(anon_sym_export_DASHenv); - if (lookahead == ',') ADVANCE(2899); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5400); + if (lookahead == ',') ADVANCE(2907); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5427); END_STATE(); - case 3581: + case 3595: ACCEPT_TOKEN(anon_sym_export_DASHenv); - if (lookahead == ',') ADVANCE(2899); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2898); + if (lookahead == ',') ADVANCE(2907); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2906); END_STATE(); - case 3582: + case 3596: ACCEPT_TOKEN(anon_sym_export_DASHenv); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2899); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2907); END_STATE(); - case 3583: + case 3597: ACCEPT_TOKEN(anon_sym_extern); END_STATE(); - case 3584: + case 3598: ACCEPT_TOKEN(anon_sym_extern); - if (lookahead == ',') ADVANCE(2902); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5390); + if (lookahead == ',') ADVANCE(2910); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5417); END_STATE(); - case 3585: + case 3599: ACCEPT_TOKEN(anon_sym_extern); - if (lookahead == ',') ADVANCE(2902); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2900); + if (lookahead == ',') ADVANCE(2910); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2908); END_STATE(); - case 3586: + case 3600: ACCEPT_TOKEN(anon_sym_extern); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2902); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2901); + lookahead == '@') ADVANCE(2910); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2909); END_STATE(); - case 3587: + case 3601: ACCEPT_TOKEN(anon_sym_extern); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2902); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2910); END_STATE(); - case 3588: + case 3602: ACCEPT_TOKEN(anon_sym_module); END_STATE(); - case 3589: + case 3603: ACCEPT_TOKEN(anon_sym_module); - if (lookahead == ',') ADVANCE(2905); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5391); + if (lookahead == ',') ADVANCE(2913); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5418); END_STATE(); - case 3590: + case 3604: ACCEPT_TOKEN(anon_sym_module); - if (lookahead == ',') ADVANCE(2905); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2903); + if (lookahead == ',') ADVANCE(2913); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2911); END_STATE(); - case 3591: + case 3605: ACCEPT_TOKEN(anon_sym_module); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2905); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2904); + lookahead == '@') ADVANCE(2913); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2912); END_STATE(); - case 3592: + case 3606: ACCEPT_TOKEN(anon_sym_module); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2905); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2913); END_STATE(); - case 3593: + case 3607: ACCEPT_TOKEN(anon_sym_use); END_STATE(); - case 3594: + case 3608: ACCEPT_TOKEN(anon_sym_use); - if (lookahead == ',') ADVANCE(2897); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5362); + if (lookahead == ',') ADVANCE(2905); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5389); END_STATE(); - case 3595: + case 3609: ACCEPT_TOKEN(anon_sym_use); - if (lookahead == ',') ADVANCE(2897); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2895); + if (lookahead == ',') ADVANCE(2905); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2903); END_STATE(); - case 3596: + case 3610: ACCEPT_TOKEN(anon_sym_use); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2897); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2896); + lookahead == '@') ADVANCE(2905); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2904); END_STATE(); - case 3597: + case 3611: ACCEPT_TOKEN(anon_sym_use); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); - case 3598: + case 3612: ACCEPT_TOKEN(anon_sym_use); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2897); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2905); END_STATE(); - case 3599: + case 3613: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 3600: + case 3614: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 3601: + case 3615: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 3602: + case 3616: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 3603: + case 3617: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 3604: + case 3618: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 3605: + case 3619: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 3606: + case 3620: ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); - case 3607: + case 3621: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(4088); - if (lookahead == '\'') ADVANCE(4085); + if (lookahead == '"') ADVANCE(4102); + if (lookahead == '\'') ADVANCE(4099); END_STATE(); - case 3608: + case 3622: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(4088); - if (lookahead == '\'') ADVANCE(4085); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5514); + if (lookahead == '"') ADVANCE(4102); + if (lookahead == '\'') ADVANCE(4099); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5541); END_STATE(); - case 3609: + case 3623: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(4088); - if (lookahead == '\'') ADVANCE(4085); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '"') ADVANCE(4102); + if (lookahead == '\'') ADVANCE(4099); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); - case 3610: + case 3624: ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5514); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5541); END_STATE(); - case 3611: + case 3625: ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); - case 3612: + case 3626: ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); - case 3613: + case 3627: ACCEPT_TOKEN(anon_sym_cell_DASHpath); END_STATE(); - case 3614: + case 3628: ACCEPT_TOKEN(anon_sym_error); - if (lookahead == ',') ADVANCE(2971); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5382); + if (lookahead == ',') ADVANCE(2979); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5409); END_STATE(); - case 3615: + case 3629: ACCEPT_TOKEN(anon_sym_error); - if (lookahead == ',') ADVANCE(2971); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2969); + if (lookahead == ',') ADVANCE(2979); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2977); END_STATE(); - case 3616: + case 3630: ACCEPT_TOKEN(anon_sym_error); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2971); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2970); + lookahead == '@') ADVANCE(2979); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2978); END_STATE(); - case 3617: + case 3631: ACCEPT_TOKEN(anon_sym_error); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); - case 3618: + case 3632: ACCEPT_TOKEN(anon_sym_error); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2971); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2979); END_STATE(); - case 3619: + case 3633: ACCEPT_TOKEN(anon_sym_full_DASHcell_DASHpath); END_STATE(); - case 3620: + case 3634: ACCEPT_TOKEN(anon_sym_import_DASHpattern); END_STATE(); - case 3621: + case 3635: ACCEPT_TOKEN(anon_sym_one_DASHof); END_STATE(); - case 3622: + case 3636: ACCEPT_TOKEN(anon_sym_var_DASHwith_DASHopt_DASHtype); END_STATE(); - case 3623: + case 3637: ACCEPT_TOKEN(anon_sym_GT2); END_STATE(); - case 3624: + case 3638: ACCEPT_TOKEN(anon_sym_GT2); - if (lookahead == '=') ADVANCE(3795); + if (lookahead == '=') ADVANCE(3809); END_STATE(); - case 3625: + case 3639: ACCEPT_TOKEN(anon_sym_GT2); - if (lookahead == '=') ADVANCE(3796); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '=') ADVANCE(3810); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); - case 3626: + case 3640: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 3627: + case 3641: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); - case 3628: + case 3642: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5514); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5541); END_STATE(); - case 3629: + case 3643: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 3630: + case 3644: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 3631: + case 3645: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); - case 3632: + case 3646: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5514); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5541); END_STATE(); - case 3633: + case 3647: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); - case 3634: + case 3648: ACCEPT_TOKEN(anon_sym_DASH2); END_STATE(); - case 3635: + case 3649: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(3630); + if (lookahead == '-') ADVANCE(3644); END_STATE(); - case 3636: + case 3650: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(3630); + if (lookahead == '-') ADVANCE(3644); if (lookahead == '.') ADVANCE(469); if (lookahead == '_') ADVANCE(433); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1595); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3982); + lookahead == 'i') ADVANCE(1599); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3996); END_STATE(); - case 3637: + case 3651: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(3630); + if (lookahead == '-') ADVANCE(3644); if (lookahead == '.') ADVANCE(470); if (lookahead == '_') ADVANCE(438); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1595); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3904); + lookahead == 'i') ADVANCE(1599); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3918); END_STATE(); - case 3638: + case 3652: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(3630); + if (lookahead == '-') ADVANCE(3644); if (lookahead == '.') ADVANCE(470); if (lookahead == '_') ADVANCE(438); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3904); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3918); END_STATE(); - case 3639: + case 3653: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(3630); - if (lookahead == '.') ADVANCE(4539); - if (lookahead == '_') ADVANCE(4508); + if (lookahead == '-') ADVANCE(3644); + if (lookahead == '.') ADVANCE(4557); + if (lookahead == '_') ADVANCE(4526); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4664); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3904); + lookahead == 'i') ADVANCE(4687); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3918); END_STATE(); - case 3640: + case 3654: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(3630); - if (lookahead == '.') ADVANCE(5307); - if (lookahead == '_') ADVANCE(5296); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3904); + if (lookahead == '-') ADVANCE(3644); + if (lookahead == '.') ADVANCE(5334); + if (lookahead == '_') ADVANCE(5323); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3918); END_STATE(); - case 3641: + case 3655: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(3630); - if (lookahead == '.') ADVANCE(4544); - if (lookahead == '_') ADVANCE(4509); + if (lookahead == '-') ADVANCE(3644); + if (lookahead == '.') ADVANCE(4561); + if (lookahead == '_') ADVANCE(4527); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4664); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3982); + lookahead == 'i') ADVANCE(4687); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3996); END_STATE(); - case 3642: + case 3656: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(3631); - if (lookahead == '.') ADVANCE(469); - if (lookahead == '_') ADVANCE(4324); + if (lookahead == '-') ADVANCE(3647); + if (lookahead == '.') ADVANCE(4770); + if (lookahead == '_') ADVANCE(4742); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4353); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4328); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + lookahead == 'i') ADVANCE(4955); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4770); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); - case 3643: + case 3657: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(3631); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + if (lookahead == '-') ADVANCE(3647); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); - case 3644: + case 3658: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(3633); - if (lookahead == '.') ADVANCE(4747); - if (lookahead == '_') ADVANCE(4719); + if (lookahead == '-') ADVANCE(3645); + if (lookahead == '.') ADVANCE(469); + if (lookahead == '_') ADVANCE(4342); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4928); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4747); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + lookahead == 'i') ADVANCE(4371); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4346); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); - case 3645: + case 3659: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(3633); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '-') ADVANCE(3645); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); - case 3646: + case 3660: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(3632); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5514); + if (lookahead == '-') ADVANCE(3646); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5541); END_STATE(); - case 3647: + case 3661: ACCEPT_TOKEN(anon_sym_DASH2); if (lookahead == '.') ADVANCE(469); - if (lookahead == '=') ADVANCE(1811); + if (lookahead == '=') ADVANCE(1815); if (lookahead == '_') ADVANCE(433); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1592); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3982); + lookahead == 'i') ADVANCE(1596); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3996); END_STATE(); - case 3648: + case 3662: ACCEPT_TOKEN(anon_sym_DASH2); if (lookahead == '.') ADVANCE(469); if (lookahead == '_') ADVANCE(433); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1592); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3982); + lookahead == 'i') ADVANCE(1596); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3996); END_STATE(); - case 3649: + case 3663: ACCEPT_TOKEN(anon_sym_DASH2); if (lookahead == '.') ADVANCE(469); if (lookahead == '_') ADVANCE(433); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1595); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3982); + lookahead == 'i') ADVANCE(1599); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3996); END_STATE(); - case 3650: + case 3664: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(5411); - if (lookahead == '_') ADVANCE(5402); + if (lookahead == '.') ADVANCE(5438); + if (lookahead == '_') ADVANCE(5429); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5507); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5411); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5514); + lookahead == 'i') ADVANCE(5534); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5438); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5541); END_STATE(); - case 3651: + case 3665: ACCEPT_TOKEN(anon_sym_DASH2); if (lookahead == '.') ADVANCE(470); if (lookahead == '_') ADVANCE(438); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1592); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3904); + lookahead == 'i') ADVANCE(1596); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3918); END_STATE(); - case 3652: + case 3666: ACCEPT_TOKEN(anon_sym_DASH2); if (lookahead == '.') ADVANCE(470); if (lookahead == '_') ADVANCE(438); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3904); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3918); END_STATE(); - case 3653: + case 3667: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(4539); - if (lookahead == '_') ADVANCE(4508); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3904); + if (lookahead == '.') ADVANCE(4557); + if (lookahead == '_') ADVANCE(4526); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3918); END_STATE(); - case 3654: + case 3668: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(5307); - if (lookahead == '_') ADVANCE(5296); + if (lookahead == '.') ADVANCE(5334); + if (lookahead == '_') ADVANCE(5323); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5327); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3904); + lookahead == 'i') ADVANCE(5354); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3918); END_STATE(); - case 3655: + case 3669: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(5308); - if (lookahead == '_') ADVANCE(5298); + if (lookahead == '.') ADVANCE(5335); + if (lookahead == '_') ADVANCE(5325); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5327); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3982); + lookahead == 'i') ADVANCE(5354); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3996); END_STATE(); - case 3656: + case 3670: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '=') ADVANCE(1811); + if (lookahead == '=') ADVANCE(1815); END_STATE(); - case 3657: + case 3671: ACCEPT_TOKEN(anon_sym_DASH2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); - case 3658: + case 3672: ACCEPT_TOKEN(sym_param_short_flag_identifier); END_STATE(); - case 3659: + case 3673: ACCEPT_TOKEN(anon_sym_break); - if (lookahead == ',') ADVANCE(2992); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5379); + if (lookahead == ',') ADVANCE(3000); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5406); END_STATE(); - case 3660: + case 3674: ACCEPT_TOKEN(anon_sym_break); - if (lookahead == ',') ADVANCE(2992); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2990); + if (lookahead == ',') ADVANCE(3000); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2998); END_STATE(); - case 3661: + case 3675: ACCEPT_TOKEN(anon_sym_break); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2992); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2991); + lookahead == '@') ADVANCE(3000); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2999); END_STATE(); - case 3662: + case 3676: ACCEPT_TOKEN(anon_sym_break); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2992); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3000); END_STATE(); - case 3663: + case 3677: ACCEPT_TOKEN(anon_sym_continue); - if (lookahead == ',') ADVANCE(2995); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5398); + if (lookahead == ',') ADVANCE(3003); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5425); END_STATE(); - case 3664: + case 3678: ACCEPT_TOKEN(anon_sym_continue); - if (lookahead == ',') ADVANCE(2995); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2993); + if (lookahead == ',') ADVANCE(3003); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3001); END_STATE(); - case 3665: + case 3679: ACCEPT_TOKEN(anon_sym_continue); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2995); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2994); + lookahead == '@') ADVANCE(3003); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3002); END_STATE(); - case 3666: + case 3680: ACCEPT_TOKEN(anon_sym_continue); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2995); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3003); END_STATE(); - case 3667: + case 3681: ACCEPT_TOKEN(anon_sym_for); - if (lookahead == ',') ADVANCE(2962); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + if (lookahead == ',') ADVANCE(2970); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5382); END_STATE(); - case 3668: + case 3682: ACCEPT_TOKEN(anon_sym_for); - if (lookahead == ',') ADVANCE(2962); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2956); + if (lookahead == ',') ADVANCE(2970); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2964); END_STATE(); - case 3669: + case 3683: ACCEPT_TOKEN(anon_sym_for); - if (lookahead == 'm') ADVANCE(2957); + if (lookahead == 'm') ADVANCE(2965); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2962); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2961); + lookahead == '@') ADVANCE(2970); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2969); END_STATE(); - case 3670: + case 3684: ACCEPT_TOKEN(anon_sym_for); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2962); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2970); END_STATE(); - case 3671: + case 3685: ACCEPT_TOKEN(anon_sym_in2); END_STATE(); - case 3672: + case 3686: ACCEPT_TOKEN(anon_sym_in2); - if (lookahead == ',') ADVANCE(3029); + if (lookahead == ',') ADVANCE(3037); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3006); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3011); + lookahead == 'f') ADVANCE(3014); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3019); END_STATE(); - case 3673: + case 3687: ACCEPT_TOKEN(anon_sym_in2); - if (lookahead == ',') ADVANCE(3029); + if (lookahead == ',') ADVANCE(3037); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(5341); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5346); + lookahead == 'f') ADVANCE(5368); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5373); END_STATE(); - case 3674: + case 3688: ACCEPT_TOKEN(anon_sym_in2); - if (lookahead == 'p') ADVANCE(3016); - if (lookahead == 't') ADVANCE(3012); + if (lookahead == 'p') ADVANCE(3024); + if (lookahead == 't') ADVANCE(3020); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3018); + lookahead == 'f') ADVANCE(3026); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3029); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3028); + lookahead == '@') ADVANCE(3037); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3036); END_STATE(); - case 3675: + case 3689: ACCEPT_TOKEN(anon_sym_in2); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3020); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3029); + lookahead == 'f') ADVANCE(3028); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); - case 3676: + case 3690: ACCEPT_TOKEN(anon_sym_in2); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); - case 3677: + case 3691: ACCEPT_TOKEN(anon_sym_in2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); - case 3678: + case 3692: ACCEPT_TOKEN(anon_sym_loop); - if (lookahead == ',') ADVANCE(2965); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5374); + if (lookahead == ',') ADVANCE(2973); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5401); END_STATE(); - case 3679: + case 3693: ACCEPT_TOKEN(anon_sym_loop); - if (lookahead == ',') ADVANCE(2965); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2963); + if (lookahead == ',') ADVANCE(2973); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2971); END_STATE(); - case 3680: + case 3694: ACCEPT_TOKEN(anon_sym_loop); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2965); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2964); + lookahead == '@') ADVANCE(2973); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2972); END_STATE(); - case 3681: + case 3695: ACCEPT_TOKEN(anon_sym_loop); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2965); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2973); END_STATE(); - case 3682: + case 3696: ACCEPT_TOKEN(anon_sym_make); END_STATE(); - case 3683: + case 3697: ACCEPT_TOKEN(anon_sym_make); - if (lookahead == ',') ADVANCE(3032); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5375); + if (lookahead == ',') ADVANCE(3040); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5402); END_STATE(); - case 3684: + case 3698: ACCEPT_TOKEN(anon_sym_make); - if (lookahead == ',') ADVANCE(3032); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3030); + if (lookahead == ',') ADVANCE(3040); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3038); END_STATE(); - case 3685: + case 3699: ACCEPT_TOKEN(anon_sym_make); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3032); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3031); + lookahead == '@') ADVANCE(3040); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3039); END_STATE(); - case 3686: + case 3700: ACCEPT_TOKEN(anon_sym_make); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3032); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3040); END_STATE(); - case 3687: + case 3701: ACCEPT_TOKEN(anon_sym_while); - if (lookahead == ',') ADVANCE(2968); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5385); + if (lookahead == ',') ADVANCE(2976); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5412); END_STATE(); - case 3688: + case 3702: ACCEPT_TOKEN(anon_sym_while); - if (lookahead == ',') ADVANCE(2968); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2966); + if (lookahead == ',') ADVANCE(2976); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2974); END_STATE(); - case 3689: + case 3703: ACCEPT_TOKEN(anon_sym_while); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2968); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2967); + lookahead == '@') ADVANCE(2976); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2975); END_STATE(); - case 3690: + case 3704: ACCEPT_TOKEN(anon_sym_while); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2968); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2976); END_STATE(); - case 3691: + case 3705: ACCEPT_TOKEN(anon_sym_do); END_STATE(); - case 3692: + case 3706: ACCEPT_TOKEN(anon_sym_do); - if (lookahead == ',') ADVANCE(2974); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5339); + if (lookahead == ',') ADVANCE(2982); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5366); END_STATE(); - case 3693: + case 3707: ACCEPT_TOKEN(anon_sym_do); - if (lookahead == ',') ADVANCE(2974); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2972); + if (lookahead == ',') ADVANCE(2982); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2980); END_STATE(); - case 3694: + case 3708: ACCEPT_TOKEN(anon_sym_do); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2974); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2973); + lookahead == '@') ADVANCE(2982); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2981); END_STATE(); - case 3695: + case 3709: ACCEPT_TOKEN(anon_sym_do); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2974); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2982); END_STATE(); - case 3696: + case 3710: ACCEPT_TOKEN(anon_sym_if); END_STATE(); - case 3697: + case 3711: ACCEPT_TOKEN(anon_sym_if); - if (lookahead == ',') ADVANCE(2977); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5340); + if (lookahead == ',') ADVANCE(2985); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5367); END_STATE(); - case 3698: + case 3712: ACCEPT_TOKEN(anon_sym_if); - if (lookahead == ',') ADVANCE(2977); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2975); + if (lookahead == ',') ADVANCE(2985); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2983); END_STATE(); - case 3699: + case 3713: ACCEPT_TOKEN(anon_sym_if); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2977); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2976); + lookahead == '@') ADVANCE(2985); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2984); END_STATE(); - case 3700: + case 3714: ACCEPT_TOKEN(anon_sym_if); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2977); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2985); END_STATE(); - case 3701: + case 3715: ACCEPT_TOKEN(anon_sym_if); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); - case 3702: + case 3716: ACCEPT_TOKEN(anon_sym_else); END_STATE(); - case 3703: + case 3717: ACCEPT_TOKEN(anon_sym_else); - if (lookahead == ',') ADVANCE(2980); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5369); + if (lookahead == ',') ADVANCE(2988); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5396); END_STATE(); - case 3704: + case 3718: ACCEPT_TOKEN(anon_sym_else); - if (lookahead == ',') ADVANCE(2980); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2978); + if (lookahead == ',') ADVANCE(2988); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2986); END_STATE(); - case 3705: + case 3719: ACCEPT_TOKEN(anon_sym_else); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2980); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2979); + lookahead == '@') ADVANCE(2988); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2987); END_STATE(); - case 3706: + case 3720: ACCEPT_TOKEN(anon_sym_else); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2980); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2988); END_STATE(); - case 3707: + case 3721: ACCEPT_TOKEN(anon_sym_match); END_STATE(); - case 3708: + case 3722: ACCEPT_TOKEN(anon_sym_match); - if (lookahead == ',') ADVANCE(2989); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5384); + if (lookahead == ',') ADVANCE(2997); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5411); END_STATE(); - case 3709: + case 3723: ACCEPT_TOKEN(anon_sym_match); - if (lookahead == ',') ADVANCE(2989); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2987); + if (lookahead == ',') ADVANCE(2997); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2995); END_STATE(); - case 3710: + case 3724: ACCEPT_TOKEN(anon_sym_match); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2989); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2988); + lookahead == '@') ADVANCE(2997); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2996); END_STATE(); - case 3711: + case 3725: ACCEPT_TOKEN(anon_sym_match); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2989); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2997); END_STATE(); - case 3712: + case 3726: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 3713: + case 3727: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 3714: + case 3728: ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); - case 3715: + case 3729: ACCEPT_TOKEN(anon_sym_EQ_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); - case 3716: + case 3730: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(3288); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3288); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == '_') ADVANCE(3302); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3302); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); - case 3717: + case 3731: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(4399); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); + if (lookahead == '_') ADVANCE(4417); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3995); END_STATE(); - case 3718: + case 3732: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(1904); - if (lookahead == '<') ADVANCE(3873); - if (lookahead == '=') ADVANCE(3870); + if (lookahead == '.') ADVANCE(1908); + if (lookahead == '<') ADVANCE(3887); + if (lookahead == '=') ADVANCE(3884); END_STATE(); - case 3719: + case 3733: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(4371); - if (lookahead == '<') ADVANCE(3873); - if (lookahead == '=') ADVANCE(3870); + if (lookahead == '.') ADVANCE(4389); + if (lookahead == '<') ADVANCE(3887); + if (lookahead == '=') ADVANCE(3884); END_STATE(); - case 3720: + case 3734: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(4959); - if (lookahead == '<') ADVANCE(3873); - if (lookahead == '=') ADVANCE(3870); + if (lookahead == '.') ADVANCE(4986); + if (lookahead == '<') ADVANCE(3887); + if (lookahead == '=') ADVANCE(3884); END_STATE(); - case 3721: + case 3735: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(3873); - if (lookahead == '=') ADVANCE(3870); + if (lookahead == '<') ADVANCE(3887); + if (lookahead == '=') ADVANCE(3884); END_STATE(); - case 3722: + case 3736: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(3875); - if (lookahead == '=') ADVANCE(3872); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '<') ADVANCE(3889); + if (lookahead == '=') ADVANCE(3886); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); - case 3723: + case 3737: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(3874); - if (lookahead == '=') ADVANCE(3871); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if (lookahead == '<') ADVANCE(3888); + if (lookahead == '=') ADVANCE(3885); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); - case 3724: + case 3738: ACCEPT_TOKEN(anon_sym_DOLLAR2); END_STATE(); - case 3725: + case 3739: ACCEPT_TOKEN(anon_sym_DOLLAR2); - if (lookahead == '"') ADVANCE(4088); - if (lookahead == '\'') ADVANCE(4085); + if (lookahead == '"') ADVANCE(4102); + if (lookahead == '\'') ADVANCE(4099); END_STATE(); - case 3726: + case 3740: ACCEPT_TOKEN(anon_sym_try); END_STATE(); - case 3727: + case 3741: ACCEPT_TOKEN(anon_sym_try); - if (lookahead == ',') ADVANCE(2983); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5361); + if (lookahead == ',') ADVANCE(2991); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5388); END_STATE(); - case 3728: + case 3742: ACCEPT_TOKEN(anon_sym_try); - if (lookahead == ',') ADVANCE(2983); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2981); + if (lookahead == ',') ADVANCE(2991); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2989); END_STATE(); - case 3729: + case 3743: ACCEPT_TOKEN(anon_sym_try); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2983); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2982); + lookahead == '@') ADVANCE(2991); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2990); END_STATE(); - case 3730: + case 3744: ACCEPT_TOKEN(anon_sym_try); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2983); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2991); END_STATE(); - case 3731: + case 3745: ACCEPT_TOKEN(anon_sym_catch); END_STATE(); - case 3732: + case 3746: ACCEPT_TOKEN(anon_sym_catch); - if (lookahead == ',') ADVANCE(2986); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5380); + if (lookahead == ',') ADVANCE(2994); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5407); END_STATE(); - case 3733: + case 3747: ACCEPT_TOKEN(anon_sym_catch); - if (lookahead == ',') ADVANCE(2986); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2984); + if (lookahead == ',') ADVANCE(2994); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2992); END_STATE(); - case 3734: + case 3748: ACCEPT_TOKEN(anon_sym_catch); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2986); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2985); + lookahead == '@') ADVANCE(2994); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2993); END_STATE(); - case 3735: + case 3749: ACCEPT_TOKEN(anon_sym_catch); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2986); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2994); END_STATE(); - case 3736: + case 3750: ACCEPT_TOKEN(anon_sym_return); - if (lookahead == ',') ADVANCE(2998); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5392); + if (lookahead == ',') ADVANCE(3006); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5419); END_STATE(); - case 3737: + case 3751: ACCEPT_TOKEN(anon_sym_return); - if (lookahead == ',') ADVANCE(2998); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2996); + if (lookahead == ',') ADVANCE(3006); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3004); END_STATE(); - case 3738: + case 3752: ACCEPT_TOKEN(anon_sym_return); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2998); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2997); + lookahead == '@') ADVANCE(3006); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3005); END_STATE(); - case 3739: + case 3753: ACCEPT_TOKEN(anon_sym_return); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2998); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3006); END_STATE(); - case 3740: + case 3754: ACCEPT_TOKEN(anon_sym_source); - if (lookahead == ',') ADVANCE(2947); - if (lookahead == '-') ADVANCE(2936); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2939); + if (lookahead == ',') ADVANCE(2955); + if (lookahead == '-') ADVANCE(2944); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2947); END_STATE(); - case 3741: + case 3755: ACCEPT_TOKEN(anon_sym_source); - if (lookahead == ',') ADVANCE(2947); - if (lookahead == '-') ADVANCE(5393); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5396); + if (lookahead == ',') ADVANCE(2955); + if (lookahead == '-') ADVANCE(5420); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5423); END_STATE(); - case 3742: + case 3756: ACCEPT_TOKEN(anon_sym_source); - if (lookahead == '-') ADVANCE(2940); + if (lookahead == '-') ADVANCE(2948); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2947); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2946); + lookahead == '@') ADVANCE(2955); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2954); END_STATE(); - case 3743: + case 3757: ACCEPT_TOKEN(anon_sym_source); - if (lookahead == '-') ADVANCE(2940); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2947); - END_STATE(); - case 3744: - ACCEPT_TOKEN(anon_sym_source_DASHenv); - if (lookahead == ',') ADVANCE(2947); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5396); + if (lookahead == '-') ADVANCE(2948); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2955); END_STATE(); - case 3745: + case 3758: ACCEPT_TOKEN(anon_sym_source_DASHenv); - if (lookahead == ',') ADVANCE(2947); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2939); + if (lookahead == ',') ADVANCE(2955); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5423); END_STATE(); - case 3746: + case 3759: ACCEPT_TOKEN(anon_sym_source_DASHenv); + if (lookahead == ',') ADVANCE(2955); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2947); END_STATE(); - case 3747: - ACCEPT_TOKEN(anon_sym_register); - if (lookahead == ',') ADVANCE(2953); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5399); - END_STATE(); - case 3748: - ACCEPT_TOKEN(anon_sym_register); - if (lookahead == ',') ADVANCE(2953); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2951); - END_STATE(); - case 3749: - ACCEPT_TOKEN(anon_sym_register); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2953); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2952); - END_STATE(); - case 3750: - ACCEPT_TOKEN(anon_sym_register); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2953); + case 3760: + ACCEPT_TOKEN(anon_sym_source_DASHenv); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2955); END_STATE(); - case 3751: + case 3761: ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == ',') ADVANCE(2935); - if (lookahead == '-') ADVANCE(2924); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2927); + if (lookahead == ',') ADVANCE(2943); + if (lookahead == '-') ADVANCE(2932); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2935); END_STATE(); - case 3752: + case 3762: ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == ',') ADVANCE(2935); - if (lookahead == '-') ADVANCE(5370); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5373); + if (lookahead == ',') ADVANCE(2943); + if (lookahead == '-') ADVANCE(5397); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5400); END_STATE(); - case 3753: + case 3763: ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == '-') ADVANCE(2928); + if (lookahead == '-') ADVANCE(2936); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2935); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2934); + lookahead == '@') ADVANCE(2943); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2942); END_STATE(); - case 3754: + case 3764: ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == '-') ADVANCE(2928); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2935); + if (lookahead == '-') ADVANCE(2936); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2943); END_STATE(); - case 3755: + case 3765: ACCEPT_TOKEN(anon_sym_hide); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); - case 3756: + case 3766: ACCEPT_TOKEN(anon_sym_hide_DASHenv); - if (lookahead == ',') ADVANCE(2935); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5373); + if (lookahead == ',') ADVANCE(2943); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5400); END_STATE(); - case 3757: + case 3767: ACCEPT_TOKEN(anon_sym_hide_DASHenv); - if (lookahead == ',') ADVANCE(2935); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2927); + if (lookahead == ',') ADVANCE(2943); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2935); END_STATE(); - case 3758: + case 3768: ACCEPT_TOKEN(anon_sym_hide_DASHenv); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2935); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2943); END_STATE(); - case 3759: + case 3769: ACCEPT_TOKEN(anon_sym_overlay); - if (lookahead == ',') ADVANCE(2950); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5397); + if (lookahead == ',') ADVANCE(2958); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5424); END_STATE(); - case 3760: + case 3770: ACCEPT_TOKEN(anon_sym_overlay); - if (lookahead == ',') ADVANCE(2950); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2948); + if (lookahead == ',') ADVANCE(2958); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2956); END_STATE(); - case 3761: + case 3771: ACCEPT_TOKEN(anon_sym_overlay); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2950); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2949); + lookahead == '@') ADVANCE(2958); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2957); END_STATE(); - case 3762: + case 3772: ACCEPT_TOKEN(anon_sym_overlay); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2950); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2958); END_STATE(); - case 3763: + case 3773: ACCEPT_TOKEN(anon_sym_as); END_STATE(); - case 3764: + case 3774: ACCEPT_TOKEN(anon_sym_as); - if (lookahead == ',') ADVANCE(3001); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5338); + if (lookahead == ',') ADVANCE(3009); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5365); END_STATE(); - case 3765: + case 3775: ACCEPT_TOKEN(anon_sym_as); - if (lookahead == ',') ADVANCE(3001); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2999); + if (lookahead == ',') ADVANCE(3009); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3007); END_STATE(); - case 3766: + case 3776: ACCEPT_TOKEN(anon_sym_as); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3001); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3000); + lookahead == '@') ADVANCE(3009); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3008); END_STATE(); - case 3767: + case 3777: ACCEPT_TOKEN(anon_sym_as); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3001); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3009); END_STATE(); - case 3768: + case 3778: ACCEPT_TOKEN(anon_sym_STAR2); END_STATE(); - case 3769: + case 3779: ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(3803); + if (lookahead == '*') ADVANCE(3817); END_STATE(); - case 3770: + case 3780: ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(3803); - if (lookahead == '=') ADVANCE(1812); + if (lookahead == '*') ADVANCE(3817); + if (lookahead == '=') ADVANCE(1816); END_STATE(); - case 3771: + case 3781: ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(3804); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '*') ADVANCE(3818); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); - case 3772: + case 3782: ACCEPT_TOKEN(anon_sym_QMARK2); END_STATE(); - case 3773: + case 3783: ACCEPT_TOKEN(anon_sym_where); END_STATE(); - case 3774: + case 3784: ACCEPT_TOKEN(anon_sym_and2); END_STATE(); - case 3775: + case 3785: ACCEPT_TOKEN(anon_sym_and2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); - case 3776: + case 3786: ACCEPT_TOKEN(anon_sym_xor2); END_STATE(); - case 3777: + case 3787: ACCEPT_TOKEN(anon_sym_xor2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); - case 3778: + case 3788: ACCEPT_TOKEN(anon_sym_or2); END_STATE(); - case 3779: + case 3789: ACCEPT_TOKEN(anon_sym_or2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); - case 3780: + case 3790: ACCEPT_TOKEN(anon_sym_not_DASHin2); END_STATE(); - case 3781: + case 3791: ACCEPT_TOKEN(anon_sym_not_DASHin2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); - case 3782: + case 3792: + ACCEPT_TOKEN(anon_sym_has2); + END_STATE(); + case 3793: + ACCEPT_TOKEN(anon_sym_has2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); + END_STATE(); + case 3794: + ACCEPT_TOKEN(anon_sym_not_DASHhas2); + END_STATE(); + case 3795: + ACCEPT_TOKEN(anon_sym_not_DASHhas2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); + END_STATE(); + case 3796: ACCEPT_TOKEN(anon_sym_starts_DASHwith2); END_STATE(); - case 3783: + case 3797: ACCEPT_TOKEN(anon_sym_starts_DASHwith2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); - case 3784: + case 3798: ACCEPT_TOKEN(anon_sym_ends_DASHwith2); END_STATE(); - case 3785: + case 3799: ACCEPT_TOKEN(anon_sym_ends_DASHwith2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); - case 3786: + case 3800: ACCEPT_TOKEN(anon_sym_EQ_EQ2); END_STATE(); - case 3787: + case 3801: ACCEPT_TOKEN(anon_sym_EQ_EQ2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); - case 3788: + case 3802: ACCEPT_TOKEN(anon_sym_BANG_EQ2); END_STATE(); - case 3789: + case 3803: ACCEPT_TOKEN(anon_sym_BANG_EQ2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); - case 3790: + case 3804: ACCEPT_TOKEN(anon_sym_LT2); END_STATE(); - case 3791: + case 3805: ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '=') ADVANCE(3793); + if (lookahead == '=') ADVANCE(3807); END_STATE(); - case 3792: + case 3806: ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '=') ADVANCE(3794); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '=') ADVANCE(3808); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); - case 3793: + case 3807: ACCEPT_TOKEN(anon_sym_LT_EQ2); END_STATE(); - case 3794: + case 3808: ACCEPT_TOKEN(anon_sym_LT_EQ2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); - case 3795: + case 3809: ACCEPT_TOKEN(anon_sym_GT_EQ2); END_STATE(); - case 3796: + case 3810: ACCEPT_TOKEN(anon_sym_GT_EQ2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); - case 3797: + case 3811: ACCEPT_TOKEN(anon_sym_EQ_TILDE2); END_STATE(); - case 3798: + case 3812: ACCEPT_TOKEN(anon_sym_EQ_TILDE2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); - case 3799: + case 3813: ACCEPT_TOKEN(anon_sym_BANG_TILDE2); END_STATE(); - case 3800: + case 3814: ACCEPT_TOKEN(anon_sym_BANG_TILDE2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); - case 3801: + case 3815: ACCEPT_TOKEN(aux_sym_expr_unary_token1); END_STATE(); - case 3802: + case 3816: ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); - case 3803: + case 3817: ACCEPT_TOKEN(anon_sym_STAR_STAR2); END_STATE(); - case 3804: + case 3818: ACCEPT_TOKEN(anon_sym_STAR_STAR2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); - case 3805: + case 3819: ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); END_STATE(); - case 3806: + case 3820: ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); - if (lookahead == '=') ADVANCE(1814); + if (lookahead == '=') ADVANCE(1818); END_STATE(); - case 3807: + case 3821: ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); - case 3808: + case 3822: ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '/') ADVANCE(3815); + if (lookahead == '/') ADVANCE(3829); END_STATE(); - case 3809: + case 3823: ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '/') ADVANCE(3815); - if (lookahead == '=') ADVANCE(1813); + if (lookahead == '/') ADVANCE(3829); + if (lookahead == '=') ADVANCE(1817); END_STATE(); - case 3810: + case 3824: ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '/') ADVANCE(3816); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '/') ADVANCE(3830); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); - case 3811: + case 3825: ACCEPT_TOKEN(anon_sym_SLASH2); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); - case 3812: + case 3826: ACCEPT_TOKEN(anon_sym_mod2); END_STATE(); - case 3813: + case 3827: ACCEPT_TOKEN(anon_sym_mod2); - if (lookahead == 'u') ADVANCE(2636); + if (lookahead == 'u') ADVANCE(2642); END_STATE(); - case 3814: + case 3828: ACCEPT_TOKEN(anon_sym_mod2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); - case 3815: + case 3829: ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); END_STATE(); - case 3816: + case 3830: ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); - case 3817: + case 3831: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(3805); + if (lookahead == '+') ADVANCE(3819); END_STATE(); - case 3818: + case 3832: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(3805); + if (lookahead == '+') ADVANCE(3819); if (lookahead == '.') ADVANCE(470); if (lookahead == '_') ADVANCE(438); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3904); - END_STATE(); - case 3819: - ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(3805); - if (lookahead == '.') ADVANCE(4539); - if (lookahead == '_') ADVANCE(4508); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3904); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3918); END_STATE(); - case 3820: - ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(3806); - if (lookahead == '.') ADVANCE(2446); - if (lookahead == '=') ADVANCE(1810); - if (lookahead == '_') ADVANCE(2065); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3982); - END_STATE(); - case 3821: + case 3833: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(3806); - if (lookahead == '=') ADVANCE(1810); + if (lookahead == '+') ADVANCE(3819); + if (lookahead == '.') ADVANCE(4557); + if (lookahead == '_') ADVANCE(4526); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3918); END_STATE(); - case 3822: + case 3834: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(3807); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '+') ADVANCE(3820); + if (lookahead == '.') ADVANCE(2450); + if (lookahead == '=') ADVANCE(1814); + if (lookahead == '_') ADVANCE(2069); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3996); END_STATE(); - case 3823: + case 3835: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '.') ADVANCE(2446); - if (lookahead == '_') ADVANCE(2065); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3982); + if (lookahead == '+') ADVANCE(3820); + if (lookahead == '=') ADVANCE(1814); END_STATE(); - case 3824: + case 3836: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '.') ADVANCE(5410); - if (lookahead == '_') ADVANCE(5401); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5410); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == '+') ADVANCE(3821); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); - case 3825: + case 3837: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '.') ADVANCE(1928); - if (lookahead == '_') ADVANCE(1917); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3904); + if (lookahead == '.') ADVANCE(2450); + if (lookahead == '_') ADVANCE(2069); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3996); END_STATE(); - case 3826: + case 3838: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '.') ADVANCE(2451); - if (lookahead == '_') ADVANCE(2073); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3904); + if (lookahead == '.') ADVANCE(5437); + if (lookahead == '_') ADVANCE(5428); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5437); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); - case 3827: + case 3839: ACCEPT_TOKEN(anon_sym_PLUS2); if (lookahead == '.') ADVANCE(1932); - if (lookahead == '_') ADVANCE(1918); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3982); - END_STATE(); - case 3828: - ACCEPT_TOKEN(anon_sym_bit_DASHshl2); - END_STATE(); - case 3829: - ACCEPT_TOKEN(anon_sym_bit_DASHshl2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); - END_STATE(); - case 3830: - ACCEPT_TOKEN(anon_sym_bit_DASHshr2); - END_STATE(); - case 3831: - ACCEPT_TOKEN(anon_sym_bit_DASHshr2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); - END_STATE(); - case 3832: - ACCEPT_TOKEN(anon_sym_bit_DASHand2); - END_STATE(); - case 3833: - ACCEPT_TOKEN(anon_sym_bit_DASHand2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); - END_STATE(); - case 3834: - ACCEPT_TOKEN(anon_sym_bit_DASHxor2); - END_STATE(); - case 3835: - ACCEPT_TOKEN(anon_sym_bit_DASHxor2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); - END_STATE(); - case 3836: - ACCEPT_TOKEN(anon_sym_bit_DASHor2); - END_STATE(); - case 3837: - ACCEPT_TOKEN(anon_sym_bit_DASHor2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); - END_STATE(); - case 3838: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LPAREN); - END_STATE(); - case 3839: - ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '.') ADVANCE(1904); - if (lookahead == '<') ADVANCE(3877); - if (lookahead == '=') ADVANCE(3876); + if (lookahead == '_') ADVANCE(1921); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3918); END_STATE(); case 3840: - ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '.') ADVANCE(1903); - if (lookahead == '<') ADVANCE(3877); - if (lookahead == '=') ADVANCE(3876); + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '.') ADVANCE(2455); + if (lookahead == '_') ADVANCE(2077); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3918); END_STATE(); case 3841: - ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '.') ADVANCE(3627); - if (lookahead == '<') ADVANCE(3877); - if (lookahead == '=') ADVANCE(3876); + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '.') ADVANCE(1936); + if (lookahead == '_') ADVANCE(1922); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3996); END_STATE(); case 3842: - ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '<') ADVANCE(3877); - if (lookahead == '=') ADVANCE(3876); + ACCEPT_TOKEN(anon_sym_bit_DASHshl2); END_STATE(); case 3843: - ACCEPT_TOKEN(anon_sym_DOT); + ACCEPT_TOKEN(anon_sym_bit_DASHshl2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 3844: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(5291); - if (lookahead == '_') ADVANCE(5304); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3983); + ACCEPT_TOKEN(anon_sym_bit_DASHshr2); END_STATE(); case 3845: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3721); - if (lookahead == '_') ADVANCE(4401); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3988); + ACCEPT_TOKEN(anon_sym_bit_DASHshr2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 3846: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3721); - if (lookahead == '_') ADVANCE(4983); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3989); + ACCEPT_TOKEN(anon_sym_bit_DASHand2); END_STATE(); case 3847: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3721); - if (lookahead == '_') ADVANCE(4540); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3908); + ACCEPT_TOKEN(anon_sym_bit_DASHand2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 3848: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3721); - if (lookahead == '_') ADVANCE(5074); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3911); + ACCEPT_TOKEN(anon_sym_bit_DASHxor2); END_STATE(); case 3849: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3721); - if (lookahead == '_') ADVANCE(4405); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3909); + ACCEPT_TOKEN(anon_sym_bit_DASHxor2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 3850: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3721); - if (lookahead == '_') ADVANCE(5078); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3992); + ACCEPT_TOKEN(anon_sym_bit_DASHor2); END_STATE(); case 3851: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3721); - if (lookahead == '_') ADVANCE(4988); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3912); + ACCEPT_TOKEN(anon_sym_bit_DASHor2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 3852: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3721); - if (lookahead == '_') ADVANCE(4545); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3991); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LPAREN); END_STATE(); case 3853: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3839); - if (lookahead == '_') ADVANCE(2447); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3986); + ACCEPT_TOKEN(anon_sym_DOT_DOT2); + if (lookahead == '.') ADVANCE(1908); + if (lookahead == '<') ADVANCE(3891); + if (lookahead == '=') ADVANCE(3890); END_STATE(); case 3854: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(2068); - if (lookahead == '_') ADVANCE(2447); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3986); + ACCEPT_TOKEN(anon_sym_DOT_DOT2); + if (lookahead == '.') ADVANCE(1907); + if (lookahead == '<') ADVANCE(3891); + if (lookahead == '=') ADVANCE(3890); END_STATE(); case 3855: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1915); - if (lookahead == '_') ADVANCE(1929); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3905); + ACCEPT_TOKEN(anon_sym_DOT_DOT2); + if (lookahead == '.') ADVANCE(3641); + if (lookahead == '<') ADVANCE(3891); + if (lookahead == '=') ADVANCE(3890); END_STATE(); case 3856: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1915); - if (lookahead == '_') ADVANCE(1933); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3987); + ACCEPT_TOKEN(anon_sym_DOT_DOT2); + if (lookahead == '<') ADVANCE(3891); + if (lookahead == '=') ADVANCE(3890); END_STATE(); case 3857: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3842); END_STATE(); case 3858: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3842); - if (lookahead == '_') ADVANCE(2447); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3986); + if (lookahead == '.') ADVANCE(5318); + if (lookahead == '_') ADVANCE(5331); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3997); END_STATE(); case 3859: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3842); - if (lookahead == '_') ADVANCE(4401); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3988); + if (lookahead == '.') ADVANCE(3735); + if (lookahead == '_') ADVANCE(4419); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); END_STATE(); case 3860: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3842); - if (lookahead == '_') ADVANCE(4983); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3989); + if (lookahead == '.') ADVANCE(3735); + if (lookahead == '_') ADVANCE(5010); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4003); END_STATE(); case 3861: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3842); - if (lookahead == '_') ADVANCE(5078); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3992); + if (lookahead == '.') ADVANCE(3735); + if (lookahead == '_') ADVANCE(4558); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3922); END_STATE(); case 3862: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3842); - if (lookahead == '_') ADVANCE(4545); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3991); + if (lookahead == '.') ADVANCE(3735); + if (lookahead == '_') ADVANCE(5101); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3925); END_STATE(); case 3863: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(5293); + if (lookahead == '.') ADVANCE(3735); + if (lookahead == '_') ADVANCE(4423); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3923); END_STATE(); case 3864: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(5293); - if (lookahead == '_') ADVANCE(5309); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3913); + if (lookahead == '.') ADVANCE(3735); + if (lookahead == '_') ADVANCE(4562); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4005); END_STATE(); case 3865: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3840); - if (lookahead == '_') ADVANCE(1933); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3987); + if (lookahead == '.') ADVANCE(3735); + if (lookahead == '_') ADVANCE(5015); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3926); END_STATE(); case 3866: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3841); + if (lookahead == '.') ADVANCE(3735); + if (lookahead == '_') ADVANCE(5106); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4006); END_STATE(); case 3867: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(4540); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3908); + if (lookahead == '.') ADVANCE(3853); + if (lookahead == '_') ADVANCE(2451); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); END_STATE(); case 3868: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(5074); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3911); + if (lookahead == '.') ADVANCE(2072); + if (lookahead == '_') ADVANCE(2451); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); END_STATE(); case 3869: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(5309); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3913); + if (lookahead == '.') ADVANCE(1919); + if (lookahead == '_') ADVANCE(1933); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3919); END_STATE(); case 3870: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(1919); + if (lookahead == '_') ADVANCE(1937); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4001); END_STATE(); case 3871: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3856); END_STATE(); case 3872: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3856); + if (lookahead == '_') ADVANCE(2451); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); END_STATE(); case 3873: - ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3856); + if (lookahead == '_') ADVANCE(4419); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); END_STATE(); case 3874: - ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3856); + if (lookahead == '_') ADVANCE(5010); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4003); END_STATE(); case 3875: - ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3856); + if (lookahead == '_') ADVANCE(4562); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4005); END_STATE(); case 3876: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ2); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3856); + if (lookahead == '_') ADVANCE(5106); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4006); END_STATE(); case 3877: - ACCEPT_TOKEN(anon_sym_DOT_DOT_LT2); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(5320); END_STATE(); case 3878: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(4461); - if (lookahead == '_') ADVANCE(3888); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(5320); + if (lookahead == '_') ADVANCE(5336); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3927); END_STATE(); case 3879: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(5032); - if (lookahead == '_') ADVANCE(3888); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3854); + if (lookahead == '_') ADVANCE(1937); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4001); END_STATE(); case 3880: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(4675); - if (lookahead == '_') ADVANCE(3888); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3855); END_STATE(); case 3881: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(5134); - if (lookahead == '_') ADVANCE(3888); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '_') ADVANCE(4558); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3922); END_STATE(); case 3882: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3888); - if (lookahead == 'b') ADVANCE(4019); - if (lookahead == 'o') ADVANCE(4035); - if (lookahead == 'x') ADVANCE(4040); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3890); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '_') ADVANCE(5101); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3925); END_STATE(); case 3883: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3888); - if (lookahead == 'b') ADVANCE(4019); - if (lookahead == 'o') ADVANCE(4035); - if (lookahead == 'x') ADVANCE(4040); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3892); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '_') ADVANCE(5336); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3927); END_STATE(); case 3884: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3888); - if (lookahead == 'b') ADVANCE(4019); - if (lookahead == 'o') ADVANCE(4035); - if (lookahead == 'x') ADVANCE(4040); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); END_STATE(); case 3885: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3888); - if (lookahead == 'b') ADVANCE(4019); - if (lookahead == 'o') ADVANCE(4035); - if (lookahead == 'x') ADVANCE(4040); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 3886: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3888); - if (lookahead == 'b') ADVANCE(2850); - if (lookahead == 'o') ADVANCE(2852); - if (lookahead == 'x') ADVANCE(2859); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 3887: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3888); - if (lookahead == 'b') ADVANCE(2045); - if (lookahead == 'o') ADVANCE(2046); - if (lookahead == 'x') ADVANCE(2047); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); + ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); END_STATE(); case 3888: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3888); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); + ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 3889: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3888); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 3890: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3888); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3889); + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ2); END_STATE(); case 3891: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3888); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3878); + ACCEPT_TOKEN(anon_sym_DOT_DOT_LT2); END_STATE(); case 3892: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3888); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3891); + if (lookahead == '-') ADVANCE(4479); + if (lookahead == '_') ADVANCE(3902); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); END_STATE(); case 3893: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3888); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3881); + if (lookahead == '-') ADVANCE(5059); + if (lookahead == '_') ADVANCE(3902); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); END_STATE(); case 3894: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3888); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); + if (lookahead == '-') ADVANCE(4698); + if (lookahead == '_') ADVANCE(3902); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); END_STATE(); case 3895: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3888); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); + if (lookahead == '-') ADVANCE(5161); + if (lookahead == '_') ADVANCE(3902); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); END_STATE(); case 3896: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3888); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3895); + if (lookahead == '_') ADVANCE(3902); + if (lookahead == 'b') ADVANCE(4033); + if (lookahead == 'o') ADVANCE(4049); + if (lookahead == 'x') ADVANCE(4054); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3904); END_STATE(); case 3897: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3888); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3890); + if (lookahead == '_') ADVANCE(3902); + if (lookahead == 'b') ADVANCE(4033); + if (lookahead == 'o') ADVANCE(4049); + if (lookahead == 'x') ADVANCE(4054); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3906); END_STATE(); case 3898: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3888); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3892); + if (lookahead == '_') ADVANCE(3902); + if (lookahead == 'b') ADVANCE(4033); + if (lookahead == 'o') ADVANCE(4049); + if (lookahead == 'x') ADVANCE(4054); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3908); END_STATE(); case 3899: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3888); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if (lookahead == '_') ADVANCE(3902); + if (lookahead == 'b') ADVANCE(4033); + if (lookahead == 'o') ADVANCE(4049); + if (lookahead == 'x') ADVANCE(4054); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3910); END_STATE(); case 3900: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3888); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); + if (lookahead == '_') ADVANCE(3902); + if (lookahead == 'b') ADVANCE(2858); + if (lookahead == 'o') ADVANCE(2860); + if (lookahead == 'x') ADVANCE(2867); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); END_STATE(); case 3901: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3901); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3901); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == '_') ADVANCE(3902); + if (lookahead == 'b') ADVANCE(2049); + if (lookahead == 'o') ADVANCE(2050); + if (lookahead == 'x') ADVANCE(2051); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); END_STATE(); case 3902: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); if (lookahead == '_') ADVANCE(3902); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); END_STATE(); case 3903: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); - if (lookahead == '_') ADVANCE(3903); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3903); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3902); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); END_STATE(); case 3904: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); - if (lookahead == '_') ADVANCE(3904); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3904); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3902); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3903); END_STATE(); case 3905: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3905); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1930); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3905); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3902); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3892); END_STATE(); case 3906: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3906); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3906); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3902); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3905); END_STATE(); case 3907: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3907); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2453); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3907); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3902); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3895); END_STATE(); case 3908: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3908); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4541); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3908); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3902); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3907); END_STATE(); case 3909: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3909); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4406); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3909); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3902); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); END_STATE(); case 3910: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3910); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(480); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3910); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3902); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3909); END_STATE(); case 3911: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3911); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(5075); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3911); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3902); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3904); END_STATE(); case 3912: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3912); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4989); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3912); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3902); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3906); END_STATE(); case 3913: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3913); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(5310); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3913); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3902); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3908); END_STATE(); case 3914: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3914); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(5151); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3914); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3902); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3910); END_STATE(); case 3915: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); if (lookahead == '_') ADVANCE(3915); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4692); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3915); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3916: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); if (lookahead == '_') ADVANCE(3916); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(5334); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); END_STATE(); case 3917: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); if (lookahead == '_') ADVANCE(3917); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3917); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3918: - ACCEPT_TOKEN(anon_sym_null); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); + if (lookahead == '_') ADVANCE(3918); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3918); END_STATE(); case 3919: - ACCEPT_TOKEN(anon_sym_null); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3054); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3053); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + if (lookahead == '_') ADVANCE(3919); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3919); END_STATE(); case 3920: - ACCEPT_TOKEN(anon_sym_null); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + if (lookahead == '_') ADVANCE(3920); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3920); END_STATE(); case 3921: - ACCEPT_TOKEN(anon_sym_null); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + if (lookahead == '_') ADVANCE(3921); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2457); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3921); END_STATE(); case 3922: - ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3054); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + if (lookahead == '_') ADVANCE(3922); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4559); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3922); END_STATE(); case 3923: - ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + if (lookahead == '_') ADVANCE(3923); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4424); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3923); END_STATE(); case 3924: - ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + if (lookahead == '_') ADVANCE(3924); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3924); END_STATE(); case 3925: - ACCEPT_TOKEN(anon_sym_RPAREN2); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + if (lookahead == '_') ADVANCE(3925); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(5102); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3925); END_STATE(); case 3926: - ACCEPT_TOKEN(anon_sym_true); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + if (lookahead == '_') ADVANCE(3926); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(5016); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3926); END_STATE(); case 3927: - ACCEPT_TOKEN(anon_sym_true); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3048); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3047); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + if (lookahead == '_') ADVANCE(3927); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(5337); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3927); END_STATE(); case 3928: - ACCEPT_TOKEN(anon_sym_true); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + if (lookahead == '_') ADVANCE(3928); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(5178); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3928); END_STATE(); case 3929: - ACCEPT_TOKEN(anon_sym_true); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + if (lookahead == '_') ADVANCE(3929); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4715); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3929); END_STATE(); case 3930: - ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + if (lookahead == '_') ADVANCE(3930); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(5361); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3930); END_STATE(); case 3931: - ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3048); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); + if (lookahead == '_') ADVANCE(3931); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3931); END_STATE(); case 3932: - ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + ACCEPT_TOKEN(anon_sym_null); END_STATE(); case 3933: - ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ACCEPT_TOKEN(anon_sym_null); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3062); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3061); END_STATE(); case 3934: - ACCEPT_TOKEN(anon_sym_false); + ACCEPT_TOKEN(anon_sym_null); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3935: - ACCEPT_TOKEN(anon_sym_false); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3051); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3050); + ACCEPT_TOKEN(anon_sym_null); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 3936: - ACCEPT_TOKEN(anon_sym_false); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + ACCEPT_TOKEN(anon_sym_null); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3062); END_STATE(); case 3937: - ACCEPT_TOKEN(anon_sym_false); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + ACCEPT_TOKEN(anon_sym_null); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 3938: - ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + ACCEPT_TOKEN(anon_sym_null); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 3939: - ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3051); + ACCEPT_TOKEN(anon_sym_RPAREN2); END_STATE(); case 3940: - ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + ACCEPT_TOKEN(anon_sym_true); END_STATE(); case 3941: - ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ACCEPT_TOKEN(anon_sym_true); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3056); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3055); END_STATE(); case 3942: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); + ACCEPT_TOKEN(anon_sym_true); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3943: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + ACCEPT_TOKEN(anon_sym_true); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 3944: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(2856); - if (lookahead == '_') ADVANCE(3981); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); + ACCEPT_TOKEN(anon_sym_true); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3945: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(4461); - if (lookahead == '_') ADVANCE(3981); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); + ACCEPT_TOKEN(anon_sym_true); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3056); END_STATE(); case 3946: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(5032); - if (lookahead == '_') ADVANCE(3981); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); + ACCEPT_TOKEN(anon_sym_true); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 3947: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(5286); - if (lookahead == '_') ADVANCE(3981); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); + ACCEPT_TOKEN(anon_sym_true); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 3948: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(4675); - if (lookahead == '_') ADVANCE(3981); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); + ACCEPT_TOKEN(anon_sym_false); END_STATE(); case 3949: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(5134); - if (lookahead == '_') ADVANCE(3981); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); + ACCEPT_TOKEN(anon_sym_false); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3059); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3058); END_STATE(); case 3950: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(1614); - if (lookahead == '_') ADVANCE(3981); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); + ACCEPT_TOKEN(anon_sym_false); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); case 3951: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3981); - if (lookahead == 'b') ADVANCE(4019); - if (lookahead == 'o') ADVANCE(4035); - if (lookahead == 'x') ADVANCE(4040); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3961); + ACCEPT_TOKEN(anon_sym_false); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 3952: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3981); - if (lookahead == 'b') ADVANCE(4019); - if (lookahead == 'o') ADVANCE(4035); - if (lookahead == 'x') ADVANCE(4040); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3963); + ACCEPT_TOKEN(anon_sym_false); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 3953: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3981); - if (lookahead == 'b') ADVANCE(4019); - if (lookahead == 'o') ADVANCE(4035); - if (lookahead == 'x') ADVANCE(4040); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3965); + ACCEPT_TOKEN(anon_sym_false); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3059); END_STATE(); case 3954: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3981); - if (lookahead == 'b') ADVANCE(4019); - if (lookahead == 'o') ADVANCE(4035); - if (lookahead == 'x') ADVANCE(4040); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3967); + ACCEPT_TOKEN(anon_sym_false); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 3955: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3981); - if (lookahead == 'b') ADVANCE(4019); - if (lookahead == 'o') ADVANCE(4035); - if (lookahead == 'x') ADVANCE(4040); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3969); + ACCEPT_TOKEN(anon_sym_false); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 3956: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3981); - if (lookahead == 'b') ADVANCE(4019); - if (lookahead == 'o') ADVANCE(4035); - if (lookahead == 'x') ADVANCE(4040); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3971); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); END_STATE(); case 3957: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3981); - if (lookahead == 'b') ADVANCE(4019); - if (lookahead == 'o') ADVANCE(4035); - if (lookahead == 'x') ADVANCE(4040); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 3958: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3981); - if (lookahead == 'b') ADVANCE(2850); - if (lookahead == 'o') ADVANCE(2852); - if (lookahead == 'x') ADVANCE(2859); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); + if (lookahead == '-') ADVANCE(2864); + if (lookahead == '_') ADVANCE(3995); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3995); END_STATE(); case 3959: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3981); - if (lookahead == 'b') ADVANCE(2045); - if (lookahead == 'o') ADVANCE(2046); - if (lookahead == 'x') ADVANCE(2047); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); + if (lookahead == '-') ADVANCE(4479); + if (lookahead == '_') ADVANCE(3995); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3995); END_STATE(); case 3960: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3981); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3944); + if (lookahead == '-') ADVANCE(5059); + if (lookahead == '_') ADVANCE(3995); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3995); END_STATE(); case 3961: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3981); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3960); + if (lookahead == '-') ADVANCE(5313); + if (lookahead == '_') ADVANCE(3995); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3995); END_STATE(); case 3962: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3981); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3945); + if (lookahead == '-') ADVANCE(4698); + if (lookahead == '_') ADVANCE(3995); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3995); END_STATE(); case 3963: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3981); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3962); + if (lookahead == '-') ADVANCE(5161); + if (lookahead == '_') ADVANCE(3995); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3995); END_STATE(); case 3964: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3981); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3946); + if (lookahead == '-') ADVANCE(1618); + if (lookahead == '_') ADVANCE(3995); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3995); END_STATE(); case 3965: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3981); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3964); + if (lookahead == '_') ADVANCE(3995); + if (lookahead == 'b') ADVANCE(4033); + if (lookahead == 'o') ADVANCE(4049); + if (lookahead == 'x') ADVANCE(4054); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3975); END_STATE(); case 3966: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3981); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3950); + if (lookahead == '_') ADVANCE(3995); + if (lookahead == 'b') ADVANCE(4033); + if (lookahead == 'o') ADVANCE(4049); + if (lookahead == 'x') ADVANCE(4054); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3977); END_STATE(); case 3967: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3981); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3966); + if (lookahead == '_') ADVANCE(3995); + if (lookahead == 'b') ADVANCE(4033); + if (lookahead == 'o') ADVANCE(4049); + if (lookahead == 'x') ADVANCE(4054); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3979); END_STATE(); case 3968: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3981); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3947); + if (lookahead == '_') ADVANCE(3995); + if (lookahead == 'b') ADVANCE(4033); + if (lookahead == 'o') ADVANCE(4049); + if (lookahead == 'x') ADVANCE(4054); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); END_STATE(); case 3969: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3981); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3968); + if (lookahead == '_') ADVANCE(3995); + if (lookahead == 'b') ADVANCE(4033); + if (lookahead == 'o') ADVANCE(4049); + if (lookahead == 'x') ADVANCE(4054); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3983); END_STATE(); case 3970: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3981); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3948); + if (lookahead == '_') ADVANCE(3995); + if (lookahead == 'b') ADVANCE(4033); + if (lookahead == 'o') ADVANCE(4049); + if (lookahead == 'x') ADVANCE(4054); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3985); END_STATE(); case 3971: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3981); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3970); + if (lookahead == '_') ADVANCE(3995); + if (lookahead == 'b') ADVANCE(4033); + if (lookahead == 'o') ADVANCE(4049); + if (lookahead == 'x') ADVANCE(4054); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3987); END_STATE(); case 3972: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3981); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3949); + if (lookahead == '_') ADVANCE(3995); + if (lookahead == 'b') ADVANCE(2858); + if (lookahead == 'o') ADVANCE(2860); + if (lookahead == 'x') ADVANCE(2867); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3995); END_STATE(); case 3973: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3981); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3972); + if (lookahead == '_') ADVANCE(3995); + if (lookahead == 'b') ADVANCE(2049); + if (lookahead == 'o') ADVANCE(2050); + if (lookahead == 'x') ADVANCE(2051); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3995); END_STATE(); case 3974: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3981); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3961); + if (lookahead == '_') ADVANCE(3995); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3958); END_STATE(); case 3975: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3981); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3963); + if (lookahead == '_') ADVANCE(3995); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); END_STATE(); case 3976: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3981); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3965); + if (lookahead == '_') ADVANCE(3995); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3959); END_STATE(); case 3977: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3981); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3967); + if (lookahead == '_') ADVANCE(3995); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3976); END_STATE(); case 3978: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3981); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3969); + if (lookahead == '_') ADVANCE(3995); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3960); END_STATE(); case 3979: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3981); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3971); + if (lookahead == '_') ADVANCE(3995); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3978); END_STATE(); case 3980: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3981); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); + if (lookahead == '_') ADVANCE(3995); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3964); END_STATE(); case 3981: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3981); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); + if (lookahead == '_') ADVANCE(3995); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3980); END_STATE(); case 3982: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token2); - if (lookahead == '_') ADVANCE(3982); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3982); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3995); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3961); END_STATE(); case 3983: + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3995); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3982); + END_STATE(); + case 3984: + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3995); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3962); + END_STATE(); + case 3985: + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3995); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + END_STATE(); + case 3986: + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3995); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3963); + END_STATE(); + case 3987: + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3995); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3986); + END_STATE(); + case 3988: + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3995); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3975); + END_STATE(); + case 3989: + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3995); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3977); + END_STATE(); + case 3990: + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3995); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3979); + END_STATE(); + case 3991: + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3995); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); + END_STATE(); + case 3992: + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3995); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3983); + END_STATE(); + case 3993: + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3995); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3985); + END_STATE(); + case 3994: + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3995); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3987); + END_STATE(); + case 3995: + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3995); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3995); + END_STATE(); + case 3996: + ACCEPT_TOKEN(aux_sym__val_number_decimal_token2); + if (lookahead == '_') ADVANCE(3996); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3996); + END_STATE(); + case 3997: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(3983); + if (lookahead == '_') ADVANCE(3997); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(5305); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3983); + lookahead == 'e') ADVANCE(5332); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3997); END_STATE(); - case 3984: + case 3998: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(3984); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if (lookahead == '_') ADVANCE(3998); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); END_STATE(); - case 3985: + case 3999: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(3985); + if (lookahead == '_') ADVANCE(3999); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(5245); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3985); + lookahead == 'e') ADVANCE(5272); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3999); END_STATE(); - case 3986: + case 4000: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(3986); + if (lookahead == '_') ADVANCE(4000); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2448); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3986); + lookahead == 'e') ADVANCE(2452); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); END_STATE(); - case 3987: + case 4001: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(3987); + if (lookahead == '_') ADVANCE(4001); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1937); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3987); + lookahead == 'e') ADVANCE(1941); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4001); END_STATE(); - case 3988: + case 4002: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(3988); + if (lookahead == '_') ADVANCE(4002); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4402); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3988); + lookahead == 'e') ADVANCE(4420); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); END_STATE(); - case 3989: + case 4003: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(3989); + if (lookahead == '_') ADVANCE(4003); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4984); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3989); + lookahead == 'e') ADVANCE(5011); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4003); END_STATE(); - case 3990: + case 4004: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(3990); + if (lookahead == '_') ADVANCE(4004); if (lookahead == 'E' || lookahead == 'e') ADVANCE(473); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3990); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4004); END_STATE(); - case 3991: + case 4005: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(3991); + if (lookahead == '_') ADVANCE(4005); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4552); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3991); + lookahead == 'e') ADVANCE(4569); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4005); END_STATE(); - case 3992: + case 4006: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(3992); + if (lookahead == '_') ADVANCE(4006); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(5082); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3992); + lookahead == 'e') ADVANCE(5110); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4006); END_STATE(); - case 3993: + case 4007: ACCEPT_TOKEN(aux_sym__val_number_decimal_token4); - if (lookahead == '_') ADVANCE(3993); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3993); + if (lookahead == '_') ADVANCE(4007); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4007); END_STATE(); - case 3994: + case 4008: ACCEPT_TOKEN(aux_sym__val_number_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3994); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4008); END_STATE(); - case 3995: + case 4009: ACCEPT_TOKEN(aux_sym__val_number_token2); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(3995); + lookahead == '_') ADVANCE(4009); END_STATE(); - case 3996: + case 4010: ACCEPT_TOKEN(aux_sym__val_number_token3); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3996); + lookahead == '_') ADVANCE(4010); END_STATE(); - case 3997: + case 4011: ACCEPT_TOKEN(aux_sym__val_number_token4); END_STATE(); - case 3998: + case 4012: ACCEPT_TOKEN(aux_sym__val_number_token4); - if (lookahead == ',') ADVANCE(3069); + if (lookahead == ',') ADVANCE(3077); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3056); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3059); + lookahead == 'i') ADVANCE(3064); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3067); END_STATE(); - case 3999: + case 4013: ACCEPT_TOKEN(aux_sym__val_number_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3062); + lookahead == 'i') ADVANCE(3070); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3069); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3068); + lookahead == '@') ADVANCE(3077); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3076); END_STATE(); - case 4000: + case 4014: ACCEPT_TOKEN(aux_sym__val_number_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3063); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3069); + lookahead == 'i') ADVANCE(3071); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3077); END_STATE(); - case 4001: + case 4015: ACCEPT_TOKEN(aux_sym__val_number_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4449); + lookahead == 'i') ADVANCE(4467); END_STATE(); - case 4002: + case 4016: ACCEPT_TOKEN(aux_sym__val_number_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5021); + lookahead == 'i') ADVANCE(5048); END_STATE(); - case 4003: + case 4017: ACCEPT_TOKEN(aux_sym__val_number_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5277); + lookahead == 'i') ADVANCE(5304); END_STATE(); - case 4004: + case 4018: ACCEPT_TOKEN(aux_sym__val_number_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4663); + lookahead == 'i') ADVANCE(4686); END_STATE(); - case 4005: + case 4019: ACCEPT_TOKEN(aux_sym__val_number_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5123); + lookahead == 'i') ADVANCE(5150); END_STATE(); - case 4006: + case 4020: ACCEPT_TOKEN(aux_sym__val_number_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1598); + lookahead == 'i') ADVANCE(1602); END_STATE(); - case 4007: + case 4021: ACCEPT_TOKEN(aux_sym__val_number_token5); END_STATE(); - case 4008: + case 4022: ACCEPT_TOKEN(aux_sym__val_number_token5); - if (lookahead == ',') ADVANCE(3079); + if (lookahead == ',') ADVANCE(3087); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3071); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3074); + lookahead == 'i') ADVANCE(3079); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3082); END_STATE(); - case 4009: + case 4023: ACCEPT_TOKEN(aux_sym__val_number_token5); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3076); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3079); + lookahead == 'i') ADVANCE(3084); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3087); END_STATE(); - case 4010: + case 4024: ACCEPT_TOKEN(aux_sym__val_number_token5); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1594); + lookahead == 'i') ADVANCE(1598); END_STATE(); - case 4011: + case 4025: ACCEPT_TOKEN(aux_sym__val_number_token5); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5023); + lookahead == 'i') ADVANCE(5050); END_STATE(); - case 4012: + case 4026: ACCEPT_TOKEN(aux_sym__val_number_token5); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5279); + lookahead == 'i') ADVANCE(5306); END_STATE(); - case 4013: + case 4027: ACCEPT_TOKEN(aux_sym__val_number_token5); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4666); + lookahead == 'i') ADVANCE(4689); END_STATE(); - case 4014: + case 4028: ACCEPT_TOKEN(aux_sym__val_number_token5); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5125); + lookahead == 'i') ADVANCE(5152); END_STATE(); - case 4015: + case 4029: ACCEPT_TOKEN(aux_sym__val_number_token6); END_STATE(); - case 4016: + case 4030: ACCEPT_TOKEN(aux_sym__val_number_token6); - if (lookahead == ',') ADVANCE(3082); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3080); + if (lookahead == ',') ADVANCE(3090); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3088); END_STATE(); - case 4017: + case 4031: ACCEPT_TOKEN(aux_sym__val_number_token6); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3082); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3081); + lookahead == '@') ADVANCE(3090); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3089); END_STATE(); - case 4018: + case 4032: ACCEPT_TOKEN(aux_sym__val_number_token6); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3082); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3090); END_STATE(); - case 4019: + case 4033: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(3995); + lookahead == '_') ADVANCE(4009); END_STATE(); - case 4020: + case 4034: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(4358); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + lookahead == '_') ADVANCE(4965); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); - case 4021: + case 4035: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(3517); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + lookahead == '_') ADVANCE(4376); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); - case 4022: + case 4036: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(4938); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + lookahead == '_') ADVANCE(3531); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); - case 4023: + case 4037: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(5211); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + lookahead == '_') ADVANCE(5238); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); - case 4024: + case 4038: ACCEPT_TOKEN(sym_filesize_unit); END_STATE(); - case 4025: + case 4039: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(3247); + if (lookahead == 'i') ADVANCE(3261); END_STATE(); - case 4026: + case 4040: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(4626); + if (lookahead == 'i') ADVANCE(4649); END_STATE(); - case 4027: + case 4041: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(1447); + if (lookahead == 'i') ADVANCE(1451); END_STATE(); - case 4028: + case 4042: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'r') ADVANCE(1965); + if (lookahead == 'r') ADVANCE(1969); END_STATE(); - case 4029: + case 4043: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'r') ADVANCE(2542); + if (lookahead == 'r') ADVANCE(2548); END_STATE(); - case 4030: + case 4044: ACCEPT_TOKEN(sym_filesize_unit); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); - case 4031: + case 4045: ACCEPT_TOKEN(sym_duration_unit); END_STATE(); - case 4032: + case 4046: ACCEPT_TOKEN(sym_duration_unit); - if (lookahead == 'e') ADVANCE(3595); + if (lookahead == 'e') ADVANCE(3609); END_STATE(); - case 4033: + case 4047: ACCEPT_TOKEN(sym_duration_unit); - if (lookahead == 'e') ADVANCE(2869); + if (lookahead == 'e') ADVANCE(2877); END_STATE(); - case 4034: + case 4048: ACCEPT_TOKEN(sym_duration_unit); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); - case 4035: + case 4049: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3996); + lookahead == '_') ADVANCE(4010); END_STATE(); - case 4036: + case 4050: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4359); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + lookahead == '_') ADVANCE(4970); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); - case 4037: + case 4051: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3518); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + lookahead == '_') ADVANCE(4377); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); - case 4038: + case 4052: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4943); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + lookahead == '_') ADVANCE(3532); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); - case 4039: + case 4053: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(5214); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + lookahead == '_') ADVANCE(5241); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); - case 4040: + case 4054: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3994); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4008); END_STATE(); - case 4041: + case 4055: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4366); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); - case 4042: + case 4056: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3525); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4384); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); - case 4043: + case 4057: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4957); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3539); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); END_STATE(); - case 4044: + case 4058: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(5228); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(5255); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); - case 4045: + case 4059: ACCEPT_TOKEN(anon_sym_LBRACK2); END_STATE(); - case 4046: + case 4060: ACCEPT_TOKEN(sym_hex_digit); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4046); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4060); END_STATE(); - case 4047: + case 4061: ACCEPT_TOKEN(sym_val_date); END_STATE(); - case 4048: + case 4062: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(1609); + if (lookahead == '.') ADVANCE(1613); if (lookahead == '+' || lookahead == '-') ADVANCE(440); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4047); + lookahead == 'z') ADVANCE(4061); END_STATE(); - case 4049: + case 4063: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(4459); + if (lookahead == '.') ADVANCE(4477); if (lookahead == '+' || - lookahead == '-') ADVANCE(4388); + lookahead == '-') ADVANCE(4406); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4047); + lookahead == 'z') ADVANCE(4061); END_STATE(); - case 4050: + case 4064: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(5035); + if (lookahead == '.') ADVANCE(5062); if (lookahead == '+' || - lookahead == '-') ADVANCE(4974); + lookahead == '-') ADVANCE(5001); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4047); + lookahead == 'z') ADVANCE(4061); END_STATE(); - case 4051: + case 4065: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(4678); + if (lookahead == '.') ADVANCE(4701); if (lookahead == '+' || - lookahead == '-') ADVANCE(4510); + lookahead == '-') ADVANCE(4528); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4047); + lookahead == 'z') ADVANCE(4061); END_STATE(); - case 4052: + case 4066: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(5138); + if (lookahead == '.') ADVANCE(5165); if (lookahead == '+' || - lookahead == '-') ADVANCE(5059); + lookahead == '-') ADVANCE(5086); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4047); + lookahead == 'z') ADVANCE(4061); END_STATE(); - case 4053: + case 4067: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(4070); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(1608); + if (lookahead == ':') ADVANCE(4084); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(1612); END_STATE(); - case 4054: + case 4068: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(4071); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4454); + if (lookahead == ':') ADVANCE(4085); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4472); END_STATE(); - case 4055: + case 4069: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(4072); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5029); + if (lookahead == ':') ADVANCE(4086); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5056); END_STATE(); - case 4056: + case 4070: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(4073); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4672); + if (lookahead == ':') ADVANCE(4087); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4695); END_STATE(); - case 4057: + case 4071: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(4074); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5131); + if (lookahead == ':') ADVANCE(4088); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5158); END_STATE(); - case 4058: + case 4072: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(2858); + if (lookahead == 'T') ADVANCE(2866); END_STATE(); - case 4059: + case 4073: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(4463); + if (lookahead == 'T') ADVANCE(4481); END_STATE(); - case 4060: + case 4074: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(5038); + if (lookahead == 'T') ADVANCE(5065); END_STATE(); - case 4061: + case 4075: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(5288); + if (lookahead == 'T') ADVANCE(5315); END_STATE(); - case 4062: + case 4076: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(4680); + if (lookahead == 'T') ADVANCE(4703); END_STATE(); - case 4063: + case 4077: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(5136); + if (lookahead == 'T') ADVANCE(5163); END_STATE(); - case 4064: + case 4078: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(1618); + if (lookahead == 'T') ADVANCE(1622); END_STATE(); - case 4065: + case 4079: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || lookahead == '-') ADVANCE(440); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4047); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4065); + lookahead == 'z') ADVANCE(4061); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4079); END_STATE(); - case 4066: + case 4080: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(4388); + lookahead == '-') ADVANCE(4406); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4047); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4066); + lookahead == 'z') ADVANCE(4061); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4080); END_STATE(); - case 4067: + case 4081: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(4974); + lookahead == '-') ADVANCE(5001); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4047); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4067); + lookahead == 'z') ADVANCE(4061); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4081); END_STATE(); - case 4068: + case 4082: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(4510); + lookahead == '-') ADVANCE(4528); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4047); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4068); + lookahead == 'z') ADVANCE(4061); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4082); END_STATE(); - case 4069: + case 4083: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(5059); + lookahead == '-') ADVANCE(5086); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4047); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4069); + lookahead == 'z') ADVANCE(4061); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4083); END_STATE(); - case 4070: + case 4084: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(1608); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(1612); END_STATE(); - case 4071: + case 4085: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4454); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4472); END_STATE(); - case 4072: + case 4086: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5029); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5056); END_STATE(); - case 4073: + case 4087: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4672); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4695); END_STATE(); - case 4074: + case 4088: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5131); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5158); END_STATE(); - case 4075: + case 4089: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 4076: + case 4090: ACCEPT_TOKEN(sym__escaped_str_content); - if (lookahead == '#') ADVANCE(4077); + if (lookahead == '#') ADVANCE(4091); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4076); + lookahead == ' ') ADVANCE(4090); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && - lookahead != '\\') ADVANCE(4077); + lookahead != '\\') ADVANCE(4091); END_STATE(); - case 4077: + case 4091: ACCEPT_TOKEN(sym__escaped_str_content); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(4077); + lookahead != '\\') ADVANCE(4091); END_STATE(); - case 4078: + case 4092: ACCEPT_TOKEN(sym__str_single_quotes); END_STATE(); - case 4079: + case 4093: ACCEPT_TOKEN(sym__str_back_ticks); END_STATE(); - case 4080: + case 4094: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 4081: + case 4095: ACCEPT_TOKEN(sym_escaped_interpolated_content); - if (lookahead == '#') ADVANCE(4082); + if (lookahead == '#') ADVANCE(4096); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4081); + lookahead == ' ') ADVANCE(4095); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && lookahead != '(' && - lookahead != '\\') ADVANCE(4082); + lookahead != '\\') ADVANCE(4096); END_STATE(); - case 4082: + case 4096: ACCEPT_TOKEN(sym_escaped_interpolated_content); if (lookahead != 0 && lookahead != '"' && lookahead != '(' && - lookahead != '\\') ADVANCE(4082); + lookahead != '\\') ADVANCE(4096); END_STATE(); - case 4083: + case 4097: ACCEPT_TOKEN(sym_unescaped_interpolated_content); - if (lookahead == '#') ADVANCE(4084); + if (lookahead == '#') ADVANCE(4098); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4083); + lookahead == ' ') ADVANCE(4097); if (lookahead != 0 && lookahead != '\'' && - lookahead != '(') ADVANCE(4084); + lookahead != '(') ADVANCE(4098); END_STATE(); - case 4084: + case 4098: ACCEPT_TOKEN(sym_unescaped_interpolated_content); if (lookahead != 0 && lookahead != '\'' && - lookahead != '(') ADVANCE(4084); + lookahead != '(') ADVANCE(4098); END_STATE(); - case 4085: + case 4099: ACCEPT_TOKEN(anon_sym_DOLLAR_SQUOTE); END_STATE(); - case 4086: + case 4100: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 4087: + case 4101: ACCEPT_TOKEN(anon_sym_SQUOTE); - if (lookahead == '\'') ADVANCE(4078); + if (lookahead == '\'') ADVANCE(4092); if (lookahead != 0) ADVANCE(376); END_STATE(); - case 4088: + case 4102: ACCEPT_TOKEN(anon_sym_DOLLAR_DQUOTE); END_STATE(); - case 4089: + case 4103: ACCEPT_TOKEN(anon_sym_DQUOTE2); END_STATE(); - case 4090: + case 4104: ACCEPT_TOKEN(sym_inter_escape_sequence); END_STATE(); - case 4091: + case 4105: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACK); END_STATE(); - case 4092: + case 4106: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACE); END_STATE(); - case 4093: + case 4107: ACCEPT_TOKEN(sym__entry_separator); END_STATE(); - case 4094: + case 4108: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ',') ADVANCE(4093); + if (lookahead == ',') ADVANCE(4107); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4094); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); + lookahead == ' ') ADVANCE(4108); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4107); END_STATE(); - case 4095: + case 4109: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ',') ADVANCE(4093); + if (lookahead == ',') ADVANCE(4107); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4095); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4096); + lookahead == ' ') ADVANCE(4109); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4110); END_STATE(); - case 4096: + case 4110: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ';') ADVANCE(4101); + if (lookahead == ';') ADVANCE(4119); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(450); END_STATE(); - case 4097: + case 4111: ACCEPT_TOKEN(sym__entry_separator); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4097); + lookahead == ' ') ADVANCE(4111); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4093); + lookahead == ',') ADVANCE(4107); END_STATE(); - case 4098: + case 4112: + ACCEPT_TOKEN(anon_sym_register); + if (lookahead == ',') ADVANCE(2961); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5426); + END_STATE(); + case 4113: + ACCEPT_TOKEN(anon_sym_register); + if (lookahead == ',') ADVANCE(2961); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2959); + END_STATE(); + case 4114: + ACCEPT_TOKEN(anon_sym_register); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2961); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2960); + END_STATE(); + case 4115: + ACCEPT_TOKEN(anon_sym_register); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2961); + END_STATE(); + case 4116: ACCEPT_TOKEN(anon_sym_COLON2); END_STATE(); - case 4099: + case 4117: ACCEPT_TOKEN(aux_sym__record_key_token1); - if (lookahead == '#') ADVANCE(5525); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4100); + if (lookahead == '#') ADVANCE(5552); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4118); END_STATE(); - case 4100: + case 4118: ACCEPT_TOKEN(aux_sym__record_key_token1); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4100); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4118); END_STATE(); - case 4101: + case 4119: ACCEPT_TOKEN(sym__table_head_separator); END_STATE(); - case 4102: + case 4120: ACCEPT_TOKEN(anon_sym_DOT2); END_STATE(); - case 4103: + case 4121: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(5235); - if (lookahead == '_') ADVANCE(5244); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3985); + if (lookahead == '.') ADVANCE(5262); + if (lookahead == '_') ADVANCE(5271); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3999); END_STATE(); - case 4104: + case 4122: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(3721); - if (lookahead == '_') ADVANCE(4401); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3988); + if (lookahead == '.') ADVANCE(3735); + if (lookahead == '_') ADVANCE(4419); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); END_STATE(); - case 4105: + case 4123: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(3721); - if (lookahead == '_') ADVANCE(4983); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3989); + if (lookahead == '.') ADVANCE(3735); + if (lookahead == '_') ADVANCE(5010); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4003); END_STATE(); - case 4106: + case 4124: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(3839); - if (lookahead == '_') ADVANCE(2447); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3986); + if (lookahead == '.') ADVANCE(3853); + if (lookahead == '_') ADVANCE(2451); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); END_STATE(); - case 4107: + case 4125: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(2068); - if (lookahead == '_') ADVANCE(2447); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3986); + if (lookahead == '.') ADVANCE(2072); + if (lookahead == '_') ADVANCE(2451); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); END_STATE(); - case 4108: + case 4126: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(3842); + if (lookahead == '.') ADVANCE(3856); END_STATE(); - case 4109: + case 4127: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(3842); - if (lookahead == '_') ADVANCE(4401); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3988); + if (lookahead == '.') ADVANCE(3856); + if (lookahead == '_') ADVANCE(4419); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); END_STATE(); - case 4110: + case 4128: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(3842); - if (lookahead == '_') ADVANCE(4983); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3989); + if (lookahead == '.') ADVANCE(3856); + if (lookahead == '_') ADVANCE(5010); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4003); END_STATE(); - case 4111: + case 4129: ACCEPT_TOKEN(anon_sym_DOT2); if (lookahead == '.') ADVANCE(435); END_STATE(); - case 4112: + case 4130: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(3841); + if (lookahead == '.') ADVANCE(3855); END_STATE(); - case 4113: + case 4131: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '_') ADVANCE(2447); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3986); + if (lookahead == '_') ADVANCE(2451); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); END_STATE(); - case 4114: + case 4132: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == '\'') ADVANCE(4078); + if (lookahead == '\'') ADVANCE(4092); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || @@ -51884,11 +52030,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '[' || lookahead == ']' || ('{' <= lookahead && lookahead <= '}')) ADVANCE(376); - if (lookahead != 0) ADVANCE(4114); + if (lookahead != 0) ADVANCE(4132); END_STATE(); - case 4115: + case 4133: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == '`') ADVANCE(4079); + if (lookahead == '`') ADVANCE(4093); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || @@ -51901,8729 +52047,8777 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '[' || lookahead == ']' || ('{' <= lookahead && lookahead <= '}')) ADVANCE(482); - if (lookahead != 0) ADVANCE(4115); + if (lookahead != 0) ADVANCE(4133); END_STATE(); - case 4116: + case 4134: ACCEPT_TOKEN(aux_sym_path_token1); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(4116); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(4134); END_STATE(); - case 4117: + case 4135: ACCEPT_TOKEN(aux_sym_env_var_token1); END_STATE(); - case 4118: + case 4136: ACCEPT_TOKEN(aux_sym_env_var_token2); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(4118); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(4136); END_STATE(); - case 4119: + case 4137: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 4120: + case 4138: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == ' ') ADVANCE(629); + if (lookahead == ' ') ADVANCE(632); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); - case 4121: + case 4139: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == ' ') ADVANCE(630); + if (lookahead == ' ') ADVANCE(633); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); - case 4122: + case 4140: ACCEPT_TOKEN(aux_sym_command_token1); if (lookahead == ' ') ADVANCE(486); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); - case 4123: + case 4141: ACCEPT_TOKEN(aux_sym_command_token1); if (lookahead == ' ') ADVANCE(551); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); - END_STATE(); - case 4124: - ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == ' ') ADVANCE(487); - if (lookahead == '-' || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); - END_STATE(); - case 4125: - ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == ' ') ADVANCE(489); - if (lookahead == '-' || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); - END_STATE(); - case 4126: - ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == ' ') ADVANCE(1373); - if (lookahead == '-' || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); - END_STATE(); - case 4127: - ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == ' ') ADVANCE(934); - if (lookahead == '-' || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); - END_STATE(); - case 4128: - ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == ' ') ADVANCE(668); - if (lookahead == '-' || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); - END_STATE(); - case 4129: - ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == ' ') ADVANCE(658); - if (lookahead == 'o') ADVANCE(4188); - if (lookahead == '-' || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); - END_STATE(); - case 4130: - ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == '-') ADVANCE(4158); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); - END_STATE(); - case 4131: - ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == '-') ADVANCE(4175); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); - END_STATE(); - case 4132: - ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == '-') ADVANCE(4160); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); - END_STATE(); - case 4133: - ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == '-') ADVANCE(4239); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); - END_STATE(); - case 4134: - ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == '-') ADVANCE(4156); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); - END_STATE(); - case 4135: - ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == '-') ADVANCE(4222); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); - END_STATE(); - case 4136: - ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == '-') ADVANCE(4207); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); - END_STATE(); - case 4137: - ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == '-') ADVANCE(4183); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); - END_STATE(); - case 4138: - ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == '-') ADVANCE(4149); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); - END_STATE(); - case 4139: - ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == '-') ADVANCE(4234); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); - END_STATE(); - case 4140: - ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == '-') ADVANCE(4187); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); - END_STATE(); - case 4141: - ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == '-') ADVANCE(4240); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4142: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'a') ADVANCE(4242); + if (lookahead == ' ') ADVANCE(487); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4143: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'a') ADVANCE(4229); + if (lookahead == ' ') ADVANCE(489); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4144: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'a') ADVANCE(4176); + if (lookahead == ' ') ADVANCE(1377); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4145: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'a') ADVANCE(4218); + if (lookahead == ' ') ADVANCE(938); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4146: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'a') ADVANCE(4217); + if (lookahead == ' ') ADVANCE(671); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4147: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'a') ADVANCE(4190); + if (lookahead == ' ') ADVANCE(661); + if (lookahead == 'o') ADVANCE(4206); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4148: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'a') ADVANCE(4202); - if (lookahead == '-' || - ('A' <= lookahead && lookahead <= 'Z') || + if (lookahead == '-') ADVANCE(4176); + if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4149: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'a') ADVANCE(4195); - if (lookahead == '-' || - ('A' <= lookahead && lookahead <= 'Z') || + if (lookahead == '-') ADVANCE(4193); + if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4150: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'a') ADVANCE(4230); - if (lookahead == '-' || - ('A' <= lookahead && lookahead <= 'Z') || + if (lookahead == '-') ADVANCE(4178); + if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4151: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'a') ADVANCE(4231); - if (lookahead == '-' || - ('A' <= lookahead && lookahead <= 'Z') || + if (lookahead == '-') ADVANCE(4257); + if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4152: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'c') ADVANCE(4224); - if (lookahead == '-' || - ('A' <= lookahead && lookahead <= 'Z') || + if (lookahead == '-') ADVANCE(4174); + if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4153: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'c') ADVANCE(4211); - if (lookahead == '-' || - ('A' <= lookahead && lookahead <= 'Z') || + if (lookahead == '-') ADVANCE(4240); + if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4154: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'c') ADVANCE(4151); - if (lookahead == '-' || - ('A' <= lookahead && lookahead <= 'Z') || + if (lookahead == '-') ADVANCE(4225); + if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4155: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'd') ADVANCE(4244); - if (lookahead == '-' || - ('A' <= lookahead && lookahead <= 'Z') || + if (lookahead == '-') ADVANCE(4201); + if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4156: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'd') ADVANCE(4233); - if (lookahead == 'n') ADVANCE(4232); - if (lookahead == '-' || - ('A' <= lookahead && lookahead <= 'Z') || + if (lookahead == '-') ADVANCE(4167); + if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4157: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'd') ADVANCE(4241); - if (lookahead == '-' || - ('A' <= lookahead && lookahead <= 'Z') || + if (lookahead == '-') ADVANCE(4252); + if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4158: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'd') ADVANCE(4143); - if (lookahead == '-' || - ('A' <= lookahead && lookahead <= 'Z') || + if (lookahead == '-') ADVANCE(4205); + if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4159: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'd') ADVANCE(4186); - if (lookahead == '-' || - ('A' <= lookahead && lookahead <= 'Z') || + if (lookahead == '-') ADVANCE(4258); + if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4160: ACCEPT_TOKEN(aux_sym_command_token1); - ADVANCE_MAP( - 'd', 4142, - 'h', 4210, - 'm', 4184, - 'n', 4148, - 'o', 4219, - 's', 4169, - 'w', 4171, - 'y', 4173, - ); + if (lookahead == 'a') ADVANCE(4260); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4161: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'd') ADVANCE(4142); + if (lookahead == 'a') ADVANCE(4247); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4162: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'd') ADVANCE(4150); + if (lookahead == 'a') ADVANCE(4194); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4163: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'e') ADVANCE(4244); + if (lookahead == 'a') ADVANCE(4236); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4164: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'e') ADVANCE(4152); + if (lookahead == 'a') ADVANCE(4235); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4165: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'e') ADVANCE(4199); + if (lookahead == 'a') ADVANCE(4208); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4166: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'e') ADVANCE(4221); + if (lookahead == 'a') ADVANCE(4220); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4167: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'e') ADVANCE(4189); + if (lookahead == 'a') ADVANCE(4213); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4168: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'e') ADVANCE(4241); + if (lookahead == 'a') ADVANCE(4248); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4169: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'e') ADVANCE(4153); + if (lookahead == 'a') ADVANCE(4249); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4170: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'e') ADVANCE(4227); + if (lookahead == 'c') ADVANCE(4242); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4171: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'e') ADVANCE(4167); + if (lookahead == 'c') ADVANCE(4229); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4172: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'e') ADVANCE(4140); + if (lookahead == 'c') ADVANCE(4169); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4173: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'e') ADVANCE(4146); + if (lookahead == 'd') ADVANCE(4262); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4174: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'f') ADVANCE(4208); + if (lookahead == 'd') ADVANCE(4251); + if (lookahead == 'n') ADVANCE(4250); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4175: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'g') ADVANCE(4220); + if (lookahead == 'd') ADVANCE(4259); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4176: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'g') ADVANCE(4172); + if (lookahead == 'd') ADVANCE(4161); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4177: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'h') ADVANCE(4244); + if (lookahead == 'd') ADVANCE(4204); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4178: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'h') ADVANCE(4168); + ADVANCE_MAP( + 'd', 4160, + 'h', 4228, + 'm', 4202, + 'n', 4166, + 'o', 4237, + 's', 4187, + 'w', 4189, + 'y', 4191, + ); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4179: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'h') ADVANCE(4137); + if (lookahead == 'd') ADVANCE(4160); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4180: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'i') ADVANCE(4154); + if (lookahead == 'd') ADVANCE(4168); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4181: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'i') ADVANCE(4226); + if (lookahead == 'e') ADVANCE(4262); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4182: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'i') ADVANCE(4198); + if (lookahead == 'e') ADVANCE(4170); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4183: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'i') ADVANCE(4157); + if (lookahead == 'e') ADVANCE(4217); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4184: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'i') ADVANCE(4204); - if (lookahead == 'o') ADVANCE(4205); + if (lookahead == 'e') ADVANCE(4239); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4185: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'i') ADVANCE(4225); + if (lookahead == 'e') ADVANCE(4207); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4186: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'i') ADVANCE(4206); + if (lookahead == 'e') ADVANCE(4259); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4187: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'i') ADVANCE(4201); + if (lookahead == 'e') ADVANCE(4171); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4188: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'j') ADVANCE(4164); + if (lookahead == 'e') ADVANCE(4245); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4189: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'k') ADVANCE(4161); + if (lookahead == 'e') ADVANCE(4185); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4190: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'l') ADVANCE(4244); + if (lookahead == 'e') ADVANCE(4158); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4191: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'l') ADVANCE(4164); - if (lookahead == 'u') ADVANCE(4196); + if (lookahead == 'e') ADVANCE(4164); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4192: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'l') ADVANCE(4221); + if (lookahead == 'f') ADVANCE(4226); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4193: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'l') ADVANCE(4192); + if (lookahead == 'g') ADVANCE(4238); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4194: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'l') ADVANCE(4180); + if (lookahead == 'g') ADVANCE(4190); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4195: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'l') ADVANCE(4190); + if (lookahead == 'h') ADVANCE(4262); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4196: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'm') ADVANCE(4200); + if (lookahead == 'h') ADVANCE(4186); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4197: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'm') ADVANCE(4145); + if (lookahead == 'h') ADVANCE(4155); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4198: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'm') ADVANCE(4163); + if (lookahead == 'i') ADVANCE(4172); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4199: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'n') ADVANCE(4244); + if (lookahead == 'i') ADVANCE(4244); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4200: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'n') ADVANCE(4221); + if (lookahead == 'i') ADVANCE(4216); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4201: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'n') ADVANCE(4174); + if (lookahead == 'i') ADVANCE(4175); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4202: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'n') ADVANCE(4209); + if (lookahead == 'i') ADVANCE(4222); + if (lookahead == 'o') ADVANCE(4223); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4203: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'n') ADVANCE(4155); + if (lookahead == 'i') ADVANCE(4243); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4204: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'n') ADVANCE(4238); + if (lookahead == 'i') ADVANCE(4224); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4205: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'n') ADVANCE(4225); + if (lookahead == 'i') ADVANCE(4219); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4206: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'n') ADVANCE(4147); + if (lookahead == 'j') ADVANCE(4182); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4207: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'n') ADVANCE(4237); + if (lookahead == 'k') ADVANCE(4179); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4208: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'o') ADVANCE(4244); + if (lookahead == 'l') ADVANCE(4262); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4209: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'o') ADVANCE(4223); + if (lookahead == 'l') ADVANCE(4182); + if (lookahead == 'u') ADVANCE(4214); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4210: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'o') ADVANCE(4236); + if (lookahead == 'l') ADVANCE(4239); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4211: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'o') ADVANCE(4203); + if (lookahead == 'l') ADVANCE(4210); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4212: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'o') ADVANCE(4235); + if (lookahead == 'l') ADVANCE(4198); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4213: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'p') ADVANCE(4144); + if (lookahead == 'l') ADVANCE(4208); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4214: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'p') ADVANCE(4221); + if (lookahead == 'm') ADVANCE(4218); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4215: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'p') ADVANCE(4194); + if (lookahead == 'm') ADVANCE(4163); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4216: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'p') ADVANCE(4162); + if (lookahead == 'm') ADVANCE(4181); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4217: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'r') ADVANCE(4244); + if (lookahead == 'n') ADVANCE(4262); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4218: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'r') ADVANCE(4242); + if (lookahead == 'n') ADVANCE(4239); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4219: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'r') ADVANCE(4159); + if (lookahead == 'n') ADVANCE(4192); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4220: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'r') ADVANCE(4212); + if (lookahead == 'n') ADVANCE(4227); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4221: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 's') ADVANCE(4244); + if (lookahead == 'n') ADVANCE(4173); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4222: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 's') ADVANCE(4228); + if (lookahead == 'n') ADVANCE(4256); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4223: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 's') ADVANCE(4169); + if (lookahead == 'n') ADVANCE(4243); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4224: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 't') ADVANCE(4244); + if (lookahead == 'n') ADVANCE(4165); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4225: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 't') ADVANCE(4177); + if (lookahead == 'n') ADVANCE(4255); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4226: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 't') ADVANCE(4179); + if (lookahead == 'o') ADVANCE(4262); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4227: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 't') ADVANCE(4182); + if (lookahead == 'o') ADVANCE(4241); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4228: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 't') ADVANCE(4217); + if (lookahead == 'o') ADVANCE(4254); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4229: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 't') ADVANCE(4170); + if (lookahead == 'o') ADVANCE(4221); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4230: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 't') ADVANCE(4163); + if (lookahead == 'o') ADVANCE(4253); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4231: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 't') ADVANCE(4166); + if (lookahead == 'p') ADVANCE(4162); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4232: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'u') ADVANCE(4193); + if (lookahead == 'p') ADVANCE(4239); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4233: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'u') ADVANCE(4215); + if (lookahead == 'p') ADVANCE(4212); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4234: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'u') ADVANCE(4216); + if (lookahead == 'p') ADVANCE(4180); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4235: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'u') ADVANCE(4214); + if (lookahead == 'r') ADVANCE(4262); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4236: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'u') ADVANCE(4217); + if (lookahead == 'r') ADVANCE(4260); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4237: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'u') ADVANCE(4195); + if (lookahead == 'r') ADVANCE(4177); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4238: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'u') ADVANCE(4230); + if (lookahead == 'r') ADVANCE(4230); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4239: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'w') ADVANCE(4181); + if (lookahead == 's') ADVANCE(4262); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4240: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'w') ADVANCE(4185); + if (lookahead == 's') ADVANCE(4246); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4241: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'x') ADVANCE(4244); + if (lookahead == 's') ADVANCE(4187); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4242: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'y') ADVANCE(4244); + if (lookahead == 't') ADVANCE(4262); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4243: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'z') ADVANCE(4244); + if (lookahead == 't') ADVANCE(4195); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'y')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4244: ACCEPT_TOKEN(aux_sym_command_token1); + if (lookahead == 't') ADVANCE(4197); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4244); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4245: - ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(4285); + ACCEPT_TOKEN(aux_sym_command_token1); + if (lookahead == 't') ADVANCE(4200); + if (lookahead == '-' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4246: - ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(4285); - if (lookahead == '|') ADVANCE(3567); + ACCEPT_TOKEN(aux_sym_command_token1); + if (lookahead == 't') ADVANCE(4235); + if (lookahead == '-' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4247: - ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(4287); - if (lookahead == '|') ADVANCE(3567); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ACCEPT_TOKEN(aux_sym_command_token1); + if (lookahead == 't') ADVANCE(4188); + if (lookahead == '-' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4248: - ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(4287); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ACCEPT_TOKEN(aux_sym_command_token1); + if (lookahead == 't') ADVANCE(4181); + if (lookahead == '-' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4249: - ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(4286); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + ACCEPT_TOKEN(aux_sym_command_token1); + if (lookahead == 't') ADVANCE(4184); + if (lookahead == '-' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4250: - ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(4288); + ACCEPT_TOKEN(aux_sym_command_token1); + if (lookahead == 'u') ADVANCE(4211); + if (lookahead == '-' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4251: - ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(4288); - if (lookahead == '|') ADVANCE(3568); + ACCEPT_TOKEN(aux_sym_command_token1); + if (lookahead == 'u') ADVANCE(4233); + if (lookahead == '-' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4252: - ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(4290); - if (lookahead == '|') ADVANCE(3568); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ACCEPT_TOKEN(aux_sym_command_token1); + if (lookahead == 'u') ADVANCE(4234); + if (lookahead == '-' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4253: - ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(4290); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ACCEPT_TOKEN(aux_sym_command_token1); + if (lookahead == 'u') ADVANCE(4232); + if (lookahead == '-' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4254: - ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(4289); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + ACCEPT_TOKEN(aux_sym_command_token1); + if (lookahead == 'u') ADVANCE(4235); + if (lookahead == '-' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4255: - ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(4291); + ACCEPT_TOKEN(aux_sym_command_token1); + if (lookahead == 'u') ADVANCE(4213); + if (lookahead == '-' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4256: - ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(4291); - if (lookahead == '|') ADVANCE(3569); + ACCEPT_TOKEN(aux_sym_command_token1); + if (lookahead == 'u') ADVANCE(4248); + if (lookahead == '-' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4257: - ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(4293); - if (lookahead == '|') ADVANCE(3569); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ACCEPT_TOKEN(aux_sym_command_token1); + if (lookahead == 'w') ADVANCE(4199); + if (lookahead == '-' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4258: - ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(4293); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ACCEPT_TOKEN(aux_sym_command_token1); + if (lookahead == 'w') ADVANCE(4203); + if (lookahead == '-' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4259: - ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(4292); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + ACCEPT_TOKEN(aux_sym_command_token1); + if (lookahead == 'x') ADVANCE(4262); + if (lookahead == '-' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4260: - ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(4294); + ACCEPT_TOKEN(aux_sym_command_token1); + if (lookahead == 'y') ADVANCE(4262); + if (lookahead == '-' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4261: - ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(4294); - if (lookahead == '|') ADVANCE(3570); + ACCEPT_TOKEN(aux_sym_command_token1); + if (lookahead == 'z') ADVANCE(4262); + if (lookahead == '-' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'y')) ADVANCE(4262); END_STATE(); case 4262: - ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(4296); - if (lookahead == '|') ADVANCE(3570); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ACCEPT_TOKEN(aux_sym_command_token1); + if (lookahead == '-' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4262); END_STATE(); case 4263: - ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(4296); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ACCEPT_TOKEN(anon_sym_err_GT); + if (lookahead == '>') ADVANCE(4303); END_STATE(); case 4264: - ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(4295); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + ACCEPT_TOKEN(anon_sym_err_GT); + if (lookahead == '>') ADVANCE(4303); + if (lookahead == '|') ADVANCE(3581); END_STATE(); case 4265: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(4297); + ACCEPT_TOKEN(anon_sym_err_GT); + if (lookahead == '>') ADVANCE(4305); + if (lookahead == '|') ADVANCE(3581); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4266: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(4297); - if (lookahead == '|') ADVANCE(3571); + ACCEPT_TOKEN(anon_sym_err_GT); + if (lookahead == '>') ADVANCE(4305); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4267: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(4299); - if (lookahead == '|') ADVANCE(3571); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ACCEPT_TOKEN(anon_sym_err_GT); + if (lookahead == '>') ADVANCE(4304); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 4268: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(4299); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ACCEPT_TOKEN(anon_sym_out_GT); + if (lookahead == '>') ADVANCE(4306); END_STATE(); case 4269: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(4298); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + ACCEPT_TOKEN(anon_sym_out_GT); + if (lookahead == '>') ADVANCE(4306); + if (lookahead == '|') ADVANCE(3582); END_STATE(); case 4270: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(4300); + ACCEPT_TOKEN(anon_sym_out_GT); + if (lookahead == '>') ADVANCE(4308); + if (lookahead == '|') ADVANCE(3582); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4271: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(4300); - if (lookahead == '|') ADVANCE(3572); + ACCEPT_TOKEN(anon_sym_out_GT); + if (lookahead == '>') ADVANCE(4308); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4272: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(4302); - if (lookahead == '|') ADVANCE(3572); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ACCEPT_TOKEN(anon_sym_out_GT); + if (lookahead == '>') ADVANCE(4307); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 4273: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(4302); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ACCEPT_TOKEN(anon_sym_e_GT); + if (lookahead == '>') ADVANCE(4309); END_STATE(); case 4274: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(4301); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + ACCEPT_TOKEN(anon_sym_e_GT); + if (lookahead == '>') ADVANCE(4309); + if (lookahead == '|') ADVANCE(3583); END_STATE(); case 4275: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(4303); + ACCEPT_TOKEN(anon_sym_e_GT); + if (lookahead == '>') ADVANCE(4311); + if (lookahead == '|') ADVANCE(3583); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4276: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(4303); - if (lookahead == '|') ADVANCE(3573); + ACCEPT_TOKEN(anon_sym_e_GT); + if (lookahead == '>') ADVANCE(4311); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4277: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(4305); - if (lookahead == '|') ADVANCE(3573); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ACCEPT_TOKEN(anon_sym_e_GT); + if (lookahead == '>') ADVANCE(4310); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 4278: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(4305); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ACCEPT_TOKEN(anon_sym_o_GT); + if (lookahead == '>') ADVANCE(4312); END_STATE(); case 4279: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(4304); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + ACCEPT_TOKEN(anon_sym_o_GT); + if (lookahead == '>') ADVANCE(4312); + if (lookahead == '|') ADVANCE(3584); END_STATE(); case 4280: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(4306); + ACCEPT_TOKEN(anon_sym_o_GT); + if (lookahead == '>') ADVANCE(4314); + if (lookahead == '|') ADVANCE(3584); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4281: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(4306); - if (lookahead == '|') ADVANCE(3574); + ACCEPT_TOKEN(anon_sym_o_GT); + if (lookahead == '>') ADVANCE(4314); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4282: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(4308); - if (lookahead == '|') ADVANCE(3574); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ACCEPT_TOKEN(anon_sym_o_GT); + if (lookahead == '>') ADVANCE(4313); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 4283: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(4308); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); + if (lookahead == '>') ADVANCE(4315); END_STATE(); case 4284: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(4307); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); + if (lookahead == '>') ADVANCE(4315); + if (lookahead == '|') ADVANCE(3585); END_STATE(); case 4285: - ACCEPT_TOKEN(anon_sym_err_GT_GT); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); + if (lookahead == '>') ADVANCE(4317); + if (lookahead == '|') ADVANCE(3585); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4286: - ACCEPT_TOKEN(anon_sym_err_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); + if (lookahead == '>') ADVANCE(4317); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4287: - ACCEPT_TOKEN(anon_sym_err_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); + if (lookahead == '>') ADVANCE(4316); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 4288: - ACCEPT_TOKEN(anon_sym_out_GT_GT); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); + if (lookahead == '>') ADVANCE(4318); END_STATE(); case 4289: - ACCEPT_TOKEN(anon_sym_out_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); + if (lookahead == '>') ADVANCE(4318); + if (lookahead == '|') ADVANCE(3586); END_STATE(); case 4290: - ACCEPT_TOKEN(anon_sym_out_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); + if (lookahead == '>') ADVANCE(4320); + if (lookahead == '|') ADVANCE(3586); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4291: - ACCEPT_TOKEN(anon_sym_e_GT_GT); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); + if (lookahead == '>') ADVANCE(4320); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4292: - ACCEPT_TOKEN(anon_sym_e_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); + if (lookahead == '>') ADVANCE(4319); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 4293: - ACCEPT_TOKEN(anon_sym_e_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); + if (lookahead == '>') ADVANCE(4321); END_STATE(); case 4294: - ACCEPT_TOKEN(anon_sym_o_GT_GT); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); + if (lookahead == '>') ADVANCE(4321); + if (lookahead == '|') ADVANCE(3587); END_STATE(); case 4295: - ACCEPT_TOKEN(anon_sym_o_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); + if (lookahead == '>') ADVANCE(4323); + if (lookahead == '|') ADVANCE(3587); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4296: - ACCEPT_TOKEN(anon_sym_o_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); + if (lookahead == '>') ADVANCE(4323); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4297: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); + if (lookahead == '>') ADVANCE(4322); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 4298: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); + if (lookahead == '>') ADVANCE(4324); END_STATE(); case 4299: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); + if (lookahead == '>') ADVANCE(4324); + if (lookahead == '|') ADVANCE(3588); END_STATE(); case 4300: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); + if (lookahead == '>') ADVANCE(4326); + if (lookahead == '|') ADVANCE(3588); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4301: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); + if (lookahead == '>') ADVANCE(4326); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4302: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); + if (lookahead == '>') ADVANCE(4325); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 4303: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); + ACCEPT_TOKEN(anon_sym_err_GT_GT); END_STATE(); case 4304: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + ACCEPT_TOKEN(anon_sym_err_GT_GT); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 4305: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ACCEPT_TOKEN(anon_sym_err_GT_GT); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4306: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); + ACCEPT_TOKEN(anon_sym_out_GT_GT); END_STATE(); case 4307: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + ACCEPT_TOKEN(anon_sym_out_GT_GT); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 4308: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ACCEPT_TOKEN(anon_sym_out_GT_GT); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4309: - ACCEPT_TOKEN(anon_sym_EQ2); + ACCEPT_TOKEN(anon_sym_e_GT_GT); END_STATE(); case 4310: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(4422); - if (lookahead == '>') ADVANCE(4256); - if (lookahead == 'r') ADVANCE(4339); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + ACCEPT_TOKEN(anon_sym_e_GT_GT); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 4311: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(4415); - if (lookahead == '>') ADVANCE(4261); - if (lookahead == 'u') ADVANCE(4343); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + ACCEPT_TOKEN(anon_sym_e_GT_GT); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4312: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(4423); - if (lookahead == '>') ADVANCE(4246); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + ACCEPT_TOKEN(anon_sym_o_GT_GT); END_STATE(); case 4313: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(4416); - if (lookahead == '>') ADVANCE(4251); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + ACCEPT_TOKEN(anon_sym_o_GT_GT); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 4314: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(1186); - if (lookahead == '>') ADVANCE(1573); - if (lookahead == 'r') ADVANCE(4341); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + ACCEPT_TOKEN(anon_sym_o_GT_GT); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4315: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(760); - if (lookahead == '>') ADVANCE(1574); - if (lookahead == 'u') ADVANCE(4345); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); END_STATE(); case 4316: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(4425); - if (lookahead == '>') ADVANCE(4255); - if (lookahead == 'r') ADVANCE(4340); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 4317: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(4417); - if (lookahead == '>') ADVANCE(4260); - if (lookahead == 'u') ADVANCE(4344); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4318: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(1231); - if (lookahead == '>') ADVANCE(1576); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); END_STATE(); case 4319: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(818); - if (lookahead == '>') ADVANCE(1578); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 4320: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(4426); - if (lookahead == '>') ADVANCE(4245); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4321: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(4418); - if (lookahead == '>') ADVANCE(4250); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); END_STATE(); case 4322: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '-') ADVANCE(4363); - if (lookahead == '_') ADVANCE(4328); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4328); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 4323: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '-') ADVANCE(4364); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4324: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '.') ADVANCE(469); - if (lookahead == '_') ADVANCE(4324); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4328); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); END_STATE(); case 4325: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == ':') ADVANCE(4466); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 4326: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'T') ADVANCE(4365); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4327: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(4328); - if (lookahead == 'b') ADVANCE(4020); - if (lookahead == 'o') ADVANCE(4036); - if (lookahead == 'x') ADVANCE(4041); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4330); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + ACCEPT_TOKEN(anon_sym_EQ2); END_STATE(); case 4328: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(4328); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4328); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + if (lookahead == '+') ADVANCE(4440); + if (lookahead == '>') ADVANCE(4274); + if (lookahead == 'r') ADVANCE(4357); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4329: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(4328); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4322); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + if (lookahead == '+') ADVANCE(4433); + if (lookahead == '>') ADVANCE(4279); + if (lookahead == 'u') ADVANCE(4361); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4330: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(4328); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4329); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + if (lookahead == '+') ADVANCE(4441); + if (lookahead == '>') ADVANCE(4264); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4331: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(4328); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4330); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + if (lookahead == '+') ADVANCE(4434); + if (lookahead == '>') ADVANCE(4269); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4332: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'a') ADVANCE(4335); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + if (lookahead == '+') ADVANCE(1189); + if (lookahead == '>') ADVANCE(1577); + if (lookahead == 'r') ADVANCE(4359); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4333: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'e') ADVANCE(3929); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + if (lookahead == '+') ADVANCE(763); + if (lookahead == '>') ADVANCE(1578); + if (lookahead == 'u') ADVANCE(4363); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4334: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'e') ADVANCE(3937); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + if (lookahead == '+') ADVANCE(4443); + if (lookahead == '>') ADVANCE(4273); + if (lookahead == 'r') ADVANCE(4358); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4335: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'l') ADVANCE(4342); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + if (lookahead == '+') ADVANCE(4435); + if (lookahead == '>') ADVANCE(4278); + if (lookahead == 'u') ADVANCE(4362); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4336: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'l') ADVANCE(3921); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + if (lookahead == '+') ADVANCE(1234); + if (lookahead == '>') ADVANCE(1580); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4337: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'l') ADVANCE(4336); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + if (lookahead == '+') ADVANCE(821); + if (lookahead == '>') ADVANCE(1582); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4338: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'r') ADVANCE(4346); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + if (lookahead == '+') ADVANCE(4444); + if (lookahead == '>') ADVANCE(4263); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4339: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'r') ADVANCE(4312); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + if (lookahead == '+') ADVANCE(4436); + if (lookahead == '>') ADVANCE(4268); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4340: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'r') ADVANCE(4320); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + if (lookahead == '-') ADVANCE(4381); + if (lookahead == '_') ADVANCE(4346); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4346); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4341: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'r') ADVANCE(4318); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + if (lookahead == '-') ADVANCE(4382); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4342: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 's') ADVANCE(4334); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + if (lookahead == '.') ADVANCE(469); + if (lookahead == '_') ADVANCE(4342); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4346); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4343: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 't') ADVANCE(4313); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + if (lookahead == ':') ADVANCE(4484); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4344: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 't') ADVANCE(4321); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + if (lookahead == 'T') ADVANCE(4383); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4345: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 't') ADVANCE(4319); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + if (lookahead == '_') ADVANCE(4346); + if (lookahead == 'b') ADVANCE(4035); + if (lookahead == 'o') ADVANCE(4051); + if (lookahead == 'x') ADVANCE(4056); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4348); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4346: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'u') ADVANCE(4333); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + if (lookahead == '_') ADVANCE(4346); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4346); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4347: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'u') ADVANCE(4337); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4352); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + if (lookahead == '_') ADVANCE(4346); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4340); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4348: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4352); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + if (lookahead == '_') ADVANCE(4346); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4347); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4349: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4351); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + if (lookahead == '_') ADVANCE(4346); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4348); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4350: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4355); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + if (lookahead == 'a') ADVANCE(4353); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4351: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4354); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + if (lookahead == 'e') ADVANCE(3943); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4352: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4367); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + if (lookahead == 'e') ADVANCE(3951); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4353: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4349); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + if (lookahead == 'l') ADVANCE(4360); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4354: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4350); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + if (lookahead == 'l') ADVANCE(3935); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4355: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4356); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + if (lookahead == 'l') ADVANCE(4354); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4356: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4367); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + if (lookahead == 'r') ADVANCE(4364); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4357: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '-' || - lookahead == '?' || - lookahead == '@') ADVANCE(4367); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4357); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3348); + if (lookahead == 'r') ADVANCE(4330); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4358: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(4358); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + if (lookahead == 'r') ADVANCE(4338); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4359: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4359); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + if (lookahead == 'r') ADVANCE(4336); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4360: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4323); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + if (lookahead == 's') ADVANCE(4352); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4361: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4326); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + if (lookahead == 't') ADVANCE(4331); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4362: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4325); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + if (lookahead == 't') ADVANCE(4339); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4363: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4360); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + if (lookahead == 't') ADVANCE(4337); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4364: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4361); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + if (lookahead == 'u') ADVANCE(4351); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4365: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4362); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + if (lookahead == 'u') ADVANCE(4355); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4370); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4366: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4366); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4370); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4367: ACCEPT_TOKEN(sym_short_flag_identifier); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4367); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4369); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4368: - ACCEPT_TOKEN(sym__unquoted_naive); - if (lookahead == '\'') ADVANCE(4078); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == '(' || - lookahead == ')' || - lookahead == ';' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(376); - if (lookahead != 0) ADVANCE(4368); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4373); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4369: - ACCEPT_TOKEN(sym__unquoted_naive); - if (lookahead == '`') ADVANCE(4079); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == '(' || - lookahead == ')' || - lookahead == ';' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(482); - if (lookahead != 0) ADVANCE(4369); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4372); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4370: - ACCEPT_TOKEN(sym__unquoted_naive); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '(' && - lookahead != ')' && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4370); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4385); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4371: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '$') ADVANCE(3942); - if (lookahead == '(') ADVANCE(3838); - if (lookahead == '[') ADVANCE(4091); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4367); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4372: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(4422); - if (lookahead == '>') ADVANCE(4256); - if (lookahead == 'r') ADVANCE(4428); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4368); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4373: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(4415); - if (lookahead == '>') ADVANCE(4261); - if (lookahead == 'u') ADVANCE(4436); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4374); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4374: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(4409); - if (lookahead == '-') ADVANCE(4411); - if (lookahead == '>') ADVANCE(4256); - if (lookahead == '_') ADVANCE(4411); - if (lookahead == 'r') ADVANCE(4428); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(4385); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4375: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(4423); - if (lookahead == '>') ADVANCE(4246); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '-' || + lookahead == '?' || + lookahead == '@') ADVANCE(4385); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4375); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3362); END_STATE(); case 4376: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(4416); - if (lookahead == '>') ADVANCE(4251); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(4376); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4377: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(4425); - if (lookahead == '>') ADVANCE(4255); - if (lookahead == 'r') ADVANCE(4429); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(4377); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4378: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(4417); - if (lookahead == '>') ADVANCE(4260); - if (lookahead == 'u') ADVANCE(4438); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4341); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4379: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(4426); - if (lookahead == '>') ADVANCE(4245); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4344); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4380: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(4418); - if (lookahead == '>') ADVANCE(4250); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4343); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4381: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '-') ADVANCE(4462); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4378); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4382: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(3721); - if (lookahead == '_') ADVANCE(4401); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3988); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4379); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4383: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(3721); - if (lookahead == '_') ADVANCE(4405); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3909); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4380); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4384: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(3842); - if (lookahead == '_') ADVANCE(4401); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3988); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4384); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4385: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(3719); - if (lookahead == '_') ADVANCE(4401); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3988); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4385); END_STATE(); case 4386: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(4400); - if (lookahead == '_') ADVANCE(4386); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3982); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + ACCEPT_TOKEN(sym__unquoted_naive); + if (lookahead == '\'') ADVANCE(4092); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == '(' || + lookahead == ')' || + lookahead == ';' || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(376); + if (lookahead != 0) ADVANCE(4386); END_STATE(); case 4387: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(4404); - if (lookahead == '_') ADVANCE(4387); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3904); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + ACCEPT_TOKEN(sym__unquoted_naive); + if (lookahead == '`') ADVANCE(4093); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == '(' || + lookahead == ')' || + lookahead == ';' || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(482); + if (lookahead != 0) ADVANCE(4387); END_STATE(); case 4388: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '2') ADVANCE(4452); - if (lookahead == '0' || - lookahead == '1') ADVANCE(4460); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + ACCEPT_TOKEN(sym__unquoted_naive); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4388); END_STATE(); case 4389: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ':') ADVANCE(4464); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == '$') ADVANCE(3956); + if (lookahead == '(') ADVANCE(3852); + if (lookahead == '[') ADVANCE(4105); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4390: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ':') ADVANCE(4466); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == '+') ADVANCE(4440); + if (lookahead == '>') ADVANCE(4274); + if (lookahead == 'r') ADVANCE(4446); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4391: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(4281); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == '+') ADVANCE(4433); + if (lookahead == '>') ADVANCE(4279); + if (lookahead == 'u') ADVANCE(4454); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4392: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(4276); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == '+') ADVANCE(4427); + if (lookahead == '-') ADVANCE(4429); + if (lookahead == '>') ADVANCE(4274); + if (lookahead == '_') ADVANCE(4429); + if (lookahead == 'r') ADVANCE(4446); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4393: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(4266); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == '+') ADVANCE(4441); + if (lookahead == '>') ADVANCE(4264); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4394: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(4271); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == '+') ADVANCE(4434); + if (lookahead == '>') ADVANCE(4269); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4395: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(4280); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == '+') ADVANCE(4443); + if (lookahead == '>') ADVANCE(4273); + if (lookahead == 'r') ADVANCE(4447); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4396: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(4275); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == '+') ADVANCE(4435); + if (lookahead == '>') ADVANCE(4278); + if (lookahead == 'u') ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4397: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(4265); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == '+') ADVANCE(4444); + if (lookahead == '>') ADVANCE(4263); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4398: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(4270); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == '+') ADVANCE(4436); + if (lookahead == '>') ADVANCE(4268); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4399: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(4399); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == '-') ADVANCE(4480); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4400: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(4400); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3993); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == '.') ADVANCE(3735); + if (lookahead == '_') ADVANCE(4419); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4401: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(4401); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3988); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == '.') ADVANCE(3735); + if (lookahead == '_') ADVANCE(4423); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3923); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4402: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(4403); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4403); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == '.') ADVANCE(3856); + if (lookahead == '_') ADVANCE(4419); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4403: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(4403); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == '.') ADVANCE(3733); + if (lookahead == '_') ADVANCE(4419); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4404: ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '.') ADVANCE(4418); if (lookahead == '_') ADVANCE(4404); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3917); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3996); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4405: ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '.') ADVANCE(4422); if (lookahead == '_') ADVANCE(4405); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3909); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3918); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4406: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(4407); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4407); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3906); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == '2') ADVANCE(4470); + if (lookahead == '0' || + lookahead == '1') ADVANCE(4478); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4407: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(4407); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3906); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == ':') ADVANCE(4482); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4408: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(4408); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == ':') ADVANCE(4484); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4409: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(4411); - if (lookahead == 'o') ADVANCE(4391); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == '>') ADVANCE(4299); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4410: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(4411); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4411); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == '>') ADVANCE(4294); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4411: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(4411); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == '>') ADVANCE(4284); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4412: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'a') ADVANCE(4419); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == '>') ADVANCE(4289); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4413: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(3926); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == '>') ADVANCE(4298); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4414: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(3934); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == '>') ADVANCE(4293); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4415: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(4392); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == '>') ADVANCE(4283); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4416: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(4430); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == '>') ADVANCE(4288); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4417: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(4396); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == '_') ADVANCE(4417); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3995); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4418: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(4433); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == '_') ADVANCE(4418); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4007); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4419: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(4434); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == '_') ADVANCE(4419); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4420: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(3918); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == '_') ADVANCE(4421); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4421); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4421: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(4420); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == '_') ADVANCE(4421); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4422: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(4391); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == '_') ADVANCE(4422); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3931); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4423: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(4442); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == '_') ADVANCE(4423); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3923); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4424: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(4435); - if (lookahead == 'u') ADVANCE(4421); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4448); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == '_') ADVANCE(4425); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4425); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3920); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4425: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(4395); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == '_') ADVANCE(4425); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3920); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4426: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(4443); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == '_') ADVANCE(4426); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4427: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(4441); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == '_') ADVANCE(4429); + if (lookahead == 'o') ADVANCE(4409); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4428: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(4375); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == '_') ADVANCE(4429); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4429); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4429: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(4379); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == '_') ADVANCE(4429); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4430: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(4431); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == 'a') ADVANCE(4437); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4431: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(4394); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == 'e') ADVANCE(3940); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4432: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(4398); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == 'e') ADVANCE(3948); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4433: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(4432); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == 'e') ADVANCE(4410); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4434: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 's') ADVANCE(4414); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == 'e') ADVANCE(4448); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4435: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(4453); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == 'e') ADVANCE(4414); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4436: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(4376); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == 'e') ADVANCE(4451); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4437: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(4393); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == 'l') ADVANCE(4452); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4438: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(4380); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == 'l') ADVANCE(3932); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4439: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(4397); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == 'l') ADVANCE(4438); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4440: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(4421); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4448); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == 'o') ADVANCE(4409); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4441: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(4413); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == 'o') ADVANCE(4460); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4442: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(4437); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == 'o') ADVANCE(4453); + if (lookahead == 'u') ADVANCE(4439); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4466); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4443: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(4439); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == 'o') ADVANCE(4413); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4444: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4448); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == 'o') ADVANCE(4461); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4445: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4001); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == 'r') ADVANCE(4459); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4446: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4450); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == 'r') ADVANCE(4393); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4447: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4445); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == 'r') ADVANCE(4397); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4448: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == 'r') ADVANCE(4449); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4449: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4446); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == 'r') ADVANCE(4412); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4450: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4451); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == 'r') ADVANCE(4416); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4451: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3997); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == 'r') ADVANCE(4450); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4452: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4054); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == 's') ADVANCE(4432); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4453: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3801); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == 't') ADVANCE(4471); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4454: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4047); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == 't') ADVANCE(4394); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4455: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4381); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == 't') ADVANCE(4411); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4456: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4390); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == 't') ADVANCE(4398); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4457: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4059); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == 't') ADVANCE(4415); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4458: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4049); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == 'u') ADVANCE(4439); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4466); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4459: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4066); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == 'u') ADVANCE(4431); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4460: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4054); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == 'u') ADVANCE(4455); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4461: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4455); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == 'u') ADVANCE(4457); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4462: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4457); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4466); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4463: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4015); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4464: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4458); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4468); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4465: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4389); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4463); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4466: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4465); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4029); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4467: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4467); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4464); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4468: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - ADVANCE_MAP( - '+', 4593, - '>', 4256, - 'I', 4654, - 'i', 4654, - 'n', 4563, - 'r', 4610, - 'B', 4024, - 'b', 4024, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4469); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4469: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4593); - if (lookahead == '>') ADVANCE(4256); - if (lookahead == 'I') ADVANCE(4654); - if (lookahead == 'i') ADVANCE(4654); - if (lookahead == 'r') ADVANCE(4610); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(4011); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4470: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4593); - if (lookahead == '>') ADVANCE(4256); - if (lookahead == 'n') ADVANCE(4563); - if (lookahead == 'r') ADVANCE(4610); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4068); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4471: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4593); - if (lookahead == '>') ADVANCE(4256); - if (lookahead == 'r') ADVANCE(4610); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3815); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4472: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4568); - if (lookahead == '>') ADVANCE(4261); - if (lookahead == 'r') ADVANCE(3778); - if (lookahead == 'u') ADVANCE(4625); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4061); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4473: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4568); - if (lookahead == '>') ADVANCE(4261); - if (lookahead == 'u') ADVANCE(4625); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4399); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4474: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - ADVANCE_MAP( - '+', 4547, - '-', 4551, - '>', 4256, - 'I', 4654, - '_', 4551, - 'i', 4654, - 'n', 4563, - 'r', 4610, - 'B', 4024, - 'b', 4024, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4408); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4475: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - ADVANCE_MAP( - '+', 4547, - '-', 4551, - '>', 4256, - 'I', 4654, - '_', 4551, - 'i', 4654, - 'r', 4610, - 'B', 4024, - 'b', 4024, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4073); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4476: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4547); - if (lookahead == '-') ADVANCE(4551); - if (lookahead == '>') ADVANCE(4256); - if (lookahead == '_') ADVANCE(4551); - if (lookahead == 'n') ADVANCE(4563); - if (lookahead == 'r') ADVANCE(4610); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4063); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4477: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4547); - if (lookahead == '-') ADVANCE(4551); - if (lookahead == '>') ADVANCE(4256); - if (lookahead == '_') ADVANCE(4551); - if (lookahead == 'r') ADVANCE(4610); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4080); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4478: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4594); - if (lookahead == '>') ADVANCE(4246); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4068); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4479: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - ADVANCE_MAP( - '+', 4548, - '-', 4551, - '>', 4645, - 'I', 4654, - '_', 4551, - 'i', 4654, - 'n', 4563, - 'r', 4611, - 'B', 4024, - 'b', 4024, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4473); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4480: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - ADVANCE_MAP( - '+', 4548, - '-', 4551, - '>', 4645, - 'I', 4654, - '_', 4551, - 'i', 4654, - 'r', 4611, - 'B', 4024, - 'b', 4024, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4475); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4481: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4548); - if (lookahead == '-') ADVANCE(4551); - if (lookahead == '>') ADVANCE(4645); - if (lookahead == '_') ADVANCE(4551); - if (lookahead == 'n') ADVANCE(4563); - if (lookahead == 'r') ADVANCE(4611); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4474); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4482: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4548); - if (lookahead == '-') ADVANCE(4551); - if (lookahead == '>') ADVANCE(4645); - if (lookahead == '_') ADVANCE(4551); - if (lookahead == 'r') ADVANCE(4611); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4476); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4483: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4569); - if (lookahead == '>') ADVANCE(4251); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4407); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4484: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - ADVANCE_MAP( - '+', 4598, - '>', 4645, - 'I', 4654, - 'i', 4654, - 'n', 4563, - 'r', 4611, - 'B', 4024, - 'b', 4024, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4483); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4485: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4598); - if (lookahead == '>') ADVANCE(4645); - if (lookahead == 'I') ADVANCE(4654); - if (lookahead == 'i') ADVANCE(4654); - if (lookahead == 'r') ADVANCE(4611); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4485); END_STATE(); case 4486: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4598); - if (lookahead == '>') ADVANCE(4645); - if (lookahead == 'n') ADVANCE(4563); - if (lookahead == 'r') ADVANCE(4611); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + ADVANCE_MAP( + '+', 4614, + '>', 4274, + 'I', 4677, + 'i', 4677, + 'n', 4584, + 'r', 4631, + 'B', 4038, + 'b', 4038, + ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4487: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4598); - if (lookahead == '>') ADVANCE(4645); - if (lookahead == 'r') ADVANCE(4611); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '+') ADVANCE(4614); + if (lookahead == '>') ADVANCE(4274); + if (lookahead == 'I') ADVANCE(4677); + if (lookahead == 'i') ADVANCE(4677); + if (lookahead == 'r') ADVANCE(4631); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4488: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4570); - if (lookahead == '>') ADVANCE(4646); - if (lookahead == 'r') ADVANCE(3778); - if (lookahead == 'u') ADVANCE(4632); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '+') ADVANCE(4614); + if (lookahead == '>') ADVANCE(4274); + if (lookahead == 'n') ADVANCE(4584); + if (lookahead == 'r') ADVANCE(4631); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4489: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4570); - if (lookahead == '>') ADVANCE(4646); - if (lookahead == 'u') ADVANCE(4632); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '+') ADVANCE(4614); + if (lookahead == '>') ADVANCE(4274); + if (lookahead == 'r') ADVANCE(4631); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4490: ACCEPT_TOKEN(aux_sym_unquoted_token2); - ADVANCE_MAP( - '+', 4549, - '-', 4551, - '>', 4255, - 'I', 4654, - '_', 4551, - 'i', 4654, - 'r', 4614, - 'B', 4024, - 'b', 4024, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '+') ADVANCE(4589); + if (lookahead == '>') ADVANCE(4279); + if (lookahead == 'r') ADVANCE(3788); + if (lookahead == 'u') ADVANCE(4648); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4491: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4600); - if (lookahead == '>') ADVANCE(4255); - if (lookahead == 'I') ADVANCE(4654); - if (lookahead == 'i') ADVANCE(4654); - if (lookahead == 'r') ADVANCE(4614); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '+') ADVANCE(4589); + if (lookahead == '>') ADVANCE(4279); + if (lookahead == 'u') ADVANCE(4648); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4492: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4600); - if (lookahead == '>') ADVANCE(4255); - if (lookahead == 'r') ADVANCE(4614); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + ADVANCE_MAP( + '+', 4564, + '-', 4568, + '>', 4274, + 'I', 4677, + '_', 4568, + 'i', 4677, + 'n', 4584, + 'r', 4631, + 'B', 4038, + 'b', 4038, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4493: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4571); - if (lookahead == '>') ADVANCE(4260); - if (lookahead == 'u') ADVANCE(4633); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + ADVANCE_MAP( + '+', 4564, + '-', 4568, + '>', 4274, + 'I', 4677, + '_', 4568, + 'i', 4677, + 'r', 4631, + 'B', 4038, + 'b', 4038, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4494: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4602); - if (lookahead == '>') ADVANCE(4648); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '+') ADVANCE(4564); + if (lookahead == '-') ADVANCE(4568); + if (lookahead == '>') ADVANCE(4274); + if (lookahead == '_') ADVANCE(4568); + if (lookahead == 'n') ADVANCE(4584); + if (lookahead == 'r') ADVANCE(4631); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4495: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4572); - if (lookahead == '>') ADVANCE(4650); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '+') ADVANCE(4564); + if (lookahead == '-') ADVANCE(4568); + if (lookahead == '>') ADVANCE(4274); + if (lookahead == '_') ADVANCE(4568); + if (lookahead == 'r') ADVANCE(4631); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4496: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4603); - if (lookahead == '>') ADVANCE(4245); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '+') ADVANCE(4615); + if (lookahead == '>') ADVANCE(4264); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4497: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4573); - if (lookahead == '>') ADVANCE(4250); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + ADVANCE_MAP( + '+', 4565, + '-', 4568, + '>', 4668, + 'I', 4677, + '_', 4568, + 'i', 4677, + 'n', 4584, + 'r', 4632, + 'B', 4038, + 'b', 4038, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4498: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '-') ADVANCE(3630); - if (lookahead == '.') ADVANCE(4544); - if (lookahead == '_') ADVANCE(4509); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4665); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3982); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + ADVANCE_MAP( + '+', 4565, + '-', 4568, + '>', 4668, + 'I', 4677, + '_', 4568, + 'i', 4677, + 'r', 4632, + 'B', 4038, + 'b', 4038, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4499: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '-') ADVANCE(4557); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '+') ADVANCE(4565); + if (lookahead == '-') ADVANCE(4568); + if (lookahead == '>') ADVANCE(4668); + if (lookahead == '_') ADVANCE(4568); + if (lookahead == 'n') ADVANCE(4584); + if (lookahead == 'r') ADVANCE(4632); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4500: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '-') ADVANCE(4642); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '+') ADVANCE(4565); + if (lookahead == '-') ADVANCE(4568); + if (lookahead == '>') ADVANCE(4668); + if (lookahead == '_') ADVANCE(4568); + if (lookahead == 'r') ADVANCE(4632); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4501: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '-') ADVANCE(4578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '+') ADVANCE(4590); + if (lookahead == '>') ADVANCE(4269); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4502: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '-') ADVANCE(4676); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + ADVANCE_MAP( + '+', 4619, + '>', 4668, + 'I', 4677, + 'i', 4677, + 'n', 4584, + 'r', 4632, + 'B', 4038, + 'b', 4038, + ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4503: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '-') ADVANCE(4643); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '+') ADVANCE(4619); + if (lookahead == '>') ADVANCE(4668); + if (lookahead == 'I') ADVANCE(4677); + if (lookahead == 'i') ADVANCE(4677); + if (lookahead == 'r') ADVANCE(4632); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4504: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(3721); - if (lookahead == '_') ADVANCE(4540); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3908); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '+') ADVANCE(4619); + if (lookahead == '>') ADVANCE(4668); + if (lookahead == 'n') ADVANCE(4584); + if (lookahead == 'r') ADVANCE(4632); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4505: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(3721); - if (lookahead == '_') ADVANCE(4545); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3991); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '+') ADVANCE(4619); + if (lookahead == '>') ADVANCE(4668); + if (lookahead == 'r') ADVANCE(4632); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4506: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(3842); - if (lookahead == '_') ADVANCE(4545); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3991); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '+') ADVANCE(4591); + if (lookahead == '>') ADVANCE(4669); + if (lookahead == 'r') ADVANCE(3788); + if (lookahead == 'u') ADVANCE(4655); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4507: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(3842); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '+') ADVANCE(4591); + if (lookahead == '>') ADVANCE(4669); + if (lookahead == 'u') ADVANCE(4655); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4508: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(4539); - if (lookahead == '_') ADVANCE(4508); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3904); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + ADVANCE_MAP( + '+', 4566, + '-', 4568, + '>', 4273, + 'I', 4677, + '_', 4568, + 'i', 4677, + 'r', 4635, + 'B', 4038, + 'b', 4038, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4509: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(4544); - if (lookahead == '_') ADVANCE(4509); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3982); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '+') ADVANCE(4621); + if (lookahead == '>') ADVANCE(4273); + if (lookahead == 'I') ADVANCE(4677); + if (lookahead == 'i') ADVANCE(4677); + if (lookahead == 'r') ADVANCE(4635); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4510: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '2') ADVANCE(4671); - if (lookahead == '0' || - lookahead == '1') ADVANCE(4679); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '+') ADVANCE(4621); + if (lookahead == '>') ADVANCE(4273); + if (lookahead == 'r') ADVANCE(4635); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4511: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ':') ADVANCE(4681); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '+') ADVANCE(4592); + if (lookahead == '>') ADVANCE(4278); + if (lookahead == 'u') ADVANCE(4656); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4512: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ':') ADVANCE(4684); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '+') ADVANCE(4623); + if (lookahead == '>') ADVANCE(4671); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4513: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '=') ADVANCE(3788); - if (lookahead == '~') ADVANCE(3799); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '+') ADVANCE(4593); + if (lookahead == '>') ADVANCE(4673); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4514: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '=') ADVANCE(3786); - if (lookahead == '>') ADVANCE(3714); - if (lookahead == '~') ADVANCE(3797); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '+') ADVANCE(4624); + if (lookahead == '>') ADVANCE(4263); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4515: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '=') ADVANCE(3786); - if (lookahead == '~') ADVANCE(3797); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '+') ADVANCE(4594); + if (lookahead == '>') ADVANCE(4268); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4516: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(3714); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '-') ADVANCE(3644); + if (lookahead == '.') ADVANCE(4561); + if (lookahead == '_') ADVANCE(4527); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4688); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3996); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4517: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(4281); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '-') ADVANCE(4578); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4518: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(4276); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '-') ADVANCE(4599); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4519: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(4266); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '-') ADVANCE(4665); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4520: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(4271); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '-') ADVANCE(4699); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4521: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(4280); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '-') ADVANCE(4666); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4522: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(4275); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '.') ADVANCE(3735); + if (lookahead == '_') ADVANCE(4558); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3922); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4523: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(4265); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '.') ADVANCE(3735); + if (lookahead == '_') ADVANCE(4562); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4005); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4524: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(4270); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '.') ADVANCE(3856); + if (lookahead == '_') ADVANCE(4562); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4005); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4525: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(4647); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '.') ADVANCE(3856); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4526: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(4649); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '.') ADVANCE(4557); + if (lookahead == '_') ADVANCE(4526); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3918); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4527: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(4651); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '.') ADVANCE(4561); + if (lookahead == '_') ADVANCE(4527); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3996); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4528: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(4652); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '2') ADVANCE(4694); + if (lookahead == '0' || + lookahead == '1') ADVANCE(4702); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4529: ACCEPT_TOKEN(aux_sym_unquoted_token2); - ADVANCE_MAP( - 'I', 4654, - '_', 4551, - 'i', 4654, - 'n', 4563, - '+', 4551, - '-', 4551, - 'B', 4024, - 'b', 4024, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == ':') ADVANCE(4704); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4530: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(4654); - if (lookahead == '_') ADVANCE(4551); - if (lookahead == 'i') ADVANCE(4654); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4551); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == ':') ADVANCE(4707); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4531: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(4654); - if (lookahead == '_') ADVANCE(4551); - if (lookahead == 'i') ADVANCE(4558); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4551); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '=') ADVANCE(3802); + if (lookahead == '~') ADVANCE(3813); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4532: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(4654); - if (lookahead == 'i') ADVANCE(4654); - if (lookahead == 'n') ADVANCE(4563); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '=') ADVANCE(3800); + if (lookahead == '>') ADVANCE(3728); + if (lookahead == '~') ADVANCE(3811); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4533: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(4654); - if (lookahead == 'i') ADVANCE(4654); - if (lookahead == 'r') ADVANCE(4638); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '=') ADVANCE(3800); + if (lookahead == '~') ADVANCE(3811); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4534: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(4654); - if (lookahead == 'i') ADVANCE(4654); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '>') ADVANCE(3728); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4535: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(4654); - if (lookahead == 'i') ADVANCE(4558); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '>') ADVANCE(4299); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4536: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(4654); - if (lookahead == 'i') ADVANCE(4588); - if (lookahead == 'o') ADVANCE(4562); - if (lookahead == 's') ADVANCE(4031); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '>') ADVANCE(4294); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4537: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(4654); - if (lookahead == 'i') ADVANCE(4588); - if (lookahead == 's') ADVANCE(4031); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '>') ADVANCE(4284); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4538: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4538); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '>') ADVANCE(4289); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4539: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4539); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3917); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '>') ADVANCE(4298); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4540: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4540); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3908); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '>') ADVANCE(4293); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4541: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4542); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4542); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3906); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '>') ADVANCE(4283); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4542: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4542); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3906); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '>') ADVANCE(4288); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4543: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4543); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '>') ADVANCE(4670); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4544: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4544); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3993); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '>') ADVANCE(4672); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4545: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4545); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3991); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '>') ADVANCE(4674); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4546: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4551); - if (lookahead == 'n') ADVANCE(4563); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4551); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '>') ADVANCE(4675); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4547: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4551); - if (lookahead == 'o') ADVANCE(4517); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + ADVANCE_MAP( + 'I', 4677, + '_', 4568, + 'i', 4677, + 'n', 4584, + '+', 4568, + '-', 4568, + 'B', 4038, + 'b', 4038, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4548: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4551); - if (lookahead == 'o') ADVANCE(4525); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'I') ADVANCE(4677); + if (lookahead == '_') ADVANCE(4568); + if (lookahead == 'i') ADVANCE(4677); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4568); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4038); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4549: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4551); - if (lookahead == 'o') ADVANCE(4521); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'I') ADVANCE(4677); + if (lookahead == '_') ADVANCE(4568); + if (lookahead == 'i') ADVANCE(4579); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4568); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4038); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4550: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4551); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4551); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'I') ADVANCE(4677); + if (lookahead == 'i') ADVANCE(4677); + if (lookahead == 'n') ADVANCE(4584); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4551: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4551); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'I') ADVANCE(4677); + if (lookahead == 'i') ADVANCE(4677); + if (lookahead == 'r') ADVANCE(4661); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4552: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4553); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4553); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'I') ADVANCE(4677); + if (lookahead == 'i') ADVANCE(4677); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4553: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4553); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'I') ADVANCE(4677); + if (lookahead == 'i') ADVANCE(4579); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4554: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(4585); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'I') ADVANCE(4677); + if (lookahead == 'i') ADVANCE(4609); + if (lookahead == 'o') ADVANCE(4583); + if (lookahead == 's') ADVANCE(4045); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4555: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(4644); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'I') ADVANCE(4677); + if (lookahead == 'i') ADVANCE(4609); + if (lookahead == 's') ADVANCE(4045); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4556: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(4615); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '_') ADVANCE(4556); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4557: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(4592); - if (lookahead == 'o') ADVANCE(4606); - if (lookahead == 's') ADVANCE(4577); - if (lookahead == 'x') ADVANCE(4601); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '_') ADVANCE(4557); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3931); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4558: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '_') ADVANCE(4558); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3922); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4559: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'c') ADVANCE(4031); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '_') ADVANCE(4560); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4560); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3920); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4560: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'd') ADVANCE(3774); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '_') ADVANCE(4560); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3920); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4561: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'd') ADVANCE(3832); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '_') ADVANCE(4561); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4007); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4562: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'd') ADVANCE(3812); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '_') ADVANCE(4562); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4005); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4563: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'd') ADVANCE(4623); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '_') ADVANCE(4568); + if (lookahead == 'n') ADVANCE(4584); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4568); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4564: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(3926); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '_') ADVANCE(4568); + if (lookahead == 'o') ADVANCE(4535); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4565: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(3934); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '_') ADVANCE(4568); + if (lookahead == 'o') ADVANCE(4543); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4566: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(4559); - if (lookahead == 't') ADVANCE(4556); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '_') ADVANCE(4568); + if (lookahead == 'o') ADVANCE(4539); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4567: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(4559); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '_') ADVANCE(4568); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4568); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4568: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(4518); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '_') ADVANCE(4568); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4569: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(4612); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '_') ADVANCE(4570); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4570); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4570: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(4526); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '_') ADVANCE(4570); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4571: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(4522); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '_') ADVANCE(4571); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3995); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4572: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(4617); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'a') ADVANCE(4606); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4573: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(4619); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'a') ADVANCE(4667); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4574: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'f') ADVANCE(3696); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'a') ADVANCE(4641); + if (lookahead == 'r') ADVANCE(4045); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4575: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'h') ADVANCE(3784); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'a') ADVANCE(4641); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4576: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'h') ADVANCE(3782); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'a') ADVANCE(4642); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4577: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'h') ADVANCE(4583); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'a') ADVANCE(4636); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4578: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'i') ADVANCE(4587); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'a') ADVANCE(4613); + if (lookahead == 'o') ADVANCE(4627); + if (lookahead == 's') ADVANCE(4598); + if (lookahead == 'x') ADVANCE(4622); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4579: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'i') ADVANCE(4626); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4580: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'i') ADVANCE(4627); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'c') ADVANCE(4045); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4581: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'i') ADVANCE(4631); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'd') ADVANCE(3784); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4582: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'k') ADVANCE(4031); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'd') ADVANCE(3846); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4583: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(3828); - if (lookahead == 'r') ADVANCE(3830); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'd') ADVANCE(3826); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4584: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(3918); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'd') ADVANCE(4646); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4585: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(4622); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'e') ADVANCE(3940); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4586: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(4584); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'e') ADVANCE(3948); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4587: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(3780); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'e') ADVANCE(4580); + if (lookahead == 't') ADVANCE(4577); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4588: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(4031); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'e') ADVANCE(4580); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4589: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(3671); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'e') ADVANCE(4536); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4590: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(4560); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'e') ADVANCE(4633); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4591: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(4563); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'e') ADVANCE(4544); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4592: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(4561); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'e') ADVANCE(4540); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4593: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4517); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'e') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4594: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4639); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'e') ADVANCE(4640); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4595: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4562); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'f') ADVANCE(3710); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4596: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4630); - if (lookahead == 's') ADVANCE(4031); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'h') ADVANCE(3798); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4597: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4630); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'h') ADVANCE(3796); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4598: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4525); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'h') ADVANCE(4604); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4599: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4605); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'h') ADVANCE(4576); + if (lookahead == 'i') ADVANCE(4608); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4600: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4521); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'i') ADVANCE(4649); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4601: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4607); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'i') ADVANCE(4650); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4602: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4640); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'i') ADVANCE(4653); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4603: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4641); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'k') ADVANCE(4045); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4604: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3778); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'l') ADVANCE(3842); + if (lookahead == 'r') ADVANCE(3844); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4605: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3776); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'l') ADVANCE(3932); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4606: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3836); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'l') ADVANCE(4645); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4607: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3834); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'l') ADVANCE(4605); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4608: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(4031); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'n') ADVANCE(3790); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4609: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(4638); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'n') ADVANCE(4045); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4610: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(4478); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'n') ADVANCE(3685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4611: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(4494); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'n') ADVANCE(4581); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4612: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(4613); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'n') ADVANCE(4584); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4613: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(4520); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'n') ADVANCE(4582); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4614: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(4496); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'o') ADVANCE(4535); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4615: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(4636); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'o') ADVANCE(4662); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4616: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(4524); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'o') ADVANCE(4583); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4617: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(4618); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'o') ADVANCE(4652); + if (lookahead == 's') ADVANCE(4045); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4618: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(4528); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'o') ADVANCE(4652); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4619: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(4616); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'o') ADVANCE(4543); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4620: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(4031); - if (lookahead == 'u') ADVANCE(4586); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4661); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'o') ADVANCE(4626); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4621: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(4031); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'o') ADVANCE(4539); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4622: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(4565); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'o') ADVANCE(4628); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4623: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(4500); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'o') ADVANCE(4663); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4624: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(4503); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'o') ADVANCE(4664); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4625: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4483); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'r') ADVANCE(3788); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4626: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4499); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'r') ADVANCE(3786); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4627: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4575); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'r') ADVANCE(3850); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4628: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4556); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'r') ADVANCE(3848); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4629: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4519); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'r') ADVANCE(4045); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4630: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4501); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'r') ADVANCE(4661); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4631: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4576); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'r') ADVANCE(4496); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4632: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4495); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'r') ADVANCE(4512); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4633: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4497); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'r') ADVANCE(4634); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4634: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4527); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'r') ADVANCE(4538); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4635: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4523); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'r') ADVANCE(4514); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4636: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4624); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'r') ADVANCE(4659); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4637: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'u') ADVANCE(4586); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4661); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'r') ADVANCE(4542); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4638: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'u') ADVANCE(4564); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'r') ADVANCE(4639); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4639: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'u') ADVANCE(4629); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'r') ADVANCE(4546); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4640: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'u') ADVANCE(4634); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'r') ADVANCE(4637); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4641: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'u') ADVANCE(4635); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 's') ADVANCE(3792); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4642: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'w') ADVANCE(4580); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 's') ADVANCE(3794); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4643: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'w') ADVANCE(4581); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 's') ADVANCE(4045); + if (lookahead == 'u') ADVANCE(4607); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4684); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4644: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'y') ADVANCE(4031); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 's') ADVANCE(4045); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4645: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(3569); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 's') ADVANCE(4586); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4646: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(3570); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 's') ADVANCE(4519); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4647: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(3574); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 's') ADVANCE(4521); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4648: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(3567); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 't') ADVANCE(4501); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4649: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(3573); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 't') ADVANCE(4517); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4650: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(3568); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 't') ADVANCE(4596); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4651: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(3571); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 't') ADVANCE(4537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4652: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(3572); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 't') ADVANCE(4518); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4653: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4661); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 't') ADVANCE(4597); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4654: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 't') ADVANCE(4577); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4655: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4658); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 't') ADVANCE(4513); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4656: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4013); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 't') ADVANCE(4515); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4657: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4004); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 't') ADVANCE(4545); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4658: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3076); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4685); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3079); + if (lookahead == 't') ADVANCE(4541); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4659: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4667); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 't') ADVANCE(4647); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4660: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4668); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'u') ADVANCE(4607); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4684); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4661: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'u') ADVANCE(4585); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4662: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4657); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'u') ADVANCE(4651); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4663: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4659); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'u') ADVANCE(4657); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4664: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4656); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'u') ADVANCE(4658); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4665: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4655); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'w') ADVANCE(4601); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4666: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4660); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'w') ADVANCE(4602); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4667: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4669); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'y') ADVANCE(4045); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4668: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4670); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '|') ADVANCE(3583); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4669: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3997); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '|') ADVANCE(3584); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4670: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4007); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '|') ADVANCE(3588); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4671: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4056); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '|') ADVANCE(3581); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4672: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4047); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '|') ADVANCE(3587); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4673: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4502); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '|') ADVANCE(3582); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4674: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4512); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '|') ADVANCE(3585); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4675: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4673); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == '|') ADVANCE(3586); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4676: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4682); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4684); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4677: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4051); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4678: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4068); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4681); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4679: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4056); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4027); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4680: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4674); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4018); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4681: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4677); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3084); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4708); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3087); END_STATE(); case 4682: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4690); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4683: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4511); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4691); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4684: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4683); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4029); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4685: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4685); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4680); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4686: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '$') ADVANCE(3606); - if (lookahead == '(') ADVANCE(3802); - if (lookahead == '.') ADVANCE(4689); - if (lookahead == '_') ADVANCE(4690); - if (lookahead == '\t' || - lookahead == ' ') SKIP(287); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4688); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4694); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4682); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4687: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '.') ADVANCE(4689); - if (lookahead == '_') ADVANCE(4690); - if (lookahead == '\t' || - lookahead == ' ') SKIP(346); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4688); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4694); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4679); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4688: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '.') ADVANCE(4691); - if (lookahead == '_') ADVANCE(4688); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3904); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4694); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4678); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4689: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(4689); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3915); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4694); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4683); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4690: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(4690); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4694); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4692); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4691: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(4691); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3917); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4694); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4693); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4692: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(4693); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4693); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3906); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4694); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(4011); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4693: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(4693); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3906); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4694); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(4021); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4694: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4694); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4070); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4695: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4831); - if (lookahead == '>') ADVANCE(4257); - if (lookahead == 'n') ADVANCE(4771); - if (lookahead == 'r') ADVANCE(4848); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4061); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4696: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4831); - if (lookahead == '>') ADVANCE(4257); - if (lookahead == 'r') ADVANCE(4848); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4520); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4697: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4780); - if (lookahead == '>') ADVANCE(4262); - if (lookahead == 'r') ADVANCE(3779); - if (lookahead == 'u') ADVANCE(4881); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4530); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4698: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4780); - if (lookahead == '>') ADVANCE(4262); - if (lookahead == 'u') ADVANCE(4881); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4696); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4699: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4834); - if (lookahead == '>') ADVANCE(4247); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4705); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4700: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4783); - if (lookahead == '>') ADVANCE(4252); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4065); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4701: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4839); - if (lookahead == '>') ADVANCE(4909); - if (lookahead == 'n') ADVANCE(4771); - if (lookahead == 'r') ADVANCE(4858); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4082); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4702: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4839); - if (lookahead == '>') ADVANCE(4909); - if (lookahead == 'r') ADVANCE(4858); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4070); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4703: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4787); - if (lookahead == '>') ADVANCE(4910); - if (lookahead == 'r') ADVANCE(3779); - if (lookahead == 'u') ADVANCE(4887); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4697); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4704: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4787); - if (lookahead == '>') ADVANCE(4910); - if (lookahead == 'u') ADVANCE(4887); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4700); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4705: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4842); - if (lookahead == '>') ADVANCE(4258); - if (lookahead == 'r') ADVANCE(4863); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4076); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4706: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4789); - if (lookahead == '>') ADVANCE(4263); - if (lookahead == 'u') ADVANCE(4888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4529); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4707: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4843); - if (lookahead == '>') ADVANCE(4912); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4706); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4708: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4790); - if (lookahead == '>') ADVANCE(4914); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4708); END_STATE(); case 4709: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4844); - if (lookahead == '>') ADVANCE(4248); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '$') ADVANCE(3620); + if (lookahead == '(') ADVANCE(3816); + if (lookahead == '.') ADVANCE(4712); + if (lookahead == '_') ADVANCE(4713); + if (lookahead == '\t' || + lookahead == ' ') SKIP(287); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4717); END_STATE(); case 4710: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4791); - if (lookahead == '>') ADVANCE(4253); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '.') ADVANCE(4712); + if (lookahead == '_') ADVANCE(4713); + if (lookahead == '\t' || + lookahead == ' ') SKIP(346); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4717); END_STATE(); case 4711: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(3633); - if (lookahead == '.') ADVANCE(4747); - if (lookahead == '_') ADVANCE(4719); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4931); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4747); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '.') ADVANCE(4714); + if (lookahead == '_') ADVANCE(4711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3918); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4717); END_STATE(); case 4712: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(4951); - if (lookahead == '_') ADVANCE(4747); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4747); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '_') ADVANCE(4712); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3929); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4717); END_STATE(); case 4713: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(4765); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '_') ADVANCE(4713); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4717); END_STATE(); case 4714: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(4906); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '_') ADVANCE(4714); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3931); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4717); END_STATE(); case 4715: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(4803); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '_') ADVANCE(4716); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4716); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3920); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4717); END_STATE(); case 4716: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(4785); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '_') ADVANCE(4716); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3920); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4717); END_STATE(); case 4717: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(4952); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4717); END_STATE(); case 4718: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(4907); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '+') ADVANCE(4856); + if (lookahead == '>') ADVANCE(4275); + if (lookahead == 'n') ADVANCE(4797); + if (lookahead == 'r') ADVANCE(4873); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4719: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '.') ADVANCE(4747); - if (lookahead == '_') ADVANCE(4719); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4747); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '+') ADVANCE(4856); + if (lookahead == '>') ADVANCE(4275); + if (lookahead == 'r') ADVANCE(4873); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4720: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '.') ADVANCE(3722); - if (lookahead == '_') ADVANCE(4754); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4751); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '+') ADVANCE(4805); + if (lookahead == '>') ADVANCE(4280); + if (lookahead == 'r') ADVANCE(3789); + if (lookahead == 'u') ADVANCE(4907); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4721: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '.') ADVANCE(4756); - if (lookahead == '_') ADVANCE(4721); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4756); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + if (lookahead == '+') ADVANCE(4805); + if (lookahead == '>') ADVANCE(4280); + if (lookahead == 'u') ADVANCE(4907); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4722: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '.') ADVANCE(4949); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4723); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '+') ADVANCE(4859); + if (lookahead == '>') ADVANCE(4265); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4723: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '2') ADVANCE(4940); - if (lookahead == '0' || - lookahead == '1') ADVANCE(4950); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '+') ADVANCE(4808); + if (lookahead == '>') ADVANCE(4270); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4724: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == ':') ADVANCE(4941); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4944); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '+') ADVANCE(4864); + if (lookahead == '>') ADVANCE(4936); + if (lookahead == 'n') ADVANCE(4797); + if (lookahead == 'r') ADVANCE(4883); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4725: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == ':') ADVANCE(4954); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '+') ADVANCE(4864); + if (lookahead == '>') ADVANCE(4936); + if (lookahead == 'r') ADVANCE(4883); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4726: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == ':') ADVANCE(4956); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '+') ADVANCE(4812); + if (lookahead == '>') ADVANCE(4937); + if (lookahead == 'r') ADVANCE(3789); + if (lookahead == 'u') ADVANCE(4914); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4727: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '=') ADVANCE(3789); - if (lookahead == '~') ADVANCE(3800); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '+') ADVANCE(4812); + if (lookahead == '>') ADVANCE(4937); + if (lookahead == 'u') ADVANCE(4914); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4728: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '=') ADVANCE(3787); - if (lookahead == '>') ADVANCE(3715); - if (lookahead == '~') ADVANCE(3798); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '+') ADVANCE(4867); + if (lookahead == '>') ADVANCE(4276); + if (lookahead == 'r') ADVANCE(4888); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4729: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '=') ADVANCE(3787); - if (lookahead == '~') ADVANCE(3798); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '+') ADVANCE(4814); + if (lookahead == '>') ADVANCE(4281); + if (lookahead == 'u') ADVANCE(4915); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4730: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(4282); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '+') ADVANCE(4868); + if (lookahead == '>') ADVANCE(4939); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4731: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(4277); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '+') ADVANCE(4815); + if (lookahead == '>') ADVANCE(4941); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4732: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(4267); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '+') ADVANCE(4869); + if (lookahead == '>') ADVANCE(4266); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4733: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(4272); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '+') ADVANCE(4816); + if (lookahead == '>') ADVANCE(4271); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4734: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(4283); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '-') ADVANCE(3647); + if (lookahead == '.') ADVANCE(4770); + if (lookahead == '_') ADVANCE(4742); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4958); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4770); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4735: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(4278); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '-') ADVANCE(4978); + if (lookahead == '_') ADVANCE(4770); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4770); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4736: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(4268); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '-') ADVANCE(4790); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4737: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(4273); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '-') ADVANCE(4825); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4738: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(3715); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '-') ADVANCE(4933); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4739: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(4911); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '-') ADVANCE(4810); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4740: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(4913); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '-') ADVANCE(4979); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4741: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(4915); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '-') ADVANCE(4934); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4742: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(4916); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '.') ADVANCE(4770); + if (lookahead == '_') ADVANCE(4742); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4770); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4743: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N') ADVANCE(4921); - if (lookahead == 'f') ADVANCE(4939); - if (lookahead == 'n') ADVANCE(4921); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + if (lookahead == '.') ADVANCE(3736); + if (lookahead == '_') ADVANCE(4777); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4774); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4744: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'T') ADVANCE(4953); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '.') ADVANCE(4779); + if (lookahead == '_') ADVANCE(4744); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4779); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4745: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4747); - if (lookahead == 'b') ADVANCE(4022); - if (lookahead == 'o') ADVANCE(4038); - if (lookahead == 'x') ADVANCE(4043); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4749); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '.') ADVANCE(4976); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4746); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4746: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4747); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4747); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4747); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '2') ADVANCE(4967); + if (lookahead == '0' || + lookahead == '1') ADVANCE(4977); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4747: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4747); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4747); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == ':') ADVANCE(4968); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4971); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4748: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4747); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4712); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == ':') ADVANCE(4981); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4749: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4747); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4748); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == ':') ADVANCE(4983); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4750: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4747); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4749); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '=') ADVANCE(3803); + if (lookahead == '~') ADVANCE(3814); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4751: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4751); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4746); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4751); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '=') ADVANCE(3801); + if (lookahead == '>') ADVANCE(3729); + if (lookahead == '~') ADVANCE(3812); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4752: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4752); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4753); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + if (lookahead == '=') ADVANCE(3801); + if (lookahead == '~') ADVANCE(3812); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4753: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4753); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4755); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4753); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + if (lookahead == '>') ADVANCE(4300); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4754: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4754); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4751); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '>') ADVANCE(4295); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4755: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4756); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4756); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4756); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + if (lookahead == '>') ADVANCE(4285); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4756: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4756); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4756); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + if (lookahead == '>') ADVANCE(4290); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4757: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4811); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '>') ADVANCE(4301); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4758: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4878); - if (lookahead == 'o') ADVANCE(4826); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + if (lookahead == '>') ADVANCE(4296); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4759: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4815); - if (lookahead == 'o') ADVANCE(4853); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + if (lookahead == '>') ADVANCE(4286); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4760: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4810); - if (lookahead == 'o') ADVANCE(4772); - if (lookahead == 'u') ADVANCE(4877); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + if (lookahead == '>') ADVANCE(4291); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4761: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4809); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + if (lookahead == '>') ADVANCE(3729); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4762: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4908); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + if (lookahead == '>') ADVANCE(4938); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4763: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4870); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + if (lookahead == '>') ADVANCE(4940); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4764: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4865); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '>') ADVANCE(4942); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4765: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4830); - if (lookahead == 'o') ADVANCE(4851); - if (lookahead == 's') ADVANCE(4795); - if (lookahead == 'x') ADVANCE(4841); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '>') ADVANCE(4943); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4766: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'c') ADVANCE(4798); + if (lookahead == 'N') ADVANCE(4948); + if (lookahead == 'f') ADVANCE(4966); + if (lookahead == 'n') ADVANCE(4948); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4767: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'c') ADVANCE(4779); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + if (lookahead == 'T') ADVANCE(4980); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4768: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'd') ADVANCE(3775); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '_') ADVANCE(4770); + if (lookahead == 'b') ADVANCE(4034); + if (lookahead == 'o') ADVANCE(4050); + if (lookahead == 'x') ADVANCE(4055); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4772); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4769: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'd') ADVANCE(3814); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '_') ADVANCE(4770); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4770); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4770); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4770: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'd') ADVANCE(3833); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '_') ADVANCE(4770); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4770); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4771: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'd') ADVANCE(4873); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '_') ADVANCE(4770); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4735); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4772: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'd') ADVANCE(4899); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + if (lookahead == '_') ADVANCE(4770); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4771); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4773: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'd') ADVANCE(4779); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + if (lookahead == '_') ADVANCE(4770); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4772); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4774: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(3933); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '_') ADVANCE(4774); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4769); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4774); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4775: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(3941); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '_') ADVANCE(4775); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4776); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4776: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4939); + if (lookahead == '_') ADVANCE(4776); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4778); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4776); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4777: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4792); - if (lookahead == 'o') ADVANCE(4939); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + if (lookahead == '_') ADVANCE(4777); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4774); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4778: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4794); + if (lookahead == '_') ADVANCE(4779); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4779); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4779); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4779: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4716); + if (lookahead == '_') ADVANCE(4779); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4779); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4780: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4731); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'a') ADVANCE(4836); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4781: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4879); - if (lookahead == 'o') ADVANCE(4833); + if (lookahead == 'a') ADVANCE(4905); + if (lookahead == 'o') ADVANCE(4851); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4782: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4761); + if (lookahead == 'a') ADVANCE(4840); + if (lookahead == 'o') ADVANCE(4878); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4783: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4861); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'a') ADVANCE(4835); + if (lookahead == 'o') ADVANCE(4796); + if (lookahead == 'u') ADVANCE(4904); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4784: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4853); + if (lookahead == 'a') ADVANCE(4834); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4785: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4828); + if (lookahead == 'a') ADVANCE(4935); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4786: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4864); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + if (lookahead == 'a') ADVANCE(4895); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4787: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4740); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'a') ADVANCE(4897); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4788: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4860); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + if (lookahead == 'a') ADVANCE(4896); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4789: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4735); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'a') ADVANCE(4890); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4790: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4867); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'a') ADVANCE(4855); + if (lookahead == 'o') ADVANCE(4876); + if (lookahead == 's') ADVANCE(4820); + if (lookahead == 'x') ADVANCE(4866); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4791: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4869); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'c') ADVANCE(4823); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4792: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'f') ADVANCE(4939); + if (lookahead == 'c') ADVANCE(4804); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4793: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'f') ADVANCE(3701); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'd') ADVANCE(3785); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4794: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'g') ADVANCE(4804); - if (lookahead == 't') ADVANCE(4901); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + if (lookahead == 'd') ADVANCE(3828); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4795: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'h') ADVANCE(4813); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'd') ADVANCE(3847); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4796: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'h') ADVANCE(3785); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'd') ADVANCE(4926); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4797: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'h') ADVANCE(3783); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'd') ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4798: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'h') ADVANCE(4939); + if (lookahead == 'd') ADVANCE(4804); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4799: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'h') ADVANCE(4806); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + if (lookahead == 'e') ADVANCE(3947); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4800: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4773); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + if (lookahead == 'e') ADVANCE(3955); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4801: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4763); + if (lookahead == 'e') ADVANCE(4966); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4802: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4829); + if (lookahead == 'e') ADVANCE(4817); + if (lookahead == 'o') ADVANCE(4966); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4803: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4824); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'e') ADVANCE(4819); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4804: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4875); + if (lookahead == 'e') ADVANCE(4739); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4805: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4882); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'e') ADVANCE(4754); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4806: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4821); + if (lookahead == 'e') ADVANCE(4906); + if (lookahead == 'o') ADVANCE(4858); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4807: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4883); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'e') ADVANCE(4784); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4808: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4886); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'e') ADVANCE(4886); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4809: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'k') ADVANCE(4939); + if (lookahead == 'e') ADVANCE(4878); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4810: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'k') ADVANCE(4776); - if (lookahead == 't') ADVANCE(4766); + if (lookahead == 'e') ADVANCE(4853); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4811: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4871); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'e') ADVANCE(4889); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4812: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(3924); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'e') ADVANCE(4763); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4813: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(3829); - if (lookahead == 'r') ADVANCE(3831); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'e') ADVANCE(4885); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4814: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4874); - if (lookahead == 'r') ADVANCE(4859); - if (lookahead == 'x') ADVANCE(4846); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + if (lookahead == 'e') ADVANCE(4758); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4815: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4874); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + if (lookahead == 'e') ADVANCE(4892); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4816: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4939); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + if (lookahead == 'e') ADVANCE(4894); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4817: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4801); - if (lookahead == 's') ADVANCE(4939); + if (lookahead == 'f') ADVANCE(4966); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4818: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4812); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'f') ADVANCE(3715); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4819: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4816); + if (lookahead == 'g') ADVANCE(4829); + if (lookahead == 't') ADVANCE(4928); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4820: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4762); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + if (lookahead == 'h') ADVANCE(4838); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4821: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4776); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + if (lookahead == 'h') ADVANCE(3799); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4822: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(4768); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'h') ADVANCE(3797); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4823: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(3677); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'h') ADVANCE(4966); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4824: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(3781); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'h') ADVANCE(4831); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4825: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(4939); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + if (lookahead == 'h') ADVANCE(4788); + if (lookahead == 'i') ADVANCE(4849); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4826: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(4872); + if (lookahead == 'i') ADVANCE(4798); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4827: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(4771); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'i') ADVANCE(4787); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4828: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(4904); + if (lookahead == 'i') ADVANCE(4854); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4829: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(4898); + if (lookahead == 'i') ADVANCE(4902); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4830: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(4770); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'i') ADVANCE(4908); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4831: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4730); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'i') ADVANCE(4846); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4832: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4900); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + if (lookahead == 'i') ADVANCE(4909); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4833: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4845); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + if (lookahead == 'i') ADVANCE(4913); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4834: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4895); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'k') ADVANCE(4966); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4835: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4769); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'k') ADVANCE(4801); + if (lookahead == 't') ADVANCE(4791); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4836: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4853); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + if (lookahead == 'l') ADVANCE(4898); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4837: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4850); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'l') ADVANCE(3938); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4838: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4885); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'l') ADVANCE(3843); + if (lookahead == 'r') ADVANCE(3845); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4839: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4739); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'l') ADVANCE(4901); + if (lookahead == 'r') ADVANCE(4884); + if (lookahead == 'x') ADVANCE(4871); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4840: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4856); + if (lookahead == 'l') ADVANCE(4901); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4841: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4852); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'l') ADVANCE(4966); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4842: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4734); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'l') ADVANCE(4827); + if (lookahead == 's') ADVANCE(4966); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4843: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4902); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'l') ADVANCE(4837); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4844: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4903); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'l') ADVANCE(4841); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4845: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'p') ADVANCE(4939); + if (lookahead == 'l') ADVANCE(4785); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4846: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'p') ADVANCE(4840); - if (lookahead == 't') ADVANCE(4788); + if (lookahead == 'l') ADVANCE(4801); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4847: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4894); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'n') ADVANCE(4793); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4848: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4699); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'n') ADVANCE(3691); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4849: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3779); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'n') ADVANCE(3791); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4850: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3777); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'n') ADVANCE(4966); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4851: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3837); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'n') ADVANCE(4899); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4852: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3835); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'n') ADVANCE(4797); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4853: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4939); + if (lookahead == 'n') ADVANCE(4931); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4854: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4897); + if (lookahead == 'n') ADVANCE(4925); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4855: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4782); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + if (lookahead == 'n') ADVANCE(4795); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4856: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4879); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + if (lookahead == 'o') ADVANCE(4753); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4857: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4767); + if (lookahead == 'o') ADVANCE(4927); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4858: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4707); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'o') ADVANCE(4870); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4859: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4836); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + if (lookahead == 'o') ADVANCE(4922); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4860: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4825); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + if (lookahead == 'o') ADVANCE(4794); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4861: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4862); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'o') ADVANCE(4878); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4862: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4733); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'o') ADVANCE(4875); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4863: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4709); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'o') ADVANCE(4912); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4864: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4820); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + if (lookahead == 'o') ADVANCE(4762); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4865: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4892); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'o') ADVANCE(4881); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4866: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4737); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'o') ADVANCE(4877); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4867: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4868); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'o') ADVANCE(4757); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4868: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4742); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'o') ADVANCE(4929); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4869: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4866); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'o') ADVANCE(4930); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4870: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4939); + if (lookahead == 'p') ADVANCE(4966); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4871: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4775); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'p') ADVANCE(4865); + if (lookahead == 't') ADVANCE(4813); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4872: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4877); - if (lookahead == 't') ADVANCE(4802); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + if (lookahead == 'r') ADVANCE(4921); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4873: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4714); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'r') ADVANCE(4722); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4874: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4776); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + if (lookahead == 'r') ADVANCE(3789); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4875: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4891); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + if (lookahead == 'r') ADVANCE(3787); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4876: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4718); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'r') ADVANCE(3851); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4877: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4939); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + if (lookahead == 'r') ADVANCE(3849); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4878: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4766); + if (lookahead == 'r') ADVANCE(4966); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4879: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4716); + if (lookahead == 'r') ADVANCE(4924); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4880: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4764); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'r') ADVANCE(4807); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4881: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4700); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'r') ADVANCE(4906); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4882: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4713); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'r') ADVANCE(4792); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4883: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4796); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'r') ADVANCE(4730); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4884: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4732); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'r') ADVANCE(4861); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4885: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4715); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'r') ADVANCE(4850); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4886: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4797); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'r') ADVANCE(4887); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4887: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4708); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'r') ADVANCE(4756); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4888: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4710); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'r') ADVANCE(4732); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4889: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4741); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'r') ADVANCE(4845); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4890: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4736); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'r') ADVANCE(4919); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4891: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4784); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + if (lookahead == 'r') ADVANCE(4760); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4892: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4876); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'r') ADVANCE(4893); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4893: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4818); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4927); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'r') ADVANCE(4765); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4894: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4774); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'r') ADVANCE(4891); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4895: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4884); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 's') ADVANCE(3793); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4896: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4819); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4929); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + if (lookahead == 's') ADVANCE(3795); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4897: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4776); - if (lookahead == 'y') ADVANCE(4939); + if (lookahead == 's') ADVANCE(4966); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4898: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4776); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + if (lookahead == 's') ADVANCE(4800); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4899: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4821); + if (lookahead == 's') ADVANCE(4904); + if (lookahead == 't') ADVANCE(4828); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4900: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4857); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + if (lookahead == 's') ADVANCE(4738); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4901: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4860); + if (lookahead == 's') ADVANCE(4801); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4902: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4889); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 's') ADVANCE(4918); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4903: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4890); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 's') ADVANCE(4741); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4904: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'v') ADVANCE(4939); + if (lookahead == 't') ADVANCE(4966); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4905: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'v') ADVANCE(4786); + if (lookahead == 't') ADVANCE(4791); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4906: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'w') ADVANCE(4807); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 't') ADVANCE(4739); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4907: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'w') ADVANCE(4808); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 't') ADVANCE(4723); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4908: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'y') ADVANCE(4939); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + if (lookahead == 't') ADVANCE(4736); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4909: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(3569); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 't') ADVANCE(4821); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4910: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(3570); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 't') ADVANCE(4789); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4911: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(3574); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 't') ADVANCE(4755); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4912: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(3567); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 't') ADVANCE(4737); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4913: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(3573); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 't') ADVANCE(4822); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4914: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(3568); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 't') ADVANCE(4731); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4915: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(3571); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 't') ADVANCE(4733); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4916: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(3572); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 't') ADVANCE(4764); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4917: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4723); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4958); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4917); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 't') ADVANCE(4759); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4918: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4927); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 't') ADVANCE(4809); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4919: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4929); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + if (lookahead == 't') ADVANCE(4903); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4920: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4925); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'u') ADVANCE(4843); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4954); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4921: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4926); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + if (lookahead == 'u') ADVANCE(4799); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4922: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4926); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'u') ADVANCE(4911); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4923: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4934); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'u') ADVANCE(4844); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4956); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4924: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4935); + if (lookahead == 'u') ADVANCE(4801); + if (lookahead == 'y') ADVANCE(4966); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4925: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4932); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'u') ADVANCE(4801); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4926: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4933); + if (lookahead == 'u') ADVANCE(4846); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4927: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'u') ADVANCE(4882); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4928: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4920); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'u') ADVANCE(4885); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4929: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4939); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + if (lookahead == 'u') ADVANCE(4916); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4930: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4921); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + if (lookahead == 'u') ADVANCE(4917); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4931: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4922); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'v') ADVANCE(4966); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4932: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4923); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'v') ADVANCE(4811); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4933: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4924); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + if (lookahead == 'w') ADVANCE(4832); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4934: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4936); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'w') ADVANCE(4833); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4935: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4937); + if (lookahead == 'y') ADVANCE(4966); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4936: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '|') ADVANCE(3583); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4937: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4939); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + if (lookahead == '|') ADVANCE(3584); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4938: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(4938); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '|') ADVANCE(3588); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4939: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4939); + if (lookahead == '|') ADVANCE(3581); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4940: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4724); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '|') ADVANCE(3587); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4941: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4944); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '|') ADVANCE(3582); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4942: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4942); + if (lookahead == '|') ADVANCE(3585); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4943: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4943); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '|') ADVANCE(3586); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4944: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4746); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(4985); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4944); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4945: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4717); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4954); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4946: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4744); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4956); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4947: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4726); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4952); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4948: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4722); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4953); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4949: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4917); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4953); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4950: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4724); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4961); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4951: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4945); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4962); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4952: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4946); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4959); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4953: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4947); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4960); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4954: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4948); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4955: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4725); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4947); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4956: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4955); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4966); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4957: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4957); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4948); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4958: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4949); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4959: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '$') ADVANCE(3942); - if (lookahead == '(') ADVANCE(3838); - if (lookahead == '[') ADVANCE(4091); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4950); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4960: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(5002); - if (lookahead == '>') ADVANCE(4255); - if (lookahead == 'r') ADVANCE(5005); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4951); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4961: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(4997); - if (lookahead == '>') ADVANCE(4260); - if (lookahead == 'u') ADVANCE(5009); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4963); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4962: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(4991); - if (lookahead == '-') ADVANCE(4993); - if (lookahead == '>') ADVANCE(4255); - if (lookahead == '_') ADVANCE(4993); - if (lookahead == 'r') ADVANCE(5005); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4964); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4963: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(5003); - if (lookahead == '>') ADVANCE(4245); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4964: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(4998); - if (lookahead == '>') ADVANCE(4250); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(4966); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4965: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '-') ADVANCE(5037); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(4965); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4966: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(3721); - if (lookahead == '_') ADVANCE(4983); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3989); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4966); END_STATE(); case 4967: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(3721); - if (lookahead == '_') ADVANCE(4988); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3912); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4747); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4968: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(3842); - if (lookahead == '_') ADVANCE(4983); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3989); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4971); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4969: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(4982); - if (lookahead == '_') ADVANCE(4970); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5022); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3982); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '@')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4969); END_STATE(); case 4970: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(4982); - if (lookahead == '_') ADVANCE(4970); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3982); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(4970); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4971: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(3720); - if (lookahead == '_') ADVANCE(4983); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3989); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4972: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(4987); - if (lookahead == '_') ADVANCE(4973); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5022); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3904); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4740); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4973: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(4987); - if (lookahead == '_') ADVANCE(4973); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3904); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4767); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4974: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '2') ADVANCE(5028); - if (lookahead == '0' || - lookahead == '1') ADVANCE(5036); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4749); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4975: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(5039); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4745); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4976: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(5041); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4944); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4977: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '>') ADVANCE(4280); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4747); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4978: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '>') ADVANCE(4275); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4972); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4979: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '>') ADVANCE(4265); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4973); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4980: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '>') ADVANCE(4270); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4974); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4981: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4981); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4975); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4982: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4982); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3993); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4748); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4983: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4983); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3989); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4982); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4984: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4985); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4985); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4985: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4985); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); case 4986: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4986); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == '$') ADVANCE(3956); + if (lookahead == '(') ADVANCE(3852); + if (lookahead == '[') ADVANCE(4105); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 4987: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4987); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3917); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == '+') ADVANCE(5029); + if (lookahead == '>') ADVANCE(4273); + if (lookahead == 'r') ADVANCE(5032); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 4988: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4988); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3912); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == '+') ADVANCE(5024); + if (lookahead == '>') ADVANCE(4278); + if (lookahead == 'u') ADVANCE(5036); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 4989: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4990); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4990); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3906); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == '+') ADVANCE(5018); + if (lookahead == '-') ADVANCE(5020); + if (lookahead == '>') ADVANCE(4273); + if (lookahead == '_') ADVANCE(5020); + if (lookahead == 'r') ADVANCE(5032); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 4990: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4990); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3906); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == '+') ADVANCE(5030); + if (lookahead == '>') ADVANCE(4263); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 4991: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4993); - if (lookahead == 'o') ADVANCE(4977); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == '+') ADVANCE(5025); + if (lookahead == '>') ADVANCE(4268); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 4992: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4993); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4993); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == '-') ADVANCE(5064); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 4993: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4993); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == '.') ADVANCE(3735); + if (lookahead == '_') ADVANCE(5010); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4003); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 4994: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'a') ADVANCE(5000); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == '.') ADVANCE(3735); + if (lookahead == '_') ADVANCE(5015); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3926); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 4995: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(3926); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == '.') ADVANCE(3856); + if (lookahead == '_') ADVANCE(5010); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4003); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 4996: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(3934); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == '.') ADVANCE(5009); + if (lookahead == '_') ADVANCE(4997); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5049); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3996); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 4997: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(4978); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == '.') ADVANCE(5009); + if (lookahead == '_') ADVANCE(4997); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3996); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 4998: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(5006); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == '.') ADVANCE(3734); + if (lookahead == '_') ADVANCE(5010); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4003); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 4999: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(3918); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == '.') ADVANCE(5014); + if (lookahead == '_') ADVANCE(5000); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5049); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3918); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5000: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(5008); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == '.') ADVANCE(5014); + if (lookahead == '_') ADVANCE(5000); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3918); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5001: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(4999); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == '2') ADVANCE(5055); + if (lookahead == '0' || + lookahead == '1') ADVANCE(5063); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5002: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'o') ADVANCE(4977); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == ':') ADVANCE(5066); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5003: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'o') ADVANCE(5013); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == ':') ADVANCE(5068); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5004: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(5012); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == '>') ADVANCE(4298); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5005: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(4963); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == '>') ADVANCE(4293); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5006: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(5007); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == '>') ADVANCE(4283); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5007: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(4980); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == '>') ADVANCE(4288); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5008: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 's') ADVANCE(4996); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == '_') ADVANCE(5008); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3995); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5009: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 't') ADVANCE(4964); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == '_') ADVANCE(5009); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4007); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5010: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 't') ADVANCE(4979); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == '_') ADVANCE(5010); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4003); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5011: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(5001); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(5019); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == '_') ADVANCE(5012); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5012); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5012: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(4995); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == '_') ADVANCE(5012); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5013: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(5010); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == '_') ADVANCE(5013); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5014: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(5019); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == '_') ADVANCE(5014); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3931); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5015: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4002); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == '_') ADVANCE(5015); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3926); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5016: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4011); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == '_') ADVANCE(5017); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5017); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3920); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5017: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5024); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == '_') ADVANCE(5017); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3920); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5018: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5025); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == '_') ADVANCE(5020); + if (lookahead == 'o') ADVANCE(5004); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5019: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4015); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == '_') ADVANCE(5020); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5020); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5020: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5015); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == '_') ADVANCE(5020); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5021: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5017); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == 'a') ADVANCE(5027); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5022: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5016); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == 'e') ADVANCE(3940); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5023: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5018); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == 'e') ADVANCE(3948); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5024: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(5026); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == 'e') ADVANCE(5005); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5025: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(5027); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == 'e') ADVANCE(5033); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5026: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3997); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == 'l') ADVANCE(3932); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5027: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4007); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == 'l') ADVANCE(5035); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5028: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4055); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == 'l') ADVANCE(5026); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5029: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4047); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == 'o') ADVANCE(5004); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5030: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4965); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == 'o') ADVANCE(5040); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5031: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4976); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == 'r') ADVANCE(5039); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5032: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5030); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == 'r') ADVANCE(4990); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5033: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4060); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == 'r') ADVANCE(5034); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5034: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4050); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == 'r') ADVANCE(5007); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5035: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4067); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == 's') ADVANCE(5023); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5036: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4055); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == 't') ADVANCE(4991); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5037: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5033); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == 't') ADVANCE(5006); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5038: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5031); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == 'u') ADVANCE(5028); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(5046); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5039: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5034); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == 'u') ADVANCE(5022); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5040: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4975); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == 'u') ADVANCE(5037); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5041: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5040); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(5046); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5042: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5042); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4016); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5043: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(5099); - if (lookahead == '>') ADVANCE(4255); - if (lookahead == 'I') ADVANCE(5116); - if (lookahead == 'i') ADVANCE(5116); - if (lookahead == 'r') ADVANCE(5103); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4025); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5044: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(5099); - if (lookahead == '>') ADVANCE(4255); - if (lookahead == 'r') ADVANCE(5103); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5051); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5045: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(5092); - if (lookahead == '>') ADVANCE(4260); - if (lookahead == 'u') ADVANCE(5109); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5052); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5046: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - ADVANCE_MAP( - '+', 5079, - '-', 5081, - '>', 4255, - 'I', 5116, - '_', 5081, - 'i', 5116, - 'r', 5103, - 'B', 4024, - 'b', 4024, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4029); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5047: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(5079); - if (lookahead == '-') ADVANCE(5081); - if (lookahead == '>') ADVANCE(4255); - if (lookahead == '_') ADVANCE(5081); - if (lookahead == 'r') ADVANCE(5103); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5042); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5048: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(5100); - if (lookahead == '>') ADVANCE(4245); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5044); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5049: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(5093); - if (lookahead == '>') ADVANCE(4250); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5043); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5050: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '-') ADVANCE(5135); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5045); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5051: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3721); - if (lookahead == '_') ADVANCE(5074); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3911); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(5053); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5052: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3721); - if (lookahead == '_') ADVANCE(5078); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3992); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(5054); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5053: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3842); - if (lookahead == '_') ADVANCE(5078); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3992); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(4011); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5054: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3842); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(4021); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5055: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(5073); - if (lookahead == '_') ADVANCE(5056); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5124); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3904); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4069); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5056: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(5073); - if (lookahead == '_') ADVANCE(5056); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3904); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4061); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5057: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(5077); - if (lookahead == '_') ADVANCE(5058); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5124); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3982); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4992); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5058: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(5077); - if (lookahead == '_') ADVANCE(5058); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3982); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5003); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5059: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '2') ADVANCE(5130); - if (lookahead == '0' || - lookahead == '1') ADVANCE(5139); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5057); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5060: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == ':') ADVANCE(5140); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4074); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5061: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == ':') ADVANCE(5143); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4064); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5062: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '>') ADVANCE(4280); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4081); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5063: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '>') ADVANCE(4275); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4069); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5064: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '>') ADVANCE(4265); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5060); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5065: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '>') ADVANCE(4270); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5058); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5066: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(5116); - if (lookahead == '_') ADVANCE(5081); - if (lookahead == 'i') ADVANCE(5116); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5081); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5061); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5067: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(5116); - if (lookahead == '_') ADVANCE(5081); - if (lookahead == 'i') ADVANCE(5087); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5081); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5002); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5068: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(5116); - if (lookahead == 'i') ADVANCE(5116); - if (lookahead == 'r') ADVANCE(5112); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5067); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5069: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(5116); - if (lookahead == 'i') ADVANCE(5116); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5069); END_STATE(); case 5070: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(5116); - if (lookahead == 'i') ADVANCE(5087); + if (lookahead == '+') ADVANCE(5126); + if (lookahead == '>') ADVANCE(4273); + if (lookahead == 'I') ADVANCE(5143); + if (lookahead == 'i') ADVANCE(5143); + if (lookahead == 'r') ADVANCE(5130); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5071: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(5116); - if (lookahead == 'i') ADVANCE(5098); - if (lookahead == 's') ADVANCE(4031); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == '+') ADVANCE(5126); + if (lookahead == '>') ADVANCE(4273); + if (lookahead == 'r') ADVANCE(5130); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5072: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(5072); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == '+') ADVANCE(5119); + if (lookahead == '>') ADVANCE(4278); + if (lookahead == 'u') ADVANCE(5136); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5073: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(5073); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3917); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + ADVANCE_MAP( + '+', 5107, + '-', 5109, + '>', 4273, + 'I', 5143, + '_', 5109, + 'i', 5143, + 'r', 5130, + 'B', 4038, + 'b', 4038, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5074: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(5074); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3911); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == '+') ADVANCE(5107); + if (lookahead == '-') ADVANCE(5109); + if (lookahead == '>') ADVANCE(4273); + if (lookahead == '_') ADVANCE(5109); + if (lookahead == 'r') ADVANCE(5130); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5075: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(5076); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5076); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3906); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == '+') ADVANCE(5127); + if (lookahead == '>') ADVANCE(4263); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5076: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(5076); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3906); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == '+') ADVANCE(5120); + if (lookahead == '>') ADVANCE(4268); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5077: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(5077); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3993); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == '-') ADVANCE(5162); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5078: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(5078); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3992); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == '.') ADVANCE(3735); + if (lookahead == '_') ADVANCE(5101); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3925); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5079: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(5081); - if (lookahead == 'o') ADVANCE(5062); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == '.') ADVANCE(3735); + if (lookahead == '_') ADVANCE(5106); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4006); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5080: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(5081); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5081); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == '.') ADVANCE(3856); + if (lookahead == '_') ADVANCE(5106); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4006); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5081: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(5081); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == '.') ADVANCE(3856); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5082: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '.') ADVANCE(5100); if (lookahead == '_') ADVANCE(5083); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5083); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5151); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3918); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5083: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '.') ADVANCE(5100); if (lookahead == '_') ADVANCE(5083); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3918); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5084: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(5084); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == '.') ADVANCE(5105); + if (lookahead == '_') ADVANCE(5085); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5151); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3996); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5085: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'a') ADVANCE(5096); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == '.') ADVANCE(5105); + if (lookahead == '_') ADVANCE(5085); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3996); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5086: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'a') ADVANCE(5114); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == '2') ADVANCE(5157); + if (lookahead == '0' || + lookahead == '1') ADVANCE(5166); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5087: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == ':') ADVANCE(5167); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5088: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'c') ADVANCE(4031); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == ':') ADVANCE(5170); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5089: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'e') ADVANCE(3926); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == '>') ADVANCE(4298); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5090: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'e') ADVANCE(3934); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == '>') ADVANCE(4293); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5091: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'e') ADVANCE(5088); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == '>') ADVANCE(4283); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5092: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'e') ADVANCE(5063); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == '>') ADVANCE(4288); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5093: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'e') ADVANCE(5104); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == 'I') ADVANCE(5143); + if (lookahead == '_') ADVANCE(5109); + if (lookahead == 'i') ADVANCE(5143); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5109); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4038); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5094: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'k') ADVANCE(4031); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == 'I') ADVANCE(5143); + if (lookahead == '_') ADVANCE(5109); + if (lookahead == 'i') ADVANCE(5114); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5109); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4038); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5095: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'l') ADVANCE(3918); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == 'I') ADVANCE(5143); + if (lookahead == 'i') ADVANCE(5143); + if (lookahead == 'r') ADVANCE(5139); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5096: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'l') ADVANCE(5108); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == 'I') ADVANCE(5143); + if (lookahead == 'i') ADVANCE(5143); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5097: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'l') ADVANCE(5095); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == 'I') ADVANCE(5143); + if (lookahead == 'i') ADVANCE(5114); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5098: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'n') ADVANCE(4031); + if (lookahead == 'I') ADVANCE(5143); + if (lookahead == 'i') ADVANCE(5125); + if (lookahead == 's') ADVANCE(4045); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5099: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'o') ADVANCE(5062); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == '_') ADVANCE(5099); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5100: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'o') ADVANCE(5113); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == '_') ADVANCE(5100); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3931); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5101: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(4031); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == '_') ADVANCE(5101); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3925); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5102: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(5112); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == '_') ADVANCE(5103); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5103); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3920); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5103: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(5048); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == '_') ADVANCE(5103); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3920); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5104: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(5105); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == '_') ADVANCE(5104); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3995); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5105: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(5065); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == '_') ADVANCE(5105); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4007); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5106: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 's') ADVANCE(4031); - if (lookahead == 'u') ADVANCE(5097); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(5121); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == '_') ADVANCE(5106); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4006); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5107: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 's') ADVANCE(4031); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == '_') ADVANCE(5109); + if (lookahead == 'o') ADVANCE(5089); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5108: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 's') ADVANCE(5090); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == '_') ADVANCE(5109); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5109); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5109: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 't') ADVANCE(5049); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == '_') ADVANCE(5109); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5110: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 't') ADVANCE(5064); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == '_') ADVANCE(5111); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5111); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5111: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'u') ADVANCE(5097); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(5121); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == '_') ADVANCE(5111); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5112: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'u') ADVANCE(5089); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == 'a') ADVANCE(5123); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5113: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'u') ADVANCE(5110); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == 'a') ADVANCE(5141); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5114: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'y') ADVANCE(4031); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5115: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(5121); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == 'c') ADVANCE(4045); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5116: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == 'e') ADVANCE(3940); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5117: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4014); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == 'e') ADVANCE(3948); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5118: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4005); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == 'e') ADVANCE(5115); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5119: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5126); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == 'e') ADVANCE(5090); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5120: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5127); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == 'e') ADVANCE(5131); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5121: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4015); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == 'k') ADVANCE(4045); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5122: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5118); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == 'l') ADVANCE(3932); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5123: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5119); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == 'l') ADVANCE(5135); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5124: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5117); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == 'l') ADVANCE(5122); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5125: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5120); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == 'n') ADVANCE(4045); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5126: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(5128); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == 'o') ADVANCE(5089); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5127: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(5129); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == 'o') ADVANCE(5140); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5128: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3997); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == 'r') ADVANCE(4045); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5129: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4007); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == 'r') ADVANCE(5139); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5130: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4057); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == 'r') ADVANCE(5075); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5131: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4047); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == 'r') ADVANCE(5132); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5132: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5050); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == 'r') ADVANCE(5092); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5133: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5061); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == 's') ADVANCE(4045); + if (lookahead == 'u') ADVANCE(5124); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(5148); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5134: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5132); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == 's') ADVANCE(4045); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5135: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5141); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == 's') ADVANCE(5117); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5136: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5133); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == 't') ADVANCE(5076); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5137: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4052); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == 't') ADVANCE(5091); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5138: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4069); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == 'u') ADVANCE(5124); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(5148); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5139: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4057); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == 'u') ADVANCE(5116); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5140: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5137); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == 'u') ADVANCE(5137); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5141: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4063); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == 'y') ADVANCE(4045); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5142: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5060); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(5148); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5143: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5142); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5144: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5144); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4028); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5145: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '$') ADVANCE(3606); - if (lookahead == '(') ADVANCE(3802); - if (lookahead == '.') ADVANCE(5148); - if (lookahead == '_') ADVANCE(5149); - if (lookahead == '\t' || - lookahead == ' ') SKIP(287); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5147); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5153); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4019); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5146: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '$') ADVANCE(3724); - if (lookahead == '(') ADVANCE(3802); - if (lookahead == '.') ADVANCE(5148); - if (lookahead == ']') ADVANCE(3602); - if (lookahead == '_') ADVANCE(5149); - if (lookahead == '\t' || - lookahead == ' ') SKIP(285); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5147); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5153); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5153); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5147: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '.') ADVANCE(5150); - if (lookahead == '_') ADVANCE(5147); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3904); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5153); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5154); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5148: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(5148); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3914); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5153); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4029); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5149: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(5149); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5153); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5145); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5150: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(5150); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3917); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5153); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5146); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5151: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(5152); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5152); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3906); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5153); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5144); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5152: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(5152); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3906); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5153); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5147); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5153: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5153); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(5155); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5154: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '+') ADVANCE(5189); - if (lookahead == '>') ADVANCE(4259); - if (lookahead == 'r') ADVANCE(5192); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(5156); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5155: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '+') ADVANCE(5184); - if (lookahead == '>') ADVANCE(4264); - if (lookahead == 'u') ADVANCE(5196); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(4011); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5156: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '+') ADVANCE(5190); - if (lookahead == '>') ADVANCE(4249); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(4021); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5157: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '+') ADVANCE(5185); - if (lookahead == '>') ADVANCE(4254); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4071); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5158: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '-') ADVANCE(5222); - if (lookahead == '_') ADVANCE(5175); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5175); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4061); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5159: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '-') ADVANCE(5223); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5077); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5160: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(5175); - if (lookahead == '_') ADVANCE(5161); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5207); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5175); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5088); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5161: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(5175); - if (lookahead == '_') ADVANCE(5161); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5175); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5159); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5162: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(3723); - if (lookahead == '_') ADVANCE(5180); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5179); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5168); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5163: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(5220); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5164); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(5229); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5164: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '2') ADVANCE(5212); - if (lookahead == '0' || - lookahead == '1') ADVANCE(5221); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4066); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5165: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == ':') ADVANCE(5213); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5215); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4083); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5166: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == ':') ADVANCE(5225); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4071); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5167: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == ':') ADVANCE(5227); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5164); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5168: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '>') ADVANCE(4284); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5169: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '>') ADVANCE(4279); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5087); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5170: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '>') ADVANCE(4269); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5169); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5171: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '>') ADVANCE(4274); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5172: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'T') ADVANCE(5224); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '$') ADVANCE(3620); + if (lookahead == '(') ADVANCE(3816); + if (lookahead == '.') ADVANCE(5175); + if (lookahead == '_') ADVANCE(5176); + if (lookahead == '\t' || + lookahead == ' ') SKIP(287); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5174); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5180); END_STATE(); case 5173: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(5175); - if (lookahead == 'b') ADVANCE(4023); - if (lookahead == 'o') ADVANCE(4039); - if (lookahead == 'x') ADVANCE(4044); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5177); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '$') ADVANCE(3738); + if (lookahead == '(') ADVANCE(3816); + if (lookahead == '.') ADVANCE(5175); + if (lookahead == ']') ADVANCE(3616); + if (lookahead == '_') ADVANCE(5176); + if (lookahead == '\t' || + lookahead == ' ') SKIP(285); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5174); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5180); END_STATE(); case 5174: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(5175); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5175); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5175); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if (lookahead == '.') ADVANCE(5177); + if (lookahead == '_') ADVANCE(5174); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3918); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5180); END_STATE(); case 5175: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); if (lookahead == '_') ADVANCE(5175); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5175); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3928); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5180); END_STATE(); case 5176: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(5175); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5158); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if (lookahead == '_') ADVANCE(5176); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5180); END_STATE(); case 5177: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(5175); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5176); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if (lookahead == '_') ADVANCE(5177); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3931); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5180); END_STATE(); case 5178: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(5175); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5177); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if (lookahead == '_') ADVANCE(5179); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5179); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3920); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5180); END_STATE(); case 5179: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); if (lookahead == '_') ADVANCE(5179); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(5174); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5179); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3920); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5180); END_STATE(); case 5180: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(5180); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5179); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5180); END_STATE(); case 5181: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'a') ADVANCE(5186); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if (lookahead == '+') ADVANCE(5216); + if (lookahead == '>') ADVANCE(4277); + if (lookahead == 'r') ADVANCE(5219); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5182: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'e') ADVANCE(3932); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if (lookahead == '+') ADVANCE(5211); + if (lookahead == '>') ADVANCE(4282); + if (lookahead == 'u') ADVANCE(5223); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5183: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'e') ADVANCE(3940); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if (lookahead == '+') ADVANCE(5217); + if (lookahead == '>') ADVANCE(4267); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5184: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'e') ADVANCE(5169); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if (lookahead == '+') ADVANCE(5212); + if (lookahead == '>') ADVANCE(4272); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5185: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'e') ADVANCE(5193); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if (lookahead == '-') ADVANCE(5249); + if (lookahead == '_') ADVANCE(5202); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5202); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5186: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'l') ADVANCE(5195); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if (lookahead == '-') ADVANCE(5250); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5187: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'l') ADVANCE(3923); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if (lookahead == '.') ADVANCE(5202); + if (lookahead == '_') ADVANCE(5188); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5234); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5202); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5188: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'l') ADVANCE(5187); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if (lookahead == '.') ADVANCE(5202); + if (lookahead == '_') ADVANCE(5188); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5202); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5189: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'o') ADVANCE(5168); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if (lookahead == '.') ADVANCE(3737); + if (lookahead == '_') ADVANCE(5207); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5206); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5190: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'o') ADVANCE(5200); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if (lookahead == '.') ADVANCE(5247); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5191); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(5256); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5191: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'r') ADVANCE(5199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if (lookahead == '2') ADVANCE(5239); + if (lookahead == '0' || + lookahead == '1') ADVANCE(5248); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5192: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'r') ADVANCE(5156); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if (lookahead == ':') ADVANCE(5240); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5242); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5193: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'r') ADVANCE(5194); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if (lookahead == ':') ADVANCE(5252); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5194: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'r') ADVANCE(5171); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if (lookahead == ':') ADVANCE(5254); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5195: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 's') ADVANCE(5183); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if (lookahead == '>') ADVANCE(4302); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5196: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 't') ADVANCE(5157); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if (lookahead == '>') ADVANCE(4297); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5197: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 't') ADVANCE(5170); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if (lookahead == '>') ADVANCE(4287); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5198: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'u') ADVANCE(5188); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(5206); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if (lookahead == '>') ADVANCE(4292); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5199: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'u') ADVANCE(5182); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if (lookahead == 'T') ADVANCE(5251); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5200: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'u') ADVANCE(5197); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if (lookahead == '_') ADVANCE(5202); + if (lookahead == 'b') ADVANCE(4037); + if (lookahead == 'o') ADVANCE(4053); + if (lookahead == 'x') ADVANCE(4058); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5204); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5201: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '_') ADVANCE(5202); if (lookahead == '+' || - lookahead == '-') ADVANCE(5164); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(5229); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5201); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + lookahead == '-') ADVANCE(5202); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5202); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5202: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(5206); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if (lookahead == '_') ADVANCE(5202); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5202); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5203: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(5205); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if (lookahead == '_') ADVANCE(5202); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5185); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5204: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5209); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if (lookahead == '_') ADVANCE(5202); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5203); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5205: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5208); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if (lookahead == '_') ADVANCE(5202); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5204); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5206: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5229); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if (lookahead == '_') ADVANCE(5206); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(5201); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5206); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5207: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5203); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if (lookahead == '_') ADVANCE(5207); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5206); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5208: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5204); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if (lookahead == 'a') ADVANCE(5213); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5209: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(5210); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if (lookahead == 'e') ADVANCE(3946); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5210: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(5229); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if (lookahead == 'e') ADVANCE(3954); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5211: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(5211); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if (lookahead == 'e') ADVANCE(5196); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5212: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(5165); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if (lookahead == 'e') ADVANCE(5220); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5213: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5215); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if (lookahead == 'l') ADVANCE(5222); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5214: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(5214); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if (lookahead == 'l') ADVANCE(3937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5215: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5229); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if (lookahead == 'l') ADVANCE(5214); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5216: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if (lookahead == 'o') ADVANCE(5195); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5217: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5172); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if (lookahead == 'o') ADVANCE(5227); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5218: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5167); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if (lookahead == 'r') ADVANCE(5226); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5219: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5163); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if (lookahead == 'r') ADVANCE(5183); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5220: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5201); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if (lookahead == 'r') ADVANCE(5221); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5221: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5165); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if (lookahead == 'r') ADVANCE(5198); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5222: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5216); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if (lookahead == 's') ADVANCE(5210); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5223: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5217); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if (lookahead == 't') ADVANCE(5184); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5224: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5218); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if (lookahead == 't') ADVANCE(5197); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5225: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5219); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if (lookahead == 'u') ADVANCE(5215); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(5233); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5226: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5166); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if (lookahead == 'u') ADVANCE(5209); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5227: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5226); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if (lookahead == 'u') ADVANCE(5224); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5228: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(5228); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5191); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(5256); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5228); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5229: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(5233); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5230: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '+') ADVANCE(5257); - if (lookahead == '>') ADVANCE(4255); - if (lookahead == 'r') ADVANCE(5260); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(5232); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5231: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '+') ADVANCE(5252); - if (lookahead == '>') ADVANCE(4260); - if (lookahead == 'u') ADVANCE(5264); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5236); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5232: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '+') ADVANCE(5258); - if (lookahead == '>') ADVANCE(4245); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5235); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5233: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '+') ADVANCE(5253); - if (lookahead == '>') ADVANCE(4250); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5256); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5234: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '-') ADVANCE(5287); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5230); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5235: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(5269); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5231); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5236: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(3721); - if (lookahead == '_') ADVANCE(5244); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3985); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(5237); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5237: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(5248); - if (lookahead == '_') ADVANCE(5238); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5278); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3982); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(5256); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5238: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(5248); - if (lookahead == '_') ADVANCE(5238); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3982); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(5238); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5239: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == ':') ADVANCE(1611); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5290); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(5192); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5240: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '>') ADVANCE(4280); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5242); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5241: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '>') ADVANCE(4275); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(5241); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5242: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '>') ADVANCE(4265); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5256); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5243: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '>') ADVANCE(4270); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5186); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5244: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(5244); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3985); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5199); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5245: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(5246); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5246); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5194); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5246: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(5246); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5190); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5247: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(5247); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5228); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5248: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(5248); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3993); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5192); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5249: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'a') ADVANCE(5255); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5243); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5250: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(3926); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5244); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5251: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(3934); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5245); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5252: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(5241); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5246); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5253: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(5261); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5193); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5254: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(3918); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5253); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5255: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(5263); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(5255); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5256: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(5254); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); case 5257: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'o') ADVANCE(5240); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + if (lookahead == '+') ADVANCE(5284); + if (lookahead == '>') ADVANCE(4273); + if (lookahead == 'r') ADVANCE(5287); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5258: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'o') ADVANCE(5268); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + if (lookahead == '+') ADVANCE(5279); + if (lookahead == '>') ADVANCE(4278); + if (lookahead == 'u') ADVANCE(5291); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5259: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(5267); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + if (lookahead == '+') ADVANCE(5285); + if (lookahead == '>') ADVANCE(4263); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5260: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(5232); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + if (lookahead == '+') ADVANCE(5280); + if (lookahead == '>') ADVANCE(4268); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5261: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(5262); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + if (lookahead == '-') ADVANCE(5314); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5262: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(5243); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + if (lookahead == '.') ADVANCE(5296); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5263: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 's') ADVANCE(5251); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + if (lookahead == '.') ADVANCE(3735); + if (lookahead == '_') ADVANCE(5271); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3999); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5264: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 't') ADVANCE(5233); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + if (lookahead == '.') ADVANCE(5275); + if (lookahead == '_') ADVANCE(5265); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5305); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3996); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5265: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 't') ADVANCE(5242); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + if (lookahead == '.') ADVANCE(5275); + if (lookahead == '_') ADVANCE(5265); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3996); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5266: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(5256); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(5275); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + if (lookahead == ':') ADVANCE(1615); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5267: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(5250); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + if (lookahead == '>') ADVANCE(4298); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5268: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(5265); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + if (lookahead == '>') ADVANCE(4293); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5269: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '{') ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + if (lookahead == '>') ADVANCE(4283); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5270: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(5275); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + if (lookahead == '>') ADVANCE(4288); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5271: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4012); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + if (lookahead == '_') ADVANCE(5271); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3999); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5272: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4003); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + if (lookahead == '_') ADVANCE(5273); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5273); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5273: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5280); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + if (lookahead == '_') ADVANCE(5273); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5274: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5281); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + if (lookahead == '_') ADVANCE(5274); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3995); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5275: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4015); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + if (lookahead == '_') ADVANCE(5275); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4007); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5276: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5272); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + if (lookahead == 'a') ADVANCE(5282); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5277: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5273); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + if (lookahead == 'e') ADVANCE(3940); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5278: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5271); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + if (lookahead == 'e') ADVANCE(3948); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5279: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5274); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + if (lookahead == 'e') ADVANCE(5268); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5280: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(5282); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + if (lookahead == 'e') ADVANCE(5288); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5281: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(5283); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + if (lookahead == 'l') ADVANCE(3932); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5282: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3997); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + if (lookahead == 'l') ADVANCE(5290); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5283: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4007); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + if (lookahead == 'l') ADVANCE(5281); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5284: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5234); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + if (lookahead == 'o') ADVANCE(5267); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5285: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5239); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + if (lookahead == 'o') ADVANCE(5295); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5286: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5284); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + if (lookahead == 'r') ADVANCE(5294); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5287: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5289); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + if (lookahead == 'r') ADVANCE(5259); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5288: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5285); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + if (lookahead == 'r') ADVANCE(5289); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5289: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4061); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + if (lookahead == 'r') ADVANCE(5270); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5290: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5290); + if (lookahead == 's') ADVANCE(5278); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5291: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(5324); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 't') ADVANCE(5260); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5292: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(3842); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 't') ADVANCE(5269); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5293: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(3627); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'u') ADVANCE(5283); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(5302); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5294: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(5293); - if (lookahead == '_') ADVANCE(5309); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3913); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'u') ADVANCE(5277); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5295: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(5293); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'u') ADVANCE(5292); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5296: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(5307); - if (lookahead == '_') ADVANCE(5296); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3904); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '{') ADVANCE(4106); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5297: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(3841); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(5302); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5298: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(5308); - if (lookahead == '_') ADVANCE(5298); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3982); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4026); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5299: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I') ADVANCE(5325); - if (lookahead == '_') ADVANCE(5313); - if (lookahead == 'i') ADVANCE(5325); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5313); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5300: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I') ADVANCE(5325); - if (lookahead == '_') ADVANCE(5313); - if (lookahead == 'i') ADVANCE(5316); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5313); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5307); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5301: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I') ADVANCE(5325); - if (lookahead == 'i') ADVANCE(5325); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5308); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5302: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I') ADVANCE(5325); - if (lookahead == 'i') ADVANCE(5316); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4029); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5303: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I') ADVANCE(5325); - if (lookahead == 'i') ADVANCE(5320); - if (lookahead == 's') ADVANCE(4031); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5299); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5304: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(5304); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3983); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5300); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5305: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(5306); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5306); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5298); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5306: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(5306); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5301); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5307: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(5307); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3917); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(5309); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5308: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(5308); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3993); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(5310); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5309: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(5309); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3913); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(4011); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5310: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(5311); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5311); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3906); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(4021); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5311: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(5311); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3906); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5261); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5312: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(5313); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5313); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5266); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5313: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(5313); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5311); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5314: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(5314); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5316); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5315: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'a') ADVANCE(5323); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5312); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5316: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4075); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5317: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'c') ADVANCE(4031); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5318: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'e') ADVANCE(5317); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); + if (lookahead == '.') ADVANCE(5351); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5319: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'k') ADVANCE(4031); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); + if (lookahead == '.') ADVANCE(3856); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5320: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'n') ADVANCE(4031); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); + if (lookahead == '.') ADVANCE(3641); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5321: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'r') ADVANCE(4031); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); + if (lookahead == '.') ADVANCE(5320); + if (lookahead == '_') ADVANCE(5336); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3927); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5322: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 's') ADVANCE(4031); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); + if (lookahead == '.') ADVANCE(5320); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5323: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'y') ADVANCE(4031); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); + if (lookahead == '.') ADVANCE(5334); + if (lookahead == '_') ADVANCE(5323); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3918); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5324: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '{') ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); + if (lookahead == '.') ADVANCE(3855); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5325: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4024); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); + if (lookahead == '.') ADVANCE(5335); + if (lookahead == '_') ADVANCE(5325); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3996); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5326: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4008); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); + if (lookahead == 'I') ADVANCE(5352); + if (lookahead == '_') ADVANCE(5340); + if (lookahead == 'i') ADVANCE(5352); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5340); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4038); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5327: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5326); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); + if (lookahead == 'I') ADVANCE(5352); + if (lookahead == '_') ADVANCE(5340); + if (lookahead == 'i') ADVANCE(5343); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5340); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4038); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5328: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); + if (lookahead == 'I') ADVANCE(5352); + if (lookahead == 'i') ADVANCE(5352); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5329: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '#') ADVANCE(5521); - if (lookahead == '$') ADVANCE(3606); - if (lookahead == '(') ADVANCE(3802); - if (lookahead == '.') ADVANCE(5331); - if (lookahead == '_') ADVANCE(5332); - if (lookahead == '\t' || - lookahead == ' ') SKIP(287); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5330); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(5336); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'I') ADVANCE(5352); + if (lookahead == 'i') ADVANCE(5343); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5330: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '.') ADVANCE(5333); - if (lookahead == '_') ADVANCE(5330); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3904); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5336); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'I') ADVANCE(5352); + if (lookahead == 'i') ADVANCE(5347); + if (lookahead == 's') ADVANCE(4045); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5331: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); if (lookahead == '_') ADVANCE(5331); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5336); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3997); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5332: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '_') ADVANCE(5332); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5336); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '_') ADVANCE(5333); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5333); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5333: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); if (lookahead == '_') ADVANCE(5333); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3917); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5336); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5334: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '_') ADVANCE(5335); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5335); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3906); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5336); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '_') ADVANCE(5334); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3931); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5335: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); if (lookahead == '_') ADVANCE(5335); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3906); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5336); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4007); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5336: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5336); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '_') ADVANCE(5336); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3927); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5337: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '$') ADVANCE(3943); - if (lookahead == '(') ADVANCE(3838); - if (lookahead == '{') ADVANCE(4092); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(5512); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '_') ADVANCE(5338); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5338); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3920); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5338: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3001); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5338); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '_') ADVANCE(5338); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3920); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5339: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2974); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5339); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '_') ADVANCE(5340); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5340); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5340: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2977); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5340); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '_') ADVANCE(5340); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5341: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3029); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5343); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5346); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '_') ADVANCE(5341); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5342: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3029); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5344); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5346); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'a') ADVANCE(5350); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5343: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3029); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5342); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5346); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5344: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3029); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(5345); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5346); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'c') ADVANCE(4045); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5345: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3029); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(5346); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5346); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'e') ADVANCE(5344); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5346: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3029); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5346); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'k') ADVANCE(4045); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5347: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3069); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5349); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5352); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'n') ADVANCE(4045); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5348: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3069); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5350); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5352); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'r') ADVANCE(4045); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5349: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3069); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5348); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5352); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 's') ADVANCE(4045); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5350: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3069); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(5351); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5352); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'y') ADVANCE(4045); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5351: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3069); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(5352); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5352); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '{') ADVANCE(4106); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5352: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3069); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5352); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4038); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5353: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3082); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5353); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4022); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5354: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2891); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5354); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5353); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5355: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2962); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5356: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2917); - if (lookahead == 'e') ADVANCE(5357); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5359); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); + if (lookahead == '#') ADVANCE(5548); + if (lookahead == '$') ADVANCE(3620); + if (lookahead == '(') ADVANCE(3816); + if (lookahead == '.') ADVANCE(5358); + if (lookahead == '_') ADVANCE(5359); + if (lookahead == '\t' || + lookahead == ' ') SKIP(287); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5357); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(5363); END_STATE(); case 5357: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2917); - if (lookahead == 'n') ADVANCE(5358); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5359); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); + if (lookahead == '.') ADVANCE(5360); + if (lookahead == '_') ADVANCE(5357); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3918); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5363); END_STATE(); case 5358: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2917); - if (lookahead == 'v') ADVANCE(1798); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5359); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); + if (lookahead == '_') ADVANCE(5358); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3930); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5363); END_STATE(); case 5359: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2917); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5359); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); + if (lookahead == '_') ADVANCE(5359); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5363); END_STATE(); case 5360: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2920); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5360); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); + if (lookahead == '_') ADVANCE(5360); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3931); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5363); END_STATE(); case 5361: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2983); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5361); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); + if (lookahead == '_') ADVANCE(5362); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5362); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3920); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5363); END_STATE(); case 5362: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2897); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5362); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); + if (lookahead == '_') ADVANCE(5362); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3920); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5363); END_STATE(); case 5363: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3079); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5365); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5368); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5363); END_STATE(); case 5364: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3079); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5366); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5368); + if (lookahead == '$') ADVANCE(3957); + if (lookahead == '(') ADVANCE(3852); + if (lookahead == '{') ADVANCE(4106); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(5539); END_STATE(); case 5365: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3079); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5364); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5368); + if (lookahead == ',') ADVANCE(3009); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5365); END_STATE(); case 5366: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3079); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(5367); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5368); + if (lookahead == ',') ADVANCE(2982); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5366); END_STATE(); case 5367: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3079); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(5368); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5368); + if (lookahead == ',') ADVANCE(2985); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5367); END_STATE(); case 5368: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3079); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5368); + if (lookahead == ',') ADVANCE(3037); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5370); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5373); END_STATE(); case 5369: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2980); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5369); + if (lookahead == ',') ADVANCE(3037); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5371); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5373); END_STATE(); case 5370: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2935); - if (lookahead == 'e') ADVANCE(5371); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); + if (lookahead == ',') ADVANCE(3037); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5369); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5373); END_STATE(); case 5371: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2935); - if (lookahead == 'n') ADVANCE(5372); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); + if (lookahead == ',') ADVANCE(3037); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(5372); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5373); END_STATE(); case 5372: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2935); - if (lookahead == 'v') ADVANCE(3756); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); + if (lookahead == ',') ADVANCE(3037); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(5373); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5373); END_STATE(); case 5373: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2935); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); + if (lookahead == ',') ADVANCE(3037); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5373); END_STATE(); case 5374: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2965); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5374); + if (lookahead == ',') ADVANCE(3077); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5376); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5379); END_STATE(); case 5375: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3032); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5375); + if (lookahead == ',') ADVANCE(3077); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5377); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5379); END_STATE(); case 5376: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3054); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5376); + if (lookahead == ',') ADVANCE(3077); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5375); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5379); END_STATE(); case 5377: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3048); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5377); + if (lookahead == ',') ADVANCE(3077); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(5378); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5379); END_STATE(); case 5378: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2894); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5378); + if (lookahead == ',') ADVANCE(3077); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(5379); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5379); END_STATE(); case 5379: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2992); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); + if (lookahead == ',') ADVANCE(3077); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5379); END_STATE(); case 5380: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2986); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); + if (lookahead == ',') ADVANCE(3090); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5380); END_STATE(); case 5381: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2923); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); + if (lookahead == ',') ADVANCE(2899); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5381); END_STATE(); case 5382: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2971); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); + if (lookahead == ',') ADVANCE(2970); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5382); END_STATE(); case 5383: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3051); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5383); + if (lookahead == ',') ADVANCE(2925); + if (lookahead == 'e') ADVANCE(5384); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5386); END_STATE(); case 5384: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2989); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5384); + if (lookahead == ',') ADVANCE(2925); + if (lookahead == 'n') ADVANCE(5385); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5386); END_STATE(); case 5385: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2968); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5385); + if (lookahead == ',') ADVANCE(2925); + if (lookahead == 'v') ADVANCE(1802); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5386); END_STATE(); case 5386: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3044); - if (lookahead == 'e') ADVANCE(5387); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5389); + if (lookahead == ',') ADVANCE(2925); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5386); END_STATE(); case 5387: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3044); - if (lookahead == 'n') ADVANCE(5388); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5389); + if (lookahead == ',') ADVANCE(2928); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5387); END_STATE(); case 5388: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3044); - if (lookahead == 'v') ADVANCE(3580); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5389); + if (lookahead == ',') ADVANCE(2991); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5388); END_STATE(); case 5389: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3044); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); + if (lookahead == ',') ADVANCE(2905); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5389); END_STATE(); case 5390: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2902); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5390); + if (lookahead == ',') ADVANCE(3087); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5392); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5395); END_STATE(); case 5391: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2905); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5391); + if (lookahead == ',') ADVANCE(3087); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5393); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5395); END_STATE(); case 5392: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2998); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5392); + if (lookahead == ',') ADVANCE(3087); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5391); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5395); END_STATE(); case 5393: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2947); - if (lookahead == 'e') ADVANCE(5394); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5396); + if (lookahead == ',') ADVANCE(3087); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(5394); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5395); END_STATE(); case 5394: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2947); - if (lookahead == 'n') ADVANCE(5395); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5396); + if (lookahead == ',') ADVANCE(3087); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(5395); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5395); END_STATE(); case 5395: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2947); - if (lookahead == 'v') ADVANCE(3744); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5396); + if (lookahead == ',') ADVANCE(3087); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5395); END_STATE(); case 5396: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2947); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); + if (lookahead == ',') ADVANCE(2988); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5396); END_STATE(); case 5397: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2950); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5397); + if (lookahead == ',') ADVANCE(2943); + if (lookahead == 'e') ADVANCE(5398); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5400); END_STATE(); case 5398: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2995); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5398); + if (lookahead == ',') ADVANCE(2943); + if (lookahead == 'n') ADVANCE(5399); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5400); END_STATE(); case 5399: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2953); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5399); + if (lookahead == ',') ADVANCE(2943); + if (lookahead == 'v') ADVANCE(3766); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5400); END_STATE(); case 5400: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2899); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); + if (lookahead == ',') ADVANCE(2943); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5400); END_STATE(); case 5401: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '.') ADVANCE(5410); - if (lookahead == '_') ADVANCE(5401); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5410); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == ',') ADVANCE(2973); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5401); END_STATE(); case 5402: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '.') ADVANCE(5411); - if (lookahead == '_') ADVANCE(5402); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5411); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5514); + if (lookahead == ',') ADVANCE(3040); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5402); END_STATE(); case 5403: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '.') ADVANCE(5404); - if (lookahead == '_') ADVANCE(5413); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5412); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == ',') ADVANCE(3062); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5403); END_STATE(); case 5404: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '.') ADVANCE(5337); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == ',') ADVANCE(3056); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5404); END_STATE(); case 5405: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '.') ADVANCE(3628); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5514); + if (lookahead == ',') ADVANCE(2902); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5405); END_STATE(); case 5406: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '.') ADVANCE(5405); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5514); + if (lookahead == ',') ADVANCE(3000); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5406); END_STATE(); case 5407: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'N') ADVANCE(5504); - if (lookahead == 'f') ADVANCE(3697); - if (lookahead == 'n') ADVANCE(3673); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == ',') ADVANCE(2994); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5407); END_STATE(); case 5408: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(5410); - if (lookahead == 'b') ADVANCE(5509); - if (lookahead == 'o') ADVANCE(5510); - if (lookahead == 'x') ADVANCE(5511); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5410); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == ',') ADVANCE(2931); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5408); END_STATE(); case 5409: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(5410); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5410); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5410); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == ',') ADVANCE(2979); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5409); END_STATE(); case 5410: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(5410); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5410); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == ',') ADVANCE(3059); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5410); END_STATE(); case 5411: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(5411); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5411); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5514); + if (lookahead == ',') ADVANCE(2997); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5411); END_STATE(); case 5412: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(5412); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(5409); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5412); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == ',') ADVANCE(2976); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5412); END_STATE(); case 5413: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(5413); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5412); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == ',') ADVANCE(3052); + if (lookahead == 'e') ADVANCE(5414); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5416); END_STATE(); case 5414: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(5489); - if (lookahead == 'o') ADVANCE(5462); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == ',') ADVANCE(3052); + if (lookahead == 'n') ADVANCE(5415); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5416); END_STATE(); case 5415: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(5461); - if (lookahead == 'o') ADVANCE(5473); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == ',') ADVANCE(3052); + if (lookahead == 'v') ADVANCE(3594); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5416); END_STATE(); case 5416: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(5453); - if (lookahead == 'o') ADVANCE(5423); - if (lookahead == 'u') ADVANCE(5491); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == ',') ADVANCE(3052); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5416); END_STATE(); case 5417: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(5452); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == ',') ADVANCE(2910); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5417); END_STATE(); case 5418: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(5502); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == ',') ADVANCE(2913); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5418); END_STATE(); case 5419: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(5483); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == ',') ADVANCE(3006); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5419); END_STATE(); case 5420: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'c') ADVANCE(5444); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == ',') ADVANCE(2955); + if (lookahead == 'e') ADVANCE(5421); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5423); END_STATE(); case 5421: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'c') ADVANCE(5445); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == ',') ADVANCE(2955); + if (lookahead == 'n') ADVANCE(5422); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5423); END_STATE(); case 5422: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'c') ADVANCE(5433); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == ',') ADVANCE(2955); + if (lookahead == 'v') ADVANCE(3758); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5423); END_STATE(); case 5423: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'd') ADVANCE(5500); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == ',') ADVANCE(2955); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5423); END_STATE(); case 5424: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'd') ADVANCE(5429); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == ',') ADVANCE(2958); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5424); END_STATE(); case 5425: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(5442); - if (lookahead == 'o') ADVANCE(3692); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == ',') ADVANCE(3003); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5425); END_STATE(); case 5426: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(5443); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == ',') ADVANCE(2961); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5426); END_STATE(); case 5427: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3594); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == ',') ADVANCE(2907); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5427); END_STATE(); case 5428: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3703); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == '.') ADVANCE(5437); + if (lookahead == '_') ADVANCE(5428); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5437); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5429: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3752); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == '.') ADVANCE(5438); + if (lookahead == '_') ADVANCE(5429); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5438); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5541); END_STATE(); case 5430: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3683); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == '.') ADVANCE(5431); + if (lookahead == '_') ADVANCE(5440); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5439); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5431: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3687); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == '.') ADVANCE(5364); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5432: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3589); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == '.') ADVANCE(3642); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5541); END_STATE(); case 5433: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3741); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == '.') ADVANCE(5432); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5541); END_STATE(); case 5434: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3663); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'N') ADVANCE(5531); + if (lookahead == 'f') ADVANCE(3711); + if (lookahead == 'n') ADVANCE(3687); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5435: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(5490); - if (lookahead == 'o') ADVANCE(5467); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == '_') ADVANCE(5437); + if (lookahead == 'b') ADVANCE(5536); + if (lookahead == 'o') ADVANCE(5537); + if (lookahead == 'x') ADVANCE(5538); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5437); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5436: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(5417); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == '_') ADVANCE(5437); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5437); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5437); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5437: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(5482); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == '_') ADVANCE(5437); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5437); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5438: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(5479); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == '_') ADVANCE(5438); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5438); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5541); END_STATE(); case 5439: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(5475); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == '_') ADVANCE(5439); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(5436); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5439); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5440: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(5377); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == '_') ADVANCE(5440); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5439); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5441: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(5383); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'a') ADVANCE(5516); + if (lookahead == 'o') ADVANCE(5489); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5442: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'f') ADVANCE(3576); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'a') ADVANCE(5488); + if (lookahead == 'o') ADVANCE(5500); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5443: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'g') ADVANCE(5450); - if (lookahead == 't') ADVANCE(5498); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'a') ADVANCE(5480); + if (lookahead == 'o') ADVANCE(5450); + if (lookahead == 'u') ADVANCE(5518); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5444: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'h') ADVANCE(3732); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'a') ADVANCE(5479); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5445: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'h') ADVANCE(3708); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'a') ADVANCE(5529); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5446: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'h') ADVANCE(5451); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'a') ADVANCE(5510); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5447: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'i') ADVANCE(5424); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'c') ADVANCE(5471); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5448: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'i') ADVANCE(5419); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'c') ADVANCE(5472); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5449: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'i') ADVANCE(5465); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'c') ADVANCE(5460); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5450: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'i') ADVANCE(5487); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'd') ADVANCE(5527); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5451: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'i') ADVANCE(5457); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'd') ADVANCE(5456); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5452: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'k') ADVANCE(3659); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'e') ADVANCE(5469); + if (lookahead == 'o') ADVANCE(3706); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5453: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'k') ADVANCE(5430); - if (lookahead == 't') ADVANCE(5421); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'e') ADVANCE(5470); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5454: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(5448); - if (lookahead == 's') ADVANCE(3764); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'e') ADVANCE(3608); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5455: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(5459); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'e') ADVANCE(3717); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5456: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(5418); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'e') ADVANCE(3762); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5457: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(5431); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'e') ADVANCE(3697); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5458: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(5432); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'e') ADVANCE(3701); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5459: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(5376); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'e') ADVANCE(3603); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5460: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(5486); - if (lookahead == 'r') ADVANCE(5478); - if (lookahead == 'x') ADVANCE(5471); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'e') ADVANCE(3755); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5461: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(5488); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'e') ADVANCE(3677); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5462: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'n') ADVANCE(5485); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'e') ADVANCE(5517); + if (lookahead == 'o') ADVANCE(5494); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5463: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'n') ADVANCE(3584); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'e') ADVANCE(5444); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5464: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'n') ADVANCE(3736); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'e') ADVANCE(5509); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5465: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'n') ADVANCE(5499); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'e') ADVANCE(5506); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5466: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'o') ADVANCE(5496); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'e') ADVANCE(5502); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5467: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'o') ADVANCE(5470); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'e') ADVANCE(5404); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5468: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'o') ADVANCE(5474); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'e') ADVANCE(5410); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5469: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'o') ADVANCE(5481); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'f') ADVANCE(3590); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5470: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'p') ADVANCE(3678); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'g') ADVANCE(5477); + if (lookahead == 't') ADVANCE(5525); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5471: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'p') ADVANCE(5469); - if (lookahead == 't') ADVANCE(5438); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'h') ADVANCE(3746); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5472: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(5497); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'h') ADVANCE(3722); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5473: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(3667); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'h') ADVANCE(5478); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5474: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(3614); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'i') ADVANCE(5451); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5475: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(3747); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'i') ADVANCE(5446); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5476: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(5436); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'i') ADVANCE(5492); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5477: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(5422); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'i') ADVANCE(5514); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5478: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(5468); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'i') ADVANCE(5484); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5479: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(5463); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'k') ADVANCE(3673); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5480: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(5464); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'k') ADVANCE(5457); + if (lookahead == 't') ADVANCE(5448); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5481: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(5493); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'l') ADVANCE(5475); + if (lookahead == 's') ADVANCE(3774); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5482: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(5456); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'l') ADVANCE(5486); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5483: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(1787); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'l') ADVANCE(5445); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5484: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(5427); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'l') ADVANCE(5458); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5485: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(5492); - if (lookahead == 't') ADVANCE(5449); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'l') ADVANCE(5459); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5486: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(5428); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'l') ADVANCE(5403); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5487: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(5494); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'l') ADVANCE(5513); + if (lookahead == 'r') ADVANCE(5505); + if (lookahead == 'x') ADVANCE(5498); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5488: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(5441); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'l') ADVANCE(5515); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5489: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(5420); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'n') ADVANCE(5512); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5490: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(1795); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'n') ADVANCE(3598); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5491: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(1801); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'n') ADVANCE(3750); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5492: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(1806); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'n') ADVANCE(5526); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5493: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(1783); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'o') ADVANCE(5523); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5494: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(5439); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'o') ADVANCE(5497); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5495: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(5455); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(5508); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'o') ADVANCE(5501); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5496: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(5477); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'o') ADVANCE(5508); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5497: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(5440); - if (lookahead == 'y') ADVANCE(3727); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'p') ADVANCE(3692); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5498: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(5480); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'p') ADVANCE(5496); + if (lookahead == 't') ADVANCE(5465); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5499: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(5434); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'r') ADVANCE(5524); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5500: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(5458); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'r') ADVANCE(3681); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5501: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'v') ADVANCE(5437); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'r') ADVANCE(3628); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5502: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'y') ADVANCE(3759); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'r') ADVANCE(4112); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5503: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(5508); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'r') ADVANCE(5463); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5504: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(5347); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'r') ADVANCE(5449); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5505: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(5363); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5514); + if (lookahead == 'r') ADVANCE(5495); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5506: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5504); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'r') ADVANCE(5490); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5507: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5505); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5514); + if (lookahead == 'r') ADVANCE(5491); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5508: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5353); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (lookahead == 'r') ADVANCE(5520); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); case 5509: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'r') ADVANCE(5483); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); + END_STATE(); + case 5510: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 's') ADVANCE(1791); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); + END_STATE(); + case 5511: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 's') ADVANCE(5454); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); + END_STATE(); + case 5512: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 's') ADVANCE(5519); + if (lookahead == 't') ADVANCE(5476); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); + END_STATE(); + case 5513: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 's') ADVANCE(5455); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); + END_STATE(); + case 5514: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 's') ADVANCE(5521); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); + END_STATE(); + case 5515: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 's') ADVANCE(5468); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); + END_STATE(); + case 5516: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 't') ADVANCE(5447); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); + END_STATE(); + case 5517: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 't') ADVANCE(1799); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); + END_STATE(); + case 5518: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 't') ADVANCE(1805); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); + END_STATE(); + case 5519: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 't') ADVANCE(1810); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); + END_STATE(); + case 5520: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 't') ADVANCE(1787); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); + END_STATE(); + case 5521: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 't') ADVANCE(5466); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); + END_STATE(); + case 5522: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'u') ADVANCE(5482); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(5535); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); + END_STATE(); + case 5523: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'u') ADVANCE(5504); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); + END_STATE(); + case 5524: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'u') ADVANCE(5467); + if (lookahead == 'y') ADVANCE(3741); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); + END_STATE(); + case 5525: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'u') ADVANCE(5507); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); + END_STATE(); + case 5526: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'u') ADVANCE(5461); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); + END_STATE(); + case 5527: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'u') ADVANCE(5485); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); + END_STATE(); + case 5528: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'v') ADVANCE(5464); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); + END_STATE(); + case 5529: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'y') ADVANCE(3769); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); + END_STATE(); + case 5530: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(5535); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); + END_STATE(); + case 5531: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(5374); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); + END_STATE(); + case 5532: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(5390); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5541); + END_STATE(); + case 5533: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5531); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); + END_STATE(); + case 5534: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5532); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5541); + END_STATE(); + case 5535: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5380); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); + END_STATE(); + case 5536: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(5509); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + lookahead == '_') ADVANCE(5536); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); - case 5510: + case 5537: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(5510); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + lookahead == '_') ADVANCE(5537); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); - case 5511: + case 5538: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(5511); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(5538); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); - case 5512: + case 5539: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5512); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5539); END_STATE(); - case 5513: + case 5540: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == '-' || lookahead == '.' || - ('<' <= lookahead && lookahead <= '@')) ADVANCE(5514); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(5513); + ('<' <= lookahead && lookahead <= '@')) ADVANCE(5541); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(5540); END_STATE(); - case 5514: + case 5541: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5514); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5541); END_STATE(); - case 5515: + case 5542: ACCEPT_TOKEN(aux_sym__unquoted_with_expr_token1); - if (lookahead == '#') ADVANCE(5530); + if (lookahead == '#') ADVANCE(5557); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(5516); + lookahead != '|') ADVANCE(5543); END_STATE(); - case 5516: + case 5543: ACCEPT_TOKEN(aux_sym__unquoted_with_expr_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -60631,20 +60825,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(5516); + lookahead != '|') ADVANCE(5543); END_STATE(); - case 5517: + case 5544: ACCEPT_TOKEN(aux_sym__unquoted_in_list_with_expr_token1); - if (lookahead == '#') ADVANCE(5529); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(5518); + if (lookahead == '#') ADVANCE(5556); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(5545); END_STATE(); - case 5518: + case 5545: 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(5518); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(5545); END_STATE(); - case 5519: + case 5546: ACCEPT_TOKEN(aux_sym__unquoted_in_record_with_expr_token1); - if (lookahead == '#') ADVANCE(5528); + if (lookahead == '#') ADVANCE(5555); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -60653,9 +60847,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5520); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5547); END_STATE(); - case 5520: + case 5547: ACCEPT_TOKEN(aux_sym__unquoted_in_record_with_expr_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -60665,38 +60859,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5520); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5547); END_STATE(); - case 5521: + case 5548: ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); - case 5522: + case 5549: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '\n') ADVANCE(1779); - if (lookahead == '\r') ADVANCE(1781); - if (lookahead != 0) ADVANCE(1781); + if (lookahead == '\n') ADVANCE(1783); + if (lookahead == '\r') ADVANCE(1785); + if (lookahead != 0) ADVANCE(1785); END_STATE(); - case 5523: + case 5550: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(1778); + if (lookahead == '!') ADVANCE(1782); END_STATE(); - case 5524: + case 5551: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5514); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5541); END_STATE(); - case 5525: + case 5552: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4100); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4118); END_STATE(); - case 5526: + case 5553: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5229); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5256); END_STATE(); - case 5527: + case 5554: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4958); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4985); END_STATE(); - case 5528: + case 5555: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -60706,13 +60900,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5520); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5547); END_STATE(); - case 5529: + case 5556: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(5518); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(5545); END_STATE(); - case 5530: + case 5557: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -60720,26 +60914,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(5516); + lookahead != '|') ADVANCE(5543); END_STATE(); - case 5531: + case 5558: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && - lookahead != '\n') ADVANCE(5533); + lookahead != '\n') ADVANCE(5560); END_STATE(); - case 5532: + case 5559: ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '#') ADVANCE(5531); + if (lookahead == '#') ADVANCE(5558); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(5532); + lookahead == ' ') ADVANCE(5559); if (lookahead != 0 && lookahead != '\t' && - lookahead != '\n') ADVANCE(5533); + lookahead != '\n') ADVANCE(5560); END_STATE(); - case 5533: + case 5560: ACCEPT_TOKEN(aux_sym_comment_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(5533); + lookahead != '\n') ADVANCE(5560); END_STATE(); default: return false; @@ -61268,67 +61462,67 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 1674, .external_lex_state = 2}, - [2] = {.lex_state = 1696, .external_lex_state = 2}, - [3] = {.lex_state = 1696, .external_lex_state = 2}, - [4] = {.lex_state = 1696, .external_lex_state = 2}, - [5] = {.lex_state = 1696, .external_lex_state = 2}, - [6] = {.lex_state = 1696, .external_lex_state = 2}, - [7] = {.lex_state = 1696, .external_lex_state = 2}, - [8] = {.lex_state = 1696, .external_lex_state = 2}, - [9] = {.lex_state = 1696, .external_lex_state = 2}, - [10] = {.lex_state = 1696, .external_lex_state = 2}, - [11] = {.lex_state = 1696, .external_lex_state = 2}, - [12] = {.lex_state = 1696, .external_lex_state = 2}, - [13] = {.lex_state = 1696, .external_lex_state = 2}, - [14] = {.lex_state = 1696, .external_lex_state = 2}, - [15] = {.lex_state = 1696, .external_lex_state = 2}, - [16] = {.lex_state = 1696, .external_lex_state = 2}, - [17] = {.lex_state = 1696, .external_lex_state = 2}, - [18] = {.lex_state = 1696, .external_lex_state = 2}, - [19] = {.lex_state = 1696, .external_lex_state = 2}, - [20] = {.lex_state = 1696, .external_lex_state = 2}, - [21] = {.lex_state = 1696, .external_lex_state = 2}, - [22] = {.lex_state = 1696, .external_lex_state = 2}, - [23] = {.lex_state = 1696, .external_lex_state = 2}, - [24] = {.lex_state = 1696, .external_lex_state = 2}, - [25] = {.lex_state = 1696, .external_lex_state = 2}, - [26] = {.lex_state = 1696, .external_lex_state = 2}, - [27] = {.lex_state = 1696, .external_lex_state = 2}, - [28] = {.lex_state = 1696, .external_lex_state = 2}, - [29] = {.lex_state = 1696, .external_lex_state = 2}, - [30] = {.lex_state = 1696, .external_lex_state = 2}, - [31] = {.lex_state = 1696, .external_lex_state = 2}, - [32] = {.lex_state = 1696, .external_lex_state = 2}, - [33] = {.lex_state = 1696, .external_lex_state = 2}, - [34] = {.lex_state = 1696, .external_lex_state = 2}, - [35] = {.lex_state = 1692, .external_lex_state = 2}, - [36] = {.lex_state = 1692, .external_lex_state = 2}, - [37] = {.lex_state = 1692, .external_lex_state = 2}, - [38] = {.lex_state = 1692, .external_lex_state = 2}, - [39] = {.lex_state = 1692, .external_lex_state = 2}, - [40] = {.lex_state = 1692, .external_lex_state = 2}, - [41] = {.lex_state = 1692, .external_lex_state = 2}, - [42] = {.lex_state = 1692, .external_lex_state = 2}, - [43] = {.lex_state = 1692, .external_lex_state = 2}, - [44] = {.lex_state = 1692, .external_lex_state = 2}, - [45] = {.lex_state = 1692, .external_lex_state = 2}, - [46] = {.lex_state = 1692, .external_lex_state = 2}, - [47] = {.lex_state = 1692, .external_lex_state = 2}, - [48] = {.lex_state = 1692, .external_lex_state = 2}, - [49] = {.lex_state = 1692, .external_lex_state = 2}, - [50] = {.lex_state = 1692, .external_lex_state = 2}, - [51] = {.lex_state = 1692, .external_lex_state = 2}, - [52] = {.lex_state = 1692, .external_lex_state = 2}, - [53] = {.lex_state = 1692, .external_lex_state = 2}, - [54] = {.lex_state = 1692, .external_lex_state = 2}, - [55] = {.lex_state = 1692, .external_lex_state = 2}, - [56] = {.lex_state = 1692, .external_lex_state = 2}, - [57] = {.lex_state = 1692, .external_lex_state = 2}, + [1] = {.lex_state = 1678, .external_lex_state = 2}, + [2] = {.lex_state = 1700, .external_lex_state = 2}, + [3] = {.lex_state = 1700, .external_lex_state = 2}, + [4] = {.lex_state = 1700, .external_lex_state = 2}, + [5] = {.lex_state = 1700, .external_lex_state = 2}, + [6] = {.lex_state = 1700, .external_lex_state = 2}, + [7] = {.lex_state = 1700, .external_lex_state = 2}, + [8] = {.lex_state = 1700, .external_lex_state = 2}, + [9] = {.lex_state = 1700, .external_lex_state = 2}, + [10] = {.lex_state = 1700, .external_lex_state = 2}, + [11] = {.lex_state = 1700, .external_lex_state = 2}, + [12] = {.lex_state = 1700, .external_lex_state = 2}, + [13] = {.lex_state = 1700, .external_lex_state = 2}, + [14] = {.lex_state = 1700, .external_lex_state = 2}, + [15] = {.lex_state = 1700, .external_lex_state = 2}, + [16] = {.lex_state = 1700, .external_lex_state = 2}, + [17] = {.lex_state = 1700, .external_lex_state = 2}, + [18] = {.lex_state = 1700, .external_lex_state = 2}, + [19] = {.lex_state = 1700, .external_lex_state = 2}, + [20] = {.lex_state = 1700, .external_lex_state = 2}, + [21] = {.lex_state = 1700, .external_lex_state = 2}, + [22] = {.lex_state = 1700, .external_lex_state = 2}, + [23] = {.lex_state = 1700, .external_lex_state = 2}, + [24] = {.lex_state = 1700, .external_lex_state = 2}, + [25] = {.lex_state = 1700, .external_lex_state = 2}, + [26] = {.lex_state = 1700, .external_lex_state = 2}, + [27] = {.lex_state = 1700, .external_lex_state = 2}, + [28] = {.lex_state = 1700, .external_lex_state = 2}, + [29] = {.lex_state = 1700, .external_lex_state = 2}, + [30] = {.lex_state = 1700, .external_lex_state = 2}, + [31] = {.lex_state = 1700, .external_lex_state = 2}, + [32] = {.lex_state = 1700, .external_lex_state = 2}, + [33] = {.lex_state = 1700, .external_lex_state = 2}, + [34] = {.lex_state = 1700, .external_lex_state = 2}, + [35] = {.lex_state = 1696, .external_lex_state = 2}, + [36] = {.lex_state = 1696, .external_lex_state = 2}, + [37] = {.lex_state = 1696, .external_lex_state = 2}, + [38] = {.lex_state = 1696, .external_lex_state = 2}, + [39] = {.lex_state = 1696, .external_lex_state = 2}, + [40] = {.lex_state = 1696, .external_lex_state = 2}, + [41] = {.lex_state = 1696, .external_lex_state = 2}, + [42] = {.lex_state = 1696, .external_lex_state = 2}, + [43] = {.lex_state = 1696, .external_lex_state = 2}, + [44] = {.lex_state = 1696, .external_lex_state = 2}, + [45] = {.lex_state = 1696, .external_lex_state = 2}, + [46] = {.lex_state = 1696, .external_lex_state = 2}, + [47] = {.lex_state = 1696, .external_lex_state = 2}, + [48] = {.lex_state = 1696, .external_lex_state = 2}, + [49] = {.lex_state = 1696, .external_lex_state = 2}, + [50] = {.lex_state = 1696, .external_lex_state = 2}, + [51] = {.lex_state = 1696, .external_lex_state = 2}, + [52] = {.lex_state = 1696, .external_lex_state = 2}, + [53] = {.lex_state = 1696, .external_lex_state = 2}, + [54] = {.lex_state = 1696, .external_lex_state = 2}, + [55] = {.lex_state = 1696, .external_lex_state = 2}, + [56] = {.lex_state = 1696, .external_lex_state = 2}, + [57] = {.lex_state = 1696, .external_lex_state = 2}, [58] = {.lex_state = 30, .external_lex_state = 2}, [59] = {.lex_state = 30, .external_lex_state = 2}, [60] = {.lex_state = 30, .external_lex_state = 2}, - [61] = {.lex_state = 1692, .external_lex_state = 2}, + [61] = {.lex_state = 30, .external_lex_state = 2}, [62] = {.lex_state = 30, .external_lex_state = 2}, [63] = {.lex_state = 30, .external_lex_state = 2}, [64] = {.lex_state = 30, .external_lex_state = 2}, @@ -61341,7 +61535,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [71] = {.lex_state = 30, .external_lex_state = 2}, [72] = {.lex_state = 30, .external_lex_state = 2}, [73] = {.lex_state = 30, .external_lex_state = 2}, - [74] = {.lex_state = 30, .external_lex_state = 2}, + [74] = {.lex_state = 1696, .external_lex_state = 2}, [75] = {.lex_state = 30, .external_lex_state = 2}, [76] = {.lex_state = 30, .external_lex_state = 2}, [77] = {.lex_state = 30, .external_lex_state = 2}, @@ -61349,77 +61543,77 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [79] = {.lex_state = 30, .external_lex_state = 2}, [80] = {.lex_state = 30, .external_lex_state = 2}, [81] = {.lex_state = 30, .external_lex_state = 2}, - [82] = {.lex_state = 30, .external_lex_state = 2}, + [82] = {.lex_state = 1696, .external_lex_state = 2}, [83] = {.lex_state = 30, .external_lex_state = 2}, - [84] = {.lex_state = 1692, .external_lex_state = 2}, + [84] = {.lex_state = 30, .external_lex_state = 2}, [85] = {.lex_state = 30, .external_lex_state = 2}, - [86] = {.lex_state = 1692, .external_lex_state = 2}, + [86] = {.lex_state = 30, .external_lex_state = 2}, [87] = {.lex_state = 30, .external_lex_state = 2}, [88] = {.lex_state = 30, .external_lex_state = 2}, [89] = {.lex_state = 30, .external_lex_state = 2}, [90] = {.lex_state = 30, .external_lex_state = 2}, [91] = {.lex_state = 30, .external_lex_state = 2}, [92] = {.lex_state = 30, .external_lex_state = 2}, - [93] = {.lex_state = 30, .external_lex_state = 2}, + [93] = {.lex_state = 1696, .external_lex_state = 2}, [94] = {.lex_state = 30, .external_lex_state = 2}, [95] = {.lex_state = 30, .external_lex_state = 2}, [96] = {.lex_state = 30, .external_lex_state = 2}, - [97] = {.lex_state = 1692, .external_lex_state = 2}, - [98] = {.lex_state = 30, .external_lex_state = 2}, - [99] = {.lex_state = 1692, .external_lex_state = 2}, - [100] = {.lex_state = 1692, .external_lex_state = 2}, - [101] = {.lex_state = 1692, .external_lex_state = 2}, - [102] = {.lex_state = 1692, .external_lex_state = 2}, - [103] = {.lex_state = 1692, .external_lex_state = 2}, - [104] = {.lex_state = 1692, .external_lex_state = 2}, - [105] = {.lex_state = 1692, .external_lex_state = 2}, - [106] = {.lex_state = 1692, .external_lex_state = 2}, - [107] = {.lex_state = 1692, .external_lex_state = 2}, - [108] = {.lex_state = 1692, .external_lex_state = 2}, - [109] = {.lex_state = 1692, .external_lex_state = 2}, - [110] = {.lex_state = 1692, .external_lex_state = 2}, - [111] = {.lex_state = 1692, .external_lex_state = 2}, - [112] = {.lex_state = 1692, .external_lex_state = 2}, - [113] = {.lex_state = 1692, .external_lex_state = 2}, - [114] = {.lex_state = 30, .external_lex_state = 2}, - [115] = {.lex_state = 1692, .external_lex_state = 2}, - [116] = {.lex_state = 1692, .external_lex_state = 2}, - [117] = {.lex_state = 1692, .external_lex_state = 2}, - [118] = {.lex_state = 1692, .external_lex_state = 2}, - [119] = {.lex_state = 1692, .external_lex_state = 2}, - [120] = {.lex_state = 1692, .external_lex_state = 2}, - [121] = {.lex_state = 1692, .external_lex_state = 2}, - [122] = {.lex_state = 1692, .external_lex_state = 2}, - [123] = {.lex_state = 1692, .external_lex_state = 2}, - [124] = {.lex_state = 1692, .external_lex_state = 2}, - [125] = {.lex_state = 1692, .external_lex_state = 2}, - [126] = {.lex_state = 1692, .external_lex_state = 2}, - [127] = {.lex_state = 1692, .external_lex_state = 2}, - [128] = {.lex_state = 1692, .external_lex_state = 2}, - [129] = {.lex_state = 1692, .external_lex_state = 2}, - [130] = {.lex_state = 1692, .external_lex_state = 2}, - [131] = {.lex_state = 1692, .external_lex_state = 2}, - [132] = {.lex_state = 1692, .external_lex_state = 2}, - [133] = {.lex_state = 1692, .external_lex_state = 2}, - [134] = {.lex_state = 1692, .external_lex_state = 2}, - [135] = {.lex_state = 1692, .external_lex_state = 2}, - [136] = {.lex_state = 1692, .external_lex_state = 2}, - [137] = {.lex_state = 1692, .external_lex_state = 2}, - [138] = {.lex_state = 1692, .external_lex_state = 2}, - [139] = {.lex_state = 1692, .external_lex_state = 2}, - [140] = {.lex_state = 1692, .external_lex_state = 2}, - [141] = {.lex_state = 1627, .external_lex_state = 2}, - [142] = {.lex_state = 1627, .external_lex_state = 2}, - [143] = {.lex_state = 1627, .external_lex_state = 2}, + [97] = {.lex_state = 1696, .external_lex_state = 2}, + [98] = {.lex_state = 1696, .external_lex_state = 2}, + [99] = {.lex_state = 1696, .external_lex_state = 2}, + [100] = {.lex_state = 1696, .external_lex_state = 2}, + [101] = {.lex_state = 1696, .external_lex_state = 2}, + [102] = {.lex_state = 30, .external_lex_state = 2}, + [103] = {.lex_state = 30, .external_lex_state = 2}, + [104] = {.lex_state = 1696, .external_lex_state = 2}, + [105] = {.lex_state = 1696, .external_lex_state = 2}, + [106] = {.lex_state = 1696, .external_lex_state = 2}, + [107] = {.lex_state = 1696, .external_lex_state = 2}, + [108] = {.lex_state = 1696, .external_lex_state = 2}, + [109] = {.lex_state = 1696, .external_lex_state = 2}, + [110] = {.lex_state = 1696, .external_lex_state = 2}, + [111] = {.lex_state = 1696, .external_lex_state = 2}, + [112] = {.lex_state = 1696, .external_lex_state = 2}, + [113] = {.lex_state = 1696, .external_lex_state = 2}, + [114] = {.lex_state = 1696, .external_lex_state = 2}, + [115] = {.lex_state = 1696, .external_lex_state = 2}, + [116] = {.lex_state = 1696, .external_lex_state = 2}, + [117] = {.lex_state = 1696, .external_lex_state = 2}, + [118] = {.lex_state = 1696, .external_lex_state = 2}, + [119] = {.lex_state = 1696, .external_lex_state = 2}, + [120] = {.lex_state = 1696, .external_lex_state = 2}, + [121] = {.lex_state = 1696, .external_lex_state = 2}, + [122] = {.lex_state = 1696, .external_lex_state = 2}, + [123] = {.lex_state = 1696, .external_lex_state = 2}, + [124] = {.lex_state = 1696, .external_lex_state = 2}, + [125] = {.lex_state = 1696, .external_lex_state = 2}, + [126] = {.lex_state = 1696, .external_lex_state = 2}, + [127] = {.lex_state = 1696, .external_lex_state = 2}, + [128] = {.lex_state = 1696, .external_lex_state = 2}, + [129] = {.lex_state = 1696, .external_lex_state = 2}, + [130] = {.lex_state = 1696, .external_lex_state = 2}, + [131] = {.lex_state = 1696, .external_lex_state = 2}, + [132] = {.lex_state = 1696, .external_lex_state = 2}, + [133] = {.lex_state = 1696, .external_lex_state = 2}, + [134] = {.lex_state = 1696, .external_lex_state = 2}, + [135] = {.lex_state = 1696, .external_lex_state = 2}, + [136] = {.lex_state = 1696, .external_lex_state = 2}, + [137] = {.lex_state = 1696, .external_lex_state = 2}, + [138] = {.lex_state = 1696, .external_lex_state = 2}, + [139] = {.lex_state = 1696, .external_lex_state = 2}, + [140] = {.lex_state = 1696, .external_lex_state = 2}, + [141] = {.lex_state = 1631, .external_lex_state = 2}, + [142] = {.lex_state = 1631, .external_lex_state = 2}, + [143] = {.lex_state = 1631, .external_lex_state = 2}, [144] = {.lex_state = 2, .external_lex_state = 2}, [145] = {.lex_state = 2, .external_lex_state = 2}, [146] = {.lex_state = 2, .external_lex_state = 2}, [147] = {.lex_state = 2, .external_lex_state = 2}, [148] = {.lex_state = 2, .external_lex_state = 2}, [149] = {.lex_state = 2, .external_lex_state = 2}, - [150] = {.lex_state = 1627, .external_lex_state = 2}, - [151] = {.lex_state = 1627, .external_lex_state = 2}, - [152] = {.lex_state = 1627, .external_lex_state = 2}, + [150] = {.lex_state = 1631, .external_lex_state = 2}, + [151] = {.lex_state = 1631, .external_lex_state = 2}, + [152] = {.lex_state = 1631, .external_lex_state = 2}, [153] = {.lex_state = 4, .external_lex_state = 2}, [154] = {.lex_state = 4, .external_lex_state = 2}, [155] = {.lex_state = 123, .external_lex_state = 2}, @@ -61465,10 +61659,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [195] = {.lex_state = 37, .external_lex_state = 2}, [196] = {.lex_state = 37, .external_lex_state = 2}, [197] = {.lex_state = 37, .external_lex_state = 2}, - [198] = {.lex_state = 1696, .external_lex_state = 2}, - [199] = {.lex_state = 1696, .external_lex_state = 2}, + [198] = {.lex_state = 1700, .external_lex_state = 2}, + [199] = {.lex_state = 1700, .external_lex_state = 2}, [200] = {.lex_state = 37, .external_lex_state = 2}, - [201] = {.lex_state = 1696, .external_lex_state = 2}, + [201] = {.lex_state = 1700, .external_lex_state = 2}, [202] = {.lex_state = 37, .external_lex_state = 2}, [203] = {.lex_state = 37, .external_lex_state = 2}, [204] = {.lex_state = 37, .external_lex_state = 2}, @@ -61477,25 +61671,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [207] = {.lex_state = 37, .external_lex_state = 2}, [208] = {.lex_state = 37, .external_lex_state = 2}, [209] = {.lex_state = 37, .external_lex_state = 2}, - [210] = {.lex_state = 30, .external_lex_state = 2}, - [211] = {.lex_state = 97, .external_lex_state = 2}, - [212] = {.lex_state = 30, .external_lex_state = 2}, - [213] = {.lex_state = 30, .external_lex_state = 2}, - [214] = {.lex_state = 30, .external_lex_state = 2}, - [215] = {.lex_state = 1692, .external_lex_state = 2}, - [216] = {.lex_state = 97, .external_lex_state = 2}, - [217] = {.lex_state = 95, .external_lex_state = 2}, - [218] = {.lex_state = 98, .external_lex_state = 2}, - [219] = {.lex_state = 98, .external_lex_state = 2}, - [220] = {.lex_state = 113, .external_lex_state = 2}, - [221] = {.lex_state = 111, .external_lex_state = 2}, - [222] = {.lex_state = 1692, .external_lex_state = 2}, - [223] = {.lex_state = 1692, .external_lex_state = 2}, + [210] = {.lex_state = 97, .external_lex_state = 2}, + [211] = {.lex_state = 34, .external_lex_state = 2}, + [212] = {.lex_state = 34, .external_lex_state = 2}, + [213] = {.lex_state = 34, .external_lex_state = 2}, + [214] = {.lex_state = 34, .external_lex_state = 2}, + [215] = {.lex_state = 34, .external_lex_state = 2}, + [216] = {.lex_state = 34, .external_lex_state = 2}, + [217] = {.lex_state = 34, .external_lex_state = 2}, + [218] = {.lex_state = 34, .external_lex_state = 2}, + [219] = {.lex_state = 34, .external_lex_state = 2}, + [220] = {.lex_state = 34, .external_lex_state = 2}, + [221] = {.lex_state = 34, .external_lex_state = 2}, + [222] = {.lex_state = 34, .external_lex_state = 2}, + [223] = {.lex_state = 34, .external_lex_state = 2}, [224] = {.lex_state = 34, .external_lex_state = 2}, - [225] = {.lex_state = 1692, .external_lex_state = 2}, + [225] = {.lex_state = 34, .external_lex_state = 2}, [226] = {.lex_state = 34, .external_lex_state = 2}, [227] = {.lex_state = 34, .external_lex_state = 2}, - [228] = {.lex_state = 1692, .external_lex_state = 2}, + [228] = {.lex_state = 34, .external_lex_state = 2}, [229] = {.lex_state = 34, .external_lex_state = 2}, [230] = {.lex_state = 34, .external_lex_state = 2}, [231] = {.lex_state = 34, .external_lex_state = 2}, @@ -61516,11 +61710,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [246] = {.lex_state = 34, .external_lex_state = 2}, [247] = {.lex_state = 34, .external_lex_state = 2}, [248] = {.lex_state = 34, .external_lex_state = 2}, - [249] = {.lex_state = 1674, .external_lex_state = 2}, - [250] = {.lex_state = 1692, .external_lex_state = 2}, + [249] = {.lex_state = 30, .external_lex_state = 2}, + [250] = {.lex_state = 34, .external_lex_state = 2}, [251] = {.lex_state = 34, .external_lex_state = 2}, [252] = {.lex_state = 34, .external_lex_state = 2}, - [253] = {.lex_state = 34, .external_lex_state = 2}, + [253] = {.lex_state = 30, .external_lex_state = 2}, [254] = {.lex_state = 34, .external_lex_state = 2}, [255] = {.lex_state = 34, .external_lex_state = 2}, [256] = {.lex_state = 34, .external_lex_state = 2}, @@ -61530,14 +61724,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [260] = {.lex_state = 34, .external_lex_state = 2}, [261] = {.lex_state = 34, .external_lex_state = 2}, [262] = {.lex_state = 34, .external_lex_state = 2}, - [263] = {.lex_state = 34, .external_lex_state = 2}, - [264] = {.lex_state = 34, .external_lex_state = 2}, + [263] = {.lex_state = 30, .external_lex_state = 2}, + [264] = {.lex_state = 111, .external_lex_state = 2}, [265] = {.lex_state = 34, .external_lex_state = 2}, - [266] = {.lex_state = 34, .external_lex_state = 2}, + [266] = {.lex_state = 117, .external_lex_state = 2}, [267] = {.lex_state = 34, .external_lex_state = 2}, [268] = {.lex_state = 34, .external_lex_state = 2}, [269] = {.lex_state = 34, .external_lex_state = 2}, - [270] = {.lex_state = 34, .external_lex_state = 2}, + [270] = {.lex_state = 30, .external_lex_state = 2}, [271] = {.lex_state = 34, .external_lex_state = 2}, [272] = {.lex_state = 34, .external_lex_state = 2}, [273] = {.lex_state = 34, .external_lex_state = 2}, @@ -61546,572 +61740,572 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [276] = {.lex_state = 34, .external_lex_state = 2}, [277] = {.lex_state = 34, .external_lex_state = 2}, [278] = {.lex_state = 34, .external_lex_state = 2}, - [279] = {.lex_state = 34, .external_lex_state = 2}, - [280] = {.lex_state = 1692, .external_lex_state = 2}, + [279] = {.lex_state = 97, .external_lex_state = 2}, + [280] = {.lex_state = 34, .external_lex_state = 2}, [281] = {.lex_state = 34, .external_lex_state = 2}, - [282] = {.lex_state = 34, .external_lex_state = 2}, + [282] = {.lex_state = 95, .external_lex_state = 2}, [283] = {.lex_state = 34, .external_lex_state = 2}, [284] = {.lex_state = 34, .external_lex_state = 2}, [285] = {.lex_state = 34, .external_lex_state = 2}, [286] = {.lex_state = 34, .external_lex_state = 2}, [287] = {.lex_state = 34, .external_lex_state = 2}, - [288] = {.lex_state = 34, .external_lex_state = 2}, + [288] = {.lex_state = 98, .external_lex_state = 2}, [289] = {.lex_state = 34, .external_lex_state = 2}, [290] = {.lex_state = 34, .external_lex_state = 2}, - [291] = {.lex_state = 34, .external_lex_state = 2}, + [291] = {.lex_state = 98, .external_lex_state = 2}, [292] = {.lex_state = 34, .external_lex_state = 2}, - [293] = {.lex_state = 34, .external_lex_state = 2}, - [294] = {.lex_state = 34, .external_lex_state = 2}, - [295] = {.lex_state = 34, .external_lex_state = 2}, - [296] = {.lex_state = 34, .external_lex_state = 2}, - [297] = {.lex_state = 34, .external_lex_state = 2}, - [298] = {.lex_state = 34, .external_lex_state = 2}, - [299] = {.lex_state = 34, .external_lex_state = 2}, - [300] = {.lex_state = 30, .external_lex_state = 2}, - [301] = {.lex_state = 1692, .external_lex_state = 2}, - [302] = {.lex_state = 34, .external_lex_state = 2}, - [303] = {.lex_state = 98, .external_lex_state = 2}, - [304] = {.lex_state = 98, .external_lex_state = 2}, - [305] = {.lex_state = 1692, .external_lex_state = 2}, - [306] = {.lex_state = 1692, .external_lex_state = 2}, - [307] = {.lex_state = 98, .external_lex_state = 2}, - [308] = {.lex_state = 96, .external_lex_state = 2}, - [309] = {.lex_state = 96, .external_lex_state = 2}, - [310] = {.lex_state = 1692, .external_lex_state = 2}, - [311] = {.lex_state = 116, .external_lex_state = 2}, - [312] = {.lex_state = 98, .external_lex_state = 2}, - [313] = {.lex_state = 1692, .external_lex_state = 2}, - [314] = {.lex_state = 1692, .external_lex_state = 2}, - [315] = {.lex_state = 95, .external_lex_state = 2}, - [316] = {.lex_state = 101, .external_lex_state = 2}, - [317] = {.lex_state = 1692, .external_lex_state = 2}, - [318] = {.lex_state = 99, .external_lex_state = 2}, - [319] = {.lex_state = 115, .external_lex_state = 2}, - [320] = {.lex_state = 115, .external_lex_state = 2}, - [321] = {.lex_state = 30, .external_lex_state = 2}, - [322] = {.lex_state = 1692, .external_lex_state = 2}, - [323] = {.lex_state = 124, .external_lex_state = 2}, - [324] = {.lex_state = 140, .external_lex_state = 2}, - [325] = {.lex_state = 124, .external_lex_state = 2}, - [326] = {.lex_state = 1692, .external_lex_state = 2}, + [293] = {.lex_state = 1696, .external_lex_state = 2}, + [294] = {.lex_state = 95, .external_lex_state = 2}, + [295] = {.lex_state = 98, .external_lex_state = 2}, + [296] = {.lex_state = 98, .external_lex_state = 2}, + [297] = {.lex_state = 98, .external_lex_state = 2}, + [298] = {.lex_state = 98, .external_lex_state = 2}, + [299] = {.lex_state = 96, .external_lex_state = 2}, + [300] = {.lex_state = 96, .external_lex_state = 2}, + [301] = {.lex_state = 99, .external_lex_state = 2}, + [302] = {.lex_state = 105, .external_lex_state = 2}, + [303] = {.lex_state = 113, .external_lex_state = 2}, + [304] = {.lex_state = 1696, .external_lex_state = 2}, + [305] = {.lex_state = 113, .external_lex_state = 2}, + [306] = {.lex_state = 1696, .external_lex_state = 2}, + [307] = {.lex_state = 1696, .external_lex_state = 2}, + [308] = {.lex_state = 30, .external_lex_state = 2}, + [309] = {.lex_state = 1696, .external_lex_state = 2}, + [310] = {.lex_state = 1696, .external_lex_state = 2}, + [311] = {.lex_state = 1696, .external_lex_state = 2}, + [312] = {.lex_state = 114, .external_lex_state = 2}, + [313] = {.lex_state = 1696, .external_lex_state = 2}, + [314] = {.lex_state = 1678, .external_lex_state = 2}, + [315] = {.lex_state = 96, .external_lex_state = 2}, + [316] = {.lex_state = 140, .external_lex_state = 2}, + [317] = {.lex_state = 1696, .external_lex_state = 2}, + [318] = {.lex_state = 96, .external_lex_state = 2}, + [319] = {.lex_state = 140, .external_lex_state = 2}, + [320] = {.lex_state = 1696, .external_lex_state = 2}, + [321] = {.lex_state = 1696, .external_lex_state = 2}, + [322] = {.lex_state = 30, .external_lex_state = 2}, + [323] = {.lex_state = 140, .external_lex_state = 2}, + [324] = {.lex_state = 101, .external_lex_state = 2}, + [325] = {.lex_state = 101, .external_lex_state = 2}, + [326] = {.lex_state = 1696, .external_lex_state = 2}, [327] = {.lex_state = 114, .external_lex_state = 2}, - [328] = {.lex_state = 140, .external_lex_state = 2}, - [329] = {.lex_state = 124, .external_lex_state = 2}, - [330] = {.lex_state = 140, .external_lex_state = 2}, - [331] = {.lex_state = 1692, .external_lex_state = 2}, - [332] = {.lex_state = 34, .external_lex_state = 2}, - [333] = {.lex_state = 103, .external_lex_state = 2}, + [328] = {.lex_state = 96, .external_lex_state = 2}, + [329] = {.lex_state = 114, .external_lex_state = 2}, + [330] = {.lex_state = 114, .external_lex_state = 2}, + [331] = {.lex_state = 112, .external_lex_state = 2}, + [332] = {.lex_state = 118, .external_lex_state = 2}, + [333] = {.lex_state = 124, .external_lex_state = 2}, [334] = {.lex_state = 124, .external_lex_state = 2}, - [335] = {.lex_state = 34, .external_lex_state = 2}, - [336] = {.lex_state = 1692, .external_lex_state = 2}, - [337] = {.lex_state = 34, .external_lex_state = 2}, - [338] = {.lex_state = 124, .external_lex_state = 2}, + [335] = {.lex_state = 96, .external_lex_state = 2}, + [336] = {.lex_state = 1696, .external_lex_state = 2}, + [337] = {.lex_state = 124, .external_lex_state = 2}, + [338] = {.lex_state = 1696, .external_lex_state = 2}, [339] = {.lex_state = 124, .external_lex_state = 2}, - [340] = {.lex_state = 1692, .external_lex_state = 2}, - [341] = {.lex_state = 116, .external_lex_state = 2}, + [340] = {.lex_state = 34, .external_lex_state = 2}, + [341] = {.lex_state = 34, .external_lex_state = 2}, [342] = {.lex_state = 124, .external_lex_state = 2}, - [343] = {.lex_state = 116, .external_lex_state = 2}, + [343] = {.lex_state = 124, .external_lex_state = 2}, [344] = {.lex_state = 34, .external_lex_state = 2}, - [345] = {.lex_state = 116, .external_lex_state = 2}, - [346] = {.lex_state = 116, .external_lex_state = 2}, - [347] = {.lex_state = 124, .external_lex_state = 2}, - [348] = {.lex_state = 96, .external_lex_state = 2}, - [349] = {.lex_state = 96, .external_lex_state = 2}, - [350] = {.lex_state = 112, .external_lex_state = 2}, - [351] = {.lex_state = 96, .external_lex_state = 2}, - [352] = {.lex_state = 96, .external_lex_state = 2}, - [353] = {.lex_state = 34, .external_lex_state = 2}, - [354] = {.lex_state = 104, .external_lex_state = 2}, - [355] = {.lex_state = 103, .external_lex_state = 2}, - [356] = {.lex_state = 117, .external_lex_state = 2}, - [357] = {.lex_state = 100, .external_lex_state = 2}, - [358] = {.lex_state = 126, .external_lex_state = 2}, + [345] = {.lex_state = 102, .external_lex_state = 2}, + [346] = {.lex_state = 124, .external_lex_state = 2}, + [347] = {.lex_state = 34, .external_lex_state = 2}, + [348] = {.lex_state = 124, .external_lex_state = 2}, + [349] = {.lex_state = 34, .external_lex_state = 2}, + [350] = {.lex_state = 114, .external_lex_state = 2}, + [351] = {.lex_state = 100, .external_lex_state = 2}, + [352] = {.lex_state = 126, .external_lex_state = 2}, + [353] = {.lex_state = 140, .external_lex_state = 2}, + [354] = {.lex_state = 140, .external_lex_state = 2}, + [355] = {.lex_state = 102, .external_lex_state = 2}, + [356] = {.lex_state = 102, .external_lex_state = 2}, + [357] = {.lex_state = 102, .external_lex_state = 2}, + [358] = {.lex_state = 102, .external_lex_state = 2}, [359] = {.lex_state = 126, .external_lex_state = 2}, - [360] = {.lex_state = 117, .external_lex_state = 2}, - [361] = {.lex_state = 140, .external_lex_state = 2}, - [362] = {.lex_state = 140, .external_lex_state = 2}, - [363] = {.lex_state = 126, .external_lex_state = 2}, - [364] = {.lex_state = 104, .external_lex_state = 2}, - [365] = {.lex_state = 104, .external_lex_state = 2}, - [366] = {.lex_state = 104, .external_lex_state = 2}, - [367] = {.lex_state = 104, .external_lex_state = 2}, - [368] = {.lex_state = 102, .external_lex_state = 2}, - [369] = {.lex_state = 118, .external_lex_state = 2}, - [370] = {.lex_state = 118, .external_lex_state = 2}, - [371] = {.lex_state = 118, .external_lex_state = 2}, - [372] = {.lex_state = 118, .external_lex_state = 2}, - [373] = {.lex_state = 118, .external_lex_state = 2}, - [374] = {.lex_state = 144, .external_lex_state = 2}, - [375] = {.lex_state = 126, .external_lex_state = 2}, + [360] = {.lex_state = 115, .external_lex_state = 2}, + [361] = {.lex_state = 115, .external_lex_state = 2}, + [362] = {.lex_state = 106, .external_lex_state = 2}, + [363] = {.lex_state = 1696, .external_lex_state = 2}, + [364] = {.lex_state = 1696, .external_lex_state = 2}, + [365] = {.lex_state = 1696, .external_lex_state = 2}, + [366] = {.lex_state = 1696, .external_lex_state = 2}, + [367] = {.lex_state = 1696, .external_lex_state = 2}, + [368] = {.lex_state = 126, .external_lex_state = 2}, + [369] = {.lex_state = 103, .external_lex_state = 2}, + [370] = {.lex_state = 141, .external_lex_state = 2}, + [371] = {.lex_state = 116, .external_lex_state = 2}, + [372] = {.lex_state = 141, .external_lex_state = 2}, + [373] = {.lex_state = 116, .external_lex_state = 2}, + [374] = {.lex_state = 116, .external_lex_state = 2}, + [375] = {.lex_state = 147, .external_lex_state = 2}, [376] = {.lex_state = 141, .external_lex_state = 2}, - [377] = {.lex_state = 141, .external_lex_state = 2}, - [378] = {.lex_state = 126, .external_lex_state = 2}, + [377] = {.lex_state = 144, .external_lex_state = 2}, + [378] = {.lex_state = 141, .external_lex_state = 2}, [379] = {.lex_state = 141, .external_lex_state = 2}, - [380] = {.lex_state = 141, .external_lex_state = 2}, - [381] = {.lex_state = 141, .external_lex_state = 2}, - [382] = {.lex_state = 118, .external_lex_state = 2}, - [383] = {.lex_state = 141, .external_lex_state = 2}, - [384] = {.lex_state = 147, .external_lex_state = 2}, - [385] = {.lex_state = 105, .external_lex_state = 2}, - [386] = {.lex_state = 105, .external_lex_state = 2}, - [387] = {.lex_state = 145, .external_lex_state = 2}, - [388] = {.lex_state = 143, .external_lex_state = 2}, + [380] = {.lex_state = 103, .external_lex_state = 2}, + [381] = {.lex_state = 116, .external_lex_state = 2}, + [382] = {.lex_state = 116, .external_lex_state = 2}, + [383] = {.lex_state = 126, .external_lex_state = 2}, + [384] = {.lex_state = 126, .external_lex_state = 2}, + [385] = {.lex_state = 116, .external_lex_state = 2}, + [386] = {.lex_state = 141, .external_lex_state = 2}, + [387] = {.lex_state = 125, .external_lex_state = 2}, + [388] = {.lex_state = 125, .external_lex_state = 2}, [389] = {.lex_state = 125, .external_lex_state = 2}, - [390] = {.lex_state = 125, .external_lex_state = 2}, + [390] = {.lex_state = 143, .external_lex_state = 2}, [391] = {.lex_state = 143, .external_lex_state = 2}, - [392] = {.lex_state = 143, .external_lex_state = 2}, - [393] = {.lex_state = 143, .external_lex_state = 2}, - [394] = {.lex_state = 106, .external_lex_state = 2}, - [395] = {.lex_state = 125, .external_lex_state = 2}, - [396] = {.lex_state = 125, .external_lex_state = 2}, - [397] = {.lex_state = 125, .external_lex_state = 2}, - [398] = {.lex_state = 106, .external_lex_state = 2}, - [399] = {.lex_state = 120, .external_lex_state = 2}, - [400] = {.lex_state = 106, .external_lex_state = 2}, - [401] = {.lex_state = 125, .external_lex_state = 2}, - [402] = {.lex_state = 143, .external_lex_state = 2}, - [403] = {.lex_state = 106, .external_lex_state = 2}, - [404] = {.lex_state = 140, .external_lex_state = 2}, - [405] = {.lex_state = 131, .external_lex_state = 2}, - [406] = {.lex_state = 119, .external_lex_state = 2}, + [392] = {.lex_state = 125, .external_lex_state = 2}, + [393] = {.lex_state = 125, .external_lex_state = 2}, + [394] = {.lex_state = 143, .external_lex_state = 2}, + [395] = {.lex_state = 120, .external_lex_state = 2}, + [396] = {.lex_state = 145, .external_lex_state = 2}, + [397] = {.lex_state = 143, .external_lex_state = 2}, + [398] = {.lex_state = 145, .external_lex_state = 2}, + [399] = {.lex_state = 143, .external_lex_state = 2}, + [400] = {.lex_state = 131, .external_lex_state = 2}, + [401] = {.lex_state = 143, .external_lex_state = 2}, + [402] = {.lex_state = 119, .external_lex_state = 2}, + [403] = {.lex_state = 143, .external_lex_state = 2}, + [404] = {.lex_state = 143, .external_lex_state = 2}, + [405] = {.lex_state = 143, .external_lex_state = 2}, + [406] = {.lex_state = 143, .external_lex_state = 2}, [407] = {.lex_state = 143, .external_lex_state = 2}, [408] = {.lex_state = 143, .external_lex_state = 2}, - [409] = {.lex_state = 134, .external_lex_state = 2}, - [410] = {.lex_state = 145, .external_lex_state = 2}, - [411] = {.lex_state = 143, .external_lex_state = 2}, - [412] = {.lex_state = 143, .external_lex_state = 2}, + [409] = {.lex_state = 143, .external_lex_state = 2}, + [410] = {.lex_state = 143, .external_lex_state = 2}, + [411] = {.lex_state = 140, .external_lex_state = 2}, + [412] = {.lex_state = 104, .external_lex_state = 2}, [413] = {.lex_state = 143, .external_lex_state = 2}, [414] = {.lex_state = 143, .external_lex_state = 2}, [415] = {.lex_state = 143, .external_lex_state = 2}, - [416] = {.lex_state = 143, .external_lex_state = 2}, - [417] = {.lex_state = 143, .external_lex_state = 2}, + [416] = {.lex_state = 104, .external_lex_state = 2}, + [417] = {.lex_state = 140, .external_lex_state = 2}, [418] = {.lex_state = 143, .external_lex_state = 2}, - [419] = {.lex_state = 143, .external_lex_state = 2}, - [420] = {.lex_state = 143, .external_lex_state = 2}, - [421] = {.lex_state = 106, .external_lex_state = 2}, - [422] = {.lex_state = 140, .external_lex_state = 2}, + [419] = {.lex_state = 128, .external_lex_state = 2}, + [420] = {.lex_state = 104, .external_lex_state = 2}, + [421] = {.lex_state = 104, .external_lex_state = 2}, + [422] = {.lex_state = 143, .external_lex_state = 2}, [423] = {.lex_state = 143, .external_lex_state = 2}, - [424] = {.lex_state = 143, .external_lex_state = 2}, + [424] = {.lex_state = 140, .external_lex_state = 2}, [425] = {.lex_state = 143, .external_lex_state = 2}, - [426] = {.lex_state = 143, .external_lex_state = 2}, + [426] = {.lex_state = 104, .external_lex_state = 2}, [427] = {.lex_state = 143, .external_lex_state = 2}, - [428] = {.lex_state = 106, .external_lex_state = 2}, + [428] = {.lex_state = 125, .external_lex_state = 2}, [429] = {.lex_state = 143, .external_lex_state = 2}, - [430] = {.lex_state = 143, .external_lex_state = 2}, + [430] = {.lex_state = 104, .external_lex_state = 2}, [431] = {.lex_state = 143, .external_lex_state = 2}, - [432] = {.lex_state = 128, .external_lex_state = 2}, + [432] = {.lex_state = 143, .external_lex_state = 2}, [433] = {.lex_state = 143, .external_lex_state = 2}, [434] = {.lex_state = 143, .external_lex_state = 2}, - [435] = {.lex_state = 143, .external_lex_state = 2}, - [436] = {.lex_state = 140, .external_lex_state = 2}, - [437] = {.lex_state = 121, .external_lex_state = 2}, + [435] = {.lex_state = 134, .external_lex_state = 2}, + [436] = {.lex_state = 143, .external_lex_state = 2}, + [437] = {.lex_state = 128, .external_lex_state = 2}, [438] = {.lex_state = 146, .external_lex_state = 2}, - [439] = {.lex_state = 146, .external_lex_state = 2}, + [439] = {.lex_state = 128, .external_lex_state = 2}, [440] = {.lex_state = 146, .external_lex_state = 2}, [441] = {.lex_state = 146, .external_lex_state = 2}, - [442] = {.lex_state = 107, .external_lex_state = 2}, - [443] = {.lex_state = 128, .external_lex_state = 2}, - [444] = {.lex_state = 146, .external_lex_state = 2}, - [445] = {.lex_state = 146, .external_lex_state = 2}, - [446] = {.lex_state = 128, .external_lex_state = 2}, - [447] = {.lex_state = 128, .external_lex_state = 2}, + [442] = {.lex_state = 128, .external_lex_state = 2}, + [443] = {.lex_state = 107, .external_lex_state = 2}, + [444] = {.lex_state = 128, .external_lex_state = 2}, + [445] = {.lex_state = 126, .external_lex_state = 2}, + [446] = {.lex_state = 143, .external_lex_state = 2}, + [447] = {.lex_state = 146, .external_lex_state = 2}, [448] = {.lex_state = 128, .external_lex_state = 2}, - [449] = {.lex_state = 128, .external_lex_state = 2}, - [450] = {.lex_state = 126, .external_lex_state = 2}, - [451] = {.lex_state = 143, .external_lex_state = 2}, + [449] = {.lex_state = 146, .external_lex_state = 2}, + [450] = {.lex_state = 128, .external_lex_state = 2}, + [451] = {.lex_state = 128, .external_lex_state = 2}, [452] = {.lex_state = 146, .external_lex_state = 2}, [453] = {.lex_state = 128, .external_lex_state = 2}, - [454] = {.lex_state = 128, .external_lex_state = 2}, - [455] = {.lex_state = 143, .external_lex_state = 2}, + [454] = {.lex_state = 143, .external_lex_state = 2}, + [455] = {.lex_state = 126, .external_lex_state = 2}, [456] = {.lex_state = 126, .external_lex_state = 2}, - [457] = {.lex_state = 126, .external_lex_state = 2}, + [457] = {.lex_state = 128, .external_lex_state = 2}, [458] = {.lex_state = 128, .external_lex_state = 2}, [459] = {.lex_state = 128, .external_lex_state = 2}, [460] = {.lex_state = 128, .external_lex_state = 2}, [461] = {.lex_state = 128, .external_lex_state = 2}, [462] = {.lex_state = 128, .external_lex_state = 2}, [463] = {.lex_state = 128, .external_lex_state = 2}, - [464] = {.lex_state = 128, .external_lex_state = 2}, - [465] = {.lex_state = 146, .external_lex_state = 2}, + [464] = {.lex_state = 146, .external_lex_state = 2}, + [465] = {.lex_state = 128, .external_lex_state = 2}, [466] = {.lex_state = 128, .external_lex_state = 2}, - [467] = {.lex_state = 128, .external_lex_state = 2}, + [467] = {.lex_state = 108, .external_lex_state = 2}, [468] = {.lex_state = 128, .external_lex_state = 2}, - [469] = {.lex_state = 128, .external_lex_state = 2}, + [469] = {.lex_state = 132, .external_lex_state = 2}, [470] = {.lex_state = 128, .external_lex_state = 2}, - [471] = {.lex_state = 128, .external_lex_state = 2}, - [472] = {.lex_state = 146, .external_lex_state = 2}, + [471] = {.lex_state = 146, .external_lex_state = 2}, + [472] = {.lex_state = 132, .external_lex_state = 2}, [473] = {.lex_state = 146, .external_lex_state = 2}, [474] = {.lex_state = 128, .external_lex_state = 2}, - [475] = {.lex_state = 128, .external_lex_state = 2}, - [476] = {.lex_state = 146, .external_lex_state = 2}, + [475] = {.lex_state = 146, .external_lex_state = 2}, + [476] = {.lex_state = 128, .external_lex_state = 2}, [477] = {.lex_state = 146, .external_lex_state = 2}, - [478] = {.lex_state = 146, .external_lex_state = 2}, + [478] = {.lex_state = 128, .external_lex_state = 2}, [479] = {.lex_state = 146, .external_lex_state = 2}, - [480] = {.lex_state = 128, .external_lex_state = 2}, - [481] = {.lex_state = 146, .external_lex_state = 2}, + [480] = {.lex_state = 146, .external_lex_state = 2}, + [481] = {.lex_state = 128, .external_lex_state = 2}, [482] = {.lex_state = 128, .external_lex_state = 2}, - [483] = {.lex_state = 128, .external_lex_state = 2}, - [484] = {.lex_state = 108, .external_lex_state = 2}, - [485] = {.lex_state = 132, .external_lex_state = 2}, - [486] = {.lex_state = 132, .external_lex_state = 2}, - [487] = {.lex_state = 128, .external_lex_state = 2}, - [488] = {.lex_state = 128, .external_lex_state = 2}, - [489] = {.lex_state = 146, .external_lex_state = 2}, - [490] = {.lex_state = 128, .external_lex_state = 2}, - [491] = {.lex_state = 121, .external_lex_state = 2}, - [492] = {.lex_state = 146, .external_lex_state = 2}, + [483] = {.lex_state = 146, .external_lex_state = 2}, + [484] = {.lex_state = 128, .external_lex_state = 2}, + [485] = {.lex_state = 121, .external_lex_state = 2}, + [486] = {.lex_state = 128, .external_lex_state = 2}, + [487] = {.lex_state = 121, .external_lex_state = 2}, + [488] = {.lex_state = 146, .external_lex_state = 2}, + [489] = {.lex_state = 128, .external_lex_state = 2}, + [490] = {.lex_state = 146, .external_lex_state = 2}, + [491] = {.lex_state = 146, .external_lex_state = 2}, + [492] = {.lex_state = 128, .external_lex_state = 2}, [493] = {.lex_state = 128, .external_lex_state = 2}, - [494] = {.lex_state = 122, .external_lex_state = 2}, - [495] = {.lex_state = 38, .external_lex_state = 2}, - [496] = {.lex_state = 127, .external_lex_state = 2}, - [497] = {.lex_state = 249, .external_lex_state = 2}, - [498] = {.lex_state = 127, .external_lex_state = 2}, - [499] = {.lex_state = 127, .external_lex_state = 2}, - [500] = {.lex_state = 249, .external_lex_state = 2}, + [494] = {.lex_state = 133, .external_lex_state = 2}, + [495] = {.lex_state = 127, .external_lex_state = 2}, + [496] = {.lex_state = 133, .external_lex_state = 2}, + [497] = {.lex_state = 142, .external_lex_state = 2}, + [498] = {.lex_state = 142, .external_lex_state = 2}, + [499] = {.lex_state = 249, .external_lex_state = 2}, + [500] = {.lex_state = 127, .external_lex_state = 2}, [501] = {.lex_state = 249, .external_lex_state = 2}, [502] = {.lex_state = 127, .external_lex_state = 2}, - [503] = {.lex_state = 249, .external_lex_state = 2}, - [504] = {.lex_state = 133, .external_lex_state = 2}, - [505] = {.lex_state = 142, .external_lex_state = 2}, - [506] = {.lex_state = 142, .external_lex_state = 2}, - [507] = {.lex_state = 142, .external_lex_state = 2}, + [503] = {.lex_state = 127, .external_lex_state = 2}, + [504] = {.lex_state = 249, .external_lex_state = 2}, + [505] = {.lex_state = 249, .external_lex_state = 2}, + [506] = {.lex_state = 127, .external_lex_state = 2}, + [507] = {.lex_state = 249, .external_lex_state = 2}, [508] = {.lex_state = 142, .external_lex_state = 2}, [509] = {.lex_state = 142, .external_lex_state = 2}, [510] = {.lex_state = 142, .external_lex_state = 2}, - [511] = {.lex_state = 133, .external_lex_state = 2}, + [511] = {.lex_state = 142, .external_lex_state = 2}, [512] = {.lex_state = 133, .external_lex_state = 2}, [513] = {.lex_state = 133, .external_lex_state = 2}, - [514] = {.lex_state = 133, .external_lex_state = 2}, - [515] = {.lex_state = 133, .external_lex_state = 2}, + [514] = {.lex_state = 109, .external_lex_state = 2}, + [515] = {.lex_state = 109, .external_lex_state = 2}, [516] = {.lex_state = 133, .external_lex_state = 2}, [517] = {.lex_state = 133, .external_lex_state = 2}, - [518] = {.lex_state = 122, .external_lex_state = 2}, - [519] = {.lex_state = 122, .external_lex_state = 2}, - [520] = {.lex_state = 151, .external_lex_state = 2}, + [518] = {.lex_state = 133, .external_lex_state = 2}, + [519] = {.lex_state = 133, .external_lex_state = 2}, + [520] = {.lex_state = 122, .external_lex_state = 2}, [521] = {.lex_state = 122, .external_lex_state = 2}, - [522] = {.lex_state = 133, .external_lex_state = 2}, + [522] = {.lex_state = 122, .external_lex_state = 2}, [523] = {.lex_state = 122, .external_lex_state = 2}, - [524] = {.lex_state = 122, .external_lex_state = 2}, - [525] = {.lex_state = 122, .external_lex_state = 2}, - [526] = {.lex_state = 127, .external_lex_state = 2}, - [527] = {.lex_state = 109, .external_lex_state = 2}, - [528] = {.lex_state = 249, .external_lex_state = 2}, - [529] = {.lex_state = 109, .external_lex_state = 2}, + [524] = {.lex_state = 150, .external_lex_state = 2}, + [525] = {.lex_state = 151, .external_lex_state = 2}, + [526] = {.lex_state = 38, .external_lex_state = 2}, + [527] = {.lex_state = 1701, .external_lex_state = 2}, + [528] = {.lex_state = 133, .external_lex_state = 2}, + [529] = {.lex_state = 133, .external_lex_state = 2}, [530] = {.lex_state = 133, .external_lex_state = 2}, - [531] = {.lex_state = 133, .external_lex_state = 2}, - [532] = {.lex_state = 127, .external_lex_state = 2}, - [533] = {.lex_state = 133, .external_lex_state = 2}, - [534] = {.lex_state = 133, .external_lex_state = 2}, - [535] = {.lex_state = 1697, .external_lex_state = 2}, + [531] = {.lex_state = 122, .external_lex_state = 2}, + [532] = {.lex_state = 122, .external_lex_state = 2}, + [533] = {.lex_state = 122, .external_lex_state = 2}, + [534] = {.lex_state = 122, .external_lex_state = 2}, + [535] = {.lex_state = 133, .external_lex_state = 2}, [536] = {.lex_state = 122, .external_lex_state = 2}, [537] = {.lex_state = 122, .external_lex_state = 2}, [538] = {.lex_state = 133, .external_lex_state = 2}, - [539] = {.lex_state = 133, .external_lex_state = 2}, - [540] = {.lex_state = 150, .external_lex_state = 2}, - [541] = {.lex_state = 133, .external_lex_state = 2}, - [542] = {.lex_state = 133, .external_lex_state = 2}, + [539] = {.lex_state = 122, .external_lex_state = 2}, + [540] = {.lex_state = 122, .external_lex_state = 2}, + [541] = {.lex_state = 122, .external_lex_state = 2}, + [542] = {.lex_state = 122, .external_lex_state = 2}, [543] = {.lex_state = 122, .external_lex_state = 2}, [544] = {.lex_state = 122, .external_lex_state = 2}, - [545] = {.lex_state = 122, .external_lex_state = 2}, - [546] = {.lex_state = 122, .external_lex_state = 2}, - [547] = {.lex_state = 122, .external_lex_state = 2}, - [548] = {.lex_state = 122, .external_lex_state = 2}, - [549] = {.lex_state = 122, .external_lex_state = 2}, - [550] = {.lex_state = 169, .external_lex_state = 2}, + [545] = {.lex_state = 133, .external_lex_state = 2}, + [546] = {.lex_state = 133, .external_lex_state = 2}, + [547] = {.lex_state = 133, .external_lex_state = 2}, + [548] = {.lex_state = 133, .external_lex_state = 2}, + [549] = {.lex_state = 127, .external_lex_state = 2}, + [550] = {.lex_state = 139, .external_lex_state = 2}, [551] = {.lex_state = 110, .external_lex_state = 2}, - [552] = {.lex_state = 110, .external_lex_state = 2}, + [552] = {.lex_state = 248, .external_lex_state = 2}, [553] = {.lex_state = 110, .external_lex_state = 2}, - [554] = {.lex_state = 1697, .external_lex_state = 2}, - [555] = {.lex_state = 110, .external_lex_state = 2}, + [554] = {.lex_state = 110, .external_lex_state = 2}, + [555] = {.lex_state = 248, .external_lex_state = 2}, [556] = {.lex_state = 248, .external_lex_state = 2}, - [557] = {.lex_state = 110, .external_lex_state = 2}, - [558] = {.lex_state = 169, .external_lex_state = 2}, - [559] = {.lex_state = 122, .external_lex_state = 2}, - [560] = {.lex_state = 138, .external_lex_state = 2}, + [557] = {.lex_state = 248, .external_lex_state = 2}, + [558] = {.lex_state = 138, .external_lex_state = 2}, + [559] = {.lex_state = 143, .external_lex_state = 2}, + [560] = {.lex_state = 128, .external_lex_state = 2}, [561] = {.lex_state = 148, .external_lex_state = 2}, - [562] = {.lex_state = 110, .external_lex_state = 2}, - [563] = {.lex_state = 110, .external_lex_state = 2}, - [564] = {.lex_state = 1697, .external_lex_state = 2}, - [565] = {.lex_state = 248, .external_lex_state = 2}, - [566] = {.lex_state = 139, .external_lex_state = 2}, + [562] = {.lex_state = 143, .external_lex_state = 2}, + [563] = {.lex_state = 148, .external_lex_state = 2}, + [564] = {.lex_state = 110, .external_lex_state = 2}, + [565] = {.lex_state = 128, .external_lex_state = 2}, + [566] = {.lex_state = 110, .external_lex_state = 2}, [567] = {.lex_state = 110, .external_lex_state = 2}, - [568] = {.lex_state = 128, .external_lex_state = 2}, - [569] = {.lex_state = 143, .external_lex_state = 2}, - [570] = {.lex_state = 122, .external_lex_state = 2}, - [571] = {.lex_state = 128, .external_lex_state = 2}, - [572] = {.lex_state = 143, .external_lex_state = 2}, + [568] = {.lex_state = 168, .external_lex_state = 2}, + [569] = {.lex_state = 1701, .external_lex_state = 2}, + [570] = {.lex_state = 110, .external_lex_state = 2}, + [571] = {.lex_state = 110, .external_lex_state = 2}, + [572] = {.lex_state = 110, .external_lex_state = 2}, [573] = {.lex_state = 110, .external_lex_state = 2}, - [574] = {.lex_state = 248, .external_lex_state = 2}, - [575] = {.lex_state = 110, .external_lex_state = 2}, + [574] = {.lex_state = 110, .external_lex_state = 2}, + [575] = {.lex_state = 143, .external_lex_state = 2}, [576] = {.lex_state = 110, .external_lex_state = 2}, - [577] = {.lex_state = 148, .external_lex_state = 2}, - [578] = {.lex_state = 143, .external_lex_state = 2}, + [577] = {.lex_state = 1701, .external_lex_state = 2}, + [578] = {.lex_state = 110, .external_lex_state = 2}, [579] = {.lex_state = 110, .external_lex_state = 2}, - [580] = {.lex_state = 110, .external_lex_state = 2}, - [581] = {.lex_state = 248, .external_lex_state = 2}, + [580] = {.lex_state = 168, .external_lex_state = 2}, + [581] = {.lex_state = 110, .external_lex_state = 2}, [582] = {.lex_state = 110, .external_lex_state = 2}, - [583] = {.lex_state = 248, .external_lex_state = 2}, - [584] = {.lex_state = 169, .external_lex_state = 2}, - [585] = {.lex_state = 110, .external_lex_state = 2}, - [586] = {.lex_state = 110, .external_lex_state = 2}, - [587] = {.lex_state = 128, .external_lex_state = 2}, - [588] = {.lex_state = 169, .external_lex_state = 2}, - [589] = {.lex_state = 169, .external_lex_state = 2}, - [590] = {.lex_state = 169, .external_lex_state = 2}, - [591] = {.lex_state = 169, .external_lex_state = 2}, - [592] = {.lex_state = 169, .external_lex_state = 2}, - [593] = {.lex_state = 169, .external_lex_state = 2}, - [594] = {.lex_state = 169, .external_lex_state = 2}, - [595] = {.lex_state = 169, .external_lex_state = 2}, - [596] = {.lex_state = 169, .external_lex_state = 2}, - [597] = {.lex_state = 169, .external_lex_state = 2}, - [598] = {.lex_state = 169, .external_lex_state = 2}, - [599] = {.lex_state = 136, .external_lex_state = 2}, - [600] = {.lex_state = 136, .external_lex_state = 2}, - [601] = {.lex_state = 169, .external_lex_state = 2}, - [602] = {.lex_state = 169, .external_lex_state = 2}, - [603] = {.lex_state = 169, .external_lex_state = 2}, - [604] = {.lex_state = 169, .external_lex_state = 2}, - [605] = {.lex_state = 169, .external_lex_state = 2}, - [606] = {.lex_state = 169, .external_lex_state = 2}, - [607] = {.lex_state = 169, .external_lex_state = 2}, - [608] = {.lex_state = 169, .external_lex_state = 2}, - [609] = {.lex_state = 169, .external_lex_state = 2}, - [610] = {.lex_state = 169, .external_lex_state = 2}, - [611] = {.lex_state = 169, .external_lex_state = 2}, - [612] = {.lex_state = 169, .external_lex_state = 2}, - [613] = {.lex_state = 169, .external_lex_state = 2}, - [614] = {.lex_state = 169, .external_lex_state = 2}, - [615] = {.lex_state = 169, .external_lex_state = 2}, - [616] = {.lex_state = 169, .external_lex_state = 2}, - [617] = {.lex_state = 169, .external_lex_state = 2}, - [618] = {.lex_state = 169, .external_lex_state = 2}, - [619] = {.lex_state = 169, .external_lex_state = 2}, - [620] = {.lex_state = 169, .external_lex_state = 2}, - [621] = {.lex_state = 169, .external_lex_state = 2}, - [622] = {.lex_state = 169, .external_lex_state = 2}, - [623] = {.lex_state = 169, .external_lex_state = 2}, - [624] = {.lex_state = 169, .external_lex_state = 2}, - [625] = {.lex_state = 169, .external_lex_state = 2}, - [626] = {.lex_state = 169, .external_lex_state = 2}, - [627] = {.lex_state = 169, .external_lex_state = 2}, - [628] = {.lex_state = 169, .external_lex_state = 2}, + [583] = {.lex_state = 168, .external_lex_state = 2}, + [584] = {.lex_state = 122, .external_lex_state = 2}, + [585] = {.lex_state = 122, .external_lex_state = 2}, + [586] = {.lex_state = 128, .external_lex_state = 2}, + [587] = {.lex_state = 248, .external_lex_state = 2}, + [588] = {.lex_state = 168, .external_lex_state = 2}, + [589] = {.lex_state = 168, .external_lex_state = 2}, + [590] = {.lex_state = 168, .external_lex_state = 2}, + [591] = {.lex_state = 168, .external_lex_state = 2}, + [592] = {.lex_state = 168, .external_lex_state = 2}, + [593] = {.lex_state = 168, .external_lex_state = 2}, + [594] = {.lex_state = 168, .external_lex_state = 2}, + [595] = {.lex_state = 168, .external_lex_state = 2}, + [596] = {.lex_state = 168, .external_lex_state = 2}, + [597] = {.lex_state = 168, .external_lex_state = 2}, + [598] = {.lex_state = 168, .external_lex_state = 2}, + [599] = {.lex_state = 168, .external_lex_state = 2}, + [600] = {.lex_state = 168, .external_lex_state = 2}, + [601] = {.lex_state = 168, .external_lex_state = 2}, + [602] = {.lex_state = 167, .external_lex_state = 2}, + [603] = {.lex_state = 168, .external_lex_state = 2}, + [604] = {.lex_state = 168, .external_lex_state = 2}, + [605] = {.lex_state = 168, .external_lex_state = 2}, + [606] = {.lex_state = 149, .external_lex_state = 2}, + [607] = {.lex_state = 136, .external_lex_state = 2}, + [608] = {.lex_state = 168, .external_lex_state = 2}, + [609] = {.lex_state = 136, .external_lex_state = 2}, + [610] = {.lex_state = 168, .external_lex_state = 2}, + [611] = {.lex_state = 168, .external_lex_state = 2}, + [612] = {.lex_state = 168, .external_lex_state = 2}, + [613] = {.lex_state = 168, .external_lex_state = 2}, + [614] = {.lex_state = 168, .external_lex_state = 2}, + [615] = {.lex_state = 168, .external_lex_state = 2}, + [616] = {.lex_state = 167, .external_lex_state = 2}, + [617] = {.lex_state = 168, .external_lex_state = 2}, + [618] = {.lex_state = 168, .external_lex_state = 2}, + [619] = {.lex_state = 149, .external_lex_state = 2}, + [620] = {.lex_state = 168, .external_lex_state = 2}, + [621] = {.lex_state = 168, .external_lex_state = 2}, + [622] = {.lex_state = 168, .external_lex_state = 2}, + [623] = {.lex_state = 168, .external_lex_state = 2}, + [624] = {.lex_state = 168, .external_lex_state = 2}, + [625] = {.lex_state = 168, .external_lex_state = 2}, + [626] = {.lex_state = 168, .external_lex_state = 2}, + [627] = {.lex_state = 168, .external_lex_state = 2}, + [628] = {.lex_state = 168, .external_lex_state = 2}, [629] = {.lex_state = 168, .external_lex_state = 2}, - [630] = {.lex_state = 169, .external_lex_state = 2}, - [631] = {.lex_state = 169, .external_lex_state = 2}, - [632] = {.lex_state = 169, .external_lex_state = 2}, - [633] = {.lex_state = 169, .external_lex_state = 2}, - [634] = {.lex_state = 169, .external_lex_state = 2}, - [635] = {.lex_state = 169, .external_lex_state = 2}, - [636] = {.lex_state = 169, .external_lex_state = 2}, - [637] = {.lex_state = 169, .external_lex_state = 2}, - [638] = {.lex_state = 169, .external_lex_state = 2}, - [639] = {.lex_state = 149, .external_lex_state = 2}, - [640] = {.lex_state = 149, .external_lex_state = 2}, - [641] = {.lex_state = 169, .external_lex_state = 2}, - [642] = {.lex_state = 169, .external_lex_state = 2}, - [643] = {.lex_state = 169, .external_lex_state = 2}, - [644] = {.lex_state = 169, .external_lex_state = 2}, - [645] = {.lex_state = 169, .external_lex_state = 2}, - [646] = {.lex_state = 149, .external_lex_state = 2}, - [647] = {.lex_state = 169, .external_lex_state = 2}, - [648] = {.lex_state = 169, .external_lex_state = 2}, - [649] = {.lex_state = 169, .external_lex_state = 2}, - [650] = {.lex_state = 169, .external_lex_state = 2}, - [651] = {.lex_state = 169, .external_lex_state = 2}, + [630] = {.lex_state = 149, .external_lex_state = 2}, + [631] = {.lex_state = 168, .external_lex_state = 2}, + [632] = {.lex_state = 168, .external_lex_state = 2}, + [633] = {.lex_state = 110, .external_lex_state = 2}, + [634] = {.lex_state = 168, .external_lex_state = 2}, + [635] = {.lex_state = 149, .external_lex_state = 2}, + [636] = {.lex_state = 168, .external_lex_state = 2}, + [637] = {.lex_state = 168, .external_lex_state = 2}, + [638] = {.lex_state = 168, .external_lex_state = 2}, + [639] = {.lex_state = 168, .external_lex_state = 2}, + [640] = {.lex_state = 168, .external_lex_state = 2}, + [641] = {.lex_state = 110, .external_lex_state = 2}, + [642] = {.lex_state = 168, .external_lex_state = 2}, + [643] = {.lex_state = 168, .external_lex_state = 2}, + [644] = {.lex_state = 168, .external_lex_state = 2}, + [645] = {.lex_state = 168, .external_lex_state = 2}, + [646] = {.lex_state = 168, .external_lex_state = 2}, + [647] = {.lex_state = 167, .external_lex_state = 2}, + [648] = {.lex_state = 168, .external_lex_state = 2}, + [649] = {.lex_state = 168, .external_lex_state = 2}, + [650] = {.lex_state = 168, .external_lex_state = 2}, + [651] = {.lex_state = 168, .external_lex_state = 2}, [652] = {.lex_state = 168, .external_lex_state = 2}, [653] = {.lex_state = 168, .external_lex_state = 2}, - [654] = {.lex_state = 149, .external_lex_state = 2}, - [655] = {.lex_state = 169, .external_lex_state = 2}, - [656] = {.lex_state = 169, .external_lex_state = 2}, - [657] = {.lex_state = 169, .external_lex_state = 2}, - [658] = {.lex_state = 169, .external_lex_state = 2}, - [659] = {.lex_state = 169, .external_lex_state = 2}, - [660] = {.lex_state = 169, .external_lex_state = 2}, - [661] = {.lex_state = 169, .external_lex_state = 2}, - [662] = {.lex_state = 149, .external_lex_state = 2}, - [663] = {.lex_state = 169, .external_lex_state = 2}, - [664] = {.lex_state = 110, .external_lex_state = 2}, - [665] = {.lex_state = 169, .external_lex_state = 2}, - [666] = {.lex_state = 169, .external_lex_state = 2}, - [667] = {.lex_state = 169, .external_lex_state = 2}, - [668] = {.lex_state = 169, .external_lex_state = 2}, + [654] = {.lex_state = 168, .external_lex_state = 2}, + [655] = {.lex_state = 168, .external_lex_state = 2}, + [656] = {.lex_state = 168, .external_lex_state = 2}, + [657] = {.lex_state = 168, .external_lex_state = 2}, + [658] = {.lex_state = 168, .external_lex_state = 2}, + [659] = {.lex_state = 168, .external_lex_state = 2}, + [660] = {.lex_state = 168, .external_lex_state = 2}, + [661] = {.lex_state = 168, .external_lex_state = 2}, + [662] = {.lex_state = 168, .external_lex_state = 2}, + [663] = {.lex_state = 168, .external_lex_state = 2}, + [664] = {.lex_state = 168, .external_lex_state = 2}, + [665] = {.lex_state = 168, .external_lex_state = 2}, + [666] = {.lex_state = 168, .external_lex_state = 2}, + [667] = {.lex_state = 168, .external_lex_state = 2}, + [668] = {.lex_state = 168, .external_lex_state = 2}, [669] = {.lex_state = 168, .external_lex_state = 2}, - [670] = {.lex_state = 110, .external_lex_state = 2}, - [671] = {.lex_state = 169, .external_lex_state = 2}, - [672] = {.lex_state = 169, .external_lex_state = 2}, - [673] = {.lex_state = 169, .external_lex_state = 2}, - [674] = {.lex_state = 169, .external_lex_state = 2}, - [675] = {.lex_state = 168, .external_lex_state = 2}, - [676] = {.lex_state = 168, .external_lex_state = 2}, - [677] = {.lex_state = 168, .external_lex_state = 2}, - [678] = {.lex_state = 168, .external_lex_state = 2}, - [679] = {.lex_state = 168, .external_lex_state = 2}, - [680] = {.lex_state = 168, .external_lex_state = 2}, - [681] = {.lex_state = 168, .external_lex_state = 2}, - [682] = {.lex_state = 168, .external_lex_state = 2}, - [683] = {.lex_state = 168, .external_lex_state = 2}, - [684] = {.lex_state = 168, .external_lex_state = 2}, - [685] = {.lex_state = 168, .external_lex_state = 2}, - [686] = {.lex_state = 168, .external_lex_state = 2}, - [687] = {.lex_state = 168, .external_lex_state = 2}, - [688] = {.lex_state = 168, .external_lex_state = 2}, - [689] = {.lex_state = 37, .external_lex_state = 2}, - [690] = {.lex_state = 168, .external_lex_state = 2}, - [691] = {.lex_state = 168, .external_lex_state = 2}, - [692] = {.lex_state = 168, .external_lex_state = 2}, - [693] = {.lex_state = 168, .external_lex_state = 2}, - [694] = {.lex_state = 168, .external_lex_state = 2}, - [695] = {.lex_state = 168, .external_lex_state = 2}, - [696] = {.lex_state = 168, .external_lex_state = 2}, - [697] = {.lex_state = 168, .external_lex_state = 2}, - [698] = {.lex_state = 168, .external_lex_state = 2}, - [699] = {.lex_state = 168, .external_lex_state = 2}, - [700] = {.lex_state = 168, .external_lex_state = 2}, - [701] = {.lex_state = 168, .external_lex_state = 2}, - [702] = {.lex_state = 168, .external_lex_state = 2}, - [703] = {.lex_state = 168, .external_lex_state = 2}, - [704] = {.lex_state = 168, .external_lex_state = 2}, - [705] = {.lex_state = 168, .external_lex_state = 2}, - [706] = {.lex_state = 168, .external_lex_state = 2}, - [707] = {.lex_state = 168, .external_lex_state = 2}, - [708] = {.lex_state = 168, .external_lex_state = 2}, - [709] = {.lex_state = 168, .external_lex_state = 2}, - [710] = {.lex_state = 168, .external_lex_state = 2}, - [711] = {.lex_state = 149, .external_lex_state = 2}, - [712] = {.lex_state = 168, .external_lex_state = 2}, - [713] = {.lex_state = 168, .external_lex_state = 2}, - [714] = {.lex_state = 168, .external_lex_state = 2}, - [715] = {.lex_state = 168, .external_lex_state = 2}, - [716] = {.lex_state = 168, .external_lex_state = 2}, - [717] = {.lex_state = 168, .external_lex_state = 2}, - [718] = {.lex_state = 168, .external_lex_state = 2}, - [719] = {.lex_state = 168, .external_lex_state = 2}, - [720] = {.lex_state = 168, .external_lex_state = 2}, - [721] = {.lex_state = 168, .external_lex_state = 2}, - [722] = {.lex_state = 168, .external_lex_state = 2}, - [723] = {.lex_state = 168, .external_lex_state = 2}, - [724] = {.lex_state = 168, .external_lex_state = 2}, - [725] = {.lex_state = 168, .external_lex_state = 2}, - [726] = {.lex_state = 168, .external_lex_state = 2}, - [727] = {.lex_state = 168, .external_lex_state = 2}, - [728] = {.lex_state = 168, .external_lex_state = 2}, - [729] = {.lex_state = 168, .external_lex_state = 2}, - [730] = {.lex_state = 168, .external_lex_state = 2}, - [731] = {.lex_state = 168, .external_lex_state = 2}, - [732] = {.lex_state = 168, .external_lex_state = 2}, - [733] = {.lex_state = 168, .external_lex_state = 2}, - [734] = {.lex_state = 168, .external_lex_state = 2}, - [735] = {.lex_state = 168, .external_lex_state = 2}, - [736] = {.lex_state = 149, .external_lex_state = 2}, - [737] = {.lex_state = 168, .external_lex_state = 2}, - [738] = {.lex_state = 168, .external_lex_state = 2}, - [739] = {.lex_state = 168, .external_lex_state = 2}, - [740] = {.lex_state = 168, .external_lex_state = 2}, - [741] = {.lex_state = 168, .external_lex_state = 2}, - [742] = {.lex_state = 168, .external_lex_state = 2}, - [743] = {.lex_state = 168, .external_lex_state = 2}, - [744] = {.lex_state = 168, .external_lex_state = 2}, - [745] = {.lex_state = 168, .external_lex_state = 2}, - [746] = {.lex_state = 168, .external_lex_state = 2}, - [747] = {.lex_state = 168, .external_lex_state = 2}, - [748] = {.lex_state = 168, .external_lex_state = 2}, - [749] = {.lex_state = 168, .external_lex_state = 2}, - [750] = {.lex_state = 168, .external_lex_state = 2}, - [751] = {.lex_state = 168, .external_lex_state = 2}, + [670] = {.lex_state = 168, .external_lex_state = 2}, + [671] = {.lex_state = 168, .external_lex_state = 2}, + [672] = {.lex_state = 149, .external_lex_state = 2}, + [673] = {.lex_state = 168, .external_lex_state = 2}, + [674] = {.lex_state = 167, .external_lex_state = 2}, + [675] = {.lex_state = 167, .external_lex_state = 2}, + [676] = {.lex_state = 167, .external_lex_state = 2}, + [677] = {.lex_state = 167, .external_lex_state = 2}, + [678] = {.lex_state = 167, .external_lex_state = 2}, + [679] = {.lex_state = 167, .external_lex_state = 2}, + [680] = {.lex_state = 167, .external_lex_state = 2}, + [681] = {.lex_state = 167, .external_lex_state = 2}, + [682] = {.lex_state = 167, .external_lex_state = 2}, + [683] = {.lex_state = 167, .external_lex_state = 2}, + [684] = {.lex_state = 167, .external_lex_state = 2}, + [685] = {.lex_state = 167, .external_lex_state = 2}, + [686] = {.lex_state = 149, .external_lex_state = 2}, + [687] = {.lex_state = 167, .external_lex_state = 2}, + [688] = {.lex_state = 167, .external_lex_state = 2}, + [689] = {.lex_state = 167, .external_lex_state = 2}, + [690] = {.lex_state = 167, .external_lex_state = 2}, + [691] = {.lex_state = 167, .external_lex_state = 2}, + [692] = {.lex_state = 167, .external_lex_state = 2}, + [693] = {.lex_state = 167, .external_lex_state = 2}, + [694] = {.lex_state = 167, .external_lex_state = 2}, + [695] = {.lex_state = 167, .external_lex_state = 2}, + [696] = {.lex_state = 167, .external_lex_state = 2}, + [697] = {.lex_state = 167, .external_lex_state = 2}, + [698] = {.lex_state = 167, .external_lex_state = 2}, + [699] = {.lex_state = 167, .external_lex_state = 2}, + [700] = {.lex_state = 167, .external_lex_state = 2}, + [701] = {.lex_state = 167, .external_lex_state = 2}, + [702] = {.lex_state = 167, .external_lex_state = 2}, + [703] = {.lex_state = 167, .external_lex_state = 2}, + [704] = {.lex_state = 167, .external_lex_state = 2}, + [705] = {.lex_state = 167, .external_lex_state = 2}, + [706] = {.lex_state = 167, .external_lex_state = 2}, + [707] = {.lex_state = 167, .external_lex_state = 2}, + [708] = {.lex_state = 167, .external_lex_state = 2}, + [709] = {.lex_state = 167, .external_lex_state = 2}, + [710] = {.lex_state = 167, .external_lex_state = 2}, + [711] = {.lex_state = 167, .external_lex_state = 2}, + [712] = {.lex_state = 167, .external_lex_state = 2}, + [713] = {.lex_state = 167, .external_lex_state = 2}, + [714] = {.lex_state = 167, .external_lex_state = 2}, + [715] = {.lex_state = 167, .external_lex_state = 2}, + [716] = {.lex_state = 167, .external_lex_state = 2}, + [717] = {.lex_state = 167, .external_lex_state = 2}, + [718] = {.lex_state = 167, .external_lex_state = 2}, + [719] = {.lex_state = 167, .external_lex_state = 2}, + [720] = {.lex_state = 167, .external_lex_state = 2}, + [721] = {.lex_state = 167, .external_lex_state = 2}, + [722] = {.lex_state = 167, .external_lex_state = 2}, + [723] = {.lex_state = 167, .external_lex_state = 2}, + [724] = {.lex_state = 149, .external_lex_state = 2}, + [725] = {.lex_state = 167, .external_lex_state = 2}, + [726] = {.lex_state = 167, .external_lex_state = 2}, + [727] = {.lex_state = 167, .external_lex_state = 2}, + [728] = {.lex_state = 167, .external_lex_state = 2}, + [729] = {.lex_state = 37, .external_lex_state = 2}, + [730] = {.lex_state = 167, .external_lex_state = 2}, + [731] = {.lex_state = 167, .external_lex_state = 2}, + [732] = {.lex_state = 167, .external_lex_state = 2}, + [733] = {.lex_state = 167, .external_lex_state = 2}, + [734] = {.lex_state = 167, .external_lex_state = 2}, + [735] = {.lex_state = 167, .external_lex_state = 2}, + [736] = {.lex_state = 167, .external_lex_state = 2}, + [737] = {.lex_state = 167, .external_lex_state = 2}, + [738] = {.lex_state = 167, .external_lex_state = 2}, + [739] = {.lex_state = 167, .external_lex_state = 2}, + [740] = {.lex_state = 167, .external_lex_state = 2}, + [741] = {.lex_state = 167, .external_lex_state = 2}, + [742] = {.lex_state = 167, .external_lex_state = 2}, + [743] = {.lex_state = 167, .external_lex_state = 2}, + [744] = {.lex_state = 167, .external_lex_state = 2}, + [745] = {.lex_state = 167, .external_lex_state = 2}, + [746] = {.lex_state = 167, .external_lex_state = 2}, + [747] = {.lex_state = 167, .external_lex_state = 2}, + [748] = {.lex_state = 167, .external_lex_state = 2}, + [749] = {.lex_state = 167, .external_lex_state = 2}, + [750] = {.lex_state = 167, .external_lex_state = 2}, + [751] = {.lex_state = 167, .external_lex_state = 2}, [752] = {.lex_state = 37, .external_lex_state = 2}, - [753] = {.lex_state = 37, .external_lex_state = 2}, - [754] = {.lex_state = 33, .external_lex_state = 2}, - [755] = {.lex_state = 33, .external_lex_state = 2}, - [756] = {.lex_state = 33, .external_lex_state = 2}, - [757] = {.lex_state = 33, .external_lex_state = 2}, - [758] = {.lex_state = 41, .external_lex_state = 2}, - [759] = {.lex_state = 33, .external_lex_state = 2}, - [760] = {.lex_state = 41, .external_lex_state = 2}, - [761] = {.lex_state = 1702, .external_lex_state = 2}, - [762] = {.lex_state = 1702, .external_lex_state = 2}, - [763] = {.lex_state = 3124}, - [764] = {.lex_state = 1702, .external_lex_state = 2}, - [765] = {.lex_state = 1702, .external_lex_state = 2}, - [766] = {.lex_state = 1702, .external_lex_state = 2}, - [767] = {.lex_state = 33, .external_lex_state = 2}, + [753] = {.lex_state = 3134}, + [754] = {.lex_state = 37, .external_lex_state = 2}, + [755] = {.lex_state = 3139}, + [756] = {.lex_state = 3278}, + [757] = {.lex_state = 3126}, + [758] = {.lex_state = 3124}, + [759] = {.lex_state = 3280}, + [760] = {.lex_state = 3140}, + [761] = {.lex_state = 3135}, + [762] = {.lex_state = 3142}, + [763] = {.lex_state = 3140}, + [764] = {.lex_state = 33, .external_lex_state = 2}, + [765] = {.lex_state = 3282}, + [766] = {.lex_state = 3280}, + [767] = {.lex_state = 3128}, [768] = {.lex_state = 33, .external_lex_state = 2}, - [769] = {.lex_state = 1702, .external_lex_state = 2}, - [770] = {.lex_state = 1702, .external_lex_state = 2}, - [771] = {.lex_state = 33, .external_lex_state = 2}, - [772] = {.lex_state = 1702, .external_lex_state = 2}, - [773] = {.lex_state = 1702, .external_lex_state = 2}, - [774] = {.lex_state = 3139}, - [775] = {.lex_state = 1702, .external_lex_state = 2}, - [776] = {.lex_state = 33, .external_lex_state = 2}, - [777] = {.lex_state = 1702, .external_lex_state = 2}, - [778] = {.lex_state = 3140}, - [779] = {.lex_state = 1702, .external_lex_state = 2}, - [780] = {.lex_state = 3264}, - [781] = {.lex_state = 3120}, - [782] = {.lex_state = 3114}, - [783] = {.lex_state = 3125}, - [784] = {.lex_state = 3127}, - [785] = {.lex_state = 3270}, - [786] = {.lex_state = 1702, .external_lex_state = 2}, - [787] = {.lex_state = 1702, .external_lex_state = 2}, - [788] = {.lex_state = 3125}, - [789] = {.lex_state = 1702, .external_lex_state = 2}, - [790] = {.lex_state = 3266}, - [791] = {.lex_state = 3126}, - [792] = {.lex_state = 3129}, - [793] = {.lex_state = 3129}, - [794] = {.lex_state = 3126}, - [795] = {.lex_state = 3266}, - [796] = {.lex_state = 3264}, - [797] = {.lex_state = 3116}, - [798] = {.lex_state = 3116}, - [799] = {.lex_state = 3270}, - [800] = {.lex_state = 3126}, - [801] = {.lex_state = 3126}, - [802] = {.lex_state = 3126}, - [803] = {.lex_state = 3268}, - [804] = {.lex_state = 3268}, - [805] = {.lex_state = 3131}, - [806] = {.lex_state = 3118}, - [807] = {.lex_state = 3118}, - [808] = {.lex_state = 3131}, - [809] = {.lex_state = 3268}, - [810] = {.lex_state = 3266}, - [811] = {.lex_state = 3118}, - [812] = {.lex_state = 3142}, - [813] = {.lex_state = 3268}, - [814] = {.lex_state = 3118}, - [815] = {.lex_state = 3131}, - [816] = {.lex_state = 3133}, - [817] = {.lex_state = 3118}, - [818] = {.lex_state = 3131}, - [819] = {.lex_state = 3266}, - [820] = {.lex_state = 3131}, - [821] = {.lex_state = 3268}, - [822] = {.lex_state = 3268}, - [823] = {.lex_state = 3135}, - [824] = {.lex_state = 3135}, - [825] = {.lex_state = 3268}, - [826] = {.lex_state = 3268}, - [827] = {.lex_state = 3268}, - [828] = {.lex_state = 3268}, - [829] = {.lex_state = 41, .external_lex_state = 2}, - [830] = {.lex_state = 41, .external_lex_state = 2}, - [831] = {.lex_state = 3137}, - [832] = {.lex_state = 41, .external_lex_state = 2}, - [833] = {.lex_state = 41, .external_lex_state = 2}, - [834] = {.lex_state = 41, .external_lex_state = 2}, - [835] = {.lex_state = 41, .external_lex_state = 2}, - [836] = {.lex_state = 41, .external_lex_state = 2}, - [837] = {.lex_state = 41, .external_lex_state = 2}, - [838] = {.lex_state = 3137}, - [839] = {.lex_state = 41, .external_lex_state = 2}, - [840] = {.lex_state = 3137}, - [841] = {.lex_state = 41, .external_lex_state = 2}, + [769] = {.lex_state = 3282}, + [770] = {.lex_state = 3278}, + [771] = {.lex_state = 3128}, + [772] = {.lex_state = 3141}, + [773] = {.lex_state = 3141}, + [774] = {.lex_state = 3141}, + [775] = {.lex_state = 3141}, + [776] = {.lex_state = 3144}, + [777] = {.lex_state = 3144}, + [778] = {.lex_state = 33, .external_lex_state = 2}, + [779] = {.lex_state = 3141}, + [780] = {.lex_state = 3130}, + [781] = {.lex_state = 3130}, + [782] = {.lex_state = 3284}, + [783] = {.lex_state = 3284}, + [784] = {.lex_state = 3284}, + [785] = {.lex_state = 3130}, + [786] = {.lex_state = 3130}, + [787] = {.lex_state = 3148}, + [788] = {.lex_state = 3284}, + [789] = {.lex_state = 3130}, + [790] = {.lex_state = 3284}, + [791] = {.lex_state = 3146}, + [792] = {.lex_state = 3146}, + [793] = {.lex_state = 41, .external_lex_state = 2}, + [794] = {.lex_state = 3146}, + [795] = {.lex_state = 3146}, + [796] = {.lex_state = 3146}, + [797] = {.lex_state = 3137}, + [798] = {.lex_state = 3282}, + [799] = {.lex_state = 33, .external_lex_state = 2}, + [800] = {.lex_state = 41, .external_lex_state = 2}, + [801] = {.lex_state = 3282}, + [802] = {.lex_state = 33, .external_lex_state = 2}, + [803] = {.lex_state = 1706, .external_lex_state = 2}, + [804] = {.lex_state = 3284}, + [805] = {.lex_state = 1706, .external_lex_state = 2}, + [806] = {.lex_state = 33, .external_lex_state = 2}, + [807] = {.lex_state = 3284}, + [808] = {.lex_state = 3284}, + [809] = {.lex_state = 33, .external_lex_state = 2}, + [810] = {.lex_state = 33, .external_lex_state = 2}, + [811] = {.lex_state = 1706, .external_lex_state = 2}, + [812] = {.lex_state = 1706, .external_lex_state = 2}, + [813] = {.lex_state = 3284}, + [814] = {.lex_state = 1706, .external_lex_state = 2}, + [815] = {.lex_state = 1706, .external_lex_state = 2}, + [816] = {.lex_state = 3150}, + [817] = {.lex_state = 1706, .external_lex_state = 2}, + [818] = {.lex_state = 3150}, + [819] = {.lex_state = 1706, .external_lex_state = 2}, + [820] = {.lex_state = 33, .external_lex_state = 2}, + [821] = {.lex_state = 3284}, + [822] = {.lex_state = 1706, .external_lex_state = 2}, + [823] = {.lex_state = 1706, .external_lex_state = 2}, + [824] = {.lex_state = 3152}, + [825] = {.lex_state = 3152}, + [826] = {.lex_state = 3152}, + [827] = {.lex_state = 1706, .external_lex_state = 2}, + [828] = {.lex_state = 1706, .external_lex_state = 2}, + [829] = {.lex_state = 1706, .external_lex_state = 2}, + [830] = {.lex_state = 3152}, + [831] = {.lex_state = 1706, .external_lex_state = 2}, + [832] = {.lex_state = 3152}, + [833] = {.lex_state = 1706, .external_lex_state = 2}, + [834] = {.lex_state = 3286}, + [835] = {.lex_state = 3154}, + [836] = {.lex_state = 3286}, + [837] = {.lex_state = 3154}, + [838] = {.lex_state = 3132}, + [839] = {.lex_state = 3132}, + [840] = {.lex_state = 3154}, + [841] = {.lex_state = 3154}, [842] = {.lex_state = 41, .external_lex_state = 2}, - [843] = {.lex_state = 3137}, - [844] = {.lex_state = 3137}, + [843] = {.lex_state = 41, .external_lex_state = 2}, + [844] = {.lex_state = 41, .external_lex_state = 2}, [845] = {.lex_state = 41, .external_lex_state = 2}, [846] = {.lex_state = 41, .external_lex_state = 2}, [847] = {.lex_state = 41, .external_lex_state = 2}, @@ -62124,20 +62318,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [854] = {.lex_state = 41, .external_lex_state = 2}, [855] = {.lex_state = 41, .external_lex_state = 2}, [856] = {.lex_state = 41, .external_lex_state = 2}, - [857] = {.lex_state = 41, .external_lex_state = 2}, + [857] = {.lex_state = 3286}, [858] = {.lex_state = 41, .external_lex_state = 2}, - [859] = {.lex_state = 3144}, - [860] = {.lex_state = 3144}, - [861] = {.lex_state = 3144}, - [862] = {.lex_state = 3272}, - [863] = {.lex_state = 3122}, - [864] = {.lex_state = 3144}, - [865] = {.lex_state = 3122}, - [866] = {.lex_state = 3272}, - [867] = {.lex_state = 3272}, - [868] = {.lex_state = 3272}, - [869] = {.lex_state = 41, .external_lex_state = 2}, - [870] = {.lex_state = 41, .external_lex_state = 2}, + [859] = {.lex_state = 41, .external_lex_state = 2}, + [860] = {.lex_state = 41, .external_lex_state = 2}, + [861] = {.lex_state = 41, .external_lex_state = 2}, + [862] = {.lex_state = 41, .external_lex_state = 2}, + [863] = {.lex_state = 41, .external_lex_state = 2}, + [864] = {.lex_state = 41, .external_lex_state = 2}, + [865] = {.lex_state = 3286}, + [866] = {.lex_state = 41, .external_lex_state = 2}, + [867] = {.lex_state = 41, .external_lex_state = 2}, + [868] = {.lex_state = 41, .external_lex_state = 2}, + [869] = {.lex_state = 3156}, + [870] = {.lex_state = 3156}, [871] = {.lex_state = 41, .external_lex_state = 2}, [872] = {.lex_state = 41, .external_lex_state = 2}, [873] = {.lex_state = 41, .external_lex_state = 2}, @@ -62155,8 +62349,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [885] = {.lex_state = 41, .external_lex_state = 2}, [886] = {.lex_state = 41, .external_lex_state = 2}, [887] = {.lex_state = 41, .external_lex_state = 2}, - [888] = {.lex_state = 3146}, - [889] = {.lex_state = 3146}, + [888] = {.lex_state = 41, .external_lex_state = 2}, + [889] = {.lex_state = 41, .external_lex_state = 2}, [890] = {.lex_state = 40, .external_lex_state = 2}, [891] = {.lex_state = 40, .external_lex_state = 2}, [892] = {.lex_state = 40, .external_lex_state = 2}, @@ -62192,8 +62386,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [922] = {.lex_state = 40, .external_lex_state = 2}, [923] = {.lex_state = 40, .external_lex_state = 2}, [924] = {.lex_state = 40, .external_lex_state = 2}, - [925] = {.lex_state = 41, .external_lex_state = 2}, - [926] = {.lex_state = 41, .external_lex_state = 2}, + [925] = {.lex_state = 40, .external_lex_state = 2}, + [926] = {.lex_state = 40, .external_lex_state = 2}, [927] = {.lex_state = 40, .external_lex_state = 2}, [928] = {.lex_state = 40, .external_lex_state = 2}, [929] = {.lex_state = 40, .external_lex_state = 2}, @@ -62207,7 +62401,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [937] = {.lex_state = 40, .external_lex_state = 2}, [938] = {.lex_state = 40, .external_lex_state = 2}, [939] = {.lex_state = 40, .external_lex_state = 2}, - [940] = {.lex_state = 41, .external_lex_state = 2}, + [940] = {.lex_state = 40, .external_lex_state = 2}, [941] = {.lex_state = 40, .external_lex_state = 2}, [942] = {.lex_state = 40, .external_lex_state = 2}, [943] = {.lex_state = 40, .external_lex_state = 2}, @@ -62233,14 +62427,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [963] = {.lex_state = 40, .external_lex_state = 2}, [964] = {.lex_state = 40, .external_lex_state = 2}, [965] = {.lex_state = 40, .external_lex_state = 2}, - [966] = {.lex_state = 40, .external_lex_state = 2}, + [966] = {.lex_state = 41, .external_lex_state = 2}, [967] = {.lex_state = 40, .external_lex_state = 2}, [968] = {.lex_state = 40, .external_lex_state = 2}, [969] = {.lex_state = 40, .external_lex_state = 2}, [970] = {.lex_state = 40, .external_lex_state = 2}, [971] = {.lex_state = 40, .external_lex_state = 2}, [972] = {.lex_state = 40, .external_lex_state = 2}, - [973] = {.lex_state = 40, .external_lex_state = 2}, + [973] = {.lex_state = 41, .external_lex_state = 2}, [974] = {.lex_state = 40, .external_lex_state = 2}, [975] = {.lex_state = 40, .external_lex_state = 2}, [976] = {.lex_state = 40, .external_lex_state = 2}, @@ -62314,7 +62508,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1044] = {.lex_state = 40, .external_lex_state = 2}, [1045] = {.lex_state = 40, .external_lex_state = 2}, [1046] = {.lex_state = 40, .external_lex_state = 2}, - [1047] = {.lex_state = 40, .external_lex_state = 2}, + [1047] = {.lex_state = 41, .external_lex_state = 2}, [1048] = {.lex_state = 40, .external_lex_state = 2}, [1049] = {.lex_state = 39, .external_lex_state = 2}, [1050] = {.lex_state = 40, .external_lex_state = 2}, @@ -62331,9 +62525,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1061] = {.lex_state = 40, .external_lex_state = 2}, [1062] = {.lex_state = 40, .external_lex_state = 2}, [1063] = {.lex_state = 40, .external_lex_state = 2}, - [1064] = {.lex_state = 1694, .external_lex_state = 2}, - [1065] = {.lex_state = 40, .external_lex_state = 2}, - [1066] = {.lex_state = 40, .external_lex_state = 2}, + [1064] = {.lex_state = 3125}, + [1065] = {.lex_state = 3143}, + [1066] = {.lex_state = 3136}, [1067] = {.lex_state = 40, .external_lex_state = 2}, [1068] = {.lex_state = 40, .external_lex_state = 2}, [1069] = {.lex_state = 40, .external_lex_state = 2}, @@ -62361,7 +62555,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1091] = {.lex_state = 40, .external_lex_state = 2}, [1092] = {.lex_state = 40, .external_lex_state = 2}, [1093] = {.lex_state = 40, .external_lex_state = 2}, - [1094] = {.lex_state = 40, .external_lex_state = 2}, + [1094] = {.lex_state = 3127}, [1095] = {.lex_state = 40, .external_lex_state = 2}, [1096] = {.lex_state = 40, .external_lex_state = 2}, [1097] = {.lex_state = 40, .external_lex_state = 2}, @@ -62385,2045 +62579,2045 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1115] = {.lex_state = 40, .external_lex_state = 2}, [1116] = {.lex_state = 40, .external_lex_state = 2}, [1117] = {.lex_state = 40, .external_lex_state = 2}, - [1118] = {.lex_state = 40, .external_lex_state = 2}, + [1118] = {.lex_state = 1698, .external_lex_state = 2}, [1119] = {.lex_state = 40, .external_lex_state = 2}, [1120] = {.lex_state = 40, .external_lex_state = 2}, [1121] = {.lex_state = 40, .external_lex_state = 2}, [1122] = {.lex_state = 40, .external_lex_state = 2}, [1123] = {.lex_state = 40, .external_lex_state = 2}, [1124] = {.lex_state = 40, .external_lex_state = 2}, - [1125] = {.lex_state = 1694, .external_lex_state = 2}, + [1125] = {.lex_state = 40, .external_lex_state = 2}, [1126] = {.lex_state = 40, .external_lex_state = 2}, [1127] = {.lex_state = 40, .external_lex_state = 2}, [1128] = {.lex_state = 40, .external_lex_state = 2}, [1129] = {.lex_state = 40, .external_lex_state = 2}, - [1130] = {.lex_state = 1694, .external_lex_state = 2}, - [1131] = {.lex_state = 1694, .external_lex_state = 2}, - [1132] = {.lex_state = 1694, .external_lex_state = 2}, - [1133] = {.lex_state = 1694, .external_lex_state = 2}, - [1134] = {.lex_state = 40, .external_lex_state = 2}, - [1135] = {.lex_state = 32, .external_lex_state = 2}, - [1136] = {.lex_state = 40, .external_lex_state = 2}, - [1137] = {.lex_state = 32, .external_lex_state = 2}, - [1138] = {.lex_state = 40, .external_lex_state = 2}, - [1139] = {.lex_state = 40, .external_lex_state = 2}, - [1140] = {.lex_state = 40, .external_lex_state = 2}, - [1141] = {.lex_state = 40, .external_lex_state = 2}, - [1142] = {.lex_state = 32, .external_lex_state = 2}, - [1143] = {.lex_state = 1694, .external_lex_state = 2}, - [1144] = {.lex_state = 32, .external_lex_state = 2}, - [1145] = {.lex_state = 32, .external_lex_state = 2}, - [1146] = {.lex_state = 34, .external_lex_state = 2}, - [1147] = {.lex_state = 124, .external_lex_state = 2}, - [1148] = {.lex_state = 124, .external_lex_state = 2}, - [1149] = {.lex_state = 3121}, - [1150] = {.lex_state = 32, .external_lex_state = 2}, - [1151] = {.lex_state = 3271}, - [1152] = {.lex_state = 42, .external_lex_state = 2}, - [1153] = {.lex_state = 45, .external_lex_state = 2}, - [1154] = {.lex_state = 45, .external_lex_state = 2}, - [1155] = {.lex_state = 3265}, - [1156] = {.lex_state = 3128}, - [1157] = {.lex_state = 42, .external_lex_state = 2}, - [1158] = {.lex_state = 3115}, - [1159] = {.lex_state = 45, .external_lex_state = 2}, - [1160] = {.lex_state = 34, .external_lex_state = 2}, - [1161] = {.lex_state = 42, .external_lex_state = 2}, - [1162] = {.lex_state = 3141}, - [1163] = {.lex_state = 45, .external_lex_state = 2}, - [1164] = {.lex_state = 42, .external_lex_state = 2}, - [1165] = {.lex_state = 3117}, - [1166] = {.lex_state = 3130}, - [1167] = {.lex_state = 3267}, - [1168] = {.lex_state = 3267}, - [1169] = {.lex_state = 45, .external_lex_state = 2}, - [1170] = {.lex_state = 3265}, - [1171] = {.lex_state = 3271}, - [1172] = {.lex_state = 3117}, - [1173] = {.lex_state = 45, .external_lex_state = 2}, - [1174] = {.lex_state = 45, .external_lex_state = 2}, - [1175] = {.lex_state = 45, .external_lex_state = 2}, - [1176] = {.lex_state = 3130}, - [1177] = {.lex_state = 3119}, - [1178] = {.lex_state = 42, .external_lex_state = 2}, - [1179] = {.lex_state = 42, .external_lex_state = 2}, - [1180] = {.lex_state = 42, .external_lex_state = 2}, - [1181] = {.lex_state = 3119}, - [1182] = {.lex_state = 3132}, - [1183] = {.lex_state = 42, .external_lex_state = 2}, - [1184] = {.lex_state = 42, .external_lex_state = 2}, - [1185] = {.lex_state = 3132}, - [1186] = {.lex_state = 3269}, - [1187] = {.lex_state = 3269}, - [1188] = {.lex_state = 3132}, - [1189] = {.lex_state = 3269}, - [1190] = {.lex_state = 3119}, - [1191] = {.lex_state = 3269}, - [1192] = {.lex_state = 42, .external_lex_state = 2}, - [1193] = {.lex_state = 3269}, - [1194] = {.lex_state = 3119}, - [1195] = {.lex_state = 3134}, - [1196] = {.lex_state = 3119}, - [1197] = {.lex_state = 3132}, - [1198] = {.lex_state = 3143}, - [1199] = {.lex_state = 3267}, + [1130] = {.lex_state = 40, .external_lex_state = 2}, + [1131] = {.lex_state = 40, .external_lex_state = 2}, + [1132] = {.lex_state = 1698, .external_lex_state = 2}, + [1133] = {.lex_state = 3281}, + [1134] = {.lex_state = 3279}, + [1135] = {.lex_state = 40, .external_lex_state = 2}, + [1136] = {.lex_state = 1698, .external_lex_state = 2}, + [1137] = {.lex_state = 3129}, + [1138] = {.lex_state = 1698, .external_lex_state = 2}, + [1139] = {.lex_state = 3145}, + [1140] = {.lex_state = 3145}, + [1141] = {.lex_state = 3281}, + [1142] = {.lex_state = 1698, .external_lex_state = 2}, + [1143] = {.lex_state = 3283}, + [1144] = {.lex_state = 3279}, + [1145] = {.lex_state = 3283}, + [1146] = {.lex_state = 3129}, + [1147] = {.lex_state = 40, .external_lex_state = 2}, + [1148] = {.lex_state = 40, .external_lex_state = 2}, + [1149] = {.lex_state = 3147}, + [1150] = {.lex_state = 3147}, + [1151] = {.lex_state = 40, .external_lex_state = 2}, + [1152] = {.lex_state = 40, .external_lex_state = 2}, + [1153] = {.lex_state = 3131}, + [1154] = {.lex_state = 3149}, + [1155] = {.lex_state = 3138}, + [1156] = {.lex_state = 3283}, + [1157] = {.lex_state = 40, .external_lex_state = 2}, + [1158] = {.lex_state = 3283}, + [1159] = {.lex_state = 3285}, + [1160] = {.lex_state = 32, .external_lex_state = 2}, + [1161] = {.lex_state = 3147}, + [1162] = {.lex_state = 32, .external_lex_state = 2}, + [1163] = {.lex_state = 1698, .external_lex_state = 2}, + [1164] = {.lex_state = 3285}, + [1165] = {.lex_state = 3285}, + [1166] = {.lex_state = 3285}, + [1167] = {.lex_state = 3285}, + [1168] = {.lex_state = 3147}, + [1169] = {.lex_state = 3131}, + [1170] = {.lex_state = 3131}, + [1171] = {.lex_state = 40, .external_lex_state = 2}, + [1172] = {.lex_state = 3131}, + [1173] = {.lex_state = 3147}, + [1174] = {.lex_state = 3131}, + [1175] = {.lex_state = 32, .external_lex_state = 2}, + [1176] = {.lex_state = 1698, .external_lex_state = 2}, + [1177] = {.lex_state = 3285}, + [1178] = {.lex_state = 32, .external_lex_state = 2}, + [1179] = {.lex_state = 34, .external_lex_state = 2}, + [1180] = {.lex_state = 124, .external_lex_state = 2}, + [1181] = {.lex_state = 3151}, + [1182] = {.lex_state = 3151}, + [1183] = {.lex_state = 3285}, + [1184] = {.lex_state = 3285}, + [1185] = {.lex_state = 3285}, + [1186] = {.lex_state = 3285}, + [1187] = {.lex_state = 32, .external_lex_state = 2}, + [1188] = {.lex_state = 124, .external_lex_state = 2}, + [1189] = {.lex_state = 3153}, + [1190] = {.lex_state = 45, .external_lex_state = 2}, + [1191] = {.lex_state = 3153}, + [1192] = {.lex_state = 34, .external_lex_state = 2}, + [1193] = {.lex_state = 3153}, + [1194] = {.lex_state = 45, .external_lex_state = 2}, + [1195] = {.lex_state = 3153}, + [1196] = {.lex_state = 45, .external_lex_state = 2}, + [1197] = {.lex_state = 42, .external_lex_state = 2}, + [1198] = {.lex_state = 32, .external_lex_state = 2}, + [1199] = {.lex_state = 45, .external_lex_state = 2}, [1200] = {.lex_state = 42, .external_lex_state = 2}, [1201] = {.lex_state = 42, .external_lex_state = 2}, - [1202] = {.lex_state = 3267}, - [1203] = {.lex_state = 42, .external_lex_state = 2}, - [1204] = {.lex_state = 3132}, + [1202] = {.lex_state = 42, .external_lex_state = 2}, + [1203] = {.lex_state = 3153}, + [1204] = {.lex_state = 45, .external_lex_state = 2}, [1205] = {.lex_state = 45, .external_lex_state = 2}, - [1206] = {.lex_state = 3269}, - [1207] = {.lex_state = 46, .external_lex_state = 2}, - [1208] = {.lex_state = 3136}, - [1209] = {.lex_state = 45, .external_lex_state = 2}, - [1210] = {.lex_state = 3269}, - [1211] = {.lex_state = 3136}, - [1212] = {.lex_state = 45, .external_lex_state = 2}, - [1213] = {.lex_state = 45, .external_lex_state = 2}, - [1214] = {.lex_state = 158, .external_lex_state = 2}, - [1215] = {.lex_state = 158, .external_lex_state = 2}, - [1216] = {.lex_state = 3269}, - [1217] = {.lex_state = 46, .external_lex_state = 2}, - [1218] = {.lex_state = 45, .external_lex_state = 2}, - [1219] = {.lex_state = 3269}, - [1220] = {.lex_state = 45, .external_lex_state = 2}, + [1206] = {.lex_state = 45, .external_lex_state = 2}, + [1207] = {.lex_state = 45, .external_lex_state = 2}, + [1208] = {.lex_state = 42, .external_lex_state = 2}, + [1209] = {.lex_state = 42, .external_lex_state = 2}, + [1210] = {.lex_state = 42, .external_lex_state = 2}, + [1211] = {.lex_state = 42, .external_lex_state = 2}, + [1212] = {.lex_state = 42, .external_lex_state = 2}, + [1213] = {.lex_state = 42, .external_lex_state = 2}, + [1214] = {.lex_state = 42, .external_lex_state = 2}, + [1215] = {.lex_state = 42, .external_lex_state = 2}, + [1216] = {.lex_state = 42, .external_lex_state = 2}, + [1217] = {.lex_state = 158, .external_lex_state = 2}, + [1218] = {.lex_state = 3287}, + [1219] = {.lex_state = 46, .external_lex_state = 2}, + [1220] = {.lex_state = 1669}, [1221] = {.lex_state = 45, .external_lex_state = 2}, - [1222] = {.lex_state = 45, .external_lex_state = 2}, + [1222] = {.lex_state = 3287}, [1223] = {.lex_state = 45, .external_lex_state = 2}, - [1224] = {.lex_state = 3269}, - [1225] = {.lex_state = 3138}, - [1226] = {.lex_state = 3138}, - [1227] = {.lex_state = 3138}, - [1228] = {.lex_state = 1677, .external_lex_state = 2}, - [1229] = {.lex_state = 3138}, - [1230] = {.lex_state = 3138}, - [1231] = {.lex_state = 39, .external_lex_state = 2}, - [1232] = {.lex_state = 39, .external_lex_state = 2}, - [1233] = {.lex_state = 1687, .external_lex_state = 2}, - [1234] = {.lex_state = 1677, .external_lex_state = 2}, - [1235] = {.lex_state = 1678, .external_lex_state = 2}, - [1236] = {.lex_state = 1691, .external_lex_state = 2}, - [1237] = {.lex_state = 1665}, - [1238] = {.lex_state = 1676, .external_lex_state = 2}, - [1239] = {.lex_state = 1676, .external_lex_state = 2}, - [1240] = {.lex_state = 39, .external_lex_state = 2}, - [1241] = {.lex_state = 1680, .external_lex_state = 2}, - [1242] = {.lex_state = 1680, .external_lex_state = 2}, - [1243] = {.lex_state = 39, .external_lex_state = 2}, - [1244] = {.lex_state = 39, .external_lex_state = 2}, - [1245] = {.lex_state = 39, .external_lex_state = 2}, - [1246] = {.lex_state = 1676, .external_lex_state = 2}, - [1247] = {.lex_state = 1678, .external_lex_state = 2}, - [1248] = {.lex_state = 46, .external_lex_state = 2}, - [1249] = {.lex_state = 39, .external_lex_state = 2}, - [1250] = {.lex_state = 39, .external_lex_state = 2}, - [1251] = {.lex_state = 1665}, - [1252] = {.lex_state = 1665}, - [1253] = {.lex_state = 1687, .external_lex_state = 2}, - [1254] = {.lex_state = 39, .external_lex_state = 2}, - [1255] = {.lex_state = 39, .external_lex_state = 2}, - [1256] = {.lex_state = 1714, .external_lex_state = 2}, - [1257] = {.lex_state = 1718, .external_lex_state = 2}, - [1258] = {.lex_state = 39, .external_lex_state = 2}, - [1259] = {.lex_state = 1681, .external_lex_state = 2}, - [1260] = {.lex_state = 1690, .external_lex_state = 2}, + [1224] = {.lex_state = 46, .external_lex_state = 2}, + [1225] = {.lex_state = 3133}, + [1226] = {.lex_state = 3133}, + [1227] = {.lex_state = 158, .external_lex_state = 2}, + [1228] = {.lex_state = 3155}, + [1229] = {.lex_state = 3155}, + [1230] = {.lex_state = 45, .external_lex_state = 2}, + [1231] = {.lex_state = 45, .external_lex_state = 2}, + [1232] = {.lex_state = 45, .external_lex_state = 2}, + [1233] = {.lex_state = 45, .external_lex_state = 2}, + [1234] = {.lex_state = 45, .external_lex_state = 2}, + [1235] = {.lex_state = 45, .external_lex_state = 2}, + [1236] = {.lex_state = 45, .external_lex_state = 2}, + [1237] = {.lex_state = 39, .external_lex_state = 2}, + [1238] = {.lex_state = 1681, .external_lex_state = 2}, + [1239] = {.lex_state = 3287}, + [1240] = {.lex_state = 1669}, + [1241] = {.lex_state = 3287}, + [1242] = {.lex_state = 39, .external_lex_state = 2}, + [1243] = {.lex_state = 1669}, + [1244] = {.lex_state = 1669}, + [1245] = {.lex_state = 1682, .external_lex_state = 2}, + [1246] = {.lex_state = 3157}, + [1247] = {.lex_state = 1680, .external_lex_state = 2}, + [1248] = {.lex_state = 1669}, + [1249] = {.lex_state = 1669}, + [1250] = {.lex_state = 1669}, + [1251] = {.lex_state = 1680, .external_lex_state = 2}, + [1252] = {.lex_state = 1669}, + [1253] = {.lex_state = 3157}, + [1254] = {.lex_state = 1695, .external_lex_state = 2}, + [1255] = {.lex_state = 1669}, + [1256] = {.lex_state = 1691, .external_lex_state = 2}, + [1257] = {.lex_state = 1681, .external_lex_state = 2}, + [1258] = {.lex_state = 1669}, + [1259] = {.lex_state = 1694, .external_lex_state = 2}, + [1260] = {.lex_state = 1694, .external_lex_state = 2}, [1261] = {.lex_state = 39, .external_lex_state = 2}, - [1262] = {.lex_state = 1690, .external_lex_state = 2}, - [1263] = {.lex_state = 1690, .external_lex_state = 2}, - [1264] = {.lex_state = 1690, .external_lex_state = 2}, - [1265] = {.lex_state = 1691, .external_lex_state = 2}, - [1266] = {.lex_state = 39, .external_lex_state = 2}, + [1262] = {.lex_state = 39, .external_lex_state = 2}, + [1263] = {.lex_state = 39, .external_lex_state = 2}, + [1264] = {.lex_state = 39, .external_lex_state = 2}, + [1265] = {.lex_state = 39, .external_lex_state = 2}, + [1266] = {.lex_state = 1691, .external_lex_state = 2}, [1267] = {.lex_state = 39, .external_lex_state = 2}, - [1268] = {.lex_state = 39, .external_lex_state = 2}, - [1269] = {.lex_state = 39, .external_lex_state = 2}, + [1268] = {.lex_state = 1668}, + [1269] = {.lex_state = 1668}, [1270] = {.lex_state = 39, .external_lex_state = 2}, [1271] = {.lex_state = 39, .external_lex_state = 2}, - [1272] = {.lex_state = 1676, .external_lex_state = 2}, + [1272] = {.lex_state = 1669}, [1273] = {.lex_state = 46, .external_lex_state = 2}, [1274] = {.lex_state = 39, .external_lex_state = 2}, - [1275] = {.lex_state = 39, .external_lex_state = 2}, - [1276] = {.lex_state = 39, .external_lex_state = 2}, - [1277] = {.lex_state = 39, .external_lex_state = 2}, + [1275] = {.lex_state = 1680, .external_lex_state = 2}, + [1276] = {.lex_state = 1695, .external_lex_state = 2}, + [1277] = {.lex_state = 1682, .external_lex_state = 2}, [1278] = {.lex_state = 39, .external_lex_state = 2}, [1279] = {.lex_state = 39, .external_lex_state = 2}, - [1280] = {.lex_state = 39, .external_lex_state = 2}, + [1280] = {.lex_state = 1633}, [1281] = {.lex_state = 39, .external_lex_state = 2}, - [1282] = {.lex_state = 39, .external_lex_state = 2}, - [1283] = {.lex_state = 39, .external_lex_state = 2}, + [1282] = {.lex_state = 1669}, + [1283] = {.lex_state = 1633}, [1284] = {.lex_state = 39, .external_lex_state = 2}, [1285] = {.lex_state = 39, .external_lex_state = 2}, - [1286] = {.lex_state = 39, .external_lex_state = 2}, - [1287] = {.lex_state = 39, .external_lex_state = 2}, - [1288] = {.lex_state = 39, .external_lex_state = 2}, + [1286] = {.lex_state = 1684, .external_lex_state = 2}, + [1287] = {.lex_state = 1669}, + [1288] = {.lex_state = 46, .external_lex_state = 2}, [1289] = {.lex_state = 39, .external_lex_state = 2}, [1290] = {.lex_state = 39, .external_lex_state = 2}, [1291] = {.lex_state = 39, .external_lex_state = 2}, [1292] = {.lex_state = 39, .external_lex_state = 2}, [1293] = {.lex_state = 39, .external_lex_state = 2}, - [1294] = {.lex_state = 39, .external_lex_state = 2}, - [1295] = {.lex_state = 39, .external_lex_state = 2}, - [1296] = {.lex_state = 39, .external_lex_state = 2}, - [1297] = {.lex_state = 39, .external_lex_state = 2}, + [1294] = {.lex_state = 1669}, + [1295] = {.lex_state = 1694, .external_lex_state = 2}, + [1296] = {.lex_state = 1684, .external_lex_state = 2}, + [1297] = {.lex_state = 1680, .external_lex_state = 2}, [1298] = {.lex_state = 39, .external_lex_state = 2}, [1299] = {.lex_state = 39, .external_lex_state = 2}, [1300] = {.lex_state = 39, .external_lex_state = 2}, [1301] = {.lex_state = 39, .external_lex_state = 2}, - [1302] = {.lex_state = 39, .external_lex_state = 2}, + [1302] = {.lex_state = 1718, .external_lex_state = 2}, [1303] = {.lex_state = 39, .external_lex_state = 2}, - [1304] = {.lex_state = 1679, .external_lex_state = 2}, - [1305] = {.lex_state = 1705, .external_lex_state = 2}, - [1306] = {.lex_state = 1715, .external_lex_state = 2}, - [1307] = {.lex_state = 1715, .external_lex_state = 2}, - [1308] = {.lex_state = 1714, .external_lex_state = 2}, - [1309] = {.lex_state = 1665}, - [1310] = {.lex_state = 3145}, - [1311] = {.lex_state = 3145}, - [1312] = {.lex_state = 1718, .external_lex_state = 2}, - [1313] = {.lex_state = 1690, .external_lex_state = 2}, - [1314] = {.lex_state = 1690, .external_lex_state = 2}, - [1315] = {.lex_state = 1690, .external_lex_state = 2}, - [1316] = {.lex_state = 3273}, - [1317] = {.lex_state = 3273}, - [1318] = {.lex_state = 1681, .external_lex_state = 2}, - [1319] = {.lex_state = 1681, .external_lex_state = 2}, - [1320] = {.lex_state = 1681, .external_lex_state = 2}, - [1321] = {.lex_state = 3123}, - [1322] = {.lex_state = 46, .external_lex_state = 2}, - [1323] = {.lex_state = 3123}, - [1324] = {.lex_state = 1681, .external_lex_state = 2}, - [1325] = {.lex_state = 1680, .external_lex_state = 2}, - [1326] = {.lex_state = 1688, .external_lex_state = 2}, - [1327] = {.lex_state = 1665}, - [1328] = {.lex_state = 1665}, - [1329] = {.lex_state = 1681, .external_lex_state = 2}, - [1330] = {.lex_state = 1705, .external_lex_state = 2}, - [1331] = {.lex_state = 1690, .external_lex_state = 2}, - [1332] = {.lex_state = 1665}, - [1333] = {.lex_state = 1665}, - [1334] = {.lex_state = 1665}, - [1335] = {.lex_state = 1665}, - [1336] = {.lex_state = 1705, .external_lex_state = 2}, - [1337] = {.lex_state = 1680, .external_lex_state = 2}, - [1338] = {.lex_state = 1716, .external_lex_state = 2}, - [1339] = {.lex_state = 1664}, - [1340] = {.lex_state = 1716, .external_lex_state = 2}, - [1341] = {.lex_state = 1716, .external_lex_state = 2}, - [1342] = {.lex_state = 1705, .external_lex_state = 2}, - [1343] = {.lex_state = 1715, .external_lex_state = 2}, - [1344] = {.lex_state = 1679, .external_lex_state = 2}, - [1345] = {.lex_state = 1665}, - [1346] = {.lex_state = 1681, .external_lex_state = 2}, - [1347] = {.lex_state = 1682, .external_lex_state = 2}, - [1348] = {.lex_state = 1629}, - [1349] = {.lex_state = 1688, .external_lex_state = 2}, - [1350] = {.lex_state = 39, .external_lex_state = 2}, - [1351] = {.lex_state = 1681, .external_lex_state = 2}, - [1352] = {.lex_state = 1705, .external_lex_state = 2}, - [1353] = {.lex_state = 1629}, - [1354] = {.lex_state = 3273}, - [1355] = {.lex_state = 3273}, - [1356] = {.lex_state = 1681, .external_lex_state = 2}, - [1357] = {.lex_state = 1665}, - [1358] = {.lex_state = 1716, .external_lex_state = 2}, - [1359] = {.lex_state = 1665}, - [1360] = {.lex_state = 1705, .external_lex_state = 2}, - [1361] = {.lex_state = 1705, .external_lex_state = 2}, - [1362] = {.lex_state = 1665}, - [1363] = {.lex_state = 1665}, - [1364] = {.lex_state = 1682, .external_lex_state = 2}, - [1365] = {.lex_state = 1716, .external_lex_state = 2}, - [1366] = {.lex_state = 1681, .external_lex_state = 2}, - [1367] = {.lex_state = 1705, .external_lex_state = 2}, - [1368] = {.lex_state = 1664}, - [1369] = {.lex_state = 1629}, - [1370] = {.lex_state = 1715, .external_lex_state = 2}, - [1371] = {.lex_state = 1704, .external_lex_state = 2}, - [1372] = {.lex_state = 1682, .external_lex_state = 2}, - [1373] = {.lex_state = 1629}, - [1374] = {.lex_state = 1683, .external_lex_state = 2}, - [1375] = {.lex_state = 1716, .external_lex_state = 2}, - [1376] = {.lex_state = 1665}, - [1377] = {.lex_state = 1682, .external_lex_state = 2}, - [1378] = {.lex_state = 1704, .external_lex_state = 2}, - [1379] = {.lex_state = 1665}, - [1380] = {.lex_state = 1716, .external_lex_state = 2}, - [1381] = {.lex_state = 1716, .external_lex_state = 2}, - [1382] = {.lex_state = 1704, .external_lex_state = 2}, - [1383] = {.lex_state = 1716, .external_lex_state = 2}, - [1384] = {.lex_state = 1704, .external_lex_state = 2}, - [1385] = {.lex_state = 1665}, - [1386] = {.lex_state = 1664}, - [1387] = {.lex_state = 1629}, - [1388] = {.lex_state = 1683, .external_lex_state = 2}, - [1389] = {.lex_state = 1711, .external_lex_state = 2}, - [1390] = {.lex_state = 1664}, - [1391] = {.lex_state = 1716, .external_lex_state = 2}, - [1392] = {.lex_state = 1665}, - [1393] = {.lex_state = 1629}, - [1394] = {.lex_state = 1683, .external_lex_state = 2}, - [1395] = {.lex_state = 1629}, - [1396] = {.lex_state = 3147}, + [1304] = {.lex_state = 39, .external_lex_state = 2}, + [1305] = {.lex_state = 39, .external_lex_state = 2}, + [1306] = {.lex_state = 39, .external_lex_state = 2}, + [1307] = {.lex_state = 39, .external_lex_state = 2}, + [1308] = {.lex_state = 39, .external_lex_state = 2}, + [1309] = {.lex_state = 39, .external_lex_state = 2}, + [1310] = {.lex_state = 39, .external_lex_state = 2}, + [1311] = {.lex_state = 39, .external_lex_state = 2}, + [1312] = {.lex_state = 39, .external_lex_state = 2}, + [1313] = {.lex_state = 39, .external_lex_state = 2}, + [1314] = {.lex_state = 39, .external_lex_state = 2}, + [1315] = {.lex_state = 39, .external_lex_state = 2}, + [1316] = {.lex_state = 39, .external_lex_state = 2}, + [1317] = {.lex_state = 39, .external_lex_state = 2}, + [1318] = {.lex_state = 39, .external_lex_state = 2}, + [1319] = {.lex_state = 39, .external_lex_state = 2}, + [1320] = {.lex_state = 39, .external_lex_state = 2}, + [1321] = {.lex_state = 39, .external_lex_state = 2}, + [1322] = {.lex_state = 39, .external_lex_state = 2}, + [1323] = {.lex_state = 39, .external_lex_state = 2}, + [1324] = {.lex_state = 39, .external_lex_state = 2}, + [1325] = {.lex_state = 1722, .external_lex_state = 2}, + [1326] = {.lex_state = 39, .external_lex_state = 2}, + [1327] = {.lex_state = 1633}, + [1328] = {.lex_state = 1669}, + [1329] = {.lex_state = 1694, .external_lex_state = 2}, + [1330] = {.lex_state = 1685, .external_lex_state = 2}, + [1331] = {.lex_state = 1685, .external_lex_state = 2}, + [1332] = {.lex_state = 1694, .external_lex_state = 2}, + [1333] = {.lex_state = 1694, .external_lex_state = 2}, + [1334] = {.lex_state = 1633}, + [1335] = {.lex_state = 1719, .external_lex_state = 2}, + [1336] = {.lex_state = 1633}, + [1337] = {.lex_state = 1669}, + [1338] = {.lex_state = 1668}, + [1339] = {.lex_state = 1668}, + [1340] = {.lex_state = 1692, .external_lex_state = 2}, + [1341] = {.lex_state = 1633}, + [1342] = {.lex_state = 1709, .external_lex_state = 2}, + [1343] = {.lex_state = 1635}, + [1344] = {.lex_state = 1709, .external_lex_state = 2}, + [1345] = {.lex_state = 1635}, + [1346] = {.lex_state = 1633}, + [1347] = {.lex_state = 1694, .external_lex_state = 2}, + [1348] = {.lex_state = 46, .external_lex_state = 2}, + [1349] = {.lex_state = 1633}, + [1350] = {.lex_state = 1669}, + [1351] = {.lex_state = 1683, .external_lex_state = 2}, + [1352] = {.lex_state = 1722, .external_lex_state = 2}, + [1353] = {.lex_state = 1718, .external_lex_state = 2}, + [1354] = {.lex_state = 1684, .external_lex_state = 2}, + [1355] = {.lex_state = 1668}, + [1356] = {.lex_state = 1694, .external_lex_state = 2}, + [1357] = {.lex_state = 1684, .external_lex_state = 2}, + [1358] = {.lex_state = 1669}, + [1359] = {.lex_state = 1719, .external_lex_state = 2}, + [1360] = {.lex_state = 1669}, + [1361] = {.lex_state = 1685, .external_lex_state = 2}, + [1362] = {.lex_state = 1669}, + [1363] = {.lex_state = 1685, .external_lex_state = 2}, + [1364] = {.lex_state = 1669}, + [1365] = {.lex_state = 1685, .external_lex_state = 2}, + [1366] = {.lex_state = 1669}, + [1367] = {.lex_state = 1633}, + [1368] = {.lex_state = 1633}, + [1369] = {.lex_state = 1709, .external_lex_state = 2}, + [1370] = {.lex_state = 1685, .external_lex_state = 2}, + [1371] = {.lex_state = 1668}, + [1372] = {.lex_state = 1719, .external_lex_state = 2}, + [1373] = {.lex_state = 1719, .external_lex_state = 2}, + [1374] = {.lex_state = 1709, .external_lex_state = 2}, + [1375] = {.lex_state = 1685, .external_lex_state = 2}, + [1376] = {.lex_state = 1720, .external_lex_state = 2}, + [1377] = {.lex_state = 1685, .external_lex_state = 2}, + [1378] = {.lex_state = 1709, .external_lex_state = 2}, + [1379] = {.lex_state = 1669}, + [1380] = {.lex_state = 1669}, + [1381] = {.lex_state = 1720, .external_lex_state = 2}, + [1382] = {.lex_state = 1720, .external_lex_state = 2}, + [1383] = {.lex_state = 1709, .external_lex_state = 2}, + [1384] = {.lex_state = 1720, .external_lex_state = 2}, + [1385] = {.lex_state = 1720, .external_lex_state = 2}, + [1386] = {.lex_state = 1633}, + [1387] = {.lex_state = 1641}, + [1388] = {.lex_state = 1668}, + [1389] = {.lex_state = 1635}, + [1390] = {.lex_state = 1635}, + [1391] = {.lex_state = 1669}, + [1392] = {.lex_state = 1668}, + [1393] = {.lex_state = 1668}, + [1394] = {.lex_state = 1668}, + [1395] = {.lex_state = 1637}, + [1396] = {.lex_state = 1668}, [1397] = {.lex_state = 1683, .external_lex_state = 2}, - [1398] = {.lex_state = 1631}, - [1399] = {.lex_state = 1665}, - [1400] = {.lex_state = 1631}, - [1401] = {.lex_state = 3147}, - [1402] = {.lex_state = 1629}, - [1403] = {.lex_state = 1683, .external_lex_state = 2}, - [1404] = {.lex_state = 1710, .external_lex_state = 2}, - [1405] = {.lex_state = 1665}, - [1406] = {.lex_state = 1705, .external_lex_state = 2}, - [1407] = {.lex_state = 1664}, - [1408] = {.lex_state = 1705, .external_lex_state = 2}, - [1409] = {.lex_state = 1629}, - [1410] = {.lex_state = 1665}, - [1411] = {.lex_state = 1704, .external_lex_state = 2}, - [1412] = {.lex_state = 1704, .external_lex_state = 2}, - [1413] = {.lex_state = 1683, .external_lex_state = 2}, - [1414] = {.lex_state = 1629}, - [1415] = {.lex_state = 1704, .external_lex_state = 2}, - [1416] = {.lex_state = 1707, .external_lex_state = 2}, - [1417] = {.lex_state = 1689, .external_lex_state = 2}, - [1418] = {.lex_state = 1664}, - [1419] = {.lex_state = 1664}, - [1420] = {.lex_state = 1707, .external_lex_state = 2}, - [1421] = {.lex_state = 1707, .external_lex_state = 2}, - [1422] = {.lex_state = 1708, .external_lex_state = 2}, - [1423] = {.lex_state = 1707, .external_lex_state = 2}, - [1424] = {.lex_state = 1704, .external_lex_state = 2}, - [1425] = {.lex_state = 1711, .external_lex_state = 2}, - [1426] = {.lex_state = 1707, .external_lex_state = 2}, - [1427] = {.lex_state = 1705, .external_lex_state = 2}, - [1428] = {.lex_state = 1704, .external_lex_state = 2}, - [1429] = {.lex_state = 1704, .external_lex_state = 2}, - [1430] = {.lex_state = 1708, .external_lex_state = 2}, - [1431] = {.lex_state = 1707, .external_lex_state = 2}, - [1432] = {.lex_state = 1707, .external_lex_state = 2}, - [1433] = {.lex_state = 1684, .external_lex_state = 2}, - [1434] = {.lex_state = 1704, .external_lex_state = 2}, - [1435] = {.lex_state = 1707, .external_lex_state = 2}, - [1436] = {.lex_state = 1664}, - [1437] = {.lex_state = 1665}, - [1438] = {.lex_state = 1707, .external_lex_state = 2}, - [1439] = {.lex_state = 1707, .external_lex_state = 2}, - [1440] = {.lex_state = 1683, .external_lex_state = 2}, - [1441] = {.lex_state = 1665}, - [1442] = {.lex_state = 1707, .external_lex_state = 2}, - [1443] = {.lex_state = 1707, .external_lex_state = 2}, - [1444] = {.lex_state = 1707, .external_lex_state = 2}, - [1445] = {.lex_state = 1707, .external_lex_state = 2}, - [1446] = {.lex_state = 1707, .external_lex_state = 2}, - [1447] = {.lex_state = 1665}, - [1448] = {.lex_state = 1665}, - [1449] = {.lex_state = 1707, .external_lex_state = 2}, - [1450] = {.lex_state = 1707, .external_lex_state = 2}, - [1451] = {.lex_state = 1683, .external_lex_state = 2}, - [1452] = {.lex_state = 1707, .external_lex_state = 2}, - [1453] = {.lex_state = 1707, .external_lex_state = 2}, - [1454] = {.lex_state = 1665}, - [1455] = {.lex_state = 1629}, - [1456] = {.lex_state = 1683, .external_lex_state = 2}, - [1457] = {.lex_state = 1707, .external_lex_state = 2}, - [1458] = {.lex_state = 1664}, - [1459] = {.lex_state = 1683, .external_lex_state = 2}, - [1460] = {.lex_state = 1664}, - [1461] = {.lex_state = 1664}, - [1462] = {.lex_state = 1707, .external_lex_state = 2}, - [1463] = {.lex_state = 1683, .external_lex_state = 2}, - [1464] = {.lex_state = 1683, .external_lex_state = 2}, - [1465] = {.lex_state = 1637}, - [1466] = {.lex_state = 1631}, - [1467] = {.lex_state = 1633}, - [1468] = {.lex_state = 1705, .external_lex_state = 2}, - [1469] = {.lex_state = 1710, .external_lex_state = 2}, - [1470] = {.lex_state = 1707, .external_lex_state = 2}, - [1471] = {.lex_state = 1629}, - [1472] = {.lex_state = 1705, .external_lex_state = 2}, - [1473] = {.lex_state = 1707, .external_lex_state = 2}, - [1474] = {.lex_state = 1631}, - [1475] = {.lex_state = 1704, .external_lex_state = 2}, - [1476] = {.lex_state = 1707, .external_lex_state = 2}, - [1477] = {.lex_state = 1708, .external_lex_state = 2}, - [1478] = {.lex_state = 1708, .external_lex_state = 2}, - [1479] = {.lex_state = 1633}, - [1480] = {.lex_state = 1709, .external_lex_state = 2}, - [1481] = {.lex_state = 1637}, - [1482] = {.lex_state = 1684, .external_lex_state = 2}, - [1483] = {.lex_state = 1685, .external_lex_state = 2}, - [1484] = {.lex_state = 1685, .external_lex_state = 2}, - [1485] = {.lex_state = 1641}, - [1486] = {.lex_state = 1707, .external_lex_state = 2}, - [1487] = {.lex_state = 1665}, - [1488] = {.lex_state = 1707, .external_lex_state = 2}, - [1489] = {.lex_state = 1707, .external_lex_state = 2}, - [1490] = {.lex_state = 1707, .external_lex_state = 2}, - [1491] = {.lex_state = 1707, .external_lex_state = 2}, - [1492] = {.lex_state = 1707, .external_lex_state = 2}, - [1493] = {.lex_state = 1707, .external_lex_state = 2}, - [1494] = {.lex_state = 1707, .external_lex_state = 2}, - [1495] = {.lex_state = 1707, .external_lex_state = 2}, - [1496] = {.lex_state = 1707, .external_lex_state = 2}, - [1497] = {.lex_state = 1707, .external_lex_state = 2}, - [1498] = {.lex_state = 1709, .external_lex_state = 2}, - [1499] = {.lex_state = 1707, .external_lex_state = 2}, - [1500] = {.lex_state = 1707, .external_lex_state = 2}, - [1501] = {.lex_state = 1709, .external_lex_state = 2}, - [1502] = {.lex_state = 1707, .external_lex_state = 2}, - [1503] = {.lex_state = 1707, .external_lex_state = 2}, - [1504] = {.lex_state = 1709, .external_lex_state = 2}, - [1505] = {.lex_state = 1709, .external_lex_state = 2}, - [1506] = {.lex_state = 1707, .external_lex_state = 2}, - [1507] = {.lex_state = 1707, .external_lex_state = 2}, - [1508] = {.lex_state = 1707, .external_lex_state = 2}, - [1509] = {.lex_state = 1707, .external_lex_state = 2}, - [1510] = {.lex_state = 1707, .external_lex_state = 2}, - [1511] = {.lex_state = 1639}, - [1512] = {.lex_state = 1709, .external_lex_state = 2}, - [1513] = {.lex_state = 1709, .external_lex_state = 2}, - [1514] = {.lex_state = 1643}, - [1515] = {.lex_state = 1689, .external_lex_state = 2}, - [1516] = {.lex_state = 1709, .external_lex_state = 2}, - [1517] = {.lex_state = 1665}, - [1518] = {.lex_state = 1709, .external_lex_state = 2}, - [1519] = {.lex_state = 1709, .external_lex_state = 2}, - [1520] = {.lex_state = 1709, .external_lex_state = 2}, - [1521] = {.lex_state = 1629}, - [1522] = {.lex_state = 1629}, - [1523] = {.lex_state = 1665}, - [1524] = {.lex_state = 1629}, - [1525] = {.lex_state = 1629}, - [1526] = {.lex_state = 1629}, - [1527] = {.lex_state = 1705, .external_lex_state = 2}, - [1528] = {.lex_state = 1629}, - [1529] = {.lex_state = 1709, .external_lex_state = 2}, - [1530] = {.lex_state = 1705, .external_lex_state = 2}, - [1531] = {.lex_state = 1705, .external_lex_state = 2}, - [1532] = {.lex_state = 1664}, - [1533] = {.lex_state = 1707, .external_lex_state = 2}, - [1534] = {.lex_state = 1635}, - [1535] = {.lex_state = 1707, .external_lex_state = 2}, - [1536] = {.lex_state = 1707, .external_lex_state = 2}, - [1537] = {.lex_state = 1707, .external_lex_state = 2}, - [1538] = {.lex_state = 1664}, - [1539] = {.lex_state = 1664}, - [1540] = {.lex_state = 1709, .external_lex_state = 2}, - [1541] = {.lex_state = 1709, .external_lex_state = 2}, - [1542] = {.lex_state = 1709, .external_lex_state = 2}, - [1543] = {.lex_state = 1665}, - [1544] = {.lex_state = 1639}, - [1545] = {.lex_state = 1645}, - [1546] = {.lex_state = 1709, .external_lex_state = 2}, - [1547] = {.lex_state = 1713, .external_lex_state = 2}, - [1548] = {.lex_state = 1709, .external_lex_state = 2}, - [1549] = {.lex_state = 1707, .external_lex_state = 2}, - [1550] = {.lex_state = 1686, .external_lex_state = 2}, - [1551] = {.lex_state = 1709, .external_lex_state = 2}, - [1552] = {.lex_state = 1709, .external_lex_state = 2}, - [1553] = {.lex_state = 1707, .external_lex_state = 2}, - [1554] = {.lex_state = 1686, .external_lex_state = 2}, - [1555] = {.lex_state = 1686, .external_lex_state = 2}, - [1556] = {.lex_state = 1709, .external_lex_state = 2}, - [1557] = {.lex_state = 1686, .external_lex_state = 2}, - [1558] = {.lex_state = 1686, .external_lex_state = 2}, - [1559] = {.lex_state = 1709, .external_lex_state = 2}, - [1560] = {.lex_state = 1703, .external_lex_state = 2}, - [1561] = {.lex_state = 1639}, - [1562] = {.lex_state = 1698, .external_lex_state = 2}, - [1563] = {.lex_state = 1645}, - [1564] = {.lex_state = 1641}, - [1565] = {.lex_state = 1641}, - [1566] = {.lex_state = 1685, .external_lex_state = 2}, - [1567] = {.lex_state = 1641}, - [1568] = {.lex_state = 1641}, - [1569] = {.lex_state = 1712, .external_lex_state = 2}, - [1570] = {.lex_state = 1675, .external_lex_state = 2}, - [1571] = {.lex_state = 1706, .external_lex_state = 2}, - [1572] = {.lex_state = 1706, .external_lex_state = 2}, - [1573] = {.lex_state = 1675, .external_lex_state = 2}, - [1574] = {.lex_state = 1675, .external_lex_state = 2}, - [1575] = {.lex_state = 1723, .external_lex_state = 2}, - [1576] = {.lex_state = 1675, .external_lex_state = 2}, - [1577] = {.lex_state = 1706, .external_lex_state = 2}, - [1578] = {.lex_state = 1675, .external_lex_state = 2}, - [1579] = {.lex_state = 1706, .external_lex_state = 2}, - [1580] = {.lex_state = 1709, .external_lex_state = 2}, - [1581] = {.lex_state = 1639}, - [1582] = {.lex_state = 1709, .external_lex_state = 2}, - [1583] = {.lex_state = 1686, .external_lex_state = 2}, - [1584] = {.lex_state = 1709, .external_lex_state = 2}, - [1585] = {.lex_state = 1686, .external_lex_state = 2}, - [1586] = {.lex_state = 1723, .external_lex_state = 2}, - [1587] = {.lex_state = 1641}, - [1588] = {.lex_state = 1723, .external_lex_state = 2}, - [1589] = {.lex_state = 1664}, - [1590] = {.lex_state = 1706, .external_lex_state = 2}, - [1591] = {.lex_state = 1706, .external_lex_state = 2}, - [1592] = {.lex_state = 1709, .external_lex_state = 2}, - [1593] = {.lex_state = 1685, .external_lex_state = 2}, - [1594] = {.lex_state = 1709, .external_lex_state = 2}, - [1595] = {.lex_state = 1664}, - [1596] = {.lex_state = 1686, .external_lex_state = 2}, - [1597] = {.lex_state = 1709, .external_lex_state = 2}, - [1598] = {.lex_state = 1723, .external_lex_state = 2}, - [1599] = {.lex_state = 1686, .external_lex_state = 2}, - [1600] = {.lex_state = 1664}, - [1601] = {.lex_state = 1664}, - [1602] = {.lex_state = 1664}, - [1603] = {.lex_state = 1664}, - [1604] = {.lex_state = 1664}, - [1605] = {.lex_state = 1664}, - [1606] = {.lex_state = 1664}, - [1607] = {.lex_state = 1709, .external_lex_state = 2}, - [1608] = {.lex_state = 1664}, - [1609] = {.lex_state = 1664}, - [1610] = {.lex_state = 1664}, - [1611] = {.lex_state = 1664}, - [1612] = {.lex_state = 1664}, - [1613] = {.lex_state = 1664}, - [1614] = {.lex_state = 1664}, + [1398] = {.lex_state = 1709, .external_lex_state = 2}, + [1399] = {.lex_state = 1709, .external_lex_state = 2}, + [1400] = {.lex_state = 39, .external_lex_state = 2}, + [1401] = {.lex_state = 1685, .external_lex_state = 2}, + [1402] = {.lex_state = 1633}, + [1403] = {.lex_state = 1686, .external_lex_state = 2}, + [1404] = {.lex_state = 1669}, + [1405] = {.lex_state = 1692, .external_lex_state = 2}, + [1406] = {.lex_state = 1686, .external_lex_state = 2}, + [1407] = {.lex_state = 1685, .external_lex_state = 2}, + [1408] = {.lex_state = 1669}, + [1409] = {.lex_state = 1643}, + [1410] = {.lex_state = 1708, .external_lex_state = 2}, + [1411] = {.lex_state = 1643}, + [1412] = {.lex_state = 1715, .external_lex_state = 2}, + [1413] = {.lex_state = 1708, .external_lex_state = 2}, + [1414] = {.lex_state = 1709, .external_lex_state = 2}, + [1415] = {.lex_state = 1668}, + [1416] = {.lex_state = 1668}, + [1417] = {.lex_state = 1709, .external_lex_state = 2}, + [1418] = {.lex_state = 1708, .external_lex_state = 2}, + [1419] = {.lex_state = 1669}, + [1420] = {.lex_state = 1708, .external_lex_state = 2}, + [1421] = {.lex_state = 1687, .external_lex_state = 2}, + [1422] = {.lex_state = 1669}, + [1423] = {.lex_state = 1720, .external_lex_state = 2}, + [1424] = {.lex_state = 1645}, + [1425] = {.lex_state = 1720, .external_lex_state = 2}, + [1426] = {.lex_state = 1720, .external_lex_state = 2}, + [1427] = {.lex_state = 1720, .external_lex_state = 2}, + [1428] = {.lex_state = 1668}, + [1429] = {.lex_state = 1669}, + [1430] = {.lex_state = 1639}, + [1431] = {.lex_state = 1686, .external_lex_state = 2}, + [1432] = {.lex_state = 1708, .external_lex_state = 2}, + [1433] = {.lex_state = 1708, .external_lex_state = 2}, + [1434] = {.lex_state = 1686, .external_lex_state = 2}, + [1435] = {.lex_state = 1637}, + [1436] = {.lex_state = 1641}, + [1437] = {.lex_state = 1633}, + [1438] = {.lex_state = 1633}, + [1439] = {.lex_state = 1633}, + [1440] = {.lex_state = 1720, .external_lex_state = 2}, + [1441] = {.lex_state = 1633}, + [1442] = {.lex_state = 1687, .external_lex_state = 2}, + [1443] = {.lex_state = 1633}, + [1444] = {.lex_state = 1633}, + [1445] = {.lex_state = 1687, .external_lex_state = 2}, + [1446] = {.lex_state = 1687, .external_lex_state = 2}, + [1447] = {.lex_state = 1714, .external_lex_state = 2}, + [1448] = {.lex_state = 1669}, + [1449] = {.lex_state = 1687, .external_lex_state = 2}, + [1450] = {.lex_state = 1687, .external_lex_state = 2}, + [1451] = {.lex_state = 1647}, + [1452] = {.lex_state = 1708, .external_lex_state = 2}, + [1453] = {.lex_state = 1645}, + [1454] = {.lex_state = 1711, .external_lex_state = 2}, + [1455] = {.lex_state = 1687, .external_lex_state = 2}, + [1456] = {.lex_state = 1693, .external_lex_state = 2}, + [1457] = {.lex_state = 1711, .external_lex_state = 2}, + [1458] = {.lex_state = 1711, .external_lex_state = 2}, + [1459] = {.lex_state = 1711, .external_lex_state = 2}, + [1460] = {.lex_state = 1645}, + [1461] = {.lex_state = 1668}, + [1462] = {.lex_state = 1711, .external_lex_state = 2}, + [1463] = {.lex_state = 1708, .external_lex_state = 2}, + [1464] = {.lex_state = 1708, .external_lex_state = 2}, + [1465] = {.lex_state = 1688, .external_lex_state = 2}, + [1466] = {.lex_state = 1645}, + [1467] = {.lex_state = 1668}, + [1468] = {.lex_state = 1711, .external_lex_state = 2}, + [1469] = {.lex_state = 1649}, + [1470] = {.lex_state = 1711, .external_lex_state = 2}, + [1471] = {.lex_state = 1709, .external_lex_state = 2}, + [1472] = {.lex_state = 1714, .external_lex_state = 2}, + [1473] = {.lex_state = 1668}, + [1474] = {.lex_state = 1649}, + [1475] = {.lex_state = 1711, .external_lex_state = 2}, + [1476] = {.lex_state = 1668}, + [1477] = {.lex_state = 1687, .external_lex_state = 2}, + [1478] = {.lex_state = 1668}, + [1479] = {.lex_state = 1668}, + [1480] = {.lex_state = 1668}, + [1481] = {.lex_state = 1711, .external_lex_state = 2}, + [1482] = {.lex_state = 1687, .external_lex_state = 2}, + [1483] = {.lex_state = 1709, .external_lex_state = 2}, + [1484] = {.lex_state = 1668}, + [1485] = {.lex_state = 1687, .external_lex_state = 2}, + [1486] = {.lex_state = 1687, .external_lex_state = 2}, + [1487] = {.lex_state = 1709, .external_lex_state = 2}, + [1488] = {.lex_state = 1711, .external_lex_state = 2}, + [1489] = {.lex_state = 1711, .external_lex_state = 2}, + [1490] = {.lex_state = 1643}, + [1491] = {.lex_state = 1668}, + [1492] = {.lex_state = 1711, .external_lex_state = 2}, + [1493] = {.lex_state = 1711, .external_lex_state = 2}, + [1494] = {.lex_state = 1711, .external_lex_state = 2}, + [1495] = {.lex_state = 1711, .external_lex_state = 2}, + [1496] = {.lex_state = 1711, .external_lex_state = 2}, + [1497] = {.lex_state = 1711, .external_lex_state = 2}, + [1498] = {.lex_state = 1711, .external_lex_state = 2}, + [1499] = {.lex_state = 1711, .external_lex_state = 2}, + [1500] = {.lex_state = 1668}, + [1501] = {.lex_state = 1711, .external_lex_state = 2}, + [1502] = {.lex_state = 1711, .external_lex_state = 2}, + [1503] = {.lex_state = 1668}, + [1504] = {.lex_state = 1708, .external_lex_state = 2}, + [1505] = {.lex_state = 1715, .external_lex_state = 2}, + [1506] = {.lex_state = 1708, .external_lex_state = 2}, + [1507] = {.lex_state = 1708, .external_lex_state = 2}, + [1508] = {.lex_state = 1687, .external_lex_state = 2}, + [1509] = {.lex_state = 1668}, + [1510] = {.lex_state = 1668}, + [1511] = {.lex_state = 1668}, + [1512] = {.lex_state = 1668}, + [1513] = {.lex_state = 1668}, + [1514] = {.lex_state = 1669}, + [1515] = {.lex_state = 1712, .external_lex_state = 2}, + [1516] = {.lex_state = 1668}, + [1517] = {.lex_state = 1711, .external_lex_state = 2}, + [1518] = {.lex_state = 1645}, + [1519] = {.lex_state = 1668}, + [1520] = {.lex_state = 1669}, + [1521] = {.lex_state = 1668}, + [1522] = {.lex_state = 1645}, + [1523] = {.lex_state = 1643}, + [1524] = {.lex_state = 1711, .external_lex_state = 2}, + [1525] = {.lex_state = 1712, .external_lex_state = 2}, + [1526] = {.lex_state = 1668}, + [1527] = {.lex_state = 1712, .external_lex_state = 2}, + [1528] = {.lex_state = 1651}, + [1529] = {.lex_state = 1668}, + [1530] = {.lex_state = 1651}, + [1531] = {.lex_state = 1651}, + [1532] = {.lex_state = 1668}, + [1533] = {.lex_state = 1713, .external_lex_state = 2}, + [1534] = {.lex_state = 1711, .external_lex_state = 2}, + [1535] = {.lex_state = 1668}, + [1536] = {.lex_state = 1668}, + [1537] = {.lex_state = 1668}, + [1538] = {.lex_state = 1709, .external_lex_state = 2}, + [1539] = {.lex_state = 1709, .external_lex_state = 2}, + [1540] = {.lex_state = 1712, .external_lex_state = 2}, + [1541] = {.lex_state = 1668}, + [1542] = {.lex_state = 1647}, + [1543] = {.lex_state = 1639}, + [1544] = {.lex_state = 1713, .external_lex_state = 2}, + [1545] = {.lex_state = 1713, .external_lex_state = 2}, + [1546] = {.lex_state = 1713, .external_lex_state = 2}, + [1547] = {.lex_state = 1711, .external_lex_state = 2}, + [1548] = {.lex_state = 1711, .external_lex_state = 2}, + [1549] = {.lex_state = 1711, .external_lex_state = 2}, + [1550] = {.lex_state = 1713, .external_lex_state = 2}, + [1551] = {.lex_state = 1713, .external_lex_state = 2}, + [1552] = {.lex_state = 1668}, + [1553] = {.lex_state = 1645}, + [1554] = {.lex_state = 1668}, + [1555] = {.lex_state = 1668}, + [1556] = {.lex_state = 1713, .external_lex_state = 2}, + [1557] = {.lex_state = 1713, .external_lex_state = 2}, + [1558] = {.lex_state = 1645}, + [1559] = {.lex_state = 1713, .external_lex_state = 2}, + [1560] = {.lex_state = 1713, .external_lex_state = 2}, + [1561] = {.lex_state = 1711, .external_lex_state = 2}, + [1562] = {.lex_state = 1713, .external_lex_state = 2}, + [1563] = {.lex_state = 1689, .external_lex_state = 2}, + [1564] = {.lex_state = 1711, .external_lex_state = 2}, + [1565] = {.lex_state = 1713, .external_lex_state = 2}, + [1566] = {.lex_state = 1711, .external_lex_state = 2}, + [1567] = {.lex_state = 1711, .external_lex_state = 2}, + [1568] = {.lex_state = 1711, .external_lex_state = 2}, + [1569] = {.lex_state = 1668}, + [1570] = {.lex_state = 1713, .external_lex_state = 2}, + [1571] = {.lex_state = 1711, .external_lex_state = 2}, + [1572] = {.lex_state = 1711, .external_lex_state = 2}, + [1573] = {.lex_state = 1711, .external_lex_state = 2}, + [1574] = {.lex_state = 1711, .external_lex_state = 2}, + [1575] = {.lex_state = 1711, .external_lex_state = 2}, + [1576] = {.lex_state = 1711, .external_lex_state = 2}, + [1577] = {.lex_state = 1711, .external_lex_state = 2}, + [1578] = {.lex_state = 1711, .external_lex_state = 2}, + [1579] = {.lex_state = 1711, .external_lex_state = 2}, + [1580] = {.lex_state = 1711, .external_lex_state = 2}, + [1581] = {.lex_state = 1711, .external_lex_state = 2}, + [1582] = {.lex_state = 1711, .external_lex_state = 2}, + [1583] = {.lex_state = 1711, .external_lex_state = 2}, + [1584] = {.lex_state = 1711, .external_lex_state = 2}, + [1585] = {.lex_state = 1711, .external_lex_state = 2}, + [1586] = {.lex_state = 1651}, + [1587] = {.lex_state = 1713, .external_lex_state = 2}, + [1588] = {.lex_state = 1713, .external_lex_state = 2}, + [1589] = {.lex_state = 1688, .external_lex_state = 2}, + [1590] = {.lex_state = 1693, .external_lex_state = 2}, + [1591] = {.lex_state = 1689, .external_lex_state = 2}, + [1592] = {.lex_state = 1645}, + [1593] = {.lex_state = 1645}, + [1594] = {.lex_state = 1711, .external_lex_state = 2}, + [1595] = {.lex_state = 1668}, + [1596] = {.lex_state = 1709, .external_lex_state = 2}, + [1597] = {.lex_state = 1668}, + [1598] = {.lex_state = 1710, .external_lex_state = 2}, + [1599] = {.lex_state = 1690, .external_lex_state = 2}, + [1600] = {.lex_state = 1690, .external_lex_state = 2}, + [1601] = {.lex_state = 1707, .external_lex_state = 2}, + [1602] = {.lex_state = 1727, .external_lex_state = 2}, + [1603] = {.lex_state = 1713, .external_lex_state = 2}, + [1604] = {.lex_state = 1717, .external_lex_state = 2}, + [1605] = {.lex_state = 1668}, + [1606] = {.lex_state = 1690, .external_lex_state = 2}, + [1607] = {.lex_state = 1668}, + [1608] = {.lex_state = 1651}, + [1609] = {.lex_state = 1727, .external_lex_state = 2}, + [1610] = {.lex_state = 1711, .external_lex_state = 2}, + [1611] = {.lex_state = 1713, .external_lex_state = 2}, + [1612] = {.lex_state = 1713, .external_lex_state = 2}, + [1613] = {.lex_state = 1727, .external_lex_state = 2}, + [1614] = {.lex_state = 1651}, [1615] = {.lex_state = 1664}, - [1616] = {.lex_state = 1664}, - [1617] = {.lex_state = 1664}, - [1618] = {.lex_state = 1709, .external_lex_state = 2}, - [1619] = {.lex_state = 1665}, - [1620] = {.lex_state = 1665}, - [1621] = {.lex_state = 1664}, - [1622] = {.lex_state = 1709, .external_lex_state = 2}, - [1623] = {.lex_state = 1709, .external_lex_state = 2}, - [1624] = {.lex_state = 1709, .external_lex_state = 2}, - [1625] = {.lex_state = 1723, .external_lex_state = 2}, - [1626] = {.lex_state = 1722, .external_lex_state = 2}, - [1627] = {.lex_state = 1664}, - [1628] = {.lex_state = 1700, .external_lex_state = 2}, - [1629] = {.lex_state = 1717, .external_lex_state = 2}, - [1630] = {.lex_state = 1664}, - [1631] = {.lex_state = 1723, .external_lex_state = 2}, - [1632] = {.lex_state = 1647}, - [1633] = {.lex_state = 1675, .external_lex_state = 2}, - [1634] = {.lex_state = 1686, .external_lex_state = 2}, - [1635] = {.lex_state = 1724, .external_lex_state = 2}, - [1636] = {.lex_state = 1686, .external_lex_state = 2}, - [1637] = {.lex_state = 1724, .external_lex_state = 2}, - [1638] = {.lex_state = 1701, .external_lex_state = 2}, - [1639] = {.lex_state = 1635}, - [1640] = {.lex_state = 1706, .external_lex_state = 2}, - [1641] = {.lex_state = 1664}, - [1642] = {.lex_state = 1699, .external_lex_state = 2}, - [1643] = {.lex_state = 1643}, - [1644] = {.lex_state = 1717, .external_lex_state = 2}, - [1645] = {.lex_state = 1641}, - [1646] = {.lex_state = 1686, .external_lex_state = 2}, - [1647] = {.lex_state = 1686, .external_lex_state = 2}, - [1648] = {.lex_state = 1647}, - [1649] = {.lex_state = 1724, .external_lex_state = 2}, - [1650] = {.lex_state = 1712, .external_lex_state = 2}, - [1651] = {.lex_state = 1699, .external_lex_state = 2}, - [1652] = {.lex_state = 1647}, - [1653] = {.lex_state = 1706, .external_lex_state = 2}, - [1654] = {.lex_state = 1647}, - [1655] = {.lex_state = 1664}, - [1656] = {.lex_state = 1675, .external_lex_state = 2}, - [1657] = {.lex_state = 1722, .external_lex_state = 2}, - [1658] = {.lex_state = 1706, .external_lex_state = 2}, - [1659] = {.lex_state = 1686, .external_lex_state = 2}, - [1660] = {.lex_state = 1675, .external_lex_state = 2}, - [1661] = {.lex_state = 1698, .external_lex_state = 2}, - [1662] = {.lex_state = 1686, .external_lex_state = 2}, - [1663] = {.lex_state = 1675, .external_lex_state = 2}, - [1664] = {.lex_state = 1641}, - [1665] = {.lex_state = 1686, .external_lex_state = 2}, - [1666] = {.lex_state = 1664}, - [1667] = {.lex_state = 1664}, - [1668] = {.lex_state = 1664}, - [1669] = {.lex_state = 1723, .external_lex_state = 2}, - [1670] = {.lex_state = 1723, .external_lex_state = 2}, - [1671] = {.lex_state = 1664}, - [1672] = {.lex_state = 1706, .external_lex_state = 2}, - [1673] = {.lex_state = 1724, .external_lex_state = 2}, - [1674] = {.lex_state = 1706, .external_lex_state = 2}, - [1675] = {.lex_state = 1723, .external_lex_state = 2}, - [1676] = {.lex_state = 1723, .external_lex_state = 2}, + [1616] = {.lex_state = 1679, .external_lex_state = 2}, + [1617] = {.lex_state = 1679, .external_lex_state = 2}, + [1618] = {.lex_state = 1679, .external_lex_state = 2}, + [1619] = {.lex_state = 1679, .external_lex_state = 2}, + [1620] = {.lex_state = 1690, .external_lex_state = 2}, + [1621] = {.lex_state = 1713, .external_lex_state = 2}, + [1622] = {.lex_state = 1713, .external_lex_state = 2}, + [1623] = {.lex_state = 1713, .external_lex_state = 2}, + [1624] = {.lex_state = 1713, .external_lex_state = 2}, + [1625] = {.lex_state = 1713, .external_lex_state = 2}, + [1626] = {.lex_state = 1649}, + [1627] = {.lex_state = 1668}, + [1628] = {.lex_state = 1690, .external_lex_state = 2}, + [1629] = {.lex_state = 1668}, + [1630] = {.lex_state = 1713, .external_lex_state = 2}, + [1631] = {.lex_state = 1690, .external_lex_state = 2}, + [1632] = {.lex_state = 1716, .external_lex_state = 2}, + [1633] = {.lex_state = 1713, .external_lex_state = 2}, + [1634] = {.lex_state = 1689, .external_lex_state = 2}, + [1635] = {.lex_state = 1679, .external_lex_state = 2}, + [1636] = {.lex_state = 1649}, + [1637] = {.lex_state = 1713, .external_lex_state = 2}, + [1638] = {.lex_state = 1711, .external_lex_state = 2}, + [1639] = {.lex_state = 1702, .external_lex_state = 2}, + [1640] = {.lex_state = 1668}, + [1641] = {.lex_state = 1690, .external_lex_state = 2}, + [1642] = {.lex_state = 1713, .external_lex_state = 2}, + [1643] = {.lex_state = 1710, .external_lex_state = 2}, + [1644] = {.lex_state = 1727, .external_lex_state = 2}, + [1645] = {.lex_state = 1713, .external_lex_state = 2}, + [1646] = {.lex_state = 1727, .external_lex_state = 2}, + [1647] = {.lex_state = 1710, .external_lex_state = 2}, + [1648] = {.lex_state = 1710, .external_lex_state = 2}, + [1649] = {.lex_state = 1713, .external_lex_state = 2}, + [1650] = {.lex_state = 1710, .external_lex_state = 2}, + [1651] = {.lex_state = 1710, .external_lex_state = 2}, + [1652] = {.lex_state = 1713, .external_lex_state = 2}, + [1653] = {.lex_state = 1668}, + [1654] = {.lex_state = 1713, .external_lex_state = 2}, + [1655] = {.lex_state = 1689, .external_lex_state = 2}, + [1656] = {.lex_state = 1713, .external_lex_state = 2}, + [1657] = {.lex_state = 1690, .external_lex_state = 2}, + [1658] = {.lex_state = 1690, .external_lex_state = 2}, + [1659] = {.lex_state = 1721, .external_lex_state = 2}, + [1660] = {.lex_state = 1679, .external_lex_state = 2}, + [1661] = {.lex_state = 1679, .external_lex_state = 2}, + [1662] = {.lex_state = 1717, .external_lex_state = 2}, + [1663] = {.lex_state = 1710, .external_lex_state = 2}, + [1664] = {.lex_state = 1653}, + [1665] = {.lex_state = 1710, .external_lex_state = 2}, + [1666] = {.lex_state = 1668}, + [1667] = {.lex_state = 1668}, + [1668] = {.lex_state = 1727, .external_lex_state = 2}, + [1669] = {.lex_state = 1711, .external_lex_state = 2}, + [1670] = {.lex_state = 1707, .external_lex_state = 2}, + [1671] = {.lex_state = 1679, .external_lex_state = 2}, + [1672] = {.lex_state = 1690, .external_lex_state = 2}, + [1673] = {.lex_state = 1728, .external_lex_state = 2}, + [1674] = {.lex_state = 1690, .external_lex_state = 2}, + [1675] = {.lex_state = 1727, .external_lex_state = 2}, + [1676] = {.lex_state = 1651}, [1677] = {.lex_state = 1664}, - [1678] = {.lex_state = 1686, .external_lex_state = 2}, - [1679] = {.lex_state = 1664}, - [1680] = {.lex_state = 1707, .external_lex_state = 2}, - [1681] = {.lex_state = 1707, .external_lex_state = 2}, - [1682] = {.lex_state = 1707, .external_lex_state = 2}, - [1683] = {.lex_state = 1686, .external_lex_state = 2}, - [1684] = {.lex_state = 1664}, - [1685] = {.lex_state = 1675, .external_lex_state = 2}, - [1686] = {.lex_state = 1675, .external_lex_state = 2}, - [1687] = {.lex_state = 1641}, - [1688] = {.lex_state = 1724, .external_lex_state = 2}, - [1689] = {.lex_state = 1706, .external_lex_state = 2}, - [1690] = {.lex_state = 1675, .external_lex_state = 2}, - [1691] = {.lex_state = 1703, .external_lex_state = 2}, - [1692] = {.lex_state = 1664}, - [1693] = {.lex_state = 1675, .external_lex_state = 2}, - [1694] = {.lex_state = 1675, .external_lex_state = 2}, - [1695] = {.lex_state = 1641}, - [1696] = {.lex_state = 1722, .external_lex_state = 2}, - [1697] = {.lex_state = 1713, .external_lex_state = 2}, - [1698] = {.lex_state = 1664}, - [1699] = {.lex_state = 1700, .external_lex_state = 2}, - [1700] = {.lex_state = 1664}, - [1701] = {.lex_state = 1702, .external_lex_state = 2}, - [1702] = {.lex_state = 1702, .external_lex_state = 2}, - [1703] = {.lex_state = 1702, .external_lex_state = 2}, - [1704] = {.lex_state = 35, .external_lex_state = 2}, - [1705] = {.lex_state = 1702, .external_lex_state = 2}, - [1706] = {.lex_state = 1702, .external_lex_state = 2}, - [1707] = {.lex_state = 1675, .external_lex_state = 2}, - [1708] = {.lex_state = 1702, .external_lex_state = 2}, - [1709] = {.lex_state = 1722, .external_lex_state = 2}, - [1710] = {.lex_state = 1702, .external_lex_state = 2}, - [1711] = {.lex_state = 1702, .external_lex_state = 2}, - [1712] = {.lex_state = 1702, .external_lex_state = 2}, - [1713] = {.lex_state = 1702, .external_lex_state = 2}, - [1714] = {.lex_state = 1675, .external_lex_state = 2}, - [1715] = {.lex_state = 1702, .external_lex_state = 2}, - [1716] = {.lex_state = 1702, .external_lex_state = 2}, - [1717] = {.lex_state = 1702, .external_lex_state = 2}, - [1718] = {.lex_state = 1702, .external_lex_state = 2}, - [1719] = {.lex_state = 1702, .external_lex_state = 2}, - [1720] = {.lex_state = 1702, .external_lex_state = 2}, - [1721] = {.lex_state = 1702, .external_lex_state = 2}, - [1722] = {.lex_state = 1702, .external_lex_state = 2}, - [1723] = {.lex_state = 1702, .external_lex_state = 2}, - [1724] = {.lex_state = 1702, .external_lex_state = 2}, - [1725] = {.lex_state = 1702, .external_lex_state = 2}, - [1726] = {.lex_state = 1702, .external_lex_state = 2}, - [1727] = {.lex_state = 1664}, - [1728] = {.lex_state = 1722, .external_lex_state = 2}, - [1729] = {.lex_state = 1664}, - [1730] = {.lex_state = 1717, .external_lex_state = 2}, - [1731] = {.lex_state = 1702, .external_lex_state = 2}, - [1732] = {.lex_state = 1664}, - [1733] = {.lex_state = 1702, .external_lex_state = 2}, - [1734] = {.lex_state = 1702, .external_lex_state = 2}, - [1735] = {.lex_state = 1647}, - [1736] = {.lex_state = 1702, .external_lex_state = 2}, - [1737] = {.lex_state = 1702, .external_lex_state = 2}, - [1738] = {.lex_state = 1702, .external_lex_state = 2}, - [1739] = {.lex_state = 1702, .external_lex_state = 2}, - [1740] = {.lex_state = 1702, .external_lex_state = 2}, - [1741] = {.lex_state = 1647}, - [1742] = {.lex_state = 1702, .external_lex_state = 2}, - [1743] = {.lex_state = 1702, .external_lex_state = 2}, - [1744] = {.lex_state = 1702, .external_lex_state = 2}, - [1745] = {.lex_state = 1702, .external_lex_state = 2}, - [1746] = {.lex_state = 35, .external_lex_state = 2}, - [1747] = {.lex_state = 1702, .external_lex_state = 2}, - [1748] = {.lex_state = 1702, .external_lex_state = 2}, - [1749] = {.lex_state = 1707, .external_lex_state = 2}, - [1750] = {.lex_state = 1699, .external_lex_state = 2}, - [1751] = {.lex_state = 1702, .external_lex_state = 2}, - [1752] = {.lex_state = 1702, .external_lex_state = 2}, - [1753] = {.lex_state = 1724, .external_lex_state = 2}, - [1754] = {.lex_state = 1702, .external_lex_state = 2}, - [1755] = {.lex_state = 1700, .external_lex_state = 2}, - [1756] = {.lex_state = 1702, .external_lex_state = 2}, - [1757] = {.lex_state = 1702, .external_lex_state = 2}, - [1758] = {.lex_state = 1702, .external_lex_state = 2}, - [1759] = {.lex_state = 1702, .external_lex_state = 2}, - [1760] = {.lex_state = 1702, .external_lex_state = 2}, - [1761] = {.lex_state = 1702, .external_lex_state = 2}, - [1762] = {.lex_state = 1664}, - [1763] = {.lex_state = 1664}, - [1764] = {.lex_state = 1702, .external_lex_state = 2}, - [1765] = {.lex_state = 1702, .external_lex_state = 2}, - [1766] = {.lex_state = 1702, .external_lex_state = 2}, - [1767] = {.lex_state = 1664}, - [1768] = {.lex_state = 1722, .external_lex_state = 2}, - [1769] = {.lex_state = 1702, .external_lex_state = 2}, - [1770] = {.lex_state = 1702, .external_lex_state = 2}, - [1771] = {.lex_state = 1702, .external_lex_state = 2}, - [1772] = {.lex_state = 1724, .external_lex_state = 2}, - [1773] = {.lex_state = 1702, .external_lex_state = 2}, - [1774] = {.lex_state = 1702, .external_lex_state = 2}, - [1775] = {.lex_state = 1724, .external_lex_state = 2}, - [1776] = {.lex_state = 1645}, - [1777] = {.lex_state = 35, .external_lex_state = 2}, - [1778] = {.lex_state = 1702, .external_lex_state = 2}, - [1779] = {.lex_state = 1702, .external_lex_state = 2}, - [1780] = {.lex_state = 1702, .external_lex_state = 2}, - [1781] = {.lex_state = 1645}, - [1782] = {.lex_state = 1702, .external_lex_state = 2}, - [1783] = {.lex_state = 1702, .external_lex_state = 2}, - [1784] = {.lex_state = 1702, .external_lex_state = 2}, - [1785] = {.lex_state = 1702, .external_lex_state = 2}, - [1786] = {.lex_state = 1702, .external_lex_state = 2}, - [1787] = {.lex_state = 1702, .external_lex_state = 2}, - [1788] = {.lex_state = 1702, .external_lex_state = 2}, - [1789] = {.lex_state = 1702, .external_lex_state = 2}, - [1790] = {.lex_state = 1702, .external_lex_state = 2}, - [1791] = {.lex_state = 1702, .external_lex_state = 2}, - [1792] = {.lex_state = 1702, .external_lex_state = 2}, - [1793] = {.lex_state = 1700, .external_lex_state = 2}, - [1794] = {.lex_state = 1724, .external_lex_state = 2}, - [1795] = {.lex_state = 1717, .external_lex_state = 2}, - [1796] = {.lex_state = 1701, .external_lex_state = 2}, - [1797] = {.lex_state = 1702, .external_lex_state = 2}, - [1798] = {.lex_state = 1702, .external_lex_state = 2}, - [1799] = {.lex_state = 1702, .external_lex_state = 2}, - [1800] = {.lex_state = 1660}, - [1801] = {.lex_state = 1699, .external_lex_state = 2}, - [1802] = {.lex_state = 1702, .external_lex_state = 2}, - [1803] = {.lex_state = 1702, .external_lex_state = 2}, - [1804] = {.lex_state = 1702, .external_lex_state = 2}, - [1805] = {.lex_state = 1707, .external_lex_state = 2}, - [1806] = {.lex_state = 1724, .external_lex_state = 2}, - [1807] = {.lex_state = 1702, .external_lex_state = 2}, - [1808] = {.lex_state = 1702, .external_lex_state = 2}, - [1809] = {.lex_state = 1702, .external_lex_state = 2}, - [1810] = {.lex_state = 1702, .external_lex_state = 2}, - [1811] = {.lex_state = 1702, .external_lex_state = 2}, - [1812] = {.lex_state = 1702, .external_lex_state = 2}, - [1813] = {.lex_state = 1707, .external_lex_state = 2}, - [1814] = {.lex_state = 1702, .external_lex_state = 2}, - [1815] = {.lex_state = 1702, .external_lex_state = 2}, - [1816] = {.lex_state = 40, .external_lex_state = 2}, - [1817] = {.lex_state = 40, .external_lex_state = 2}, - [1818] = {.lex_state = 1664}, - [1819] = {.lex_state = 1664}, - [1820] = {.lex_state = 1664}, - [1821] = {.lex_state = 1664}, - [1822] = {.lex_state = 1702, .external_lex_state = 2}, - [1823] = {.lex_state = 1702, .external_lex_state = 2}, - [1824] = {.lex_state = 1702, .external_lex_state = 2}, - [1825] = {.lex_state = 1702, .external_lex_state = 2}, - [1826] = {.lex_state = 1702, .external_lex_state = 2}, - [1827] = {.lex_state = 1647}, - [1828] = {.lex_state = 1702, .external_lex_state = 2}, - [1829] = {.lex_state = 1702, .external_lex_state = 2}, - [1830] = {.lex_state = 1702, .external_lex_state = 2}, - [1831] = {.lex_state = 1702, .external_lex_state = 2}, - [1832] = {.lex_state = 1649}, - [1833] = {.lex_state = 1664}, - [1834] = {.lex_state = 1702, .external_lex_state = 2}, - [1835] = {.lex_state = 1702, .external_lex_state = 2}, - [1836] = {.lex_state = 1702, .external_lex_state = 2}, - [1837] = {.lex_state = 1702, .external_lex_state = 2}, - [1838] = {.lex_state = 1702, .external_lex_state = 2}, - [1839] = {.lex_state = 1702, .external_lex_state = 2}, - [1840] = {.lex_state = 1702, .external_lex_state = 2}, - [1841] = {.lex_state = 40, .external_lex_state = 2}, - [1842] = {.lex_state = 1702, .external_lex_state = 2}, - [1843] = {.lex_state = 1664}, - [1844] = {.lex_state = 1647}, - [1845] = {.lex_state = 1660}, - [1846] = {.lex_state = 1664}, - [1847] = {.lex_state = 1664}, - [1848] = {.lex_state = 1702, .external_lex_state = 2}, - [1849] = {.lex_state = 1647}, - [1850] = {.lex_state = 1702, .external_lex_state = 2}, - [1851] = {.lex_state = 1702, .external_lex_state = 2}, - [1852] = {.lex_state = 1664}, - [1853] = {.lex_state = 1664}, - [1854] = {.lex_state = 1702, .external_lex_state = 2}, - [1855] = {.lex_state = 1664}, - [1856] = {.lex_state = 1664}, - [1857] = {.lex_state = 1702, .external_lex_state = 2}, - [1858] = {.lex_state = 1702, .external_lex_state = 2}, - [1859] = {.lex_state = 1702, .external_lex_state = 2}, - [1860] = {.lex_state = 1702, .external_lex_state = 2}, - [1861] = {.lex_state = 1702, .external_lex_state = 2}, - [1862] = {.lex_state = 1702, .external_lex_state = 2}, - [1863] = {.lex_state = 1664}, - [1864] = {.lex_state = 1702, .external_lex_state = 2}, - [1865] = {.lex_state = 1664}, - [1866] = {.lex_state = 1702, .external_lex_state = 2}, - [1867] = {.lex_state = 1702, .external_lex_state = 2}, - [1868] = {.lex_state = 1664}, - [1869] = {.lex_state = 1664}, - [1870] = {.lex_state = 1664}, - [1871] = {.lex_state = 1702, .external_lex_state = 2}, - [1872] = {.lex_state = 1702, .external_lex_state = 2}, - [1873] = {.lex_state = 1702, .external_lex_state = 2}, - [1874] = {.lex_state = 1702, .external_lex_state = 2}, - [1875] = {.lex_state = 1702, .external_lex_state = 2}, - [1876] = {.lex_state = 1702, .external_lex_state = 2}, - [1877] = {.lex_state = 1651}, - [1878] = {.lex_state = 1702, .external_lex_state = 2}, - [1879] = {.lex_state = 1702, .external_lex_state = 2}, - [1880] = {.lex_state = 1702, .external_lex_state = 2}, - [1881] = {.lex_state = 1702, .external_lex_state = 2}, - [1882] = {.lex_state = 1702, .external_lex_state = 2}, - [1883] = {.lex_state = 1702, .external_lex_state = 2}, - [1884] = {.lex_state = 1702, .external_lex_state = 2}, - [1885] = {.lex_state = 1702, .external_lex_state = 2}, - [1886] = {.lex_state = 1702, .external_lex_state = 2}, - [1887] = {.lex_state = 1702, .external_lex_state = 2}, - [1888] = {.lex_state = 1664}, - [1889] = {.lex_state = 1664}, - [1890] = {.lex_state = 1647}, - [1891] = {.lex_state = 1702, .external_lex_state = 2}, - [1892] = {.lex_state = 1702, .external_lex_state = 2}, - [1893] = {.lex_state = 1702, .external_lex_state = 2}, - [1894] = {.lex_state = 1702, .external_lex_state = 2}, - [1895] = {.lex_state = 1702, .external_lex_state = 2}, - [1896] = {.lex_state = 1702, .external_lex_state = 2}, - [1897] = {.lex_state = 1702, .external_lex_state = 2}, - [1898] = {.lex_state = 40, .external_lex_state = 2}, - [1899] = {.lex_state = 1702, .external_lex_state = 2}, - [1900] = {.lex_state = 1702, .external_lex_state = 2}, - [1901] = {.lex_state = 1702, .external_lex_state = 2}, - [1902] = {.lex_state = 1664}, - [1903] = {.lex_state = 1702, .external_lex_state = 2}, - [1904] = {.lex_state = 1702, .external_lex_state = 2}, - [1905] = {.lex_state = 1664}, - [1906] = {.lex_state = 1702, .external_lex_state = 2}, - [1907] = {.lex_state = 1702, .external_lex_state = 2}, - [1908] = {.lex_state = 1664}, - [1909] = {.lex_state = 1702, .external_lex_state = 2}, - [1910] = {.lex_state = 1664}, - [1911] = {.lex_state = 1664}, - [1912] = {.lex_state = 1664}, - [1913] = {.lex_state = 1647}, - [1914] = {.lex_state = 1664}, - [1915] = {.lex_state = 1702, .external_lex_state = 2}, - [1916] = {.lex_state = 1702, .external_lex_state = 2}, - [1917] = {.lex_state = 1702, .external_lex_state = 2}, - [1918] = {.lex_state = 1702, .external_lex_state = 2}, - [1919] = {.lex_state = 1664}, - [1920] = {.lex_state = 1702, .external_lex_state = 2}, - [1921] = {.lex_state = 1702, .external_lex_state = 2}, - [1922] = {.lex_state = 1664}, - [1923] = {.lex_state = 1702, .external_lex_state = 2}, - [1924] = {.lex_state = 1647}, - [1925] = {.lex_state = 1702, .external_lex_state = 2}, - [1926] = {.lex_state = 1702, .external_lex_state = 2}, - [1927] = {.lex_state = 1702, .external_lex_state = 2}, - [1928] = {.lex_state = 1664}, - [1929] = {.lex_state = 1702, .external_lex_state = 2}, - [1930] = {.lex_state = 1702, .external_lex_state = 2}, - [1931] = {.lex_state = 1702, .external_lex_state = 2}, - [1932] = {.lex_state = 1702, .external_lex_state = 2}, - [1933] = {.lex_state = 1702, .external_lex_state = 2}, - [1934] = {.lex_state = 1702, .external_lex_state = 2}, - [1935] = {.lex_state = 1702, .external_lex_state = 2}, - [1936] = {.lex_state = 1702, .external_lex_state = 2}, - [1937] = {.lex_state = 1702, .external_lex_state = 2}, - [1938] = {.lex_state = 1702, .external_lex_state = 2}, - [1939] = {.lex_state = 1702, .external_lex_state = 2}, - [1940] = {.lex_state = 1702, .external_lex_state = 2}, - [1941] = {.lex_state = 1702, .external_lex_state = 2}, - [1942] = {.lex_state = 1702, .external_lex_state = 2}, - [1943] = {.lex_state = 40, .external_lex_state = 2}, - [1944] = {.lex_state = 40, .external_lex_state = 2}, - [1945] = {.lex_state = 1664}, - [1946] = {.lex_state = 1664}, - [1947] = {.lex_state = 1664}, - [1948] = {.lex_state = 1664}, - [1949] = {.lex_state = 1664}, - [1950] = {.lex_state = 1664}, - [1951] = {.lex_state = 1664}, - [1952] = {.lex_state = 1664}, - [1953] = {.lex_state = 1664}, - [1954] = {.lex_state = 1664}, - [1955] = {.lex_state = 1664}, - [1956] = {.lex_state = 1664}, - [1957] = {.lex_state = 1653}, - [1958] = {.lex_state = 1664}, - [1959] = {.lex_state = 1664}, - [1960] = {.lex_state = 1664}, - [1961] = {.lex_state = 1653}, - [1962] = {.lex_state = 1664}, - [1963] = {.lex_state = 1664}, - [1964] = {.lex_state = 1664}, - [1965] = {.lex_state = 1664}, - [1966] = {.lex_state = 1664}, - [1967] = {.lex_state = 1664}, - [1968] = {.lex_state = 1664}, - [1969] = {.lex_state = 1664}, - [1970] = {.lex_state = 1664}, - [1971] = {.lex_state = 1664}, - [1972] = {.lex_state = 1664}, - [1973] = {.lex_state = 1664}, - [1974] = {.lex_state = 1664}, - [1975] = {.lex_state = 1664}, - [1976] = {.lex_state = 155, .external_lex_state = 2}, - [1977] = {.lex_state = 1664}, - [1978] = {.lex_state = 1664}, - [1979] = {.lex_state = 1664}, - [1980] = {.lex_state = 1664}, - [1981] = {.lex_state = 1651}, - [1982] = {.lex_state = 1664}, - [1983] = {.lex_state = 1649}, - [1984] = {.lex_state = 1664}, - [1985] = {.lex_state = 1664}, - [1986] = {.lex_state = 1664}, - [1987] = {.lex_state = 1664}, - [1988] = {.lex_state = 1660}, - [1989] = {.lex_state = 1664}, - [1990] = {.lex_state = 1694, .external_lex_state = 2}, - [1991] = {.lex_state = 1694, .external_lex_state = 2}, - [1992] = {.lex_state = 1664}, - [1993] = {.lex_state = 1664}, - [1994] = {.lex_state = 1664}, - [1995] = {.lex_state = 1664}, - [1996] = {.lex_state = 1664}, - [1997] = {.lex_state = 1664}, - [1998] = {.lex_state = 1664}, - [1999] = {.lex_state = 1664}, - [2000] = {.lex_state = 1664}, - [2001] = {.lex_state = 1664}, - [2002] = {.lex_state = 1664}, - [2003] = {.lex_state = 1664}, - [2004] = {.lex_state = 1664}, - [2005] = {.lex_state = 1664}, - [2006] = {.lex_state = 1664}, - [2007] = {.lex_state = 1664}, - [2008] = {.lex_state = 1664}, - [2009] = {.lex_state = 1664}, - [2010] = {.lex_state = 1664}, - [2011] = {.lex_state = 1664}, - [2012] = {.lex_state = 1664}, - [2013] = {.lex_state = 1664}, - [2014] = {.lex_state = 1664}, - [2015] = {.lex_state = 1664}, - [2016] = {.lex_state = 1664}, - [2017] = {.lex_state = 155, .external_lex_state = 2}, - [2018] = {.lex_state = 1664}, - [2019] = {.lex_state = 155, .external_lex_state = 2}, - [2020] = {.lex_state = 1664}, - [2021] = {.lex_state = 1664}, - [2022] = {.lex_state = 1664}, - [2023] = {.lex_state = 1664}, - [2024] = {.lex_state = 1664}, - [2025] = {.lex_state = 1664}, - [2026] = {.lex_state = 1664}, - [2027] = {.lex_state = 1664}, - [2028] = {.lex_state = 1664}, - [2029] = {.lex_state = 1664}, - [2030] = {.lex_state = 1664}, - [2031] = {.lex_state = 1664}, - [2032] = {.lex_state = 1664}, - [2033] = {.lex_state = 1664}, - [2034] = {.lex_state = 1664}, - [2035] = {.lex_state = 1664}, - [2036] = {.lex_state = 1664}, - [2037] = {.lex_state = 155, .external_lex_state = 2}, - [2038] = {.lex_state = 1664}, - [2039] = {.lex_state = 1664}, - [2040] = {.lex_state = 1664}, - [2041] = {.lex_state = 1694, .external_lex_state = 2}, - [2042] = {.lex_state = 1694, .external_lex_state = 2}, - [2043] = {.lex_state = 1664}, - [2044] = {.lex_state = 1664}, - [2045] = {.lex_state = 1664}, - [2046] = {.lex_state = 1664}, - [2047] = {.lex_state = 1664}, - [2048] = {.lex_state = 1664}, - [2049] = {.lex_state = 1664}, - [2050] = {.lex_state = 1664}, - [2051] = {.lex_state = 1664}, - [2052] = {.lex_state = 1664}, - [2053] = {.lex_state = 1664}, - [2054] = {.lex_state = 1664}, - [2055] = {.lex_state = 1664}, - [2056] = {.lex_state = 1664}, - [2057] = {.lex_state = 1664}, - [2058] = {.lex_state = 1664}, - [2059] = {.lex_state = 1664}, - [2060] = {.lex_state = 1664}, - [2061] = {.lex_state = 1664}, - [2062] = {.lex_state = 1664}, - [2063] = {.lex_state = 1664}, - [2064] = {.lex_state = 1664}, - [2065] = {.lex_state = 1664}, - [2066] = {.lex_state = 1664}, - [2067] = {.lex_state = 1664}, - [2068] = {.lex_state = 1664}, - [2069] = {.lex_state = 1664}, - [2070] = {.lex_state = 1664}, - [2071] = {.lex_state = 1664}, - [2072] = {.lex_state = 1664}, - [2073] = {.lex_state = 1664}, - [2074] = {.lex_state = 1664}, - [2075] = {.lex_state = 1664}, - [2076] = {.lex_state = 1664}, - [2077] = {.lex_state = 1664}, - [2078] = {.lex_state = 1664}, - [2079] = {.lex_state = 1664}, - [2080] = {.lex_state = 1664}, - [2081] = {.lex_state = 1664}, - [2082] = {.lex_state = 1664}, - [2083] = {.lex_state = 1664}, - [2084] = {.lex_state = 1664}, - [2085] = {.lex_state = 1664}, - [2086] = {.lex_state = 1657}, - [2087] = {.lex_state = 40, .external_lex_state = 2}, - [2088] = {.lex_state = 40, .external_lex_state = 2}, - [2089] = {.lex_state = 1664}, - [2090] = {.lex_state = 40, .external_lex_state = 2}, - [2091] = {.lex_state = 40, .external_lex_state = 2}, - [2092] = {.lex_state = 1664}, - [2093] = {.lex_state = 1664}, - [2094] = {.lex_state = 1664}, - [2095] = {.lex_state = 1664}, - [2096] = {.lex_state = 40, .external_lex_state = 2}, - [2097] = {.lex_state = 1655}, - [2098] = {.lex_state = 1664}, - [2099] = {.lex_state = 1664}, - [2100] = {.lex_state = 1657}, - [2101] = {.lex_state = 1664}, - [2102] = {.lex_state = 1664}, - [2103] = {.lex_state = 1664}, - [2104] = {.lex_state = 1664}, - [2105] = {.lex_state = 1664}, - [2106] = {.lex_state = 40, .external_lex_state = 2}, - [2107] = {.lex_state = 1664}, - [2108] = {.lex_state = 1664}, - [2109] = {.lex_state = 40, .external_lex_state = 2}, - [2110] = {.lex_state = 1664}, - [2111] = {.lex_state = 1664}, - [2112] = {.lex_state = 1664}, - [2113] = {.lex_state = 1664}, + [1678] = {.lex_state = 1668}, + [1679] = {.lex_state = 1668}, + [1680] = {.lex_state = 1668}, + [1681] = {.lex_state = 1702, .external_lex_state = 2}, + [1682] = {.lex_state = 1668}, + [1683] = {.lex_state = 1726, .external_lex_state = 2}, + [1684] = {.lex_state = 1728, .external_lex_state = 2}, + [1685] = {.lex_state = 1721, .external_lex_state = 2}, + [1686] = {.lex_state = 1710, .external_lex_state = 2}, + [1687] = {.lex_state = 1668}, + [1688] = {.lex_state = 1668}, + [1689] = {.lex_state = 1668}, + [1690] = {.lex_state = 1668}, + [1691] = {.lex_state = 1668}, + [1692] = {.lex_state = 1668}, + [1693] = {.lex_state = 1668}, + [1694] = {.lex_state = 1679, .external_lex_state = 2}, + [1695] = {.lex_state = 1651}, + [1696] = {.lex_state = 1651}, + [1697] = {.lex_state = 1679, .external_lex_state = 2}, + [1698] = {.lex_state = 1668}, + [1699] = {.lex_state = 1668}, + [1700] = {.lex_state = 1711, .external_lex_state = 2}, + [1701] = {.lex_state = 1728, .external_lex_state = 2}, + [1702] = {.lex_state = 1668}, + [1703] = {.lex_state = 1651}, + [1704] = {.lex_state = 1668}, + [1705] = {.lex_state = 1690, .external_lex_state = 2}, + [1706] = {.lex_state = 1711, .external_lex_state = 2}, + [1707] = {.lex_state = 1679, .external_lex_state = 2}, + [1708] = {.lex_state = 1690, .external_lex_state = 2}, + [1709] = {.lex_state = 1727, .external_lex_state = 2}, + [1710] = {.lex_state = 1716, .external_lex_state = 2}, + [1711] = {.lex_state = 1726, .external_lex_state = 2}, + [1712] = {.lex_state = 1655}, + [1713] = {.lex_state = 1668}, + [1714] = {.lex_state = 1668}, + [1715] = {.lex_state = 1679, .external_lex_state = 2}, + [1716] = {.lex_state = 1704, .external_lex_state = 2}, + [1717] = {.lex_state = 1668}, + [1718] = {.lex_state = 1651}, + [1719] = {.lex_state = 1703, .external_lex_state = 2}, + [1720] = {.lex_state = 1679, .external_lex_state = 2}, + [1721] = {.lex_state = 1727, .external_lex_state = 2}, + [1722] = {.lex_state = 1727, .external_lex_state = 2}, + [1723] = {.lex_state = 1668}, + [1724] = {.lex_state = 1703, .external_lex_state = 2}, + [1725] = {.lex_state = 1668}, + [1726] = {.lex_state = 1668}, + [1727] = {.lex_state = 1668}, + [1728] = {.lex_state = 1690, .external_lex_state = 2}, + [1729] = {.lex_state = 1679, .external_lex_state = 2}, + [1730] = {.lex_state = 1728, .external_lex_state = 2}, + [1731] = {.lex_state = 1690, .external_lex_state = 2}, + [1732] = {.lex_state = 1668}, + [1733] = {.lex_state = 1668}, + [1734] = {.lex_state = 1704, .external_lex_state = 2}, + [1735] = {.lex_state = 1710, .external_lex_state = 2}, + [1736] = {.lex_state = 1710, .external_lex_state = 2}, + [1737] = {.lex_state = 1728, .external_lex_state = 2}, + [1738] = {.lex_state = 1668}, + [1739] = {.lex_state = 1690, .external_lex_state = 2}, + [1740] = {.lex_state = 1710, .external_lex_state = 2}, + [1741] = {.lex_state = 1690, .external_lex_state = 2}, + [1742] = {.lex_state = 1668}, + [1743] = {.lex_state = 1726, .external_lex_state = 2}, + [1744] = {.lex_state = 1690, .external_lex_state = 2}, + [1745] = {.lex_state = 1705, .external_lex_state = 2}, + [1746] = {.lex_state = 1651}, + [1747] = {.lex_state = 1668}, + [1748] = {.lex_state = 1728, .external_lex_state = 2}, + [1749] = {.lex_state = 1706, .external_lex_state = 2}, + [1750] = {.lex_state = 1668}, + [1751] = {.lex_state = 1706, .external_lex_state = 2}, + [1752] = {.lex_state = 1668}, + [1753] = {.lex_state = 1704, .external_lex_state = 2}, + [1754] = {.lex_state = 1668}, + [1755] = {.lex_state = 1728, .external_lex_state = 2}, + [1756] = {.lex_state = 35, .external_lex_state = 2}, + [1757] = {.lex_state = 1706, .external_lex_state = 2}, + [1758] = {.lex_state = 1668}, + [1759] = {.lex_state = 1706, .external_lex_state = 2}, + [1760] = {.lex_state = 1726, .external_lex_state = 2}, + [1761] = {.lex_state = 1668}, + [1762] = {.lex_state = 1706, .external_lex_state = 2}, + [1763] = {.lex_state = 1721, .external_lex_state = 2}, + [1764] = {.lex_state = 1706, .external_lex_state = 2}, + [1765] = {.lex_state = 1668}, + [1766] = {.lex_state = 1668}, + [1767] = {.lex_state = 1668}, + [1768] = {.lex_state = 1668}, + [1769] = {.lex_state = 1668}, + [1770] = {.lex_state = 1706, .external_lex_state = 2}, + [1771] = {.lex_state = 1706, .external_lex_state = 2}, + [1772] = {.lex_state = 1706, .external_lex_state = 2}, + [1773] = {.lex_state = 1706, .external_lex_state = 2}, + [1774] = {.lex_state = 1668}, + [1775] = {.lex_state = 1668}, + [1776] = {.lex_state = 1668}, + [1777] = {.lex_state = 1668}, + [1778] = {.lex_state = 1668}, + [1779] = {.lex_state = 1668}, + [1780] = {.lex_state = 1668}, + [1781] = {.lex_state = 1706, .external_lex_state = 2}, + [1782] = {.lex_state = 1668}, + [1783] = {.lex_state = 1668}, + [1784] = {.lex_state = 1706, .external_lex_state = 2}, + [1785] = {.lex_state = 1706, .external_lex_state = 2}, + [1786] = {.lex_state = 1706, .external_lex_state = 2}, + [1787] = {.lex_state = 1706, .external_lex_state = 2}, + [1788] = {.lex_state = 1706, .external_lex_state = 2}, + [1789] = {.lex_state = 1706, .external_lex_state = 2}, + [1790] = {.lex_state = 1668}, + [1791] = {.lex_state = 1668}, + [1792] = {.lex_state = 1706, .external_lex_state = 2}, + [1793] = {.lex_state = 1706, .external_lex_state = 2}, + [1794] = {.lex_state = 1706, .external_lex_state = 2}, + [1795] = {.lex_state = 1706, .external_lex_state = 2}, + [1796] = {.lex_state = 1706, .external_lex_state = 2}, + [1797] = {.lex_state = 1668}, + [1798] = {.lex_state = 1706, .external_lex_state = 2}, + [1799] = {.lex_state = 1706, .external_lex_state = 2}, + [1800] = {.lex_state = 1706, .external_lex_state = 2}, + [1801] = {.lex_state = 1706, .external_lex_state = 2}, + [1802] = {.lex_state = 1706, .external_lex_state = 2}, + [1803] = {.lex_state = 1706, .external_lex_state = 2}, + [1804] = {.lex_state = 1706, .external_lex_state = 2}, + [1805] = {.lex_state = 1668}, + [1806] = {.lex_state = 1668}, + [1807] = {.lex_state = 1664}, + [1808] = {.lex_state = 1668}, + [1809] = {.lex_state = 1668}, + [1810] = {.lex_state = 1668}, + [1811] = {.lex_state = 1711, .external_lex_state = 2}, + [1812] = {.lex_state = 1706, .external_lex_state = 2}, + [1813] = {.lex_state = 1668}, + [1814] = {.lex_state = 1668}, + [1815] = {.lex_state = 1706, .external_lex_state = 2}, + [1816] = {.lex_state = 1668}, + [1817] = {.lex_state = 1668}, + [1818] = {.lex_state = 1706, .external_lex_state = 2}, + [1819] = {.lex_state = 1706, .external_lex_state = 2}, + [1820] = {.lex_state = 1668}, + [1821] = {.lex_state = 1668}, + [1822] = {.lex_state = 1668}, + [1823] = {.lex_state = 1668}, + [1824] = {.lex_state = 1668}, + [1825] = {.lex_state = 1668}, + [1826] = {.lex_state = 1668}, + [1827] = {.lex_state = 1668}, + [1828] = {.lex_state = 1711, .external_lex_state = 2}, + [1829] = {.lex_state = 1711, .external_lex_state = 2}, + [1830] = {.lex_state = 1726, .external_lex_state = 2}, + [1831] = {.lex_state = 1706, .external_lex_state = 2}, + [1832] = {.lex_state = 1706, .external_lex_state = 2}, + [1833] = {.lex_state = 1668}, + [1834] = {.lex_state = 1668}, + [1835] = {.lex_state = 1668}, + [1836] = {.lex_state = 1706, .external_lex_state = 2}, + [1837] = {.lex_state = 1668}, + [1838] = {.lex_state = 1668}, + [1839] = {.lex_state = 1668}, + [1840] = {.lex_state = 1668}, + [1841] = {.lex_state = 1668}, + [1842] = {.lex_state = 1668}, + [1843] = {.lex_state = 1668}, + [1844] = {.lex_state = 1706, .external_lex_state = 2}, + [1845] = {.lex_state = 1668}, + [1846] = {.lex_state = 1668}, + [1847] = {.lex_state = 1668}, + [1848] = {.lex_state = 1668}, + [1849] = {.lex_state = 1703, .external_lex_state = 2}, + [1850] = {.lex_state = 1668}, + [1851] = {.lex_state = 1668}, + [1852] = {.lex_state = 1668}, + [1853] = {.lex_state = 1706, .external_lex_state = 2}, + [1854] = {.lex_state = 1706, .external_lex_state = 2}, + [1855] = {.lex_state = 1668}, + [1856] = {.lex_state = 1706, .external_lex_state = 2}, + [1857] = {.lex_state = 1668}, + [1858] = {.lex_state = 1706, .external_lex_state = 2}, + [1859] = {.lex_state = 1668}, + [1860] = {.lex_state = 1706, .external_lex_state = 2}, + [1861] = {.lex_state = 1706, .external_lex_state = 2}, + [1862] = {.lex_state = 1706, .external_lex_state = 2}, + [1863] = {.lex_state = 1668}, + [1864] = {.lex_state = 1668}, + [1865] = {.lex_state = 1706, .external_lex_state = 2}, + [1866] = {.lex_state = 1668}, + [1867] = {.lex_state = 1668}, + [1868] = {.lex_state = 1706, .external_lex_state = 2}, + [1869] = {.lex_state = 1668}, + [1870] = {.lex_state = 1706, .external_lex_state = 2}, + [1871] = {.lex_state = 1705, .external_lex_state = 2}, + [1872] = {.lex_state = 1706, .external_lex_state = 2}, + [1873] = {.lex_state = 1706, .external_lex_state = 2}, + [1874] = {.lex_state = 1706, .external_lex_state = 2}, + [1875] = {.lex_state = 1668}, + [1876] = {.lex_state = 1728, .external_lex_state = 2}, + [1877] = {.lex_state = 1668}, + [1878] = {.lex_state = 1706, .external_lex_state = 2}, + [1879] = {.lex_state = 1706, .external_lex_state = 2}, + [1880] = {.lex_state = 1706, .external_lex_state = 2}, + [1881] = {.lex_state = 1706, .external_lex_state = 2}, + [1882] = {.lex_state = 1706, .external_lex_state = 2}, + [1883] = {.lex_state = 1668}, + [1884] = {.lex_state = 1706, .external_lex_state = 2}, + [1885] = {.lex_state = 1668}, + [1886] = {.lex_state = 1668}, + [1887] = {.lex_state = 1706, .external_lex_state = 2}, + [1888] = {.lex_state = 1706, .external_lex_state = 2}, + [1889] = {.lex_state = 1706, .external_lex_state = 2}, + [1890] = {.lex_state = 1668}, + [1891] = {.lex_state = 1706, .external_lex_state = 2}, + [1892] = {.lex_state = 1706, .external_lex_state = 2}, + [1893] = {.lex_state = 1668}, + [1894] = {.lex_state = 1703, .external_lex_state = 2}, + [1895] = {.lex_state = 1706, .external_lex_state = 2}, + [1896] = {.lex_state = 1668}, + [1897] = {.lex_state = 1668}, + [1898] = {.lex_state = 1668}, + [1899] = {.lex_state = 1668}, + [1900] = {.lex_state = 1668}, + [1901] = {.lex_state = 1668}, + [1902] = {.lex_state = 1668}, + [1903] = {.lex_state = 1668}, + [1904] = {.lex_state = 1721, .external_lex_state = 2}, + [1905] = {.lex_state = 1668}, + [1906] = {.lex_state = 1668}, + [1907] = {.lex_state = 1668}, + [1908] = {.lex_state = 1668}, + [1909] = {.lex_state = 1668}, + [1910] = {.lex_state = 1668}, + [1911] = {.lex_state = 1668}, + [1912] = {.lex_state = 1706, .external_lex_state = 2}, + [1913] = {.lex_state = 1668}, + [1914] = {.lex_state = 1668}, + [1915] = {.lex_state = 1655}, + [1916] = {.lex_state = 1668}, + [1917] = {.lex_state = 1668}, + [1918] = {.lex_state = 1706, .external_lex_state = 2}, + [1919] = {.lex_state = 1726, .external_lex_state = 2}, + [1920] = {.lex_state = 1668}, + [1921] = {.lex_state = 1706, .external_lex_state = 2}, + [1922] = {.lex_state = 1706, .external_lex_state = 2}, + [1923] = {.lex_state = 1706, .external_lex_state = 2}, + [1924] = {.lex_state = 1706, .external_lex_state = 2}, + [1925] = {.lex_state = 1706, .external_lex_state = 2}, + [1926] = {.lex_state = 1706, .external_lex_state = 2}, + [1927] = {.lex_state = 1706, .external_lex_state = 2}, + [1928] = {.lex_state = 1706, .external_lex_state = 2}, + [1929] = {.lex_state = 1706, .external_lex_state = 2}, + [1930] = {.lex_state = 1706, .external_lex_state = 2}, + [1931] = {.lex_state = 35, .external_lex_state = 2}, + [1932] = {.lex_state = 1706, .external_lex_state = 2}, + [1933] = {.lex_state = 1668}, + [1934] = {.lex_state = 1706, .external_lex_state = 2}, + [1935] = {.lex_state = 1706, .external_lex_state = 2}, + [1936] = {.lex_state = 1668}, + [1937] = {.lex_state = 1668}, + [1938] = {.lex_state = 1668}, + [1939] = {.lex_state = 1668}, + [1940] = {.lex_state = 1706, .external_lex_state = 2}, + [1941] = {.lex_state = 1668}, + [1942] = {.lex_state = 1668}, + [1943] = {.lex_state = 1668}, + [1944] = {.lex_state = 1706, .external_lex_state = 2}, + [1945] = {.lex_state = 1657}, + [1946] = {.lex_state = 1668}, + [1947] = {.lex_state = 1668}, + [1948] = {.lex_state = 1657}, + [1949] = {.lex_state = 1653}, + [1950] = {.lex_state = 1668}, + [1951] = {.lex_state = 1668}, + [1952] = {.lex_state = 1668}, + [1953] = {.lex_state = 1668}, + [1954] = {.lex_state = 1668}, + [1955] = {.lex_state = 1668}, + [1956] = {.lex_state = 35, .external_lex_state = 2}, + [1957] = {.lex_state = 1679, .external_lex_state = 2}, + [1958] = {.lex_state = 1668}, + [1959] = {.lex_state = 1668}, + [1960] = {.lex_state = 1668}, + [1961] = {.lex_state = 1668}, + [1962] = {.lex_state = 1668}, + [1963] = {.lex_state = 1668}, + [1964] = {.lex_state = 1668}, + [1965] = {.lex_state = 1668}, + [1966] = {.lex_state = 1668}, + [1967] = {.lex_state = 1668}, + [1968] = {.lex_state = 1668}, + [1969] = {.lex_state = 1668}, + [1970] = {.lex_state = 1668}, + [1971] = {.lex_state = 1728, .external_lex_state = 2}, + [1972] = {.lex_state = 1679, .external_lex_state = 2}, + [1973] = {.lex_state = 1668}, + [1974] = {.lex_state = 1668}, + [1975] = {.lex_state = 1668}, + [1976] = {.lex_state = 1668}, + [1977] = {.lex_state = 1728, .external_lex_state = 2}, + [1978] = {.lex_state = 1704, .external_lex_state = 2}, + [1979] = {.lex_state = 1706, .external_lex_state = 2}, + [1980] = {.lex_state = 1668}, + [1981] = {.lex_state = 1706, .external_lex_state = 2}, + [1982] = {.lex_state = 1657}, + [1983] = {.lex_state = 40, .external_lex_state = 2}, + [1984] = {.lex_state = 1659}, + [1985] = {.lex_state = 1668}, + [1986] = {.lex_state = 1668}, + [1987] = {.lex_state = 1706, .external_lex_state = 2}, + [1988] = {.lex_state = 1706, .external_lex_state = 2}, + [1989] = {.lex_state = 1706, .external_lex_state = 2}, + [1990] = {.lex_state = 1668}, + [1991] = {.lex_state = 1706, .external_lex_state = 2}, + [1992] = {.lex_state = 1706, .external_lex_state = 2}, + [1993] = {.lex_state = 1659}, + [1994] = {.lex_state = 1706, .external_lex_state = 2}, + [1995] = {.lex_state = 1706, .external_lex_state = 2}, + [1996] = {.lex_state = 1706, .external_lex_state = 2}, + [1997] = {.lex_state = 1706, .external_lex_state = 2}, + [1998] = {.lex_state = 1661}, + [1999] = {.lex_state = 1661}, + [2000] = {.lex_state = 1706, .external_lex_state = 2}, + [2001] = {.lex_state = 1706, .external_lex_state = 2}, + [2002] = {.lex_state = 1668}, + [2003] = {.lex_state = 1706, .external_lex_state = 2}, + [2004] = {.lex_state = 1659}, + [2005] = {.lex_state = 1706, .external_lex_state = 2}, + [2006] = {.lex_state = 1706, .external_lex_state = 2}, + [2007] = {.lex_state = 1706, .external_lex_state = 2}, + [2008] = {.lex_state = 1706, .external_lex_state = 2}, + [2009] = {.lex_state = 1661}, + [2010] = {.lex_state = 1706, .external_lex_state = 2}, + [2011] = {.lex_state = 1661}, + [2012] = {.lex_state = 1661}, + [2013] = {.lex_state = 1706, .external_lex_state = 2}, + [2014] = {.lex_state = 1668}, + [2015] = {.lex_state = 1668}, + [2016] = {.lex_state = 1668}, + [2017] = {.lex_state = 1659}, + [2018] = {.lex_state = 1706, .external_lex_state = 2}, + [2019] = {.lex_state = 1668}, + [2020] = {.lex_state = 1706, .external_lex_state = 2}, + [2021] = {.lex_state = 1706, .external_lex_state = 2}, + [2022] = {.lex_state = 1668}, + [2023] = {.lex_state = 1706, .external_lex_state = 2}, + [2024] = {.lex_state = 1706, .external_lex_state = 2}, + [2025] = {.lex_state = 1706, .external_lex_state = 2}, + [2026] = {.lex_state = 1668}, + [2027] = {.lex_state = 1706, .external_lex_state = 2}, + [2028] = {.lex_state = 1706, .external_lex_state = 2}, + [2029] = {.lex_state = 1706, .external_lex_state = 2}, + [2030] = {.lex_state = 1668}, + [2031] = {.lex_state = 1668}, + [2032] = {.lex_state = 1706, .external_lex_state = 2}, + [2033] = {.lex_state = 1659}, + [2034] = {.lex_state = 1706, .external_lex_state = 2}, + [2035] = {.lex_state = 1706, .external_lex_state = 2}, + [2036] = {.lex_state = 1668}, + [2037] = {.lex_state = 1706, .external_lex_state = 2}, + [2038] = {.lex_state = 1668}, + [2039] = {.lex_state = 1706, .external_lex_state = 2}, + [2040] = {.lex_state = 1668}, + [2041] = {.lex_state = 1657}, + [2042] = {.lex_state = 1706, .external_lex_state = 2}, + [2043] = {.lex_state = 1668}, + [2044] = {.lex_state = 1706, .external_lex_state = 2}, + [2045] = {.lex_state = 1706, .external_lex_state = 2}, + [2046] = {.lex_state = 1668}, + [2047] = {.lex_state = 1706, .external_lex_state = 2}, + [2048] = {.lex_state = 1668}, + [2049] = {.lex_state = 1668}, + [2050] = {.lex_state = 1706, .external_lex_state = 2}, + [2051] = {.lex_state = 1706, .external_lex_state = 2}, + [2052] = {.lex_state = 1706, .external_lex_state = 2}, + [2053] = {.lex_state = 1706, .external_lex_state = 2}, + [2054] = {.lex_state = 1706, .external_lex_state = 2}, + [2055] = {.lex_state = 1668}, + [2056] = {.lex_state = 1706, .external_lex_state = 2}, + [2057] = {.lex_state = 1706, .external_lex_state = 2}, + [2058] = {.lex_state = 1706, .external_lex_state = 2}, + [2059] = {.lex_state = 1706, .external_lex_state = 2}, + [2060] = {.lex_state = 40, .external_lex_state = 2}, + [2061] = {.lex_state = 1706, .external_lex_state = 2}, + [2062] = {.lex_state = 1706, .external_lex_state = 2}, + [2063] = {.lex_state = 1706, .external_lex_state = 2}, + [2064] = {.lex_state = 1706, .external_lex_state = 2}, + [2065] = {.lex_state = 1706, .external_lex_state = 2}, + [2066] = {.lex_state = 1668}, + [2067] = {.lex_state = 1706, .external_lex_state = 2}, + [2068] = {.lex_state = 1668}, + [2069] = {.lex_state = 1706, .external_lex_state = 2}, + [2070] = {.lex_state = 1706, .external_lex_state = 2}, + [2071] = {.lex_state = 1706, .external_lex_state = 2}, + [2072] = {.lex_state = 1706, .external_lex_state = 2}, + [2073] = {.lex_state = 1668}, + [2074] = {.lex_state = 1706, .external_lex_state = 2}, + [2075] = {.lex_state = 1706, .external_lex_state = 2}, + [2076] = {.lex_state = 1706, .external_lex_state = 2}, + [2077] = {.lex_state = 1706, .external_lex_state = 2}, + [2078] = {.lex_state = 1706, .external_lex_state = 2}, + [2079] = {.lex_state = 1706, .external_lex_state = 2}, + [2080] = {.lex_state = 1668}, + [2081] = {.lex_state = 1659}, + [2082] = {.lex_state = 1668}, + [2083] = {.lex_state = 1706, .external_lex_state = 2}, + [2084] = {.lex_state = 1668}, + [2085] = {.lex_state = 1659}, + [2086] = {.lex_state = 1706, .external_lex_state = 2}, + [2087] = {.lex_state = 1659}, + [2088] = {.lex_state = 1668}, + [2089] = {.lex_state = 1668}, + [2090] = {.lex_state = 1659}, + [2091] = {.lex_state = 1668}, + [2092] = {.lex_state = 1668}, + [2093] = {.lex_state = 1706, .external_lex_state = 2}, + [2094] = {.lex_state = 1706, .external_lex_state = 2}, + [2095] = {.lex_state = 1706, .external_lex_state = 2}, + [2096] = {.lex_state = 1706, .external_lex_state = 2}, + [2097] = {.lex_state = 1706, .external_lex_state = 2}, + [2098] = {.lex_state = 1706, .external_lex_state = 2}, + [2099] = {.lex_state = 1668}, + [2100] = {.lex_state = 1706, .external_lex_state = 2}, + [2101] = {.lex_state = 1706, .external_lex_state = 2}, + [2102] = {.lex_state = 1706, .external_lex_state = 2}, + [2103] = {.lex_state = 1668}, + [2104] = {.lex_state = 1668}, + [2105] = {.lex_state = 1668}, + [2106] = {.lex_state = 1668}, + [2107] = {.lex_state = 1668}, + [2108] = {.lex_state = 1668}, + [2109] = {.lex_state = 1706, .external_lex_state = 2}, + [2110] = {.lex_state = 1668}, + [2111] = {.lex_state = 1668}, + [2112] = {.lex_state = 1668}, + [2113] = {.lex_state = 1706, .external_lex_state = 2}, [2114] = {.lex_state = 40, .external_lex_state = 2}, - [2115] = {.lex_state = 1664}, - [2116] = {.lex_state = 1655}, - [2117] = {.lex_state = 1653}, - [2118] = {.lex_state = 1655}, - [2119] = {.lex_state = 1664}, - [2120] = {.lex_state = 40, .external_lex_state = 2}, - [2121] = {.lex_state = 1664}, - [2122] = {.lex_state = 1664}, - [2123] = {.lex_state = 1664}, - [2124] = {.lex_state = 1664}, - [2125] = {.lex_state = 1653}, - [2126] = {.lex_state = 1664}, - [2127] = {.lex_state = 1664}, - [2128] = {.lex_state = 1664}, - [2129] = {.lex_state = 1664}, - [2130] = {.lex_state = 1664}, - [2131] = {.lex_state = 1655}, - [2132] = {.lex_state = 1664}, - [2133] = {.lex_state = 1655}, - [2134] = {.lex_state = 1655}, - [2135] = {.lex_state = 1657}, - [2136] = {.lex_state = 1664}, - [2137] = {.lex_state = 1664}, - [2138] = {.lex_state = 1664}, - [2139] = {.lex_state = 1664}, - [2140] = {.lex_state = 1664}, - [2141] = {.lex_state = 1664}, - [2142] = {.lex_state = 1664}, - [2143] = {.lex_state = 1664}, - [2144] = {.lex_state = 1655}, - [2145] = {.lex_state = 1664}, - [2146] = {.lex_state = 1657}, - [2147] = {.lex_state = 1655}, - [2148] = {.lex_state = 1655}, - [2149] = {.lex_state = 40, .external_lex_state = 2}, - [2150] = {.lex_state = 1664}, - [2151] = {.lex_state = 1664}, - [2152] = {.lex_state = 1657}, - [2153] = {.lex_state = 1664}, - [2154] = {.lex_state = 1664}, - [2155] = {.lex_state = 1664}, - [2156] = {.lex_state = 1664}, - [2157] = {.lex_state = 1664}, - [2158] = {.lex_state = 1664}, - [2159] = {.lex_state = 1664}, - [2160] = {.lex_state = 1664}, - [2161] = {.lex_state = 1664}, - [2162] = {.lex_state = 1664}, - [2163] = {.lex_state = 1664}, - [2164] = {.lex_state = 1664}, - [2165] = {.lex_state = 1664}, - [2166] = {.lex_state = 1664}, - [2167] = {.lex_state = 1657}, - [2168] = {.lex_state = 1664}, - [2169] = {.lex_state = 1664}, - [2170] = {.lex_state = 1664}, - [2171] = {.lex_state = 1657}, - [2172] = {.lex_state = 1664}, - [2173] = {.lex_state = 155, .external_lex_state = 2}, - [2174] = {.lex_state = 1664}, - [2175] = {.lex_state = 1664}, - [2176] = {.lex_state = 1664}, - [2177] = {.lex_state = 1664}, - [2178] = {.lex_state = 1655}, - [2179] = {.lex_state = 1664}, - [2180] = {.lex_state = 1664}, - [2181] = {.lex_state = 155, .external_lex_state = 2}, - [2182] = {.lex_state = 1664}, - [2183] = {.lex_state = 1664}, - [2184] = {.lex_state = 1664}, - [2185] = {.lex_state = 1664}, - [2186] = {.lex_state = 1664}, - [2187] = {.lex_state = 1664}, - [2188] = {.lex_state = 1655}, - [2189] = {.lex_state = 35, .external_lex_state = 2}, - [2190] = {.lex_state = 1664}, - [2191] = {.lex_state = 1664}, - [2192] = {.lex_state = 1664}, - [2193] = {.lex_state = 1664}, - [2194] = {.lex_state = 1664}, - [2195] = {.lex_state = 1664}, - [2196] = {.lex_state = 1664}, - [2197] = {.lex_state = 1664}, - [2198] = {.lex_state = 1664}, - [2199] = {.lex_state = 1664}, - [2200] = {.lex_state = 1664}, - [2201] = {.lex_state = 1664}, - [2202] = {.lex_state = 1664}, - [2203] = {.lex_state = 1664}, - [2204] = {.lex_state = 1664}, - [2205] = {.lex_state = 1664}, - [2206] = {.lex_state = 1664}, - [2207] = {.lex_state = 1664}, - [2208] = {.lex_state = 155, .external_lex_state = 2}, - [2209] = {.lex_state = 1664}, - [2210] = {.lex_state = 1664}, - [2211] = {.lex_state = 1657}, - [2212] = {.lex_state = 1664}, - [2213] = {.lex_state = 1655}, - [2214] = {.lex_state = 1664}, - [2215] = {.lex_state = 1664}, - [2216] = {.lex_state = 1664}, - [2217] = {.lex_state = 1664}, - [2218] = {.lex_state = 1664}, - [2219] = {.lex_state = 1664}, - [2220] = {.lex_state = 1664}, - [2221] = {.lex_state = 1664}, - [2222] = {.lex_state = 1664}, - [2223] = {.lex_state = 1664}, - [2224] = {.lex_state = 1664}, - [2225] = {.lex_state = 1664}, - [2226] = {.lex_state = 1655}, - [2227] = {.lex_state = 1664}, - [2228] = {.lex_state = 35, .external_lex_state = 2}, - [2229] = {.lex_state = 1664}, - [2230] = {.lex_state = 1664}, - [2231] = {.lex_state = 1721, .external_lex_state = 2}, - [2232] = {.lex_state = 1664}, - [2233] = {.lex_state = 1664}, - [2234] = {.lex_state = 1664}, - [2235] = {.lex_state = 1664}, - [2236] = {.lex_state = 155, .external_lex_state = 2}, - [2237] = {.lex_state = 1664}, - [2238] = {.lex_state = 1664}, - [2239] = {.lex_state = 35, .external_lex_state = 2}, - [2240] = {.lex_state = 1664}, - [2241] = {.lex_state = 1664}, - [2242] = {.lex_state = 1664}, - [2243] = {.lex_state = 1721, .external_lex_state = 2}, - [2244] = {.lex_state = 1664}, - [2245] = {.lex_state = 1664}, - [2246] = {.lex_state = 1664}, - [2247] = {.lex_state = 1664}, - [2248] = {.lex_state = 1664}, - [2249] = {.lex_state = 1664}, - [2250] = {.lex_state = 1655}, - [2251] = {.lex_state = 1664}, - [2252] = {.lex_state = 1664}, - [2253] = {.lex_state = 1664}, - [2254] = {.lex_state = 1664}, - [2255] = {.lex_state = 1664}, - [2256] = {.lex_state = 1664}, - [2257] = {.lex_state = 1664}, - [2258] = {.lex_state = 1664}, - [2259] = {.lex_state = 1664}, - [2260] = {.lex_state = 1660}, - [2261] = {.lex_state = 1664}, - [2262] = {.lex_state = 1664}, - [2263] = {.lex_state = 1721, .external_lex_state = 2}, - [2264] = {.lex_state = 1664}, - [2265] = {.lex_state = 1655}, - [2266] = {.lex_state = 1664}, - [2267] = {.lex_state = 1664}, - [2268] = {.lex_state = 1664}, - [2269] = {.lex_state = 1664}, - [2270] = {.lex_state = 1664}, - [2271] = {.lex_state = 1664}, - [2272] = {.lex_state = 175, .external_lex_state = 2}, - [2273] = {.lex_state = 1664}, - [2274] = {.lex_state = 1664}, - [2275] = {.lex_state = 1655}, - [2276] = {.lex_state = 1664}, - [2277] = {.lex_state = 1655}, - [2278] = {.lex_state = 1664}, - [2279] = {.lex_state = 1664}, - [2280] = {.lex_state = 1664}, - [2281] = {.lex_state = 1664}, - [2282] = {.lex_state = 1664}, - [2283] = {.lex_state = 1664}, - [2284] = {.lex_state = 1657}, - [2285] = {.lex_state = 1657}, - [2286] = {.lex_state = 1664}, - [2287] = {.lex_state = 1664}, - [2288] = {.lex_state = 1664}, - [2289] = {.lex_state = 1664}, - [2290] = {.lex_state = 1664}, - [2291] = {.lex_state = 1664}, - [2292] = {.lex_state = 1664}, - [2293] = {.lex_state = 1655}, - [2294] = {.lex_state = 1664}, - [2295] = {.lex_state = 1664}, - [2296] = {.lex_state = 1664}, - [2297] = {.lex_state = 1664}, - [2298] = {.lex_state = 1664}, - [2299] = {.lex_state = 1664}, - [2300] = {.lex_state = 1664}, - [2301] = {.lex_state = 1664}, - [2302] = {.lex_state = 1664}, - [2303] = {.lex_state = 1664}, - [2304] = {.lex_state = 1664}, - [2305] = {.lex_state = 1664}, - [2306] = {.lex_state = 35, .external_lex_state = 2}, - [2307] = {.lex_state = 1655}, - [2308] = {.lex_state = 1664}, - [2309] = {.lex_state = 1664}, - [2310] = {.lex_state = 1664}, - [2311] = {.lex_state = 1664}, - [2312] = {.lex_state = 1664}, - [2313] = {.lex_state = 35, .external_lex_state = 2}, - [2314] = {.lex_state = 1664}, - [2315] = {.lex_state = 191, .external_lex_state = 2}, - [2316] = {.lex_state = 1721, .external_lex_state = 2}, - [2317] = {.lex_state = 1664}, - [2318] = {.lex_state = 35, .external_lex_state = 2}, - [2319] = {.lex_state = 1664}, - [2320] = {.lex_state = 1721, .external_lex_state = 2}, - [2321] = {.lex_state = 1664}, - [2322] = {.lex_state = 1664}, - [2323] = {.lex_state = 1664}, - [2324] = {.lex_state = 35, .external_lex_state = 2}, - [2325] = {.lex_state = 1721, .external_lex_state = 2}, - [2326] = {.lex_state = 1664}, - [2327] = {.lex_state = 173, .external_lex_state = 2}, - [2328] = {.lex_state = 1664}, - [2329] = {.lex_state = 1664}, - [2330] = {.lex_state = 1664}, - [2331] = {.lex_state = 1664}, - [2332] = {.lex_state = 242, .external_lex_state = 2}, - [2333] = {.lex_state = 1664}, - [2334] = {.lex_state = 174, .external_lex_state = 2}, - [2335] = {.lex_state = 1664}, - [2336] = {.lex_state = 1664}, - [2337] = {.lex_state = 174, .external_lex_state = 2}, - [2338] = {.lex_state = 1664}, - [2339] = {.lex_state = 1664}, - [2340] = {.lex_state = 1664}, - [2341] = {.lex_state = 1664}, - [2342] = {.lex_state = 1664}, - [2343] = {.lex_state = 1664}, - [2344] = {.lex_state = 1664}, - [2345] = {.lex_state = 1664}, - [2346] = {.lex_state = 1664}, - [2347] = {.lex_state = 1664}, - [2348] = {.lex_state = 1664}, - [2349] = {.lex_state = 1664}, - [2350] = {.lex_state = 1664}, - [2351] = {.lex_state = 1664}, - [2352] = {.lex_state = 1664}, - [2353] = {.lex_state = 244, .external_lex_state = 2}, - [2354] = {.lex_state = 1664}, - [2355] = {.lex_state = 1664}, - [2356] = {.lex_state = 1664}, - [2357] = {.lex_state = 1664}, - [2358] = {.lex_state = 1664}, - [2359] = {.lex_state = 1664}, - [2360] = {.lex_state = 1664}, - [2361] = {.lex_state = 1664}, - [2362] = {.lex_state = 1664}, - [2363] = {.lex_state = 1655}, - [2364] = {.lex_state = 1664}, - [2365] = {.lex_state = 1664}, - [2366] = {.lex_state = 1664}, - [2367] = {.lex_state = 1664}, - [2368] = {.lex_state = 1664}, - [2369] = {.lex_state = 1664}, - [2370] = {.lex_state = 1664}, - [2371] = {.lex_state = 1664}, - [2372] = {.lex_state = 1664}, - [2373] = {.lex_state = 1664}, - [2374] = {.lex_state = 1664}, - [2375] = {.lex_state = 1664}, - [2376] = {.lex_state = 1664}, - [2377] = {.lex_state = 1664}, - [2378] = {.lex_state = 1664}, - [2379] = {.lex_state = 1664}, - [2380] = {.lex_state = 1664}, - [2381] = {.lex_state = 1664}, - [2382] = {.lex_state = 1664}, - [2383] = {.lex_state = 1664}, - [2384] = {.lex_state = 1664}, - [2385] = {.lex_state = 176, .external_lex_state = 2}, - [2386] = {.lex_state = 185, .external_lex_state = 2}, - [2387] = {.lex_state = 1664}, - [2388] = {.lex_state = 1664}, - [2389] = {.lex_state = 1664}, - [2390] = {.lex_state = 1721, .external_lex_state = 2}, - [2391] = {.lex_state = 1664}, - [2392] = {.lex_state = 1664}, - [2393] = {.lex_state = 1664}, - [2394] = {.lex_state = 1664}, - [2395] = {.lex_state = 1664}, - [2396] = {.lex_state = 1664}, - [2397] = {.lex_state = 1664}, - [2398] = {.lex_state = 1664}, - [2399] = {.lex_state = 1664}, - [2400] = {.lex_state = 1664}, - [2401] = {.lex_state = 1664}, - [2402] = {.lex_state = 1664}, - [2403] = {.lex_state = 1664}, - [2404] = {.lex_state = 1664}, - [2405] = {.lex_state = 1664}, - [2406] = {.lex_state = 1664}, - [2407] = {.lex_state = 1664}, - [2408] = {.lex_state = 1664}, - [2409] = {.lex_state = 1664}, - [2410] = {.lex_state = 1664}, - [2411] = {.lex_state = 1664}, - [2412] = {.lex_state = 1664}, - [2413] = {.lex_state = 1664}, - [2414] = {.lex_state = 1664}, - [2415] = {.lex_state = 1664}, - [2416] = {.lex_state = 1664}, - [2417] = {.lex_state = 1664}, - [2418] = {.lex_state = 1664}, - [2419] = {.lex_state = 1664}, - [2420] = {.lex_state = 1721, .external_lex_state = 2}, - [2421] = {.lex_state = 1664}, - [2422] = {.lex_state = 1664}, - [2423] = {.lex_state = 35, .external_lex_state = 2}, - [2424] = {.lex_state = 1664}, - [2425] = {.lex_state = 1664}, - [2426] = {.lex_state = 1664}, - [2427] = {.lex_state = 1664}, - [2428] = {.lex_state = 1664}, - [2429] = {.lex_state = 1664}, - [2430] = {.lex_state = 1664}, - [2431] = {.lex_state = 1664}, - [2432] = {.lex_state = 1664}, - [2433] = {.lex_state = 1664}, - [2434] = {.lex_state = 1664}, - [2435] = {.lex_state = 35, .external_lex_state = 2}, - [2436] = {.lex_state = 1664}, - [2437] = {.lex_state = 1664}, - [2438] = {.lex_state = 1664}, - [2439] = {.lex_state = 1664}, - [2440] = {.lex_state = 1664}, - [2441] = {.lex_state = 1664}, - [2442] = {.lex_state = 1664}, - [2443] = {.lex_state = 1664}, - [2444] = {.lex_state = 35, .external_lex_state = 2}, - [2445] = {.lex_state = 1664}, - [2446] = {.lex_state = 1664}, + [2115] = {.lex_state = 1706, .external_lex_state = 2}, + [2116] = {.lex_state = 1706, .external_lex_state = 2}, + [2117] = {.lex_state = 1668}, + [2118] = {.lex_state = 1668}, + [2119] = {.lex_state = 1668}, + [2120] = {.lex_state = 1706, .external_lex_state = 2}, + [2121] = {.lex_state = 1668}, + [2122] = {.lex_state = 1706, .external_lex_state = 2}, + [2123] = {.lex_state = 1668}, + [2124] = {.lex_state = 1706, .external_lex_state = 2}, + [2125] = {.lex_state = 1668}, + [2126] = {.lex_state = 1706, .external_lex_state = 2}, + [2127] = {.lex_state = 1668}, + [2128] = {.lex_state = 1706, .external_lex_state = 2}, + [2129] = {.lex_state = 1706, .external_lex_state = 2}, + [2130] = {.lex_state = 1668}, + [2131] = {.lex_state = 1706, .external_lex_state = 2}, + [2132] = {.lex_state = 1668}, + [2133] = {.lex_state = 1706, .external_lex_state = 2}, + [2134] = {.lex_state = 40, .external_lex_state = 2}, + [2135] = {.lex_state = 40, .external_lex_state = 2}, + [2136] = {.lex_state = 40, .external_lex_state = 2}, + [2137] = {.lex_state = 1706, .external_lex_state = 2}, + [2138] = {.lex_state = 1668}, + [2139] = {.lex_state = 1659}, + [2140] = {.lex_state = 1668}, + [2141] = {.lex_state = 1668}, + [2142] = {.lex_state = 1668}, + [2143] = {.lex_state = 1668}, + [2144] = {.lex_state = 1668}, + [2145] = {.lex_state = 1698, .external_lex_state = 2}, + [2146] = {.lex_state = 1668}, + [2147] = {.lex_state = 1668}, + [2148] = {.lex_state = 1668}, + [2149] = {.lex_state = 1668}, + [2150] = {.lex_state = 1668}, + [2151] = {.lex_state = 1668}, + [2152] = {.lex_state = 1668}, + [2153] = {.lex_state = 1668}, + [2154] = {.lex_state = 1668}, + [2155] = {.lex_state = 1668}, + [2156] = {.lex_state = 1668}, + [2157] = {.lex_state = 1668}, + [2158] = {.lex_state = 1659}, + [2159] = {.lex_state = 1668}, + [2160] = {.lex_state = 1668}, + [2161] = {.lex_state = 1668}, + [2162] = {.lex_state = 1668}, + [2163] = {.lex_state = 1668}, + [2164] = {.lex_state = 1668}, + [2165] = {.lex_state = 1668}, + [2166] = {.lex_state = 1668}, + [2167] = {.lex_state = 1668}, + [2168] = {.lex_state = 155, .external_lex_state = 2}, + [2169] = {.lex_state = 1668}, + [2170] = {.lex_state = 1668}, + [2171] = {.lex_state = 1668}, + [2172] = {.lex_state = 1668}, + [2173] = {.lex_state = 1668}, + [2174] = {.lex_state = 1659}, + [2175] = {.lex_state = 1668}, + [2176] = {.lex_state = 1668}, + [2177] = {.lex_state = 1668}, + [2178] = {.lex_state = 1668}, + [2179] = {.lex_state = 1668}, + [2180] = {.lex_state = 1668}, + [2181] = {.lex_state = 1668}, + [2182] = {.lex_state = 1668}, + [2183] = {.lex_state = 1668}, + [2184] = {.lex_state = 1668}, + [2185] = {.lex_state = 1668}, + [2186] = {.lex_state = 1668}, + [2187] = {.lex_state = 1668}, + [2188] = {.lex_state = 1668}, + [2189] = {.lex_state = 1668}, + [2190] = {.lex_state = 1668}, + [2191] = {.lex_state = 1659}, + [2192] = {.lex_state = 1661}, + [2193] = {.lex_state = 1659}, + [2194] = {.lex_state = 1668}, + [2195] = {.lex_state = 1668}, + [2196] = {.lex_state = 1668}, + [2197] = {.lex_state = 1668}, + [2198] = {.lex_state = 1659}, + [2199] = {.lex_state = 1668}, + [2200] = {.lex_state = 1668}, + [2201] = {.lex_state = 1668}, + [2202] = {.lex_state = 1659}, + [2203] = {.lex_state = 1659}, + [2204] = {.lex_state = 1668}, + [2205] = {.lex_state = 1668}, + [2206] = {.lex_state = 1659}, + [2207] = {.lex_state = 1668}, + [2208] = {.lex_state = 1668}, + [2209] = {.lex_state = 1668}, + [2210] = {.lex_state = 155, .external_lex_state = 2}, + [2211] = {.lex_state = 1668}, + [2212] = {.lex_state = 1668}, + [2213] = {.lex_state = 1668}, + [2214] = {.lex_state = 1668}, + [2215] = {.lex_state = 1668}, + [2216] = {.lex_state = 1668}, + [2217] = {.lex_state = 1668}, + [2218] = {.lex_state = 1668}, + [2219] = {.lex_state = 155, .external_lex_state = 2}, + [2220] = {.lex_state = 1668}, + [2221] = {.lex_state = 1668}, + [2222] = {.lex_state = 1668}, + [2223] = {.lex_state = 1668}, + [2224] = {.lex_state = 1668}, + [2225] = {.lex_state = 1668}, + [2226] = {.lex_state = 1668}, + [2227] = {.lex_state = 1661}, + [2228] = {.lex_state = 1668}, + [2229] = {.lex_state = 1668}, + [2230] = {.lex_state = 1661}, + [2231] = {.lex_state = 1668}, + [2232] = {.lex_state = 1668}, + [2233] = {.lex_state = 1668}, + [2234] = {.lex_state = 1668}, + [2235] = {.lex_state = 1668}, + [2236] = {.lex_state = 1668}, + [2237] = {.lex_state = 1668}, + [2238] = {.lex_state = 1668}, + [2239] = {.lex_state = 1668}, + [2240] = {.lex_state = 1668}, + [2241] = {.lex_state = 1668}, + [2242] = {.lex_state = 1668}, + [2243] = {.lex_state = 1664}, + [2244] = {.lex_state = 1659}, + [2245] = {.lex_state = 1668}, + [2246] = {.lex_state = 1668}, + [2247] = {.lex_state = 1668}, + [2248] = {.lex_state = 1668}, + [2249] = {.lex_state = 1668}, + [2250] = {.lex_state = 155, .external_lex_state = 2}, + [2251] = {.lex_state = 1698, .external_lex_state = 2}, + [2252] = {.lex_state = 1698, .external_lex_state = 2}, + [2253] = {.lex_state = 1668}, + [2254] = {.lex_state = 1668}, + [2255] = {.lex_state = 1668}, + [2256] = {.lex_state = 1668}, + [2257] = {.lex_state = 1668}, + [2258] = {.lex_state = 1668}, + [2259] = {.lex_state = 1668}, + [2260] = {.lex_state = 1668}, + [2261] = {.lex_state = 1668}, + [2262] = {.lex_state = 1668}, + [2263] = {.lex_state = 1668}, + [2264] = {.lex_state = 1668}, + [2265] = {.lex_state = 1668}, + [2266] = {.lex_state = 1661}, + [2267] = {.lex_state = 1661}, + [2268] = {.lex_state = 1668}, + [2269] = {.lex_state = 1668}, + [2270] = {.lex_state = 1668}, + [2271] = {.lex_state = 1668}, + [2272] = {.lex_state = 1668}, + [2273] = {.lex_state = 1668}, + [2274] = {.lex_state = 1668}, + [2275] = {.lex_state = 1668}, + [2276] = {.lex_state = 1668}, + [2277] = {.lex_state = 1668}, + [2278] = {.lex_state = 1668}, + [2279] = {.lex_state = 1668}, + [2280] = {.lex_state = 1698, .external_lex_state = 2}, + [2281] = {.lex_state = 1668}, + [2282] = {.lex_state = 1668}, + [2283] = {.lex_state = 1668}, + [2284] = {.lex_state = 1668}, + [2285] = {.lex_state = 1668}, + [2286] = {.lex_state = 1668}, + [2287] = {.lex_state = 1668}, + [2288] = {.lex_state = 1668}, + [2289] = {.lex_state = 1668}, + [2290] = {.lex_state = 1668}, + [2291] = {.lex_state = 1668}, + [2292] = {.lex_state = 1668}, + [2293] = {.lex_state = 1668}, + [2294] = {.lex_state = 1668}, + [2295] = {.lex_state = 1668}, + [2296] = {.lex_state = 1668}, + [2297] = {.lex_state = 1668}, + [2298] = {.lex_state = 1668}, + [2299] = {.lex_state = 1668}, + [2300] = {.lex_state = 1668}, + [2301] = {.lex_state = 1668}, + [2302] = {.lex_state = 1668}, + [2303] = {.lex_state = 1668}, + [2304] = {.lex_state = 40, .external_lex_state = 2}, + [2305] = {.lex_state = 1668}, + [2306] = {.lex_state = 1668}, + [2307] = {.lex_state = 1668}, + [2308] = {.lex_state = 1668}, + [2309] = {.lex_state = 40, .external_lex_state = 2}, + [2310] = {.lex_state = 1668}, + [2311] = {.lex_state = 1668}, + [2312] = {.lex_state = 1668}, + [2313] = {.lex_state = 1668}, + [2314] = {.lex_state = 1668}, + [2315] = {.lex_state = 1668}, + [2316] = {.lex_state = 1668}, + [2317] = {.lex_state = 1668}, + [2318] = {.lex_state = 1668}, + [2319] = {.lex_state = 1668}, + [2320] = {.lex_state = 1668}, + [2321] = {.lex_state = 1668}, + [2322] = {.lex_state = 1668}, + [2323] = {.lex_state = 1668}, + [2324] = {.lex_state = 1668}, + [2325] = {.lex_state = 1668}, + [2326] = {.lex_state = 1668}, + [2327] = {.lex_state = 1668}, + [2328] = {.lex_state = 1668}, + [2329] = {.lex_state = 1668}, + [2330] = {.lex_state = 1668}, + [2331] = {.lex_state = 1668}, + [2332] = {.lex_state = 1668}, + [2333] = {.lex_state = 1668}, + [2334] = {.lex_state = 1668}, + [2335] = {.lex_state = 1659}, + [2336] = {.lex_state = 1668}, + [2337] = {.lex_state = 1668}, + [2338] = {.lex_state = 1668}, + [2339] = {.lex_state = 1668}, + [2340] = {.lex_state = 1668}, + [2341] = {.lex_state = 1668}, + [2342] = {.lex_state = 1668}, + [2343] = {.lex_state = 1668}, + [2344] = {.lex_state = 1668}, + [2345] = {.lex_state = 1668}, + [2346] = {.lex_state = 1668}, + [2347] = {.lex_state = 1668}, + [2348] = {.lex_state = 1668}, + [2349] = {.lex_state = 1668}, + [2350] = {.lex_state = 1668}, + [2351] = {.lex_state = 1668}, + [2352] = {.lex_state = 1668}, + [2353] = {.lex_state = 1668}, + [2354] = {.lex_state = 1668}, + [2355] = {.lex_state = 1668}, + [2356] = {.lex_state = 1668}, + [2357] = {.lex_state = 1668}, + [2358] = {.lex_state = 1668}, + [2359] = {.lex_state = 1668}, + [2360] = {.lex_state = 1668}, + [2361] = {.lex_state = 1668}, + [2362] = {.lex_state = 40, .external_lex_state = 2}, + [2363] = {.lex_state = 1668}, + [2364] = {.lex_state = 1668}, + [2365] = {.lex_state = 1668}, + [2366] = {.lex_state = 1668}, + [2367] = {.lex_state = 1668}, + [2368] = {.lex_state = 1668}, + [2369] = {.lex_state = 1668}, + [2370] = {.lex_state = 1668}, + [2371] = {.lex_state = 1668}, + [2372] = {.lex_state = 1668}, + [2373] = {.lex_state = 1668}, + [2374] = {.lex_state = 1668}, + [2375] = {.lex_state = 1668}, + [2376] = {.lex_state = 1668}, + [2377] = {.lex_state = 1668}, + [2378] = {.lex_state = 1668}, + [2379] = {.lex_state = 1668}, + [2380] = {.lex_state = 1668}, + [2381] = {.lex_state = 1668}, + [2382] = {.lex_state = 40, .external_lex_state = 2}, + [2383] = {.lex_state = 1668}, + [2384] = {.lex_state = 1668}, + [2385] = {.lex_state = 1668}, + [2386] = {.lex_state = 1668}, + [2387] = {.lex_state = 1668}, + [2388] = {.lex_state = 1668}, + [2389] = {.lex_state = 1668}, + [2390] = {.lex_state = 1668}, + [2391] = {.lex_state = 1668}, + [2392] = {.lex_state = 1668}, + [2393] = {.lex_state = 1668}, + [2394] = {.lex_state = 1668}, + [2395] = {.lex_state = 1668}, + [2396] = {.lex_state = 1668}, + [2397] = {.lex_state = 1668}, + [2398] = {.lex_state = 1668}, + [2399] = {.lex_state = 40, .external_lex_state = 2}, + [2400] = {.lex_state = 40, .external_lex_state = 2}, + [2401] = {.lex_state = 1668}, + [2402] = {.lex_state = 1668}, + [2403] = {.lex_state = 1668}, + [2404] = {.lex_state = 40, .external_lex_state = 2}, + [2405] = {.lex_state = 1668}, + [2406] = {.lex_state = 40, .external_lex_state = 2}, + [2407] = {.lex_state = 40, .external_lex_state = 2}, + [2408] = {.lex_state = 40, .external_lex_state = 2}, + [2409] = {.lex_state = 1668}, + [2410] = {.lex_state = 1668}, + [2411] = {.lex_state = 1668}, + [2412] = {.lex_state = 1668}, + [2413] = {.lex_state = 1668}, + [2414] = {.lex_state = 1668}, + [2415] = {.lex_state = 1668}, + [2416] = {.lex_state = 1668}, + [2417] = {.lex_state = 1668}, + [2418] = {.lex_state = 1668}, + [2419] = {.lex_state = 1668}, + [2420] = {.lex_state = 1668}, + [2421] = {.lex_state = 1668}, + [2422] = {.lex_state = 1668}, + [2423] = {.lex_state = 1668}, + [2424] = {.lex_state = 1668}, + [2425] = {.lex_state = 1668}, + [2426] = {.lex_state = 1668}, + [2427] = {.lex_state = 1668}, + [2428] = {.lex_state = 1668}, + [2429] = {.lex_state = 1668}, + [2430] = {.lex_state = 1668}, + [2431] = {.lex_state = 35, .external_lex_state = 2}, + [2432] = {.lex_state = 1668}, + [2433] = {.lex_state = 1668}, + [2434] = {.lex_state = 1668}, + [2435] = {.lex_state = 1668}, + [2436] = {.lex_state = 1668}, + [2437] = {.lex_state = 1668}, + [2438] = {.lex_state = 1725, .external_lex_state = 2}, + [2439] = {.lex_state = 1668}, + [2440] = {.lex_state = 1668}, + [2441] = {.lex_state = 1668}, + [2442] = {.lex_state = 1668}, + [2443] = {.lex_state = 1668}, + [2444] = {.lex_state = 155, .external_lex_state = 2}, + [2445] = {.lex_state = 1668}, + [2446] = {.lex_state = 1668}, [2447] = {.lex_state = 35, .external_lex_state = 2}, - [2448] = {.lex_state = 35, .external_lex_state = 2}, - [2449] = {.lex_state = 35, .external_lex_state = 2}, + [2448] = {.lex_state = 1668}, + [2449] = {.lex_state = 155, .external_lex_state = 2}, [2450] = {.lex_state = 35, .external_lex_state = 2}, - [2451] = {.lex_state = 1664}, - [2452] = {.lex_state = 1664}, - [2453] = {.lex_state = 1664}, - [2454] = {.lex_state = 1664}, - [2455] = {.lex_state = 190, .external_lex_state = 2}, - [2456] = {.lex_state = 1721, .external_lex_state = 2}, - [2457] = {.lex_state = 1664}, - [2458] = {.lex_state = 1664}, - [2459] = {.lex_state = 1664}, - [2460] = {.lex_state = 1664}, - [2461] = {.lex_state = 1664}, - [2462] = {.lex_state = 1664}, - [2463] = {.lex_state = 1664}, - [2464] = {.lex_state = 1664}, - [2465] = {.lex_state = 172, .external_lex_state = 2}, - [2466] = {.lex_state = 1664}, - [2467] = {.lex_state = 178, .external_lex_state = 2}, - [2468] = {.lex_state = 1664}, - [2469] = {.lex_state = 178, .external_lex_state = 2}, - [2470] = {.lex_state = 1664}, - [2471] = {.lex_state = 190, .external_lex_state = 2}, - [2472] = {.lex_state = 1664}, - [2473] = {.lex_state = 1664}, - [2474] = {.lex_state = 1664}, - [2475] = {.lex_state = 1664}, - [2476] = {.lex_state = 1664}, - [2477] = {.lex_state = 1664}, - [2478] = {.lex_state = 1664}, - [2479] = {.lex_state = 1664}, - [2480] = {.lex_state = 1664}, - [2481] = {.lex_state = 1664}, - [2482] = {.lex_state = 1664}, - [2483] = {.lex_state = 1664}, - [2484] = {.lex_state = 1664}, - [2485] = {.lex_state = 1664}, - [2486] = {.lex_state = 1664}, - [2487] = {.lex_state = 1664}, - [2488] = {.lex_state = 1664}, - [2489] = {.lex_state = 1664}, - [2490] = {.lex_state = 1664}, - [2491] = {.lex_state = 179, .external_lex_state = 2}, - [2492] = {.lex_state = 1664}, - [2493] = {.lex_state = 1664}, - [2494] = {.lex_state = 1664}, - [2495] = {.lex_state = 1664}, - [2496] = {.lex_state = 1664}, - [2497] = {.lex_state = 1664}, - [2498] = {.lex_state = 1664}, - [2499] = {.lex_state = 1664}, - [2500] = {.lex_state = 1664}, - [2501] = {.lex_state = 1664}, - [2502] = {.lex_state = 1664}, - [2503] = {.lex_state = 1664}, - [2504] = {.lex_state = 1664}, - [2505] = {.lex_state = 1664}, - [2506] = {.lex_state = 1664}, - [2507] = {.lex_state = 1664}, - [2508] = {.lex_state = 1664}, - [2509] = {.lex_state = 1664}, - [2510] = {.lex_state = 1664}, - [2511] = {.lex_state = 1664}, - [2512] = {.lex_state = 1664}, - [2513] = {.lex_state = 1664}, - [2514] = {.lex_state = 241, .external_lex_state = 2}, - [2515] = {.lex_state = 1664}, - [2516] = {.lex_state = 1664}, - [2517] = {.lex_state = 1664}, - [2518] = {.lex_state = 1664}, - [2519] = {.lex_state = 190, .external_lex_state = 2}, - [2520] = {.lex_state = 1664}, - [2521] = {.lex_state = 1664}, - [2522] = {.lex_state = 1664}, - [2523] = {.lex_state = 172, .external_lex_state = 2}, - [2524] = {.lex_state = 1664}, - [2525] = {.lex_state = 1664}, - [2526] = {.lex_state = 1664}, - [2527] = {.lex_state = 1664}, - [2528] = {.lex_state = 1664}, - [2529] = {.lex_state = 1664}, - [2530] = {.lex_state = 1664}, - [2531] = {.lex_state = 241, .external_lex_state = 2}, - [2532] = {.lex_state = 1664}, - [2533] = {.lex_state = 1664}, - [2534] = {.lex_state = 1664}, - [2535] = {.lex_state = 189, .external_lex_state = 2}, - [2536] = {.lex_state = 1664}, - [2537] = {.lex_state = 1664}, - [2538] = {.lex_state = 1664}, - [2539] = {.lex_state = 190, .external_lex_state = 2}, - [2540] = {.lex_state = 1664}, - [2541] = {.lex_state = 1664}, - [2542] = {.lex_state = 1664}, - [2543] = {.lex_state = 1664}, - [2544] = {.lex_state = 1664}, - [2545] = {.lex_state = 1664}, - [2546] = {.lex_state = 1664}, - [2547] = {.lex_state = 1664}, - [2548] = {.lex_state = 1664}, - [2549] = {.lex_state = 1720, .external_lex_state = 2}, - [2550] = {.lex_state = 1664}, - [2551] = {.lex_state = 1720, .external_lex_state = 2}, - [2552] = {.lex_state = 1720, .external_lex_state = 2}, - [2553] = {.lex_state = 1720, .external_lex_state = 2}, - [2554] = {.lex_state = 1664}, - [2555] = {.lex_state = 1664}, - [2556] = {.lex_state = 1664}, - [2557] = {.lex_state = 1664}, - [2558] = {.lex_state = 1720, .external_lex_state = 2}, - [2559] = {.lex_state = 1720, .external_lex_state = 2}, - [2560] = {.lex_state = 1721, .external_lex_state = 2}, - [2561] = {.lex_state = 1664}, - [2562] = {.lex_state = 1664}, - [2563] = {.lex_state = 1721, .external_lex_state = 2}, - [2564] = {.lex_state = 188, .external_lex_state = 2}, + [2451] = {.lex_state = 155, .external_lex_state = 2}, + [2452] = {.lex_state = 155, .external_lex_state = 2}, + [2453] = {.lex_state = 1668}, + [2454] = {.lex_state = 1668}, + [2455] = {.lex_state = 1668}, + [2456] = {.lex_state = 1668}, + [2457] = {.lex_state = 1668}, + [2458] = {.lex_state = 1668}, + [2459] = {.lex_state = 1668}, + [2460] = {.lex_state = 1668}, + [2461] = {.lex_state = 1668}, + [2462] = {.lex_state = 1668}, + [2463] = {.lex_state = 1668}, + [2464] = {.lex_state = 1668}, + [2465] = {.lex_state = 1668}, + [2466] = {.lex_state = 1668}, + [2467] = {.lex_state = 1668}, + [2468] = {.lex_state = 1725, .external_lex_state = 2}, + [2469] = {.lex_state = 35, .external_lex_state = 2}, + [2470] = {.lex_state = 1668}, + [2471] = {.lex_state = 1668}, + [2472] = {.lex_state = 1668}, + [2473] = {.lex_state = 1668}, + [2474] = {.lex_state = 1668}, + [2475] = {.lex_state = 1668}, + [2476] = {.lex_state = 1668}, + [2477] = {.lex_state = 1668}, + [2478] = {.lex_state = 1668}, + [2479] = {.lex_state = 1668}, + [2480] = {.lex_state = 1668}, + [2481] = {.lex_state = 1725, .external_lex_state = 2}, + [2482] = {.lex_state = 1668}, + [2483] = {.lex_state = 1668}, + [2484] = {.lex_state = 1668}, + [2485] = {.lex_state = 1668}, + [2486] = {.lex_state = 1668}, + [2487] = {.lex_state = 1668}, + [2488] = {.lex_state = 1668}, + [2489] = {.lex_state = 1668}, + [2490] = {.lex_state = 1668}, + [2491] = {.lex_state = 1668}, + [2492] = {.lex_state = 1668}, + [2493] = {.lex_state = 1668}, + [2494] = {.lex_state = 1668}, + [2495] = {.lex_state = 1668}, + [2496] = {.lex_state = 1668}, + [2497] = {.lex_state = 1668}, + [2498] = {.lex_state = 1668}, + [2499] = {.lex_state = 1668}, + [2500] = {.lex_state = 1668}, + [2501] = {.lex_state = 1668}, + [2502] = {.lex_state = 1668}, + [2503] = {.lex_state = 1668}, + [2504] = {.lex_state = 175, .external_lex_state = 2}, + [2505] = {.lex_state = 1668}, + [2506] = {.lex_state = 1668}, + [2507] = {.lex_state = 1668}, + [2508] = {.lex_state = 1668}, + [2509] = {.lex_state = 1668}, + [2510] = {.lex_state = 1668}, + [2511] = {.lex_state = 1668}, + [2512] = {.lex_state = 1668}, + [2513] = {.lex_state = 1668}, + [2514] = {.lex_state = 1668}, + [2515] = {.lex_state = 1668}, + [2516] = {.lex_state = 1668}, + [2517] = {.lex_state = 1668}, + [2518] = {.lex_state = 1668}, + [2519] = {.lex_state = 1668}, + [2520] = {.lex_state = 35, .external_lex_state = 2}, + [2521] = {.lex_state = 1725, .external_lex_state = 2}, + [2522] = {.lex_state = 185, .external_lex_state = 2}, + [2523] = {.lex_state = 35, .external_lex_state = 2}, + [2524] = {.lex_state = 1725, .external_lex_state = 2}, + [2525] = {.lex_state = 242, .external_lex_state = 2}, + [2526] = {.lex_state = 174, .external_lex_state = 2}, + [2527] = {.lex_state = 35, .external_lex_state = 2}, + [2528] = {.lex_state = 174, .external_lex_state = 2}, + [2529] = {.lex_state = 1725, .external_lex_state = 2}, + [2530] = {.lex_state = 35, .external_lex_state = 2}, + [2531] = {.lex_state = 35, .external_lex_state = 2}, + [2532] = {.lex_state = 176, .external_lex_state = 2}, + [2533] = {.lex_state = 244, .external_lex_state = 2}, + [2534] = {.lex_state = 191, .external_lex_state = 2}, + [2535] = {.lex_state = 35, .external_lex_state = 2}, + [2536] = {.lex_state = 1725, .external_lex_state = 2}, + [2537] = {.lex_state = 35, .external_lex_state = 2}, + [2538] = {.lex_state = 35, .external_lex_state = 2}, + [2539] = {.lex_state = 35, .external_lex_state = 2}, + [2540] = {.lex_state = 35, .external_lex_state = 2}, + [2541] = {.lex_state = 173, .external_lex_state = 2}, + [2542] = {.lex_state = 1725, .external_lex_state = 2}, + [2543] = {.lex_state = 1724, .external_lex_state = 2}, + [2544] = {.lex_state = 190, .external_lex_state = 2}, + [2545] = {.lex_state = 1725, .external_lex_state = 2}, + [2546] = {.lex_state = 178, .external_lex_state = 2}, + [2547] = {.lex_state = 1724, .external_lex_state = 2}, + [2548] = {.lex_state = 1724, .external_lex_state = 2}, + [2549] = {.lex_state = 241, .external_lex_state = 2}, + [2550] = {.lex_state = 241, .external_lex_state = 2}, + [2551] = {.lex_state = 190, .external_lex_state = 2}, + [2552] = {.lex_state = 1725, .external_lex_state = 2}, + [2553] = {.lex_state = 1724, .external_lex_state = 2}, + [2554] = {.lex_state = 190, .external_lex_state = 2}, + [2555] = {.lex_state = 190, .external_lex_state = 2}, + [2556] = {.lex_state = 1724, .external_lex_state = 2}, + [2557] = {.lex_state = 178, .external_lex_state = 2}, + [2558] = {.lex_state = 189, .external_lex_state = 2}, + [2559] = {.lex_state = 172, .external_lex_state = 2}, + [2560] = {.lex_state = 179, .external_lex_state = 2}, + [2561] = {.lex_state = 172, .external_lex_state = 2}, + [2562] = {.lex_state = 1724, .external_lex_state = 2}, + [2563] = {.lex_state = 188, .external_lex_state = 2}, + [2564] = {.lex_state = 221, .external_lex_state = 2}, [2565] = {.lex_state = 188, .external_lex_state = 2}, [2566] = {.lex_state = 188, .external_lex_state = 2}, - [2567] = {.lex_state = 212, .external_lex_state = 2}, - [2568] = {.lex_state = 35, .external_lex_state = 2}, - [2569] = {.lex_state = 1720, .external_lex_state = 2}, + [2567] = {.lex_state = 188, .external_lex_state = 2}, + [2568] = {.lex_state = 230, .external_lex_state = 2}, + [2569] = {.lex_state = 179, .external_lex_state = 2}, [2570] = {.lex_state = 179, .external_lex_state = 2}, - [2571] = {.lex_state = 1720, .external_lex_state = 2}, - [2572] = {.lex_state = 1720, .external_lex_state = 2}, - [2573] = {.lex_state = 243, .external_lex_state = 2}, - [2574] = {.lex_state = 243, .external_lex_state = 2}, - [2575] = {.lex_state = 179, .external_lex_state = 2}, - [2576] = {.lex_state = 177, .external_lex_state = 2}, - [2577] = {.lex_state = 186, .external_lex_state = 2}, - [2578] = {.lex_state = 1720, .external_lex_state = 2}, - [2579] = {.lex_state = 35, .external_lex_state = 2}, - [2580] = {.lex_state = 35, .external_lex_state = 2}, - [2581] = {.lex_state = 243, .external_lex_state = 2}, - [2582] = {.lex_state = 35, .external_lex_state = 2}, + [2571] = {.lex_state = 179, .external_lex_state = 2}, + [2572] = {.lex_state = 179, .external_lex_state = 2}, + [2573] = {.lex_state = 35, .external_lex_state = 2}, + [2574] = {.lex_state = 35, .external_lex_state = 2}, + [2575] = {.lex_state = 1724, .external_lex_state = 2}, + [2576] = {.lex_state = 1725, .external_lex_state = 2}, + [2577] = {.lex_state = 212, .external_lex_state = 2}, + [2578] = {.lex_state = 35, .external_lex_state = 2}, + [2579] = {.lex_state = 1724, .external_lex_state = 2}, + [2580] = {.lex_state = 1724, .external_lex_state = 2}, + [2581] = {.lex_state = 212, .external_lex_state = 2}, + [2582] = {.lex_state = 1724, .external_lex_state = 2}, [2583] = {.lex_state = 35, .external_lex_state = 2}, - [2584] = {.lex_state = 179, .external_lex_state = 2}, - [2585] = {.lex_state = 35, .external_lex_state = 2}, - [2586] = {.lex_state = 35, .external_lex_state = 2}, + [2584] = {.lex_state = 177, .external_lex_state = 2}, + [2585] = {.lex_state = 1725, .external_lex_state = 2}, + [2586] = {.lex_state = 1725, .external_lex_state = 2}, [2587] = {.lex_state = 35, .external_lex_state = 2}, - [2588] = {.lex_state = 1721, .external_lex_state = 2}, - [2589] = {.lex_state = 35, .external_lex_state = 2}, - [2590] = {.lex_state = 35, .external_lex_state = 2}, - [2591] = {.lex_state = 212, .external_lex_state = 2}, + [2588] = {.lex_state = 243, .external_lex_state = 2}, + [2589] = {.lex_state = 243, .external_lex_state = 2}, + [2590] = {.lex_state = 243, .external_lex_state = 2}, + [2591] = {.lex_state = 35, .external_lex_state = 2}, [2592] = {.lex_state = 35, .external_lex_state = 2}, [2593] = {.lex_state = 243, .external_lex_state = 2}, - [2594] = {.lex_state = 188, .external_lex_state = 2}, - [2595] = {.lex_state = 35, .external_lex_state = 2}, - [2596] = {.lex_state = 1720, .external_lex_state = 2}, - [2597] = {.lex_state = 1720, .external_lex_state = 2}, - [2598] = {.lex_state = 230, .external_lex_state = 2}, - [2599] = {.lex_state = 1721, .external_lex_state = 2}, - [2600] = {.lex_state = 243, .external_lex_state = 2}, - [2601] = {.lex_state = 221, .external_lex_state = 2}, - [2602] = {.lex_state = 179, .external_lex_state = 2}, - [2603] = {.lex_state = 212, .external_lex_state = 2}, - [2604] = {.lex_state = 35, .external_lex_state = 2}, - [2605] = {.lex_state = 35, .external_lex_state = 2}, - [2606] = {.lex_state = 223, .external_lex_state = 2}, + [2594] = {.lex_state = 35, .external_lex_state = 2}, + [2595] = {.lex_state = 243, .external_lex_state = 2}, + [2596] = {.lex_state = 186, .external_lex_state = 2}, + [2597] = {.lex_state = 212, .external_lex_state = 2}, + [2598] = {.lex_state = 1724, .external_lex_state = 2}, + [2599] = {.lex_state = 35, .external_lex_state = 2}, + [2600] = {.lex_state = 35, .external_lex_state = 2}, + [2601] = {.lex_state = 35, .external_lex_state = 2}, + [2602] = {.lex_state = 35, .external_lex_state = 2}, + [2603] = {.lex_state = 35, .external_lex_state = 2}, + [2604] = {.lex_state = 1724, .external_lex_state = 2}, + [2605] = {.lex_state = 180, .external_lex_state = 2}, + [2606] = {.lex_state = 1726, .external_lex_state = 2}, [2607] = {.lex_state = 35, .external_lex_state = 2}, - [2608] = {.lex_state = 1721, .external_lex_state = 2}, - [2609] = {.lex_state = 1721, .external_lex_state = 2}, - [2610] = {.lex_state = 35, .external_lex_state = 2}, - [2611] = {.lex_state = 35, .external_lex_state = 2}, - [2612] = {.lex_state = 1722, .external_lex_state = 2}, - [2613] = {.lex_state = 1722, .external_lex_state = 2}, - [2614] = {.lex_state = 1722, .external_lex_state = 2}, - [2615] = {.lex_state = 1722, .external_lex_state = 2}, - [2616] = {.lex_state = 1722, .external_lex_state = 2}, - [2617] = {.lex_state = 180, .external_lex_state = 2}, - [2618] = {.lex_state = 180, .external_lex_state = 2}, - [2619] = {.lex_state = 1722, .external_lex_state = 2}, - [2620] = {.lex_state = 1722, .external_lex_state = 2}, - [2621] = {.lex_state = 1722, .external_lex_state = 2}, - [2622] = {.lex_state = 1722, .external_lex_state = 2}, + [2608] = {.lex_state = 1726, .external_lex_state = 2}, + [2609] = {.lex_state = 1726, .external_lex_state = 2}, + [2610] = {.lex_state = 1726, .external_lex_state = 2}, + [2611] = {.lex_state = 1726, .external_lex_state = 2}, + [2612] = {.lex_state = 1726, .external_lex_state = 2}, + [2613] = {.lex_state = 1726, .external_lex_state = 2}, + [2614] = {.lex_state = 35, .external_lex_state = 2}, + [2615] = {.lex_state = 35, .external_lex_state = 2}, + [2616] = {.lex_state = 1726, .external_lex_state = 2}, + [2617] = {.lex_state = 1668}, + [2618] = {.lex_state = 1726, .external_lex_state = 2}, + [2619] = {.lex_state = 1726, .external_lex_state = 2}, + [2620] = {.lex_state = 1726, .external_lex_state = 2}, + [2621] = {.lex_state = 1726, .external_lex_state = 2}, + [2622] = {.lex_state = 35, .external_lex_state = 2}, [2623] = {.lex_state = 35, .external_lex_state = 2}, - [2624] = {.lex_state = 1722, .external_lex_state = 2}, - [2625] = {.lex_state = 35, .external_lex_state = 2}, - [2626] = {.lex_state = 1722, .external_lex_state = 2}, - [2627] = {.lex_state = 1722, .external_lex_state = 2}, - [2628] = {.lex_state = 1722, .external_lex_state = 2}, - [2629] = {.lex_state = 35, .external_lex_state = 2}, - [2630] = {.lex_state = 1722, .external_lex_state = 2}, - [2631] = {.lex_state = 1722, .external_lex_state = 2}, - [2632] = {.lex_state = 1722, .external_lex_state = 2}, - [2633] = {.lex_state = 1722, .external_lex_state = 2}, - [2634] = {.lex_state = 1722, .external_lex_state = 2}, - [2635] = {.lex_state = 1722, .external_lex_state = 2}, - [2636] = {.lex_state = 1722, .external_lex_state = 2}, + [2624] = {.lex_state = 1726, .external_lex_state = 2}, + [2625] = {.lex_state = 223, .external_lex_state = 2}, + [2626] = {.lex_state = 35, .external_lex_state = 2}, + [2627] = {.lex_state = 35, .external_lex_state = 2}, + [2628] = {.lex_state = 1726, .external_lex_state = 2}, + [2629] = {.lex_state = 1726, .external_lex_state = 2}, + [2630] = {.lex_state = 35, .external_lex_state = 2}, + [2631] = {.lex_state = 35, .external_lex_state = 2}, + [2632] = {.lex_state = 35, .external_lex_state = 2}, + [2633] = {.lex_state = 1726, .external_lex_state = 2}, + [2634] = {.lex_state = 1725, .external_lex_state = 2}, + [2635] = {.lex_state = 1726, .external_lex_state = 2}, + [2636] = {.lex_state = 1726, .external_lex_state = 2}, [2637] = {.lex_state = 35, .external_lex_state = 2}, - [2638] = {.lex_state = 35, .external_lex_state = 2}, - [2639] = {.lex_state = 35, .external_lex_state = 2}, - [2640] = {.lex_state = 35, .external_lex_state = 2}, - [2641] = {.lex_state = 1722, .external_lex_state = 2}, + [2638] = {.lex_state = 180, .external_lex_state = 2}, + [2639] = {.lex_state = 1726, .external_lex_state = 2}, + [2640] = {.lex_state = 1726, .external_lex_state = 2}, + [2641] = {.lex_state = 35, .external_lex_state = 2}, [2642] = {.lex_state = 35, .external_lex_state = 2}, [2643] = {.lex_state = 35, .external_lex_state = 2}, - [2644] = {.lex_state = 198, .external_lex_state = 2}, - [2645] = {.lex_state = 198, .external_lex_state = 2}, - [2646] = {.lex_state = 35, .external_lex_state = 2}, - [2647] = {.lex_state = 198, .external_lex_state = 2}, - [2648] = {.lex_state = 35, .external_lex_state = 2}, - [2649] = {.lex_state = 35, .external_lex_state = 2}, - [2650] = {.lex_state = 35, .external_lex_state = 2}, - [2651] = {.lex_state = 35, .external_lex_state = 2}, + [2644] = {.lex_state = 35, .external_lex_state = 2}, + [2645] = {.lex_state = 35, .external_lex_state = 2}, + [2646] = {.lex_state = 1726, .external_lex_state = 2}, + [2647] = {.lex_state = 35, .external_lex_state = 2}, + [2648] = {.lex_state = 1634}, + [2649] = {.lex_state = 198, .external_lex_state = 2}, + [2650] = {.lex_state = 1725, .external_lex_state = 2}, + [2651] = {.lex_state = 1726, .external_lex_state = 2}, [2652] = {.lex_state = 35, .external_lex_state = 2}, - [2653] = {.lex_state = 212, .external_lex_state = 2}, + [2653] = {.lex_state = 35, .external_lex_state = 2}, [2654] = {.lex_state = 35, .external_lex_state = 2}, [2655] = {.lex_state = 35, .external_lex_state = 2}, [2656] = {.lex_state = 35, .external_lex_state = 2}, - [2657] = {.lex_state = 212, .external_lex_state = 2}, + [2657] = {.lex_state = 198, .external_lex_state = 2}, [2658] = {.lex_state = 35, .external_lex_state = 2}, - [2659] = {.lex_state = 1722, .external_lex_state = 2}, + [2659] = {.lex_state = 35, .external_lex_state = 2}, [2660] = {.lex_state = 35, .external_lex_state = 2}, [2661] = {.lex_state = 35, .external_lex_state = 2}, [2662] = {.lex_state = 35, .external_lex_state = 2}, [2663] = {.lex_state = 35, .external_lex_state = 2}, - [2664] = {.lex_state = 35, .external_lex_state = 2}, - [2665] = {.lex_state = 1721, .external_lex_state = 2}, - [2666] = {.lex_state = 223, .external_lex_state = 2}, + [2664] = {.lex_state = 212, .external_lex_state = 2}, + [2665] = {.lex_state = 35, .external_lex_state = 2}, + [2666] = {.lex_state = 35, .external_lex_state = 2}, [2667] = {.lex_state = 35, .external_lex_state = 2}, - [2668] = {.lex_state = 35, .external_lex_state = 2}, - [2669] = {.lex_state = 35, .external_lex_state = 2}, - [2670] = {.lex_state = 237, .external_lex_state = 2}, - [2671] = {.lex_state = 1722, .external_lex_state = 2}, - [2672] = {.lex_state = 224, .external_lex_state = 2}, + [2668] = {.lex_state = 223, .external_lex_state = 2}, + [2669] = {.lex_state = 212, .external_lex_state = 2}, + [2670] = {.lex_state = 1725, .external_lex_state = 2}, + [2671] = {.lex_state = 198, .external_lex_state = 2}, + [2672] = {.lex_state = 159, .external_lex_state = 2}, [2673] = {.lex_state = 237, .external_lex_state = 2}, - [2674] = {.lex_state = 237, .external_lex_state = 2}, - [2675] = {.lex_state = 231, .external_lex_state = 2}, - [2676] = {.lex_state = 181, .external_lex_state = 2}, - [2677] = {.lex_state = 224, .external_lex_state = 2}, - [2678] = {.lex_state = 237, .external_lex_state = 2}, - [2679] = {.lex_state = 237, .external_lex_state = 2}, - [2680] = {.lex_state = 237, .external_lex_state = 2}, - [2681] = {.lex_state = 237, .external_lex_state = 2}, - [2682] = {.lex_state = 237, .external_lex_state = 2}, - [2683] = {.lex_state = 237, .external_lex_state = 2}, + [2674] = {.lex_state = 1726, .external_lex_state = 2}, + [2675] = {.lex_state = 1726, .external_lex_state = 2}, + [2676] = {.lex_state = 1726, .external_lex_state = 2}, + [2677] = {.lex_state = 1726, .external_lex_state = 2}, + [2678] = {.lex_state = 159, .external_lex_state = 2}, + [2679] = {.lex_state = 1634}, + [2680] = {.lex_state = 211, .external_lex_state = 2}, + [2681] = {.lex_state = 211, .external_lex_state = 2}, + [2682] = {.lex_state = 224, .external_lex_state = 2}, + [2683] = {.lex_state = 1726, .external_lex_state = 2}, [2684] = {.lex_state = 237, .external_lex_state = 2}, - [2685] = {.lex_state = 237, .external_lex_state = 2}, - [2686] = {.lex_state = 237, .external_lex_state = 2}, - [2687] = {.lex_state = 237, .external_lex_state = 2}, - [2688] = {.lex_state = 237, .external_lex_state = 2}, - [2689] = {.lex_state = 237, .external_lex_state = 2}, - [2690] = {.lex_state = 237, .external_lex_state = 2}, - [2691] = {.lex_state = 181, .external_lex_state = 2}, - [2692] = {.lex_state = 237, .external_lex_state = 2}, + [2685] = {.lex_state = 41, .external_lex_state = 2}, + [2686] = {.lex_state = 1726, .external_lex_state = 2}, + [2687] = {.lex_state = 211, .external_lex_state = 2}, + [2688] = {.lex_state = 231, .external_lex_state = 2}, + [2689] = {.lex_state = 181, .external_lex_state = 2}, + [2690] = {.lex_state = 198, .external_lex_state = 2}, + [2691] = {.lex_state = 198, .external_lex_state = 2}, + [2692] = {.lex_state = 181, .external_lex_state = 2}, [2693] = {.lex_state = 237, .external_lex_state = 2}, - [2694] = {.lex_state = 1722, .external_lex_state = 2}, - [2695] = {.lex_state = 1722, .external_lex_state = 2}, - [2696] = {.lex_state = 161, .external_lex_state = 2}, - [2697] = {.lex_state = 181, .external_lex_state = 2}, - [2698] = {.lex_state = 211, .external_lex_state = 2}, - [2699] = {.lex_state = 1722, .external_lex_state = 2}, - [2700] = {.lex_state = 181, .external_lex_state = 2}, - [2701] = {.lex_state = 181, .external_lex_state = 2}, + [2694] = {.lex_state = 224, .external_lex_state = 2}, + [2695] = {.lex_state = 224, .external_lex_state = 2}, + [2696] = {.lex_state = 222, .external_lex_state = 2}, + [2697] = {.lex_state = 1668}, + [2698] = {.lex_state = 1726, .external_lex_state = 2}, + [2699] = {.lex_state = 181, .external_lex_state = 2}, + [2700] = {.lex_state = 1706, .external_lex_state = 2}, + [2701] = {.lex_state = 1726, .external_lex_state = 2}, [2702] = {.lex_state = 224, .external_lex_state = 2}, - [2703] = {.lex_state = 1702, .external_lex_state = 2}, - [2704] = {.lex_state = 1722, .external_lex_state = 2}, - [2705] = {.lex_state = 211, .external_lex_state = 2}, - [2706] = {.lex_state = 1722, .external_lex_state = 2}, - [2707] = {.lex_state = 237, .external_lex_state = 2}, - [2708] = {.lex_state = 1722, .external_lex_state = 2}, - [2709] = {.lex_state = 198, .external_lex_state = 2}, - [2710] = {.lex_state = 1722, .external_lex_state = 2}, - [2711] = {.lex_state = 198, .external_lex_state = 2}, - [2712] = {.lex_state = 215, .external_lex_state = 2}, + [2703] = {.lex_state = 181, .external_lex_state = 2}, + [2704] = {.lex_state = 181, .external_lex_state = 2}, + [2705] = {.lex_state = 1726, .external_lex_state = 2}, + [2706] = {.lex_state = 1706, .external_lex_state = 2}, + [2707] = {.lex_state = 181, .external_lex_state = 2}, + [2708] = {.lex_state = 237, .external_lex_state = 2}, + [2709] = {.lex_state = 1726, .external_lex_state = 2}, + [2710] = {.lex_state = 215, .external_lex_state = 2}, + [2711] = {.lex_state = 161, .external_lex_state = 2}, + [2712] = {.lex_state = 161, .external_lex_state = 2}, [2713] = {.lex_state = 161, .external_lex_state = 2}, - [2714] = {.lex_state = 237, .external_lex_state = 2}, - [2715] = {.lex_state = 1722, .external_lex_state = 2}, - [2716] = {.lex_state = 1702, .external_lex_state = 2}, - [2717] = {.lex_state = 159, .external_lex_state = 2}, - [2718] = {.lex_state = 161, .external_lex_state = 2}, - [2719] = {.lex_state = 161, .external_lex_state = 2}, - [2720] = {.lex_state = 161, .external_lex_state = 2}, - [2721] = {.lex_state = 181, .external_lex_state = 2}, - [2722] = {.lex_state = 211, .external_lex_state = 2}, - [2723] = {.lex_state = 1722, .external_lex_state = 2}, - [2724] = {.lex_state = 1722, .external_lex_state = 2}, - [2725] = {.lex_state = 219, .external_lex_state = 2}, - [2726] = {.lex_state = 211, .external_lex_state = 2}, - [2727] = {.lex_state = 211, .external_lex_state = 2}, - [2728] = {.lex_state = 1722, .external_lex_state = 2}, + [2714] = {.lex_state = 161, .external_lex_state = 2}, + [2715] = {.lex_state = 211, .external_lex_state = 2}, + [2716] = {.lex_state = 1636}, + [2717] = {.lex_state = 161, .external_lex_state = 2}, + [2718] = {.lex_state = 219, .external_lex_state = 2}, + [2719] = {.lex_state = 1726, .external_lex_state = 2}, + [2720] = {.lex_state = 1726, .external_lex_state = 2}, + [2721] = {.lex_state = 1726, .external_lex_state = 2}, + [2722] = {.lex_state = 1636}, + [2723] = {.lex_state = 237, .external_lex_state = 2}, + [2724] = {.lex_state = 237, .external_lex_state = 2}, + [2725] = {.lex_state = 1726, .external_lex_state = 2}, + [2726] = {.lex_state = 237, .external_lex_state = 2}, + [2727] = {.lex_state = 237, .external_lex_state = 2}, + [2728] = {.lex_state = 1726, .external_lex_state = 2}, [2729] = {.lex_state = 211, .external_lex_state = 2}, - [2730] = {.lex_state = 1722, .external_lex_state = 2}, - [2731] = {.lex_state = 222, .external_lex_state = 2}, + [2730] = {.lex_state = 211, .external_lex_state = 2}, + [2731] = {.lex_state = 1726, .external_lex_state = 2}, [2732] = {.lex_state = 159, .external_lex_state = 2}, [2733] = {.lex_state = 237, .external_lex_state = 2}, - [2734] = {.lex_state = 41, .external_lex_state = 2}, - [2735] = {.lex_state = 159, .external_lex_state = 2}, + [2734] = {.lex_state = 237, .external_lex_state = 2}, + [2735] = {.lex_state = 237, .external_lex_state = 2}, [2736] = {.lex_state = 159, .external_lex_state = 2}, - [2737] = {.lex_state = 1722, .external_lex_state = 2}, - [2738] = {.lex_state = 1722, .external_lex_state = 2}, - [2739] = {.lex_state = 1722, .external_lex_state = 2}, - [2740] = {.lex_state = 1722, .external_lex_state = 2}, - [2741] = {.lex_state = 1722, .external_lex_state = 2}, + [2737] = {.lex_state = 1726, .external_lex_state = 2}, + [2738] = {.lex_state = 237, .external_lex_state = 2}, + [2739] = {.lex_state = 237, .external_lex_state = 2}, + [2740] = {.lex_state = 1668}, + [2741] = {.lex_state = 237, .external_lex_state = 2}, [2742] = {.lex_state = 237, .external_lex_state = 2}, - [2743] = {.lex_state = 237, .external_lex_state = 2}, - [2744] = {.lex_state = 1722, .external_lex_state = 2}, - [2745] = {.lex_state = 224, .external_lex_state = 2}, - [2746] = {.lex_state = 1722, .external_lex_state = 2}, - [2747] = {.lex_state = 1722, .external_lex_state = 2}, - [2748] = {.lex_state = 216, .external_lex_state = 2}, - [2749] = {.lex_state = 224, .external_lex_state = 2}, - [2750] = {.lex_state = 1722, .external_lex_state = 2}, - [2751] = {.lex_state = 212, .external_lex_state = 2}, - [2752] = {.lex_state = 155, .external_lex_state = 2}, - [2753] = {.lex_state = 197, .external_lex_state = 2}, - [2754] = {.lex_state = 155, .external_lex_state = 2}, - [2755] = {.lex_state = 218, .external_lex_state = 2}, - [2756] = {.lex_state = 225, .external_lex_state = 2}, - [2757] = {.lex_state = 218, .external_lex_state = 2}, - [2758] = {.lex_state = 225, .external_lex_state = 2}, - [2759] = {.lex_state = 218, .external_lex_state = 2}, + [2743] = {.lex_state = 216, .external_lex_state = 2}, + [2744] = {.lex_state = 237, .external_lex_state = 2}, + [2745] = {.lex_state = 237, .external_lex_state = 2}, + [2746] = {.lex_state = 237, .external_lex_state = 2}, + [2747] = {.lex_state = 237, .external_lex_state = 2}, + [2748] = {.lex_state = 237, .external_lex_state = 2}, + [2749] = {.lex_state = 237, .external_lex_state = 2}, + [2750] = {.lex_state = 237, .external_lex_state = 2}, + [2751] = {.lex_state = 237, .external_lex_state = 2}, + [2752] = {.lex_state = 1726, .external_lex_state = 2}, + [2753] = {.lex_state = 1726, .external_lex_state = 2}, + [2754] = {.lex_state = 224, .external_lex_state = 2}, + [2755] = {.lex_state = 1726, .external_lex_state = 2}, + [2756] = {.lex_state = 1726, .external_lex_state = 2}, + [2757] = {.lex_state = 1726, .external_lex_state = 2}, + [2758] = {.lex_state = 187, .external_lex_state = 2}, + [2759] = {.lex_state = 212, .external_lex_state = 2}, [2760] = {.lex_state = 218, .external_lex_state = 2}, - [2761] = {.lex_state = 197, .external_lex_state = 2}, - [2762] = {.lex_state = 218, .external_lex_state = 2}, - [2763] = {.lex_state = 197, .external_lex_state = 2}, + [2761] = {.lex_state = 218, .external_lex_state = 2}, + [2762] = {.lex_state = 197, .external_lex_state = 2}, + [2763] = {.lex_state = 218, .external_lex_state = 2}, [2764] = {.lex_state = 218, .external_lex_state = 2}, [2765] = {.lex_state = 218, .external_lex_state = 2}, - [2766] = {.lex_state = 197, .external_lex_state = 2}, - [2767] = {.lex_state = 218, .external_lex_state = 2}, + [2766] = {.lex_state = 155, .external_lex_state = 2}, + [2767] = {.lex_state = 197, .external_lex_state = 2}, [2768] = {.lex_state = 218, .external_lex_state = 2}, - [2769] = {.lex_state = 161, .external_lex_state = 2}, - [2770] = {.lex_state = 1664}, - [2771] = {.lex_state = 161, .external_lex_state = 2}, - [2772] = {.lex_state = 218, .external_lex_state = 2}, + [2769] = {.lex_state = 218, .external_lex_state = 2}, + [2770] = {.lex_state = 218, .external_lex_state = 2}, + [2771] = {.lex_state = 237, .external_lex_state = 2}, + [2772] = {.lex_state = 1638}, [2773] = {.lex_state = 218, .external_lex_state = 2}, - [2774] = {.lex_state = 218, .external_lex_state = 2}, - [2775] = {.lex_state = 205, .external_lex_state = 2}, + [2774] = {.lex_state = 213, .external_lex_state = 2}, + [2775] = {.lex_state = 202, .external_lex_state = 2}, [2776] = {.lex_state = 218, .external_lex_state = 2}, - [2777] = {.lex_state = 218, .external_lex_state = 2}, - [2778] = {.lex_state = 218, .external_lex_state = 2}, - [2779] = {.lex_state = 218, .external_lex_state = 2}, - [2780] = {.lex_state = 218, .external_lex_state = 2}, - [2781] = {.lex_state = 218, .external_lex_state = 2}, - [2782] = {.lex_state = 237, .external_lex_state = 2}, - [2783] = {.lex_state = 237, .external_lex_state = 2}, - [2784] = {.lex_state = 1630}, - [2785] = {.lex_state = 41, .external_lex_state = 2}, - [2786] = {.lex_state = 202, .external_lex_state = 2}, + [2777] = {.lex_state = 197, .external_lex_state = 2}, + [2778] = {.lex_state = 41, .external_lex_state = 2}, + [2779] = {.lex_state = 213, .external_lex_state = 2}, + [2780] = {.lex_state = 212, .external_lex_state = 2}, + [2781] = {.lex_state = 212, .external_lex_state = 2}, + [2782] = {.lex_state = 218, .external_lex_state = 2}, + [2783] = {.lex_state = 1668}, + [2784] = {.lex_state = 197, .external_lex_state = 2}, + [2785] = {.lex_state = 1642}, + [2786] = {.lex_state = 155, .external_lex_state = 2}, [2787] = {.lex_state = 197, .external_lex_state = 2}, - [2788] = {.lex_state = 197, .external_lex_state = 2}, - [2789] = {.lex_state = 182, .external_lex_state = 2}, - [2790] = {.lex_state = 155, .external_lex_state = 2}, - [2791] = {.lex_state = 201, .external_lex_state = 2}, - [2792] = {.lex_state = 155, .external_lex_state = 2}, - [2793] = {.lex_state = 212, .external_lex_state = 2}, - [2794] = {.lex_state = 212, .external_lex_state = 2}, + [2788] = {.lex_state = 161, .external_lex_state = 2}, + [2789] = {.lex_state = 218, .external_lex_state = 2}, + [2790] = {.lex_state = 1636}, + [2791] = {.lex_state = 1668}, + [2792] = {.lex_state = 218, .external_lex_state = 2}, + [2793] = {.lex_state = 218, .external_lex_state = 2}, + [2794] = {.lex_state = 218, .external_lex_state = 2}, [2795] = {.lex_state = 155, .external_lex_state = 2}, - [2796] = {.lex_state = 213, .external_lex_state = 2}, - [2797] = {.lex_state = 213, .external_lex_state = 2}, - [2798] = {.lex_state = 187, .external_lex_state = 2}, - [2799] = {.lex_state = 155, .external_lex_state = 2}, - [2800] = {.lex_state = 218, .external_lex_state = 2}, + [2796] = {.lex_state = 161, .external_lex_state = 2}, + [2797] = {.lex_state = 155, .external_lex_state = 2}, + [2798] = {.lex_state = 218, .external_lex_state = 2}, + [2799] = {.lex_state = 218, .external_lex_state = 2}, + [2800] = {.lex_state = 155, .external_lex_state = 2}, [2801] = {.lex_state = 218, .external_lex_state = 2}, - [2802] = {.lex_state = 218, .external_lex_state = 2}, - [2803] = {.lex_state = 202, .external_lex_state = 2}, - [2804] = {.lex_state = 235, .external_lex_state = 2}, - [2805] = {.lex_state = 235, .external_lex_state = 2}, - [2806] = {.lex_state = 235, .external_lex_state = 2}, - [2807] = {.lex_state = 226, .external_lex_state = 2}, - [2808] = {.lex_state = 202, .external_lex_state = 2}, - [2809] = {.lex_state = 235, .external_lex_state = 2}, - [2810] = {.lex_state = 202, .external_lex_state = 2}, - [2811] = {.lex_state = 202, .external_lex_state = 2}, - [2812] = {.lex_state = 214, .external_lex_state = 2}, - [2813] = {.lex_state = 202, .external_lex_state = 2}, - [2814] = {.lex_state = 35, .external_lex_state = 2}, - [2815] = {.lex_state = 202, .external_lex_state = 2}, + [2802] = {.lex_state = 205, .external_lex_state = 2}, + [2803] = {.lex_state = 182, .external_lex_state = 2}, + [2804] = {.lex_state = 155, .external_lex_state = 2}, + [2805] = {.lex_state = 1668}, + [2806] = {.lex_state = 225, .external_lex_state = 2}, + [2807] = {.lex_state = 1636}, + [2808] = {.lex_state = 197, .external_lex_state = 2}, + [2809] = {.lex_state = 225, .external_lex_state = 2}, + [2810] = {.lex_state = 218, .external_lex_state = 2}, + [2811] = {.lex_state = 218, .external_lex_state = 2}, + [2812] = {.lex_state = 201, .external_lex_state = 2}, + [2813] = {.lex_state = 1668}, + [2814] = {.lex_state = 237, .external_lex_state = 2}, + [2815] = {.lex_state = 235, .external_lex_state = 2}, [2816] = {.lex_state = 202, .external_lex_state = 2}, [2817] = {.lex_state = 202, .external_lex_state = 2}, [2818] = {.lex_state = 202, .external_lex_state = 2}, [2819] = {.lex_state = 202, .external_lex_state = 2}, - [2820] = {.lex_state = 226, .external_lex_state = 2}, + [2820] = {.lex_state = 202, .external_lex_state = 2}, [2821] = {.lex_state = 202, .external_lex_state = 2}, - [2822] = {.lex_state = 214, .external_lex_state = 2}, - [2823] = {.lex_state = 39, .external_lex_state = 2}, - [2824] = {.lex_state = 198, .external_lex_state = 2}, - [2825] = {.lex_state = 1632}, - [2826] = {.lex_state = 214, .external_lex_state = 2}, - [2827] = {.lex_state = 235, .external_lex_state = 2}, - [2828] = {.lex_state = 183, .external_lex_state = 2}, - [2829] = {.lex_state = 214, .external_lex_state = 2}, - [2830] = {.lex_state = 214, .external_lex_state = 2}, - [2831] = {.lex_state = 1664}, - [2832] = {.lex_state = 198, .external_lex_state = 2}, - [2833] = {.lex_state = 198, .external_lex_state = 2}, - [2834] = {.lex_state = 235, .external_lex_state = 2}, - [2835] = {.lex_state = 214, .external_lex_state = 2}, - [2836] = {.lex_state = 226, .external_lex_state = 2}, - [2837] = {.lex_state = 183, .external_lex_state = 2}, - [2838] = {.lex_state = 202, .external_lex_state = 2}, - [2839] = {.lex_state = 214, .external_lex_state = 2}, - [2840] = {.lex_state = 199, .external_lex_state = 2}, - [2841] = {.lex_state = 41, .external_lex_state = 2}, - [2842] = {.lex_state = 202, .external_lex_state = 2}, + [2822] = {.lex_state = 202, .external_lex_state = 2}, + [2823] = {.lex_state = 202, .external_lex_state = 2}, + [2824] = {.lex_state = 202, .external_lex_state = 2}, + [2825] = {.lex_state = 202, .external_lex_state = 2}, + [2826] = {.lex_state = 202, .external_lex_state = 2}, + [2827] = {.lex_state = 202, .external_lex_state = 2}, + [2828] = {.lex_state = 202, .external_lex_state = 2}, + [2829] = {.lex_state = 202, .external_lex_state = 2}, + [2830] = {.lex_state = 202, .external_lex_state = 2}, + [2831] = {.lex_state = 235, .external_lex_state = 2}, + [2832] = {.lex_state = 235, .external_lex_state = 2}, + [2833] = {.lex_state = 235, .external_lex_state = 2}, + [2834] = {.lex_state = 236, .external_lex_state = 2}, + [2835] = {.lex_state = 235, .external_lex_state = 2}, + [2836] = {.lex_state = 198, .external_lex_state = 2}, + [2837] = {.lex_state = 198, .external_lex_state = 2}, + [2838] = {.lex_state = 238, .external_lex_state = 2}, + [2839] = {.lex_state = 236, .external_lex_state = 2}, + [2840] = {.lex_state = 1637}, + [2841] = {.lex_state = 236, .external_lex_state = 2}, + [2842] = {.lex_state = 1646}, [2843] = {.lex_state = 214, .external_lex_state = 2}, - [2844] = {.lex_state = 1664}, + [2844] = {.lex_state = 214, .external_lex_state = 2}, [2845] = {.lex_state = 202, .external_lex_state = 2}, - [2846] = {.lex_state = 235, .external_lex_state = 2}, - [2847] = {.lex_state = 199, .external_lex_state = 2}, - [2848] = {.lex_state = 214, .external_lex_state = 2}, - [2849] = {.lex_state = 202, .external_lex_state = 2}, - [2850] = {.lex_state = 236, .external_lex_state = 2}, - [2851] = {.lex_state = 238, .external_lex_state = 2}, - [2852] = {.lex_state = 202, .external_lex_state = 2}, - [2853] = {.lex_state = 202, .external_lex_state = 2}, + [2846] = {.lex_state = 214, .external_lex_state = 2}, + [2847] = {.lex_state = 183, .external_lex_state = 2}, + [2848] = {.lex_state = 235, .external_lex_state = 2}, + [2849] = {.lex_state = 183, .external_lex_state = 2}, + [2850] = {.lex_state = 199, .external_lex_state = 2}, + [2851] = {.lex_state = 236, .external_lex_state = 2}, + [2852] = {.lex_state = 199, .external_lex_state = 2}, + [2853] = {.lex_state = 39, .external_lex_state = 2}, [2854] = {.lex_state = 214, .external_lex_state = 2}, - [2855] = {.lex_state = 214, .external_lex_state = 2}, - [2856] = {.lex_state = 214, .external_lex_state = 2}, - [2857] = {.lex_state = 226, .external_lex_state = 2}, - [2858] = {.lex_state = 218, .external_lex_state = 2}, - [2859] = {.lex_state = 202, .external_lex_state = 2}, - [2860] = {.lex_state = 1630}, - [2861] = {.lex_state = 236, .external_lex_state = 2}, - [2862] = {.lex_state = 226, .external_lex_state = 2}, - [2863] = {.lex_state = 236, .external_lex_state = 2}, - [2864] = {.lex_state = 214, .external_lex_state = 2}, - [2865] = {.lex_state = 214, .external_lex_state = 2}, - [2866] = {.lex_state = 1632}, - [2867] = {.lex_state = 214, .external_lex_state = 2}, - [2868] = {.lex_state = 236, .external_lex_state = 2}, - [2869] = {.lex_state = 236, .external_lex_state = 2}, - [2870] = {.lex_state = 202, .external_lex_state = 2}, - [2871] = {.lex_state = 236, .external_lex_state = 2}, - [2872] = {.lex_state = 40, .external_lex_state = 2}, - [2873] = {.lex_state = 202, .external_lex_state = 2}, - [2874] = {.lex_state = 235, .external_lex_state = 2}, - [2875] = {.lex_state = 202, .external_lex_state = 2}, - [2876] = {.lex_state = 235, .external_lex_state = 2}, - [2877] = {.lex_state = 226, .external_lex_state = 2}, - [2878] = {.lex_state = 200, .external_lex_state = 2}, - [2879] = {.lex_state = 217, .external_lex_state = 2}, - [2880] = {.lex_state = 235, .external_lex_state = 2}, - [2881] = {.lex_state = 200, .external_lex_state = 2}, - [2882] = {.lex_state = 200, .external_lex_state = 2}, + [2855] = {.lex_state = 226, .external_lex_state = 2}, + [2856] = {.lex_state = 1644}, + [2857] = {.lex_state = 1644}, + [2858] = {.lex_state = 214, .external_lex_state = 2}, + [2859] = {.lex_state = 214, .external_lex_state = 2}, + [2860] = {.lex_state = 1642}, + [2861] = {.lex_state = 214, .external_lex_state = 2}, + [2862] = {.lex_state = 214, .external_lex_state = 2}, + [2863] = {.lex_state = 214, .external_lex_state = 2}, + [2864] = {.lex_state = 1638}, + [2865] = {.lex_state = 41, .external_lex_state = 2}, + [2866] = {.lex_state = 40, .external_lex_state = 2}, + [2867] = {.lex_state = 235, .external_lex_state = 2}, + [2868] = {.lex_state = 214, .external_lex_state = 2}, + [2869] = {.lex_state = 235, .external_lex_state = 2}, + [2870] = {.lex_state = 235, .external_lex_state = 2}, + [2871] = {.lex_state = 218, .external_lex_state = 2}, + [2872] = {.lex_state = 198, .external_lex_state = 2}, + [2873] = {.lex_state = 214, .external_lex_state = 2}, + [2874] = {.lex_state = 226, .external_lex_state = 2}, + [2875] = {.lex_state = 214, .external_lex_state = 2}, + [2876] = {.lex_state = 35, .external_lex_state = 2}, + [2877] = {.lex_state = 214, .external_lex_state = 2}, + [2878] = {.lex_state = 236, .external_lex_state = 2}, + [2879] = {.lex_state = 218, .external_lex_state = 2}, + [2880] = {.lex_state = 236, .external_lex_state = 2}, + [2881] = {.lex_state = 202, .external_lex_state = 2}, + [2882] = {.lex_state = 226, .external_lex_state = 2}, [2883] = {.lex_state = 202, .external_lex_state = 2}, - [2884] = {.lex_state = 200, .external_lex_state = 2}, - [2885] = {.lex_state = 235, .external_lex_state = 2}, - [2886] = {.lex_state = 35, .external_lex_state = 2}, - [2887] = {.lex_state = 35, .external_lex_state = 2}, - [2888] = {.lex_state = 184, .external_lex_state = 2}, - [2889] = {.lex_state = 200, .external_lex_state = 2}, - [2890] = {.lex_state = 184, .external_lex_state = 2}, - [2891] = {.lex_state = 200, .external_lex_state = 2}, - [2892] = {.lex_state = 200, .external_lex_state = 2}, - [2893] = {.lex_state = 1638}, - [2894] = {.lex_state = 166, .external_lex_state = 2}, - [2895] = {.lex_state = 1634}, - [2896] = {.lex_state = 184, .external_lex_state = 2}, - [2897] = {.lex_state = 35, .external_lex_state = 2}, - [2898] = {.lex_state = 217, .external_lex_state = 2}, - [2899] = {.lex_state = 200, .external_lex_state = 2}, - [2900] = {.lex_state = 184, .external_lex_state = 2}, - [2901] = {.lex_state = 251, .external_lex_state = 2}, - [2902] = {.lex_state = 252, .external_lex_state = 2}, - [2903] = {.lex_state = 162, .external_lex_state = 2}, - [2904] = {.lex_state = 217, .external_lex_state = 2}, - [2905] = {.lex_state = 251, .external_lex_state = 2}, - [2906] = {.lex_state = 217, .external_lex_state = 2}, - [2907] = {.lex_state = 40, .external_lex_state = 2}, + [2884] = {.lex_state = 214, .external_lex_state = 2}, + [2885] = {.lex_state = 226, .external_lex_state = 2}, + [2886] = {.lex_state = 202, .external_lex_state = 2}, + [2887] = {.lex_state = 202, .external_lex_state = 2}, + [2888] = {.lex_state = 226, .external_lex_state = 2}, + [2889] = {.lex_state = 202, .external_lex_state = 2}, + [2890] = {.lex_state = 226, .external_lex_state = 2}, + [2891] = {.lex_state = 214, .external_lex_state = 2}, + [2892] = {.lex_state = 1646}, + [2893] = {.lex_state = 1640}, + [2894] = {.lex_state = 40, .external_lex_state = 2}, + [2895] = {.lex_state = 240, .external_lex_state = 2}, + [2896] = {.lex_state = 39, .external_lex_state = 2}, + [2897] = {.lex_state = 200, .external_lex_state = 2}, + [2898] = {.lex_state = 35, .external_lex_state = 2}, + [2899] = {.lex_state = 251, .external_lex_state = 2}, + [2900] = {.lex_state = 200, .external_lex_state = 2}, + [2901] = {.lex_state = 162, .external_lex_state = 2}, + [2902] = {.lex_state = 232, .external_lex_state = 2}, + [2903] = {.lex_state = 184, .external_lex_state = 2}, + [2904] = {.lex_state = 184, .external_lex_state = 2}, + [2905] = {.lex_state = 227, .external_lex_state = 2}, + [2906] = {.lex_state = 184, .external_lex_state = 2}, + [2907] = {.lex_state = 184, .external_lex_state = 2}, [2908] = {.lex_state = 200, .external_lex_state = 2}, - [2909] = {.lex_state = 217, .external_lex_state = 2}, - [2910] = {.lex_state = 252, .external_lex_state = 2}, - [2911] = {.lex_state = 210, .external_lex_state = 2}, + [2909] = {.lex_state = 200, .external_lex_state = 2}, + [2910] = {.lex_state = 200, .external_lex_state = 2}, + [2911] = {.lex_state = 200, .external_lex_state = 2}, [2912] = {.lex_state = 200, .external_lex_state = 2}, - [2913] = {.lex_state = 227, .external_lex_state = 2}, - [2914] = {.lex_state = 202, .external_lex_state = 2}, - [2915] = {.lex_state = 200, .external_lex_state = 2}, - [2916] = {.lex_state = 1632}, - [2917] = {.lex_state = 252, .external_lex_state = 2}, - [2918] = {.lex_state = 39, .external_lex_state = 2}, - [2919] = {.lex_state = 171, .external_lex_state = 2}, - [2920] = {.lex_state = 251, .external_lex_state = 2}, - [2921] = {.lex_state = 252, .external_lex_state = 2}, - [2922] = {.lex_state = 1664}, - [2923] = {.lex_state = 240, .external_lex_state = 2}, - [2924] = {.lex_state = 1664}, - [2925] = {.lex_state = 251, .external_lex_state = 2}, - [2926] = {.lex_state = 237, .external_lex_state = 2}, - [2927] = {.lex_state = 1664}, - [2928] = {.lex_state = 184, .external_lex_state = 2}, - [2929] = {.lex_state = 1664}, - [2930] = {.lex_state = 237, .external_lex_state = 2}, - [2931] = {.lex_state = 251, .external_lex_state = 2}, - [2932] = {.lex_state = 200, .external_lex_state = 2}, - [2933] = {.lex_state = 184, .external_lex_state = 2}, - [2934] = {.lex_state = 200, .external_lex_state = 2}, - [2935] = {.lex_state = 184, .external_lex_state = 2}, - [2936] = {.lex_state = 184, .external_lex_state = 2}, - [2937] = {.lex_state = 1632}, - [2938] = {.lex_state = 232, .external_lex_state = 2}, - [2939] = {.lex_state = 184, .external_lex_state = 2}, - [2940] = {.lex_state = 220, .external_lex_state = 2}, - [2941] = {.lex_state = 200, .external_lex_state = 2}, - [2942] = {.lex_state = 217, .external_lex_state = 2}, - [2943] = {.lex_state = 237, .external_lex_state = 2}, + [2913] = {.lex_state = 202, .external_lex_state = 2}, + [2914] = {.lex_state = 1646}, + [2915] = {.lex_state = 1646}, + [2916] = {.lex_state = 1646}, + [2917] = {.lex_state = 166, .external_lex_state = 2}, + [2918] = {.lex_state = 1644}, + [2919] = {.lex_state = 200, .external_lex_state = 2}, + [2920] = {.lex_state = 200, .external_lex_state = 2}, + [2921] = {.lex_state = 1644}, + [2922] = {.lex_state = 202, .external_lex_state = 2}, + [2923] = {.lex_state = 210, .external_lex_state = 2}, + [2924] = {.lex_state = 184, .external_lex_state = 2}, + [2925] = {.lex_state = 1648}, + [2926] = {.lex_state = 184, .external_lex_state = 2}, + [2927] = {.lex_state = 184, .external_lex_state = 2}, + [2928] = {.lex_state = 200, .external_lex_state = 2}, + [2929] = {.lex_state = 200, .external_lex_state = 2}, + [2930] = {.lex_state = 252, .external_lex_state = 2}, + [2931] = {.lex_state = 184, .external_lex_state = 2}, + [2932] = {.lex_state = 220, .external_lex_state = 2}, + [2933] = {.lex_state = 35, .external_lex_state = 2}, + [2934] = {.lex_state = 251, .external_lex_state = 2}, + [2935] = {.lex_state = 251, .external_lex_state = 2}, + [2936] = {.lex_state = 251, .external_lex_state = 2}, + [2937] = {.lex_state = 200, .external_lex_state = 2}, + [2938] = {.lex_state = 1646}, + [2939] = {.lex_state = 237, .external_lex_state = 2}, + [2940] = {.lex_state = 35, .external_lex_state = 2}, + [2941] = {.lex_state = 252, .external_lex_state = 2}, + [2942] = {.lex_state = 252, .external_lex_state = 2}, + [2943] = {.lex_state = 217, .external_lex_state = 2}, [2944] = {.lex_state = 200, .external_lex_state = 2}, - [2945] = {.lex_state = 252, .external_lex_state = 2}, - [2946] = {.lex_state = 228, .external_lex_state = 2}, - [2947] = {.lex_state = 192, .external_lex_state = 2}, - [2948] = {.lex_state = 208, .external_lex_state = 2}, - [2949] = {.lex_state = 228, .external_lex_state = 2}, - [2950] = {.lex_state = 171, .external_lex_state = 2}, - [2951] = {.lex_state = 1633}, - [2952] = {.lex_state = 35, .external_lex_state = 2}, - [2953] = {.lex_state = 35, .external_lex_state = 2}, - [2954] = {.lex_state = 35, .external_lex_state = 2}, - [2955] = {.lex_state = 192, .external_lex_state = 2}, - [2956] = {.lex_state = 35, .external_lex_state = 2}, - [2957] = {.lex_state = 35, .external_lex_state = 2}, - [2958] = {.lex_state = 35, .external_lex_state = 2}, - [2959] = {.lex_state = 35, .external_lex_state = 2}, - [2960] = {.lex_state = 192, .external_lex_state = 2}, - [2961] = {.lex_state = 35, .external_lex_state = 2}, + [2945] = {.lex_state = 217, .external_lex_state = 2}, + [2946] = {.lex_state = 217, .external_lex_state = 2}, + [2947] = {.lex_state = 200, .external_lex_state = 2}, + [2948] = {.lex_state = 252, .external_lex_state = 2}, + [2949] = {.lex_state = 237, .external_lex_state = 2}, + [2950] = {.lex_state = 237, .external_lex_state = 2}, + [2951] = {.lex_state = 235, .external_lex_state = 2}, + [2952] = {.lex_state = 171, .external_lex_state = 2}, + [2953] = {.lex_state = 252, .external_lex_state = 2}, + [2954] = {.lex_state = 217, .external_lex_state = 2}, + [2955] = {.lex_state = 251, .external_lex_state = 2}, + [2956] = {.lex_state = 235, .external_lex_state = 2}, + [2957] = {.lex_state = 217, .external_lex_state = 2}, + [2958] = {.lex_state = 200, .external_lex_state = 2}, + [2959] = {.lex_state = 217, .external_lex_state = 2}, + [2960] = {.lex_state = 184, .external_lex_state = 2}, + [2961] = {.lex_state = 1640}, [2962] = {.lex_state = 35, .external_lex_state = 2}, - [2963] = {.lex_state = 196, .external_lex_state = 2}, - [2964] = {.lex_state = 1640}, - [2965] = {.lex_state = 1640}, - [2966] = {.lex_state = 1638}, - [2967] = {.lex_state = 1634}, - [2968] = {.lex_state = 207, .external_lex_state = 2}, - [2969] = {.lex_state = 207, .external_lex_state = 2}, - [2970] = {.lex_state = 35, .external_lex_state = 2}, + [2963] = {.lex_state = 35, .external_lex_state = 2}, + [2964] = {.lex_state = 35, .external_lex_state = 2}, + [2965] = {.lex_state = 35, .external_lex_state = 2}, + [2966] = {.lex_state = 163, .external_lex_state = 2}, + [2967] = {.lex_state = 192, .external_lex_state = 2}, + [2968] = {.lex_state = 35, .external_lex_state = 2}, + [2969] = {.lex_state = 35, .external_lex_state = 2}, + [2970] = {.lex_state = 1648}, [2971] = {.lex_state = 35, .external_lex_state = 2}, - [2972] = {.lex_state = 206, .external_lex_state = 2}, - [2973] = {.lex_state = 35, .external_lex_state = 2}, + [2972] = {.lex_state = 218, .external_lex_state = 2}, + [2973] = {.lex_state = 163, .external_lex_state = 2}, [2974] = {.lex_state = 35, .external_lex_state = 2}, - [2975] = {.lex_state = 35, .external_lex_state = 2}, + [2975] = {.lex_state = 1668}, [2976] = {.lex_state = 35, .external_lex_state = 2}, [2977] = {.lex_state = 35, .external_lex_state = 2}, - [2978] = {.lex_state = 35, .external_lex_state = 2}, - [2979] = {.lex_state = 35, .external_lex_state = 2}, - [2980] = {.lex_state = 35, .external_lex_state = 2}, + [2978] = {.lex_state = 192, .external_lex_state = 2}, + [2979] = {.lex_state = 196, .external_lex_state = 2}, + [2980] = {.lex_state = 233, .external_lex_state = 2}, [2981] = {.lex_state = 35, .external_lex_state = 2}, [2982] = {.lex_state = 35, .external_lex_state = 2}, - [2983] = {.lex_state = 35, .external_lex_state = 2}, - [2984] = {.lex_state = 35, .external_lex_state = 2}, + [2983] = {.lex_state = 171, .external_lex_state = 2}, + [2984] = {.lex_state = 218, .external_lex_state = 2}, [2985] = {.lex_state = 35, .external_lex_state = 2}, - [2986] = {.lex_state = 35, .external_lex_state = 2}, + [2986] = {.lex_state = 1646}, [2987] = {.lex_state = 35, .external_lex_state = 2}, - [2988] = {.lex_state = 35, .external_lex_state = 2}, - [2989] = {.lex_state = 35, .external_lex_state = 2}, - [2990] = {.lex_state = 35, .external_lex_state = 2}, - [2991] = {.lex_state = 35, .external_lex_state = 2}, + [2988] = {.lex_state = 203, .external_lex_state = 2}, + [2989] = {.lex_state = 1646}, + [2990] = {.lex_state = 228, .external_lex_state = 2}, + [2991] = {.lex_state = 1646}, [2992] = {.lex_state = 35, .external_lex_state = 2}, - [2993] = {.lex_state = 192, .external_lex_state = 2}, - [2994] = {.lex_state = 192, .external_lex_state = 2}, - [2995] = {.lex_state = 203, .external_lex_state = 2}, - [2996] = {.lex_state = 192, .external_lex_state = 2}, - [2997] = {.lex_state = 35, .external_lex_state = 2}, + [2993] = {.lex_state = 35, .external_lex_state = 2}, + [2994] = {.lex_state = 1646}, + [2995] = {.lex_state = 35, .external_lex_state = 2}, + [2996] = {.lex_state = 35, .external_lex_state = 2}, + [2997] = {.lex_state = 1650}, [2998] = {.lex_state = 35, .external_lex_state = 2}, - [2999] = {.lex_state = 35, .external_lex_state = 2}, + [2999] = {.lex_state = 207, .external_lex_state = 2}, [3000] = {.lex_state = 35, .external_lex_state = 2}, - [3001] = {.lex_state = 192, .external_lex_state = 2}, - [3002] = {.lex_state = 192, .external_lex_state = 2}, - [3003] = {.lex_state = 218, .external_lex_state = 2}, + [3001] = {.lex_state = 207, .external_lex_state = 2}, + [3002] = {.lex_state = 42, .external_lex_state = 2}, + [3003] = {.lex_state = 203, .external_lex_state = 2}, [3004] = {.lex_state = 192, .external_lex_state = 2}, - [3005] = {.lex_state = 192, .external_lex_state = 2}, - [3006] = {.lex_state = 192, .external_lex_state = 2}, + [3005] = {.lex_state = 203, .external_lex_state = 2}, + [3006] = {.lex_state = 35, .external_lex_state = 2}, [3007] = {.lex_state = 192, .external_lex_state = 2}, - [3008] = {.lex_state = 218, .external_lex_state = 2}, - [3009] = {.lex_state = 218, .external_lex_state = 2}, - [3010] = {.lex_state = 42, .external_lex_state = 2}, - [3011] = {.lex_state = 35, .external_lex_state = 2}, - [3012] = {.lex_state = 35, .external_lex_state = 2}, + [3008] = {.lex_state = 203, .external_lex_state = 2}, + [3009] = {.lex_state = 35, .external_lex_state = 2}, + [3010] = {.lex_state = 203, .external_lex_state = 2}, + [3011] = {.lex_state = 206, .external_lex_state = 2}, + [3012] = {.lex_state = 1650}, [3013] = {.lex_state = 35, .external_lex_state = 2}, [3014] = {.lex_state = 35, .external_lex_state = 2}, [3015] = {.lex_state = 35, .external_lex_state = 2}, - [3016] = {.lex_state = 233, .external_lex_state = 2}, - [3017] = {.lex_state = 35, .external_lex_state = 2}, - [3018] = {.lex_state = 171, .external_lex_state = 2}, + [3016] = {.lex_state = 192, .external_lex_state = 2}, + [3017] = {.lex_state = 192, .external_lex_state = 2}, + [3018] = {.lex_state = 35, .external_lex_state = 2}, [3019] = {.lex_state = 35, .external_lex_state = 2}, [3020] = {.lex_state = 35, .external_lex_state = 2}, [3021] = {.lex_state = 35, .external_lex_state = 2}, - [3022] = {.lex_state = 163, .external_lex_state = 2}, - [3023] = {.lex_state = 163, .external_lex_state = 2}, + [3022] = {.lex_state = 35, .external_lex_state = 2}, + [3023] = {.lex_state = 171, .external_lex_state = 2}, [3024] = {.lex_state = 35, .external_lex_state = 2}, [3025] = {.lex_state = 35, .external_lex_state = 2}, - [3026] = {.lex_state = 203, .external_lex_state = 2}, + [3026] = {.lex_state = 35, .external_lex_state = 2}, [3027] = {.lex_state = 35, .external_lex_state = 2}, [3028] = {.lex_state = 35, .external_lex_state = 2}, - [3029] = {.lex_state = 203, .external_lex_state = 2}, - [3030] = {.lex_state = 203, .external_lex_state = 2}, - [3031] = {.lex_state = 203, .external_lex_state = 2}, - [3032] = {.lex_state = 192, .external_lex_state = 2}, - [3033] = {.lex_state = 1642}, - [3034] = {.lex_state = 35, .external_lex_state = 2}, - [3035] = {.lex_state = 35, .external_lex_state = 2}, + [3029] = {.lex_state = 35, .external_lex_state = 2}, + [3030] = {.lex_state = 192, .external_lex_state = 2}, + [3031] = {.lex_state = 208, .external_lex_state = 2}, + [3032] = {.lex_state = 35, .external_lex_state = 2}, + [3033] = {.lex_state = 192, .external_lex_state = 2}, + [3034] = {.lex_state = 192, .external_lex_state = 2}, + [3035] = {.lex_state = 192, .external_lex_state = 2}, [3036] = {.lex_state = 35, .external_lex_state = 2}, - [3037] = {.lex_state = 203, .external_lex_state = 2}, - [3038] = {.lex_state = 209, .external_lex_state = 2}, - [3039] = {.lex_state = 209, .external_lex_state = 2}, - [3040] = {.lex_state = 42, .external_lex_state = 2}, - [3041] = {.lex_state = 209, .external_lex_state = 2}, - [3042] = {.lex_state = 209, .external_lex_state = 2}, - [3043] = {.lex_state = 229, .external_lex_state = 2}, - [3044] = {.lex_state = 209, .external_lex_state = 2}, - [3045] = {.lex_state = 209, .external_lex_state = 2}, - [3046] = {.lex_state = 253, .external_lex_state = 2}, - [3047] = {.lex_state = 202, .external_lex_state = 2}, - [3048] = {.lex_state = 253, .external_lex_state = 2}, - [3049] = {.lex_state = 253, .external_lex_state = 2}, - [3050] = {.lex_state = 164, .external_lex_state = 2}, - [3051] = {.lex_state = 229, .external_lex_state = 2}, - [3052] = {.lex_state = 202, .external_lex_state = 2}, - [3053] = {.lex_state = 202, .external_lex_state = 2}, - [3054] = {.lex_state = 209, .external_lex_state = 2}, - [3055] = {.lex_state = 193, .external_lex_state = 2}, - [3056] = {.lex_state = 229, .external_lex_state = 2}, - [3057] = {.lex_state = 193, .external_lex_state = 2}, - [3058] = {.lex_state = 253, .external_lex_state = 2}, - [3059] = {.lex_state = 229, .external_lex_state = 2}, - [3060] = {.lex_state = 253, .external_lex_state = 2}, + [3037] = {.lex_state = 35, .external_lex_state = 2}, + [3038] = {.lex_state = 35, .external_lex_state = 2}, + [3039] = {.lex_state = 35, .external_lex_state = 2}, + [3040] = {.lex_state = 35, .external_lex_state = 2}, + [3041] = {.lex_state = 35, .external_lex_state = 2}, + [3042] = {.lex_state = 192, .external_lex_state = 2}, + [3043] = {.lex_state = 218, .external_lex_state = 2}, + [3044] = {.lex_state = 35, .external_lex_state = 2}, + [3045] = {.lex_state = 35, .external_lex_state = 2}, + [3046] = {.lex_state = 35, .external_lex_state = 2}, + [3047] = {.lex_state = 35, .external_lex_state = 2}, + [3048] = {.lex_state = 35, .external_lex_state = 2}, + [3049] = {.lex_state = 35, .external_lex_state = 2}, + [3050] = {.lex_state = 35, .external_lex_state = 2}, + [3051] = {.lex_state = 192, .external_lex_state = 2}, + [3052] = {.lex_state = 192, .external_lex_state = 2}, + [3053] = {.lex_state = 228, .external_lex_state = 2}, + [3054] = {.lex_state = 35, .external_lex_state = 2}, + [3055] = {.lex_state = 203, .external_lex_state = 2}, + [3056] = {.lex_state = 209, .external_lex_state = 2}, + [3057] = {.lex_state = 209, .external_lex_state = 2}, + [3058] = {.lex_state = 1652}, + [3059] = {.lex_state = 209, .external_lex_state = 2}, + [3060] = {.lex_state = 209, .external_lex_state = 2}, [3061] = {.lex_state = 229, .external_lex_state = 2}, - [3062] = {.lex_state = 209, .external_lex_state = 2}, + [3062] = {.lex_state = 164, .external_lex_state = 2}, [3063] = {.lex_state = 209, .external_lex_state = 2}, [3064] = {.lex_state = 209, .external_lex_state = 2}, - [3065] = {.lex_state = 1642}, - [3066] = {.lex_state = 229, .external_lex_state = 2}, - [3067] = {.lex_state = 1642}, - [3068] = {.lex_state = 192, .external_lex_state = 2}, + [3065] = {.lex_state = 209, .external_lex_state = 2}, + [3066] = {.lex_state = 209, .external_lex_state = 2}, + [3067] = {.lex_state = 209, .external_lex_state = 2}, + [3068] = {.lex_state = 253, .external_lex_state = 2}, [3069] = {.lex_state = 209, .external_lex_state = 2}, [3070] = {.lex_state = 209, .external_lex_state = 2}, - [3071] = {.lex_state = 1642}, - [3072] = {.lex_state = 1642}, - [3073] = {.lex_state = 1640}, + [3071] = {.lex_state = 209, .external_lex_state = 2}, + [3072] = {.lex_state = 209, .external_lex_state = 2}, + [3073] = {.lex_state = 253, .external_lex_state = 2}, [3074] = {.lex_state = 209, .external_lex_state = 2}, - [3075] = {.lex_state = 229, .external_lex_state = 2}, - [3076] = {.lex_state = 1640}, - [3077] = {.lex_state = 1642}, - [3078] = {.lex_state = 1636}, + [3075] = {.lex_state = 209, .external_lex_state = 2}, + [3076] = {.lex_state = 209, .external_lex_state = 2}, + [3077] = {.lex_state = 229, .external_lex_state = 2}, + [3078] = {.lex_state = 209, .external_lex_state = 2}, [3079] = {.lex_state = 209, .external_lex_state = 2}, - [3080] = {.lex_state = 192, .external_lex_state = 2}, - [3081] = {.lex_state = 209, .external_lex_state = 2}, - [3082] = {.lex_state = 209, .external_lex_state = 2}, - [3083] = {.lex_state = 209, .external_lex_state = 2}, - [3084] = {.lex_state = 209, .external_lex_state = 2}, + [3080] = {.lex_state = 202, .external_lex_state = 2}, + [3081] = {.lex_state = 253, .external_lex_state = 2}, + [3082] = {.lex_state = 1652}, + [3083] = {.lex_state = 253, .external_lex_state = 2}, + [3084] = {.lex_state = 164, .external_lex_state = 2}, [3085] = {.lex_state = 209, .external_lex_state = 2}, - [3086] = {.lex_state = 209, .external_lex_state = 2}, + [3086] = {.lex_state = 253, .external_lex_state = 2}, [3087] = {.lex_state = 209, .external_lex_state = 2}, - [3088] = {.lex_state = 229, .external_lex_state = 2}, + [3088] = {.lex_state = 209, .external_lex_state = 2}, [3089] = {.lex_state = 209, .external_lex_state = 2}, - [3090] = {.lex_state = 164, .external_lex_state = 2}, - [3091] = {.lex_state = 209, .external_lex_state = 2}, - [3092] = {.lex_state = 209, .external_lex_state = 2}, - [3093] = {.lex_state = 229, .external_lex_state = 2}, - [3094] = {.lex_state = 164, .external_lex_state = 2}, - [3095] = {.lex_state = 194, .external_lex_state = 2}, + [3090] = {.lex_state = 1650}, + [3091] = {.lex_state = 1652}, + [3092] = {.lex_state = 1652}, + [3093] = {.lex_state = 209, .external_lex_state = 2}, + [3094] = {.lex_state = 209, .external_lex_state = 2}, + [3095] = {.lex_state = 209, .external_lex_state = 2}, [3096] = {.lex_state = 209, .external_lex_state = 2}, - [3097] = {.lex_state = 209, .external_lex_state = 2}, - [3098] = {.lex_state = 164, .external_lex_state = 2}, - [3099] = {.lex_state = 209, .external_lex_state = 2}, - [3100] = {.lex_state = 209, .external_lex_state = 2}, - [3101] = {.lex_state = 209, .external_lex_state = 2}, + [3097] = {.lex_state = 202, .external_lex_state = 2}, + [3098] = {.lex_state = 193, .external_lex_state = 2}, + [3099] = {.lex_state = 229, .external_lex_state = 2}, + [3100] = {.lex_state = 229, .external_lex_state = 2}, + [3101] = {.lex_state = 229, .external_lex_state = 2}, [3102] = {.lex_state = 209, .external_lex_state = 2}, - [3103] = {.lex_state = 209, .external_lex_state = 2}, - [3104] = {.lex_state = 1644}, - [3105] = {.lex_state = 45, .external_lex_state = 2}, + [3103] = {.lex_state = 42, .external_lex_state = 2}, + [3104] = {.lex_state = 209, .external_lex_state = 2}, + [3105] = {.lex_state = 193, .external_lex_state = 2}, [3106] = {.lex_state = 209, .external_lex_state = 2}, - [3107] = {.lex_state = 209, .external_lex_state = 2}, + [3107] = {.lex_state = 1650}, [3108] = {.lex_state = 209, .external_lex_state = 2}, [3109] = {.lex_state = 209, .external_lex_state = 2}, [3110] = {.lex_state = 209, .external_lex_state = 2}, - [3111] = {.lex_state = 209, .external_lex_state = 2}, - [3112] = {.lex_state = 209, .external_lex_state = 2}, - [3113] = {.lex_state = 209, .external_lex_state = 2}, + [3111] = {.lex_state = 229, .external_lex_state = 2}, + [3112] = {.lex_state = 192, .external_lex_state = 2}, + [3113] = {.lex_state = 229, .external_lex_state = 2}, [3114] = {.lex_state = 209, .external_lex_state = 2}, - [3115] = {.lex_state = 209, .external_lex_state = 2}, - [3116] = {.lex_state = 209, .external_lex_state = 2}, - [3117] = {.lex_state = 209, .external_lex_state = 2}, - [3118] = {.lex_state = 209, .external_lex_state = 2}, + [3115] = {.lex_state = 192, .external_lex_state = 2}, + [3116] = {.lex_state = 202, .external_lex_state = 2}, + [3117] = {.lex_state = 229, .external_lex_state = 2}, + [3118] = {.lex_state = 164, .external_lex_state = 2}, [3119] = {.lex_state = 209, .external_lex_state = 2}, [3120] = {.lex_state = 209, .external_lex_state = 2}, [3121] = {.lex_state = 209, .external_lex_state = 2}, - [3122] = {.lex_state = 209, .external_lex_state = 2}, - [3123] = {.lex_state = 209, .external_lex_state = 2}, - [3124] = {.lex_state = 209, .external_lex_state = 2}, - [3125] = {.lex_state = 209, .external_lex_state = 2}, + [3122] = {.lex_state = 1652}, + [3123] = {.lex_state = 194, .external_lex_state = 2}, + [3124] = {.lex_state = 229, .external_lex_state = 2}, + [3125] = {.lex_state = 164, .external_lex_state = 2}, [3126] = {.lex_state = 209, .external_lex_state = 2}, - [3127] = {.lex_state = 229, .external_lex_state = 2}, - [3128] = {.lex_state = 164, .external_lex_state = 2}, - [3129] = {.lex_state = 46, .external_lex_state = 2}, - [3130] = {.lex_state = 46, .external_lex_state = 2}, - [3131] = {.lex_state = 1642}, - [3132] = {.lex_state = 46, .external_lex_state = 2}, - [3133] = {.lex_state = 46, .external_lex_state = 2}, - [3134] = {.lex_state = 1644}, - [3135] = {.lex_state = 46, .external_lex_state = 2}, - [3136] = {.lex_state = 1642}, - [3137] = {.lex_state = 46, .external_lex_state = 2}, - [3138] = {.lex_state = 46, .external_lex_state = 2}, - [3139] = {.lex_state = 46, .external_lex_state = 2}, - [3140] = {.lex_state = 46, .external_lex_state = 2}, - [3141] = {.lex_state = 46, .external_lex_state = 2}, - [3142] = {.lex_state = 46, .external_lex_state = 2}, - [3143] = {.lex_state = 46, .external_lex_state = 2}, - [3144] = {.lex_state = 46, .external_lex_state = 2}, - [3145] = {.lex_state = 46, .external_lex_state = 2}, + [3127] = {.lex_state = 209, .external_lex_state = 2}, + [3128] = {.lex_state = 209, .external_lex_state = 2}, + [3129] = {.lex_state = 209, .external_lex_state = 2}, + [3130] = {.lex_state = 209, .external_lex_state = 2}, + [3131] = {.lex_state = 1652}, + [3132] = {.lex_state = 164, .external_lex_state = 2}, + [3133] = {.lex_state = 209, .external_lex_state = 2}, + [3134] = {.lex_state = 209, .external_lex_state = 2}, + [3135] = {.lex_state = 45, .external_lex_state = 2}, + [3136] = {.lex_state = 209, .external_lex_state = 2}, + [3137] = {.lex_state = 209, .external_lex_state = 2}, + [3138] = {.lex_state = 209, .external_lex_state = 2}, + [3139] = {.lex_state = 209, .external_lex_state = 2}, + [3140] = {.lex_state = 209, .external_lex_state = 2}, + [3141] = {.lex_state = 229, .external_lex_state = 2}, + [3142] = {.lex_state = 209, .external_lex_state = 2}, + [3143] = {.lex_state = 209, .external_lex_state = 2}, + [3144] = {.lex_state = 209, .external_lex_state = 2}, + [3145] = {.lex_state = 209, .external_lex_state = 2}, [3146] = {.lex_state = 46, .external_lex_state = 2}, [3147] = {.lex_state = 46, .external_lex_state = 2}, [3148] = {.lex_state = 46, .external_lex_state = 2}, [3149] = {.lex_state = 46, .external_lex_state = 2}, [3150] = {.lex_state = 46, .external_lex_state = 2}, [3151] = {.lex_state = 46, .external_lex_state = 2}, - [3152] = {.lex_state = 46, .external_lex_state = 2}, + [3152] = {.lex_state = 1668}, [3153] = {.lex_state = 46, .external_lex_state = 2}, - [3154] = {.lex_state = 1664}, + [3154] = {.lex_state = 45, .external_lex_state = 2}, [3155] = {.lex_state = 46, .external_lex_state = 2}, - [3156] = {.lex_state = 46, .external_lex_state = 2}, + [3156] = {.lex_state = 1652}, [3157] = {.lex_state = 46, .external_lex_state = 2}, [3158] = {.lex_state = 46, .external_lex_state = 2}, [3159] = {.lex_state = 46, .external_lex_state = 2}, @@ -64433,2265 +64627,2265 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3163] = {.lex_state = 46, .external_lex_state = 2}, [3164] = {.lex_state = 46, .external_lex_state = 2}, [3165] = {.lex_state = 46, .external_lex_state = 2}, - [3166] = {.lex_state = 46, .external_lex_state = 2}, + [3166] = {.lex_state = 1652}, [3167] = {.lex_state = 46, .external_lex_state = 2}, [3168] = {.lex_state = 46, .external_lex_state = 2}, [3169] = {.lex_state = 46, .external_lex_state = 2}, - [3170] = {.lex_state = 1646}, - [3171] = {.lex_state = 1646}, + [3170] = {.lex_state = 46, .external_lex_state = 2}, + [3171] = {.lex_state = 46, .external_lex_state = 2}, [3172] = {.lex_state = 46, .external_lex_state = 2}, - [3173] = {.lex_state = 45, .external_lex_state = 2}, + [3173] = {.lex_state = 46, .external_lex_state = 2}, [3174] = {.lex_state = 46, .external_lex_state = 2}, [3175] = {.lex_state = 46, .external_lex_state = 2}, [3176] = {.lex_state = 46, .external_lex_state = 2}, [3177] = {.lex_state = 46, .external_lex_state = 2}, [3178] = {.lex_state = 46, .external_lex_state = 2}, [3179] = {.lex_state = 46, .external_lex_state = 2}, - [3180] = {.lex_state = 1642}, - [3181] = {.lex_state = 155, .external_lex_state = 2}, - [3182] = {.lex_state = 46, .external_lex_state = 2}, + [3180] = {.lex_state = 46, .external_lex_state = 2}, + [3181] = {.lex_state = 46, .external_lex_state = 2}, + [3182] = {.lex_state = 1654}, [3183] = {.lex_state = 46, .external_lex_state = 2}, - [3184] = {.lex_state = 46, .external_lex_state = 2}, - [3185] = {.lex_state = 1642}, + [3184] = {.lex_state = 1656}, + [3185] = {.lex_state = 46, .external_lex_state = 2}, [3186] = {.lex_state = 46, .external_lex_state = 2}, [3187] = {.lex_state = 46, .external_lex_state = 2}, [3188] = {.lex_state = 46, .external_lex_state = 2}, [3189] = {.lex_state = 46, .external_lex_state = 2}, - [3190] = {.lex_state = 46, .external_lex_state = 2}, + [3190] = {.lex_state = 1668}, [3191] = {.lex_state = 46, .external_lex_state = 2}, [3192] = {.lex_state = 46, .external_lex_state = 2}, [3193] = {.lex_state = 46, .external_lex_state = 2}, [3194] = {.lex_state = 46, .external_lex_state = 2}, [3195] = {.lex_state = 46, .external_lex_state = 2}, - [3196] = {.lex_state = 46, .external_lex_state = 2}, + [3196] = {.lex_state = 1652}, [3197] = {.lex_state = 46, .external_lex_state = 2}, [3198] = {.lex_state = 46, .external_lex_state = 2}, [3199] = {.lex_state = 46, .external_lex_state = 2}, - [3200] = {.lex_state = 46, .external_lex_state = 2}, - [3201] = {.lex_state = 46, .external_lex_state = 2}, - [3202] = {.lex_state = 1636}, - [3203] = {.lex_state = 1648}, - [3204] = {.lex_state = 157, .external_lex_state = 2}, + [3200] = {.lex_state = 1652}, + [3201] = {.lex_state = 155, .external_lex_state = 2}, + [3202] = {.lex_state = 46, .external_lex_state = 2}, + [3203] = {.lex_state = 46, .external_lex_state = 2}, + [3204] = {.lex_state = 46, .external_lex_state = 2}, [3205] = {.lex_state = 46, .external_lex_state = 2}, - [3206] = {.lex_state = 157, .external_lex_state = 2}, - [3207] = {.lex_state = 1648}, - [3208] = {.lex_state = 157, .external_lex_state = 2}, - [3209] = {.lex_state = 1648}, - [3210] = {.lex_state = 1648}, - [3211] = {.lex_state = 157, .external_lex_state = 2}, - [3212] = {.lex_state = 157, .external_lex_state = 2}, - [3213] = {.lex_state = 157, .external_lex_state = 2}, - [3214] = {.lex_state = 157, .external_lex_state = 2}, - [3215] = {.lex_state = 1646}, - [3216] = {.lex_state = 157, .external_lex_state = 2}, - [3217] = {.lex_state = 157, .external_lex_state = 2}, - [3218] = {.lex_state = 1648}, - [3219] = {.lex_state = 1648}, - [3220] = {.lex_state = 157, .external_lex_state = 2}, + [3206] = {.lex_state = 46, .external_lex_state = 2}, + [3207] = {.lex_state = 46, .external_lex_state = 2}, + [3208] = {.lex_state = 46, .external_lex_state = 2}, + [3209] = {.lex_state = 46, .external_lex_state = 2}, + [3210] = {.lex_state = 46, .external_lex_state = 2}, + [3211] = {.lex_state = 46, .external_lex_state = 2}, + [3212] = {.lex_state = 46, .external_lex_state = 2}, + [3213] = {.lex_state = 46, .external_lex_state = 2}, + [3214] = {.lex_state = 46, .external_lex_state = 2}, + [3215] = {.lex_state = 1652}, + [3216] = {.lex_state = 46, .external_lex_state = 2}, + [3217] = {.lex_state = 1652}, + [3218] = {.lex_state = 46, .external_lex_state = 2}, + [3219] = {.lex_state = 46, .external_lex_state = 2}, + [3220] = {.lex_state = 46, .external_lex_state = 2}, [3221] = {.lex_state = 157, .external_lex_state = 2}, [3222] = {.lex_state = 157, .external_lex_state = 2}, [3223] = {.lex_state = 157, .external_lex_state = 2}, - [3224] = {.lex_state = 157, .external_lex_state = 2}, - [3225] = {.lex_state = 157, .external_lex_state = 2}, - [3226] = {.lex_state = 157, .external_lex_state = 2}, - [3227] = {.lex_state = 157, .external_lex_state = 2}, - [3228] = {.lex_state = 157, .external_lex_state = 2}, + [3224] = {.lex_state = 1656}, + [3225] = {.lex_state = 1654}, + [3226] = {.lex_state = 1658}, + [3227] = {.lex_state = 1658}, + [3228] = {.lex_state = 46, .external_lex_state = 2}, [3229] = {.lex_state = 157, .external_lex_state = 2}, - [3230] = {.lex_state = 157, .external_lex_state = 2}, + [3230] = {.lex_state = 1668}, [3231] = {.lex_state = 157, .external_lex_state = 2}, [3232] = {.lex_state = 157, .external_lex_state = 2}, - [3233] = {.lex_state = 1646}, + [3233] = {.lex_state = 157, .external_lex_state = 2}, [3234] = {.lex_state = 157, .external_lex_state = 2}, - [3235] = {.lex_state = 1736}, - [3236] = {.lex_state = 1652}, - [3237] = {.lex_state = 1736}, - [3238] = {.lex_state = 1736}, - [3239] = {.lex_state = 1648}, + [3235] = {.lex_state = 157, .external_lex_state = 2}, + [3236] = {.lex_state = 157, .external_lex_state = 2}, + [3237] = {.lex_state = 157, .external_lex_state = 2}, + [3238] = {.lex_state = 157, .external_lex_state = 2}, + [3239] = {.lex_state = 157, .external_lex_state = 2}, [3240] = {.lex_state = 157, .external_lex_state = 2}, - [3241] = {.lex_state = 1650}, - [3242] = {.lex_state = 1664}, - [3243] = {.lex_state = 1736}, - [3244] = {.lex_state = 1648}, - [3245] = {.lex_state = 1736}, - [3246] = {.lex_state = 1736}, - [3247] = {.lex_state = 1736}, + [3241] = {.lex_state = 157, .external_lex_state = 2}, + [3242] = {.lex_state = 157, .external_lex_state = 2}, + [3243] = {.lex_state = 157, .external_lex_state = 2}, + [3244] = {.lex_state = 157, .external_lex_state = 2}, + [3245] = {.lex_state = 157, .external_lex_state = 2}, + [3246] = {.lex_state = 157, .external_lex_state = 2}, + [3247] = {.lex_state = 157, .external_lex_state = 2}, [3248] = {.lex_state = 157, .external_lex_state = 2}, - [3249] = {.lex_state = 1648}, - [3250] = {.lex_state = 1664}, - [3251] = {.lex_state = 1736}, - [3252] = {.lex_state = 1736}, - [3253] = {.lex_state = 1648}, - [3254] = {.lex_state = 1648}, - [3255] = {.lex_state = 1736}, - [3256] = {.lex_state = 1648}, - [3257] = {.lex_state = 1736}, - [3258] = {.lex_state = 1736}, - [3259] = {.lex_state = 1736}, - [3260] = {.lex_state = 1736}, - [3261] = {.lex_state = 155, .external_lex_state = 2}, - [3262] = {.lex_state = 1736}, - [3263] = {.lex_state = 1736}, - [3264] = {.lex_state = 156, .external_lex_state = 2}, - [3265] = {.lex_state = 156, .external_lex_state = 2}, - [3266] = {.lex_state = 1664}, - [3267] = {.lex_state = 1652}, - [3268] = {.lex_state = 156, .external_lex_state = 2}, - [3269] = {.lex_state = 156, .external_lex_state = 2}, - [3270] = {.lex_state = 160, .external_lex_state = 2}, - [3271] = {.lex_state = 153, .external_lex_state = 2}, - [3272] = {.lex_state = 1654}, - [3273] = {.lex_state = 1650}, - [3274] = {.lex_state = 1654}, - [3275] = {.lex_state = 156, .external_lex_state = 2}, - [3276] = {.lex_state = 156, .external_lex_state = 2}, - [3277] = {.lex_state = 1658}, - [3278] = {.lex_state = 154, .external_lex_state = 2}, - [3279] = {.lex_state = 1656}, - [3280] = {.lex_state = 1656}, - [3281] = {.lex_state = 250, .external_lex_state = 2}, - [3282] = {.lex_state = 152, .external_lex_state = 2}, - [3283] = {.lex_state = 1736}, - [3284] = {.lex_state = 1656}, - [3285] = {.lex_state = 1658}, - [3286] = {.lex_state = 1654}, - [3287] = {.lex_state = 165, .external_lex_state = 2}, - [3288] = {.lex_state = 1654}, - [3289] = {.lex_state = 157, .external_lex_state = 2}, - [3290] = {.lex_state = 157, .external_lex_state = 2}, - [3291] = {.lex_state = 1656}, - [3292] = {.lex_state = 1664}, - [3293] = {.lex_state = 1664}, - [3294] = {.lex_state = 1656}, - [3295] = {.lex_state = 250, .external_lex_state = 2}, - [3296] = {.lex_state = 1656}, - [3297] = {.lex_state = 250, .external_lex_state = 2}, - [3298] = {.lex_state = 1656}, - [3299] = {.lex_state = 250, .external_lex_state = 2}, - [3300] = {.lex_state = 1658}, - [3301] = {.lex_state = 1656}, - [3302] = {.lex_state = 1656}, - [3303] = {.lex_state = 152, .external_lex_state = 2}, - [3304] = {.lex_state = 1658}, - [3305] = {.lex_state = 250, .external_lex_state = 2}, - [3306] = {.lex_state = 1658}, - [3307] = {.lex_state = 157, .external_lex_state = 2}, - [3308] = {.lex_state = 155, .external_lex_state = 2}, - [3309] = {.lex_state = 155, .external_lex_state = 2}, - [3310] = {.lex_state = 1656}, - [3311] = {.lex_state = 155, .external_lex_state = 2}, - [3312] = {.lex_state = 155, .external_lex_state = 2}, - [3313] = {.lex_state = 155, .external_lex_state = 2}, - [3314] = {.lex_state = 155, .external_lex_state = 2}, - [3315] = {.lex_state = 1658}, - [3316] = {.lex_state = 155, .external_lex_state = 2}, - [3317] = {.lex_state = 155, .external_lex_state = 2}, - [3318] = {.lex_state = 155, .external_lex_state = 2}, - [3319] = {.lex_state = 155, .external_lex_state = 2}, - [3320] = {.lex_state = 155, .external_lex_state = 2}, - [3321] = {.lex_state = 155, .external_lex_state = 2}, - [3322] = {.lex_state = 155, .external_lex_state = 2}, - [3323] = {.lex_state = 155, .external_lex_state = 2}, - [3324] = {.lex_state = 155, .external_lex_state = 2}, - [3325] = {.lex_state = 155, .external_lex_state = 2}, - [3326] = {.lex_state = 155, .external_lex_state = 2}, - [3327] = {.lex_state = 155, .external_lex_state = 2}, - [3328] = {.lex_state = 155, .external_lex_state = 2}, - [3329] = {.lex_state = 155, .external_lex_state = 2}, - [3330] = {.lex_state = 1656}, - [3331] = {.lex_state = 155, .external_lex_state = 2}, - [3332] = {.lex_state = 155, .external_lex_state = 2}, - [3333] = {.lex_state = 155, .external_lex_state = 2}, - [3334] = {.lex_state = 155, .external_lex_state = 2}, - [3335] = {.lex_state = 155, .external_lex_state = 2}, - [3336] = {.lex_state = 155, .external_lex_state = 2}, - [3337] = {.lex_state = 155, .external_lex_state = 2}, - [3338] = {.lex_state = 155, .external_lex_state = 2}, - [3339] = {.lex_state = 155, .external_lex_state = 2}, - [3340] = {.lex_state = 1658}, - [3341] = {.lex_state = 155, .external_lex_state = 2}, - [3342] = {.lex_state = 1658}, - [3343] = {.lex_state = 155, .external_lex_state = 2}, - [3344] = {.lex_state = 1736}, - [3345] = {.lex_state = 155, .external_lex_state = 2}, - [3346] = {.lex_state = 1656}, - [3347] = {.lex_state = 155, .external_lex_state = 2}, - [3348] = {.lex_state = 1658}, - [3349] = {.lex_state = 155, .external_lex_state = 2}, - [3350] = {.lex_state = 155, .external_lex_state = 2}, - [3351] = {.lex_state = 1656}, - [3352] = {.lex_state = 1656}, - [3353] = {.lex_state = 155, .external_lex_state = 2}, - [3354] = {.lex_state = 155, .external_lex_state = 2}, - [3355] = {.lex_state = 155, .external_lex_state = 2}, - [3356] = {.lex_state = 155, .external_lex_state = 2}, - [3357] = {.lex_state = 1656}, - [3358] = {.lex_state = 155, .external_lex_state = 2}, - [3359] = {.lex_state = 155, .external_lex_state = 2}, - [3360] = {.lex_state = 1656}, - [3361] = {.lex_state = 1656}, - [3362] = {.lex_state = 155, .external_lex_state = 2}, - [3363] = {.lex_state = 155, .external_lex_state = 2}, - [3364] = {.lex_state = 155, .external_lex_state = 2}, - [3365] = {.lex_state = 1656}, - [3366] = {.lex_state = 155, .external_lex_state = 2}, - [3367] = {.lex_state = 1658}, - [3368] = {.lex_state = 155, .external_lex_state = 2}, - [3369] = {.lex_state = 155, .external_lex_state = 2}, - [3370] = {.lex_state = 155, .external_lex_state = 2}, - [3371] = {.lex_state = 155, .external_lex_state = 2}, - [3372] = {.lex_state = 155, .external_lex_state = 2}, - [3373] = {.lex_state = 155, .external_lex_state = 2}, - [3374] = {.lex_state = 1656}, - [3375] = {.lex_state = 155, .external_lex_state = 2}, - [3376] = {.lex_state = 155, .external_lex_state = 2}, - [3377] = {.lex_state = 155, .external_lex_state = 2}, - [3378] = {.lex_state = 155, .external_lex_state = 2}, - [3379] = {.lex_state = 1736}, - [3380] = {.lex_state = 1664}, - [3381] = {.lex_state = 1664}, - [3382] = {.lex_state = 1664}, - [3383] = {.lex_state = 1664}, - [3384] = {.lex_state = 1664}, - [3385] = {.lex_state = 1664}, - [3386] = {.lex_state = 1664}, - [3387] = {.lex_state = 1664}, - [3388] = {.lex_state = 1664}, - [3389] = {.lex_state = 1664}, - [3390] = {.lex_state = 1664}, - [3391] = {.lex_state = 1664}, - [3392] = {.lex_state = 1664}, - [3393] = {.lex_state = 1664}, - [3394] = {.lex_state = 1664}, - [3395] = {.lex_state = 1736}, - [3396] = {.lex_state = 1664}, - [3397] = {.lex_state = 1736}, - [3398] = {.lex_state = 1664}, - [3399] = {.lex_state = 1664}, - [3400] = {.lex_state = 1664}, - [3401] = {.lex_state = 1656}, - [3402] = {.lex_state = 1664}, - [3403] = {.lex_state = 1664}, - [3404] = {.lex_state = 1664}, - [3405] = {.lex_state = 6}, - [3406] = {.lex_state = 1664}, - [3407] = {.lex_state = 1664}, - [3408] = {.lex_state = 1664}, - [3409] = {.lex_state = 1664}, - [3410] = {.lex_state = 1664}, - [3411] = {.lex_state = 1664}, - [3412] = {.lex_state = 1664}, - [3413] = {.lex_state = 1664}, - [3414] = {.lex_state = 1664}, - [3415] = {.lex_state = 1664}, - [3416] = {.lex_state = 1664}, - [3417] = {.lex_state = 1664}, - [3418] = {.lex_state = 1664}, - [3419] = {.lex_state = 1664}, - [3420] = {.lex_state = 1664}, - [3421] = {.lex_state = 1664}, - [3422] = {.lex_state = 1736}, - [3423] = {.lex_state = 1664}, - [3424] = {.lex_state = 1664}, - [3425] = {.lex_state = 1664}, - [3426] = {.lex_state = 1664}, - [3427] = {.lex_state = 1664}, - [3428] = {.lex_state = 1664}, - [3429] = {.lex_state = 1664}, - [3430] = {.lex_state = 1664}, - [3431] = {.lex_state = 1664}, - [3432] = {.lex_state = 1664}, - [3433] = {.lex_state = 1664}, - [3434] = {.lex_state = 1664}, - [3435] = {.lex_state = 1664}, - [3436] = {.lex_state = 1664}, + [3249] = {.lex_state = 157, .external_lex_state = 2}, + [3250] = {.lex_state = 1660}, + [3251] = {.lex_state = 1662}, + [3252] = {.lex_state = 1662}, + [3253] = {.lex_state = 155, .external_lex_state = 2}, + [3254] = {.lex_state = 1740}, + [3255] = {.lex_state = 1740}, + [3256] = {.lex_state = 1740}, + [3257] = {.lex_state = 1740}, + [3258] = {.lex_state = 1740}, + [3259] = {.lex_state = 1740}, + [3260] = {.lex_state = 1740}, + [3261] = {.lex_state = 1740}, + [3262] = {.lex_state = 1660}, + [3263] = {.lex_state = 1660}, + [3264] = {.lex_state = 1740}, + [3265] = {.lex_state = 1740}, + [3266] = {.lex_state = 1660}, + [3267] = {.lex_state = 1660}, + [3268] = {.lex_state = 157, .external_lex_state = 2}, + [3269] = {.lex_state = 1658}, + [3270] = {.lex_state = 1662}, + [3271] = {.lex_state = 1660}, + [3272] = {.lex_state = 1662}, + [3273] = {.lex_state = 1660}, + [3274] = {.lex_state = 157, .external_lex_state = 2}, + [3275] = {.lex_state = 1660}, + [3276] = {.lex_state = 1660}, + [3277] = {.lex_state = 1740}, + [3278] = {.lex_state = 1740}, + [3279] = {.lex_state = 1668}, + [3280] = {.lex_state = 1668}, + [3281] = {.lex_state = 1740}, + [3282] = {.lex_state = 1740}, + [3283] = {.lex_state = 1662}, + [3284] = {.lex_state = 1740}, + [3285] = {.lex_state = 1740}, + [3286] = {.lex_state = 1658}, + [3287] = {.lex_state = 1660}, + [3288] = {.lex_state = 1660}, + [3289] = {.lex_state = 156, .external_lex_state = 2}, + [3290] = {.lex_state = 1660}, + [3291] = {.lex_state = 156, .external_lex_state = 2}, + [3292] = {.lex_state = 156, .external_lex_state = 2}, + [3293] = {.lex_state = 1660}, + [3294] = {.lex_state = 1662}, + [3295] = {.lex_state = 1662}, + [3296] = {.lex_state = 1662}, + [3297] = {.lex_state = 1662}, + [3298] = {.lex_state = 1662}, + [3299] = {.lex_state = 1660}, + [3300] = {.lex_state = 1660}, + [3301] = {.lex_state = 1660}, + [3302] = {.lex_state = 156, .external_lex_state = 2}, + [3303] = {.lex_state = 1660}, + [3304] = {.lex_state = 1660}, + [3305] = {.lex_state = 160, .external_lex_state = 2}, + [3306] = {.lex_state = 1660}, + [3307] = {.lex_state = 153, .external_lex_state = 2}, + [3308] = {.lex_state = 156, .external_lex_state = 2}, + [3309] = {.lex_state = 156, .external_lex_state = 2}, + [3310] = {.lex_state = 1668}, + [3311] = {.lex_state = 152, .external_lex_state = 2}, + [3312] = {.lex_state = 165, .external_lex_state = 2}, + [3313] = {.lex_state = 250, .external_lex_state = 2}, + [3314] = {.lex_state = 250, .external_lex_state = 2}, + [3315] = {.lex_state = 250, .external_lex_state = 2}, + [3316] = {.lex_state = 1660}, + [3317] = {.lex_state = 250, .external_lex_state = 2}, + [3318] = {.lex_state = 152, .external_lex_state = 2}, + [3319] = {.lex_state = 1668}, + [3320] = {.lex_state = 250, .external_lex_state = 2}, + [3321] = {.lex_state = 1668}, + [3322] = {.lex_state = 1668}, + [3323] = {.lex_state = 1668}, + [3324] = {.lex_state = 1668}, + [3325] = {.lex_state = 1668}, + [3326] = {.lex_state = 1668}, + [3327] = {.lex_state = 1668}, + [3328] = {.lex_state = 1668}, + [3329] = {.lex_state = 1668}, + [3330] = {.lex_state = 1668}, + [3331] = {.lex_state = 1668}, + [3332] = {.lex_state = 1668}, + [3333] = {.lex_state = 1668}, + [3334] = {.lex_state = 1668}, + [3335] = {.lex_state = 1668}, + [3336] = {.lex_state = 1668}, + [3337] = {.lex_state = 1668}, + [3338] = {.lex_state = 1668}, + [3339] = {.lex_state = 1668}, + [3340] = {.lex_state = 1668}, + [3341] = {.lex_state = 1668}, + [3342] = {.lex_state = 1668}, + [3343] = {.lex_state = 1668}, + [3344] = {.lex_state = 1668}, + [3345] = {.lex_state = 1668}, + [3346] = {.lex_state = 1668}, + [3347] = {.lex_state = 1668}, + [3348] = {.lex_state = 1668}, + [3349] = {.lex_state = 1668}, + [3350] = {.lex_state = 1668}, + [3351] = {.lex_state = 1668}, + [3352] = {.lex_state = 1668}, + [3353] = {.lex_state = 1668}, + [3354] = {.lex_state = 1668}, + [3355] = {.lex_state = 1668}, + [3356] = {.lex_state = 1668}, + [3357] = {.lex_state = 1668}, + [3358] = {.lex_state = 1668}, + [3359] = {.lex_state = 1668}, + [3360] = {.lex_state = 1668}, + [3361] = {.lex_state = 1668}, + [3362] = {.lex_state = 1668}, + [3363] = {.lex_state = 1668}, + [3364] = {.lex_state = 1668}, + [3365] = {.lex_state = 1668}, + [3366] = {.lex_state = 1668}, + [3367] = {.lex_state = 1668}, + [3368] = {.lex_state = 1668}, + [3369] = {.lex_state = 1668}, + [3370] = {.lex_state = 1668}, + [3371] = {.lex_state = 1668}, + [3372] = {.lex_state = 1668}, + [3373] = {.lex_state = 1668}, + [3374] = {.lex_state = 154, .external_lex_state = 2}, + [3375] = {.lex_state = 1668}, + [3376] = {.lex_state = 1668}, + [3377] = {.lex_state = 1668}, + [3378] = {.lex_state = 1668}, + [3379] = {.lex_state = 1668}, + [3380] = {.lex_state = 1668}, + [3381] = {.lex_state = 1668}, + [3382] = {.lex_state = 1668}, + [3383] = {.lex_state = 1668}, + [3384] = {.lex_state = 1668}, + [3385] = {.lex_state = 1668}, + [3386] = {.lex_state = 1668}, + [3387] = {.lex_state = 1668}, + [3388] = {.lex_state = 1668}, + [3389] = {.lex_state = 1668}, + [3390] = {.lex_state = 1668}, + [3391] = {.lex_state = 1668}, + [3392] = {.lex_state = 1668}, + [3393] = {.lex_state = 1668}, + [3394] = {.lex_state = 1668}, + [3395] = {.lex_state = 1668}, + [3396] = {.lex_state = 1668}, + [3397] = {.lex_state = 1668}, + [3398] = {.lex_state = 1668}, + [3399] = {.lex_state = 1668}, + [3400] = {.lex_state = 1668}, + [3401] = {.lex_state = 1668}, + [3402] = {.lex_state = 1668}, + [3403] = {.lex_state = 1668}, + [3404] = {.lex_state = 1668}, + [3405] = {.lex_state = 1668}, + [3406] = {.lex_state = 1668}, + [3407] = {.lex_state = 1668}, + [3408] = {.lex_state = 1668}, + [3409] = {.lex_state = 1668}, + [3410] = {.lex_state = 1668}, + [3411] = {.lex_state = 1668}, + [3412] = {.lex_state = 1668}, + [3413] = {.lex_state = 1668}, + [3414] = {.lex_state = 1668}, + [3415] = {.lex_state = 1668}, + [3416] = {.lex_state = 1668}, + [3417] = {.lex_state = 1668}, + [3418] = {.lex_state = 1668}, + [3419] = {.lex_state = 1668}, + [3420] = {.lex_state = 1668}, + [3421] = {.lex_state = 1668}, + [3422] = {.lex_state = 1668}, + [3423] = {.lex_state = 1668}, + [3424] = {.lex_state = 1668}, + [3425] = {.lex_state = 1668}, + [3426] = {.lex_state = 1668}, + [3427] = {.lex_state = 1668}, + [3428] = {.lex_state = 157, .external_lex_state = 2}, + [3429] = {.lex_state = 1740}, + [3430] = {.lex_state = 6}, + [3431] = {.lex_state = 157, .external_lex_state = 2}, + [3432] = {.lex_state = 157, .external_lex_state = 2}, + [3433] = {.lex_state = 1668}, + [3434] = {.lex_state = 155, .external_lex_state = 2}, + [3435] = {.lex_state = 155, .external_lex_state = 2}, + [3436] = {.lex_state = 155, .external_lex_state = 2}, [3437] = {.lex_state = 155, .external_lex_state = 2}, - [3438] = {.lex_state = 1664}, - [3439] = {.lex_state = 1664}, - [3440] = {.lex_state = 1664}, - [3441] = {.lex_state = 1664}, - [3442] = {.lex_state = 1664}, - [3443] = {.lex_state = 1736}, - [3444] = {.lex_state = 1664}, - [3445] = {.lex_state = 1664}, - [3446] = {.lex_state = 1664}, - [3447] = {.lex_state = 1664}, - [3448] = {.lex_state = 1736}, - [3449] = {.lex_state = 1664}, - [3450] = {.lex_state = 1664}, - [3451] = {.lex_state = 1664}, - [3452] = {.lex_state = 1664}, - [3453] = {.lex_state = 1664}, - [3454] = {.lex_state = 1736}, - [3455] = {.lex_state = 1664}, - [3456] = {.lex_state = 1664}, - [3457] = {.lex_state = 1664}, - [3458] = {.lex_state = 1664}, - [3459] = {.lex_state = 1664}, - [3460] = {.lex_state = 1664}, - [3461] = {.lex_state = 1664}, - [3462] = {.lex_state = 1664}, - [3463] = {.lex_state = 1736}, - [3464] = {.lex_state = 1664}, - [3465] = {.lex_state = 1664}, - [3466] = {.lex_state = 1664}, - [3467] = {.lex_state = 1664}, - [3468] = {.lex_state = 1664}, - [3469] = {.lex_state = 1664}, - [3470] = {.lex_state = 1664}, - [3471] = {.lex_state = 1664}, - [3472] = {.lex_state = 1664}, - [3473] = {.lex_state = 1664}, - [3474] = {.lex_state = 1664}, - [3475] = {.lex_state = 1664}, - [3476] = {.lex_state = 1664}, - [3477] = {.lex_state = 1664}, - [3478] = {.lex_state = 1664}, - [3479] = {.lex_state = 1664}, - [3480] = {.lex_state = 1664}, - [3481] = {.lex_state = 1664}, - [3482] = {.lex_state = 1664}, - [3483] = {.lex_state = 1664}, - [3484] = {.lex_state = 1664}, - [3485] = {.lex_state = 1736}, - [3486] = {.lex_state = 1664}, - [3487] = {.lex_state = 1664}, - [3488] = {.lex_state = 1664}, - [3489] = {.lex_state = 1664}, - [3490] = {.lex_state = 1664}, - [3491] = {.lex_state = 1664}, - [3492] = {.lex_state = 1664}, - [3493] = {.lex_state = 1664}, - [3494] = {.lex_state = 1736}, - [3495] = {.lex_state = 1664}, - [3496] = {.lex_state = 1664}, - [3497] = {.lex_state = 1664}, - [3498] = {.lex_state = 1664}, - [3499] = {.lex_state = 1664}, - [3500] = {.lex_state = 1664}, - [3501] = {.lex_state = 1736}, - [3502] = {.lex_state = 1736}, - [3503] = {.lex_state = 1736}, - [3504] = {.lex_state = 1664}, - [3505] = {.lex_state = 1664}, - [3506] = {.lex_state = 1736}, - [3507] = {.lex_state = 1736}, - [3508] = {.lex_state = 7}, - [3509] = {.lex_state = 7}, - [3510] = {.lex_state = 1664}, - [3511] = {.lex_state = 1736}, - [3512] = {.lex_state = 78}, - [3513] = {.lex_state = 1736}, - [3514] = {.lex_state = 1664}, - [3515] = {.lex_state = 1664}, - [3516] = {.lex_state = 1664}, - [3517] = {.lex_state = 1664}, - [3518] = {.lex_state = 1664}, - [3519] = {.lex_state = 1664}, - [3520] = {.lex_state = 1664}, - [3521] = {.lex_state = 1664}, - [3522] = {.lex_state = 1736}, - [3523] = {.lex_state = 1664}, - [3524] = {.lex_state = 1664}, - [3525] = {.lex_state = 1664}, - [3526] = {.lex_state = 1736}, - [3527] = {.lex_state = 1664}, - [3528] = {.lex_state = 1736}, - [3529] = {.lex_state = 1736}, - [3530] = {.lex_state = 8}, + [3438] = {.lex_state = 155, .external_lex_state = 2}, + [3439] = {.lex_state = 155, .external_lex_state = 2}, + [3440] = {.lex_state = 155, .external_lex_state = 2}, + [3441] = {.lex_state = 155, .external_lex_state = 2}, + [3442] = {.lex_state = 155, .external_lex_state = 2}, + [3443] = {.lex_state = 155, .external_lex_state = 2}, + [3444] = {.lex_state = 155, .external_lex_state = 2}, + [3445] = {.lex_state = 155, .external_lex_state = 2}, + [3446] = {.lex_state = 155, .external_lex_state = 2}, + [3447] = {.lex_state = 155, .external_lex_state = 2}, + [3448] = {.lex_state = 155, .external_lex_state = 2}, + [3449] = {.lex_state = 155, .external_lex_state = 2}, + [3450] = {.lex_state = 155, .external_lex_state = 2}, + [3451] = {.lex_state = 1668}, + [3452] = {.lex_state = 78}, + [3453] = {.lex_state = 155, .external_lex_state = 2}, + [3454] = {.lex_state = 7}, + [3455] = {.lex_state = 1668}, + [3456] = {.lex_state = 155, .external_lex_state = 2}, + [3457] = {.lex_state = 155, .external_lex_state = 2}, + [3458] = {.lex_state = 1668}, + [3459] = {.lex_state = 155, .external_lex_state = 2}, + [3460] = {.lex_state = 1740}, + [3461] = {.lex_state = 155, .external_lex_state = 2}, + [3462] = {.lex_state = 155, .external_lex_state = 2}, + [3463] = {.lex_state = 155, .external_lex_state = 2}, + [3464] = {.lex_state = 155, .external_lex_state = 2}, + [3465] = {.lex_state = 155, .external_lex_state = 2}, + [3466] = {.lex_state = 155, .external_lex_state = 2}, + [3467] = {.lex_state = 155, .external_lex_state = 2}, + [3468] = {.lex_state = 155, .external_lex_state = 2}, + [3469] = {.lex_state = 155, .external_lex_state = 2}, + [3470] = {.lex_state = 155, .external_lex_state = 2}, + [3471] = {.lex_state = 155, .external_lex_state = 2}, + [3472] = {.lex_state = 155, .external_lex_state = 2}, + [3473] = {.lex_state = 155, .external_lex_state = 2}, + [3474] = {.lex_state = 155, .external_lex_state = 2}, + [3475] = {.lex_state = 155, .external_lex_state = 2}, + [3476] = {.lex_state = 155, .external_lex_state = 2}, + [3477] = {.lex_state = 155, .external_lex_state = 2}, + [3478] = {.lex_state = 155, .external_lex_state = 2}, + [3479] = {.lex_state = 1668}, + [3480] = {.lex_state = 1668}, + [3481] = {.lex_state = 1668}, + [3482] = {.lex_state = 1668}, + [3483] = {.lex_state = 1668}, + [3484] = {.lex_state = 1668}, + [3485] = {.lex_state = 1668}, + [3486] = {.lex_state = 7}, + [3487] = {.lex_state = 1668}, + [3488] = {.lex_state = 1668}, + [3489] = {.lex_state = 1668}, + [3490] = {.lex_state = 1668}, + [3491] = {.lex_state = 1668}, + [3492] = {.lex_state = 155, .external_lex_state = 2}, + [3493] = {.lex_state = 155, .external_lex_state = 2}, + [3494] = {.lex_state = 155, .external_lex_state = 2}, + [3495] = {.lex_state = 155, .external_lex_state = 2}, + [3496] = {.lex_state = 155, .external_lex_state = 2}, + [3497] = {.lex_state = 155, .external_lex_state = 2}, + [3498] = {.lex_state = 155, .external_lex_state = 2}, + [3499] = {.lex_state = 155, .external_lex_state = 2}, + [3500] = {.lex_state = 155, .external_lex_state = 2}, + [3501] = {.lex_state = 155, .external_lex_state = 2}, + [3502] = {.lex_state = 155, .external_lex_state = 2}, + [3503] = {.lex_state = 155, .external_lex_state = 2}, + [3504] = {.lex_state = 155, .external_lex_state = 2}, + [3505] = {.lex_state = 155, .external_lex_state = 2}, + [3506] = {.lex_state = 155, .external_lex_state = 2}, + [3507] = {.lex_state = 155, .external_lex_state = 2}, + [3508] = {.lex_state = 1740}, + [3509] = {.lex_state = 78}, + [3510] = {.lex_state = 1740}, + [3511] = {.lex_state = 78}, + [3512] = {.lex_state = 1740}, + [3513] = {.lex_state = 1740}, + [3514] = {.lex_state = 8}, + [3515] = {.lex_state = 155, .external_lex_state = 2}, + [3516] = {.lex_state = 79}, + [3517] = {.lex_state = 1740}, + [3518] = {.lex_state = 1740}, + [3519] = {.lex_state = 10}, + [3520] = {.lex_state = 1740}, + [3521] = {.lex_state = 1740}, + [3522] = {.lex_state = 79}, + [3523] = {.lex_state = 1740}, + [3524] = {.lex_state = 1740}, + [3525] = {.lex_state = 12}, + [3526] = {.lex_state = 1740}, + [3527] = {.lex_state = 78}, + [3528] = {.lex_state = 78}, + [3529] = {.lex_state = 78}, + [3530] = {.lex_state = 11}, [3531] = {.lex_state = 78}, - [3532] = {.lex_state = 10}, - [3533] = {.lex_state = 159}, - [3534] = {.lex_state = 159}, - [3535] = {.lex_state = 79}, - [3536] = {.lex_state = 78}, - [3537] = {.lex_state = 79}, - [3538] = {.lex_state = 78}, - [3539] = {.lex_state = 1736}, - [3540] = {.lex_state = 78}, + [3532] = {.lex_state = 11}, + [3533] = {.lex_state = 1740}, + [3534] = {.lex_state = 1740}, + [3535] = {.lex_state = 78}, + [3536] = {.lex_state = 1740}, + [3537] = {.lex_state = 1740}, + [3538] = {.lex_state = 1740}, + [3539] = {.lex_state = 1740}, + [3540] = {.lex_state = 1740}, [3541] = {.lex_state = 80}, - [3542] = {.lex_state = 1736}, - [3543] = {.lex_state = 1736}, - [3544] = {.lex_state = 1736}, - [3545] = {.lex_state = 1736}, - [3546] = {.lex_state = 1736}, - [3547] = {.lex_state = 1736}, - [3548] = {.lex_state = 1736}, - [3549] = {.lex_state = 1736}, - [3550] = {.lex_state = 1736}, - [3551] = {.lex_state = 1736}, - [3552] = {.lex_state = 11}, - [3553] = {.lex_state = 1736}, - [3554] = {.lex_state = 78}, - [3555] = {.lex_state = 78}, - [3556] = {.lex_state = 1736}, - [3557] = {.lex_state = 1736}, - [3558] = {.lex_state = 1736}, - [3559] = {.lex_state = 1736}, - [3560] = {.lex_state = 1736}, - [3561] = {.lex_state = 1736}, - [3562] = {.lex_state = 1736}, - [3563] = {.lex_state = 1736}, - [3564] = {.lex_state = 78}, - [3565] = {.lex_state = 78}, - [3566] = {.lex_state = 1736}, - [3567] = {.lex_state = 1736}, - [3568] = {.lex_state = 155}, - [3569] = {.lex_state = 82}, - [3570] = {.lex_state = 322}, - [3571] = {.lex_state = 1736}, - [3572] = {.lex_state = 1736}, - [3573] = {.lex_state = 1736}, - [3574] = {.lex_state = 1736}, - [3575] = {.lex_state = 1736}, - [3576] = {.lex_state = 12}, - [3577] = {.lex_state = 155}, - [3578] = {.lex_state = 11}, - [3579] = {.lex_state = 1736}, - [3580] = {.lex_state = 12}, - [3581] = {.lex_state = 322}, - [3582] = {.lex_state = 322}, - [3583] = {.lex_state = 13}, - [3584] = {.lex_state = 9}, - [3585] = {.lex_state = 322}, - [3586] = {.lex_state = 12}, - [3587] = {.lex_state = 322}, - [3588] = {.lex_state = 12}, - [3589] = {.lex_state = 84}, - [3590] = {.lex_state = 322}, - [3591] = {.lex_state = 83}, - [3592] = {.lex_state = 83}, - [3593] = {.lex_state = 12}, - [3594] = {.lex_state = 80}, - [3595] = {.lex_state = 85}, - [3596] = {.lex_state = 14}, - [3597] = {.lex_state = 84}, - [3598] = {.lex_state = 84}, - [3599] = {.lex_state = 81}, - [3600] = {.lex_state = 14}, + [3542] = {.lex_state = 1740}, + [3543] = {.lex_state = 1740}, + [3544] = {.lex_state = 82}, + [3545] = {.lex_state = 78}, + [3546] = {.lex_state = 1740}, + [3547] = {.lex_state = 12}, + [3548] = {.lex_state = 12}, + [3549] = {.lex_state = 84}, + [3550] = {.lex_state = 9}, + [3551] = {.lex_state = 12}, + [3552] = {.lex_state = 83}, + [3553] = {.lex_state = 13}, + [3554] = {.lex_state = 83}, + [3555] = {.lex_state = 12}, + [3556] = {.lex_state = 1740}, + [3557] = {.lex_state = 81}, + [3558] = {.lex_state = 85}, + [3559] = {.lex_state = 1740}, + [3560] = {.lex_state = 322}, + [3561] = {.lex_state = 1740}, + [3562] = {.lex_state = 1740}, + [3563] = {.lex_state = 1740}, + [3564] = {.lex_state = 84}, + [3565] = {.lex_state = 84}, + [3566] = {.lex_state = 84}, + [3567] = {.lex_state = 84}, + [3568] = {.lex_state = 80}, + [3569] = {.lex_state = 1740}, + [3570] = {.lex_state = 1740}, + [3571] = {.lex_state = 1740}, + [3572] = {.lex_state = 1740}, + [3573] = {.lex_state = 1740}, + [3574] = {.lex_state = 1740}, + [3575] = {.lex_state = 14}, + [3576] = {.lex_state = 1740}, + [3577] = {.lex_state = 1740}, + [3578] = {.lex_state = 1740}, + [3579] = {.lex_state = 1740}, + [3580] = {.lex_state = 1740}, + [3581] = {.lex_state = 1740}, + [3582] = {.lex_state = 1740}, + [3583] = {.lex_state = 1740}, + [3584] = {.lex_state = 1740}, + [3585] = {.lex_state = 1740}, + [3586] = {.lex_state = 1740}, + [3587] = {.lex_state = 1740}, + [3588] = {.lex_state = 1740}, + [3589] = {.lex_state = 1740}, + [3590] = {.lex_state = 1740}, + [3591] = {.lex_state = 1740}, + [3592] = {.lex_state = 14}, + [3593] = {.lex_state = 1740}, + [3594] = {.lex_state = 322}, + [3595] = {.lex_state = 15}, + [3596] = {.lex_state = 322}, + [3597] = {.lex_state = 15}, + [3598] = {.lex_state = 15}, + [3599] = {.lex_state = 15}, + [3600] = {.lex_state = 322}, [3601] = {.lex_state = 322}, - [3602] = {.lex_state = 84}, - [3603] = {.lex_state = 84}, - [3604] = {.lex_state = 1736}, - [3605] = {.lex_state = 1736}, - [3606] = {.lex_state = 86}, - [3607] = {.lex_state = 15}, - [3608] = {.lex_state = 15}, - [3609] = {.lex_state = 15}, - [3610] = {.lex_state = 15}, - [3611] = {.lex_state = 15}, - [3612] = {.lex_state = 86}, - [3613] = {.lex_state = 15}, - [3614] = {.lex_state = 1664}, + [3602] = {.lex_state = 86}, + [3603] = {.lex_state = 322}, + [3604] = {.lex_state = 86}, + [3605] = {.lex_state = 15}, + [3606] = {.lex_state = 15}, + [3607] = {.lex_state = 17}, + [3608] = {.lex_state = 16}, + [3609] = {.lex_state = 3160}, + [3610] = {.lex_state = 1668}, + [3611] = {.lex_state = 87}, + [3612] = {.lex_state = 87}, + [3613] = {.lex_state = 3158}, + [3614] = {.lex_state = 1740}, [3615] = {.lex_state = 87}, - [3616] = {.lex_state = 3150}, + [3616] = {.lex_state = 87}, [3617] = {.lex_state = 87}, - [3618] = {.lex_state = 16}, - [3619] = {.lex_state = 87}, - [3620] = {.lex_state = 17}, - [3621] = {.lex_state = 87}, - [3622] = {.lex_state = 87}, - [3623] = {.lex_state = 3148}, - [3624] = {.lex_state = 87}, - [3625] = {.lex_state = 18}, - [3626] = {.lex_state = 88}, - [3627] = {.lex_state = 3153}, - [3628] = {.lex_state = 3149}, - [3629] = {.lex_state = 3151}, - [3630] = {.lex_state = 89}, - [3631] = {.lex_state = 18}, - [3632] = {.lex_state = 3151}, - [3633] = {.lex_state = 1664}, - [3634] = {.lex_state = 19}, - [3635] = {.lex_state = 19}, - [3636] = {.lex_state = 3152}, - [3637] = {.lex_state = 19}, - [3638] = {.lex_state = 19}, + [3618] = {.lex_state = 87}, + [3619] = {.lex_state = 322}, + [3620] = {.lex_state = 89}, + [3621] = {.lex_state = 18}, + [3622] = {.lex_state = 3161}, + [3623] = {.lex_state = 18}, + [3624] = {.lex_state = 1740}, + [3625] = {.lex_state = 88}, + [3626] = {.lex_state = 3161}, + [3627] = {.lex_state = 3163}, + [3628] = {.lex_state = 3159}, + [3629] = {.lex_state = 1668}, + [3630] = {.lex_state = 20}, + [3631] = {.lex_state = 3162}, + [3632] = {.lex_state = 19}, + [3633] = {.lex_state = 3162}, + [3634] = {.lex_state = 3164}, + [3635] = {.lex_state = 20}, + [3636] = {.lex_state = 3162}, + [3637] = {.lex_state = 3164}, + [3638] = {.lex_state = 3162}, [3639] = {.lex_state = 19}, - [3640] = {.lex_state = 19}, - [3641] = {.lex_state = 3152}, - [3642] = {.lex_state = 1731}, - [3643] = {.lex_state = 61}, - [3644] = {.lex_state = 1731}, - [3645] = {.lex_state = 20}, - [3646] = {.lex_state = 20}, - [3647] = {.lex_state = 3152}, - [3648] = {.lex_state = 20}, - [3649] = {.lex_state = 19}, - [3650] = {.lex_state = 3154}, - [3651] = {.lex_state = 1731}, - [3652] = {.lex_state = 3152}, + [3640] = {.lex_state = 3162}, + [3641] = {.lex_state = 19}, + [3642] = {.lex_state = 20}, + [3643] = {.lex_state = 20}, + [3644] = {.lex_state = 90}, + [3645] = {.lex_state = 19}, + [3646] = {.lex_state = 19}, + [3647] = {.lex_state = 1668}, + [3648] = {.lex_state = 19}, + [3649] = {.lex_state = 1668}, + [3650] = {.lex_state = 1668}, + [3651] = {.lex_state = 1668}, + [3652] = {.lex_state = 19}, [3653] = {.lex_state = 19}, - [3654] = {.lex_state = 3152}, + [3654] = {.lex_state = 19}, [3655] = {.lex_state = 90}, - [3656] = {.lex_state = 1664}, - [3657] = {.lex_state = 1664}, - [3658] = {.lex_state = 1664}, - [3659] = {.lex_state = 1664}, - [3660] = {.lex_state = 90}, - [3661] = {.lex_state = 61}, - [3662] = {.lex_state = 1664}, - [3663] = {.lex_state = 1664}, - [3664] = {.lex_state = 1664}, - [3665] = {.lex_state = 1664}, - [3666] = {.lex_state = 19}, - [3667] = {.lex_state = 3154}, - [3668] = {.lex_state = 1731}, - [3669] = {.lex_state = 20}, - [3670] = {.lex_state = 20}, - [3671] = {.lex_state = 1664}, - [3672] = {.lex_state = 1664}, - [3673] = {.lex_state = 1664}, - [3674] = {.lex_state = 1664}, - [3675] = {.lex_state = 1664}, - [3676] = {.lex_state = 1664}, - [3677] = {.lex_state = 1664}, - [3678] = {.lex_state = 1664}, - [3679] = {.lex_state = 1664}, - [3680] = {.lex_state = 1664}, - [3681] = {.lex_state = 1664}, - [3682] = {.lex_state = 1664}, - [3683] = {.lex_state = 1664}, - [3684] = {.lex_state = 1664}, - [3685] = {.lex_state = 1664}, - [3686] = {.lex_state = 1664}, - [3687] = {.lex_state = 1664}, - [3688] = {.lex_state = 1664}, - [3689] = {.lex_state = 1664}, - [3690] = {.lex_state = 92}, - [3691] = {.lex_state = 92}, - [3692] = {.lex_state = 92}, - [3693] = {.lex_state = 91}, - [3694] = {.lex_state = 1664}, - [3695] = {.lex_state = 1664}, - [3696] = {.lex_state = 1664}, - [3697] = {.lex_state = 1664}, - [3698] = {.lex_state = 1664}, - [3699] = {.lex_state = 1664}, - [3700] = {.lex_state = 1664}, - [3701] = {.lex_state = 1664}, - [3702] = {.lex_state = 1664}, - [3703] = {.lex_state = 1664}, - [3704] = {.lex_state = 1664}, - [3705] = {.lex_state = 1664}, - [3706] = {.lex_state = 1664}, - [3707] = {.lex_state = 1664}, - [3708] = {.lex_state = 1664}, - [3709] = {.lex_state = 1664}, - [3710] = {.lex_state = 1664}, - [3711] = {.lex_state = 1664}, - [3712] = {.lex_state = 1664}, - [3713] = {.lex_state = 1664}, - [3714] = {.lex_state = 1664}, - [3715] = {.lex_state = 1664}, - [3716] = {.lex_state = 1664}, - [3717] = {.lex_state = 1664}, - [3718] = {.lex_state = 1664}, - [3719] = {.lex_state = 1664}, - [3720] = {.lex_state = 1664}, - [3721] = {.lex_state = 1664}, - [3722] = {.lex_state = 1664}, - [3723] = {.lex_state = 1664}, - [3724] = {.lex_state = 1664}, - [3725] = {.lex_state = 1664}, - [3726] = {.lex_state = 1664}, - [3727] = {.lex_state = 1664}, - [3728] = {.lex_state = 1664}, - [3729] = {.lex_state = 1664}, - [3730] = {.lex_state = 3155}, - [3731] = {.lex_state = 1664}, - [3732] = {.lex_state = 1664}, - [3733] = {.lex_state = 1664}, - [3734] = {.lex_state = 1664}, - [3735] = {.lex_state = 1664}, - [3736] = {.lex_state = 1664}, - [3737] = {.lex_state = 1664}, - [3738] = {.lex_state = 1664}, - [3739] = {.lex_state = 1664}, - [3740] = {.lex_state = 1664}, - [3741] = {.lex_state = 1664}, - [3742] = {.lex_state = 1664}, - [3743] = {.lex_state = 1664}, - [3744] = {.lex_state = 19}, - [3745] = {.lex_state = 91}, - [3746] = {.lex_state = 91}, - [3747] = {.lex_state = 1664}, - [3748] = {.lex_state = 91}, - [3749] = {.lex_state = 91}, - [3750] = {.lex_state = 92}, - [3751] = {.lex_state = 3155}, - [3752] = {.lex_state = 1664}, - [3753] = {.lex_state = 3155}, - [3754] = {.lex_state = 1664}, - [3755] = {.lex_state = 1664}, - [3756] = {.lex_state = 1664}, - [3757] = {.lex_state = 3155}, - [3758] = {.lex_state = 1664}, + [3656] = {.lex_state = 20}, + [3657] = {.lex_state = 1668}, + [3658] = {.lex_state = 1668}, + [3659] = {.lex_state = 1668}, + [3660] = {.lex_state = 1668}, + [3661] = {.lex_state = 3165}, + [3662] = {.lex_state = 1668}, + [3663] = {.lex_state = 1668}, + [3664] = {.lex_state = 1668}, + [3665] = {.lex_state = 1668}, + [3666] = {.lex_state = 1668}, + [3667] = {.lex_state = 1668}, + [3668] = {.lex_state = 1668}, + [3669] = {.lex_state = 1668}, + [3670] = {.lex_state = 1668}, + [3671] = {.lex_state = 1668}, + [3672] = {.lex_state = 1668}, + [3673] = {.lex_state = 1668}, + [3674] = {.lex_state = 1668}, + [3675] = {.lex_state = 1668}, + [3676] = {.lex_state = 1668}, + [3677] = {.lex_state = 1668}, + [3678] = {.lex_state = 1668}, + [3679] = {.lex_state = 1668}, + [3680] = {.lex_state = 1668}, + [3681] = {.lex_state = 1668}, + [3682] = {.lex_state = 1668}, + [3683] = {.lex_state = 1668}, + [3684] = {.lex_state = 1668}, + [3685] = {.lex_state = 1668}, + [3686] = {.lex_state = 1668}, + [3687] = {.lex_state = 1668}, + [3688] = {.lex_state = 1668}, + [3689] = {.lex_state = 1668}, + [3690] = {.lex_state = 1668}, + [3691] = {.lex_state = 1668}, + [3692] = {.lex_state = 1668}, + [3693] = {.lex_state = 1668}, + [3694] = {.lex_state = 1668}, + [3695] = {.lex_state = 1668}, + [3696] = {.lex_state = 1668}, + [3697] = {.lex_state = 1668}, + [3698] = {.lex_state = 1668}, + [3699] = {.lex_state = 1668}, + [3700] = {.lex_state = 1668}, + [3701] = {.lex_state = 1668}, + [3702] = {.lex_state = 1668}, + [3703] = {.lex_state = 1668}, + [3704] = {.lex_state = 1668}, + [3705] = {.lex_state = 1668}, + [3706] = {.lex_state = 1668}, + [3707] = {.lex_state = 1668}, + [3708] = {.lex_state = 3165}, + [3709] = {.lex_state = 1668}, + [3710] = {.lex_state = 1668}, + [3711] = {.lex_state = 1668}, + [3712] = {.lex_state = 1668}, + [3713] = {.lex_state = 1668}, + [3714] = {.lex_state = 1668}, + [3715] = {.lex_state = 1668}, + [3716] = {.lex_state = 3165}, + [3717] = {.lex_state = 1668}, + [3718] = {.lex_state = 1668}, + [3719] = {.lex_state = 1668}, + [3720] = {.lex_state = 3165}, + [3721] = {.lex_state = 3165}, + [3722] = {.lex_state = 1668}, + [3723] = {.lex_state = 1668}, + [3724] = {.lex_state = 1668}, + [3725] = {.lex_state = 1668}, + [3726] = {.lex_state = 91}, + [3727] = {.lex_state = 1668}, + [3728] = {.lex_state = 1668}, + [3729] = {.lex_state = 1668}, + [3730] = {.lex_state = 1668}, + [3731] = {.lex_state = 1668}, + [3732] = {.lex_state = 1668}, + [3733] = {.lex_state = 1668}, + [3734] = {.lex_state = 1668}, + [3735] = {.lex_state = 91}, + [3736] = {.lex_state = 92}, + [3737] = {.lex_state = 1668}, + [3738] = {.lex_state = 91}, + [3739] = {.lex_state = 1668}, + [3740] = {.lex_state = 1668}, + [3741] = {.lex_state = 3165}, + [3742] = {.lex_state = 1668}, + [3743] = {.lex_state = 1668}, + [3744] = {.lex_state = 1668}, + [3745] = {.lex_state = 1668}, + [3746] = {.lex_state = 1668}, + [3747] = {.lex_state = 1668}, + [3748] = {.lex_state = 1668}, + [3749] = {.lex_state = 1668}, + [3750] = {.lex_state = 1668}, + [3751] = {.lex_state = 91}, + [3752] = {.lex_state = 3165}, + [3753] = {.lex_state = 1668}, + [3754] = {.lex_state = 3165}, + [3755] = {.lex_state = 91}, + [3756] = {.lex_state = 1668}, + [3757] = {.lex_state = 1668}, + [3758] = {.lex_state = 92}, [3759] = {.lex_state = 1664}, - [3760] = {.lex_state = 1664}, - [3761] = {.lex_state = 3155}, - [3762] = {.lex_state = 1664}, - [3763] = {.lex_state = 3155}, - [3764] = {.lex_state = 3155}, - [3765] = {.lex_state = 3155}, - [3766] = {.lex_state = 1664}, - [3767] = {.lex_state = 1664}, - [3768] = {.lex_state = 1664}, - [3769] = {.lex_state = 1660}, - [3770] = {.lex_state = 91}, - [3771] = {.lex_state = 1664}, - [3772] = {.lex_state = 1664}, - [3773] = {.lex_state = 1664}, - [3774] = {.lex_state = 1664}, - [3775] = {.lex_state = 1664}, - [3776] = {.lex_state = 91}, - [3777] = {.lex_state = 1664}, - [3778] = {.lex_state = 91}, - [3779] = {.lex_state = 91}, - [3780] = {.lex_state = 92}, - [3781] = {.lex_state = 1664}, - [3782] = {.lex_state = 1664}, - [3783] = {.lex_state = 1664}, - [3784] = {.lex_state = 1664}, - [3785] = {.lex_state = 1664}, - [3786] = {.lex_state = 1664}, - [3787] = {.lex_state = 3155}, - [3788] = {.lex_state = 3155}, - [3789] = {.lex_state = 1664}, - [3790] = {.lex_state = 1664}, - [3791] = {.lex_state = 1664}, - [3792] = {.lex_state = 3155}, - [3793] = {.lex_state = 1664}, - [3794] = {.lex_state = 61}, - [3795] = {.lex_state = 1664}, - [3796] = {.lex_state = 61}, - [3797] = {.lex_state = 1627}, - [3798] = {.lex_state = 61}, - [3799] = {.lex_state = 61}, - [3800] = {.lex_state = 61}, - [3801] = {.lex_state = 61}, - [3802] = {.lex_state = 61}, - [3803] = {.lex_state = 61}, - [3804] = {.lex_state = 61}, - [3805] = {.lex_state = 61}, - [3806] = {.lex_state = 1664}, - [3807] = {.lex_state = 91}, - [3808] = {.lex_state = 61}, - [3809] = {.lex_state = 61}, - [3810] = {.lex_state = 1627}, - [3811] = {.lex_state = 61}, - [3812] = {.lex_state = 61}, - [3813] = {.lex_state = 61}, - [3814] = {.lex_state = 1664}, - [3815] = {.lex_state = 1664}, - [3816] = {.lex_state = 61}, - [3817] = {.lex_state = 1664}, - [3818] = {.lex_state = 1664}, - [3819] = {.lex_state = 61}, - [3820] = {.lex_state = 61}, - [3821] = {.lex_state = 61}, - [3822] = {.lex_state = 61}, - [3823] = {.lex_state = 61}, - [3824] = {.lex_state = 61}, - [3825] = {.lex_state = 61}, - [3826] = {.lex_state = 61}, - [3827] = {.lex_state = 61}, - [3828] = {.lex_state = 61}, - [3829] = {.lex_state = 1664}, - [3830] = {.lex_state = 3156}, - [3831] = {.lex_state = 1627}, - [3832] = {.lex_state = 3156}, - [3833] = {.lex_state = 1664}, - [3834] = {.lex_state = 1664}, - [3835] = {.lex_state = 1664}, - [3836] = {.lex_state = 1664}, - [3837] = {.lex_state = 1664}, - [3838] = {.lex_state = 1664}, - [3839] = {.lex_state = 1664}, - [3840] = {.lex_state = 1664}, - [3841] = {.lex_state = 1664}, - [3842] = {.lex_state = 1664}, - [3843] = {.lex_state = 1664}, - [3844] = {.lex_state = 1664}, - [3845] = {.lex_state = 1627}, - [3846] = {.lex_state = 1664}, - [3847] = {.lex_state = 3156}, - [3848] = {.lex_state = 1664}, - [3849] = {.lex_state = 1664}, - [3850] = {.lex_state = 3156}, - [3851] = {.lex_state = 1664}, - [3852] = {.lex_state = 1664}, - [3853] = {.lex_state = 1664}, - [3854] = {.lex_state = 3156}, - [3855] = {.lex_state = 1664}, - [3856] = {.lex_state = 1664}, - [3857] = {.lex_state = 1664}, - [3858] = {.lex_state = 1664}, - [3859] = {.lex_state = 1664}, - [3860] = {.lex_state = 1627}, - [3861] = {.lex_state = 3156}, - [3862] = {.lex_state = 3156}, - [3863] = {.lex_state = 1627}, - [3864] = {.lex_state = 3156}, - [3865] = {.lex_state = 1664}, - [3866] = {.lex_state = 61}, - [3867] = {.lex_state = 61}, - [3868] = {.lex_state = 61}, + [3760] = {.lex_state = 91}, + [3761] = {.lex_state = 3165}, + [3762] = {.lex_state = 3165}, + [3763] = {.lex_state = 1668}, + [3764] = {.lex_state = 1668}, + [3765] = {.lex_state = 91}, + [3766] = {.lex_state = 19}, + [3767] = {.lex_state = 1668}, + [3768] = {.lex_state = 1668}, + [3769] = {.lex_state = 91}, + [3770] = {.lex_state = 1668}, + [3771] = {.lex_state = 1668}, + [3772] = {.lex_state = 1668}, + [3773] = {.lex_state = 1668}, + [3774] = {.lex_state = 1668}, + [3775] = {.lex_state = 1668}, + [3776] = {.lex_state = 92}, + [3777] = {.lex_state = 1668}, + [3778] = {.lex_state = 92}, + [3779] = {.lex_state = 92}, + [3780] = {.lex_state = 91}, + [3781] = {.lex_state = 3165}, + [3782] = {.lex_state = 1668}, + [3783] = {.lex_state = 1668}, + [3784] = {.lex_state = 1668}, + [3785] = {.lex_state = 1735}, + [3786] = {.lex_state = 1668}, + [3787] = {.lex_state = 1668}, + [3788] = {.lex_state = 1668}, + [3789] = {.lex_state = 61}, + [3790] = {.lex_state = 61}, + [3791] = {.lex_state = 91}, + [3792] = {.lex_state = 1735}, + [3793] = {.lex_state = 1735}, + [3794] = {.lex_state = 1668}, + [3795] = {.lex_state = 1735}, + [3796] = {.lex_state = 1668}, + [3797] = {.lex_state = 3166}, + [3798] = {.lex_state = 3166}, + [3799] = {.lex_state = 1668}, + [3800] = {.lex_state = 1668}, + [3801] = {.lex_state = 1668}, + [3802] = {.lex_state = 1668}, + [3803] = {.lex_state = 3166}, + [3804] = {.lex_state = 1668}, + [3805] = {.lex_state = 1668}, + [3806] = {.lex_state = 1668}, + [3807] = {.lex_state = 1668}, + [3808] = {.lex_state = 1668}, + [3809] = {.lex_state = 1668}, + [3810] = {.lex_state = 1668}, + [3811] = {.lex_state = 3166}, + [3812] = {.lex_state = 1668}, + [3813] = {.lex_state = 3166}, + [3814] = {.lex_state = 1668}, + [3815] = {.lex_state = 1668}, + [3816] = {.lex_state = 1668}, + [3817] = {.lex_state = 1668}, + [3818] = {.lex_state = 1668}, + [3819] = {.lex_state = 1668}, + [3820] = {.lex_state = 1668}, + [3821] = {.lex_state = 1668}, + [3822] = {.lex_state = 1668}, + [3823] = {.lex_state = 1668}, + [3824] = {.lex_state = 1668}, + [3825] = {.lex_state = 1668}, + [3826] = {.lex_state = 3166}, + [3827] = {.lex_state = 3166}, + [3828] = {.lex_state = 3166}, + [3829] = {.lex_state = 1668}, + [3830] = {.lex_state = 1668}, + [3831] = {.lex_state = 61}, + [3832] = {.lex_state = 61}, + [3833] = {.lex_state = 61}, + [3834] = {.lex_state = 61}, + [3835] = {.lex_state = 61}, + [3836] = {.lex_state = 1668}, + [3837] = {.lex_state = 61}, + [3838] = {.lex_state = 1668}, + [3839] = {.lex_state = 1631}, + [3840] = {.lex_state = 61}, + [3841] = {.lex_state = 61}, + [3842] = {.lex_state = 61}, + [3843] = {.lex_state = 1668}, + [3844] = {.lex_state = 61}, + [3845] = {.lex_state = 1631}, + [3846] = {.lex_state = 61}, + [3847] = {.lex_state = 61}, + [3848] = {.lex_state = 61}, + [3849] = {.lex_state = 1668}, + [3850] = {.lex_state = 1669}, + [3851] = {.lex_state = 61}, + [3852] = {.lex_state = 61}, + [3853] = {.lex_state = 61}, + [3854] = {.lex_state = 61}, + [3855] = {.lex_state = 61}, + [3856] = {.lex_state = 61}, + [3857] = {.lex_state = 61}, + [3858] = {.lex_state = 61}, + [3859] = {.lex_state = 61}, + [3860] = {.lex_state = 61}, + [3861] = {.lex_state = 61}, + [3862] = {.lex_state = 61}, + [3863] = {.lex_state = 61}, + [3864] = {.lex_state = 1669}, + [3865] = {.lex_state = 1631}, + [3866] = {.lex_state = 1631}, + [3867] = {.lex_state = 1631}, + [3868] = {.lex_state = 1631}, [3869] = {.lex_state = 61}, [3870] = {.lex_state = 61}, - [3871] = {.lex_state = 1726}, - [3872] = {.lex_state = 1665}, - [3873] = {.lex_state = 1664}, - [3874] = {.lex_state = 1664}, + [3871] = {.lex_state = 61}, + [3872] = {.lex_state = 61}, + [3873] = {.lex_state = 61}, + [3874] = {.lex_state = 61}, [3875] = {.lex_state = 61}, - [3876] = {.lex_state = 1664}, + [3876] = {.lex_state = 61}, [3877] = {.lex_state = 61}, [3878] = {.lex_state = 61}, [3879] = {.lex_state = 61}, [3880] = {.lex_state = 61}, - [3881] = {.lex_state = 61}, - [3882] = {.lex_state = 1664}, - [3883] = {.lex_state = 1664}, - [3884] = {.lex_state = 61}, - [3885] = {.lex_state = 1728}, - [3886] = {.lex_state = 1665}, - [3887] = {.lex_state = 1729}, - [3888] = {.lex_state = 1728}, - [3889] = {.lex_state = 1629}, - [3890] = {.lex_state = 1729}, - [3891] = {.lex_state = 1629}, - [3892] = {.lex_state = 1742}, - [3893] = {.lex_state = 1665}, - [3894] = {.lex_state = 1729}, - [3895] = {.lex_state = 1727}, - [3896] = {.lex_state = 60}, - [3897] = {.lex_state = 1665}, - [3898] = {.lex_state = 1629}, - [3899] = {.lex_state = 1629}, - [3900] = {.lex_state = 1629}, - [3901] = {.lex_state = 1746}, - [3902] = {.lex_state = 1665}, - [3903] = {.lex_state = 1629}, - [3904] = {.lex_state = 1729}, - [3905] = {.lex_state = 1665}, - [3906] = {.lex_state = 1665}, - [3907] = {.lex_state = 60}, - [3908] = {.lex_state = 1748}, - [3909] = {.lex_state = 1742}, - [3910] = {.lex_state = 1748}, + [3881] = {.lex_state = 1730}, + [3882] = {.lex_state = 1732}, + [3883] = {.lex_state = 1733}, + [3884] = {.lex_state = 1633}, + [3885] = {.lex_state = 1733}, + [3886] = {.lex_state = 1732}, + [3887] = {.lex_state = 1733}, + [3888] = {.lex_state = 1733}, + [3889] = {.lex_state = 60}, + [3890] = {.lex_state = 1750}, + [3891] = {.lex_state = 1731}, + [3892] = {.lex_state = 1669}, + [3893] = {.lex_state = 1633}, + [3894] = {.lex_state = 1669}, + [3895] = {.lex_state = 1669}, + [3896] = {.lex_state = 1746}, + [3897] = {.lex_state = 1669}, + [3898] = {.lex_state = 1669}, + [3899] = {.lex_state = 1633}, + [3900] = {.lex_state = 1633}, + [3901] = {.lex_state = 1633}, + [3902] = {.lex_state = 1633}, + [3903] = {.lex_state = 60}, + [3904] = {.lex_state = 1752}, + [3905] = {.lex_state = 1746}, + [3906] = {.lex_state = 1734}, + [3907] = {.lex_state = 1734}, + [3908] = {.lex_state = 1754}, + [3909] = {.lex_state = 1633}, + [3910] = {.lex_state = 1752}, [3911] = {.lex_state = 1750}, - [3912] = {.lex_state = 1629}, - [3913] = {.lex_state = 1629}, - [3914] = {.lex_state = 1746}, - [3915] = {.lex_state = 1629}, - [3916] = {.lex_state = 1730}, - [3917] = {.lex_state = 1727}, - [3918] = {.lex_state = 1727}, - [3919] = {.lex_state = 1629}, - [3920] = {.lex_state = 1730}, - [3921] = {.lex_state = 1665}, - [3922] = {.lex_state = 1727}, - [3923] = {.lex_state = 1750}, - [3924] = {.lex_state = 1748}, - [3925] = {.lex_state = 1727}, - [3926] = {.lex_state = 1752}, - [3927] = {.lex_state = 1727}, - [3928] = {.lex_state = 1730}, - [3929] = {.lex_state = 1748}, - [3930] = {.lex_state = 1750}, - [3931] = {.lex_state = 1727}, - [3932] = {.lex_state = 1750}, - [3933] = {.lex_state = 1747}, - [3934] = {.lex_state = 1750}, - [3935] = {.lex_state = 1727}, - [3936] = {.lex_state = 1750}, - [3937] = {.lex_state = 1730}, - [3938] = {.lex_state = 1743}, - [3939] = {.lex_state = 1744}, - [3940] = {.lex_state = 1727}, - [3941] = {.lex_state = 1749}, - [3942] = {.lex_state = 1750}, - [3943] = {.lex_state = 1744}, - [3944] = {.lex_state = 1754}, - [3945] = {.lex_state = 1727}, - [3946] = {.lex_state = 1727}, - [3947] = {.lex_state = 1727}, + [3912] = {.lex_state = 1633}, + [3913] = {.lex_state = 1731}, + [3914] = {.lex_state = 1633}, + [3915] = {.lex_state = 1633}, + [3916] = {.lex_state = 1731}, + [3917] = {.lex_state = 1731}, + [3918] = {.lex_state = 1731}, + [3919] = {.lex_state = 1754}, + [3920] = {.lex_state = 1751}, + [3921] = {.lex_state = 1752}, + [3922] = {.lex_state = 1748}, + [3923] = {.lex_state = 1754}, + [3924] = {.lex_state = 1756}, + [3925] = {.lex_state = 1754}, + [3926] = {.lex_state = 1754}, + [3927] = {.lex_state = 1752}, + [3928] = {.lex_state = 1731}, + [3929] = {.lex_state = 1734}, + [3930] = {.lex_state = 1734}, + [3931] = {.lex_state = 1731}, + [3932] = {.lex_state = 1731}, + [3933] = {.lex_state = 1754}, + [3934] = {.lex_state = 1747}, + [3935] = {.lex_state = 1754}, + [3936] = {.lex_state = 1751}, + [3937] = {.lex_state = 1758}, + [3938] = {.lex_state = 1731}, + [3939] = {.lex_state = 1758}, + [3940] = {.lex_state = 1731}, + [3941] = {.lex_state = 1731}, + [3942] = {.lex_state = 1669}, + [3943] = {.lex_state = 1747}, + [3944] = {.lex_state = 48}, + [3945] = {.lex_state = 1754}, + [3946] = {.lex_state = 61}, + [3947] = {.lex_state = 1754}, [3948] = {.lex_state = 1754}, - [3949] = {.lex_state = 1747}, - [3950] = {.lex_state = 1752}, - [3951] = {.lex_state = 1750}, - [3952] = {.lex_state = 61}, - [3953] = {.lex_state = 1751}, - [3954] = {.lex_state = 1750}, - [3955] = {.lex_state = 48}, - [3956] = {.lex_state = 1749}, - [3957] = {.lex_state = 1750}, - [3958] = {.lex_state = 1743}, - [3959] = {.lex_state = 1734}, - [3960] = {.lex_state = 1665}, - [3961] = {.lex_state = 1745}, - [3962] = {.lex_state = 1665}, - [3963] = {.lex_state = 1665}, - [3964] = {.lex_state = 1665}, - [3965] = {.lex_state = 1665}, - [3966] = {.lex_state = 1665}, - [3967] = {.lex_state = 1751}, - [3968] = {.lex_state = 1751}, - [3969] = {.lex_state = 1749}, - [3970] = {.lex_state = 1756}, - [3971] = {.lex_state = 1665}, - [3972] = {.lex_state = 1665}, - [3973] = {.lex_state = 48}, - [3974] = {.lex_state = 1665}, - [3975] = {.lex_state = 1665}, - [3976] = {.lex_state = 1756}, - [3977] = {.lex_state = 1665}, - [3978] = {.lex_state = 1665}, - [3979] = {.lex_state = 1751}, - [3980] = {.lex_state = 1751}, - [3981] = {.lex_state = 1754}, - [3982] = {.lex_state = 1749}, - [3983] = {.lex_state = 1734}, - [3984] = {.lex_state = 1665}, - [3985] = {.lex_state = 1725}, - [3986] = {.lex_state = 1665}, - [3987] = {.lex_state = 1756}, - [3988] = {.lex_state = 1726}, - [3989] = {.lex_state = 1756}, - [3990] = {.lex_state = 47}, - [3991] = {.lex_state = 1756}, - [3992] = {.lex_state = 1665}, - [3993] = {.lex_state = 43}, - [3994] = {.lex_state = 43}, + [3949] = {.lex_state = 1756}, + [3950] = {.lex_state = 1753}, + [3951] = {.lex_state = 1753}, + [3952] = {.lex_state = 1731}, + [3953] = {.lex_state = 1755}, + [3954] = {.lex_state = 1748}, + [3955] = {.lex_state = 1669}, + [3956] = {.lex_state = 1753}, + [3957] = {.lex_state = 1669}, + [3958] = {.lex_state = 48}, + [3959] = {.lex_state = 1749}, + [3960] = {.lex_state = 1757}, + [3961] = {.lex_state = 1669}, + [3962] = {.lex_state = 1758}, + [3963] = {.lex_state = 1729}, + [3964] = {.lex_state = 47}, + [3965] = {.lex_state = 1669}, + [3966] = {.lex_state = 1669}, + [3967] = {.lex_state = 1669}, + [3968] = {.lex_state = 1669}, + [3969] = {.lex_state = 1753}, + [3970] = {.lex_state = 1669}, + [3971] = {.lex_state = 43}, + [3972] = {.lex_state = 1760}, + [3973] = {.lex_state = 43}, + [3974] = {.lex_state = 1669}, + [3975] = {.lex_state = 1669}, + [3976] = {.lex_state = 1755}, + [3977] = {.lex_state = 1760}, + [3978] = {.lex_state = 1669}, + [3979] = {.lex_state = 1669}, + [3980] = {.lex_state = 1760}, + [3981] = {.lex_state = 1755}, + [3982] = {.lex_state = 1669}, + [3983] = {.lex_state = 1760}, + [3984] = {.lex_state = 1758}, + [3985] = {.lex_state = 1669}, + [3986] = {.lex_state = 1669}, + [3987] = {.lex_state = 1669}, + [3988] = {.lex_state = 1669}, + [3989] = {.lex_state = 1669}, + [3990] = {.lex_state = 1738}, + [3991] = {.lex_state = 1669}, + [3992] = {.lex_state = 1760}, + [3993] = {.lex_state = 49}, + [3994] = {.lex_state = 1669}, [3995] = {.lex_state = 61}, - [3996] = {.lex_state = 1754}, - [3997] = {.lex_state = 1665}, - [3998] = {.lex_state = 1751}, - [3999] = {.lex_state = 51}, - [4000] = {.lex_state = 1726}, - [4001] = {.lex_state = 1665}, - [4002] = {.lex_state = 47}, - [4003] = {.lex_state = 1665}, - [4004] = {.lex_state = 1756}, - [4005] = {.lex_state = 1753}, - [4006] = {.lex_state = 1665}, - [4007] = {.lex_state = 1734}, - [4008] = {.lex_state = 1665}, - [4009] = {.lex_state = 1665}, - [4010] = {.lex_state = 1665}, - [4011] = {.lex_state = 43}, - [4012] = {.lex_state = 1745}, - [4013] = {.lex_state = 43}, + [3996] = {.lex_state = 1738}, + [3997] = {.lex_state = 1738}, + [3998] = {.lex_state = 1755}, + [3999] = {.lex_state = 1669}, + [4000] = {.lex_state = 47}, + [4001] = {.lex_state = 1669}, + [4002] = {.lex_state = 1755}, + [4003] = {.lex_state = 1755}, + [4004] = {.lex_state = 1760}, + [4005] = {.lex_state = 53}, + [4006] = {.lex_state = 52}, + [4007] = {.lex_state = 1738}, + [4008] = {.lex_state = 1738}, + [4009] = {.lex_state = 1760}, + [4010] = {.lex_state = 1760}, + [4011] = {.lex_state = 1749}, + [4012] = {.lex_state = 1757}, + [4013] = {.lex_state = 48}, [4014] = {.lex_state = 43}, - [4015] = {.lex_state = 1751}, - [4016] = {.lex_state = 52}, - [4017] = {.lex_state = 1734}, - [4018] = {.lex_state = 1756}, - [4019] = {.lex_state = 1755}, - [4020] = {.lex_state = 48}, - [4021] = {.lex_state = 48}, - [4022] = {.lex_state = 48}, - [4023] = {.lex_state = 53}, - [4024] = {.lex_state = 1756}, - [4025] = {.lex_state = 1734}, - [4026] = {.lex_state = 1755}, - [4027] = {.lex_state = 1756}, - [4028] = {.lex_state = 1760}, - [4029] = {.lex_state = 1758}, - [4030] = {.lex_state = 1756}, - [4031] = {.lex_state = 1753}, - [4032] = {.lex_state = 52}, - [4033] = {.lex_state = 1756}, - [4034] = {.lex_state = 1751}, - [4035] = {.lex_state = 1751}, - [4036] = {.lex_state = 1734}, - [4037] = {.lex_state = 1751}, - [4038] = {.lex_state = 1734}, - [4039] = {.lex_state = 1734}, - [4040] = {.lex_state = 48}, - [4041] = {.lex_state = 1751}, - [4042] = {.lex_state = 1756}, - [4043] = {.lex_state = 1665}, + [4015] = {.lex_state = 1760}, + [4016] = {.lex_state = 1755}, + [4017] = {.lex_state = 48}, + [4018] = {.lex_state = 1759}, + [4019] = {.lex_state = 1738}, + [4020] = {.lex_state = 52}, + [4021] = {.lex_state = 1760}, + [4022] = {.lex_state = 1755}, + [4023] = {.lex_state = 1730}, + [4024] = {.lex_state = 1738}, + [4025] = {.lex_state = 43}, + [4026] = {.lex_state = 1760}, + [4027] = {.lex_state = 48}, + [4028] = {.lex_state = 1762}, + [4029] = {.lex_state = 43}, + [4030] = {.lex_state = 48}, + [4031] = {.lex_state = 1755}, + [4032] = {.lex_state = 1738}, + [4033] = {.lex_state = 1730}, + [4034] = {.lex_state = 1760}, + [4035] = {.lex_state = 1755}, + [4036] = {.lex_state = 1759}, + [4037] = {.lex_state = 1764}, + [4038] = {.lex_state = 1755}, + [4039] = {.lex_state = 1669}, + [4040] = {.lex_state = 1669}, + [4041] = {.lex_state = 53}, + [4042] = {.lex_state = 1738}, + [4043] = {.lex_state = 53}, [4044] = {.lex_state = 43}, - [4045] = {.lex_state = 1734}, - [4046] = {.lex_state = 53}, - [4047] = {.lex_state = 1755}, - [4048] = {.lex_state = 54}, - [4049] = {.lex_state = 1734}, - [4050] = {.lex_state = 1757}, - [4051] = {.lex_state = 1757}, - [4052] = {.lex_state = 53}, - [4053] = {.lex_state = 1757}, - [4054] = {.lex_state = 53}, - [4055] = {.lex_state = 53}, - [4056] = {.lex_state = 1757}, - [4057] = {.lex_state = 1760}, - [4058] = {.lex_state = 1734}, - [4059] = {.lex_state = 1757}, - [4060] = {.lex_state = 1734}, - [4061] = {.lex_state = 43}, - [4062] = {.lex_state = 1734}, - [4063] = {.lex_state = 1758}, - [4064] = {.lex_state = 1734}, - [4065] = {.lex_state = 1755}, - [4066] = {.lex_state = 1734}, - [4067] = {.lex_state = 43}, - [4068] = {.lex_state = 1762}, + [4045] = {.lex_state = 1764}, + [4046] = {.lex_state = 1669}, + [4047] = {.lex_state = 1761}, + [4048] = {.lex_state = 1669}, + [4049] = {.lex_state = 1761}, + [4050] = {.lex_state = 1755}, + [4051] = {.lex_state = 1759}, + [4052] = {.lex_state = 43}, + [4053] = {.lex_state = 50}, + [4054] = {.lex_state = 1761}, + [4055] = {.lex_state = 1759}, + [4056] = {.lex_state = 1738}, + [4057] = {.lex_state = 1669}, + [4058] = {.lex_state = 1738}, + [4059] = {.lex_state = 1738}, + [4060] = {.lex_state = 54}, + [4061] = {.lex_state = 1762}, + [4062] = {.lex_state = 1766}, + [4063] = {.lex_state = 1766}, + [4064] = {.lex_state = 1669}, + [4065] = {.lex_state = 43}, + [4066] = {.lex_state = 53}, + [4067] = {.lex_state = 1761}, + [4068] = {.lex_state = 1738}, [4069] = {.lex_state = 43}, - [4070] = {.lex_state = 1762}, - [4071] = {.lex_state = 1734}, - [4072] = {.lex_state = 49}, - [4073] = {.lex_state = 1757}, - [4074] = {.lex_state = 1665}, - [4075] = {.lex_state = 1665}, - [4076] = {.lex_state = 1665}, - [4077] = {.lex_state = 1665}, - [4078] = {.lex_state = 1665}, - [4079] = {.lex_state = 1665}, - [4080] = {.lex_state = 1751}, - [4081] = {.lex_state = 1665}, - [4082] = {.lex_state = 1734}, - [4083] = {.lex_state = 1757}, - [4084] = {.lex_state = 1665}, - [4085] = {.lex_state = 1757}, - [4086] = {.lex_state = 1764}, - [4087] = {.lex_state = 1734}, - [4088] = {.lex_state = 1774}, - [4089] = {.lex_state = 1734}, - [4090] = {.lex_state = 1734}, - [4091] = {.lex_state = 1734}, - [4092] = {.lex_state = 1734}, - [4093] = {.lex_state = 1734}, - [4094] = {.lex_state = 1774}, - [4095] = {.lex_state = 1734}, - [4096] = {.lex_state = 43}, - [4097] = {.lex_state = 1734}, - [4098] = {.lex_state = 1774}, - [4099] = {.lex_state = 1734}, - [4100] = {.lex_state = 1734}, - [4101] = {.lex_state = 1734}, - [4102] = {.lex_state = 1734}, - [4103] = {.lex_state = 1734}, - [4104] = {.lex_state = 43}, - [4105] = {.lex_state = 1774}, - [4106] = {.lex_state = 1665}, - [4107] = {.lex_state = 43}, - [4108] = {.lex_state = 1774}, - [4109] = {.lex_state = 1734}, - [4110] = {.lex_state = 1734}, - [4111] = {.lex_state = 1734}, - [4112] = {.lex_state = 1734}, - [4113] = {.lex_state = 1665}, - [4114] = {.lex_state = 1734}, - [4115] = {.lex_state = 1665}, - [4116] = {.lex_state = 1734}, - [4117] = {.lex_state = 1734}, - [4118] = {.lex_state = 1764}, - [4119] = {.lex_state = 1734}, - [4120] = {.lex_state = 1757}, - [4121] = {.lex_state = 43}, - [4122] = {.lex_state = 1734}, - [4123] = {.lex_state = 43}, - [4124] = {.lex_state = 1757}, - [4125] = {.lex_state = 1665}, - [4126] = {.lex_state = 1665}, - [4127] = {.lex_state = 1665}, - [4128] = {.lex_state = 1665}, - [4129] = {.lex_state = 1764}, - [4130] = {.lex_state = 1665}, - [4131] = {.lex_state = 1734}, - [4132] = {.lex_state = 43}, - [4133] = {.lex_state = 1734}, - [4134] = {.lex_state = 1761}, - [4135] = {.lex_state = 1762}, - [4136] = {.lex_state = 1757}, - [4137] = {.lex_state = 1764}, - [4138] = {.lex_state = 1734}, - [4139] = {.lex_state = 43}, - [4140] = {.lex_state = 55}, - [4141] = {.lex_state = 1764}, - [4142] = {.lex_state = 1764}, - [4143] = {.lex_state = 1764}, - [4144] = {.lex_state = 1734}, - [4145] = {.lex_state = 1764}, - [4146] = {.lex_state = 43}, - [4147] = {.lex_state = 1762}, - [4148] = {.lex_state = 1665}, - [4149] = {.lex_state = 1734}, - [4150] = {.lex_state = 43}, - [4151] = {.lex_state = 1759}, - [4152] = {.lex_state = 1757}, - [4153] = {.lex_state = 1734}, - [4154] = {.lex_state = 55}, - [4155] = {.lex_state = 1665}, - [4156] = {.lex_state = 1734}, - [4157] = {.lex_state = 1734}, - [4158] = {.lex_state = 1734}, - [4159] = {.lex_state = 1764}, - [4160] = {.lex_state = 1734}, - [4161] = {.lex_state = 1734}, - [4162] = {.lex_state = 1734}, - [4163] = {.lex_state = 1734}, - [4164] = {.lex_state = 1734}, - [4165] = {.lex_state = 1734}, - [4166] = {.lex_state = 1747}, - [4167] = {.lex_state = 170, .external_lex_state = 2}, - [4168] = {.lex_state = 1763}, - [4169] = {.lex_state = 1764}, - [4170] = {.lex_state = 1759}, - [4171] = {.lex_state = 170, .external_lex_state = 2}, - [4172] = {.lex_state = 1764}, - [4173] = {.lex_state = 43}, - [4174] = {.lex_state = 170, .external_lex_state = 2}, - [4175] = {.lex_state = 1734}, - [4176] = {.lex_state = 1665}, - [4177] = {.lex_state = 1665}, - [4178] = {.lex_state = 1734}, - [4179] = {.lex_state = 1774}, - [4180] = {.lex_state = 1764}, - [4181] = {.lex_state = 50}, - [4182] = {.lex_state = 1747}, - [4183] = {.lex_state = 1747}, - [4184] = {.lex_state = 43}, - [4185] = {.lex_state = 1734}, - [4186] = {.lex_state = 1774}, - [4187] = {.lex_state = 1734}, - [4188] = {.lex_state = 1665}, - [4189] = {.lex_state = 1747}, - [4190] = {.lex_state = 1734}, - [4191] = {.lex_state = 1764}, - [4192] = {.lex_state = 1764}, - [4193] = {.lex_state = 1764}, - [4194] = {.lex_state = 1734}, - [4195] = {.lex_state = 1734}, - [4196] = {.lex_state = 1734}, - [4197] = {.lex_state = 1734}, - [4198] = {.lex_state = 1734}, - [4199] = {.lex_state = 170, .external_lex_state = 2}, - [4200] = {.lex_state = 1764}, - [4201] = {.lex_state = 1734}, - [4202] = {.lex_state = 1734}, - [4203] = {.lex_state = 1734}, - [4204] = {.lex_state = 50}, - [4205] = {.lex_state = 1734}, + [4070] = {.lex_state = 1738}, + [4071] = {.lex_state = 1738}, + [4072] = {.lex_state = 1738}, + [4073] = {.lex_state = 1761}, + [4074] = {.lex_state = 53}, + [4075] = {.lex_state = 1669}, + [4076] = {.lex_state = 1669}, + [4077] = {.lex_state = 1669}, + [4078] = {.lex_state = 1669}, + [4079] = {.lex_state = 1761}, + [4080] = {.lex_state = 1763}, + [4081] = {.lex_state = 1738}, + [4082] = {.lex_state = 43}, + [4083] = {.lex_state = 1768}, + [4084] = {.lex_state = 1669}, + [4085] = {.lex_state = 1738}, + [4086] = {.lex_state = 43}, + [4087] = {.lex_state = 1761}, + [4088] = {.lex_state = 1768}, + [4089] = {.lex_state = 43}, + [4090] = {.lex_state = 1669}, + [4091] = {.lex_state = 1761}, + [4092] = {.lex_state = 1765}, + [4093] = {.lex_state = 1778}, + [4094] = {.lex_state = 1669}, + [4095] = {.lex_state = 1766}, + [4096] = {.lex_state = 1738}, + [4097] = {.lex_state = 43}, + [4098] = {.lex_state = 1669}, + [4099] = {.lex_state = 1669}, + [4100] = {.lex_state = 1738}, + [4101] = {.lex_state = 1669}, + [4102] = {.lex_state = 1778}, + [4103] = {.lex_state = 1738}, + [4104] = {.lex_state = 1738}, + [4105] = {.lex_state = 1761}, + [4106] = {.lex_state = 1768}, + [4107] = {.lex_state = 1669}, + [4108] = {.lex_state = 1738}, + [4109] = {.lex_state = 1669}, + [4110] = {.lex_state = 1738}, + [4111] = {.lex_state = 1669}, + [4112] = {.lex_state = 1768}, + [4113] = {.lex_state = 1738}, + [4114] = {.lex_state = 1669}, + [4115] = {.lex_state = 1669}, + [4116] = {.lex_state = 1669}, + [4117] = {.lex_state = 1738}, + [4118] = {.lex_state = 1738}, + [4119] = {.lex_state = 1738}, + [4120] = {.lex_state = 1761}, + [4121] = {.lex_state = 1738}, + [4122] = {.lex_state = 1738}, + [4123] = {.lex_state = 1738}, + [4124] = {.lex_state = 1738}, + [4125] = {.lex_state = 55}, + [4126] = {.lex_state = 1738}, + [4127] = {.lex_state = 1768}, + [4128] = {.lex_state = 1738}, + [4129] = {.lex_state = 1738}, + [4130] = {.lex_state = 55}, + [4131] = {.lex_state = 1766}, + [4132] = {.lex_state = 1768}, + [4133] = {.lex_state = 1738}, + [4134] = {.lex_state = 1768}, + [4135] = {.lex_state = 1738}, + [4136] = {.lex_state = 1664}, + [4137] = {.lex_state = 43}, + [4138] = {.lex_state = 1738}, + [4139] = {.lex_state = 1768}, + [4140] = {.lex_state = 1738}, + [4141] = {.lex_state = 1778}, + [4142] = {.lex_state = 1669}, + [4143] = {.lex_state = 1778}, + [4144] = {.lex_state = 1738}, + [4145] = {.lex_state = 1669}, + [4146] = {.lex_state = 1738}, + [4147] = {.lex_state = 1738}, + [4148] = {.lex_state = 1738}, + [4149] = {.lex_state = 1738}, + [4150] = {.lex_state = 1738}, + [4151] = {.lex_state = 1738}, + [4152] = {.lex_state = 1738}, + [4153] = {.lex_state = 1738}, + [4154] = {.lex_state = 43}, + [4155] = {.lex_state = 1738}, + [4156] = {.lex_state = 43}, + [4157] = {.lex_state = 1761}, + [4158] = {.lex_state = 43}, + [4159] = {.lex_state = 43}, + [4160] = {.lex_state = 1778}, + [4161] = {.lex_state = 1738}, + [4162] = {.lex_state = 1738}, + [4163] = {.lex_state = 1738}, + [4164] = {.lex_state = 1761}, + [4165] = {.lex_state = 1768}, + [4166] = {.lex_state = 1738}, + [4167] = {.lex_state = 1768}, + [4168] = {.lex_state = 1778}, + [4169] = {.lex_state = 1778}, + [4170] = {.lex_state = 1738}, + [4171] = {.lex_state = 43}, + [4172] = {.lex_state = 1738}, + [4173] = {.lex_state = 1738}, + [4174] = {.lex_state = 1751}, + [4175] = {.lex_state = 1669}, + [4176] = {.lex_state = 1738}, + [4177] = {.lex_state = 1738}, + [4178] = {.lex_state = 43}, + [4179] = {.lex_state = 1738}, + [4180] = {.lex_state = 1738}, + [4181] = {.lex_state = 1738}, + [4182] = {.lex_state = 1768}, + [4183] = {.lex_state = 1768}, + [4184] = {.lex_state = 51}, + [4185] = {.lex_state = 1751}, + [4186] = {.lex_state = 1778}, + [4187] = {.lex_state = 1751}, + [4188] = {.lex_state = 1768}, + [4189] = {.lex_state = 1765}, + [4190] = {.lex_state = 1669}, + [4191] = {.lex_state = 43}, + [4192] = {.lex_state = 1751}, + [4193] = {.lex_state = 43}, + [4194] = {.lex_state = 1738}, + [4195] = {.lex_state = 51}, + [4196] = {.lex_state = 1738}, + [4197] = {.lex_state = 1751}, + [4198] = {.lex_state = 1763}, + [4199] = {.lex_state = 1738}, + [4200] = {.lex_state = 1768}, + [4201] = {.lex_state = 1738}, + [4202] = {.lex_state = 1738}, + [4203] = {.lex_state = 1738}, + [4204] = {.lex_state = 51}, + [4205] = {.lex_state = 1738}, [4206] = {.lex_state = 43}, - [4207] = {.lex_state = 50}, - [4208] = {.lex_state = 43}, - [4209] = {.lex_state = 1734}, - [4210] = {.lex_state = 1764}, - [4211] = {.lex_state = 1747}, - [4212] = {.lex_state = 1774}, - [4213] = {.lex_state = 1734}, - [4214] = {.lex_state = 43}, - [4215] = {.lex_state = 1734}, - [4216] = {.lex_state = 1774}, - [4217] = {.lex_state = 1734}, - [4218] = {.lex_state = 1747}, - [4219] = {.lex_state = 1665}, - [4220] = {.lex_state = 1665}, - [4221] = {.lex_state = 1774}, - [4222] = {.lex_state = 1734}, - [4223] = {.lex_state = 43}, - [4224] = {.lex_state = 1734}, - [4225] = {.lex_state = 43}, - [4226] = {.lex_state = 1763}, - [4227] = {.lex_state = 43}, - [4228] = {.lex_state = 1747}, - [4229] = {.lex_state = 50}, - [4230] = {.lex_state = 50}, - [4231] = {.lex_state = 43}, - [4232] = {.lex_state = 1747}, - [4233] = {.lex_state = 1734}, - [4234] = {.lex_state = 1764}, - [4235] = {.lex_state = 1734}, - [4236] = {.lex_state = 1764}, - [4237] = {.lex_state = 50}, - [4238] = {.lex_state = 1734}, - [4239] = {.lex_state = 1734}, - [4240] = {.lex_state = 50}, - [4241] = {.lex_state = 1747}, - [4242] = {.lex_state = 1734}, - [4243] = {.lex_state = 1734}, - [4244] = {.lex_state = 1747}, - [4245] = {.lex_state = 1747}, - [4246] = {.lex_state = 1761}, - [4247] = {.lex_state = 1734}, - [4248] = {.lex_state = 1734}, - [4249] = {.lex_state = 1627}, - [4250] = {.lex_state = 1627}, + [4207] = {.lex_state = 1738}, + [4208] = {.lex_state = 170, .external_lex_state = 2}, + [4209] = {.lex_state = 51}, + [4210] = {.lex_state = 43}, + [4211] = {.lex_state = 1738}, + [4212] = {.lex_state = 1738}, + [4213] = {.lex_state = 1738}, + [4214] = {.lex_state = 1778}, + [4215] = {.lex_state = 1751}, + [4216] = {.lex_state = 1751}, + [4217] = {.lex_state = 1738}, + [4218] = {.lex_state = 1738}, + [4219] = {.lex_state = 1738}, + [4220] = {.lex_state = 1768}, + [4221] = {.lex_state = 1768}, + [4222] = {.lex_state = 1768}, + [4223] = {.lex_state = 1768}, + [4224] = {.lex_state = 1738}, + [4225] = {.lex_state = 51}, + [4226] = {.lex_state = 1751}, + [4227] = {.lex_state = 1669}, + [4228] = {.lex_state = 1738}, + [4229] = {.lex_state = 43}, + [4230] = {.lex_state = 51}, + [4231] = {.lex_state = 1751}, + [4232] = {.lex_state = 1751}, + [4233] = {.lex_state = 1751}, + [4234] = {.lex_state = 1778}, + [4235] = {.lex_state = 1767}, + [4236] = {.lex_state = 1738}, + [4237] = {.lex_state = 1738}, + [4238] = {.lex_state = 170, .external_lex_state = 2}, + [4239] = {.lex_state = 1738}, + [4240] = {.lex_state = 1738}, + [4241] = {.lex_state = 43}, + [4242] = {.lex_state = 43}, + [4243] = {.lex_state = 1767}, + [4244] = {.lex_state = 1738}, + [4245] = {.lex_state = 170, .external_lex_state = 2}, + [4246] = {.lex_state = 1768}, + [4247] = {.lex_state = 170, .external_lex_state = 2}, + [4248] = {.lex_state = 51}, + [4249] = {.lex_state = 43}, + [4250] = {.lex_state = 1751}, [4251] = {.lex_state = 43}, - [4252] = {.lex_state = 1627}, - [4253] = {.lex_state = 1665}, - [4254] = {.lex_state = 1627}, - [4255] = {.lex_state = 1627}, - [4256] = {.lex_state = 1765}, - [4257] = {.lex_state = 43}, - [4258] = {.lex_state = 1734}, + [4252] = {.lex_state = 43}, + [4253] = {.lex_state = 1631}, + [4254] = {.lex_state = 1631}, + [4255] = {.lex_state = 43}, + [4256] = {.lex_state = 43}, + [4257] = {.lex_state = 1631}, + [4258] = {.lex_state = 43}, [4259] = {.lex_state = 43}, - [4260] = {.lex_state = 43}, + [4260] = {.lex_state = 1763}, [4261] = {.lex_state = 43}, - [4262] = {.lex_state = 1627}, - [4263] = {.lex_state = 1627}, - [4264] = {.lex_state = 1627}, - [4265] = {.lex_state = 1665}, - [4266] = {.lex_state = 1627}, + [4262] = {.lex_state = 1631}, + [4263] = {.lex_state = 1631}, + [4264] = {.lex_state = 43}, + [4265] = {.lex_state = 43}, + [4266] = {.lex_state = 43}, [4267] = {.lex_state = 43}, - [4268] = {.lex_state = 1765}, - [4269] = {.lex_state = 1765}, - [4270] = {.lex_state = 1627}, - [4271] = {.lex_state = 1627}, - [4272] = {.lex_state = 1627}, - [4273] = {.lex_state = 1627}, - [4274] = {.lex_state = 1627}, - [4275] = {.lex_state = 1627}, - [4276] = {.lex_state = 1747}, - [4277] = {.lex_state = 1627}, - [4278] = {.lex_state = 1627}, - [4279] = {.lex_state = 1627}, - [4280] = {.lex_state = 1765}, - [4281] = {.lex_state = 1763}, - [4282] = {.lex_state = 1627}, - [4283] = {.lex_state = 1627}, - [4284] = {.lex_state = 43}, - [4285] = {.lex_state = 1775}, - [4286] = {.lex_state = 1627}, - [4287] = {.lex_state = 1772}, - [4288] = {.lex_state = 43}, - [4289] = {.lex_state = 1627}, - [4290] = {.lex_state = 1627}, - [4291] = {.lex_state = 1627}, - [4292] = {.lex_state = 1627}, - [4293] = {.lex_state = 1727}, - [4294] = {.lex_state = 1775}, - [4295] = {.lex_state = 1627}, - [4296] = {.lex_state = 1627}, - [4297] = {.lex_state = 1627}, - [4298] = {.lex_state = 1627}, - [4299] = {.lex_state = 1627}, - [4300] = {.lex_state = 1627}, - [4301] = {.lex_state = 1747}, - [4302] = {.lex_state = 43}, - [4303] = {.lex_state = 1627}, - [4304] = {.lex_state = 1627}, - [4305] = {.lex_state = 1627}, - [4306] = {.lex_state = 1627}, - [4307] = {.lex_state = 38}, - [4308] = {.lex_state = 1727}, - [4309] = {.lex_state = 57}, - [4310] = {.lex_state = 43}, - [4311] = {.lex_state = 1627}, - [4312] = {.lex_state = 1627}, - [4313] = {.lex_state = 38}, - [4314] = {.lex_state = 1627}, - [4315] = {.lex_state = 1627}, - [4316] = {.lex_state = 1627}, - [4317] = {.lex_state = 1747}, - [4318] = {.lex_state = 1627}, - [4319] = {.lex_state = 1627}, - [4320] = {.lex_state = 43}, - [4321] = {.lex_state = 1765}, - [4322] = {.lex_state = 1627}, - [4323] = {.lex_state = 1627}, - [4324] = {.lex_state = 1627}, - [4325] = {.lex_state = 1627}, - [4326] = {.lex_state = 1627}, - [4327] = {.lex_state = 1627}, - [4328] = {.lex_state = 1627}, - [4329] = {.lex_state = 1765}, - [4330] = {.lex_state = 1627}, - [4331] = {.lex_state = 1627}, - [4332] = {.lex_state = 1627}, - [4333] = {.lex_state = 1627}, - [4334] = {.lex_state = 1747}, - [4335] = {.lex_state = 43}, - [4336] = {.lex_state = 1627}, - [4337] = {.lex_state = 1627}, - [4338] = {.lex_state = 1764}, - [4339] = {.lex_state = 1747}, - [4340] = {.lex_state = 43}, - [4341] = {.lex_state = 1627}, - [4342] = {.lex_state = 1665}, - [4343] = {.lex_state = 43}, - [4344] = {.lex_state = 1747}, - [4345] = {.lex_state = 1747}, - [4346] = {.lex_state = 1627}, - [4347] = {.lex_state = 43}, - [4348] = {.lex_state = 43}, - [4349] = {.lex_state = 43}, - [4350] = {.lex_state = 1747}, + [4268] = {.lex_state = 43}, + [4269] = {.lex_state = 43}, + [4270] = {.lex_state = 43}, + [4271] = {.lex_state = 43}, + [4272] = {.lex_state = 43}, + [4273] = {.lex_state = 43}, + [4274] = {.lex_state = 1779}, + [4275] = {.lex_state = 43}, + [4276] = {.lex_state = 43}, + [4277] = {.lex_state = 1631}, + [4278] = {.lex_state = 1769}, + [4279] = {.lex_state = 43}, + [4280] = {.lex_state = 1738}, + [4281] = {.lex_state = 1751}, + [4282] = {.lex_state = 1767}, + [4283] = {.lex_state = 1751}, + [4284] = {.lex_state = 1751}, + [4285] = {.lex_state = 43}, + [4286] = {.lex_state = 1631}, + [4287] = {.lex_state = 56}, + [4288] = {.lex_state = 1751}, + [4289] = {.lex_state = 1751}, + [4290] = {.lex_state = 1631}, + [4291] = {.lex_state = 1631}, + [4292] = {.lex_state = 1631}, + [4293] = {.lex_state = 1631}, + [4294] = {.lex_state = 1631}, + [4295] = {.lex_state = 1776}, + [4296] = {.lex_state = 1751}, + [4297] = {.lex_state = 1769}, + [4298] = {.lex_state = 1631}, + [4299] = {.lex_state = 1631}, + [4300] = {.lex_state = 1631}, + [4301] = {.lex_state = 1631}, + [4302] = {.lex_state = 1631}, + [4303] = {.lex_state = 1631}, + [4304] = {.lex_state = 1631}, + [4305] = {.lex_state = 1769}, + [4306] = {.lex_state = 1631}, + [4307] = {.lex_state = 43}, + [4308] = {.lex_state = 1769}, + [4309] = {.lex_state = 1631}, + [4310] = {.lex_state = 1631}, + [4311] = {.lex_state = 1751}, + [4312] = {.lex_state = 1751}, + [4313] = {.lex_state = 1631}, + [4314] = {.lex_state = 1631}, + [4315] = {.lex_state = 1631}, + [4316] = {.lex_state = 1631}, + [4317] = {.lex_state = 1769}, + [4318] = {.lex_state = 1631}, + [4319] = {.lex_state = 1631}, + [4320] = {.lex_state = 1631}, + [4321] = {.lex_state = 1731}, + [4322] = {.lex_state = 1631}, + [4323] = {.lex_state = 1631}, + [4324] = {.lex_state = 1731}, + [4325] = {.lex_state = 1631}, + [4326] = {.lex_state = 1631}, + [4327] = {.lex_state = 1631}, + [4328] = {.lex_state = 1779}, + [4329] = {.lex_state = 1631}, + [4330] = {.lex_state = 1631}, + [4331] = {.lex_state = 1631}, + [4332] = {.lex_state = 1631}, + [4333] = {.lex_state = 1631}, + [4334] = {.lex_state = 1631}, + [4335] = {.lex_state = 1631}, + [4336] = {.lex_state = 1631}, + [4337] = {.lex_state = 43}, + [4338] = {.lex_state = 43}, + [4339] = {.lex_state = 1631}, + [4340] = {.lex_state = 1631}, + [4341] = {.lex_state = 1751}, + [4342] = {.lex_state = 1631}, + [4343] = {.lex_state = 1631}, + [4344] = {.lex_state = 1631}, + [4345] = {.lex_state = 1631}, + [4346] = {.lex_state = 1631}, + [4347] = {.lex_state = 1631}, + [4348] = {.lex_state = 1769}, + [4349] = {.lex_state = 1631}, + [4350] = {.lex_state = 43}, [4351] = {.lex_state = 43}, - [4352] = {.lex_state = 1627}, - [4353] = {.lex_state = 43}, - [4354] = {.lex_state = 43}, - [4355] = {.lex_state = 43}, - [4356] = {.lex_state = 43}, - [4357] = {.lex_state = 43}, - [4358] = {.lex_state = 43}, - [4359] = {.lex_state = 43}, - [4360] = {.lex_state = 43}, - [4361] = {.lex_state = 43}, - [4362] = {.lex_state = 43}, - [4363] = {.lex_state = 43}, - [4364] = {.lex_state = 43}, - [4365] = {.lex_state = 43}, - [4366] = {.lex_state = 43}, - [4367] = {.lex_state = 43}, - [4368] = {.lex_state = 43}, - [4369] = {.lex_state = 1627}, - [4370] = {.lex_state = 43}, - [4371] = {.lex_state = 43}, - [4372] = {.lex_state = 43}, - [4373] = {.lex_state = 43}, + [4352] = {.lex_state = 43}, + [4353] = {.lex_state = 1779}, + [4354] = {.lex_state = 1631}, + [4355] = {.lex_state = 1631}, + [4356] = {.lex_state = 1769}, + [4357] = {.lex_state = 1769}, + [4358] = {.lex_state = 1631}, + [4359] = {.lex_state = 1631}, + [4360] = {.lex_state = 1631}, + [4361] = {.lex_state = 1631}, + [4362] = {.lex_state = 1631}, + [4363] = {.lex_state = 1631}, + [4364] = {.lex_state = 1631}, + [4365] = {.lex_state = 1631}, + [4366] = {.lex_state = 1631}, + [4367] = {.lex_state = 1631}, + [4368] = {.lex_state = 1731}, + [4369] = {.lex_state = 1631}, + [4370] = {.lex_state = 1769}, + [4371] = {.lex_state = 1631}, + [4372] = {.lex_state = 1731}, + [4373] = {.lex_state = 1631}, [4374] = {.lex_state = 43}, - [4375] = {.lex_state = 43}, - [4376] = {.lex_state = 1765}, - [4377] = {.lex_state = 43}, - [4378] = {.lex_state = 1627}, - [4379] = {.lex_state = 1627}, - [4380] = {.lex_state = 1727}, - [4381] = {.lex_state = 1627}, - [4382] = {.lex_state = 1627}, - [4383] = {.lex_state = 1747}, - [4384] = {.lex_state = 1765}, - [4385] = {.lex_state = 1627}, - [4386] = {.lex_state = 1627}, - [4387] = {.lex_state = 1627}, - [4388] = {.lex_state = 43}, - [4389] = {.lex_state = 1627}, - [4390] = {.lex_state = 1627}, - [4391] = {.lex_state = 1627}, - [4392] = {.lex_state = 1627}, - [4393] = {.lex_state = 1627}, - [4394] = {.lex_state = 1759}, - [4395] = {.lex_state = 1627}, - [4396] = {.lex_state = 1627}, - [4397] = {.lex_state = 1627}, - [4398] = {.lex_state = 1627}, - [4399] = {.lex_state = 1627}, - [4400] = {.lex_state = 1627}, - [4401] = {.lex_state = 1627}, - [4402] = {.lex_state = 1627}, - [4403] = {.lex_state = 43}, - [4404] = {.lex_state = 1627}, - [4405] = {.lex_state = 43}, - [4406] = {.lex_state = 1627}, + [4375] = {.lex_state = 1631}, + [4376] = {.lex_state = 1631}, + [4377] = {.lex_state = 1631}, + [4378] = {.lex_state = 43}, + [4379] = {.lex_state = 1631}, + [4380] = {.lex_state = 1751}, + [4381] = {.lex_state = 1631}, + [4382] = {.lex_state = 1631}, + [4383] = {.lex_state = 1631}, + [4384] = {.lex_state = 43}, + [4385] = {.lex_state = 38}, + [4386] = {.lex_state = 43}, + [4387] = {.lex_state = 1631}, + [4388] = {.lex_state = 1631}, + [4389] = {.lex_state = 1631}, + [4390] = {.lex_state = 1631}, + [4391] = {.lex_state = 1631}, + [4392] = {.lex_state = 43}, + [4393] = {.lex_state = 1631}, + [4394] = {.lex_state = 1731}, + [4395] = {.lex_state = 1779}, + [4396] = {.lex_state = 1631}, + [4397] = {.lex_state = 1779}, + [4398] = {.lex_state = 1631}, + [4399] = {.lex_state = 38}, + [4400] = {.lex_state = 1631}, + [4401] = {.lex_state = 1631}, + [4402] = {.lex_state = 1631}, + [4403] = {.lex_state = 1631}, + [4404] = {.lex_state = 1631}, + [4405] = {.lex_state = 1631}, + [4406] = {.lex_state = 1631}, [4407] = {.lex_state = 43}, [4408] = {.lex_state = 43}, - [4409] = {.lex_state = 1627}, - [4410] = {.lex_state = 1627}, - [4411] = {.lex_state = 1627}, - [4412] = {.lex_state = 1763}, - [4413] = {.lex_state = 1627}, - [4414] = {.lex_state = 1627}, - [4415] = {.lex_state = 1627}, - [4416] = {.lex_state = 1727}, - [4417] = {.lex_state = 1627}, - [4418] = {.lex_state = 1627}, - [4419] = {.lex_state = 1747}, - [4420] = {.lex_state = 56}, + [4409] = {.lex_state = 43}, + [4410] = {.lex_state = 43}, + [4411] = {.lex_state = 43}, + [4412] = {.lex_state = 43}, + [4413] = {.lex_state = 43}, + [4414] = {.lex_state = 43}, + [4415] = {.lex_state = 43}, + [4416] = {.lex_state = 43}, + [4417] = {.lex_state = 43}, + [4418] = {.lex_state = 43}, + [4419] = {.lex_state = 43}, + [4420] = {.lex_state = 43}, [4421] = {.lex_state = 43}, - [4422] = {.lex_state = 1627}, - [4423] = {.lex_state = 1627}, - [4424] = {.lex_state = 1627}, - [4425] = {.lex_state = 1627}, - [4426] = {.lex_state = 1627}, - [4427] = {.lex_state = 1727}, - [4428] = {.lex_state = 1627}, - [4429] = {.lex_state = 1627}, - [4430] = {.lex_state = 1627}, - [4431] = {.lex_state = 1627}, - [4432] = {.lex_state = 1627}, - [4433] = {.lex_state = 1627}, - [4434] = {.lex_state = 1627}, - [4435] = {.lex_state = 1627}, - [4436] = {.lex_state = 1627}, - [4437] = {.lex_state = 1627}, - [4438] = {.lex_state = 1627}, - [4439] = {.lex_state = 1627}, - [4440] = {.lex_state = 43}, - [4441] = {.lex_state = 43}, - [4442] = {.lex_state = 43}, - [4443] = {.lex_state = 1627}, - [4444] = {.lex_state = 43}, - [4445] = {.lex_state = 43}, - [4446] = {.lex_state = 1775}, - [4447] = {.lex_state = 1660}, - [4448] = {.lex_state = 1765}, - [4449] = {.lex_state = 1627}, - [4450] = {.lex_state = 1627}, - [4451] = {.lex_state = 1775}, - [4452] = {.lex_state = 1775}, - [4453] = {.lex_state = 1627}, - [4454] = {.lex_state = 1627}, - [4455] = {.lex_state = 1627}, - [4456] = {.lex_state = 1627}, - [4457] = {.lex_state = 43}, - [4458] = {.lex_state = 1627}, - [4459] = {.lex_state = 1627}, - [4460] = {.lex_state = 1627}, - [4461] = {.lex_state = 1627}, - [4462] = {.lex_state = 1627}, - [4463] = {.lex_state = 1747}, - [4464] = {.lex_state = 1627}, - [4465] = {.lex_state = 1627}, - [4466] = {.lex_state = 43}, - [4467] = {.lex_state = 1627}, - [4468] = {.lex_state = 1627}, - [4469] = {.lex_state = 1627}, - [4470] = {.lex_state = 1627}, - [4471] = {.lex_state = 1627}, - [4472] = {.lex_state = 43}, - [4473] = {.lex_state = 1627}, - [4474] = {.lex_state = 1765}, - [4475] = {.lex_state = 1765}, - [4476] = {.lex_state = 43}, - [4477] = {.lex_state = 43}, - [4478] = {.lex_state = 1775}, - [4479] = {.lex_state = 1775}, - [4480] = {.lex_state = 1775}, - [4481] = {.lex_state = 1775}, - [4482] = {.lex_state = 43}, + [4422] = {.lex_state = 43}, + [4423] = {.lex_state = 43}, + [4424] = {.lex_state = 43}, + [4425] = {.lex_state = 43}, + [4426] = {.lex_state = 43}, + [4427] = {.lex_state = 1631}, + [4428] = {.lex_state = 1631}, + [4429] = {.lex_state = 1631}, + [4430] = {.lex_state = 1631}, + [4431] = {.lex_state = 1631}, + [4432] = {.lex_state = 1631}, + [4433] = {.lex_state = 1631}, + [4434] = {.lex_state = 43}, + [4435] = {.lex_state = 1631}, + [4436] = {.lex_state = 1631}, + [4437] = {.lex_state = 43}, + [4438] = {.lex_state = 1631}, + [4439] = {.lex_state = 1631}, + [4440] = {.lex_state = 1631}, + [4441] = {.lex_state = 1631}, + [4442] = {.lex_state = 1631}, + [4443] = {.lex_state = 1631}, + [4444] = {.lex_state = 1631}, + [4445] = {.lex_state = 1631}, + [4446] = {.lex_state = 1631}, + [4447] = {.lex_state = 1631}, + [4448] = {.lex_state = 1631}, + [4449] = {.lex_state = 1631}, + [4450] = {.lex_state = 1631}, + [4451] = {.lex_state = 1631}, + [4452] = {.lex_state = 1631}, + [4453] = {.lex_state = 1631}, + [4454] = {.lex_state = 1631}, + [4455] = {.lex_state = 1631}, + [4456] = {.lex_state = 1631}, + [4457] = {.lex_state = 1631}, + [4458] = {.lex_state = 1631}, + [4459] = {.lex_state = 1631}, + [4460] = {.lex_state = 1631}, + [4461] = {.lex_state = 1631}, + [4462] = {.lex_state = 1767}, + [4463] = {.lex_state = 57}, + [4464] = {.lex_state = 1631}, + [4465] = {.lex_state = 1631}, + [4466] = {.lex_state = 1631}, + [4467] = {.lex_state = 1631}, + [4468] = {.lex_state = 1768}, + [4469] = {.lex_state = 1631}, + [4470] = {.lex_state = 1731}, + [4471] = {.lex_state = 43}, + [4472] = {.lex_state = 1701}, + [4473] = {.lex_state = 1631}, + [4474] = {.lex_state = 1731}, + [4475] = {.lex_state = 1776}, + [4476] = {.lex_state = 1631}, + [4477] = {.lex_state = 1769}, + [4478] = {.lex_state = 43}, + [4479] = {.lex_state = 1631}, + [4480] = {.lex_state = 43}, + [4481] = {.lex_state = 43}, + [4482] = {.lex_state = 1769}, [4483] = {.lex_state = 43}, [4484] = {.lex_state = 43}, - [4485] = {.lex_state = 1627}, - [4486] = {.lex_state = 1627}, - [4487] = {.lex_state = 1627}, - [4488] = {.lex_state = 1627}, - [4489] = {.lex_state = 1627}, - [4490] = {.lex_state = 1627}, - [4491] = {.lex_state = 1627}, - [4492] = {.lex_state = 1627}, - [4493] = {.lex_state = 1627}, - [4494] = {.lex_state = 1627}, - [4495] = {.lex_state = 1627}, - [4496] = {.lex_state = 1627}, - [4497] = {.lex_state = 1627}, - [4498] = {.lex_state = 1627}, - [4499] = {.lex_state = 1627}, - [4500] = {.lex_state = 1627}, - [4501] = {.lex_state = 1627}, - [4502] = {.lex_state = 43}, - [4503] = {.lex_state = 43}, - [4504] = {.lex_state = 1775}, - [4505] = {.lex_state = 1772}, - [4506] = {.lex_state = 1765}, - [4507] = {.lex_state = 1759}, - [4508] = {.lex_state = 58}, - [4509] = {.lex_state = 1767}, - [4510] = {.lex_state = 58}, - [4511] = {.lex_state = 1766}, - [4512] = {.lex_state = 1727}, - [4513] = {.lex_state = 1734}, - [4514] = {.lex_state = 1697}, - [4515] = {.lex_state = 1627}, - [4516] = {.lex_state = 1727}, - [4517] = {.lex_state = 43}, - [4518] = {.lex_state = 43}, - [4519] = {.lex_state = 1727}, - [4520] = {.lex_state = 1697}, - [4521] = {.lex_state = 1697}, - [4522] = {.lex_state = 43}, - [4523] = {.lex_state = 43}, - [4524] = {.lex_state = 1627}, - [4525] = {.lex_state = 43}, - [4526] = {.lex_state = 43}, - [4527] = {.lex_state = 1727}, - [4528] = {.lex_state = 1627}, - [4529] = {.lex_state = 1627}, - [4530] = {.lex_state = 1627}, - [4531] = {.lex_state = 1697}, - [4532] = {.lex_state = 43}, + [4485] = {.lex_state = 43}, + [4486] = {.lex_state = 43}, + [4487] = {.lex_state = 1631}, + [4488] = {.lex_state = 43}, + [4489] = {.lex_state = 1779}, + [4490] = {.lex_state = 1731}, + [4491] = {.lex_state = 1731}, + [4492] = {.lex_state = 1631}, + [4493] = {.lex_state = 1779}, + [4494] = {.lex_state = 1731}, + [4495] = {.lex_state = 1698}, + [4496] = {.lex_state = 1769}, + [4497] = {.lex_state = 43}, + [4498] = {.lex_state = 1631}, + [4499] = {.lex_state = 1769}, + [4500] = {.lex_state = 1701}, + [4501] = {.lex_state = 1731}, + [4502] = {.lex_state = 1631}, + [4503] = {.lex_state = 1631}, + [4504] = {.lex_state = 43}, + [4505] = {.lex_state = 43}, + [4506] = {.lex_state = 1769}, + [4507] = {.lex_state = 1631}, + [4508] = {.lex_state = 1631}, + [4509] = {.lex_state = 43}, + [4510] = {.lex_state = 1698}, + [4511] = {.lex_state = 43}, + [4512] = {.lex_state = 43}, + [4513] = {.lex_state = 1779}, + [4514] = {.lex_state = 1631}, + [4515] = {.lex_state = 1631}, + [4516] = {.lex_state = 1631}, + [4517] = {.lex_state = 1631}, + [4518] = {.lex_state = 1631}, + [4519] = {.lex_state = 1631}, + [4520] = {.lex_state = 1631}, + [4521] = {.lex_state = 1763}, + [4522] = {.lex_state = 1731}, + [4523] = {.lex_state = 1770}, + [4524] = {.lex_state = 43}, + [4525] = {.lex_state = 1738}, + [4526] = {.lex_state = 1731}, + [4527] = {.lex_state = 43}, + [4528] = {.lex_state = 43}, + [4529] = {.lex_state = 1701}, + [4530] = {.lex_state = 43}, + [4531] = {.lex_state = 43}, + [4532] = {.lex_state = 1631}, [4533] = {.lex_state = 43}, - [4534] = {.lex_state = 43}, - [4535] = {.lex_state = 1697}, - [4536] = {.lex_state = 1765}, - [4537] = {.lex_state = 43}, - [4538] = {.lex_state = 1694}, - [4539] = {.lex_state = 1765}, - [4540] = {.lex_state = 1765}, - [4541] = {.lex_state = 1765}, - [4542] = {.lex_state = 43}, - [4543] = {.lex_state = 43}, - [4544] = {.lex_state = 43}, - [4545] = {.lex_state = 1727}, - [4546] = {.lex_state = 1727}, - [4547] = {.lex_state = 1727}, - [4548] = {.lex_state = 1727}, - [4549] = {.lex_state = 1694}, - [4550] = {.lex_state = 1765}, - [4551] = {.lex_state = 43}, - [4552] = {.lex_state = 43}, - [4553] = {.lex_state = 1734}, - [4554] = {.lex_state = 1734}, - [4555] = {.lex_state = 1765}, - [4556] = {.lex_state = 1765}, - [4557] = {.lex_state = 43}, - [4558] = {.lex_state = 43}, - [4559] = {.lex_state = 43}, - [4560] = {.lex_state = 1697}, - [4561] = {.lex_state = 1727}, - [4562] = {.lex_state = 1697}, - [4563] = {.lex_state = 1697}, - [4564] = {.lex_state = 1697}, - [4565] = {.lex_state = 1697}, - [4566] = {.lex_state = 1697}, - [4567] = {.lex_state = 1697}, - [4568] = {.lex_state = 1697}, - [4569] = {.lex_state = 1697}, - [4570] = {.lex_state = 1697}, - [4571] = {.lex_state = 1767}, - [4572] = {.lex_state = 1766}, - [4573] = {.lex_state = 1768}, - [4574] = {.lex_state = 59}, - [4575] = {.lex_state = 74}, - [4576] = {.lex_state = 1694}, - [4577] = {.lex_state = 59}, - [4578] = {.lex_state = 1768}, - [4579] = {.lex_state = 1694}, - [4580] = {.lex_state = 59}, - [4581] = {.lex_state = 59}, - [4582] = {.lex_state = 1697}, - [4583] = {.lex_state = 1697}, - [4584] = {.lex_state = 1694}, - [4585] = {.lex_state = 1697}, - [4586] = {.lex_state = 1697}, - [4587] = {.lex_state = 1697}, - [4588] = {.lex_state = 1697}, - [4589] = {.lex_state = 38}, - [4590] = {.lex_state = 1697}, - [4591] = {.lex_state = 1697}, - [4592] = {.lex_state = 1697}, - [4593] = {.lex_state = 1697}, - [4594] = {.lex_state = 1697}, - [4595] = {.lex_state = 1697}, - [4596] = {.lex_state = 1697}, - [4597] = {.lex_state = 1697}, - [4598] = {.lex_state = 1697}, - [4599] = {.lex_state = 1697}, - [4600] = {.lex_state = 59}, - [4601] = {.lex_state = 1697}, - [4602] = {.lex_state = 1627}, - [4603] = {.lex_state = 1697}, - [4604] = {.lex_state = 1697}, - [4605] = {.lex_state = 1697}, - [4606] = {.lex_state = 1697}, - [4607] = {.lex_state = 1697}, - [4608] = {.lex_state = 1697}, - [4609] = {.lex_state = 1697}, - [4610] = {.lex_state = 1697}, - [4611] = {.lex_state = 1697}, - [4612] = {.lex_state = 1697}, - [4613] = {.lex_state = 1697}, - [4614] = {.lex_state = 1697}, - [4615] = {.lex_state = 1697}, - [4616] = {.lex_state = 1697}, - [4617] = {.lex_state = 1697}, - [4618] = {.lex_state = 1697}, - [4619] = {.lex_state = 1697}, - [4620] = {.lex_state = 1697}, - [4621] = {.lex_state = 38}, - [4622] = {.lex_state = 38}, - [4623] = {.lex_state = 59}, - [4624] = {.lex_state = 56}, - [4625] = {.lex_state = 1627}, - [4626] = {.lex_state = 1697}, - [4627] = {.lex_state = 1694}, - [4628] = {.lex_state = 1694}, - [4629] = {.lex_state = 1694}, - [4630] = {.lex_state = 1627}, - [4631] = {.lex_state = 1627}, - [4632] = {.lex_state = 1734}, - [4633] = {.lex_state = 1627}, - [4634] = {.lex_state = 1697}, - [4635] = {.lex_state = 1697}, - [4636] = {.lex_state = 1697}, - [4637] = {.lex_state = 1697}, - [4638] = {.lex_state = 1697}, - [4639] = {.lex_state = 1627}, - [4640] = {.lex_state = 1697}, - [4641] = {.lex_state = 1694}, - [4642] = {.lex_state = 1697}, - [4643] = {.lex_state = 1697}, - [4644] = {.lex_state = 1697}, - [4645] = {.lex_state = 256}, - [4646] = {.lex_state = 1697}, - [4647] = {.lex_state = 1697}, - [4648] = {.lex_state = 1697}, - [4649] = {.lex_state = 38}, - [4650] = {.lex_state = 1697}, - [4651] = {.lex_state = 1697}, - [4652] = {.lex_state = 1697}, - [4653] = {.lex_state = 1697}, - [4654] = {.lex_state = 1697}, - [4655] = {.lex_state = 1697}, - [4656] = {.lex_state = 1697}, - [4657] = {.lex_state = 1734}, - [4658] = {.lex_state = 1697}, - [4659] = {.lex_state = 1697}, - [4660] = {.lex_state = 1697}, - [4661] = {.lex_state = 1697}, - [4662] = {.lex_state = 1697}, - [4663] = {.lex_state = 1697}, - [4664] = {.lex_state = 1697}, - [4665] = {.lex_state = 1697}, - [4666] = {.lex_state = 1697}, - [4667] = {.lex_state = 43}, - [4668] = {.lex_state = 1697}, - [4669] = {.lex_state = 1697}, - [4670] = {.lex_state = 1697}, - [4671] = {.lex_state = 74}, - [4672] = {.lex_state = 1697}, - [4673] = {.lex_state = 1697}, - [4674] = {.lex_state = 1697}, - [4675] = {.lex_state = 50}, - [4676] = {.lex_state = 1627}, - [4677] = {.lex_state = 74}, - [4678] = {.lex_state = 50}, - [4679] = {.lex_state = 50}, - [4680] = {.lex_state = 74}, - [4681] = {.lex_state = 1727}, - [4682] = {.lex_state = 74}, - [4683] = {.lex_state = 38}, - [4684] = {.lex_state = 1697}, - [4685] = {.lex_state = 1627}, - [4686] = {.lex_state = 50}, - [4687] = {.lex_state = 50}, - [4688] = {.lex_state = 1694}, - [4689] = {.lex_state = 50}, - [4690] = {.lex_state = 50}, - [4691] = {.lex_state = 1765}, - [4692] = {.lex_state = 1734}, - [4693] = {.lex_state = 1727}, - [4694] = {.lex_state = 43}, - [4695] = {.lex_state = 1694}, - [4696] = {.lex_state = 1697}, - [4697] = {.lex_state = 1697}, - [4698] = {.lex_state = 1697}, - [4699] = {.lex_state = 1694}, - [4700] = {.lex_state = 43}, - [4701] = {.lex_state = 43}, - [4702] = {.lex_state = 1694}, - [4703] = {.lex_state = 1694}, - [4704] = {.lex_state = 1694}, - [4705] = {.lex_state = 1697}, - [4706] = {.lex_state = 1697}, - [4707] = {.lex_state = 1697}, - [4708] = {.lex_state = 1697}, - [4709] = {.lex_state = 1697}, - [4710] = {.lex_state = 1627}, - [4711] = {.lex_state = 1697}, - [4712] = {.lex_state = 59}, - [4713] = {.lex_state = 1734}, - [4714] = {.lex_state = 1694}, - [4715] = {.lex_state = 59}, + [4534] = {.lex_state = 1631}, + [4535] = {.lex_state = 1631}, + [4536] = {.lex_state = 1631}, + [4537] = {.lex_state = 1738}, + [4538] = {.lex_state = 1738}, + [4539] = {.lex_state = 1701}, + [4540] = {.lex_state = 43}, + [4541] = {.lex_state = 1769}, + [4542] = {.lex_state = 1769}, + [4543] = {.lex_state = 1631}, + [4544] = {.lex_state = 1701}, + [4545] = {.lex_state = 1779}, + [4546] = {.lex_state = 1779}, + [4547] = {.lex_state = 43}, + [4548] = {.lex_state = 58}, + [4549] = {.lex_state = 1771}, + [4550] = {.lex_state = 1769}, + [4551] = {.lex_state = 1769}, + [4552] = {.lex_state = 1769}, + [4553] = {.lex_state = 58}, + [4554] = {.lex_state = 43}, + [4555] = {.lex_state = 1701}, + [4556] = {.lex_state = 1669}, + [4557] = {.lex_state = 1701}, + [4558] = {.lex_state = 1701}, + [4559] = {.lex_state = 1701}, + [4560] = {.lex_state = 59}, + [4561] = {.lex_state = 1701}, + [4562] = {.lex_state = 1701}, + [4563] = {.lex_state = 1701}, + [4564] = {.lex_state = 1701}, + [4565] = {.lex_state = 1701}, + [4566] = {.lex_state = 1701}, + [4567] = {.lex_state = 1701}, + [4568] = {.lex_state = 1701}, + [4569] = {.lex_state = 1701}, + [4570] = {.lex_state = 1701}, + [4571] = {.lex_state = 51}, + [4572] = {.lex_state = 51}, + [4573] = {.lex_state = 1701}, + [4574] = {.lex_state = 51}, + [4575] = {.lex_state = 1698}, + [4576] = {.lex_state = 1698}, + [4577] = {.lex_state = 1701}, + [4578] = {.lex_state = 59}, + [4579] = {.lex_state = 59}, + [4580] = {.lex_state = 1701}, + [4581] = {.lex_state = 1701}, + [4582] = {.lex_state = 1701}, + [4583] = {.lex_state = 74}, + [4584] = {.lex_state = 59}, + [4585] = {.lex_state = 74}, + [4586] = {.lex_state = 59}, + [4587] = {.lex_state = 1701}, + [4588] = {.lex_state = 1701}, + [4589] = {.lex_state = 1631}, + [4590] = {.lex_state = 38}, + [4591] = {.lex_state = 1631}, + [4592] = {.lex_state = 43}, + [4593] = {.lex_state = 1701}, + [4594] = {.lex_state = 1701}, + [4595] = {.lex_state = 43}, + [4596] = {.lex_state = 1698}, + [4597] = {.lex_state = 51}, + [4598] = {.lex_state = 1698}, + [4599] = {.lex_state = 1701}, + [4600] = {.lex_state = 1701}, + [4601] = {.lex_state = 1701}, + [4602] = {.lex_state = 1701}, + [4603] = {.lex_state = 1701}, + [4604] = {.lex_state = 1701}, + [4605] = {.lex_state = 1701}, + [4606] = {.lex_state = 1701}, + [4607] = {.lex_state = 1701}, + [4608] = {.lex_state = 1701}, + [4609] = {.lex_state = 51}, + [4610] = {.lex_state = 1701}, + [4611] = {.lex_state = 1701}, + [4612] = {.lex_state = 1698}, + [4613] = {.lex_state = 1631}, + [4614] = {.lex_state = 1698}, + [4615] = {.lex_state = 1698}, + [4616] = {.lex_state = 1698}, + [4617] = {.lex_state = 1631}, + [4618] = {.lex_state = 1701}, + [4619] = {.lex_state = 1631}, + [4620] = {.lex_state = 1701}, + [4621] = {.lex_state = 1698}, + [4622] = {.lex_state = 1701}, + [4623] = {.lex_state = 1738}, + [4624] = {.lex_state = 1701}, + [4625] = {.lex_state = 1631}, + [4626] = {.lex_state = 51}, + [4627] = {.lex_state = 1631}, + [4628] = {.lex_state = 1738}, + [4629] = {.lex_state = 1701}, + [4630] = {.lex_state = 1701}, + [4631] = {.lex_state = 1738}, + [4632] = {.lex_state = 1731}, + [4633] = {.lex_state = 1701}, + [4634] = {.lex_state = 38}, + [4635] = {.lex_state = 43}, + [4636] = {.lex_state = 43}, + [4637] = {.lex_state = 43}, + [4638] = {.lex_state = 1698}, + [4639] = {.lex_state = 1669}, + [4640] = {.lex_state = 1701}, + [4641] = {.lex_state = 1701}, + [4642] = {.lex_state = 1701}, + [4643] = {.lex_state = 74}, + [4644] = {.lex_state = 1631}, + [4645] = {.lex_state = 1701}, + [4646] = {.lex_state = 1731}, + [4647] = {.lex_state = 74}, + [4648] = {.lex_state = 1701}, + [4649] = {.lex_state = 1701}, + [4650] = {.lex_state = 1701}, + [4651] = {.lex_state = 1701}, + [4652] = {.lex_state = 1698}, + [4653] = {.lex_state = 1698}, + [4654] = {.lex_state = 1701}, + [4655] = {.lex_state = 1731}, + [4656] = {.lex_state = 1701}, + [4657] = {.lex_state = 1701}, + [4658] = {.lex_state = 1701}, + [4659] = {.lex_state = 38}, + [4660] = {.lex_state = 1669}, + [4661] = {.lex_state = 38}, + [4662] = {.lex_state = 1631}, + [4663] = {.lex_state = 1701}, + [4664] = {.lex_state = 1669}, + [4665] = {.lex_state = 1701}, + [4666] = {.lex_state = 38}, + [4667] = {.lex_state = 1701}, + [4668] = {.lex_state = 1771}, + [4669] = {.lex_state = 1701}, + [4670] = {.lex_state = 1701}, + [4671] = {.lex_state = 1701}, + [4672] = {.lex_state = 1701}, + [4673] = {.lex_state = 1701}, + [4674] = {.lex_state = 1701}, + [4675] = {.lex_state = 1701}, + [4676] = {.lex_state = 1701}, + [4677] = {.lex_state = 1669}, + [4678] = {.lex_state = 1701}, + [4679] = {.lex_state = 1701}, + [4680] = {.lex_state = 1701}, + [4681] = {.lex_state = 1770}, + [4682] = {.lex_state = 1701}, + [4683] = {.lex_state = 1701}, + [4684] = {.lex_state = 1701}, + [4685] = {.lex_state = 56}, + [4686] = {.lex_state = 1701}, + [4687] = {.lex_state = 1701}, + [4688] = {.lex_state = 1701}, + [4689] = {.lex_state = 1669}, + [4690] = {.lex_state = 74}, + [4691] = {.lex_state = 1701}, + [4692] = {.lex_state = 1772}, + [4693] = {.lex_state = 1701}, + [4694] = {.lex_state = 1701}, + [4695] = {.lex_state = 1698}, + [4696] = {.lex_state = 1701}, + [4697] = {.lex_state = 59}, + [4698] = {.lex_state = 1701}, + [4699] = {.lex_state = 1701}, + [4700] = {.lex_state = 51}, + [4701] = {.lex_state = 1701}, + [4702] = {.lex_state = 1701}, + [4703] = {.lex_state = 1701}, + [4704] = {.lex_state = 256}, + [4705] = {.lex_state = 59}, + [4706] = {.lex_state = 1772}, + [4707] = {.lex_state = 1701}, + [4708] = {.lex_state = 1701}, + [4709] = {.lex_state = 1738}, + [4710] = {.lex_state = 1698}, + [4711] = {.lex_state = 1631}, + [4712] = {.lex_state = 1631}, + [4713] = {.lex_state = 43}, + [4714] = {.lex_state = 1701}, + [4715] = {.lex_state = 1701}, [4716] = {.lex_state = 59}, - [4717] = {.lex_state = 1627}, - [4718] = {.lex_state = 1627}, - [4719] = {.lex_state = 1697}, - [4720] = {.lex_state = 43}, - [4721] = {.lex_state = 43}, - [4722] = {.lex_state = 1697}, - [4723] = {.lex_state = 1697}, - [4724] = {.lex_state = 43}, - [4725] = {.lex_state = 43}, - [4726] = {.lex_state = 1697}, - [4727] = {.lex_state = 1697}, - [4728] = {.lex_state = 1697}, - [4729] = {.lex_state = 1697}, - [4730] = {.lex_state = 1697}, + [4717] = {.lex_state = 59}, + [4718] = {.lex_state = 1769}, + [4719] = {.lex_state = 1701}, + [4720] = {.lex_state = 1701}, + [4721] = {.lex_state = 1701}, + [4722] = {.lex_state = 1701}, + [4723] = {.lex_state = 1740}, + [4724] = {.lex_state = 1701}, + [4725] = {.lex_state = 1701}, + [4726] = {.lex_state = 43}, + [4727] = {.lex_state = 1631}, + [4728] = {.lex_state = 43}, + [4729] = {.lex_state = 1701}, + [4730] = {.lex_state = 43}, [4731] = {.lex_state = 43}, - [4732] = {.lex_state = 43}, - [4733] = {.lex_state = 1627}, - [4734] = {.lex_state = 43}, + [4732] = {.lex_state = 257}, + [4733] = {.lex_state = 1740}, + [4734] = {.lex_state = 1701}, [4735] = {.lex_state = 43}, - [4736] = {.lex_state = 43}, + [4736] = {.lex_state = 1701}, [4737] = {.lex_state = 43}, - [4738] = {.lex_state = 1697}, - [4739] = {.lex_state = 43}, - [4740] = {.lex_state = 1697}, - [4741] = {.lex_state = 1731}, - [4742] = {.lex_state = 1694}, - [4743] = {.lex_state = 1627}, - [4744] = {.lex_state = 1697}, - [4745] = {.lex_state = 1627}, - [4746] = {.lex_state = 43}, - [4747] = {.lex_state = 43}, - [4748] = {.lex_state = 1697}, - [4749] = {.lex_state = 1697}, - [4750] = {.lex_state = 43}, - [4751] = {.lex_state = 43}, - [4752] = {.lex_state = 1627}, - [4753] = {.lex_state = 1627}, - [4754] = {.lex_state = 1697}, - [4755] = {.lex_state = 1697}, - [4756] = {.lex_state = 64}, - [4757] = {.lex_state = 1768}, + [4738] = {.lex_state = 1631}, + [4739] = {.lex_state = 1631}, + [4740] = {.lex_state = 1740}, + [4741] = {.lex_state = 1701}, + [4742] = {.lex_state = 43}, + [4743] = {.lex_state = 1631}, + [4744] = {.lex_state = 43}, + [4745] = {.lex_state = 1631}, + [4746] = {.lex_state = 1701}, + [4747] = {.lex_state = 1631}, + [4748] = {.lex_state = 1631}, + [4749] = {.lex_state = 43}, + [4750] = {.lex_state = 59}, + [4751] = {.lex_state = 256}, + [4752] = {.lex_state = 1631}, + [4753] = {.lex_state = 1701}, + [4754] = {.lex_state = 1701}, + [4755] = {.lex_state = 1631}, + [4756] = {.lex_state = 1701}, + [4757] = {.lex_state = 43}, [4758] = {.lex_state = 43}, - [4759] = {.lex_state = 1768}, - [4760] = {.lex_state = 43}, - [4761] = {.lex_state = 1769}, - [4762] = {.lex_state = 43}, - [4763] = {.lex_state = 257}, - [4764] = {.lex_state = 1769}, - [4765] = {.lex_state = 1769}, - [4766] = {.lex_state = 1769}, - [4767] = {.lex_state = 43}, - [4768] = {.lex_state = 259}, - [4769] = {.lex_state = 1697}, - [4770] = {.lex_state = 1697}, - [4771] = {.lex_state = 1697}, - [4772] = {.lex_state = 1627}, - [4773] = {.lex_state = 43}, - [4774] = {.lex_state = 43}, + [4759] = {.lex_state = 43}, + [4760] = {.lex_state = 1740}, + [4761] = {.lex_state = 1701}, + [4762] = {.lex_state = 1701}, + [4763] = {.lex_state = 1631}, + [4764] = {.lex_state = 260}, + [4765] = {.lex_state = 43}, + [4766] = {.lex_state = 1701}, + [4767] = {.lex_state = 1701}, + [4768] = {.lex_state = 43}, + [4769] = {.lex_state = 1701}, + [4770] = {.lex_state = 1701}, + [4771] = {.lex_state = 1631}, + [4772] = {.lex_state = 1701}, + [4773] = {.lex_state = 1631}, + [4774] = {.lex_state = 1701}, [4775] = {.lex_state = 43}, - [4776] = {.lex_state = 1627}, - [4777] = {.lex_state = 1627}, - [4778] = {.lex_state = 1697}, - [4779] = {.lex_state = 1697}, - [4780] = {.lex_state = 1697}, - [4781] = {.lex_state = 1627}, - [4782] = {.lex_state = 1627}, - [4783] = {.lex_state = 1627}, - [4784] = {.lex_state = 43}, - [4785] = {.lex_state = 43}, - [4786] = {.lex_state = 43}, + [4776] = {.lex_state = 1701}, + [4777] = {.lex_state = 1701}, + [4778] = {.lex_state = 1631}, + [4779] = {.lex_state = 1631}, + [4780] = {.lex_state = 43}, + [4781] = {.lex_state = 1735}, + [4782] = {.lex_state = 1701}, + [4783] = {.lex_state = 1701}, + [4784] = {.lex_state = 1701}, + [4785] = {.lex_state = 1701}, + [4786] = {.lex_state = 1631}, [4787] = {.lex_state = 43}, - [4788] = {.lex_state = 1697}, - [4789] = {.lex_state = 1697}, - [4790] = {.lex_state = 1697}, - [4791] = {.lex_state = 1697}, - [4792] = {.lex_state = 1697}, - [4793] = {.lex_state = 1627}, - [4794] = {.lex_state = 263}, - [4795] = {.lex_state = 1627}, - [4796] = {.lex_state = 1697}, - [4797] = {.lex_state = 43}, - [4798] = {.lex_state = 1627}, - [4799] = {.lex_state = 43}, - [4800] = {.lex_state = 43}, - [4801] = {.lex_state = 259}, - [4802] = {.lex_state = 43}, - [4803] = {.lex_state = 1697}, - [4804] = {.lex_state = 1627}, - [4805] = {.lex_state = 1697}, + [4788] = {.lex_state = 43}, + [4789] = {.lex_state = 43}, + [4790] = {.lex_state = 1701}, + [4791] = {.lex_state = 1701}, + [4792] = {.lex_state = 1631}, + [4793] = {.lex_state = 43}, + [4794] = {.lex_state = 43}, + [4795] = {.lex_state = 43}, + [4796] = {.lex_state = 1631}, + [4797] = {.lex_state = 1698}, + [4798] = {.lex_state = 43}, + [4799] = {.lex_state = 1701}, + [4800] = {.lex_state = 1740}, + [4801] = {.lex_state = 1701}, + [4802] = {.lex_state = 1701}, + [4803] = {.lex_state = 43}, + [4804] = {.lex_state = 43}, + [4805] = {.lex_state = 1701}, [4806] = {.lex_state = 43}, - [4807] = {.lex_state = 1697}, + [4807] = {.lex_state = 43}, [4808] = {.lex_state = 43}, - [4809] = {.lex_state = 1627}, - [4810] = {.lex_state = 1694}, + [4809] = {.lex_state = 43}, + [4810] = {.lex_state = 43}, [4811] = {.lex_state = 43}, - [4812] = {.lex_state = 260}, - [4813] = {.lex_state = 1697}, - [4814] = {.lex_state = 43}, - [4815] = {.lex_state = 43}, - [4816] = {.lex_state = 43}, - [4817] = {.lex_state = 1697}, - [4818] = {.lex_state = 1697}, - [4819] = {.lex_state = 1697}, - [4820] = {.lex_state = 1697}, - [4821] = {.lex_state = 1697}, - [4822] = {.lex_state = 43}, - [4823] = {.lex_state = 1697}, - [4824] = {.lex_state = 43}, - [4825] = {.lex_state = 1697}, - [4826] = {.lex_state = 1697}, - [4827] = {.lex_state = 43}, - [4828] = {.lex_state = 1697}, - [4829] = {.lex_state = 1697}, - [4830] = {.lex_state = 1697}, - [4831] = {.lex_state = 1697}, - [4832] = {.lex_state = 1697}, - [4833] = {.lex_state = 1697}, - [4834] = {.lex_state = 43}, - [4835] = {.lex_state = 1697}, - [4836] = {.lex_state = 43}, - [4837] = {.lex_state = 1697}, - [4838] = {.lex_state = 1697}, - [4839] = {.lex_state = 1697}, - [4840] = {.lex_state = 1697}, - [4841] = {.lex_state = 1627}, - [4842] = {.lex_state = 1697}, - [4843] = {.lex_state = 43}, - [4844] = {.lex_state = 1697}, - [4845] = {.lex_state = 43}, - [4846] = {.lex_state = 1697}, - [4847] = {.lex_state = 1697}, - [4848] = {.lex_state = 1697}, - [4849] = {.lex_state = 1697}, - [4850] = {.lex_state = 256}, - [4851] = {.lex_state = 1736}, - [4852] = {.lex_state = 1736}, - [4853] = {.lex_state = 1736}, - [4854] = {.lex_state = 1736}, - [4855] = {.lex_state = 1736}, - [4856] = {.lex_state = 1736}, - [4857] = {.lex_state = 1736}, - [4858] = {.lex_state = 1736}, - [4859] = {.lex_state = 1736}, - [4860] = {.lex_state = 1736}, - [4861] = {.lex_state = 1736}, - [4862] = {.lex_state = 1736}, - [4863] = {.lex_state = 1736}, - [4864] = {.lex_state = 1736}, - [4865] = {.lex_state = 1736}, - [4866] = {.lex_state = 1736}, - [4867] = {.lex_state = 1736}, - [4868] = {.lex_state = 1736}, - [4869] = {.lex_state = 1736}, - [4870] = {.lex_state = 1736}, - [4871] = {.lex_state = 1736}, - [4872] = {.lex_state = 1736}, - [4873] = {.lex_state = 1627}, - [4874] = {.lex_state = 1627}, - [4875] = {.lex_state = 59}, - [4876] = {.lex_state = 43}, - [4877] = {.lex_state = 50}, - [4878] = {.lex_state = 43}, - [4879] = {.lex_state = 1627}, - [4880] = {.lex_state = 1697}, - [4881] = {.lex_state = 43}, - [4882] = {.lex_state = 43}, - [4883] = {.lex_state = 1697}, - [4884] = {.lex_state = 1697}, - [4885] = {.lex_state = 1627}, - [4886] = {.lex_state = 1697}, - [4887] = {.lex_state = 43}, - [4888] = {.lex_state = 1697}, - [4889] = {.lex_state = 1697}, - [4890] = {.lex_state = 43}, - [4891] = {.lex_state = 1697}, - [4892] = {.lex_state = 1627}, - [4893] = {.lex_state = 1627}, - [4894] = {.lex_state = 1627}, - [4895] = {.lex_state = 260}, - [4896] = {.lex_state = 1627}, - [4897] = {.lex_state = 50}, - [4898] = {.lex_state = 1627}, - [4899] = {.lex_state = 43}, - [4900] = {.lex_state = 43}, - [4901] = {.lex_state = 1627}, - [4902] = {.lex_state = 1627}, - [4903] = {.lex_state = 1697}, - [4904] = {.lex_state = 1697}, - [4905] = {.lex_state = 43}, - [4906] = {.lex_state = 1627}, - [4907] = {.lex_state = 1627}, + [4812] = {.lex_state = 43}, + [4813] = {.lex_state = 1701}, + [4814] = {.lex_state = 1740}, + [4815] = {.lex_state = 1701}, + [4816] = {.lex_state = 51}, + [4817] = {.lex_state = 1631}, + [4818] = {.lex_state = 1740}, + [4819] = {.lex_state = 1701}, + [4820] = {.lex_state = 43}, + [4821] = {.lex_state = 1701}, + [4822] = {.lex_state = 1740}, + [4823] = {.lex_state = 1698}, + [4824] = {.lex_state = 1701}, + [4825] = {.lex_state = 1740}, + [4826] = {.lex_state = 1740}, + [4827] = {.lex_state = 1701}, + [4828] = {.lex_state = 1701}, + [4829] = {.lex_state = 1701}, + [4830] = {.lex_state = 1701}, + [4831] = {.lex_state = 259}, + [4832] = {.lex_state = 1701}, + [4833] = {.lex_state = 43}, + [4834] = {.lex_state = 1701}, + [4835] = {.lex_state = 1701}, + [4836] = {.lex_state = 1701}, + [4837] = {.lex_state = 43}, + [4838] = {.lex_state = 263}, + [4839] = {.lex_state = 43}, + [4840] = {.lex_state = 1701}, + [4841] = {.lex_state = 1740}, + [4842] = {.lex_state = 1701}, + [4843] = {.lex_state = 1701}, + [4844] = {.lex_state = 1740}, + [4845] = {.lex_state = 51}, + [4846] = {.lex_state = 1701}, + [4847] = {.lex_state = 1740}, + [4848] = {.lex_state = 1701}, + [4849] = {.lex_state = 1701}, + [4850] = {.lex_state = 1740}, + [4851] = {.lex_state = 1701}, + [4852] = {.lex_state = 1701}, + [4853] = {.lex_state = 43}, + [4854] = {.lex_state = 1701}, + [4855] = {.lex_state = 43}, + [4856] = {.lex_state = 1631}, + [4857] = {.lex_state = 43}, + [4858] = {.lex_state = 43}, + [4859] = {.lex_state = 1772}, + [4860] = {.lex_state = 43}, + [4861] = {.lex_state = 1701}, + [4862] = {.lex_state = 1701}, + [4863] = {.lex_state = 1701}, + [4864] = {.lex_state = 1701}, + [4865] = {.lex_state = 1740}, + [4866] = {.lex_state = 1698}, + [4867] = {.lex_state = 1698}, + [4868] = {.lex_state = 1698}, + [4869] = {.lex_state = 1698}, + [4870] = {.lex_state = 1698}, + [4871] = {.lex_state = 1698}, + [4872] = {.lex_state = 1698}, + [4873] = {.lex_state = 1698}, + [4874] = {.lex_state = 1701}, + [4875] = {.lex_state = 1701}, + [4876] = {.lex_state = 1698}, + [4877] = {.lex_state = 1698}, + [4878] = {.lex_state = 1698}, + [4879] = {.lex_state = 1740}, + [4880] = {.lex_state = 43}, + [4881] = {.lex_state = 1701}, + [4882] = {.lex_state = 1631}, + [4883] = {.lex_state = 1698}, + [4884] = {.lex_state = 43}, + [4885] = {.lex_state = 1701}, + [4886] = {.lex_state = 1735}, + [4887] = {.lex_state = 1772}, + [4888] = {.lex_state = 43}, + [4889] = {.lex_state = 1740}, + [4890] = {.lex_state = 1701}, + [4891] = {.lex_state = 1740}, + [4892] = {.lex_state = 1701}, + [4893] = {.lex_state = 1631}, + [4894] = {.lex_state = 1631}, + [4895] = {.lex_state = 1701}, + [4896] = {.lex_state = 1631}, + [4897] = {.lex_state = 1740}, + [4898] = {.lex_state = 1701}, + [4899] = {.lex_state = 1701}, + [4900] = {.lex_state = 1740}, + [4901] = {.lex_state = 1701}, + [4902] = {.lex_state = 43}, + [4903] = {.lex_state = 1631}, + [4904] = {.lex_state = 1701}, + [4905] = {.lex_state = 260}, + [4906] = {.lex_state = 1631}, + [4907] = {.lex_state = 1631}, [4908] = {.lex_state = 43}, - [4909] = {.lex_state = 43}, - [4910] = {.lex_state = 1736}, - [4911] = {.lex_state = 1627}, - [4912] = {.lex_state = 1627}, - [4913] = {.lex_state = 1769}, - [4914] = {.lex_state = 43}, + [4909] = {.lex_state = 1701}, + [4910] = {.lex_state = 43}, + [4911] = {.lex_state = 1631}, + [4912] = {.lex_state = 43}, + [4913] = {.lex_state = 43}, + [4914] = {.lex_state = 1740}, [4915] = {.lex_state = 43}, - [4916] = {.lex_state = 1627}, - [4917] = {.lex_state = 1627}, - [4918] = {.lex_state = 1731}, - [4919] = {.lex_state = 43}, - [4920] = {.lex_state = 1697}, + [4916] = {.lex_state = 1773}, + [4917] = {.lex_state = 1701}, + [4918] = {.lex_state = 1631}, + [4919] = {.lex_state = 259}, + [4920] = {.lex_state = 43}, [4921] = {.lex_state = 43}, [4922] = {.lex_state = 43}, - [4923] = {.lex_state = 1694}, - [4924] = {.lex_state = 43}, + [4923] = {.lex_state = 43}, + [4924] = {.lex_state = 1701}, [4925] = {.lex_state = 43}, - [4926] = {.lex_state = 43}, - [4927] = {.lex_state = 1697}, - [4928] = {.lex_state = 43}, - [4929] = {.lex_state = 1697}, - [4930] = {.lex_state = 1694}, - [4931] = {.lex_state = 1694}, - [4932] = {.lex_state = 1694}, - [4933] = {.lex_state = 1694}, - [4934] = {.lex_state = 1694}, - [4935] = {.lex_state = 1694}, - [4936] = {.lex_state = 1694}, - [4937] = {.lex_state = 1694}, - [4938] = {.lex_state = 1694}, - [4939] = {.lex_state = 1694}, - [4940] = {.lex_state = 1694}, - [4941] = {.lex_state = 1697}, - [4942] = {.lex_state = 1694}, - [4943] = {.lex_state = 43}, - [4944] = {.lex_state = 1697}, - [4945] = {.lex_state = 1697}, - [4946] = {.lex_state = 1697}, - [4947] = {.lex_state = 1697}, - [4948] = {.lex_state = 43}, - [4949] = {.lex_state = 1697}, - [4950] = {.lex_state = 43}, - [4951] = {.lex_state = 1697}, - [4952] = {.lex_state = 1697}, - [4953] = {.lex_state = 1697}, - [4954] = {.lex_state = 43}, - [4955] = {.lex_state = 1697}, - [4956] = {.lex_state = 1697}, - [4957] = {.lex_state = 1697}, - [4958] = {.lex_state = 1697}, - [4959] = {.lex_state = 1697}, - [4960] = {.lex_state = 43}, - [4961] = {.lex_state = 1665}, - [4962] = {.lex_state = 1627}, - [4963] = {.lex_state = 1627}, - [4964] = {.lex_state = 1627}, - [4965] = {.lex_state = 1627}, - [4966] = {.lex_state = 1627}, - [4967] = {.lex_state = 1627}, + [4926] = {.lex_state = 1740}, + [4927] = {.lex_state = 43}, + [4928] = {.lex_state = 1631}, + [4929] = {.lex_state = 43}, + [4930] = {.lex_state = 1773}, + [4931] = {.lex_state = 43}, + [4932] = {.lex_state = 43}, + [4933] = {.lex_state = 43}, + [4934] = {.lex_state = 1631}, + [4935] = {.lex_state = 43}, + [4936] = {.lex_state = 43}, + [4937] = {.lex_state = 1701}, + [4938] = {.lex_state = 1773}, + [4939] = {.lex_state = 43}, + [4940] = {.lex_state = 43}, + [4941] = {.lex_state = 1701}, + [4942] = {.lex_state = 43}, + [4943] = {.lex_state = 1773}, + [4944] = {.lex_state = 1701}, + [4945] = {.lex_state = 1631}, + [4946] = {.lex_state = 1701}, + [4947] = {.lex_state = 1740}, + [4948] = {.lex_state = 1701}, + [4949] = {.lex_state = 1701}, + [4950] = {.lex_state = 1701}, + [4951] = {.lex_state = 1698}, + [4952] = {.lex_state = 1773}, + [4953] = {.lex_state = 1701}, + [4954] = {.lex_state = 1631}, + [4955] = {.lex_state = 1631}, + [4956] = {.lex_state = 1701}, + [4957] = {.lex_state = 43}, + [4958] = {.lex_state = 1631}, + [4959] = {.lex_state = 43}, + [4960] = {.lex_state = 1701}, + [4961] = {.lex_state = 1701}, + [4962] = {.lex_state = 64}, + [4963] = {.lex_state = 1631}, + [4964] = {.lex_state = 1631}, + [4965] = {.lex_state = 43}, + [4966] = {.lex_state = 43}, + [4967] = {.lex_state = 43}, [4968] = {.lex_state = 43}, - [4969] = {.lex_state = 5146}, - [4970] = {.lex_state = 43}, + [4969] = {.lex_state = 1740}, + [4970] = {.lex_state = 265}, [4971] = {.lex_state = 43}, - [4972] = {.lex_state = 43}, + [4972] = {.lex_state = 265}, [4973] = {.lex_state = 43}, - [4974] = {.lex_state = 43}, - [4975] = {.lex_state = 43}, - [4976] = {.lex_state = 43}, + [4974] = {.lex_state = 1631}, + [4975] = {.lex_state = 1631}, + [4976] = {.lex_state = 1631}, [4977] = {.lex_state = 43}, [4978] = {.lex_state = 43}, - [4979] = {.lex_state = 1627}, - [4980] = {.lex_state = 1627}, - [4981] = {.lex_state = 5146}, - [4982] = {.lex_state = 1627}, - [4983] = {.lex_state = 43}, - [4984] = {.lex_state = 1627}, - [4985] = {.lex_state = 1627}, - [4986] = {.lex_state = 43, .external_lex_state = 2}, - [4987] = {.lex_state = 1627}, - [4988] = {.lex_state = 288}, - [4989] = {.lex_state = 1627}, - [4990] = {.lex_state = 1627}, - [4991] = {.lex_state = 294}, - [4992] = {.lex_state = 1627}, - [4993] = {.lex_state = 1627}, - [4994] = {.lex_state = 1627}, + [4979] = {.lex_state = 43}, + [4980] = {.lex_state = 43}, + [4981] = {.lex_state = 1631}, + [4982] = {.lex_state = 1773}, + [4983] = {.lex_state = 1631}, + [4984] = {.lex_state = 1773}, + [4985] = {.lex_state = 43}, + [4986] = {.lex_state = 1773}, + [4987] = {.lex_state = 43}, + [4988] = {.lex_state = 43}, + [4989] = {.lex_state = 1773}, + [4990] = {.lex_state = 43}, + [4991] = {.lex_state = 43}, + [4992] = {.lex_state = 43}, + [4993] = {.lex_state = 43}, + [4994] = {.lex_state = 43}, [4995] = {.lex_state = 43}, - [4996] = {.lex_state = 256}, - [4997] = {.lex_state = 256}, - [4998] = {.lex_state = 256}, - [4999] = {.lex_state = 256}, - [5000] = {.lex_state = 264}, - [5001] = {.lex_state = 261}, - [5002] = {.lex_state = 1627}, + [4996] = {.lex_state = 43}, + [4997] = {.lex_state = 259}, + [4998] = {.lex_state = 5173}, + [4999] = {.lex_state = 1631}, + [5000] = {.lex_state = 5173}, + [5001] = {.lex_state = 1631}, + [5002] = {.lex_state = 1631}, [5003] = {.lex_state = 43}, [5004] = {.lex_state = 43}, - [5005] = {.lex_state = 1627}, - [5006] = {.lex_state = 1627}, - [5007] = {.lex_state = 274}, - [5008] = {.lex_state = 1627}, - [5009] = {.lex_state = 1627}, - [5010] = {.lex_state = 1627}, - [5011] = {.lex_state = 1627}, - [5012] = {.lex_state = 1627}, - [5013] = {.lex_state = 1627}, - [5014] = {.lex_state = 43}, - [5015] = {.lex_state = 1627}, - [5016] = {.lex_state = 1627}, - [5017] = {.lex_state = 43}, - [5018] = {.lex_state = 1627}, - [5019] = {.lex_state = 43}, - [5020] = {.lex_state = 1627}, - [5021] = {.lex_state = 5146}, - [5022] = {.lex_state = 43}, - [5023] = {.lex_state = 1769}, - [5024] = {.lex_state = 1736}, - [5025] = {.lex_state = 1736}, - [5026] = {.lex_state = 1627}, - [5027] = {.lex_state = 43}, - [5028] = {.lex_state = 43, .external_lex_state = 2}, - [5029] = {.lex_state = 1627}, - [5030] = {.lex_state = 1627}, - [5031] = {.lex_state = 1627}, - [5032] = {.lex_state = 43}, - [5033] = {.lex_state = 1627}, - [5034] = {.lex_state = 43}, - [5035] = {.lex_state = 1627}, - [5036] = {.lex_state = 267}, - [5037] = {.lex_state = 259}, - [5038] = {.lex_state = 259}, - [5039] = {.lex_state = 259}, - [5040] = {.lex_state = 1627}, - [5041] = {.lex_state = 1627}, - [5042] = {.lex_state = 265}, - [5043] = {.lex_state = 43}, - [5044] = {.lex_state = 1627}, - [5045] = {.lex_state = 1627}, - [5046] = {.lex_state = 43}, - [5047] = {.lex_state = 1627}, - [5048] = {.lex_state = 1736}, - [5049] = {.lex_state = 1769}, - [5050] = {.lex_state = 1627}, - [5051] = {.lex_state = 1736}, - [5052] = {.lex_state = 43}, - [5053] = {.lex_state = 1736}, - [5054] = {.lex_state = 1769}, - [5055] = {.lex_state = 1627}, - [5056] = {.lex_state = 1627}, - [5057] = {.lex_state = 1627}, - [5058] = {.lex_state = 1665}, - [5059] = {.lex_state = 1627}, - [5060] = {.lex_state = 1769}, - [5061] = {.lex_state = 1736}, - [5062] = {.lex_state = 1736}, - [5063] = {.lex_state = 259}, - [5064] = {.lex_state = 1627}, - [5065] = {.lex_state = 1627}, - [5066] = {.lex_state = 1769}, - [5067] = {.lex_state = 265}, - [5068] = {.lex_state = 1627}, - [5069] = {.lex_state = 1627}, - [5070] = {.lex_state = 1665}, - [5071] = {.lex_state = 1627}, - [5072] = {.lex_state = 1627}, - [5073] = {.lex_state = 43}, - [5074] = {.lex_state = 1627}, - [5075] = {.lex_state = 43}, + [5005] = {.lex_state = 43}, + [5006] = {.lex_state = 1740}, + [5007] = {.lex_state = 43, .external_lex_state = 2}, + [5008] = {.lex_state = 43}, + [5009] = {.lex_state = 1631}, + [5010] = {.lex_state = 1631}, + [5011] = {.lex_state = 1631}, + [5012] = {.lex_state = 1631}, + [5013] = {.lex_state = 1631}, + [5014] = {.lex_state = 1631}, + [5015] = {.lex_state = 1631}, + [5016] = {.lex_state = 1631}, + [5017] = {.lex_state = 1631}, + [5018] = {.lex_state = 1631}, + [5019] = {.lex_state = 1631}, + [5020] = {.lex_state = 1631}, + [5021] = {.lex_state = 1631}, + [5022] = {.lex_state = 1740}, + [5023] = {.lex_state = 264}, + [5024] = {.lex_state = 1740}, + [5025] = {.lex_state = 1773}, + [5026] = {.lex_state = 1631}, + [5027] = {.lex_state = 1631}, + [5028] = {.lex_state = 1631}, + [5029] = {.lex_state = 1631}, + [5030] = {.lex_state = 1631}, + [5031] = {.lex_state = 1631}, + [5032] = {.lex_state = 1631}, + [5033] = {.lex_state = 43}, + [5034] = {.lex_state = 288}, + [5035] = {.lex_state = 294}, + [5036] = {.lex_state = 1631}, + [5037] = {.lex_state = 1631}, + [5038] = {.lex_state = 43, .external_lex_state = 2}, + [5039] = {.lex_state = 1631}, + [5040] = {.lex_state = 1631}, + [5041] = {.lex_state = 1631}, + [5042] = {.lex_state = 1631}, + [5043] = {.lex_state = 1631}, + [5044] = {.lex_state = 1631}, + [5045] = {.lex_state = 1631}, + [5046] = {.lex_state = 261}, + [5047] = {.lex_state = 1631}, + [5048] = {.lex_state = 1631}, + [5049] = {.lex_state = 1631}, + [5050] = {.lex_state = 1631}, + [5051] = {.lex_state = 1631}, + [5052] = {.lex_state = 1631}, + [5053] = {.lex_state = 1631}, + [5054] = {.lex_state = 5173}, + [5055] = {.lex_state = 259}, + [5056] = {.lex_state = 1631}, + [5057] = {.lex_state = 1631}, + [5058] = {.lex_state = 1631}, + [5059] = {.lex_state = 1631}, + [5060] = {.lex_state = 1631}, + [5061] = {.lex_state = 43}, + [5062] = {.lex_state = 43}, + [5063] = {.lex_state = 261}, + [5064] = {.lex_state = 1631}, + [5065] = {.lex_state = 5173}, + [5066] = {.lex_state = 1631}, + [5067] = {.lex_state = 1631}, + [5068] = {.lex_state = 43}, + [5069] = {.lex_state = 43}, + [5070] = {.lex_state = 1631}, + [5071] = {.lex_state = 1631}, + [5072] = {.lex_state = 1631}, + [5073] = {.lex_state = 1631}, + [5074] = {.lex_state = 1631}, + [5075] = {.lex_state = 1631}, [5076] = {.lex_state = 43}, [5077] = {.lex_state = 43}, - [5078] = {.lex_state = 259}, - [5079] = {.lex_state = 1627}, - [5080] = {.lex_state = 1627}, - [5081] = {.lex_state = 43}, - [5082] = {.lex_state = 43}, - [5083] = {.lex_state = 261}, - [5084] = {.lex_state = 1627}, - [5085] = {.lex_state = 1665}, - [5086] = {.lex_state = 43}, - [5087] = {.lex_state = 1694}, - [5088] = {.lex_state = 1694}, - [5089] = {.lex_state = 1694}, - [5090] = {.lex_state = 1694}, - [5091] = {.lex_state = 1694}, - [5092] = {.lex_state = 1694}, - [5093] = {.lex_state = 1694}, - [5094] = {.lex_state = 1694}, - [5095] = {.lex_state = 1694}, - [5096] = {.lex_state = 1694}, - [5097] = {.lex_state = 1694}, - [5098] = {.lex_state = 43}, + [5078] = {.lex_state = 1631}, + [5079] = {.lex_state = 1631}, + [5080] = {.lex_state = 256}, + [5081] = {.lex_state = 256}, + [5082] = {.lex_state = 256}, + [5083] = {.lex_state = 256}, + [5084] = {.lex_state = 264}, + [5085] = {.lex_state = 1740}, + [5086] = {.lex_state = 43, .external_lex_state = 2}, + [5087] = {.lex_state = 43}, + [5088] = {.lex_state = 259}, + [5089] = {.lex_state = 1631}, + [5090] = {.lex_state = 1631}, + [5091] = {.lex_state = 5173}, + [5092] = {.lex_state = 259}, + [5093] = {.lex_state = 1740}, + [5094] = {.lex_state = 1631}, + [5095] = {.lex_state = 1631}, + [5096] = {.lex_state = 1740}, + [5097] = {.lex_state = 1740}, + [5098] = {.lex_state = 1631}, [5099] = {.lex_state = 43}, - [5100] = {.lex_state = 1694}, - [5101] = {.lex_state = 43}, - [5102] = {.lex_state = 258}, - [5103] = {.lex_state = 1736}, - [5104] = {.lex_state = 1627}, - [5105] = {.lex_state = 1627}, - [5106] = {.lex_state = 1627}, - [5107] = {.lex_state = 1627}, - [5108] = {.lex_state = 43}, - [5109] = {.lex_state = 43, .external_lex_state = 2}, - [5110] = {.lex_state = 270}, - [5111] = {.lex_state = 1627}, - [5112] = {.lex_state = 1736}, - [5113] = {.lex_state = 5146}, - [5114] = {.lex_state = 1627}, - [5115] = {.lex_state = 5146}, - [5116] = {.lex_state = 266}, - [5117] = {.lex_state = 1627}, - [5118] = {.lex_state = 1627}, - [5119] = {.lex_state = 1665}, - [5120] = {.lex_state = 264}, - [5121] = {.lex_state = 1694}, - [5122] = {.lex_state = 1627}, - [5123] = {.lex_state = 1627}, - [5124] = {.lex_state = 1627}, - [5125] = {.lex_state = 1627}, - [5126] = {.lex_state = 1627}, - [5127] = {.lex_state = 1627}, - [5128] = {.lex_state = 43}, - [5129] = {.lex_state = 1627}, - [5130] = {.lex_state = 1627}, - [5131] = {.lex_state = 1627}, - [5132] = {.lex_state = 43}, - [5133] = {.lex_state = 1736}, + [5100] = {.lex_state = 43}, + [5101] = {.lex_state = 1740}, + [5102] = {.lex_state = 270}, + [5103] = {.lex_state = 1631}, + [5104] = {.lex_state = 43}, + [5105] = {.lex_state = 43}, + [5106] = {.lex_state = 266}, + [5107] = {.lex_state = 1698}, + [5108] = {.lex_state = 1698}, + [5109] = {.lex_state = 1698}, + [5110] = {.lex_state = 1698}, + [5111] = {.lex_state = 1698}, + [5112] = {.lex_state = 1698}, + [5113] = {.lex_state = 1698}, + [5114] = {.lex_state = 1698}, + [5115] = {.lex_state = 1698}, + [5116] = {.lex_state = 1698}, + [5117] = {.lex_state = 1698}, + [5118] = {.lex_state = 1698}, + [5119] = {.lex_state = 1631}, + [5120] = {.lex_state = 1631}, + [5121] = {.lex_state = 1631}, + [5122] = {.lex_state = 1631}, + [5123] = {.lex_state = 258}, + [5124] = {.lex_state = 274}, + [5125] = {.lex_state = 1631}, + [5126] = {.lex_state = 1631}, + [5127] = {.lex_state = 1631}, + [5128] = {.lex_state = 267}, + [5129] = {.lex_state = 1698}, + [5130] = {.lex_state = 1740}, + [5131] = {.lex_state = 1740}, + [5132] = {.lex_state = 259}, + [5133] = {.lex_state = 43}, [5134] = {.lex_state = 43}, - [5135] = {.lex_state = 1665}, - [5136] = {.lex_state = 1627}, - [5137] = {.lex_state = 1627}, - [5138] = {.lex_state = 43}, - [5139] = {.lex_state = 1627}, - [5140] = {.lex_state = 1736}, - [5141] = {.lex_state = 268}, - [5142] = {.lex_state = 1731}, - [5143] = {.lex_state = 1731}, - [5144] = {.lex_state = 1660}, - [5145] = {.lex_state = 262}, - [5146] = {.lex_state = 1736}, - [5147] = {.lex_state = 268}, - [5148] = {.lex_state = 43}, - [5149] = {.lex_state = 43}, - [5150] = {.lex_state = 1660}, - [5151] = {.lex_state = 295}, - [5152] = {.lex_state = 43, .external_lex_state = 2}, - [5153] = {.lex_state = 1731}, - [5154] = {.lex_state = 1731}, - [5155] = {.lex_state = 259}, - [5156] = {.lex_state = 1627}, - [5157] = {.lex_state = 262}, - [5158] = {.lex_state = 271}, - [5159] = {.lex_state = 271}, - [5160] = {.lex_state = 1660}, - [5161] = {.lex_state = 316}, - [5162] = {.lex_state = 1736}, - [5163] = {.lex_state = 1694}, - [5164] = {.lex_state = 275}, - [5165] = {.lex_state = 1731}, - [5166] = {.lex_state = 1660}, - [5167] = {.lex_state = 275}, - [5168] = {.lex_state = 43}, - [5169] = {.lex_state = 1731}, - [5170] = {.lex_state = 295}, - [5171] = {.lex_state = 324}, - [5172] = {.lex_state = 1736}, - [5173] = {.lex_state = 1736}, - [5174] = {.lex_state = 43, .external_lex_state = 2}, - [5175] = {.lex_state = 1736}, - [5176] = {.lex_state = 1731}, - [5177] = {.lex_state = 1731}, - [5178] = {.lex_state = 300}, - [5179] = {.lex_state = 43}, - [5180] = {.lex_state = 43}, - [5181] = {.lex_state = 43}, - [5182] = {.lex_state = 289}, - [5183] = {.lex_state = 43}, - [5184] = {.lex_state = 1736}, - [5185] = {.lex_state = 1736}, - [5186] = {.lex_state = 259}, - [5187] = {.lex_state = 43, .external_lex_state = 2}, - [5188] = {.lex_state = 1629}, - [5189] = {.lex_state = 322}, - [5190] = {.lex_state = 1629}, - [5191] = {.lex_state = 296}, - [5192] = {.lex_state = 4686}, - [5193] = {.lex_state = 4686}, - [5194] = {.lex_state = 1736}, - [5195] = {.lex_state = 322}, - [5196] = {.lex_state = 301}, - [5197] = {.lex_state = 43}, - [5198] = {.lex_state = 5145}, - [5199] = {.lex_state = 43}, - [5200] = {.lex_state = 301}, - [5201] = {.lex_state = 4686}, - [5202] = {.lex_state = 43}, - [5203] = {.lex_state = 5145}, - [5204] = {.lex_state = 4686}, - [5205] = {.lex_state = 4686}, - [5206] = {.lex_state = 1731}, - [5207] = {.lex_state = 4686}, - [5208] = {.lex_state = 4686}, - [5209] = {.lex_state = 322}, - [5210] = {.lex_state = 43}, - [5211] = {.lex_state = 4686}, - [5212] = {.lex_state = 5329}, - [5213] = {.lex_state = 5329}, - [5214] = {.lex_state = 5329}, - [5215] = {.lex_state = 5329}, - [5216] = {.lex_state = 273}, - [5217] = {.lex_state = 68}, - [5218] = {.lex_state = 302}, - [5219] = {.lex_state = 67}, - [5220] = {.lex_state = 273}, - [5221] = {.lex_state = 1736}, - [5222] = {.lex_state = 296}, - [5223] = {.lex_state = 43}, - [5224] = {.lex_state = 322}, - [5225] = {.lex_state = 5145}, - [5226] = {.lex_state = 5145}, - [5227] = {.lex_state = 273}, - [5228] = {.lex_state = 1736}, - [5229] = {.lex_state = 1731}, - [5230] = {.lex_state = 1629}, - [5231] = {.lex_state = 1736}, - [5232] = {.lex_state = 273}, - [5233] = {.lex_state = 296}, - [5234] = {.lex_state = 1736}, - [5235] = {.lex_state = 322}, + [5135] = {.lex_state = 43}, + [5136] = {.lex_state = 1631}, + [5137] = {.lex_state = 1740}, + [5138] = {.lex_state = 1735}, + [5139] = {.lex_state = 295}, + [5140] = {.lex_state = 1735}, + [5141] = {.lex_state = 43}, + [5142] = {.lex_state = 1631}, + [5143] = {.lex_state = 259}, + [5144] = {.lex_state = 1740}, + [5145] = {.lex_state = 1740}, + [5146] = {.lex_state = 43}, + [5147] = {.lex_state = 43}, + [5148] = {.lex_state = 1735}, + [5149] = {.lex_state = 1735}, + [5150] = {.lex_state = 1664}, + [5151] = {.lex_state = 1664}, + [5152] = {.lex_state = 1735}, + [5153] = {.lex_state = 43}, + [5154] = {.lex_state = 1735}, + [5155] = {.lex_state = 1740}, + [5156] = {.lex_state = 1740}, + [5157] = {.lex_state = 1735}, + [5158] = {.lex_state = 262}, + [5159] = {.lex_state = 1735}, + [5160] = {.lex_state = 1664}, + [5161] = {.lex_state = 43}, + [5162] = {.lex_state = 43}, + [5163] = {.lex_state = 43}, + [5164] = {.lex_state = 268}, + [5165] = {.lex_state = 271}, + [5166] = {.lex_state = 1740}, + [5167] = {.lex_state = 43, .external_lex_state = 2}, + [5168] = {.lex_state = 271}, + [5169] = {.lex_state = 324}, + [5170] = {.lex_state = 316}, + [5171] = {.lex_state = 268}, + [5172] = {.lex_state = 300}, + [5173] = {.lex_state = 43, .external_lex_state = 2}, + [5174] = {.lex_state = 295}, + [5175] = {.lex_state = 289}, + [5176] = {.lex_state = 1664}, + [5177] = {.lex_state = 275}, + [5178] = {.lex_state = 1633}, + [5179] = {.lex_state = 262}, + [5180] = {.lex_state = 43, .external_lex_state = 2}, + [5181] = {.lex_state = 259}, + [5182] = {.lex_state = 275}, + [5183] = {.lex_state = 1698}, + [5184] = {.lex_state = 1740}, + [5185] = {.lex_state = 4709}, + [5186] = {.lex_state = 43}, + [5187] = {.lex_state = 1735}, + [5188] = {.lex_state = 322}, + [5189] = {.lex_state = 1735}, + [5190] = {.lex_state = 5172}, + [5191] = {.lex_state = 1740}, + [5192] = {.lex_state = 290}, + [5193] = {.lex_state = 5356}, + [5194] = {.lex_state = 1735}, + [5195] = {.lex_state = 1735}, + [5196] = {.lex_state = 4709}, + [5197] = {.lex_state = 4709}, + [5198] = {.lex_state = 4709}, + [5199] = {.lex_state = 4709}, + [5200] = {.lex_state = 43}, + [5201] = {.lex_state = 43}, + [5202] = {.lex_state = 1740}, + [5203] = {.lex_state = 5356}, + [5204] = {.lex_state = 5356}, + [5205] = {.lex_state = 1740}, + [5206] = {.lex_state = 1740}, + [5207] = {.lex_state = 1740}, + [5208] = {.lex_state = 1740}, + [5209] = {.lex_state = 1740}, + [5210] = {.lex_state = 1740}, + [5211] = {.lex_state = 1740}, + [5212] = {.lex_state = 1740}, + [5213] = {.lex_state = 1740}, + [5214] = {.lex_state = 1740}, + [5215] = {.lex_state = 1740}, + [5216] = {.lex_state = 1740}, + [5217] = {.lex_state = 1740}, + [5218] = {.lex_state = 1740}, + [5219] = {.lex_state = 1740}, + [5220] = {.lex_state = 1740}, + [5221] = {.lex_state = 1740}, + [5222] = {.lex_state = 1740}, + [5223] = {.lex_state = 4709}, + [5224] = {.lex_state = 1740}, + [5225] = {.lex_state = 43}, + [5226] = {.lex_state = 1735}, + [5227] = {.lex_state = 4709}, + [5228] = {.lex_state = 1735}, + [5229] = {.lex_state = 1735}, + [5230] = {.lex_state = 43}, + [5231] = {.lex_state = 43}, + [5232] = {.lex_state = 1735}, + [5233] = {.lex_state = 1740}, + [5234] = {.lex_state = 5172}, + [5235] = {.lex_state = 5172}, [5236] = {.lex_state = 43}, - [5237] = {.lex_state = 272}, - [5238] = {.lex_state = 43}, - [5239] = {.lex_state = 43}, - [5240] = {.lex_state = 325}, - [5241] = {.lex_state = 43}, - [5242] = {.lex_state = 43}, - [5243] = {.lex_state = 43}, - [5244] = {.lex_state = 317}, - [5245] = {.lex_state = 1736}, - [5246] = {.lex_state = 1736}, - [5247] = {.lex_state = 43}, - [5248] = {.lex_state = 1731}, - [5249] = {.lex_state = 1731}, - [5250] = {.lex_state = 1736}, - [5251] = {.lex_state = 290}, - [5252] = {.lex_state = 4686}, - [5253] = {.lex_state = 4686}, - [5254] = {.lex_state = 5145}, - [5255] = {.lex_state = 4686}, - [5256] = {.lex_state = 4686}, + [5237] = {.lex_state = 4709}, + [5238] = {.lex_state = 4709}, + [5239] = {.lex_state = 1740}, + [5240] = {.lex_state = 296}, + [5241] = {.lex_state = 1633}, + [5242] = {.lex_state = 1633}, + [5243] = {.lex_state = 1633}, + [5244] = {.lex_state = 4709}, + [5245] = {.lex_state = 4709}, + [5246] = {.lex_state = 4709}, + [5247] = {.lex_state = 5356}, + [5248] = {.lex_state = 5356}, + [5249] = {.lex_state = 43}, + [5250] = {.lex_state = 68}, + [5251] = {.lex_state = 4709}, + [5252] = {.lex_state = 4709}, + [5253] = {.lex_state = 272}, + [5254] = {.lex_state = 297}, + [5255] = {.lex_state = 4709}, + [5256] = {.lex_state = 4709}, [5257] = {.lex_state = 272}, - [5258] = {.lex_state = 1736}, - [5259] = {.lex_state = 1736}, - [5260] = {.lex_state = 5329}, - [5261] = {.lex_state = 5329}, - [5262] = {.lex_state = 1736}, - [5263] = {.lex_state = 1736}, - [5264] = {.lex_state = 1731}, - [5265] = {.lex_state = 1731}, - [5266] = {.lex_state = 272}, - [5267] = {.lex_state = 297}, - [5268] = {.lex_state = 1731}, - [5269] = {.lex_state = 1731}, - [5270] = {.lex_state = 43}, - [5271] = {.lex_state = 43}, - [5272] = {.lex_state = 1731}, - [5273] = {.lex_state = 1731}, - [5274] = {.lex_state = 296}, - [5275] = {.lex_state = 1731}, - [5276] = {.lex_state = 1736}, - [5277] = {.lex_state = 1736}, - [5278] = {.lex_state = 1736}, - [5279] = {.lex_state = 1736}, - [5280] = {.lex_state = 1736}, - [5281] = {.lex_state = 1736}, + [5258] = {.lex_state = 4709}, + [5259] = {.lex_state = 4709}, + [5260] = {.lex_state = 317}, + [5261] = {.lex_state = 4709}, + [5262] = {.lex_state = 1735}, + [5263] = {.lex_state = 1740}, + [5264] = {.lex_state = 272}, + [5265] = {.lex_state = 4709}, + [5266] = {.lex_state = 4709}, + [5267] = {.lex_state = 4709}, + [5268] = {.lex_state = 5172}, + [5269] = {.lex_state = 272}, + [5270] = {.lex_state = 4709}, + [5271] = {.lex_state = 4709}, + [5272] = {.lex_state = 4709}, + [5273] = {.lex_state = 4709}, + [5274] = {.lex_state = 326}, + [5275] = {.lex_state = 4709}, + [5276] = {.lex_state = 43}, + [5277] = {.lex_state = 326}, + [5278] = {.lex_state = 302}, + [5279] = {.lex_state = 301}, + [5280] = {.lex_state = 4709}, + [5281] = {.lex_state = 43}, [5282] = {.lex_state = 272}, - [5283] = {.lex_state = 1736}, - [5284] = {.lex_state = 1736}, - [5285] = {.lex_state = 1736}, - [5286] = {.lex_state = 4686}, - [5287] = {.lex_state = 4686}, - [5288] = {.lex_state = 5329}, - [5289] = {.lex_state = 5329}, - [5290] = {.lex_state = 272}, - [5291] = {.lex_state = 1736}, - [5292] = {.lex_state = 4686}, - [5293] = {.lex_state = 4686}, - [5294] = {.lex_state = 4686}, - [5295] = {.lex_state = 4686}, - [5296] = {.lex_state = 4686}, - [5297] = {.lex_state = 4686}, - [5298] = {.lex_state = 4686}, - [5299] = {.lex_state = 4686}, - [5300] = {.lex_state = 4686}, - [5301] = {.lex_state = 4686}, - [5302] = {.lex_state = 4686}, - [5303] = {.lex_state = 4686}, - [5304] = {.lex_state = 322}, - [5305] = {.lex_state = 4686}, - [5306] = {.lex_state = 4686}, - [5307] = {.lex_state = 4686}, - [5308] = {.lex_state = 1736}, - [5309] = {.lex_state = 1731}, - [5310] = {.lex_state = 1736}, - [5311] = {.lex_state = 1736}, - [5312] = {.lex_state = 322}, - [5313] = {.lex_state = 326}, - [5314] = {.lex_state = 1736}, - [5315] = {.lex_state = 1736}, - [5316] = {.lex_state = 273}, - [5317] = {.lex_state = 1629}, - [5318] = {.lex_state = 296}, - [5319] = {.lex_state = 1736}, - [5320] = {.lex_state = 326}, - [5321] = {.lex_state = 1736}, - [5322] = {.lex_state = 43}, - [5323] = {.lex_state = 1629}, - [5324] = {.lex_state = 4686}, - [5325] = {.lex_state = 1736}, - [5326] = {.lex_state = 1731}, - [5327] = {.lex_state = 327}, - [5328] = {.lex_state = 1629}, - [5329] = {.lex_state = 1629}, - [5330] = {.lex_state = 1629}, - [5331] = {.lex_state = 1731}, - [5332] = {.lex_state = 327}, - [5333] = {.lex_state = 1629}, - [5334] = {.lex_state = 43}, - [5335] = {.lex_state = 330}, - [5336] = {.lex_state = 1629}, - [5337] = {.lex_state = 1629}, - [5338] = {.lex_state = 1736}, - [5339] = {.lex_state = 1629}, - [5340] = {.lex_state = 302}, - [5341] = {.lex_state = 1629}, - [5342] = {.lex_state = 1629}, - [5343] = {.lex_state = 1629}, - [5344] = {.lex_state = 1629}, - [5345] = {.lex_state = 1736}, - [5346] = {.lex_state = 1629}, - [5347] = {.lex_state = 69}, - [5348] = {.lex_state = 43}, - [5349] = {.lex_state = 1629}, - [5350] = {.lex_state = 318}, - [5351] = {.lex_state = 69}, - [5352] = {.lex_state = 1731}, - [5353] = {.lex_state = 1731}, - [5354] = {.lex_state = 1629}, - [5355] = {.lex_state = 298}, - [5356] = {.lex_state = 43, .external_lex_state = 2}, - [5357] = {.lex_state = 1736}, - [5358] = {.lex_state = 1736}, - [5359] = {.lex_state = 303}, - [5360] = {.lex_state = 1629}, - [5361] = {.lex_state = 1629}, - [5362] = {.lex_state = 302}, - [5363] = {.lex_state = 328}, - [5364] = {.lex_state = 1629}, - [5365] = {.lex_state = 302}, - [5366] = {.lex_state = 1629}, - [5367] = {.lex_state = 1629}, - [5368] = {.lex_state = 1629}, - [5369] = {.lex_state = 1629}, - [5370] = {.lex_state = 43, .external_lex_state = 2}, - [5371] = {.lex_state = 1629}, - [5372] = {.lex_state = 1629}, - [5373] = {.lex_state = 1629}, - [5374] = {.lex_state = 328}, - [5375] = {.lex_state = 302}, - [5376] = {.lex_state = 1629}, - [5377] = {.lex_state = 1736}, - [5378] = {.lex_state = 1629}, - [5379] = {.lex_state = 1629}, - [5380] = {.lex_state = 1731}, - [5381] = {.lex_state = 1629}, - [5382] = {.lex_state = 1629}, - [5383] = {.lex_state = 320}, - [5384] = {.lex_state = 1629}, - [5385] = {.lex_state = 1629}, - [5386] = {.lex_state = 1629}, - [5387] = {.lex_state = 1629}, - [5388] = {.lex_state = 43, .external_lex_state = 2}, - [5389] = {.lex_state = 1629}, - [5390] = {.lex_state = 1629}, - [5391] = {.lex_state = 1629}, - [5392] = {.lex_state = 1629}, - [5393] = {.lex_state = 1736}, - [5394] = {.lex_state = 1629}, - [5395] = {.lex_state = 1629}, - [5396] = {.lex_state = 1629}, - [5397] = {.lex_state = 1629}, - [5398] = {.lex_state = 1629}, - [5399] = {.lex_state = 1629}, - [5400] = {.lex_state = 1629}, - [5401] = {.lex_state = 1629}, - [5402] = {.lex_state = 1629}, - [5403] = {.lex_state = 336}, - [5404] = {.lex_state = 1740}, - [5405] = {.lex_state = 328}, - [5406] = {.lex_state = 322}, - [5407] = {.lex_state = 1629}, - [5408] = {.lex_state = 43, .external_lex_state = 2}, - [5409] = {.lex_state = 43, .external_lex_state = 2}, - [5410] = {.lex_state = 1738}, - [5411] = {.lex_state = 1629}, - [5412] = {.lex_state = 291}, - [5413] = {.lex_state = 1629}, - [5414] = {.lex_state = 43, .external_lex_state = 2}, - [5415] = {.lex_state = 322}, - [5416] = {.lex_state = 43, .external_lex_state = 2}, - [5417] = {.lex_state = 328}, - [5418] = {.lex_state = 1731}, - [5419] = {.lex_state = 298}, - [5420] = {.lex_state = 1731}, - [5421] = {.lex_state = 1731}, - [5422] = {.lex_state = 328}, - [5423] = {.lex_state = 1629}, - [5424] = {.lex_state = 1629}, + [5283] = {.lex_state = 1740}, + [5284] = {.lex_state = 43}, + [5285] = {.lex_state = 43}, + [5286] = {.lex_state = 67}, + [5287] = {.lex_state = 301}, + [5288] = {.lex_state = 322}, + [5289] = {.lex_state = 5356}, + [5290] = {.lex_state = 296}, + [5291] = {.lex_state = 322}, + [5292] = {.lex_state = 322}, + [5293] = {.lex_state = 1740}, + [5294] = {.lex_state = 4709}, + [5295] = {.lex_state = 1740}, + [5296] = {.lex_state = 296}, + [5297] = {.lex_state = 1735}, + [5298] = {.lex_state = 322}, + [5299] = {.lex_state = 273}, + [5300] = {.lex_state = 1735}, + [5301] = {.lex_state = 296}, + [5302] = {.lex_state = 273}, + [5303] = {.lex_state = 1633}, + [5304] = {.lex_state = 273}, + [5305] = {.lex_state = 43}, + [5306] = {.lex_state = 5172}, + [5307] = {.lex_state = 273}, + [5308] = {.lex_state = 322}, + [5309] = {.lex_state = 1735}, + [5310] = {.lex_state = 273}, + [5311] = {.lex_state = 5356}, + [5312] = {.lex_state = 5356}, + [5313] = {.lex_state = 1740}, + [5314] = {.lex_state = 296}, + [5315] = {.lex_state = 325}, + [5316] = {.lex_state = 322}, + [5317] = {.lex_state = 43}, + [5318] = {.lex_state = 43}, + [5319] = {.lex_state = 1740}, + [5320] = {.lex_state = 4709}, + [5321] = {.lex_state = 1633}, + [5322] = {.lex_state = 1633}, + [5323] = {.lex_state = 1633}, + [5324] = {.lex_state = 69}, + [5325] = {.lex_state = 1633}, + [5326] = {.lex_state = 1633}, + [5327] = {.lex_state = 328}, + [5328] = {.lex_state = 1633}, + [5329] = {.lex_state = 1633}, + [5330] = {.lex_state = 1633}, + [5331] = {.lex_state = 1735}, + [5332] = {.lex_state = 1633}, + [5333] = {.lex_state = 1633}, + [5334] = {.lex_state = 1633}, + [5335] = {.lex_state = 1633}, + [5336] = {.lex_state = 1633}, + [5337] = {.lex_state = 328}, + [5338] = {.lex_state = 1633}, + [5339] = {.lex_state = 1633}, + [5340] = {.lex_state = 1633}, + [5341] = {.lex_state = 1633}, + [5342] = {.lex_state = 1633}, + [5343] = {.lex_state = 1633}, + [5344] = {.lex_state = 328}, + [5345] = {.lex_state = 1744}, + [5346] = {.lex_state = 328}, + [5347] = {.lex_state = 1633}, + [5348] = {.lex_state = 1740}, + [5349] = {.lex_state = 302}, + [5350] = {.lex_state = 1740}, + [5351] = {.lex_state = 1740}, + [5352] = {.lex_state = 43, .external_lex_state = 2}, + [5353] = {.lex_state = 43, .external_lex_state = 2}, + [5354] = {.lex_state = 291}, + [5355] = {.lex_state = 1735}, + [5356] = {.lex_state = 302}, + [5357] = {.lex_state = 298}, + [5358] = {.lex_state = 1633}, + [5359] = {.lex_state = 330}, + [5360] = {.lex_state = 1735}, + [5361] = {.lex_state = 1735}, + [5362] = {.lex_state = 1633}, + [5363] = {.lex_state = 1633}, + [5364] = {.lex_state = 302}, + [5365] = {.lex_state = 1740}, + [5366] = {.lex_state = 43, .external_lex_state = 2}, + [5367] = {.lex_state = 1740}, + [5368] = {.lex_state = 1740}, + [5369] = {.lex_state = 1740}, + [5370] = {.lex_state = 1633}, + [5371] = {.lex_state = 43, .external_lex_state = 2}, + [5372] = {.lex_state = 1633}, + [5373] = {.lex_state = 1633}, + [5374] = {.lex_state = 320}, + [5375] = {.lex_state = 1633}, + [5376] = {.lex_state = 302}, + [5377] = {.lex_state = 328}, + [5378] = {.lex_state = 1742}, + [5379] = {.lex_state = 43}, + [5380] = {.lex_state = 322}, + [5381] = {.lex_state = 298}, + [5382] = {.lex_state = 327}, + [5383] = {.lex_state = 1633}, + [5384] = {.lex_state = 1633}, + [5385] = {.lex_state = 1633}, + [5386] = {.lex_state = 1633}, + [5387] = {.lex_state = 1735}, + [5388] = {.lex_state = 1633}, + [5389] = {.lex_state = 1633}, + [5390] = {.lex_state = 1633}, + [5391] = {.lex_state = 1633}, + [5392] = {.lex_state = 43, .external_lex_state = 2}, + [5393] = {.lex_state = 1633}, + [5394] = {.lex_state = 1633}, + [5395] = {.lex_state = 43}, + [5396] = {.lex_state = 43, .external_lex_state = 2}, + [5397] = {.lex_state = 303}, + [5398] = {.lex_state = 336}, + [5399] = {.lex_state = 1735}, + [5400] = {.lex_state = 1633}, + [5401] = {.lex_state = 43, .external_lex_state = 2}, + [5402] = {.lex_state = 1633}, + [5403] = {.lex_state = 322}, + [5404] = {.lex_state = 1633}, + [5405] = {.lex_state = 1633}, + [5406] = {.lex_state = 1633}, + [5407] = {.lex_state = 1633}, + [5408] = {.lex_state = 1633}, + [5409] = {.lex_state = 1735}, + [5410] = {.lex_state = 69}, + [5411] = {.lex_state = 1633}, + [5412] = {.lex_state = 1633}, + [5413] = {.lex_state = 1633}, + [5414] = {.lex_state = 1633}, + [5415] = {.lex_state = 318}, + [5416] = {.lex_state = 327}, + [5417] = {.lex_state = 1633}, + [5418] = {.lex_state = 1633}, + [5419] = {.lex_state = 1735}, + [5420] = {.lex_state = 1633}, + [5421] = {.lex_state = 245, .external_lex_state = 2}, + [5422] = {.lex_state = 245, .external_lex_state = 2}, + [5423] = {.lex_state = 245, .external_lex_state = 2}, + [5424] = {.lex_state = 245, .external_lex_state = 2}, [5425] = {.lex_state = 245, .external_lex_state = 2}, [5426] = {.lex_state = 245, .external_lex_state = 2}, [5427] = {.lex_state = 245, .external_lex_state = 2}, @@ -66714,954 +66908,954 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5444] = {.lex_state = 245, .external_lex_state = 2}, [5445] = {.lex_state = 245, .external_lex_state = 2}, [5446] = {.lex_state = 245, .external_lex_state = 2}, - [5447] = {.lex_state = 332}, + [5447] = {.lex_state = 245, .external_lex_state = 2}, [5448] = {.lex_state = 245, .external_lex_state = 2}, - [5449] = {.lex_state = 329}, - [5450] = {.lex_state = 1736}, - [5451] = {.lex_state = 247, .external_lex_state = 2}, - [5452] = {.lex_state = 245, .external_lex_state = 2}, - [5453] = {.lex_state = 1771}, - [5454] = {.lex_state = 43}, - [5455] = {.lex_state = 247, .external_lex_state = 2}, + [5449] = {.lex_state = 245, .external_lex_state = 2}, + [5450] = {.lex_state = 245, .external_lex_state = 2}, + [5451] = {.lex_state = 329}, + [5452] = {.lex_state = 43}, + [5453] = {.lex_state = 43}, + [5454] = {.lex_state = 245, .external_lex_state = 2}, + [5455] = {.lex_state = 245, .external_lex_state = 2}, [5456] = {.lex_state = 245, .external_lex_state = 2}, - [5457] = {.lex_state = 43}, - [5458] = {.lex_state = 1731}, + [5457] = {.lex_state = 245, .external_lex_state = 2}, + [5458] = {.lex_state = 247, .external_lex_state = 2}, [5459] = {.lex_state = 245, .external_lex_state = 2}, - [5460] = {.lex_state = 319}, - [5461] = {.lex_state = 245, .external_lex_state = 2}, + [5460] = {.lex_state = 245, .external_lex_state = 2}, + [5461] = {.lex_state = 43}, [5462] = {.lex_state = 247, .external_lex_state = 2}, - [5463] = {.lex_state = 70}, - [5464] = {.lex_state = 1731}, - [5465] = {.lex_state = 1776}, - [5466] = {.lex_state = 1776}, + [5463] = {.lex_state = 43}, + [5464] = {.lex_state = 43}, + [5465] = {.lex_state = 43}, + [5466] = {.lex_state = 245, .external_lex_state = 2}, [5467] = {.lex_state = 245, .external_lex_state = 2}, - [5468] = {.lex_state = 1734}, + [5468] = {.lex_state = 43}, [5469] = {.lex_state = 43}, [5470] = {.lex_state = 43}, - [5471] = {.lex_state = 43}, - [5472] = {.lex_state = 247, .external_lex_state = 2}, - [5473] = {.lex_state = 329}, - [5474] = {.lex_state = 304}, - [5475] = {.lex_state = 329}, - [5476] = {.lex_state = 70}, - [5477] = {.lex_state = 245, .external_lex_state = 2}, + [5471] = {.lex_state = 337}, + [5472] = {.lex_state = 43}, + [5473] = {.lex_state = 43}, + [5474] = {.lex_state = 43}, + [5475] = {.lex_state = 43}, + [5476] = {.lex_state = 43}, + [5477] = {.lex_state = 43}, [5478] = {.lex_state = 43}, - [5479] = {.lex_state = 247, .external_lex_state = 2}, + [5479] = {.lex_state = 1735}, [5480] = {.lex_state = 43}, - [5481] = {.lex_state = 245, .external_lex_state = 2}, - [5482] = {.lex_state = 245, .external_lex_state = 2}, - [5483] = {.lex_state = 43}, - [5484] = {.lex_state = 247, .external_lex_state = 2}, - [5485] = {.lex_state = 43}, - [5486] = {.lex_state = 43}, - [5487] = {.lex_state = 245, .external_lex_state = 2}, + [5481] = {.lex_state = 70}, + [5482] = {.lex_state = 319}, + [5483] = {.lex_state = 1735}, + [5484] = {.lex_state = 1735}, + [5485] = {.lex_state = 1742}, + [5486] = {.lex_state = 1780}, + [5487] = {.lex_state = 1780}, [5488] = {.lex_state = 43}, - [5489] = {.lex_state = 247, .external_lex_state = 2}, - [5490] = {.lex_state = 43}, - [5491] = {.lex_state = 43}, + [5489] = {.lex_state = 245, .external_lex_state = 2}, + [5490] = {.lex_state = 245, .external_lex_state = 2}, + [5491] = {.lex_state = 245, .external_lex_state = 2}, [5492] = {.lex_state = 245, .external_lex_state = 2}, [5493] = {.lex_state = 245, .external_lex_state = 2}, - [5494] = {.lex_state = 43}, - [5495] = {.lex_state = 337}, - [5496] = {.lex_state = 247, .external_lex_state = 2}, - [5497] = {.lex_state = 43}, + [5494] = {.lex_state = 245, .external_lex_state = 2}, + [5495] = {.lex_state = 245, .external_lex_state = 2}, + [5496] = {.lex_state = 245, .external_lex_state = 2}, + [5497] = {.lex_state = 245, .external_lex_state = 2}, [5498] = {.lex_state = 245, .external_lex_state = 2}, - [5499] = {.lex_state = 1740}, - [5500] = {.lex_state = 43}, - [5501] = {.lex_state = 247, .external_lex_state = 2}, + [5499] = {.lex_state = 245, .external_lex_state = 2}, + [5500] = {.lex_state = 245, .external_lex_state = 2}, + [5501] = {.lex_state = 245, .external_lex_state = 2}, [5502] = {.lex_state = 245, .external_lex_state = 2}, - [5503] = {.lex_state = 43}, + [5503] = {.lex_state = 245, .external_lex_state = 2}, [5504] = {.lex_state = 245, .external_lex_state = 2}, [5505] = {.lex_state = 245, .external_lex_state = 2}, - [5506] = {.lex_state = 43}, - [5507] = {.lex_state = 247, .external_lex_state = 2}, - [5508] = {.lex_state = 43}, + [5506] = {.lex_state = 245, .external_lex_state = 2}, + [5507] = {.lex_state = 245, .external_lex_state = 2}, + [5508] = {.lex_state = 245, .external_lex_state = 2}, [5509] = {.lex_state = 245, .external_lex_state = 2}, [5510] = {.lex_state = 245, .external_lex_state = 2}, - [5511] = {.lex_state = 43}, - [5512] = {.lex_state = 1776}, + [5511] = {.lex_state = 245, .external_lex_state = 2}, + [5512] = {.lex_state = 247, .external_lex_state = 2}, [5513] = {.lex_state = 247, .external_lex_state = 2}, - [5514] = {.lex_state = 43}, - [5515] = {.lex_state = 1731}, - [5516] = {.lex_state = 245, .external_lex_state = 2}, - [5517] = {.lex_state = 245, .external_lex_state = 2}, + [5514] = {.lex_state = 329}, + [5515] = {.lex_state = 247, .external_lex_state = 2}, + [5516] = {.lex_state = 43}, + [5517] = {.lex_state = 1738}, [5518] = {.lex_state = 247, .external_lex_state = 2}, [5519] = {.lex_state = 70}, - [5520] = {.lex_state = 329}, - [5521] = {.lex_state = 1731}, + [5520] = {.lex_state = 245, .external_lex_state = 2}, + [5521] = {.lex_state = 245, .external_lex_state = 2}, [5522] = {.lex_state = 247, .external_lex_state = 2}, - [5523] = {.lex_state = 43}, - [5524] = {.lex_state = 43}, - [5525] = {.lex_state = 247, .external_lex_state = 2}, - [5526] = {.lex_state = 70}, + [5523] = {.lex_state = 1735}, + [5524] = {.lex_state = 70}, + [5525] = {.lex_state = 70}, + [5526] = {.lex_state = 247, .external_lex_state = 2}, [5527] = {.lex_state = 247, .external_lex_state = 2}, - [5528] = {.lex_state = 1776}, - [5529] = {.lex_state = 247, .external_lex_state = 2}, - [5530] = {.lex_state = 1738}, + [5528] = {.lex_state = 247, .external_lex_state = 2}, + [5529] = {.lex_state = 245, .external_lex_state = 2}, + [5530] = {.lex_state = 1735}, [5531] = {.lex_state = 247, .external_lex_state = 2}, [5532] = {.lex_state = 245, .external_lex_state = 2}, - [5533] = {.lex_state = 247, .external_lex_state = 2}, - [5534] = {.lex_state = 247, .external_lex_state = 2}, - [5535] = {.lex_state = 245, .external_lex_state = 2}, + [5533] = {.lex_state = 245, .external_lex_state = 2}, + [5534] = {.lex_state = 245, .external_lex_state = 2}, + [5535] = {.lex_state = 43}, [5536] = {.lex_state = 247, .external_lex_state = 2}, - [5537] = {.lex_state = 247, .external_lex_state = 2}, - [5538] = {.lex_state = 247, .external_lex_state = 2}, + [5537] = {.lex_state = 1735}, + [5538] = {.lex_state = 299}, [5539] = {.lex_state = 247, .external_lex_state = 2}, - [5540] = {.lex_state = 247, .external_lex_state = 2}, + [5540] = {.lex_state = 1780}, [5541] = {.lex_state = 247, .external_lex_state = 2}, [5542] = {.lex_state = 247, .external_lex_state = 2}, - [5543] = {.lex_state = 247, .external_lex_state = 2}, + [5543] = {.lex_state = 43}, [5544] = {.lex_state = 247, .external_lex_state = 2}, - [5545] = {.lex_state = 245, .external_lex_state = 2}, - [5546] = {.lex_state = 245, .external_lex_state = 2}, - [5547] = {.lex_state = 245, .external_lex_state = 2}, - [5548] = {.lex_state = 245, .external_lex_state = 2}, - [5549] = {.lex_state = 245, .external_lex_state = 2}, - [5550] = {.lex_state = 245, .external_lex_state = 2}, - [5551] = {.lex_state = 245, .external_lex_state = 2}, + [5545] = {.lex_state = 337}, + [5546] = {.lex_state = 247, .external_lex_state = 2}, + [5547] = {.lex_state = 1744}, + [5548] = {.lex_state = 247, .external_lex_state = 2}, + [5549] = {.lex_state = 43}, + [5550] = {.lex_state = 247, .external_lex_state = 2}, + [5551] = {.lex_state = 247, .external_lex_state = 2}, [5552] = {.lex_state = 247, .external_lex_state = 2}, - [5553] = {.lex_state = 299}, - [5554] = {.lex_state = 245, .external_lex_state = 2}, - [5555] = {.lex_state = 245, .external_lex_state = 2}, - [5556] = {.lex_state = 70}, - [5557] = {.lex_state = 1731}, - [5558] = {.lex_state = 245, .external_lex_state = 2}, - [5559] = {.lex_state = 245, .external_lex_state = 2}, - [5560] = {.lex_state = 245, .external_lex_state = 2}, - [5561] = {.lex_state = 1731}, - [5562] = {.lex_state = 1776}, - [5563] = {.lex_state = 299}, - [5564] = {.lex_state = 245, .external_lex_state = 2}, - [5565] = {.lex_state = 245, .external_lex_state = 2}, - [5566] = {.lex_state = 245, .external_lex_state = 2}, - [5567] = {.lex_state = 245, .external_lex_state = 2}, - [5568] = {.lex_state = 337}, - [5569] = {.lex_state = 304}, - [5570] = {.lex_state = 247, .external_lex_state = 2}, - [5571] = {.lex_state = 1736}, - [5572] = {.lex_state = 245, .external_lex_state = 2}, - [5573] = {.lex_state = 1731}, - [5574] = {.lex_state = 322}, - [5575] = {.lex_state = 322}, - [5576] = {.lex_state = 299}, - [5577] = {.lex_state = 245, .external_lex_state = 2}, - [5578] = {.lex_state = 245, .external_lex_state = 2}, - [5579] = {.lex_state = 329}, - [5580] = {.lex_state = 1736}, - [5581] = {.lex_state = 245, .external_lex_state = 2}, - [5582] = {.lex_state = 331}, - [5583] = {.lex_state = 43}, - [5584] = {.lex_state = 245, .external_lex_state = 2}, - [5585] = {.lex_state = 1731}, - [5586] = {.lex_state = 299}, - [5587] = {.lex_state = 245, .external_lex_state = 2}, - [5588] = {.lex_state = 245, .external_lex_state = 2}, - [5589] = {.lex_state = 245, .external_lex_state = 2}, - [5590] = {.lex_state = 245, .external_lex_state = 2}, - [5591] = {.lex_state = 245, .external_lex_state = 2}, - [5592] = {.lex_state = 245, .external_lex_state = 2}, + [5553] = {.lex_state = 247, .external_lex_state = 2}, + [5554] = {.lex_state = 247, .external_lex_state = 2}, + [5555] = {.lex_state = 247, .external_lex_state = 2}, + [5556] = {.lex_state = 247, .external_lex_state = 2}, + [5557] = {.lex_state = 247, .external_lex_state = 2}, + [5558] = {.lex_state = 247, .external_lex_state = 2}, + [5559] = {.lex_state = 247, .external_lex_state = 2}, + [5560] = {.lex_state = 247, .external_lex_state = 2}, + [5561] = {.lex_state = 247, .external_lex_state = 2}, + [5562] = {.lex_state = 247, .external_lex_state = 2}, + [5563] = {.lex_state = 332}, + [5564] = {.lex_state = 299}, + [5565] = {.lex_state = 1735}, + [5566] = {.lex_state = 329}, + [5567] = {.lex_state = 43}, + [5568] = {.lex_state = 245, .external_lex_state = 2}, + [5569] = {.lex_state = 245, .external_lex_state = 2}, + [5570] = {.lex_state = 332}, + [5571] = {.lex_state = 245, .external_lex_state = 2}, + [5572] = {.lex_state = 1740}, + [5573] = {.lex_state = 245, .external_lex_state = 2}, + [5574] = {.lex_state = 299}, + [5575] = {.lex_state = 1740}, + [5576] = {.lex_state = 304}, + [5577] = {.lex_state = 329}, + [5578] = {.lex_state = 1740}, + [5579] = {.lex_state = 322}, + [5580] = {.lex_state = 322}, + [5581] = {.lex_state = 304}, + [5582] = {.lex_state = 1780}, + [5583] = {.lex_state = 331}, + [5584] = {.lex_state = 1775}, + [5585] = {.lex_state = 245, .external_lex_state = 2}, + [5586] = {.lex_state = 329}, + [5587] = {.lex_state = 43}, + [5588] = {.lex_state = 247, .external_lex_state = 2}, + [5589] = {.lex_state = 43}, + [5590] = {.lex_state = 1780}, + [5591] = {.lex_state = 1735}, + [5592] = {.lex_state = 299}, [5593] = {.lex_state = 245, .external_lex_state = 2}, - [5594] = {.lex_state = 247, .external_lex_state = 2}, - [5595] = {.lex_state = 43}, - [5596] = {.lex_state = 245, .external_lex_state = 2}, - [5597] = {.lex_state = 247, .external_lex_state = 2}, - [5598] = {.lex_state = 332}, - [5599] = {.lex_state = 43}, - [5600] = {.lex_state = 1736}, - [5601] = {.lex_state = 322}, - [5602] = {.lex_state = 322}, + [5594] = {.lex_state = 70}, + [5595] = {.lex_state = 338}, + [5596] = {.lex_state = 268}, + [5597] = {.lex_state = 305}, + [5598] = {.lex_state = 268}, + [5599] = {.lex_state = 322}, + [5600] = {.lex_state = 268}, + [5601] = {.lex_state = 313}, + [5602] = {.lex_state = 1740}, [5603] = {.lex_state = 322}, - [5604] = {.lex_state = 322}, + [5604] = {.lex_state = 1780}, [5605] = {.lex_state = 322}, [5606] = {.lex_state = 322}, - [5607] = {.lex_state = 305}, - [5608] = {.lex_state = 245, .external_lex_state = 2}, - [5609] = {.lex_state = 338}, - [5610] = {.lex_state = 1731}, - [5611] = {.lex_state = 268}, - [5612] = {.lex_state = 268}, - [5613] = {.lex_state = 299}, - [5614] = {.lex_state = 1776}, - [5615] = {.lex_state = 305}, - [5616] = {.lex_state = 333}, - [5617] = {.lex_state = 268}, - [5618] = {.lex_state = 322}, - [5619] = {.lex_state = 322}, + [5607] = {.lex_state = 322}, + [5608] = {.lex_state = 322}, + [5609] = {.lex_state = 322}, + [5610] = {.lex_state = 1735}, + [5611] = {.lex_state = 1740}, + [5612] = {.lex_state = 1735}, + [5613] = {.lex_state = 1730}, + [5614] = {.lex_state = 1740}, + [5615] = {.lex_state = 299}, + [5616] = {.lex_state = 1668}, + [5617] = {.lex_state = 322}, + [5618] = {.lex_state = 313}, + [5619] = {.lex_state = 338}, [5620] = {.lex_state = 322}, [5621] = {.lex_state = 322}, - [5622] = {.lex_state = 333}, - [5623] = {.lex_state = 322}, - [5624] = {.lex_state = 1664}, - [5625] = {.lex_state = 333}, + [5622] = {.lex_state = 1740}, + [5623] = {.lex_state = 321}, + [5624] = {.lex_state = 322}, + [5625] = {.lex_state = 43, .external_lex_state = 2}, [5626] = {.lex_state = 245, .external_lex_state = 2}, - [5627] = {.lex_state = 245, .external_lex_state = 2}, - [5628] = {.lex_state = 1664}, - [5629] = {.lex_state = 1726}, - [5630] = {.lex_state = 338}, - [5631] = {.lex_state = 305}, - [5632] = {.lex_state = 268}, - [5633] = {.lex_state = 313}, - [5634] = {.lex_state = 288}, - [5635] = {.lex_state = 1776}, - [5636] = {.lex_state = 1731}, - [5637] = {.lex_state = 1731}, - [5638] = {.lex_state = 321}, - [5639] = {.lex_state = 1776}, - [5640] = {.lex_state = 338}, - [5641] = {.lex_state = 1694}, - [5642] = {.lex_state = 333}, - [5643] = {.lex_state = 305}, - [5644] = {.lex_state = 322}, - [5645] = {.lex_state = 1725}, - [5646] = {.lex_state = 322}, + [5627] = {.lex_state = 1738}, + [5628] = {.lex_state = 288}, + [5629] = {.lex_state = 333}, + [5630] = {.lex_state = 1780}, + [5631] = {.lex_state = 1668}, + [5632] = {.lex_state = 1735}, + [5633] = {.lex_state = 1698}, + [5634] = {.lex_state = 333}, + [5635] = {.lex_state = 322}, + [5636] = {.lex_state = 339}, + [5637] = {.lex_state = 333}, + [5638] = {.lex_state = 322}, + [5639] = {.lex_state = 322}, + [5640] = {.lex_state = 323}, + [5641] = {.lex_state = 338}, + [5642] = {.lex_state = 338}, + [5643] = {.lex_state = 1780}, + [5644] = {.lex_state = 338}, + [5645] = {.lex_state = 1730}, + [5646] = {.lex_state = 1735}, [5647] = {.lex_state = 322}, - [5648] = {.lex_state = 338}, + [5648] = {.lex_state = 333}, [5649] = {.lex_state = 322}, - [5650] = {.lex_state = 339}, - [5651] = {.lex_state = 305}, - [5652] = {.lex_state = 1731}, - [5653] = {.lex_state = 1694}, - [5654] = {.lex_state = 322}, - [5655] = {.lex_state = 322}, - [5656] = {.lex_state = 333}, - [5657] = {.lex_state = 322}, - [5658] = {.lex_state = 1736}, - [5659] = {.lex_state = 322}, - [5660] = {.lex_state = 245, .external_lex_state = 2}, - [5661] = {.lex_state = 245, .external_lex_state = 2}, - [5662] = {.lex_state = 1736}, - [5663] = {.lex_state = 1776}, + [5650] = {.lex_state = 43}, + [5651] = {.lex_state = 43}, + [5652] = {.lex_state = 322}, + [5653] = {.lex_state = 1730}, + [5654] = {.lex_state = 1780}, + [5655] = {.lex_state = 1740}, + [5656] = {.lex_state = 1698}, + [5657] = {.lex_state = 1735}, + [5658] = {.lex_state = 322}, + [5659] = {.lex_state = 245, .external_lex_state = 2}, + [5660] = {.lex_state = 333}, + [5661] = {.lex_state = 1775}, + [5662] = {.lex_state = 305}, + [5663] = {.lex_state = 245, .external_lex_state = 2}, [5664] = {.lex_state = 322}, - [5665] = {.lex_state = 43}, - [5666] = {.lex_state = 1726}, - [5667] = {.lex_state = 1736}, - [5668] = {.lex_state = 1736}, - [5669] = {.lex_state = 338}, - [5670] = {.lex_state = 299}, - [5671] = {.lex_state = 333}, - [5672] = {.lex_state = 1731}, - [5673] = {.lex_state = 322}, - [5674] = {.lex_state = 245, .external_lex_state = 2}, + [5665] = {.lex_state = 322}, + [5666] = {.lex_state = 245, .external_lex_state = 2}, + [5667] = {.lex_state = 305}, + [5668] = {.lex_state = 334}, + [5669] = {.lex_state = 322}, + [5670] = {.lex_state = 1735}, + [5671] = {.lex_state = 322}, + [5672] = {.lex_state = 322}, + [5673] = {.lex_state = 245, .external_lex_state = 2}, + [5674] = {.lex_state = 305}, [5675] = {.lex_state = 245, .external_lex_state = 2}, - [5676] = {.lex_state = 322}, - [5677] = {.lex_state = 1776}, - [5678] = {.lex_state = 322}, - [5679] = {.lex_state = 322}, - [5680] = {.lex_state = 322}, - [5681] = {.lex_state = 323}, - [5682] = {.lex_state = 334}, - [5683] = {.lex_state = 1771}, - [5684] = {.lex_state = 334}, - [5685] = {.lex_state = 313}, - [5686] = {.lex_state = 322}, + [5676] = {.lex_state = 305}, + [5677] = {.lex_state = 305}, + [5678] = {.lex_state = 1729}, + [5679] = {.lex_state = 1780}, + [5680] = {.lex_state = 245, .external_lex_state = 2}, + [5681] = {.lex_state = 1735}, + [5682] = {.lex_state = 338}, + [5683] = {.lex_state = 334}, + [5684] = {.lex_state = 322}, + [5685] = {.lex_state = 322}, + [5686] = {.lex_state = 1735}, [5687] = {.lex_state = 322}, [5688] = {.lex_state = 322}, - [5689] = {.lex_state = 43, .external_lex_state = 2}, - [5690] = {.lex_state = 1731}, - [5691] = {.lex_state = 1734}, - [5692] = {.lex_state = 1731}, - [5693] = {.lex_state = 338}, - [5694] = {.lex_state = 1731}, - [5695] = {.lex_state = 305}, - [5696] = {.lex_state = 1726}, - [5697] = {.lex_state = 1731}, - [5698] = {.lex_state = 255}, - [5699] = {.lex_state = 322}, - [5700] = {.lex_state = 340}, - [5701] = {.lex_state = 322}, - [5702] = {.lex_state = 255}, - [5703] = {.lex_state = 4687}, - [5704] = {.lex_state = 4687}, - [5705] = {.lex_state = 255}, - [5706] = {.lex_state = 1696}, - [5707] = {.lex_state = 1696}, - [5708] = {.lex_state = 322}, - [5709] = {.lex_state = 282}, - [5710] = {.lex_state = 1696}, - [5711] = {.lex_state = 322}, - [5712] = {.lex_state = 1696}, - [5713] = {.lex_state = 276}, - [5714] = {.lex_state = 255}, - [5715] = {.lex_state = 4687}, - [5716] = {.lex_state = 4687}, + [5689] = {.lex_state = 268}, + [5690] = {.lex_state = 1735}, + [5691] = {.lex_state = 299}, + [5692] = {.lex_state = 322}, + [5693] = {.lex_state = 333}, + [5694] = {.lex_state = 309}, + [5695] = {.lex_state = 1740}, + [5696] = {.lex_state = 1740}, + [5697] = {.lex_state = 268}, + [5698] = {.lex_state = 1700}, + [5699] = {.lex_state = 1700}, + [5700] = {.lex_state = 1740}, + [5701] = {.lex_state = 292}, + [5702] = {.lex_state = 1740}, + [5703] = {.lex_state = 1698}, + [5704] = {.lex_state = 4710}, + [5705] = {.lex_state = 4710}, + [5706] = {.lex_state = 338}, + [5707] = {.lex_state = 1740}, + [5708] = {.lex_state = 313}, + [5709] = {.lex_state = 255}, + [5710] = {.lex_state = 255}, + [5711] = {.lex_state = 4710}, + [5712] = {.lex_state = 4710}, + [5713] = {.lex_state = 338}, + [5714] = {.lex_state = 342}, + [5715] = {.lex_state = 255}, + [5716] = {.lex_state = 1700}, [5717] = {.lex_state = 255}, - [5718] = {.lex_state = 369}, - [5719] = {.lex_state = 1696}, - [5720] = {.lex_state = 322}, - [5721] = {.lex_state = 1696}, - [5722] = {.lex_state = 1696}, - [5723] = {.lex_state = 1696}, - [5724] = {.lex_state = 1696}, - [5725] = {.lex_state = 351}, - [5726] = {.lex_state = 335}, - [5727] = {.lex_state = 1696}, - [5728] = {.lex_state = 255}, - [5729] = {.lex_state = 4687}, - [5730] = {.lex_state = 4687}, - [5731] = {.lex_state = 1664}, - [5732] = {.lex_state = 255}, - [5733] = {.lex_state = 1696}, - [5734] = {.lex_state = 1696}, - [5735] = {.lex_state = 1696}, - [5736] = {.lex_state = 322}, - [5737] = {.lex_state = 1696}, - [5738] = {.lex_state = 1696}, - [5739] = {.lex_state = 1696}, - [5740] = {.lex_state = 345}, - [5741] = {.lex_state = 322}, - [5742] = {.lex_state = 255}, - [5743] = {.lex_state = 255}, - [5744] = {.lex_state = 1696}, - [5745] = {.lex_state = 255}, - [5746] = {.lex_state = 4687}, - [5747] = {.lex_state = 1696}, + [5718] = {.lex_state = 255}, + [5719] = {.lex_state = 1700}, + [5720] = {.lex_state = 1700}, + [5721] = {.lex_state = 1740}, + [5722] = {.lex_state = 1740}, + [5723] = {.lex_state = 1740}, + [5724] = {.lex_state = 4710}, + [5725] = {.lex_state = 4710}, + [5726] = {.lex_state = 338}, + [5727] = {.lex_state = 322}, + [5728] = {.lex_state = 1700}, + [5729] = {.lex_state = 322}, + [5730] = {.lex_state = 1740}, + [5731] = {.lex_state = 313}, + [5732] = {.lex_state = 1700}, + [5733] = {.lex_state = 255}, + [5734] = {.lex_state = 255}, + [5735] = {.lex_state = 1740}, + [5736] = {.lex_state = 4710}, + [5737] = {.lex_state = 4710}, + [5738] = {.lex_state = 1700}, + [5739] = {.lex_state = 1700}, + [5740] = {.lex_state = 255}, + [5741] = {.lex_state = 1700}, + [5742] = {.lex_state = 1700}, + [5743] = {.lex_state = 1700}, + [5744] = {.lex_state = 255}, + [5745] = {.lex_state = 1740}, + [5746] = {.lex_state = 4710}, + [5747] = {.lex_state = 4710}, [5748] = {.lex_state = 255}, - [5749] = {.lex_state = 369}, - [5750] = {.lex_state = 369}, - [5751] = {.lex_state = 255}, - [5752] = {.lex_state = 255}, - [5753] = {.lex_state = 1696}, - [5754] = {.lex_state = 313}, - [5755] = {.lex_state = 1696}, - [5756] = {.lex_state = 292}, - [5757] = {.lex_state = 4687}, - [5758] = {.lex_state = 43, .external_lex_state = 2}, - [5759] = {.lex_state = 255}, - [5760] = {.lex_state = 255}, - [5761] = {.lex_state = 1696}, - [5762] = {.lex_state = 1694}, - [5763] = {.lex_state = 1696}, - [5764] = {.lex_state = 1736}, - [5765] = {.lex_state = 255}, - [5766] = {.lex_state = 255}, - [5767] = {.lex_state = 1696}, - [5768] = {.lex_state = 322}, - [5769] = {.lex_state = 1696}, - [5770] = {.lex_state = 309}, - [5771] = {.lex_state = 255}, - [5772] = {.lex_state = 255}, - [5773] = {.lex_state = 1696}, - [5774] = {.lex_state = 1736}, - [5775] = {.lex_state = 1696}, - [5776] = {.lex_state = 338}, - [5777] = {.lex_state = 1696}, - [5778] = {.lex_state = 1738}, - [5779] = {.lex_state = 1696}, - [5780] = {.lex_state = 255}, - [5781] = {.lex_state = 1736}, - [5782] = {.lex_state = 1736}, - [5783] = {.lex_state = 4687}, - [5784] = {.lex_state = 4687}, - [5785] = {.lex_state = 322}, - [5786] = {.lex_state = 338}, - [5787] = {.lex_state = 1664}, - [5788] = {.lex_state = 1736}, - [5789] = {.lex_state = 268}, - [5790] = {.lex_state = 1696}, - [5791] = {.lex_state = 1736}, - [5792] = {.lex_state = 322}, - [5793] = {.lex_state = 1696}, + [5749] = {.lex_state = 1700}, + [5750] = {.lex_state = 1740}, + [5751] = {.lex_state = 1700}, + [5752] = {.lex_state = 1700}, + [5753] = {.lex_state = 1698}, + [5754] = {.lex_state = 1700}, + [5755] = {.lex_state = 255}, + [5756] = {.lex_state = 4710}, + [5757] = {.lex_state = 4710}, + [5758] = {.lex_state = 255}, + [5759] = {.lex_state = 322}, + [5760] = {.lex_state = 1700}, + [5761] = {.lex_state = 255}, + [5762] = {.lex_state = 1700}, + [5763] = {.lex_state = 306}, + [5764] = {.lex_state = 255}, + [5765] = {.lex_state = 4710}, + [5766] = {.lex_state = 4710}, + [5767] = {.lex_state = 255}, + [5768] = {.lex_state = 1700}, + [5769] = {.lex_state = 276}, + [5770] = {.lex_state = 1700}, + [5771] = {.lex_state = 1700}, + [5772] = {.lex_state = 369}, + [5773] = {.lex_state = 1700}, + [5774] = {.lex_state = 255}, + [5775] = {.lex_state = 4710}, + [5776] = {.lex_state = 4710}, + [5777] = {.lex_state = 255}, + [5778] = {.lex_state = 1700}, + [5779] = {.lex_state = 1740}, + [5780] = {.lex_state = 1740}, + [5781] = {.lex_state = 1700}, + [5782] = {.lex_state = 1740}, + [5783] = {.lex_state = 1742}, + [5784] = {.lex_state = 255}, + [5785] = {.lex_state = 4710}, + [5786] = {.lex_state = 4710}, + [5787] = {.lex_state = 255}, + [5788] = {.lex_state = 1700}, + [5789] = {.lex_state = 1740}, + [5790] = {.lex_state = 322}, + [5791] = {.lex_state = 1700}, + [5792] = {.lex_state = 1700}, + [5793] = {.lex_state = 1740}, [5794] = {.lex_state = 255}, - [5795] = {.lex_state = 4687}, - [5796] = {.lex_state = 1736}, - [5797] = {.lex_state = 1736}, - [5798] = {.lex_state = 1736}, - [5799] = {.lex_state = 1696}, - [5800] = {.lex_state = 1736}, - [5801] = {.lex_state = 268}, - [5802] = {.lex_state = 4687}, - [5803] = {.lex_state = 268}, - [5804] = {.lex_state = 268}, - [5805] = {.lex_state = 268}, - [5806] = {.lex_state = 1736}, - [5807] = {.lex_state = 268}, - [5808] = {.lex_state = 255}, - [5809] = {.lex_state = 1696}, - [5810] = {.lex_state = 4687}, - [5811] = {.lex_state = 4687}, - [5812] = {.lex_state = 4687}, - [5813] = {.lex_state = 338}, - [5814] = {.lex_state = 306}, - [5815] = {.lex_state = 4687}, - [5816] = {.lex_state = 293}, - [5817] = {.lex_state = 255}, - [5818] = {.lex_state = 322}, - [5819] = {.lex_state = 1696}, - [5820] = {.lex_state = 1736}, - [5821] = {.lex_state = 1736}, - [5822] = {.lex_state = 1696}, - [5823] = {.lex_state = 1696}, - [5824] = {.lex_state = 255}, - [5825] = {.lex_state = 338}, - [5826] = {.lex_state = 340}, + [5795] = {.lex_state = 4710}, + [5796] = {.lex_state = 4710}, + [5797] = {.lex_state = 255}, + [5798] = {.lex_state = 1700}, + [5799] = {.lex_state = 1700}, + [5800] = {.lex_state = 1740}, + [5801] = {.lex_state = 255}, + [5802] = {.lex_state = 255}, + [5803] = {.lex_state = 1700}, + [5804] = {.lex_state = 369}, + [5805] = {.lex_state = 369}, + [5806] = {.lex_state = 1700}, + [5807] = {.lex_state = 255}, + [5808] = {.lex_state = 1740}, + [5809] = {.lex_state = 255}, + [5810] = {.lex_state = 255}, + [5811] = {.lex_state = 1700}, + [5812] = {.lex_state = 1700}, + [5813] = {.lex_state = 322}, + [5814] = {.lex_state = 1700}, + [5815] = {.lex_state = 255}, + [5816] = {.lex_state = 255}, + [5817] = {.lex_state = 1700}, + [5818] = {.lex_state = 1740}, + [5819] = {.lex_state = 1740}, + [5820] = {.lex_state = 255}, + [5821] = {.lex_state = 322}, + [5822] = {.lex_state = 255}, + [5823] = {.lex_state = 1700}, + [5824] = {.lex_state = 293}, + [5825] = {.lex_state = 1700}, + [5826] = {.lex_state = 322}, [5827] = {.lex_state = 255}, - [5828] = {.lex_state = 1736}, - [5829] = {.lex_state = 1736}, - [5830] = {.lex_state = 1736}, - [5831] = {.lex_state = 322}, - [5832] = {.lex_state = 1664}, - [5833] = {.lex_state = 1664}, - [5834] = {.lex_state = 1664}, - [5835] = {.lex_state = 1664}, - [5836] = {.lex_state = 4687}, - [5837] = {.lex_state = 1734}, - [5838] = {.lex_state = 4687}, - [5839] = {.lex_state = 335}, - [5840] = {.lex_state = 1736}, - [5841] = {.lex_state = 1736}, - [5842] = {.lex_state = 255}, - [5843] = {.lex_state = 1696}, - [5844] = {.lex_state = 1696}, - [5845] = {.lex_state = 322}, - [5846] = {.lex_state = 1736}, - [5847] = {.lex_state = 1736}, - [5848] = {.lex_state = 1736}, - [5849] = {.lex_state = 1736}, - [5850] = {.lex_state = 1736}, - [5851] = {.lex_state = 1696}, - [5852] = {.lex_state = 1696}, - [5853] = {.lex_state = 1696}, - [5854] = {.lex_state = 1696}, - [5855] = {.lex_state = 1736}, - [5856] = {.lex_state = 1736}, - [5857] = {.lex_state = 1736}, - [5858] = {.lex_state = 1736}, - [5859] = {.lex_state = 1736}, - [5860] = {.lex_state = 1696}, - [5861] = {.lex_state = 1740}, - [5862] = {.lex_state = 314}, - [5863] = {.lex_state = 255}, - [5864] = {.lex_state = 4687}, - [5865] = {.lex_state = 4687}, - [5866] = {.lex_state = 369}, - [5867] = {.lex_state = 369}, - [5868] = {.lex_state = 1736}, - [5869] = {.lex_state = 1736}, - [5870] = {.lex_state = 1694}, - [5871] = {.lex_state = 255}, - [5872] = {.lex_state = 1696}, - [5873] = {.lex_state = 345}, - [5874] = {.lex_state = 1736}, - [5875] = {.lex_state = 1736}, - [5876] = {.lex_state = 1736}, - [5877] = {.lex_state = 1736}, - [5878] = {.lex_state = 1736}, - [5879] = {.lex_state = 1736}, - [5880] = {.lex_state = 314}, - [5881] = {.lex_state = 255}, - [5882] = {.lex_state = 1736}, - [5883] = {.lex_state = 1736}, - [5884] = {.lex_state = 1736}, - [5885] = {.lex_state = 335}, - [5886] = {.lex_state = 1736}, - [5887] = {.lex_state = 1736}, - [5888] = {.lex_state = 1696}, - [5889] = {.lex_state = 1696}, - [5890] = {.lex_state = 335}, - [5891] = {.lex_state = 1696}, - [5892] = {.lex_state = 335}, - [5893] = {.lex_state = 335}, - [5894] = {.lex_state = 1696}, - [5895] = {.lex_state = 1736}, - [5896] = {.lex_state = 1696}, - [5897] = {.lex_state = 255}, - [5898] = {.lex_state = 1696}, - [5899] = {.lex_state = 1696}, - [5900] = {.lex_state = 322}, - [5901] = {.lex_state = 1736}, - [5902] = {.lex_state = 255}, - [5903] = {.lex_state = 1696}, - [5904] = {.lex_state = 1696}, - [5905] = {.lex_state = 1736}, - [5906] = {.lex_state = 4687}, - [5907] = {.lex_state = 4687}, - [5908] = {.lex_state = 255}, - [5909] = {.lex_state = 1694}, - [5910] = {.lex_state = 1696}, - [5911] = {.lex_state = 1694}, - [5912] = {.lex_state = 255}, - [5913] = {.lex_state = 1694}, - [5914] = {.lex_state = 1696}, - [5915] = {.lex_state = 1696}, - [5916] = {.lex_state = 1736}, - [5917] = {.lex_state = 1736}, - [5918] = {.lex_state = 1736}, - [5919] = {.lex_state = 1696}, - [5920] = {.lex_state = 1696}, - [5921] = {.lex_state = 1696}, - [5922] = {.lex_state = 313}, - [5923] = {.lex_state = 342}, - [5924] = {.lex_state = 1696}, - [5925] = {.lex_state = 1694}, - [5926] = {.lex_state = 1736}, - [5927] = {.lex_state = 322}, - [5928] = {.lex_state = 1736}, - [5929] = {.lex_state = 1696}, + [5828] = {.lex_state = 255}, + [5829] = {.lex_state = 1700}, + [5830] = {.lex_state = 1700}, + [5831] = {.lex_state = 1700}, + [5832] = {.lex_state = 322}, + [5833] = {.lex_state = 1700}, + [5834] = {.lex_state = 1700}, + [5835] = {.lex_state = 322}, + [5836] = {.lex_state = 1700}, + [5837] = {.lex_state = 1740}, + [5838] = {.lex_state = 1740}, + [5839] = {.lex_state = 322}, + [5840] = {.lex_state = 282}, + [5841] = {.lex_state = 345}, + [5842] = {.lex_state = 1698}, + [5843] = {.lex_state = 1744}, + [5844] = {.lex_state = 1700}, + [5845] = {.lex_state = 340}, + [5846] = {.lex_state = 1700}, + [5847] = {.lex_state = 268}, + [5848] = {.lex_state = 268}, + [5849] = {.lex_state = 268}, + [5850] = {.lex_state = 322}, + [5851] = {.lex_state = 335}, + [5852] = {.lex_state = 1740}, + [5853] = {.lex_state = 1740}, + [5854] = {.lex_state = 322}, + [5855] = {.lex_state = 1700}, + [5856] = {.lex_state = 1740}, + [5857] = {.lex_state = 1740}, + [5858] = {.lex_state = 369}, + [5859] = {.lex_state = 369}, + [5860] = {.lex_state = 1700}, + [5861] = {.lex_state = 43, .external_lex_state = 2}, + [5862] = {.lex_state = 1740}, + [5863] = {.lex_state = 1740}, + [5864] = {.lex_state = 1740}, + [5865] = {.lex_state = 1700}, + [5866] = {.lex_state = 335}, + [5867] = {.lex_state = 1668}, + [5868] = {.lex_state = 4710}, + [5869] = {.lex_state = 4710}, + [5870] = {.lex_state = 1668}, + [5871] = {.lex_state = 1668}, + [5872] = {.lex_state = 1668}, + [5873] = {.lex_state = 1740}, + [5874] = {.lex_state = 1738}, + [5875] = {.lex_state = 351}, + [5876] = {.lex_state = 1700}, + [5877] = {.lex_state = 1700}, + [5878] = {.lex_state = 1740}, + [5879] = {.lex_state = 1700}, + [5880] = {.lex_state = 1700}, + [5881] = {.lex_state = 1668}, + [5882] = {.lex_state = 1740}, + [5883] = {.lex_state = 1700}, + [5884] = {.lex_state = 1700}, + [5885] = {.lex_state = 322}, + [5886] = {.lex_state = 322}, + [5887] = {.lex_state = 1740}, + [5888] = {.lex_state = 335}, + [5889] = {.lex_state = 1740}, + [5890] = {.lex_state = 338}, + [5891] = {.lex_state = 314}, + [5892] = {.lex_state = 268}, + [5893] = {.lex_state = 314}, + [5894] = {.lex_state = 345}, + [5895] = {.lex_state = 268}, + [5896] = {.lex_state = 1740}, + [5897] = {.lex_state = 1700}, + [5898] = {.lex_state = 1740}, + [5899] = {.lex_state = 335}, + [5900] = {.lex_state = 1740}, + [5901] = {.lex_state = 322}, + [5902] = {.lex_state = 1700}, + [5903] = {.lex_state = 1740}, + [5904] = {.lex_state = 1740}, + [5905] = {.lex_state = 340}, + [5906] = {.lex_state = 1740}, + [5907] = {.lex_state = 1740}, + [5908] = {.lex_state = 335}, + [5909] = {.lex_state = 335}, + [5910] = {.lex_state = 1740}, + [5911] = {.lex_state = 1740}, + [5912] = {.lex_state = 1740}, + [5913] = {.lex_state = 1698}, + [5914] = {.lex_state = 255}, + [5915] = {.lex_state = 1698}, + [5916] = {.lex_state = 1740}, + [5917] = {.lex_state = 1740}, + [5918] = {.lex_state = 1740}, + [5919] = {.lex_state = 1740}, + [5920] = {.lex_state = 1698}, + [5921] = {.lex_state = 1668}, + [5922] = {.lex_state = 1700}, + [5923] = {.lex_state = 322}, + [5924] = {.lex_state = 1700}, + [5925] = {.lex_state = 314}, + [5926] = {.lex_state = 314}, + [5927] = {.lex_state = 375}, + [5928] = {.lex_state = 314}, + [5929] = {.lex_state = 313}, [5930] = {.lex_state = 375}, - [5931] = {.lex_state = 375}, - [5932] = {.lex_state = 43}, - [5933] = {.lex_state = 1696}, - [5934] = {.lex_state = 314}, - [5935] = {.lex_state = 314}, - [5936] = {.lex_state = 268}, - [5937] = {.lex_state = 1696}, - [5938] = {.lex_state = 307}, - [5939] = {.lex_state = 341}, - [5940] = {.lex_state = 375}, + [5931] = {.lex_state = 313}, + [5932] = {.lex_state = 375}, + [5933] = {.lex_state = 314}, + [5934] = {.lex_state = 375}, + [5935] = {.lex_state = 375}, + [5936] = {.lex_state = 314}, + [5937] = {.lex_state = 268}, + [5938] = {.lex_state = 314}, + [5939] = {.lex_state = 1700}, + [5940] = {.lex_state = 1633}, [5941] = {.lex_state = 375}, - [5942] = {.lex_state = 341}, - [5943] = {.lex_state = 322}, - [5944] = {.lex_state = 1696}, - [5945] = {.lex_state = 375}, - [5946] = {.lex_state = 1697}, - [5947] = {.lex_state = 314}, - [5948] = {.lex_state = 310}, - [5949] = {.lex_state = 322}, - [5950] = {.lex_state = 322}, - [5951] = {.lex_state = 43}, - [5952] = {.lex_state = 341}, - [5953] = {.lex_state = 314}, - [5954] = {.lex_state = 375}, - [5955] = {.lex_state = 375}, - [5956] = {.lex_state = 280}, - [5957] = {.lex_state = 43}, - [5958] = {.lex_state = 322}, - [5959] = {.lex_state = 1696}, - [5960] = {.lex_state = 375}, - [5961] = {.lex_state = 353}, - [5962] = {.lex_state = 1696}, - [5963] = {.lex_state = 322}, - [5964] = {.lex_state = 43}, - [5965] = {.lex_state = 314}, - [5966] = {.lex_state = 322}, + [5942] = {.lex_state = 322}, + [5943] = {.lex_state = 1700}, + [5944] = {.lex_state = 314}, + [5945] = {.lex_state = 314}, + [5946] = {.lex_state = 322}, + [5947] = {.lex_state = 307}, + [5948] = {.lex_state = 1701}, + [5949] = {.lex_state = 1700}, + [5950] = {.lex_state = 314}, + [5951] = {.lex_state = 314}, + [5952] = {.lex_state = 313}, + [5953] = {.lex_state = 375}, + [5954] = {.lex_state = 314}, + [5955] = {.lex_state = 1740}, + [5956] = {.lex_state = 1700}, + [5957] = {.lex_state = 375}, + [5958] = {.lex_state = 1700}, + [5959] = {.lex_state = 314}, + [5960] = {.lex_state = 341}, + [5961] = {.lex_state = 314}, + [5962] = {.lex_state = 314}, + [5963] = {.lex_state = 375}, + [5964] = {.lex_state = 375}, + [5965] = {.lex_state = 375}, + [5966] = {.lex_state = 375}, [5967] = {.lex_state = 268}, - [5968] = {.lex_state = 314}, - [5969] = {.lex_state = 314}, - [5970] = {.lex_state = 314}, - [5971] = {.lex_state = 314}, + [5968] = {.lex_state = 322}, + [5969] = {.lex_state = 322}, + [5970] = {.lex_state = 375}, + [5971] = {.lex_state = 322}, [5972] = {.lex_state = 314}, - [5973] = {.lex_state = 313}, - [5974] = {.lex_state = 322}, - [5975] = {.lex_state = 1696}, - [5976] = {.lex_state = 268}, - [5977] = {.lex_state = 322}, - [5978] = {.lex_state = 314}, - [5979] = {.lex_state = 375}, - [5980] = {.lex_state = 1696}, - [5981] = {.lex_state = 314}, - [5982] = {.lex_state = 1696}, - [5983] = {.lex_state = 314}, - [5984] = {.lex_state = 1696}, - [5985] = {.lex_state = 375}, - [5986] = {.lex_state = 1696}, - [5987] = {.lex_state = 375}, - [5988] = {.lex_state = 314}, + [5973] = {.lex_state = 43}, + [5974] = {.lex_state = 314}, + [5975] = {.lex_state = 280}, + [5976] = {.lex_state = 278}, + [5977] = {.lex_state = 292}, + [5978] = {.lex_state = 1700}, + [5979] = {.lex_state = 341}, + [5980] = {.lex_state = 314}, + [5981] = {.lex_state = 268}, + [5982] = {.lex_state = 43}, + [5983] = {.lex_state = 322}, + [5984] = {.lex_state = 1664}, + [5985] = {.lex_state = 314}, + [5986] = {.lex_state = 43}, + [5987] = {.lex_state = 1700}, + [5988] = {.lex_state = 322}, [5989] = {.lex_state = 314}, - [5990] = {.lex_state = 341}, - [5991] = {.lex_state = 314}, - [5992] = {.lex_state = 322}, - [5993] = {.lex_state = 314}, - [5994] = {.lex_state = 322}, - [5995] = {.lex_state = 1696}, + [5990] = {.lex_state = 313}, + [5991] = {.lex_state = 1700}, + [5992] = {.lex_state = 314}, + [5993] = {.lex_state = 375}, + [5994] = {.lex_state = 43}, + [5995] = {.lex_state = 1669}, [5996] = {.lex_state = 313}, - [5997] = {.lex_state = 322}, - [5998] = {.lex_state = 1696}, - [5999] = {.lex_state = 43}, - [6000] = {.lex_state = 43}, - [6001] = {.lex_state = 278}, - [6002] = {.lex_state = 43}, - [6003] = {.lex_state = 314}, + [5997] = {.lex_state = 43}, + [5998] = {.lex_state = 1700}, + [5999] = {.lex_state = 1700}, + [6000] = {.lex_state = 268}, + [6001] = {.lex_state = 1700}, + [6002] = {.lex_state = 314}, + [6003] = {.lex_state = 1701}, [6004] = {.lex_state = 314}, - [6005] = {.lex_state = 1629}, - [6006] = {.lex_state = 375}, - [6007] = {.lex_state = 268}, + [6005] = {.lex_state = 375}, + [6006] = {.lex_state = 322}, + [6007] = {.lex_state = 43}, [6008] = {.lex_state = 314}, - [6009] = {.lex_state = 314}, - [6010] = {.lex_state = 1660}, - [6011] = {.lex_state = 322}, - [6012] = {.lex_state = 1696}, - [6013] = {.lex_state = 375}, - [6014] = {.lex_state = 1696}, - [6015] = {.lex_state = 322}, - [6016] = {.lex_state = 322}, - [6017] = {.lex_state = 314}, - [6018] = {.lex_state = 314}, - [6019] = {.lex_state = 322}, - [6020] = {.lex_state = 1694}, - [6021] = {.lex_state = 43}, - [6022] = {.lex_state = 292}, - [6023] = {.lex_state = 375}, - [6024] = {.lex_state = 314}, - [6025] = {.lex_state = 314}, - [6026] = {.lex_state = 314}, - [6027] = {.lex_state = 268}, - [6028] = {.lex_state = 375}, - [6029] = {.lex_state = 1736}, - [6030] = {.lex_state = 375}, - [6031] = {.lex_state = 43}, - [6032] = {.lex_state = 43}, - [6033] = {.lex_state = 43}, - [6034] = {.lex_state = 43}, - [6035] = {.lex_state = 43}, - [6036] = {.lex_state = 314}, - [6037] = {.lex_state = 1696}, - [6038] = {.lex_state = 343}, - [6039] = {.lex_state = 314}, - [6040] = {.lex_state = 314}, - [6041] = {.lex_state = 313}, + [6009] = {.lex_state = 313}, + [6010] = {.lex_state = 322}, + [6011] = {.lex_state = 341}, + [6012] = {.lex_state = 314}, + [6013] = {.lex_state = 314}, + [6014] = {.lex_state = 1700}, + [6015] = {.lex_state = 268}, + [6016] = {.lex_state = 314}, + [6017] = {.lex_state = 375}, + [6018] = {.lex_state = 1700}, + [6019] = {.lex_state = 43}, + [6020] = {.lex_state = 322}, + [6021] = {.lex_state = 314}, + [6022] = {.lex_state = 314}, + [6023] = {.lex_state = 314}, + [6024] = {.lex_state = 1700}, + [6025] = {.lex_state = 43}, + [6026] = {.lex_state = 353}, + [6027] = {.lex_state = 314}, + [6028] = {.lex_state = 314}, + [6029] = {.lex_state = 375}, + [6030] = {.lex_state = 314}, + [6031] = {.lex_state = 1701}, + [6032] = {.lex_state = 314}, + [6033] = {.lex_state = 341}, + [6034] = {.lex_state = 314}, + [6035] = {.lex_state = 352}, + [6036] = {.lex_state = 375}, + [6037] = {.lex_state = 314}, + [6038] = {.lex_state = 353}, + [6039] = {.lex_state = 43}, + [6040] = {.lex_state = 43}, + [6041] = {.lex_state = 43}, [6042] = {.lex_state = 322}, - [6043] = {.lex_state = 314}, - [6044] = {.lex_state = 314}, - [6045] = {.lex_state = 310}, - [6046] = {.lex_state = 43}, - [6047] = {.lex_state = 43}, - [6048] = {.lex_state = 313}, + [6043] = {.lex_state = 43}, + [6044] = {.lex_state = 375}, + [6045] = {.lex_state = 314}, + [6046] = {.lex_state = 322}, + [6047] = {.lex_state = 1700}, + [6048] = {.lex_state = 314}, [6049] = {.lex_state = 314}, - [6050] = {.lex_state = 1696}, - [6051] = {.lex_state = 314}, - [6052] = {.lex_state = 1696}, + [6050] = {.lex_state = 343}, + [6051] = {.lex_state = 375}, + [6052] = {.lex_state = 322}, [6053] = {.lex_state = 314}, - [6054] = {.lex_state = 322}, - [6055] = {.lex_state = 375}, - [6056] = {.lex_state = 314}, - [6057] = {.lex_state = 322}, - [6058] = {.lex_state = 314}, - [6059] = {.lex_state = 314}, - [6060] = {.lex_state = 43}, - [6061] = {.lex_state = 322}, - [6062] = {.lex_state = 375}, + [6054] = {.lex_state = 314}, + [6055] = {.lex_state = 322}, + [6056] = {.lex_state = 1700}, + [6057] = {.lex_state = 43}, + [6058] = {.lex_state = 1700}, + [6059] = {.lex_state = 322}, + [6060] = {.lex_state = 322}, + [6061] = {.lex_state = 314}, + [6062] = {.lex_state = 1700}, [6063] = {.lex_state = 314}, - [6064] = {.lex_state = 322}, + [6064] = {.lex_state = 314}, [6065] = {.lex_state = 322}, - [6066] = {.lex_state = 313}, - [6067] = {.lex_state = 314}, - [6068] = {.lex_state = 1736}, + [6066] = {.lex_state = 314}, + [6067] = {.lex_state = 43}, + [6068] = {.lex_state = 375}, [6069] = {.lex_state = 314}, - [6070] = {.lex_state = 314}, + [6070] = {.lex_state = 375}, [6071] = {.lex_state = 375}, - [6072] = {.lex_state = 1696}, - [6073] = {.lex_state = 322}, - [6074] = {.lex_state = 314}, - [6075] = {.lex_state = 1736}, - [6076] = {.lex_state = 322}, - [6077] = {.lex_state = 375}, - [6078] = {.lex_state = 1696}, - [6079] = {.lex_state = 314}, - [6080] = {.lex_state = 375}, + [6072] = {.lex_state = 314}, + [6073] = {.lex_state = 1700}, + [6074] = {.lex_state = 1740}, + [6075] = {.lex_state = 314}, + [6076] = {.lex_state = 314}, + [6077] = {.lex_state = 322}, + [6078] = {.lex_state = 314}, + [6079] = {.lex_state = 43}, + [6080] = {.lex_state = 43}, [6081] = {.lex_state = 43}, [6082] = {.lex_state = 43}, - [6083] = {.lex_state = 43}, - [6084] = {.lex_state = 43}, + [6083] = {.lex_state = 322}, + [6084] = {.lex_state = 322}, [6085] = {.lex_state = 322}, - [6086] = {.lex_state = 322}, - [6087] = {.lex_state = 314}, - [6088] = {.lex_state = 1696}, - [6089] = {.lex_state = 322}, - [6090] = {.lex_state = 314}, - [6091] = {.lex_state = 1696}, - [6092] = {.lex_state = 1696}, - [6093] = {.lex_state = 375}, - [6094] = {.lex_state = 314}, - [6095] = {.lex_state = 314}, - [6096] = {.lex_state = 322}, - [6097] = {.lex_state = 307}, - [6098] = {.lex_state = 1696}, - [6099] = {.lex_state = 1696}, - [6100] = {.lex_state = 314}, - [6101] = {.lex_state = 375}, - [6102] = {.lex_state = 1696}, - [6103] = {.lex_state = 1696}, - [6104] = {.lex_state = 322}, - [6105] = {.lex_state = 1696}, - [6106] = {.lex_state = 352}, - [6107] = {.lex_state = 375}, - [6108] = {.lex_state = 1696}, - [6109] = {.lex_state = 322}, - [6110] = {.lex_state = 341}, - [6111] = {.lex_state = 1665}, - [6112] = {.lex_state = 1696}, - [6113] = {.lex_state = 1696}, - [6114] = {.lex_state = 314}, - [6115] = {.lex_state = 314}, - [6116] = {.lex_state = 1696}, - [6117] = {.lex_state = 1696}, - [6118] = {.lex_state = 1696}, - [6119] = {.lex_state = 1696}, - [6120] = {.lex_state = 322}, - [6121] = {.lex_state = 1696}, - [6122] = {.lex_state = 1696}, - [6123] = {.lex_state = 314}, - [6124] = {.lex_state = 1697}, - [6125] = {.lex_state = 1696}, - [6126] = {.lex_state = 1696}, - [6127] = {.lex_state = 1696}, - [6128] = {.lex_state = 1696}, - [6129] = {.lex_state = 1696}, - [6130] = {.lex_state = 1696}, - [6131] = {.lex_state = 1696}, - [6132] = {.lex_state = 1696}, - [6133] = {.lex_state = 1696}, - [6134] = {.lex_state = 1696}, - [6135] = {.lex_state = 1696}, - [6136] = {.lex_state = 1696}, - [6137] = {.lex_state = 1696}, - [6138] = {.lex_state = 1696}, - [6139] = {.lex_state = 375}, - [6140] = {.lex_state = 268}, - [6141] = {.lex_state = 43}, - [6142] = {.lex_state = 43}, + [6086] = {.lex_state = 375}, + [6087] = {.lex_state = 375}, + [6088] = {.lex_state = 1740}, + [6089] = {.lex_state = 375}, + [6090] = {.lex_state = 1700}, + [6091] = {.lex_state = 1700}, + [6092] = {.lex_state = 322}, + [6093] = {.lex_state = 1700}, + [6094] = {.lex_state = 1700}, + [6095] = {.lex_state = 322}, + [6096] = {.lex_state = 375}, + [6097] = {.lex_state = 375}, + [6098] = {.lex_state = 1700}, + [6099] = {.lex_state = 1700}, + [6100] = {.lex_state = 322}, + [6101] = {.lex_state = 310}, + [6102] = {.lex_state = 1700}, + [6103] = {.lex_state = 1700}, + [6104] = {.lex_state = 341}, + [6105] = {.lex_state = 314}, + [6106] = {.lex_state = 341}, + [6107] = {.lex_state = 1700}, + [6108] = {.lex_state = 1700}, + [6109] = {.lex_state = 1700}, + [6110] = {.lex_state = 1700}, + [6111] = {.lex_state = 1700}, + [6112] = {.lex_state = 1700}, + [6113] = {.lex_state = 375}, + [6114] = {.lex_state = 1700}, + [6115] = {.lex_state = 1700}, + [6116] = {.lex_state = 314}, + [6117] = {.lex_state = 314}, + [6118] = {.lex_state = 1700}, + [6119] = {.lex_state = 1700}, + [6120] = {.lex_state = 43}, + [6121] = {.lex_state = 322}, + [6122] = {.lex_state = 310}, + [6123] = {.lex_state = 1700}, + [6124] = {.lex_state = 1700}, + [6125] = {.lex_state = 1700}, + [6126] = {.lex_state = 1700}, + [6127] = {.lex_state = 1700}, + [6128] = {.lex_state = 1700}, + [6129] = {.lex_state = 1700}, + [6130] = {.lex_state = 1700}, + [6131] = {.lex_state = 1700}, + [6132] = {.lex_state = 1700}, + [6133] = {.lex_state = 1700}, + [6134] = {.lex_state = 1700}, + [6135] = {.lex_state = 375}, + [6136] = {.lex_state = 375}, + [6137] = {.lex_state = 314}, + [6138] = {.lex_state = 43}, + [6139] = {.lex_state = 43}, + [6140] = {.lex_state = 43}, + [6141] = {.lex_state = 322}, + [6142] = {.lex_state = 322}, [6143] = {.lex_state = 43}, - [6144] = {.lex_state = 1697}, - [6145] = {.lex_state = 43}, - [6146] = {.lex_state = 375}, - [6147] = {.lex_state = 314}, - [6148] = {.lex_state = 314}, - [6149] = {.lex_state = 353}, + [6144] = {.lex_state = 322}, + [6145] = {.lex_state = 1700}, + [6146] = {.lex_state = 314}, + [6147] = {.lex_state = 375}, + [6148] = {.lex_state = 322}, + [6149] = {.lex_state = 307}, [6150] = {.lex_state = 322}, [6151] = {.lex_state = 322}, - [6152] = {.lex_state = 375}, - [6153] = {.lex_state = 341}, - [6154] = {.lex_state = 375}, + [6152] = {.lex_state = 322}, + [6153] = {.lex_state = 314}, + [6154] = {.lex_state = 43}, [6155] = {.lex_state = 375}, - [6156] = {.lex_state = 314}, - [6157] = {.lex_state = 314}, - [6158] = {.lex_state = 1696}, - [6159] = {.lex_state = 322}, - [6160] = {.lex_state = 322}, - [6161] = {.lex_state = 375}, - [6162] = {.lex_state = 314}, - [6163] = {.lex_state = 375}, - [6164] = {.lex_state = 375}, - [6165] = {.lex_state = 1696}, - [6166] = {.lex_state = 375}, - [6167] = {.lex_state = 313}, - [6168] = {.lex_state = 322}, - [6169] = {.lex_state = 1696}, - [6170] = {.lex_state = 1696}, - [6171] = {.lex_state = 1696}, - [6172] = {.lex_state = 344}, - [6173] = {.lex_state = 1696}, - [6174] = {.lex_state = 1696}, - [6175] = {.lex_state = 354}, - [6176] = {.lex_state = 38}, - [6177] = {.lex_state = 313}, - [6178] = {.lex_state = 313}, - [6179] = {.lex_state = 358}, - [6180] = {.lex_state = 314}, - [6181] = {.lex_state = 314}, - [6182] = {.lex_state = 308}, - [6183] = {.lex_state = 254}, - [6184] = {.lex_state = 38}, - [6185] = {.lex_state = 354}, - [6186] = {.lex_state = 1696}, - [6187] = {.lex_state = 1696}, - [6188] = {.lex_state = 97}, - [6189] = {.lex_state = 1665}, - [6190] = {.lex_state = 371}, - [6191] = {.lex_state = 367}, - [6192] = {.lex_state = 255}, - [6193] = {.lex_state = 1696}, - [6194] = {.lex_state = 1696}, - [6195] = {.lex_state = 1696}, - [6196] = {.lex_state = 1696}, - [6197] = {.lex_state = 1696}, - [6198] = {.lex_state = 1696}, - [6199] = {.lex_state = 1696}, - [6200] = {.lex_state = 1696}, - [6201] = {.lex_state = 1696}, - [6202] = {.lex_state = 1696}, - [6203] = {.lex_state = 1696}, - [6204] = {.lex_state = 371}, - [6205] = {.lex_state = 371}, - [6206] = {.lex_state = 1696}, - [6207] = {.lex_state = 1696}, - [6208] = {.lex_state = 1665}, - [6209] = {.lex_state = 140}, - [6210] = {.lex_state = 140}, - [6211] = {.lex_state = 97}, - [6212] = {.lex_state = 97}, - [6213] = {.lex_state = 97}, - [6214] = {.lex_state = 254}, + [6156] = {.lex_state = 1698}, + [6157] = {.lex_state = 322}, + [6158] = {.lex_state = 268}, + [6159] = {.lex_state = 314}, + [6160] = {.lex_state = 97}, + [6161] = {.lex_state = 358}, + [6162] = {.lex_state = 111}, + [6163] = {.lex_state = 1700}, + [6164] = {.lex_state = 1700}, + [6165] = {.lex_state = 1700}, + [6166] = {.lex_state = 1700}, + [6167] = {.lex_state = 1700}, + [6168] = {.lex_state = 308}, + [6169] = {.lex_state = 38}, + [6170] = {.lex_state = 43}, + [6171] = {.lex_state = 1700}, + [6172] = {.lex_state = 1700}, + [6173] = {.lex_state = 1700}, + [6174] = {.lex_state = 314}, + [6175] = {.lex_state = 308}, + [6176] = {.lex_state = 254}, + [6177] = {.lex_state = 373}, + [6178] = {.lex_state = 373}, + [6179] = {.lex_state = 341}, + [6180] = {.lex_state = 97}, + [6181] = {.lex_state = 1700}, + [6182] = {.lex_state = 1700}, + [6183] = {.lex_state = 1700}, + [6184] = {.lex_state = 1700}, + [6185] = {.lex_state = 1700}, + [6186] = {.lex_state = 1700}, + [6187] = {.lex_state = 1700}, + [6188] = {.lex_state = 1700}, + [6189] = {.lex_state = 97}, + [6190] = {.lex_state = 97}, + [6191] = {.lex_state = 71}, + [6192] = {.lex_state = 1700}, + [6193] = {.lex_state = 1700}, + [6194] = {.lex_state = 97}, + [6195] = {.lex_state = 308}, + [6196] = {.lex_state = 97}, + [6197] = {.lex_state = 308}, + [6198] = {.lex_state = 308}, + [6199] = {.lex_state = 38}, + [6200] = {.lex_state = 254}, + [6201] = {.lex_state = 354}, + [6202] = {.lex_state = 140}, + [6203] = {.lex_state = 140}, + [6204] = {.lex_state = 97}, + [6205] = {.lex_state = 97}, + [6206] = {.lex_state = 97}, + [6207] = {.lex_state = 97}, + [6208] = {.lex_state = 1700}, + [6209] = {.lex_state = 1700}, + [6210] = {.lex_state = 1700}, + [6211] = {.lex_state = 1700}, + [6212] = {.lex_state = 1700}, + [6213] = {.lex_state = 311}, + [6214] = {.lex_state = 308}, [6215] = {.lex_state = 354}, - [6216] = {.lex_state = 97}, - [6217] = {.lex_state = 311}, - [6218] = {.lex_state = 1696}, - [6219] = {.lex_state = 311}, - [6220] = {.lex_state = 354}, - [6221] = {.lex_state = 354}, - [6222] = {.lex_state = 97}, - [6223] = {.lex_state = 1696}, + [6216] = {.lex_state = 311}, + [6217] = {.lex_state = 1669}, + [6218] = {.lex_state = 1700}, + [6219] = {.lex_state = 1700}, + [6220] = {.lex_state = 1700}, + [6221] = {.lex_state = 140}, + [6222] = {.lex_state = 140}, + [6223] = {.lex_state = 140}, [6224] = {.lex_state = 140}, - [6225] = {.lex_state = 140}, - [6226] = {.lex_state = 140}, - [6227] = {.lex_state = 140}, - [6228] = {.lex_state = 97}, - [6229] = {.lex_state = 97}, - [6230] = {.lex_state = 97}, - [6231] = {.lex_state = 1696}, - [6232] = {.lex_state = 1696}, - [6233] = {.lex_state = 1696}, - [6234] = {.lex_state = 1696}, - [6235] = {.lex_state = 1696}, - [6236] = {.lex_state = 322}, - [6237] = {.lex_state = 322}, - [6238] = {.lex_state = 1696}, - [6239] = {.lex_state = 1696}, - [6240] = {.lex_state = 1696}, - [6241] = {.lex_state = 1696}, - [6242] = {.lex_state = 140}, - [6243] = {.lex_state = 140}, - [6244] = {.lex_state = 97}, - [6245] = {.lex_state = 1696}, - [6246] = {.lex_state = 1696}, - [6247] = {.lex_state = 1696}, - [6248] = {.lex_state = 308}, - [6249] = {.lex_state = 311}, - [6250] = {.lex_state = 97}, - [6251] = {.lex_state = 1696}, - [6252] = {.lex_state = 97}, - [6253] = {.lex_state = 38}, - [6254] = {.lex_state = 38}, - [6255] = {.lex_state = 1696}, - [6256] = {.lex_state = 311}, - [6257] = {.lex_state = 1696}, - [6258] = {.lex_state = 1696}, - [6259] = {.lex_state = 354}, - [6260] = {.lex_state = 1696}, - [6261] = {.lex_state = 1696}, - [6262] = {.lex_state = 1696}, - [6263] = {.lex_state = 322}, - [6264] = {.lex_state = 322}, - [6265] = {.lex_state = 322}, - [6266] = {.lex_state = 1696}, - [6267] = {.lex_state = 1696}, - [6268] = {.lex_state = 322}, - [6269] = {.lex_state = 1696}, - [6270] = {.lex_state = 1696}, - [6271] = {.lex_state = 1696}, - [6272] = {.lex_state = 1696}, - [6273] = {.lex_state = 1696}, - [6274] = {.lex_state = 1696}, - [6275] = {.lex_state = 97}, - [6276] = {.lex_state = 367}, - [6277] = {.lex_state = 373}, - [6278] = {.lex_state = 373}, - [6279] = {.lex_state = 358}, - [6280] = {.lex_state = 1696}, - [6281] = {.lex_state = 254}, - [6282] = {.lex_state = 1696}, - [6283] = {.lex_state = 322}, - [6284] = {.lex_state = 322}, - [6285] = {.lex_state = 254}, - [6286] = {.lex_state = 322}, - [6287] = {.lex_state = 322}, - [6288] = {.lex_state = 322}, - [6289] = {.lex_state = 322}, - [6290] = {.lex_state = 1696}, - [6291] = {.lex_state = 1696}, - [6292] = {.lex_state = 1696}, - [6293] = {.lex_state = 97}, - [6294] = {.lex_state = 97}, - [6295] = {.lex_state = 97}, - [6296] = {.lex_state = 97}, - [6297] = {.lex_state = 97}, - [6298] = {.lex_state = 97}, - [6299] = {.lex_state = 97}, + [6225] = {.lex_state = 97}, + [6226] = {.lex_state = 97}, + [6227] = {.lex_state = 97}, + [6228] = {.lex_state = 1700}, + [6229] = {.lex_state = 1700}, + [6230] = {.lex_state = 1700}, + [6231] = {.lex_state = 1700}, + [6232] = {.lex_state = 314}, + [6233] = {.lex_state = 1700}, + [6234] = {.lex_state = 1700}, + [6235] = {.lex_state = 140}, + [6236] = {.lex_state = 140}, + [6237] = {.lex_state = 97}, + [6238] = {.lex_state = 97}, + [6239] = {.lex_state = 1700}, + [6240] = {.lex_state = 1700}, + [6241] = {.lex_state = 322}, + [6242] = {.lex_state = 322}, + [6243] = {.lex_state = 1700}, + [6244] = {.lex_state = 322}, + [6245] = {.lex_state = 1700}, + [6246] = {.lex_state = 322}, + [6247] = {.lex_state = 38}, + [6248] = {.lex_state = 38}, + [6249] = {.lex_state = 1700}, + [6250] = {.lex_state = 1700}, + [6251] = {.lex_state = 1700}, + [6252] = {.lex_state = 1700}, + [6253] = {.lex_state = 1700}, + [6254] = {.lex_state = 1700}, + [6255] = {.lex_state = 1700}, + [6256] = {.lex_state = 1700}, + [6257] = {.lex_state = 1700}, + [6258] = {.lex_state = 97}, + [6259] = {.lex_state = 1700}, + [6260] = {.lex_state = 97}, + [6261] = {.lex_state = 1700}, + [6262] = {.lex_state = 1700}, + [6263] = {.lex_state = 358}, + [6264] = {.lex_state = 254}, + [6265] = {.lex_state = 1700}, + [6266] = {.lex_state = 1700}, + [6267] = {.lex_state = 313}, + [6268] = {.lex_state = 358}, + [6269] = {.lex_state = 1700}, + [6270] = {.lex_state = 254}, + [6271] = {.lex_state = 1700}, + [6272] = {.lex_state = 254}, + [6273] = {.lex_state = 311}, + [6274] = {.lex_state = 140}, + [6275] = {.lex_state = 140}, + [6276] = {.lex_state = 254}, + [6277] = {.lex_state = 1700}, + [6278] = {.lex_state = 367}, + [6279] = {.lex_state = 97}, + [6280] = {.lex_state = 97}, + [6281] = {.lex_state = 97}, + [6282] = {.lex_state = 97}, + [6283] = {.lex_state = 97}, + [6284] = {.lex_state = 97}, + [6285] = {.lex_state = 97}, + [6286] = {.lex_state = 97}, + [6287] = {.lex_state = 354}, + [6288] = {.lex_state = 344}, + [6289] = {.lex_state = 1700}, + [6290] = {.lex_state = 255}, + [6291] = {.lex_state = 1669}, + [6292] = {.lex_state = 255}, + [6293] = {.lex_state = 1700}, + [6294] = {.lex_state = 1700}, + [6295] = {.lex_state = 1700}, + [6296] = {.lex_state = 358}, + [6297] = {.lex_state = 254}, + [6298] = {.lex_state = 254}, + [6299] = {.lex_state = 1700}, [6300] = {.lex_state = 97}, - [6301] = {.lex_state = 1696}, - [6302] = {.lex_state = 254}, - [6303] = {.lex_state = 367}, - [6304] = {.lex_state = 367}, + [6301] = {.lex_state = 97}, + [6302] = {.lex_state = 97}, + [6303] = {.lex_state = 97}, + [6304] = {.lex_state = 97}, [6305] = {.lex_state = 97}, - [6306] = {.lex_state = 322}, - [6307] = {.lex_state = 322}, - [6308] = {.lex_state = 322}, - [6309] = {.lex_state = 322}, - [6310] = {.lex_state = 322}, - [6311] = {.lex_state = 322}, - [6312] = {.lex_state = 322}, - [6313] = {.lex_state = 322}, - [6314] = {.lex_state = 358}, - [6315] = {.lex_state = 254}, - [6316] = {.lex_state = 322}, - [6317] = {.lex_state = 322}, - [6318] = {.lex_state = 322}, + [6306] = {.lex_state = 97}, + [6307] = {.lex_state = 97}, + [6308] = {.lex_state = 97}, + [6309] = {.lex_state = 358}, + [6310] = {.lex_state = 254}, + [6311] = {.lex_state = 367}, + [6312] = {.lex_state = 367}, + [6313] = {.lex_state = 254}, + [6314] = {.lex_state = 97}, + [6315] = {.lex_state = 373}, + [6316] = {.lex_state = 1700}, + [6317] = {.lex_state = 97}, + [6318] = {.lex_state = 97}, [6319] = {.lex_state = 97}, - [6320] = {.lex_state = 322}, - [6321] = {.lex_state = 322}, - [6322] = {.lex_state = 254}, - [6323] = {.lex_state = 354}, - [6324] = {.lex_state = 322}, - [6325] = {.lex_state = 322}, - [6326] = {.lex_state = 322}, - [6327] = {.lex_state = 322}, - [6328] = {.lex_state = 322}, - [6329] = {.lex_state = 322}, - [6330] = {.lex_state = 322}, - [6331] = {.lex_state = 97}, + [6320] = {.lex_state = 97}, + [6321] = {.lex_state = 97}, + [6322] = {.lex_state = 97}, + [6323] = {.lex_state = 97}, + [6324] = {.lex_state = 97}, + [6325] = {.lex_state = 97}, + [6326] = {.lex_state = 1700}, + [6327] = {.lex_state = 358}, + [6328] = {.lex_state = 313}, + [6329] = {.lex_state = 254}, + [6330] = {.lex_state = 313}, + [6331] = {.lex_state = 254}, [6332] = {.lex_state = 97}, - [6333] = {.lex_state = 97}, + [6333] = {.lex_state = 341}, [6334] = {.lex_state = 97}, [6335] = {.lex_state = 97}, [6336] = {.lex_state = 97}, [6337] = {.lex_state = 97}, [6338] = {.lex_state = 97}, - [6339] = {.lex_state = 322}, - [6340] = {.lex_state = 358}, - [6341] = {.lex_state = 322}, - [6342] = {.lex_state = 254}, - [6343] = {.lex_state = 322}, - [6344] = {.lex_state = 1696}, - [6345] = {.lex_state = 322}, + [6339] = {.lex_state = 97}, + [6340] = {.lex_state = 97}, + [6341] = {.lex_state = 97}, + [6342] = {.lex_state = 97}, + [6343] = {.lex_state = 358}, + [6344] = {.lex_state = 254}, + [6345] = {.lex_state = 254}, [6346] = {.lex_state = 254}, - [6347] = {.lex_state = 322}, - [6348] = {.lex_state = 322}, - [6349] = {.lex_state = 322}, - [6350] = {.lex_state = 322}, - [6351] = {.lex_state = 322}, + [6347] = {.lex_state = 140}, + [6348] = {.lex_state = 140}, + [6349] = {.lex_state = 357}, + [6350] = {.lex_state = 97}, + [6351] = {.lex_state = 97}, [6352] = {.lex_state = 97}, [6353] = {.lex_state = 97}, [6354] = {.lex_state = 97}, [6355] = {.lex_state = 97}, [6356] = {.lex_state = 97}, [6357] = {.lex_state = 97}, - [6358] = {.lex_state = 97}, - [6359] = {.lex_state = 97}, - [6360] = {.lex_state = 72}, - [6361] = {.lex_state = 322}, - [6362] = {.lex_state = 322}, - [6363] = {.lex_state = 358}, + [6358] = {.lex_state = 1700}, + [6359] = {.lex_state = 358}, + [6360] = {.lex_state = 254}, + [6361] = {.lex_state = 311}, + [6362] = {.lex_state = 1700}, + [6363] = {.lex_state = 254}, [6364] = {.lex_state = 322}, - [6365] = {.lex_state = 254}, + [6365] = {.lex_state = 354}, [6366] = {.lex_state = 322}, - [6367] = {.lex_state = 322}, - [6368] = {.lex_state = 322}, - [6369] = {.lex_state = 254}, - [6370] = {.lex_state = 322}, - [6371] = {.lex_state = 322}, - [6372] = {.lex_state = 311}, - [6373] = {.lex_state = 322}, - [6374] = {.lex_state = 1696}, - [6375] = {.lex_state = 322}, - [6376] = {.lex_state = 322}, - [6377] = {.lex_state = 97}, - [6378] = {.lex_state = 97}, - [6379] = {.lex_state = 97}, - [6380] = {.lex_state = 97}, + [6367] = {.lex_state = 97}, + [6368] = {.lex_state = 97}, + [6369] = {.lex_state = 97}, + [6370] = {.lex_state = 97}, + [6371] = {.lex_state = 97}, + [6372] = {.lex_state = 97}, + [6373] = {.lex_state = 97}, + [6374] = {.lex_state = 97}, + [6375] = {.lex_state = 358}, + [6376] = {.lex_state = 254}, + [6377] = {.lex_state = 254}, + [6378] = {.lex_state = 322}, + [6379] = {.lex_state = 322}, + [6380] = {.lex_state = 322}, [6381] = {.lex_state = 97}, [6382] = {.lex_state = 97}, [6383] = {.lex_state = 97}, [6384] = {.lex_state = 97}, - [6385] = {.lex_state = 322}, - [6386] = {.lex_state = 322}, - [6387] = {.lex_state = 358}, - [6388] = {.lex_state = 254}, - [6389] = {.lex_state = 1696}, + [6385] = {.lex_state = 97}, + [6386] = {.lex_state = 97}, + [6387] = {.lex_state = 97}, + [6388] = {.lex_state = 97}, + [6389] = {.lex_state = 358}, [6390] = {.lex_state = 254}, - [6391] = {.lex_state = 97}, - [6392] = {.lex_state = 373}, - [6393] = {.lex_state = 1696}, - [6394] = {.lex_state = 1696}, + [6391] = {.lex_state = 254}, + [6392] = {.lex_state = 140}, + [6393] = {.lex_state = 140}, + [6394] = {.lex_state = 322}, [6395] = {.lex_state = 97}, [6396] = {.lex_state = 97}, [6397] = {.lex_state = 97}, @@ -67670,13 +67864,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6400] = {.lex_state = 97}, [6401] = {.lex_state = 97}, [6402] = {.lex_state = 97}, - [6403] = {.lex_state = 1696}, + [6403] = {.lex_state = 97}, [6404] = {.lex_state = 358}, [6405] = {.lex_state = 254}, - [6406] = {.lex_state = 140}, - [6407] = {.lex_state = 254}, - [6408] = {.lex_state = 140}, - [6409] = {.lex_state = 311}, + [6406] = {.lex_state = 97}, + [6407] = {.lex_state = 97}, + [6408] = {.lex_state = 254}, + [6409] = {.lex_state = 97}, [6410] = {.lex_state = 97}, [6411] = {.lex_state = 97}, [6412] = {.lex_state = 97}, @@ -67684,61 +67878,61 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6414] = {.lex_state = 97}, [6415] = {.lex_state = 97}, [6416] = {.lex_state = 97}, - [6417] = {.lex_state = 97}, - [6418] = {.lex_state = 140}, + [6417] = {.lex_state = 322}, + [6418] = {.lex_state = 1700}, [6419] = {.lex_state = 358}, [6420] = {.lex_state = 254}, - [6421] = {.lex_state = 97}, - [6422] = {.lex_state = 97}, - [6423] = {.lex_state = 140}, - [6424] = {.lex_state = 254}, - [6425] = {.lex_state = 308}, + [6421] = {.lex_state = 254}, + [6422] = {.lex_state = 268}, + [6423] = {.lex_state = 97}, + [6424] = {.lex_state = 97}, + [6425] = {.lex_state = 97}, [6426] = {.lex_state = 97}, [6427] = {.lex_state = 97}, [6428] = {.lex_state = 97}, [6429] = {.lex_state = 97}, [6430] = {.lex_state = 97}, - [6431] = {.lex_state = 97}, - [6432] = {.lex_state = 97}, - [6433] = {.lex_state = 97}, - [6434] = {.lex_state = 311}, - [6435] = {.lex_state = 358}, - [6436] = {.lex_state = 254}, - [6437] = {.lex_state = 358}, - [6438] = {.lex_state = 254}, - [6439] = {.lex_state = 341}, - [6440] = {.lex_state = 311}, - [6441] = {.lex_state = 1696}, + [6431] = {.lex_state = 358}, + [6432] = {.lex_state = 254}, + [6433] = {.lex_state = 254}, + [6434] = {.lex_state = 314}, + [6435] = {.lex_state = 1700}, + [6436] = {.lex_state = 97}, + [6437] = {.lex_state = 97}, + [6438] = {.lex_state = 97}, + [6439] = {.lex_state = 97}, + [6440] = {.lex_state = 97}, + [6441] = {.lex_state = 97}, [6442] = {.lex_state = 97}, [6443] = {.lex_state = 97}, - [6444] = {.lex_state = 97}, - [6445] = {.lex_state = 97}, - [6446] = {.lex_state = 97}, - [6447] = {.lex_state = 97}, + [6444] = {.lex_state = 358}, + [6445] = {.lex_state = 254}, + [6446] = {.lex_state = 371}, + [6447] = {.lex_state = 254}, [6448] = {.lex_state = 97}, [6449] = {.lex_state = 97}, - [6450] = {.lex_state = 358}, - [6451] = {.lex_state = 254}, - [6452] = {.lex_state = 1696}, - [6453] = {.lex_state = 254}, - [6454] = {.lex_state = 254}, + [6450] = {.lex_state = 97}, + [6451] = {.lex_state = 97}, + [6452] = {.lex_state = 97}, + [6453] = {.lex_state = 97}, + [6454] = {.lex_state = 97}, [6455] = {.lex_state = 97}, - [6456] = {.lex_state = 97}, - [6457] = {.lex_state = 97}, + [6456] = {.lex_state = 358}, + [6457] = {.lex_state = 254}, [6458] = {.lex_state = 97}, - [6459] = {.lex_state = 97}, + [6459] = {.lex_state = 254}, [6460] = {.lex_state = 97}, [6461] = {.lex_state = 97}, [6462] = {.lex_state = 97}, - [6463] = {.lex_state = 140}, - [6464] = {.lex_state = 140}, - [6465] = {.lex_state = 358}, - [6466] = {.lex_state = 254}, - [6467] = {.lex_state = 314}, - [6468] = {.lex_state = 254}, - [6469] = {.lex_state = 97}, - [6470] = {.lex_state = 97}, - [6471] = {.lex_state = 97}, + [6463] = {.lex_state = 97}, + [6464] = {.lex_state = 255}, + [6465] = {.lex_state = 97}, + [6466] = {.lex_state = 97}, + [6467] = {.lex_state = 97}, + [6468] = {.lex_state = 97}, + [6469] = {.lex_state = 268}, + [6470] = {.lex_state = 358}, + [6471] = {.lex_state = 254}, [6472] = {.lex_state = 254}, [6473] = {.lex_state = 97}, [6474] = {.lex_state = 97}, @@ -67747,1397 +67941,1385 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6477] = {.lex_state = 97}, [6478] = {.lex_state = 97}, [6479] = {.lex_state = 97}, - [6480] = {.lex_state = 358}, - [6481] = {.lex_state = 254}, + [6480] = {.lex_state = 97}, + [6481] = {.lex_state = 358}, [6482] = {.lex_state = 254}, - [6483] = {.lex_state = 255}, - [6484] = {.lex_state = 255}, - [6485] = {.lex_state = 97}, - [6486] = {.lex_state = 97}, - [6487] = {.lex_state = 97}, - [6488] = {.lex_state = 97}, - [6489] = {.lex_state = 97}, - [6490] = {.lex_state = 97}, - [6491] = {.lex_state = 97}, - [6492] = {.lex_state = 97}, - [6493] = {.lex_state = 358}, - [6494] = {.lex_state = 254}, - [6495] = {.lex_state = 371}, - [6496] = {.lex_state = 254}, - [6497] = {.lex_state = 268}, - [6498] = {.lex_state = 97}, - [6499] = {.lex_state = 97}, - [6500] = {.lex_state = 97}, - [6501] = {.lex_state = 97}, - [6502] = {.lex_state = 97}, - [6503] = {.lex_state = 97}, - [6504] = {.lex_state = 97}, - [6505] = {.lex_state = 97}, - [6506] = {.lex_state = 373}, - [6507] = {.lex_state = 358}, + [6483] = {.lex_state = 1700}, + [6484] = {.lex_state = 254}, + [6485] = {.lex_state = 358}, + [6486] = {.lex_state = 254}, + [6487] = {.lex_state = 254}, + [6488] = {.lex_state = 38}, + [6489] = {.lex_state = 358}, + [6490] = {.lex_state = 254}, + [6491] = {.lex_state = 308}, + [6492] = {.lex_state = 254}, + [6493] = {.lex_state = 140}, + [6494] = {.lex_state = 358}, + [6495] = {.lex_state = 254}, + [6496] = {.lex_state = 140}, + [6497] = {.lex_state = 254}, + [6498] = {.lex_state = 140}, + [6499] = {.lex_state = 358}, + [6500] = {.lex_state = 254}, + [6501] = {.lex_state = 254}, + [6502] = {.lex_state = 140}, + [6503] = {.lex_state = 358}, + [6504] = {.lex_state = 254}, + [6505] = {.lex_state = 254}, + [6506] = {.lex_state = 358}, + [6507] = {.lex_state = 254}, [6508] = {.lex_state = 254}, - [6509] = {.lex_state = 254}, - [6510] = {.lex_state = 373}, - [6511] = {.lex_state = 1696}, + [6509] = {.lex_state = 358}, + [6510] = {.lex_state = 254}, + [6511] = {.lex_state = 254}, [6512] = {.lex_state = 97}, - [6513] = {.lex_state = 97}, - [6514] = {.lex_state = 97}, - [6515] = {.lex_state = 97}, + [6513] = {.lex_state = 358}, + [6514] = {.lex_state = 254}, + [6515] = {.lex_state = 254}, [6516] = {.lex_state = 97}, - [6517] = {.lex_state = 97}, - [6518] = {.lex_state = 97}, - [6519] = {.lex_state = 97}, + [6517] = {.lex_state = 358}, + [6518] = {.lex_state = 254}, + [6519] = {.lex_state = 254}, [6520] = {.lex_state = 358}, [6521] = {.lex_state = 254}, [6522] = {.lex_state = 254}, [6523] = {.lex_state = 97}, - [6524] = {.lex_state = 97}, - [6525] = {.lex_state = 97}, - [6526] = {.lex_state = 97}, - [6527] = {.lex_state = 97}, - [6528] = {.lex_state = 97}, - [6529] = {.lex_state = 97}, - [6530] = {.lex_state = 97}, - [6531] = {.lex_state = 358}, + [6524] = {.lex_state = 358}, + [6525] = {.lex_state = 254}, + [6526] = {.lex_state = 254}, + [6527] = {.lex_state = 358}, + [6528] = {.lex_state = 254}, + [6529] = {.lex_state = 254}, + [6530] = {.lex_state = 358}, + [6531] = {.lex_state = 254}, [6532] = {.lex_state = 254}, - [6533] = {.lex_state = 254}, - [6534] = {.lex_state = 358}, + [6533] = {.lex_state = 358}, + [6534] = {.lex_state = 254}, [6535] = {.lex_state = 254}, [6536] = {.lex_state = 254}, - [6537] = {.lex_state = 358}, + [6537] = {.lex_state = 254}, [6538] = {.lex_state = 254}, [6539] = {.lex_state = 254}, - [6540] = {.lex_state = 358}, + [6540] = {.lex_state = 254}, [6541] = {.lex_state = 254}, [6542] = {.lex_state = 254}, - [6543] = {.lex_state = 358}, + [6543] = {.lex_state = 254}, [6544] = {.lex_state = 254}, [6545] = {.lex_state = 254}, - [6546] = {.lex_state = 1696}, - [6547] = {.lex_state = 358}, + [6546] = {.lex_state = 254}, + [6547] = {.lex_state = 254}, [6548] = {.lex_state = 254}, [6549] = {.lex_state = 254}, - [6550] = {.lex_state = 358}, - [6551] = {.lex_state = 254}, - [6552] = {.lex_state = 254}, - [6553] = {.lex_state = 358}, - [6554] = {.lex_state = 254}, - [6555] = {.lex_state = 254}, - [6556] = {.lex_state = 358}, - [6557] = {.lex_state = 254}, - [6558] = {.lex_state = 254}, - [6559] = {.lex_state = 358}, - [6560] = {.lex_state = 254}, - [6561] = {.lex_state = 254}, - [6562] = {.lex_state = 358}, - [6563] = {.lex_state = 254}, - [6564] = {.lex_state = 254}, - [6565] = {.lex_state = 358}, - [6566] = {.lex_state = 254}, - [6567] = {.lex_state = 254}, - [6568] = {.lex_state = 358}, - [6569] = {.lex_state = 254}, - [6570] = {.lex_state = 254}, - [6571] = {.lex_state = 358}, - [6572] = {.lex_state = 254}, - [6573] = {.lex_state = 254}, - [6574] = {.lex_state = 358}, - [6575] = {.lex_state = 254}, - [6576] = {.lex_state = 254}, - [6577] = {.lex_state = 254}, - [6578] = {.lex_state = 254}, - [6579] = {.lex_state = 254}, - [6580] = {.lex_state = 254}, - [6581] = {.lex_state = 254}, - [6582] = {.lex_state = 254}, - [6583] = {.lex_state = 254}, - [6584] = {.lex_state = 254}, - [6585] = {.lex_state = 254}, - [6586] = {.lex_state = 254}, - [6587] = {.lex_state = 254}, - [6588] = {.lex_state = 254}, - [6589] = {.lex_state = 254}, - [6590] = {.lex_state = 254}, - [6591] = {.lex_state = 358}, - [6592] = {.lex_state = 1696}, + [6550] = {.lex_state = 1700}, + [6551] = {.lex_state = 358}, + [6552] = {.lex_state = 1700}, + [6553] = {.lex_state = 97}, + [6554] = {.lex_state = 1700}, + [6555] = {.lex_state = 1700}, + [6556] = {.lex_state = 1700}, + [6557] = {.lex_state = 1700}, + [6558] = {.lex_state = 1669}, + [6559] = {.lex_state = 1700}, + [6560] = {.lex_state = 1700}, + [6561] = {.lex_state = 1700}, + [6562] = {.lex_state = 1700}, + [6563] = {.lex_state = 1700}, + [6564] = {.lex_state = 1700}, + [6565] = {.lex_state = 1700}, + [6566] = {.lex_state = 311}, + [6567] = {.lex_state = 322}, + [6568] = {.lex_state = 97}, + [6569] = {.lex_state = 322}, + [6570] = {.lex_state = 322}, + [6571] = {.lex_state = 72}, + [6572] = {.lex_state = 1700}, + [6573] = {.lex_state = 1700}, + [6574] = {.lex_state = 355}, + [6575] = {.lex_state = 322}, + [6576] = {.lex_state = 140}, + [6577] = {.lex_state = 140}, + [6578] = {.lex_state = 322}, + [6579] = {.lex_state = 322}, + [6580] = {.lex_state = 97}, + [6581] = {.lex_state = 322}, + [6582] = {.lex_state = 1700}, + [6583] = {.lex_state = 1700}, + [6584] = {.lex_state = 1700}, + [6585] = {.lex_state = 1700}, + [6586] = {.lex_state = 1700}, + [6587] = {.lex_state = 322}, + [6588] = {.lex_state = 97}, + [6589] = {.lex_state = 1700}, + [6590] = {.lex_state = 1700}, + [6591] = {.lex_state = 355}, + [6592] = {.lex_state = 322}, [6593] = {.lex_state = 140}, [6594] = {.lex_state = 140}, - [6595] = {.lex_state = 1665}, + [6595] = {.lex_state = 140}, [6596] = {.lex_state = 140}, - [6597] = {.lex_state = 140}, - [6598] = {.lex_state = 1696}, - [6599] = {.lex_state = 97}, - [6600] = {.lex_state = 97}, - [6601] = {.lex_state = 97}, - [6602] = {.lex_state = 308}, - [6603] = {.lex_state = 1696}, - [6604] = {.lex_state = 97}, - [6605] = {.lex_state = 268}, - [6606] = {.lex_state = 341}, - [6607] = {.lex_state = 1696}, - [6608] = {.lex_state = 1696}, - [6609] = {.lex_state = 97}, - [6610] = {.lex_state = 1696}, - [6611] = {.lex_state = 1627}, - [6612] = {.lex_state = 98}, - [6613] = {.lex_state = 308}, - [6614] = {.lex_state = 313}, - [6615] = {.lex_state = 1696}, - [6616] = {.lex_state = 1696}, - [6617] = {.lex_state = 1696}, - [6618] = {.lex_state = 1696}, - [6619] = {.lex_state = 1696}, - [6620] = {.lex_state = 1696}, - [6621] = {.lex_state = 322}, + [6597] = {.lex_state = 1700}, + [6598] = {.lex_state = 322}, + [6599] = {.lex_state = 322}, + [6600] = {.lex_state = 322}, + [6601] = {.lex_state = 1700}, + [6602] = {.lex_state = 322}, + [6603] = {.lex_state = 43}, + [6604] = {.lex_state = 322}, + [6605] = {.lex_state = 322}, + [6606] = {.lex_state = 322}, + [6607] = {.lex_state = 354}, + [6608] = {.lex_state = 322}, + [6609] = {.lex_state = 322}, + [6610] = {.lex_state = 1700}, + [6611] = {.lex_state = 322}, + [6612] = {.lex_state = 354}, + [6613] = {.lex_state = 1669}, + [6614] = {.lex_state = 322}, + [6615] = {.lex_state = 322}, + [6616] = {.lex_state = 322}, + [6617] = {.lex_state = 354}, + [6618] = {.lex_state = 322}, + [6619] = {.lex_state = 322}, + [6620] = {.lex_state = 322}, + [6621] = {.lex_state = 97}, [6622] = {.lex_state = 97}, - [6623] = {.lex_state = 140}, - [6624] = {.lex_state = 140}, + [6623] = {.lex_state = 322}, + [6624] = {.lex_state = 97}, [6625] = {.lex_state = 97}, - [6626] = {.lex_state = 355}, - [6627] = {.lex_state = 1696}, - [6628] = {.lex_state = 1696}, - [6629] = {.lex_state = 1696}, - [6630] = {.lex_state = 97}, - [6631] = {.lex_state = 1696}, - [6632] = {.lex_state = 97}, - [6633] = {.lex_state = 355}, - [6634] = {.lex_state = 354}, - [6635] = {.lex_state = 1696}, - [6636] = {.lex_state = 357}, - [6637] = {.lex_state = 1696}, - [6638] = {.lex_state = 97}, - [6639] = {.lex_state = 1696}, - [6640] = {.lex_state = 308}, - [6641] = {.lex_state = 308}, - [6642] = {.lex_state = 97}, + [6626] = {.lex_state = 97}, + [6627] = {.lex_state = 97}, + [6628] = {.lex_state = 97}, + [6629] = {.lex_state = 322}, + [6630] = {.lex_state = 358}, + [6631] = {.lex_state = 354}, + [6632] = {.lex_state = 322}, + [6633] = {.lex_state = 322}, + [6634] = {.lex_state = 322}, + [6635] = {.lex_state = 354}, + [6636] = {.lex_state = 97}, + [6637] = {.lex_state = 322}, + [6638] = {.lex_state = 354}, + [6639] = {.lex_state = 322}, + [6640] = {.lex_state = 322}, + [6641] = {.lex_state = 1631}, + [6642] = {.lex_state = 322}, [6643] = {.lex_state = 97}, - [6644] = {.lex_state = 97}, - [6645] = {.lex_state = 97}, + [6644] = {.lex_state = 1700}, + [6645] = {.lex_state = 322}, [6646] = {.lex_state = 97}, - [6647] = {.lex_state = 97}, - [6648] = {.lex_state = 97}, - [6649] = {.lex_state = 97}, - [6650] = {.lex_state = 97}, - [6651] = {.lex_state = 97}, - [6652] = {.lex_state = 97}, - [6653] = {.lex_state = 358}, - [6654] = {.lex_state = 1665}, - [6655] = {.lex_state = 1696}, - [6656] = {.lex_state = 1696}, - [6657] = {.lex_state = 1696}, - [6658] = {.lex_state = 1696}, - [6659] = {.lex_state = 1696}, - [6660] = {.lex_state = 1696}, - [6661] = {.lex_state = 1696}, - [6662] = {.lex_state = 97}, - [6663] = {.lex_state = 1696}, - [6664] = {.lex_state = 1696}, - [6665] = {.lex_state = 1696}, - [6666] = {.lex_state = 1696}, - [6667] = {.lex_state = 1696}, - [6668] = {.lex_state = 1696}, - [6669] = {.lex_state = 308}, - [6670] = {.lex_state = 1696}, - [6671] = {.lex_state = 367}, - [6672] = {.lex_state = 1696}, - [6673] = {.lex_state = 1665}, - [6674] = {.lex_state = 1665}, - [6675] = {.lex_state = 1665}, - [6676] = {.lex_state = 43}, + [6647] = {.lex_state = 1700}, + [6648] = {.lex_state = 1700}, + [6649] = {.lex_state = 322}, + [6650] = {.lex_state = 322}, + [6651] = {.lex_state = 1669}, + [6652] = {.lex_state = 1669}, + [6653] = {.lex_state = 1669}, + [6654] = {.lex_state = 322}, + [6655] = {.lex_state = 1700}, + [6656] = {.lex_state = 1700}, + [6657] = {.lex_state = 1700}, + [6658] = {.lex_state = 322}, + [6659] = {.lex_state = 322}, + [6660] = {.lex_state = 371}, + [6661] = {.lex_state = 1700}, + [6662] = {.lex_state = 367}, + [6663] = {.lex_state = 322}, + [6664] = {.lex_state = 1700}, + [6665] = {.lex_state = 1700}, + [6666] = {.lex_state = 311}, + [6667] = {.lex_state = 322}, + [6668] = {.lex_state = 308}, + [6669] = {.lex_state = 322}, + [6670] = {.lex_state = 322}, + [6671] = {.lex_state = 1700}, + [6672] = {.lex_state = 322}, + [6673] = {.lex_state = 311}, + [6674] = {.lex_state = 367}, + [6675] = {.lex_state = 358}, + [6676] = {.lex_state = 254}, [6677] = {.lex_state = 371}, - [6678] = {.lex_state = 43}, - [6679] = {.lex_state = 308}, - [6680] = {.lex_state = 71}, - [6681] = {.lex_state = 140}, - [6682] = {.lex_state = 140}, - [6683] = {.lex_state = 1696}, - [6684] = {.lex_state = 38}, - [6685] = {.lex_state = 97}, - [6686] = {.lex_state = 254}, - [6687] = {.lex_state = 43}, - [6688] = {.lex_state = 38}, - [6689] = {.lex_state = 358}, - [6690] = {.lex_state = 140}, - [6691] = {.lex_state = 140}, - [6692] = {.lex_state = 254}, - [6693] = {.lex_state = 1696}, - [6694] = {.lex_state = 1696}, - [6695] = {.lex_state = 1696}, - [6696] = {.lex_state = 1696}, - [6697] = {.lex_state = 1696}, - [6698] = {.lex_state = 1696}, - [6699] = {.lex_state = 1696}, - [6700] = {.lex_state = 1696}, - [6701] = {.lex_state = 1696}, - [6702] = {.lex_state = 1696}, - [6703] = {.lex_state = 1696}, - [6704] = {.lex_state = 1696}, - [6705] = {.lex_state = 354}, - [6706] = {.lex_state = 1696}, - [6707] = {.lex_state = 354}, - [6708] = {.lex_state = 311}, - [6709] = {.lex_state = 43}, + [6678] = {.lex_state = 371}, + [6679] = {.lex_state = 373}, + [6680] = {.lex_state = 311}, + [6681] = {.lex_state = 38}, + [6682] = {.lex_state = 311}, + [6683] = {.lex_state = 1700}, + [6684] = {.lex_state = 1700}, + [6685] = {.lex_state = 1700}, + [6686] = {.lex_state = 1700}, + [6687] = {.lex_state = 1700}, + [6688] = {.lex_state = 1700}, + [6689] = {.lex_state = 308}, + [6690] = {.lex_state = 43}, + [6691] = {.lex_state = 373}, + [6692] = {.lex_state = 1700}, + [6693] = {.lex_state = 1700}, + [6694] = {.lex_state = 1700}, + [6695] = {.lex_state = 1700}, + [6696] = {.lex_state = 254}, + [6697] = {.lex_state = 371}, + [6698] = {.lex_state = 1700}, + [6699] = {.lex_state = 43}, + [6700] = {.lex_state = 97}, + [6701] = {.lex_state = 97}, + [6702] = {.lex_state = 97}, + [6703] = {.lex_state = 370}, + [6704] = {.lex_state = 268}, + [6705] = {.lex_state = 97}, + [6706] = {.lex_state = 97}, + [6707] = {.lex_state = 350}, + [6708] = {.lex_state = 97}, + [6709] = {.lex_state = 97}, [6710] = {.lex_state = 97}, - [6711] = {.lex_state = 97}, + [6711] = {.lex_state = 1700}, [6712] = {.lex_state = 97}, - [6713] = {.lex_state = 370}, - [6714] = {.lex_state = 312}, - [6715] = {.lex_state = 1696}, - [6716] = {.lex_state = 368}, + [6713] = {.lex_state = 97}, + [6714] = {.lex_state = 97}, + [6715] = {.lex_state = 97}, + [6716] = {.lex_state = 372}, [6717] = {.lex_state = 97}, [6718] = {.lex_state = 97}, - [6719] = {.lex_state = 97}, - [6720] = {.lex_state = 97}, + [6719] = {.lex_state = 1700}, + [6720] = {.lex_state = 1700}, [6721] = {.lex_state = 97}, [6722] = {.lex_state = 97}, - [6723] = {.lex_state = 97}, + [6723] = {.lex_state = 1700}, [6724] = {.lex_state = 97}, [6725] = {.lex_state = 97}, [6726] = {.lex_state = 97}, - [6727] = {.lex_state = 75}, + [6727] = {.lex_state = 97}, [6728] = {.lex_state = 97}, - [6729] = {.lex_state = 97}, - [6730] = {.lex_state = 97}, + [6729] = {.lex_state = 312}, + [6730] = {.lex_state = 1700}, [6731] = {.lex_state = 312}, - [6732] = {.lex_state = 97}, - [6733] = {.lex_state = 1674}, - [6734] = {.lex_state = 1694}, - [6735] = {.lex_state = 370}, + [6732] = {.lex_state = 268}, + [6733] = {.lex_state = 375}, + [6734] = {.lex_state = 97}, + [6735] = {.lex_state = 1700}, [6736] = {.lex_state = 312}, - [6737] = {.lex_state = 1694}, - [6738] = {.lex_state = 97}, - [6739] = {.lex_state = 1696}, + [6737] = {.lex_state = 370}, + [6738] = {.lex_state = 312}, + [6739] = {.lex_state = 1700}, [6740] = {.lex_state = 97}, - [6741] = {.lex_state = 97}, - [6742] = {.lex_state = 97}, + [6741] = {.lex_state = 356}, + [6742] = {.lex_state = 1700}, [6743] = {.lex_state = 97}, [6744] = {.lex_state = 97}, [6745] = {.lex_state = 97}, [6746] = {.lex_state = 97}, - [6747] = {.lex_state = 97}, - [6748] = {.lex_state = 97}, + [6747] = {.lex_state = 1700}, + [6748] = {.lex_state = 1700}, [6749] = {.lex_state = 97}, [6750] = {.lex_state = 97}, [6751] = {.lex_state = 97}, [6752] = {.lex_state = 97}, - [6753] = {.lex_state = 1696}, - [6754] = {.lex_state = 1696}, - [6755] = {.lex_state = 1696}, - [6756] = {.lex_state = 1696}, - [6757] = {.lex_state = 97}, - [6758] = {.lex_state = 97}, - [6759] = {.lex_state = 1696}, - [6760] = {.lex_state = 312}, - [6761] = {.lex_state = 1674}, - [6762] = {.lex_state = 1696}, - [6763] = {.lex_state = 97}, - [6764] = {.lex_state = 97}, - [6765] = {.lex_state = 97}, - [6766] = {.lex_state = 322}, - [6767] = {.lex_state = 370}, - [6768] = {.lex_state = 312}, - [6769] = {.lex_state = 97}, + [6753] = {.lex_state = 97}, + [6754] = {.lex_state = 1698}, + [6755] = {.lex_state = 1700}, + [6756] = {.lex_state = 1700}, + [6757] = {.lex_state = 1700}, + [6758] = {.lex_state = 1700}, + [6759] = {.lex_state = 312}, + [6760] = {.lex_state = 1700}, + [6761] = {.lex_state = 1700}, + [6762] = {.lex_state = 1698}, + [6763] = {.lex_state = 308}, + [6764] = {.lex_state = 370}, + [6765] = {.lex_state = 312}, + [6766] = {.lex_state = 97}, + [6767] = {.lex_state = 97}, + [6768] = {.lex_state = 1700}, + [6769] = {.lex_state = 1700}, [6770] = {.lex_state = 97}, [6771] = {.lex_state = 97}, [6772] = {.lex_state = 97}, - [6773] = {.lex_state = 1694}, + [6773] = {.lex_state = 97}, [6774] = {.lex_state = 97}, [6775] = {.lex_state = 97}, - [6776] = {.lex_state = 97}, + [6776] = {.lex_state = 1700}, [6777] = {.lex_state = 97}, - [6778] = {.lex_state = 1696}, - [6779] = {.lex_state = 75}, - [6780] = {.lex_state = 75}, - [6781] = {.lex_state = 1696}, - [6782] = {.lex_state = 97}, - [6783] = {.lex_state = 1696}, - [6784] = {.lex_state = 140}, - [6785] = {.lex_state = 1696}, - [6786] = {.lex_state = 1696}, - [6787] = {.lex_state = 312}, - [6788] = {.lex_state = 140}, - [6789] = {.lex_state = 140}, - [6790] = {.lex_state = 32}, - [6791] = {.lex_state = 1696}, - [6792] = {.lex_state = 97}, - [6793] = {.lex_state = 312}, - [6794] = {.lex_state = 312}, + [6778] = {.lex_state = 1700}, + [6779] = {.lex_state = 1698}, + [6780] = {.lex_state = 1700}, + [6781] = {.lex_state = 1678}, + [6782] = {.lex_state = 1700}, + [6783] = {.lex_state = 1700}, + [6784] = {.lex_state = 97}, + [6785] = {.lex_state = 312}, + [6786] = {.lex_state = 97}, + [6787] = {.lex_state = 97}, + [6788] = {.lex_state = 1700}, + [6789] = {.lex_state = 97}, + [6790] = {.lex_state = 312}, + [6791] = {.lex_state = 97}, + [6792] = {.lex_state = 140}, + [6793] = {.lex_state = 97}, + [6794] = {.lex_state = 97}, [6795] = {.lex_state = 97}, [6796] = {.lex_state = 97}, - [6797] = {.lex_state = 1692}, - [6798] = {.lex_state = 1696}, - [6799] = {.lex_state = 97}, + [6797] = {.lex_state = 97}, + [6798] = {.lex_state = 1700}, + [6799] = {.lex_state = 1700}, [6800] = {.lex_state = 97}, [6801] = {.lex_state = 97}, - [6802] = {.lex_state = 97}, + [6802] = {.lex_state = 1700}, [6803] = {.lex_state = 97}, - [6804] = {.lex_state = 1696}, - [6805] = {.lex_state = 97}, - [6806] = {.lex_state = 97}, - [6807] = {.lex_state = 97}, - [6808] = {.lex_state = 97}, - [6809] = {.lex_state = 140}, - [6810] = {.lex_state = 1696}, + [6804] = {.lex_state = 97}, + [6805] = {.lex_state = 1698}, + [6806] = {.lex_state = 140}, + [6807] = {.lex_state = 1735}, + [6808] = {.lex_state = 1700}, + [6809] = {.lex_state = 97}, + [6810] = {.lex_state = 97}, [6811] = {.lex_state = 97}, - [6812] = {.lex_state = 97}, - [6813] = {.lex_state = 140}, - [6814] = {.lex_state = 375}, + [6812] = {.lex_state = 312}, + [6813] = {.lex_state = 374}, + [6814] = {.lex_state = 1700}, [6815] = {.lex_state = 97}, - [6816] = {.lex_state = 1696}, + [6816] = {.lex_state = 370}, [6817] = {.lex_state = 312}, - [6818] = {.lex_state = 97}, + [6818] = {.lex_state = 356}, [6819] = {.lex_state = 97}, [6820] = {.lex_state = 97}, - [6821] = {.lex_state = 312}, - [6822] = {.lex_state = 268}, - [6823] = {.lex_state = 268}, + [6821] = {.lex_state = 1700}, + [6822] = {.lex_state = 97}, + [6823] = {.lex_state = 97}, [6824] = {.lex_state = 97}, - [6825] = {.lex_state = 1694}, - [6826] = {.lex_state = 97}, + [6825] = {.lex_state = 97}, + [6826] = {.lex_state = 1700}, [6827] = {.lex_state = 97}, [6828] = {.lex_state = 97}, [6829] = {.lex_state = 97}, [6830] = {.lex_state = 97}, - [6831] = {.lex_state = 97}, - [6832] = {.lex_state = 1696}, + [6831] = {.lex_state = 356}, + [6832] = {.lex_state = 1700}, [6833] = {.lex_state = 97}, - [6834] = {.lex_state = 97}, - [6835] = {.lex_state = 97}, - [6836] = {.lex_state = 140}, - [6837] = {.lex_state = 140}, - [6838] = {.lex_state = 97}, + [6834] = {.lex_state = 1700}, + [6835] = {.lex_state = 1700}, + [6836] = {.lex_state = 312}, + [6837] = {.lex_state = 1700}, + [6838] = {.lex_state = 1698}, [6839] = {.lex_state = 312}, - [6840] = {.lex_state = 140}, - [6841] = {.lex_state = 370}, - [6842] = {.lex_state = 140}, - [6843] = {.lex_state = 1696}, - [6844] = {.lex_state = 1696}, - [6845] = {.lex_state = 312}, - [6846] = {.lex_state = 350}, + [6840] = {.lex_state = 97}, + [6841] = {.lex_state = 97}, + [6842] = {.lex_state = 1700}, + [6843] = {.lex_state = 97}, + [6844] = {.lex_state = 97}, + [6845] = {.lex_state = 97}, + [6846] = {.lex_state = 97}, [6847] = {.lex_state = 97}, - [6848] = {.lex_state = 1696}, - [6849] = {.lex_state = 97}, + [6848] = {.lex_state = 97}, + [6849] = {.lex_state = 75}, [6850] = {.lex_state = 97}, [6851] = {.lex_state = 97}, - [6852] = {.lex_state = 97}, - [6853] = {.lex_state = 140}, - [6854] = {.lex_state = 97}, - [6855] = {.lex_state = 97}, + [6852] = {.lex_state = 1700}, + [6853] = {.lex_state = 97}, + [6854] = {.lex_state = 1700}, + [6855] = {.lex_state = 1700}, [6856] = {.lex_state = 140}, - [6857] = {.lex_state = 97}, - [6858] = {.lex_state = 368}, + [6857] = {.lex_state = 140}, + [6858] = {.lex_state = 1700}, [6859] = {.lex_state = 312}, - [6860] = {.lex_state = 1696}, + [6860] = {.lex_state = 97}, [6861] = {.lex_state = 97}, - [6862] = {.lex_state = 312}, - [6863] = {.lex_state = 97}, - [6864] = {.lex_state = 254}, - [6865] = {.lex_state = 97}, - [6866] = {.lex_state = 312}, + [6862] = {.lex_state = 97}, + [6863] = {.lex_state = 312}, + [6864] = {.lex_state = 97}, + [6865] = {.lex_state = 140}, + [6866] = {.lex_state = 97}, [6867] = {.lex_state = 97}, [6868] = {.lex_state = 97}, - [6869] = {.lex_state = 97}, + [6869] = {.lex_state = 1700}, [6870] = {.lex_state = 97}, - [6871] = {.lex_state = 97}, - [6872] = {.lex_state = 1696}, - [6873] = {.lex_state = 1731}, + [6871] = {.lex_state = 368}, + [6872] = {.lex_state = 97}, + [6873] = {.lex_state = 97}, [6874] = {.lex_state = 97}, - [6875] = {.lex_state = 97}, - [6876] = {.lex_state = 1696}, + [6875] = {.lex_state = 1698}, + [6876] = {.lex_state = 1698}, [6877] = {.lex_state = 97}, - [6878] = {.lex_state = 75}, - [6879] = {.lex_state = 312}, - [6880] = {.lex_state = 1694}, - [6881] = {.lex_state = 1694}, - [6882] = {.lex_state = 97}, - [6883] = {.lex_state = 1692}, - [6884] = {.lex_state = 97}, - [6885] = {.lex_state = 1731}, - [6886] = {.lex_state = 312}, + [6878] = {.lex_state = 73}, + [6879] = {.lex_state = 1700}, + [6880] = {.lex_state = 97}, + [6881] = {.lex_state = 1700}, + [6882] = {.lex_state = 312}, + [6883] = {.lex_state = 140}, + [6884] = {.lex_state = 1700}, + [6885] = {.lex_state = 312}, + [6886] = {.lex_state = 97}, [6887] = {.lex_state = 97}, - [6888] = {.lex_state = 97}, - [6889] = {.lex_state = 375}, - [6890] = {.lex_state = 312}, + [6888] = {.lex_state = 140}, + [6889] = {.lex_state = 97}, + [6890] = {.lex_state = 97}, [6891] = {.lex_state = 97}, - [6892] = {.lex_state = 97}, + [6892] = {.lex_state = 370}, [6893] = {.lex_state = 97}, - [6894] = {.lex_state = 97}, - [6895] = {.lex_state = 97}, + [6894] = {.lex_state = 1698}, + [6895] = {.lex_state = 360}, [6896] = {.lex_state = 97}, - [6897] = {.lex_state = 1696}, - [6898] = {.lex_state = 97}, - [6899] = {.lex_state = 97}, + [6897] = {.lex_state = 97}, + [6898] = {.lex_state = 140}, + [6899] = {.lex_state = 1698}, [6900] = {.lex_state = 97}, - [6901] = {.lex_state = 97}, - [6902] = {.lex_state = 97}, + [6901] = {.lex_state = 140}, + [6902] = {.lex_state = 1696}, [6903] = {.lex_state = 97}, [6904] = {.lex_state = 97}, - [6905] = {.lex_state = 1696}, - [6906] = {.lex_state = 97}, - [6907] = {.lex_state = 1696}, - [6908] = {.lex_state = 97}, - [6909] = {.lex_state = 1696}, - [6910] = {.lex_state = 375}, - [6911] = {.lex_state = 312}, - [6912] = {.lex_state = 374}, - [6913] = {.lex_state = 312}, + [6905] = {.lex_state = 97}, + [6906] = {.lex_state = 312}, + [6907] = {.lex_state = 1735}, + [6908] = {.lex_state = 140}, + [6909] = {.lex_state = 312}, + [6910] = {.lex_state = 97}, + [6911] = {.lex_state = 1700}, + [6912] = {.lex_state = 140}, + [6913] = {.lex_state = 97}, [6914] = {.lex_state = 97}, [6915] = {.lex_state = 97}, [6916] = {.lex_state = 97}, - [6917] = {.lex_state = 1694}, + [6917] = {.lex_state = 97}, [6918] = {.lex_state = 97}, [6919] = {.lex_state = 97}, [6920] = {.lex_state = 97}, [6921] = {.lex_state = 97}, [6922] = {.lex_state = 97}, - [6923] = {.lex_state = 216}, - [6924] = {.lex_state = 140}, - [6925] = {.lex_state = 97}, + [6923] = {.lex_state = 312}, + [6924] = {.lex_state = 97}, + [6925] = {.lex_state = 312}, [6926] = {.lex_state = 97}, - [6927] = {.lex_state = 97}, - [6928] = {.lex_state = 360}, - [6929] = {.lex_state = 1696}, - [6930] = {.lex_state = 97}, - [6931] = {.lex_state = 1696}, + [6927] = {.lex_state = 312}, + [6928] = {.lex_state = 1701}, + [6929] = {.lex_state = 97}, + [6930] = {.lex_state = 312}, + [6931] = {.lex_state = 97}, [6932] = {.lex_state = 97}, - [6933] = {.lex_state = 1696}, - [6934] = {.lex_state = 312}, - [6935] = {.lex_state = 1697}, - [6936] = {.lex_state = 1694}, - [6937] = {.lex_state = 312}, - [6938] = {.lex_state = 370}, + [6933] = {.lex_state = 356}, + [6934] = {.lex_state = 97}, + [6935] = {.lex_state = 97}, + [6936] = {.lex_state = 97}, + [6937] = {.lex_state = 97}, + [6938] = {.lex_state = 97}, [6939] = {.lex_state = 97}, - [6940] = {.lex_state = 1696}, - [6941] = {.lex_state = 368}, - [6942] = {.lex_state = 97}, - [6943] = {.lex_state = 97}, + [6940] = {.lex_state = 140}, + [6941] = {.lex_state = 97}, + [6942] = {.lex_state = 311}, + [6943] = {.lex_state = 1700}, [6944] = {.lex_state = 97}, - [6945] = {.lex_state = 97}, + [6945] = {.lex_state = 216}, [6946] = {.lex_state = 97}, - [6947] = {.lex_state = 97}, + [6947] = {.lex_state = 1700}, [6948] = {.lex_state = 97}, - [6949] = {.lex_state = 1692}, + [6949] = {.lex_state = 97}, [6950] = {.lex_state = 97}, - [6951] = {.lex_state = 97}, - [6952] = {.lex_state = 1660}, - [6953] = {.lex_state = 308}, - [6954] = {.lex_state = 1696}, + [6951] = {.lex_state = 374}, + [6952] = {.lex_state = 97}, + [6953] = {.lex_state = 97}, + [6954] = {.lex_state = 97}, [6955] = {.lex_state = 97}, - [6956] = {.lex_state = 140}, + [6956] = {.lex_state = 1696}, [6957] = {.lex_state = 97}, - [6958] = {.lex_state = 97}, + [6958] = {.lex_state = 1700}, [6959] = {.lex_state = 97}, [6960] = {.lex_state = 97}, [6961] = {.lex_state = 97}, - [6962] = {.lex_state = 372}, - [6963] = {.lex_state = 97}, + [6962] = {.lex_state = 97}, + [6963] = {.lex_state = 1700}, [6964] = {.lex_state = 97}, - [6965] = {.lex_state = 1696}, + [6965] = {.lex_state = 97}, [6966] = {.lex_state = 97}, - [6967] = {.lex_state = 1696}, - [6968] = {.lex_state = 140}, + [6967] = {.lex_state = 97}, + [6968] = {.lex_state = 97}, [6969] = {.lex_state = 97}, [6970] = {.lex_state = 97}, - [6971] = {.lex_state = 1696}, + [6971] = {.lex_state = 97}, [6972] = {.lex_state = 97}, - [6973] = {.lex_state = 97}, + [6973] = {.lex_state = 254}, [6974] = {.lex_state = 97}, - [6975] = {.lex_state = 97}, + [6975] = {.lex_state = 1700}, [6976] = {.lex_state = 97}, - [6977] = {.lex_state = 97}, - [6978] = {.lex_state = 140}, - [6979] = {.lex_state = 312}, - [6980] = {.lex_state = 97}, - [6981] = {.lex_state = 1696}, - [6982] = {.lex_state = 356}, - [6983] = {.lex_state = 73}, - [6984] = {.lex_state = 356}, - [6985] = {.lex_state = 216}, - [6986] = {.lex_state = 356}, + [6977] = {.lex_state = 1696}, + [6978] = {.lex_state = 97}, + [6979] = {.lex_state = 1700}, + [6980] = {.lex_state = 368}, + [6981] = {.lex_state = 1698}, + [6982] = {.lex_state = 97}, + [6983] = {.lex_state = 140}, + [6984] = {.lex_state = 97}, + [6985] = {.lex_state = 1678}, + [6986] = {.lex_state = 97}, [6987] = {.lex_state = 97}, - [6988] = {.lex_state = 370}, - [6989] = {.lex_state = 1696}, - [6990] = {.lex_state = 312}, - [6991] = {.lex_state = 1696}, - [6992] = {.lex_state = 97}, - [6993] = {.lex_state = 370}, - [6994] = {.lex_state = 312}, + [6988] = {.lex_state = 97}, + [6989] = {.lex_state = 97}, + [6990] = {.lex_state = 97}, + [6991] = {.lex_state = 312}, + [6992] = {.lex_state = 1742}, + [6993] = {.lex_state = 97}, + [6994] = {.lex_state = 140}, [6995] = {.lex_state = 97}, - [6996] = {.lex_state = 97}, - [6997] = {.lex_state = 368}, + [6996] = {.lex_state = 1700}, + [6997] = {.lex_state = 370}, [6998] = {.lex_state = 97}, - [6999] = {.lex_state = 97}, - [7000] = {.lex_state = 97}, - [7001] = {.lex_state = 97}, + [6999] = {.lex_state = 312}, + [7000] = {.lex_state = 375}, + [7001] = {.lex_state = 312}, [7002] = {.lex_state = 97}, [7003] = {.lex_state = 97}, [7004] = {.lex_state = 97}, [7005] = {.lex_state = 97}, - [7006] = {.lex_state = 311}, - [7007] = {.lex_state = 1696}, + [7006] = {.lex_state = 97}, + [7007] = {.lex_state = 368}, [7008] = {.lex_state = 97}, - [7009] = {.lex_state = 97}, - [7010] = {.lex_state = 312}, + [7009] = {.lex_state = 216}, + [7010] = {.lex_state = 97}, [7011] = {.lex_state = 97}, [7012] = {.lex_state = 97}, - [7013] = {.lex_state = 97}, - [7014] = {.lex_state = 356}, + [7013] = {.lex_state = 372}, + [7014] = {.lex_state = 97}, [7015] = {.lex_state = 97}, - [7016] = {.lex_state = 97}, + [7016] = {.lex_state = 1696}, [7017] = {.lex_state = 97}, - [7018] = {.lex_state = 216}, + [7018] = {.lex_state = 97}, [7019] = {.lex_state = 97}, - [7020] = {.lex_state = 356}, - [7021] = {.lex_state = 1696}, - [7022] = {.lex_state = 97}, - [7023] = {.lex_state = 140}, + [7020] = {.lex_state = 1696}, + [7021] = {.lex_state = 140}, + [7022] = {.lex_state = 1700}, + [7023] = {.lex_state = 1696}, [7024] = {.lex_state = 97}, - [7025] = {.lex_state = 97}, - [7026] = {.lex_state = 1696}, - [7027] = {.lex_state = 1692}, - [7028] = {.lex_state = 1696}, - [7029] = {.lex_state = 97}, - [7030] = {.lex_state = 1696}, - [7031] = {.lex_state = 312}, - [7032] = {.lex_state = 1692}, + [7025] = {.lex_state = 140}, + [7026] = {.lex_state = 1700}, + [7027] = {.lex_state = 356}, + [7028] = {.lex_state = 1700}, + [7029] = {.lex_state = 1700}, + [7030] = {.lex_state = 356}, + [7031] = {.lex_state = 97}, + [7032] = {.lex_state = 356}, [7033] = {.lex_state = 97}, - [7034] = {.lex_state = 1696}, - [7035] = {.lex_state = 1692}, - [7036] = {.lex_state = 97}, - [7037] = {.lex_state = 97}, - [7038] = {.lex_state = 1696}, - [7039] = {.lex_state = 374}, - [7040] = {.lex_state = 1696}, + [7034] = {.lex_state = 216}, + [7035] = {.lex_state = 97}, + [7036] = {.lex_state = 375}, + [7037] = {.lex_state = 75}, + [7038] = {.lex_state = 356}, + [7039] = {.lex_state = 97}, + [7040] = {.lex_state = 97}, [7041] = {.lex_state = 1696}, - [7042] = {.lex_state = 1696}, - [7043] = {.lex_state = 140}, - [7044] = {.lex_state = 1696}, - [7045] = {.lex_state = 1696}, - [7046] = {.lex_state = 216}, + [7042] = {.lex_state = 97}, + [7043] = {.lex_state = 1664}, + [7044] = {.lex_state = 1700}, + [7045] = {.lex_state = 140}, + [7046] = {.lex_state = 97}, [7047] = {.lex_state = 97}, - [7048] = {.lex_state = 97}, - [7049] = {.lex_state = 97}, - [7050] = {.lex_state = 75}, - [7051] = {.lex_state = 97}, - [7052] = {.lex_state = 97}, - [7053] = {.lex_state = 97}, - [7054] = {.lex_state = 1696}, - [7055] = {.lex_state = 97}, - [7056] = {.lex_state = 1696}, - [7057] = {.lex_state = 312}, - [7058] = {.lex_state = 75}, + [7048] = {.lex_state = 356}, + [7049] = {.lex_state = 1700}, + [7050] = {.lex_state = 1700}, + [7051] = {.lex_state = 140}, + [7052] = {.lex_state = 356}, + [7053] = {.lex_state = 140}, + [7054] = {.lex_state = 97}, + [7055] = {.lex_state = 312}, + [7056] = {.lex_state = 97}, + [7057] = {.lex_state = 1700}, + [7058] = {.lex_state = 97}, [7059] = {.lex_state = 97}, - [7060] = {.lex_state = 1696}, + [7060] = {.lex_state = 140}, [7061] = {.lex_state = 97}, - [7062] = {.lex_state = 1696}, - [7063] = {.lex_state = 1696}, - [7064] = {.lex_state = 38}, - [7065] = {.lex_state = 1738}, - [7066] = {.lex_state = 1696}, - [7067] = {.lex_state = 356}, - [7068] = {.lex_state = 97}, - [7069] = {.lex_state = 356}, - [7070] = {.lex_state = 140}, - [7071] = {.lex_state = 1694}, + [7062] = {.lex_state = 97}, + [7063] = {.lex_state = 1700}, + [7064] = {.lex_state = 1700}, + [7065] = {.lex_state = 97}, + [7066] = {.lex_state = 1700}, + [7067] = {.lex_state = 140}, + [7068] = {.lex_state = 360}, + [7069] = {.lex_state = 140}, + [7070] = {.lex_state = 1700}, + [7071] = {.lex_state = 97}, [7072] = {.lex_state = 140}, - [7073] = {.lex_state = 97}, - [7074] = {.lex_state = 97}, - [7075] = {.lex_state = 356}, - [7076] = {.lex_state = 1696}, - [7077] = {.lex_state = 97}, - [7078] = {.lex_state = 1696}, - [7079] = {.lex_state = 356}, - [7080] = {.lex_state = 1696}, - [7081] = {.lex_state = 1696}, - [7082] = {.lex_state = 1696}, - [7083] = {.lex_state = 140}, - [7084] = {.lex_state = 140}, - [7085] = {.lex_state = 312}, - [7086] = {.lex_state = 97}, - [7087] = {.lex_state = 97}, - [7088] = {.lex_state = 140}, - [7089] = {.lex_state = 97}, - [7090] = {.lex_state = 140}, - [7091] = {.lex_state = 1696}, - [7092] = {.lex_state = 140}, + [7073] = {.lex_state = 140}, + [7074] = {.lex_state = 372}, + [7075] = {.lex_state = 1700}, + [7076] = {.lex_state = 1700}, + [7077] = {.lex_state = 140}, + [7078] = {.lex_state = 75}, + [7079] = {.lex_state = 32}, + [7080] = {.lex_state = 140}, + [7081] = {.lex_state = 216}, + [7082] = {.lex_state = 1700}, + [7083] = {.lex_state = 97}, + [7084] = {.lex_state = 1700}, + [7085] = {.lex_state = 216}, + [7086] = {.lex_state = 370}, + [7087] = {.lex_state = 1700}, + [7088] = {.lex_state = 1700}, + [7089] = {.lex_state = 140}, + [7090] = {.lex_state = 1700}, + [7091] = {.lex_state = 1700}, + [7092] = {.lex_state = 1700}, [7093] = {.lex_state = 97}, - [7094] = {.lex_state = 140}, + [7094] = {.lex_state = 1700}, [7095] = {.lex_state = 97}, - [7096] = {.lex_state = 140}, + [7096] = {.lex_state = 97}, [7097] = {.lex_state = 97}, - [7098] = {.lex_state = 1696}, + [7098] = {.lex_state = 97}, [7099] = {.lex_state = 97}, [7100] = {.lex_state = 97}, - [7101] = {.lex_state = 1692}, - [7102] = {.lex_state = 97}, + [7101] = {.lex_state = 97}, + [7102] = {.lex_state = 312}, [7103] = {.lex_state = 97}, - [7104] = {.lex_state = 97}, - [7105] = {.lex_state = 1694}, - [7106] = {.lex_state = 97}, - [7107] = {.lex_state = 97}, - [7108] = {.lex_state = 97}, - [7109] = {.lex_state = 97}, - [7110] = {.lex_state = 97}, - [7111] = {.lex_state = 370}, + [7104] = {.lex_state = 140}, + [7105] = {.lex_state = 97}, + [7106] = {.lex_state = 216}, + [7107] = {.lex_state = 1700}, + [7108] = {.lex_state = 75}, + [7109] = {.lex_state = 140}, + [7110] = {.lex_state = 216}, + [7111] = {.lex_state = 97}, [7112] = {.lex_state = 97}, - [7113] = {.lex_state = 1696}, - [7114] = {.lex_state = 1696}, - [7115] = {.lex_state = 97}, - [7116] = {.lex_state = 1696}, - [7117] = {.lex_state = 216}, - [7118] = {.lex_state = 97}, - [7119] = {.lex_state = 216}, - [7120] = {.lex_state = 312}, - [7121] = {.lex_state = 1696}, - [7122] = {.lex_state = 1696}, - [7123] = {.lex_state = 97}, - [7124] = {.lex_state = 1696}, - [7125] = {.lex_state = 97}, - [7126] = {.lex_state = 1696}, - [7127] = {.lex_state = 1696}, - [7128] = {.lex_state = 1696}, - [7129] = {.lex_state = 1696}, - [7130] = {.lex_state = 216}, - [7131] = {.lex_state = 32}, + [7113] = {.lex_state = 1735}, + [7114] = {.lex_state = 1700}, + [7115] = {.lex_state = 1700}, + [7116] = {.lex_state = 97}, + [7117] = {.lex_state = 1700}, + [7118] = {.lex_state = 322}, + [7119] = {.lex_state = 372}, + [7120] = {.lex_state = 1700}, + [7121] = {.lex_state = 370}, + [7122] = {.lex_state = 1735}, + [7123] = {.lex_state = 1700}, + [7124] = {.lex_state = 97}, + [7125] = {.lex_state = 1700}, + [7126] = {.lex_state = 1700}, + [7127] = {.lex_state = 140}, + [7128] = {.lex_state = 1700}, + [7129] = {.lex_state = 140}, + [7130] = {.lex_state = 97}, + [7131] = {.lex_state = 312}, [7132] = {.lex_state = 97}, - [7133] = {.lex_state = 1696}, - [7134] = {.lex_state = 1696}, - [7135] = {.lex_state = 75}, - [7136] = {.lex_state = 97}, - [7137] = {.lex_state = 1696}, - [7138] = {.lex_state = 1731}, - [7139] = {.lex_state = 1696}, + [7133] = {.lex_state = 97}, + [7134] = {.lex_state = 368}, + [7135] = {.lex_state = 1696}, + [7136] = {.lex_state = 216}, + [7137] = {.lex_state = 1700}, + [7138] = {.lex_state = 216}, + [7139] = {.lex_state = 97}, [7140] = {.lex_state = 97}, - [7141] = {.lex_state = 216}, - [7142] = {.lex_state = 1696}, - [7143] = {.lex_state = 97}, - [7144] = {.lex_state = 1731}, - [7145] = {.lex_state = 1694}, - [7146] = {.lex_state = 372}, + [7141] = {.lex_state = 97}, + [7142] = {.lex_state = 1700}, + [7143] = {.lex_state = 1700}, + [7144] = {.lex_state = 1700}, + [7145] = {.lex_state = 1700}, + [7146] = {.lex_state = 216}, [7147] = {.lex_state = 97}, [7148] = {.lex_state = 97}, - [7149] = {.lex_state = 1696}, - [7150] = {.lex_state = 1696}, - [7151] = {.lex_state = 140}, - [7152] = {.lex_state = 216}, - [7153] = {.lex_state = 216}, - [7154] = {.lex_state = 1696}, - [7155] = {.lex_state = 1696}, - [7156] = {.lex_state = 1696}, - [7157] = {.lex_state = 1696}, - [7158] = {.lex_state = 1696}, - [7159] = {.lex_state = 97}, - [7160] = {.lex_state = 97}, - [7161] = {.lex_state = 216}, - [7162] = {.lex_state = 97}, - [7163] = {.lex_state = 216}, - [7164] = {.lex_state = 97}, + [7149] = {.lex_state = 216}, + [7150] = {.lex_state = 75}, + [7151] = {.lex_state = 97}, + [7152] = {.lex_state = 1700}, + [7153] = {.lex_state = 1700}, + [7154] = {.lex_state = 1700}, + [7155] = {.lex_state = 1700}, + [7156] = {.lex_state = 216}, + [7157] = {.lex_state = 216}, + [7158] = {.lex_state = 216}, + [7159] = {.lex_state = 1700}, + [7160] = {.lex_state = 1700}, + [7161] = {.lex_state = 97}, + [7162] = {.lex_state = 1700}, + [7163] = {.lex_state = 1700}, + [7164] = {.lex_state = 216}, [7165] = {.lex_state = 97}, - [7166] = {.lex_state = 1696}, - [7167] = {.lex_state = 1696}, - [7168] = {.lex_state = 1696}, - [7169] = {.lex_state = 1696}, - [7170] = {.lex_state = 216}, - [7171] = {.lex_state = 1696}, + [7166] = {.lex_state = 216}, + [7167] = {.lex_state = 97}, + [7168] = {.lex_state = 1700}, + [7169] = {.lex_state = 1700}, + [7170] = {.lex_state = 1700}, + [7171] = {.lex_state = 1700}, [7172] = {.lex_state = 216}, - [7173] = {.lex_state = 1696}, - [7174] = {.lex_state = 1696}, - [7175] = {.lex_state = 1696}, - [7176] = {.lex_state = 1696}, - [7177] = {.lex_state = 1696}, - [7178] = {.lex_state = 216}, - [7179] = {.lex_state = 97}, - [7180] = {.lex_state = 216}, - [7181] = {.lex_state = 1692}, - [7182] = {.lex_state = 1696}, - [7183] = {.lex_state = 1696}, - [7184] = {.lex_state = 1696}, - [7185] = {.lex_state = 1696}, - [7186] = {.lex_state = 216}, - [7187] = {.lex_state = 1696}, + [7173] = {.lex_state = 1700}, + [7174] = {.lex_state = 1700}, + [7175] = {.lex_state = 216}, + [7176] = {.lex_state = 97}, + [7177] = {.lex_state = 32}, + [7178] = {.lex_state = 1700}, + [7179] = {.lex_state = 1700}, + [7180] = {.lex_state = 1700}, + [7181] = {.lex_state = 1700}, + [7182] = {.lex_state = 216}, + [7183] = {.lex_state = 97}, + [7184] = {.lex_state = 216}, + [7185] = {.lex_state = 97}, + [7186] = {.lex_state = 1700}, + [7187] = {.lex_state = 1700}, [7188] = {.lex_state = 97}, - [7189] = {.lex_state = 216}, - [7190] = {.lex_state = 97}, - [7191] = {.lex_state = 1696}, - [7192] = {.lex_state = 1696}, - [7193] = {.lex_state = 1696}, - [7194] = {.lex_state = 1696}, - [7195] = {.lex_state = 216}, + [7189] = {.lex_state = 1700}, + [7190] = {.lex_state = 1700}, + [7191] = {.lex_state = 216}, + [7192] = {.lex_state = 75}, + [7193] = {.lex_state = 75}, + [7194] = {.lex_state = 216}, + [7195] = {.lex_state = 97}, [7196] = {.lex_state = 97}, - [7197] = {.lex_state = 1696}, - [7198] = {.lex_state = 216}, - [7199] = {.lex_state = 1696}, - [7200] = {.lex_state = 1696}, - [7201] = {.lex_state = 1696}, - [7202] = {.lex_state = 372}, - [7203] = {.lex_state = 1696}, - [7204] = {.lex_state = 1696}, + [7197] = {.lex_state = 1700}, + [7198] = {.lex_state = 1700}, + [7199] = {.lex_state = 372}, + [7200] = {.lex_state = 1700}, + [7201] = {.lex_state = 1700}, + [7202] = {.lex_state = 216}, + [7203] = {.lex_state = 1700}, + [7204] = {.lex_state = 97}, [7205] = {.lex_state = 216}, - [7206] = {.lex_state = 1696}, - [7207] = {.lex_state = 1696}, - [7208] = {.lex_state = 216}, - [7209] = {.lex_state = 372}, - [7210] = {.lex_state = 372}, - [7211] = {.lex_state = 1696}, - [7212] = {.lex_state = 1696}, - [7213] = {.lex_state = 1696}, - [7214] = {.lex_state = 1696}, - [7215] = {.lex_state = 216}, - [7216] = {.lex_state = 97}, - [7217] = {.lex_state = 216}, - [7218] = {.lex_state = 97}, - [7219] = {.lex_state = 1696}, - [7220] = {.lex_state = 1696}, - [7221] = {.lex_state = 1696}, - [7222] = {.lex_state = 1696}, - [7223] = {.lex_state = 1696}, + [7206] = {.lex_state = 1700}, + [7207] = {.lex_state = 1700}, + [7208] = {.lex_state = 1700}, + [7209] = {.lex_state = 1700}, + [7210] = {.lex_state = 1700}, + [7211] = {.lex_state = 1700}, + [7212] = {.lex_state = 1700}, + [7213] = {.lex_state = 216}, + [7214] = {.lex_state = 216}, + [7215] = {.lex_state = 1700}, + [7216] = {.lex_state = 1700}, + [7217] = {.lex_state = 1700}, + [7218] = {.lex_state = 1700}, + [7219] = {.lex_state = 1700}, + [7220] = {.lex_state = 1700}, + [7221] = {.lex_state = 216}, + [7222] = {.lex_state = 1700}, + [7223] = {.lex_state = 1700}, [7224] = {.lex_state = 216}, - [7225] = {.lex_state = 97}, - [7226] = {.lex_state = 1694}, - [7227] = {.lex_state = 216}, - [7228] = {.lex_state = 97}, - [7229] = {.lex_state = 1696}, - [7230] = {.lex_state = 1696}, - [7231] = {.lex_state = 1696}, - [7232] = {.lex_state = 1696}, - [7233] = {.lex_state = 216}, - [7234] = {.lex_state = 1696}, - [7235] = {.lex_state = 216}, - [7236] = {.lex_state = 97}, - [7237] = {.lex_state = 1696}, - [7238] = {.lex_state = 1696}, - [7239] = {.lex_state = 1696}, - [7240] = {.lex_state = 1696}, - [7241] = {.lex_state = 216}, - [7242] = {.lex_state = 216}, - [7243] = {.lex_state = 1696}, - [7244] = {.lex_state = 1696}, - [7245] = {.lex_state = 1696}, - [7246] = {.lex_state = 1696}, - [7247] = {.lex_state = 1696}, - [7248] = {.lex_state = 216}, - [7249] = {.lex_state = 216}, - [7250] = {.lex_state = 97}, - [7251] = {.lex_state = 1696}, - [7252] = {.lex_state = 1696}, - [7253] = {.lex_state = 1696}, - [7254] = {.lex_state = 1696}, - [7255] = {.lex_state = 216}, - [7256] = {.lex_state = 216}, - [7257] = {.lex_state = 1696}, - [7258] = {.lex_state = 1696}, - [7259] = {.lex_state = 1694}, - [7260] = {.lex_state = 1696}, - [7261] = {.lex_state = 1696}, - [7262] = {.lex_state = 216}, - [7263] = {.lex_state = 216}, - [7264] = {.lex_state = 140}, - [7265] = {.lex_state = 1696}, - [7266] = {.lex_state = 1696}, - [7267] = {.lex_state = 1696}, - [7268] = {.lex_state = 1696}, - [7269] = {.lex_state = 216}, - [7270] = {.lex_state = 216}, - [7271] = {.lex_state = 1696}, - [7272] = {.lex_state = 1696}, - [7273] = {.lex_state = 140}, - [7274] = {.lex_state = 1696}, - [7275] = {.lex_state = 1696}, - [7276] = {.lex_state = 1696}, - [7277] = {.lex_state = 1696}, - [7278] = {.lex_state = 1696}, - [7279] = {.lex_state = 1694}, - [7280] = {.lex_state = 1694}, - [7281] = {.lex_state = 1694}, - [7282] = {.lex_state = 1696}, - [7283] = {.lex_state = 140}, - [7284] = {.lex_state = 1696}, - [7285] = {.lex_state = 360}, - [7286] = {.lex_state = 97}, - [7287] = {.lex_state = 312}, + [7225] = {.lex_state = 1700}, + [7226] = {.lex_state = 1700}, + [7227] = {.lex_state = 1700}, + [7228] = {.lex_state = 1700}, + [7229] = {.lex_state = 1700}, + [7230] = {.lex_state = 216}, + [7231] = {.lex_state = 216}, + [7232] = {.lex_state = 1698}, + [7233] = {.lex_state = 1700}, + [7234] = {.lex_state = 1700}, + [7235] = {.lex_state = 1700}, + [7236] = {.lex_state = 1700}, + [7237] = {.lex_state = 216}, + [7238] = {.lex_state = 216}, + [7239] = {.lex_state = 1700}, + [7240] = {.lex_state = 1700}, + [7241] = {.lex_state = 97}, + [7242] = {.lex_state = 1700}, + [7243] = {.lex_state = 1700}, + [7244] = {.lex_state = 216}, + [7245] = {.lex_state = 216}, + [7246] = {.lex_state = 1700}, + [7247] = {.lex_state = 1700}, + [7248] = {.lex_state = 1700}, + [7249] = {.lex_state = 1700}, + [7250] = {.lex_state = 216}, + [7251] = {.lex_state = 216}, + [7252] = {.lex_state = 97}, + [7253] = {.lex_state = 1700}, + [7254] = {.lex_state = 1700}, + [7255] = {.lex_state = 1700}, + [7256] = {.lex_state = 1700}, + [7257] = {.lex_state = 216}, + [7258] = {.lex_state = 216}, + [7259] = {.lex_state = 97}, + [7260] = {.lex_state = 1700}, + [7261] = {.lex_state = 1700}, + [7262] = {.lex_state = 1700}, + [7263] = {.lex_state = 1700}, + [7264] = {.lex_state = 1700}, + [7265] = {.lex_state = 97}, + [7266] = {.lex_state = 97}, + [7267] = {.lex_state = 1700}, + [7268] = {.lex_state = 97}, + [7269] = {.lex_state = 312}, + [7270] = {.lex_state = 312}, + [7271] = {.lex_state = 312}, + [7272] = {.lex_state = 97}, + [7273] = {.lex_state = 1700}, + [7274] = {.lex_state = 1698}, + [7275] = {.lex_state = 97}, + [7276] = {.lex_state = 1700}, + [7277] = {.lex_state = 1698}, + [7278] = {.lex_state = 1698}, + [7279] = {.lex_state = 1698}, + [7280] = {.lex_state = 1698}, + [7281] = {.lex_state = 97}, + [7282] = {.lex_state = 1698}, + [7283] = {.lex_state = 97}, + [7284] = {.lex_state = 38}, + [7285] = {.lex_state = 312}, + [7286] = {.lex_state = 1701}, + [7287] = {.lex_state = 1700}, [7288] = {.lex_state = 97}, - [7289] = {.lex_state = 1694}, - [7290] = {.lex_state = 140}, - [7291] = {.lex_state = 356}, + [7289] = {.lex_state = 95}, + [7290] = {.lex_state = 97}, + [7291] = {.lex_state = 97}, [7292] = {.lex_state = 97}, - [7293] = {.lex_state = 312}, - [7294] = {.lex_state = 1696}, - [7295] = {.lex_state = 1696}, - [7296] = {.lex_state = 1696}, - [7297] = {.lex_state = 97}, - [7298] = {.lex_state = 5515}, - [7299] = {.lex_state = 5515}, - [7300] = {.lex_state = 5515}, - [7301] = {.lex_state = 1696}, - [7302] = {.lex_state = 361}, - [7303] = {.lex_state = 312}, - [7304] = {.lex_state = 5515}, - [7305] = {.lex_state = 5515}, - [7306] = {.lex_state = 5519}, - [7307] = {.lex_state = 5519}, - [7308] = {.lex_state = 5519}, - [7309] = {.lex_state = 5519}, - [7310] = {.lex_state = 1696}, - [7311] = {.lex_state = 5515}, - [7312] = {.lex_state = 5519}, - [7313] = {.lex_state = 5515}, - [7314] = {.lex_state = 5515}, - [7315] = {.lex_state = 5519}, - [7316] = {.lex_state = 5519}, - [7317] = {.lex_state = 95}, - [7318] = {.lex_state = 5515}, - [7319] = {.lex_state = 97}, + [7293] = {.lex_state = 5542}, + [7294] = {.lex_state = 5542}, + [7295] = {.lex_state = 30}, + [7296] = {.lex_state = 1678}, + [7297] = {.lex_state = 5542}, + [7298] = {.lex_state = 5542}, + [7299] = {.lex_state = 5542}, + [7300] = {.lex_state = 97}, + [7301] = {.lex_state = 5542}, + [7302] = {.lex_state = 5542}, + [7303] = {.lex_state = 5546}, + [7304] = {.lex_state = 5546}, + [7305] = {.lex_state = 361}, + [7306] = {.lex_state = 1698}, + [7307] = {.lex_state = 5546}, + [7308] = {.lex_state = 5546}, + [7309] = {.lex_state = 268}, + [7310] = {.lex_state = 97}, + [7311] = {.lex_state = 5546}, + [7312] = {.lex_state = 97}, + [7313] = {.lex_state = 5546}, + [7314] = {.lex_state = 97}, + [7315] = {.lex_state = 5546}, + [7316] = {.lex_state = 5546}, + [7317] = {.lex_state = 5542}, + [7318] = {.lex_state = 95}, + [7319] = {.lex_state = 5544}, [7320] = {.lex_state = 97}, - [7321] = {.lex_state = 1694}, - [7322] = {.lex_state = 1696}, - [7323] = {.lex_state = 95}, - [7324] = {.lex_state = 97}, - [7325] = {.lex_state = 30}, - [7326] = {.lex_state = 361}, - [7327] = {.lex_state = 5519}, - [7328] = {.lex_state = 5519}, - [7329] = {.lex_state = 97}, - [7330] = {.lex_state = 95}, - [7331] = {.lex_state = 95}, - [7332] = {.lex_state = 5515}, - [7333] = {.lex_state = 97}, - [7334] = {.lex_state = 5515}, - [7335] = {.lex_state = 1696}, - [7336] = {.lex_state = 361}, - [7337] = {.lex_state = 5519}, - [7338] = {.lex_state = 5519}, - [7339] = {.lex_state = 95}, - [7340] = {.lex_state = 1664}, - [7341] = {.lex_state = 1696}, - [7342] = {.lex_state = 1696}, - [7343] = {.lex_state = 97}, - [7344] = {.lex_state = 5515}, - [7345] = {.lex_state = 5519}, - [7346] = {.lex_state = 1696}, + [7321] = {.lex_state = 268}, + [7322] = {.lex_state = 97}, + [7323] = {.lex_state = 97}, + [7324] = {.lex_state = 268}, + [7325] = {.lex_state = 95}, + [7326] = {.lex_state = 5542}, + [7327] = {.lex_state = 95}, + [7328] = {.lex_state = 1700}, + [7329] = {.lex_state = 1700}, + [7330] = {.lex_state = 1698}, + [7331] = {.lex_state = 30}, + [7332] = {.lex_state = 368}, + [7333] = {.lex_state = 361}, + [7334] = {.lex_state = 97}, + [7335] = {.lex_state = 361}, + [7336] = {.lex_state = 1701}, + [7337] = {.lex_state = 95}, + [7338] = {.lex_state = 97}, + [7339] = {.lex_state = 5544}, + [7340] = {.lex_state = 374}, + [7341] = {.lex_state = 97}, + [7342] = {.lex_state = 370}, + [7343] = {.lex_state = 5542}, + [7344] = {.lex_state = 97}, + [7345] = {.lex_state = 1700}, + [7346] = {.lex_state = 361}, [7347] = {.lex_state = 97}, - [7348] = {.lex_state = 1692}, - [7349] = {.lex_state = 97}, - [7350] = {.lex_state = 97}, - [7351] = {.lex_state = 1696}, - [7352] = {.lex_state = 97}, - [7353] = {.lex_state = 1696}, - [7354] = {.lex_state = 5515}, - [7355] = {.lex_state = 97}, - [7356] = {.lex_state = 97}, - [7357] = {.lex_state = 361}, - [7358] = {.lex_state = 1696}, - [7359] = {.lex_state = 5517}, - [7360] = {.lex_state = 1696}, + [7348] = {.lex_state = 1700}, + [7349] = {.lex_state = 5542}, + [7350] = {.lex_state = 1700}, + [7351] = {.lex_state = 95}, + [7352] = {.lex_state = 5544}, + [7353] = {.lex_state = 1700}, + [7354] = {.lex_state = 97}, + [7355] = {.lex_state = 5542}, + [7356] = {.lex_state = 1700}, + [7357] = {.lex_state = 5544}, + [7358] = {.lex_state = 97}, + [7359] = {.lex_state = 1700}, + [7360] = {.lex_state = 97}, [7361] = {.lex_state = 1696}, - [7362] = {.lex_state = 5517}, - [7363] = {.lex_state = 1696}, - [7364] = {.lex_state = 97}, - [7365] = {.lex_state = 5517}, - [7366] = {.lex_state = 97}, - [7367] = {.lex_state = 1696}, - [7368] = {.lex_state = 1696}, - [7369] = {.lex_state = 370}, - [7370] = {.lex_state = 5519}, - [7371] = {.lex_state = 5519}, - [7372] = {.lex_state = 1674}, - [7373] = {.lex_state = 97}, - [7374] = {.lex_state = 361}, - [7375] = {.lex_state = 1696}, - [7376] = {.lex_state = 1694}, - [7377] = {.lex_state = 95}, - [7378] = {.lex_state = 5515}, - [7379] = {.lex_state = 95}, - [7380] = {.lex_state = 97}, - [7381] = {.lex_state = 5515}, - [7382] = {.lex_state = 361}, - [7383] = {.lex_state = 97}, - [7384] = {.lex_state = 5515}, - [7385] = {.lex_state = 1697}, - [7386] = {.lex_state = 1696}, - [7387] = {.lex_state = 97}, - [7388] = {.lex_state = 97}, + [7362] = {.lex_state = 97}, + [7363] = {.lex_state = 95}, + [7364] = {.lex_state = 1700}, + [7365] = {.lex_state = 95}, + [7366] = {.lex_state = 361}, + [7367] = {.lex_state = 1700}, + [7368] = {.lex_state = 97}, + [7369] = {.lex_state = 97}, + [7370] = {.lex_state = 140}, + [7371] = {.lex_state = 97}, + [7372] = {.lex_state = 97}, + [7373] = {.lex_state = 1700}, + [7374] = {.lex_state = 97}, + [7375] = {.lex_state = 97}, + [7376] = {.lex_state = 1700}, + [7377] = {.lex_state = 97}, + [7378] = {.lex_state = 1701}, + [7379] = {.lex_state = 361}, + [7380] = {.lex_state = 361}, + [7381] = {.lex_state = 1700}, + [7382] = {.lex_state = 5542}, + [7383] = {.lex_state = 5542}, + [7384] = {.lex_state = 97}, + [7385] = {.lex_state = 97}, + [7386] = {.lex_state = 95}, + [7387] = {.lex_state = 5542}, + [7388] = {.lex_state = 95}, [7389] = {.lex_state = 97}, - [7390] = {.lex_state = 361}, - [7391] = {.lex_state = 1696}, - [7392] = {.lex_state = 1696}, - [7393] = {.lex_state = 5515}, - [7394] = {.lex_state = 368}, - [7395] = {.lex_state = 5515}, - [7396] = {.lex_state = 1696}, - [7397] = {.lex_state = 361}, - [7398] = {.lex_state = 5515}, - [7399] = {.lex_state = 5515}, - [7400] = {.lex_state = 97}, - [7401] = {.lex_state = 1696}, - [7402] = {.lex_state = 95}, - [7403] = {.lex_state = 1697}, - [7404] = {.lex_state = 374}, - [7405] = {.lex_state = 268}, - [7406] = {.lex_state = 95}, - [7407] = {.lex_state = 95}, - [7408] = {.lex_state = 5515}, - [7409] = {.lex_state = 1696}, - [7410] = {.lex_state = 5519}, - [7411] = {.lex_state = 4099}, - [7412] = {.lex_state = 95}, - [7413] = {.lex_state = 370}, + [7390] = {.lex_state = 5542}, + [7391] = {.lex_state = 5542}, + [7392] = {.lex_state = 1700}, + [7393] = {.lex_state = 5542}, + [7394] = {.lex_state = 95}, + [7395] = {.lex_state = 97}, + [7396] = {.lex_state = 5542}, + [7397] = {.lex_state = 95}, + [7398] = {.lex_state = 97}, + [7399] = {.lex_state = 361}, + [7400] = {.lex_state = 1700}, + [7401] = {.lex_state = 5542}, + [7402] = {.lex_state = 5546}, + [7403] = {.lex_state = 5546}, + [7404] = {.lex_state = 1700}, + [7405] = {.lex_state = 1700}, + [7406] = {.lex_state = 97}, + [7407] = {.lex_state = 5546}, + [7408] = {.lex_state = 5546}, + [7409] = {.lex_state = 1700}, + [7410] = {.lex_state = 5546}, + [7411] = {.lex_state = 370}, + [7412] = {.lex_state = 370}, + [7413] = {.lex_state = 5542}, [7414] = {.lex_state = 95}, - [7415] = {.lex_state = 370}, - [7416] = {.lex_state = 1696}, - [7417] = {.lex_state = 97}, - [7418] = {.lex_state = 97}, - [7419] = {.lex_state = 1696}, - [7420] = {.lex_state = 1696}, - [7421] = {.lex_state = 97}, - [7422] = {.lex_state = 1697}, - [7423] = {.lex_state = 1696}, - [7424] = {.lex_state = 5519}, - [7425] = {.lex_state = 43}, - [7426] = {.lex_state = 1696}, - [7427] = {.lex_state = 1696}, - [7428] = {.lex_state = 5517}, - [7429] = {.lex_state = 1696}, - [7430] = {.lex_state = 97}, - [7431] = {.lex_state = 1696}, - [7432] = {.lex_state = 5517}, - [7433] = {.lex_state = 97}, - [7434] = {.lex_state = 95}, - [7435] = {.lex_state = 1696}, - [7436] = {.lex_state = 97}, - [7437] = {.lex_state = 370}, - [7438] = {.lex_state = 97}, - [7439] = {.lex_state = 97}, - [7440] = {.lex_state = 5515}, - [7441] = {.lex_state = 30}, - [7442] = {.lex_state = 1696}, - [7443] = {.lex_state = 1694}, - [7444] = {.lex_state = 140}, - [7445] = {.lex_state = 5519}, - [7446] = {.lex_state = 370}, - [7447] = {.lex_state = 5515}, - [7448] = {.lex_state = 97}, - [7449] = {.lex_state = 370}, - [7450] = {.lex_state = 5515}, - [7451] = {.lex_state = 97}, - [7452] = {.lex_state = 95}, - [7453] = {.lex_state = 1696}, - [7454] = {.lex_state = 97}, - [7455] = {.lex_state = 97}, - [7456] = {.lex_state = 361}, - [7457] = {.lex_state = 268}, - [7458] = {.lex_state = 97}, - [7459] = {.lex_state = 268}, - [7460] = {.lex_state = 1697}, - [7461] = {.lex_state = 361}, - [7462] = {.lex_state = 97}, - [7463] = {.lex_state = 97}, - [7464] = {.lex_state = 5515}, - [7465] = {.lex_state = 1696, .external_lex_state = 3}, + [7415] = {.lex_state = 361}, + [7416] = {.lex_state = 1700}, + [7417] = {.lex_state = 1700}, + [7418] = {.lex_state = 370}, + [7419] = {.lex_state = 5542}, + [7420] = {.lex_state = 1700}, + [7421] = {.lex_state = 370}, + [7422] = {.lex_state = 5542}, + [7423] = {.lex_state = 97}, + [7424] = {.lex_state = 97}, + [7425] = {.lex_state = 1668}, + [7426] = {.lex_state = 370}, + [7427] = {.lex_state = 5546}, + [7428] = {.lex_state = 5546}, + [7429] = {.lex_state = 1698}, + [7430] = {.lex_state = 5546}, + [7431] = {.lex_state = 1700}, + [7432] = {.lex_state = 5546}, + [7433] = {.lex_state = 1700}, + [7434] = {.lex_state = 5544}, + [7435] = {.lex_state = 95}, + [7436] = {.lex_state = 1701}, + [7437] = {.lex_state = 1700}, + [7438] = {.lex_state = 1700}, + [7439] = {.lex_state = 1700}, + [7440] = {.lex_state = 312}, + [7441] = {.lex_state = 1700}, + [7442] = {.lex_state = 1700}, + [7443] = {.lex_state = 1700}, + [7444] = {.lex_state = 5542}, + [7445] = {.lex_state = 5542}, + [7446] = {.lex_state = 1700}, + [7447] = {.lex_state = 97}, + [7448] = {.lex_state = 1700}, + [7449] = {.lex_state = 361}, + [7450] = {.lex_state = 1700}, + [7451] = {.lex_state = 4117}, + [7452] = {.lex_state = 43}, + [7453] = {.lex_state = 1700}, + [7454] = {.lex_state = 364}, + [7455] = {.lex_state = 1700}, + [7456] = {.lex_state = 1700}, + [7457] = {.lex_state = 1700}, + [7458] = {.lex_state = 1700, .external_lex_state = 3}, + [7459] = {.lex_state = 5544}, + [7460] = {.lex_state = 1700}, + [7461] = {.lex_state = 1700}, + [7462] = {.lex_state = 1700}, + [7463] = {.lex_state = 1700, .external_lex_state = 3}, + [7464] = {.lex_state = 1700, .external_lex_state = 3}, + [7465] = {.lex_state = 95}, [7466] = {.lex_state = 361}, - [7467] = {.lex_state = 3157}, - [7468] = {.lex_state = 123}, - [7469] = {.lex_state = 1696}, - [7470] = {.lex_state = 1696}, - [7471] = {.lex_state = 361}, - [7472] = {.lex_state = 370}, - [7473] = {.lex_state = 365}, - [7474] = {.lex_state = 1696, .external_lex_state = 4}, - [7475] = {.lex_state = 1696}, - [7476] = {.lex_state = 1696}, - [7477] = {.lex_state = 43}, - [7478] = {.lex_state = 1696}, - [7479] = {.lex_state = 370}, - [7480] = {.lex_state = 1696}, - [7481] = {.lex_state = 1696}, - [7482] = {.lex_state = 1696}, - [7483] = {.lex_state = 1696}, - [7484] = {.lex_state = 1696}, - [7485] = {.lex_state = 1696}, - [7486] = {.lex_state = 1696, .external_lex_state = 4}, - [7487] = {.lex_state = 1696}, - [7488] = {.lex_state = 1696}, - [7489] = {.lex_state = 1696}, - [7490] = {.lex_state = 361}, - [7491] = {.lex_state = 1696, .external_lex_state = 4}, - [7492] = {.lex_state = 5517}, - [7493] = {.lex_state = 1696}, - [7494] = {.lex_state = 3157}, - [7495] = {.lex_state = 5519}, - [7496] = {.lex_state = 1696}, - [7497] = {.lex_state = 1696}, - [7498] = {.lex_state = 1696, .external_lex_state = 3}, - [7499] = {.lex_state = 1696}, - [7500] = {.lex_state = 1696}, - [7501] = {.lex_state = 1665}, - [7502] = {.lex_state = 1696}, - [7503] = {.lex_state = 1696, .external_lex_state = 4}, - [7504] = {.lex_state = 1696}, + [7467] = {.lex_state = 1700}, + [7468] = {.lex_state = 1700}, + [7469] = {.lex_state = 1700}, + [7470] = {.lex_state = 1700}, + [7471] = {.lex_state = 1700}, + [7472] = {.lex_state = 1700}, + [7473] = {.lex_state = 1700}, + [7474] = {.lex_state = 1700, .external_lex_state = 3}, + [7475] = {.lex_state = 1700, .external_lex_state = 3}, + [7476] = {.lex_state = 1700}, + [7477] = {.lex_state = 5542}, + [7478] = {.lex_state = 1700}, + [7479] = {.lex_state = 1700}, + [7480] = {.lex_state = 1700}, + [7481] = {.lex_state = 1700}, + [7482] = {.lex_state = 1700}, + [7483] = {.lex_state = 1700, .external_lex_state = 3}, + [7484] = {.lex_state = 1700}, + [7485] = {.lex_state = 1700}, + [7486] = {.lex_state = 1700}, + [7487] = {.lex_state = 1700}, + [7488] = {.lex_state = 1700}, + [7489] = {.lex_state = 1700}, + [7490] = {.lex_state = 1700}, + [7491] = {.lex_state = 1700, .external_lex_state = 3}, + [7492] = {.lex_state = 1700}, + [7493] = {.lex_state = 361}, + [7494] = {.lex_state = 370}, + [7495] = {.lex_state = 1669}, + [7496] = {.lex_state = 1700, .external_lex_state = 3}, + [7497] = {.lex_state = 1700, .external_lex_state = 3}, + [7498] = {.lex_state = 1700}, + [7499] = {.lex_state = 1700}, + [7500] = {.lex_state = 1700}, + [7501] = {.lex_state = 1700, .external_lex_state = 4}, + [7502] = {.lex_state = 365}, + [7503] = {.lex_state = 1700}, + [7504] = {.lex_state = 365}, [7505] = {.lex_state = 1696}, - [7506] = {.lex_state = 1692}, - [7507] = {.lex_state = 1694}, - [7508] = {.lex_state = 1696}, + [7506] = {.lex_state = 361}, + [7507] = {.lex_state = 1698}, + [7508] = {.lex_state = 1700}, [7509] = {.lex_state = 1696}, - [7510] = {.lex_state = 1696}, - [7511] = {.lex_state = 1696}, - [7512] = {.lex_state = 1696}, - [7513] = {.lex_state = 1696}, - [7514] = {.lex_state = 5517}, - [7515] = {.lex_state = 3157}, + [7510] = {.lex_state = 370}, + [7511] = {.lex_state = 1700}, + [7512] = {.lex_state = 1631}, + [7513] = {.lex_state = 1700, .external_lex_state = 3}, + [7514] = {.lex_state = 5542}, + [7515] = {.lex_state = 1700}, [7516] = {.lex_state = 1696}, - [7517] = {.lex_state = 1627}, - [7518] = {.lex_state = 1696}, - [7519] = {.lex_state = 361}, - [7520] = {.lex_state = 1696}, - [7521] = {.lex_state = 3157}, - [7522] = {.lex_state = 1696}, - [7523] = {.lex_state = 1696, .external_lex_state = 3}, - [7524] = {.lex_state = 365}, - [7525] = {.lex_state = 123}, - [7526] = {.lex_state = 1696}, - [7527] = {.lex_state = 1696}, - [7528] = {.lex_state = 1696}, - [7529] = {.lex_state = 1696}, - [7530] = {.lex_state = 43}, - [7531] = {.lex_state = 1696}, - [7532] = {.lex_state = 1696}, - [7533] = {.lex_state = 1696}, - [7534] = {.lex_state = 1696}, - [7535] = {.lex_state = 1696}, - [7536] = {.lex_state = 45}, - [7537] = {.lex_state = 1696}, - [7538] = {.lex_state = 1696}, - [7539] = {.lex_state = 1692}, - [7540] = {.lex_state = 361}, - [7541] = {.lex_state = 366}, - [7542] = {.lex_state = 123}, - [7543] = {.lex_state = 3157}, - [7544] = {.lex_state = 1696}, - [7545] = {.lex_state = 1696}, - [7546] = {.lex_state = 3157}, - [7547] = {.lex_state = 1696}, - [7548] = {.lex_state = 1696, .external_lex_state = 3}, - [7549] = {.lex_state = 1696, .external_lex_state = 4}, - [7550] = {.lex_state = 1696}, - [7551] = {.lex_state = 1627}, - [7552] = {.lex_state = 1696}, - [7553] = {.lex_state = 1696}, - [7554] = {.lex_state = 1696}, - [7555] = {.lex_state = 1692}, - [7556] = {.lex_state = 1696}, - [7557] = {.lex_state = 1696}, - [7558] = {.lex_state = 1696}, - [7559] = {.lex_state = 1696}, - [7560] = {.lex_state = 3157}, - [7561] = {.lex_state = 1696}, - [7562] = {.lex_state = 1696}, - [7563] = {.lex_state = 1692}, - [7564] = {.lex_state = 1696}, - [7565] = {.lex_state = 365}, - [7566] = {.lex_state = 1696, .external_lex_state = 4}, - [7567] = {.lex_state = 1696}, - [7568] = {.lex_state = 361}, - [7569] = {.lex_state = 1696}, - [7570] = {.lex_state = 1696}, + [7517] = {.lex_state = 361}, + [7518] = {.lex_state = 43}, + [7519] = {.lex_state = 1700}, + [7520] = {.lex_state = 1700}, + [7521] = {.lex_state = 1700}, + [7522] = {.lex_state = 1700}, + [7523] = {.lex_state = 1700}, + [7524] = {.lex_state = 370}, + [7525] = {.lex_state = 1700}, + [7526] = {.lex_state = 1700}, + [7527] = {.lex_state = 1700}, + [7528] = {.lex_state = 1700}, + [7529] = {.lex_state = 1700}, + [7530] = {.lex_state = 3167}, + [7531] = {.lex_state = 1700}, + [7532] = {.lex_state = 1700}, + [7533] = {.lex_state = 1784}, + [7534] = {.lex_state = 1700}, + [7535] = {.lex_state = 3167}, + [7536] = {.lex_state = 1700, .external_lex_state = 4}, + [7537] = {.lex_state = 1700}, + [7538] = {.lex_state = 1700, .external_lex_state = 3}, + [7539] = {.lex_state = 1631}, + [7540] = {.lex_state = 1700}, + [7541] = {.lex_state = 43}, + [7542] = {.lex_state = 3167}, + [7543] = {.lex_state = 1696}, + [7544] = {.lex_state = 1700}, + [7545] = {.lex_state = 1700}, + [7546] = {.lex_state = 1700}, + [7547] = {.lex_state = 1701}, + [7548] = {.lex_state = 1700}, + [7549] = {.lex_state = 1700}, + [7550] = {.lex_state = 1700, .external_lex_state = 3}, + [7551] = {.lex_state = 1700}, + [7552] = {.lex_state = 1700, .external_lex_state = 3}, + [7553] = {.lex_state = 361}, + [7554] = {.lex_state = 1700}, + [7555] = {.lex_state = 1700}, + [7556] = {.lex_state = 1700}, + [7557] = {.lex_state = 1700}, + [7558] = {.lex_state = 1700}, + [7559] = {.lex_state = 1700}, + [7560] = {.lex_state = 1700}, + [7561] = {.lex_state = 1700}, + [7562] = {.lex_state = 1700}, + [7563] = {.lex_state = 1700}, + [7564] = {.lex_state = 1700}, + [7565] = {.lex_state = 1700}, + [7566] = {.lex_state = 1700}, + [7567] = {.lex_state = 1700}, + [7568] = {.lex_state = 1700}, + [7569] = {.lex_state = 123}, + [7570] = {.lex_state = 1784}, [7571] = {.lex_state = 1696}, - [7572] = {.lex_state = 1696}, - [7573] = {.lex_state = 370}, - [7574] = {.lex_state = 1696}, - [7575] = {.lex_state = 1696}, - [7576] = {.lex_state = 1696}, - [7577] = {.lex_state = 1696}, - [7578] = {.lex_state = 1696}, - [7579] = {.lex_state = 1696}, - [7580] = {.lex_state = 5515}, - [7581] = {.lex_state = 1696}, - [7582] = {.lex_state = 361}, - [7583] = {.lex_state = 1696}, - [7584] = {.lex_state = 1696}, - [7585] = {.lex_state = 123}, - [7586] = {.lex_state = 370}, - [7587] = {.lex_state = 1696}, - [7588] = {.lex_state = 361}, - [7589] = {.lex_state = 365}, - [7590] = {.lex_state = 1696}, - [7591] = {.lex_state = 361}, - [7592] = {.lex_state = 1697}, - [7593] = {.lex_state = 3157}, - [7594] = {.lex_state = 5532}, - [7595] = {.lex_state = 1696, .external_lex_state = 4}, - [7596] = {.lex_state = 5519}, - [7597] = {.lex_state = 1696, .external_lex_state = 4}, - [7598] = {.lex_state = 1696}, - [7599] = {.lex_state = 1780}, - [7600] = {.lex_state = 1692}, - [7601] = {.lex_state = 1696}, - [7602] = {.lex_state = 1696}, - [7603] = {.lex_state = 3157}, - [7604] = {.lex_state = 1696}, - [7605] = {.lex_state = 1692}, - [7606] = {.lex_state = 1696, .external_lex_state = 3}, - [7607] = {.lex_state = 364}, - [7608] = {.lex_state = 1696}, - [7609] = {.lex_state = 1627}, - [7610] = {.lex_state = 1696, .external_lex_state = 4}, - [7611] = {.lex_state = 1696}, - [7612] = {.lex_state = 361}, - [7613] = {.lex_state = 1696}, - [7614] = {.lex_state = 1780}, - [7615] = {.lex_state = 1696}, - [7616] = {.lex_state = 5515}, - [7617] = {.lex_state = 3157}, - [7618] = {.lex_state = 1696}, - [7619] = {.lex_state = 1696}, - [7620] = {.lex_state = 1692}, - [7621] = {.lex_state = 1696, .external_lex_state = 4}, - [7622] = {.lex_state = 1696}, - [7623] = {.lex_state = 1696, .external_lex_state = 4}, - [7624] = {.lex_state = 370}, - [7625] = {.lex_state = 43}, - [7626] = {.lex_state = 1692}, - [7627] = {.lex_state = 1696, .external_lex_state = 3}, - [7628] = {.lex_state = 1627}, - [7629] = {.lex_state = 1627}, - [7630] = {.lex_state = 1696, .external_lex_state = 4}, - [7631] = {.lex_state = 1696}, - [7632] = {.lex_state = 361}, - [7633] = {.lex_state = 1696}, - [7634] = {.lex_state = 1696}, - [7635] = {.lex_state = 1696}, - [7636] = {.lex_state = 1696}, - [7637] = {.lex_state = 374}, - [7638] = {.lex_state = 361}, - [7639] = {.lex_state = 1692}, - [7640] = {.lex_state = 1696}, - [7641] = {.lex_state = 1696, .external_lex_state = 4}, - [7642] = {.lex_state = 1627}, - [7643] = {.lex_state = 370}, - [7644] = {.lex_state = 1696}, - [7645] = {.lex_state = 1696}, - [7646] = {.lex_state = 1696}, - [7647] = {.lex_state = 1696}, - [7648] = {.lex_state = 1696}, - [7649] = {.lex_state = 1696}, - [7650] = {.lex_state = 1696}, - [7651] = {.lex_state = 1696}, - [7652] = {.lex_state = 1696}, - [7653] = {.lex_state = 1696, .external_lex_state = 4}, - [7654] = {.lex_state = 1696, .external_lex_state = 4}, - [7655] = {.lex_state = 1696, .external_lex_state = 3}, - [7656] = {.lex_state = 1627}, - [7657] = {.lex_state = 1696}, - [7658] = {.lex_state = 1696}, - [7659] = {.lex_state = 1696, .external_lex_state = 4}, - [7660] = {.lex_state = 1696}, - [7661] = {.lex_state = 1696}, - [7662] = {.lex_state = 1696}, - [7663] = {.lex_state = 1696}, + [7572] = {.lex_state = 3167}, + [7573] = {.lex_state = 43}, + [7574] = {.lex_state = 3167}, + [7575] = {.lex_state = 1742}, + [7576] = {.lex_state = 3167}, + [7577] = {.lex_state = 1700, .external_lex_state = 3}, + [7578] = {.lex_state = 1700}, + [7579] = {.lex_state = 1700}, + [7580] = {.lex_state = 1696}, + [7581] = {.lex_state = 1700}, + [7582] = {.lex_state = 1700, .external_lex_state = 3}, + [7583] = {.lex_state = 3167}, + [7584] = {.lex_state = 1701}, + [7585] = {.lex_state = 1700}, + [7586] = {.lex_state = 1696}, + [7587] = {.lex_state = 1700}, + [7588] = {.lex_state = 365}, + [7589] = {.lex_state = 1700}, + [7590] = {.lex_state = 1700}, + [7591] = {.lex_state = 1700}, + [7592] = {.lex_state = 1696}, + [7593] = {.lex_state = 1700, .external_lex_state = 4}, + [7594] = {.lex_state = 365}, + [7595] = {.lex_state = 370}, + [7596] = {.lex_state = 1631}, + [7597] = {.lex_state = 1700}, + [7598] = {.lex_state = 1700}, + [7599] = {.lex_state = 1700}, + [7600] = {.lex_state = 1700}, + [7601] = {.lex_state = 361}, + [7602] = {.lex_state = 1700, .external_lex_state = 3}, + [7603] = {.lex_state = 1700, .external_lex_state = 3}, + [7604] = {.lex_state = 1700}, + [7605] = {.lex_state = 370}, + [7606] = {.lex_state = 1700}, + [7607] = {.lex_state = 1700}, + [7608] = {.lex_state = 1700}, + [7609] = {.lex_state = 1700}, + [7610] = {.lex_state = 361}, + [7611] = {.lex_state = 361}, + [7612] = {.lex_state = 1700, .external_lex_state = 3}, + [7613] = {.lex_state = 361}, + [7614] = {.lex_state = 1700, .external_lex_state = 4}, + [7615] = {.lex_state = 1700}, + [7616] = {.lex_state = 1631}, + [7617] = {.lex_state = 370}, + [7618] = {.lex_state = 1700}, + [7619] = {.lex_state = 1700}, + [7620] = {.lex_state = 1700}, + [7621] = {.lex_state = 1700}, + [7622] = {.lex_state = 1700}, + [7623] = {.lex_state = 1700, .external_lex_state = 3}, + [7624] = {.lex_state = 361}, + [7625] = {.lex_state = 1700}, + [7626] = {.lex_state = 1700}, + [7627] = {.lex_state = 1700}, + [7628] = {.lex_state = 361}, + [7629] = {.lex_state = 1700, .external_lex_state = 4}, + [7630] = {.lex_state = 1631}, + [7631] = {.lex_state = 370}, + [7632] = {.lex_state = 1700}, + [7633] = {.lex_state = 1700}, + [7634] = {.lex_state = 1700}, + [7635] = {.lex_state = 1700}, + [7636] = {.lex_state = 1700}, + [7637] = {.lex_state = 1700}, + [7638] = {.lex_state = 3167}, + [7639] = {.lex_state = 1700}, + [7640] = {.lex_state = 5546}, + [7641] = {.lex_state = 1700}, + [7642] = {.lex_state = 1700}, + [7643] = {.lex_state = 1700, .external_lex_state = 4}, + [7644] = {.lex_state = 1631}, + [7645] = {.lex_state = 1700}, + [7646] = {.lex_state = 1700}, + [7647] = {.lex_state = 1700, .external_lex_state = 4}, + [7648] = {.lex_state = 1700}, + [7649] = {.lex_state = 370}, + [7650] = {.lex_state = 1700}, + [7651] = {.lex_state = 1700}, + [7652] = {.lex_state = 1700}, + [7653] = {.lex_state = 1700}, + [7654] = {.lex_state = 1700}, + [7655] = {.lex_state = 1631}, + [7656] = {.lex_state = 1700, .external_lex_state = 4}, + [7657] = {.lex_state = 1631}, + [7658] = {.lex_state = 1700}, + [7659] = {.lex_state = 1700, .external_lex_state = 3}, + [7660] = {.lex_state = 1700}, + [7661] = {.lex_state = 1700}, + [7662] = {.lex_state = 1700}, + [7663] = {.lex_state = 1700}, [7664] = {.lex_state = 43}, - [7665] = {.lex_state = 1696}, - [7666] = {.lex_state = 3157}, - [7667] = {.lex_state = 1696, .external_lex_state = 4}, - [7668] = {.lex_state = 1696, .external_lex_state = 3}, - [7669] = {.lex_state = 1627}, - [7670] = {.lex_state = 361}, - [7671] = {.lex_state = 1696}, - [7672] = {.lex_state = 45}, - [7673] = {.lex_state = 1696}, - [7674] = {.lex_state = 1692}, - [7675] = {.lex_state = 1696, .external_lex_state = 4}, - [7676] = {.lex_state = 361}, - [7677] = {.lex_state = 1696}, - [7678] = {.lex_state = 1696}, - [7679] = {.lex_state = 1696}, - [7680] = {.lex_state = 1696}, - [7681] = {.lex_state = 1696, .external_lex_state = 3}, - [7682] = {.lex_state = 1627}, - [7683] = {.lex_state = 1696}, - [7684] = {.lex_state = 5519}, - [7685] = {.lex_state = 1696}, - [7686] = {.lex_state = 1696, .external_lex_state = 4}, - [7687] = {.lex_state = 1696}, - [7688] = {.lex_state = 1696}, - [7689] = {.lex_state = 1696}, - [7690] = {.lex_state = 1696}, - [7691] = {.lex_state = 1696}, - [7692] = {.lex_state = 43}, - [7693] = {.lex_state = 370}, - [7694] = {.lex_state = 1696, .external_lex_state = 3}, - [7695] = {.lex_state = 1627}, - [7696] = {.lex_state = 1696, .external_lex_state = 4}, + [7665] = {.lex_state = 1700}, + [7666] = {.lex_state = 45}, + [7667] = {.lex_state = 1700}, + [7668] = {.lex_state = 5546}, + [7669] = {.lex_state = 1700, .external_lex_state = 4}, + [7670] = {.lex_state = 1631}, + [7671] = {.lex_state = 123}, + [7672] = {.lex_state = 1700}, + [7673] = {.lex_state = 5542}, + [7674] = {.lex_state = 1700}, + [7675] = {.lex_state = 123}, + [7676] = {.lex_state = 43}, + [7677] = {.lex_state = 366}, + [7678] = {.lex_state = 1700}, + [7679] = {.lex_state = 1700, .external_lex_state = 3}, + [7680] = {.lex_state = 1700}, + [7681] = {.lex_state = 1700}, + [7682] = {.lex_state = 1700, .external_lex_state = 4}, + [7683] = {.lex_state = 1631}, + [7684] = {.lex_state = 43}, + [7685] = {.lex_state = 374}, + [7686] = {.lex_state = 1696}, + [7687] = {.lex_state = 1700}, + [7688] = {.lex_state = 1700}, + [7689] = {.lex_state = 1700}, + [7690] = {.lex_state = 43}, + [7691] = {.lex_state = 123}, + [7692] = {.lex_state = 1700}, + [7693] = {.lex_state = 1700, .external_lex_state = 3}, + [7694] = {.lex_state = 1700}, + [7695] = {.lex_state = 1700, .external_lex_state = 4}, + [7696] = {.lex_state = 1631}, [7697] = {.lex_state = 1696}, - [7698] = {.lex_state = 1696}, - [7699] = {.lex_state = 1696}, - [7700] = {.lex_state = 1696}, + [7698] = {.lex_state = 3167}, + [7699] = {.lex_state = 4117}, + [7700] = {.lex_state = 3167}, [7701] = {.lex_state = 1696}, - [7702] = {.lex_state = 1696}, - [7703] = {.lex_state = 1696}, - [7704] = {.lex_state = 1692}, - [7705] = {.lex_state = 1696}, - [7706] = {.lex_state = 1696}, - [7707] = {.lex_state = 1696, .external_lex_state = 3}, - [7708] = {.lex_state = 1627}, - [7709] = {.lex_state = 1696}, - [7710] = {.lex_state = 1692}, - [7711] = {.lex_state = 1696}, - [7712] = {.lex_state = 1696, .external_lex_state = 4}, - [7713] = {.lex_state = 1696}, - [7714] = {.lex_state = 361}, - [7715] = {.lex_state = 370}, - [7716] = {.lex_state = 1696}, - [7717] = {.lex_state = 361}, - [7718] = {.lex_state = 3157}, - [7719] = {.lex_state = 1696}, - [7720] = {.lex_state = 1696, .external_lex_state = 3}, - [7721] = {.lex_state = 1627}, - [7722] = {.lex_state = 370}, - [7723] = {.lex_state = 1697}, - [7724] = {.lex_state = 1692}, - [7725] = {.lex_state = 43}, - [7726] = {.lex_state = 1696, .external_lex_state = 4}, - [7727] = {.lex_state = 1696}, - [7728] = {.lex_state = 1696}, - [7729] = {.lex_state = 1696}, - [7730] = {.lex_state = 1696}, - [7731] = {.lex_state = 1696}, - [7732] = {.lex_state = 1696}, - [7733] = {.lex_state = 1696, .external_lex_state = 3}, - [7734] = {.lex_state = 1627}, - [7735] = {.lex_state = 1696}, - [7736] = {.lex_state = 1696}, - [7737] = {.lex_state = 1696}, - [7738] = {.lex_state = 1696}, - [7739] = {.lex_state = 1696, .external_lex_state = 4}, - [7740] = {.lex_state = 1696}, - [7741] = {.lex_state = 1692}, + [7702] = {.lex_state = 1700}, + [7703] = {.lex_state = 1700}, + [7704] = {.lex_state = 361}, + [7705] = {.lex_state = 1700}, + [7706] = {.lex_state = 1700}, + [7707] = {.lex_state = 1700}, + [7708] = {.lex_state = 1700, .external_lex_state = 4}, + [7709] = {.lex_state = 1631}, + [7710] = {.lex_state = 1700}, + [7711] = {.lex_state = 363}, + [7712] = {.lex_state = 1700}, + [7713] = {.lex_state = 5544}, + [7714] = {.lex_state = 1700}, + [7715] = {.lex_state = 3167}, + [7716] = {.lex_state = 1700}, + [7717] = {.lex_state = 1700, .external_lex_state = 3}, + [7718] = {.lex_state = 1700, .external_lex_state = 3}, + [7719] = {.lex_state = 1700}, + [7720] = {.lex_state = 1700}, + [7721] = {.lex_state = 1700, .external_lex_state = 4}, + [7722] = {.lex_state = 1631}, + [7723] = {.lex_state = 1700}, + [7724] = {.lex_state = 1700}, + [7725] = {.lex_state = 1700}, + [7726] = {.lex_state = 1700}, + [7727] = {.lex_state = 361}, + [7728] = {.lex_state = 1700, .external_lex_state = 3}, + [7729] = {.lex_state = 1700}, + [7730] = {.lex_state = 1700}, + [7731] = {.lex_state = 1700}, + [7732] = {.lex_state = 1700}, + [7733] = {.lex_state = 1700}, + [7734] = {.lex_state = 1700, .external_lex_state = 4}, + [7735] = {.lex_state = 1631}, + [7736] = {.lex_state = 1700}, + [7737] = {.lex_state = 1700}, + [7738] = {.lex_state = 1700}, + [7739] = {.lex_state = 1700}, + [7740] = {.lex_state = 366}, + [7741] = {.lex_state = 5559}, [7742] = {.lex_state = 1696}, - [7743] = {.lex_state = 1696}, - [7744] = {.lex_state = 1696}, - [7745] = {.lex_state = 1696}, - [7746] = {.lex_state = 1696, .external_lex_state = 3}, - [7747] = {.lex_state = 1627}, - [7748] = {.lex_state = 1696}, - [7749] = {.lex_state = 1696}, - [7750] = {.lex_state = 5515}, - [7751] = {.lex_state = 1696}, - [7752] = {.lex_state = 1696}, - [7753] = {.lex_state = 1692}, - [7754] = {.lex_state = 1696}, - [7755] = {.lex_state = 1696, .external_lex_state = 4}, - [7756] = {.lex_state = 1696, .external_lex_state = 3}, - [7757] = {.lex_state = 1627}, - [7758] = {.lex_state = 1696}, - [7759] = {.lex_state = 1696}, - [7760] = {.lex_state = 1696}, - [7761] = {.lex_state = 1696}, - [7762] = {.lex_state = 1696}, - [7763] = {.lex_state = 1696}, - [7764] = {.lex_state = 1696, .external_lex_state = 4}, - [7765] = {.lex_state = 1692}, - [7766] = {.lex_state = 1696, .external_lex_state = 3}, - [7767] = {.lex_state = 3157}, - [7768] = {.lex_state = 1696, .external_lex_state = 4}, - [7769] = {.lex_state = 123}, - [7770] = {.lex_state = 1696}, - [7771] = {.lex_state = 1696}, - [7772] = {.lex_state = 3157}, - [7773] = {.lex_state = 1696}, - [7774] = {.lex_state = 1696}, - [7775] = {.lex_state = 1696, .external_lex_state = 3}, - [7776] = {.lex_state = 366}, - [7777] = {.lex_state = 1696, .external_lex_state = 4}, - [7778] = {.lex_state = 1696, .external_lex_state = 4}, - [7779] = {.lex_state = 1696}, - [7780] = {.lex_state = 1696, .external_lex_state = 4}, - [7781] = {.lex_state = 1696, .external_lex_state = 4}, - [7782] = {.lex_state = 43}, - [7783] = {.lex_state = 1696}, - [7784] = {.lex_state = 1696, .external_lex_state = 3}, - [7785] = {.lex_state = 1696}, - [7786] = {.lex_state = 1696}, - [7787] = {.lex_state = 1696}, - [7788] = {.lex_state = 1696}, - [7789] = {.lex_state = 370}, - [7790] = {.lex_state = 1696, .external_lex_state = 4}, - [7791] = {.lex_state = 1738}, - [7792] = {.lex_state = 1696, .external_lex_state = 4}, - [7793] = {.lex_state = 1696, .external_lex_state = 3}, - [7794] = {.lex_state = 1696, .external_lex_state = 3}, - [7795] = {.lex_state = 1696, .external_lex_state = 3}, - [7796] = {.lex_state = 1696, .external_lex_state = 3}, - [7797] = {.lex_state = 1696, .external_lex_state = 3}, - [7798] = {.lex_state = 1696, .external_lex_state = 3}, - [7799] = {.lex_state = 1696, .external_lex_state = 3}, - [7800] = {.lex_state = 1696, .external_lex_state = 3}, - [7801] = {.lex_state = 1696, .external_lex_state = 3}, - [7802] = {.lex_state = 1696, .external_lex_state = 3}, - [7803] = {.lex_state = 1696, .external_lex_state = 3}, - [7804] = {.lex_state = 1696, .external_lex_state = 3}, - [7805] = {.lex_state = 1696, .external_lex_state = 3}, - [7806] = {.lex_state = 1696, .external_lex_state = 3}, - [7807] = {.lex_state = 1696, .external_lex_state = 3}, - [7808] = {.lex_state = 1696, .external_lex_state = 3}, - [7809] = {.lex_state = 1696, .external_lex_state = 3}, - [7810] = {.lex_state = 1696, .external_lex_state = 3}, - [7811] = {.lex_state = 1696, .external_lex_state = 3}, - [7812] = {.lex_state = 1696, .external_lex_state = 3}, - [7813] = {.lex_state = 1696, .external_lex_state = 3}, - [7814] = {.lex_state = 1694}, - [7815] = {.lex_state = 95}, - [7816] = {.lex_state = 1696}, - [7817] = {.lex_state = 1696}, - [7818] = {.lex_state = 1696, .external_lex_state = 4}, - [7819] = {.lex_state = 1696, .external_lex_state = 4}, - [7820] = {.lex_state = 1696}, - [7821] = {.lex_state = 1696}, - [7822] = {.lex_state = 1696}, - [7823] = {.lex_state = 1696}, - [7824] = {.lex_state = 1665}, - [7825] = {.lex_state = 1696}, - [7826] = {.lex_state = 1696}, - [7827] = {.lex_state = 1696, .external_lex_state = 4}, - [7828] = {.lex_state = 1696}, - [7829] = {.lex_state = 1696}, - [7830] = {.lex_state = 1696}, - [7831] = {.lex_state = 1696}, - [7832] = {.lex_state = 361}, - [7833] = {.lex_state = 370}, - [7834] = {.lex_state = 361}, - [7835] = {.lex_state = 123}, - [7836] = {.lex_state = 361}, - [7837] = {.lex_state = 5517}, - [7838] = {.lex_state = 370}, + [7743] = {.lex_state = 1700}, + [7744] = {.lex_state = 1700, .external_lex_state = 4}, + [7745] = {.lex_state = 1631}, + [7746] = {.lex_state = 3167}, + [7747] = {.lex_state = 3167}, + [7748] = {.lex_state = 1700}, + [7749] = {.lex_state = 1700}, + [7750] = {.lex_state = 1700, .external_lex_state = 3}, + [7751] = {.lex_state = 1700}, + [7752] = {.lex_state = 1700, .external_lex_state = 3}, + [7753] = {.lex_state = 1700, .external_lex_state = 3}, + [7754] = {.lex_state = 1700, .external_lex_state = 4}, + [7755] = {.lex_state = 1700}, + [7756] = {.lex_state = 361}, + [7757] = {.lex_state = 1700, .external_lex_state = 3}, + [7758] = {.lex_state = 1700, .external_lex_state = 3}, + [7759] = {.lex_state = 1700}, + [7760] = {.lex_state = 1700}, + [7761] = {.lex_state = 1700}, + [7762] = {.lex_state = 370}, + [7763] = {.lex_state = 1700, .external_lex_state = 4}, + [7764] = {.lex_state = 1700}, + [7765] = {.lex_state = 1700}, + [7766] = {.lex_state = 3167}, + [7767] = {.lex_state = 5546}, + [7768] = {.lex_state = 1696}, + [7769] = {.lex_state = 361}, + [7770] = {.lex_state = 1700}, + [7771] = {.lex_state = 1700, .external_lex_state = 3}, + [7772] = {.lex_state = 1700, .external_lex_state = 4}, + [7773] = {.lex_state = 370}, + [7774] = {.lex_state = 1700}, + [7775] = {.lex_state = 1700}, + [7776] = {.lex_state = 1700}, + [7777] = {.lex_state = 1696}, + [7778] = {.lex_state = 1700}, + [7779] = {.lex_state = 1700, .external_lex_state = 3}, + [7780] = {.lex_state = 1700}, + [7781] = {.lex_state = 1700, .external_lex_state = 4}, + [7782] = {.lex_state = 1700, .external_lex_state = 4}, + [7783] = {.lex_state = 1700, .external_lex_state = 4}, + [7784] = {.lex_state = 1700, .external_lex_state = 4}, + [7785] = {.lex_state = 1700, .external_lex_state = 4}, + [7786] = {.lex_state = 1700, .external_lex_state = 4}, + [7787] = {.lex_state = 1700, .external_lex_state = 4}, + [7788] = {.lex_state = 1700, .external_lex_state = 4}, + [7789] = {.lex_state = 1700, .external_lex_state = 4}, + [7790] = {.lex_state = 1700, .external_lex_state = 4}, + [7791] = {.lex_state = 1700, .external_lex_state = 4}, + [7792] = {.lex_state = 1700, .external_lex_state = 4}, + [7793] = {.lex_state = 1700, .external_lex_state = 4}, + [7794] = {.lex_state = 1700, .external_lex_state = 4}, + [7795] = {.lex_state = 1700, .external_lex_state = 4}, + [7796] = {.lex_state = 1700, .external_lex_state = 4}, + [7797] = {.lex_state = 1700, .external_lex_state = 4}, + [7798] = {.lex_state = 1700, .external_lex_state = 4}, + [7799] = {.lex_state = 1700, .external_lex_state = 4}, + [7800] = {.lex_state = 1700, .external_lex_state = 4}, + [7801] = {.lex_state = 1700, .external_lex_state = 4}, + [7802] = {.lex_state = 123}, + [7803] = {.lex_state = 95}, + [7804] = {.lex_state = 1700, .external_lex_state = 3}, + [7805] = {.lex_state = 1700}, + [7806] = {.lex_state = 361}, + [7807] = {.lex_state = 1700, .external_lex_state = 3}, + [7808] = {.lex_state = 1700}, + [7809] = {.lex_state = 370}, + [7810] = {.lex_state = 1700}, + [7811] = {.lex_state = 43}, + [7812] = {.lex_state = 1669}, + [7813] = {.lex_state = 1700}, + [7814] = {.lex_state = 366}, + [7815] = {.lex_state = 1700}, + [7816] = {.lex_state = 1700}, + [7817] = {.lex_state = 1700}, + [7818] = {.lex_state = 361}, + [7819] = {.lex_state = 370}, + [7820] = {.lex_state = 1700}, + [7821] = {.lex_state = 1700}, + [7822] = {.lex_state = 1700}, + [7823] = {.lex_state = 1700}, + [7824] = {.lex_state = 1700}, + [7825] = {.lex_state = 1698}, + [7826] = {.lex_state = 1700}, + [7827] = {.lex_state = 45}, + [7828] = {.lex_state = 1700}, + [7829] = {.lex_state = 1700}, + [7830] = {.lex_state = 1700}, + [7831] = {.lex_state = 1700}, + [7832] = {.lex_state = 1700, .external_lex_state = 3}, + [7833] = {.lex_state = 361}, + [7834] = {.lex_state = 1700}, + [7835] = {.lex_state = 1700}, + [7836] = {.lex_state = 1700}, + [7837] = {.lex_state = 123}, + [7838] = {.lex_state = 5544}, [7839] = {.lex_state = 1696}, - [7840] = {.lex_state = 1692}, - [7841] = {.lex_state = 1696}, - [7842] = {.lex_state = 1696}, - [7843] = {.lex_state = 1696}, - [7844] = {.lex_state = 1696}, - [7845] = {.lex_state = 370}, - [7846] = {.lex_state = 95}, - [7847] = {.lex_state = 43}, - [7848] = {.lex_state = 1696, .external_lex_state = 4}, + [7840] = {.lex_state = 370}, + [7841] = {.lex_state = 1700}, + [7842] = {.lex_state = 1700}, + [7843] = {.lex_state = 3167}, + [7844] = {.lex_state = 1700, .external_lex_state = 3}, + [7845] = {.lex_state = 1696}, + [7846] = {.lex_state = 1700}, + [7847] = {.lex_state = 1700, .external_lex_state = 3}, + [7848] = {.lex_state = 1700}, [7849] = {.lex_state = 1696}, - [7850] = {.lex_state = 1696, .external_lex_state = 4}, - [7851] = {.lex_state = 366}, - [7852] = {.lex_state = 1696}, - [7853] = {.lex_state = 1696}, - [7854] = {.lex_state = 1696}, - [7855] = {.lex_state = 1696}, - [7856] = {.lex_state = 1696}, - [7857] = {.lex_state = 1696}, - [7858] = {.lex_state = 1696}, - [7859] = {.lex_state = 1696, .external_lex_state = 4}, - [7860] = {.lex_state = 1696}, - [7861] = {.lex_state = 1696}, - [7862] = {.lex_state = 3157}, - [7863] = {.lex_state = 1696}, - [7864] = {.lex_state = 3157}, - [7865] = {.lex_state = 4099}, - [7866] = {.lex_state = 363}, - [7867] = {.lex_state = 1696, .external_lex_state = 4}, - [7868] = {.lex_state = 1692}, - [7869] = {.lex_state = 1696}, - [7870] = {(TSStateId)(-1)}, + [7850] = {.lex_state = 1696}, + [7851] = {.lex_state = 1700, .external_lex_state = 3}, + [7852] = {.lex_state = 3167}, + [7853] = {.lex_state = 1700}, + [7854] = {.lex_state = 1700, .external_lex_state = 3}, + [7855] = {.lex_state = 361}, + [7856] = {.lex_state = 1700}, + [7857] = {.lex_state = 1700}, + [7858] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -69241,83 +69423,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_end] = ACTIONS(1), }, [1] = { - [sym_nu_script] = STATE(7786), - [sym_shebang] = STATE(86), - [sym__block_body_statement] = STATE(6441), - [sym__declaration] = STATE(6844), - [sym_decl_alias] = STATE(6909), - [sym_stmt_let] = STATE(6954), - [sym_stmt_mut] = STATE(6954), - [sym_stmt_const] = STATE(6954), - [sym_assignment] = STATE(6954), - [sym__mutable_assignment_pattern] = STATE(7040), - [sym__statement] = STATE(6844), - [sym_pipeline] = STATE(6954), - [sym__block_body] = STATE(7574), - [sym_cmd_identifier] = STATE(4643), - [sym_decl_def] = STATE(6909), - [sym_decl_export] = STATE(6909), - [sym_decl_extern] = STATE(6909), - [sym_decl_module] = STATE(6909), - [sym_decl_use] = STATE(6909), - [sym__ctrl_statement] = STATE(6954), - [sym__ctrl_expression] = STATE(4993), - [sym_ctrl_for] = STATE(6791), - [sym_ctrl_loop] = STATE(6791), - [sym_ctrl_error] = STATE(6791), - [sym_ctrl_while] = STATE(6791), - [sym_ctrl_do] = STATE(5044), - [sym_ctrl_if] = STATE(5044), - [sym_ctrl_match] = STATE(5044), - [sym_ctrl_try] = STATE(5044), - [sym_ctrl_return] = STATE(5044), - [sym_pipe_element] = STATE(4685), - [sym_stmt_source] = STATE(6954), - [sym_stmt_register] = STATE(6954), - [sym__stmt_hide] = STATE(6954), - [sym_hide_mod] = STATE(7054), - [sym_hide_env] = STATE(7054), - [sym__stmt_overlay] = STATE(6954), - [sym_overlay_list] = STATE(7207), - [sym_overlay_hide] = STATE(7207), - [sym_overlay_new] = STATE(7207), - [sym_overlay_use] = STATE(7207), - [sym_where_command] = STATE(5107), - [sym__expression] = STATE(3831), - [sym_expr_unary] = STATE(2492), - [sym__expr_unary_minus] = STATE(2458), - [sym_expr_binary] = STATE(2492), - [sym__expr_binary_expression] = STATE(3874), - [sym_expr_parenthesized] = STATE(2094), - [sym_val_range] = STATE(2492), - [sym__value] = STATE(2492), - [sym_val_nothing] = STATE(2516), - [sym_val_bool] = STATE(2516), - [sym_val_variable] = STATE(1523), - [sym_val_number] = STATE(2516), - [sym__val_number_decimal] = STATE(813), - [sym__val_number] = STATE(2512), - [sym_val_duration] = STATE(2516), - [sym_val_filesize] = STATE(2516), - [sym_val_binary] = STATE(2516), - [sym_val_string] = STATE(2516), - [sym__raw_str] = STATE(1732), - [sym__str_double_quotes] = STATE(1732), - [sym_val_interpolated] = STATE(2516), - [sym__inter_single_quotes] = STATE(2527), - [sym__inter_double_quotes] = STATE(2528), - [sym_val_list] = STATE(2516), - [sym_val_record] = STATE(2516), - [sym_val_table] = STATE(2516), - [sym_val_closure] = STATE(2516), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(5107), + [sym_nu_script] = STATE(7567), + [sym_shebang] = STATE(93), + [sym__block_body_statement] = STATE(6601), + [sym__declaration] = STATE(7087), + [sym_decl_alias] = STATE(7107), + [sym_stmt_let] = STATE(6768), + [sym_stmt_mut] = STATE(6768), + [sym_stmt_const] = STATE(6768), + [sym_assignment] = STATE(6768), + [sym__mutable_assignment_pattern] = STATE(6947), + [sym__statement] = STATE(7087), + [sym_pipeline] = STATE(6768), + [sym__block_body] = STATE(7780), + [sym_cmd_identifier] = STATE(4582), + [sym_decl_def] = STATE(7107), + [sym_decl_export] = STATE(7107), + [sym_decl_extern] = STATE(7107), + [sym_decl_module] = STATE(7107), + [sym_decl_use] = STATE(7107), + [sym__ctrl_statement] = STATE(6768), + [sym__ctrl_expression] = STATE(4975), + [sym_ctrl_for] = STATE(6911), + [sym_ctrl_loop] = STATE(6911), + [sym_ctrl_error] = STATE(6911), + [sym_ctrl_while] = STATE(6911), + [sym_ctrl_do] = STATE(5010), + [sym_ctrl_if] = STATE(5010), + [sym_ctrl_match] = STATE(5010), + [sym_ctrl_try] = STATE(5010), + [sym_ctrl_return] = STATE(5010), + [sym_pipe_element] = STATE(4613), + [sym_stmt_source] = STATE(6768), + [sym__stmt_hide] = STATE(6768), + [sym_hide_mod] = STATE(7173), + [sym_hide_env] = STATE(7173), + [sym__stmt_overlay] = STATE(6768), + [sym_overlay_list] = STATE(7262), + [sym_overlay_hide] = STATE(7262), + [sym_overlay_new] = STATE(7262), + [sym_overlay_use] = STATE(7262), + [sym_where_command] = STATE(5021), + [sym__expression] = STATE(3866), + [sym_expr_unary] = STATE(2443), + [sym__expr_unary_minus] = STATE(2502), + [sym_expr_binary] = STATE(2443), + [sym__expr_binary_expression] = STATE(3829), + [sym_expr_parenthesized] = STATE(2049), + [sym_val_range] = STATE(2443), + [sym__value] = STATE(2443), + [sym_val_nothing] = STATE(2419), + [sym_val_bool] = STATE(2419), + [sym_val_variable] = STATE(1422), + [sym_val_number] = STATE(2419), + [sym__val_number_decimal] = STATE(782), + [sym__val_number] = STATE(2425), + [sym_val_duration] = STATE(2419), + [sym_val_filesize] = STATE(2419), + [sym_val_binary] = STATE(2419), + [sym_val_string] = STATE(2419), + [sym__raw_str] = STATE(1605), + [sym__str_double_quotes] = STATE(1605), + [sym_val_interpolated] = STATE(2419), + [sym__inter_single_quotes] = STATE(2426), + [sym__inter_double_quotes] = STATE(2421), + [sym_val_list] = STATE(2419), + [sym_val_record] = STATE(2419), + [sym_val_table] = STATE(2419), + [sym_val_closure] = STATE(2419), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(5021), [sym_comment] = STATE(1), - [aux_sym_shebang_repeat1] = STATE(6733), - [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(323), + [aux_sym_shebang_repeat1] = STATE(6985), + [aux_sym_pipeline_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(100), + [aux_sym__block_body_repeat2] = STATE(139), + [aux_sym_pipe_element_repeat2] = STATE(342), [ts_builtin_sym_end] = ACTIONS(5), [anon_sym_POUND_BANG] = ACTIONS(7), [anon_sym_export] = ACTIONS(9), @@ -69392,16213 +69573,17350 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(69), [anon_sym_source] = ACTIONS(71), [anon_sym_source_DASHenv] = ACTIONS(71), - [anon_sym_register] = ACTIONS(73), - [anon_sym_hide] = ACTIONS(75), - [anon_sym_hide_DASHenv] = ACTIONS(77), - [anon_sym_overlay] = ACTIONS(79), - [anon_sym_where] = ACTIONS(81), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(85), - [anon_sym_DOT_DOT_LT] = ACTIONS(85), - [anon_sym_null] = ACTIONS(87), - [anon_sym_true] = ACTIONS(89), - [anon_sym_false] = ACTIONS(89), - [aux_sym__val_number_decimal_token1] = ACTIONS(91), - [aux_sym__val_number_decimal_token2] = ACTIONS(93), - [aux_sym__val_number_decimal_token3] = ACTIONS(95), - [aux_sym__val_number_decimal_token4] = ACTIONS(97), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(101), - [aux_sym__val_number_token5] = ACTIONS(101), - [aux_sym__val_number_token6] = ACTIONS(101), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(119), - [aux_sym_command_token1] = ACTIONS(121), + [anon_sym_hide] = ACTIONS(73), + [anon_sym_hide_DASHenv] = ACTIONS(75), + [anon_sym_overlay] = ACTIONS(77), + [anon_sym_where] = ACTIONS(79), + [aux_sym_expr_unary_token1] = ACTIONS(81), + [anon_sym_DOT_DOT_EQ] = ACTIONS(83), + [anon_sym_DOT_DOT_LT] = ACTIONS(83), + [anon_sym_null] = ACTIONS(85), + [anon_sym_true] = ACTIONS(87), + [anon_sym_false] = ACTIONS(87), + [aux_sym__val_number_decimal_token1] = ACTIONS(89), + [aux_sym__val_number_decimal_token2] = ACTIONS(91), + [aux_sym__val_number_decimal_token3] = ACTIONS(93), + [aux_sym__val_number_decimal_token4] = ACTIONS(95), + [aux_sym__val_number_token1] = ACTIONS(97), + [aux_sym__val_number_token2] = ACTIONS(97), + [aux_sym__val_number_token3] = ACTIONS(97), + [aux_sym__val_number_token4] = ACTIONS(99), + [aux_sym__val_number_token5] = ACTIONS(99), + [aux_sym__val_number_token6] = ACTIONS(99), + [anon_sym_0b] = ACTIONS(101), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym__str_single_quotes] = ACTIONS(109), + [sym__str_back_ticks] = ACTIONS(109), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(117), + [aux_sym_command_token1] = ACTIONS(119), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(123), + [sym_raw_string_begin] = ACTIONS(121), }, [2] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7758), - [sym_cmd_identifier] = STATE(4313), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym_parameter_pipes] = STATE(106), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(2044), - [sym__spread_parenthesized] = STATE(667), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym__spread_variable] = STATE(668), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7566), + [sym_cmd_identifier] = STATE(4399), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym_parameter_pipes] = STATE(107), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1970), + [sym__spread_parenthesized] = STATE(628), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym__spread_variable] = STATE(629), [sym_val_variable] = STATE(154), - [sym_val_number] = STATE(2443), - [sym__val_number_decimal] = STATE(801), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2443), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2443), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym__spread_record] = STATE(667), - [sym_record_body] = STATE(7559), - [sym_record_entry] = STATE(584), - [sym__record_key] = STATE(7555), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym_val_number] = STATE(2403), + [sym__val_number_decimal] = STATE(779), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2403), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2403), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym__spread_record] = STATE(628), + [sym_record_body] = STATE(7622), + [sym_record_entry] = STATE(568), + [sym__record_key] = STATE(7543), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(2), - [aux_sym_shebang_repeat1] = STATE(23), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), + [aux_sym_shebang_repeat1] = STATE(24), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), [aux_sym__match_pattern_record_repeat1] = STATE(203), - [aux_sym_pipe_element_repeat2] = STATE(347), + [aux_sym_pipe_element_repeat2] = STATE(337), [aux_sym_record_body_repeat1] = STATE(209), - [anon_sym_export] = ACTIONS(125), - [anon_sym_alias] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_DASHenv] = ACTIONS(129), - [anon_sym_mut] = ACTIONS(131), - [anon_sym_const] = ACTIONS(133), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(137), - [aux_sym_cmd_identifier_token3] = ACTIONS(137), - [aux_sym_cmd_identifier_token4] = ACTIONS(137), - [aux_sym_cmd_identifier_token5] = ACTIONS(137), - [aux_sym_cmd_identifier_token6] = ACTIONS(137), - [aux_sym_cmd_identifier_token7] = ACTIONS(137), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(137), - [aux_sym_cmd_identifier_token11] = ACTIONS(137), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(137), - [aux_sym_cmd_identifier_token17] = ACTIONS(137), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(137), - [aux_sym_cmd_identifier_token20] = ACTIONS(137), - [aux_sym_cmd_identifier_token21] = ACTIONS(137), - [aux_sym_cmd_identifier_token22] = ACTIONS(137), - [aux_sym_cmd_identifier_token23] = ACTIONS(137), - [aux_sym_cmd_identifier_token24] = ACTIONS(137), - [aux_sym_cmd_identifier_token25] = ACTIONS(137), - [aux_sym_cmd_identifier_token26] = ACTIONS(137), - [aux_sym_cmd_identifier_token27] = ACTIONS(137), - [aux_sym_cmd_identifier_token28] = ACTIONS(137), - [aux_sym_cmd_identifier_token29] = ACTIONS(137), - [aux_sym_cmd_identifier_token30] = ACTIONS(137), - [aux_sym_cmd_identifier_token31] = ACTIONS(137), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(137), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(137), - [aux_sym_cmd_identifier_token36] = ACTIONS(137), - [aux_sym_cmd_identifier_token37] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(135), - [aux_sym_cmd_identifier_token39] = ACTIONS(137), - [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(145), - [anon_sym_export_DASHenv] = ACTIONS(147), - [anon_sym_extern] = ACTIONS(149), - [anon_sym_module] = ACTIONS(151), - [anon_sym_use] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(159), - [anon_sym_error] = ACTIONS(161), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_break] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(167), - [anon_sym_for] = ACTIONS(169), - [anon_sym_in2] = ACTIONS(171), - [anon_sym_loop] = ACTIONS(173), - [anon_sym_make] = ACTIONS(171), - [anon_sym_while] = ACTIONS(175), - [anon_sym_do] = ACTIONS(177), - [anon_sym_if] = ACTIONS(179), - [anon_sym_else] = ACTIONS(171), - [anon_sym_match] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(185), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(189), - [anon_sym_catch] = ACTIONS(171), - [anon_sym_return] = ACTIONS(191), - [anon_sym_source] = ACTIONS(193), - [anon_sym_source_DASHenv] = ACTIONS(193), - [anon_sym_register] = ACTIONS(195), - [anon_sym_hide] = ACTIONS(197), - [anon_sym_hide_DASHenv] = ACTIONS(199), - [anon_sym_overlay] = ACTIONS(201), - [anon_sym_as] = ACTIONS(171), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = 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), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(245), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [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(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [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(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(143), + [anon_sym_export_DASHenv] = ACTIONS(145), + [anon_sym_extern] = ACTIONS(147), + [anon_sym_module] = ACTIONS(149), + [anon_sym_use] = ACTIONS(151), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_error] = ACTIONS(159), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(163), + [anon_sym_continue] = ACTIONS(165), + [anon_sym_for] = ACTIONS(167), + [anon_sym_in2] = ACTIONS(169), + [anon_sym_loop] = ACTIONS(171), + [anon_sym_make] = ACTIONS(169), + [anon_sym_while] = ACTIONS(173), + [anon_sym_do] = ACTIONS(175), + [anon_sym_if] = ACTIONS(177), + [anon_sym_else] = ACTIONS(169), + [anon_sym_match] = ACTIONS(179), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(187), + [anon_sym_catch] = ACTIONS(169), + [anon_sym_return] = ACTIONS(189), + [anon_sym_source] = ACTIONS(191), + [anon_sym_source_DASHenv] = ACTIONS(191), + [anon_sym_hide] = ACTIONS(193), + [anon_sym_hide_DASHenv] = ACTIONS(195), + [anon_sym_overlay] = ACTIONS(197), + [anon_sym_as] = ACTIONS(169), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_PLUS2] = ACTIONS(203), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(215), + [aux_sym__val_number_decimal_token2] = ACTIONS(217), + [aux_sym__val_number_decimal_token3] = ACTIONS(219), + [aux_sym__val_number_decimal_token4] = ACTIONS(221), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_register] = ACTIONS(169), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [3] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7661), - [sym_cmd_identifier] = STATE(4307), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym_parameter_pipes] = STATE(102), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1974), - [sym__spread_parenthesized] = STATE(7438), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym__spread_variable] = STATE(7458), - [sym_val_variable] = STATE(1437), - [sym_val_number] = STATE(2323), - [sym__val_number_decimal] = STATE(801), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2323), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2323), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym__spread_record] = STATE(7438), - [sym_record_body] = STATE(7578), - [sym_record_entry] = STATE(6831), - [sym__record_key] = STATE(7605), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7480), + [sym_cmd_identifier] = STATE(4385), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym_parameter_pipes] = STATE(99), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1967), + [sym__spread_parenthesized] = STATE(7377), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym__spread_variable] = STATE(7424), + [sym_val_variable] = STATE(1404), + [sym_val_number] = STATE(2398), + [sym__val_number_decimal] = STATE(779), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2398), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2398), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym__spread_record] = STATE(7377), + [sym_record_body] = STATE(7508), + [sym_record_entry] = STATE(7024), + [sym__record_key] = STATE(7701), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(3), - [aux_sym_shebang_repeat1] = STATE(24), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), + [aux_sym_shebang_repeat1] = STATE(23), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), [aux_sym_record_body_repeat1] = STATE(209), - [anon_sym_export] = ACTIONS(255), - [anon_sym_alias] = ACTIONS(257), - [anon_sym_let] = ACTIONS(259), - [anon_sym_let_DASHenv] = ACTIONS(259), - [anon_sym_mut] = ACTIONS(261), - [anon_sym_const] = ACTIONS(263), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(137), - [aux_sym_cmd_identifier_token3] = ACTIONS(137), - [aux_sym_cmd_identifier_token4] = ACTIONS(137), - [aux_sym_cmd_identifier_token5] = ACTIONS(137), - [aux_sym_cmd_identifier_token6] = ACTIONS(137), - [aux_sym_cmd_identifier_token7] = ACTIONS(137), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(137), - [aux_sym_cmd_identifier_token11] = ACTIONS(137), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(137), - [aux_sym_cmd_identifier_token17] = ACTIONS(137), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(137), - [aux_sym_cmd_identifier_token20] = ACTIONS(137), - [aux_sym_cmd_identifier_token21] = ACTIONS(137), - [aux_sym_cmd_identifier_token22] = ACTIONS(137), - [aux_sym_cmd_identifier_token23] = ACTIONS(137), - [aux_sym_cmd_identifier_token24] = ACTIONS(137), - [aux_sym_cmd_identifier_token25] = ACTIONS(137), - [aux_sym_cmd_identifier_token26] = ACTIONS(137), - [aux_sym_cmd_identifier_token27] = ACTIONS(137), - [aux_sym_cmd_identifier_token28] = ACTIONS(137), - [aux_sym_cmd_identifier_token29] = ACTIONS(137), - [aux_sym_cmd_identifier_token30] = ACTIONS(137), - [aux_sym_cmd_identifier_token31] = ACTIONS(137), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(137), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(137), - [aux_sym_cmd_identifier_token36] = ACTIONS(137), - [aux_sym_cmd_identifier_token37] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(135), - [aux_sym_cmd_identifier_token39] = ACTIONS(137), - [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(265), - [anon_sym_export_DASHenv] = ACTIONS(267), - [anon_sym_extern] = ACTIONS(269), - [anon_sym_module] = ACTIONS(271), - [anon_sym_use] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(277), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in2] = ACTIONS(285), - [anon_sym_loop] = ACTIONS(287), - [anon_sym_make] = ACTIONS(285), - [anon_sym_while] = ACTIONS(289), - [anon_sym_do] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_else] = ACTIONS(285), - [anon_sym_match] = ACTIONS(295), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(299), - [anon_sym_catch] = ACTIONS(285), - [anon_sym_return] = ACTIONS(301), - [anon_sym_source] = ACTIONS(303), - [anon_sym_source_DASHenv] = ACTIONS(303), - [anon_sym_register] = ACTIONS(305), - [anon_sym_hide] = ACTIONS(307), - [anon_sym_hide_DASHenv] = ACTIONS(309), - [anon_sym_overlay] = ACTIONS(311), - [anon_sym_as] = ACTIONS(285), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [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(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(293), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_PLUS2] = ACTIONS(203), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(215), + [aux_sym__val_number_decimal_token2] = ACTIONS(217), + [aux_sym__val_number_decimal_token3] = ACTIONS(219), + [aux_sym__val_number_decimal_token4] = ACTIONS(221), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_register] = ACTIONS(281), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [4] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7611), - [sym_cmd_identifier] = STATE(4307), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym_parameter_pipes] = STATE(102), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1974), - [sym__spread_parenthesized] = STATE(7438), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym__spread_variable] = STATE(7458), - [sym_val_variable] = STATE(1437), - [sym_val_number] = STATE(2323), - [sym__val_number_decimal] = STATE(801), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2323), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2323), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym__spread_record] = STATE(7438), - [sym_record_body] = STATE(7578), - [sym_record_entry] = STATE(6831), - [sym__record_key] = STATE(7605), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7652), + [sym_cmd_identifier] = STATE(4385), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym_parameter_pipes] = STATE(122), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1967), + [sym__spread_parenthesized] = STATE(7377), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym__spread_variable] = STATE(7424), + [sym_val_variable] = STATE(1404), + [sym_val_number] = STATE(2398), + [sym__val_number_decimal] = STATE(779), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2398), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2398), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym__spread_record] = STATE(7377), + [sym_record_body] = STATE(7515), + [sym_record_entry] = STATE(7024), + [sym__record_key] = STATE(7701), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(4), - [aux_sym_shebang_repeat1] = STATE(24), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), + [aux_sym_shebang_repeat1] = STATE(22), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), [aux_sym_record_body_repeat1] = STATE(209), - [anon_sym_export] = ACTIONS(255), - [anon_sym_alias] = ACTIONS(257), - [anon_sym_let] = ACTIONS(259), - [anon_sym_let_DASHenv] = ACTIONS(259), - [anon_sym_mut] = ACTIONS(261), - [anon_sym_const] = ACTIONS(263), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(137), - [aux_sym_cmd_identifier_token3] = ACTIONS(137), - [aux_sym_cmd_identifier_token4] = ACTIONS(137), - [aux_sym_cmd_identifier_token5] = ACTIONS(137), - [aux_sym_cmd_identifier_token6] = ACTIONS(137), - [aux_sym_cmd_identifier_token7] = ACTIONS(137), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(137), - [aux_sym_cmd_identifier_token11] = ACTIONS(137), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(137), - [aux_sym_cmd_identifier_token17] = ACTIONS(137), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(137), - [aux_sym_cmd_identifier_token20] = ACTIONS(137), - [aux_sym_cmd_identifier_token21] = ACTIONS(137), - [aux_sym_cmd_identifier_token22] = ACTIONS(137), - [aux_sym_cmd_identifier_token23] = ACTIONS(137), - [aux_sym_cmd_identifier_token24] = ACTIONS(137), - [aux_sym_cmd_identifier_token25] = ACTIONS(137), - [aux_sym_cmd_identifier_token26] = ACTIONS(137), - [aux_sym_cmd_identifier_token27] = ACTIONS(137), - [aux_sym_cmd_identifier_token28] = ACTIONS(137), - [aux_sym_cmd_identifier_token29] = ACTIONS(137), - [aux_sym_cmd_identifier_token30] = ACTIONS(137), - [aux_sym_cmd_identifier_token31] = ACTIONS(137), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(137), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(137), - [aux_sym_cmd_identifier_token36] = ACTIONS(137), - [aux_sym_cmd_identifier_token37] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(135), - [aux_sym_cmd_identifier_token39] = ACTIONS(137), - [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(265), - [anon_sym_export_DASHenv] = ACTIONS(267), - [anon_sym_extern] = ACTIONS(269), - [anon_sym_module] = ACTIONS(271), - [anon_sym_use] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(277), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in2] = ACTIONS(285), - [anon_sym_loop] = ACTIONS(287), - [anon_sym_make] = ACTIONS(285), - [anon_sym_while] = ACTIONS(289), - [anon_sym_do] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_else] = ACTIONS(285), - [anon_sym_match] = ACTIONS(295), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(319), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(299), - [anon_sym_catch] = ACTIONS(285), - [anon_sym_return] = ACTIONS(301), - [anon_sym_source] = ACTIONS(303), - [anon_sym_source_DASHenv] = ACTIONS(303), - [anon_sym_register] = ACTIONS(305), - [anon_sym_hide] = ACTIONS(307), - [anon_sym_hide_DASHenv] = ACTIONS(309), - [anon_sym_overlay] = ACTIONS(311), - [anon_sym_as] = ACTIONS(285), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [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(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(313), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_PLUS2] = ACTIONS(203), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(215), + [aux_sym__val_number_decimal_token2] = ACTIONS(217), + [aux_sym__val_number_decimal_token3] = ACTIONS(219), + [aux_sym__val_number_decimal_token4] = ACTIONS(221), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_register] = ACTIONS(281), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [5] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7758), - [sym_cmd_identifier] = STATE(4307), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym_parameter_pipes] = STATE(106), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1974), - [sym__spread_parenthesized] = STATE(7438), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym__spread_variable] = STATE(7458), - [sym_val_variable] = STATE(1437), - [sym_val_number] = STATE(2323), - [sym__val_number_decimal] = STATE(801), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2323), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2323), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym__spread_record] = STATE(7438), - [sym_record_body] = STATE(7559), - [sym_record_entry] = STATE(6831), - [sym__record_key] = STATE(7605), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7755), + [sym_cmd_identifier] = STATE(4385), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym_parameter_pipes] = STATE(99), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1967), + [sym__spread_parenthesized] = STATE(7377), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym__spread_variable] = STATE(7424), + [sym_val_variable] = STATE(1404), + [sym_val_number] = STATE(2398), + [sym__val_number_decimal] = STATE(779), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2398), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2398), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym__spread_record] = STATE(7377), + [sym_record_body] = STATE(7508), + [sym_record_entry] = STATE(7024), + [sym__record_key] = STATE(7701), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(5), [aux_sym_shebang_repeat1] = STATE(23), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), [aux_sym_record_body_repeat1] = STATE(209), - [anon_sym_export] = ACTIONS(255), - [anon_sym_alias] = ACTIONS(257), - [anon_sym_let] = ACTIONS(259), - [anon_sym_let_DASHenv] = ACTIONS(259), - [anon_sym_mut] = ACTIONS(261), - [anon_sym_const] = ACTIONS(263), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(137), - [aux_sym_cmd_identifier_token3] = ACTIONS(137), - [aux_sym_cmd_identifier_token4] = ACTIONS(137), - [aux_sym_cmd_identifier_token5] = ACTIONS(137), - [aux_sym_cmd_identifier_token6] = ACTIONS(137), - [aux_sym_cmd_identifier_token7] = ACTIONS(137), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(137), - [aux_sym_cmd_identifier_token11] = ACTIONS(137), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(137), - [aux_sym_cmd_identifier_token17] = ACTIONS(137), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(137), - [aux_sym_cmd_identifier_token20] = ACTIONS(137), - [aux_sym_cmd_identifier_token21] = ACTIONS(137), - [aux_sym_cmd_identifier_token22] = ACTIONS(137), - [aux_sym_cmd_identifier_token23] = ACTIONS(137), - [aux_sym_cmd_identifier_token24] = ACTIONS(137), - [aux_sym_cmd_identifier_token25] = ACTIONS(137), - [aux_sym_cmd_identifier_token26] = ACTIONS(137), - [aux_sym_cmd_identifier_token27] = ACTIONS(137), - [aux_sym_cmd_identifier_token28] = ACTIONS(137), - [aux_sym_cmd_identifier_token29] = ACTIONS(137), - [aux_sym_cmd_identifier_token30] = ACTIONS(137), - [aux_sym_cmd_identifier_token31] = ACTIONS(137), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(137), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(137), - [aux_sym_cmd_identifier_token36] = ACTIONS(137), - [aux_sym_cmd_identifier_token37] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(135), - [aux_sym_cmd_identifier_token39] = ACTIONS(137), - [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(265), - [anon_sym_export_DASHenv] = ACTIONS(267), - [anon_sym_extern] = ACTIONS(269), - [anon_sym_module] = ACTIONS(271), - [anon_sym_use] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(277), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in2] = ACTIONS(285), - [anon_sym_loop] = ACTIONS(287), - [anon_sym_make] = ACTIONS(285), - [anon_sym_while] = ACTIONS(289), - [anon_sym_do] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_else] = ACTIONS(285), - [anon_sym_match] = ACTIONS(295), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(321), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(299), - [anon_sym_catch] = ACTIONS(285), - [anon_sym_return] = ACTIONS(301), - [anon_sym_source] = ACTIONS(303), - [anon_sym_source_DASHenv] = ACTIONS(303), - [anon_sym_register] = ACTIONS(305), - [anon_sym_hide] = ACTIONS(307), - [anon_sym_hide_DASHenv] = ACTIONS(309), - [anon_sym_overlay] = ACTIONS(311), - [anon_sym_as] = ACTIONS(285), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [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(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(315), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_PLUS2] = ACTIONS(203), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(215), + [aux_sym__val_number_decimal_token2] = ACTIONS(217), + [aux_sym__val_number_decimal_token3] = ACTIONS(219), + [aux_sym__val_number_decimal_token4] = ACTIONS(221), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_register] = ACTIONS(281), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [6] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7823), - [sym_cmd_identifier] = STATE(4307), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym_parameter_pipes] = STATE(109), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1974), - [sym__spread_parenthesized] = STATE(7438), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym__spread_variable] = STATE(7458), - [sym_val_variable] = STATE(1437), - [sym_val_number] = STATE(2323), - [sym__val_number_decimal] = STATE(801), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2323), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2323), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym__spread_record] = STATE(7438), - [sym_record_body] = STATE(7861), - [sym_record_entry] = STATE(6831), - [sym__record_key] = STATE(7605), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7566), + [sym_cmd_identifier] = STATE(4385), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym_parameter_pipes] = STATE(107), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1967), + [sym__spread_parenthesized] = STATE(7377), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym__spread_variable] = STATE(7424), + [sym_val_variable] = STATE(1404), + [sym_val_number] = STATE(2398), + [sym__val_number_decimal] = STATE(779), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2398), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2398), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym__spread_record] = STATE(7377), + [sym_record_body] = STATE(7622), + [sym_record_entry] = STATE(7024), + [sym__record_key] = STATE(7701), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(6), - [aux_sym_shebang_repeat1] = STATE(25), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), + [aux_sym_shebang_repeat1] = STATE(24), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), [aux_sym_record_body_repeat1] = STATE(209), - [anon_sym_export] = ACTIONS(255), - [anon_sym_alias] = ACTIONS(257), - [anon_sym_let] = ACTIONS(259), - [anon_sym_let_DASHenv] = ACTIONS(259), - [anon_sym_mut] = ACTIONS(261), - [anon_sym_const] = ACTIONS(263), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(137), - [aux_sym_cmd_identifier_token3] = ACTIONS(137), - [aux_sym_cmd_identifier_token4] = ACTIONS(137), - [aux_sym_cmd_identifier_token5] = ACTIONS(137), - [aux_sym_cmd_identifier_token6] = ACTIONS(137), - [aux_sym_cmd_identifier_token7] = ACTIONS(137), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(137), - [aux_sym_cmd_identifier_token11] = ACTIONS(137), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(137), - [aux_sym_cmd_identifier_token17] = ACTIONS(137), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(137), - [aux_sym_cmd_identifier_token20] = ACTIONS(137), - [aux_sym_cmd_identifier_token21] = ACTIONS(137), - [aux_sym_cmd_identifier_token22] = ACTIONS(137), - [aux_sym_cmd_identifier_token23] = ACTIONS(137), - [aux_sym_cmd_identifier_token24] = ACTIONS(137), - [aux_sym_cmd_identifier_token25] = ACTIONS(137), - [aux_sym_cmd_identifier_token26] = ACTIONS(137), - [aux_sym_cmd_identifier_token27] = ACTIONS(137), - [aux_sym_cmd_identifier_token28] = ACTIONS(137), - [aux_sym_cmd_identifier_token29] = ACTIONS(137), - [aux_sym_cmd_identifier_token30] = ACTIONS(137), - [aux_sym_cmd_identifier_token31] = ACTIONS(137), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(137), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(137), - [aux_sym_cmd_identifier_token36] = ACTIONS(137), - [aux_sym_cmd_identifier_token37] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(135), - [aux_sym_cmd_identifier_token39] = ACTIONS(137), - [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(265), - [anon_sym_export_DASHenv] = ACTIONS(267), - [anon_sym_extern] = ACTIONS(269), - [anon_sym_module] = ACTIONS(271), - [anon_sym_use] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(277), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in2] = ACTIONS(285), - [anon_sym_loop] = ACTIONS(287), - [anon_sym_make] = ACTIONS(285), - [anon_sym_while] = ACTIONS(289), - [anon_sym_do] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_else] = ACTIONS(285), - [anon_sym_match] = ACTIONS(295), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(323), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(299), - [anon_sym_catch] = ACTIONS(285), - [anon_sym_return] = ACTIONS(301), - [anon_sym_source] = ACTIONS(303), - [anon_sym_source_DASHenv] = ACTIONS(303), - [anon_sym_register] = ACTIONS(305), - [anon_sym_hide] = ACTIONS(307), - [anon_sym_hide_DASHenv] = ACTIONS(309), - [anon_sym_overlay] = ACTIONS(311), - [anon_sym_as] = ACTIONS(285), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [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(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(317), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_PLUS2] = ACTIONS(203), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(215), + [aux_sym__val_number_decimal_token2] = ACTIONS(217), + [aux_sym__val_number_decimal_token3] = ACTIONS(219), + [aux_sym__val_number_decimal_token4] = ACTIONS(221), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_register] = ACTIONS(281), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [7] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7860), - [sym_cmd_identifier] = STATE(4307), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym_parameter_pipes] = STATE(109), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1974), - [sym__spread_parenthesized] = STATE(7438), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym__spread_variable] = STATE(7458), - [sym_val_variable] = STATE(1437), - [sym_val_number] = STATE(2323), - [sym__val_number_decimal] = STATE(801), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2323), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2323), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym__spread_record] = STATE(7438), - [sym_record_body] = STATE(7861), - [sym_record_entry] = STATE(6831), - [sym__record_key] = STATE(7605), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7660), + [sym_cmd_identifier] = STATE(4385), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym_parameter_pipes] = STATE(110), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1967), + [sym__spread_parenthesized] = STATE(7377), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym__spread_variable] = STATE(7424), + [sym_val_variable] = STATE(1404), + [sym_val_number] = STATE(2398), + [sym__val_number_decimal] = STATE(779), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2398), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2398), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym__spread_record] = STATE(7377), + [sym_record_body] = STATE(7835), + [sym_record_entry] = STATE(7024), + [sym__record_key] = STATE(7701), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(7), [aux_sym_shebang_repeat1] = STATE(25), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), [aux_sym_record_body_repeat1] = STATE(209), - [anon_sym_export] = ACTIONS(255), - [anon_sym_alias] = ACTIONS(257), - [anon_sym_let] = ACTIONS(259), - [anon_sym_let_DASHenv] = ACTIONS(259), - [anon_sym_mut] = ACTIONS(261), - [anon_sym_const] = ACTIONS(263), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(137), - [aux_sym_cmd_identifier_token3] = ACTIONS(137), - [aux_sym_cmd_identifier_token4] = ACTIONS(137), - [aux_sym_cmd_identifier_token5] = ACTIONS(137), - [aux_sym_cmd_identifier_token6] = ACTIONS(137), - [aux_sym_cmd_identifier_token7] = ACTIONS(137), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(137), - [aux_sym_cmd_identifier_token11] = ACTIONS(137), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(137), - [aux_sym_cmd_identifier_token17] = ACTIONS(137), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(137), - [aux_sym_cmd_identifier_token20] = ACTIONS(137), - [aux_sym_cmd_identifier_token21] = ACTIONS(137), - [aux_sym_cmd_identifier_token22] = ACTIONS(137), - [aux_sym_cmd_identifier_token23] = ACTIONS(137), - [aux_sym_cmd_identifier_token24] = ACTIONS(137), - [aux_sym_cmd_identifier_token25] = ACTIONS(137), - [aux_sym_cmd_identifier_token26] = ACTIONS(137), - [aux_sym_cmd_identifier_token27] = ACTIONS(137), - [aux_sym_cmd_identifier_token28] = ACTIONS(137), - [aux_sym_cmd_identifier_token29] = ACTIONS(137), - [aux_sym_cmd_identifier_token30] = ACTIONS(137), - [aux_sym_cmd_identifier_token31] = ACTIONS(137), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(137), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(137), - [aux_sym_cmd_identifier_token36] = ACTIONS(137), - [aux_sym_cmd_identifier_token37] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(135), - [aux_sym_cmd_identifier_token39] = ACTIONS(137), - [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(265), - [anon_sym_export_DASHenv] = ACTIONS(267), - [anon_sym_extern] = ACTIONS(269), - [anon_sym_module] = ACTIONS(271), - [anon_sym_use] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(277), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in2] = ACTIONS(285), - [anon_sym_loop] = ACTIONS(287), - [anon_sym_make] = ACTIONS(285), - [anon_sym_while] = ACTIONS(289), - [anon_sym_do] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_else] = ACTIONS(285), - [anon_sym_match] = ACTIONS(295), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(325), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(299), - [anon_sym_catch] = ACTIONS(285), - [anon_sym_return] = ACTIONS(301), - [anon_sym_source] = ACTIONS(303), - [anon_sym_source_DASHenv] = ACTIONS(303), - [anon_sym_register] = ACTIONS(305), - [anon_sym_hide] = ACTIONS(307), - [anon_sym_hide_DASHenv] = ACTIONS(309), - [anon_sym_overlay] = ACTIONS(311), - [anon_sym_as] = ACTIONS(285), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [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(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(319), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_PLUS2] = ACTIONS(203), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(215), + [aux_sym__val_number_decimal_token2] = ACTIONS(217), + [aux_sym__val_number_decimal_token3] = ACTIONS(219), + [aux_sym__val_number_decimal_token4] = ACTIONS(221), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_register] = ACTIONS(281), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [8] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7537), - [sym_cmd_identifier] = STATE(4307), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym_parameter_pipes] = STATE(106), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1974), - [sym__spread_parenthesized] = STATE(7438), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym__spread_variable] = STATE(7458), - [sym_val_variable] = STATE(1437), - [sym_val_number] = STATE(2323), - [sym__val_number_decimal] = STATE(801), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2323), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2323), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym__spread_record] = STATE(7438), - [sym_record_body] = STATE(7559), - [sym_record_entry] = STATE(6831), - [sym__record_key] = STATE(7605), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7834), + [sym_cmd_identifier] = STATE(4385), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym_parameter_pipes] = STATE(110), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1967), + [sym__spread_parenthesized] = STATE(7377), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym__spread_variable] = STATE(7424), + [sym_val_variable] = STATE(1404), + [sym_val_number] = STATE(2398), + [sym__val_number_decimal] = STATE(779), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2398), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2398), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym__spread_record] = STATE(7377), + [sym_record_body] = STATE(7835), + [sym_record_entry] = STATE(7024), + [sym__record_key] = STATE(7701), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(8), - [aux_sym_shebang_repeat1] = STATE(23), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), + [aux_sym_shebang_repeat1] = STATE(25), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), [aux_sym_record_body_repeat1] = STATE(209), - [anon_sym_export] = ACTIONS(255), - [anon_sym_alias] = ACTIONS(257), - [anon_sym_let] = ACTIONS(259), - [anon_sym_let_DASHenv] = ACTIONS(259), - [anon_sym_mut] = ACTIONS(261), - [anon_sym_const] = ACTIONS(263), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(137), - [aux_sym_cmd_identifier_token3] = ACTIONS(137), - [aux_sym_cmd_identifier_token4] = ACTIONS(137), - [aux_sym_cmd_identifier_token5] = ACTIONS(137), - [aux_sym_cmd_identifier_token6] = ACTIONS(137), - [aux_sym_cmd_identifier_token7] = ACTIONS(137), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(137), - [aux_sym_cmd_identifier_token11] = ACTIONS(137), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(137), - [aux_sym_cmd_identifier_token17] = ACTIONS(137), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(137), - [aux_sym_cmd_identifier_token20] = ACTIONS(137), - [aux_sym_cmd_identifier_token21] = ACTIONS(137), - [aux_sym_cmd_identifier_token22] = ACTIONS(137), - [aux_sym_cmd_identifier_token23] = ACTIONS(137), - [aux_sym_cmd_identifier_token24] = ACTIONS(137), - [aux_sym_cmd_identifier_token25] = ACTIONS(137), - [aux_sym_cmd_identifier_token26] = ACTIONS(137), - [aux_sym_cmd_identifier_token27] = ACTIONS(137), - [aux_sym_cmd_identifier_token28] = ACTIONS(137), - [aux_sym_cmd_identifier_token29] = ACTIONS(137), - [aux_sym_cmd_identifier_token30] = ACTIONS(137), - [aux_sym_cmd_identifier_token31] = ACTIONS(137), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(137), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(137), - [aux_sym_cmd_identifier_token36] = ACTIONS(137), - [aux_sym_cmd_identifier_token37] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(135), - [aux_sym_cmd_identifier_token39] = ACTIONS(137), - [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(265), - [anon_sym_export_DASHenv] = ACTIONS(267), - [anon_sym_extern] = ACTIONS(269), - [anon_sym_module] = ACTIONS(271), - [anon_sym_use] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(277), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in2] = ACTIONS(285), - [anon_sym_loop] = ACTIONS(287), - [anon_sym_make] = ACTIONS(285), - [anon_sym_while] = ACTIONS(289), - [anon_sym_do] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_else] = ACTIONS(285), - [anon_sym_match] = ACTIONS(295), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(327), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(299), - [anon_sym_catch] = ACTIONS(285), - [anon_sym_return] = ACTIONS(301), - [anon_sym_source] = ACTIONS(303), - [anon_sym_source_DASHenv] = ACTIONS(303), - [anon_sym_register] = ACTIONS(305), - [anon_sym_hide] = ACTIONS(307), - [anon_sym_hide_DASHenv] = ACTIONS(309), - [anon_sym_overlay] = ACTIONS(311), - [anon_sym_as] = ACTIONS(285), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [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(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(321), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_PLUS2] = ACTIONS(203), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(215), + [aux_sym__val_number_decimal_token2] = ACTIONS(217), + [aux_sym__val_number_decimal_token3] = ACTIONS(219), + [aux_sym__val_number_decimal_token4] = ACTIONS(221), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_register] = ACTIONS(281), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [9] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7860), - [sym_cmd_identifier] = STATE(4307), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym_parameter_pipes] = STATE(109), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1974), - [sym__spread_parenthesized] = STATE(7438), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym__spread_variable] = STATE(7458), - [sym_val_variable] = STATE(1437), - [sym_val_number] = STATE(2323), - [sym__val_number_decimal] = STATE(801), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2323), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2323), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym__spread_record] = STATE(7438), - [sym_record_body] = STATE(7752), - [sym_record_entry] = STATE(6831), - [sym__record_key] = STATE(7605), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7554), + [sym_cmd_identifier] = STATE(4385), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym_parameter_pipes] = STATE(107), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1967), + [sym__spread_parenthesized] = STATE(7377), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym__spread_variable] = STATE(7424), + [sym_val_variable] = STATE(1404), + [sym_val_number] = STATE(2398), + [sym__val_number_decimal] = STATE(779), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2398), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2398), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym__spread_record] = STATE(7377), + [sym_record_body] = STATE(7622), + [sym_record_entry] = STATE(7024), + [sym__record_key] = STATE(7701), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(9), - [aux_sym_shebang_repeat1] = STATE(25), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), + [aux_sym_shebang_repeat1] = STATE(24), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), [aux_sym_record_body_repeat1] = STATE(209), - [anon_sym_export] = ACTIONS(255), - [anon_sym_alias] = ACTIONS(257), - [anon_sym_let] = ACTIONS(259), - [anon_sym_let_DASHenv] = ACTIONS(259), - [anon_sym_mut] = ACTIONS(261), - [anon_sym_const] = ACTIONS(263), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(137), - [aux_sym_cmd_identifier_token3] = ACTIONS(137), - [aux_sym_cmd_identifier_token4] = ACTIONS(137), - [aux_sym_cmd_identifier_token5] = ACTIONS(137), - [aux_sym_cmd_identifier_token6] = ACTIONS(137), - [aux_sym_cmd_identifier_token7] = ACTIONS(137), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(137), - [aux_sym_cmd_identifier_token11] = ACTIONS(137), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(137), - [aux_sym_cmd_identifier_token17] = ACTIONS(137), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(137), - [aux_sym_cmd_identifier_token20] = ACTIONS(137), - [aux_sym_cmd_identifier_token21] = ACTIONS(137), - [aux_sym_cmd_identifier_token22] = ACTIONS(137), - [aux_sym_cmd_identifier_token23] = ACTIONS(137), - [aux_sym_cmd_identifier_token24] = ACTIONS(137), - [aux_sym_cmd_identifier_token25] = ACTIONS(137), - [aux_sym_cmd_identifier_token26] = ACTIONS(137), - [aux_sym_cmd_identifier_token27] = ACTIONS(137), - [aux_sym_cmd_identifier_token28] = ACTIONS(137), - [aux_sym_cmd_identifier_token29] = ACTIONS(137), - [aux_sym_cmd_identifier_token30] = ACTIONS(137), - [aux_sym_cmd_identifier_token31] = ACTIONS(137), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(137), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(137), - [aux_sym_cmd_identifier_token36] = ACTIONS(137), - [aux_sym_cmd_identifier_token37] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(135), - [aux_sym_cmd_identifier_token39] = ACTIONS(137), - [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(265), - [anon_sym_export_DASHenv] = ACTIONS(267), - [anon_sym_extern] = ACTIONS(269), - [anon_sym_module] = ACTIONS(271), - [anon_sym_use] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(277), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in2] = ACTIONS(285), - [anon_sym_loop] = ACTIONS(287), - [anon_sym_make] = ACTIONS(285), - [anon_sym_while] = ACTIONS(289), - [anon_sym_do] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_else] = ACTIONS(285), - [anon_sym_match] = ACTIONS(295), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(329), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(299), - [anon_sym_catch] = ACTIONS(285), - [anon_sym_return] = ACTIONS(301), - [anon_sym_source] = ACTIONS(303), - [anon_sym_source_DASHenv] = ACTIONS(303), - [anon_sym_register] = ACTIONS(305), - [anon_sym_hide] = ACTIONS(307), - [anon_sym_hide_DASHenv] = ACTIONS(309), - [anon_sym_overlay] = ACTIONS(311), - [anon_sym_as] = ACTIONS(285), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [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(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(323), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_PLUS2] = ACTIONS(203), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(215), + [aux_sym__val_number_decimal_token2] = ACTIONS(217), + [aux_sym__val_number_decimal_token3] = ACTIONS(219), + [aux_sym__val_number_decimal_token4] = ACTIONS(221), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_register] = ACTIONS(281), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [10] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7751), - [sym_cmd_identifier] = STATE(4307), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym_parameter_pipes] = STATE(111), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1974), - [sym__spread_parenthesized] = STATE(7438), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym__spread_variable] = STATE(7458), - [sym_val_variable] = STATE(1437), - [sym_val_number] = STATE(2323), - [sym__val_number_decimal] = STATE(801), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2323), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2323), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym__spread_record] = STATE(7438), - [sym_record_body] = STATE(7493), - [sym_record_entry] = STATE(6831), - [sym__record_key] = STATE(7605), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7834), + [sym_cmd_identifier] = STATE(4385), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym_parameter_pipes] = STATE(110), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1967), + [sym__spread_parenthesized] = STATE(7377), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym__spread_variable] = STATE(7424), + [sym_val_variable] = STATE(1404), + [sym_val_number] = STATE(2398), + [sym__val_number_decimal] = STATE(779), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2398), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2398), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym__spread_record] = STATE(7377), + [sym_record_body] = STATE(7500), + [sym_record_entry] = STATE(7024), + [sym__record_key] = STATE(7701), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(10), - [aux_sym_shebang_repeat1] = STATE(26), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), + [aux_sym_shebang_repeat1] = STATE(25), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), [aux_sym_record_body_repeat1] = STATE(209), - [anon_sym_export] = ACTIONS(255), - [anon_sym_alias] = ACTIONS(257), - [anon_sym_let] = ACTIONS(259), - [anon_sym_let_DASHenv] = ACTIONS(259), - [anon_sym_mut] = ACTIONS(261), - [anon_sym_const] = ACTIONS(263), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(137), - [aux_sym_cmd_identifier_token3] = ACTIONS(137), - [aux_sym_cmd_identifier_token4] = ACTIONS(137), - [aux_sym_cmd_identifier_token5] = ACTIONS(137), - [aux_sym_cmd_identifier_token6] = ACTIONS(137), - [aux_sym_cmd_identifier_token7] = ACTIONS(137), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(137), - [aux_sym_cmd_identifier_token11] = ACTIONS(137), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(137), - [aux_sym_cmd_identifier_token17] = ACTIONS(137), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(137), - [aux_sym_cmd_identifier_token20] = ACTIONS(137), - [aux_sym_cmd_identifier_token21] = ACTIONS(137), - [aux_sym_cmd_identifier_token22] = ACTIONS(137), - [aux_sym_cmd_identifier_token23] = ACTIONS(137), - [aux_sym_cmd_identifier_token24] = ACTIONS(137), - [aux_sym_cmd_identifier_token25] = ACTIONS(137), - [aux_sym_cmd_identifier_token26] = ACTIONS(137), - [aux_sym_cmd_identifier_token27] = ACTIONS(137), - [aux_sym_cmd_identifier_token28] = ACTIONS(137), - [aux_sym_cmd_identifier_token29] = ACTIONS(137), - [aux_sym_cmd_identifier_token30] = ACTIONS(137), - [aux_sym_cmd_identifier_token31] = ACTIONS(137), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(137), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(137), - [aux_sym_cmd_identifier_token36] = ACTIONS(137), - [aux_sym_cmd_identifier_token37] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(135), - [aux_sym_cmd_identifier_token39] = ACTIONS(137), - [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(265), - [anon_sym_export_DASHenv] = ACTIONS(267), - [anon_sym_extern] = ACTIONS(269), - [anon_sym_module] = ACTIONS(271), - [anon_sym_use] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(277), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in2] = ACTIONS(285), - [anon_sym_loop] = ACTIONS(287), - [anon_sym_make] = ACTIONS(285), - [anon_sym_while] = ACTIONS(289), - [anon_sym_do] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_else] = ACTIONS(285), - [anon_sym_match] = ACTIONS(295), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(331), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(299), - [anon_sym_catch] = ACTIONS(285), - [anon_sym_return] = ACTIONS(301), - [anon_sym_source] = ACTIONS(303), - [anon_sym_source_DASHenv] = ACTIONS(303), - [anon_sym_register] = ACTIONS(305), - [anon_sym_hide] = ACTIONS(307), - [anon_sym_hide_DASHenv] = ACTIONS(309), - [anon_sym_overlay] = ACTIONS(311), - [anon_sym_as] = ACTIONS(285), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [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(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(325), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_PLUS2] = ACTIONS(203), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(215), + [aux_sym__val_number_decimal_token2] = ACTIONS(217), + [aux_sym__val_number_decimal_token3] = ACTIONS(219), + [aux_sym__val_number_decimal_token4] = ACTIONS(221), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_register] = ACTIONS(281), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [11] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7489), - [sym_cmd_identifier] = STATE(4307), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym_parameter_pipes] = STATE(116), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1974), - [sym__spread_parenthesized] = STATE(7438), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym__spread_variable] = STATE(7458), - [sym_val_variable] = STATE(1437), - [sym_val_number] = STATE(2323), - [sym__val_number_decimal] = STATE(801), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2323), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2323), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym__spread_record] = STATE(7438), - [sym_record_body] = STATE(7843), - [sym_record_entry] = STATE(6831), - [sym__record_key] = STATE(7605), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7490), + [sym_cmd_identifier] = STATE(4385), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym_parameter_pipes] = STATE(112), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1967), + [sym__spread_parenthesized] = STATE(7377), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym__spread_variable] = STATE(7424), + [sym_val_variable] = STATE(1404), + [sym_val_number] = STATE(2398), + [sym__val_number_decimal] = STATE(779), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2398), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2398), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym__spread_record] = STATE(7377), + [sym_record_body] = STATE(7526), + [sym_record_entry] = STATE(7024), + [sym__record_key] = STATE(7701), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(11), - [aux_sym_shebang_repeat1] = STATE(27), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), + [aux_sym_shebang_repeat1] = STATE(26), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), [aux_sym_record_body_repeat1] = STATE(209), - [anon_sym_export] = ACTIONS(255), - [anon_sym_alias] = ACTIONS(257), - [anon_sym_let] = ACTIONS(259), - [anon_sym_let_DASHenv] = ACTIONS(259), - [anon_sym_mut] = ACTIONS(261), - [anon_sym_const] = ACTIONS(263), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(137), - [aux_sym_cmd_identifier_token3] = ACTIONS(137), - [aux_sym_cmd_identifier_token4] = ACTIONS(137), - [aux_sym_cmd_identifier_token5] = ACTIONS(137), - [aux_sym_cmd_identifier_token6] = ACTIONS(137), - [aux_sym_cmd_identifier_token7] = ACTIONS(137), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(137), - [aux_sym_cmd_identifier_token11] = ACTIONS(137), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(137), - [aux_sym_cmd_identifier_token17] = ACTIONS(137), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(137), - [aux_sym_cmd_identifier_token20] = ACTIONS(137), - [aux_sym_cmd_identifier_token21] = ACTIONS(137), - [aux_sym_cmd_identifier_token22] = ACTIONS(137), - [aux_sym_cmd_identifier_token23] = ACTIONS(137), - [aux_sym_cmd_identifier_token24] = ACTIONS(137), - [aux_sym_cmd_identifier_token25] = ACTIONS(137), - [aux_sym_cmd_identifier_token26] = ACTIONS(137), - [aux_sym_cmd_identifier_token27] = ACTIONS(137), - [aux_sym_cmd_identifier_token28] = ACTIONS(137), - [aux_sym_cmd_identifier_token29] = ACTIONS(137), - [aux_sym_cmd_identifier_token30] = ACTIONS(137), - [aux_sym_cmd_identifier_token31] = ACTIONS(137), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(137), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(137), - [aux_sym_cmd_identifier_token36] = ACTIONS(137), - [aux_sym_cmd_identifier_token37] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(135), - [aux_sym_cmd_identifier_token39] = ACTIONS(137), - [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(265), - [anon_sym_export_DASHenv] = ACTIONS(267), - [anon_sym_extern] = ACTIONS(269), - [anon_sym_module] = ACTIONS(271), - [anon_sym_use] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(277), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in2] = ACTIONS(285), - [anon_sym_loop] = ACTIONS(287), - [anon_sym_make] = ACTIONS(285), - [anon_sym_while] = ACTIONS(289), - [anon_sym_do] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_else] = ACTIONS(285), - [anon_sym_match] = ACTIONS(295), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(333), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(299), - [anon_sym_catch] = ACTIONS(285), - [anon_sym_return] = ACTIONS(301), - [anon_sym_source] = ACTIONS(303), - [anon_sym_source_DASHenv] = ACTIONS(303), - [anon_sym_register] = ACTIONS(305), - [anon_sym_hide] = ACTIONS(307), - [anon_sym_hide_DASHenv] = ACTIONS(309), - [anon_sym_overlay] = ACTIONS(311), - [anon_sym_as] = ACTIONS(285), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [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(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_PLUS2] = ACTIONS(203), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(215), + [aux_sym__val_number_decimal_token2] = ACTIONS(217), + [aux_sym__val_number_decimal_token3] = ACTIONS(219), + [aux_sym__val_number_decimal_token4] = ACTIONS(221), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_register] = ACTIONS(281), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [12] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7842), - [sym_cmd_identifier] = STATE(4307), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym_parameter_pipes] = STATE(118), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1974), - [sym__spread_parenthesized] = STATE(7438), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym__spread_variable] = STATE(7458), - [sym_val_variable] = STATE(1437), - [sym_val_number] = STATE(2323), - [sym__val_number_decimal] = STATE(801), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2323), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2323), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym__spread_record] = STATE(7438), - [sym_record_body] = STATE(7745), - [sym_record_entry] = STATE(6831), - [sym__record_key] = STATE(7605), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7525), + [sym_cmd_identifier] = STATE(4385), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym_parameter_pipes] = STATE(116), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1967), + [sym__spread_parenthesized] = STATE(7377), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym__spread_variable] = STATE(7424), + [sym_val_variable] = STATE(1404), + [sym_val_number] = STATE(2398), + [sym__val_number_decimal] = STATE(779), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2398), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2398), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym__spread_record] = STATE(7377), + [sym_record_body] = STATE(7828), + [sym_record_entry] = STATE(7024), + [sym__record_key] = STATE(7701), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(12), - [aux_sym_shebang_repeat1] = STATE(22), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), + [aux_sym_shebang_repeat1] = STATE(28), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), [aux_sym_record_body_repeat1] = STATE(209), - [anon_sym_export] = ACTIONS(255), - [anon_sym_alias] = ACTIONS(257), - [anon_sym_let] = ACTIONS(259), - [anon_sym_let_DASHenv] = ACTIONS(259), - [anon_sym_mut] = ACTIONS(261), - [anon_sym_const] = ACTIONS(263), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(137), - [aux_sym_cmd_identifier_token3] = ACTIONS(137), - [aux_sym_cmd_identifier_token4] = ACTIONS(137), - [aux_sym_cmd_identifier_token5] = ACTIONS(137), - [aux_sym_cmd_identifier_token6] = ACTIONS(137), - [aux_sym_cmd_identifier_token7] = ACTIONS(137), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(137), - [aux_sym_cmd_identifier_token11] = ACTIONS(137), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(137), - [aux_sym_cmd_identifier_token17] = ACTIONS(137), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(137), - [aux_sym_cmd_identifier_token20] = ACTIONS(137), - [aux_sym_cmd_identifier_token21] = ACTIONS(137), - [aux_sym_cmd_identifier_token22] = ACTIONS(137), - [aux_sym_cmd_identifier_token23] = ACTIONS(137), - [aux_sym_cmd_identifier_token24] = ACTIONS(137), - [aux_sym_cmd_identifier_token25] = ACTIONS(137), - [aux_sym_cmd_identifier_token26] = ACTIONS(137), - [aux_sym_cmd_identifier_token27] = ACTIONS(137), - [aux_sym_cmd_identifier_token28] = ACTIONS(137), - [aux_sym_cmd_identifier_token29] = ACTIONS(137), - [aux_sym_cmd_identifier_token30] = ACTIONS(137), - [aux_sym_cmd_identifier_token31] = ACTIONS(137), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(137), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(137), - [aux_sym_cmd_identifier_token36] = ACTIONS(137), - [aux_sym_cmd_identifier_token37] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(135), - [aux_sym_cmd_identifier_token39] = ACTIONS(137), - [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(265), - [anon_sym_export_DASHenv] = ACTIONS(267), - [anon_sym_extern] = ACTIONS(269), - [anon_sym_module] = ACTIONS(271), - [anon_sym_use] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(277), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in2] = ACTIONS(285), - [anon_sym_loop] = ACTIONS(287), - [anon_sym_make] = ACTIONS(285), - [anon_sym_while] = ACTIONS(289), - [anon_sym_do] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_else] = ACTIONS(285), - [anon_sym_match] = ACTIONS(295), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(335), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(299), - [anon_sym_catch] = ACTIONS(285), - [anon_sym_return] = ACTIONS(301), - [anon_sym_source] = ACTIONS(303), - [anon_sym_source_DASHenv] = ACTIONS(303), - [anon_sym_register] = ACTIONS(305), - [anon_sym_hide] = ACTIONS(307), - [anon_sym_hide_DASHenv] = ACTIONS(309), - [anon_sym_overlay] = ACTIONS(311), - [anon_sym_as] = ACTIONS(285), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [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(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(329), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_PLUS2] = ACTIONS(203), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(215), + [aux_sym__val_number_decimal_token2] = ACTIONS(217), + [aux_sym__val_number_decimal_token3] = ACTIONS(219), + [aux_sym__val_number_decimal_token4] = ACTIONS(221), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_register] = ACTIONS(281), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [13] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7744), - [sym_cmd_identifier] = STATE(4307), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym_parameter_pipes] = STATE(120), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1974), - [sym__spread_parenthesized] = STATE(7438), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym__spread_variable] = STATE(7458), - [sym_val_variable] = STATE(1437), - [sym_val_number] = STATE(2323), - [sym__val_number_decimal] = STATE(801), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2323), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2323), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym__spread_record] = STATE(7438), - [sym_record_body] = STATE(7703), - [sym_record_entry] = STATE(6831), - [sym__record_key] = STATE(7605), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7826), + [sym_cmd_identifier] = STATE(4385), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym_parameter_pipes] = STATE(118), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1967), + [sym__spread_parenthesized] = STATE(7377), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym__spread_variable] = STATE(7424), + [sym_val_variable] = STATE(1404), + [sym_val_number] = STATE(2398), + [sym__val_number_decimal] = STATE(779), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2398), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2398), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym__spread_record] = STATE(7377), + [sym_record_body] = STATE(7560), + [sym_record_entry] = STATE(7024), + [sym__record_key] = STATE(7701), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(13), [aux_sym_shebang_repeat1] = STATE(29), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), [aux_sym_record_body_repeat1] = STATE(209), - [anon_sym_export] = ACTIONS(255), - [anon_sym_alias] = ACTIONS(257), - [anon_sym_let] = ACTIONS(259), - [anon_sym_let_DASHenv] = ACTIONS(259), - [anon_sym_mut] = ACTIONS(261), - [anon_sym_const] = ACTIONS(263), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(137), - [aux_sym_cmd_identifier_token3] = ACTIONS(137), - [aux_sym_cmd_identifier_token4] = ACTIONS(137), - [aux_sym_cmd_identifier_token5] = ACTIONS(137), - [aux_sym_cmd_identifier_token6] = ACTIONS(137), - [aux_sym_cmd_identifier_token7] = ACTIONS(137), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(137), - [aux_sym_cmd_identifier_token11] = ACTIONS(137), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(137), - [aux_sym_cmd_identifier_token17] = ACTIONS(137), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(137), - [aux_sym_cmd_identifier_token20] = ACTIONS(137), - [aux_sym_cmd_identifier_token21] = ACTIONS(137), - [aux_sym_cmd_identifier_token22] = ACTIONS(137), - [aux_sym_cmd_identifier_token23] = ACTIONS(137), - [aux_sym_cmd_identifier_token24] = ACTIONS(137), - [aux_sym_cmd_identifier_token25] = ACTIONS(137), - [aux_sym_cmd_identifier_token26] = ACTIONS(137), - [aux_sym_cmd_identifier_token27] = ACTIONS(137), - [aux_sym_cmd_identifier_token28] = ACTIONS(137), - [aux_sym_cmd_identifier_token29] = ACTIONS(137), - [aux_sym_cmd_identifier_token30] = ACTIONS(137), - [aux_sym_cmd_identifier_token31] = ACTIONS(137), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(137), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(137), - [aux_sym_cmd_identifier_token36] = ACTIONS(137), - [aux_sym_cmd_identifier_token37] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(135), - [aux_sym_cmd_identifier_token39] = ACTIONS(137), - [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(265), - [anon_sym_export_DASHenv] = ACTIONS(267), - [anon_sym_extern] = ACTIONS(269), - [anon_sym_module] = ACTIONS(271), - [anon_sym_use] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(277), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in2] = ACTIONS(285), - [anon_sym_loop] = ACTIONS(287), - [anon_sym_make] = ACTIONS(285), - [anon_sym_while] = ACTIONS(289), - [anon_sym_do] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_else] = ACTIONS(285), - [anon_sym_match] = ACTIONS(295), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(337), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(299), - [anon_sym_catch] = ACTIONS(285), - [anon_sym_return] = ACTIONS(301), - [anon_sym_source] = ACTIONS(303), - [anon_sym_source_DASHenv] = ACTIONS(303), - [anon_sym_register] = ACTIONS(305), - [anon_sym_hide] = ACTIONS(307), - [anon_sym_hide_DASHenv] = ACTIONS(309), - [anon_sym_overlay] = ACTIONS(311), - [anon_sym_as] = ACTIONS(285), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [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(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(331), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_PLUS2] = ACTIONS(203), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(215), + [aux_sym__val_number_decimal_token2] = ACTIONS(217), + [aux_sym__val_number_decimal_token3] = ACTIONS(219), + [aux_sym__val_number_decimal_token4] = ACTIONS(221), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_register] = ACTIONS(281), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [14] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7701), - [sym_cmd_identifier] = STATE(4307), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym_parameter_pipes] = STATE(122), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1974), - [sym__spread_parenthesized] = STATE(7438), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym__spread_variable] = STATE(7458), - [sym_val_variable] = STATE(1437), - [sym_val_number] = STATE(2323), - [sym__val_number_decimal] = STATE(801), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2323), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2323), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym__spread_record] = STATE(7438), - [sym_record_body] = STATE(7485), - [sym_record_entry] = STATE(6831), - [sym__record_key] = STATE(7605), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7545), + [sym_cmd_identifier] = STATE(4385), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym_parameter_pipes] = STATE(120), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1967), + [sym__spread_parenthesized] = STATE(7377), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym__spread_variable] = STATE(7424), + [sym_val_variable] = STATE(1404), + [sym_val_number] = STATE(2398), + [sym__val_number_decimal] = STATE(779), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2398), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2398), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym__spread_record] = STATE(7377), + [sym_record_body] = STATE(7658), + [sym_record_entry] = STATE(7024), + [sym__record_key] = STATE(7701), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(14), [aux_sym_shebang_repeat1] = STATE(30), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), [aux_sym_record_body_repeat1] = STATE(209), - [anon_sym_export] = ACTIONS(255), - [anon_sym_alias] = ACTIONS(257), - [anon_sym_let] = ACTIONS(259), - [anon_sym_let_DASHenv] = ACTIONS(259), - [anon_sym_mut] = ACTIONS(261), - [anon_sym_const] = ACTIONS(263), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(137), - [aux_sym_cmd_identifier_token3] = ACTIONS(137), - [aux_sym_cmd_identifier_token4] = ACTIONS(137), - [aux_sym_cmd_identifier_token5] = ACTIONS(137), - [aux_sym_cmd_identifier_token6] = ACTIONS(137), - [aux_sym_cmd_identifier_token7] = ACTIONS(137), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(137), - [aux_sym_cmd_identifier_token11] = ACTIONS(137), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(137), - [aux_sym_cmd_identifier_token17] = ACTIONS(137), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(137), - [aux_sym_cmd_identifier_token20] = ACTIONS(137), - [aux_sym_cmd_identifier_token21] = ACTIONS(137), - [aux_sym_cmd_identifier_token22] = ACTIONS(137), - [aux_sym_cmd_identifier_token23] = ACTIONS(137), - [aux_sym_cmd_identifier_token24] = ACTIONS(137), - [aux_sym_cmd_identifier_token25] = ACTIONS(137), - [aux_sym_cmd_identifier_token26] = ACTIONS(137), - [aux_sym_cmd_identifier_token27] = ACTIONS(137), - [aux_sym_cmd_identifier_token28] = ACTIONS(137), - [aux_sym_cmd_identifier_token29] = ACTIONS(137), - [aux_sym_cmd_identifier_token30] = ACTIONS(137), - [aux_sym_cmd_identifier_token31] = ACTIONS(137), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(137), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(137), - [aux_sym_cmd_identifier_token36] = ACTIONS(137), - [aux_sym_cmd_identifier_token37] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(135), - [aux_sym_cmd_identifier_token39] = ACTIONS(137), - [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(265), - [anon_sym_export_DASHenv] = ACTIONS(267), - [anon_sym_extern] = ACTIONS(269), - [anon_sym_module] = ACTIONS(271), - [anon_sym_use] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(277), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in2] = ACTIONS(285), - [anon_sym_loop] = ACTIONS(287), - [anon_sym_make] = ACTIONS(285), - [anon_sym_while] = ACTIONS(289), - [anon_sym_do] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_else] = ACTIONS(285), - [anon_sym_match] = ACTIONS(295), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(339), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(299), - [anon_sym_catch] = ACTIONS(285), - [anon_sym_return] = ACTIONS(301), - [anon_sym_source] = ACTIONS(303), - [anon_sym_source_DASHenv] = ACTIONS(303), - [anon_sym_register] = ACTIONS(305), - [anon_sym_hide] = ACTIONS(307), - [anon_sym_hide_DASHenv] = ACTIONS(309), - [anon_sym_overlay] = ACTIONS(311), - [anon_sym_as] = ACTIONS(285), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [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(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(333), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_PLUS2] = ACTIONS(203), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(215), + [aux_sym__val_number_decimal_token2] = ACTIONS(217), + [aux_sym__val_number_decimal_token3] = ACTIONS(219), + [aux_sym__val_number_decimal_token4] = ACTIONS(221), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_register] = ACTIONS(281), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [15] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7484), - [sym_cmd_identifier] = STATE(4307), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym_parameter_pipes] = STATE(130), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1974), - [sym__spread_parenthesized] = STATE(7438), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym__spread_variable] = STATE(7458), - [sym_val_variable] = STATE(1437), - [sym_val_number] = STATE(2323), - [sym__val_number_decimal] = STATE(801), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2323), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2323), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym__spread_record] = STATE(7438), - [sym_record_body] = STATE(7651), - [sym_record_entry] = STATE(6831), - [sym__record_key] = STATE(7605), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7652), + [sym_cmd_identifier] = STATE(4385), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym_parameter_pipes] = STATE(122), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1967), + [sym__spread_parenthesized] = STATE(7377), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym__spread_variable] = STATE(7424), + [sym_val_variable] = STATE(1404), + [sym_val_number] = STATE(2398), + [sym__val_number_decimal] = STATE(779), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2398), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2398), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym__spread_record] = STATE(7377), + [sym_record_body] = STATE(7823), + [sym_record_entry] = STATE(7024), + [sym__record_key] = STATE(7701), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(15), - [aux_sym_shebang_repeat1] = STATE(31), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), + [aux_sym_shebang_repeat1] = STATE(22), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), [aux_sym_record_body_repeat1] = STATE(209), - [anon_sym_export] = ACTIONS(255), - [anon_sym_alias] = ACTIONS(257), - [anon_sym_let] = ACTIONS(259), - [anon_sym_let_DASHenv] = ACTIONS(259), - [anon_sym_mut] = ACTIONS(261), - [anon_sym_const] = ACTIONS(263), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(137), - [aux_sym_cmd_identifier_token3] = ACTIONS(137), - [aux_sym_cmd_identifier_token4] = ACTIONS(137), - [aux_sym_cmd_identifier_token5] = ACTIONS(137), - [aux_sym_cmd_identifier_token6] = ACTIONS(137), - [aux_sym_cmd_identifier_token7] = ACTIONS(137), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(137), - [aux_sym_cmd_identifier_token11] = ACTIONS(137), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(137), - [aux_sym_cmd_identifier_token17] = ACTIONS(137), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(137), - [aux_sym_cmd_identifier_token20] = ACTIONS(137), - [aux_sym_cmd_identifier_token21] = ACTIONS(137), - [aux_sym_cmd_identifier_token22] = ACTIONS(137), - [aux_sym_cmd_identifier_token23] = ACTIONS(137), - [aux_sym_cmd_identifier_token24] = ACTIONS(137), - [aux_sym_cmd_identifier_token25] = ACTIONS(137), - [aux_sym_cmd_identifier_token26] = ACTIONS(137), - [aux_sym_cmd_identifier_token27] = ACTIONS(137), - [aux_sym_cmd_identifier_token28] = ACTIONS(137), - [aux_sym_cmd_identifier_token29] = ACTIONS(137), - [aux_sym_cmd_identifier_token30] = ACTIONS(137), - [aux_sym_cmd_identifier_token31] = ACTIONS(137), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(137), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(137), - [aux_sym_cmd_identifier_token36] = ACTIONS(137), - [aux_sym_cmd_identifier_token37] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(135), - [aux_sym_cmd_identifier_token39] = ACTIONS(137), - [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(265), - [anon_sym_export_DASHenv] = ACTIONS(267), - [anon_sym_extern] = ACTIONS(269), - [anon_sym_module] = ACTIONS(271), - [anon_sym_use] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(277), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in2] = ACTIONS(285), - [anon_sym_loop] = ACTIONS(287), - [anon_sym_make] = ACTIONS(285), - [anon_sym_while] = ACTIONS(289), - [anon_sym_do] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_else] = ACTIONS(285), - [anon_sym_match] = ACTIONS(295), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(341), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(299), - [anon_sym_catch] = ACTIONS(285), - [anon_sym_return] = ACTIONS(301), - [anon_sym_source] = ACTIONS(303), - [anon_sym_source_DASHenv] = ACTIONS(303), - [anon_sym_register] = ACTIONS(305), - [anon_sym_hide] = ACTIONS(307), - [anon_sym_hide_DASHenv] = ACTIONS(309), - [anon_sym_overlay] = ACTIONS(311), - [anon_sym_as] = ACTIONS(285), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [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(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(335), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_PLUS2] = ACTIONS(203), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(215), + [aux_sym__val_number_decimal_token2] = ACTIONS(217), + [aux_sym__val_number_decimal_token3] = ACTIONS(219), + [aux_sym__val_number_decimal_token4] = ACTIONS(221), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_register] = ACTIONS(281), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [16] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7701), - [sym_cmd_identifier] = STATE(4307), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym_parameter_pipes] = STATE(122), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1974), - [sym__spread_parenthesized] = STATE(7438), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym__spread_variable] = STATE(7458), - [sym_val_variable] = STATE(1437), - [sym_val_number] = STATE(2323), - [sym__val_number_decimal] = STATE(801), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2323), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2323), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym__spread_record] = STATE(7438), - [sym_record_body] = STATE(7647), - [sym_record_entry] = STATE(6831), - [sym__record_key] = STATE(7605), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7808), + [sym_cmd_identifier] = STATE(4385), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym_parameter_pipes] = STATE(114), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1967), + [sym__spread_parenthesized] = STATE(7377), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym__spread_variable] = STATE(7424), + [sym_val_variable] = STATE(1404), + [sym_val_number] = STATE(2398), + [sym__val_number_decimal] = STATE(779), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2398), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2398), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym__spread_record] = STATE(7377), + [sym_record_body] = STATE(7639), + [sym_record_entry] = STATE(7024), + [sym__record_key] = STATE(7701), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(16), - [aux_sym_shebang_repeat1] = STATE(30), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), + [aux_sym_shebang_repeat1] = STATE(31), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), [aux_sym_record_body_repeat1] = STATE(209), - [anon_sym_export] = ACTIONS(255), - [anon_sym_alias] = ACTIONS(257), - [anon_sym_let] = ACTIONS(259), - [anon_sym_let_DASHenv] = ACTIONS(259), - [anon_sym_mut] = ACTIONS(261), - [anon_sym_const] = ACTIONS(263), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(137), - [aux_sym_cmd_identifier_token3] = ACTIONS(137), - [aux_sym_cmd_identifier_token4] = ACTIONS(137), - [aux_sym_cmd_identifier_token5] = ACTIONS(137), - [aux_sym_cmd_identifier_token6] = ACTIONS(137), - [aux_sym_cmd_identifier_token7] = ACTIONS(137), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(137), - [aux_sym_cmd_identifier_token11] = ACTIONS(137), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(137), - [aux_sym_cmd_identifier_token17] = ACTIONS(137), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(137), - [aux_sym_cmd_identifier_token20] = ACTIONS(137), - [aux_sym_cmd_identifier_token21] = ACTIONS(137), - [aux_sym_cmd_identifier_token22] = ACTIONS(137), - [aux_sym_cmd_identifier_token23] = ACTIONS(137), - [aux_sym_cmd_identifier_token24] = ACTIONS(137), - [aux_sym_cmd_identifier_token25] = ACTIONS(137), - [aux_sym_cmd_identifier_token26] = ACTIONS(137), - [aux_sym_cmd_identifier_token27] = ACTIONS(137), - [aux_sym_cmd_identifier_token28] = ACTIONS(137), - [aux_sym_cmd_identifier_token29] = ACTIONS(137), - [aux_sym_cmd_identifier_token30] = ACTIONS(137), - [aux_sym_cmd_identifier_token31] = ACTIONS(137), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(137), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(137), - [aux_sym_cmd_identifier_token36] = ACTIONS(137), - [aux_sym_cmd_identifier_token37] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(135), - [aux_sym_cmd_identifier_token39] = ACTIONS(137), - [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(265), - [anon_sym_export_DASHenv] = ACTIONS(267), - [anon_sym_extern] = ACTIONS(269), - [anon_sym_module] = ACTIONS(271), - [anon_sym_use] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(277), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in2] = ACTIONS(285), - [anon_sym_loop] = ACTIONS(287), - [anon_sym_make] = ACTIONS(285), - [anon_sym_while] = ACTIONS(289), - [anon_sym_do] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_else] = ACTIONS(285), - [anon_sym_match] = ACTIONS(295), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(343), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(299), - [anon_sym_catch] = ACTIONS(285), - [anon_sym_return] = ACTIONS(301), - [anon_sym_source] = ACTIONS(303), - [anon_sym_source_DASHenv] = ACTIONS(303), - [anon_sym_register] = ACTIONS(305), - [anon_sym_hide] = ACTIONS(307), - [anon_sym_hide_DASHenv] = ACTIONS(309), - [anon_sym_overlay] = ACTIONS(311), - [anon_sym_as] = ACTIONS(285), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [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(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(337), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_PLUS2] = ACTIONS(203), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(215), + [aux_sym__val_number_decimal_token2] = ACTIONS(217), + [aux_sym__val_number_decimal_token3] = ACTIONS(219), + [aux_sym__val_number_decimal_token4] = ACTIONS(221), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_register] = ACTIONS(281), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [17] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7650), - [sym_cmd_identifier] = STATE(4307), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym_parameter_pipes] = STATE(124), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1974), - [sym__spread_parenthesized] = STATE(7438), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym__spread_variable] = STATE(7458), - [sym_val_variable] = STATE(1437), - [sym_val_number] = STATE(2323), - [sym__val_number_decimal] = STATE(801), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2323), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2323), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym__spread_record] = STATE(7438), - [sym_record_body] = STATE(7619), - [sym_record_entry] = STATE(6831), - [sym__record_key] = STATE(7605), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7652), + [sym_cmd_identifier] = STATE(4385), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym_parameter_pipes] = STATE(122), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1967), + [sym__spread_parenthesized] = STATE(7377), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym__spread_variable] = STATE(7424), + [sym_val_variable] = STATE(1404), + [sym_val_number] = STATE(2398), + [sym__val_number_decimal] = STATE(779), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2398), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2398), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym__spread_record] = STATE(7377), + [sym_record_body] = STATE(7830), + [sym_record_entry] = STATE(7024), + [sym__record_key] = STATE(7701), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(17), - [aux_sym_shebang_repeat1] = STATE(32), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), + [aux_sym_shebang_repeat1] = STATE(22), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), [aux_sym_record_body_repeat1] = STATE(209), - [anon_sym_export] = ACTIONS(255), - [anon_sym_alias] = ACTIONS(257), - [anon_sym_let] = ACTIONS(259), - [anon_sym_let_DASHenv] = ACTIONS(259), - [anon_sym_mut] = ACTIONS(261), - [anon_sym_const] = ACTIONS(263), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(137), - [aux_sym_cmd_identifier_token3] = ACTIONS(137), - [aux_sym_cmd_identifier_token4] = ACTIONS(137), - [aux_sym_cmd_identifier_token5] = ACTIONS(137), - [aux_sym_cmd_identifier_token6] = ACTIONS(137), - [aux_sym_cmd_identifier_token7] = ACTIONS(137), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(137), - [aux_sym_cmd_identifier_token11] = ACTIONS(137), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(137), - [aux_sym_cmd_identifier_token17] = ACTIONS(137), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(137), - [aux_sym_cmd_identifier_token20] = ACTIONS(137), - [aux_sym_cmd_identifier_token21] = ACTIONS(137), - [aux_sym_cmd_identifier_token22] = ACTIONS(137), - [aux_sym_cmd_identifier_token23] = ACTIONS(137), - [aux_sym_cmd_identifier_token24] = ACTIONS(137), - [aux_sym_cmd_identifier_token25] = ACTIONS(137), - [aux_sym_cmd_identifier_token26] = ACTIONS(137), - [aux_sym_cmd_identifier_token27] = ACTIONS(137), - [aux_sym_cmd_identifier_token28] = ACTIONS(137), - [aux_sym_cmd_identifier_token29] = ACTIONS(137), - [aux_sym_cmd_identifier_token30] = ACTIONS(137), - [aux_sym_cmd_identifier_token31] = ACTIONS(137), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(137), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(137), - [aux_sym_cmd_identifier_token36] = ACTIONS(137), - [aux_sym_cmd_identifier_token37] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(135), - [aux_sym_cmd_identifier_token39] = ACTIONS(137), - [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(265), - [anon_sym_export_DASHenv] = ACTIONS(267), - [anon_sym_extern] = ACTIONS(269), - [anon_sym_module] = ACTIONS(271), - [anon_sym_use] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(277), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in2] = ACTIONS(285), - [anon_sym_loop] = ACTIONS(287), - [anon_sym_make] = ACTIONS(285), - [anon_sym_while] = ACTIONS(289), - [anon_sym_do] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_else] = ACTIONS(285), - [anon_sym_match] = ACTIONS(295), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(299), - [anon_sym_catch] = ACTIONS(285), - [anon_sym_return] = ACTIONS(301), - [anon_sym_source] = ACTIONS(303), - [anon_sym_source_DASHenv] = ACTIONS(303), - [anon_sym_register] = ACTIONS(305), - [anon_sym_hide] = ACTIONS(307), - [anon_sym_hide_DASHenv] = ACTIONS(309), - [anon_sym_overlay] = ACTIONS(311), - [anon_sym_as] = ACTIONS(285), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [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(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(339), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_PLUS2] = ACTIONS(203), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(215), + [aux_sym__val_number_decimal_token2] = ACTIONS(217), + [aux_sym__val_number_decimal_token3] = ACTIONS(219), + [aux_sym__val_number_decimal_token4] = ACTIONS(221), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_register] = ACTIONS(281), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [18] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7688), - [sym_cmd_identifier] = STATE(4307), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym_parameter_pipes] = STATE(126), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1974), - [sym__spread_parenthesized] = STATE(7438), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym__spread_variable] = STATE(7458), - [sym_val_variable] = STATE(1437), - [sym_val_number] = STATE(2323), - [sym__val_number_decimal] = STATE(801), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2323), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2323), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym__spread_record] = STATE(7438), - [sym_record_body] = STATE(7504), - [sym_record_entry] = STATE(6831), - [sym__record_key] = STATE(7605), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7637), + [sym_cmd_identifier] = STATE(4385), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym_parameter_pipes] = STATE(124), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1967), + [sym__spread_parenthesized] = STATE(7377), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym__spread_variable] = STATE(7424), + [sym_val_variable] = STATE(1404), + [sym_val_number] = STATE(2398), + [sym__val_number_decimal] = STATE(779), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2398), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2398), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym__spread_record] = STATE(7377), + [sym_record_body] = STATE(7635), + [sym_record_entry] = STATE(7024), + [sym__record_key] = STATE(7701), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(18), - [aux_sym_shebang_repeat1] = STATE(33), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), + [aux_sym_shebang_repeat1] = STATE(27), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), [aux_sym_record_body_repeat1] = STATE(209), - [anon_sym_export] = ACTIONS(255), - [anon_sym_alias] = ACTIONS(257), - [anon_sym_let] = ACTIONS(259), - [anon_sym_let_DASHenv] = ACTIONS(259), - [anon_sym_mut] = ACTIONS(261), - [anon_sym_const] = ACTIONS(263), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(137), - [aux_sym_cmd_identifier_token3] = ACTIONS(137), - [aux_sym_cmd_identifier_token4] = ACTIONS(137), - [aux_sym_cmd_identifier_token5] = ACTIONS(137), - [aux_sym_cmd_identifier_token6] = ACTIONS(137), - [aux_sym_cmd_identifier_token7] = ACTIONS(137), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(137), - [aux_sym_cmd_identifier_token11] = ACTIONS(137), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(137), - [aux_sym_cmd_identifier_token17] = ACTIONS(137), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(137), - [aux_sym_cmd_identifier_token20] = ACTIONS(137), - [aux_sym_cmd_identifier_token21] = ACTIONS(137), - [aux_sym_cmd_identifier_token22] = ACTIONS(137), - [aux_sym_cmd_identifier_token23] = ACTIONS(137), - [aux_sym_cmd_identifier_token24] = ACTIONS(137), - [aux_sym_cmd_identifier_token25] = ACTIONS(137), - [aux_sym_cmd_identifier_token26] = ACTIONS(137), - [aux_sym_cmd_identifier_token27] = ACTIONS(137), - [aux_sym_cmd_identifier_token28] = ACTIONS(137), - [aux_sym_cmd_identifier_token29] = ACTIONS(137), - [aux_sym_cmd_identifier_token30] = ACTIONS(137), - [aux_sym_cmd_identifier_token31] = ACTIONS(137), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(137), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(137), - [aux_sym_cmd_identifier_token36] = ACTIONS(137), - [aux_sym_cmd_identifier_token37] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(135), - [aux_sym_cmd_identifier_token39] = ACTIONS(137), - [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(265), - [anon_sym_export_DASHenv] = ACTIONS(267), - [anon_sym_extern] = ACTIONS(269), - [anon_sym_module] = ACTIONS(271), - [anon_sym_use] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(277), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in2] = ACTIONS(285), - [anon_sym_loop] = ACTIONS(287), - [anon_sym_make] = ACTIONS(285), - [anon_sym_while] = ACTIONS(289), - [anon_sym_do] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_else] = ACTIONS(285), - [anon_sym_match] = ACTIONS(295), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(347), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(299), - [anon_sym_catch] = ACTIONS(285), - [anon_sym_return] = ACTIONS(301), - [anon_sym_source] = ACTIONS(303), - [anon_sym_source_DASHenv] = ACTIONS(303), - [anon_sym_register] = ACTIONS(305), - [anon_sym_hide] = ACTIONS(307), - [anon_sym_hide_DASHenv] = ACTIONS(309), - [anon_sym_overlay] = ACTIONS(311), - [anon_sym_as] = ACTIONS(285), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [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(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(341), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_PLUS2] = ACTIONS(203), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(215), + [aux_sym__val_number_decimal_token2] = ACTIONS(217), + [aux_sym__val_number_decimal_token3] = ACTIONS(219), + [aux_sym__val_number_decimal_token4] = ACTIONS(221), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_register] = ACTIONS(281), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [19] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7618), - [sym_cmd_identifier] = STATE(4307), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym_parameter_pipes] = STATE(128), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1974), - [sym__spread_parenthesized] = STATE(7438), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym__spread_variable] = STATE(7458), - [sym_val_variable] = STATE(1437), - [sym_val_number] = STATE(2323), - [sym__val_number_decimal] = STATE(801), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2323), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2323), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym__spread_record] = STATE(7438), - [sym_record_body] = STATE(7571), - [sym_record_entry] = STATE(6831), - [sym__record_key] = STATE(7605), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7774), + [sym_cmd_identifier] = STATE(4385), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym_parameter_pipes] = STATE(126), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1967), + [sym__spread_parenthesized] = STATE(7377), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym__spread_variable] = STATE(7424), + [sym_val_variable] = STATE(1404), + [sym_val_number] = STATE(2398), + [sym__val_number_decimal] = STATE(779), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2398), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2398), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym__spread_record] = STATE(7377), + [sym_record_body] = STATE(7473), + [sym_record_entry] = STATE(7024), + [sym__record_key] = STATE(7701), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(19), - [aux_sym_shebang_repeat1] = STATE(34), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), + [aux_sym_shebang_repeat1] = STATE(32), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), [aux_sym_record_body_repeat1] = STATE(209), - [anon_sym_export] = ACTIONS(255), - [anon_sym_alias] = ACTIONS(257), - [anon_sym_let] = ACTIONS(259), - [anon_sym_let_DASHenv] = ACTIONS(259), - [anon_sym_mut] = ACTIONS(261), - [anon_sym_const] = ACTIONS(263), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(137), - [aux_sym_cmd_identifier_token3] = ACTIONS(137), - [aux_sym_cmd_identifier_token4] = ACTIONS(137), - [aux_sym_cmd_identifier_token5] = ACTIONS(137), - [aux_sym_cmd_identifier_token6] = ACTIONS(137), - [aux_sym_cmd_identifier_token7] = ACTIONS(137), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(137), - [aux_sym_cmd_identifier_token11] = ACTIONS(137), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(137), - [aux_sym_cmd_identifier_token17] = ACTIONS(137), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(137), - [aux_sym_cmd_identifier_token20] = ACTIONS(137), - [aux_sym_cmd_identifier_token21] = ACTIONS(137), - [aux_sym_cmd_identifier_token22] = ACTIONS(137), - [aux_sym_cmd_identifier_token23] = ACTIONS(137), - [aux_sym_cmd_identifier_token24] = ACTIONS(137), - [aux_sym_cmd_identifier_token25] = ACTIONS(137), - [aux_sym_cmd_identifier_token26] = ACTIONS(137), - [aux_sym_cmd_identifier_token27] = ACTIONS(137), - [aux_sym_cmd_identifier_token28] = ACTIONS(137), - [aux_sym_cmd_identifier_token29] = ACTIONS(137), - [aux_sym_cmd_identifier_token30] = ACTIONS(137), - [aux_sym_cmd_identifier_token31] = ACTIONS(137), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(137), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(137), - [aux_sym_cmd_identifier_token36] = ACTIONS(137), - [aux_sym_cmd_identifier_token37] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(135), - [aux_sym_cmd_identifier_token39] = ACTIONS(137), - [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(265), - [anon_sym_export_DASHenv] = ACTIONS(267), - [anon_sym_extern] = ACTIONS(269), - [anon_sym_module] = ACTIONS(271), - [anon_sym_use] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(277), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in2] = ACTIONS(285), - [anon_sym_loop] = ACTIONS(287), - [anon_sym_make] = ACTIONS(285), - [anon_sym_while] = ACTIONS(289), - [anon_sym_do] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_else] = ACTIONS(285), - [anon_sym_match] = ACTIONS(295), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(349), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(299), - [anon_sym_catch] = ACTIONS(285), - [anon_sym_return] = ACTIONS(301), - [anon_sym_source] = ACTIONS(303), - [anon_sym_source_DASHenv] = ACTIONS(303), - [anon_sym_register] = ACTIONS(305), - [anon_sym_hide] = ACTIONS(307), - [anon_sym_hide_DASHenv] = ACTIONS(309), - [anon_sym_overlay] = ACTIONS(311), - [anon_sym_as] = ACTIONS(285), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [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(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(343), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_PLUS2] = ACTIONS(203), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(215), + [aux_sym__val_number_decimal_token2] = ACTIONS(217), + [aux_sym__val_number_decimal_token3] = ACTIONS(219), + [aux_sym__val_number_decimal_token4] = ACTIONS(221), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_register] = ACTIONS(281), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [20] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7502), - [sym_cmd_identifier] = STATE(4307), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym_parameter_pipes] = STATE(113), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1974), - [sym__spread_parenthesized] = STATE(7438), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym__spread_variable] = STATE(7458), - [sym_val_variable] = STATE(1437), - [sym_val_number] = STATE(2323), - [sym__val_number_decimal] = STATE(801), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2323), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2323), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym__spread_record] = STATE(7438), - [sym_record_body] = STATE(7636), - [sym_record_entry] = STATE(6831), - [sym__record_key] = STATE(7605), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7626), + [sym_cmd_identifier] = STATE(4385), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym_parameter_pipes] = STATE(128), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1967), + [sym__spread_parenthesized] = STATE(7377), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym__spread_variable] = STATE(7424), + [sym_val_variable] = STATE(1404), + [sym_val_number] = STATE(2398), + [sym__val_number_decimal] = STATE(779), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2398), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2398), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym__spread_record] = STATE(7377), + [sym_record_body] = STATE(7558), + [sym_record_entry] = STATE(7024), + [sym__record_key] = STATE(7701), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(20), - [aux_sym_shebang_repeat1] = STATE(28), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), + [aux_sym_shebang_repeat1] = STATE(33), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), [aux_sym_record_body_repeat1] = STATE(209), - [anon_sym_export] = ACTIONS(255), - [anon_sym_alias] = ACTIONS(257), - [anon_sym_let] = ACTIONS(259), - [anon_sym_let_DASHenv] = ACTIONS(259), - [anon_sym_mut] = ACTIONS(261), - [anon_sym_const] = ACTIONS(263), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(137), - [aux_sym_cmd_identifier_token3] = ACTIONS(137), - [aux_sym_cmd_identifier_token4] = ACTIONS(137), - [aux_sym_cmd_identifier_token5] = ACTIONS(137), - [aux_sym_cmd_identifier_token6] = ACTIONS(137), - [aux_sym_cmd_identifier_token7] = ACTIONS(137), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(137), - [aux_sym_cmd_identifier_token11] = ACTIONS(137), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(137), - [aux_sym_cmd_identifier_token17] = ACTIONS(137), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(137), - [aux_sym_cmd_identifier_token20] = ACTIONS(137), - [aux_sym_cmd_identifier_token21] = ACTIONS(137), - [aux_sym_cmd_identifier_token22] = ACTIONS(137), - [aux_sym_cmd_identifier_token23] = ACTIONS(137), - [aux_sym_cmd_identifier_token24] = ACTIONS(137), - [aux_sym_cmd_identifier_token25] = ACTIONS(137), - [aux_sym_cmd_identifier_token26] = ACTIONS(137), - [aux_sym_cmd_identifier_token27] = ACTIONS(137), - [aux_sym_cmd_identifier_token28] = ACTIONS(137), - [aux_sym_cmd_identifier_token29] = ACTIONS(137), - [aux_sym_cmd_identifier_token30] = ACTIONS(137), - [aux_sym_cmd_identifier_token31] = ACTIONS(137), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(137), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(137), - [aux_sym_cmd_identifier_token36] = ACTIONS(137), - [aux_sym_cmd_identifier_token37] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(135), - [aux_sym_cmd_identifier_token39] = ACTIONS(137), - [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(265), - [anon_sym_export_DASHenv] = ACTIONS(267), - [anon_sym_extern] = ACTIONS(269), - [anon_sym_module] = ACTIONS(271), - [anon_sym_use] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(277), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in2] = ACTIONS(285), - [anon_sym_loop] = ACTIONS(287), - [anon_sym_make] = ACTIONS(285), - [anon_sym_while] = ACTIONS(289), - [anon_sym_do] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_else] = ACTIONS(285), - [anon_sym_match] = ACTIONS(295), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(351), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(299), - [anon_sym_catch] = ACTIONS(285), - [anon_sym_return] = ACTIONS(301), - [anon_sym_source] = ACTIONS(303), - [anon_sym_source_DASHenv] = ACTIONS(303), - [anon_sym_register] = ACTIONS(305), - [anon_sym_hide] = ACTIONS(307), - [anon_sym_hide_DASHenv] = ACTIONS(309), - [anon_sym_overlay] = ACTIONS(311), - [anon_sym_as] = ACTIONS(285), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [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(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(345), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_PLUS2] = ACTIONS(203), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(215), + [aux_sym__val_number_decimal_token2] = ACTIONS(217), + [aux_sym__val_number_decimal_token3] = ACTIONS(219), + [aux_sym__val_number_decimal_token4] = ACTIONS(221), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_register] = ACTIONS(281), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [21] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7701), - [sym_cmd_identifier] = STATE(4307), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym_parameter_pipes] = STATE(122), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1974), - [sym__spread_parenthesized] = STATE(7438), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym__spread_variable] = STATE(7458), - [sym_val_variable] = STATE(1437), - [sym_val_number] = STATE(2323), - [sym__val_number_decimal] = STATE(801), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2323), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2323), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym__spread_record] = STATE(7438), - [sym_record_body] = STATE(7527), - [sym_record_entry] = STATE(6831), - [sym__record_key] = STATE(7605), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7472), + [sym_cmd_identifier] = STATE(4385), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym_parameter_pipes] = STATE(98), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1967), + [sym__spread_parenthesized] = STATE(7377), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym__spread_variable] = STATE(7424), + [sym_val_variable] = STATE(1404), + [sym_val_number] = STATE(2398), + [sym__val_number_decimal] = STATE(779), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2398), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2398), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym__spread_record] = STATE(7377), + [sym_record_body] = STATE(7453), + [sym_record_entry] = STATE(7024), + [sym__record_key] = STATE(7701), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(21), - [aux_sym_shebang_repeat1] = STATE(30), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), + [aux_sym_shebang_repeat1] = STATE(34), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), [aux_sym_record_body_repeat1] = STATE(209), - [anon_sym_export] = ACTIONS(255), - [anon_sym_alias] = ACTIONS(257), - [anon_sym_let] = ACTIONS(259), - [anon_sym_let_DASHenv] = ACTIONS(259), - [anon_sym_mut] = ACTIONS(261), - [anon_sym_const] = ACTIONS(263), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(137), - [aux_sym_cmd_identifier_token3] = ACTIONS(137), - [aux_sym_cmd_identifier_token4] = ACTIONS(137), - [aux_sym_cmd_identifier_token5] = ACTIONS(137), - [aux_sym_cmd_identifier_token6] = ACTIONS(137), - [aux_sym_cmd_identifier_token7] = ACTIONS(137), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(137), - [aux_sym_cmd_identifier_token11] = ACTIONS(137), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(137), - [aux_sym_cmd_identifier_token17] = ACTIONS(137), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(137), - [aux_sym_cmd_identifier_token20] = ACTIONS(137), - [aux_sym_cmd_identifier_token21] = ACTIONS(137), - [aux_sym_cmd_identifier_token22] = ACTIONS(137), - [aux_sym_cmd_identifier_token23] = ACTIONS(137), - [aux_sym_cmd_identifier_token24] = ACTIONS(137), - [aux_sym_cmd_identifier_token25] = ACTIONS(137), - [aux_sym_cmd_identifier_token26] = ACTIONS(137), - [aux_sym_cmd_identifier_token27] = ACTIONS(137), - [aux_sym_cmd_identifier_token28] = ACTIONS(137), - [aux_sym_cmd_identifier_token29] = ACTIONS(137), - [aux_sym_cmd_identifier_token30] = ACTIONS(137), - [aux_sym_cmd_identifier_token31] = ACTIONS(137), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(137), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(137), - [aux_sym_cmd_identifier_token36] = ACTIONS(137), - [aux_sym_cmd_identifier_token37] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(135), - [aux_sym_cmd_identifier_token39] = ACTIONS(137), - [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(265), - [anon_sym_export_DASHenv] = ACTIONS(267), - [anon_sym_extern] = ACTIONS(269), - [anon_sym_module] = ACTIONS(271), - [anon_sym_use] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(277), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in2] = ACTIONS(285), - [anon_sym_loop] = ACTIONS(287), - [anon_sym_make] = ACTIONS(285), - [anon_sym_while] = ACTIONS(289), - [anon_sym_do] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_else] = ACTIONS(285), - [anon_sym_match] = ACTIONS(295), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(299), - [anon_sym_catch] = ACTIONS(285), - [anon_sym_return] = ACTIONS(301), - [anon_sym_source] = ACTIONS(303), - [anon_sym_source_DASHenv] = ACTIONS(303), - [anon_sym_register] = ACTIONS(305), - [anon_sym_hide] = ACTIONS(307), - [anon_sym_hide_DASHenv] = ACTIONS(309), - [anon_sym_overlay] = ACTIONS(311), - [anon_sym_as] = ACTIONS(285), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [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(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(347), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_PLUS2] = ACTIONS(203), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(215), + [aux_sym__val_number_decimal_token2] = ACTIONS(217), + [aux_sym__val_number_decimal_token3] = ACTIONS(219), + [aux_sym__val_number_decimal_token4] = ACTIONS(221), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_register] = ACTIONS(281), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [22] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7737), - [sym_cmd_identifier] = STATE(4307), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym_parameter_pipes] = STATE(119), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1974), - [sym__spread_parenthesized] = STATE(7438), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym__spread_variable] = STATE(7458), - [sym_val_variable] = STATE(1437), - [sym_val_number] = STATE(2323), - [sym__val_number_decimal] = STATE(801), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2323), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2323), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym__spread_record] = STATE(7438), - [sym_record_entry] = STATE(7218), - [sym__record_key] = STATE(7605), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7492), + [sym_cmd_identifier] = STATE(4385), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym_parameter_pipes] = STATE(123), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1967), + [sym__spread_parenthesized] = STATE(7377), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym__spread_variable] = STATE(7424), + [sym_val_variable] = STATE(1404), + [sym_val_number] = STATE(2398), + [sym__val_number_decimal] = STATE(779), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2398), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2398), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym__spread_record] = STATE(7377), + [sym_record_entry] = STATE(6717), + [sym__record_key] = STATE(7701), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(22), - [aux_sym_shebang_repeat1] = STATE(198), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), + [aux_sym_shebang_repeat1] = STATE(199), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), [aux_sym_record_body_repeat1] = STATE(208), - [anon_sym_export] = ACTIONS(255), - [anon_sym_alias] = ACTIONS(257), - [anon_sym_let] = ACTIONS(259), - [anon_sym_let_DASHenv] = ACTIONS(259), - [anon_sym_mut] = ACTIONS(261), - [anon_sym_const] = ACTIONS(263), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(137), - [aux_sym_cmd_identifier_token3] = ACTIONS(137), - [aux_sym_cmd_identifier_token4] = ACTIONS(137), - [aux_sym_cmd_identifier_token5] = ACTIONS(137), - [aux_sym_cmd_identifier_token6] = ACTIONS(137), - [aux_sym_cmd_identifier_token7] = ACTIONS(137), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(137), - [aux_sym_cmd_identifier_token11] = ACTIONS(137), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(137), - [aux_sym_cmd_identifier_token17] = ACTIONS(137), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(137), - [aux_sym_cmd_identifier_token20] = ACTIONS(137), - [aux_sym_cmd_identifier_token21] = ACTIONS(137), - [aux_sym_cmd_identifier_token22] = ACTIONS(137), - [aux_sym_cmd_identifier_token23] = ACTIONS(137), - [aux_sym_cmd_identifier_token24] = ACTIONS(137), - [aux_sym_cmd_identifier_token25] = ACTIONS(137), - [aux_sym_cmd_identifier_token26] = ACTIONS(137), - [aux_sym_cmd_identifier_token27] = ACTIONS(137), - [aux_sym_cmd_identifier_token28] = ACTIONS(137), - [aux_sym_cmd_identifier_token29] = ACTIONS(137), - [aux_sym_cmd_identifier_token30] = ACTIONS(137), - [aux_sym_cmd_identifier_token31] = ACTIONS(137), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(137), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(137), - [aux_sym_cmd_identifier_token36] = ACTIONS(137), - [aux_sym_cmd_identifier_token37] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(135), - [aux_sym_cmd_identifier_token39] = ACTIONS(137), - [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(265), - [anon_sym_export_DASHenv] = ACTIONS(267), - [anon_sym_extern] = ACTIONS(269), - [anon_sym_module] = ACTIONS(271), - [anon_sym_use] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(277), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in2] = ACTIONS(285), - [anon_sym_loop] = ACTIONS(287), - [anon_sym_make] = ACTIONS(285), - [anon_sym_while] = ACTIONS(289), - [anon_sym_do] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_else] = ACTIONS(285), - [anon_sym_match] = ACTIONS(295), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(299), - [anon_sym_catch] = ACTIONS(285), - [anon_sym_return] = ACTIONS(301), - [anon_sym_source] = ACTIONS(303), - [anon_sym_source_DASHenv] = ACTIONS(303), - [anon_sym_register] = ACTIONS(305), - [anon_sym_hide] = ACTIONS(307), - [anon_sym_hide_DASHenv] = ACTIONS(309), - [anon_sym_overlay] = ACTIONS(311), - [anon_sym_as] = ACTIONS(285), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [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(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_PLUS2] = ACTIONS(203), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(215), + [aux_sym__val_number_decimal_token2] = ACTIONS(217), + [aux_sym__val_number_decimal_token3] = ACTIONS(219), + [aux_sym__val_number_decimal_token4] = ACTIONS(221), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_register] = ACTIONS(281), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [23] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7601), - [sym_cmd_identifier] = STATE(4307), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym_parameter_pipes] = STATE(108), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1974), - [sym__spread_parenthesized] = STATE(7438), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym__spread_variable] = STATE(7458), - [sym_val_variable] = STATE(1437), - [sym_val_number] = STATE(2323), - [sym__val_number_decimal] = STATE(801), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2323), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2323), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym__spread_record] = STATE(7438), - [sym_record_entry] = STATE(7218), - [sym__record_key] = STATE(7605), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7609), + [sym_cmd_identifier] = STATE(4385), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym_parameter_pipes] = STATE(104), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1967), + [sym__spread_parenthesized] = STATE(7377), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym__spread_variable] = STATE(7424), + [sym_val_variable] = STATE(1404), + [sym_val_number] = STATE(2398), + [sym__val_number_decimal] = STATE(779), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2398), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2398), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym__spread_record] = STATE(7377), + [sym_record_entry] = STATE(6717), + [sym__record_key] = STATE(7701), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(23), - [aux_sym_shebang_repeat1] = STATE(198), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), + [aux_sym_shebang_repeat1] = STATE(199), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), [aux_sym_record_body_repeat1] = STATE(208), - [anon_sym_export] = ACTIONS(255), - [anon_sym_alias] = ACTIONS(257), - [anon_sym_let] = ACTIONS(259), - [anon_sym_let_DASHenv] = ACTIONS(259), - [anon_sym_mut] = ACTIONS(261), - [anon_sym_const] = ACTIONS(263), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(137), - [aux_sym_cmd_identifier_token3] = ACTIONS(137), - [aux_sym_cmd_identifier_token4] = ACTIONS(137), - [aux_sym_cmd_identifier_token5] = ACTIONS(137), - [aux_sym_cmd_identifier_token6] = ACTIONS(137), - [aux_sym_cmd_identifier_token7] = ACTIONS(137), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(137), - [aux_sym_cmd_identifier_token11] = ACTIONS(137), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(137), - [aux_sym_cmd_identifier_token17] = ACTIONS(137), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(137), - [aux_sym_cmd_identifier_token20] = ACTIONS(137), - [aux_sym_cmd_identifier_token21] = ACTIONS(137), - [aux_sym_cmd_identifier_token22] = ACTIONS(137), - [aux_sym_cmd_identifier_token23] = ACTIONS(137), - [aux_sym_cmd_identifier_token24] = ACTIONS(137), - [aux_sym_cmd_identifier_token25] = ACTIONS(137), - [aux_sym_cmd_identifier_token26] = ACTIONS(137), - [aux_sym_cmd_identifier_token27] = ACTIONS(137), - [aux_sym_cmd_identifier_token28] = ACTIONS(137), - [aux_sym_cmd_identifier_token29] = ACTIONS(137), - [aux_sym_cmd_identifier_token30] = ACTIONS(137), - [aux_sym_cmd_identifier_token31] = ACTIONS(137), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(137), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(137), - [aux_sym_cmd_identifier_token36] = ACTIONS(137), - [aux_sym_cmd_identifier_token37] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(135), - [aux_sym_cmd_identifier_token39] = ACTIONS(137), - [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(265), - [anon_sym_export_DASHenv] = ACTIONS(267), - [anon_sym_extern] = ACTIONS(269), - [anon_sym_module] = ACTIONS(271), - [anon_sym_use] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(277), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in2] = ACTIONS(285), - [anon_sym_loop] = ACTIONS(287), - [anon_sym_make] = ACTIONS(285), - [anon_sym_while] = ACTIONS(289), - [anon_sym_do] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_else] = ACTIONS(285), - [anon_sym_match] = ACTIONS(295), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(299), - [anon_sym_catch] = ACTIONS(285), - [anon_sym_return] = ACTIONS(301), - [anon_sym_source] = ACTIONS(303), - [anon_sym_source_DASHenv] = ACTIONS(303), - [anon_sym_register] = ACTIONS(305), - [anon_sym_hide] = ACTIONS(307), - [anon_sym_hide_DASHenv] = ACTIONS(309), - [anon_sym_overlay] = ACTIONS(311), - [anon_sym_as] = ACTIONS(285), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [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(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_PLUS2] = ACTIONS(203), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(215), + [aux_sym__val_number_decimal_token2] = ACTIONS(217), + [aux_sym__val_number_decimal_token3] = ACTIONS(219), + [aux_sym__val_number_decimal_token4] = ACTIONS(221), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_register] = ACTIONS(281), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [24] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7660), - [sym_cmd_identifier] = STATE(4307), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym_parameter_pipes] = STATE(99), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1974), - [sym__spread_parenthesized] = STATE(7438), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym__spread_variable] = STATE(7458), - [sym_val_variable] = STATE(1437), - [sym_val_number] = STATE(2323), - [sym__val_number_decimal] = STATE(801), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2323), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2323), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym__spread_record] = STATE(7438), - [sym_record_entry] = STATE(7218), - [sym__record_key] = STATE(7605), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7589), + [sym_cmd_identifier] = STATE(4385), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym_parameter_pipes] = STATE(109), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1967), + [sym__spread_parenthesized] = STATE(7377), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym__spread_variable] = STATE(7424), + [sym_val_variable] = STATE(1404), + [sym_val_number] = STATE(2398), + [sym__val_number_decimal] = STATE(779), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2398), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2398), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym__spread_record] = STATE(7377), + [sym_record_entry] = STATE(6717), + [sym__record_key] = STATE(7701), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(24), - [aux_sym_shebang_repeat1] = STATE(198), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), + [aux_sym_shebang_repeat1] = STATE(199), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), [aux_sym_record_body_repeat1] = STATE(208), - [anon_sym_export] = ACTIONS(255), - [anon_sym_alias] = ACTIONS(257), - [anon_sym_let] = ACTIONS(259), - [anon_sym_let_DASHenv] = ACTIONS(259), - [anon_sym_mut] = ACTIONS(261), - [anon_sym_const] = ACTIONS(263), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(137), - [aux_sym_cmd_identifier_token3] = ACTIONS(137), - [aux_sym_cmd_identifier_token4] = ACTIONS(137), - [aux_sym_cmd_identifier_token5] = ACTIONS(137), - [aux_sym_cmd_identifier_token6] = ACTIONS(137), - [aux_sym_cmd_identifier_token7] = ACTIONS(137), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(137), - [aux_sym_cmd_identifier_token11] = ACTIONS(137), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(137), - [aux_sym_cmd_identifier_token17] = ACTIONS(137), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(137), - [aux_sym_cmd_identifier_token20] = ACTIONS(137), - [aux_sym_cmd_identifier_token21] = ACTIONS(137), - [aux_sym_cmd_identifier_token22] = ACTIONS(137), - [aux_sym_cmd_identifier_token23] = ACTIONS(137), - [aux_sym_cmd_identifier_token24] = ACTIONS(137), - [aux_sym_cmd_identifier_token25] = ACTIONS(137), - [aux_sym_cmd_identifier_token26] = ACTIONS(137), - [aux_sym_cmd_identifier_token27] = ACTIONS(137), - [aux_sym_cmd_identifier_token28] = ACTIONS(137), - [aux_sym_cmd_identifier_token29] = ACTIONS(137), - [aux_sym_cmd_identifier_token30] = ACTIONS(137), - [aux_sym_cmd_identifier_token31] = ACTIONS(137), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(137), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(137), - [aux_sym_cmd_identifier_token36] = ACTIONS(137), - [aux_sym_cmd_identifier_token37] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(135), - [aux_sym_cmd_identifier_token39] = ACTIONS(137), - [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(265), - [anon_sym_export_DASHenv] = ACTIONS(267), - [anon_sym_extern] = ACTIONS(269), - [anon_sym_module] = ACTIONS(271), - [anon_sym_use] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(277), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in2] = ACTIONS(285), - [anon_sym_loop] = ACTIONS(287), - [anon_sym_make] = ACTIONS(285), - [anon_sym_while] = ACTIONS(289), - [anon_sym_do] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_else] = ACTIONS(285), - [anon_sym_match] = ACTIONS(295), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(299), - [anon_sym_catch] = ACTIONS(285), - [anon_sym_return] = ACTIONS(301), - [anon_sym_source] = ACTIONS(303), - [anon_sym_source_DASHenv] = ACTIONS(303), - [anon_sym_register] = ACTIONS(305), - [anon_sym_hide] = ACTIONS(307), - [anon_sym_hide_DASHenv] = ACTIONS(309), - [anon_sym_overlay] = ACTIONS(311), - [anon_sym_as] = ACTIONS(285), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [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(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_PLUS2] = ACTIONS(203), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(215), + [aux_sym__val_number_decimal_token2] = ACTIONS(217), + [aux_sym__val_number_decimal_token3] = ACTIONS(219), + [aux_sym__val_number_decimal_token4] = ACTIONS(221), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_register] = ACTIONS(281), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [25] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7469), - [sym_cmd_identifier] = STATE(4307), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym_parameter_pipes] = STATE(110), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1974), - [sym__spread_parenthesized] = STATE(7438), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym__spread_variable] = STATE(7458), - [sym_val_variable] = STATE(1437), - [sym_val_number] = STATE(2323), - [sym__val_number_decimal] = STATE(801), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2323), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2323), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym__spread_record] = STATE(7438), - [sym_record_entry] = STATE(7218), - [sym__record_key] = STATE(7605), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7537), + [sym_cmd_identifier] = STATE(4385), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym_parameter_pipes] = STATE(111), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1967), + [sym__spread_parenthesized] = STATE(7377), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym__spread_variable] = STATE(7424), + [sym_val_variable] = STATE(1404), + [sym_val_number] = STATE(2398), + [sym__val_number_decimal] = STATE(779), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2398), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2398), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym__spread_record] = STATE(7377), + [sym_record_entry] = STATE(6717), + [sym__record_key] = STATE(7701), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(25), - [aux_sym_shebang_repeat1] = STATE(198), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), + [aux_sym_shebang_repeat1] = STATE(199), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), [aux_sym_record_body_repeat1] = STATE(208), - [anon_sym_export] = ACTIONS(255), - [anon_sym_alias] = ACTIONS(257), - [anon_sym_let] = ACTIONS(259), - [anon_sym_let_DASHenv] = ACTIONS(259), - [anon_sym_mut] = ACTIONS(261), - [anon_sym_const] = ACTIONS(263), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(137), - [aux_sym_cmd_identifier_token3] = ACTIONS(137), - [aux_sym_cmd_identifier_token4] = ACTIONS(137), - [aux_sym_cmd_identifier_token5] = ACTIONS(137), - [aux_sym_cmd_identifier_token6] = ACTIONS(137), - [aux_sym_cmd_identifier_token7] = ACTIONS(137), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(137), - [aux_sym_cmd_identifier_token11] = ACTIONS(137), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(137), - [aux_sym_cmd_identifier_token17] = ACTIONS(137), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(137), - [aux_sym_cmd_identifier_token20] = ACTIONS(137), - [aux_sym_cmd_identifier_token21] = ACTIONS(137), - [aux_sym_cmd_identifier_token22] = ACTIONS(137), - [aux_sym_cmd_identifier_token23] = ACTIONS(137), - [aux_sym_cmd_identifier_token24] = ACTIONS(137), - [aux_sym_cmd_identifier_token25] = ACTIONS(137), - [aux_sym_cmd_identifier_token26] = ACTIONS(137), - [aux_sym_cmd_identifier_token27] = ACTIONS(137), - [aux_sym_cmd_identifier_token28] = ACTIONS(137), - [aux_sym_cmd_identifier_token29] = ACTIONS(137), - [aux_sym_cmd_identifier_token30] = ACTIONS(137), - [aux_sym_cmd_identifier_token31] = ACTIONS(137), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(137), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(137), - [aux_sym_cmd_identifier_token36] = ACTIONS(137), - [aux_sym_cmd_identifier_token37] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(135), - [aux_sym_cmd_identifier_token39] = ACTIONS(137), - [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(265), - [anon_sym_export_DASHenv] = ACTIONS(267), - [anon_sym_extern] = ACTIONS(269), - [anon_sym_module] = ACTIONS(271), - [anon_sym_use] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(277), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in2] = ACTIONS(285), - [anon_sym_loop] = ACTIONS(287), - [anon_sym_make] = ACTIONS(285), - [anon_sym_while] = ACTIONS(289), - [anon_sym_do] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_else] = ACTIONS(285), - [anon_sym_match] = ACTIONS(295), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(299), - [anon_sym_catch] = ACTIONS(285), - [anon_sym_return] = ACTIONS(301), - [anon_sym_source] = ACTIONS(303), - [anon_sym_source_DASHenv] = ACTIONS(303), - [anon_sym_register] = ACTIONS(305), - [anon_sym_hide] = ACTIONS(307), - [anon_sym_hide_DASHenv] = ACTIONS(309), - [anon_sym_overlay] = ACTIONS(311), - [anon_sym_as] = ACTIONS(285), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [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(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_PLUS2] = ACTIONS(203), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(215), + [aux_sym__val_number_decimal_token2] = ACTIONS(217), + [aux_sym__val_number_decimal_token3] = ACTIONS(219), + [aux_sym__val_number_decimal_token4] = ACTIONS(221), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_register] = ACTIONS(281), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [26] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7852), - [sym_cmd_identifier] = STATE(4307), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym_parameter_pipes] = STATE(112), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1974), - [sym__spread_parenthesized] = STATE(7438), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym__spread_variable] = STATE(7458), - [sym_val_variable] = STATE(1437), - [sym_val_number] = STATE(2323), - [sym__val_number_decimal] = STATE(801), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2323), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2323), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym__spread_record] = STATE(7438), - [sym_record_entry] = STATE(7218), - [sym__record_key] = STATE(7605), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7714), + [sym_cmd_identifier] = STATE(4385), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym_parameter_pipes] = STATE(113), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1967), + [sym__spread_parenthesized] = STATE(7377), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym__spread_variable] = STATE(7424), + [sym_val_variable] = STATE(1404), + [sym_val_number] = STATE(2398), + [sym__val_number_decimal] = STATE(779), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2398), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2398), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym__spread_record] = STATE(7377), + [sym_record_entry] = STATE(6717), + [sym__record_key] = STATE(7701), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(26), - [aux_sym_shebang_repeat1] = STATE(198), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), + [aux_sym_shebang_repeat1] = STATE(199), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), [aux_sym_record_body_repeat1] = STATE(208), - [anon_sym_export] = ACTIONS(255), - [anon_sym_alias] = ACTIONS(257), - [anon_sym_let] = ACTIONS(259), - [anon_sym_let_DASHenv] = ACTIONS(259), - [anon_sym_mut] = ACTIONS(261), - [anon_sym_const] = ACTIONS(263), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(137), - [aux_sym_cmd_identifier_token3] = ACTIONS(137), - [aux_sym_cmd_identifier_token4] = ACTIONS(137), - [aux_sym_cmd_identifier_token5] = ACTIONS(137), - [aux_sym_cmd_identifier_token6] = ACTIONS(137), - [aux_sym_cmd_identifier_token7] = ACTIONS(137), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(137), - [aux_sym_cmd_identifier_token11] = ACTIONS(137), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(137), - [aux_sym_cmd_identifier_token17] = ACTIONS(137), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(137), - [aux_sym_cmd_identifier_token20] = ACTIONS(137), - [aux_sym_cmd_identifier_token21] = ACTIONS(137), - [aux_sym_cmd_identifier_token22] = ACTIONS(137), - [aux_sym_cmd_identifier_token23] = ACTIONS(137), - [aux_sym_cmd_identifier_token24] = ACTIONS(137), - [aux_sym_cmd_identifier_token25] = ACTIONS(137), - [aux_sym_cmd_identifier_token26] = ACTIONS(137), - [aux_sym_cmd_identifier_token27] = ACTIONS(137), - [aux_sym_cmd_identifier_token28] = ACTIONS(137), - [aux_sym_cmd_identifier_token29] = ACTIONS(137), - [aux_sym_cmd_identifier_token30] = ACTIONS(137), - [aux_sym_cmd_identifier_token31] = ACTIONS(137), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(137), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(137), - [aux_sym_cmd_identifier_token36] = ACTIONS(137), - [aux_sym_cmd_identifier_token37] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(135), - [aux_sym_cmd_identifier_token39] = ACTIONS(137), - [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(265), - [anon_sym_export_DASHenv] = ACTIONS(267), - [anon_sym_extern] = ACTIONS(269), - [anon_sym_module] = ACTIONS(271), - [anon_sym_use] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(277), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in2] = ACTIONS(285), - [anon_sym_loop] = ACTIONS(287), - [anon_sym_make] = ACTIONS(285), - [anon_sym_while] = ACTIONS(289), - [anon_sym_do] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_else] = ACTIONS(285), - [anon_sym_match] = ACTIONS(295), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(299), - [anon_sym_catch] = ACTIONS(285), - [anon_sym_return] = ACTIONS(301), - [anon_sym_source] = ACTIONS(303), - [anon_sym_source_DASHenv] = ACTIONS(303), - [anon_sym_register] = ACTIONS(305), - [anon_sym_hide] = ACTIONS(307), - [anon_sym_hide_DASHenv] = ACTIONS(309), - [anon_sym_overlay] = ACTIONS(311), - [anon_sym_as] = ACTIONS(285), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [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(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_PLUS2] = ACTIONS(203), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(215), + [aux_sym__val_number_decimal_token2] = ACTIONS(217), + [aux_sym__val_number_decimal_token3] = ACTIONS(219), + [aux_sym__val_number_decimal_token4] = ACTIONS(221), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_register] = ACTIONS(281), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [27] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7535), - [sym_cmd_identifier] = STATE(4307), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym_parameter_pipes] = STATE(117), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1974), - [sym__spread_parenthesized] = STATE(7438), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym__spread_variable] = STATE(7458), - [sym_val_variable] = STATE(1437), - [sym_val_number] = STATE(2323), - [sym__val_number_decimal] = STATE(801), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2323), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2323), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym__spread_record] = STATE(7438), - [sym_record_entry] = STATE(7218), - [sym__record_key] = STATE(7605), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7665), + [sym_cmd_identifier] = STATE(4385), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym_parameter_pipes] = STATE(125), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1967), + [sym__spread_parenthesized] = STATE(7377), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym__spread_variable] = STATE(7424), + [sym_val_variable] = STATE(1404), + [sym_val_number] = STATE(2398), + [sym__val_number_decimal] = STATE(779), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2398), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2398), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym__spread_record] = STATE(7377), + [sym_record_entry] = STATE(6717), + [sym__record_key] = STATE(7701), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(27), - [aux_sym_shebang_repeat1] = STATE(198), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), + [aux_sym_shebang_repeat1] = STATE(199), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), [aux_sym_record_body_repeat1] = STATE(208), - [anon_sym_export] = ACTIONS(255), - [anon_sym_alias] = ACTIONS(257), - [anon_sym_let] = ACTIONS(259), - [anon_sym_let_DASHenv] = ACTIONS(259), - [anon_sym_mut] = ACTIONS(261), - [anon_sym_const] = ACTIONS(263), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(137), - [aux_sym_cmd_identifier_token3] = ACTIONS(137), - [aux_sym_cmd_identifier_token4] = ACTIONS(137), - [aux_sym_cmd_identifier_token5] = ACTIONS(137), - [aux_sym_cmd_identifier_token6] = ACTIONS(137), - [aux_sym_cmd_identifier_token7] = ACTIONS(137), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(137), - [aux_sym_cmd_identifier_token11] = ACTIONS(137), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(137), - [aux_sym_cmd_identifier_token17] = ACTIONS(137), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(137), - [aux_sym_cmd_identifier_token20] = ACTIONS(137), - [aux_sym_cmd_identifier_token21] = ACTIONS(137), - [aux_sym_cmd_identifier_token22] = ACTIONS(137), - [aux_sym_cmd_identifier_token23] = ACTIONS(137), - [aux_sym_cmd_identifier_token24] = ACTIONS(137), - [aux_sym_cmd_identifier_token25] = ACTIONS(137), - [aux_sym_cmd_identifier_token26] = ACTIONS(137), - [aux_sym_cmd_identifier_token27] = ACTIONS(137), - [aux_sym_cmd_identifier_token28] = ACTIONS(137), - [aux_sym_cmd_identifier_token29] = ACTIONS(137), - [aux_sym_cmd_identifier_token30] = ACTIONS(137), - [aux_sym_cmd_identifier_token31] = ACTIONS(137), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(137), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(137), - [aux_sym_cmd_identifier_token36] = ACTIONS(137), - [aux_sym_cmd_identifier_token37] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(135), - [aux_sym_cmd_identifier_token39] = ACTIONS(137), - [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(265), - [anon_sym_export_DASHenv] = ACTIONS(267), - [anon_sym_extern] = ACTIONS(269), - [anon_sym_module] = ACTIONS(271), - [anon_sym_use] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(277), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in2] = ACTIONS(285), - [anon_sym_loop] = ACTIONS(287), - [anon_sym_make] = ACTIONS(285), - [anon_sym_while] = ACTIONS(289), - [anon_sym_do] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_else] = ACTIONS(285), - [anon_sym_match] = ACTIONS(295), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(299), - [anon_sym_catch] = ACTIONS(285), - [anon_sym_return] = ACTIONS(301), - [anon_sym_source] = ACTIONS(303), - [anon_sym_source_DASHenv] = ACTIONS(303), - [anon_sym_register] = ACTIONS(305), - [anon_sym_hide] = ACTIONS(307), - [anon_sym_hide_DASHenv] = ACTIONS(309), - [anon_sym_overlay] = ACTIONS(311), - [anon_sym_as] = ACTIONS(285), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [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(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_PLUS2] = ACTIONS(203), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(215), + [aux_sym__val_number_decimal_token2] = ACTIONS(217), + [aux_sym__val_number_decimal_token3] = ACTIONS(219), + [aux_sym__val_number_decimal_token4] = ACTIONS(221), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_register] = ACTIONS(281), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [28] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7516), - [sym_cmd_identifier] = STATE(4307), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym_parameter_pipes] = STATE(121), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1974), - [sym__spread_parenthesized] = STATE(7438), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym__spread_variable] = STATE(7458), - [sym_val_variable] = STATE(1437), - [sym_val_number] = STATE(2323), - [sym__val_number_decimal] = STATE(801), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2323), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2323), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym__spread_record] = STATE(7438), - [sym_record_entry] = STATE(7218), - [sym__record_key] = STATE(7605), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7479), + [sym_cmd_identifier] = STATE(4385), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym_parameter_pipes] = STATE(117), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1967), + [sym__spread_parenthesized] = STATE(7377), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym__spread_variable] = STATE(7424), + [sym_val_variable] = STATE(1404), + [sym_val_number] = STATE(2398), + [sym__val_number_decimal] = STATE(779), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2398), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2398), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym__spread_record] = STATE(7377), + [sym_record_entry] = STATE(6717), + [sym__record_key] = STATE(7701), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(28), - [aux_sym_shebang_repeat1] = STATE(198), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), + [aux_sym_shebang_repeat1] = STATE(199), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), [aux_sym_record_body_repeat1] = STATE(208), - [anon_sym_export] = ACTIONS(255), - [anon_sym_alias] = ACTIONS(257), - [anon_sym_let] = ACTIONS(259), - [anon_sym_let_DASHenv] = ACTIONS(259), - [anon_sym_mut] = ACTIONS(261), - [anon_sym_const] = ACTIONS(263), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(137), - [aux_sym_cmd_identifier_token3] = ACTIONS(137), - [aux_sym_cmd_identifier_token4] = ACTIONS(137), - [aux_sym_cmd_identifier_token5] = ACTIONS(137), - [aux_sym_cmd_identifier_token6] = ACTIONS(137), - [aux_sym_cmd_identifier_token7] = ACTIONS(137), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(137), - [aux_sym_cmd_identifier_token11] = ACTIONS(137), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(137), - [aux_sym_cmd_identifier_token17] = ACTIONS(137), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(137), - [aux_sym_cmd_identifier_token20] = ACTIONS(137), - [aux_sym_cmd_identifier_token21] = ACTIONS(137), - [aux_sym_cmd_identifier_token22] = ACTIONS(137), - [aux_sym_cmd_identifier_token23] = ACTIONS(137), - [aux_sym_cmd_identifier_token24] = ACTIONS(137), - [aux_sym_cmd_identifier_token25] = ACTIONS(137), - [aux_sym_cmd_identifier_token26] = ACTIONS(137), - [aux_sym_cmd_identifier_token27] = ACTIONS(137), - [aux_sym_cmd_identifier_token28] = ACTIONS(137), - [aux_sym_cmd_identifier_token29] = ACTIONS(137), - [aux_sym_cmd_identifier_token30] = ACTIONS(137), - [aux_sym_cmd_identifier_token31] = ACTIONS(137), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(137), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(137), - [aux_sym_cmd_identifier_token36] = ACTIONS(137), - [aux_sym_cmd_identifier_token37] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(135), - [aux_sym_cmd_identifier_token39] = ACTIONS(137), - [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(265), - [anon_sym_export_DASHenv] = ACTIONS(267), - [anon_sym_extern] = ACTIONS(269), - [anon_sym_module] = ACTIONS(271), - [anon_sym_use] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(277), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in2] = ACTIONS(285), - [anon_sym_loop] = ACTIONS(287), - [anon_sym_make] = ACTIONS(285), - [anon_sym_while] = ACTIONS(289), - [anon_sym_do] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_else] = ACTIONS(285), - [anon_sym_match] = ACTIONS(295), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(299), - [anon_sym_catch] = ACTIONS(285), - [anon_sym_return] = ACTIONS(301), - [anon_sym_source] = ACTIONS(303), - [anon_sym_source_DASHenv] = ACTIONS(303), - [anon_sym_register] = ACTIONS(305), - [anon_sym_hide] = ACTIONS(307), - [anon_sym_hide_DASHenv] = ACTIONS(309), - [anon_sym_overlay] = ACTIONS(311), - [anon_sym_as] = ACTIONS(285), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [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(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_PLUS2] = ACTIONS(203), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(215), + [aux_sym__val_number_decimal_token2] = ACTIONS(217), + [aux_sym__val_number_decimal_token3] = ACTIONS(219), + [aux_sym__val_number_decimal_token4] = ACTIONS(221), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_register] = ACTIONS(281), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [29] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7749), - [sym_cmd_identifier] = STATE(4307), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym_parameter_pipes] = STATE(97), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1974), - [sym__spread_parenthesized] = STATE(7438), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym__spread_variable] = STATE(7458), - [sym_val_variable] = STATE(1437), - [sym_val_number] = STATE(2323), - [sym__val_number_decimal] = STATE(801), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2323), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2323), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym__spread_record] = STATE(7438), - [sym_record_entry] = STATE(7218), - [sym__record_key] = STATE(7605), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7461), + [sym_cmd_identifier] = STATE(4385), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym_parameter_pipes] = STATE(119), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1967), + [sym__spread_parenthesized] = STATE(7377), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym__spread_variable] = STATE(7424), + [sym_val_variable] = STATE(1404), + [sym_val_number] = STATE(2398), + [sym__val_number_decimal] = STATE(779), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2398), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2398), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym__spread_record] = STATE(7377), + [sym_record_entry] = STATE(6717), + [sym__record_key] = STATE(7701), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(29), - [aux_sym_shebang_repeat1] = STATE(198), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), + [aux_sym_shebang_repeat1] = STATE(199), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), [aux_sym_record_body_repeat1] = STATE(208), - [anon_sym_export] = ACTIONS(255), - [anon_sym_alias] = ACTIONS(257), - [anon_sym_let] = ACTIONS(259), - [anon_sym_let_DASHenv] = ACTIONS(259), - [anon_sym_mut] = ACTIONS(261), - [anon_sym_const] = ACTIONS(263), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(137), - [aux_sym_cmd_identifier_token3] = ACTIONS(137), - [aux_sym_cmd_identifier_token4] = ACTIONS(137), - [aux_sym_cmd_identifier_token5] = ACTIONS(137), - [aux_sym_cmd_identifier_token6] = ACTIONS(137), - [aux_sym_cmd_identifier_token7] = ACTIONS(137), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(137), - [aux_sym_cmd_identifier_token11] = ACTIONS(137), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(137), - [aux_sym_cmd_identifier_token17] = ACTIONS(137), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(137), - [aux_sym_cmd_identifier_token20] = ACTIONS(137), - [aux_sym_cmd_identifier_token21] = ACTIONS(137), - [aux_sym_cmd_identifier_token22] = ACTIONS(137), - [aux_sym_cmd_identifier_token23] = ACTIONS(137), - [aux_sym_cmd_identifier_token24] = ACTIONS(137), - [aux_sym_cmd_identifier_token25] = ACTIONS(137), - [aux_sym_cmd_identifier_token26] = ACTIONS(137), - [aux_sym_cmd_identifier_token27] = ACTIONS(137), - [aux_sym_cmd_identifier_token28] = ACTIONS(137), - [aux_sym_cmd_identifier_token29] = ACTIONS(137), - [aux_sym_cmd_identifier_token30] = ACTIONS(137), - [aux_sym_cmd_identifier_token31] = ACTIONS(137), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(137), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(137), - [aux_sym_cmd_identifier_token36] = ACTIONS(137), - [aux_sym_cmd_identifier_token37] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(135), - [aux_sym_cmd_identifier_token39] = ACTIONS(137), - [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(265), - [anon_sym_export_DASHenv] = ACTIONS(267), - [anon_sym_extern] = ACTIONS(269), - [anon_sym_module] = ACTIONS(271), - [anon_sym_use] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(277), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in2] = ACTIONS(285), - [anon_sym_loop] = ACTIONS(287), - [anon_sym_make] = ACTIONS(285), - [anon_sym_while] = ACTIONS(289), - [anon_sym_do] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_else] = ACTIONS(285), - [anon_sym_match] = ACTIONS(295), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(299), - [anon_sym_catch] = ACTIONS(285), - [anon_sym_return] = ACTIONS(301), - [anon_sym_source] = ACTIONS(303), - [anon_sym_source_DASHenv] = ACTIONS(303), - [anon_sym_register] = ACTIONS(305), - [anon_sym_hide] = ACTIONS(307), - [anon_sym_hide_DASHenv] = ACTIONS(309), - [anon_sym_overlay] = ACTIONS(311), - [anon_sym_as] = ACTIONS(285), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [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(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_PLUS2] = ACTIONS(203), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(215), + [aux_sym__val_number_decimal_token2] = ACTIONS(217), + [aux_sym__val_number_decimal_token3] = ACTIONS(219), + [aux_sym__val_number_decimal_token4] = ACTIONS(221), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_register] = ACTIONS(281), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [30] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7533), - [sym_cmd_identifier] = STATE(4307), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym_parameter_pipes] = STATE(123), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1974), - [sym__spread_parenthesized] = STATE(7438), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym__spread_variable] = STATE(7458), - [sym_val_variable] = STATE(1437), - [sym_val_number] = STATE(2323), - [sym__val_number_decimal] = STATE(801), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2323), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2323), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym__spread_record] = STATE(7438), - [sym_record_entry] = STATE(7218), - [sym__record_key] = STATE(7605), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7730), + [sym_cmd_identifier] = STATE(4385), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym_parameter_pipes] = STATE(121), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1967), + [sym__spread_parenthesized] = STATE(7377), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym__spread_variable] = STATE(7424), + [sym_val_variable] = STATE(1404), + [sym_val_number] = STATE(2398), + [sym__val_number_decimal] = STATE(779), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2398), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2398), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym__spread_record] = STATE(7377), + [sym_record_entry] = STATE(6717), + [sym__record_key] = STATE(7701), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(30), - [aux_sym_shebang_repeat1] = STATE(198), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), + [aux_sym_shebang_repeat1] = STATE(199), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), [aux_sym_record_body_repeat1] = STATE(208), - [anon_sym_export] = ACTIONS(255), - [anon_sym_alias] = ACTIONS(257), - [anon_sym_let] = ACTIONS(259), - [anon_sym_let_DASHenv] = ACTIONS(259), - [anon_sym_mut] = ACTIONS(261), - [anon_sym_const] = ACTIONS(263), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(137), - [aux_sym_cmd_identifier_token3] = ACTIONS(137), - [aux_sym_cmd_identifier_token4] = ACTIONS(137), - [aux_sym_cmd_identifier_token5] = ACTIONS(137), - [aux_sym_cmd_identifier_token6] = ACTIONS(137), - [aux_sym_cmd_identifier_token7] = ACTIONS(137), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(137), - [aux_sym_cmd_identifier_token11] = ACTIONS(137), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(137), - [aux_sym_cmd_identifier_token17] = ACTIONS(137), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(137), - [aux_sym_cmd_identifier_token20] = ACTIONS(137), - [aux_sym_cmd_identifier_token21] = ACTIONS(137), - [aux_sym_cmd_identifier_token22] = ACTIONS(137), - [aux_sym_cmd_identifier_token23] = ACTIONS(137), - [aux_sym_cmd_identifier_token24] = ACTIONS(137), - [aux_sym_cmd_identifier_token25] = ACTIONS(137), - [aux_sym_cmd_identifier_token26] = ACTIONS(137), - [aux_sym_cmd_identifier_token27] = ACTIONS(137), - [aux_sym_cmd_identifier_token28] = ACTIONS(137), - [aux_sym_cmd_identifier_token29] = ACTIONS(137), - [aux_sym_cmd_identifier_token30] = ACTIONS(137), - [aux_sym_cmd_identifier_token31] = ACTIONS(137), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(137), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(137), - [aux_sym_cmd_identifier_token36] = ACTIONS(137), - [aux_sym_cmd_identifier_token37] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(135), - [aux_sym_cmd_identifier_token39] = ACTIONS(137), - [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(265), - [anon_sym_export_DASHenv] = ACTIONS(267), - [anon_sym_extern] = ACTIONS(269), - [anon_sym_module] = ACTIONS(271), - [anon_sym_use] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(277), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in2] = ACTIONS(285), - [anon_sym_loop] = ACTIONS(287), - [anon_sym_make] = ACTIONS(285), - [anon_sym_while] = ACTIONS(289), - [anon_sym_do] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_else] = ACTIONS(285), - [anon_sym_match] = ACTIONS(295), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(299), - [anon_sym_catch] = ACTIONS(285), - [anon_sym_return] = ACTIONS(301), - [anon_sym_source] = ACTIONS(303), - [anon_sym_source_DASHenv] = ACTIONS(303), - [anon_sym_register] = ACTIONS(305), - [anon_sym_hide] = ACTIONS(307), - [anon_sym_hide_DASHenv] = ACTIONS(309), - [anon_sym_overlay] = ACTIONS(311), - [anon_sym_as] = ACTIONS(285), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [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(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_PLUS2] = ACTIONS(203), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(215), + [aux_sym__val_number_decimal_token2] = ACTIONS(217), + [aux_sym__val_number_decimal_token3] = ACTIONS(219), + [aux_sym__val_number_decimal_token4] = ACTIONS(221), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_register] = ACTIONS(281), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [31] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7545), - [sym_cmd_identifier] = STATE(4307), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7578), + [sym_cmd_identifier] = STATE(4385), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), [sym_parameter_pipes] = STATE(115), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1974), - [sym__spread_parenthesized] = STATE(7438), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym__spread_variable] = STATE(7458), - [sym_val_variable] = STATE(1437), - [sym_val_number] = STATE(2323), - [sym__val_number_decimal] = STATE(801), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2323), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2323), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym__spread_record] = STATE(7438), - [sym_record_entry] = STATE(7218), - [sym__record_key] = STATE(7605), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1967), + [sym__spread_parenthesized] = STATE(7377), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym__spread_variable] = STATE(7424), + [sym_val_variable] = STATE(1404), + [sym_val_number] = STATE(2398), + [sym__val_number_decimal] = STATE(779), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2398), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2398), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym__spread_record] = STATE(7377), + [sym_record_entry] = STATE(6717), + [sym__record_key] = STATE(7701), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(31), - [aux_sym_shebang_repeat1] = STATE(198), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), + [aux_sym_shebang_repeat1] = STATE(199), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), [aux_sym_record_body_repeat1] = STATE(208), - [anon_sym_export] = ACTIONS(255), - [anon_sym_alias] = ACTIONS(257), - [anon_sym_let] = ACTIONS(259), - [anon_sym_let_DASHenv] = ACTIONS(259), - [anon_sym_mut] = ACTIONS(261), - [anon_sym_const] = ACTIONS(263), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(137), - [aux_sym_cmd_identifier_token3] = ACTIONS(137), - [aux_sym_cmd_identifier_token4] = ACTIONS(137), - [aux_sym_cmd_identifier_token5] = ACTIONS(137), - [aux_sym_cmd_identifier_token6] = ACTIONS(137), - [aux_sym_cmd_identifier_token7] = ACTIONS(137), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(137), - [aux_sym_cmd_identifier_token11] = ACTIONS(137), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(137), - [aux_sym_cmd_identifier_token17] = ACTIONS(137), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(137), - [aux_sym_cmd_identifier_token20] = ACTIONS(137), - [aux_sym_cmd_identifier_token21] = ACTIONS(137), - [aux_sym_cmd_identifier_token22] = ACTIONS(137), - [aux_sym_cmd_identifier_token23] = ACTIONS(137), - [aux_sym_cmd_identifier_token24] = ACTIONS(137), - [aux_sym_cmd_identifier_token25] = ACTIONS(137), - [aux_sym_cmd_identifier_token26] = ACTIONS(137), - [aux_sym_cmd_identifier_token27] = ACTIONS(137), - [aux_sym_cmd_identifier_token28] = ACTIONS(137), - [aux_sym_cmd_identifier_token29] = ACTIONS(137), - [aux_sym_cmd_identifier_token30] = ACTIONS(137), - [aux_sym_cmd_identifier_token31] = ACTIONS(137), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(137), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(137), - [aux_sym_cmd_identifier_token36] = ACTIONS(137), - [aux_sym_cmd_identifier_token37] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(135), - [aux_sym_cmd_identifier_token39] = ACTIONS(137), - [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(265), - [anon_sym_export_DASHenv] = ACTIONS(267), - [anon_sym_extern] = ACTIONS(269), - [anon_sym_module] = ACTIONS(271), - [anon_sym_use] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(277), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in2] = ACTIONS(285), - [anon_sym_loop] = ACTIONS(287), - [anon_sym_make] = ACTIONS(285), - [anon_sym_while] = ACTIONS(289), - [anon_sym_do] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_else] = ACTIONS(285), - [anon_sym_match] = ACTIONS(295), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(299), - [anon_sym_catch] = ACTIONS(285), - [anon_sym_return] = ACTIONS(301), - [anon_sym_source] = ACTIONS(303), - [anon_sym_source_DASHenv] = ACTIONS(303), - [anon_sym_register] = ACTIONS(305), - [anon_sym_hide] = ACTIONS(307), - [anon_sym_hide_DASHenv] = ACTIONS(309), - [anon_sym_overlay] = ACTIONS(311), - [anon_sym_as] = ACTIONS(285), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [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(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_PLUS2] = ACTIONS(203), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(215), + [aux_sym__val_number_decimal_token2] = ACTIONS(217), + [aux_sym__val_number_decimal_token3] = ACTIONS(219), + [aux_sym__val_number_decimal_token4] = ACTIONS(221), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_register] = ACTIONS(281), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [32] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7683), - [sym_cmd_identifier] = STATE(4307), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym_parameter_pipes] = STATE(125), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1974), - [sym__spread_parenthesized] = STATE(7438), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym__spread_variable] = STATE(7458), - [sym_val_variable] = STATE(1437), - [sym_val_number] = STATE(2323), - [sym__val_number_decimal] = STATE(801), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2323), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2323), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym__spread_record] = STATE(7438), - [sym_record_entry] = STATE(7218), - [sym__record_key] = STATE(7605), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7563), + [sym_cmd_identifier] = STATE(4385), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym_parameter_pipes] = STATE(127), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1967), + [sym__spread_parenthesized] = STATE(7377), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym__spread_variable] = STATE(7424), + [sym_val_variable] = STATE(1404), + [sym_val_number] = STATE(2398), + [sym__val_number_decimal] = STATE(779), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2398), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2398), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym__spread_record] = STATE(7377), + [sym_record_entry] = STATE(6717), + [sym__record_key] = STATE(7701), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(32), - [aux_sym_shebang_repeat1] = STATE(198), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), + [aux_sym_shebang_repeat1] = STATE(199), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), [aux_sym_record_body_repeat1] = STATE(208), - [anon_sym_export] = ACTIONS(255), - [anon_sym_alias] = ACTIONS(257), - [anon_sym_let] = ACTIONS(259), - [anon_sym_let_DASHenv] = ACTIONS(259), - [anon_sym_mut] = ACTIONS(261), - [anon_sym_const] = ACTIONS(263), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(137), - [aux_sym_cmd_identifier_token3] = ACTIONS(137), - [aux_sym_cmd_identifier_token4] = ACTIONS(137), - [aux_sym_cmd_identifier_token5] = ACTIONS(137), - [aux_sym_cmd_identifier_token6] = ACTIONS(137), - [aux_sym_cmd_identifier_token7] = ACTIONS(137), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(137), - [aux_sym_cmd_identifier_token11] = ACTIONS(137), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(137), - [aux_sym_cmd_identifier_token17] = ACTIONS(137), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(137), - [aux_sym_cmd_identifier_token20] = ACTIONS(137), - [aux_sym_cmd_identifier_token21] = ACTIONS(137), - [aux_sym_cmd_identifier_token22] = ACTIONS(137), - [aux_sym_cmd_identifier_token23] = ACTIONS(137), - [aux_sym_cmd_identifier_token24] = ACTIONS(137), - [aux_sym_cmd_identifier_token25] = ACTIONS(137), - [aux_sym_cmd_identifier_token26] = ACTIONS(137), - [aux_sym_cmd_identifier_token27] = ACTIONS(137), - [aux_sym_cmd_identifier_token28] = ACTIONS(137), - [aux_sym_cmd_identifier_token29] = ACTIONS(137), - [aux_sym_cmd_identifier_token30] = ACTIONS(137), - [aux_sym_cmd_identifier_token31] = ACTIONS(137), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(137), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(137), - [aux_sym_cmd_identifier_token36] = ACTIONS(137), - [aux_sym_cmd_identifier_token37] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(135), - [aux_sym_cmd_identifier_token39] = ACTIONS(137), - [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(265), - [anon_sym_export_DASHenv] = ACTIONS(267), - [anon_sym_extern] = ACTIONS(269), - [anon_sym_module] = ACTIONS(271), - [anon_sym_use] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(277), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in2] = ACTIONS(285), - [anon_sym_loop] = ACTIONS(287), - [anon_sym_make] = ACTIONS(285), - [anon_sym_while] = ACTIONS(289), - [anon_sym_do] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_else] = ACTIONS(285), - [anon_sym_match] = ACTIONS(295), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(299), - [anon_sym_catch] = ACTIONS(285), - [anon_sym_return] = ACTIONS(301), - [anon_sym_source] = ACTIONS(303), - [anon_sym_source_DASHenv] = ACTIONS(303), - [anon_sym_register] = ACTIONS(305), - [anon_sym_hide] = ACTIONS(307), - [anon_sym_hide_DASHenv] = ACTIONS(309), - [anon_sym_overlay] = ACTIONS(311), - [anon_sym_as] = ACTIONS(285), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [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(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_PLUS2] = ACTIONS(203), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(215), + [aux_sym__val_number_decimal_token2] = ACTIONS(217), + [aux_sym__val_number_decimal_token3] = ACTIONS(219), + [aux_sym__val_number_decimal_token4] = ACTIONS(221), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_register] = ACTIONS(281), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [33] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7713), - [sym_cmd_identifier] = STATE(4307), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym_parameter_pipes] = STATE(127), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1974), - [sym__spread_parenthesized] = STATE(7438), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym__spread_variable] = STATE(7458), - [sym_val_variable] = STATE(1437), - [sym_val_number] = STATE(2323), - [sym__val_number_decimal] = STATE(801), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2323), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2323), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym__spread_record] = STATE(7438), - [sym_record_entry] = STATE(7218), - [sym__record_key] = STATE(7605), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7707), + [sym_cmd_identifier] = STATE(4385), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym_parameter_pipes] = STATE(129), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1967), + [sym__spread_parenthesized] = STATE(7377), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym__spread_variable] = STATE(7424), + [sym_val_variable] = STATE(1404), + [sym_val_number] = STATE(2398), + [sym__val_number_decimal] = STATE(779), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2398), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2398), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym__spread_record] = STATE(7377), + [sym_record_entry] = STATE(6717), + [sym__record_key] = STATE(7701), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(33), - [aux_sym_shebang_repeat1] = STATE(198), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), + [aux_sym_shebang_repeat1] = STATE(199), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), [aux_sym_record_body_repeat1] = STATE(208), - [anon_sym_export] = ACTIONS(255), - [anon_sym_alias] = ACTIONS(257), - [anon_sym_let] = ACTIONS(259), - [anon_sym_let_DASHenv] = ACTIONS(259), - [anon_sym_mut] = ACTIONS(261), - [anon_sym_const] = ACTIONS(263), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(137), - [aux_sym_cmd_identifier_token3] = ACTIONS(137), - [aux_sym_cmd_identifier_token4] = ACTIONS(137), - [aux_sym_cmd_identifier_token5] = ACTIONS(137), - [aux_sym_cmd_identifier_token6] = ACTIONS(137), - [aux_sym_cmd_identifier_token7] = ACTIONS(137), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(137), - [aux_sym_cmd_identifier_token11] = ACTIONS(137), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(137), - [aux_sym_cmd_identifier_token17] = ACTIONS(137), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(137), - [aux_sym_cmd_identifier_token20] = ACTIONS(137), - [aux_sym_cmd_identifier_token21] = ACTIONS(137), - [aux_sym_cmd_identifier_token22] = ACTIONS(137), - [aux_sym_cmd_identifier_token23] = ACTIONS(137), - [aux_sym_cmd_identifier_token24] = ACTIONS(137), - [aux_sym_cmd_identifier_token25] = ACTIONS(137), - [aux_sym_cmd_identifier_token26] = ACTIONS(137), - [aux_sym_cmd_identifier_token27] = ACTIONS(137), - [aux_sym_cmd_identifier_token28] = ACTIONS(137), - [aux_sym_cmd_identifier_token29] = ACTIONS(137), - [aux_sym_cmd_identifier_token30] = ACTIONS(137), - [aux_sym_cmd_identifier_token31] = ACTIONS(137), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(137), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(137), - [aux_sym_cmd_identifier_token36] = ACTIONS(137), - [aux_sym_cmd_identifier_token37] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(135), - [aux_sym_cmd_identifier_token39] = ACTIONS(137), - [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(265), - [anon_sym_export_DASHenv] = ACTIONS(267), - [anon_sym_extern] = ACTIONS(269), - [anon_sym_module] = ACTIONS(271), - [anon_sym_use] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(277), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in2] = ACTIONS(285), - [anon_sym_loop] = ACTIONS(287), - [anon_sym_make] = ACTIONS(285), - [anon_sym_while] = ACTIONS(289), - [anon_sym_do] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_else] = ACTIONS(285), - [anon_sym_match] = ACTIONS(295), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(299), - [anon_sym_catch] = ACTIONS(285), - [anon_sym_return] = ACTIONS(301), - [anon_sym_source] = ACTIONS(303), - [anon_sym_source_DASHenv] = ACTIONS(303), - [anon_sym_register] = ACTIONS(305), - [anon_sym_hide] = ACTIONS(307), - [anon_sym_hide_DASHenv] = ACTIONS(309), - [anon_sym_overlay] = ACTIONS(311), - [anon_sym_as] = ACTIONS(285), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [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(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_PLUS2] = ACTIONS(203), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(215), + [aux_sym__val_number_decimal_token2] = ACTIONS(217), + [aux_sym__val_number_decimal_token3] = ACTIONS(219), + [aux_sym__val_number_decimal_token4] = ACTIONS(221), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_register] = ACTIONS(281), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [34] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7673), - [sym_cmd_identifier] = STATE(4307), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym_parameter_pipes] = STATE(129), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1974), - [sym__spread_parenthesized] = STATE(7438), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym__spread_variable] = STATE(7458), - [sym_val_variable] = STATE(1437), - [sym_val_number] = STATE(2323), - [sym__val_number_decimal] = STATE(801), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2323), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2323), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym__spread_record] = STATE(7438), - [sym_record_entry] = STATE(7218), - [sym__record_key] = STATE(7605), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7486), + [sym_cmd_identifier] = STATE(4385), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym_parameter_pipes] = STATE(97), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1967), + [sym__spread_parenthesized] = STATE(7377), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym__spread_variable] = STATE(7424), + [sym_val_variable] = STATE(1404), + [sym_val_number] = STATE(2398), + [sym__val_number_decimal] = STATE(779), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2398), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2398), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym__spread_record] = STATE(7377), + [sym_record_entry] = STATE(6717), + [sym__record_key] = STATE(7701), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(34), - [aux_sym_shebang_repeat1] = STATE(198), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), + [aux_sym_shebang_repeat1] = STATE(199), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), [aux_sym_record_body_repeat1] = STATE(208), - [anon_sym_export] = ACTIONS(255), - [anon_sym_alias] = ACTIONS(257), - [anon_sym_let] = ACTIONS(259), - [anon_sym_let_DASHenv] = ACTIONS(259), - [anon_sym_mut] = ACTIONS(261), - [anon_sym_const] = ACTIONS(263), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(137), - [aux_sym_cmd_identifier_token3] = ACTIONS(137), - [aux_sym_cmd_identifier_token4] = ACTIONS(137), - [aux_sym_cmd_identifier_token5] = ACTIONS(137), - [aux_sym_cmd_identifier_token6] = ACTIONS(137), - [aux_sym_cmd_identifier_token7] = ACTIONS(137), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(137), - [aux_sym_cmd_identifier_token11] = ACTIONS(137), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(137), - [aux_sym_cmd_identifier_token17] = ACTIONS(137), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(137), - [aux_sym_cmd_identifier_token20] = ACTIONS(137), - [aux_sym_cmd_identifier_token21] = ACTIONS(137), - [aux_sym_cmd_identifier_token22] = ACTIONS(137), - [aux_sym_cmd_identifier_token23] = ACTIONS(137), - [aux_sym_cmd_identifier_token24] = ACTIONS(137), - [aux_sym_cmd_identifier_token25] = ACTIONS(137), - [aux_sym_cmd_identifier_token26] = ACTIONS(137), - [aux_sym_cmd_identifier_token27] = ACTIONS(137), - [aux_sym_cmd_identifier_token28] = ACTIONS(137), - [aux_sym_cmd_identifier_token29] = ACTIONS(137), - [aux_sym_cmd_identifier_token30] = ACTIONS(137), - [aux_sym_cmd_identifier_token31] = ACTIONS(137), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(137), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(137), - [aux_sym_cmd_identifier_token36] = ACTIONS(137), - [aux_sym_cmd_identifier_token37] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(135), - [aux_sym_cmd_identifier_token39] = ACTIONS(137), - [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(265), - [anon_sym_export_DASHenv] = ACTIONS(267), - [anon_sym_extern] = ACTIONS(269), - [anon_sym_module] = ACTIONS(271), - [anon_sym_use] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(277), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in2] = ACTIONS(285), - [anon_sym_loop] = ACTIONS(287), - [anon_sym_make] = ACTIONS(285), - [anon_sym_while] = ACTIONS(289), - [anon_sym_do] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_else] = ACTIONS(285), - [anon_sym_match] = ACTIONS(295), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(299), - [anon_sym_catch] = ACTIONS(285), - [anon_sym_return] = ACTIONS(301), - [anon_sym_source] = ACTIONS(303), - [anon_sym_source_DASHenv] = ACTIONS(303), - [anon_sym_register] = ACTIONS(305), - [anon_sym_hide] = ACTIONS(307), - [anon_sym_hide_DASHenv] = ACTIONS(309), - [anon_sym_overlay] = ACTIONS(311), - [anon_sym_as] = ACTIONS(285), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [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(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_PLUS2] = ACTIONS(203), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(215), + [aux_sym__val_number_decimal_token2] = ACTIONS(217), + [aux_sym__val_number_decimal_token3] = ACTIONS(219), + [aux_sym__val_number_decimal_token4] = ACTIONS(221), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_register] = ACTIONS(281), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [35] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7567), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym_parameter_pipes] = STATE(111), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1487), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7457), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym_parameter_pipes] = STATE(114), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1429), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(792), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(35), [aux_sym_shebang_repeat1] = STATE(44), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), - [anon_sym_export] = ACTIONS(355), - [anon_sym_alias] = ACTIONS(357), - [anon_sym_let] = ACTIONS(359), - [anon_sym_let_DASHenv] = ACTIONS(359), - [anon_sym_mut] = ACTIONS(361), - [anon_sym_const] = ACTIONS(363), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(369), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(401), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(417), - [aux_sym__val_number_decimal_token2] = ACTIONS(419), - [aux_sym__val_number_decimal_token3] = ACTIONS(421), - [aux_sym__val_number_decimal_token4] = ACTIONS(423), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), + [anon_sym_export] = ACTIONS(349), + [anon_sym_alias] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_let_DASHenv] = ACTIONS(353), + [anon_sym_mut] = ACTIONS(355), + [anon_sym_const] = ACTIONS(357), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(363), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(391), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(395), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(409), + [aux_sym__val_number_decimal_token2] = ACTIONS(411), + [aux_sym__val_number_decimal_token3] = ACTIONS(413), + [aux_sym__val_number_decimal_token4] = ACTIONS(415), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [36] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7823), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym_parameter_pipes] = STATE(109), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1487), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7660), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym_parameter_pipes] = STATE(110), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1429), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(792), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(36), [aux_sym_shebang_repeat1] = STATE(43), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), - [anon_sym_export] = ACTIONS(355), - [anon_sym_alias] = ACTIONS(357), - [anon_sym_let] = ACTIONS(359), - [anon_sym_let_DASHenv] = ACTIONS(359), - [anon_sym_mut] = ACTIONS(361), - [anon_sym_const] = ACTIONS(363), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(369), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(425), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(417), - [aux_sym__val_number_decimal_token2] = ACTIONS(419), - [aux_sym__val_number_decimal_token3] = ACTIONS(421), - [aux_sym__val_number_decimal_token4] = ACTIONS(423), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), + [anon_sym_export] = ACTIONS(349), + [anon_sym_alias] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_let_DASHenv] = ACTIONS(353), + [anon_sym_mut] = ACTIONS(355), + [anon_sym_const] = ACTIONS(357), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(363), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(391), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(417), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(409), + [aux_sym__val_number_decimal_token2] = ACTIONS(411), + [aux_sym__val_number_decimal_token3] = ACTIONS(413), + [aux_sym__val_number_decimal_token4] = ACTIONS(415), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [37] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7759), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym_parameter_pipes] = STATE(130), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1487), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7755), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym_parameter_pipes] = STATE(99), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1429), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(792), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(37), [aux_sym_shebang_repeat1] = STATE(42), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), - [anon_sym_export] = ACTIONS(355), - [anon_sym_alias] = ACTIONS(357), - [anon_sym_let] = ACTIONS(359), - [anon_sym_let_DASHenv] = ACTIONS(359), - [anon_sym_mut] = ACTIONS(361), - [anon_sym_const] = ACTIONS(363), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(369), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(427), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(417), - [aux_sym__val_number_decimal_token2] = ACTIONS(419), - [aux_sym__val_number_decimal_token3] = ACTIONS(421), - [aux_sym__val_number_decimal_token4] = ACTIONS(423), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), + [anon_sym_export] = ACTIONS(349), + [anon_sym_alias] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_let_DASHenv] = ACTIONS(353), + [anon_sym_mut] = ACTIONS(355), + [anon_sym_const] = ACTIONS(357), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(363), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(391), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(409), + [aux_sym__val_number_decimal_token2] = ACTIONS(411), + [aux_sym__val_number_decimal_token3] = ACTIONS(413), + [aux_sym__val_number_decimal_token4] = ACTIONS(415), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [38] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7661), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym_parameter_pipes] = STATE(102), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1487), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7540), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym_parameter_pipes] = STATE(112), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1429), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(792), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(38), - [aux_sym_shebang_repeat1] = STATE(41), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), - [anon_sym_export] = ACTIONS(355), - [anon_sym_alias] = ACTIONS(357), - [anon_sym_let] = ACTIONS(359), - [anon_sym_let_DASHenv] = ACTIONS(359), - [anon_sym_mut] = ACTIONS(361), - [anon_sym_const] = ACTIONS(363), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(369), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(429), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(417), - [aux_sym__val_number_decimal_token2] = ACTIONS(419), - [aux_sym__val_number_decimal_token3] = ACTIONS(421), - [aux_sym__val_number_decimal_token4] = ACTIONS(423), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(39), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), + [anon_sym_export] = ACTIONS(349), + [anon_sym_alias] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_let_DASHenv] = ACTIONS(353), + [anon_sym_mut] = ACTIONS(355), + [anon_sym_const] = ACTIONS(357), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(363), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(391), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(421), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(409), + [aux_sym__val_number_decimal_token2] = ACTIONS(411), + [aux_sym__val_number_decimal_token3] = ACTIONS(413), + [aux_sym__val_number_decimal_token4] = ACTIONS(415), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [39] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7860), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym_parameter_pipes] = STATE(109), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1487), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7714), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym_parameter_pipes] = STATE(113), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1429), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(792), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(39), - [aux_sym_shebang_repeat1] = STATE(43), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), - [anon_sym_export] = ACTIONS(355), - [anon_sym_alias] = ACTIONS(357), - [anon_sym_let] = ACTIONS(359), - [anon_sym_let_DASHenv] = ACTIONS(359), - [anon_sym_mut] = ACTIONS(361), - [anon_sym_const] = ACTIONS(363), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(369), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(417), - [aux_sym__val_number_decimal_token2] = ACTIONS(419), - [aux_sym__val_number_decimal_token3] = ACTIONS(421), - [aux_sym__val_number_decimal_token4] = ACTIONS(423), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(313), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), + [anon_sym_export] = ACTIONS(349), + [anon_sym_alias] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_let_DASHenv] = ACTIONS(353), + [anon_sym_mut] = ACTIONS(355), + [anon_sym_const] = ACTIONS(357), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(363), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(391), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(409), + [aux_sym__val_number_decimal_token2] = ACTIONS(411), + [aux_sym__val_number_decimal_token3] = ACTIONS(413), + [aux_sym__val_number_decimal_token4] = ACTIONS(415), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [40] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7611), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym_parameter_pipes] = STATE(102), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1487), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7834), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym_parameter_pipes] = STATE(110), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1429), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(792), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(40), - [aux_sym_shebang_repeat1] = STATE(41), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), - [anon_sym_export] = ACTIONS(355), - [anon_sym_alias] = ACTIONS(357), - [anon_sym_let] = ACTIONS(359), - [anon_sym_let_DASHenv] = ACTIONS(359), - [anon_sym_mut] = ACTIONS(361), - [anon_sym_const] = ACTIONS(363), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(369), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(417), - [aux_sym__val_number_decimal_token2] = ACTIONS(419), - [aux_sym__val_number_decimal_token3] = ACTIONS(421), - [aux_sym__val_number_decimal_token4] = ACTIONS(423), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(43), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), + [anon_sym_export] = ACTIONS(349), + [anon_sym_alias] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_let_DASHenv] = ACTIONS(353), + [anon_sym_mut] = ACTIONS(355), + [anon_sym_const] = ACTIONS(357), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(363), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(391), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(409), + [aux_sym__val_number_decimal_token2] = ACTIONS(411), + [aux_sym__val_number_decimal_token3] = ACTIONS(413), + [aux_sym__val_number_decimal_token4] = ACTIONS(415), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [41] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7660), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7480), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), [sym_parameter_pipes] = STATE(99), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1487), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1429), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(792), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(41), - [aux_sym_shebang_repeat1] = STATE(225), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), - [anon_sym_export] = ACTIONS(355), - [anon_sym_alias] = ACTIONS(357), - [anon_sym_let] = ACTIONS(359), - [anon_sym_let_DASHenv] = ACTIONS(359), - [anon_sym_mut] = ACTIONS(361), - [anon_sym_const] = ACTIONS(363), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(369), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(417), - [aux_sym__val_number_decimal_token2] = ACTIONS(419), - [aux_sym__val_number_decimal_token3] = ACTIONS(421), - [aux_sym__val_number_decimal_token4] = ACTIONS(423), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(42), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), + [anon_sym_export] = ACTIONS(349), + [anon_sym_alias] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_let_DASHenv] = ACTIONS(353), + [anon_sym_mut] = ACTIONS(355), + [anon_sym_const] = ACTIONS(357), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(363), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(391), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(409), + [aux_sym__val_number_decimal_token2] = ACTIONS(411), + [aux_sym__val_number_decimal_token3] = ACTIONS(413), + [aux_sym__val_number_decimal_token4] = ACTIONS(415), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [42] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7545), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym_parameter_pipes] = STATE(115), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1487), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7609), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym_parameter_pipes] = STATE(104), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1429), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(792), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(42), - [aux_sym_shebang_repeat1] = STATE(225), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), - [anon_sym_export] = ACTIONS(355), - [anon_sym_alias] = ACTIONS(357), - [anon_sym_let] = ACTIONS(359), - [anon_sym_let_DASHenv] = ACTIONS(359), - [anon_sym_mut] = ACTIONS(361), - [anon_sym_const] = ACTIONS(363), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(369), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(417), - [aux_sym__val_number_decimal_token2] = ACTIONS(419), - [aux_sym__val_number_decimal_token3] = ACTIONS(421), - [aux_sym__val_number_decimal_token4] = ACTIONS(423), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(313), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), + [anon_sym_export] = ACTIONS(349), + [anon_sym_alias] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_let_DASHenv] = ACTIONS(353), + [anon_sym_mut] = ACTIONS(355), + [anon_sym_const] = ACTIONS(357), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(363), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(391), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(409), + [aux_sym__val_number_decimal_token2] = ACTIONS(411), + [aux_sym__val_number_decimal_token3] = ACTIONS(413), + [aux_sym__val_number_decimal_token4] = ACTIONS(415), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [43] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7469), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym_parameter_pipes] = STATE(110), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1487), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7537), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym_parameter_pipes] = STATE(111), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1429), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(792), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(43), - [aux_sym_shebang_repeat1] = STATE(225), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), - [anon_sym_export] = ACTIONS(355), - [anon_sym_alias] = ACTIONS(357), - [anon_sym_let] = ACTIONS(359), - [anon_sym_let_DASHenv] = ACTIONS(359), - [anon_sym_mut] = ACTIONS(361), - [anon_sym_const] = ACTIONS(363), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(369), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(417), - [aux_sym__val_number_decimal_token2] = ACTIONS(419), - [aux_sym__val_number_decimal_token3] = ACTIONS(421), - [aux_sym__val_number_decimal_token4] = ACTIONS(423), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(313), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), + [anon_sym_export] = ACTIONS(349), + [anon_sym_alias] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_let_DASHenv] = ACTIONS(353), + [anon_sym_mut] = ACTIONS(355), + [anon_sym_const] = ACTIONS(357), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(363), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(391), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(409), + [aux_sym__val_number_decimal_token2] = ACTIONS(411), + [aux_sym__val_number_decimal_token3] = ACTIONS(413), + [aux_sym__val_number_decimal_token4] = ACTIONS(415), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [44] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7852), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym_parameter_pipes] = STATE(112), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1487), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7578), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym_parameter_pipes] = STATE(115), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1429), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(792), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(44), - [aux_sym_shebang_repeat1] = STATE(225), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), - [anon_sym_export] = ACTIONS(355), - [anon_sym_alias] = ACTIONS(357), - [anon_sym_let] = ACTIONS(359), - [anon_sym_let_DASHenv] = ACTIONS(359), - [anon_sym_mut] = ACTIONS(361), - [anon_sym_const] = ACTIONS(363), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(369), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(417), - [aux_sym__val_number_decimal_token2] = ACTIONS(419), - [aux_sym__val_number_decimal_token3] = ACTIONS(421), - [aux_sym__val_number_decimal_token4] = ACTIONS(423), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(313), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), + [anon_sym_export] = ACTIONS(349), + [anon_sym_alias] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_let_DASHenv] = ACTIONS(353), + [anon_sym_mut] = ACTIONS(355), + [anon_sym_const] = ACTIONS(357), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(363), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(391), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(409), + [aux_sym__val_number_decimal_token2] = ACTIONS(411), + [aux_sym__val_number_decimal_token3] = ACTIONS(413), + [aux_sym__val_number_decimal_token4] = ACTIONS(415), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [45] = { - [sym__block_body_statement_parenthesized] = STATE(5904), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym__parenthesized_body] = STATE(7663), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), + [sym__block_body_statement_parenthesized] = STATE(5719), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym__parenthesized_body] = STATE(7606), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), [sym_comment] = STATE(45), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(136), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(441), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(457), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(103), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(138), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(433), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_RPAREN2] = ACTIONS(449), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [46] = { - [sym__block_body_statement_parenthesized] = STATE(5904), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym__parenthesized_body] = STATE(7854), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), + [sym__block_body_statement_parenthesized] = STATE(5719), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym__parenthesized_body] = STATE(7824), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), [sym_comment] = STATE(46), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(136), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(473), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(103), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(138), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(463), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_RPAREN2] = ACTIONS(465), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [47] = { - [sym__block_body_statement_parenthesized] = STATE(5904), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym__parenthesized_body] = STATE(7500), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), + [sym__block_body_statement_parenthesized] = STATE(5719), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym__parenthesized_body] = STATE(7469), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), [sym_comment] = STATE(47), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(136), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(475), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(477), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(103), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(138), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(467), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_RPAREN2] = ACTIONS(469), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [48] = { - [sym__block_body_statement_parenthesized] = STATE(5904), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym__parenthesized_body] = STATE(7570), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), + [sym__block_body_statement_parenthesized] = STATE(5719), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym__parenthesized_body] = STATE(7557), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), [sym_comment] = STATE(48), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(136), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(479), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(481), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(103), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(138), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_RPAREN2] = ACTIONS(473), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [49] = { - [sym__block_body_statement_parenthesized] = STATE(5904), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym__parenthesized_body] = STATE(7635), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), + [sym__block_body_statement_parenthesized] = STATE(5719), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym__parenthesized_body] = STATE(7627), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), [sym_comment] = STATE(49), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(136), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(483), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(485), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(103), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(138), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(475), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_RPAREN2] = ACTIONS(477), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [50] = { - [sym__block_body_statement_parenthesized] = STATE(5904), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym__parenthesized_body] = STATE(7689), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), + [sym__block_body_statement_parenthesized] = STATE(5719), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym__parenthesized_body] = STATE(7476), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), [sym_comment] = STATE(50), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(136), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(487), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(489), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(103), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(138), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(479), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_RPAREN2] = ACTIONS(481), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [51] = { - [sym__block_body_statement_parenthesized] = STATE(5904), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym__parenthesized_body] = STATE(7729), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), + [sym__block_body_statement_parenthesized] = STATE(5719), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym__parenthesized_body] = STATE(7681), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), [sym_comment] = STATE(51), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(136), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(491), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(493), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(103), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(138), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(483), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_RPAREN2] = ACTIONS(485), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [52] = { - [sym__block_body_statement_parenthesized] = STATE(5904), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym__parenthesized_body] = STATE(7771), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), + [sym__block_body_statement_parenthesized] = STATE(5719), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym__parenthesized_body] = STATE(7720), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), [sym_comment] = STATE(52), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(136), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(495), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(497), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(103), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(138), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(487), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_RPAREN2] = ACTIONS(489), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [53] = { - [sym__block_body_statement_parenthesized] = STATE(5904), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym__parenthesized_body] = STATE(7742), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), + [sym__block_body_statement_parenthesized] = STATE(5719), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym__parenthesized_body] = STATE(7761), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), [sym_comment] = STATE(53), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(136), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(499), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(501), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(103), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(138), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(491), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_RPAREN2] = ACTIONS(493), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [54] = { - [sym__block_body_statement_parenthesized] = STATE(5904), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym__parenthesized_body] = STATE(7841), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), + [sym__block_body_statement_parenthesized] = STATE(5719), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym__parenthesized_body] = STATE(7821), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), [sym_comment] = STATE(54), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(136), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(503), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(505), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(103), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(138), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(495), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_RPAREN2] = ACTIONS(497), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [55] = { - [sym__block_body_statement_parenthesized] = STATE(5904), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym__parenthesized_body] = STATE(7483), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), + [sym__block_body_statement_parenthesized] = STATE(5719), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym__parenthesized_body] = STATE(7523), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), [sym_comment] = STATE(55), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(136), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(507), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(509), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(103), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(138), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(499), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_RPAREN2] = ACTIONS(481), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [56] = { - [sym__block_body_statement_parenthesized] = STATE(5904), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym__parenthesized_body] = STATE(7480), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), + [sym__block_body_statement_parenthesized] = STATE(5719), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym__parenthesized_body] = STATE(7805), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), [sym_comment] = STATE(56), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(136), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(511), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(501), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(103), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(138), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(501), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_RPAREN2] = ACTIONS(503), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [57] = { - [sym__block_body_statement_parenthesized] = STATE(5904), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym__parenthesized_body] = STATE(7699), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), + [sym__block_body_statement_parenthesized] = STATE(5719), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym__parenthesized_body] = STATE(7651), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), [sym_comment] = STATE(57), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(136), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(513), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(515), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(103), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(138), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(505), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_RPAREN2] = ACTIONS(507), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [58] = { - [sym__block_body_statement_parenthesized] = STATE(5904), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym__parenthesized_body] = STATE(7742), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), + [sym__block_body_statement_parenthesized] = STATE(5719), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym__parenthesized_body] = STATE(7641), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), [sym_comment] = STATE(58), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(136), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(517), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(103), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(138), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [59] = { - [sym__block_body_statement_parenthesized] = STATE(5904), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym__parenthesized_body] = STATE(7615), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), + [sym__block_body_statement_parenthesized] = STATE(5719), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym__parenthesized_body] = STATE(7621), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), [sym_comment] = STATE(59), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(136), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(519), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(103), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(138), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(511), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [60] = { - [sym__block_body_statement_parenthesized] = STATE(5904), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym__parenthesized_body] = STATE(7691), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), + [sym__block_body_statement_parenthesized] = STATE(5719), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym__parenthesized_body] = STATE(7667), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), [sym_comment] = STATE(60), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(136), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(521), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(103), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(138), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(513), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [61] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7488), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1487), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement_parenthesized] = STATE(5719), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym__parenthesized_body] = STATE(7634), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), [sym_comment] = STATE(61), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), - [anon_sym_export] = ACTIONS(355), - [anon_sym_alias] = ACTIONS(357), - [anon_sym_let] = ACTIONS(359), - [anon_sym_let_DASHenv] = ACTIONS(359), - [anon_sym_mut] = ACTIONS(361), - [anon_sym_const] = ACTIONS(363), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(429), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(417), - [aux_sym__val_number_decimal_token2] = ACTIONS(419), - [aux_sym__val_number_decimal_token3] = ACTIONS(421), - [aux_sym__val_number_decimal_token4] = ACTIONS(423), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(103), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(138), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(515), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [62] = { - [sym__block_body_statement_parenthesized] = STATE(5904), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym__parenthesized_body] = STATE(7644), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), + [sym__block_body_statement_parenthesized] = STATE(5719), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym__parenthesized_body] = STATE(7705), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), [sym_comment] = STATE(62), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(136), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(523), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(103), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(138), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [63] = { - [sym__block_body_statement_parenthesized] = STATE(5904), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym__parenthesized_body] = STATE(7727), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), + [sym__block_body_statement_parenthesized] = STATE(5719), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym__parenthesized_body] = STATE(7564), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), [sym_comment] = STATE(63), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(136), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(525), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(103), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(138), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(519), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [64] = { - [sym__block_body_statement_parenthesized] = STATE(5904), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym__parenthesized_body] = STATE(7648), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), + [sym__block_body_statement_parenthesized] = STATE(5719), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym__parenthesized_body] = STATE(7732), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), [sym_comment] = STATE(64), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(136), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(527), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(103), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(138), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(521), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [65] = { - [sym__block_body_statement_parenthesized] = STATE(5904), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym__parenthesized_body] = STATE(7470), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), + [sym__block_body_statement_parenthesized] = STATE(5719), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym__parenthesized_body] = STATE(7824), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), [sym_comment] = STATE(65), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(136), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(529), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(103), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(138), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [66] = { - [sym__block_body_statement_parenthesized] = STATE(5904), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym__parenthesized_body] = STATE(7677), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), + [sym__block_body_statement_parenthesized] = STATE(5719), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym__parenthesized_body] = STATE(7710), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), [sym_comment] = STATE(66), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(136), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(531), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(103), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(138), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(525), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [67] = { - [sym__block_body_statement_parenthesized] = STATE(5904), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym__parenthesized_body] = STATE(7499), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), + [sym__block_body_statement_parenthesized] = STATE(5719), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym__parenthesized_body] = STATE(7471), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), [sym_comment] = STATE(67), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(136), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(533), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(103), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(138), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(527), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [68] = { - [sym__block_body_statement_parenthesized] = STATE(5904), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym__parenthesized_body] = STATE(7604), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), + [sym__block_body_statement_parenthesized] = STATE(5719), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym__parenthesized_body] = STATE(7600), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), [sym_comment] = STATE(68), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(136), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(103), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(138), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(529), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [69] = { - [sym__block_body_statement_parenthesized] = STATE(5904), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym__parenthesized_body] = STATE(7520), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), + [sym__block_body_statement_parenthesized] = STATE(5719), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym__parenthesized_body] = STATE(7488), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), [sym_comment] = STATE(69), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(136), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(537), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(103), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(138), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(531), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [70] = { - [sym__block_body_statement_parenthesized] = STATE(5904), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym__parenthesized_body] = STATE(7480), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), + [sym__block_body_statement_parenthesized] = STATE(5719), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym__parenthesized_body] = STATE(7716), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), [sym_comment] = STATE(70), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(136), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(539), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(103), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(138), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(533), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [71] = { - [sym__block_body_statement_parenthesized] = STATE(5904), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym__parenthesized_body] = STATE(7583), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), + [sym__block_body_statement_parenthesized] = STATE(5719), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym__parenthesized_body] = STATE(7565), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), [sym_comment] = STATE(71), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(136), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(541), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(103), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(138), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(535), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [72] = { - [sym__block_body_statement_parenthesized] = STATE(5904), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym__parenthesized_body] = STATE(7531), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), + [sym__block_body_statement_parenthesized] = STATE(5719), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym__parenthesized_body] = STATE(7546), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), [sym_comment] = STATE(72), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(136), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(543), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(103), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(138), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(537), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [73] = { - [sym__block_body_statement_parenthesized] = STATE(5904), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym__parenthesized_body] = STATE(7646), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), + [sym__block_body_statement_parenthesized] = STATE(5719), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym__parenthesized_body] = STATE(7591), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), [sym_comment] = STATE(73), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(136), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(545), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(103), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(138), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(539), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [74] = { - [sym__block_body_statement_parenthesized] = STATE(5904), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym__parenthesized_body] = STATE(7663), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7829), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1429), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(792), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(74), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(136), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), + [anon_sym_export] = ACTIONS(349), + [anon_sym_alias] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_let_DASHenv] = ACTIONS(353), + [anon_sym_mut] = ACTIONS(355), + [anon_sym_const] = ACTIONS(357), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(391), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(409), + [aux_sym__val_number_decimal_token2] = ACTIONS(411), + [aux_sym__val_number_decimal_token3] = ACTIONS(413), + [aux_sym__val_number_decimal_token4] = ACTIONS(415), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [75] = { - [sym__block_body_statement_parenthesized] = STATE(5904), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym__parenthesized_body] = STATE(7736), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), + [sym__block_body_statement_parenthesized] = STATE(5719), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym__parenthesized_body] = STATE(7726), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), [sym_comment] = STATE(75), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(136), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(549), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(103), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(138), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(541), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [76] = { - [sym__block_body_statement_parenthesized] = STATE(5904), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym__parenthesized_body] = STATE(7774), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), + [sym__block_body_statement_parenthesized] = STATE(5719), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym__parenthesized_body] = STATE(7765), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), [sym_comment] = STATE(76), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(136), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(551), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(103), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(138), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(543), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [77] = { - [sym__block_body_statement_parenthesized] = STATE(5904), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym__parenthesized_body] = STATE(7785), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), + [sym__block_body_statement_parenthesized] = STATE(5719), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym__parenthesized_body] = STATE(7775), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), [sym_comment] = STATE(77), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(136), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(553), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(103), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(138), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(545), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [78] = { - [sym__block_body_statement_parenthesized] = STATE(5904), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym__parenthesized_body] = STATE(7817), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), + [sym__block_body_statement_parenthesized] = STATE(5719), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym__parenthesized_body] = STATE(7810), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), [sym_comment] = STATE(78), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(136), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(103), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(138), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(547), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [79] = { - [sym__block_body_statement_parenthesized] = STATE(5904), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym__parenthesized_body] = STATE(7831), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), + [sym__block_body_statement_parenthesized] = STATE(5719), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym__parenthesized_body] = STATE(7841), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), [sym_comment] = STATE(79), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(136), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(557), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(103), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(138), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(549), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [80] = { - [sym__block_body_statement_parenthesized] = STATE(5904), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym__parenthesized_body] = STATE(7748), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), + [sym__block_body_statement_parenthesized] = STATE(5719), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym__parenthesized_body] = STATE(7813), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), [sym_comment] = STATE(80), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(136), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(559), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(103), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(138), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(551), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [81] = { - [sym__block_body_statement_parenthesized] = STATE(5904), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym__parenthesized_body] = STATE(7528), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), + [sym__block_body_statement_parenthesized] = STATE(5719), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym__parenthesized_body] = STATE(7770), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), [sym_comment] = STATE(81), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(136), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(561), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(103), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(138), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(553), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [82] = { - [sym__block_body_statement_parenthesized] = STATE(5904), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym__parenthesized_body] = STATE(7547), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7729), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1429), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(792), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(82), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(136), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(563), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), + [anon_sym_export] = ACTIONS(349), + [anon_sym_alias] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_let_DASHenv] = ACTIONS(353), + [anon_sym_mut] = ACTIONS(355), + [anon_sym_const] = ACTIONS(357), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(391), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(417), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(409), + [aux_sym__val_number_decimal_token2] = ACTIONS(411), + [aux_sym__val_number_decimal_token3] = ACTIONS(413), + [aux_sym__val_number_decimal_token4] = ACTIONS(415), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [83] = { - [sym__block_body_statement_parenthesized] = STATE(5904), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym__parenthesized_body] = STATE(7841), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), + [sym__block_body_statement_parenthesized] = STATE(5719), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym__parenthesized_body] = STATE(7531), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), [sym_comment] = STATE(83), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(136), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(565), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(103), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(138), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [84] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7622), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1487), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement_parenthesized] = STATE(5719), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym__parenthesized_body] = STATE(7607), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), [sym_comment] = STATE(84), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), - [anon_sym_export] = ACTIONS(355), - [anon_sym_alias] = ACTIONS(357), - [anon_sym_let] = ACTIONS(359), - [anon_sym_let_DASHenv] = ACTIONS(359), - [anon_sym_mut] = ACTIONS(361), - [anon_sym_const] = ACTIONS(363), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(425), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(417), - [aux_sym__val_number_decimal_token2] = ACTIONS(419), - [aux_sym__val_number_decimal_token3] = ACTIONS(421), - [aux_sym__val_number_decimal_token4] = ACTIONS(423), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(103), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(138), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(557), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [85] = { - [sym__block_body_statement_parenthesized] = STATE(5904), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym__parenthesized_body] = STATE(7830), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), + [sym__block_body_statement_parenthesized] = STATE(5719), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym__parenthesized_body] = STATE(7606), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), [sym_comment] = STATE(85), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(136), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(103), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(138), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(559), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [86] = { - [sym__block_body_statement] = STATE(6441), - [sym__declaration] = STATE(6844), - [sym_decl_alias] = STATE(6909), - [sym_stmt_let] = STATE(6954), - [sym_stmt_mut] = STATE(6954), - [sym_stmt_const] = STATE(6954), - [sym_assignment] = STATE(6954), - [sym__mutable_assignment_pattern] = STATE(7040), - [sym__statement] = STATE(6844), - [sym_pipeline] = STATE(6954), - [sym__block_body] = STATE(7685), - [sym_cmd_identifier] = STATE(4643), - [sym_decl_def] = STATE(6909), - [sym_decl_export] = STATE(6909), - [sym_decl_extern] = STATE(6909), - [sym_decl_module] = STATE(6909), - [sym_decl_use] = STATE(6909), - [sym__ctrl_statement] = STATE(6954), - [sym__ctrl_expression] = STATE(4993), - [sym_ctrl_for] = STATE(6791), - [sym_ctrl_loop] = STATE(6791), - [sym_ctrl_error] = STATE(6791), - [sym_ctrl_while] = STATE(6791), - [sym_ctrl_do] = STATE(5044), - [sym_ctrl_if] = STATE(5044), - [sym_ctrl_match] = STATE(5044), - [sym_ctrl_try] = STATE(5044), - [sym_ctrl_return] = STATE(5044), - [sym_pipe_element] = STATE(4685), - [sym_stmt_source] = STATE(6954), - [sym_stmt_register] = STATE(6954), - [sym__stmt_hide] = STATE(6954), - [sym_hide_mod] = STATE(7054), - [sym_hide_env] = STATE(7054), - [sym__stmt_overlay] = STATE(6954), - [sym_overlay_list] = STATE(7207), - [sym_overlay_hide] = STATE(7207), - [sym_overlay_new] = STATE(7207), - [sym_overlay_use] = STATE(7207), - [sym_where_command] = STATE(5107), - [sym__expression] = STATE(3831), - [sym_expr_unary] = STATE(2492), - [sym__expr_unary_minus] = STATE(2458), - [sym_expr_binary] = STATE(2492), - [sym__expr_binary_expression] = STATE(3874), - [sym_expr_parenthesized] = STATE(2094), - [sym_val_range] = STATE(2492), - [sym__value] = STATE(2492), - [sym_val_nothing] = STATE(2516), - [sym_val_bool] = STATE(2516), - [sym_val_variable] = STATE(1523), - [sym_val_number] = STATE(2516), - [sym__val_number_decimal] = STATE(813), - [sym__val_number] = STATE(2512), - [sym_val_duration] = STATE(2516), - [sym_val_filesize] = STATE(2516), - [sym_val_binary] = STATE(2516), - [sym_val_string] = STATE(2516), - [sym__raw_str] = STATE(1732), - [sym__str_double_quotes] = STATE(1732), - [sym_val_interpolated] = STATE(2516), - [sym__inter_single_quotes] = STATE(2527), - [sym__inter_double_quotes] = STATE(2528), - [sym_val_list] = STATE(2516), - [sym_val_record] = STATE(2516), - [sym_val_table] = STATE(2516), - [sym_val_closure] = STATE(2516), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(5107), + [sym__block_body_statement_parenthesized] = STATE(5719), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym__parenthesized_body] = STATE(7724), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), [sym_comment] = STATE(86), - [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(323), - [ts_builtin_sym_end] = ACTIONS(569), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(138), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(561), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), + }, + [87] = { + [sym__block_body_statement_parenthesized] = STATE(5719), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym__parenthesized_body] = STATE(7498), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), + [sym_comment] = STATE(87), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(103), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(138), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(563), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), + }, + [88] = { + [sym__block_body_statement_parenthesized] = STATE(5719), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym__parenthesized_body] = STATE(7743), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), + [sym_comment] = STATE(88), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(103), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(138), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), + }, + [89] = { + [sym__block_body_statement_parenthesized] = STATE(5719), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym__parenthesized_body] = STATE(7523), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), + [sym_comment] = STATE(89), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(103), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(138), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(567), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), + }, + [90] = { + [sym__block_body_statement_parenthesized] = STATE(5719), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym__parenthesized_body] = STATE(7548), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), + [sym_comment] = STATE(90), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(103), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(138), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), + }, + [91] = { + [sym__block_body_statement_parenthesized] = STATE(5719), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym__parenthesized_body] = STATE(7579), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), + [sym_comment] = STATE(91), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(103), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(138), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(571), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), + }, + [92] = { + [sym__block_body_statement_parenthesized] = STATE(5719), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym__parenthesized_body] = STATE(7651), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), + [sym_comment] = STATE(92), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(103), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(138), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), + }, + [93] = { + [sym__block_body_statement] = STATE(6601), + [sym__declaration] = STATE(7087), + [sym_decl_alias] = STATE(7107), + [sym_stmt_let] = STATE(6768), + [sym_stmt_mut] = STATE(6768), + [sym_stmt_const] = STATE(6768), + [sym_assignment] = STATE(6768), + [sym__mutable_assignment_pattern] = STATE(6947), + [sym__statement] = STATE(7087), + [sym_pipeline] = STATE(6768), + [sym__block_body] = STATE(7529), + [sym_cmd_identifier] = STATE(4582), + [sym_decl_def] = STATE(7107), + [sym_decl_export] = STATE(7107), + [sym_decl_extern] = STATE(7107), + [sym_decl_module] = STATE(7107), + [sym_decl_use] = STATE(7107), + [sym__ctrl_statement] = STATE(6768), + [sym__ctrl_expression] = STATE(4975), + [sym_ctrl_for] = STATE(6911), + [sym_ctrl_loop] = STATE(6911), + [sym_ctrl_error] = STATE(6911), + [sym_ctrl_while] = STATE(6911), + [sym_ctrl_do] = STATE(5010), + [sym_ctrl_if] = STATE(5010), + [sym_ctrl_match] = STATE(5010), + [sym_ctrl_try] = STATE(5010), + [sym_ctrl_return] = STATE(5010), + [sym_pipe_element] = STATE(4613), + [sym_stmt_source] = STATE(6768), + [sym__stmt_hide] = STATE(6768), + [sym_hide_mod] = STATE(7173), + [sym_hide_env] = STATE(7173), + [sym__stmt_overlay] = STATE(6768), + [sym_overlay_list] = STATE(7262), + [sym_overlay_hide] = STATE(7262), + [sym_overlay_new] = STATE(7262), + [sym_overlay_use] = STATE(7262), + [sym_where_command] = STATE(5021), + [sym__expression] = STATE(3866), + [sym_expr_unary] = STATE(2443), + [sym__expr_unary_minus] = STATE(2502), + [sym_expr_binary] = STATE(2443), + [sym__expr_binary_expression] = STATE(3829), + [sym_expr_parenthesized] = STATE(2049), + [sym_val_range] = STATE(2443), + [sym__value] = STATE(2443), + [sym_val_nothing] = STATE(2419), + [sym_val_bool] = STATE(2419), + [sym_val_variable] = STATE(1422), + [sym_val_number] = STATE(2419), + [sym__val_number_decimal] = STATE(782), + [sym__val_number] = STATE(2425), + [sym_val_duration] = STATE(2419), + [sym_val_filesize] = STATE(2419), + [sym_val_binary] = STATE(2419), + [sym_val_string] = STATE(2419), + [sym__raw_str] = STATE(1605), + [sym__str_double_quotes] = STATE(1605), + [sym_val_interpolated] = STATE(2419), + [sym__inter_single_quotes] = STATE(2426), + [sym__inter_double_quotes] = STATE(2421), + [sym_val_list] = STATE(2419), + [sym_val_record] = STATE(2419), + [sym_val_table] = STATE(2419), + [sym_val_closure] = STATE(2419), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(5021), + [sym_comment] = STATE(93), + [aux_sym_pipeline_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(100), + [aux_sym__block_body_repeat2] = STATE(139), + [aux_sym_pipe_element_repeat2] = STATE(342), + [ts_builtin_sym_end] = ACTIONS(575), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), [anon_sym_let] = ACTIONS(13), @@ -85671,3055 +86989,1204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(69), [anon_sym_source] = ACTIONS(71), [anon_sym_source_DASHenv] = ACTIONS(71), - [anon_sym_register] = ACTIONS(73), - [anon_sym_hide] = ACTIONS(75), - [anon_sym_hide_DASHenv] = ACTIONS(77), - [anon_sym_overlay] = ACTIONS(79), - [anon_sym_where] = ACTIONS(81), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(85), - [anon_sym_DOT_DOT_LT] = ACTIONS(85), - [anon_sym_null] = ACTIONS(87), - [anon_sym_true] = ACTIONS(89), - [anon_sym_false] = ACTIONS(89), - [aux_sym__val_number_decimal_token1] = ACTIONS(91), - [aux_sym__val_number_decimal_token2] = ACTIONS(93), - [aux_sym__val_number_decimal_token3] = ACTIONS(95), - [aux_sym__val_number_decimal_token4] = ACTIONS(97), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(101), - [aux_sym__val_number_token5] = ACTIONS(101), - [aux_sym__val_number_token6] = ACTIONS(101), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(119), - [aux_sym_command_token1] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [87] = { - [sym__block_body_statement_parenthesized] = STATE(5904), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym__parenthesized_body] = STATE(7858), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), - [sym_comment] = STATE(87), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(136), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(571), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, - [88] = { - [sym__block_body_statement_parenthesized] = STATE(5904), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym__parenthesized_body] = STATE(7556), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), - [sym_comment] = STATE(88), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(136), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(573), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, - [89] = { - [sym__block_body_statement_parenthesized] = STATE(5904), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym__parenthesized_body] = STATE(7564), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), - [sym_comment] = STATE(89), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(136), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(575), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, - [90] = { - [sym__block_body_statement_parenthesized] = STATE(5904), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym__parenthesized_body] = STATE(7534), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), - [sym_comment] = STATE(90), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(136), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, - [91] = { - [sym__block_body_statement_parenthesized] = STATE(5904), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym__parenthesized_body] = STATE(7581), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), - [sym_comment] = STATE(91), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(136), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(579), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, - [92] = { - [sym__block_body_statement_parenthesized] = STATE(5904), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym__parenthesized_body] = STATE(7738), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), - [sym_comment] = STATE(92), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(136), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(581), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, - [93] = { - [sym__block_body_statement_parenthesized] = STATE(5904), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym__parenthesized_body] = STATE(7788), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), - [sym_comment] = STATE(93), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(136), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(583), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_hide] = ACTIONS(73), + [anon_sym_hide_DASHenv] = ACTIONS(75), + [anon_sym_overlay] = ACTIONS(77), + [anon_sym_where] = ACTIONS(79), + [aux_sym_expr_unary_token1] = ACTIONS(81), + [anon_sym_DOT_DOT_EQ] = ACTIONS(83), + [anon_sym_DOT_DOT_LT] = ACTIONS(83), + [anon_sym_null] = ACTIONS(85), + [anon_sym_true] = ACTIONS(87), + [anon_sym_false] = ACTIONS(87), + [aux_sym__val_number_decimal_token1] = ACTIONS(89), + [aux_sym__val_number_decimal_token2] = ACTIONS(91), + [aux_sym__val_number_decimal_token3] = ACTIONS(93), + [aux_sym__val_number_decimal_token4] = ACTIONS(95), + [aux_sym__val_number_token1] = ACTIONS(97), + [aux_sym__val_number_token2] = ACTIONS(97), + [aux_sym__val_number_token3] = ACTIONS(97), + [aux_sym__val_number_token4] = ACTIONS(99), + [aux_sym__val_number_token5] = ACTIONS(99), + [aux_sym__val_number_token6] = ACTIONS(99), + [anon_sym_0b] = ACTIONS(101), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym__str_single_quotes] = ACTIONS(109), + [sym__str_back_ticks] = ACTIONS(109), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(117), + [aux_sym_command_token1] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [94] = { - [sym__block_body_statement_parenthesized] = STATE(5904), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym__parenthesized_body] = STATE(7699), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), + [sym__block_body_statement_parenthesized] = STATE(5719), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym__parenthesized_body] = STATE(7476), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), [sym_comment] = STATE(94), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(136), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(585), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(103), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(138), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [95] = { - [sym__block_body_statement_parenthesized] = STATE(5904), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym__parenthesized_body] = STATE(7855), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), + [sym__block_body_statement_parenthesized] = STATE(5719), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym__parenthesized_body] = STATE(7642), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), [sym_comment] = STATE(95), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(136), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(587), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(103), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(138), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(579), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [96] = { - [sym__block_body_statement_parenthesized] = STATE(5904), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym__parenthesized_body] = STATE(7697), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), + [sym__block_body_statement_parenthesized] = STATE(5719), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym__parenthesized_body] = STATE(7689), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), [sym_comment] = STATE(96), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(136), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(589), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(103), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(138), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [97] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7505), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1487), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7503), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1429), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(792), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(97), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), - [anon_sym_export] = ACTIONS(355), - [anon_sym_alias] = ACTIONS(357), - [anon_sym_let] = ACTIONS(359), - [anon_sym_let_DASHenv] = ACTIONS(359), - [anon_sym_mut] = ACTIONS(361), - [anon_sym_const] = ACTIONS(363), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(417), - [aux_sym__val_number_decimal_token2] = ACTIONS(419), - [aux_sym__val_number_decimal_token3] = ACTIONS(421), - [aux_sym__val_number_decimal_token4] = ACTIONS(423), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), + [anon_sym_export] = ACTIONS(349), + [anon_sym_alias] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_let_DASHenv] = ACTIONS(353), + [anon_sym_mut] = ACTIONS(355), + [anon_sym_const] = ACTIONS(357), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(391), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(409), + [aux_sym__val_number_decimal_token2] = ACTIONS(411), + [aux_sym__val_number_decimal_token3] = ACTIONS(413), + [aux_sym__val_number_decimal_token4] = ACTIONS(415), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [98] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7485), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1429), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(792), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(98), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(213), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(138), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(591), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), + [anon_sym_export] = ACTIONS(349), + [anon_sym_alias] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_let_DASHenv] = ACTIONS(353), + [anon_sym_mut] = ACTIONS(355), + [anon_sym_const] = ACTIONS(357), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(391), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(409), + [aux_sym__val_number_decimal_token2] = ACTIONS(411), + [aux_sym__val_number_decimal_token3] = ACTIONS(413), + [aux_sym__val_number_decimal_token4] = ACTIONS(415), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [99] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7577), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1487), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7817), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1429), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(792), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(99), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), - [anon_sym_export] = ACTIONS(355), - [anon_sym_alias] = ACTIONS(357), - [anon_sym_let] = ACTIONS(359), - [anon_sym_let_DASHenv] = ACTIONS(359), - [anon_sym_mut] = ACTIONS(361), - [anon_sym_const] = ACTIONS(363), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(417), - [aux_sym__val_number_decimal_token2] = ACTIONS(419), - [aux_sym__val_number_decimal_token3] = ACTIONS(421), - [aux_sym__val_number_decimal_token4] = ACTIONS(423), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), + [anon_sym_export] = ACTIONS(349), + [anon_sym_alias] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_let_DASHenv] = ACTIONS(353), + [anon_sym_mut] = ACTIONS(355), + [anon_sym_const] = ACTIONS(357), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(391), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(409), + [aux_sym__val_number_decimal_token2] = ACTIONS(411), + [aux_sym__val_number_decimal_token3] = ACTIONS(413), + [aux_sym__val_number_decimal_token4] = ACTIONS(415), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [100] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7822), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1543), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6230), + [sym__declaration] = STATE(7087), + [sym_decl_alias] = STATE(7107), + [sym_stmt_let] = STATE(6768), + [sym_stmt_mut] = STATE(6768), + [sym_stmt_const] = STATE(6768), + [sym_assignment] = STATE(6768), + [sym__mutable_assignment_pattern] = STATE(6947), + [sym__statement] = STATE(7087), + [sym_pipeline] = STATE(6768), + [sym_cmd_identifier] = STATE(4582), + [sym_decl_def] = STATE(7107), + [sym_decl_export] = STATE(7107), + [sym_decl_extern] = STATE(7107), + [sym_decl_module] = STATE(7107), + [sym_decl_use] = STATE(7107), + [sym__ctrl_statement] = STATE(6768), + [sym__ctrl_expression] = STATE(4975), + [sym_ctrl_for] = STATE(6911), + [sym_ctrl_loop] = STATE(6911), + [sym_ctrl_error] = STATE(6911), + [sym_ctrl_while] = STATE(6911), + [sym_ctrl_do] = STATE(5010), + [sym_ctrl_if] = STATE(5010), + [sym_ctrl_match] = STATE(5010), + [sym_ctrl_try] = STATE(5010), + [sym_ctrl_return] = STATE(5010), + [sym_pipe_element] = STATE(4613), + [sym_stmt_source] = STATE(6768), + [sym__stmt_hide] = STATE(6768), + [sym_hide_mod] = STATE(7173), + [sym_hide_env] = STATE(7173), + [sym__stmt_overlay] = STATE(6768), + [sym_overlay_list] = STATE(7262), + [sym_overlay_hide] = STATE(7262), + [sym_overlay_new] = STATE(7262), + [sym_overlay_use] = STATE(7262), + [sym_where_command] = STATE(5021), + [sym__expression] = STATE(3866), + [sym_expr_unary] = STATE(2443), + [sym__expr_unary_minus] = STATE(2502), + [sym_expr_binary] = STATE(2443), + [sym__expr_binary_expression] = STATE(3829), + [sym_expr_parenthesized] = STATE(2049), + [sym_val_range] = STATE(2443), + [sym__value] = STATE(2443), + [sym_val_nothing] = STATE(2419), + [sym_val_bool] = STATE(2419), + [sym_val_variable] = STATE(1422), + [sym_val_number] = STATE(2419), + [sym__val_number_decimal] = STATE(782), + [sym__val_number] = STATE(2425), + [sym_val_duration] = STATE(2419), + [sym_val_filesize] = STATE(2419), + [sym_val_binary] = STATE(2419), + [sym_val_string] = STATE(2419), + [sym__raw_str] = STATE(1605), + [sym__str_double_quotes] = STATE(1605), + [sym_val_interpolated] = STATE(2419), + [sym__inter_single_quotes] = STATE(2426), + [sym__inter_double_quotes] = STATE(2421), + [sym_val_list] = STATE(2419), + [sym_val_record] = STATE(2419), + [sym_val_table] = STATE(2419), + [sym_val_closure] = STATE(2419), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(5021), [sym_comment] = STATE(100), - [aux_sym_pipeline_repeat1] = STATE(189), - [aux_sym__block_body_repeat1] = STATE(114), - [aux_sym__block_body_repeat2] = STATE(135), - [aux_sym_pipe_element_repeat2] = STATE(339), - [anon_sym_export] = ACTIONS(593), - [anon_sym_alias] = ACTIONS(595), - [anon_sym_let] = ACTIONS(597), - [anon_sym_let_DASHenv] = ACTIONS(597), - [anon_sym_mut] = ACTIONS(599), - [anon_sym_const] = ACTIONS(601), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(603), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, - [101] = { - [sym__block_body_statement] = STATE(5962), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1487), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), - [sym_comment] = STATE(101), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(213), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(347), - [anon_sym_export] = ACTIONS(355), - [anon_sym_alias] = ACTIONS(357), - [anon_sym_let] = ACTIONS(359), - [anon_sym_let_DASHenv] = ACTIONS(359), - [anon_sym_mut] = ACTIONS(361), - [anon_sym_const] = ACTIONS(363), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(605), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(417), - [aux_sym__val_number_decimal_token2] = ACTIONS(419), - [aux_sym__val_number_decimal_token3] = ACTIONS(421), - [aux_sym__val_number_decimal_token4] = ACTIONS(423), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, - [102] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7538), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1487), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), - [sym_comment] = STATE(102), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), - [anon_sym_export] = ACTIONS(355), - [anon_sym_alias] = ACTIONS(357), - [anon_sym_let] = ACTIONS(359), - [anon_sym_let_DASHenv] = ACTIONS(359), - [anon_sym_mut] = ACTIONS(361), - [anon_sym_const] = ACTIONS(363), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(417), - [aux_sym__val_number_decimal_token2] = ACTIONS(419), - [aux_sym__val_number_decimal_token3] = ACTIONS(421), - [aux_sym__val_number_decimal_token4] = ACTIONS(423), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, - [103] = { - [sym__block_body_statement] = STATE(6187), - [sym__declaration] = STATE(6844), - [sym_decl_alias] = STATE(6909), - [sym_stmt_let] = STATE(6954), - [sym_stmt_mut] = STATE(6954), - [sym_stmt_const] = STATE(6954), - [sym_assignment] = STATE(6954), - [sym__mutable_assignment_pattern] = STATE(7040), - [sym__statement] = STATE(6844), - [sym_pipeline] = STATE(6954), - [sym_cmd_identifier] = STATE(4643), - [sym_decl_def] = STATE(6909), - [sym_decl_export] = STATE(6909), - [sym_decl_extern] = STATE(6909), - [sym_decl_module] = STATE(6909), - [sym_decl_use] = STATE(6909), - [sym__ctrl_statement] = STATE(6954), - [sym__ctrl_expression] = STATE(4993), - [sym_ctrl_for] = STATE(6791), - [sym_ctrl_loop] = STATE(6791), - [sym_ctrl_error] = STATE(6791), - [sym_ctrl_while] = STATE(6791), - [sym_ctrl_do] = STATE(5044), - [sym_ctrl_if] = STATE(5044), - [sym_ctrl_match] = STATE(5044), - [sym_ctrl_try] = STATE(5044), - [sym_ctrl_return] = STATE(5044), - [sym_pipe_element] = STATE(4685), - [sym_stmt_source] = STATE(6954), - [sym_stmt_register] = STATE(6954), - [sym__stmt_hide] = STATE(6954), - [sym_hide_mod] = STATE(7054), - [sym_hide_env] = STATE(7054), - [sym__stmt_overlay] = STATE(6954), - [sym_overlay_list] = STATE(7207), - [sym_overlay_hide] = STATE(7207), - [sym_overlay_new] = STATE(7207), - [sym_overlay_use] = STATE(7207), - [sym_where_command] = STATE(5107), - [sym__expression] = STATE(3831), - [sym_expr_unary] = STATE(2492), - [sym__expr_unary_minus] = STATE(2458), - [sym_expr_binary] = STATE(2492), - [sym__expr_binary_expression] = STATE(3874), - [sym_expr_parenthesized] = STATE(2094), - [sym_val_range] = STATE(2492), - [sym__value] = STATE(2492), - [sym_val_nothing] = STATE(2516), - [sym_val_bool] = STATE(2516), - [sym_val_variable] = STATE(1523), - [sym_val_number] = STATE(2516), - [sym__val_number_decimal] = STATE(813), - [sym__val_number] = STATE(2512), - [sym_val_duration] = STATE(2516), - [sym_val_filesize] = STATE(2516), - [sym_val_binary] = STATE(2516), - [sym_val_string] = STATE(2516), - [sym__raw_str] = STATE(1732), - [sym__str_double_quotes] = STATE(1732), - [sym_val_interpolated] = STATE(2516), - [sym__inter_single_quotes] = STATE(2527), - [sym__inter_double_quotes] = STATE(2528), - [sym_val_list] = STATE(2516), - [sym_val_record] = STATE(2516), - [sym_val_table] = STATE(2516), - [sym_val_closure] = STATE(2516), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(5107), - [sym_comment] = STATE(103), - [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat1] = STATE(280), + [aux_sym_pipeline_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(310), [aux_sym__block_body_repeat2] = STATE(137), - [aux_sym_pipe_element_repeat2] = STATE(323), - [ts_builtin_sym_end] = ACTIONS(605), + [aux_sym_pipe_element_repeat2] = STATE(342), + [ts_builtin_sym_end] = ACTIONS(583), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), [anon_sym_let] = ACTIONS(13), @@ -88792,5056 +88259,6605 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(69), [anon_sym_source] = ACTIONS(71), [anon_sym_source_DASHenv] = ACTIONS(71), - [anon_sym_register] = ACTIONS(73), - [anon_sym_hide] = ACTIONS(75), - [anon_sym_hide_DASHenv] = ACTIONS(77), - [anon_sym_overlay] = ACTIONS(79), - [anon_sym_where] = ACTIONS(81), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(85), - [anon_sym_DOT_DOT_LT] = ACTIONS(85), - [anon_sym_null] = ACTIONS(87), - [anon_sym_true] = ACTIONS(89), - [anon_sym_false] = ACTIONS(89), - [aux_sym__val_number_decimal_token1] = ACTIONS(91), - [aux_sym__val_number_decimal_token2] = ACTIONS(93), - [aux_sym__val_number_decimal_token3] = ACTIONS(95), - [aux_sym__val_number_decimal_token4] = ACTIONS(97), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(101), - [aux_sym__val_number_token5] = ACTIONS(101), - [aux_sym__val_number_token6] = ACTIONS(101), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(119), - [aux_sym_command_token1] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), + [anon_sym_hide] = ACTIONS(73), + [anon_sym_hide_DASHenv] = ACTIONS(75), + [anon_sym_overlay] = ACTIONS(77), + [anon_sym_where] = ACTIONS(79), + [aux_sym_expr_unary_token1] = ACTIONS(81), + [anon_sym_DOT_DOT_EQ] = ACTIONS(83), + [anon_sym_DOT_DOT_LT] = ACTIONS(83), + [anon_sym_null] = ACTIONS(85), + [anon_sym_true] = ACTIONS(87), + [anon_sym_false] = ACTIONS(87), + [aux_sym__val_number_decimal_token1] = ACTIONS(89), + [aux_sym__val_number_decimal_token2] = ACTIONS(91), + [aux_sym__val_number_decimal_token3] = ACTIONS(93), + [aux_sym__val_number_decimal_token4] = ACTIONS(95), + [aux_sym__val_number_token1] = ACTIONS(97), + [aux_sym__val_number_token2] = ACTIONS(97), + [aux_sym__val_number_token3] = ACTIONS(97), + [aux_sym__val_number_token4] = ACTIONS(99), + [aux_sym__val_number_token5] = ACTIONS(99), + [aux_sym__val_number_token6] = ACTIONS(99), + [anon_sym_0b] = ACTIONS(101), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym__str_single_quotes] = ACTIONS(109), + [sym__str_back_ticks] = ACTIONS(109), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(117), + [aux_sym_command_token1] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), + }, + [101] = { + [sym__block_body_statement_parenthesized] = STATE(5719), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym__parenthesized_body] = STATE(7520), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), + [sym_comment] = STATE(101), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(103), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(138), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), + }, + [102] = { + [sym__block_body_statement] = STATE(6073), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1448), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), + [sym_comment] = STATE(102), + [aux_sym_pipeline_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(253), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(339), + [anon_sym_export] = ACTIONS(585), + [anon_sym_alias] = ACTIONS(587), + [anon_sym_let] = ACTIONS(589), + [anon_sym_let_DASHenv] = ACTIONS(589), + [anon_sym_mut] = ACTIONS(591), + [anon_sym_const] = ACTIONS(593), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(583), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(595), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), + }, + [103] = { + [sym__block_body_statement_parenthesized] = STATE(5754), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), + [sym_comment] = STATE(103), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(253), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(134), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(597), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [104] = { - [sym__block_body_statement_parenthesized] = STATE(5904), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym__parenthesized_body] = STATE(7557), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7590), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1429), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(792), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(104), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(136), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), + [anon_sym_export] = ACTIONS(349), + [anon_sym_alias] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_let_DASHenv] = ACTIONS(353), + [anon_sym_mut] = ACTIONS(355), + [anon_sym_const] = ACTIONS(357), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(391), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(409), + [aux_sym__val_number_decimal_token2] = ACTIONS(411), + [aux_sym__val_number_decimal_token3] = ACTIONS(413), + [aux_sym__val_number_decimal_token4] = ACTIONS(415), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [105] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7740), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1543), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7672), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1448), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(105), - [aux_sym_pipeline_repeat1] = STATE(189), - [aux_sym__block_body_repeat1] = STATE(114), - [aux_sym__block_body_repeat2] = STATE(135), + [aux_sym_pipeline_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(102), + [aux_sym__block_body_repeat2] = STATE(136), [aux_sym_pipe_element_repeat2] = STATE(339), - [anon_sym_export] = ACTIONS(593), - [anon_sym_alias] = ACTIONS(595), - [anon_sym_let] = ACTIONS(597), - [anon_sym_let_DASHenv] = ACTIONS(597), - [anon_sym_mut] = ACTIONS(599), - [anon_sym_const] = ACTIONS(601), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(603), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_export] = ACTIONS(585), + [anon_sym_alias] = ACTIONS(587), + [anon_sym_let] = ACTIONS(589), + [anon_sym_let_DASHenv] = ACTIONS(589), + [anon_sym_mut] = ACTIONS(591), + [anon_sym_const] = ACTIONS(593), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(595), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [106] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7572), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1487), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6073), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1429), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(792), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(106), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), - [anon_sym_export] = ACTIONS(355), - [anon_sym_alias] = ACTIONS(357), - [anon_sym_let] = ACTIONS(359), - [anon_sym_let_DASHenv] = ACTIONS(359), - [anon_sym_mut] = ACTIONS(361), - [anon_sym_const] = ACTIONS(363), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(417), - [aux_sym__val_number_decimal_token2] = ACTIONS(419), - [aux_sym__val_number_decimal_token3] = ACTIONS(421), - [aux_sym__val_number_decimal_token4] = ACTIONS(423), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(253), + [aux_sym__block_body_repeat2] = STATE(133), + [aux_sym_pipe_element_repeat2] = STATE(337), + [anon_sym_export] = ACTIONS(349), + [anon_sym_alias] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_let_DASHenv] = ACTIONS(353), + [anon_sym_mut] = ACTIONS(355), + [anon_sym_const] = ACTIONS(357), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(391), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(583), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(409), + [aux_sym__val_number_decimal_token2] = ACTIONS(411), + [aux_sym__val_number_decimal_token3] = ACTIONS(413), + [aux_sym__val_number_decimal_token4] = ACTIONS(415), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [107] = { - [sym__block_body_statement_parenthesized] = STATE(5904), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym__parenthesized_body] = STATE(7475), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7561), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1429), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(792), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(107), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(136), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), + [anon_sym_export] = ACTIONS(349), + [anon_sym_alias] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_let_DASHenv] = ACTIONS(353), + [anon_sym_mut] = ACTIONS(355), + [anon_sym_const] = ACTIONS(357), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(391), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(409), + [aux_sym__val_number_decimal_token2] = ACTIONS(411), + [aux_sym__val_number_decimal_token3] = ACTIONS(413), + [aux_sym__val_number_decimal_token4] = ACTIONS(415), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [108] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7552), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1487), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement_parenthesized] = STATE(5719), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym__parenthesized_body] = STATE(7620), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), [sym_comment] = STATE(108), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), - [anon_sym_export] = ACTIONS(355), - [anon_sym_alias] = ACTIONS(357), - [anon_sym_let] = ACTIONS(359), - [anon_sym_let_DASHenv] = ACTIONS(359), - [anon_sym_mut] = ACTIONS(361), - [anon_sym_const] = ACTIONS(363), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(417), - [aux_sym__val_number_decimal_token2] = ACTIONS(419), - [aux_sym__val_number_decimal_token3] = ACTIONS(421), - [aux_sym__val_number_decimal_token4] = ACTIONS(423), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(103), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(138), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [109] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7711), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1487), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7857), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1429), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(792), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(109), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), - [anon_sym_export] = ACTIONS(355), - [anon_sym_alias] = ACTIONS(357), - [anon_sym_let] = ACTIONS(359), - [anon_sym_let_DASHenv] = ACTIONS(359), - [anon_sym_mut] = ACTIONS(361), - [anon_sym_const] = ACTIONS(363), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(417), - [aux_sym__val_number_decimal_token2] = ACTIONS(419), - [aux_sym__val_number_decimal_token3] = ACTIONS(421), - [aux_sym__val_number_decimal_token4] = ACTIONS(423), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), + [anon_sym_export] = ACTIONS(349), + [anon_sym_alias] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_let_DASHenv] = ACTIONS(353), + [anon_sym_mut] = ACTIONS(355), + [anon_sym_const] = ACTIONS(357), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(391), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(409), + [aux_sym__val_number_decimal_token2] = ACTIONS(411), + [aux_sym__val_number_decimal_token3] = ACTIONS(413), + [aux_sym__val_number_decimal_token4] = ACTIONS(415), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [110] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7706), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1487), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7702), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1429), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(792), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(110), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), - [anon_sym_export] = ACTIONS(355), - [anon_sym_alias] = ACTIONS(357), - [anon_sym_let] = ACTIONS(359), - [anon_sym_let_DASHenv] = ACTIONS(359), - [anon_sym_mut] = ACTIONS(361), - [anon_sym_const] = ACTIONS(363), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(417), - [aux_sym__val_number_decimal_token2] = ACTIONS(419), - [aux_sym__val_number_decimal_token3] = ACTIONS(421), - [aux_sym__val_number_decimal_token4] = ACTIONS(423), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), + [anon_sym_export] = ACTIONS(349), + [anon_sym_alias] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_let_DASHenv] = ACTIONS(353), + [anon_sym_mut] = ACTIONS(355), + [anon_sym_const] = ACTIONS(357), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(391), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(409), + [aux_sym__val_number_decimal_token2] = ACTIONS(411), + [aux_sym__val_number_decimal_token3] = ACTIONS(413), + [aux_sym__val_number_decimal_token4] = ACTIONS(415), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [111] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7844), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1487), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7778), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1429), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(792), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(111), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), - [anon_sym_export] = ACTIONS(355), - [anon_sym_alias] = ACTIONS(357), - [anon_sym_let] = ACTIONS(359), - [anon_sym_let_DASHenv] = ACTIONS(359), - [anon_sym_mut] = ACTIONS(361), - [anon_sym_const] = ACTIONS(363), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(417), - [aux_sym__val_number_decimal_token2] = ACTIONS(419), - [aux_sym__val_number_decimal_token3] = ACTIONS(421), - [aux_sym__val_number_decimal_token4] = ACTIONS(423), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), + [anon_sym_export] = ACTIONS(349), + [anon_sym_alias] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_let_DASHenv] = ACTIONS(353), + [anon_sym_mut] = ACTIONS(355), + [anon_sym_const] = ACTIONS(357), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(391), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(409), + [aux_sym__val_number_decimal_token2] = ACTIONS(411), + [aux_sym__val_number_decimal_token3] = ACTIONS(413), + [aux_sym__val_number_decimal_token4] = ACTIONS(415), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [112] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7509), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1487), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7712), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1429), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(792), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(112), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), - [anon_sym_export] = ACTIONS(355), - [anon_sym_alias] = ACTIONS(357), - [anon_sym_let] = ACTIONS(359), - [anon_sym_let_DASHenv] = ACTIONS(359), - [anon_sym_mut] = ACTIONS(361), - [anon_sym_const] = ACTIONS(363), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(417), - [aux_sym__val_number_decimal_token2] = ACTIONS(419), - [aux_sym__val_number_decimal_token3] = ACTIONS(421), - [aux_sym__val_number_decimal_token4] = ACTIONS(423), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), + [anon_sym_export] = ACTIONS(349), + [anon_sym_alias] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_let_DASHenv] = ACTIONS(353), + [anon_sym_mut] = ACTIONS(355), + [anon_sym_const] = ACTIONS(357), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(391), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(409), + [aux_sym__val_number_decimal_token2] = ACTIONS(411), + [aux_sym__val_number_decimal_token3] = ACTIONS(413), + [aux_sym__val_number_decimal_token4] = ACTIONS(415), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [113] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7513), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1487), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7511), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1429), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(792), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(113), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), - [anon_sym_export] = ACTIONS(355), - [anon_sym_alias] = ACTIONS(357), - [anon_sym_let] = ACTIONS(359), - [anon_sym_let_DASHenv] = ACTIONS(359), - [anon_sym_mut] = ACTIONS(361), - [anon_sym_const] = ACTIONS(363), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(417), - [aux_sym__val_number_decimal_token2] = ACTIONS(419), - [aux_sym__val_number_decimal_token3] = ACTIONS(421), - [aux_sym__val_number_decimal_token4] = ACTIONS(423), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), + [anon_sym_export] = ACTIONS(349), + [anon_sym_alias] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_let_DASHenv] = ACTIONS(353), + [anon_sym_mut] = ACTIONS(355), + [anon_sym_const] = ACTIONS(357), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(391), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(409), + [aux_sym__val_number_decimal_token2] = ACTIONS(411), + [aux_sym__val_number_decimal_token3] = ACTIONS(413), + [aux_sym__val_number_decimal_token4] = ACTIONS(415), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [114] = { - [sym__block_body_statement] = STATE(5962), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1543), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7568), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1429), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(792), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(114), - [aux_sym_pipeline_repeat1] = STATE(189), - [aux_sym__block_body_repeat1] = STATE(213), - [aux_sym__block_body_repeat2] = STATE(134), - [aux_sym_pipe_element_repeat2] = STATE(339), - [anon_sym_export] = ACTIONS(593), - [anon_sym_alias] = ACTIONS(595), - [anon_sym_let] = ACTIONS(597), - [anon_sym_let_DASHenv] = ACTIONS(597), - [anon_sym_mut] = ACTIONS(599), - [anon_sym_const] = ACTIONS(601), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(605), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(603), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), + [anon_sym_export] = ACTIONS(349), + [anon_sym_alias] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_let_DASHenv] = ACTIONS(353), + [anon_sym_mut] = ACTIONS(355), + [anon_sym_const] = ACTIONS(357), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(391), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(409), + [aux_sym__val_number_decimal_token2] = ACTIONS(411), + [aux_sym__val_number_decimal_token3] = ACTIONS(413), + [aux_sym__val_number_decimal_token4] = ACTIONS(415), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [115] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7590), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1487), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7597), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1429), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(792), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(115), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), - [anon_sym_export] = ACTIONS(355), - [anon_sym_alias] = ACTIONS(357), - [anon_sym_let] = ACTIONS(359), - [anon_sym_let_DASHenv] = ACTIONS(359), - [anon_sym_mut] = ACTIONS(361), - [anon_sym_const] = ACTIONS(363), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(417), - [aux_sym__val_number_decimal_token2] = ACTIONS(419), - [aux_sym__val_number_decimal_token3] = ACTIONS(421), - [aux_sym__val_number_decimal_token4] = ACTIONS(423), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), + [anon_sym_export] = ACTIONS(349), + [anon_sym_alias] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_let_DASHenv] = ACTIONS(353), + [anon_sym_mut] = ACTIONS(355), + [anon_sym_const] = ACTIONS(357), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(391), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(409), + [aux_sym__val_number_decimal_token2] = ACTIONS(411), + [aux_sym__val_number_decimal_token3] = ACTIONS(413), + [aux_sym__val_number_decimal_token4] = ACTIONS(415), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [116] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7526), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1487), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7662), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1429), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(792), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(116), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), - [anon_sym_export] = ACTIONS(355), - [anon_sym_alias] = ACTIONS(357), - [anon_sym_let] = ACTIONS(359), - [anon_sym_let_DASHenv] = ACTIONS(359), - [anon_sym_mut] = ACTIONS(361), - [anon_sym_const] = ACTIONS(363), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(417), - [aux_sym__val_number_decimal_token2] = ACTIONS(419), - [aux_sym__val_number_decimal_token3] = ACTIONS(421), - [aux_sym__val_number_decimal_token4] = ACTIONS(423), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), + [anon_sym_export] = ACTIONS(349), + [anon_sym_alias] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_let_DASHenv] = ACTIONS(353), + [anon_sym_mut] = ACTIONS(355), + [anon_sym_const] = ACTIONS(357), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(391), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(409), + [aux_sym__val_number_decimal_token2] = ACTIONS(411), + [aux_sym__val_number_decimal_token3] = ACTIONS(413), + [aux_sym__val_number_decimal_token4] = ACTIONS(415), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [117] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7657), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1487), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7739), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1429), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(792), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(117), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), - [anon_sym_export] = ACTIONS(355), - [anon_sym_alias] = ACTIONS(357), - [anon_sym_let] = ACTIONS(359), - [anon_sym_let_DASHenv] = ACTIONS(359), - [anon_sym_mut] = ACTIONS(361), - [anon_sym_const] = ACTIONS(363), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(417), - [aux_sym__val_number_decimal_token2] = ACTIONS(419), - [aux_sym__val_number_decimal_token3] = ACTIONS(421), - [aux_sym__val_number_decimal_token4] = ACTIONS(423), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), + [anon_sym_export] = ACTIONS(349), + [anon_sym_alias] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_let_DASHenv] = ACTIONS(353), + [anon_sym_mut] = ACTIONS(355), + [anon_sym_const] = ACTIONS(357), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(391), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(409), + [aux_sym__val_number_decimal_token2] = ACTIONS(411), + [aux_sym__val_number_decimal_token3] = ACTIONS(413), + [aux_sym__val_number_decimal_token4] = ACTIONS(415), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [118] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7735), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1487), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7460), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1429), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(792), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(118), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), - [anon_sym_export] = ACTIONS(355), - [anon_sym_alias] = ACTIONS(357), - [anon_sym_let] = ACTIONS(359), - [anon_sym_let_DASHenv] = ACTIONS(359), - [anon_sym_mut] = ACTIONS(361), - [anon_sym_const] = ACTIONS(363), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(417), - [aux_sym__val_number_decimal_token2] = ACTIONS(419), - [aux_sym__val_number_decimal_token3] = ACTIONS(421), - [aux_sym__val_number_decimal_token4] = ACTIONS(423), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), + [anon_sym_export] = ACTIONS(349), + [anon_sym_alias] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_let_DASHenv] = ACTIONS(353), + [anon_sym_mut] = ACTIONS(355), + [anon_sym_const] = ACTIONS(357), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(391), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(409), + [aux_sym__val_number_decimal_token2] = ACTIONS(411), + [aux_sym__val_number_decimal_token3] = ACTIONS(413), + [aux_sym__val_number_decimal_token4] = ACTIONS(415), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [119] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7522), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1487), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7678), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1429), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(792), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(119), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), - [anon_sym_export] = ACTIONS(355), - [anon_sym_alias] = ACTIONS(357), - [anon_sym_let] = ACTIONS(359), - [anon_sym_let_DASHenv] = ACTIONS(359), - [anon_sym_mut] = ACTIONS(361), - [anon_sym_const] = ACTIONS(363), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(417), - [aux_sym__val_number_decimal_token2] = ACTIONS(419), - [aux_sym__val_number_decimal_token3] = ACTIONS(421), - [aux_sym__val_number_decimal_token4] = ACTIONS(423), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), + [anon_sym_export] = ACTIONS(349), + [anon_sym_alias] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_let_DASHenv] = ACTIONS(353), + [anon_sym_mut] = ACTIONS(355), + [anon_sym_const] = ACTIONS(357), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(391), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(409), + [aux_sym__val_number_decimal_token2] = ACTIONS(411), + [aux_sym__val_number_decimal_token3] = ACTIONS(413), + [aux_sym__val_number_decimal_token4] = ACTIONS(415), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [120] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7743), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1487), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7725), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1429), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(792), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(120), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), - [anon_sym_export] = ACTIONS(355), - [anon_sym_alias] = ACTIONS(357), - [anon_sym_let] = ACTIONS(359), - [anon_sym_let_DASHenv] = ACTIONS(359), - [anon_sym_mut] = ACTIONS(361), - [anon_sym_const] = ACTIONS(363), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(417), - [aux_sym__val_number_decimal_token2] = ACTIONS(419), - [aux_sym__val_number_decimal_token3] = ACTIONS(421), - [aux_sym__val_number_decimal_token4] = ACTIONS(423), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), + [anon_sym_export] = ACTIONS(349), + [anon_sym_alias] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_let_DASHenv] = ACTIONS(353), + [anon_sym_mut] = ACTIONS(355), + [anon_sym_const] = ACTIONS(357), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(391), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(409), + [aux_sym__val_number_decimal_token2] = ACTIONS(411), + [aux_sym__val_number_decimal_token3] = ACTIONS(413), + [aux_sym__val_number_decimal_token4] = ACTIONS(415), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [121] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7529), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1487), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7749), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1429), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(792), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(121), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), - [anon_sym_export] = ACTIONS(355), - [anon_sym_alias] = ACTIONS(357), - [anon_sym_let] = ACTIONS(359), - [anon_sym_let_DASHenv] = ACTIONS(359), - [anon_sym_mut] = ACTIONS(361), - [anon_sym_const] = ACTIONS(363), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(417), - [aux_sym__val_number_decimal_token2] = ACTIONS(419), - [aux_sym__val_number_decimal_token3] = ACTIONS(421), - [aux_sym__val_number_decimal_token4] = ACTIONS(423), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), + [anon_sym_export] = ACTIONS(349), + [anon_sym_alias] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_let_DASHenv] = ACTIONS(353), + [anon_sym_mut] = ACTIONS(355), + [anon_sym_const] = ACTIONS(357), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(391), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(409), + [aux_sym__val_number_decimal_token2] = ACTIONS(411), + [aux_sym__val_number_decimal_token3] = ACTIONS(413), + [aux_sym__val_number_decimal_token4] = ACTIONS(415), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [122] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7532), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1487), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7489), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1429), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(792), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(122), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), - [anon_sym_export] = ACTIONS(355), - [anon_sym_alias] = ACTIONS(357), - [anon_sym_let] = ACTIONS(359), - [anon_sym_let_DASHenv] = ACTIONS(359), - [anon_sym_mut] = ACTIONS(361), - [anon_sym_const] = ACTIONS(363), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(417), - [aux_sym__val_number_decimal_token2] = ACTIONS(419), - [aux_sym__val_number_decimal_token3] = ACTIONS(421), - [aux_sym__val_number_decimal_token4] = ACTIONS(423), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), + [anon_sym_export] = ACTIONS(349), + [anon_sym_alias] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_let_DASHenv] = ACTIONS(353), + [anon_sym_mut] = ACTIONS(355), + [anon_sym_const] = ACTIONS(357), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(391), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(409), + [aux_sym__val_number_decimal_token2] = ACTIONS(411), + [aux_sym__val_number_decimal_token3] = ACTIONS(413), + [aux_sym__val_number_decimal_token4] = ACTIONS(415), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [123] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7553), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1487), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7521), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1429), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(792), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(123), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), - [anon_sym_export] = ACTIONS(355), - [anon_sym_alias] = ACTIONS(357), - [anon_sym_let] = ACTIONS(359), - [anon_sym_let_DASHenv] = ACTIONS(359), - [anon_sym_mut] = ACTIONS(361), - [anon_sym_const] = ACTIONS(363), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(417), - [aux_sym__val_number_decimal_token2] = ACTIONS(419), - [aux_sym__val_number_decimal_token3] = ACTIONS(421), - [aux_sym__val_number_decimal_token4] = ACTIONS(423), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), + [anon_sym_export] = ACTIONS(349), + [anon_sym_alias] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_let_DASHenv] = ACTIONS(353), + [anon_sym_mut] = ACTIONS(355), + [anon_sym_const] = ACTIONS(357), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(391), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(409), + [aux_sym__val_number_decimal_token2] = ACTIONS(411), + [aux_sym__val_number_decimal_token3] = ACTIONS(413), + [aux_sym__val_number_decimal_token4] = ACTIONS(415), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [124] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7679), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1487), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7663), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1429), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(792), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(124), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), - [anon_sym_export] = ACTIONS(355), - [anon_sym_alias] = ACTIONS(357), - [anon_sym_let] = ACTIONS(359), - [anon_sym_let_DASHenv] = ACTIONS(359), - [anon_sym_mut] = ACTIONS(361), - [anon_sym_const] = ACTIONS(363), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(417), - [aux_sym__val_number_decimal_token2] = ACTIONS(419), - [aux_sym__val_number_decimal_token3] = ACTIONS(421), - [aux_sym__val_number_decimal_token4] = ACTIONS(423), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), + [anon_sym_export] = ACTIONS(349), + [anon_sym_alias] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_let_DASHenv] = ACTIONS(353), + [anon_sym_mut] = ACTIONS(355), + [anon_sym_const] = ACTIONS(357), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(391), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(409), + [aux_sym__val_number_decimal_token2] = ACTIONS(411), + [aux_sym__val_number_decimal_token3] = ACTIONS(413), + [aux_sym__val_number_decimal_token4] = ACTIONS(415), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [125] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7705), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1487), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7694), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1429), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(792), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(125), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), - [anon_sym_export] = ACTIONS(355), - [anon_sym_alias] = ACTIONS(357), - [anon_sym_let] = ACTIONS(359), - [anon_sym_let_DASHenv] = ACTIONS(359), - [anon_sym_mut] = ACTIONS(361), - [anon_sym_const] = ACTIONS(363), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(417), - [aux_sym__val_number_decimal_token2] = ACTIONS(419), - [aux_sym__val_number_decimal_token3] = ACTIONS(421), - [aux_sym__val_number_decimal_token4] = ACTIONS(423), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), + [anon_sym_export] = ACTIONS(349), + [anon_sym_alias] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_let_DASHenv] = ACTIONS(353), + [anon_sym_mut] = ACTIONS(355), + [anon_sym_const] = ACTIONS(357), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(391), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(409), + [aux_sym__val_number_decimal_token2] = ACTIONS(411), + [aux_sym__val_number_decimal_token3] = ACTIONS(413), + [aux_sym__val_number_decimal_token4] = ACTIONS(415), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [126] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7678), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1487), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7551), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1429), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(792), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(126), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), - [anon_sym_export] = ACTIONS(355), - [anon_sym_alias] = ACTIONS(357), - [anon_sym_let] = ACTIONS(359), - [anon_sym_let_DASHenv] = ACTIONS(359), - [anon_sym_mut] = ACTIONS(361), - [anon_sym_const] = ACTIONS(363), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(417), - [aux_sym__val_number_decimal_token2] = ACTIONS(419), - [aux_sym__val_number_decimal_token3] = ACTIONS(421), - [aux_sym__val_number_decimal_token4] = ACTIONS(423), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), + [anon_sym_export] = ACTIONS(349), + [anon_sym_alias] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_let_DASHenv] = ACTIONS(353), + [anon_sym_mut] = ACTIONS(355), + [anon_sym_const] = ACTIONS(357), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(391), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(409), + [aux_sym__val_number_decimal_token2] = ACTIONS(411), + [aux_sym__val_number_decimal_token3] = ACTIONS(413), + [aux_sym__val_number_decimal_token4] = ACTIONS(415), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [127] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7487), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1487), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7836), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1429), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(792), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(127), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), - [anon_sym_export] = ACTIONS(355), - [anon_sym_alias] = ACTIONS(357), - [anon_sym_let] = ACTIONS(359), - [anon_sym_let_DASHenv] = ACTIONS(359), - [anon_sym_mut] = ACTIONS(361), - [anon_sym_const] = ACTIONS(363), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(417), - [aux_sym__val_number_decimal_token2] = ACTIONS(419), - [aux_sym__val_number_decimal_token3] = ACTIONS(421), - [aux_sym__val_number_decimal_token4] = ACTIONS(423), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), + [anon_sym_export] = ACTIONS(349), + [anon_sym_alias] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_let_DASHenv] = ACTIONS(353), + [anon_sym_mut] = ACTIONS(355), + [anon_sym_const] = ACTIONS(357), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(391), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(409), + [aux_sym__val_number_decimal_token2] = ACTIONS(411), + [aux_sym__val_number_decimal_token3] = ACTIONS(413), + [aux_sym__val_number_decimal_token4] = ACTIONS(415), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [128] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7665), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1487), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7703), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1429), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(792), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(128), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), - [anon_sym_export] = ACTIONS(355), - [anon_sym_alias] = ACTIONS(357), - [anon_sym_let] = ACTIONS(359), - [anon_sym_let_DASHenv] = ACTIONS(359), - [anon_sym_mut] = ACTIONS(361), - [anon_sym_const] = ACTIONS(363), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(417), - [aux_sym__val_number_decimal_token2] = ACTIONS(419), - [aux_sym__val_number_decimal_token3] = ACTIONS(421), - [aux_sym__val_number_decimal_token4] = ACTIONS(423), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), + [anon_sym_export] = ACTIONS(349), + [anon_sym_alias] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_let_DASHenv] = ACTIONS(353), + [anon_sym_mut] = ACTIONS(355), + [anon_sym_const] = ACTIONS(357), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(391), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(409), + [aux_sym__val_number_decimal_token2] = ACTIONS(411), + [aux_sym__val_number_decimal_token3] = ACTIONS(413), + [aux_sym__val_number_decimal_token4] = ACTIONS(415), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [129] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7719), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1487), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7737), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1429), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(792), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(129), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), - [anon_sym_export] = ACTIONS(355), - [anon_sym_alias] = ACTIONS(357), - [anon_sym_let] = ACTIONS(359), - [anon_sym_let_DASHenv] = ACTIONS(359), - [anon_sym_mut] = ACTIONS(361), - [anon_sym_const] = ACTIONS(363), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(417), - [aux_sym__val_number_decimal_token2] = ACTIONS(419), - [aux_sym__val_number_decimal_token3] = ACTIONS(421), - [aux_sym__val_number_decimal_token4] = ACTIONS(423), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(337), + [anon_sym_export] = ACTIONS(349), + [anon_sym_alias] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_let_DASHenv] = ACTIONS(353), + [anon_sym_mut] = ACTIONS(355), + [anon_sym_const] = ACTIONS(357), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(391), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(409), + [aux_sym__val_number_decimal_token2] = ACTIONS(411), + [aux_sym__val_number_decimal_token3] = ACTIONS(413), + [aux_sym__val_number_decimal_token4] = ACTIONS(415), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [130] = { - [sym__block_body_statement] = STATE(6105), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym__block_body] = STATE(7544), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1487), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6001), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym__block_body] = STATE(7822), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1448), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(130), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(347), - [anon_sym_export] = ACTIONS(355), - [anon_sym_alias] = ACTIONS(357), - [anon_sym_let] = ACTIONS(359), - [anon_sym_let_DASHenv] = ACTIONS(359), - [anon_sym_mut] = ACTIONS(361), - [anon_sym_const] = ACTIONS(363), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(417), - [aux_sym__val_number_decimal_token2] = ACTIONS(419), - [aux_sym__val_number_decimal_token3] = ACTIONS(421), - [aux_sym__val_number_decimal_token4] = ACTIONS(423), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(102), + [aux_sym__block_body_repeat2] = STATE(136), + [aux_sym_pipe_element_repeat2] = STATE(339), + [anon_sym_export] = ACTIONS(585), + [anon_sym_alias] = ACTIONS(587), + [anon_sym_let] = ACTIONS(589), + [anon_sym_let_DASHenv] = ACTIONS(589), + [anon_sym_mut] = ACTIONS(591), + [anon_sym_const] = ACTIONS(593), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(595), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [131] = { - [sym__block_body_statement] = STATE(6187), - [sym__declaration] = STATE(6844), - [sym_decl_alias] = STATE(6909), - [sym_stmt_let] = STATE(6954), - [sym_stmt_mut] = STATE(6954), - [sym_stmt_const] = STATE(6954), - [sym_assignment] = STATE(6954), - [sym__mutable_assignment_pattern] = STATE(7040), - [sym__statement] = STATE(6844), - [sym_pipeline] = STATE(6954), - [sym_cmd_identifier] = STATE(4643), - [sym_decl_def] = STATE(6909), - [sym_decl_export] = STATE(6909), - [sym_decl_extern] = STATE(6909), - [sym_decl_module] = STATE(6909), - [sym_decl_use] = STATE(6909), - [sym__ctrl_statement] = STATE(6954), - [sym__ctrl_expression] = STATE(4993), - [sym_ctrl_for] = STATE(6791), - [sym_ctrl_loop] = STATE(6791), - [sym_ctrl_error] = STATE(6791), - [sym_ctrl_while] = STATE(6791), - [sym_ctrl_do] = STATE(5044), - [sym_ctrl_if] = STATE(5044), - [sym_ctrl_match] = STATE(5044), - [sym_ctrl_try] = STATE(5044), - [sym_ctrl_return] = STATE(5044), - [sym_pipe_element] = STATE(4685), - [sym_stmt_source] = STATE(6954), - [sym_stmt_register] = STATE(6954), - [sym__stmt_hide] = STATE(6954), - [sym_hide_mod] = STATE(7054), - [sym_hide_env] = STATE(7054), - [sym__stmt_overlay] = STATE(6954), - [sym_overlay_list] = STATE(7207), - [sym_overlay_hide] = STATE(7207), - [sym_overlay_new] = STATE(7207), - [sym_overlay_use] = STATE(7207), - [sym_where_command] = STATE(5107), - [sym__expression] = STATE(3831), - [sym_expr_unary] = STATE(2492), - [sym__expr_unary_minus] = STATE(2458), - [sym_expr_binary] = STATE(2492), - [sym__expr_binary_expression] = STATE(3874), - [sym_expr_parenthesized] = STATE(2094), - [sym_val_range] = STATE(2492), - [sym__value] = STATE(2492), - [sym_val_nothing] = STATE(2516), - [sym_val_bool] = STATE(2516), - [sym_val_variable] = STATE(1523), - [sym_val_number] = STATE(2516), - [sym__val_number_decimal] = STATE(813), - [sym__val_number] = STATE(2512), - [sym_val_duration] = STATE(2516), - [sym_val_filesize] = STATE(2516), - [sym_val_binary] = STATE(2516), - [sym_val_string] = STATE(2516), - [sym__raw_str] = STATE(1732), - [sym__str_double_quotes] = STATE(1732), - [sym_val_interpolated] = STATE(2516), - [sym__inter_single_quotes] = STATE(2527), - [sym__inter_double_quotes] = STATE(2528), - [sym_val_list] = STATE(2516), - [sym_val_record] = STATE(2516), - [sym_val_table] = STATE(2516), - [sym_val_closure] = STATE(2516), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(5107), + [sym__block_body_statement] = STATE(5958), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1448), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(131), + [aux_sym_pipeline_repeat1] = STATE(190), + [aux_sym__block_body_repeat2] = STATE(132), + [aux_sym_pipe_element_repeat2] = STATE(339), + [anon_sym_export] = ACTIONS(585), + [anon_sym_alias] = ACTIONS(587), + [anon_sym_let] = ACTIONS(589), + [anon_sym_let_DASHenv] = ACTIONS(589), + [anon_sym_mut] = ACTIONS(591), + [anon_sym_const] = ACTIONS(593), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(595), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), + }, + [132] = { + [sym__block_body_statement] = STATE(6780), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1520), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(807), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), + [sym_comment] = STATE(132), + [aux_sym_pipeline_repeat1] = STATE(188), + [aux_sym__block_body_repeat2] = STATE(132), + [aux_sym_pipe_element_repeat2] = STATE(348), + [anon_sym_export] = ACTIONS(599), + [anon_sym_alias] = ACTIONS(602), + [anon_sym_let] = ACTIONS(605), + [anon_sym_let_DASHenv] = ACTIONS(605), + [anon_sym_mut] = ACTIONS(608), + [anon_sym_const] = ACTIONS(611), + [aux_sym_cmd_identifier_token1] = ACTIONS(614), + [aux_sym_cmd_identifier_token2] = ACTIONS(617), + [aux_sym_cmd_identifier_token3] = ACTIONS(617), + [aux_sym_cmd_identifier_token4] = ACTIONS(617), + [aux_sym_cmd_identifier_token5] = ACTIONS(617), + [aux_sym_cmd_identifier_token6] = ACTIONS(617), + [aux_sym_cmd_identifier_token7] = ACTIONS(617), + [aux_sym_cmd_identifier_token8] = ACTIONS(614), + [aux_sym_cmd_identifier_token9] = ACTIONS(614), + [aux_sym_cmd_identifier_token10] = ACTIONS(617), + [aux_sym_cmd_identifier_token11] = ACTIONS(617), + [aux_sym_cmd_identifier_token12] = ACTIONS(614), + [aux_sym_cmd_identifier_token13] = ACTIONS(614), + [aux_sym_cmd_identifier_token14] = ACTIONS(614), + [aux_sym_cmd_identifier_token15] = ACTIONS(614), + [aux_sym_cmd_identifier_token16] = ACTIONS(617), + [aux_sym_cmd_identifier_token17] = ACTIONS(617), + [aux_sym_cmd_identifier_token18] = ACTIONS(614), + [aux_sym_cmd_identifier_token19] = ACTIONS(617), + [aux_sym_cmd_identifier_token20] = ACTIONS(617), + [aux_sym_cmd_identifier_token21] = ACTIONS(617), + [aux_sym_cmd_identifier_token22] = ACTIONS(617), + [aux_sym_cmd_identifier_token23] = ACTIONS(617), + [aux_sym_cmd_identifier_token24] = ACTIONS(617), + [aux_sym_cmd_identifier_token25] = ACTIONS(617), + [aux_sym_cmd_identifier_token26] = ACTIONS(617), + [aux_sym_cmd_identifier_token27] = ACTIONS(617), + [aux_sym_cmd_identifier_token28] = ACTIONS(617), + [aux_sym_cmd_identifier_token29] = ACTIONS(617), + [aux_sym_cmd_identifier_token30] = ACTIONS(617), + [aux_sym_cmd_identifier_token31] = ACTIONS(617), + [aux_sym_cmd_identifier_token32] = ACTIONS(614), + [aux_sym_cmd_identifier_token33] = ACTIONS(617), + [aux_sym_cmd_identifier_token34] = ACTIONS(614), + [aux_sym_cmd_identifier_token35] = ACTIONS(617), + [aux_sym_cmd_identifier_token36] = ACTIONS(617), + [aux_sym_cmd_identifier_token37] = ACTIONS(617), + [aux_sym_cmd_identifier_token38] = ACTIONS(614), + [aux_sym_cmd_identifier_token39] = ACTIONS(617), + [aux_sym_cmd_identifier_token40] = ACTIONS(617), + [anon_sym_def] = ACTIONS(620), + [anon_sym_export_DASHenv] = ACTIONS(623), + [anon_sym_extern] = ACTIONS(626), + [anon_sym_module] = ACTIONS(629), + [anon_sym_use] = ACTIONS(632), + [anon_sym_LBRACK] = ACTIONS(635), + [anon_sym_LPAREN] = ACTIONS(638), + [anon_sym_DOLLAR] = ACTIONS(641), + [anon_sym_error] = ACTIONS(644), + [anon_sym_DASH2] = ACTIONS(647), + [anon_sym_break] = ACTIONS(650), + [anon_sym_continue] = ACTIONS(653), + [anon_sym_for] = ACTIONS(656), + [anon_sym_loop] = ACTIONS(659), + [anon_sym_while] = ACTIONS(662), + [anon_sym_do] = ACTIONS(665), + [anon_sym_if] = ACTIONS(668), + [anon_sym_match] = ACTIONS(671), + [anon_sym_LBRACE] = ACTIONS(674), + [anon_sym_DOT_DOT] = ACTIONS(677), + [anon_sym_try] = ACTIONS(680), + [anon_sym_return] = ACTIONS(683), + [anon_sym_source] = ACTIONS(686), + [anon_sym_source_DASHenv] = ACTIONS(686), + [anon_sym_hide] = ACTIONS(689), + [anon_sym_hide_DASHenv] = ACTIONS(692), + [anon_sym_overlay] = ACTIONS(695), + [anon_sym_where] = ACTIONS(698), + [aux_sym_expr_unary_token1] = ACTIONS(701), + [anon_sym_DOT_DOT_EQ] = ACTIONS(704), + [anon_sym_DOT_DOT_LT] = ACTIONS(704), + [anon_sym_null] = ACTIONS(707), + [anon_sym_true] = ACTIONS(710), + [anon_sym_false] = ACTIONS(710), + [aux_sym__val_number_decimal_token1] = ACTIONS(713), + [aux_sym__val_number_decimal_token2] = ACTIONS(716), + [aux_sym__val_number_decimal_token3] = ACTIONS(719), + [aux_sym__val_number_decimal_token4] = ACTIONS(722), + [aux_sym__val_number_token1] = ACTIONS(725), + [aux_sym__val_number_token2] = ACTIONS(725), + [aux_sym__val_number_token3] = ACTIONS(725), + [aux_sym__val_number_token4] = ACTIONS(728), + [aux_sym__val_number_token5] = ACTIONS(728), + [aux_sym__val_number_token6] = ACTIONS(728), + [anon_sym_0b] = ACTIONS(731), + [anon_sym_0o] = ACTIONS(734), + [anon_sym_0x] = ACTIONS(734), + [sym_val_date] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(740), + [sym__str_single_quotes] = ACTIONS(743), + [sym__str_back_ticks] = ACTIONS(743), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(746), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(749), + [aux_sym_env_var_token1] = ACTIONS(752), + [anon_sym_CARET] = ACTIONS(755), + [aux_sym_command_token1] = ACTIONS(758), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(761), + }, + [133] = { + [sym__block_body_statement] = STATE(5958), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1429), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(792), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), + [sym_comment] = STATE(133), [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat2] = STATE(132), - [aux_sym_pipe_element_repeat2] = STATE(323), + [aux_sym_pipe_element_repeat2] = STATE(337), + [anon_sym_export] = ACTIONS(349), + [anon_sym_alias] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_let_DASHenv] = ACTIONS(353), + [anon_sym_mut] = ACTIONS(355), + [anon_sym_const] = ACTIONS(357), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(391), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(409), + [aux_sym__val_number_decimal_token2] = ACTIONS(411), + [aux_sym__val_number_decimal_token3] = ACTIONS(413), + [aux_sym__val_number_decimal_token4] = ACTIONS(415), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), + }, + [134] = { + [sym__block_body_statement_parenthesized] = STATE(5897), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), + [sym_comment] = STATE(134), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(135), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), + }, + [135] = { + [sym__block_body_statement_parenthesized] = STATE(6661), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1514), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(807), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), + [sym_comment] = STATE(135), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(343), + [aux_sym__parenthesized_body_repeat2] = STATE(135), + [anon_sym_export] = ACTIONS(764), + [anon_sym_alias] = ACTIONS(767), + [anon_sym_let] = ACTIONS(770), + [anon_sym_let_DASHenv] = ACTIONS(770), + [anon_sym_mut] = ACTIONS(773), + [anon_sym_const] = ACTIONS(776), + [aux_sym_cmd_identifier_token1] = ACTIONS(779), + [aux_sym_cmd_identifier_token2] = ACTIONS(782), + [aux_sym_cmd_identifier_token3] = ACTIONS(782), + [aux_sym_cmd_identifier_token4] = ACTIONS(782), + [aux_sym_cmd_identifier_token5] = ACTIONS(782), + [aux_sym_cmd_identifier_token6] = ACTIONS(782), + [aux_sym_cmd_identifier_token7] = ACTIONS(782), + [aux_sym_cmd_identifier_token8] = ACTIONS(779), + [aux_sym_cmd_identifier_token9] = ACTIONS(779), + [aux_sym_cmd_identifier_token10] = ACTIONS(782), + [aux_sym_cmd_identifier_token11] = ACTIONS(782), + [aux_sym_cmd_identifier_token12] = ACTIONS(779), + [aux_sym_cmd_identifier_token13] = ACTIONS(779), + [aux_sym_cmd_identifier_token14] = ACTIONS(779), + [aux_sym_cmd_identifier_token15] = ACTIONS(779), + [aux_sym_cmd_identifier_token16] = ACTIONS(782), + [aux_sym_cmd_identifier_token17] = ACTIONS(782), + [aux_sym_cmd_identifier_token18] = ACTIONS(779), + [aux_sym_cmd_identifier_token19] = ACTIONS(782), + [aux_sym_cmd_identifier_token20] = ACTIONS(782), + [aux_sym_cmd_identifier_token21] = ACTIONS(782), + [aux_sym_cmd_identifier_token22] = ACTIONS(782), + [aux_sym_cmd_identifier_token23] = ACTIONS(782), + [aux_sym_cmd_identifier_token24] = ACTIONS(782), + [aux_sym_cmd_identifier_token25] = ACTIONS(782), + [aux_sym_cmd_identifier_token26] = ACTIONS(782), + [aux_sym_cmd_identifier_token27] = ACTIONS(782), + [aux_sym_cmd_identifier_token28] = ACTIONS(782), + [aux_sym_cmd_identifier_token29] = ACTIONS(782), + [aux_sym_cmd_identifier_token30] = ACTIONS(782), + [aux_sym_cmd_identifier_token31] = ACTIONS(782), + [aux_sym_cmd_identifier_token32] = ACTIONS(779), + [aux_sym_cmd_identifier_token33] = ACTIONS(782), + [aux_sym_cmd_identifier_token34] = ACTIONS(779), + [aux_sym_cmd_identifier_token35] = ACTIONS(782), + [aux_sym_cmd_identifier_token36] = ACTIONS(782), + [aux_sym_cmd_identifier_token37] = ACTIONS(782), + [aux_sym_cmd_identifier_token38] = ACTIONS(779), + [aux_sym_cmd_identifier_token39] = ACTIONS(782), + [aux_sym_cmd_identifier_token40] = ACTIONS(782), + [anon_sym_def] = ACTIONS(785), + [anon_sym_export_DASHenv] = ACTIONS(788), + [anon_sym_extern] = ACTIONS(791), + [anon_sym_module] = ACTIONS(794), + [anon_sym_use] = ACTIONS(797), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(803), + [anon_sym_DOLLAR] = ACTIONS(806), + [anon_sym_error] = ACTIONS(809), + [anon_sym_DASH2] = ACTIONS(812), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(818), + [anon_sym_for] = ACTIONS(821), + [anon_sym_loop] = ACTIONS(824), + [anon_sym_while] = ACTIONS(827), + [anon_sym_do] = ACTIONS(830), + [anon_sym_if] = ACTIONS(833), + [anon_sym_match] = ACTIONS(836), + [anon_sym_LBRACE] = ACTIONS(839), + [anon_sym_DOT_DOT] = ACTIONS(842), + [anon_sym_try] = ACTIONS(845), + [anon_sym_return] = ACTIONS(848), + [anon_sym_source] = ACTIONS(851), + [anon_sym_source_DASHenv] = ACTIONS(851), + [anon_sym_hide] = ACTIONS(854), + [anon_sym_hide_DASHenv] = ACTIONS(857), + [anon_sym_overlay] = ACTIONS(860), + [anon_sym_where] = ACTIONS(863), + [aux_sym_expr_unary_token1] = ACTIONS(866), + [anon_sym_DOT_DOT_EQ] = ACTIONS(869), + [anon_sym_DOT_DOT_LT] = ACTIONS(869), + [anon_sym_null] = ACTIONS(872), + [anon_sym_true] = ACTIONS(875), + [anon_sym_false] = ACTIONS(875), + [aux_sym__val_number_decimal_token1] = ACTIONS(878), + [aux_sym__val_number_decimal_token2] = ACTIONS(881), + [aux_sym__val_number_decimal_token3] = ACTIONS(884), + [aux_sym__val_number_decimal_token4] = ACTIONS(887), + [aux_sym__val_number_token1] = ACTIONS(890), + [aux_sym__val_number_token2] = ACTIONS(890), + [aux_sym__val_number_token3] = ACTIONS(890), + [aux_sym__val_number_token4] = ACTIONS(893), + [aux_sym__val_number_token5] = ACTIONS(893), + [aux_sym__val_number_token6] = ACTIONS(893), + [anon_sym_0b] = ACTIONS(896), + [anon_sym_0o] = ACTIONS(899), + [anon_sym_0x] = ACTIONS(899), + [sym_val_date] = ACTIONS(902), + [anon_sym_DQUOTE] = ACTIONS(905), + [sym__str_single_quotes] = ACTIONS(908), + [sym__str_back_ticks] = ACTIONS(908), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(911), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(914), + [aux_sym_env_var_token1] = ACTIONS(917), + [anon_sym_CARET] = ACTIONS(920), + [aux_sym_command_token1] = ACTIONS(923), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(926), + }, + [136] = { + [sym__block_body_statement] = STATE(6073), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1448), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), + [sym_comment] = STATE(136), + [aux_sym_pipeline_repeat1] = STATE(190), + [aux_sym__block_body_repeat2] = STATE(132), + [aux_sym_pipe_element_repeat2] = STATE(339), + [anon_sym_export] = ACTIONS(585), + [anon_sym_alias] = ACTIONS(587), + [anon_sym_let] = ACTIONS(589), + [anon_sym_let_DASHenv] = ACTIONS(589), + [anon_sym_mut] = ACTIONS(591), + [anon_sym_const] = ACTIONS(593), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(595), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), + }, + [137] = { + [sym__block_body_statement] = STATE(6358), + [sym__declaration] = STATE(7087), + [sym_decl_alias] = STATE(7107), + [sym_stmt_let] = STATE(6768), + [sym_stmt_mut] = STATE(6768), + [sym_stmt_const] = STATE(6768), + [sym_assignment] = STATE(6768), + [sym__mutable_assignment_pattern] = STATE(6947), + [sym__statement] = STATE(7087), + [sym_pipeline] = STATE(6768), + [sym_cmd_identifier] = STATE(4582), + [sym_decl_def] = STATE(7107), + [sym_decl_export] = STATE(7107), + [sym_decl_extern] = STATE(7107), + [sym_decl_module] = STATE(7107), + [sym_decl_use] = STATE(7107), + [sym__ctrl_statement] = STATE(6768), + [sym__ctrl_expression] = STATE(4975), + [sym_ctrl_for] = STATE(6911), + [sym_ctrl_loop] = STATE(6911), + [sym_ctrl_error] = STATE(6911), + [sym_ctrl_while] = STATE(6911), + [sym_ctrl_do] = STATE(5010), + [sym_ctrl_if] = STATE(5010), + [sym_ctrl_match] = STATE(5010), + [sym_ctrl_try] = STATE(5010), + [sym_ctrl_return] = STATE(5010), + [sym_pipe_element] = STATE(4613), + [sym_stmt_source] = STATE(6768), + [sym__stmt_hide] = STATE(6768), + [sym_hide_mod] = STATE(7173), + [sym_hide_env] = STATE(7173), + [sym__stmt_overlay] = STATE(6768), + [sym_overlay_list] = STATE(7262), + [sym_overlay_hide] = STATE(7262), + [sym_overlay_new] = STATE(7262), + [sym_overlay_use] = STATE(7262), + [sym_where_command] = STATE(5021), + [sym__expression] = STATE(3866), + [sym_expr_unary] = STATE(2443), + [sym__expr_unary_minus] = STATE(2502), + [sym_expr_binary] = STATE(2443), + [sym__expr_binary_expression] = STATE(3829), + [sym_expr_parenthesized] = STATE(2049), + [sym_val_range] = STATE(2443), + [sym__value] = STATE(2443), + [sym_val_nothing] = STATE(2419), + [sym_val_bool] = STATE(2419), + [sym_val_variable] = STATE(1422), + [sym_val_number] = STATE(2419), + [sym__val_number_decimal] = STATE(782), + [sym__val_number] = STATE(2425), + [sym_val_duration] = STATE(2419), + [sym_val_filesize] = STATE(2419), + [sym_val_binary] = STATE(2419), + [sym_val_string] = STATE(2419), + [sym__raw_str] = STATE(1605), + [sym__str_double_quotes] = STATE(1605), + [sym_val_interpolated] = STATE(2419), + [sym__inter_single_quotes] = STATE(2426), + [sym__inter_double_quotes] = STATE(2421), + [sym_val_list] = STATE(2419), + [sym_val_record] = STATE(2419), + [sym_val_table] = STATE(2419), + [sym_val_closure] = STATE(2419), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(5021), + [sym_comment] = STATE(137), + [aux_sym_pipeline_repeat1] = STATE(192), + [aux_sym__block_body_repeat2] = STATE(132), + [aux_sym_pipe_element_repeat2] = STATE(342), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), [anon_sym_let] = ACTIONS(13), @@ -93912,1010 +94928,290 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(69), [anon_sym_source] = ACTIONS(71), [anon_sym_source_DASHenv] = ACTIONS(71), - [anon_sym_register] = ACTIONS(73), - [anon_sym_hide] = ACTIONS(75), - [anon_sym_hide_DASHenv] = ACTIONS(77), - [anon_sym_overlay] = ACTIONS(79), - [anon_sym_where] = ACTIONS(81), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(85), - [anon_sym_DOT_DOT_LT] = ACTIONS(85), - [anon_sym_null] = ACTIONS(87), - [anon_sym_true] = ACTIONS(89), - [anon_sym_false] = ACTIONS(89), - [aux_sym__val_number_decimal_token1] = ACTIONS(91), - [aux_sym__val_number_decimal_token2] = ACTIONS(93), - [aux_sym__val_number_decimal_token3] = ACTIONS(95), - [aux_sym__val_number_decimal_token4] = ACTIONS(97), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(101), - [aux_sym__val_number_token5] = ACTIONS(101), - [aux_sym__val_number_token6] = ACTIONS(101), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(119), - [aux_sym_command_token1] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [132] = { - [sym__block_body_statement] = STATE(7129), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1620), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), - [sym_comment] = STATE(132), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym__block_body_repeat2] = STATE(132), - [aux_sym_pipe_element_repeat2] = STATE(334), - [anon_sym_export] = ACTIONS(607), - [anon_sym_alias] = ACTIONS(610), - [anon_sym_let] = ACTIONS(613), - [anon_sym_let_DASHenv] = ACTIONS(613), - [anon_sym_mut] = ACTIONS(616), - [anon_sym_const] = ACTIONS(619), - [aux_sym_cmd_identifier_token1] = ACTIONS(622), - [aux_sym_cmd_identifier_token2] = ACTIONS(625), - [aux_sym_cmd_identifier_token3] = ACTIONS(625), - [aux_sym_cmd_identifier_token4] = ACTIONS(625), - [aux_sym_cmd_identifier_token5] = ACTIONS(625), - [aux_sym_cmd_identifier_token6] = ACTIONS(625), - [aux_sym_cmd_identifier_token7] = ACTIONS(625), - [aux_sym_cmd_identifier_token8] = ACTIONS(622), - [aux_sym_cmd_identifier_token9] = ACTIONS(622), - [aux_sym_cmd_identifier_token10] = ACTIONS(625), - [aux_sym_cmd_identifier_token11] = ACTIONS(625), - [aux_sym_cmd_identifier_token12] = ACTIONS(622), - [aux_sym_cmd_identifier_token13] = ACTIONS(622), - [aux_sym_cmd_identifier_token14] = ACTIONS(622), - [aux_sym_cmd_identifier_token15] = ACTIONS(622), - [aux_sym_cmd_identifier_token16] = ACTIONS(625), - [aux_sym_cmd_identifier_token17] = ACTIONS(625), - [aux_sym_cmd_identifier_token18] = ACTIONS(622), - [aux_sym_cmd_identifier_token19] = ACTIONS(625), - [aux_sym_cmd_identifier_token20] = ACTIONS(625), - [aux_sym_cmd_identifier_token21] = ACTIONS(625), - [aux_sym_cmd_identifier_token22] = ACTIONS(625), - [aux_sym_cmd_identifier_token23] = ACTIONS(625), - [aux_sym_cmd_identifier_token24] = ACTIONS(625), - [aux_sym_cmd_identifier_token25] = ACTIONS(625), - [aux_sym_cmd_identifier_token26] = ACTIONS(625), - [aux_sym_cmd_identifier_token27] = ACTIONS(625), - [aux_sym_cmd_identifier_token28] = ACTIONS(625), - [aux_sym_cmd_identifier_token29] = ACTIONS(625), - [aux_sym_cmd_identifier_token30] = ACTIONS(625), - [aux_sym_cmd_identifier_token31] = ACTIONS(625), - [aux_sym_cmd_identifier_token32] = ACTIONS(622), - [aux_sym_cmd_identifier_token33] = ACTIONS(625), - [aux_sym_cmd_identifier_token34] = ACTIONS(622), - [aux_sym_cmd_identifier_token35] = ACTIONS(625), - [aux_sym_cmd_identifier_token36] = ACTIONS(625), - [aux_sym_cmd_identifier_token37] = ACTIONS(625), - [aux_sym_cmd_identifier_token38] = ACTIONS(622), - [aux_sym_cmd_identifier_token39] = ACTIONS(625), - [aux_sym_cmd_identifier_token40] = ACTIONS(625), - [anon_sym_def] = ACTIONS(628), - [anon_sym_export_DASHenv] = ACTIONS(631), - [anon_sym_extern] = ACTIONS(634), - [anon_sym_module] = ACTIONS(637), - [anon_sym_use] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(643), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_DOLLAR] = ACTIONS(649), - [anon_sym_error] = ACTIONS(652), - [anon_sym_DASH2] = ACTIONS(655), - [anon_sym_break] = ACTIONS(658), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_for] = ACTIONS(664), - [anon_sym_loop] = ACTIONS(667), - [anon_sym_while] = ACTIONS(670), - [anon_sym_do] = ACTIONS(673), - [anon_sym_if] = ACTIONS(676), - [anon_sym_match] = ACTIONS(679), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_DOT_DOT] = ACTIONS(685), - [anon_sym_try] = ACTIONS(688), - [anon_sym_return] = ACTIONS(691), - [anon_sym_source] = ACTIONS(694), - [anon_sym_source_DASHenv] = ACTIONS(694), - [anon_sym_register] = ACTIONS(697), - [anon_sym_hide] = ACTIONS(700), - [anon_sym_hide_DASHenv] = ACTIONS(703), - [anon_sym_overlay] = ACTIONS(706), - [anon_sym_where] = ACTIONS(709), - [aux_sym_expr_unary_token1] = ACTIONS(712), - [anon_sym_DOT_DOT_EQ] = ACTIONS(715), - [anon_sym_DOT_DOT_LT] = ACTIONS(715), - [anon_sym_null] = ACTIONS(718), - [anon_sym_true] = ACTIONS(721), - [anon_sym_false] = ACTIONS(721), - [aux_sym__val_number_decimal_token1] = ACTIONS(724), - [aux_sym__val_number_decimal_token2] = ACTIONS(727), - [aux_sym__val_number_decimal_token3] = ACTIONS(730), - [aux_sym__val_number_decimal_token4] = ACTIONS(733), - [aux_sym__val_number_token1] = ACTIONS(736), - [aux_sym__val_number_token2] = ACTIONS(736), - [aux_sym__val_number_token3] = ACTIONS(736), - [aux_sym__val_number_token4] = ACTIONS(739), - [aux_sym__val_number_token5] = ACTIONS(739), - [aux_sym__val_number_token6] = ACTIONS(739), - [anon_sym_0b] = ACTIONS(742), - [anon_sym_0o] = ACTIONS(745), - [anon_sym_0x] = ACTIONS(745), - [sym_val_date] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(751), - [sym__str_single_quotes] = ACTIONS(754), - [sym__str_back_ticks] = ACTIONS(754), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(757), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(760), - [aux_sym_env_var_token1] = ACTIONS(763), - [anon_sym_CARET] = ACTIONS(766), - [aux_sym_command_token1] = ACTIONS(769), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(772), - }, - [133] = { - [sym__block_body_statement_parenthesized] = STATE(6344), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1619), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), - [sym_comment] = STATE(133), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(338), - [aux_sym__parenthesized_body_repeat2] = STATE(133), - [anon_sym_export] = ACTIONS(775), - [anon_sym_alias] = ACTIONS(778), - [anon_sym_let] = ACTIONS(781), - [anon_sym_let_DASHenv] = ACTIONS(781), - [anon_sym_mut] = ACTIONS(784), - [anon_sym_const] = ACTIONS(787), - [aux_sym_cmd_identifier_token1] = ACTIONS(790), - [aux_sym_cmd_identifier_token2] = ACTIONS(793), - [aux_sym_cmd_identifier_token3] = ACTIONS(793), - [aux_sym_cmd_identifier_token4] = ACTIONS(793), - [aux_sym_cmd_identifier_token5] = ACTIONS(793), - [aux_sym_cmd_identifier_token6] = ACTIONS(793), - [aux_sym_cmd_identifier_token7] = ACTIONS(793), - [aux_sym_cmd_identifier_token8] = ACTIONS(790), - [aux_sym_cmd_identifier_token9] = ACTIONS(790), - [aux_sym_cmd_identifier_token10] = ACTIONS(793), - [aux_sym_cmd_identifier_token11] = ACTIONS(793), - [aux_sym_cmd_identifier_token12] = ACTIONS(790), - [aux_sym_cmd_identifier_token13] = ACTIONS(790), - [aux_sym_cmd_identifier_token14] = ACTIONS(790), - [aux_sym_cmd_identifier_token15] = ACTIONS(790), - [aux_sym_cmd_identifier_token16] = ACTIONS(793), - [aux_sym_cmd_identifier_token17] = ACTIONS(793), - [aux_sym_cmd_identifier_token18] = ACTIONS(790), - [aux_sym_cmd_identifier_token19] = ACTIONS(793), - [aux_sym_cmd_identifier_token20] = ACTIONS(793), - [aux_sym_cmd_identifier_token21] = ACTIONS(793), - [aux_sym_cmd_identifier_token22] = ACTIONS(793), - [aux_sym_cmd_identifier_token23] = ACTIONS(793), - [aux_sym_cmd_identifier_token24] = ACTIONS(793), - [aux_sym_cmd_identifier_token25] = ACTIONS(793), - [aux_sym_cmd_identifier_token26] = ACTIONS(793), - [aux_sym_cmd_identifier_token27] = ACTIONS(793), - [aux_sym_cmd_identifier_token28] = ACTIONS(793), - [aux_sym_cmd_identifier_token29] = ACTIONS(793), - [aux_sym_cmd_identifier_token30] = ACTIONS(793), - [aux_sym_cmd_identifier_token31] = ACTIONS(793), - [aux_sym_cmd_identifier_token32] = ACTIONS(790), - [aux_sym_cmd_identifier_token33] = ACTIONS(793), - [aux_sym_cmd_identifier_token34] = ACTIONS(790), - [aux_sym_cmd_identifier_token35] = ACTIONS(793), - [aux_sym_cmd_identifier_token36] = ACTIONS(793), - [aux_sym_cmd_identifier_token37] = ACTIONS(793), - [aux_sym_cmd_identifier_token38] = ACTIONS(790), - [aux_sym_cmd_identifier_token39] = ACTIONS(793), - [aux_sym_cmd_identifier_token40] = ACTIONS(793), - [anon_sym_def] = ACTIONS(796), - [anon_sym_export_DASHenv] = ACTIONS(799), - [anon_sym_extern] = ACTIONS(802), - [anon_sym_module] = ACTIONS(805), - [anon_sym_use] = ACTIONS(808), - [anon_sym_LBRACK] = ACTIONS(811), - [anon_sym_LPAREN] = ACTIONS(814), - [anon_sym_DOLLAR] = ACTIONS(817), - [anon_sym_error] = ACTIONS(820), - [anon_sym_DASH2] = ACTIONS(823), - [anon_sym_break] = ACTIONS(826), - [anon_sym_continue] = ACTIONS(829), - [anon_sym_for] = ACTIONS(832), - [anon_sym_loop] = ACTIONS(835), - [anon_sym_while] = ACTIONS(838), - [anon_sym_do] = ACTIONS(841), - [anon_sym_if] = ACTIONS(844), - [anon_sym_match] = ACTIONS(847), - [anon_sym_LBRACE] = ACTIONS(850), - [anon_sym_DOT_DOT] = ACTIONS(853), - [anon_sym_try] = ACTIONS(856), - [anon_sym_return] = ACTIONS(859), - [anon_sym_source] = ACTIONS(862), - [anon_sym_source_DASHenv] = ACTIONS(862), - [anon_sym_register] = ACTIONS(865), - [anon_sym_hide] = ACTIONS(868), - [anon_sym_hide_DASHenv] = ACTIONS(871), - [anon_sym_overlay] = ACTIONS(874), - [anon_sym_where] = ACTIONS(877), - [aux_sym_expr_unary_token1] = ACTIONS(880), - [anon_sym_DOT_DOT_EQ] = ACTIONS(883), - [anon_sym_DOT_DOT_LT] = ACTIONS(883), - [anon_sym_null] = ACTIONS(886), - [anon_sym_true] = ACTIONS(889), - [anon_sym_false] = ACTIONS(889), - [aux_sym__val_number_decimal_token1] = ACTIONS(892), - [aux_sym__val_number_decimal_token2] = ACTIONS(895), - [aux_sym__val_number_decimal_token3] = ACTIONS(898), - [aux_sym__val_number_decimal_token4] = ACTIONS(901), - [aux_sym__val_number_token1] = ACTIONS(904), - [aux_sym__val_number_token2] = ACTIONS(904), - [aux_sym__val_number_token3] = ACTIONS(904), - [aux_sym__val_number_token4] = ACTIONS(907), - [aux_sym__val_number_token5] = ACTIONS(907), - [aux_sym__val_number_token6] = ACTIONS(907), - [anon_sym_0b] = ACTIONS(910), - [anon_sym_0o] = ACTIONS(913), - [anon_sym_0x] = ACTIONS(913), - [sym_val_date] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(919), - [sym__str_single_quotes] = ACTIONS(922), - [sym__str_back_ticks] = ACTIONS(922), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(925), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(928), - [aux_sym_env_var_token1] = ACTIONS(931), - [anon_sym_CARET] = ACTIONS(934), - [aux_sym_command_token1] = ACTIONS(937), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(940), - }, - [134] = { - [sym__block_body_statement] = STATE(5995), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1543), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), - [sym_comment] = STATE(134), - [aux_sym_pipeline_repeat1] = STATE(189), - [aux_sym__block_body_repeat2] = STATE(132), - [aux_sym_pipe_element_repeat2] = STATE(339), - [anon_sym_export] = ACTIONS(593), - [anon_sym_alias] = ACTIONS(595), - [anon_sym_let] = ACTIONS(597), - [anon_sym_let_DASHenv] = ACTIONS(597), - [anon_sym_mut] = ACTIONS(599), - [anon_sym_const] = ACTIONS(601), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(603), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, - [135] = { - [sym__block_body_statement] = STATE(5962), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1543), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), - [sym_comment] = STATE(135), - [aux_sym_pipeline_repeat1] = STATE(189), - [aux_sym__block_body_repeat2] = STATE(132), - [aux_sym_pipe_element_repeat2] = STATE(339), - [anon_sym_export] = ACTIONS(593), - [anon_sym_alias] = ACTIONS(595), - [anon_sym_let] = ACTIONS(597), - [anon_sym_let_DASHenv] = ACTIONS(597), - [anon_sym_mut] = ACTIONS(599), - [anon_sym_const] = ACTIONS(601), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(603), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_hide] = ACTIONS(73), + [anon_sym_hide_DASHenv] = ACTIONS(75), + [anon_sym_overlay] = ACTIONS(77), + [anon_sym_where] = ACTIONS(79), + [aux_sym_expr_unary_token1] = ACTIONS(81), + [anon_sym_DOT_DOT_EQ] = ACTIONS(83), + [anon_sym_DOT_DOT_LT] = ACTIONS(83), + [anon_sym_null] = ACTIONS(85), + [anon_sym_true] = ACTIONS(87), + [anon_sym_false] = ACTIONS(87), + [aux_sym__val_number_decimal_token1] = ACTIONS(89), + [aux_sym__val_number_decimal_token2] = ACTIONS(91), + [aux_sym__val_number_decimal_token3] = ACTIONS(93), + [aux_sym__val_number_decimal_token4] = ACTIONS(95), + [aux_sym__val_number_token1] = ACTIONS(97), + [aux_sym__val_number_token2] = ACTIONS(97), + [aux_sym__val_number_token3] = ACTIONS(97), + [aux_sym__val_number_token4] = ACTIONS(99), + [aux_sym__val_number_token5] = ACTIONS(99), + [aux_sym__val_number_token6] = ACTIONS(99), + [anon_sym_0b] = ACTIONS(101), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym__str_single_quotes] = ACTIONS(109), + [sym__str_back_ticks] = ACTIONS(109), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(117), + [aux_sym_command_token1] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, - [136] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), - [sym_comment] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(133), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [138] = { + [sym__block_body_statement_parenthesized] = STATE(5754), + [sym__declaration_parenthesized] = STATE(6720), + [sym_decl_alias_parenthesized] = STATE(6748), + [sym_stmt_let_parenthesized] = STATE(6760), + [sym_stmt_mut_parenthesized] = STATE(6760), + [sym_stmt_const_parenthesized] = STATE(6760), + [sym_assignment_parenthesized] = STATE(6760), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6761), + [sym__statement_parenthesized] = STATE(6720), + [sym_pipeline_parenthesized] = STATE(6760), + [sym_cmd_identifier] = STATE(4601), + [sym_decl_def] = STATE(6748), + [sym_decl_export] = STATE(6748), + [sym_decl_extern] = STATE(6748), + [sym_decl_module] = STATE(6748), + [sym_decl_use] = STATE(6748), + [sym__ctrl_statement] = STATE(6760), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_stmt_source] = STATE(6760), + [sym__stmt_hide] = STATE(6760), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6760), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), + [sym_comment] = STATE(138), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym__parenthesized_body_repeat2] = STATE(135), + [anon_sym_export] = ACTIONS(423), + [anon_sym_alias] = ACTIONS(425), + [anon_sym_let] = ACTIONS(427), + [anon_sym_let_DASHenv] = ACTIONS(427), + [anon_sym_mut] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, - [137] = { - [sym__block_body_statement] = STATE(6663), - [sym__declaration] = STATE(6844), - [sym_decl_alias] = STATE(6909), - [sym_stmt_let] = STATE(6954), - [sym_stmt_mut] = STATE(6954), - [sym_stmt_const] = STATE(6954), - [sym_assignment] = STATE(6954), - [sym__mutable_assignment_pattern] = STATE(7040), - [sym__statement] = STATE(6844), - [sym_pipeline] = STATE(6954), - [sym_cmd_identifier] = STATE(4643), - [sym_decl_def] = STATE(6909), - [sym_decl_export] = STATE(6909), - [sym_decl_extern] = STATE(6909), - [sym_decl_module] = STATE(6909), - [sym_decl_use] = STATE(6909), - [sym__ctrl_statement] = STATE(6954), - [sym__ctrl_expression] = STATE(4993), - [sym_ctrl_for] = STATE(6791), - [sym_ctrl_loop] = STATE(6791), - [sym_ctrl_error] = STATE(6791), - [sym_ctrl_while] = STATE(6791), - [sym_ctrl_do] = STATE(5044), - [sym_ctrl_if] = STATE(5044), - [sym_ctrl_match] = STATE(5044), - [sym_ctrl_try] = STATE(5044), - [sym_ctrl_return] = STATE(5044), - [sym_pipe_element] = STATE(4685), - [sym_stmt_source] = STATE(6954), - [sym_stmt_register] = STATE(6954), - [sym__stmt_hide] = STATE(6954), - [sym_hide_mod] = STATE(7054), - [sym_hide_env] = STATE(7054), - [sym__stmt_overlay] = STATE(6954), - [sym_overlay_list] = STATE(7207), - [sym_overlay_hide] = STATE(7207), - [sym_overlay_new] = STATE(7207), - [sym_overlay_use] = STATE(7207), - [sym_where_command] = STATE(5107), - [sym__expression] = STATE(3831), - [sym_expr_unary] = STATE(2492), - [sym__expr_unary_minus] = STATE(2458), - [sym_expr_binary] = STATE(2492), - [sym__expr_binary_expression] = STATE(3874), - [sym_expr_parenthesized] = STATE(2094), - [sym_val_range] = STATE(2492), - [sym__value] = STATE(2492), - [sym_val_nothing] = STATE(2516), - [sym_val_bool] = STATE(2516), - [sym_val_variable] = STATE(1523), - [sym_val_number] = STATE(2516), - [sym__val_number_decimal] = STATE(813), - [sym__val_number] = STATE(2512), - [sym_val_duration] = STATE(2516), - [sym_val_filesize] = STATE(2516), - [sym_val_binary] = STATE(2516), - [sym_val_string] = STATE(2516), - [sym__raw_str] = STATE(1732), - [sym__str_double_quotes] = STATE(1732), - [sym_val_interpolated] = STATE(2516), - [sym__inter_single_quotes] = STATE(2527), - [sym__inter_double_quotes] = STATE(2528), - [sym_val_list] = STATE(2516), - [sym_val_record] = STATE(2516), - [sym_val_table] = STATE(2516), - [sym_val_closure] = STATE(2516), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(5107), - [sym_comment] = STATE(137), - [aux_sym_pipeline_repeat1] = STATE(187), + [139] = { + [sym__block_body_statement] = STATE(6230), + [sym__declaration] = STATE(7087), + [sym_decl_alias] = STATE(7107), + [sym_stmt_let] = STATE(6768), + [sym_stmt_mut] = STATE(6768), + [sym_stmt_const] = STATE(6768), + [sym_assignment] = STATE(6768), + [sym__mutable_assignment_pattern] = STATE(6947), + [sym__statement] = STATE(7087), + [sym_pipeline] = STATE(6768), + [sym_cmd_identifier] = STATE(4582), + [sym_decl_def] = STATE(7107), + [sym_decl_export] = STATE(7107), + [sym_decl_extern] = STATE(7107), + [sym_decl_module] = STATE(7107), + [sym_decl_use] = STATE(7107), + [sym__ctrl_statement] = STATE(6768), + [sym__ctrl_expression] = STATE(4975), + [sym_ctrl_for] = STATE(6911), + [sym_ctrl_loop] = STATE(6911), + [sym_ctrl_error] = STATE(6911), + [sym_ctrl_while] = STATE(6911), + [sym_ctrl_do] = STATE(5010), + [sym_ctrl_if] = STATE(5010), + [sym_ctrl_match] = STATE(5010), + [sym_ctrl_try] = STATE(5010), + [sym_ctrl_return] = STATE(5010), + [sym_pipe_element] = STATE(4613), + [sym_stmt_source] = STATE(6768), + [sym__stmt_hide] = STATE(6768), + [sym_hide_mod] = STATE(7173), + [sym_hide_env] = STATE(7173), + [sym__stmt_overlay] = STATE(6768), + [sym_overlay_list] = STATE(7262), + [sym_overlay_hide] = STATE(7262), + [sym_overlay_new] = STATE(7262), + [sym_overlay_use] = STATE(7262), + [sym_where_command] = STATE(5021), + [sym__expression] = STATE(3866), + [sym_expr_unary] = STATE(2443), + [sym__expr_unary_minus] = STATE(2502), + [sym_expr_binary] = STATE(2443), + [sym__expr_binary_expression] = STATE(3829), + [sym_expr_parenthesized] = STATE(2049), + [sym_val_range] = STATE(2443), + [sym__value] = STATE(2443), + [sym_val_nothing] = STATE(2419), + [sym_val_bool] = STATE(2419), + [sym_val_variable] = STATE(1422), + [sym_val_number] = STATE(2419), + [sym__val_number_decimal] = STATE(782), + [sym__val_number] = STATE(2425), + [sym_val_duration] = STATE(2419), + [sym_val_filesize] = STATE(2419), + [sym_val_binary] = STATE(2419), + [sym_val_string] = STATE(2419), + [sym__raw_str] = STATE(1605), + [sym__str_double_quotes] = STATE(1605), + [sym_val_interpolated] = STATE(2419), + [sym__inter_single_quotes] = STATE(2426), + [sym__inter_double_quotes] = STATE(2421), + [sym_val_list] = STATE(2419), + [sym_val_record] = STATE(2419), + [sym_val_table] = STATE(2419), + [sym_val_closure] = STATE(2419), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(5021), + [sym_comment] = STATE(139), + [aux_sym_pipeline_repeat1] = STATE(192), [aux_sym__block_body_repeat2] = STATE(132), - [aux_sym_pipe_element_repeat2] = STATE(323), + [aux_sym_pipe_element_repeat2] = STATE(342), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), [anon_sym_let] = ACTIONS(13), @@ -94986,1083 +95282,1232 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(69), [anon_sym_source] = ACTIONS(71), [anon_sym_source_DASHenv] = ACTIONS(71), - [anon_sym_register] = ACTIONS(73), - [anon_sym_hide] = ACTIONS(75), - [anon_sym_hide_DASHenv] = ACTIONS(77), - [anon_sym_overlay] = ACTIONS(79), - [anon_sym_where] = ACTIONS(81), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(85), - [anon_sym_DOT_DOT_LT] = ACTIONS(85), - [anon_sym_null] = ACTIONS(87), - [anon_sym_true] = ACTIONS(89), - [anon_sym_false] = ACTIONS(89), - [aux_sym__val_number_decimal_token1] = ACTIONS(91), - [aux_sym__val_number_decimal_token2] = ACTIONS(93), - [aux_sym__val_number_decimal_token3] = ACTIONS(95), - [aux_sym__val_number_decimal_token4] = ACTIONS(97), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(101), - [aux_sym__val_number_token5] = ACTIONS(101), - [aux_sym__val_number_token6] = ACTIONS(101), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(119), - [aux_sym_command_token1] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [138] = { - [sym__block_body_statement_parenthesized] = STATE(5735), - [sym__declaration_parenthesized] = STATE(7234), - [sym_decl_alias_parenthesized] = STATE(7277), - [sym_stmt_let_parenthesized] = STATE(7294), - [sym_stmt_mut_parenthesized] = STATE(7294), - [sym_stmt_const_parenthesized] = STATE(7294), - [sym_assignment_parenthesized] = STATE(7294), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7295), - [sym__statement_parenthesized] = STATE(7234), - [sym_pipeline_parenthesized] = STATE(7294), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7277), - [sym_decl_export] = STATE(7277), - [sym_decl_extern] = STATE(7277), - [sym_decl_module] = STATE(7277), - [sym_decl_use] = STATE(7277), - [sym__ctrl_statement] = STATE(7294), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_stmt_source] = STATE(7294), - [sym_stmt_register] = STATE(7294), - [sym__stmt_hide] = STATE(7294), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(7294), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), - [sym_comment] = STATE(138), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym__parenthesized_body_repeat2] = STATE(133), - [anon_sym_export] = ACTIONS(431), - [anon_sym_alias] = ACTIONS(433), - [anon_sym_let] = ACTIONS(435), - [anon_sym_let_DASHenv] = ACTIONS(435), - [anon_sym_mut] = ACTIONS(437), - [anon_sym_const] = ACTIONS(439), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, - [139] = { - [sym__block_body_statement] = STATE(5962), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1487), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), - [sym_comment] = STATE(139), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat2] = STATE(132), - [aux_sym_pipe_element_repeat2] = STATE(347), - [anon_sym_export] = ACTIONS(355), - [anon_sym_alias] = ACTIONS(357), - [anon_sym_let] = ACTIONS(359), - [anon_sym_let_DASHenv] = ACTIONS(359), - [anon_sym_mut] = ACTIONS(361), - [anon_sym_const] = ACTIONS(363), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(417), - [aux_sym__val_number_decimal_token2] = ACTIONS(419), - [aux_sym__val_number_decimal_token3] = ACTIONS(421), - [aux_sym__val_number_decimal_token4] = ACTIONS(423), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_hide] = ACTIONS(73), + [anon_sym_hide_DASHenv] = ACTIONS(75), + [anon_sym_overlay] = ACTIONS(77), + [anon_sym_where] = ACTIONS(79), + [aux_sym_expr_unary_token1] = ACTIONS(81), + [anon_sym_DOT_DOT_EQ] = ACTIONS(83), + [anon_sym_DOT_DOT_LT] = ACTIONS(83), + [anon_sym_null] = ACTIONS(85), + [anon_sym_true] = ACTIONS(87), + [anon_sym_false] = ACTIONS(87), + [aux_sym__val_number_decimal_token1] = ACTIONS(89), + [aux_sym__val_number_decimal_token2] = ACTIONS(91), + [aux_sym__val_number_decimal_token3] = ACTIONS(93), + [aux_sym__val_number_decimal_token4] = ACTIONS(95), + [aux_sym__val_number_token1] = ACTIONS(97), + [aux_sym__val_number_token2] = ACTIONS(97), + [aux_sym__val_number_token3] = ACTIONS(97), + [aux_sym__val_number_token4] = ACTIONS(99), + [aux_sym__val_number_token5] = ACTIONS(99), + [aux_sym__val_number_token6] = ACTIONS(99), + [anon_sym_0b] = ACTIONS(101), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym__str_single_quotes] = ACTIONS(109), + [sym__str_back_ticks] = ACTIONS(109), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(117), + [aux_sym_command_token1] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [140] = { - [sym__block_body_statement] = STATE(5995), - [sym__declaration] = STATE(6627), - [sym_decl_alias] = STATE(6628), - [sym_stmt_let] = STATE(6629), - [sym_stmt_mut] = STATE(6629), - [sym_stmt_const] = STATE(6629), - [sym_assignment] = STATE(6629), - [sym__mutable_assignment_pattern] = STATE(6631), - [sym__statement] = STATE(6627), - [sym_pipeline] = STATE(6629), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6628), - [sym_decl_export] = STATE(6628), - [sym_decl_extern] = STATE(6628), - [sym_decl_module] = STATE(6628), - [sym_decl_use] = STATE(6628), - [sym__ctrl_statement] = STATE(6629), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_for] = STATE(6635), - [sym_ctrl_loop] = STATE(6635), - [sym_ctrl_error] = STATE(6635), - [sym_ctrl_while] = STATE(6635), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6629), - [sym_stmt_register] = STATE(6629), - [sym__stmt_hide] = STATE(6629), - [sym_hide_mod] = STATE(6637), - [sym_hide_env] = STATE(6637), - [sym__stmt_overlay] = STATE(6629), - [sym_overlay_list] = STATE(6639), - [sym_overlay_hide] = STATE(6639), - [sym_overlay_new] = STATE(6639), - [sym_overlay_use] = STATE(6639), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1487), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym__block_body_statement] = STATE(6073), + [sym__declaration] = STATE(6164), + [sym_decl_alias] = STATE(6165), + [sym_stmt_let] = STATE(6166), + [sym_stmt_mut] = STATE(6166), + [sym_stmt_const] = STATE(6166), + [sym_assignment] = STATE(6166), + [sym__mutable_assignment_pattern] = STATE(6167), + [sym__statement] = STATE(6164), + [sym_pipeline] = STATE(6166), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6165), + [sym_decl_export] = STATE(6165), + [sym_decl_extern] = STATE(6165), + [sym_decl_module] = STATE(6165), + [sym_decl_use] = STATE(6165), + [sym__ctrl_statement] = STATE(6166), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_for] = STATE(6171), + [sym_ctrl_loop] = STATE(6171), + [sym_ctrl_error] = STATE(6171), + [sym_ctrl_while] = STATE(6171), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_stmt_source] = STATE(6166), + [sym__stmt_hide] = STATE(6166), + [sym_hide_mod] = STATE(6172), + [sym_hide_env] = STATE(6172), + [sym__stmt_overlay] = STATE(6166), + [sym_overlay_list] = STATE(6173), + [sym_overlay_hide] = STATE(6173), + [sym_overlay_new] = STATE(6173), + [sym_overlay_use] = STATE(6173), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1429), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(792), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(140), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat2] = STATE(132), - [aux_sym_pipe_element_repeat2] = STATE(347), - [anon_sym_export] = ACTIONS(355), - [anon_sym_alias] = ACTIONS(357), - [anon_sym_let] = ACTIONS(359), - [anon_sym_let_DASHenv] = ACTIONS(359), - [anon_sym_mut] = ACTIONS(361), - [anon_sym_const] = ACTIONS(363), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [anon_sym_def] = ACTIONS(371), - [anon_sym_export_DASHenv] = ACTIONS(373), - [anon_sym_extern] = ACTIONS(375), - [anon_sym_module] = ACTIONS(377), - [anon_sym_use] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(381), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_for] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_while] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_source] = ACTIONS(407), - [anon_sym_source_DASHenv] = ACTIONS(407), - [anon_sym_register] = ACTIONS(409), - [anon_sym_hide] = ACTIONS(411), - [anon_sym_hide_DASHenv] = ACTIONS(413), - [anon_sym_overlay] = ACTIONS(415), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(417), - [aux_sym__val_number_decimal_token2] = ACTIONS(419), - [aux_sym__val_number_decimal_token3] = ACTIONS(421), - [aux_sym__val_number_decimal_token4] = ACTIONS(423), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipe_element_repeat2] = STATE(337), + [anon_sym_export] = ACTIONS(349), + [anon_sym_alias] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_let_DASHenv] = ACTIONS(353), + [anon_sym_mut] = ACTIONS(355), + [anon_sym_const] = ACTIONS(357), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(359), + [aux_sym_cmd_identifier_token10] = ACTIONS(361), + [aux_sym_cmd_identifier_token11] = ACTIONS(361), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [anon_sym_def] = ACTIONS(365), + [anon_sym_export_DASHenv] = ACTIONS(367), + [anon_sym_extern] = ACTIONS(369), + [anon_sym_module] = ACTIONS(371), + [anon_sym_use] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(375), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_for] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(391), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_source] = ACTIONS(401), + [anon_sym_source_DASHenv] = ACTIONS(401), + [anon_sym_hide] = ACTIONS(403), + [anon_sym_hide_DASHenv] = ACTIONS(405), + [anon_sym_overlay] = ACTIONS(407), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(409), + [aux_sym__val_number_decimal_token2] = ACTIONS(411), + [aux_sym__val_number_decimal_token3] = ACTIONS(413), + [aux_sym__val_number_decimal_token4] = ACTIONS(415), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [141] = { [sym_cell_path] = STATE(153), [sym_path] = STATE(152), [sym_comment] = STATE(141), - [aux_sym_cell_path_repeat1] = STATE(142), - [anon_sym_export] = ACTIONS(943), - [anon_sym_alias] = ACTIONS(943), - [anon_sym_EQ] = ACTIONS(943), - [anon_sym_let] = ACTIONS(943), - [anon_sym_let_DASHenv] = ACTIONS(943), - [anon_sym_mut] = ACTIONS(943), - [anon_sym_const] = ACTIONS(943), - [anon_sym_PLUS_EQ] = ACTIONS(945), - [anon_sym_DASH_EQ] = ACTIONS(945), - [anon_sym_STAR_EQ] = ACTIONS(945), - [anon_sym_SLASH_EQ] = ACTIONS(945), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(945), - [aux_sym_cmd_identifier_token1] = ACTIONS(943), - [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(943), - [aux_sym_cmd_identifier_token9] = ACTIONS(943), - [aux_sym_cmd_identifier_token10] = ACTIONS(945), - [aux_sym_cmd_identifier_token11] = ACTIONS(945), - [aux_sym_cmd_identifier_token12] = ACTIONS(943), - [aux_sym_cmd_identifier_token13] = ACTIONS(943), - [aux_sym_cmd_identifier_token14] = ACTIONS(943), - [aux_sym_cmd_identifier_token15] = ACTIONS(943), - [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(943), - [aux_sym_cmd_identifier_token35] = ACTIONS(945), - [aux_sym_cmd_identifier_token36] = ACTIONS(945), - [aux_sym_cmd_identifier_token37] = ACTIONS(945), - [aux_sym_cmd_identifier_token38] = ACTIONS(943), - [aux_sym_cmd_identifier_token39] = ACTIONS(945), - [aux_sym_cmd_identifier_token40] = ACTIONS(945), - [sym__newline] = ACTIONS(945), - [anon_sym_SEMI] = ACTIONS(945), - [anon_sym_PIPE] = ACTIONS(945), - [anon_sym_err_GT_PIPE] = ACTIONS(945), - [anon_sym_out_GT_PIPE] = ACTIONS(945), - [anon_sym_e_GT_PIPE] = ACTIONS(945), - [anon_sym_o_GT_PIPE] = ACTIONS(945), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(945), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(945), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(945), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(945), - [anon_sym_def] = ACTIONS(943), - [anon_sym_export_DASHenv] = ACTIONS(943), - [anon_sym_extern] = ACTIONS(943), - [anon_sym_module] = ACTIONS(943), - [anon_sym_use] = ACTIONS(943), - [anon_sym_LPAREN] = ACTIONS(945), - [anon_sym_COMMA] = ACTIONS(945), - [anon_sym_DOLLAR] = ACTIONS(943), - [anon_sym_error] = ACTIONS(943), - [anon_sym_GT2] = ACTIONS(943), - [anon_sym_DASH2] = ACTIONS(943), - [anon_sym_break] = ACTIONS(943), - [anon_sym_continue] = ACTIONS(943), - [anon_sym_for] = ACTIONS(943), - [anon_sym_in2] = ACTIONS(943), - [anon_sym_loop] = ACTIONS(943), - [anon_sym_make] = ACTIONS(943), - [anon_sym_while] = ACTIONS(943), - [anon_sym_do] = ACTIONS(943), - [anon_sym_if] = ACTIONS(943), - [anon_sym_else] = ACTIONS(943), - [anon_sym_match] = ACTIONS(943), - [anon_sym_RBRACE] = ACTIONS(945), - [anon_sym_try] = ACTIONS(943), - [anon_sym_catch] = ACTIONS(943), - [anon_sym_return] = ACTIONS(943), - [anon_sym_source] = ACTIONS(943), - [anon_sym_source_DASHenv] = ACTIONS(943), - [anon_sym_register] = ACTIONS(943), - [anon_sym_hide] = ACTIONS(943), - [anon_sym_hide_DASHenv] = ACTIONS(943), - [anon_sym_overlay] = ACTIONS(943), - [anon_sym_as] = ACTIONS(943), - [anon_sym_STAR2] = ACTIONS(943), - [anon_sym_and2] = ACTIONS(945), - [anon_sym_xor2] = ACTIONS(945), - [anon_sym_or2] = ACTIONS(945), - [anon_sym_not_DASHin2] = ACTIONS(945), - [anon_sym_starts_DASHwith2] = ACTIONS(945), - [anon_sym_ends_DASHwith2] = ACTIONS(945), - [anon_sym_EQ_EQ2] = ACTIONS(945), - [anon_sym_BANG_EQ2] = ACTIONS(945), - [anon_sym_LT2] = ACTIONS(943), - [anon_sym_LT_EQ2] = ACTIONS(945), - [anon_sym_GT_EQ2] = ACTIONS(945), - [anon_sym_EQ_TILDE2] = ACTIONS(945), - [anon_sym_BANG_TILDE2] = ACTIONS(945), - [anon_sym_STAR_STAR2] = ACTIONS(945), - [anon_sym_PLUS_PLUS2] = ACTIONS(943), - [anon_sym_SLASH2] = ACTIONS(943), - [anon_sym_mod2] = ACTIONS(943), - [anon_sym_SLASH_SLASH2] = ACTIONS(945), - [anon_sym_PLUS2] = ACTIONS(943), - [anon_sym_bit_DASHshl2] = ACTIONS(945), - [anon_sym_bit_DASHshr2] = ACTIONS(945), - [anon_sym_bit_DASHand2] = ACTIONS(945), - [anon_sym_bit_DASHxor2] = ACTIONS(945), - [anon_sym_bit_DASHor2] = ACTIONS(945), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(945), - [anon_sym_DOT_DOT2] = ACTIONS(943), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(945), - [anon_sym_DOT_DOT_LT2] = ACTIONS(945), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(945), - [aux_sym__val_number_decimal_token1] = ACTIONS(943), - [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), - [aux_sym__val_number_token4] = ACTIONS(943), - [aux_sym__val_number_token5] = ACTIONS(943), - [aux_sym__val_number_token6] = ACTIONS(943), - [anon_sym_DQUOTE] = ACTIONS(945), - [sym__str_single_quotes] = ACTIONS(945), - [sym__str_back_ticks] = ACTIONS(945), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(945), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(945), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(945), - [anon_sym_COLON2] = ACTIONS(945), - [anon_sym_DOT2] = ACTIONS(947), - [anon_sym_err_GT] = ACTIONS(943), - [anon_sym_out_GT] = ACTIONS(943), - [anon_sym_e_GT] = ACTIONS(943), - [anon_sym_o_GT] = ACTIONS(943), - [anon_sym_err_PLUSout_GT] = ACTIONS(943), - [anon_sym_out_PLUSerr_GT] = ACTIONS(943), - [anon_sym_o_PLUSe_GT] = ACTIONS(943), - [anon_sym_e_PLUSo_GT] = ACTIONS(943), - [anon_sym_err_GT_GT] = ACTIONS(945), - [anon_sym_out_GT_GT] = ACTIONS(945), - [anon_sym_e_GT_GT] = ACTIONS(945), - [anon_sym_o_GT_GT] = ACTIONS(945), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(945), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(945), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(945), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(945), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(945), + [aux_sym_cell_path_repeat1] = STATE(143), + [anon_sym_export] = ACTIONS(929), + [anon_sym_alias] = ACTIONS(929), + [anon_sym_EQ] = ACTIONS(929), + [anon_sym_let] = ACTIONS(929), + [anon_sym_let_DASHenv] = ACTIONS(929), + [anon_sym_mut] = ACTIONS(929), + [anon_sym_const] = ACTIONS(929), + [anon_sym_PLUS_EQ] = ACTIONS(931), + [anon_sym_DASH_EQ] = ACTIONS(931), + [anon_sym_STAR_EQ] = ACTIONS(931), + [anon_sym_SLASH_EQ] = ACTIONS(931), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(931), + [aux_sym_cmd_identifier_token1] = ACTIONS(929), + [aux_sym_cmd_identifier_token2] = ACTIONS(931), + [aux_sym_cmd_identifier_token3] = ACTIONS(931), + [aux_sym_cmd_identifier_token4] = ACTIONS(931), + [aux_sym_cmd_identifier_token5] = ACTIONS(931), + [aux_sym_cmd_identifier_token6] = ACTIONS(931), + [aux_sym_cmd_identifier_token7] = ACTIONS(931), + [aux_sym_cmd_identifier_token8] = ACTIONS(929), + [aux_sym_cmd_identifier_token9] = ACTIONS(929), + [aux_sym_cmd_identifier_token10] = ACTIONS(931), + [aux_sym_cmd_identifier_token11] = ACTIONS(931), + [aux_sym_cmd_identifier_token12] = ACTIONS(929), + [aux_sym_cmd_identifier_token13] = ACTIONS(929), + [aux_sym_cmd_identifier_token14] = ACTIONS(929), + [aux_sym_cmd_identifier_token15] = ACTIONS(929), + [aux_sym_cmd_identifier_token16] = ACTIONS(931), + [aux_sym_cmd_identifier_token17] = ACTIONS(931), + [aux_sym_cmd_identifier_token18] = ACTIONS(931), + [aux_sym_cmd_identifier_token19] = ACTIONS(931), + [aux_sym_cmd_identifier_token20] = ACTIONS(931), + [aux_sym_cmd_identifier_token21] = ACTIONS(931), + [aux_sym_cmd_identifier_token22] = ACTIONS(931), + [aux_sym_cmd_identifier_token23] = ACTIONS(931), + [aux_sym_cmd_identifier_token24] = ACTIONS(931), + [aux_sym_cmd_identifier_token25] = ACTIONS(931), + [aux_sym_cmd_identifier_token26] = ACTIONS(931), + [aux_sym_cmd_identifier_token27] = ACTIONS(931), + [aux_sym_cmd_identifier_token28] = ACTIONS(931), + [aux_sym_cmd_identifier_token29] = ACTIONS(931), + [aux_sym_cmd_identifier_token30] = ACTIONS(931), + [aux_sym_cmd_identifier_token31] = ACTIONS(931), + [aux_sym_cmd_identifier_token32] = ACTIONS(931), + [aux_sym_cmd_identifier_token33] = ACTIONS(931), + [aux_sym_cmd_identifier_token34] = ACTIONS(929), + [aux_sym_cmd_identifier_token35] = ACTIONS(931), + [aux_sym_cmd_identifier_token36] = ACTIONS(931), + [aux_sym_cmd_identifier_token37] = ACTIONS(931), + [aux_sym_cmd_identifier_token38] = ACTIONS(929), + [aux_sym_cmd_identifier_token39] = ACTIONS(931), + [aux_sym_cmd_identifier_token40] = ACTIONS(931), + [sym__newline] = ACTIONS(931), + [anon_sym_SEMI] = ACTIONS(931), + [anon_sym_PIPE] = ACTIONS(931), + [anon_sym_err_GT_PIPE] = ACTIONS(931), + [anon_sym_out_GT_PIPE] = ACTIONS(931), + [anon_sym_e_GT_PIPE] = ACTIONS(931), + [anon_sym_o_GT_PIPE] = ACTIONS(931), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(931), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(931), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(931), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(931), + [anon_sym_def] = ACTIONS(929), + [anon_sym_export_DASHenv] = ACTIONS(929), + [anon_sym_extern] = ACTIONS(929), + [anon_sym_module] = ACTIONS(929), + [anon_sym_use] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_COMMA] = ACTIONS(931), + [anon_sym_DOLLAR] = ACTIONS(929), + [anon_sym_error] = ACTIONS(929), + [anon_sym_GT2] = ACTIONS(929), + [anon_sym_DASH2] = ACTIONS(929), + [anon_sym_break] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(929), + [anon_sym_for] = ACTIONS(929), + [anon_sym_in2] = ACTIONS(929), + [anon_sym_loop] = ACTIONS(929), + [anon_sym_make] = ACTIONS(929), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(929), + [anon_sym_if] = ACTIONS(929), + [anon_sym_else] = ACTIONS(929), + [anon_sym_match] = ACTIONS(929), + [anon_sym_RBRACE] = ACTIONS(931), + [anon_sym_try] = ACTIONS(929), + [anon_sym_catch] = ACTIONS(929), + [anon_sym_return] = ACTIONS(929), + [anon_sym_source] = ACTIONS(929), + [anon_sym_source_DASHenv] = ACTIONS(929), + [anon_sym_hide] = ACTIONS(929), + [anon_sym_hide_DASHenv] = ACTIONS(929), + [anon_sym_overlay] = ACTIONS(929), + [anon_sym_as] = ACTIONS(929), + [anon_sym_STAR2] = ACTIONS(929), + [anon_sym_and2] = ACTIONS(931), + [anon_sym_xor2] = ACTIONS(931), + [anon_sym_or2] = ACTIONS(931), + [anon_sym_not_DASHin2] = ACTIONS(931), + [anon_sym_has2] = ACTIONS(931), + [anon_sym_not_DASHhas2] = ACTIONS(931), + [anon_sym_starts_DASHwith2] = ACTIONS(931), + [anon_sym_ends_DASHwith2] = ACTIONS(931), + [anon_sym_EQ_EQ2] = ACTIONS(931), + [anon_sym_BANG_EQ2] = ACTIONS(931), + [anon_sym_LT2] = ACTIONS(929), + [anon_sym_LT_EQ2] = ACTIONS(931), + [anon_sym_GT_EQ2] = ACTIONS(931), + [anon_sym_EQ_TILDE2] = ACTIONS(931), + [anon_sym_BANG_TILDE2] = ACTIONS(931), + [anon_sym_STAR_STAR2] = ACTIONS(931), + [anon_sym_PLUS_PLUS2] = ACTIONS(929), + [anon_sym_SLASH2] = ACTIONS(929), + [anon_sym_mod2] = ACTIONS(929), + [anon_sym_SLASH_SLASH2] = ACTIONS(931), + [anon_sym_PLUS2] = ACTIONS(929), + [anon_sym_bit_DASHshl2] = ACTIONS(931), + [anon_sym_bit_DASHshr2] = ACTIONS(931), + [anon_sym_bit_DASHand2] = ACTIONS(931), + [anon_sym_bit_DASHxor2] = ACTIONS(931), + [anon_sym_bit_DASHor2] = ACTIONS(931), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(931), + [anon_sym_DOT_DOT2] = ACTIONS(929), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(931), + [anon_sym_DOT_DOT_LT2] = ACTIONS(931), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(931), + [aux_sym__val_number_decimal_token1] = ACTIONS(929), + [aux_sym__val_number_decimal_token2] = ACTIONS(931), + [aux_sym__val_number_decimal_token3] = ACTIONS(931), + [aux_sym__val_number_decimal_token4] = ACTIONS(931), + [aux_sym__val_number_token1] = ACTIONS(931), + [aux_sym__val_number_token2] = ACTIONS(931), + [aux_sym__val_number_token3] = ACTIONS(931), + [aux_sym__val_number_token4] = ACTIONS(929), + [aux_sym__val_number_token5] = ACTIONS(929), + [aux_sym__val_number_token6] = ACTIONS(929), + [anon_sym_DQUOTE] = ACTIONS(931), + [sym__str_single_quotes] = ACTIONS(931), + [sym__str_back_ticks] = ACTIONS(931), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(931), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(931), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(931), + [anon_sym_register] = ACTIONS(929), + [anon_sym_COLON2] = ACTIONS(931), + [anon_sym_DOT2] = ACTIONS(933), + [anon_sym_err_GT] = ACTIONS(929), + [anon_sym_out_GT] = ACTIONS(929), + [anon_sym_e_GT] = ACTIONS(929), + [anon_sym_o_GT] = ACTIONS(929), + [anon_sym_err_PLUSout_GT] = ACTIONS(929), + [anon_sym_out_PLUSerr_GT] = ACTIONS(929), + [anon_sym_o_PLUSe_GT] = ACTIONS(929), + [anon_sym_e_PLUSo_GT] = ACTIONS(929), + [anon_sym_err_GT_GT] = ACTIONS(931), + [anon_sym_out_GT_GT] = ACTIONS(931), + [anon_sym_e_GT_GT] = ACTIONS(931), + [anon_sym_o_GT_GT] = ACTIONS(931), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(931), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(931), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(931), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(931), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(931), }, [142] = { [sym_path] = STATE(152), [sym_comment] = STATE(142), - [aux_sym_cell_path_repeat1] = STATE(143), - [anon_sym_export] = ACTIONS(949), - [anon_sym_alias] = ACTIONS(949), - [anon_sym_EQ] = ACTIONS(949), - [anon_sym_let] = ACTIONS(949), - [anon_sym_let_DASHenv] = ACTIONS(949), - [anon_sym_mut] = ACTIONS(949), - [anon_sym_const] = ACTIONS(949), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(951), - [aux_sym_cmd_identifier_token1] = ACTIONS(949), - [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(949), - [aux_sym_cmd_identifier_token9] = ACTIONS(949), - [aux_sym_cmd_identifier_token10] = ACTIONS(951), - [aux_sym_cmd_identifier_token11] = ACTIONS(951), - [aux_sym_cmd_identifier_token12] = ACTIONS(949), - [aux_sym_cmd_identifier_token13] = ACTIONS(949), - [aux_sym_cmd_identifier_token14] = ACTIONS(949), - [aux_sym_cmd_identifier_token15] = ACTIONS(949), - [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(949), - [aux_sym_cmd_identifier_token35] = ACTIONS(951), - [aux_sym_cmd_identifier_token36] = ACTIONS(951), - [aux_sym_cmd_identifier_token37] = ACTIONS(951), - [aux_sym_cmd_identifier_token38] = ACTIONS(949), - [aux_sym_cmd_identifier_token39] = ACTIONS(951), - [aux_sym_cmd_identifier_token40] = ACTIONS(951), - [sym__newline] = ACTIONS(951), - [anon_sym_SEMI] = ACTIONS(951), - [anon_sym_PIPE] = ACTIONS(951), - [anon_sym_err_GT_PIPE] = ACTIONS(951), - [anon_sym_out_GT_PIPE] = ACTIONS(951), - [anon_sym_e_GT_PIPE] = ACTIONS(951), - [anon_sym_o_GT_PIPE] = ACTIONS(951), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(951), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(951), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(951), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(951), - [anon_sym_def] = ACTIONS(949), - [anon_sym_export_DASHenv] = ACTIONS(949), - [anon_sym_extern] = ACTIONS(949), - [anon_sym_module] = ACTIONS(949), - [anon_sym_use] = ACTIONS(949), - [anon_sym_LPAREN] = ACTIONS(951), - [anon_sym_COMMA] = ACTIONS(951), - [anon_sym_DOLLAR] = ACTIONS(949), - [anon_sym_error] = ACTIONS(949), - [anon_sym_GT2] = ACTIONS(949), - [anon_sym_DASH2] = ACTIONS(949), - [anon_sym_break] = ACTIONS(949), - [anon_sym_continue] = ACTIONS(949), - [anon_sym_for] = ACTIONS(949), - [anon_sym_in2] = ACTIONS(949), - [anon_sym_loop] = ACTIONS(949), - [anon_sym_make] = ACTIONS(949), - [anon_sym_while] = ACTIONS(949), - [anon_sym_do] = ACTIONS(949), - [anon_sym_if] = ACTIONS(949), - [anon_sym_else] = ACTIONS(949), - [anon_sym_match] = ACTIONS(949), - [anon_sym_RBRACE] = ACTIONS(951), - [anon_sym_try] = ACTIONS(949), - [anon_sym_catch] = ACTIONS(949), - [anon_sym_return] = ACTIONS(949), - [anon_sym_source] = ACTIONS(949), - [anon_sym_source_DASHenv] = ACTIONS(949), - [anon_sym_register] = ACTIONS(949), - [anon_sym_hide] = ACTIONS(949), - [anon_sym_hide_DASHenv] = ACTIONS(949), - [anon_sym_overlay] = ACTIONS(949), - [anon_sym_as] = ACTIONS(949), - [anon_sym_STAR2] = ACTIONS(949), - [anon_sym_and2] = ACTIONS(951), - [anon_sym_xor2] = ACTIONS(951), - [anon_sym_or2] = ACTIONS(951), - [anon_sym_not_DASHin2] = ACTIONS(951), - [anon_sym_starts_DASHwith2] = ACTIONS(951), - [anon_sym_ends_DASHwith2] = ACTIONS(951), - [anon_sym_EQ_EQ2] = ACTIONS(951), - [anon_sym_BANG_EQ2] = ACTIONS(951), - [anon_sym_LT2] = ACTIONS(949), - [anon_sym_LT_EQ2] = ACTIONS(951), - [anon_sym_GT_EQ2] = ACTIONS(951), - [anon_sym_EQ_TILDE2] = ACTIONS(951), - [anon_sym_BANG_TILDE2] = ACTIONS(951), - [anon_sym_STAR_STAR2] = ACTIONS(951), - [anon_sym_PLUS_PLUS2] = ACTIONS(949), - [anon_sym_SLASH2] = ACTIONS(949), - [anon_sym_mod2] = ACTIONS(949), - [anon_sym_SLASH_SLASH2] = ACTIONS(951), - [anon_sym_PLUS2] = ACTIONS(949), - [anon_sym_bit_DASHshl2] = ACTIONS(951), - [anon_sym_bit_DASHshr2] = ACTIONS(951), - [anon_sym_bit_DASHand2] = ACTIONS(951), - [anon_sym_bit_DASHxor2] = ACTIONS(951), - [anon_sym_bit_DASHor2] = ACTIONS(951), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(951), - [anon_sym_DOT_DOT2] = ACTIONS(949), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(951), - [anon_sym_DOT_DOT_LT2] = ACTIONS(951), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(951), - [aux_sym__val_number_decimal_token1] = ACTIONS(949), - [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), - [aux_sym__val_number_token4] = ACTIONS(949), - [aux_sym__val_number_token5] = ACTIONS(949), - [aux_sym__val_number_token6] = ACTIONS(949), - [anon_sym_DQUOTE] = ACTIONS(951), - [sym__str_single_quotes] = ACTIONS(951), - [sym__str_back_ticks] = ACTIONS(951), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(951), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(951), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(951), - [anon_sym_COLON2] = ACTIONS(951), - [anon_sym_DOT2] = ACTIONS(947), - [anon_sym_err_GT] = ACTIONS(949), - [anon_sym_out_GT] = ACTIONS(949), - [anon_sym_e_GT] = ACTIONS(949), - [anon_sym_o_GT] = ACTIONS(949), - [anon_sym_err_PLUSout_GT] = ACTIONS(949), - [anon_sym_out_PLUSerr_GT] = ACTIONS(949), - [anon_sym_o_PLUSe_GT] = ACTIONS(949), - [anon_sym_e_PLUSo_GT] = ACTIONS(949), - [anon_sym_err_GT_GT] = ACTIONS(951), - [anon_sym_out_GT_GT] = ACTIONS(951), - [anon_sym_e_GT_GT] = ACTIONS(951), - [anon_sym_o_GT_GT] = ACTIONS(951), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(951), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(951), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(951), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(951), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(951), + [aux_sym_cell_path_repeat1] = STATE(142), + [anon_sym_export] = ACTIONS(935), + [anon_sym_alias] = ACTIONS(935), + [anon_sym_EQ] = ACTIONS(935), + [anon_sym_let] = ACTIONS(935), + [anon_sym_let_DASHenv] = ACTIONS(935), + [anon_sym_mut] = ACTIONS(935), + [anon_sym_const] = ACTIONS(935), + [anon_sym_PLUS_EQ] = ACTIONS(937), + [anon_sym_DASH_EQ] = ACTIONS(937), + [anon_sym_STAR_EQ] = ACTIONS(937), + [anon_sym_SLASH_EQ] = ACTIONS(937), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(937), + [aux_sym_cmd_identifier_token1] = ACTIONS(935), + [aux_sym_cmd_identifier_token2] = ACTIONS(937), + [aux_sym_cmd_identifier_token3] = ACTIONS(937), + [aux_sym_cmd_identifier_token4] = ACTIONS(937), + [aux_sym_cmd_identifier_token5] = ACTIONS(937), + [aux_sym_cmd_identifier_token6] = ACTIONS(937), + [aux_sym_cmd_identifier_token7] = ACTIONS(937), + [aux_sym_cmd_identifier_token8] = ACTIONS(935), + [aux_sym_cmd_identifier_token9] = ACTIONS(935), + [aux_sym_cmd_identifier_token10] = ACTIONS(937), + [aux_sym_cmd_identifier_token11] = ACTIONS(937), + [aux_sym_cmd_identifier_token12] = ACTIONS(935), + [aux_sym_cmd_identifier_token13] = ACTIONS(935), + [aux_sym_cmd_identifier_token14] = ACTIONS(935), + [aux_sym_cmd_identifier_token15] = ACTIONS(935), + [aux_sym_cmd_identifier_token16] = ACTIONS(937), + [aux_sym_cmd_identifier_token17] = ACTIONS(937), + [aux_sym_cmd_identifier_token18] = ACTIONS(937), + [aux_sym_cmd_identifier_token19] = ACTIONS(937), + [aux_sym_cmd_identifier_token20] = ACTIONS(937), + [aux_sym_cmd_identifier_token21] = ACTIONS(937), + [aux_sym_cmd_identifier_token22] = ACTIONS(937), + [aux_sym_cmd_identifier_token23] = ACTIONS(937), + [aux_sym_cmd_identifier_token24] = ACTIONS(937), + [aux_sym_cmd_identifier_token25] = ACTIONS(937), + [aux_sym_cmd_identifier_token26] = ACTIONS(937), + [aux_sym_cmd_identifier_token27] = ACTIONS(937), + [aux_sym_cmd_identifier_token28] = ACTIONS(937), + [aux_sym_cmd_identifier_token29] = ACTIONS(937), + [aux_sym_cmd_identifier_token30] = ACTIONS(937), + [aux_sym_cmd_identifier_token31] = ACTIONS(937), + [aux_sym_cmd_identifier_token32] = ACTIONS(937), + [aux_sym_cmd_identifier_token33] = ACTIONS(937), + [aux_sym_cmd_identifier_token34] = ACTIONS(935), + [aux_sym_cmd_identifier_token35] = ACTIONS(937), + [aux_sym_cmd_identifier_token36] = ACTIONS(937), + [aux_sym_cmd_identifier_token37] = ACTIONS(937), + [aux_sym_cmd_identifier_token38] = ACTIONS(935), + [aux_sym_cmd_identifier_token39] = ACTIONS(937), + [aux_sym_cmd_identifier_token40] = ACTIONS(937), + [sym__newline] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(937), + [anon_sym_err_GT_PIPE] = ACTIONS(937), + [anon_sym_out_GT_PIPE] = ACTIONS(937), + [anon_sym_e_GT_PIPE] = ACTIONS(937), + [anon_sym_o_GT_PIPE] = ACTIONS(937), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(937), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(937), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(937), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(937), + [anon_sym_def] = ACTIONS(935), + [anon_sym_export_DASHenv] = ACTIONS(935), + [anon_sym_extern] = ACTIONS(935), + [anon_sym_module] = ACTIONS(935), + [anon_sym_use] = ACTIONS(935), + [anon_sym_LPAREN] = ACTIONS(937), + [anon_sym_COMMA] = ACTIONS(937), + [anon_sym_DOLLAR] = ACTIONS(935), + [anon_sym_error] = ACTIONS(935), + [anon_sym_GT2] = ACTIONS(935), + [anon_sym_DASH2] = ACTIONS(935), + [anon_sym_break] = ACTIONS(935), + [anon_sym_continue] = ACTIONS(935), + [anon_sym_for] = ACTIONS(935), + [anon_sym_in2] = ACTIONS(935), + [anon_sym_loop] = ACTIONS(935), + [anon_sym_make] = ACTIONS(935), + [anon_sym_while] = ACTIONS(935), + [anon_sym_do] = ACTIONS(935), + [anon_sym_if] = ACTIONS(935), + [anon_sym_else] = ACTIONS(935), + [anon_sym_match] = ACTIONS(935), + [anon_sym_RBRACE] = ACTIONS(937), + [anon_sym_try] = ACTIONS(935), + [anon_sym_catch] = ACTIONS(935), + [anon_sym_return] = ACTIONS(935), + [anon_sym_source] = ACTIONS(935), + [anon_sym_source_DASHenv] = ACTIONS(935), + [anon_sym_hide] = ACTIONS(935), + [anon_sym_hide_DASHenv] = ACTIONS(935), + [anon_sym_overlay] = ACTIONS(935), + [anon_sym_as] = ACTIONS(935), + [anon_sym_STAR2] = ACTIONS(935), + [anon_sym_and2] = ACTIONS(937), + [anon_sym_xor2] = ACTIONS(937), + [anon_sym_or2] = ACTIONS(937), + [anon_sym_not_DASHin2] = ACTIONS(937), + [anon_sym_has2] = ACTIONS(937), + [anon_sym_not_DASHhas2] = ACTIONS(937), + [anon_sym_starts_DASHwith2] = ACTIONS(937), + [anon_sym_ends_DASHwith2] = ACTIONS(937), + [anon_sym_EQ_EQ2] = ACTIONS(937), + [anon_sym_BANG_EQ2] = ACTIONS(937), + [anon_sym_LT2] = ACTIONS(935), + [anon_sym_LT_EQ2] = ACTIONS(937), + [anon_sym_GT_EQ2] = ACTIONS(937), + [anon_sym_EQ_TILDE2] = ACTIONS(937), + [anon_sym_BANG_TILDE2] = ACTIONS(937), + [anon_sym_STAR_STAR2] = ACTIONS(937), + [anon_sym_PLUS_PLUS2] = ACTIONS(935), + [anon_sym_SLASH2] = ACTIONS(935), + [anon_sym_mod2] = ACTIONS(935), + [anon_sym_SLASH_SLASH2] = ACTIONS(937), + [anon_sym_PLUS2] = ACTIONS(935), + [anon_sym_bit_DASHshl2] = ACTIONS(937), + [anon_sym_bit_DASHshr2] = ACTIONS(937), + [anon_sym_bit_DASHand2] = ACTIONS(937), + [anon_sym_bit_DASHxor2] = ACTIONS(937), + [anon_sym_bit_DASHor2] = ACTIONS(937), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(937), + [anon_sym_DOT_DOT2] = ACTIONS(935), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(937), + [anon_sym_DOT_DOT_LT2] = ACTIONS(937), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(937), + [aux_sym__val_number_decimal_token1] = ACTIONS(935), + [aux_sym__val_number_decimal_token2] = ACTIONS(937), + [aux_sym__val_number_decimal_token3] = ACTIONS(937), + [aux_sym__val_number_decimal_token4] = ACTIONS(937), + [aux_sym__val_number_token1] = ACTIONS(937), + [aux_sym__val_number_token2] = ACTIONS(937), + [aux_sym__val_number_token3] = ACTIONS(937), + [aux_sym__val_number_token4] = ACTIONS(935), + [aux_sym__val_number_token5] = ACTIONS(935), + [aux_sym__val_number_token6] = ACTIONS(935), + [anon_sym_DQUOTE] = ACTIONS(937), + [sym__str_single_quotes] = ACTIONS(937), + [sym__str_back_ticks] = ACTIONS(937), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(937), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(937), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(937), + [anon_sym_register] = ACTIONS(935), + [anon_sym_COLON2] = ACTIONS(937), + [anon_sym_DOT2] = ACTIONS(939), + [anon_sym_err_GT] = ACTIONS(935), + [anon_sym_out_GT] = ACTIONS(935), + [anon_sym_e_GT] = ACTIONS(935), + [anon_sym_o_GT] = ACTIONS(935), + [anon_sym_err_PLUSout_GT] = ACTIONS(935), + [anon_sym_out_PLUSerr_GT] = ACTIONS(935), + [anon_sym_o_PLUSe_GT] = ACTIONS(935), + [anon_sym_e_PLUSo_GT] = ACTIONS(935), + [anon_sym_err_GT_GT] = ACTIONS(937), + [anon_sym_out_GT_GT] = ACTIONS(937), + [anon_sym_e_GT_GT] = ACTIONS(937), + [anon_sym_o_GT_GT] = ACTIONS(937), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(937), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(937), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(937), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(937), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(937), }, [143] = { [sym_path] = STATE(152), [sym_comment] = STATE(143), - [aux_sym_cell_path_repeat1] = STATE(143), - [anon_sym_export] = ACTIONS(953), - [anon_sym_alias] = ACTIONS(953), - [anon_sym_EQ] = ACTIONS(953), - [anon_sym_let] = ACTIONS(953), - [anon_sym_let_DASHenv] = ACTIONS(953), - [anon_sym_mut] = ACTIONS(953), - [anon_sym_const] = ACTIONS(953), - [anon_sym_PLUS_EQ] = ACTIONS(955), - [anon_sym_DASH_EQ] = ACTIONS(955), - [anon_sym_STAR_EQ] = ACTIONS(955), - [anon_sym_SLASH_EQ] = ACTIONS(955), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(955), - [aux_sym_cmd_identifier_token1] = ACTIONS(953), - [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(953), - [aux_sym_cmd_identifier_token9] = ACTIONS(953), - [aux_sym_cmd_identifier_token10] = ACTIONS(955), - [aux_sym_cmd_identifier_token11] = ACTIONS(955), - [aux_sym_cmd_identifier_token12] = ACTIONS(953), - [aux_sym_cmd_identifier_token13] = ACTIONS(953), - [aux_sym_cmd_identifier_token14] = ACTIONS(953), - [aux_sym_cmd_identifier_token15] = ACTIONS(953), - [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(953), - [aux_sym_cmd_identifier_token35] = ACTIONS(955), - [aux_sym_cmd_identifier_token36] = ACTIONS(955), - [aux_sym_cmd_identifier_token37] = ACTIONS(955), - [aux_sym_cmd_identifier_token38] = ACTIONS(953), - [aux_sym_cmd_identifier_token39] = ACTIONS(955), - [aux_sym_cmd_identifier_token40] = ACTIONS(955), - [sym__newline] = ACTIONS(955), - [anon_sym_SEMI] = ACTIONS(955), - [anon_sym_PIPE] = ACTIONS(955), - [anon_sym_err_GT_PIPE] = ACTIONS(955), - [anon_sym_out_GT_PIPE] = ACTIONS(955), - [anon_sym_e_GT_PIPE] = ACTIONS(955), - [anon_sym_o_GT_PIPE] = ACTIONS(955), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(955), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(955), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(955), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(955), - [anon_sym_def] = ACTIONS(953), - [anon_sym_export_DASHenv] = ACTIONS(953), - [anon_sym_extern] = ACTIONS(953), - [anon_sym_module] = ACTIONS(953), - [anon_sym_use] = ACTIONS(953), - [anon_sym_LPAREN] = ACTIONS(955), - [anon_sym_COMMA] = ACTIONS(955), - [anon_sym_DOLLAR] = ACTIONS(953), - [anon_sym_error] = ACTIONS(953), - [anon_sym_GT2] = ACTIONS(953), - [anon_sym_DASH2] = ACTIONS(953), - [anon_sym_break] = ACTIONS(953), - [anon_sym_continue] = ACTIONS(953), - [anon_sym_for] = ACTIONS(953), - [anon_sym_in2] = ACTIONS(953), - [anon_sym_loop] = ACTIONS(953), - [anon_sym_make] = ACTIONS(953), - [anon_sym_while] = ACTIONS(953), - [anon_sym_do] = ACTIONS(953), - [anon_sym_if] = ACTIONS(953), - [anon_sym_else] = ACTIONS(953), - [anon_sym_match] = ACTIONS(953), - [anon_sym_RBRACE] = ACTIONS(955), - [anon_sym_try] = ACTIONS(953), - [anon_sym_catch] = ACTIONS(953), - [anon_sym_return] = ACTIONS(953), - [anon_sym_source] = ACTIONS(953), - [anon_sym_source_DASHenv] = ACTIONS(953), - [anon_sym_register] = ACTIONS(953), - [anon_sym_hide] = ACTIONS(953), - [anon_sym_hide_DASHenv] = ACTIONS(953), - [anon_sym_overlay] = ACTIONS(953), - [anon_sym_as] = ACTIONS(953), - [anon_sym_STAR2] = ACTIONS(953), - [anon_sym_and2] = ACTIONS(955), - [anon_sym_xor2] = ACTIONS(955), - [anon_sym_or2] = ACTIONS(955), - [anon_sym_not_DASHin2] = ACTIONS(955), - [anon_sym_starts_DASHwith2] = ACTIONS(955), - [anon_sym_ends_DASHwith2] = ACTIONS(955), - [anon_sym_EQ_EQ2] = ACTIONS(955), - [anon_sym_BANG_EQ2] = ACTIONS(955), - [anon_sym_LT2] = ACTIONS(953), - [anon_sym_LT_EQ2] = ACTIONS(955), - [anon_sym_GT_EQ2] = ACTIONS(955), - [anon_sym_EQ_TILDE2] = ACTIONS(955), - [anon_sym_BANG_TILDE2] = ACTIONS(955), - [anon_sym_STAR_STAR2] = ACTIONS(955), - [anon_sym_PLUS_PLUS2] = ACTIONS(953), - [anon_sym_SLASH2] = ACTIONS(953), - [anon_sym_mod2] = ACTIONS(953), - [anon_sym_SLASH_SLASH2] = ACTIONS(955), - [anon_sym_PLUS2] = ACTIONS(953), - [anon_sym_bit_DASHshl2] = ACTIONS(955), - [anon_sym_bit_DASHshr2] = ACTIONS(955), - [anon_sym_bit_DASHand2] = ACTIONS(955), - [anon_sym_bit_DASHxor2] = ACTIONS(955), - [anon_sym_bit_DASHor2] = ACTIONS(955), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(955), - [anon_sym_DOT_DOT2] = ACTIONS(953), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(955), - [anon_sym_DOT_DOT_LT2] = ACTIONS(955), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(955), - [aux_sym__val_number_decimal_token1] = ACTIONS(953), - [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), - [aux_sym__val_number_token4] = ACTIONS(953), - [aux_sym__val_number_token5] = ACTIONS(953), - [aux_sym__val_number_token6] = ACTIONS(953), - [anon_sym_DQUOTE] = ACTIONS(955), - [sym__str_single_quotes] = ACTIONS(955), - [sym__str_back_ticks] = ACTIONS(955), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(955), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(955), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(955), - [anon_sym_COLON2] = ACTIONS(955), - [anon_sym_DOT2] = ACTIONS(957), - [anon_sym_err_GT] = ACTIONS(953), - [anon_sym_out_GT] = ACTIONS(953), - [anon_sym_e_GT] = ACTIONS(953), - [anon_sym_o_GT] = ACTIONS(953), - [anon_sym_err_PLUSout_GT] = ACTIONS(953), - [anon_sym_out_PLUSerr_GT] = ACTIONS(953), - [anon_sym_o_PLUSe_GT] = ACTIONS(953), - [anon_sym_e_PLUSo_GT] = ACTIONS(953), - [anon_sym_err_GT_GT] = ACTIONS(955), - [anon_sym_out_GT_GT] = ACTIONS(955), - [anon_sym_e_GT_GT] = ACTIONS(955), - [anon_sym_o_GT_GT] = ACTIONS(955), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(955), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(955), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(955), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(955), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(955), + [aux_sym_cell_path_repeat1] = STATE(142), + [anon_sym_export] = ACTIONS(942), + [anon_sym_alias] = ACTIONS(942), + [anon_sym_EQ] = ACTIONS(942), + [anon_sym_let] = ACTIONS(942), + [anon_sym_let_DASHenv] = ACTIONS(942), + [anon_sym_mut] = ACTIONS(942), + [anon_sym_const] = 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), + [aux_sym_cmd_identifier_token1] = ACTIONS(942), + [aux_sym_cmd_identifier_token2] = ACTIONS(944), + [aux_sym_cmd_identifier_token3] = ACTIONS(944), + [aux_sym_cmd_identifier_token4] = ACTIONS(944), + [aux_sym_cmd_identifier_token5] = ACTIONS(944), + [aux_sym_cmd_identifier_token6] = ACTIONS(944), + [aux_sym_cmd_identifier_token7] = ACTIONS(944), + [aux_sym_cmd_identifier_token8] = ACTIONS(942), + [aux_sym_cmd_identifier_token9] = ACTIONS(942), + [aux_sym_cmd_identifier_token10] = ACTIONS(944), + [aux_sym_cmd_identifier_token11] = ACTIONS(944), + [aux_sym_cmd_identifier_token12] = ACTIONS(942), + [aux_sym_cmd_identifier_token13] = ACTIONS(942), + [aux_sym_cmd_identifier_token14] = ACTIONS(942), + [aux_sym_cmd_identifier_token15] = ACTIONS(942), + [aux_sym_cmd_identifier_token16] = ACTIONS(944), + [aux_sym_cmd_identifier_token17] = ACTIONS(944), + [aux_sym_cmd_identifier_token18] = ACTIONS(944), + [aux_sym_cmd_identifier_token19] = ACTIONS(944), + [aux_sym_cmd_identifier_token20] = ACTIONS(944), + [aux_sym_cmd_identifier_token21] = ACTIONS(944), + [aux_sym_cmd_identifier_token22] = ACTIONS(944), + [aux_sym_cmd_identifier_token23] = ACTIONS(944), + [aux_sym_cmd_identifier_token24] = ACTIONS(944), + [aux_sym_cmd_identifier_token25] = ACTIONS(944), + [aux_sym_cmd_identifier_token26] = ACTIONS(944), + [aux_sym_cmd_identifier_token27] = ACTIONS(944), + [aux_sym_cmd_identifier_token28] = ACTIONS(944), + [aux_sym_cmd_identifier_token29] = ACTIONS(944), + [aux_sym_cmd_identifier_token30] = ACTIONS(944), + [aux_sym_cmd_identifier_token31] = ACTIONS(944), + [aux_sym_cmd_identifier_token32] = ACTIONS(944), + [aux_sym_cmd_identifier_token33] = ACTIONS(944), + [aux_sym_cmd_identifier_token34] = ACTIONS(942), + [aux_sym_cmd_identifier_token35] = ACTIONS(944), + [aux_sym_cmd_identifier_token36] = ACTIONS(944), + [aux_sym_cmd_identifier_token37] = ACTIONS(944), + [aux_sym_cmd_identifier_token38] = ACTIONS(942), + [aux_sym_cmd_identifier_token39] = ACTIONS(944), + [aux_sym_cmd_identifier_token40] = ACTIONS(944), + [sym__newline] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(944), + [anon_sym_err_GT_PIPE] = ACTIONS(944), + [anon_sym_out_GT_PIPE] = ACTIONS(944), + [anon_sym_e_GT_PIPE] = ACTIONS(944), + [anon_sym_o_GT_PIPE] = ACTIONS(944), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(944), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(944), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(944), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(944), + [anon_sym_def] = ACTIONS(942), + [anon_sym_export_DASHenv] = ACTIONS(942), + [anon_sym_extern] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [anon_sym_use] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(944), + [anon_sym_COMMA] = ACTIONS(944), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_error] = ACTIONS(942), + [anon_sym_GT2] = ACTIONS(942), + [anon_sym_DASH2] = ACTIONS(942), + [anon_sym_break] = ACTIONS(942), + [anon_sym_continue] = ACTIONS(942), + [anon_sym_for] = ACTIONS(942), + [anon_sym_in2] = ACTIONS(942), + [anon_sym_loop] = ACTIONS(942), + [anon_sym_make] = ACTIONS(942), + [anon_sym_while] = ACTIONS(942), + [anon_sym_do] = ACTIONS(942), + [anon_sym_if] = ACTIONS(942), + [anon_sym_else] = ACTIONS(942), + [anon_sym_match] = ACTIONS(942), + [anon_sym_RBRACE] = ACTIONS(944), + [anon_sym_try] = ACTIONS(942), + [anon_sym_catch] = ACTIONS(942), + [anon_sym_return] = ACTIONS(942), + [anon_sym_source] = ACTIONS(942), + [anon_sym_source_DASHenv] = ACTIONS(942), + [anon_sym_hide] = ACTIONS(942), + [anon_sym_hide_DASHenv] = ACTIONS(942), + [anon_sym_overlay] = ACTIONS(942), + [anon_sym_as] = ACTIONS(942), + [anon_sym_STAR2] = ACTIONS(942), + [anon_sym_and2] = ACTIONS(944), + [anon_sym_xor2] = ACTIONS(944), + [anon_sym_or2] = ACTIONS(944), + [anon_sym_not_DASHin2] = ACTIONS(944), + [anon_sym_has2] = ACTIONS(944), + [anon_sym_not_DASHhas2] = ACTIONS(944), + [anon_sym_starts_DASHwith2] = ACTIONS(944), + [anon_sym_ends_DASHwith2] = ACTIONS(944), + [anon_sym_EQ_EQ2] = ACTIONS(944), + [anon_sym_BANG_EQ2] = ACTIONS(944), + [anon_sym_LT2] = ACTIONS(942), + [anon_sym_LT_EQ2] = ACTIONS(944), + [anon_sym_GT_EQ2] = ACTIONS(944), + [anon_sym_EQ_TILDE2] = ACTIONS(944), + [anon_sym_BANG_TILDE2] = ACTIONS(944), + [anon_sym_STAR_STAR2] = ACTIONS(944), + [anon_sym_PLUS_PLUS2] = ACTIONS(942), + [anon_sym_SLASH2] = ACTIONS(942), + [anon_sym_mod2] = ACTIONS(942), + [anon_sym_SLASH_SLASH2] = ACTIONS(944), + [anon_sym_PLUS2] = ACTIONS(942), + [anon_sym_bit_DASHshl2] = ACTIONS(944), + [anon_sym_bit_DASHshr2] = ACTIONS(944), + [anon_sym_bit_DASHand2] = ACTIONS(944), + [anon_sym_bit_DASHxor2] = ACTIONS(944), + [anon_sym_bit_DASHor2] = ACTIONS(944), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(944), + [anon_sym_DOT_DOT2] = ACTIONS(942), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(944), + [anon_sym_DOT_DOT_LT2] = ACTIONS(944), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(944), + [aux_sym__val_number_decimal_token1] = ACTIONS(942), + [aux_sym__val_number_decimal_token2] = ACTIONS(944), + [aux_sym__val_number_decimal_token3] = ACTIONS(944), + [aux_sym__val_number_decimal_token4] = ACTIONS(944), + [aux_sym__val_number_token1] = ACTIONS(944), + [aux_sym__val_number_token2] = ACTIONS(944), + [aux_sym__val_number_token3] = ACTIONS(944), + [aux_sym__val_number_token4] = ACTIONS(942), + [aux_sym__val_number_token5] = ACTIONS(942), + [aux_sym__val_number_token6] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(944), + [sym__str_single_quotes] = ACTIONS(944), + [sym__str_back_ticks] = ACTIONS(944), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(944), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(944), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(944), + [anon_sym_register] = ACTIONS(942), + [anon_sym_COLON2] = ACTIONS(944), + [anon_sym_DOT2] = ACTIONS(933), + [anon_sym_err_GT] = ACTIONS(942), + [anon_sym_out_GT] = ACTIONS(942), + [anon_sym_e_GT] = ACTIONS(942), + [anon_sym_o_GT] = ACTIONS(942), + [anon_sym_err_PLUSout_GT] = ACTIONS(942), + [anon_sym_out_PLUSerr_GT] = ACTIONS(942), + [anon_sym_o_PLUSe_GT] = ACTIONS(942), + [anon_sym_e_PLUSo_GT] = ACTIONS(942), + [anon_sym_err_GT_GT] = ACTIONS(944), + [anon_sym_out_GT_GT] = ACTIONS(944), + [anon_sym_e_GT_GT] = ACTIONS(944), + [anon_sym_o_GT_GT] = ACTIONS(944), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(944), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(944), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(944), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(944), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(944), }, [144] = { [sym_comment] = STATE(144), + [anon_sym_export] = ACTIONS(946), + [anon_sym_alias] = ACTIONS(946), + [anon_sym_EQ] = ACTIONS(946), + [anon_sym_let] = ACTIONS(946), + [anon_sym_let_DASHenv] = ACTIONS(946), + [anon_sym_mut] = ACTIONS(946), + [anon_sym_const] = ACTIONS(946), + [anon_sym_PLUS_EQ] = ACTIONS(948), + [anon_sym_DASH_EQ] = ACTIONS(948), + [anon_sym_STAR_EQ] = ACTIONS(948), + [anon_sym_SLASH_EQ] = ACTIONS(948), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(948), + [aux_sym_cmd_identifier_token1] = ACTIONS(946), + [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(946), + [aux_sym_cmd_identifier_token9] = ACTIONS(946), + [aux_sym_cmd_identifier_token10] = ACTIONS(948), + [aux_sym_cmd_identifier_token11] = ACTIONS(948), + [aux_sym_cmd_identifier_token12] = ACTIONS(946), + [aux_sym_cmd_identifier_token13] = ACTIONS(946), + [aux_sym_cmd_identifier_token14] = ACTIONS(946), + [aux_sym_cmd_identifier_token15] = ACTIONS(946), + [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(946), + [aux_sym_cmd_identifier_token35] = ACTIONS(948), + [aux_sym_cmd_identifier_token36] = ACTIONS(948), + [aux_sym_cmd_identifier_token37] = ACTIONS(948), + [aux_sym_cmd_identifier_token38] = ACTIONS(946), + [aux_sym_cmd_identifier_token39] = ACTIONS(948), + [aux_sym_cmd_identifier_token40] = ACTIONS(948), + [sym__newline] = ACTIONS(948), + [anon_sym_SEMI] = ACTIONS(948), + [anon_sym_PIPE] = ACTIONS(948), + [anon_sym_err_GT_PIPE] = ACTIONS(948), + [anon_sym_out_GT_PIPE] = ACTIONS(948), + [anon_sym_e_GT_PIPE] = ACTIONS(948), + [anon_sym_o_GT_PIPE] = ACTIONS(948), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(948), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(948), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(948), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(948), + [anon_sym_def] = ACTIONS(946), + [anon_sym_export_DASHenv] = ACTIONS(946), + [anon_sym_extern] = ACTIONS(946), + [anon_sym_module] = ACTIONS(946), + [anon_sym_use] = ACTIONS(946), + [anon_sym_LPAREN] = ACTIONS(948), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_DOLLAR] = ACTIONS(946), + [anon_sym_error] = ACTIONS(946), + [anon_sym_GT2] = ACTIONS(946), + [anon_sym_DASH2] = ACTIONS(946), + [anon_sym_break] = ACTIONS(946), + [anon_sym_continue] = ACTIONS(946), + [anon_sym_for] = ACTIONS(946), + [anon_sym_in2] = ACTIONS(946), + [anon_sym_loop] = ACTIONS(946), + [anon_sym_make] = ACTIONS(946), + [anon_sym_while] = ACTIONS(946), + [anon_sym_do] = ACTIONS(946), + [anon_sym_if] = ACTIONS(946), + [anon_sym_else] = ACTIONS(946), + [anon_sym_match] = ACTIONS(946), + [anon_sym_RBRACE] = ACTIONS(948), + [anon_sym_try] = ACTIONS(946), + [anon_sym_catch] = ACTIONS(946), + [anon_sym_return] = ACTIONS(946), + [anon_sym_source] = ACTIONS(946), + [anon_sym_source_DASHenv] = ACTIONS(946), + [anon_sym_hide] = ACTIONS(946), + [anon_sym_hide_DASHenv] = ACTIONS(946), + [anon_sym_overlay] = ACTIONS(946), + [anon_sym_as] = ACTIONS(946), + [anon_sym_STAR2] = ACTIONS(946), + [anon_sym_QMARK2] = ACTIONS(948), + [anon_sym_and2] = ACTIONS(948), + [anon_sym_xor2] = ACTIONS(948), + [anon_sym_or2] = ACTIONS(948), + [anon_sym_not_DASHin2] = ACTIONS(948), + [anon_sym_has2] = ACTIONS(948), + [anon_sym_not_DASHhas2] = ACTIONS(948), + [anon_sym_starts_DASHwith2] = ACTIONS(948), + [anon_sym_ends_DASHwith2] = ACTIONS(948), + [anon_sym_EQ_EQ2] = ACTIONS(948), + [anon_sym_BANG_EQ2] = ACTIONS(948), + [anon_sym_LT2] = ACTIONS(946), + [anon_sym_LT_EQ2] = ACTIONS(948), + [anon_sym_GT_EQ2] = ACTIONS(948), + [anon_sym_EQ_TILDE2] = ACTIONS(948), + [anon_sym_BANG_TILDE2] = ACTIONS(948), + [anon_sym_STAR_STAR2] = ACTIONS(948), + [anon_sym_PLUS_PLUS2] = ACTIONS(946), + [anon_sym_SLASH2] = ACTIONS(946), + [anon_sym_mod2] = ACTIONS(946), + [anon_sym_SLASH_SLASH2] = ACTIONS(948), + [anon_sym_PLUS2] = ACTIONS(946), + [anon_sym_bit_DASHshl2] = ACTIONS(948), + [anon_sym_bit_DASHshr2] = ACTIONS(948), + [anon_sym_bit_DASHand2] = ACTIONS(948), + [anon_sym_bit_DASHxor2] = ACTIONS(948), + [anon_sym_bit_DASHor2] = ACTIONS(948), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(948), + [anon_sym_DOT_DOT2] = ACTIONS(946), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(948), + [anon_sym_DOT_DOT_LT2] = ACTIONS(948), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(948), + [aux_sym__val_number_decimal_token1] = ACTIONS(946), + [aux_sym__val_number_decimal_token2] = ACTIONS(948), + [aux_sym__val_number_decimal_token3] = ACTIONS(948), + [aux_sym__val_number_decimal_token4] = ACTIONS(948), + [aux_sym__val_number_token1] = ACTIONS(948), + [aux_sym__val_number_token2] = ACTIONS(948), + [aux_sym__val_number_token3] = ACTIONS(948), + [aux_sym__val_number_token4] = ACTIONS(946), + [aux_sym__val_number_token5] = ACTIONS(946), + [aux_sym__val_number_token6] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(948), + [sym__str_single_quotes] = ACTIONS(948), + [sym__str_back_ticks] = ACTIONS(948), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(948), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(948), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(948), + [anon_sym_register] = ACTIONS(946), + [anon_sym_COLON2] = ACTIONS(948), + [anon_sym_DOT2] = ACTIONS(946), + [anon_sym_err_GT] = ACTIONS(946), + [anon_sym_out_GT] = ACTIONS(946), + [anon_sym_e_GT] = ACTIONS(946), + [anon_sym_o_GT] = ACTIONS(946), + [anon_sym_err_PLUSout_GT] = ACTIONS(946), + [anon_sym_out_PLUSerr_GT] = ACTIONS(946), + [anon_sym_o_PLUSe_GT] = ACTIONS(946), + [anon_sym_e_PLUSo_GT] = ACTIONS(946), + [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), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(948), + }, + [145] = { + [sym_comment] = STATE(145), + [anon_sym_export] = ACTIONS(950), + [anon_sym_alias] = ACTIONS(950), + [anon_sym_EQ] = ACTIONS(950), + [anon_sym_let] = ACTIONS(950), + [anon_sym_let_DASHenv] = ACTIONS(950), + [anon_sym_mut] = ACTIONS(950), + [anon_sym_const] = ACTIONS(950), + [anon_sym_PLUS_EQ] = ACTIONS(952), + [anon_sym_DASH_EQ] = ACTIONS(952), + [anon_sym_STAR_EQ] = ACTIONS(952), + [anon_sym_SLASH_EQ] = ACTIONS(952), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(952), + [aux_sym_cmd_identifier_token1] = ACTIONS(950), + [aux_sym_cmd_identifier_token2] = ACTIONS(952), + [aux_sym_cmd_identifier_token3] = ACTIONS(952), + [aux_sym_cmd_identifier_token4] = ACTIONS(952), + [aux_sym_cmd_identifier_token5] = ACTIONS(952), + [aux_sym_cmd_identifier_token6] = ACTIONS(952), + [aux_sym_cmd_identifier_token7] = ACTIONS(952), + [aux_sym_cmd_identifier_token8] = ACTIONS(950), + [aux_sym_cmd_identifier_token9] = ACTIONS(950), + [aux_sym_cmd_identifier_token10] = ACTIONS(952), + [aux_sym_cmd_identifier_token11] = ACTIONS(952), + [aux_sym_cmd_identifier_token12] = ACTIONS(950), + [aux_sym_cmd_identifier_token13] = ACTIONS(950), + [aux_sym_cmd_identifier_token14] = ACTIONS(950), + [aux_sym_cmd_identifier_token15] = ACTIONS(950), + [aux_sym_cmd_identifier_token16] = ACTIONS(952), + [aux_sym_cmd_identifier_token17] = ACTIONS(952), + [aux_sym_cmd_identifier_token18] = ACTIONS(952), + [aux_sym_cmd_identifier_token19] = ACTIONS(952), + [aux_sym_cmd_identifier_token20] = ACTIONS(952), + [aux_sym_cmd_identifier_token21] = ACTIONS(952), + [aux_sym_cmd_identifier_token22] = ACTIONS(952), + [aux_sym_cmd_identifier_token23] = ACTIONS(952), + [aux_sym_cmd_identifier_token24] = ACTIONS(952), + [aux_sym_cmd_identifier_token25] = ACTIONS(952), + [aux_sym_cmd_identifier_token26] = ACTIONS(952), + [aux_sym_cmd_identifier_token27] = ACTIONS(952), + [aux_sym_cmd_identifier_token28] = ACTIONS(952), + [aux_sym_cmd_identifier_token29] = ACTIONS(952), + [aux_sym_cmd_identifier_token30] = ACTIONS(952), + [aux_sym_cmd_identifier_token31] = ACTIONS(952), + [aux_sym_cmd_identifier_token32] = ACTIONS(952), + [aux_sym_cmd_identifier_token33] = ACTIONS(952), + [aux_sym_cmd_identifier_token34] = ACTIONS(950), + [aux_sym_cmd_identifier_token35] = ACTIONS(952), + [aux_sym_cmd_identifier_token36] = ACTIONS(952), + [aux_sym_cmd_identifier_token37] = ACTIONS(952), + [aux_sym_cmd_identifier_token38] = ACTIONS(950), + [aux_sym_cmd_identifier_token39] = ACTIONS(952), + [aux_sym_cmd_identifier_token40] = ACTIONS(952), + [sym__newline] = ACTIONS(952), + [anon_sym_SEMI] = ACTIONS(952), + [anon_sym_PIPE] = ACTIONS(952), + [anon_sym_err_GT_PIPE] = ACTIONS(952), + [anon_sym_out_GT_PIPE] = ACTIONS(952), + [anon_sym_e_GT_PIPE] = ACTIONS(952), + [anon_sym_o_GT_PIPE] = ACTIONS(952), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(952), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(952), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(952), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(952), + [anon_sym_def] = ACTIONS(950), + [anon_sym_export_DASHenv] = ACTIONS(950), + [anon_sym_extern] = ACTIONS(950), + [anon_sym_module] = ACTIONS(950), + [anon_sym_use] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(952), + [anon_sym_COMMA] = ACTIONS(952), + [anon_sym_DOLLAR] = ACTIONS(950), + [anon_sym_error] = ACTIONS(950), + [anon_sym_GT2] = ACTIONS(950), + [anon_sym_DASH2] = ACTIONS(950), + [anon_sym_break] = ACTIONS(950), + [anon_sym_continue] = ACTIONS(950), + [anon_sym_for] = ACTIONS(950), + [anon_sym_in2] = ACTIONS(950), + [anon_sym_loop] = ACTIONS(950), + [anon_sym_make] = ACTIONS(950), + [anon_sym_while] = ACTIONS(950), + [anon_sym_do] = ACTIONS(950), + [anon_sym_if] = ACTIONS(950), + [anon_sym_else] = ACTIONS(950), + [anon_sym_match] = ACTIONS(950), + [anon_sym_RBRACE] = ACTIONS(952), + [anon_sym_try] = ACTIONS(950), + [anon_sym_catch] = ACTIONS(950), + [anon_sym_return] = ACTIONS(950), + [anon_sym_source] = ACTIONS(950), + [anon_sym_source_DASHenv] = ACTIONS(950), + [anon_sym_hide] = ACTIONS(950), + [anon_sym_hide_DASHenv] = ACTIONS(950), + [anon_sym_overlay] = ACTIONS(950), + [anon_sym_as] = ACTIONS(950), + [anon_sym_STAR2] = ACTIONS(950), + [anon_sym_QMARK2] = ACTIONS(954), + [anon_sym_and2] = ACTIONS(952), + [anon_sym_xor2] = ACTIONS(952), + [anon_sym_or2] = ACTIONS(952), + [anon_sym_not_DASHin2] = ACTIONS(952), + [anon_sym_has2] = ACTIONS(952), + [anon_sym_not_DASHhas2] = ACTIONS(952), + [anon_sym_starts_DASHwith2] = ACTIONS(952), + [anon_sym_ends_DASHwith2] = ACTIONS(952), + [anon_sym_EQ_EQ2] = ACTIONS(952), + [anon_sym_BANG_EQ2] = ACTIONS(952), + [anon_sym_LT2] = ACTIONS(950), + [anon_sym_LT_EQ2] = ACTIONS(952), + [anon_sym_GT_EQ2] = ACTIONS(952), + [anon_sym_EQ_TILDE2] = ACTIONS(952), + [anon_sym_BANG_TILDE2] = ACTIONS(952), + [anon_sym_STAR_STAR2] = ACTIONS(952), + [anon_sym_PLUS_PLUS2] = ACTIONS(950), + [anon_sym_SLASH2] = ACTIONS(950), + [anon_sym_mod2] = ACTIONS(950), + [anon_sym_SLASH_SLASH2] = ACTIONS(952), + [anon_sym_PLUS2] = ACTIONS(950), + [anon_sym_bit_DASHshl2] = ACTIONS(952), + [anon_sym_bit_DASHshr2] = ACTIONS(952), + [anon_sym_bit_DASHand2] = ACTIONS(952), + [anon_sym_bit_DASHxor2] = ACTIONS(952), + [anon_sym_bit_DASHor2] = ACTIONS(952), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(952), + [anon_sym_DOT_DOT2] = ACTIONS(950), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(952), + [anon_sym_DOT_DOT_LT2] = ACTIONS(952), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(952), + [aux_sym__val_number_decimal_token1] = ACTIONS(950), + [aux_sym__val_number_decimal_token2] = ACTIONS(952), + [aux_sym__val_number_decimal_token3] = ACTIONS(952), + [aux_sym__val_number_decimal_token4] = ACTIONS(952), + [aux_sym__val_number_token1] = ACTIONS(952), + [aux_sym__val_number_token2] = ACTIONS(952), + [aux_sym__val_number_token3] = ACTIONS(952), + [aux_sym__val_number_token4] = ACTIONS(950), + [aux_sym__val_number_token5] = ACTIONS(950), + [aux_sym__val_number_token6] = ACTIONS(950), + [anon_sym_DQUOTE] = ACTIONS(952), + [sym__str_single_quotes] = ACTIONS(952), + [sym__str_back_ticks] = ACTIONS(952), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(952), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(952), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(952), + [anon_sym_register] = ACTIONS(950), + [anon_sym_COLON2] = ACTIONS(952), + [anon_sym_DOT2] = ACTIONS(950), + [anon_sym_err_GT] = ACTIONS(950), + [anon_sym_out_GT] = ACTIONS(950), + [anon_sym_e_GT] = ACTIONS(950), + [anon_sym_o_GT] = ACTIONS(950), + [anon_sym_err_PLUSout_GT] = ACTIONS(950), + [anon_sym_out_PLUSerr_GT] = ACTIONS(950), + [anon_sym_o_PLUSe_GT] = ACTIONS(950), + [anon_sym_e_PLUSo_GT] = ACTIONS(950), + [anon_sym_err_GT_GT] = ACTIONS(952), + [anon_sym_out_GT_GT] = ACTIONS(952), + [anon_sym_e_GT_GT] = ACTIONS(952), + [anon_sym_o_GT_GT] = ACTIONS(952), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(952), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(952), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(952), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(952), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(952), + }, + [146] = { + [sym_comment] = STATE(146), + [anon_sym_export] = ACTIONS(956), + [anon_sym_alias] = ACTIONS(956), + [anon_sym_EQ] = ACTIONS(956), + [anon_sym_let] = ACTIONS(956), + [anon_sym_let_DASHenv] = ACTIONS(956), + [anon_sym_mut] = ACTIONS(956), + [anon_sym_const] = ACTIONS(956), + [anon_sym_PLUS_EQ] = ACTIONS(958), + [anon_sym_DASH_EQ] = ACTIONS(958), + [anon_sym_STAR_EQ] = ACTIONS(958), + [anon_sym_SLASH_EQ] = ACTIONS(958), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(958), + [aux_sym_cmd_identifier_token1] = ACTIONS(956), + [aux_sym_cmd_identifier_token2] = ACTIONS(958), + [aux_sym_cmd_identifier_token3] = ACTIONS(958), + [aux_sym_cmd_identifier_token4] = ACTIONS(958), + [aux_sym_cmd_identifier_token5] = ACTIONS(958), + [aux_sym_cmd_identifier_token6] = ACTIONS(958), + [aux_sym_cmd_identifier_token7] = ACTIONS(958), + [aux_sym_cmd_identifier_token8] = ACTIONS(956), + [aux_sym_cmd_identifier_token9] = ACTIONS(956), + [aux_sym_cmd_identifier_token10] = ACTIONS(958), + [aux_sym_cmd_identifier_token11] = ACTIONS(958), + [aux_sym_cmd_identifier_token12] = ACTIONS(956), + [aux_sym_cmd_identifier_token13] = ACTIONS(956), + [aux_sym_cmd_identifier_token14] = ACTIONS(956), + [aux_sym_cmd_identifier_token15] = ACTIONS(956), + [aux_sym_cmd_identifier_token16] = ACTIONS(958), + [aux_sym_cmd_identifier_token17] = ACTIONS(958), + [aux_sym_cmd_identifier_token18] = ACTIONS(958), + [aux_sym_cmd_identifier_token19] = ACTIONS(958), + [aux_sym_cmd_identifier_token20] = ACTIONS(958), + [aux_sym_cmd_identifier_token21] = ACTIONS(958), + [aux_sym_cmd_identifier_token22] = ACTIONS(958), + [aux_sym_cmd_identifier_token23] = ACTIONS(958), + [aux_sym_cmd_identifier_token24] = ACTIONS(958), + [aux_sym_cmd_identifier_token25] = ACTIONS(958), + [aux_sym_cmd_identifier_token26] = ACTIONS(958), + [aux_sym_cmd_identifier_token27] = ACTIONS(958), + [aux_sym_cmd_identifier_token28] = ACTIONS(958), + [aux_sym_cmd_identifier_token29] = ACTIONS(958), + [aux_sym_cmd_identifier_token30] = ACTIONS(958), + [aux_sym_cmd_identifier_token31] = ACTIONS(958), + [aux_sym_cmd_identifier_token32] = ACTIONS(958), + [aux_sym_cmd_identifier_token33] = ACTIONS(958), + [aux_sym_cmd_identifier_token34] = ACTIONS(956), + [aux_sym_cmd_identifier_token35] = ACTIONS(958), + [aux_sym_cmd_identifier_token36] = ACTIONS(958), + [aux_sym_cmd_identifier_token37] = ACTIONS(958), + [aux_sym_cmd_identifier_token38] = ACTIONS(956), + [aux_sym_cmd_identifier_token39] = ACTIONS(958), + [aux_sym_cmd_identifier_token40] = ACTIONS(958), + [sym__newline] = ACTIONS(958), + [anon_sym_SEMI] = ACTIONS(958), + [anon_sym_PIPE] = ACTIONS(958), + [anon_sym_err_GT_PIPE] = ACTIONS(958), + [anon_sym_out_GT_PIPE] = ACTIONS(958), + [anon_sym_e_GT_PIPE] = ACTIONS(958), + [anon_sym_o_GT_PIPE] = ACTIONS(958), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(958), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(958), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(958), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(958), + [anon_sym_def] = ACTIONS(956), + [anon_sym_export_DASHenv] = ACTIONS(956), + [anon_sym_extern] = ACTIONS(956), + [anon_sym_module] = ACTIONS(956), + [anon_sym_use] = ACTIONS(956), + [anon_sym_LPAREN] = ACTIONS(958), + [anon_sym_COMMA] = ACTIONS(958), + [anon_sym_DOLLAR] = ACTIONS(956), + [anon_sym_error] = ACTIONS(956), + [anon_sym_GT2] = ACTIONS(956), + [anon_sym_DASH2] = ACTIONS(956), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(956), + [anon_sym_for] = ACTIONS(956), + [anon_sym_in2] = ACTIONS(956), + [anon_sym_loop] = ACTIONS(956), + [anon_sym_make] = ACTIONS(956), + [anon_sym_while] = ACTIONS(956), + [anon_sym_do] = ACTIONS(956), + [anon_sym_if] = ACTIONS(956), + [anon_sym_else] = ACTIONS(956), + [anon_sym_match] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(958), + [anon_sym_try] = ACTIONS(956), + [anon_sym_catch] = ACTIONS(956), + [anon_sym_return] = ACTIONS(956), + [anon_sym_source] = ACTIONS(956), + [anon_sym_source_DASHenv] = ACTIONS(956), + [anon_sym_hide] = ACTIONS(956), + [anon_sym_hide_DASHenv] = ACTIONS(956), + [anon_sym_overlay] = ACTIONS(956), + [anon_sym_as] = ACTIONS(956), + [anon_sym_STAR2] = ACTIONS(956), + [anon_sym_QMARK2] = ACTIONS(958), + [anon_sym_and2] = ACTIONS(958), + [anon_sym_xor2] = ACTIONS(958), + [anon_sym_or2] = ACTIONS(958), + [anon_sym_not_DASHin2] = ACTIONS(958), + [anon_sym_has2] = ACTIONS(958), + [anon_sym_not_DASHhas2] = ACTIONS(958), + [anon_sym_starts_DASHwith2] = ACTIONS(958), + [anon_sym_ends_DASHwith2] = ACTIONS(958), + [anon_sym_EQ_EQ2] = ACTIONS(958), + [anon_sym_BANG_EQ2] = ACTIONS(958), + [anon_sym_LT2] = ACTIONS(956), + [anon_sym_LT_EQ2] = ACTIONS(958), + [anon_sym_GT_EQ2] = ACTIONS(958), + [anon_sym_EQ_TILDE2] = ACTIONS(958), + [anon_sym_BANG_TILDE2] = ACTIONS(958), + [anon_sym_STAR_STAR2] = ACTIONS(958), + [anon_sym_PLUS_PLUS2] = ACTIONS(956), + [anon_sym_SLASH2] = ACTIONS(956), + [anon_sym_mod2] = ACTIONS(956), + [anon_sym_SLASH_SLASH2] = ACTIONS(958), + [anon_sym_PLUS2] = ACTIONS(956), + [anon_sym_bit_DASHshl2] = ACTIONS(958), + [anon_sym_bit_DASHshr2] = ACTIONS(958), + [anon_sym_bit_DASHand2] = ACTIONS(958), + [anon_sym_bit_DASHxor2] = ACTIONS(958), + [anon_sym_bit_DASHor2] = ACTIONS(958), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(958), + [anon_sym_DOT_DOT2] = ACTIONS(956), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(958), + [anon_sym_DOT_DOT_LT2] = ACTIONS(958), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(958), + [aux_sym__val_number_decimal_token1] = ACTIONS(956), + [aux_sym__val_number_decimal_token2] = ACTIONS(958), + [aux_sym__val_number_decimal_token3] = ACTIONS(958), + [aux_sym__val_number_decimal_token4] = ACTIONS(958), + [aux_sym__val_number_token1] = ACTIONS(958), + [aux_sym__val_number_token2] = ACTIONS(958), + [aux_sym__val_number_token3] = ACTIONS(958), + [aux_sym__val_number_token4] = ACTIONS(956), + [aux_sym__val_number_token5] = ACTIONS(956), + [aux_sym__val_number_token6] = ACTIONS(956), + [anon_sym_DQUOTE] = ACTIONS(958), + [sym__str_single_quotes] = ACTIONS(958), + [sym__str_back_ticks] = ACTIONS(958), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(958), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(958), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(958), + [anon_sym_register] = ACTIONS(956), + [anon_sym_COLON2] = ACTIONS(958), + [anon_sym_DOT2] = ACTIONS(956), + [anon_sym_err_GT] = ACTIONS(956), + [anon_sym_out_GT] = ACTIONS(956), + [anon_sym_e_GT] = ACTIONS(956), + [anon_sym_o_GT] = ACTIONS(956), + [anon_sym_err_PLUSout_GT] = ACTIONS(956), + [anon_sym_out_PLUSerr_GT] = ACTIONS(956), + [anon_sym_o_PLUSe_GT] = ACTIONS(956), + [anon_sym_e_PLUSo_GT] = ACTIONS(956), + [anon_sym_err_GT_GT] = ACTIONS(958), + [anon_sym_out_GT_GT] = ACTIONS(958), + [anon_sym_e_GT_GT] = ACTIONS(958), + [anon_sym_o_GT_GT] = ACTIONS(958), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(958), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(958), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(958), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(958), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(958), + }, + [147] = { + [sym_comment] = STATE(147), [anon_sym_export] = ACTIONS(960), [anon_sym_alias] = ACTIONS(960), [anon_sym_EQ] = ACTIONS(960), @@ -96154,17 +96599,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(960), [anon_sym_source] = ACTIONS(960), [anon_sym_source_DASHenv] = ACTIONS(960), - [anon_sym_register] = ACTIONS(960), [anon_sym_hide] = ACTIONS(960), [anon_sym_hide_DASHenv] = ACTIONS(960), [anon_sym_overlay] = ACTIONS(960), [anon_sym_as] = ACTIONS(960), [anon_sym_STAR2] = ACTIONS(960), - [anon_sym_QMARK2] = ACTIONS(964), + [anon_sym_QMARK2] = ACTIONS(962), [anon_sym_and2] = ACTIONS(962), [anon_sym_xor2] = ACTIONS(962), [anon_sym_or2] = ACTIONS(962), [anon_sym_not_DASHin2] = ACTIONS(962), + [anon_sym_has2] = ACTIONS(962), + [anon_sym_not_DASHhas2] = ACTIONS(962), [anon_sym_starts_DASHwith2] = ACTIONS(962), [anon_sym_ends_DASHwith2] = ACTIONS(962), [anon_sym_EQ_EQ2] = ACTIONS(962), @@ -96206,6 +96652,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(962), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(962), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(962), + [anon_sym_register] = ACTIONS(960), [anon_sym_COLON2] = ACTIONS(962), [anon_sym_DOT2] = ACTIONS(960), [anon_sym_err_GT] = ACTIONS(960), @@ -96224,1223 +96671,1066 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(962), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(962), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(962), - [anon_sym_POUND] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(962), }, - [145] = { - [sym_comment] = STATE(145), - [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(968), - [aux_sym_cmd_identifier_token3] = ACTIONS(968), - [aux_sym_cmd_identifier_token4] = ACTIONS(968), - [aux_sym_cmd_identifier_token5] = ACTIONS(968), - [aux_sym_cmd_identifier_token6] = ACTIONS(968), - [aux_sym_cmd_identifier_token7] = ACTIONS(968), - [aux_sym_cmd_identifier_token8] = ACTIONS(966), - [aux_sym_cmd_identifier_token9] = ACTIONS(966), - [aux_sym_cmd_identifier_token10] = ACTIONS(968), - [aux_sym_cmd_identifier_token11] = ACTIONS(968), - [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(968), - [aux_sym_cmd_identifier_token17] = ACTIONS(968), - [aux_sym_cmd_identifier_token18] = ACTIONS(968), - [aux_sym_cmd_identifier_token19] = ACTIONS(968), - [aux_sym_cmd_identifier_token20] = ACTIONS(968), - [aux_sym_cmd_identifier_token21] = ACTIONS(968), - [aux_sym_cmd_identifier_token22] = ACTIONS(968), - [aux_sym_cmd_identifier_token23] = ACTIONS(968), - [aux_sym_cmd_identifier_token24] = ACTIONS(968), - [aux_sym_cmd_identifier_token25] = ACTIONS(968), - [aux_sym_cmd_identifier_token26] = ACTIONS(968), - [aux_sym_cmd_identifier_token27] = ACTIONS(968), - [aux_sym_cmd_identifier_token28] = ACTIONS(968), - [aux_sym_cmd_identifier_token29] = ACTIONS(968), - [aux_sym_cmd_identifier_token30] = ACTIONS(968), - [aux_sym_cmd_identifier_token31] = ACTIONS(968), - [aux_sym_cmd_identifier_token32] = ACTIONS(968), - [aux_sym_cmd_identifier_token33] = ACTIONS(968), - [aux_sym_cmd_identifier_token34] = ACTIONS(966), - [aux_sym_cmd_identifier_token35] = ACTIONS(968), - [aux_sym_cmd_identifier_token36] = ACTIONS(968), - [aux_sym_cmd_identifier_token37] = 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(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_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(966), - [anon_sym_error] = ACTIONS(966), - [anon_sym_GT2] = ACTIONS(966), - [anon_sym_DASH2] = ACTIONS(966), - [anon_sym_break] = ACTIONS(966), - [anon_sym_continue] = ACTIONS(966), - [anon_sym_for] = ACTIONS(966), - [anon_sym_in2] = 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_as] = ACTIONS(966), - [anon_sym_STAR2] = ACTIONS(966), - [anon_sym_QMARK2] = ACTIONS(970), - [anon_sym_and2] = ACTIONS(968), - [anon_sym_xor2] = ACTIONS(968), - [anon_sym_or2] = ACTIONS(968), - [anon_sym_not_DASHin2] = ACTIONS(968), - [anon_sym_starts_DASHwith2] = ACTIONS(968), - [anon_sym_ends_DASHwith2] = ACTIONS(968), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(966), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(968), - [anon_sym_STAR_STAR2] = ACTIONS(968), - [anon_sym_PLUS_PLUS2] = ACTIONS(966), - [anon_sym_SLASH2] = ACTIONS(966), - [anon_sym_mod2] = ACTIONS(966), - [anon_sym_SLASH_SLASH2] = ACTIONS(968), - [anon_sym_PLUS2] = ACTIONS(966), - [anon_sym_bit_DASHshl2] = ACTIONS(968), - [anon_sym_bit_DASHshr2] = ACTIONS(968), - [anon_sym_bit_DASHand2] = ACTIONS(968), - [anon_sym_bit_DASHxor2] = ACTIONS(968), - [anon_sym_bit_DASHor2] = ACTIONS(968), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(968), - [anon_sym_DOT_DOT2] = 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), - [aux_sym__val_number_token4] = ACTIONS(966), - [aux_sym__val_number_token5] = ACTIONS(966), - [aux_sym__val_number_token6] = ACTIONS(966), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(968), - [anon_sym_COLON2] = ACTIONS(968), - [anon_sym_DOT2] = 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(251), - [sym_raw_string_begin] = ACTIONS(968), - }, - [146] = { - [sym_comment] = STATE(146), - [anon_sym_export] = ACTIONS(972), - [anon_sym_alias] = ACTIONS(972), - [anon_sym_EQ] = ACTIONS(972), - [anon_sym_let] = ACTIONS(972), - [anon_sym_let_DASHenv] = ACTIONS(972), - [anon_sym_mut] = ACTIONS(972), - [anon_sym_const] = ACTIONS(972), - [anon_sym_PLUS_EQ] = ACTIONS(974), - [anon_sym_DASH_EQ] = ACTIONS(974), - [anon_sym_STAR_EQ] = ACTIONS(974), - [anon_sym_SLASH_EQ] = ACTIONS(974), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(974), - [aux_sym_cmd_identifier_token1] = ACTIONS(972), - [aux_sym_cmd_identifier_token2] = ACTIONS(974), - [aux_sym_cmd_identifier_token3] = ACTIONS(974), - [aux_sym_cmd_identifier_token4] = ACTIONS(974), - [aux_sym_cmd_identifier_token5] = ACTIONS(974), - [aux_sym_cmd_identifier_token6] = ACTIONS(974), - [aux_sym_cmd_identifier_token7] = ACTIONS(974), - [aux_sym_cmd_identifier_token8] = ACTIONS(972), - [aux_sym_cmd_identifier_token9] = ACTIONS(972), - [aux_sym_cmd_identifier_token10] = ACTIONS(974), - [aux_sym_cmd_identifier_token11] = ACTIONS(974), - [aux_sym_cmd_identifier_token12] = ACTIONS(972), - [aux_sym_cmd_identifier_token13] = ACTIONS(972), - [aux_sym_cmd_identifier_token14] = ACTIONS(972), - [aux_sym_cmd_identifier_token15] = ACTIONS(972), - [aux_sym_cmd_identifier_token16] = ACTIONS(974), - [aux_sym_cmd_identifier_token17] = ACTIONS(974), - [aux_sym_cmd_identifier_token18] = ACTIONS(974), - [aux_sym_cmd_identifier_token19] = ACTIONS(974), - [aux_sym_cmd_identifier_token20] = ACTIONS(974), - [aux_sym_cmd_identifier_token21] = ACTIONS(974), - [aux_sym_cmd_identifier_token22] = ACTIONS(974), - [aux_sym_cmd_identifier_token23] = ACTIONS(974), - [aux_sym_cmd_identifier_token24] = ACTIONS(974), - [aux_sym_cmd_identifier_token25] = ACTIONS(974), - [aux_sym_cmd_identifier_token26] = ACTIONS(974), - [aux_sym_cmd_identifier_token27] = ACTIONS(974), - [aux_sym_cmd_identifier_token28] = ACTIONS(974), - [aux_sym_cmd_identifier_token29] = ACTIONS(974), - [aux_sym_cmd_identifier_token30] = ACTIONS(974), - [aux_sym_cmd_identifier_token31] = ACTIONS(974), - [aux_sym_cmd_identifier_token32] = ACTIONS(974), - [aux_sym_cmd_identifier_token33] = ACTIONS(974), - [aux_sym_cmd_identifier_token34] = ACTIONS(972), - [aux_sym_cmd_identifier_token35] = ACTIONS(974), - [aux_sym_cmd_identifier_token36] = ACTIONS(974), - [aux_sym_cmd_identifier_token37] = ACTIONS(974), - [aux_sym_cmd_identifier_token38] = ACTIONS(972), - [aux_sym_cmd_identifier_token39] = ACTIONS(974), - [aux_sym_cmd_identifier_token40] = ACTIONS(974), - [sym__newline] = ACTIONS(974), - [anon_sym_SEMI] = ACTIONS(974), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_err_GT_PIPE] = ACTIONS(974), - [anon_sym_out_GT_PIPE] = ACTIONS(974), - [anon_sym_e_GT_PIPE] = ACTIONS(974), - [anon_sym_o_GT_PIPE] = ACTIONS(974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(974), - [anon_sym_def] = ACTIONS(972), - [anon_sym_export_DASHenv] = ACTIONS(972), - [anon_sym_extern] = ACTIONS(972), - [anon_sym_module] = ACTIONS(972), - [anon_sym_use] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_COMMA] = ACTIONS(974), - [anon_sym_DOLLAR] = ACTIONS(972), - [anon_sym_error] = ACTIONS(972), - [anon_sym_GT2] = ACTIONS(972), - [anon_sym_DASH2] = ACTIONS(972), - [anon_sym_break] = ACTIONS(972), - [anon_sym_continue] = ACTIONS(972), - [anon_sym_for] = ACTIONS(972), - [anon_sym_in2] = ACTIONS(972), - [anon_sym_loop] = ACTIONS(972), - [anon_sym_make] = ACTIONS(972), - [anon_sym_while] = ACTIONS(972), - [anon_sym_do] = ACTIONS(972), - [anon_sym_if] = ACTIONS(972), - [anon_sym_else] = ACTIONS(972), - [anon_sym_match] = ACTIONS(972), - [anon_sym_RBRACE] = ACTIONS(974), - [anon_sym_try] = ACTIONS(972), - [anon_sym_catch] = ACTIONS(972), - [anon_sym_return] = ACTIONS(972), - [anon_sym_source] = ACTIONS(972), - [anon_sym_source_DASHenv] = ACTIONS(972), - [anon_sym_register] = ACTIONS(972), - [anon_sym_hide] = ACTIONS(972), - [anon_sym_hide_DASHenv] = ACTIONS(972), - [anon_sym_overlay] = ACTIONS(972), - [anon_sym_as] = ACTIONS(972), - [anon_sym_STAR2] = ACTIONS(972), - [anon_sym_QMARK2] = ACTIONS(974), - [anon_sym_and2] = ACTIONS(974), - [anon_sym_xor2] = ACTIONS(974), - [anon_sym_or2] = ACTIONS(974), - [anon_sym_not_DASHin2] = ACTIONS(974), - [anon_sym_starts_DASHwith2] = ACTIONS(974), - [anon_sym_ends_DASHwith2] = ACTIONS(974), - [anon_sym_EQ_EQ2] = ACTIONS(974), - [anon_sym_BANG_EQ2] = ACTIONS(974), - [anon_sym_LT2] = ACTIONS(972), - [anon_sym_LT_EQ2] = ACTIONS(974), - [anon_sym_GT_EQ2] = ACTIONS(974), - [anon_sym_EQ_TILDE2] = ACTIONS(974), - [anon_sym_BANG_TILDE2] = ACTIONS(974), - [anon_sym_STAR_STAR2] = ACTIONS(974), - [anon_sym_PLUS_PLUS2] = ACTIONS(972), - [anon_sym_SLASH2] = ACTIONS(972), - [anon_sym_mod2] = ACTIONS(972), - [anon_sym_SLASH_SLASH2] = ACTIONS(974), - [anon_sym_PLUS2] = ACTIONS(972), - [anon_sym_bit_DASHshl2] = ACTIONS(974), - [anon_sym_bit_DASHshr2] = ACTIONS(974), - [anon_sym_bit_DASHand2] = ACTIONS(974), - [anon_sym_bit_DASHxor2] = ACTIONS(974), - [anon_sym_bit_DASHor2] = ACTIONS(974), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(974), - [anon_sym_DOT_DOT2] = ACTIONS(972), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(974), - [anon_sym_DOT_DOT_LT2] = ACTIONS(974), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(974), - [aux_sym__val_number_decimal_token1] = ACTIONS(972), - [aux_sym__val_number_decimal_token2] = ACTIONS(974), - [aux_sym__val_number_decimal_token3] = ACTIONS(974), - [aux_sym__val_number_decimal_token4] = ACTIONS(974), - [aux_sym__val_number_token1] = ACTIONS(974), - [aux_sym__val_number_token2] = ACTIONS(974), - [aux_sym__val_number_token3] = ACTIONS(974), - [aux_sym__val_number_token4] = ACTIONS(972), - [aux_sym__val_number_token5] = ACTIONS(972), - [aux_sym__val_number_token6] = ACTIONS(972), - [anon_sym_DQUOTE] = ACTIONS(974), - [sym__str_single_quotes] = ACTIONS(974), - [sym__str_back_ticks] = ACTIONS(974), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(974), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(974), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(974), - [anon_sym_COLON2] = ACTIONS(974), - [anon_sym_DOT2] = ACTIONS(972), - [anon_sym_err_GT] = ACTIONS(972), - [anon_sym_out_GT] = ACTIONS(972), - [anon_sym_e_GT] = ACTIONS(972), - [anon_sym_o_GT] = ACTIONS(972), - [anon_sym_err_PLUSout_GT] = ACTIONS(972), - [anon_sym_out_PLUSerr_GT] = ACTIONS(972), - [anon_sym_o_PLUSe_GT] = ACTIONS(972), - [anon_sym_e_PLUSo_GT] = ACTIONS(972), - [anon_sym_err_GT_GT] = ACTIONS(974), - [anon_sym_out_GT_GT] = ACTIONS(974), - [anon_sym_e_GT_GT] = ACTIONS(974), - [anon_sym_o_GT_GT] = ACTIONS(974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(974), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(974), - }, - [147] = { - [sym_comment] = STATE(147), - [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(978), - [aux_sym_cmd_identifier_token3] = ACTIONS(978), - [aux_sym_cmd_identifier_token4] = ACTIONS(978), - [aux_sym_cmd_identifier_token5] = ACTIONS(978), - [aux_sym_cmd_identifier_token6] = ACTIONS(978), - [aux_sym_cmd_identifier_token7] = ACTIONS(978), - [aux_sym_cmd_identifier_token8] = ACTIONS(976), - [aux_sym_cmd_identifier_token9] = ACTIONS(976), - [aux_sym_cmd_identifier_token10] = ACTIONS(978), - [aux_sym_cmd_identifier_token11] = ACTIONS(978), - [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(978), - [aux_sym_cmd_identifier_token17] = ACTIONS(978), - [aux_sym_cmd_identifier_token18] = ACTIONS(978), - [aux_sym_cmd_identifier_token19] = ACTIONS(978), - [aux_sym_cmd_identifier_token20] = ACTIONS(978), - [aux_sym_cmd_identifier_token21] = ACTIONS(978), - [aux_sym_cmd_identifier_token22] = ACTIONS(978), - [aux_sym_cmd_identifier_token23] = ACTIONS(978), - [aux_sym_cmd_identifier_token24] = ACTIONS(978), - [aux_sym_cmd_identifier_token25] = ACTIONS(978), - [aux_sym_cmd_identifier_token26] = ACTIONS(978), - [aux_sym_cmd_identifier_token27] = ACTIONS(978), - [aux_sym_cmd_identifier_token28] = ACTIONS(978), - [aux_sym_cmd_identifier_token29] = ACTIONS(978), - [aux_sym_cmd_identifier_token30] = ACTIONS(978), - [aux_sym_cmd_identifier_token31] = ACTIONS(978), - [aux_sym_cmd_identifier_token32] = ACTIONS(978), - [aux_sym_cmd_identifier_token33] = ACTIONS(978), - [aux_sym_cmd_identifier_token34] = ACTIONS(976), - [aux_sym_cmd_identifier_token35] = ACTIONS(978), - [aux_sym_cmd_identifier_token36] = ACTIONS(978), - [aux_sym_cmd_identifier_token37] = 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(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_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(976), - [anon_sym_error] = ACTIONS(976), - [anon_sym_GT2] = ACTIONS(976), - [anon_sym_DASH2] = ACTIONS(976), - [anon_sym_break] = ACTIONS(976), - [anon_sym_continue] = ACTIONS(976), - [anon_sym_for] = ACTIONS(976), - [anon_sym_in2] = 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_as] = ACTIONS(976), - [anon_sym_STAR2] = ACTIONS(976), - [anon_sym_QMARK2] = ACTIONS(978), - [anon_sym_and2] = ACTIONS(978), - [anon_sym_xor2] = ACTIONS(978), - [anon_sym_or2] = ACTIONS(978), - [anon_sym_not_DASHin2] = ACTIONS(978), - [anon_sym_starts_DASHwith2] = ACTIONS(978), - [anon_sym_ends_DASHwith2] = ACTIONS(978), - [anon_sym_EQ_EQ2] = ACTIONS(978), - [anon_sym_BANG_EQ2] = ACTIONS(978), - [anon_sym_LT2] = ACTIONS(976), - [anon_sym_LT_EQ2] = ACTIONS(978), - [anon_sym_GT_EQ2] = ACTIONS(978), - [anon_sym_EQ_TILDE2] = ACTIONS(978), - [anon_sym_BANG_TILDE2] = ACTIONS(978), - [anon_sym_STAR_STAR2] = ACTIONS(978), - [anon_sym_PLUS_PLUS2] = ACTIONS(976), - [anon_sym_SLASH2] = ACTIONS(976), - [anon_sym_mod2] = ACTIONS(976), - [anon_sym_SLASH_SLASH2] = ACTIONS(978), - [anon_sym_PLUS2] = ACTIONS(976), - [anon_sym_bit_DASHshl2] = ACTIONS(978), - [anon_sym_bit_DASHshr2] = ACTIONS(978), - [anon_sym_bit_DASHand2] = ACTIONS(978), - [anon_sym_bit_DASHxor2] = ACTIONS(978), - [anon_sym_bit_DASHor2] = ACTIONS(978), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(978), - [anon_sym_DOT_DOT2] = 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), - [aux_sym__val_number_token4] = ACTIONS(976), - [aux_sym__val_number_token5] = ACTIONS(976), - [aux_sym__val_number_token6] = ACTIONS(976), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(978), - [anon_sym_COLON2] = ACTIONS(978), - [anon_sym_DOT2] = 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(251), - [sym_raw_string_begin] = ACTIONS(978), - }, [148] = { [sym_comment] = STATE(148), - [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(982), - [aux_sym_cmd_identifier_token3] = ACTIONS(982), - [aux_sym_cmd_identifier_token4] = ACTIONS(982), - [aux_sym_cmd_identifier_token5] = ACTIONS(982), - [aux_sym_cmd_identifier_token6] = ACTIONS(982), - [aux_sym_cmd_identifier_token7] = ACTIONS(982), - [aux_sym_cmd_identifier_token8] = ACTIONS(980), - [aux_sym_cmd_identifier_token9] = ACTIONS(980), - [aux_sym_cmd_identifier_token10] = ACTIONS(982), - [aux_sym_cmd_identifier_token11] = ACTIONS(982), - [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(982), - [aux_sym_cmd_identifier_token17] = ACTIONS(982), - [aux_sym_cmd_identifier_token18] = ACTIONS(982), - [aux_sym_cmd_identifier_token19] = ACTIONS(982), - [aux_sym_cmd_identifier_token20] = ACTIONS(982), - [aux_sym_cmd_identifier_token21] = ACTIONS(982), - [aux_sym_cmd_identifier_token22] = ACTIONS(982), - [aux_sym_cmd_identifier_token23] = ACTIONS(982), - [aux_sym_cmd_identifier_token24] = ACTIONS(982), - [aux_sym_cmd_identifier_token25] = ACTIONS(982), - [aux_sym_cmd_identifier_token26] = ACTIONS(982), - [aux_sym_cmd_identifier_token27] = ACTIONS(982), - [aux_sym_cmd_identifier_token28] = ACTIONS(982), - [aux_sym_cmd_identifier_token29] = ACTIONS(982), - [aux_sym_cmd_identifier_token30] = ACTIONS(982), - [aux_sym_cmd_identifier_token31] = ACTIONS(982), - [aux_sym_cmd_identifier_token32] = ACTIONS(982), - [aux_sym_cmd_identifier_token33] = ACTIONS(982), - [aux_sym_cmd_identifier_token34] = ACTIONS(980), - [aux_sym_cmd_identifier_token35] = ACTIONS(982), - [aux_sym_cmd_identifier_token36] = ACTIONS(982), - [aux_sym_cmd_identifier_token37] = 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(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_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(980), - [anon_sym_error] = ACTIONS(980), - [anon_sym_GT2] = ACTIONS(980), - [anon_sym_DASH2] = ACTIONS(980), - [anon_sym_break] = ACTIONS(980), - [anon_sym_continue] = ACTIONS(980), - [anon_sym_for] = ACTIONS(980), - [anon_sym_in2] = 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_as] = ACTIONS(980), - [anon_sym_STAR2] = ACTIONS(980), - [anon_sym_QMARK2] = ACTIONS(982), - [anon_sym_and2] = ACTIONS(982), - [anon_sym_xor2] = ACTIONS(982), - [anon_sym_or2] = ACTIONS(982), - [anon_sym_not_DASHin2] = ACTIONS(982), - [anon_sym_starts_DASHwith2] = ACTIONS(982), - [anon_sym_ends_DASHwith2] = ACTIONS(982), - [anon_sym_EQ_EQ2] = ACTIONS(982), - [anon_sym_BANG_EQ2] = ACTIONS(982), - [anon_sym_LT2] = ACTIONS(980), - [anon_sym_LT_EQ2] = ACTIONS(982), - [anon_sym_GT_EQ2] = ACTIONS(982), - [anon_sym_EQ_TILDE2] = ACTIONS(982), - [anon_sym_BANG_TILDE2] = ACTIONS(982), - [anon_sym_STAR_STAR2] = ACTIONS(982), - [anon_sym_PLUS_PLUS2] = ACTIONS(980), - [anon_sym_SLASH2] = ACTIONS(980), - [anon_sym_mod2] = ACTIONS(980), - [anon_sym_SLASH_SLASH2] = ACTIONS(982), - [anon_sym_PLUS2] = ACTIONS(980), - [anon_sym_bit_DASHshl2] = ACTIONS(982), - [anon_sym_bit_DASHshr2] = ACTIONS(982), - [anon_sym_bit_DASHand2] = ACTIONS(982), - [anon_sym_bit_DASHxor2] = ACTIONS(982), - [anon_sym_bit_DASHor2] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(982), - [anon_sym_DOT_DOT2] = 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), - [aux_sym__val_number_token4] = ACTIONS(980), - [aux_sym__val_number_token5] = ACTIONS(980), - [aux_sym__val_number_token6] = ACTIONS(980), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(982), - [anon_sym_COLON2] = ACTIONS(982), - [anon_sym_DOT2] = 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(251), - [sym_raw_string_begin] = ACTIONS(982), + [anon_sym_export] = ACTIONS(964), + [anon_sym_alias] = ACTIONS(964), + [anon_sym_EQ] = ACTIONS(964), + [anon_sym_let] = ACTIONS(964), + [anon_sym_let_DASHenv] = ACTIONS(964), + [anon_sym_mut] = ACTIONS(964), + [anon_sym_const] = ACTIONS(964), + [anon_sym_PLUS_EQ] = ACTIONS(966), + [anon_sym_DASH_EQ] = ACTIONS(966), + [anon_sym_STAR_EQ] = ACTIONS(966), + [anon_sym_SLASH_EQ] = ACTIONS(966), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(966), + [aux_sym_cmd_identifier_token1] = ACTIONS(964), + [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(964), + [aux_sym_cmd_identifier_token9] = ACTIONS(964), + [aux_sym_cmd_identifier_token10] = ACTIONS(966), + [aux_sym_cmd_identifier_token11] = ACTIONS(966), + [aux_sym_cmd_identifier_token12] = ACTIONS(964), + [aux_sym_cmd_identifier_token13] = ACTIONS(964), + [aux_sym_cmd_identifier_token14] = ACTIONS(964), + [aux_sym_cmd_identifier_token15] = ACTIONS(964), + [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(964), + [aux_sym_cmd_identifier_token35] = ACTIONS(966), + [aux_sym_cmd_identifier_token36] = ACTIONS(966), + [aux_sym_cmd_identifier_token37] = ACTIONS(966), + [aux_sym_cmd_identifier_token38] = ACTIONS(964), + [aux_sym_cmd_identifier_token39] = ACTIONS(966), + [aux_sym_cmd_identifier_token40] = ACTIONS(966), + [sym__newline] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_PIPE] = ACTIONS(966), + [anon_sym_err_GT_PIPE] = ACTIONS(966), + [anon_sym_out_GT_PIPE] = ACTIONS(966), + [anon_sym_e_GT_PIPE] = ACTIONS(966), + [anon_sym_o_GT_PIPE] = ACTIONS(966), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(966), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(966), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(966), + [anon_sym_def] = ACTIONS(964), + [anon_sym_export_DASHenv] = ACTIONS(964), + [anon_sym_extern] = ACTIONS(964), + [anon_sym_module] = ACTIONS(964), + [anon_sym_use] = ACTIONS(964), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_COMMA] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(964), + [anon_sym_error] = ACTIONS(964), + [anon_sym_GT2] = ACTIONS(964), + [anon_sym_DASH2] = ACTIONS(964), + [anon_sym_break] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_in2] = ACTIONS(964), + [anon_sym_loop] = ACTIONS(964), + [anon_sym_make] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [anon_sym_do] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_else] = ACTIONS(964), + [anon_sym_match] = ACTIONS(964), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_try] = ACTIONS(964), + [anon_sym_catch] = ACTIONS(964), + [anon_sym_return] = ACTIONS(964), + [anon_sym_source] = ACTIONS(964), + [anon_sym_source_DASHenv] = ACTIONS(964), + [anon_sym_hide] = ACTIONS(964), + [anon_sym_hide_DASHenv] = ACTIONS(964), + [anon_sym_overlay] = ACTIONS(964), + [anon_sym_as] = ACTIONS(964), + [anon_sym_STAR2] = ACTIONS(964), + [anon_sym_QMARK2] = ACTIONS(966), + [anon_sym_and2] = ACTIONS(966), + [anon_sym_xor2] = ACTIONS(966), + [anon_sym_or2] = ACTIONS(966), + [anon_sym_not_DASHin2] = ACTIONS(966), + [anon_sym_has2] = ACTIONS(966), + [anon_sym_not_DASHhas2] = ACTIONS(966), + [anon_sym_starts_DASHwith2] = ACTIONS(966), + [anon_sym_ends_DASHwith2] = ACTIONS(966), + [anon_sym_EQ_EQ2] = ACTIONS(966), + [anon_sym_BANG_EQ2] = ACTIONS(966), + [anon_sym_LT2] = ACTIONS(964), + [anon_sym_LT_EQ2] = ACTIONS(966), + [anon_sym_GT_EQ2] = ACTIONS(966), + [anon_sym_EQ_TILDE2] = ACTIONS(966), + [anon_sym_BANG_TILDE2] = ACTIONS(966), + [anon_sym_STAR_STAR2] = ACTIONS(966), + [anon_sym_PLUS_PLUS2] = ACTIONS(964), + [anon_sym_SLASH2] = ACTIONS(964), + [anon_sym_mod2] = ACTIONS(964), + [anon_sym_SLASH_SLASH2] = ACTIONS(966), + [anon_sym_PLUS2] = ACTIONS(964), + [anon_sym_bit_DASHshl2] = ACTIONS(966), + [anon_sym_bit_DASHshr2] = ACTIONS(966), + [anon_sym_bit_DASHand2] = ACTIONS(966), + [anon_sym_bit_DASHxor2] = ACTIONS(966), + [anon_sym_bit_DASHor2] = ACTIONS(966), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(966), + [anon_sym_DOT_DOT2] = ACTIONS(964), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(966), + [anon_sym_DOT_DOT_LT2] = ACTIONS(966), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(966), + [aux_sym__val_number_decimal_token1] = ACTIONS(964), + [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), + [aux_sym__val_number_token4] = ACTIONS(964), + [aux_sym__val_number_token5] = ACTIONS(964), + [aux_sym__val_number_token6] = ACTIONS(964), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym__str_single_quotes] = ACTIONS(966), + [sym__str_back_ticks] = ACTIONS(966), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(966), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(966), + [anon_sym_register] = ACTIONS(964), + [anon_sym_COLON2] = ACTIONS(966), + [anon_sym_DOT2] = ACTIONS(964), + [anon_sym_err_GT] = ACTIONS(964), + [anon_sym_out_GT] = ACTIONS(964), + [anon_sym_e_GT] = ACTIONS(964), + [anon_sym_o_GT] = ACTIONS(964), + [anon_sym_err_PLUSout_GT] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT] = ACTIONS(964), + [anon_sym_o_PLUSe_GT] = ACTIONS(964), + [anon_sym_e_PLUSo_GT] = ACTIONS(964), + [anon_sym_err_GT_GT] = ACTIONS(966), + [anon_sym_out_GT_GT] = ACTIONS(966), + [anon_sym_e_GT_GT] = ACTIONS(966), + [anon_sym_o_GT_GT] = ACTIONS(966), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(966), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(966), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(966), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(966), }, [149] = { [sym_comment] = STATE(149), - [anon_sym_export] = ACTIONS(984), - [anon_sym_alias] = ACTIONS(984), - [anon_sym_EQ] = ACTIONS(984), - [anon_sym_let] = ACTIONS(984), - [anon_sym_let_DASHenv] = ACTIONS(984), - [anon_sym_mut] = ACTIONS(984), - [anon_sym_const] = ACTIONS(984), - [anon_sym_PLUS_EQ] = ACTIONS(986), - [anon_sym_DASH_EQ] = ACTIONS(986), - [anon_sym_STAR_EQ] = ACTIONS(986), - [anon_sym_SLASH_EQ] = ACTIONS(986), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(986), - [aux_sym_cmd_identifier_token1] = ACTIONS(984), - [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(984), - [aux_sym_cmd_identifier_token9] = ACTIONS(984), - [aux_sym_cmd_identifier_token10] = ACTIONS(986), - [aux_sym_cmd_identifier_token11] = ACTIONS(986), - [aux_sym_cmd_identifier_token12] = ACTIONS(984), - [aux_sym_cmd_identifier_token13] = ACTIONS(984), - [aux_sym_cmd_identifier_token14] = ACTIONS(984), - [aux_sym_cmd_identifier_token15] = ACTIONS(984), - [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(984), - [aux_sym_cmd_identifier_token35] = ACTIONS(986), - [aux_sym_cmd_identifier_token36] = ACTIONS(986), - [aux_sym_cmd_identifier_token37] = ACTIONS(986), - [aux_sym_cmd_identifier_token38] = ACTIONS(984), - [aux_sym_cmd_identifier_token39] = ACTIONS(986), - [aux_sym_cmd_identifier_token40] = ACTIONS(986), - [sym__newline] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_PIPE] = ACTIONS(986), - [anon_sym_err_GT_PIPE] = ACTIONS(986), - [anon_sym_out_GT_PIPE] = ACTIONS(986), - [anon_sym_e_GT_PIPE] = ACTIONS(986), - [anon_sym_o_GT_PIPE] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), - [anon_sym_def] = ACTIONS(984), - [anon_sym_export_DASHenv] = ACTIONS(984), - [anon_sym_extern] = ACTIONS(984), - [anon_sym_module] = ACTIONS(984), - [anon_sym_use] = ACTIONS(984), - [anon_sym_LPAREN] = ACTIONS(986), - [anon_sym_COMMA] = ACTIONS(986), - [anon_sym_DOLLAR] = ACTIONS(984), - [anon_sym_error] = ACTIONS(984), - [anon_sym_GT2] = ACTIONS(984), - [anon_sym_DASH2] = ACTIONS(984), - [anon_sym_break] = ACTIONS(984), - [anon_sym_continue] = ACTIONS(984), - [anon_sym_for] = ACTIONS(984), - [anon_sym_in2] = ACTIONS(984), - [anon_sym_loop] = ACTIONS(984), - [anon_sym_make] = ACTIONS(984), - [anon_sym_while] = ACTIONS(984), - [anon_sym_do] = ACTIONS(984), - [anon_sym_if] = ACTIONS(984), - [anon_sym_else] = ACTIONS(984), - [anon_sym_match] = ACTIONS(984), - [anon_sym_RBRACE] = ACTIONS(986), - [anon_sym_try] = ACTIONS(984), - [anon_sym_catch] = ACTIONS(984), - [anon_sym_return] = ACTIONS(984), - [anon_sym_source] = ACTIONS(984), - [anon_sym_source_DASHenv] = ACTIONS(984), - [anon_sym_register] = ACTIONS(984), - [anon_sym_hide] = ACTIONS(984), - [anon_sym_hide_DASHenv] = ACTIONS(984), - [anon_sym_overlay] = ACTIONS(984), - [anon_sym_as] = ACTIONS(984), - [anon_sym_STAR2] = ACTIONS(984), - [anon_sym_QMARK2] = ACTIONS(986), - [anon_sym_and2] = ACTIONS(986), - [anon_sym_xor2] = ACTIONS(986), - [anon_sym_or2] = ACTIONS(986), - [anon_sym_not_DASHin2] = ACTIONS(986), - [anon_sym_starts_DASHwith2] = ACTIONS(986), - [anon_sym_ends_DASHwith2] = ACTIONS(986), - [anon_sym_EQ_EQ2] = ACTIONS(986), - [anon_sym_BANG_EQ2] = ACTIONS(986), - [anon_sym_LT2] = ACTIONS(984), - [anon_sym_LT_EQ2] = ACTIONS(986), - [anon_sym_GT_EQ2] = ACTIONS(986), - [anon_sym_EQ_TILDE2] = ACTIONS(986), - [anon_sym_BANG_TILDE2] = ACTIONS(986), - [anon_sym_STAR_STAR2] = ACTIONS(986), - [anon_sym_PLUS_PLUS2] = ACTIONS(984), - [anon_sym_SLASH2] = ACTIONS(984), - [anon_sym_mod2] = ACTIONS(984), - [anon_sym_SLASH_SLASH2] = ACTIONS(986), - [anon_sym_PLUS2] = ACTIONS(984), - [anon_sym_bit_DASHshl2] = ACTIONS(986), - [anon_sym_bit_DASHshr2] = ACTIONS(986), - [anon_sym_bit_DASHand2] = ACTIONS(986), - [anon_sym_bit_DASHxor2] = ACTIONS(986), - [anon_sym_bit_DASHor2] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(986), - [anon_sym_DOT_DOT2] = ACTIONS(984), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), - [anon_sym_DOT_DOT_LT2] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(986), - [aux_sym__val_number_decimal_token1] = ACTIONS(984), - [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), - [aux_sym__val_number_token4] = ACTIONS(984), - [aux_sym__val_number_token5] = ACTIONS(984), - [aux_sym__val_number_token6] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym__str_single_quotes] = ACTIONS(986), - [sym__str_back_ticks] = ACTIONS(986), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(986), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(986), - [anon_sym_COLON2] = ACTIONS(986), - [anon_sym_DOT2] = ACTIONS(984), - [anon_sym_err_GT] = ACTIONS(984), - [anon_sym_out_GT] = ACTIONS(984), - [anon_sym_e_GT] = ACTIONS(984), - [anon_sym_o_GT] = ACTIONS(984), - [anon_sym_err_PLUSout_GT] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT] = ACTIONS(984), - [anon_sym_o_PLUSe_GT] = ACTIONS(984), - [anon_sym_e_PLUSo_GT] = ACTIONS(984), - [anon_sym_err_GT_GT] = ACTIONS(986), - [anon_sym_out_GT_GT] = ACTIONS(986), - [anon_sym_e_GT_GT] = ACTIONS(986), - [anon_sym_o_GT_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(986), + [anon_sym_export] = ACTIONS(968), + [anon_sym_alias] = ACTIONS(968), + [anon_sym_EQ] = ACTIONS(968), + [anon_sym_let] = ACTIONS(968), + [anon_sym_let_DASHenv] = ACTIONS(968), + [anon_sym_mut] = ACTIONS(968), + [anon_sym_const] = ACTIONS(968), + [anon_sym_PLUS_EQ] = ACTIONS(970), + [anon_sym_DASH_EQ] = ACTIONS(970), + [anon_sym_STAR_EQ] = ACTIONS(970), + [anon_sym_SLASH_EQ] = ACTIONS(970), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(970), + [aux_sym_cmd_identifier_token1] = ACTIONS(968), + [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(968), + [aux_sym_cmd_identifier_token9] = ACTIONS(968), + [aux_sym_cmd_identifier_token10] = ACTIONS(970), + [aux_sym_cmd_identifier_token11] = ACTIONS(970), + [aux_sym_cmd_identifier_token12] = ACTIONS(968), + [aux_sym_cmd_identifier_token13] = ACTIONS(968), + [aux_sym_cmd_identifier_token14] = ACTIONS(968), + [aux_sym_cmd_identifier_token15] = ACTIONS(968), + [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(968), + [aux_sym_cmd_identifier_token35] = ACTIONS(970), + [aux_sym_cmd_identifier_token36] = ACTIONS(970), + [aux_sym_cmd_identifier_token37] = ACTIONS(970), + [aux_sym_cmd_identifier_token38] = ACTIONS(968), + [aux_sym_cmd_identifier_token39] = ACTIONS(970), + [aux_sym_cmd_identifier_token40] = ACTIONS(970), + [sym__newline] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(970), + [anon_sym_PIPE] = ACTIONS(970), + [anon_sym_err_GT_PIPE] = ACTIONS(970), + [anon_sym_out_GT_PIPE] = ACTIONS(970), + [anon_sym_e_GT_PIPE] = ACTIONS(970), + [anon_sym_o_GT_PIPE] = ACTIONS(970), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(970), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(970), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(970), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(970), + [anon_sym_def] = ACTIONS(968), + [anon_sym_export_DASHenv] = ACTIONS(968), + [anon_sym_extern] = ACTIONS(968), + [anon_sym_module] = ACTIONS(968), + [anon_sym_use] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(970), + [anon_sym_COMMA] = ACTIONS(970), + [anon_sym_DOLLAR] = ACTIONS(968), + [anon_sym_error] = ACTIONS(968), + [anon_sym_GT2] = ACTIONS(968), + [anon_sym_DASH2] = ACTIONS(968), + [anon_sym_break] = ACTIONS(968), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_for] = ACTIONS(968), + [anon_sym_in2] = ACTIONS(968), + [anon_sym_loop] = ACTIONS(968), + [anon_sym_make] = ACTIONS(968), + [anon_sym_while] = ACTIONS(968), + [anon_sym_do] = ACTIONS(968), + [anon_sym_if] = ACTIONS(968), + [anon_sym_else] = ACTIONS(968), + [anon_sym_match] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(970), + [anon_sym_try] = ACTIONS(968), + [anon_sym_catch] = ACTIONS(968), + [anon_sym_return] = ACTIONS(968), + [anon_sym_source] = ACTIONS(968), + [anon_sym_source_DASHenv] = ACTIONS(968), + [anon_sym_hide] = ACTIONS(968), + [anon_sym_hide_DASHenv] = ACTIONS(968), + [anon_sym_overlay] = ACTIONS(968), + [anon_sym_as] = ACTIONS(968), + [anon_sym_STAR2] = ACTIONS(968), + [anon_sym_QMARK2] = ACTIONS(972), + [anon_sym_and2] = ACTIONS(970), + [anon_sym_xor2] = ACTIONS(970), + [anon_sym_or2] = ACTIONS(970), + [anon_sym_not_DASHin2] = ACTIONS(970), + [anon_sym_has2] = ACTIONS(970), + [anon_sym_not_DASHhas2] = ACTIONS(970), + [anon_sym_starts_DASHwith2] = ACTIONS(970), + [anon_sym_ends_DASHwith2] = ACTIONS(970), + [anon_sym_EQ_EQ2] = ACTIONS(970), + [anon_sym_BANG_EQ2] = ACTIONS(970), + [anon_sym_LT2] = ACTIONS(968), + [anon_sym_LT_EQ2] = ACTIONS(970), + [anon_sym_GT_EQ2] = ACTIONS(970), + [anon_sym_EQ_TILDE2] = ACTIONS(970), + [anon_sym_BANG_TILDE2] = ACTIONS(970), + [anon_sym_STAR_STAR2] = ACTIONS(970), + [anon_sym_PLUS_PLUS2] = ACTIONS(968), + [anon_sym_SLASH2] = ACTIONS(968), + [anon_sym_mod2] = ACTIONS(968), + [anon_sym_SLASH_SLASH2] = ACTIONS(970), + [anon_sym_PLUS2] = ACTIONS(968), + [anon_sym_bit_DASHshl2] = ACTIONS(970), + [anon_sym_bit_DASHshr2] = ACTIONS(970), + [anon_sym_bit_DASHand2] = ACTIONS(970), + [anon_sym_bit_DASHxor2] = ACTIONS(970), + [anon_sym_bit_DASHor2] = ACTIONS(970), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(970), + [anon_sym_DOT_DOT2] = ACTIONS(968), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(970), + [anon_sym_DOT_DOT_LT2] = ACTIONS(970), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(970), + [aux_sym__val_number_decimal_token1] = ACTIONS(968), + [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), + [aux_sym__val_number_token4] = ACTIONS(968), + [aux_sym__val_number_token5] = ACTIONS(968), + [aux_sym__val_number_token6] = ACTIONS(968), + [anon_sym_DQUOTE] = ACTIONS(970), + [sym__str_single_quotes] = ACTIONS(970), + [sym__str_back_ticks] = ACTIONS(970), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(970), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(970), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(970), + [anon_sym_register] = ACTIONS(968), + [anon_sym_COLON2] = ACTIONS(970), + [anon_sym_DOT2] = ACTIONS(968), + [anon_sym_err_GT] = ACTIONS(968), + [anon_sym_out_GT] = ACTIONS(968), + [anon_sym_e_GT] = ACTIONS(968), + [anon_sym_o_GT] = ACTIONS(968), + [anon_sym_err_PLUSout_GT] = ACTIONS(968), + [anon_sym_out_PLUSerr_GT] = ACTIONS(968), + [anon_sym_o_PLUSe_GT] = ACTIONS(968), + [anon_sym_e_PLUSo_GT] = ACTIONS(968), + [anon_sym_err_GT_GT] = ACTIONS(970), + [anon_sym_out_GT_GT] = ACTIONS(970), + [anon_sym_e_GT_GT] = ACTIONS(970), + [anon_sym_o_GT_GT] = ACTIONS(970), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(970), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(970), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(970), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(970), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(970), }, [150] = { [sym_comment] = STATE(150), - [anon_sym_export] = ACTIONS(988), - [anon_sym_alias] = ACTIONS(988), - [anon_sym_EQ] = ACTIONS(988), - [anon_sym_let] = ACTIONS(988), - [anon_sym_let_DASHenv] = ACTIONS(988), - [anon_sym_mut] = ACTIONS(988), - [anon_sym_const] = ACTIONS(988), - [anon_sym_PLUS_EQ] = ACTIONS(990), - [anon_sym_DASH_EQ] = ACTIONS(990), - [anon_sym_STAR_EQ] = ACTIONS(990), - [anon_sym_SLASH_EQ] = ACTIONS(990), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(990), - [aux_sym_cmd_identifier_token1] = ACTIONS(988), - [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(988), - [aux_sym_cmd_identifier_token9] = ACTIONS(988), - [aux_sym_cmd_identifier_token10] = ACTIONS(990), - [aux_sym_cmd_identifier_token11] = ACTIONS(990), - [aux_sym_cmd_identifier_token12] = ACTIONS(988), - [aux_sym_cmd_identifier_token13] = ACTIONS(988), - [aux_sym_cmd_identifier_token14] = ACTIONS(988), - [aux_sym_cmd_identifier_token15] = ACTIONS(988), - [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(988), - [aux_sym_cmd_identifier_token35] = ACTIONS(990), - [aux_sym_cmd_identifier_token36] = ACTIONS(990), - [aux_sym_cmd_identifier_token37] = ACTIONS(990), - [aux_sym_cmd_identifier_token38] = ACTIONS(988), - [aux_sym_cmd_identifier_token39] = ACTIONS(990), - [aux_sym_cmd_identifier_token40] = ACTIONS(990), - [sym__newline] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_PIPE] = ACTIONS(990), - [anon_sym_err_GT_PIPE] = ACTIONS(990), - [anon_sym_out_GT_PIPE] = ACTIONS(990), - [anon_sym_e_GT_PIPE] = ACTIONS(990), - [anon_sym_o_GT_PIPE] = ACTIONS(990), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(990), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(990), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(990), - [anon_sym_def] = ACTIONS(988), - [anon_sym_export_DASHenv] = ACTIONS(988), - [anon_sym_extern] = ACTIONS(988), - [anon_sym_module] = ACTIONS(988), - [anon_sym_use] = ACTIONS(988), - [anon_sym_LPAREN] = ACTIONS(990), - [anon_sym_COMMA] = ACTIONS(990), - [anon_sym_DOLLAR] = ACTIONS(988), - [anon_sym_error] = ACTIONS(988), - [anon_sym_GT2] = ACTIONS(988), - [anon_sym_DASH2] = ACTIONS(988), - [anon_sym_break] = ACTIONS(988), - [anon_sym_continue] = ACTIONS(988), - [anon_sym_for] = ACTIONS(988), - [anon_sym_in2] = ACTIONS(988), - [anon_sym_loop] = ACTIONS(988), - [anon_sym_make] = ACTIONS(988), - [anon_sym_while] = ACTIONS(988), - [anon_sym_do] = ACTIONS(988), - [anon_sym_if] = ACTIONS(988), - [anon_sym_else] = ACTIONS(988), - [anon_sym_match] = ACTIONS(988), - [anon_sym_RBRACE] = ACTIONS(990), - [anon_sym_try] = ACTIONS(988), - [anon_sym_catch] = ACTIONS(988), - [anon_sym_return] = ACTIONS(988), - [anon_sym_source] = ACTIONS(988), - [anon_sym_source_DASHenv] = ACTIONS(988), - [anon_sym_register] = ACTIONS(988), - [anon_sym_hide] = ACTIONS(988), - [anon_sym_hide_DASHenv] = ACTIONS(988), - [anon_sym_overlay] = ACTIONS(988), - [anon_sym_as] = ACTIONS(988), - [anon_sym_STAR2] = ACTIONS(988), - [anon_sym_and2] = ACTIONS(990), - [anon_sym_xor2] = ACTIONS(990), - [anon_sym_or2] = ACTIONS(990), - [anon_sym_not_DASHin2] = ACTIONS(990), - [anon_sym_starts_DASHwith2] = ACTIONS(990), - [anon_sym_ends_DASHwith2] = ACTIONS(990), - [anon_sym_EQ_EQ2] = ACTIONS(990), - [anon_sym_BANG_EQ2] = ACTIONS(990), - [anon_sym_LT2] = ACTIONS(988), - [anon_sym_LT_EQ2] = ACTIONS(990), - [anon_sym_GT_EQ2] = ACTIONS(990), - [anon_sym_EQ_TILDE2] = ACTIONS(990), - [anon_sym_BANG_TILDE2] = ACTIONS(990), - [anon_sym_STAR_STAR2] = ACTIONS(990), - [anon_sym_PLUS_PLUS2] = ACTIONS(988), - [anon_sym_SLASH2] = ACTIONS(988), - [anon_sym_mod2] = ACTIONS(988), - [anon_sym_SLASH_SLASH2] = ACTIONS(990), - [anon_sym_PLUS2] = ACTIONS(988), - [anon_sym_bit_DASHshl2] = ACTIONS(990), - [anon_sym_bit_DASHshr2] = ACTIONS(990), - [anon_sym_bit_DASHand2] = ACTIONS(990), - [anon_sym_bit_DASHxor2] = ACTIONS(990), - [anon_sym_bit_DASHor2] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(990), - [anon_sym_DOT_DOT2] = ACTIONS(988), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(990), - [anon_sym_DOT_DOT_LT2] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(990), - [aux_sym__val_number_decimal_token1] = ACTIONS(988), - [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), - [aux_sym__val_number_token4] = ACTIONS(988), - [aux_sym__val_number_token5] = ACTIONS(988), - [aux_sym__val_number_token6] = ACTIONS(988), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym__str_single_quotes] = ACTIONS(990), - [sym__str_back_ticks] = ACTIONS(990), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(990), - [anon_sym_COLON2] = ACTIONS(990), - [anon_sym_DOT2] = ACTIONS(988), - [anon_sym_err_GT] = ACTIONS(988), - [anon_sym_out_GT] = ACTIONS(988), - [anon_sym_e_GT] = ACTIONS(988), - [anon_sym_o_GT] = ACTIONS(988), - [anon_sym_err_PLUSout_GT] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT] = ACTIONS(988), - [anon_sym_o_PLUSe_GT] = ACTIONS(988), - [anon_sym_e_PLUSo_GT] = ACTIONS(988), - [anon_sym_err_GT_GT] = ACTIONS(990), - [anon_sym_out_GT_GT] = ACTIONS(990), - [anon_sym_e_GT_GT] = ACTIONS(990), - [anon_sym_o_GT_GT] = ACTIONS(990), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(990), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(990), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(990), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(990), + [anon_sym_export] = ACTIONS(974), + [anon_sym_alias] = ACTIONS(974), + [anon_sym_EQ] = ACTIONS(974), + [anon_sym_let] = ACTIONS(974), + [anon_sym_let_DASHenv] = ACTIONS(974), + [anon_sym_mut] = ACTIONS(974), + [anon_sym_const] = ACTIONS(974), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(976), + [aux_sym_cmd_identifier_token1] = ACTIONS(974), + [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(974), + [aux_sym_cmd_identifier_token9] = ACTIONS(974), + [aux_sym_cmd_identifier_token10] = ACTIONS(976), + [aux_sym_cmd_identifier_token11] = ACTIONS(976), + [aux_sym_cmd_identifier_token12] = ACTIONS(974), + [aux_sym_cmd_identifier_token13] = ACTIONS(974), + [aux_sym_cmd_identifier_token14] = ACTIONS(974), + [aux_sym_cmd_identifier_token15] = ACTIONS(974), + [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(974), + [aux_sym_cmd_identifier_token35] = ACTIONS(976), + [aux_sym_cmd_identifier_token36] = ACTIONS(976), + [aux_sym_cmd_identifier_token37] = ACTIONS(976), + [aux_sym_cmd_identifier_token38] = ACTIONS(974), + [aux_sym_cmd_identifier_token39] = ACTIONS(976), + [aux_sym_cmd_identifier_token40] = ACTIONS(976), + [sym__newline] = ACTIONS(976), + [anon_sym_SEMI] = ACTIONS(976), + [anon_sym_PIPE] = ACTIONS(976), + [anon_sym_err_GT_PIPE] = ACTIONS(976), + [anon_sym_out_GT_PIPE] = ACTIONS(976), + [anon_sym_e_GT_PIPE] = ACTIONS(976), + [anon_sym_o_GT_PIPE] = ACTIONS(976), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(976), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(976), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(976), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(976), + [anon_sym_def] = ACTIONS(974), + [anon_sym_export_DASHenv] = ACTIONS(974), + [anon_sym_extern] = ACTIONS(974), + [anon_sym_module] = ACTIONS(974), + [anon_sym_use] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(976), + [anon_sym_COMMA] = ACTIONS(976), + [anon_sym_DOLLAR] = ACTIONS(974), + [anon_sym_error] = ACTIONS(974), + [anon_sym_GT2] = ACTIONS(974), + [anon_sym_DASH2] = ACTIONS(974), + [anon_sym_break] = ACTIONS(974), + [anon_sym_continue] = ACTIONS(974), + [anon_sym_for] = ACTIONS(974), + [anon_sym_in2] = ACTIONS(974), + [anon_sym_loop] = ACTIONS(974), + [anon_sym_make] = ACTIONS(974), + [anon_sym_while] = ACTIONS(974), + [anon_sym_do] = ACTIONS(974), + [anon_sym_if] = ACTIONS(974), + [anon_sym_else] = ACTIONS(974), + [anon_sym_match] = ACTIONS(974), + [anon_sym_RBRACE] = ACTIONS(976), + [anon_sym_try] = ACTIONS(974), + [anon_sym_catch] = ACTIONS(974), + [anon_sym_return] = ACTIONS(974), + [anon_sym_source] = ACTIONS(974), + [anon_sym_source_DASHenv] = ACTIONS(974), + [anon_sym_hide] = ACTIONS(974), + [anon_sym_hide_DASHenv] = ACTIONS(974), + [anon_sym_overlay] = ACTIONS(974), + [anon_sym_as] = ACTIONS(974), + [anon_sym_STAR2] = ACTIONS(974), + [anon_sym_and2] = ACTIONS(976), + [anon_sym_xor2] = ACTIONS(976), + [anon_sym_or2] = ACTIONS(976), + [anon_sym_not_DASHin2] = ACTIONS(976), + [anon_sym_has2] = ACTIONS(976), + [anon_sym_not_DASHhas2] = ACTIONS(976), + [anon_sym_starts_DASHwith2] = ACTIONS(976), + [anon_sym_ends_DASHwith2] = ACTIONS(976), + [anon_sym_EQ_EQ2] = ACTIONS(976), + [anon_sym_BANG_EQ2] = ACTIONS(976), + [anon_sym_LT2] = ACTIONS(974), + [anon_sym_LT_EQ2] = ACTIONS(976), + [anon_sym_GT_EQ2] = ACTIONS(976), + [anon_sym_EQ_TILDE2] = ACTIONS(976), + [anon_sym_BANG_TILDE2] = ACTIONS(976), + [anon_sym_STAR_STAR2] = ACTIONS(976), + [anon_sym_PLUS_PLUS2] = ACTIONS(974), + [anon_sym_SLASH2] = ACTIONS(974), + [anon_sym_mod2] = ACTIONS(974), + [anon_sym_SLASH_SLASH2] = ACTIONS(976), + [anon_sym_PLUS2] = ACTIONS(974), + [anon_sym_bit_DASHshl2] = ACTIONS(976), + [anon_sym_bit_DASHshr2] = ACTIONS(976), + [anon_sym_bit_DASHand2] = ACTIONS(976), + [anon_sym_bit_DASHxor2] = ACTIONS(976), + [anon_sym_bit_DASHor2] = ACTIONS(976), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(976), + [anon_sym_DOT_DOT2] = ACTIONS(974), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(976), + [anon_sym_DOT_DOT_LT2] = ACTIONS(976), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(976), + [aux_sym__val_number_decimal_token1] = ACTIONS(974), + [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), + [aux_sym__val_number_token4] = ACTIONS(974), + [aux_sym__val_number_token5] = ACTIONS(974), + [aux_sym__val_number_token6] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(976), + [sym__str_single_quotes] = ACTIONS(976), + [sym__str_back_ticks] = ACTIONS(976), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(976), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(976), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(976), + [anon_sym_register] = ACTIONS(974), + [anon_sym_COLON2] = ACTIONS(976), + [anon_sym_DOT2] = ACTIONS(974), + [anon_sym_err_GT] = ACTIONS(974), + [anon_sym_out_GT] = ACTIONS(974), + [anon_sym_e_GT] = ACTIONS(974), + [anon_sym_o_GT] = ACTIONS(974), + [anon_sym_err_PLUSout_GT] = ACTIONS(974), + [anon_sym_out_PLUSerr_GT] = ACTIONS(974), + [anon_sym_o_PLUSe_GT] = ACTIONS(974), + [anon_sym_e_PLUSo_GT] = ACTIONS(974), + [anon_sym_err_GT_GT] = ACTIONS(976), + [anon_sym_out_GT_GT] = ACTIONS(976), + [anon_sym_e_GT_GT] = ACTIONS(976), + [anon_sym_o_GT_GT] = ACTIONS(976), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(976), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(976), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(976), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(976), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(976), }, [151] = { [sym_comment] = STATE(151), - [anon_sym_export] = ACTIONS(992), - [anon_sym_alias] = ACTIONS(992), + [anon_sym_export] = ACTIONS(978), + [anon_sym_alias] = ACTIONS(978), + [anon_sym_EQ] = ACTIONS(978), + [anon_sym_let] = ACTIONS(978), + [anon_sym_let_DASHenv] = ACTIONS(978), + [anon_sym_mut] = ACTIONS(978), + [anon_sym_const] = ACTIONS(978), + [anon_sym_PLUS_EQ] = ACTIONS(980), + [anon_sym_DASH_EQ] = ACTIONS(980), + [anon_sym_STAR_EQ] = ACTIONS(980), + [anon_sym_SLASH_EQ] = ACTIONS(980), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(980), + [aux_sym_cmd_identifier_token1] = ACTIONS(978), + [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(978), + [aux_sym_cmd_identifier_token9] = ACTIONS(978), + [aux_sym_cmd_identifier_token10] = ACTIONS(980), + [aux_sym_cmd_identifier_token11] = ACTIONS(980), + [aux_sym_cmd_identifier_token12] = ACTIONS(978), + [aux_sym_cmd_identifier_token13] = ACTIONS(978), + [aux_sym_cmd_identifier_token14] = ACTIONS(978), + [aux_sym_cmd_identifier_token15] = ACTIONS(978), + [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(978), + [aux_sym_cmd_identifier_token35] = ACTIONS(980), + [aux_sym_cmd_identifier_token36] = ACTIONS(980), + [aux_sym_cmd_identifier_token37] = ACTIONS(980), + [aux_sym_cmd_identifier_token38] = ACTIONS(978), + [aux_sym_cmd_identifier_token39] = ACTIONS(980), + [aux_sym_cmd_identifier_token40] = ACTIONS(980), + [sym__newline] = ACTIONS(980), + [anon_sym_SEMI] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(980), + [anon_sym_err_GT_PIPE] = ACTIONS(980), + [anon_sym_out_GT_PIPE] = ACTIONS(980), + [anon_sym_e_GT_PIPE] = ACTIONS(980), + [anon_sym_o_GT_PIPE] = ACTIONS(980), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(980), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(980), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(980), + [anon_sym_def] = ACTIONS(978), + [anon_sym_export_DASHenv] = ACTIONS(978), + [anon_sym_extern] = ACTIONS(978), + [anon_sym_module] = ACTIONS(978), + [anon_sym_use] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(980), + [anon_sym_COMMA] = ACTIONS(980), + [anon_sym_DOLLAR] = ACTIONS(978), + [anon_sym_error] = ACTIONS(978), + [anon_sym_GT2] = ACTIONS(978), + [anon_sym_DASH2] = ACTIONS(978), + [anon_sym_break] = ACTIONS(978), + [anon_sym_continue] = ACTIONS(978), + [anon_sym_for] = ACTIONS(978), + [anon_sym_in2] = ACTIONS(978), + [anon_sym_loop] = ACTIONS(978), + [anon_sym_make] = ACTIONS(978), + [anon_sym_while] = ACTIONS(978), + [anon_sym_do] = ACTIONS(978), + [anon_sym_if] = ACTIONS(978), + [anon_sym_else] = ACTIONS(978), + [anon_sym_match] = ACTIONS(978), + [anon_sym_RBRACE] = ACTIONS(980), + [anon_sym_try] = ACTIONS(978), + [anon_sym_catch] = ACTIONS(978), + [anon_sym_return] = ACTIONS(978), + [anon_sym_source] = ACTIONS(978), + [anon_sym_source_DASHenv] = ACTIONS(978), + [anon_sym_hide] = ACTIONS(978), + [anon_sym_hide_DASHenv] = ACTIONS(978), + [anon_sym_overlay] = ACTIONS(978), + [anon_sym_as] = ACTIONS(978), + [anon_sym_STAR2] = ACTIONS(978), + [anon_sym_and2] = ACTIONS(980), + [anon_sym_xor2] = ACTIONS(980), + [anon_sym_or2] = ACTIONS(980), + [anon_sym_not_DASHin2] = ACTIONS(980), + [anon_sym_has2] = ACTIONS(980), + [anon_sym_not_DASHhas2] = ACTIONS(980), + [anon_sym_starts_DASHwith2] = ACTIONS(980), + [anon_sym_ends_DASHwith2] = ACTIONS(980), + [anon_sym_EQ_EQ2] = ACTIONS(980), + [anon_sym_BANG_EQ2] = ACTIONS(980), + [anon_sym_LT2] = ACTIONS(978), + [anon_sym_LT_EQ2] = ACTIONS(980), + [anon_sym_GT_EQ2] = ACTIONS(980), + [anon_sym_EQ_TILDE2] = ACTIONS(980), + [anon_sym_BANG_TILDE2] = ACTIONS(980), + [anon_sym_STAR_STAR2] = ACTIONS(980), + [anon_sym_PLUS_PLUS2] = ACTIONS(978), + [anon_sym_SLASH2] = ACTIONS(978), + [anon_sym_mod2] = ACTIONS(978), + [anon_sym_SLASH_SLASH2] = ACTIONS(980), + [anon_sym_PLUS2] = ACTIONS(978), + [anon_sym_bit_DASHshl2] = ACTIONS(980), + [anon_sym_bit_DASHshr2] = ACTIONS(980), + [anon_sym_bit_DASHand2] = ACTIONS(980), + [anon_sym_bit_DASHxor2] = ACTIONS(980), + [anon_sym_bit_DASHor2] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(980), + [anon_sym_DOT_DOT2] = ACTIONS(978), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(980), + [anon_sym_DOT_DOT_LT2] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(980), + [aux_sym__val_number_decimal_token1] = ACTIONS(978), + [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), + [aux_sym__val_number_token4] = ACTIONS(978), + [aux_sym__val_number_token5] = ACTIONS(978), + [aux_sym__val_number_token6] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(980), + [sym__str_single_quotes] = ACTIONS(980), + [sym__str_back_ticks] = ACTIONS(980), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(980), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(980), + [anon_sym_register] = ACTIONS(978), + [anon_sym_COLON2] = ACTIONS(980), + [anon_sym_DOT2] = ACTIONS(978), + [anon_sym_err_GT] = ACTIONS(978), + [anon_sym_out_GT] = ACTIONS(978), + [anon_sym_e_GT] = ACTIONS(978), + [anon_sym_o_GT] = ACTIONS(978), + [anon_sym_err_PLUSout_GT] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT] = ACTIONS(978), + [anon_sym_o_PLUSe_GT] = ACTIONS(978), + [anon_sym_e_PLUSo_GT] = ACTIONS(978), + [anon_sym_err_GT_GT] = ACTIONS(980), + [anon_sym_out_GT_GT] = ACTIONS(980), + [anon_sym_e_GT_GT] = ACTIONS(980), + [anon_sym_o_GT_GT] = ACTIONS(980), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(980), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(980), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(980), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(980), + }, + [152] = { + [sym_comment] = STATE(152), + [anon_sym_export] = ACTIONS(982), + [anon_sym_alias] = ACTIONS(982), + [anon_sym_EQ] = ACTIONS(982), + [anon_sym_let] = ACTIONS(982), + [anon_sym_let_DASHenv] = ACTIONS(982), + [anon_sym_mut] = ACTIONS(982), + [anon_sym_const] = ACTIONS(982), + [anon_sym_PLUS_EQ] = ACTIONS(984), + [anon_sym_DASH_EQ] = ACTIONS(984), + [anon_sym_STAR_EQ] = ACTIONS(984), + [anon_sym_SLASH_EQ] = ACTIONS(984), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(984), + [aux_sym_cmd_identifier_token1] = ACTIONS(982), + [aux_sym_cmd_identifier_token2] = ACTIONS(984), + [aux_sym_cmd_identifier_token3] = ACTIONS(984), + [aux_sym_cmd_identifier_token4] = ACTIONS(984), + [aux_sym_cmd_identifier_token5] = ACTIONS(984), + [aux_sym_cmd_identifier_token6] = ACTIONS(984), + [aux_sym_cmd_identifier_token7] = ACTIONS(984), + [aux_sym_cmd_identifier_token8] = ACTIONS(982), + [aux_sym_cmd_identifier_token9] = ACTIONS(982), + [aux_sym_cmd_identifier_token10] = ACTIONS(984), + [aux_sym_cmd_identifier_token11] = ACTIONS(984), + [aux_sym_cmd_identifier_token12] = ACTIONS(982), + [aux_sym_cmd_identifier_token13] = ACTIONS(982), + [aux_sym_cmd_identifier_token14] = ACTIONS(982), + [aux_sym_cmd_identifier_token15] = ACTIONS(982), + [aux_sym_cmd_identifier_token16] = ACTIONS(984), + [aux_sym_cmd_identifier_token17] = ACTIONS(984), + [aux_sym_cmd_identifier_token18] = ACTIONS(984), + [aux_sym_cmd_identifier_token19] = ACTIONS(984), + [aux_sym_cmd_identifier_token20] = ACTIONS(984), + [aux_sym_cmd_identifier_token21] = ACTIONS(984), + [aux_sym_cmd_identifier_token22] = ACTIONS(984), + [aux_sym_cmd_identifier_token23] = ACTIONS(984), + [aux_sym_cmd_identifier_token24] = ACTIONS(984), + [aux_sym_cmd_identifier_token25] = ACTIONS(984), + [aux_sym_cmd_identifier_token26] = ACTIONS(984), + [aux_sym_cmd_identifier_token27] = ACTIONS(984), + [aux_sym_cmd_identifier_token28] = ACTIONS(984), + [aux_sym_cmd_identifier_token29] = ACTIONS(984), + [aux_sym_cmd_identifier_token30] = ACTIONS(984), + [aux_sym_cmd_identifier_token31] = ACTIONS(984), + [aux_sym_cmd_identifier_token32] = ACTIONS(984), + [aux_sym_cmd_identifier_token33] = ACTIONS(984), + [aux_sym_cmd_identifier_token34] = ACTIONS(982), + [aux_sym_cmd_identifier_token35] = ACTIONS(984), + [aux_sym_cmd_identifier_token36] = ACTIONS(984), + [aux_sym_cmd_identifier_token37] = ACTIONS(984), + [aux_sym_cmd_identifier_token38] = ACTIONS(982), + [aux_sym_cmd_identifier_token39] = ACTIONS(984), + [aux_sym_cmd_identifier_token40] = ACTIONS(984), + [sym__newline] = ACTIONS(984), + [anon_sym_SEMI] = ACTIONS(984), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_err_GT_PIPE] = ACTIONS(984), + [anon_sym_out_GT_PIPE] = ACTIONS(984), + [anon_sym_e_GT_PIPE] = ACTIONS(984), + [anon_sym_o_GT_PIPE] = ACTIONS(984), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(984), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(984), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(984), + [anon_sym_def] = ACTIONS(982), + [anon_sym_export_DASHenv] = ACTIONS(982), + [anon_sym_extern] = ACTIONS(982), + [anon_sym_module] = ACTIONS(982), + [anon_sym_use] = ACTIONS(982), + [anon_sym_LPAREN] = ACTIONS(984), + [anon_sym_COMMA] = ACTIONS(984), + [anon_sym_DOLLAR] = ACTIONS(982), + [anon_sym_error] = ACTIONS(982), + [anon_sym_GT2] = ACTIONS(982), + [anon_sym_DASH2] = ACTIONS(982), + [anon_sym_break] = ACTIONS(982), + [anon_sym_continue] = ACTIONS(982), + [anon_sym_for] = ACTIONS(982), + [anon_sym_in2] = ACTIONS(982), + [anon_sym_loop] = ACTIONS(982), + [anon_sym_make] = ACTIONS(982), + [anon_sym_while] = ACTIONS(982), + [anon_sym_do] = ACTIONS(982), + [anon_sym_if] = ACTIONS(982), + [anon_sym_else] = ACTIONS(982), + [anon_sym_match] = ACTIONS(982), + [anon_sym_RBRACE] = ACTIONS(984), + [anon_sym_try] = ACTIONS(982), + [anon_sym_catch] = ACTIONS(982), + [anon_sym_return] = ACTIONS(982), + [anon_sym_source] = ACTIONS(982), + [anon_sym_source_DASHenv] = ACTIONS(982), + [anon_sym_hide] = ACTIONS(982), + [anon_sym_hide_DASHenv] = ACTIONS(982), + [anon_sym_overlay] = ACTIONS(982), + [anon_sym_as] = ACTIONS(982), + [anon_sym_STAR2] = ACTIONS(982), + [anon_sym_and2] = ACTIONS(984), + [anon_sym_xor2] = ACTIONS(984), + [anon_sym_or2] = ACTIONS(984), + [anon_sym_not_DASHin2] = ACTIONS(984), + [anon_sym_has2] = ACTIONS(984), + [anon_sym_not_DASHhas2] = ACTIONS(984), + [anon_sym_starts_DASHwith2] = ACTIONS(984), + [anon_sym_ends_DASHwith2] = ACTIONS(984), + [anon_sym_EQ_EQ2] = ACTIONS(984), + [anon_sym_BANG_EQ2] = ACTIONS(984), + [anon_sym_LT2] = ACTIONS(982), + [anon_sym_LT_EQ2] = ACTIONS(984), + [anon_sym_GT_EQ2] = ACTIONS(984), + [anon_sym_EQ_TILDE2] = ACTIONS(984), + [anon_sym_BANG_TILDE2] = ACTIONS(984), + [anon_sym_STAR_STAR2] = ACTIONS(984), + [anon_sym_PLUS_PLUS2] = ACTIONS(982), + [anon_sym_SLASH2] = ACTIONS(982), + [anon_sym_mod2] = ACTIONS(982), + [anon_sym_SLASH_SLASH2] = ACTIONS(984), + [anon_sym_PLUS2] = ACTIONS(982), + [anon_sym_bit_DASHshl2] = ACTIONS(984), + [anon_sym_bit_DASHshr2] = ACTIONS(984), + [anon_sym_bit_DASHand2] = ACTIONS(984), + [anon_sym_bit_DASHxor2] = ACTIONS(984), + [anon_sym_bit_DASHor2] = ACTIONS(984), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(984), + [anon_sym_DOT_DOT2] = ACTIONS(982), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(984), + [anon_sym_DOT_DOT_LT2] = ACTIONS(984), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(984), + [aux_sym__val_number_decimal_token1] = ACTIONS(982), + [aux_sym__val_number_decimal_token2] = ACTIONS(984), + [aux_sym__val_number_decimal_token3] = ACTIONS(984), + [aux_sym__val_number_decimal_token4] = ACTIONS(984), + [aux_sym__val_number_token1] = ACTIONS(984), + [aux_sym__val_number_token2] = ACTIONS(984), + [aux_sym__val_number_token3] = ACTIONS(984), + [aux_sym__val_number_token4] = ACTIONS(982), + [aux_sym__val_number_token5] = ACTIONS(982), + [aux_sym__val_number_token6] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(984), + [sym__str_single_quotes] = ACTIONS(984), + [sym__str_back_ticks] = ACTIONS(984), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(984), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(984), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(984), + [anon_sym_register] = ACTIONS(982), + [anon_sym_COLON2] = ACTIONS(984), + [anon_sym_DOT2] = ACTIONS(982), + [anon_sym_err_GT] = ACTIONS(982), + [anon_sym_out_GT] = ACTIONS(982), + [anon_sym_e_GT] = ACTIONS(982), + [anon_sym_o_GT] = ACTIONS(982), + [anon_sym_err_PLUSout_GT] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT] = ACTIONS(982), + [anon_sym_o_PLUSe_GT] = ACTIONS(982), + [anon_sym_e_PLUSo_GT] = ACTIONS(982), + [anon_sym_err_GT_GT] = ACTIONS(984), + [anon_sym_out_GT_GT] = ACTIONS(984), + [anon_sym_e_GT_GT] = ACTIONS(984), + [anon_sym_o_GT_GT] = ACTIONS(984), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(984), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(984), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(984), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(984), + }, + [153] = { + [sym_comment] = STATE(153), + [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(988), + [aux_sym_cmd_identifier_token3] = ACTIONS(988), + [aux_sym_cmd_identifier_token4] = ACTIONS(988), + [aux_sym_cmd_identifier_token5] = ACTIONS(988), + [aux_sym_cmd_identifier_token6] = ACTIONS(988), + [aux_sym_cmd_identifier_token7] = ACTIONS(988), + [aux_sym_cmd_identifier_token8] = ACTIONS(986), + [aux_sym_cmd_identifier_token9] = ACTIONS(986), + [aux_sym_cmd_identifier_token10] = ACTIONS(988), + [aux_sym_cmd_identifier_token11] = ACTIONS(988), + [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(988), + [aux_sym_cmd_identifier_token17] = ACTIONS(988), + [aux_sym_cmd_identifier_token18] = ACTIONS(988), + [aux_sym_cmd_identifier_token19] = ACTIONS(988), + [aux_sym_cmd_identifier_token20] = ACTIONS(988), + [aux_sym_cmd_identifier_token21] = ACTIONS(988), + [aux_sym_cmd_identifier_token22] = ACTIONS(988), + [aux_sym_cmd_identifier_token23] = ACTIONS(988), + [aux_sym_cmd_identifier_token24] = ACTIONS(988), + [aux_sym_cmd_identifier_token25] = ACTIONS(988), + [aux_sym_cmd_identifier_token26] = ACTIONS(988), + [aux_sym_cmd_identifier_token27] = ACTIONS(988), + [aux_sym_cmd_identifier_token28] = ACTIONS(988), + [aux_sym_cmd_identifier_token29] = ACTIONS(988), + [aux_sym_cmd_identifier_token30] = ACTIONS(988), + [aux_sym_cmd_identifier_token31] = ACTIONS(988), + [aux_sym_cmd_identifier_token32] = ACTIONS(988), + [aux_sym_cmd_identifier_token33] = ACTIONS(988), + [aux_sym_cmd_identifier_token34] = ACTIONS(986), + [aux_sym_cmd_identifier_token35] = ACTIONS(988), + [aux_sym_cmd_identifier_token36] = ACTIONS(988), + [aux_sym_cmd_identifier_token37] = 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(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_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(986), + [anon_sym_error] = ACTIONS(986), + [anon_sym_GT2] = ACTIONS(986), + [anon_sym_DASH2] = ACTIONS(986), + [anon_sym_break] = ACTIONS(986), + [anon_sym_continue] = ACTIONS(986), + [anon_sym_for] = ACTIONS(986), + [anon_sym_in2] = 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_hide] = ACTIONS(986), + [anon_sym_hide_DASHenv] = ACTIONS(986), + [anon_sym_overlay] = ACTIONS(986), + [anon_sym_as] = ACTIONS(986), + [anon_sym_STAR2] = ACTIONS(986), + [anon_sym_and2] = ACTIONS(988), + [anon_sym_xor2] = ACTIONS(988), + [anon_sym_or2] = ACTIONS(988), + [anon_sym_not_DASHin2] = ACTIONS(988), + [anon_sym_has2] = ACTIONS(988), + [anon_sym_not_DASHhas2] = ACTIONS(988), + [anon_sym_starts_DASHwith2] = ACTIONS(988), + [anon_sym_ends_DASHwith2] = ACTIONS(988), + [anon_sym_EQ_EQ2] = ACTIONS(988), + [anon_sym_BANG_EQ2] = ACTIONS(988), + [anon_sym_LT2] = ACTIONS(986), + [anon_sym_LT_EQ2] = ACTIONS(988), + [anon_sym_GT_EQ2] = ACTIONS(988), + [anon_sym_EQ_TILDE2] = ACTIONS(988), + [anon_sym_BANG_TILDE2] = ACTIONS(988), + [anon_sym_STAR_STAR2] = ACTIONS(988), + [anon_sym_PLUS_PLUS2] = ACTIONS(986), + [anon_sym_SLASH2] = ACTIONS(986), + [anon_sym_mod2] = ACTIONS(986), + [anon_sym_SLASH_SLASH2] = ACTIONS(988), + [anon_sym_PLUS2] = ACTIONS(986), + [anon_sym_bit_DASHshl2] = ACTIONS(988), + [anon_sym_bit_DASHshr2] = ACTIONS(988), + [anon_sym_bit_DASHand2] = ACTIONS(988), + [anon_sym_bit_DASHxor2] = ACTIONS(988), + [anon_sym_bit_DASHor2] = ACTIONS(988), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(988), + [anon_sym_DOT_DOT2] = 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), + [aux_sym__val_number_token4] = ACTIONS(986), + [aux_sym__val_number_token5] = ACTIONS(986), + [aux_sym__val_number_token6] = ACTIONS(986), + [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_DOT_DOT_DOT_LBRACE] = ACTIONS(988), + [anon_sym_register] = ACTIONS(986), + [anon_sym_COLON2] = 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), + [sym_raw_string_begin] = ACTIONS(988), + }, + [154] = { + [sym_comment] = STATE(154), + [anon_sym_export] = ACTIONS(990), + [anon_sym_alias] = ACTIONS(990), [anon_sym_EQ] = ACTIONS(992), - [anon_sym_let] = ACTIONS(992), - [anon_sym_let_DASHenv] = ACTIONS(992), - [anon_sym_mut] = ACTIONS(992), - [anon_sym_const] = ACTIONS(992), + [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(994), [anon_sym_DASH_EQ] = ACTIONS(994), [anon_sym_STAR_EQ] = ACTIONS(994), [anon_sym_SLASH_EQ] = ACTIONS(994), [anon_sym_PLUS_PLUS_EQ] = ACTIONS(994), - [aux_sym_cmd_identifier_token1] = ACTIONS(992), - [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(992), - [aux_sym_cmd_identifier_token9] = ACTIONS(992), - [aux_sym_cmd_identifier_token10] = ACTIONS(994), - [aux_sym_cmd_identifier_token11] = ACTIONS(994), - [aux_sym_cmd_identifier_token12] = ACTIONS(992), - [aux_sym_cmd_identifier_token13] = ACTIONS(992), - [aux_sym_cmd_identifier_token14] = ACTIONS(992), - [aux_sym_cmd_identifier_token15] = ACTIONS(992), - [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(992), - [aux_sym_cmd_identifier_token35] = ACTIONS(994), - [aux_sym_cmd_identifier_token36] = ACTIONS(994), - [aux_sym_cmd_identifier_token37] = ACTIONS(994), - [aux_sym_cmd_identifier_token38] = ACTIONS(992), - [aux_sym_cmd_identifier_token39] = ACTIONS(994), - [aux_sym_cmd_identifier_token40] = ACTIONS(994), - [sym__newline] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(994), - [anon_sym_err_GT_PIPE] = ACTIONS(994), - [anon_sym_out_GT_PIPE] = ACTIONS(994), - [anon_sym_e_GT_PIPE] = ACTIONS(994), - [anon_sym_o_GT_PIPE] = ACTIONS(994), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), - [anon_sym_def] = ACTIONS(992), - [anon_sym_export_DASHenv] = ACTIONS(992), - [anon_sym_extern] = ACTIONS(992), - [anon_sym_module] = ACTIONS(992), - [anon_sym_use] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(994), - [anon_sym_COMMA] = ACTIONS(994), - [anon_sym_DOLLAR] = ACTIONS(992), - [anon_sym_error] = ACTIONS(992), - [anon_sym_GT2] = ACTIONS(992), - [anon_sym_DASH2] = ACTIONS(992), - [anon_sym_break] = ACTIONS(992), - [anon_sym_continue] = ACTIONS(992), - [anon_sym_for] = ACTIONS(992), - [anon_sym_in2] = ACTIONS(992), - [anon_sym_loop] = ACTIONS(992), - [anon_sym_make] = ACTIONS(992), - [anon_sym_while] = ACTIONS(992), - [anon_sym_do] = ACTIONS(992), - [anon_sym_if] = ACTIONS(992), - [anon_sym_else] = ACTIONS(992), - [anon_sym_match] = ACTIONS(992), - [anon_sym_RBRACE] = ACTIONS(994), - [anon_sym_try] = ACTIONS(992), - [anon_sym_catch] = ACTIONS(992), - [anon_sym_return] = ACTIONS(992), - [anon_sym_source] = ACTIONS(992), - [anon_sym_source_DASHenv] = ACTIONS(992), - [anon_sym_register] = ACTIONS(992), - [anon_sym_hide] = ACTIONS(992), - [anon_sym_hide_DASHenv] = ACTIONS(992), - [anon_sym_overlay] = ACTIONS(992), - [anon_sym_as] = ACTIONS(992), - [anon_sym_STAR2] = ACTIONS(992), - [anon_sym_and2] = ACTIONS(994), - [anon_sym_xor2] = ACTIONS(994), - [anon_sym_or2] = ACTIONS(994), - [anon_sym_not_DASHin2] = ACTIONS(994), - [anon_sym_starts_DASHwith2] = ACTIONS(994), - [anon_sym_ends_DASHwith2] = ACTIONS(994), - [anon_sym_EQ_EQ2] = ACTIONS(994), - [anon_sym_BANG_EQ2] = ACTIONS(994), - [anon_sym_LT2] = ACTIONS(992), - [anon_sym_LT_EQ2] = ACTIONS(994), - [anon_sym_GT_EQ2] = ACTIONS(994), - [anon_sym_EQ_TILDE2] = ACTIONS(994), - [anon_sym_BANG_TILDE2] = ACTIONS(994), - [anon_sym_STAR_STAR2] = ACTIONS(994), - [anon_sym_PLUS_PLUS2] = ACTIONS(992), - [anon_sym_SLASH2] = ACTIONS(992), - [anon_sym_mod2] = ACTIONS(992), - [anon_sym_SLASH_SLASH2] = ACTIONS(994), - [anon_sym_PLUS2] = ACTIONS(992), - [anon_sym_bit_DASHshl2] = ACTIONS(994), - [anon_sym_bit_DASHshr2] = ACTIONS(994), - [anon_sym_bit_DASHand2] = ACTIONS(994), - [anon_sym_bit_DASHxor2] = ACTIONS(994), - [anon_sym_bit_DASHor2] = ACTIONS(994), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(994), - [anon_sym_DOT_DOT2] = ACTIONS(992), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(994), - [anon_sym_DOT_DOT_LT2] = ACTIONS(994), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(994), - [aux_sym__val_number_decimal_token1] = ACTIONS(992), - [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), - [aux_sym__val_number_token4] = ACTIONS(992), - [aux_sym__val_number_token5] = ACTIONS(992), - [aux_sym__val_number_token6] = ACTIONS(992), - [anon_sym_DQUOTE] = ACTIONS(994), - [sym__str_single_quotes] = ACTIONS(994), - [sym__str_back_ticks] = ACTIONS(994), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(994), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(994), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(994), - [anon_sym_COLON2] = ACTIONS(994), - [anon_sym_DOT2] = ACTIONS(992), - [anon_sym_err_GT] = ACTIONS(992), - [anon_sym_out_GT] = ACTIONS(992), - [anon_sym_e_GT] = ACTIONS(992), - [anon_sym_o_GT] = ACTIONS(992), - [anon_sym_err_PLUSout_GT] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT] = ACTIONS(992), - [anon_sym_o_PLUSe_GT] = ACTIONS(992), - [anon_sym_e_PLUSo_GT] = ACTIONS(992), - [anon_sym_err_GT_GT] = ACTIONS(994), - [anon_sym_out_GT_GT] = ACTIONS(994), - [anon_sym_e_GT_GT] = ACTIONS(994), - [anon_sym_o_GT_GT] = ACTIONS(994), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(994), - }, - [152] = { - [sym_comment] = STATE(152), - [anon_sym_export] = ACTIONS(996), - [anon_sym_alias] = ACTIONS(996), - [anon_sym_EQ] = ACTIONS(996), - [anon_sym_let] = ACTIONS(996), - [anon_sym_let_DASHenv] = ACTIONS(996), - [anon_sym_mut] = ACTIONS(996), - [anon_sym_const] = ACTIONS(996), - [anon_sym_PLUS_EQ] = ACTIONS(998), - [anon_sym_DASH_EQ] = ACTIONS(998), - [anon_sym_STAR_EQ] = ACTIONS(998), - [anon_sym_SLASH_EQ] = ACTIONS(998), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(998), - [aux_sym_cmd_identifier_token1] = ACTIONS(996), - [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(996), - [aux_sym_cmd_identifier_token9] = ACTIONS(996), - [aux_sym_cmd_identifier_token10] = ACTIONS(998), - [aux_sym_cmd_identifier_token11] = ACTIONS(998), - [aux_sym_cmd_identifier_token12] = ACTIONS(996), - [aux_sym_cmd_identifier_token13] = ACTIONS(996), - [aux_sym_cmd_identifier_token14] = ACTIONS(996), - [aux_sym_cmd_identifier_token15] = ACTIONS(996), - [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(996), - [aux_sym_cmd_identifier_token35] = ACTIONS(998), - [aux_sym_cmd_identifier_token36] = ACTIONS(998), - [aux_sym_cmd_identifier_token37] = ACTIONS(998), - [aux_sym_cmd_identifier_token38] = ACTIONS(996), - [aux_sym_cmd_identifier_token39] = ACTIONS(998), - [aux_sym_cmd_identifier_token40] = ACTIONS(998), + [aux_sym_cmd_identifier_token1] = ACTIONS(990), + [aux_sym_cmd_identifier_token2] = ACTIONS(996), + [aux_sym_cmd_identifier_token3] = ACTIONS(996), + [aux_sym_cmd_identifier_token4] = ACTIONS(996), + [aux_sym_cmd_identifier_token5] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(996), + [aux_sym_cmd_identifier_token7] = ACTIONS(996), + [aux_sym_cmd_identifier_token8] = ACTIONS(990), + [aux_sym_cmd_identifier_token9] = ACTIONS(990), + [aux_sym_cmd_identifier_token10] = ACTIONS(996), + [aux_sym_cmd_identifier_token11] = ACTIONS(996), + [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(996), + [aux_sym_cmd_identifier_token17] = ACTIONS(996), + [aux_sym_cmd_identifier_token18] = ACTIONS(996), + [aux_sym_cmd_identifier_token19] = ACTIONS(996), + [aux_sym_cmd_identifier_token20] = ACTIONS(996), + [aux_sym_cmd_identifier_token21] = ACTIONS(996), + [aux_sym_cmd_identifier_token22] = ACTIONS(996), + [aux_sym_cmd_identifier_token23] = ACTIONS(996), + [aux_sym_cmd_identifier_token24] = ACTIONS(996), + [aux_sym_cmd_identifier_token25] = ACTIONS(996), + [aux_sym_cmd_identifier_token26] = ACTIONS(996), + [aux_sym_cmd_identifier_token27] = ACTIONS(996), + [aux_sym_cmd_identifier_token28] = ACTIONS(996), + [aux_sym_cmd_identifier_token29] = ACTIONS(996), + [aux_sym_cmd_identifier_token30] = ACTIONS(996), + [aux_sym_cmd_identifier_token31] = ACTIONS(996), + [aux_sym_cmd_identifier_token32] = ACTIONS(996), + [aux_sym_cmd_identifier_token33] = ACTIONS(996), + [aux_sym_cmd_identifier_token34] = ACTIONS(990), + [aux_sym_cmd_identifier_token35] = ACTIONS(996), + [aux_sym_cmd_identifier_token36] = ACTIONS(996), + [aux_sym_cmd_identifier_token37] = ACTIONS(996), + [aux_sym_cmd_identifier_token38] = ACTIONS(990), + [aux_sym_cmd_identifier_token39] = ACTIONS(996), + [aux_sym_cmd_identifier_token40] = ACTIONS(996), [sym__newline] = ACTIONS(998), [anon_sym_SEMI] = ACTIONS(998), [anon_sym_PIPE] = ACTIONS(998), @@ -97452,95 +97742,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(998), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(998), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(998), - [anon_sym_def] = ACTIONS(996), - [anon_sym_export_DASHenv] = ACTIONS(996), - [anon_sym_extern] = ACTIONS(996), - [anon_sym_module] = ACTIONS(996), - [anon_sym_use] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(998), - [anon_sym_COMMA] = ACTIONS(998), - [anon_sym_DOLLAR] = ACTIONS(996), - [anon_sym_error] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_break] = ACTIONS(996), - [anon_sym_continue] = ACTIONS(996), - [anon_sym_for] = ACTIONS(996), - [anon_sym_in2] = ACTIONS(996), - [anon_sym_loop] = ACTIONS(996), - [anon_sym_make] = ACTIONS(996), - [anon_sym_while] = ACTIONS(996), - [anon_sym_do] = ACTIONS(996), - [anon_sym_if] = ACTIONS(996), - [anon_sym_else] = ACTIONS(996), - [anon_sym_match] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(998), - [anon_sym_try] = ACTIONS(996), - [anon_sym_catch] = ACTIONS(996), - [anon_sym_return] = ACTIONS(996), - [anon_sym_source] = ACTIONS(996), - [anon_sym_source_DASHenv] = ACTIONS(996), - [anon_sym_register] = ACTIONS(996), - [anon_sym_hide] = ACTIONS(996), - [anon_sym_hide_DASHenv] = ACTIONS(996), - [anon_sym_overlay] = ACTIONS(996), - [anon_sym_as] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), + [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(996), + [anon_sym_COMMA] = ACTIONS(1000), + [anon_sym_DOLLAR] = ACTIONS(990), + [anon_sym_error] = ACTIONS(990), + [anon_sym_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1004), + [anon_sym_break] = ACTIONS(990), + [anon_sym_continue] = ACTIONS(990), + [anon_sym_for] = ACTIONS(990), + [anon_sym_in2] = ACTIONS(1004), + [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(1007), + [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_hide] = ACTIONS(990), + [anon_sym_hide_DASHenv] = ACTIONS(990), + [anon_sym_overlay] = ACTIONS(990), + [anon_sym_as] = ACTIONS(990), + [anon_sym_STAR2] = ACTIONS(1002), [anon_sym_and2] = ACTIONS(998), [anon_sym_xor2] = ACTIONS(998), [anon_sym_or2] = ACTIONS(998), [anon_sym_not_DASHin2] = ACTIONS(998), + [anon_sym_has2] = ACTIONS(998), + [anon_sym_not_DASHhas2] = ACTIONS(998), [anon_sym_starts_DASHwith2] = ACTIONS(998), [anon_sym_ends_DASHwith2] = ACTIONS(998), [anon_sym_EQ_EQ2] = ACTIONS(998), [anon_sym_BANG_EQ2] = ACTIONS(998), - [anon_sym_LT2] = ACTIONS(996), + [anon_sym_LT2] = ACTIONS(1002), [anon_sym_LT_EQ2] = ACTIONS(998), [anon_sym_GT_EQ2] = ACTIONS(998), [anon_sym_EQ_TILDE2] = ACTIONS(998), [anon_sym_BANG_TILDE2] = ACTIONS(998), [anon_sym_STAR_STAR2] = ACTIONS(998), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), + [anon_sym_PLUS_PLUS2] = ACTIONS(1002), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(1002), [anon_sym_SLASH_SLASH2] = ACTIONS(998), - [anon_sym_PLUS2] = ACTIONS(996), + [anon_sym_PLUS2] = ACTIONS(1004), [anon_sym_bit_DASHshl2] = ACTIONS(998), [anon_sym_bit_DASHshr2] = ACTIONS(998), [anon_sym_bit_DASHand2] = ACTIONS(998), [anon_sym_bit_DASHxor2] = ACTIONS(998), [anon_sym_bit_DASHor2] = ACTIONS(998), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(998), - [anon_sym_DOT_DOT2] = ACTIONS(996), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(998), - [anon_sym_DOT_DOT_LT2] = ACTIONS(998), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(998), - [aux_sym__val_number_decimal_token1] = ACTIONS(996), - [aux_sym__val_number_decimal_token2] = ACTIONS(998), - [aux_sym__val_number_decimal_token3] = ACTIONS(998), - [aux_sym__val_number_decimal_token4] = ACTIONS(998), - [aux_sym__val_number_token1] = ACTIONS(998), - [aux_sym__val_number_token2] = ACTIONS(998), - [aux_sym__val_number_token3] = ACTIONS(998), - [aux_sym__val_number_token4] = ACTIONS(996), - [aux_sym__val_number_token5] = ACTIONS(996), - [aux_sym__val_number_token6] = ACTIONS(996), - [anon_sym_DQUOTE] = ACTIONS(998), - [sym__str_single_quotes] = ACTIONS(998), - [sym__str_back_ticks] = ACTIONS(998), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(998), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(998), - [anon_sym_COLON2] = ACTIONS(998), - [anon_sym_DOT2] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(996), + [anon_sym_DOT_DOT2] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(996), + [aux_sym__val_number_decimal_token1] = ACTIONS(990), + [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), + [aux_sym__val_number_token4] = ACTIONS(990), + [aux_sym__val_number_token5] = ACTIONS(990), + [aux_sym__val_number_token6] = ACTIONS(990), + [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_DOT_DOT_DOT_LBRACE] = ACTIONS(996), + [anon_sym_register] = ACTIONS(990), + [anon_sym_COLON2] = ACTIONS(1014), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), [anon_sym_err_GT_GT] = ACTIONS(998), [anon_sym_out_GT_GT] = ACTIONS(998), [anon_sym_e_GT_GT] = ACTIONS(998), @@ -97549,636 +97840,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(998), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(998), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(998), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(998), - }, - [153] = { - [sym_comment] = STATE(153), - [anon_sym_export] = ACTIONS(1000), - [anon_sym_alias] = ACTIONS(1000), - [anon_sym_EQ] = ACTIONS(1000), - [anon_sym_let] = ACTIONS(1000), - [anon_sym_let_DASHenv] = ACTIONS(1000), - [anon_sym_mut] = ACTIONS(1000), - [anon_sym_const] = 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), - [aux_sym_cmd_identifier_token1] = ACTIONS(1000), - [aux_sym_cmd_identifier_token2] = ACTIONS(1002), - [aux_sym_cmd_identifier_token3] = ACTIONS(1002), - [aux_sym_cmd_identifier_token4] = ACTIONS(1002), - [aux_sym_cmd_identifier_token5] = ACTIONS(1002), - [aux_sym_cmd_identifier_token6] = ACTIONS(1002), - [aux_sym_cmd_identifier_token7] = ACTIONS(1002), - [aux_sym_cmd_identifier_token8] = ACTIONS(1000), - [aux_sym_cmd_identifier_token9] = ACTIONS(1000), - [aux_sym_cmd_identifier_token10] = ACTIONS(1002), - [aux_sym_cmd_identifier_token11] = ACTIONS(1002), - [aux_sym_cmd_identifier_token12] = ACTIONS(1000), - [aux_sym_cmd_identifier_token13] = ACTIONS(1000), - [aux_sym_cmd_identifier_token14] = ACTIONS(1000), - [aux_sym_cmd_identifier_token15] = ACTIONS(1000), - [aux_sym_cmd_identifier_token16] = ACTIONS(1002), - [aux_sym_cmd_identifier_token17] = ACTIONS(1002), - [aux_sym_cmd_identifier_token18] = ACTIONS(1002), - [aux_sym_cmd_identifier_token19] = ACTIONS(1002), - [aux_sym_cmd_identifier_token20] = ACTIONS(1002), - [aux_sym_cmd_identifier_token21] = ACTIONS(1002), - [aux_sym_cmd_identifier_token22] = ACTIONS(1002), - [aux_sym_cmd_identifier_token23] = ACTIONS(1002), - [aux_sym_cmd_identifier_token24] = ACTIONS(1002), - [aux_sym_cmd_identifier_token25] = ACTIONS(1002), - [aux_sym_cmd_identifier_token26] = ACTIONS(1002), - [aux_sym_cmd_identifier_token27] = ACTIONS(1002), - [aux_sym_cmd_identifier_token28] = ACTIONS(1002), - [aux_sym_cmd_identifier_token29] = ACTIONS(1002), - [aux_sym_cmd_identifier_token30] = ACTIONS(1002), - [aux_sym_cmd_identifier_token31] = ACTIONS(1002), - [aux_sym_cmd_identifier_token32] = ACTIONS(1002), - [aux_sym_cmd_identifier_token33] = ACTIONS(1002), - [aux_sym_cmd_identifier_token34] = ACTIONS(1000), - [aux_sym_cmd_identifier_token35] = ACTIONS(1002), - [aux_sym_cmd_identifier_token36] = ACTIONS(1002), - [aux_sym_cmd_identifier_token37] = ACTIONS(1002), - [aux_sym_cmd_identifier_token38] = ACTIONS(1000), - [aux_sym_cmd_identifier_token39] = ACTIONS(1002), - [aux_sym_cmd_identifier_token40] = ACTIONS(1002), - [sym__newline] = ACTIONS(1002), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_err_GT_PIPE] = ACTIONS(1002), - [anon_sym_out_GT_PIPE] = ACTIONS(1002), - [anon_sym_e_GT_PIPE] = ACTIONS(1002), - [anon_sym_o_GT_PIPE] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1002), - [anon_sym_def] = ACTIONS(1000), - [anon_sym_export_DASHenv] = ACTIONS(1000), - [anon_sym_extern] = ACTIONS(1000), - [anon_sym_module] = ACTIONS(1000), - [anon_sym_use] = ACTIONS(1000), - [anon_sym_LPAREN] = ACTIONS(1002), - [anon_sym_COMMA] = ACTIONS(1002), - [anon_sym_DOLLAR] = ACTIONS(1000), - [anon_sym_error] = ACTIONS(1000), - [anon_sym_GT2] = ACTIONS(1000), - [anon_sym_DASH2] = ACTIONS(1000), - [anon_sym_break] = ACTIONS(1000), - [anon_sym_continue] = ACTIONS(1000), - [anon_sym_for] = ACTIONS(1000), - [anon_sym_in2] = ACTIONS(1000), - [anon_sym_loop] = ACTIONS(1000), - [anon_sym_make] = ACTIONS(1000), - [anon_sym_while] = ACTIONS(1000), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_if] = ACTIONS(1000), - [anon_sym_else] = ACTIONS(1000), - [anon_sym_match] = ACTIONS(1000), - [anon_sym_RBRACE] = ACTIONS(1002), - [anon_sym_try] = ACTIONS(1000), - [anon_sym_catch] = ACTIONS(1000), - [anon_sym_return] = ACTIONS(1000), - [anon_sym_source] = ACTIONS(1000), - [anon_sym_source_DASHenv] = ACTIONS(1000), - [anon_sym_register] = ACTIONS(1000), - [anon_sym_hide] = ACTIONS(1000), - [anon_sym_hide_DASHenv] = ACTIONS(1000), - [anon_sym_overlay] = ACTIONS(1000), - [anon_sym_as] = ACTIONS(1000), - [anon_sym_STAR2] = ACTIONS(1000), - [anon_sym_and2] = ACTIONS(1002), - [anon_sym_xor2] = ACTIONS(1002), - [anon_sym_or2] = ACTIONS(1002), - [anon_sym_not_DASHin2] = ACTIONS(1002), - [anon_sym_starts_DASHwith2] = ACTIONS(1002), - [anon_sym_ends_DASHwith2] = ACTIONS(1002), - [anon_sym_EQ_EQ2] = ACTIONS(1002), - [anon_sym_BANG_EQ2] = ACTIONS(1002), - [anon_sym_LT2] = ACTIONS(1000), - [anon_sym_LT_EQ2] = ACTIONS(1002), - [anon_sym_GT_EQ2] = ACTIONS(1002), - [anon_sym_EQ_TILDE2] = ACTIONS(1002), - [anon_sym_BANG_TILDE2] = ACTIONS(1002), - [anon_sym_STAR_STAR2] = ACTIONS(1002), - [anon_sym_PLUS_PLUS2] = ACTIONS(1000), - [anon_sym_SLASH2] = ACTIONS(1000), - [anon_sym_mod2] = ACTIONS(1000), - [anon_sym_SLASH_SLASH2] = ACTIONS(1002), - [anon_sym_PLUS2] = ACTIONS(1000), - [anon_sym_bit_DASHshl2] = ACTIONS(1002), - [anon_sym_bit_DASHshr2] = ACTIONS(1002), - [anon_sym_bit_DASHand2] = ACTIONS(1002), - [anon_sym_bit_DASHxor2] = ACTIONS(1002), - [anon_sym_bit_DASHor2] = ACTIONS(1002), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1002), - [anon_sym_DOT_DOT2] = ACTIONS(1000), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1002), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1002), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1002), - [aux_sym__val_number_decimal_token1] = ACTIONS(1000), - [aux_sym__val_number_decimal_token2] = ACTIONS(1002), - [aux_sym__val_number_decimal_token3] = ACTIONS(1002), - [aux_sym__val_number_decimal_token4] = ACTIONS(1002), - [aux_sym__val_number_token1] = ACTIONS(1002), - [aux_sym__val_number_token2] = ACTIONS(1002), - [aux_sym__val_number_token3] = ACTIONS(1002), - [aux_sym__val_number_token4] = ACTIONS(1000), - [aux_sym__val_number_token5] = ACTIONS(1000), - [aux_sym__val_number_token6] = ACTIONS(1000), - [anon_sym_DQUOTE] = ACTIONS(1002), - [sym__str_single_quotes] = ACTIONS(1002), - [sym__str_back_ticks] = ACTIONS(1002), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1002), - [anon_sym_COLON2] = ACTIONS(1002), - [anon_sym_err_GT] = ACTIONS(1000), - [anon_sym_out_GT] = ACTIONS(1000), - [anon_sym_e_GT] = ACTIONS(1000), - [anon_sym_o_GT] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT] = ACTIONS(1000), - [anon_sym_err_GT_GT] = ACTIONS(1002), - [anon_sym_out_GT_GT] = ACTIONS(1002), - [anon_sym_e_GT_GT] = ACTIONS(1002), - [anon_sym_o_GT_GT] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1002), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1002), - }, - [154] = { - [sym_comment] = STATE(154), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_alias] = ACTIONS(1004), - [anon_sym_EQ] = ACTIONS(1006), - [anon_sym_let] = ACTIONS(1004), - [anon_sym_let_DASHenv] = ACTIONS(1004), - [anon_sym_mut] = ACTIONS(1004), - [anon_sym_const] = ACTIONS(1004), - [anon_sym_PLUS_EQ] = ACTIONS(1008), - [anon_sym_DASH_EQ] = ACTIONS(1008), - [anon_sym_STAR_EQ] = ACTIONS(1008), - [anon_sym_SLASH_EQ] = ACTIONS(1008), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1008), - [aux_sym_cmd_identifier_token1] = ACTIONS(1004), - [aux_sym_cmd_identifier_token2] = ACTIONS(1010), - [aux_sym_cmd_identifier_token3] = ACTIONS(1010), - [aux_sym_cmd_identifier_token4] = ACTIONS(1010), - [aux_sym_cmd_identifier_token5] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1010), - [aux_sym_cmd_identifier_token7] = ACTIONS(1010), - [aux_sym_cmd_identifier_token8] = ACTIONS(1004), - [aux_sym_cmd_identifier_token9] = ACTIONS(1004), - [aux_sym_cmd_identifier_token10] = ACTIONS(1010), - [aux_sym_cmd_identifier_token11] = ACTIONS(1010), - [aux_sym_cmd_identifier_token12] = ACTIONS(1004), - [aux_sym_cmd_identifier_token13] = ACTIONS(1004), - [aux_sym_cmd_identifier_token14] = ACTIONS(1004), - [aux_sym_cmd_identifier_token15] = ACTIONS(1004), - [aux_sym_cmd_identifier_token16] = ACTIONS(1010), - [aux_sym_cmd_identifier_token17] = ACTIONS(1010), - [aux_sym_cmd_identifier_token18] = ACTIONS(1010), - [aux_sym_cmd_identifier_token19] = ACTIONS(1010), - [aux_sym_cmd_identifier_token20] = ACTIONS(1010), - [aux_sym_cmd_identifier_token21] = ACTIONS(1010), - [aux_sym_cmd_identifier_token22] = ACTIONS(1010), - [aux_sym_cmd_identifier_token23] = ACTIONS(1010), - [aux_sym_cmd_identifier_token24] = ACTIONS(1010), - [aux_sym_cmd_identifier_token25] = ACTIONS(1010), - [aux_sym_cmd_identifier_token26] = ACTIONS(1010), - [aux_sym_cmd_identifier_token27] = ACTIONS(1010), - [aux_sym_cmd_identifier_token28] = ACTIONS(1010), - [aux_sym_cmd_identifier_token29] = ACTIONS(1010), - [aux_sym_cmd_identifier_token30] = ACTIONS(1010), - [aux_sym_cmd_identifier_token31] = ACTIONS(1010), - [aux_sym_cmd_identifier_token32] = ACTIONS(1010), - [aux_sym_cmd_identifier_token33] = ACTIONS(1010), - [aux_sym_cmd_identifier_token34] = ACTIONS(1004), - [aux_sym_cmd_identifier_token35] = ACTIONS(1010), - [aux_sym_cmd_identifier_token36] = ACTIONS(1010), - [aux_sym_cmd_identifier_token37] = ACTIONS(1010), - [aux_sym_cmd_identifier_token38] = ACTIONS(1004), - [aux_sym_cmd_identifier_token39] = ACTIONS(1010), - [aux_sym_cmd_identifier_token40] = ACTIONS(1010), - [sym__newline] = ACTIONS(1012), - [anon_sym_SEMI] = ACTIONS(1012), - [anon_sym_PIPE] = ACTIONS(1012), - [anon_sym_err_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_GT_PIPE] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1012), - [anon_sym_def] = ACTIONS(1004), - [anon_sym_export_DASHenv] = ACTIONS(1004), - [anon_sym_extern] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_use] = ACTIONS(1004), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_COMMA] = ACTIONS(1014), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_error] = ACTIONS(1004), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1018), - [anon_sym_break] = ACTIONS(1004), - [anon_sym_continue] = ACTIONS(1004), - [anon_sym_for] = ACTIONS(1004), - [anon_sym_in2] = ACTIONS(1018), - [anon_sym_loop] = ACTIONS(1004), - [anon_sym_make] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1004), - [anon_sym_do] = ACTIONS(1004), - [anon_sym_if] = ACTIONS(1004), - [anon_sym_else] = ACTIONS(1004), - [anon_sym_match] = ACTIONS(1004), - [anon_sym_RBRACE] = ACTIONS(1021), - [anon_sym_try] = ACTIONS(1004), - [anon_sym_catch] = ACTIONS(1004), - [anon_sym_return] = ACTIONS(1004), - [anon_sym_source] = ACTIONS(1004), - [anon_sym_source_DASHenv] = ACTIONS(1004), - [anon_sym_register] = ACTIONS(1004), - [anon_sym_hide] = ACTIONS(1004), - [anon_sym_hide_DASHenv] = ACTIONS(1004), - [anon_sym_overlay] = ACTIONS(1004), - [anon_sym_as] = ACTIONS(1004), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1012), - [anon_sym_xor2] = ACTIONS(1012), - [anon_sym_or2] = ACTIONS(1012), - [anon_sym_not_DASHin2] = ACTIONS(1012), - [anon_sym_starts_DASHwith2] = ACTIONS(1012), - [anon_sym_ends_DASHwith2] = ACTIONS(1012), - [anon_sym_EQ_EQ2] = ACTIONS(1012), - [anon_sym_BANG_EQ2] = ACTIONS(1012), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1012), - [anon_sym_GT_EQ2] = ACTIONS(1012), - [anon_sym_EQ_TILDE2] = ACTIONS(1012), - [anon_sym_BANG_TILDE2] = ACTIONS(1012), - [anon_sym_STAR_STAR2] = ACTIONS(1012), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1012), - [anon_sym_PLUS2] = ACTIONS(1018), - [anon_sym_bit_DASHshl2] = ACTIONS(1012), - [anon_sym_bit_DASHshr2] = ACTIONS(1012), - [anon_sym_bit_DASHand2] = ACTIONS(1012), - [anon_sym_bit_DASHxor2] = ACTIONS(1012), - [anon_sym_bit_DASHor2] = ACTIONS(1012), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1010), - [anon_sym_DOT_DOT2] = ACTIONS(1024), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1026), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1026), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1010), - [aux_sym__val_number_decimal_token1] = ACTIONS(1004), - [aux_sym__val_number_decimal_token2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = ACTIONS(1010), - [aux_sym__val_number_decimal_token4] = ACTIONS(1010), - [aux_sym__val_number_token1] = ACTIONS(1010), - [aux_sym__val_number_token2] = ACTIONS(1010), - [aux_sym__val_number_token3] = ACTIONS(1010), - [aux_sym__val_number_token4] = ACTIONS(1004), - [aux_sym__val_number_token5] = ACTIONS(1004), - [aux_sym__val_number_token6] = ACTIONS(1004), - [anon_sym_DQUOTE] = ACTIONS(1010), - [sym__str_single_quotes] = ACTIONS(1010), - [sym__str_back_ticks] = ACTIONS(1010), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1010), - [anon_sym_COLON2] = ACTIONS(1028), - [anon_sym_err_GT] = ACTIONS(1016), - [anon_sym_out_GT] = ACTIONS(1016), - [anon_sym_e_GT] = ACTIONS(1016), - [anon_sym_o_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT] = ACTIONS(1016), - [anon_sym_err_GT_GT] = ACTIONS(1012), - [anon_sym_out_GT_GT] = ACTIONS(1012), - [anon_sym_e_GT_GT] = ACTIONS(1012), - [anon_sym_o_GT_GT] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1012), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1010), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(996), }, [155] = { - [sym_pipeline] = STATE(6193), - [sym_cmd_identifier] = STATE(4514), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym_pipeline] = STATE(6483), + [sym_cmd_identifier] = STATE(4539), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(155), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym_pipe_element_repeat2] = STATE(334), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(1032), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(1034), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1036), - [aux_sym__val_number_decimal_token2] = ACTIONS(1038), - [aux_sym__val_number_decimal_token3] = ACTIONS(1040), - [aux_sym__val_number_decimal_token4] = ACTIONS(1042), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_repeat1] = STATE(190), + [aux_sym_pipe_element_repeat2] = STATE(339), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(595), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(445), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [156] = { - [sym_pipeline] = STATE(6598), - [sym_cmd_identifier] = STATE(4514), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym_pipeline] = STATE(6884), + [sym_cmd_identifier] = STATE(4582), + [sym__ctrl_expression] = STATE(4975), + [sym_ctrl_do] = STATE(5010), + [sym_ctrl_if] = STATE(5010), + [sym_ctrl_match] = STATE(5010), + [sym_ctrl_try] = STATE(5010), + [sym_ctrl_return] = STATE(5010), + [sym_pipe_element] = STATE(4613), + [sym_where_command] = STATE(5021), + [sym__expression] = STATE(3866), + [sym_expr_unary] = STATE(2443), + [sym__expr_unary_minus] = STATE(2502), + [sym_expr_binary] = STATE(2443), + [sym__expr_binary_expression] = STATE(3829), + [sym_expr_parenthesized] = STATE(2049), + [sym_val_range] = STATE(2443), + [sym__value] = STATE(2443), + [sym_val_nothing] = STATE(2419), + [sym_val_bool] = STATE(2419), + [sym_val_variable] = STATE(2121), + [sym_val_number] = STATE(2419), + [sym__val_number_decimal] = STATE(782), + [sym__val_number] = STATE(2425), + [sym_val_duration] = STATE(2419), + [sym_val_filesize] = STATE(2419), + [sym_val_binary] = STATE(2419), + [sym_val_string] = STATE(2419), + [sym__raw_str] = STATE(1605), + [sym__str_double_quotes] = STATE(1605), + [sym_val_interpolated] = STATE(2419), + [sym__inter_single_quotes] = STATE(2426), + [sym__inter_double_quotes] = STATE(2421), + [sym_val_list] = STATE(2419), + [sym_val_record] = STATE(2419), + [sym_val_table] = STATE(2419), + [sym_val_closure] = STATE(2419), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(5021), [sym_comment] = STATE(156), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym_pipe_element_repeat2] = STATE(334), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(1032), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(1034), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1036), - [aux_sym__val_number_decimal_token2] = ACTIONS(1038), - [aux_sym__val_number_decimal_token3] = ACTIONS(1040), - [aux_sym__val_number_decimal_token4] = ACTIONS(1042), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, - [157] = { - [sym_pipeline] = STATE(7030), - [sym_cmd_identifier] = STATE(4643), - [sym__ctrl_expression] = STATE(4993), - [sym_ctrl_do] = STATE(5044), - [sym_ctrl_if] = STATE(5044), - [sym_ctrl_match] = STATE(5044), - [sym_ctrl_try] = STATE(5044), - [sym_ctrl_return] = STATE(5044), - [sym_pipe_element] = STATE(4685), - [sym_where_command] = STATE(5107), - [sym__expression] = STATE(3831), - [sym_expr_unary] = STATE(2492), - [sym__expr_unary_minus] = STATE(2458), - [sym_expr_binary] = STATE(2492), - [sym__expr_binary_expression] = STATE(3874), - [sym_expr_parenthesized] = STATE(2094), - [sym_val_range] = STATE(2492), - [sym__value] = STATE(2492), - [sym_val_nothing] = STATE(2516), - [sym_val_bool] = STATE(2516), - [sym_val_variable] = STATE(2101), - [sym_val_number] = STATE(2516), - [sym__val_number_decimal] = STATE(813), - [sym__val_number] = STATE(2512), - [sym_val_duration] = STATE(2516), - [sym_val_filesize] = STATE(2516), - [sym_val_binary] = STATE(2516), - [sym_val_string] = STATE(2516), - [sym__raw_str] = STATE(1732), - [sym__str_double_quotes] = STATE(1732), - [sym_val_interpolated] = STATE(2516), - [sym__inter_single_quotes] = STATE(2527), - [sym__inter_double_quotes] = STATE(2528), - [sym_val_list] = STATE(2516), - [sym_val_record] = STATE(2516), - [sym_val_table] = STATE(2516), - [sym_val_closure] = STATE(2516), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(5107), - [sym_comment] = STATE(157), - [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym_pipe_element_repeat2] = STATE(323), + [aux_sym_pipeline_repeat1] = STATE(192), + [aux_sym_pipe_element_repeat2] = STATE(342), [aux_sym_cmd_identifier_token1] = ACTIONS(19), [aux_sym_cmd_identifier_token2] = ACTIONS(21), [aux_sym_cmd_identifier_token3] = ACTIONS(21), @@ -98221,7 +98056,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(21), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1044), + [anon_sym_DOLLAR] = ACTIONS(1018), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), @@ -98232,465 +98067,1105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(65), [anon_sym_try] = ACTIONS(67), [anon_sym_return] = ACTIONS(69), - [anon_sym_where] = ACTIONS(81), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(85), - [anon_sym_DOT_DOT_LT] = ACTIONS(85), - [anon_sym_null] = ACTIONS(87), - [anon_sym_true] = ACTIONS(89), - [anon_sym_false] = ACTIONS(89), - [aux_sym__val_number_decimal_token1] = ACTIONS(91), - [aux_sym__val_number_decimal_token2] = ACTIONS(93), - [aux_sym__val_number_decimal_token3] = ACTIONS(95), - [aux_sym__val_number_decimal_token4] = ACTIONS(97), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(101), - [aux_sym__val_number_token5] = ACTIONS(101), - [aux_sym__val_number_token6] = ACTIONS(101), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(119), - [aux_sym_command_token1] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), + [anon_sym_where] = ACTIONS(79), + [aux_sym_expr_unary_token1] = ACTIONS(81), + [anon_sym_DOT_DOT_EQ] = ACTIONS(83), + [anon_sym_DOT_DOT_LT] = ACTIONS(83), + [anon_sym_null] = ACTIONS(85), + [anon_sym_true] = ACTIONS(87), + [anon_sym_false] = ACTIONS(87), + [aux_sym__val_number_decimal_token1] = ACTIONS(89), + [aux_sym__val_number_decimal_token2] = ACTIONS(91), + [aux_sym__val_number_decimal_token3] = ACTIONS(93), + [aux_sym__val_number_decimal_token4] = ACTIONS(95), + [aux_sym__val_number_token1] = ACTIONS(97), + [aux_sym__val_number_token2] = ACTIONS(97), + [aux_sym__val_number_token3] = ACTIONS(97), + [aux_sym__val_number_token4] = ACTIONS(99), + [aux_sym__val_number_token5] = ACTIONS(99), + [aux_sym__val_number_token6] = ACTIONS(99), + [anon_sym_0b] = ACTIONS(101), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym__str_single_quotes] = ACTIONS(109), + [sym__str_back_ticks] = ACTIONS(109), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(117), + [aux_sym_command_token1] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), + }, + [157] = { + [sym_pipeline_parenthesized] = STATE(7128), + [sym_cmd_identifier] = STATE(4601), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), + [sym_comment] = STATE(157), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [158] = { - [sym_pipeline] = STATE(6618), - [sym_cmd_identifier] = STATE(4514), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym_pipeline] = STATE(6483), + [sym_cmd_identifier] = STATE(4539), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(807), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(158), [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym_pipe_element_repeat2] = STATE(334), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(1032), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(1034), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1036), - [aux_sym__val_number_decimal_token2] = ACTIONS(1038), - [aux_sym__val_number_decimal_token3] = ACTIONS(1040), - [aux_sym__val_number_decimal_token4] = ACTIONS(1042), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipe_element_repeat2] = STATE(348), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(1022), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [159] = { - [sym_pipeline] = STATE(6619), - [sym_cmd_identifier] = STATE(4514), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym_pipeline] = STATE(6564), + [sym_cmd_identifier] = STATE(4539), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(807), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(159), [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym_pipe_element_repeat2] = STATE(334), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(1032), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(1034), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1036), - [aux_sym__val_number_decimal_token2] = ACTIONS(1038), - [aux_sym__val_number_decimal_token3] = ACTIONS(1040), - [aux_sym__val_number_decimal_token4] = ACTIONS(1042), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipe_element_repeat2] = STATE(348), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(1022), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [160] = { - [sym_pipeline_parenthesized] = STATE(6897), - [sym_cmd_identifier] = STATE(4711), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), + [sym_pipeline] = STATE(6565), + [sym_cmd_identifier] = STATE(4539), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(807), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(160), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(338), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(1046), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(1034), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1036), - [aux_sym__val_number_decimal_token2] = ACTIONS(1038), - [aux_sym__val_number_decimal_token3] = ACTIONS(1040), - [aux_sym__val_number_decimal_token4] = ACTIONS(1042), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_repeat1] = STATE(188), + [aux_sym_pipe_element_repeat2] = STATE(348), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(1022), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [161] = { - [sym_pipeline] = STATE(7243), - [sym_cmd_identifier] = STATE(4643), - [sym__ctrl_expression] = STATE(4993), - [sym_ctrl_do] = STATE(5044), - [sym_ctrl_if] = STATE(5044), - [sym_ctrl_match] = STATE(5044), - [sym_ctrl_try] = STATE(5044), - [sym_ctrl_return] = STATE(5044), - [sym_pipe_element] = STATE(4685), - [sym_where_command] = STATE(5107), - [sym__expression] = STATE(3831), - [sym_expr_unary] = STATE(2492), - [sym__expr_unary_minus] = STATE(2458), - [sym_expr_binary] = STATE(2492), - [sym__expr_binary_expression] = STATE(3874), - [sym_expr_parenthesized] = STATE(2094), - [sym_val_range] = STATE(2492), - [sym__value] = STATE(2492), - [sym_val_nothing] = STATE(2516), - [sym_val_bool] = STATE(2516), - [sym_val_variable] = STATE(2101), - [sym_val_number] = STATE(2516), - [sym__val_number_decimal] = STATE(813), - [sym__val_number] = STATE(2512), - [sym_val_duration] = STATE(2516), - [sym_val_filesize] = STATE(2516), - [sym_val_binary] = STATE(2516), - [sym_val_string] = STATE(2516), - [sym__raw_str] = STATE(1732), - [sym__str_double_quotes] = STATE(1732), - [sym_val_interpolated] = STATE(2516), - [sym__inter_single_quotes] = STATE(2527), - [sym__inter_double_quotes] = STATE(2528), - [sym_val_list] = STATE(2516), - [sym_val_record] = STATE(2516), - [sym_val_table] = STATE(2516), - [sym_val_closure] = STATE(2516), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(5107), + [sym_pipeline] = STATE(6648), + [sym_cmd_identifier] = STATE(4539), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(807), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(161), - [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym_pipe_element_repeat2] = STATE(323), + [aux_sym_pipeline_repeat1] = STATE(188), + [aux_sym_pipe_element_repeat2] = STATE(348), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(1022), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), + }, + [162] = { + [sym_pipeline] = STATE(6210), + [sym_cmd_identifier] = STATE(4539), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(807), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), + [sym_comment] = STATE(162), + [aux_sym_pipeline_repeat1] = STATE(188), + [aux_sym_pipe_element_repeat2] = STATE(348), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(1022), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), + }, + [163] = { + [sym_pipeline] = STATE(6564), + [sym_cmd_identifier] = STATE(4539), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), + [sym_comment] = STATE(163), + [aux_sym_pipeline_repeat1] = STATE(190), + [aux_sym_pipe_element_repeat2] = STATE(339), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(595), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(445), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), + }, + [164] = { + [sym_pipeline] = STATE(6565), + [sym_cmd_identifier] = STATE(4539), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), + [sym_comment] = STATE(164), + [aux_sym_pipeline_repeat1] = STATE(190), + [aux_sym_pipe_element_repeat2] = STATE(339), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(595), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(445), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), + }, + [165] = { + [sym_pipeline] = STATE(6943), + [sym_cmd_identifier] = STATE(4582), + [sym__ctrl_expression] = STATE(4975), + [sym_ctrl_do] = STATE(5010), + [sym_ctrl_if] = STATE(5010), + [sym_ctrl_match] = STATE(5010), + [sym_ctrl_try] = STATE(5010), + [sym_ctrl_return] = STATE(5010), + [sym_pipe_element] = STATE(4613), + [sym_where_command] = STATE(5021), + [sym__expression] = STATE(3866), + [sym_expr_unary] = STATE(2443), + [sym__expr_unary_minus] = STATE(2502), + [sym_expr_binary] = STATE(2443), + [sym__expr_binary_expression] = STATE(3829), + [sym_expr_parenthesized] = STATE(2049), + [sym_val_range] = STATE(2443), + [sym__value] = STATE(2443), + [sym_val_nothing] = STATE(2419), + [sym_val_bool] = STATE(2419), + [sym_val_variable] = STATE(2121), + [sym_val_number] = STATE(2419), + [sym__val_number_decimal] = STATE(782), + [sym__val_number] = STATE(2425), + [sym_val_duration] = STATE(2419), + [sym_val_filesize] = STATE(2419), + [sym_val_binary] = STATE(2419), + [sym_val_string] = STATE(2419), + [sym__raw_str] = STATE(1605), + [sym__str_double_quotes] = STATE(1605), + [sym_val_interpolated] = STATE(2419), + [sym__inter_single_quotes] = STATE(2426), + [sym__inter_double_quotes] = STATE(2421), + [sym_val_list] = STATE(2419), + [sym_val_record] = STATE(2419), + [sym_val_table] = STATE(2419), + [sym_val_closure] = STATE(2419), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(5021), + [sym_comment] = STATE(165), + [aux_sym_pipeline_repeat1] = STATE(192), + [aux_sym_pipe_element_repeat2] = STATE(342), [aux_sym_cmd_identifier_token1] = ACTIONS(19), [aux_sym_cmd_identifier_token2] = ACTIONS(21), [aux_sym_cmd_identifier_token3] = ACTIONS(21), @@ -98733,7 +99208,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(21), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1044), + [anon_sym_DOLLAR] = ACTIONS(1018), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), @@ -98744,849 +99219,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(65), [anon_sym_try] = ACTIONS(67), [anon_sym_return] = ACTIONS(69), - [anon_sym_where] = ACTIONS(81), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(85), - [anon_sym_DOT_DOT_LT] = ACTIONS(85), - [anon_sym_null] = ACTIONS(87), - [anon_sym_true] = ACTIONS(89), - [anon_sym_false] = ACTIONS(89), - [aux_sym__val_number_decimal_token1] = ACTIONS(91), - [aux_sym__val_number_decimal_token2] = ACTIONS(93), - [aux_sym__val_number_decimal_token3] = ACTIONS(95), - [aux_sym__val_number_decimal_token4] = ACTIONS(97), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(101), - [aux_sym__val_number_token5] = ACTIONS(101), - [aux_sym__val_number_token6] = ACTIONS(101), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(119), - [aux_sym_command_token1] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [162] = { - [sym_pipeline_parenthesized] = STATE(7187), - [sym_cmd_identifier] = STATE(4711), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), - [sym_comment] = STATE(162), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(338), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(1046), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(1034), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1036), - [aux_sym__val_number_decimal_token2] = ACTIONS(1038), - [aux_sym__val_number_decimal_token3] = ACTIONS(1040), - [aux_sym__val_number_decimal_token4] = ACTIONS(1042), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, - [163] = { - [sym_pipeline] = STATE(6198), - [sym_cmd_identifier] = STATE(4514), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), - [sym_comment] = STATE(163), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym_pipe_element_repeat2] = STATE(334), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(1032), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(1034), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1036), - [aux_sym__val_number_decimal_token2] = ACTIONS(1038), - [aux_sym__val_number_decimal_token3] = ACTIONS(1040), - [aux_sym__val_number_decimal_token4] = ACTIONS(1042), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, - [164] = { - [sym_pipeline_parenthesized] = STATE(7197), - [sym_cmd_identifier] = STATE(4711), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), - [sym_comment] = STATE(164), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(338), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(1046), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(1034), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1036), - [aux_sym__val_number_decimal_token2] = ACTIONS(1038), - [aux_sym__val_number_decimal_token3] = ACTIONS(1040), - [aux_sym__val_number_decimal_token4] = ACTIONS(1042), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, - [165] = { - [sym_pipeline_parenthesized] = STATE(7080), - [sym_cmd_identifier] = STATE(4711), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), - [sym_comment] = STATE(165), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(338), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(1046), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(1034), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1036), - [aux_sym__val_number_decimal_token2] = ACTIONS(1038), - [aux_sym__val_number_decimal_token3] = ACTIONS(1040), - [aux_sym__val_number_decimal_token4] = ACTIONS(1042), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_where] = ACTIONS(79), + [aux_sym_expr_unary_token1] = ACTIONS(81), + [anon_sym_DOT_DOT_EQ] = ACTIONS(83), + [anon_sym_DOT_DOT_LT] = ACTIONS(83), + [anon_sym_null] = ACTIONS(85), + [anon_sym_true] = ACTIONS(87), + [anon_sym_false] = ACTIONS(87), + [aux_sym__val_number_decimal_token1] = ACTIONS(89), + [aux_sym__val_number_decimal_token2] = ACTIONS(91), + [aux_sym__val_number_decimal_token3] = ACTIONS(93), + [aux_sym__val_number_decimal_token4] = ACTIONS(95), + [aux_sym__val_number_token1] = ACTIONS(97), + [aux_sym__val_number_token2] = ACTIONS(97), + [aux_sym__val_number_token3] = ACTIONS(97), + [aux_sym__val_number_token4] = ACTIONS(99), + [aux_sym__val_number_token5] = ACTIONS(99), + [aux_sym__val_number_token6] = ACTIONS(99), + [anon_sym_0b] = ACTIONS(101), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym__str_single_quotes] = ACTIONS(109), + [sym__str_back_ticks] = ACTIONS(109), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(117), + [aux_sym_command_token1] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [166] = { - [sym_pipeline_parenthesized] = STATE(7081), - [sym_cmd_identifier] = STATE(4711), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), + [sym_pipeline] = STATE(7120), + [sym_cmd_identifier] = STATE(4582), + [sym__ctrl_expression] = STATE(4975), + [sym_ctrl_do] = STATE(5010), + [sym_ctrl_if] = STATE(5010), + [sym_ctrl_match] = STATE(5010), + [sym_ctrl_try] = STATE(5010), + [sym_ctrl_return] = STATE(5010), + [sym_pipe_element] = STATE(4613), + [sym_where_command] = STATE(5021), + [sym__expression] = STATE(3866), + [sym_expr_unary] = STATE(2443), + [sym__expr_unary_minus] = STATE(2502), + [sym_expr_binary] = STATE(2443), + [sym__expr_binary_expression] = STATE(3829), + [sym_expr_parenthesized] = STATE(2049), + [sym_val_range] = STATE(2443), + [sym__value] = STATE(2443), + [sym_val_nothing] = STATE(2419), + [sym_val_bool] = STATE(2419), + [sym_val_variable] = STATE(2121), + [sym_val_number] = STATE(2419), + [sym__val_number_decimal] = STATE(782), + [sym__val_number] = STATE(2425), + [sym_val_duration] = STATE(2419), + [sym_val_filesize] = STATE(2419), + [sym_val_binary] = STATE(2419), + [sym_val_string] = STATE(2419), + [sym__raw_str] = STATE(1605), + [sym__str_double_quotes] = STATE(1605), + [sym_val_interpolated] = STATE(2419), + [sym__inter_single_quotes] = STATE(2426), + [sym__inter_double_quotes] = STATE(2421), + [sym_val_list] = STATE(2419), + [sym_val_record] = STATE(2419), + [sym_val_table] = STATE(2419), + [sym_val_closure] = STATE(2419), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(5021), [sym_comment] = STATE(166), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(338), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(1046), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(1034), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1036), - [aux_sym__val_number_decimal_token2] = ACTIONS(1038), - [aux_sym__val_number_decimal_token3] = ACTIONS(1040), - [aux_sym__val_number_decimal_token4] = ACTIONS(1042), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, - [167] = { - [sym_pipeline_parenthesized] = STATE(6897), - [sym_cmd_identifier] = STATE(4711), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), - [sym_comment] = STATE(167), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, - [168] = { - [sym_pipeline] = STATE(6940), - [sym_cmd_identifier] = STATE(4643), - [sym__ctrl_expression] = STATE(4993), - [sym_ctrl_do] = STATE(5044), - [sym_ctrl_if] = STATE(5044), - [sym_ctrl_match] = STATE(5044), - [sym_ctrl_try] = STATE(5044), - [sym_ctrl_return] = STATE(5044), - [sym_pipe_element] = STATE(4685), - [sym_where_command] = STATE(5107), - [sym__expression] = STATE(3831), - [sym_expr_unary] = STATE(2492), - [sym__expr_unary_minus] = STATE(2458), - [sym_expr_binary] = STATE(2492), - [sym__expr_binary_expression] = STATE(3874), - [sym_expr_parenthesized] = STATE(2094), - [sym_val_range] = STATE(2492), - [sym__value] = STATE(2492), - [sym_val_nothing] = STATE(2516), - [sym_val_bool] = STATE(2516), - [sym_val_variable] = STATE(2101), - [sym_val_number] = STATE(2516), - [sym__val_number_decimal] = STATE(813), - [sym__val_number] = STATE(2512), - [sym_val_duration] = STATE(2516), - [sym_val_filesize] = STATE(2516), - [sym_val_binary] = STATE(2516), - [sym_val_string] = STATE(2516), - [sym__raw_str] = STATE(1732), - [sym__str_double_quotes] = STATE(1732), - [sym_val_interpolated] = STATE(2516), - [sym__inter_single_quotes] = STATE(2527), - [sym__inter_double_quotes] = STATE(2528), - [sym_val_list] = STATE(2516), - [sym_val_record] = STATE(2516), - [sym_val_table] = STATE(2516), - [sym_val_closure] = STATE(2516), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(5107), - [sym_comment] = STATE(168), - [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym_pipe_element_repeat2] = STATE(323), + [aux_sym_pipeline_repeat1] = STATE(192), + [aux_sym_pipe_element_repeat2] = STATE(342), [aux_sym_cmd_identifier_token1] = ACTIONS(19), [aux_sym_cmd_identifier_token2] = ACTIONS(21), [aux_sym_cmd_identifier_token3] = ACTIONS(21), @@ -99629,7 +99336,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(21), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1044), + [anon_sym_DOLLAR] = ACTIONS(1018), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), @@ -99640,81 +99347,849 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(65), [anon_sym_try] = ACTIONS(67), [anon_sym_return] = ACTIONS(69), - [anon_sym_where] = ACTIONS(81), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(85), - [anon_sym_DOT_DOT_LT] = ACTIONS(85), - [anon_sym_null] = ACTIONS(87), - [anon_sym_true] = ACTIONS(89), - [anon_sym_false] = ACTIONS(89), - [aux_sym__val_number_decimal_token1] = ACTIONS(91), - [aux_sym__val_number_decimal_token2] = ACTIONS(93), - [aux_sym__val_number_decimal_token3] = ACTIONS(95), - [aux_sym__val_number_decimal_token4] = ACTIONS(97), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(101), - [aux_sym__val_number_token5] = ACTIONS(101), - [aux_sym__val_number_token6] = ACTIONS(101), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(119), - [aux_sym_command_token1] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), + [anon_sym_where] = ACTIONS(79), + [aux_sym_expr_unary_token1] = ACTIONS(81), + [anon_sym_DOT_DOT_EQ] = ACTIONS(83), + [anon_sym_DOT_DOT_LT] = ACTIONS(83), + [anon_sym_null] = ACTIONS(85), + [anon_sym_true] = ACTIONS(87), + [anon_sym_false] = ACTIONS(87), + [aux_sym__val_number_decimal_token1] = ACTIONS(89), + [aux_sym__val_number_decimal_token2] = ACTIONS(91), + [aux_sym__val_number_decimal_token3] = ACTIONS(93), + [aux_sym__val_number_decimal_token4] = ACTIONS(95), + [aux_sym__val_number_token1] = ACTIONS(97), + [aux_sym__val_number_token2] = ACTIONS(97), + [aux_sym__val_number_token3] = ACTIONS(97), + [aux_sym__val_number_token4] = ACTIONS(99), + [aux_sym__val_number_token5] = ACTIONS(99), + [aux_sym__val_number_token6] = ACTIONS(99), + [anon_sym_0b] = ACTIONS(101), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym__str_single_quotes] = ACTIONS(109), + [sym__str_back_ticks] = ACTIONS(109), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(117), + [aux_sym_command_token1] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), + }, + [167] = { + [sym_pipeline_parenthesized] = STATE(6735), + [sym_cmd_identifier] = STATE(4601), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), + [sym_comment] = STATE(167), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), + }, + [168] = { + [sym_pipeline_parenthesized] = STATE(6739), + [sym_cmd_identifier] = STATE(4601), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), + [sym_comment] = STATE(168), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [169] = { - [sym_pipeline] = STATE(7142), - [sym_cmd_identifier] = STATE(4643), - [sym__ctrl_expression] = STATE(4993), - [sym_ctrl_do] = STATE(5044), - [sym_ctrl_if] = STATE(5044), - [sym_ctrl_match] = STATE(5044), - [sym_ctrl_try] = STATE(5044), - [sym_ctrl_return] = STATE(5044), - [sym_pipe_element] = STATE(4685), - [sym_where_command] = STATE(5107), - [sym__expression] = STATE(3831), - [sym_expr_unary] = STATE(2492), - [sym__expr_unary_minus] = STATE(2458), - [sym_expr_binary] = STATE(2492), - [sym__expr_binary_expression] = STATE(3874), - [sym_expr_parenthesized] = STATE(2094), - [sym_val_range] = STATE(2492), - [sym__value] = STATE(2492), - [sym_val_nothing] = STATE(2516), - [sym_val_bool] = STATE(2516), - [sym_val_variable] = STATE(2101), - [sym_val_number] = STATE(2516), - [sym__val_number_decimal] = STATE(813), - [sym__val_number] = STATE(2512), - [sym_val_duration] = STATE(2516), - [sym_val_filesize] = STATE(2516), - [sym_val_binary] = STATE(2516), - [sym_val_string] = STATE(2516), - [sym__raw_str] = STATE(1732), - [sym__str_double_quotes] = STATE(1732), - [sym_val_interpolated] = STATE(2516), - [sym__inter_single_quotes] = STATE(2527), - [sym__inter_double_quotes] = STATE(2528), - [sym_val_list] = STATE(2516), - [sym_val_record] = STATE(2516), - [sym_val_table] = STATE(2516), - [sym_val_closure] = STATE(2516), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(5107), + [sym_pipeline] = STATE(6648), + [sym_cmd_identifier] = STATE(4539), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(169), + [aux_sym_pipeline_repeat1] = STATE(190), + [aux_sym_pipe_element_repeat2] = STATE(339), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(595), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(445), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), + }, + [170] = { + [sym_pipeline_parenthesized] = STATE(7070), + [sym_cmd_identifier] = STATE(4601), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), + [sym_comment] = STATE(170), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), + }, + [171] = { + [sym_pipeline] = STATE(6210), + [sym_cmd_identifier] = STATE(4539), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), + [sym_comment] = STATE(171), + [aux_sym_pipeline_repeat1] = STATE(190), + [aux_sym_pipe_element_repeat2] = STATE(339), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(595), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(445), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), + }, + [172] = { + [sym_pipeline] = STATE(6483), + [sym_cmd_identifier] = STATE(4539), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(792), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), + [sym_comment] = STATE(172), [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym_pipe_element_repeat2] = STATE(323), + [aux_sym_pipe_element_repeat2] = STATE(337), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(391), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(409), + [aux_sym__val_number_decimal_token2] = ACTIONS(411), + [aux_sym__val_number_decimal_token3] = ACTIONS(413), + [aux_sym__val_number_decimal_token4] = ACTIONS(415), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), + }, + [173] = { + [sym_pipeline] = STATE(7276), + [sym_cmd_identifier] = STATE(4582), + [sym__ctrl_expression] = STATE(4975), + [sym_ctrl_do] = STATE(5010), + [sym_ctrl_if] = STATE(5010), + [sym_ctrl_match] = STATE(5010), + [sym_ctrl_try] = STATE(5010), + [sym_ctrl_return] = STATE(5010), + [sym_pipe_element] = STATE(4613), + [sym_where_command] = STATE(5021), + [sym__expression] = STATE(3866), + [sym_expr_unary] = STATE(2443), + [sym__expr_unary_minus] = STATE(2502), + [sym_expr_binary] = STATE(2443), + [sym__expr_binary_expression] = STATE(3829), + [sym_expr_parenthesized] = STATE(2049), + [sym_val_range] = STATE(2443), + [sym__value] = STATE(2443), + [sym_val_nothing] = STATE(2419), + [sym_val_bool] = STATE(2419), + [sym_val_variable] = STATE(2121), + [sym_val_number] = STATE(2419), + [sym__val_number_decimal] = STATE(782), + [sym__val_number] = STATE(2425), + [sym_val_duration] = STATE(2419), + [sym_val_filesize] = STATE(2419), + [sym_val_binary] = STATE(2419), + [sym_val_string] = STATE(2419), + [sym__raw_str] = STATE(1605), + [sym__str_double_quotes] = STATE(1605), + [sym_val_interpolated] = STATE(2419), + [sym__inter_single_quotes] = STATE(2426), + [sym__inter_double_quotes] = STATE(2421), + [sym_val_list] = STATE(2419), + [sym_val_record] = STATE(2419), + [sym_val_table] = STATE(2419), + [sym_val_closure] = STATE(2419), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(5021), + [sym_comment] = STATE(173), + [aux_sym_pipeline_repeat1] = STATE(192), + [aux_sym_pipe_element_repeat2] = STATE(342), [aux_sym_cmd_identifier_token1] = ACTIONS(19), [aux_sym_cmd_identifier_token2] = ACTIONS(21), [aux_sym_cmd_identifier_token3] = ACTIONS(21), @@ -99757,7 +100232,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(21), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1044), + [anon_sym_DOLLAR] = ACTIONS(1018), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), @@ -99768,1233 +100243,1233 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(65), [anon_sym_try] = ACTIONS(67), [anon_sym_return] = ACTIONS(69), - [anon_sym_where] = ACTIONS(81), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(85), - [anon_sym_DOT_DOT_LT] = ACTIONS(85), - [anon_sym_null] = ACTIONS(87), - [anon_sym_true] = ACTIONS(89), - [anon_sym_false] = ACTIONS(89), - [aux_sym__val_number_decimal_token1] = ACTIONS(91), - [aux_sym__val_number_decimal_token2] = ACTIONS(93), - [aux_sym__val_number_decimal_token3] = ACTIONS(95), - [aux_sym__val_number_decimal_token4] = ACTIONS(97), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(101), - [aux_sym__val_number_token5] = ACTIONS(101), - [aux_sym__val_number_token6] = ACTIONS(101), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(119), - [aux_sym_command_token1] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [170] = { - [sym_pipeline_parenthesized] = STATE(7187), - [sym_cmd_identifier] = STATE(4711), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), - [sym_comment] = STATE(170), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, - [171] = { - [sym_pipeline_parenthesized] = STATE(7197), - [sym_cmd_identifier] = STATE(4711), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), - [sym_comment] = STATE(171), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, - [172] = { - [sym_pipeline] = STATE(6193), - [sym_cmd_identifier] = STATE(4514), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), - [sym_comment] = STATE(172), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(347), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(417), - [aux_sym__val_number_decimal_token2] = ACTIONS(419), - [aux_sym__val_number_decimal_token3] = ACTIONS(421), - [aux_sym__val_number_decimal_token4] = ACTIONS(423), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, - [173] = { - [sym_pipeline_parenthesized] = STATE(7080), - [sym_cmd_identifier] = STATE(4711), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), - [sym_comment] = STATE(173), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_where] = ACTIONS(79), + [aux_sym_expr_unary_token1] = ACTIONS(81), + [anon_sym_DOT_DOT_EQ] = ACTIONS(83), + [anon_sym_DOT_DOT_LT] = ACTIONS(83), + [anon_sym_null] = ACTIONS(85), + [anon_sym_true] = ACTIONS(87), + [anon_sym_false] = ACTIONS(87), + [aux_sym__val_number_decimal_token1] = ACTIONS(89), + [aux_sym__val_number_decimal_token2] = ACTIONS(91), + [aux_sym__val_number_decimal_token3] = ACTIONS(93), + [aux_sym__val_number_decimal_token4] = ACTIONS(95), + [aux_sym__val_number_token1] = ACTIONS(97), + [aux_sym__val_number_token2] = ACTIONS(97), + [aux_sym__val_number_token3] = ACTIONS(97), + [aux_sym__val_number_token4] = ACTIONS(99), + [aux_sym__val_number_token5] = ACTIONS(99), + [aux_sym__val_number_token6] = ACTIONS(99), + [anon_sym_0b] = ACTIONS(101), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym__str_single_quotes] = ACTIONS(109), + [sym__str_back_ticks] = ACTIONS(109), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(117), + [aux_sym_command_token1] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [174] = { - [sym_pipeline] = STATE(6598), - [sym_cmd_identifier] = STATE(4514), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym_pipeline_parenthesized] = STATE(7128), + [sym_cmd_identifier] = STATE(4601), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(807), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), [sym_comment] = STATE(174), - [aux_sym_pipeline_repeat1] = STATE(189), - [aux_sym_pipe_element_repeat2] = STATE(339), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(603), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(453), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(343), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(1022), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [175] = { - [sym_pipeline_parenthesized] = STATE(7081), - [sym_cmd_identifier] = STATE(4711), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4639), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), + [sym_pipeline] = STATE(6564), + [sym_cmd_identifier] = STATE(4539), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(792), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(175), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym_pipe_element_repeat2] = STATE(337), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(391), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(409), + [aux_sym__val_number_decimal_token2] = ACTIONS(411), + [aux_sym__val_number_decimal_token3] = ACTIONS(413), + [aux_sym__val_number_decimal_token4] = ACTIONS(415), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [176] = { - [sym_pipeline] = STATE(6198), - [sym_cmd_identifier] = STATE(4514), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym_pipeline_parenthesized] = STATE(6735), + [sym_cmd_identifier] = STATE(4601), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(807), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), [sym_comment] = STATE(176), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(347), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(417), - [aux_sym__val_number_decimal_token2] = ACTIONS(419), - [aux_sym__val_number_decimal_token3] = ACTIONS(421), - [aux_sym__val_number_decimal_token4] = ACTIONS(423), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(343), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(1022), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [177] = { - [sym_pipeline] = STATE(6618), - [sym_cmd_identifier] = STATE(4514), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym_pipeline] = STATE(6565), + [sym_cmd_identifier] = STATE(4539), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(792), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(177), - [aux_sym_pipeline_repeat1] = STATE(189), - [aux_sym_pipe_element_repeat2] = STATE(339), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(603), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(453), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym_pipe_element_repeat2] = STATE(337), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(391), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(409), + [aux_sym__val_number_decimal_token2] = ACTIONS(411), + [aux_sym__val_number_decimal_token3] = ACTIONS(413), + [aux_sym__val_number_decimal_token4] = ACTIONS(415), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [178] = { - [sym_pipeline] = STATE(6619), - [sym_cmd_identifier] = STATE(4514), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym_pipeline_parenthesized] = STATE(6739), + [sym_cmd_identifier] = STATE(4601), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(807), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), [sym_comment] = STATE(178), - [aux_sym_pipeline_repeat1] = STATE(189), - [aux_sym_pipe_element_repeat2] = STATE(339), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(603), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(453), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(343), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(1022), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [179] = { - [sym_pipeline] = STATE(7221), - [sym_cmd_identifier] = STATE(4643), - [sym__ctrl_expression] = STATE(4993), - [sym_ctrl_do] = STATE(5044), - [sym_ctrl_if] = STATE(5044), - [sym_ctrl_match] = STATE(5044), - [sym_ctrl_try] = STATE(5044), - [sym_ctrl_return] = STATE(5044), - [sym_pipe_element] = STATE(4685), - [sym_where_command] = STATE(5107), - [sym__expression] = STATE(3831), - [sym_expr_unary] = STATE(2492), - [sym__expr_unary_minus] = STATE(2458), - [sym_expr_binary] = STATE(2492), - [sym__expr_binary_expression] = STATE(3874), - [sym_expr_parenthesized] = STATE(2094), - [sym_val_range] = STATE(2492), - [sym__value] = STATE(2492), - [sym_val_nothing] = STATE(2516), - [sym_val_bool] = STATE(2516), - [sym_val_variable] = STATE(2101), - [sym_val_number] = STATE(2516), - [sym__val_number_decimal] = STATE(813), - [sym__val_number] = STATE(2512), - [sym_val_duration] = STATE(2516), - [sym_val_filesize] = STATE(2516), - [sym_val_binary] = STATE(2516), - [sym_val_string] = STATE(2516), - [sym__raw_str] = STATE(1732), - [sym__str_double_quotes] = STATE(1732), - [sym_val_interpolated] = STATE(2516), - [sym__inter_single_quotes] = STATE(2527), - [sym__inter_double_quotes] = STATE(2528), - [sym_val_list] = STATE(2516), - [sym_val_record] = STATE(2516), - [sym_val_table] = STATE(2516), - [sym_val_closure] = STATE(2516), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(5107), + [sym_pipeline] = STATE(6648), + [sym_cmd_identifier] = STATE(4539), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(792), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(179), [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym_pipe_element_repeat2] = STATE(323), + [aux_sym_pipe_element_repeat2] = STATE(337), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(391), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(409), + [aux_sym__val_number_decimal_token2] = ACTIONS(411), + [aux_sym__val_number_decimal_token3] = ACTIONS(413), + [aux_sym__val_number_decimal_token4] = ACTIONS(415), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), + }, + [180] = { + [sym_pipeline_parenthesized] = STATE(7066), + [sym_cmd_identifier] = STATE(4601), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(807), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), + [sym_comment] = STATE(180), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(343), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(1022), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), + }, + [181] = { + [sym_pipeline_parenthesized] = STATE(7070), + [sym_cmd_identifier] = STATE(4601), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(807), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), + [sym_comment] = STATE(181), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(343), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(1022), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), + }, + [182] = { + [sym_pipeline] = STATE(6210), + [sym_cmd_identifier] = STATE(4539), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4492), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(792), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), + [sym_comment] = STATE(182), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym_pipe_element_repeat2] = STATE(337), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(391), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(409), + [aux_sym__val_number_decimal_token2] = ACTIONS(411), + [aux_sym__val_number_decimal_token3] = ACTIONS(413), + [aux_sym__val_number_decimal_token4] = ACTIONS(415), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), + }, + [183] = { + [sym_pipeline] = STATE(6852), + [sym_cmd_identifier] = STATE(4582), + [sym__ctrl_expression] = STATE(4975), + [sym_ctrl_do] = STATE(5010), + [sym_ctrl_if] = STATE(5010), + [sym_ctrl_match] = STATE(5010), + [sym_ctrl_try] = STATE(5010), + [sym_ctrl_return] = STATE(5010), + [sym_pipe_element] = STATE(4613), + [sym_where_command] = STATE(5021), + [sym__expression] = STATE(3866), + [sym_expr_unary] = STATE(2443), + [sym__expr_unary_minus] = STATE(2502), + [sym_expr_binary] = STATE(2443), + [sym__expr_binary_expression] = STATE(3829), + [sym_expr_parenthesized] = STATE(2049), + [sym_val_range] = STATE(2443), + [sym__value] = STATE(2443), + [sym_val_nothing] = STATE(2419), + [sym_val_bool] = STATE(2419), + [sym_val_variable] = STATE(2121), + [sym_val_number] = STATE(2419), + [sym__val_number_decimal] = STATE(782), + [sym__val_number] = STATE(2425), + [sym_val_duration] = STATE(2419), + [sym_val_filesize] = STATE(2419), + [sym_val_binary] = STATE(2419), + [sym_val_string] = STATE(2419), + [sym__raw_str] = STATE(1605), + [sym__str_double_quotes] = STATE(1605), + [sym_val_interpolated] = STATE(2419), + [sym__inter_single_quotes] = STATE(2426), + [sym__inter_double_quotes] = STATE(2421), + [sym_val_list] = STATE(2419), + [sym_val_record] = STATE(2419), + [sym_val_table] = STATE(2419), + [sym_val_closure] = STATE(2419), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(5021), + [sym_comment] = STATE(183), + [aux_sym_pipeline_repeat1] = STATE(192), + [aux_sym_pipe_element_repeat2] = STATE(342), [aux_sym_cmd_identifier_token1] = ACTIONS(19), [aux_sym_cmd_identifier_token2] = ACTIONS(21), [aux_sym_cmd_identifier_token3] = ACTIONS(21), @@ -101037,7 +101512,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(21), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1044), + [anon_sym_DOLLAR] = ACTIONS(1018), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), @@ -101048,974 +101523,1097 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(65), [anon_sym_try] = ACTIONS(67), [anon_sym_return] = ACTIONS(69), - [anon_sym_where] = ACTIONS(81), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(85), - [anon_sym_DOT_DOT_LT] = ACTIONS(85), - [anon_sym_null] = ACTIONS(87), - [anon_sym_true] = ACTIONS(89), - [anon_sym_false] = ACTIONS(89), - [aux_sym__val_number_decimal_token1] = ACTIONS(91), - [aux_sym__val_number_decimal_token2] = ACTIONS(93), - [aux_sym__val_number_decimal_token3] = ACTIONS(95), - [aux_sym__val_number_decimal_token4] = ACTIONS(97), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(101), - [aux_sym__val_number_token5] = ACTIONS(101), - [aux_sym__val_number_token6] = ACTIONS(101), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(119), - [aux_sym_command_token1] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [180] = { - [sym_pipeline] = STATE(6193), - [sym_cmd_identifier] = STATE(4514), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), - [sym_comment] = STATE(180), - [aux_sym_pipeline_repeat1] = STATE(189), - [aux_sym_pipe_element_repeat2] = STATE(339), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(603), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(453), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, - [181] = { - [sym_pipeline] = STATE(6598), - [sym_cmd_identifier] = STATE(4514), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), - [sym_comment] = STATE(181), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(347), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(417), - [aux_sym__val_number_decimal_token2] = ACTIONS(419), - [aux_sym__val_number_decimal_token3] = ACTIONS(421), - [aux_sym__val_number_decimal_token4] = ACTIONS(423), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, - [182] = { - [sym_pipeline] = STATE(6198), - [sym_cmd_identifier] = STATE(4514), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), - [sym_comment] = STATE(182), - [aux_sym_pipeline_repeat1] = STATE(189), - [aux_sym_pipe_element_repeat2] = STATE(339), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(603), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(453), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, - [183] = { - [sym_pipeline] = STATE(6618), - [sym_cmd_identifier] = STATE(4514), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), - [sym_comment] = STATE(183), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(347), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(417), - [aux_sym__val_number_decimal_token2] = ACTIONS(419), - [aux_sym__val_number_decimal_token3] = ACTIONS(421), - [aux_sym__val_number_decimal_token4] = ACTIONS(423), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_where] = ACTIONS(79), + [aux_sym_expr_unary_token1] = ACTIONS(81), + [anon_sym_DOT_DOT_EQ] = ACTIONS(83), + [anon_sym_DOT_DOT_LT] = ACTIONS(83), + [anon_sym_null] = ACTIONS(85), + [anon_sym_true] = ACTIONS(87), + [anon_sym_false] = ACTIONS(87), + [aux_sym__val_number_decimal_token1] = ACTIONS(89), + [aux_sym__val_number_decimal_token2] = ACTIONS(91), + [aux_sym__val_number_decimal_token3] = ACTIONS(93), + [aux_sym__val_number_decimal_token4] = ACTIONS(95), + [aux_sym__val_number_token1] = ACTIONS(97), + [aux_sym__val_number_token2] = ACTIONS(97), + [aux_sym__val_number_token3] = ACTIONS(97), + [aux_sym__val_number_token4] = ACTIONS(99), + [aux_sym__val_number_token5] = ACTIONS(99), + [aux_sym__val_number_token6] = ACTIONS(99), + [anon_sym_0b] = ACTIONS(101), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym__str_single_quotes] = ACTIONS(109), + [sym__str_back_ticks] = ACTIONS(109), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(117), + [aux_sym_command_token1] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [184] = { - [sym_pipeline] = STATE(6619), - [sym_cmd_identifier] = STATE(4514), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4515), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym_pipeline_parenthesized] = STATE(7066), + [sym_cmd_identifier] = STATE(4601), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4591), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), [sym_comment] = STATE(184), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(347), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(417), - [aux_sym__val_number_decimal_token2] = ACTIONS(419), - [aux_sym__val_number_decimal_token3] = ACTIONS(421), - [aux_sym__val_number_decimal_token4] = ACTIONS(423), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [185] = { - [sym_cmd_identifier] = STATE(4514), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4524), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), + [sym_cmd_identifier] = STATE(4601), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4619), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), [sym_comment] = STATE(185), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(347), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(405), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(417), - [aux_sym__val_number_decimal_token2] = ACTIONS(419), - [aux_sym__val_number_decimal_token3] = ACTIONS(421), - [aux_sym__val_number_decimal_token4] = ACTIONS(423), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(334), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(445), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [186] = { - [sym_cmd_identifier] = STATE(4711), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(5002), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(843), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), + [sym_cmd_identifier] = STATE(4539), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(5050), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(826), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(186), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(186), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(1048), - [aux_sym_cmd_identifier_token2] = ACTIONS(1051), - [aux_sym_cmd_identifier_token3] = ACTIONS(1051), - [aux_sym_cmd_identifier_token4] = ACTIONS(1051), - [aux_sym_cmd_identifier_token5] = ACTIONS(1051), - [aux_sym_cmd_identifier_token6] = ACTIONS(1051), - [aux_sym_cmd_identifier_token7] = ACTIONS(1051), - [aux_sym_cmd_identifier_token8] = ACTIONS(1051), - [aux_sym_cmd_identifier_token9] = ACTIONS(1048), - [aux_sym_cmd_identifier_token10] = ACTIONS(1051), - [aux_sym_cmd_identifier_token11] = ACTIONS(1051), - [aux_sym_cmd_identifier_token12] = ACTIONS(1051), - [aux_sym_cmd_identifier_token13] = ACTIONS(1048), - [aux_sym_cmd_identifier_token14] = ACTIONS(1051), - [aux_sym_cmd_identifier_token15] = ACTIONS(1048), - [aux_sym_cmd_identifier_token16] = ACTIONS(1051), - [aux_sym_cmd_identifier_token17] = ACTIONS(1051), - [aux_sym_cmd_identifier_token18] = ACTIONS(1048), - [aux_sym_cmd_identifier_token19] = ACTIONS(1051), - [aux_sym_cmd_identifier_token20] = ACTIONS(1051), - [aux_sym_cmd_identifier_token21] = ACTIONS(1051), - [aux_sym_cmd_identifier_token22] = ACTIONS(1051), - [aux_sym_cmd_identifier_token23] = ACTIONS(1051), - [aux_sym_cmd_identifier_token24] = ACTIONS(1051), - [aux_sym_cmd_identifier_token25] = ACTIONS(1051), - [aux_sym_cmd_identifier_token26] = ACTIONS(1051), - [aux_sym_cmd_identifier_token27] = ACTIONS(1051), - [aux_sym_cmd_identifier_token28] = ACTIONS(1051), - [aux_sym_cmd_identifier_token29] = ACTIONS(1051), - [aux_sym_cmd_identifier_token30] = ACTIONS(1051), - [aux_sym_cmd_identifier_token31] = ACTIONS(1051), - [aux_sym_cmd_identifier_token32] = ACTIONS(1048), - [aux_sym_cmd_identifier_token33] = ACTIONS(1051), - [aux_sym_cmd_identifier_token34] = ACTIONS(1048), - [aux_sym_cmd_identifier_token35] = ACTIONS(1051), - [aux_sym_cmd_identifier_token36] = ACTIONS(1051), - [aux_sym_cmd_identifier_token37] = ACTIONS(1051), - [aux_sym_cmd_identifier_token38] = ACTIONS(1048), - [aux_sym_cmd_identifier_token39] = ACTIONS(1051), - [aux_sym_cmd_identifier_token40] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1054), - [anon_sym_LPAREN] = ACTIONS(1057), - [anon_sym_DOLLAR] = ACTIONS(1060), - [anon_sym_DASH2] = ACTIONS(1063), - [anon_sym_break] = ACTIONS(1066), - [anon_sym_continue] = ACTIONS(1069), - [anon_sym_do] = ACTIONS(1072), - [anon_sym_if] = ACTIONS(1075), - [anon_sym_match] = ACTIONS(1078), - [anon_sym_LBRACE] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(1084), - [anon_sym_try] = ACTIONS(1087), - [anon_sym_return] = ACTIONS(1090), - [anon_sym_where] = ACTIONS(1093), - [aux_sym_expr_unary_token1] = ACTIONS(1096), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1099), - [anon_sym_DOT_DOT_LT] = ACTIONS(1099), - [anon_sym_null] = ACTIONS(1102), - [anon_sym_true] = ACTIONS(1105), - [anon_sym_false] = ACTIONS(1105), - [aux_sym__val_number_decimal_token1] = ACTIONS(1108), - [aux_sym__val_number_decimal_token2] = ACTIONS(1111), - [aux_sym__val_number_decimal_token3] = ACTIONS(1114), - [aux_sym__val_number_decimal_token4] = ACTIONS(1117), - [aux_sym__val_number_token1] = ACTIONS(1120), - [aux_sym__val_number_token2] = ACTIONS(1120), - [aux_sym__val_number_token3] = ACTIONS(1120), - [aux_sym__val_number_token4] = ACTIONS(1123), - [aux_sym__val_number_token5] = ACTIONS(1123), - [aux_sym__val_number_token6] = ACTIONS(1123), - [anon_sym_0b] = ACTIONS(1126), - [anon_sym_0o] = ACTIONS(1129), - [anon_sym_0x] = ACTIONS(1129), - [sym_val_date] = ACTIONS(1132), - [anon_sym_DQUOTE] = ACTIONS(1135), - [sym__str_single_quotes] = ACTIONS(1138), - [sym__str_back_ticks] = ACTIONS(1138), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1141), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1144), - [aux_sym_env_var_token1] = ACTIONS(1147), - [anon_sym_CARET] = ACTIONS(1150), - [aux_sym_command_token1] = ACTIONS(1153), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1156), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym_pipe_element_repeat2] = STATE(346), + [aux_sym_cmd_identifier_token1] = ACTIONS(1034), + [aux_sym_cmd_identifier_token2] = ACTIONS(1037), + [aux_sym_cmd_identifier_token3] = ACTIONS(1037), + [aux_sym_cmd_identifier_token4] = ACTIONS(1037), + [aux_sym_cmd_identifier_token5] = ACTIONS(1037), + [aux_sym_cmd_identifier_token6] = ACTIONS(1037), + [aux_sym_cmd_identifier_token7] = ACTIONS(1037), + [aux_sym_cmd_identifier_token8] = ACTIONS(1037), + [aux_sym_cmd_identifier_token9] = ACTIONS(1034), + [aux_sym_cmd_identifier_token10] = ACTIONS(1037), + [aux_sym_cmd_identifier_token11] = ACTIONS(1037), + [aux_sym_cmd_identifier_token12] = ACTIONS(1037), + [aux_sym_cmd_identifier_token13] = ACTIONS(1034), + [aux_sym_cmd_identifier_token14] = ACTIONS(1037), + [aux_sym_cmd_identifier_token15] = ACTIONS(1034), + [aux_sym_cmd_identifier_token16] = ACTIONS(1037), + [aux_sym_cmd_identifier_token17] = ACTIONS(1037), + [aux_sym_cmd_identifier_token18] = ACTIONS(1034), + [aux_sym_cmd_identifier_token19] = ACTIONS(1037), + [aux_sym_cmd_identifier_token20] = ACTIONS(1037), + [aux_sym_cmd_identifier_token21] = ACTIONS(1037), + [aux_sym_cmd_identifier_token22] = ACTIONS(1037), + [aux_sym_cmd_identifier_token23] = ACTIONS(1037), + [aux_sym_cmd_identifier_token24] = ACTIONS(1037), + [aux_sym_cmd_identifier_token25] = ACTIONS(1037), + [aux_sym_cmd_identifier_token26] = ACTIONS(1037), + [aux_sym_cmd_identifier_token27] = ACTIONS(1037), + [aux_sym_cmd_identifier_token28] = ACTIONS(1037), + [aux_sym_cmd_identifier_token29] = ACTIONS(1037), + [aux_sym_cmd_identifier_token30] = ACTIONS(1037), + [aux_sym_cmd_identifier_token31] = ACTIONS(1037), + [aux_sym_cmd_identifier_token32] = ACTIONS(1034), + [aux_sym_cmd_identifier_token33] = ACTIONS(1037), + [aux_sym_cmd_identifier_token34] = ACTIONS(1034), + [aux_sym_cmd_identifier_token35] = ACTIONS(1037), + [aux_sym_cmd_identifier_token36] = ACTIONS(1037), + [aux_sym_cmd_identifier_token37] = ACTIONS(1037), + [aux_sym_cmd_identifier_token38] = ACTIONS(1034), + [aux_sym_cmd_identifier_token39] = ACTIONS(1037), + [aux_sym_cmd_identifier_token40] = ACTIONS(1037), + [anon_sym_LBRACK] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1046), + [anon_sym_DASH2] = ACTIONS(1049), + [anon_sym_break] = ACTIONS(1052), + [anon_sym_continue] = ACTIONS(1055), + [anon_sym_do] = ACTIONS(1058), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_LBRACE] = ACTIONS(1067), + [anon_sym_DOT_DOT] = ACTIONS(1070), + [anon_sym_try] = ACTIONS(1073), + [anon_sym_return] = ACTIONS(1076), + [anon_sym_where] = ACTIONS(1079), + [aux_sym_expr_unary_token1] = ACTIONS(1082), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1085), + [anon_sym_DOT_DOT_LT] = ACTIONS(1085), + [anon_sym_null] = ACTIONS(1088), + [anon_sym_true] = ACTIONS(1091), + [anon_sym_false] = ACTIONS(1091), + [aux_sym__val_number_decimal_token1] = ACTIONS(1094), + [aux_sym__val_number_decimal_token2] = ACTIONS(1097), + [aux_sym__val_number_decimal_token3] = ACTIONS(1100), + [aux_sym__val_number_decimal_token4] = ACTIONS(1103), + [aux_sym__val_number_token1] = ACTIONS(1106), + [aux_sym__val_number_token2] = ACTIONS(1106), + [aux_sym__val_number_token3] = ACTIONS(1106), + [aux_sym__val_number_token4] = ACTIONS(1109), + [aux_sym__val_number_token5] = ACTIONS(1109), + [aux_sym__val_number_token6] = ACTIONS(1109), + [anon_sym_0b] = ACTIONS(1112), + [anon_sym_0o] = ACTIONS(1115), + [anon_sym_0x] = ACTIONS(1115), + [sym_val_date] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(1121), + [sym__str_single_quotes] = ACTIONS(1124), + [sym__str_back_ticks] = ACTIONS(1124), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1127), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1130), + [aux_sym_env_var_token1] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1136), + [aux_sym_command_token1] = ACTIONS(1139), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1142), }, [187] = { - [sym_cmd_identifier] = STATE(4643), - [sym__ctrl_expression] = STATE(4993), - [sym_ctrl_do] = STATE(5044), - [sym_ctrl_if] = STATE(5044), - [sym_ctrl_match] = STATE(5044), - [sym_ctrl_try] = STATE(5044), - [sym_ctrl_return] = STATE(5044), - [sym_pipe_element] = STATE(4676), - [sym_where_command] = STATE(5107), - [sym__expression] = STATE(3831), - [sym_expr_unary] = STATE(2492), - [sym__expr_unary_minus] = STATE(2458), - [sym_expr_binary] = STATE(2492), - [sym__expr_binary_expression] = STATE(3874), - [sym_expr_parenthesized] = STATE(2094), - [sym_val_range] = STATE(2492), - [sym__value] = STATE(2492), - [sym_val_nothing] = STATE(2516), - [sym_val_bool] = STATE(2516), - [sym_val_variable] = STATE(2101), - [sym_val_number] = STATE(2516), - [sym__val_number_decimal] = STATE(813), - [sym__val_number] = STATE(2512), - [sym_val_duration] = STATE(2516), - [sym_val_filesize] = STATE(2516), - [sym_val_binary] = STATE(2516), - [sym_val_string] = STATE(2516), - [sym__raw_str] = STATE(1732), - [sym__str_double_quotes] = STATE(1732), - [sym_val_interpolated] = STATE(2516), - [sym__inter_single_quotes] = STATE(2527), - [sym__inter_double_quotes] = STATE(2528), - [sym_val_list] = STATE(2516), - [sym_val_record] = STATE(2516), - [sym_val_table] = STATE(2516), - [sym_val_closure] = STATE(2516), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(5107), + [sym_cmd_identifier] = STATE(4539), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4487), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(792), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), [sym_comment] = STATE(187), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(323), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym_pipe_element_repeat2] = STATE(337), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(391), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(409), + [aux_sym__val_number_decimal_token2] = ACTIONS(411), + [aux_sym__val_number_decimal_token3] = ACTIONS(413), + [aux_sym__val_number_decimal_token4] = ACTIONS(415), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), + }, + [188] = { + [sym_cmd_identifier] = STATE(4539), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4487), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(807), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), + [sym_comment] = STATE(188), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym_pipe_element_repeat2] = STATE(348), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(1022), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), + }, + [189] = { + [sym_cmd_identifier] = STATE(4601), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(4619), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(807), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), + [sym_comment] = STATE(189), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(343), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_do] = ACTIONS(439), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(443), + [anon_sym_return] = ACTIONS(1022), + [anon_sym_where] = ACTIONS(447), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), + }, + [190] = { + [sym_cmd_identifier] = STATE(4539), + [sym__ctrl_expression] = STATE(4894), + [sym_ctrl_do] = STATE(4727), + [sym_ctrl_if] = STATE(4727), + [sym_ctrl_match] = STATE(4727), + [sym_ctrl_try] = STATE(4727), + [sym_ctrl_return] = STATE(4727), + [sym_pipe_element] = STATE(4487), + [sym_where_command] = STATE(4945), + [sym__expression] = STATE(3839), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4945), + [sym_comment] = STATE(190), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym_pipe_element_repeat2] = STATE(339), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(381), + [anon_sym_do] = ACTIONS(389), + [anon_sym_if] = ACTIONS(595), + [anon_sym_match] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(397), + [anon_sym_return] = ACTIONS(445), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), + }, + [191] = { + [sym_cmd_identifier] = STATE(4601), + [sym__ctrl_expression_parenthesized] = STATE(5026), + [sym_ctrl_do_parenthesized] = STATE(5027), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_ctrl_match] = STATE(5027), + [sym_ctrl_try_parenthesized] = STATE(5027), + [sym_ctrl_return] = STATE(5027), + [sym_pipe_element_parenthesized] = STATE(5126), + [sym_where_command_parenthesized] = STATE(5028), + [sym__expression_parenthesized] = STATE(3867), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(826), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5032), + [sym_comment] = STATE(191), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(333), + [aux_sym_cmd_identifier_token1] = ACTIONS(1145), + [aux_sym_cmd_identifier_token2] = ACTIONS(1148), + [aux_sym_cmd_identifier_token3] = ACTIONS(1148), + [aux_sym_cmd_identifier_token4] = ACTIONS(1148), + [aux_sym_cmd_identifier_token5] = ACTIONS(1148), + [aux_sym_cmd_identifier_token6] = ACTIONS(1148), + [aux_sym_cmd_identifier_token7] = ACTIONS(1148), + [aux_sym_cmd_identifier_token8] = ACTIONS(1148), + [aux_sym_cmd_identifier_token9] = ACTIONS(1145), + [aux_sym_cmd_identifier_token10] = ACTIONS(1148), + [aux_sym_cmd_identifier_token11] = ACTIONS(1148), + [aux_sym_cmd_identifier_token12] = ACTIONS(1148), + [aux_sym_cmd_identifier_token13] = ACTIONS(1145), + [aux_sym_cmd_identifier_token14] = ACTIONS(1148), + [aux_sym_cmd_identifier_token15] = ACTIONS(1145), + [aux_sym_cmd_identifier_token16] = ACTIONS(1148), + [aux_sym_cmd_identifier_token17] = ACTIONS(1148), + [aux_sym_cmd_identifier_token18] = ACTIONS(1145), + [aux_sym_cmd_identifier_token19] = ACTIONS(1148), + [aux_sym_cmd_identifier_token20] = ACTIONS(1148), + [aux_sym_cmd_identifier_token21] = ACTIONS(1148), + [aux_sym_cmd_identifier_token22] = ACTIONS(1148), + [aux_sym_cmd_identifier_token23] = ACTIONS(1148), + [aux_sym_cmd_identifier_token24] = ACTIONS(1148), + [aux_sym_cmd_identifier_token25] = ACTIONS(1148), + [aux_sym_cmd_identifier_token26] = ACTIONS(1148), + [aux_sym_cmd_identifier_token27] = ACTIONS(1148), + [aux_sym_cmd_identifier_token28] = ACTIONS(1148), + [aux_sym_cmd_identifier_token29] = ACTIONS(1148), + [aux_sym_cmd_identifier_token30] = ACTIONS(1148), + [aux_sym_cmd_identifier_token31] = ACTIONS(1148), + [aux_sym_cmd_identifier_token32] = ACTIONS(1145), + [aux_sym_cmd_identifier_token33] = ACTIONS(1148), + [aux_sym_cmd_identifier_token34] = ACTIONS(1145), + [aux_sym_cmd_identifier_token35] = ACTIONS(1148), + [aux_sym_cmd_identifier_token36] = ACTIONS(1148), + [aux_sym_cmd_identifier_token37] = ACTIONS(1148), + [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_DASH2] = 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), + [anon_sym_LBRACE] = 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), + [anon_sym_null] = ACTIONS(1199), + [anon_sym_true] = ACTIONS(1202), + [anon_sym_false] = ACTIONS(1202), + [aux_sym__val_number_decimal_token1] = ACTIONS(1205), + [aux_sym__val_number_decimal_token2] = ACTIONS(1208), + [aux_sym__val_number_decimal_token3] = ACTIONS(1211), + [aux_sym__val_number_decimal_token4] = ACTIONS(1214), + [aux_sym__val_number_token1] = ACTIONS(1217), + [aux_sym__val_number_token2] = ACTIONS(1217), + [aux_sym__val_number_token3] = ACTIONS(1217), + [aux_sym__val_number_token4] = ACTIONS(1220), + [aux_sym__val_number_token5] = ACTIONS(1220), + [aux_sym__val_number_token6] = ACTIONS(1220), + [anon_sym_0b] = ACTIONS(1223), + [anon_sym_0o] = ACTIONS(1226), + [anon_sym_0x] = ACTIONS(1226), + [sym_val_date] = ACTIONS(1229), + [anon_sym_DQUOTE] = ACTIONS(1232), + [sym__str_single_quotes] = ACTIONS(1235), + [sym__str_back_ticks] = ACTIONS(1235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1238), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1241), + [aux_sym_env_var_token1] = ACTIONS(1244), + [anon_sym_CARET] = ACTIONS(1247), + [aux_sym_command_token1] = ACTIONS(1250), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1253), + }, + [192] = { + [sym_cmd_identifier] = STATE(4582), + [sym__ctrl_expression] = STATE(4975), + [sym_ctrl_do] = STATE(5010), + [sym_ctrl_if] = STATE(5010), + [sym_ctrl_match] = STATE(5010), + [sym_ctrl_try] = STATE(5010), + [sym_ctrl_return] = STATE(5010), + [sym_pipe_element] = STATE(4662), + [sym_where_command] = STATE(5021), + [sym__expression] = STATE(3866), + [sym_expr_unary] = STATE(2443), + [sym__expr_unary_minus] = STATE(2502), + [sym_expr_binary] = STATE(2443), + [sym__expr_binary_expression] = STATE(3829), + [sym_expr_parenthesized] = STATE(2049), + [sym_val_range] = STATE(2443), + [sym__value] = STATE(2443), + [sym_val_nothing] = STATE(2419), + [sym_val_bool] = STATE(2419), + [sym_val_variable] = STATE(2121), + [sym_val_number] = STATE(2419), + [sym__val_number_decimal] = STATE(782), + [sym__val_number] = STATE(2425), + [sym_val_duration] = STATE(2419), + [sym_val_filesize] = STATE(2419), + [sym_val_binary] = STATE(2419), + [sym_val_string] = STATE(2419), + [sym__raw_str] = STATE(1605), + [sym__str_double_quotes] = STATE(1605), + [sym_val_interpolated] = STATE(2419), + [sym__inter_single_quotes] = STATE(2426), + [sym__inter_double_quotes] = STATE(2421), + [sym_val_list] = STATE(2419), + [sym_val_record] = STATE(2419), + [sym_val_table] = STATE(2419), + [sym_val_closure] = STATE(2419), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(5021), + [sym_comment] = STATE(192), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym_pipe_element_repeat2] = STATE(342), [aux_sym_cmd_identifier_token1] = ACTIONS(19), [aux_sym_cmd_identifier_token2] = ACTIONS(21), [aux_sym_cmd_identifier_token3] = ACTIONS(21), @@ -102058,7 +102656,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(21), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1044), + [anon_sym_DOLLAR] = ACTIONS(1018), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), @@ -102069,13471 +102667,12710 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(65), [anon_sym_try] = ACTIONS(67), [anon_sym_return] = ACTIONS(69), - [anon_sym_where] = ACTIONS(81), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(85), - [anon_sym_DOT_DOT_LT] = ACTIONS(85), - [anon_sym_null] = ACTIONS(87), - [anon_sym_true] = ACTIONS(89), - [anon_sym_false] = ACTIONS(89), - [aux_sym__val_number_decimal_token1] = ACTIONS(91), - [aux_sym__val_number_decimal_token2] = ACTIONS(93), - [aux_sym__val_number_decimal_token3] = ACTIONS(95), - [aux_sym__val_number_decimal_token4] = ACTIONS(97), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(101), - [aux_sym__val_number_token5] = ACTIONS(101), - [aux_sym__val_number_token6] = ACTIONS(101), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(119), - [aux_sym_command_token1] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [188] = { - [sym_cmd_identifier] = STATE(4514), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4524), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), - [sym_comment] = STATE(188), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(334), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(1032), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(1034), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1036), - [aux_sym__val_number_decimal_token2] = ACTIONS(1038), - [aux_sym__val_number_decimal_token3] = ACTIONS(1040), - [aux_sym__val_number_decimal_token4] = ACTIONS(1042), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, - [189] = { - [sym_cmd_identifier] = STATE(4514), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4524), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), - [sym_comment] = STATE(189), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(339), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(603), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(403), - [anon_sym_return] = ACTIONS(453), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, - [190] = { - [sym_cmd_identifier] = STATE(4711), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4602), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), - [sym_comment] = STATE(190), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(186), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(342), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(449), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(453), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, - [191] = { - [sym_cmd_identifier] = STATE(4514), - [sym__ctrl_expression] = STATE(4781), - [sym_ctrl_do] = STATE(4782), - [sym_ctrl_if] = STATE(4782), - [sym_ctrl_match] = STATE(4782), - [sym_ctrl_try] = STATE(4782), - [sym_ctrl_return] = STATE(4782), - [sym_pipe_element] = STATE(4989), - [sym_where_command] = STATE(4783), - [sym__expression] = STATE(3810), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(843), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4783), - [sym_comment] = STATE(191), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(329), - [aux_sym_cmd_identifier_token1] = ACTIONS(1159), - [aux_sym_cmd_identifier_token2] = ACTIONS(1162), - [aux_sym_cmd_identifier_token3] = ACTIONS(1162), - [aux_sym_cmd_identifier_token4] = ACTIONS(1162), - [aux_sym_cmd_identifier_token5] = ACTIONS(1162), - [aux_sym_cmd_identifier_token6] = ACTIONS(1162), - [aux_sym_cmd_identifier_token7] = ACTIONS(1162), - [aux_sym_cmd_identifier_token8] = ACTIONS(1162), - [aux_sym_cmd_identifier_token9] = ACTIONS(1159), - [aux_sym_cmd_identifier_token10] = ACTIONS(1162), - [aux_sym_cmd_identifier_token11] = ACTIONS(1162), - [aux_sym_cmd_identifier_token12] = ACTIONS(1162), - [aux_sym_cmd_identifier_token13] = ACTIONS(1159), - [aux_sym_cmd_identifier_token14] = ACTIONS(1162), - [aux_sym_cmd_identifier_token15] = ACTIONS(1159), - [aux_sym_cmd_identifier_token16] = ACTIONS(1162), - [aux_sym_cmd_identifier_token17] = ACTIONS(1162), - [aux_sym_cmd_identifier_token18] = ACTIONS(1159), - [aux_sym_cmd_identifier_token19] = ACTIONS(1162), - [aux_sym_cmd_identifier_token20] = ACTIONS(1162), - [aux_sym_cmd_identifier_token21] = ACTIONS(1162), - [aux_sym_cmd_identifier_token22] = ACTIONS(1162), - [aux_sym_cmd_identifier_token23] = ACTIONS(1162), - [aux_sym_cmd_identifier_token24] = ACTIONS(1162), - [aux_sym_cmd_identifier_token25] = ACTIONS(1162), - [aux_sym_cmd_identifier_token26] = ACTIONS(1162), - [aux_sym_cmd_identifier_token27] = ACTIONS(1162), - [aux_sym_cmd_identifier_token28] = ACTIONS(1162), - [aux_sym_cmd_identifier_token29] = ACTIONS(1162), - [aux_sym_cmd_identifier_token30] = ACTIONS(1162), - [aux_sym_cmd_identifier_token31] = ACTIONS(1162), - [aux_sym_cmd_identifier_token32] = ACTIONS(1159), - [aux_sym_cmd_identifier_token33] = ACTIONS(1162), - [aux_sym_cmd_identifier_token34] = ACTIONS(1159), - [aux_sym_cmd_identifier_token35] = ACTIONS(1162), - [aux_sym_cmd_identifier_token36] = ACTIONS(1162), - [aux_sym_cmd_identifier_token37] = ACTIONS(1162), - [aux_sym_cmd_identifier_token38] = ACTIONS(1159), - [aux_sym_cmd_identifier_token39] = ACTIONS(1162), - [aux_sym_cmd_identifier_token40] = ACTIONS(1162), - [anon_sym_LBRACK] = ACTIONS(1165), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_DOLLAR] = ACTIONS(1171), - [anon_sym_DASH2] = ACTIONS(1174), - [anon_sym_break] = ACTIONS(1177), - [anon_sym_continue] = ACTIONS(1180), - [anon_sym_do] = ACTIONS(1183), - [anon_sym_if] = ACTIONS(1186), - [anon_sym_match] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1192), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [anon_sym_try] = ACTIONS(1198), - [anon_sym_return] = ACTIONS(1201), - [anon_sym_where] = ACTIONS(1204), - [aux_sym_expr_unary_token1] = ACTIONS(1207), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1210), - [anon_sym_DOT_DOT_LT] = ACTIONS(1210), - [anon_sym_null] = ACTIONS(1213), - [anon_sym_true] = ACTIONS(1216), - [anon_sym_false] = ACTIONS(1216), - [aux_sym__val_number_decimal_token1] = ACTIONS(1219), - [aux_sym__val_number_decimal_token2] = ACTIONS(1222), - [aux_sym__val_number_decimal_token3] = ACTIONS(1225), - [aux_sym__val_number_decimal_token4] = ACTIONS(1228), - [aux_sym__val_number_token1] = ACTIONS(1231), - [aux_sym__val_number_token2] = ACTIONS(1231), - [aux_sym__val_number_token3] = ACTIONS(1231), - [aux_sym__val_number_token4] = ACTIONS(1234), - [aux_sym__val_number_token5] = ACTIONS(1234), - [aux_sym__val_number_token6] = ACTIONS(1234), - [anon_sym_0b] = ACTIONS(1237), - [anon_sym_0o] = ACTIONS(1240), - [anon_sym_0x] = ACTIONS(1240), - [sym_val_date] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1246), - [sym__str_single_quotes] = ACTIONS(1249), - [sym__str_back_ticks] = ACTIONS(1249), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1252), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1255), - [aux_sym_env_var_token1] = ACTIONS(1258), - [anon_sym_CARET] = ACTIONS(1261), - [aux_sym_command_token1] = ACTIONS(1264), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1267), - }, - [192] = { - [sym_cmd_identifier] = STATE(4711), - [sym__ctrl_expression_parenthesized] = STATE(5035), - [sym_ctrl_do_parenthesized] = STATE(4984), - [sym_ctrl_if_parenthesized] = STATE(4984), - [sym_ctrl_match] = STATE(4984), - [sym_ctrl_try_parenthesized] = STATE(4984), - [sym_ctrl_return] = STATE(4984), - [sym_pipe_element_parenthesized] = STATE(4602), - [sym_where_command_parenthesized] = STATE(5074), - [sym__expression_parenthesized] = STATE(3845), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5013), - [sym_comment] = STATE(192), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(186), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(338), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_do] = ACTIONS(447), - [anon_sym_if] = ACTIONS(1046), - [anon_sym_match] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(451), - [anon_sym_return] = ACTIONS(1034), - [anon_sym_where] = ACTIONS(455), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1036), - [aux_sym__val_number_decimal_token2] = ACTIONS(1038), - [aux_sym__val_number_decimal_token3] = ACTIONS(1040), - [aux_sym__val_number_decimal_token4] = ACTIONS(1042), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_where] = ACTIONS(79), + [aux_sym_expr_unary_token1] = ACTIONS(81), + [anon_sym_DOT_DOT_EQ] = ACTIONS(83), + [anon_sym_DOT_DOT_LT] = ACTIONS(83), + [anon_sym_null] = ACTIONS(85), + [anon_sym_true] = ACTIONS(87), + [anon_sym_false] = ACTIONS(87), + [aux_sym__val_number_decimal_token1] = ACTIONS(89), + [aux_sym__val_number_decimal_token2] = ACTIONS(91), + [aux_sym__val_number_decimal_token3] = ACTIONS(93), + [aux_sym__val_number_decimal_token4] = ACTIONS(95), + [aux_sym__val_number_token1] = ACTIONS(97), + [aux_sym__val_number_token2] = ACTIONS(97), + [aux_sym__val_number_token3] = ACTIONS(97), + [aux_sym__val_number_token4] = ACTIONS(99), + [aux_sym__val_number_token5] = ACTIONS(99), + [aux_sym__val_number_token6] = ACTIONS(99), + [anon_sym_0b] = ACTIONS(101), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym__str_single_quotes] = ACTIONS(109), + [sym__str_back_ticks] = ACTIONS(109), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(117), + [aux_sym_command_token1] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [193] = { - [sym_cmd_identifier] = STATE(6688), - [sym_expr_parenthesized] = STATE(7753), - [sym__spread_parenthesized] = STATE(7438), - [sym__spread_variable] = STATE(7458), - [sym_val_variable] = STATE(7753), - [sym_val_number] = STATE(7753), - [sym__val_number_decimal] = STATE(3652), - [sym__val_number] = STATE(1667), - [sym_val_string] = STATE(7753), - [sym__raw_str] = STATE(3668), - [sym__str_double_quotes] = STATE(3668), - [sym_val_interpolated] = STATE(7753), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym__spread_record] = STATE(7438), - [sym_record_body] = STATE(7554), - [sym_record_entry] = STATE(6831), - [sym__record_key] = STATE(7605), + [sym_cmd_identifier] = STATE(6681), + [sym_expr_parenthesized] = STATE(7505), + [sym__spread_parenthesized] = STATE(7377), + [sym__spread_variable] = STATE(7424), + [sym_val_variable] = STATE(7505), + [sym_val_number] = STATE(7505), + [sym__val_number_decimal] = STATE(3631), + [sym__val_number] = STATE(1536), + [sym_val_string] = STATE(7505), + [sym__raw_str] = STATE(3793), + [sym__str_double_quotes] = STATE(3793), + [sym_val_interpolated] = STATE(7505), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym__spread_record] = STATE(7377), + [sym_record_body] = STATE(7723), + [sym_record_entry] = STATE(7024), + [sym__record_key] = STATE(7701), [sym_comment] = STATE(193), [aux_sym_shebang_repeat1] = STATE(200), [aux_sym_record_body_repeat1] = STATE(209), - [anon_sym_export] = ACTIONS(285), - [anon_sym_alias] = ACTIONS(285), - [anon_sym_let] = ACTIONS(285), - [anon_sym_let_DASHenv] = ACTIONS(285), - [anon_sym_mut] = ACTIONS(285), - [anon_sym_const] = ACTIONS(285), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(137), - [aux_sym_cmd_identifier_token3] = ACTIONS(137), - [aux_sym_cmd_identifier_token4] = ACTIONS(137), - [aux_sym_cmd_identifier_token5] = ACTIONS(137), - [aux_sym_cmd_identifier_token6] = ACTIONS(137), - [aux_sym_cmd_identifier_token7] = ACTIONS(137), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(137), - [aux_sym_cmd_identifier_token11] = ACTIONS(137), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(137), - [aux_sym_cmd_identifier_token17] = ACTIONS(137), - [aux_sym_cmd_identifier_token18] = ACTIONS(137), - [aux_sym_cmd_identifier_token19] = ACTIONS(137), - [aux_sym_cmd_identifier_token20] = ACTIONS(137), - [aux_sym_cmd_identifier_token21] = ACTIONS(137), - [aux_sym_cmd_identifier_token22] = ACTIONS(137), - [aux_sym_cmd_identifier_token23] = ACTIONS(137), - [aux_sym_cmd_identifier_token24] = ACTIONS(137), - [aux_sym_cmd_identifier_token25] = ACTIONS(137), - [aux_sym_cmd_identifier_token26] = ACTIONS(137), - [aux_sym_cmd_identifier_token27] = ACTIONS(137), - [aux_sym_cmd_identifier_token28] = ACTIONS(137), - [aux_sym_cmd_identifier_token29] = ACTIONS(137), - [aux_sym_cmd_identifier_token30] = ACTIONS(137), - [aux_sym_cmd_identifier_token31] = ACTIONS(137), - [aux_sym_cmd_identifier_token32] = ACTIONS(137), - [aux_sym_cmd_identifier_token33] = ACTIONS(137), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(137), - [aux_sym_cmd_identifier_token36] = ACTIONS(137), - [aux_sym_cmd_identifier_token37] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(135), - [aux_sym_cmd_identifier_token39] = ACTIONS(137), - [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [sym__newline] = ACTIONS(1270), - [anon_sym_def] = ACTIONS(285), - [anon_sym_export_DASHenv] = ACTIONS(285), - [anon_sym_extern] = ACTIONS(285), - [anon_sym_module] = ACTIONS(285), - [anon_sym_use] = ACTIONS(285), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_DOLLAR] = ACTIONS(1274), - [anon_sym_error] = ACTIONS(285), - [anon_sym_DASH2] = ACTIONS(207), - [anon_sym_break] = ACTIONS(285), - [anon_sym_continue] = ACTIONS(285), - [anon_sym_for] = ACTIONS(285), - [anon_sym_in2] = ACTIONS(285), - [anon_sym_loop] = ACTIONS(285), - [anon_sym_make] = ACTIONS(285), - [anon_sym_while] = ACTIONS(285), - [anon_sym_do] = ACTIONS(285), - [anon_sym_if] = ACTIONS(285), - [anon_sym_else] = ACTIONS(285), - [anon_sym_match] = ACTIONS(285), - [anon_sym_RBRACE] = ACTIONS(1276), - [anon_sym_try] = ACTIONS(285), - [anon_sym_catch] = ACTIONS(285), - [anon_sym_return] = ACTIONS(285), - [anon_sym_source] = ACTIONS(285), - [anon_sym_source_DASHenv] = ACTIONS(285), - [anon_sym_register] = ACTIONS(285), - [anon_sym_hide] = ACTIONS(285), - [anon_sym_hide_DASHenv] = ACTIONS(285), - [anon_sym_overlay] = ACTIONS(285), - [anon_sym_as] = ACTIONS(285), - [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(1278), - [aux_sym__val_number_decimal_token2] = ACTIONS(1280), - [aux_sym__val_number_decimal_token3] = ACTIONS(1282), - [aux_sym__val_number_decimal_token4] = ACTIONS(1284), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym__str_single_quotes] = ACTIONS(1288), - [sym__str_back_ticks] = ACTIONS(1288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1290), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(281), + [anon_sym_let] = ACTIONS(281), + [anon_sym_let_DASHenv] = ACTIONS(281), + [anon_sym_mut] = ACTIONS(281), + [anon_sym_const] = ACTIONS(281), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [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(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(1256), + [anon_sym_def] = ACTIONS(281), + [anon_sym_export_DASHenv] = ACTIONS(281), + [anon_sym_extern] = ACTIONS(281), + [anon_sym_module] = ACTIONS(281), + [anon_sym_use] = ACTIONS(281), + [anon_sym_LPAREN] = ACTIONS(1258), + [anon_sym_DOLLAR] = ACTIONS(1260), + [anon_sym_error] = ACTIONS(281), + [anon_sym_DASH2] = ACTIONS(203), + [anon_sym_break] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(281), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(281), + [anon_sym_do] = ACTIONS(281), + [anon_sym_if] = ACTIONS(281), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(281), + [anon_sym_RBRACE] = ACTIONS(1262), + [anon_sym_try] = ACTIONS(281), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(281), + [anon_sym_source] = ACTIONS(281), + [anon_sym_source_DASHenv] = ACTIONS(281), + [anon_sym_hide] = ACTIONS(281), + [anon_sym_hide_DASHenv] = ACTIONS(281), + [anon_sym_overlay] = ACTIONS(281), + [anon_sym_as] = ACTIONS(281), + [anon_sym_PLUS2] = ACTIONS(203), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1270), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym__str_single_quotes] = ACTIONS(1274), + [sym__str_back_ticks] = ACTIONS(1274), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_register] = ACTIONS(281), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1276), }, [194] = { - [sym_cmd_identifier] = STATE(6688), - [sym_expr_parenthesized] = STATE(7753), - [sym__spread_parenthesized] = STATE(7438), - [sym__spread_variable] = STATE(7458), - [sym_val_variable] = STATE(7753), - [sym_val_number] = STATE(7753), - [sym__val_number_decimal] = STATE(3652), - [sym__val_number] = STATE(1667), - [sym_val_string] = STATE(7753), - [sym__raw_str] = STATE(3668), - [sym__str_double_quotes] = STATE(3668), - [sym_val_interpolated] = STATE(7753), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym__spread_record] = STATE(7438), - [sym_record_body] = STATE(7787), - [sym_record_entry] = STATE(6831), - [sym__record_key] = STATE(7605), + [sym_cmd_identifier] = STATE(6681), + [sym_expr_parenthesized] = STATE(7505), + [sym__spread_parenthesized] = STATE(7377), + [sym__spread_variable] = STATE(7424), + [sym_val_variable] = STATE(7505), + [sym_val_number] = STATE(7505), + [sym__val_number_decimal] = STATE(3631), + [sym__val_number] = STATE(1536), + [sym_val_string] = STATE(7505), + [sym__raw_str] = STATE(3793), + [sym__str_double_quotes] = STATE(3793), + [sym_val_interpolated] = STATE(7505), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym__spread_record] = STATE(7377), + [sym_record_body] = STATE(7508), + [sym_record_entry] = STATE(7024), + [sym__record_key] = STATE(7701), [sym_comment] = STATE(194), [aux_sym_shebang_repeat1] = STATE(200), [aux_sym_record_body_repeat1] = STATE(209), - [anon_sym_export] = ACTIONS(285), - [anon_sym_alias] = ACTIONS(285), - [anon_sym_let] = ACTIONS(285), - [anon_sym_let_DASHenv] = ACTIONS(285), - [anon_sym_mut] = ACTIONS(285), - [anon_sym_const] = ACTIONS(285), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(137), - [aux_sym_cmd_identifier_token3] = ACTIONS(137), - [aux_sym_cmd_identifier_token4] = ACTIONS(137), - [aux_sym_cmd_identifier_token5] = ACTIONS(137), - [aux_sym_cmd_identifier_token6] = ACTIONS(137), - [aux_sym_cmd_identifier_token7] = ACTIONS(137), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(137), - [aux_sym_cmd_identifier_token11] = ACTIONS(137), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(137), - [aux_sym_cmd_identifier_token17] = ACTIONS(137), - [aux_sym_cmd_identifier_token18] = ACTIONS(137), - [aux_sym_cmd_identifier_token19] = ACTIONS(137), - [aux_sym_cmd_identifier_token20] = ACTIONS(137), - [aux_sym_cmd_identifier_token21] = ACTIONS(137), - [aux_sym_cmd_identifier_token22] = ACTIONS(137), - [aux_sym_cmd_identifier_token23] = ACTIONS(137), - [aux_sym_cmd_identifier_token24] = ACTIONS(137), - [aux_sym_cmd_identifier_token25] = ACTIONS(137), - [aux_sym_cmd_identifier_token26] = ACTIONS(137), - [aux_sym_cmd_identifier_token27] = ACTIONS(137), - [aux_sym_cmd_identifier_token28] = ACTIONS(137), - [aux_sym_cmd_identifier_token29] = ACTIONS(137), - [aux_sym_cmd_identifier_token30] = ACTIONS(137), - [aux_sym_cmd_identifier_token31] = ACTIONS(137), - [aux_sym_cmd_identifier_token32] = ACTIONS(137), - [aux_sym_cmd_identifier_token33] = ACTIONS(137), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(137), - [aux_sym_cmd_identifier_token36] = ACTIONS(137), - [aux_sym_cmd_identifier_token37] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(135), - [aux_sym_cmd_identifier_token39] = ACTIONS(137), - [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [sym__newline] = ACTIONS(1270), - [anon_sym_def] = ACTIONS(285), - [anon_sym_export_DASHenv] = ACTIONS(285), - [anon_sym_extern] = ACTIONS(285), - [anon_sym_module] = ACTIONS(285), - [anon_sym_use] = ACTIONS(285), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_DOLLAR] = ACTIONS(1274), - [anon_sym_error] = ACTIONS(285), - [anon_sym_DASH2] = ACTIONS(207), - [anon_sym_break] = ACTIONS(285), - [anon_sym_continue] = ACTIONS(285), - [anon_sym_for] = ACTIONS(285), - [anon_sym_in2] = ACTIONS(285), - [anon_sym_loop] = ACTIONS(285), - [anon_sym_make] = ACTIONS(285), - [anon_sym_while] = ACTIONS(285), - [anon_sym_do] = ACTIONS(285), - [anon_sym_if] = ACTIONS(285), - [anon_sym_else] = ACTIONS(285), - [anon_sym_match] = ACTIONS(285), - [anon_sym_RBRACE] = ACTIONS(1292), - [anon_sym_try] = ACTIONS(285), - [anon_sym_catch] = ACTIONS(285), - [anon_sym_return] = ACTIONS(285), - [anon_sym_source] = ACTIONS(285), - [anon_sym_source_DASHenv] = ACTIONS(285), - [anon_sym_register] = ACTIONS(285), - [anon_sym_hide] = ACTIONS(285), - [anon_sym_hide_DASHenv] = ACTIONS(285), - [anon_sym_overlay] = ACTIONS(285), - [anon_sym_as] = ACTIONS(285), - [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(1278), - [aux_sym__val_number_decimal_token2] = ACTIONS(1280), - [aux_sym__val_number_decimal_token3] = ACTIONS(1282), - [aux_sym__val_number_decimal_token4] = ACTIONS(1284), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym__str_single_quotes] = ACTIONS(1288), - [sym__str_back_ticks] = ACTIONS(1288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1290), - }, - [195] = { - [sym_cmd_identifier] = STATE(6688), - [sym_expr_parenthesized] = STATE(7753), - [sym__spread_parenthesized] = STATE(7438), - [sym__spread_variable] = STATE(7458), - [sym_val_variable] = STATE(7753), - [sym_val_number] = STATE(7753), - [sym__val_number_decimal] = STATE(3652), - [sym__val_number] = STATE(1667), - [sym_val_string] = STATE(7753), - [sym__raw_str] = STATE(3668), - [sym__str_double_quotes] = STATE(3668), - [sym_val_interpolated] = STATE(7753), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym__spread_record] = STATE(7438), - [sym_record_body] = STATE(7752), - [sym_record_entry] = STATE(6831), - [sym__record_key] = STATE(7605), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(281), + [anon_sym_let] = ACTIONS(281), + [anon_sym_let_DASHenv] = ACTIONS(281), + [anon_sym_mut] = ACTIONS(281), + [anon_sym_const] = ACTIONS(281), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [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(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(1256), + [anon_sym_def] = ACTIONS(281), + [anon_sym_export_DASHenv] = ACTIONS(281), + [anon_sym_extern] = ACTIONS(281), + [anon_sym_module] = ACTIONS(281), + [anon_sym_use] = ACTIONS(281), + [anon_sym_LPAREN] = ACTIONS(1258), + [anon_sym_DOLLAR] = ACTIONS(1260), + [anon_sym_error] = ACTIONS(281), + [anon_sym_DASH2] = ACTIONS(203), + [anon_sym_break] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(281), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(281), + [anon_sym_do] = ACTIONS(281), + [anon_sym_if] = ACTIONS(281), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(281), + [anon_sym_RBRACE] = ACTIONS(293), + [anon_sym_try] = ACTIONS(281), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(281), + [anon_sym_source] = ACTIONS(281), + [anon_sym_source_DASHenv] = ACTIONS(281), + [anon_sym_hide] = ACTIONS(281), + [anon_sym_hide_DASHenv] = ACTIONS(281), + [anon_sym_overlay] = ACTIONS(281), + [anon_sym_as] = ACTIONS(281), + [anon_sym_PLUS2] = ACTIONS(203), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1270), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym__str_single_quotes] = ACTIONS(1274), + [sym__str_back_ticks] = ACTIONS(1274), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_register] = ACTIONS(281), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1276), + }, + [195] = { + [sym_cmd_identifier] = STATE(6681), + [sym_expr_parenthesized] = STATE(7505), + [sym__spread_parenthesized] = STATE(7377), + [sym__spread_variable] = STATE(7424), + [sym_val_variable] = STATE(7505), + [sym_val_number] = STATE(7505), + [sym__val_number_decimal] = STATE(3631), + [sym__val_number] = STATE(1536), + [sym_val_string] = STATE(7505), + [sym__raw_str] = STATE(3793), + [sym__str_double_quotes] = STATE(3793), + [sym_val_interpolated] = STATE(7505), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym__spread_record] = STATE(7377), + [sym_record_body] = STATE(7544), + [sym_record_entry] = STATE(7024), + [sym__record_key] = STATE(7701), [sym_comment] = STATE(195), [aux_sym_shebang_repeat1] = STATE(200), [aux_sym_record_body_repeat1] = STATE(209), - [anon_sym_export] = ACTIONS(285), - [anon_sym_alias] = ACTIONS(285), - [anon_sym_let] = ACTIONS(285), - [anon_sym_let_DASHenv] = ACTIONS(285), - [anon_sym_mut] = ACTIONS(285), - [anon_sym_const] = ACTIONS(285), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(137), - [aux_sym_cmd_identifier_token3] = ACTIONS(137), - [aux_sym_cmd_identifier_token4] = ACTIONS(137), - [aux_sym_cmd_identifier_token5] = ACTIONS(137), - [aux_sym_cmd_identifier_token6] = ACTIONS(137), - [aux_sym_cmd_identifier_token7] = ACTIONS(137), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(137), - [aux_sym_cmd_identifier_token11] = ACTIONS(137), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(137), - [aux_sym_cmd_identifier_token17] = ACTIONS(137), - [aux_sym_cmd_identifier_token18] = ACTIONS(137), - [aux_sym_cmd_identifier_token19] = ACTIONS(137), - [aux_sym_cmd_identifier_token20] = ACTIONS(137), - [aux_sym_cmd_identifier_token21] = ACTIONS(137), - [aux_sym_cmd_identifier_token22] = ACTIONS(137), - [aux_sym_cmd_identifier_token23] = ACTIONS(137), - [aux_sym_cmd_identifier_token24] = ACTIONS(137), - [aux_sym_cmd_identifier_token25] = ACTIONS(137), - [aux_sym_cmd_identifier_token26] = ACTIONS(137), - [aux_sym_cmd_identifier_token27] = ACTIONS(137), - [aux_sym_cmd_identifier_token28] = ACTIONS(137), - [aux_sym_cmd_identifier_token29] = ACTIONS(137), - [aux_sym_cmd_identifier_token30] = ACTIONS(137), - [aux_sym_cmd_identifier_token31] = ACTIONS(137), - [aux_sym_cmd_identifier_token32] = ACTIONS(137), - [aux_sym_cmd_identifier_token33] = ACTIONS(137), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(137), - [aux_sym_cmd_identifier_token36] = ACTIONS(137), - [aux_sym_cmd_identifier_token37] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(135), - [aux_sym_cmd_identifier_token39] = ACTIONS(137), - [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [sym__newline] = ACTIONS(1270), - [anon_sym_def] = ACTIONS(285), - [anon_sym_export_DASHenv] = ACTIONS(285), - [anon_sym_extern] = ACTIONS(285), - [anon_sym_module] = ACTIONS(285), - [anon_sym_use] = ACTIONS(285), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_DOLLAR] = ACTIONS(1274), - [anon_sym_error] = ACTIONS(285), - [anon_sym_DASH2] = ACTIONS(207), - [anon_sym_break] = ACTIONS(285), - [anon_sym_continue] = ACTIONS(285), - [anon_sym_for] = ACTIONS(285), - [anon_sym_in2] = ACTIONS(285), - [anon_sym_loop] = ACTIONS(285), - [anon_sym_make] = ACTIONS(285), - [anon_sym_while] = ACTIONS(285), - [anon_sym_do] = ACTIONS(285), - [anon_sym_if] = ACTIONS(285), - [anon_sym_else] = ACTIONS(285), - [anon_sym_match] = ACTIONS(285), - [anon_sym_RBRACE] = ACTIONS(329), - [anon_sym_try] = ACTIONS(285), - [anon_sym_catch] = ACTIONS(285), - [anon_sym_return] = ACTIONS(285), - [anon_sym_source] = ACTIONS(285), - [anon_sym_source_DASHenv] = ACTIONS(285), - [anon_sym_register] = ACTIONS(285), - [anon_sym_hide] = ACTIONS(285), - [anon_sym_hide_DASHenv] = ACTIONS(285), - [anon_sym_overlay] = ACTIONS(285), - [anon_sym_as] = ACTIONS(285), - [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(1278), - [aux_sym__val_number_decimal_token2] = ACTIONS(1280), - [aux_sym__val_number_decimal_token3] = ACTIONS(1282), - [aux_sym__val_number_decimal_token4] = ACTIONS(1284), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym__str_single_quotes] = ACTIONS(1288), - [sym__str_back_ticks] = ACTIONS(1288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1290), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(281), + [anon_sym_let] = ACTIONS(281), + [anon_sym_let_DASHenv] = ACTIONS(281), + [anon_sym_mut] = ACTIONS(281), + [anon_sym_const] = ACTIONS(281), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [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(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(1256), + [anon_sym_def] = ACTIONS(281), + [anon_sym_export_DASHenv] = ACTIONS(281), + [anon_sym_extern] = ACTIONS(281), + [anon_sym_module] = ACTIONS(281), + [anon_sym_use] = ACTIONS(281), + [anon_sym_LPAREN] = ACTIONS(1258), + [anon_sym_DOLLAR] = ACTIONS(1260), + [anon_sym_error] = ACTIONS(281), + [anon_sym_DASH2] = ACTIONS(203), + [anon_sym_break] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(281), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(281), + [anon_sym_do] = ACTIONS(281), + [anon_sym_if] = ACTIONS(281), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(281), + [anon_sym_RBRACE] = ACTIONS(1278), + [anon_sym_try] = ACTIONS(281), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(281), + [anon_sym_source] = ACTIONS(281), + [anon_sym_source_DASHenv] = ACTIONS(281), + [anon_sym_hide] = ACTIONS(281), + [anon_sym_hide_DASHenv] = ACTIONS(281), + [anon_sym_overlay] = ACTIONS(281), + [anon_sym_as] = ACTIONS(281), + [anon_sym_PLUS2] = ACTIONS(203), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1270), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym__str_single_quotes] = ACTIONS(1274), + [sym__str_back_ticks] = ACTIONS(1274), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_register] = ACTIONS(281), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1276), }, [196] = { - [sym_cmd_identifier] = STATE(6688), - [sym_expr_parenthesized] = STATE(7753), - [sym__spread_parenthesized] = STATE(7438), - [sym__spread_variable] = STATE(7458), - [sym_val_variable] = STATE(7753), - [sym_val_number] = STATE(7753), - [sym__val_number_decimal] = STATE(3652), - [sym__val_number] = STATE(1667), - [sym_val_string] = STATE(7753), - [sym__raw_str] = STATE(3668), - [sym__str_double_quotes] = STATE(3668), - [sym_val_interpolated] = STATE(7753), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym__spread_record] = STATE(7438), - [sym_record_body] = STATE(7578), - [sym_record_entry] = STATE(6831), - [sym__record_key] = STATE(7605), + [sym_cmd_identifier] = STATE(6681), + [sym_expr_parenthesized] = STATE(7505), + [sym__spread_parenthesized] = STATE(7377), + [sym__spread_variable] = STATE(7424), + [sym_val_variable] = STATE(7505), + [sym_val_number] = STATE(7505), + [sym__val_number_decimal] = STATE(3631), + [sym__val_number] = STATE(1536), + [sym_val_string] = STATE(7505), + [sym__raw_str] = STATE(3793), + [sym__str_double_quotes] = STATE(3793), + [sym_val_interpolated] = STATE(7505), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym__spread_record] = STATE(7377), + [sym_record_body] = STATE(7500), + [sym_record_entry] = STATE(7024), + [sym__record_key] = STATE(7701), [sym_comment] = STATE(196), [aux_sym_shebang_repeat1] = STATE(200), [aux_sym_record_body_repeat1] = STATE(209), - [anon_sym_export] = ACTIONS(285), - [anon_sym_alias] = ACTIONS(285), - [anon_sym_let] = ACTIONS(285), - [anon_sym_let_DASHenv] = ACTIONS(285), - [anon_sym_mut] = ACTIONS(285), - [anon_sym_const] = ACTIONS(285), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(137), - [aux_sym_cmd_identifier_token3] = ACTIONS(137), - [aux_sym_cmd_identifier_token4] = ACTIONS(137), - [aux_sym_cmd_identifier_token5] = ACTIONS(137), - [aux_sym_cmd_identifier_token6] = ACTIONS(137), - [aux_sym_cmd_identifier_token7] = ACTIONS(137), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(137), - [aux_sym_cmd_identifier_token11] = ACTIONS(137), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(137), - [aux_sym_cmd_identifier_token17] = ACTIONS(137), - [aux_sym_cmd_identifier_token18] = ACTIONS(137), - [aux_sym_cmd_identifier_token19] = ACTIONS(137), - [aux_sym_cmd_identifier_token20] = ACTIONS(137), - [aux_sym_cmd_identifier_token21] = ACTIONS(137), - [aux_sym_cmd_identifier_token22] = ACTIONS(137), - [aux_sym_cmd_identifier_token23] = ACTIONS(137), - [aux_sym_cmd_identifier_token24] = ACTIONS(137), - [aux_sym_cmd_identifier_token25] = ACTIONS(137), - [aux_sym_cmd_identifier_token26] = ACTIONS(137), - [aux_sym_cmd_identifier_token27] = ACTIONS(137), - [aux_sym_cmd_identifier_token28] = ACTIONS(137), - [aux_sym_cmd_identifier_token29] = ACTIONS(137), - [aux_sym_cmd_identifier_token30] = ACTIONS(137), - [aux_sym_cmd_identifier_token31] = ACTIONS(137), - [aux_sym_cmd_identifier_token32] = ACTIONS(137), - [aux_sym_cmd_identifier_token33] = ACTIONS(137), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(137), - [aux_sym_cmd_identifier_token36] = ACTIONS(137), - [aux_sym_cmd_identifier_token37] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(135), - [aux_sym_cmd_identifier_token39] = ACTIONS(137), - [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [sym__newline] = ACTIONS(1270), - [anon_sym_def] = ACTIONS(285), - [anon_sym_export_DASHenv] = ACTIONS(285), - [anon_sym_extern] = ACTIONS(285), - [anon_sym_module] = ACTIONS(285), - [anon_sym_use] = ACTIONS(285), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_DOLLAR] = ACTIONS(1274), - [anon_sym_error] = ACTIONS(285), - [anon_sym_DASH2] = ACTIONS(207), - [anon_sym_break] = ACTIONS(285), - [anon_sym_continue] = ACTIONS(285), - [anon_sym_for] = ACTIONS(285), - [anon_sym_in2] = ACTIONS(285), - [anon_sym_loop] = ACTIONS(285), - [anon_sym_make] = ACTIONS(285), - [anon_sym_while] = ACTIONS(285), - [anon_sym_do] = ACTIONS(285), - [anon_sym_if] = ACTIONS(285), - [anon_sym_else] = ACTIONS(285), - [anon_sym_match] = ACTIONS(285), - [anon_sym_RBRACE] = ACTIONS(319), - [anon_sym_try] = ACTIONS(285), - [anon_sym_catch] = ACTIONS(285), - [anon_sym_return] = ACTIONS(285), - [anon_sym_source] = ACTIONS(285), - [anon_sym_source_DASHenv] = ACTIONS(285), - [anon_sym_register] = ACTIONS(285), - [anon_sym_hide] = ACTIONS(285), - [anon_sym_hide_DASHenv] = ACTIONS(285), - [anon_sym_overlay] = ACTIONS(285), - [anon_sym_as] = ACTIONS(285), - [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(1278), - [aux_sym__val_number_decimal_token2] = ACTIONS(1280), - [aux_sym__val_number_decimal_token3] = ACTIONS(1282), - [aux_sym__val_number_decimal_token4] = ACTIONS(1284), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym__str_single_quotes] = ACTIONS(1288), - [sym__str_back_ticks] = ACTIONS(1288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1290), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(281), + [anon_sym_let] = ACTIONS(281), + [anon_sym_let_DASHenv] = ACTIONS(281), + [anon_sym_mut] = ACTIONS(281), + [anon_sym_const] = ACTIONS(281), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [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(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(1256), + [anon_sym_def] = ACTIONS(281), + [anon_sym_export_DASHenv] = ACTIONS(281), + [anon_sym_extern] = ACTIONS(281), + [anon_sym_module] = ACTIONS(281), + [anon_sym_use] = ACTIONS(281), + [anon_sym_LPAREN] = ACTIONS(1258), + [anon_sym_DOLLAR] = ACTIONS(1260), + [anon_sym_error] = ACTIONS(281), + [anon_sym_DASH2] = ACTIONS(203), + [anon_sym_break] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(281), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(281), + [anon_sym_do] = ACTIONS(281), + [anon_sym_if] = ACTIONS(281), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(281), + [anon_sym_RBRACE] = ACTIONS(325), + [anon_sym_try] = ACTIONS(281), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(281), + [anon_sym_source] = ACTIONS(281), + [anon_sym_source_DASHenv] = ACTIONS(281), + [anon_sym_hide] = ACTIONS(281), + [anon_sym_hide_DASHenv] = ACTIONS(281), + [anon_sym_overlay] = ACTIONS(281), + [anon_sym_as] = ACTIONS(281), + [anon_sym_PLUS2] = ACTIONS(203), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1270), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym__str_single_quotes] = ACTIONS(1274), + [sym__str_back_ticks] = ACTIONS(1274), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_register] = ACTIONS(281), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1276), }, [197] = { - [sym_cmd_identifier] = STATE(6688), - [sym_expr_parenthesized] = STATE(7753), - [sym__spread_parenthesized] = STATE(7438), - [sym__spread_variable] = STATE(7458), - [sym_val_variable] = STATE(7753), - [sym_val_number] = STATE(7753), - [sym__val_number_decimal] = STATE(3652), - [sym__val_number] = STATE(1667), - [sym_val_string] = STATE(7753), - [sym__raw_str] = STATE(3668), - [sym__str_double_quotes] = STATE(3668), - [sym_val_interpolated] = STATE(7753), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym__spread_record] = STATE(7438), - [sym_record_body] = STATE(7662), - [sym_record_entry] = STATE(6831), - [sym__record_key] = STATE(7605), + [sym_cmd_identifier] = STATE(6681), + [sym_expr_parenthesized] = STATE(7505), + [sym__spread_parenthesized] = STATE(7377), + [sym__spread_variable] = STATE(7424), + [sym_val_variable] = STATE(7505), + [sym_val_number] = STATE(7505), + [sym__val_number_decimal] = STATE(3631), + [sym__val_number] = STATE(1536), + [sym_val_string] = STATE(7505), + [sym__raw_str] = STATE(3793), + [sym__str_double_quotes] = STATE(3793), + [sym_val_interpolated] = STATE(7505), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym__spread_record] = STATE(7377), + [sym_record_body] = STATE(7650), + [sym_record_entry] = STATE(7024), + [sym__record_key] = STATE(7701), [sym_comment] = STATE(197), [aux_sym_shebang_repeat1] = STATE(200), [aux_sym_record_body_repeat1] = STATE(209), - [anon_sym_export] = ACTIONS(285), - [anon_sym_alias] = ACTIONS(285), - [anon_sym_let] = ACTIONS(285), - [anon_sym_let_DASHenv] = ACTIONS(285), - [anon_sym_mut] = ACTIONS(285), - [anon_sym_const] = ACTIONS(285), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(137), - [aux_sym_cmd_identifier_token3] = ACTIONS(137), - [aux_sym_cmd_identifier_token4] = ACTIONS(137), - [aux_sym_cmd_identifier_token5] = ACTIONS(137), - [aux_sym_cmd_identifier_token6] = ACTIONS(137), - [aux_sym_cmd_identifier_token7] = ACTIONS(137), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(137), - [aux_sym_cmd_identifier_token11] = ACTIONS(137), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(137), - [aux_sym_cmd_identifier_token17] = ACTIONS(137), - [aux_sym_cmd_identifier_token18] = ACTIONS(137), - [aux_sym_cmd_identifier_token19] = ACTIONS(137), - [aux_sym_cmd_identifier_token20] = ACTIONS(137), - [aux_sym_cmd_identifier_token21] = ACTIONS(137), - [aux_sym_cmd_identifier_token22] = ACTIONS(137), - [aux_sym_cmd_identifier_token23] = ACTIONS(137), - [aux_sym_cmd_identifier_token24] = ACTIONS(137), - [aux_sym_cmd_identifier_token25] = ACTIONS(137), - [aux_sym_cmd_identifier_token26] = ACTIONS(137), - [aux_sym_cmd_identifier_token27] = ACTIONS(137), - [aux_sym_cmd_identifier_token28] = ACTIONS(137), - [aux_sym_cmd_identifier_token29] = ACTIONS(137), - [aux_sym_cmd_identifier_token30] = ACTIONS(137), - [aux_sym_cmd_identifier_token31] = ACTIONS(137), - [aux_sym_cmd_identifier_token32] = ACTIONS(137), - [aux_sym_cmd_identifier_token33] = ACTIONS(137), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(137), - [aux_sym_cmd_identifier_token36] = ACTIONS(137), - [aux_sym_cmd_identifier_token37] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(135), - [aux_sym_cmd_identifier_token39] = ACTIONS(137), - [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [sym__newline] = ACTIONS(1270), - [anon_sym_def] = ACTIONS(285), - [anon_sym_export_DASHenv] = ACTIONS(285), - [anon_sym_extern] = ACTIONS(285), - [anon_sym_module] = ACTIONS(285), - [anon_sym_use] = ACTIONS(285), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_DOLLAR] = ACTIONS(1274), - [anon_sym_error] = ACTIONS(285), - [anon_sym_DASH2] = ACTIONS(207), - [anon_sym_break] = ACTIONS(285), - [anon_sym_continue] = ACTIONS(285), - [anon_sym_for] = ACTIONS(285), - [anon_sym_in2] = ACTIONS(285), - [anon_sym_loop] = ACTIONS(285), - [anon_sym_make] = ACTIONS(285), - [anon_sym_while] = ACTIONS(285), - [anon_sym_do] = ACTIONS(285), - [anon_sym_if] = ACTIONS(285), - [anon_sym_else] = ACTIONS(285), - [anon_sym_match] = ACTIONS(285), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_try] = ACTIONS(285), - [anon_sym_catch] = ACTIONS(285), - [anon_sym_return] = ACTIONS(285), - [anon_sym_source] = ACTIONS(285), - [anon_sym_source_DASHenv] = ACTIONS(285), - [anon_sym_register] = ACTIONS(285), - [anon_sym_hide] = ACTIONS(285), - [anon_sym_hide_DASHenv] = ACTIONS(285), - [anon_sym_overlay] = ACTIONS(285), - [anon_sym_as] = ACTIONS(285), - [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(1278), - [aux_sym__val_number_decimal_token2] = ACTIONS(1280), - [aux_sym__val_number_decimal_token3] = ACTIONS(1282), - [aux_sym__val_number_decimal_token4] = ACTIONS(1284), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym__str_single_quotes] = ACTIONS(1288), - [sym__str_back_ticks] = ACTIONS(1288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1290), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(281), + [anon_sym_let] = ACTIONS(281), + [anon_sym_let_DASHenv] = ACTIONS(281), + [anon_sym_mut] = ACTIONS(281), + [anon_sym_const] = ACTIONS(281), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [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(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(1256), + [anon_sym_def] = ACTIONS(281), + [anon_sym_export_DASHenv] = ACTIONS(281), + [anon_sym_extern] = ACTIONS(281), + [anon_sym_module] = ACTIONS(281), + [anon_sym_use] = ACTIONS(281), + [anon_sym_LPAREN] = ACTIONS(1258), + [anon_sym_DOLLAR] = ACTIONS(1260), + [anon_sym_error] = ACTIONS(281), + [anon_sym_DASH2] = ACTIONS(203), + [anon_sym_break] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(281), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(281), + [anon_sym_do] = ACTIONS(281), + [anon_sym_if] = ACTIONS(281), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(281), + [anon_sym_RBRACE] = ACTIONS(1280), + [anon_sym_try] = ACTIONS(281), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(281), + [anon_sym_source] = ACTIONS(281), + [anon_sym_source_DASHenv] = ACTIONS(281), + [anon_sym_hide] = ACTIONS(281), + [anon_sym_hide_DASHenv] = ACTIONS(281), + [anon_sym_overlay] = ACTIONS(281), + [anon_sym_as] = ACTIONS(281), + [anon_sym_PLUS2] = ACTIONS(203), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1270), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym__str_single_quotes] = ACTIONS(1274), + [sym__str_back_ticks] = ACTIONS(1274), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_register] = ACTIONS(281), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1276), }, [198] = { [sym_comment] = STATE(198), - [aux_sym_shebang_repeat1] = STATE(198), - [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(1296), - [aux_sym_cmd_identifier_token2] = ACTIONS(1298), - [aux_sym_cmd_identifier_token3] = ACTIONS(1298), - [aux_sym_cmd_identifier_token4] = ACTIONS(1298), - [aux_sym_cmd_identifier_token5] = ACTIONS(1298), - [aux_sym_cmd_identifier_token6] = ACTIONS(1298), - [aux_sym_cmd_identifier_token7] = ACTIONS(1298), - [aux_sym_cmd_identifier_token8] = ACTIONS(1296), - [aux_sym_cmd_identifier_token9] = ACTIONS(1296), - [aux_sym_cmd_identifier_token10] = ACTIONS(1298), - [aux_sym_cmd_identifier_token11] = ACTIONS(1298), - [aux_sym_cmd_identifier_token12] = ACTIONS(1296), - [aux_sym_cmd_identifier_token13] = ACTIONS(1296), - [aux_sym_cmd_identifier_token14] = ACTIONS(1296), - [aux_sym_cmd_identifier_token15] = ACTIONS(1296), - [aux_sym_cmd_identifier_token16] = ACTIONS(1298), - [aux_sym_cmd_identifier_token17] = ACTIONS(1298), - [aux_sym_cmd_identifier_token18] = ACTIONS(1296), - [aux_sym_cmd_identifier_token19] = ACTIONS(1298), - [aux_sym_cmd_identifier_token20] = ACTIONS(1298), - [aux_sym_cmd_identifier_token21] = ACTIONS(1298), - [aux_sym_cmd_identifier_token22] = ACTIONS(1298), - [aux_sym_cmd_identifier_token23] = ACTIONS(1298), - [aux_sym_cmd_identifier_token24] = ACTIONS(1298), - [aux_sym_cmd_identifier_token25] = ACTIONS(1298), - [aux_sym_cmd_identifier_token26] = ACTIONS(1298), - [aux_sym_cmd_identifier_token27] = ACTIONS(1298), - [aux_sym_cmd_identifier_token28] = ACTIONS(1298), - [aux_sym_cmd_identifier_token29] = ACTIONS(1298), - [aux_sym_cmd_identifier_token30] = ACTIONS(1298), - [aux_sym_cmd_identifier_token31] = ACTIONS(1298), - [aux_sym_cmd_identifier_token32] = ACTIONS(1296), - [aux_sym_cmd_identifier_token33] = ACTIONS(1298), - [aux_sym_cmd_identifier_token34] = ACTIONS(1296), - [aux_sym_cmd_identifier_token35] = ACTIONS(1298), - [aux_sym_cmd_identifier_token36] = ACTIONS(1298), - [aux_sym_cmd_identifier_token37] = ACTIONS(1298), - [aux_sym_cmd_identifier_token38] = ACTIONS(1296), - [aux_sym_cmd_identifier_token39] = ACTIONS(1298), - [aux_sym_cmd_identifier_token40] = ACTIONS(1298), - [sym__newline] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1298), - [anon_sym_PIPE] = ACTIONS(1298), - [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_LBRACK] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1298), - [anon_sym_DOLLAR] = ACTIONS(1296), - [anon_sym_error] = ACTIONS(1296), - [anon_sym_DASH2] = ACTIONS(1296), - [anon_sym_break] = ACTIONS(1296), - [anon_sym_continue] = ACTIONS(1296), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_in2] = 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_LBRACE] = ACTIONS(1298), - [anon_sym_DOT_DOT] = 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_as] = ACTIONS(1296), - [anon_sym_where] = ACTIONS(1298), - [aux_sym_expr_unary_token1] = ACTIONS(1298), - [anon_sym_PLUS2] = ACTIONS(1296), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1298), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1298), - [anon_sym_DOT_DOT_LT] = ACTIONS(1298), - [anon_sym_null] = ACTIONS(1296), - [anon_sym_true] = ACTIONS(1296), - [anon_sym_false] = ACTIONS(1296), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1298), - [aux_sym__val_number_decimal_token1] = ACTIONS(1296), - [aux_sym__val_number_decimal_token2] = ACTIONS(1298), - [aux_sym__val_number_decimal_token3] = ACTIONS(1298), - [aux_sym__val_number_decimal_token4] = ACTIONS(1298), - [aux_sym__val_number_token1] = ACTIONS(1298), - [aux_sym__val_number_token2] = ACTIONS(1298), - [aux_sym__val_number_token3] = ACTIONS(1298), - [aux_sym__val_number_token4] = ACTIONS(1296), - [aux_sym__val_number_token5] = ACTIONS(1296), - [aux_sym__val_number_token6] = ACTIONS(1296), - [anon_sym_0b] = ACTIONS(1296), - [anon_sym_0o] = ACTIONS(1296), - [anon_sym_0x] = ACTIONS(1296), - [sym_val_date] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1298), - [sym__str_single_quotes] = ACTIONS(1298), - [sym__str_back_ticks] = ACTIONS(1298), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1298), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1298), - [aux_sym_env_var_token1] = ACTIONS(1296), - [anon_sym_CARET] = ACTIONS(1298), - [aux_sym_command_token1] = ACTIONS(1298), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1298), + [anon_sym_export] = ACTIONS(1282), + [anon_sym_alias] = ACTIONS(1282), + [anon_sym_let] = ACTIONS(1282), + [anon_sym_let_DASHenv] = ACTIONS(1282), + [anon_sym_mut] = ACTIONS(1282), + [anon_sym_const] = ACTIONS(1282), + [aux_sym_cmd_identifier_token1] = ACTIONS(1282), + [aux_sym_cmd_identifier_token2] = ACTIONS(1285), + [aux_sym_cmd_identifier_token3] = ACTIONS(1285), + [aux_sym_cmd_identifier_token4] = ACTIONS(1285), + [aux_sym_cmd_identifier_token5] = ACTIONS(1285), + [aux_sym_cmd_identifier_token6] = ACTIONS(1285), + [aux_sym_cmd_identifier_token7] = ACTIONS(1285), + [aux_sym_cmd_identifier_token8] = ACTIONS(1282), + [aux_sym_cmd_identifier_token9] = ACTIONS(1282), + [aux_sym_cmd_identifier_token10] = ACTIONS(1285), + [aux_sym_cmd_identifier_token11] = ACTIONS(1285), + [aux_sym_cmd_identifier_token12] = ACTIONS(1282), + [aux_sym_cmd_identifier_token13] = ACTIONS(1282), + [aux_sym_cmd_identifier_token14] = ACTIONS(1282), + [aux_sym_cmd_identifier_token15] = ACTIONS(1282), + [aux_sym_cmd_identifier_token16] = ACTIONS(1285), + [aux_sym_cmd_identifier_token17] = ACTIONS(1285), + [aux_sym_cmd_identifier_token18] = ACTIONS(1282), + [aux_sym_cmd_identifier_token19] = ACTIONS(1285), + [aux_sym_cmd_identifier_token20] = ACTIONS(1285), + [aux_sym_cmd_identifier_token21] = ACTIONS(1285), + [aux_sym_cmd_identifier_token22] = ACTIONS(1285), + [aux_sym_cmd_identifier_token23] = ACTIONS(1285), + [aux_sym_cmd_identifier_token24] = ACTIONS(1285), + [aux_sym_cmd_identifier_token25] = ACTIONS(1285), + [aux_sym_cmd_identifier_token26] = ACTIONS(1285), + [aux_sym_cmd_identifier_token27] = ACTIONS(1285), + [aux_sym_cmd_identifier_token28] = ACTIONS(1285), + [aux_sym_cmd_identifier_token29] = ACTIONS(1285), + [aux_sym_cmd_identifier_token30] = ACTIONS(1285), + [aux_sym_cmd_identifier_token31] = ACTIONS(1285), + [aux_sym_cmd_identifier_token32] = ACTIONS(1282), + [aux_sym_cmd_identifier_token33] = ACTIONS(1285), + [aux_sym_cmd_identifier_token34] = ACTIONS(1282), + [aux_sym_cmd_identifier_token35] = ACTIONS(1285), + [aux_sym_cmd_identifier_token36] = ACTIONS(1285), + [aux_sym_cmd_identifier_token37] = ACTIONS(1285), + [aux_sym_cmd_identifier_token38] = ACTIONS(1282), + [aux_sym_cmd_identifier_token39] = ACTIONS(1285), + [aux_sym_cmd_identifier_token40] = ACTIONS(1285), + [sym__newline] = ACTIONS(1285), + [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1288), + [anon_sym_def] = ACTIONS(1282), + [anon_sym_export_DASHenv] = ACTIONS(1282), + [anon_sym_extern] = ACTIONS(1282), + [anon_sym_module] = ACTIONS(1282), + [anon_sym_use] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_LPAREN] = ACTIONS(1285), + [anon_sym_DOLLAR] = ACTIONS(1282), + [anon_sym_error] = ACTIONS(1282), + [anon_sym_DASH2] = ACTIONS(1282), + [anon_sym_break] = ACTIONS(1282), + [anon_sym_continue] = ACTIONS(1282), + [anon_sym_for] = ACTIONS(1282), + [anon_sym_in2] = ACTIONS(1290), + [anon_sym_loop] = ACTIONS(1282), + [anon_sym_make] = ACTIONS(1290), + [anon_sym_while] = ACTIONS(1282), + [anon_sym_do] = ACTIONS(1282), + [anon_sym_if] = ACTIONS(1282), + [anon_sym_else] = ACTIONS(1290), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1282), + [anon_sym_try] = ACTIONS(1282), + [anon_sym_catch] = ACTIONS(1290), + [anon_sym_return] = ACTIONS(1282), + [anon_sym_source] = ACTIONS(1282), + [anon_sym_source_DASHenv] = ACTIONS(1282), + [anon_sym_hide] = ACTIONS(1282), + [anon_sym_hide_DASHenv] = ACTIONS(1282), + [anon_sym_overlay] = ACTIONS(1282), + [anon_sym_as] = ACTIONS(1290), + [anon_sym_where] = ACTIONS(1285), + [aux_sym_expr_unary_token1] = ACTIONS(1285), + [anon_sym_PLUS2] = ACTIONS(1290), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1288), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_DOT_DOT_LT] = ACTIONS(1285), + [anon_sym_null] = ACTIONS(1282), + [anon_sym_true] = ACTIONS(1282), + [anon_sym_false] = ACTIONS(1282), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1288), + [aux_sym__val_number_decimal_token1] = ACTIONS(1282), + [aux_sym__val_number_decimal_token2] = ACTIONS(1285), + [aux_sym__val_number_decimal_token3] = ACTIONS(1285), + [aux_sym__val_number_decimal_token4] = ACTIONS(1285), + [aux_sym__val_number_token1] = ACTIONS(1285), + [aux_sym__val_number_token2] = ACTIONS(1285), + [aux_sym__val_number_token3] = ACTIONS(1285), + [aux_sym__val_number_token4] = ACTIONS(1282), + [aux_sym__val_number_token5] = ACTIONS(1282), + [aux_sym__val_number_token6] = ACTIONS(1282), + [anon_sym_0b] = ACTIONS(1282), + [anon_sym_0o] = ACTIONS(1282), + [anon_sym_0x] = ACTIONS(1282), + [sym_val_date] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym__str_single_quotes] = ACTIONS(1285), + [sym__str_back_ticks] = ACTIONS(1285), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1285), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1285), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1288), + [anon_sym_register] = ACTIONS(1290), + [aux_sym_env_var_token1] = ACTIONS(1282), + [anon_sym_CARET] = ACTIONS(1285), + [aux_sym_command_token1] = ACTIONS(1285), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1285), }, [199] = { [sym_comment] = STATE(199), - [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(1303), - [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(1303), - [aux_sym_cmd_identifier_token9] = ACTIONS(1303), - [aux_sym_cmd_identifier_token10] = ACTIONS(1306), - [aux_sym_cmd_identifier_token11] = ACTIONS(1306), - [aux_sym_cmd_identifier_token12] = ACTIONS(1303), - [aux_sym_cmd_identifier_token13] = ACTIONS(1303), - [aux_sym_cmd_identifier_token14] = ACTIONS(1303), - [aux_sym_cmd_identifier_token15] = ACTIONS(1303), - [aux_sym_cmd_identifier_token16] = ACTIONS(1306), - [aux_sym_cmd_identifier_token17] = ACTIONS(1306), - [aux_sym_cmd_identifier_token18] = ACTIONS(1303), - [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(1303), - [aux_sym_cmd_identifier_token33] = ACTIONS(1306), - [aux_sym_cmd_identifier_token34] = ACTIONS(1303), - [aux_sym_cmd_identifier_token35] = ACTIONS(1306), - [aux_sym_cmd_identifier_token36] = ACTIONS(1306), - [aux_sym_cmd_identifier_token37] = ACTIONS(1306), - [aux_sym_cmd_identifier_token38] = ACTIONS(1303), - [aux_sym_cmd_identifier_token39] = ACTIONS(1306), - [aux_sym_cmd_identifier_token40] = ACTIONS(1306), - [sym__newline] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1306), - [anon_sym_PIPE] = ACTIONS(1309), - [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_LBRACK] = ACTIONS(1306), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_DOLLAR] = ACTIONS(1303), - [anon_sym_error] = ACTIONS(1303), - [anon_sym_DASH2] = ACTIONS(1303), - [anon_sym_break] = ACTIONS(1303), - [anon_sym_continue] = ACTIONS(1303), - [anon_sym_for] = ACTIONS(1303), - [anon_sym_in2] = ACTIONS(1311), - [anon_sym_loop] = ACTIONS(1303), - [anon_sym_make] = ACTIONS(1311), - [anon_sym_while] = ACTIONS(1303), - [anon_sym_do] = ACTIONS(1303), - [anon_sym_if] = ACTIONS(1303), - [anon_sym_else] = ACTIONS(1311), - [anon_sym_match] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(1313), - [anon_sym_DOT_DOT] = ACTIONS(1303), - [anon_sym_try] = ACTIONS(1303), - [anon_sym_catch] = ACTIONS(1311), - [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_as] = ACTIONS(1311), - [anon_sym_where] = ACTIONS(1306), - [aux_sym_expr_unary_token1] = ACTIONS(1306), - [anon_sym_PLUS2] = ACTIONS(1311), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1306), - [anon_sym_DOT_DOT_LT] = ACTIONS(1306), - [anon_sym_null] = ACTIONS(1303), - [anon_sym_true] = ACTIONS(1303), - [anon_sym_false] = ACTIONS(1303), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1309), - [aux_sym__val_number_decimal_token1] = ACTIONS(1303), - [aux_sym__val_number_decimal_token2] = ACTIONS(1306), - [aux_sym__val_number_decimal_token3] = ACTIONS(1306), - [aux_sym__val_number_decimal_token4] = ACTIONS(1306), - [aux_sym__val_number_token1] = ACTIONS(1306), - [aux_sym__val_number_token2] = ACTIONS(1306), - [aux_sym__val_number_token3] = ACTIONS(1306), - [aux_sym__val_number_token4] = ACTIONS(1303), - [aux_sym__val_number_token5] = ACTIONS(1303), - [aux_sym__val_number_token6] = ACTIONS(1303), - [anon_sym_0b] = ACTIONS(1303), - [anon_sym_0o] = ACTIONS(1303), - [anon_sym_0x] = ACTIONS(1303), - [sym_val_date] = ACTIONS(1306), - [anon_sym_DQUOTE] = ACTIONS(1306), - [sym__str_single_quotes] = ACTIONS(1306), - [sym__str_back_ticks] = ACTIONS(1306), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1306), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1306), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1309), - [aux_sym_env_var_token1] = ACTIONS(1303), - [anon_sym_CARET] = ACTIONS(1306), - [aux_sym_command_token1] = ACTIONS(1306), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1306), + [aux_sym_shebang_repeat1] = STATE(199), + [anon_sym_export] = ACTIONS(1294), + [anon_sym_alias] = ACTIONS(1294), + [anon_sym_let] = ACTIONS(1294), + [anon_sym_let_DASHenv] = ACTIONS(1294), + [anon_sym_mut] = ACTIONS(1294), + [anon_sym_const] = ACTIONS(1294), + [aux_sym_cmd_identifier_token1] = ACTIONS(1294), + [aux_sym_cmd_identifier_token2] = ACTIONS(1296), + [aux_sym_cmd_identifier_token3] = ACTIONS(1296), + [aux_sym_cmd_identifier_token4] = ACTIONS(1296), + [aux_sym_cmd_identifier_token5] = ACTIONS(1296), + [aux_sym_cmd_identifier_token6] = ACTIONS(1296), + [aux_sym_cmd_identifier_token7] = ACTIONS(1296), + [aux_sym_cmd_identifier_token8] = ACTIONS(1294), + [aux_sym_cmd_identifier_token9] = ACTIONS(1294), + [aux_sym_cmd_identifier_token10] = ACTIONS(1296), + [aux_sym_cmd_identifier_token11] = ACTIONS(1296), + [aux_sym_cmd_identifier_token12] = ACTIONS(1294), + [aux_sym_cmd_identifier_token13] = ACTIONS(1294), + [aux_sym_cmd_identifier_token14] = ACTIONS(1294), + [aux_sym_cmd_identifier_token15] = ACTIONS(1294), + [aux_sym_cmd_identifier_token16] = ACTIONS(1296), + [aux_sym_cmd_identifier_token17] = ACTIONS(1296), + [aux_sym_cmd_identifier_token18] = ACTIONS(1294), + [aux_sym_cmd_identifier_token19] = ACTIONS(1296), + [aux_sym_cmd_identifier_token20] = ACTIONS(1296), + [aux_sym_cmd_identifier_token21] = ACTIONS(1296), + [aux_sym_cmd_identifier_token22] = ACTIONS(1296), + [aux_sym_cmd_identifier_token23] = ACTIONS(1296), + [aux_sym_cmd_identifier_token24] = ACTIONS(1296), + [aux_sym_cmd_identifier_token25] = ACTIONS(1296), + [aux_sym_cmd_identifier_token26] = ACTIONS(1296), + [aux_sym_cmd_identifier_token27] = ACTIONS(1296), + [aux_sym_cmd_identifier_token28] = ACTIONS(1296), + [aux_sym_cmd_identifier_token29] = ACTIONS(1296), + [aux_sym_cmd_identifier_token30] = ACTIONS(1296), + [aux_sym_cmd_identifier_token31] = ACTIONS(1296), + [aux_sym_cmd_identifier_token32] = ACTIONS(1294), + [aux_sym_cmd_identifier_token33] = ACTIONS(1296), + [aux_sym_cmd_identifier_token34] = ACTIONS(1294), + [aux_sym_cmd_identifier_token35] = ACTIONS(1296), + [aux_sym_cmd_identifier_token36] = ACTIONS(1296), + [aux_sym_cmd_identifier_token37] = ACTIONS(1296), + [aux_sym_cmd_identifier_token38] = ACTIONS(1294), + [aux_sym_cmd_identifier_token39] = ACTIONS(1296), + [aux_sym_cmd_identifier_token40] = ACTIONS(1296), + [sym__newline] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1296), + [anon_sym_PIPE] = ACTIONS(1296), + [anon_sym_def] = ACTIONS(1294), + [anon_sym_export_DASHenv] = ACTIONS(1294), + [anon_sym_extern] = ACTIONS(1294), + [anon_sym_module] = ACTIONS(1294), + [anon_sym_use] = ACTIONS(1294), + [anon_sym_LBRACK] = ACTIONS(1296), + [anon_sym_LPAREN] = ACTIONS(1296), + [anon_sym_DOLLAR] = ACTIONS(1294), + [anon_sym_error] = ACTIONS(1294), + [anon_sym_DASH2] = ACTIONS(1294), + [anon_sym_break] = ACTIONS(1294), + [anon_sym_continue] = ACTIONS(1294), + [anon_sym_for] = ACTIONS(1294), + [anon_sym_in2] = ACTIONS(1294), + [anon_sym_loop] = ACTIONS(1294), + [anon_sym_make] = ACTIONS(1294), + [anon_sym_while] = ACTIONS(1294), + [anon_sym_do] = ACTIONS(1294), + [anon_sym_if] = ACTIONS(1294), + [anon_sym_else] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1294), + [anon_sym_LBRACE] = ACTIONS(1296), + [anon_sym_DOT_DOT] = ACTIONS(1294), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_catch] = ACTIONS(1294), + [anon_sym_return] = ACTIONS(1294), + [anon_sym_source] = ACTIONS(1294), + [anon_sym_source_DASHenv] = ACTIONS(1294), + [anon_sym_hide] = ACTIONS(1294), + [anon_sym_hide_DASHenv] = ACTIONS(1294), + [anon_sym_overlay] = ACTIONS(1294), + [anon_sym_as] = ACTIONS(1294), + [anon_sym_where] = ACTIONS(1296), + [aux_sym_expr_unary_token1] = ACTIONS(1296), + [anon_sym_PLUS2] = ACTIONS(1294), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1296), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1296), + [anon_sym_DOT_DOT_LT] = ACTIONS(1296), + [anon_sym_null] = ACTIONS(1294), + [anon_sym_true] = ACTIONS(1294), + [anon_sym_false] = ACTIONS(1294), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1296), + [aux_sym__val_number_decimal_token1] = ACTIONS(1294), + [aux_sym__val_number_decimal_token2] = ACTIONS(1296), + [aux_sym__val_number_decimal_token3] = ACTIONS(1296), + [aux_sym__val_number_decimal_token4] = ACTIONS(1296), + [aux_sym__val_number_token1] = ACTIONS(1296), + [aux_sym__val_number_token2] = ACTIONS(1296), + [aux_sym__val_number_token3] = ACTIONS(1296), + [aux_sym__val_number_token4] = ACTIONS(1294), + [aux_sym__val_number_token5] = ACTIONS(1294), + [aux_sym__val_number_token6] = ACTIONS(1294), + [anon_sym_0b] = ACTIONS(1294), + [anon_sym_0o] = ACTIONS(1294), + [anon_sym_0x] = ACTIONS(1294), + [sym_val_date] = ACTIONS(1296), + [anon_sym_DQUOTE] = ACTIONS(1296), + [sym__str_single_quotes] = ACTIONS(1296), + [sym__str_back_ticks] = ACTIONS(1296), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1296), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1296), + [anon_sym_register] = ACTIONS(1294), + [aux_sym_env_var_token1] = ACTIONS(1294), + [anon_sym_CARET] = ACTIONS(1296), + [aux_sym_command_token1] = ACTIONS(1296), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1296), }, [200] = { - [sym_cmd_identifier] = STATE(6688), - [sym_expr_parenthesized] = STATE(7753), - [sym__spread_parenthesized] = STATE(7438), - [sym__spread_variable] = STATE(7458), - [sym_val_variable] = STATE(7753), - [sym_val_number] = STATE(7753), - [sym__val_number_decimal] = STATE(3652), - [sym__val_number] = STATE(1667), - [sym_val_string] = STATE(7753), - [sym__raw_str] = STATE(3668), - [sym__str_double_quotes] = STATE(3668), - [sym_val_interpolated] = STATE(7753), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym__spread_record] = STATE(7438), - [sym_record_entry] = STATE(7218), - [sym__record_key] = STATE(7605), + [sym_cmd_identifier] = STATE(6681), + [sym_expr_parenthesized] = STATE(7505), + [sym__spread_parenthesized] = STATE(7377), + [sym__spread_variable] = STATE(7424), + [sym_val_variable] = STATE(7505), + [sym_val_number] = STATE(7505), + [sym__val_number_decimal] = STATE(3631), + [sym__val_number] = STATE(1536), + [sym_val_string] = STATE(7505), + [sym__raw_str] = STATE(3793), + [sym__str_double_quotes] = STATE(3793), + [sym_val_interpolated] = STATE(7505), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym__spread_record] = STATE(7377), + [sym_record_entry] = STATE(6717), + [sym__record_key] = STATE(7701), [sym_comment] = STATE(200), - [aux_sym_shebang_repeat1] = STATE(689), + [aux_sym_shebang_repeat1] = STATE(729), [aux_sym_record_body_repeat1] = STATE(208), - [anon_sym_export] = ACTIONS(285), - [anon_sym_alias] = ACTIONS(285), - [anon_sym_let] = ACTIONS(285), - [anon_sym_let_DASHenv] = ACTIONS(285), - [anon_sym_mut] = ACTIONS(285), - [anon_sym_const] = ACTIONS(285), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(137), - [aux_sym_cmd_identifier_token3] = ACTIONS(137), - [aux_sym_cmd_identifier_token4] = ACTIONS(137), - [aux_sym_cmd_identifier_token5] = ACTIONS(137), - [aux_sym_cmd_identifier_token6] = ACTIONS(137), - [aux_sym_cmd_identifier_token7] = ACTIONS(137), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(137), - [aux_sym_cmd_identifier_token11] = ACTIONS(137), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(137), - [aux_sym_cmd_identifier_token17] = ACTIONS(137), - [aux_sym_cmd_identifier_token18] = ACTIONS(137), - [aux_sym_cmd_identifier_token19] = ACTIONS(137), - [aux_sym_cmd_identifier_token20] = ACTIONS(137), - [aux_sym_cmd_identifier_token21] = ACTIONS(137), - [aux_sym_cmd_identifier_token22] = ACTIONS(137), - [aux_sym_cmd_identifier_token23] = ACTIONS(137), - [aux_sym_cmd_identifier_token24] = ACTIONS(137), - [aux_sym_cmd_identifier_token25] = ACTIONS(137), - [aux_sym_cmd_identifier_token26] = ACTIONS(137), - [aux_sym_cmd_identifier_token27] = ACTIONS(137), - [aux_sym_cmd_identifier_token28] = ACTIONS(137), - [aux_sym_cmd_identifier_token29] = ACTIONS(137), - [aux_sym_cmd_identifier_token30] = ACTIONS(137), - [aux_sym_cmd_identifier_token31] = ACTIONS(137), - [aux_sym_cmd_identifier_token32] = ACTIONS(137), - [aux_sym_cmd_identifier_token33] = ACTIONS(137), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(137), - [aux_sym_cmd_identifier_token36] = ACTIONS(137), - [aux_sym_cmd_identifier_token37] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(135), - [aux_sym_cmd_identifier_token39] = ACTIONS(137), - [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [sym__newline] = ACTIONS(1270), - [anon_sym_def] = ACTIONS(285), - [anon_sym_export_DASHenv] = ACTIONS(285), - [anon_sym_extern] = ACTIONS(285), - [anon_sym_module] = ACTIONS(285), - [anon_sym_use] = ACTIONS(285), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_DOLLAR] = ACTIONS(1274), - [anon_sym_error] = ACTIONS(285), - [anon_sym_DASH2] = ACTIONS(207), - [anon_sym_break] = ACTIONS(285), - [anon_sym_continue] = ACTIONS(285), - [anon_sym_for] = ACTIONS(285), - [anon_sym_in2] = ACTIONS(285), - [anon_sym_loop] = ACTIONS(285), - [anon_sym_make] = ACTIONS(285), - [anon_sym_while] = ACTIONS(285), - [anon_sym_do] = ACTIONS(285), - [anon_sym_if] = ACTIONS(285), - [anon_sym_else] = ACTIONS(285), - [anon_sym_match] = ACTIONS(285), - [anon_sym_try] = ACTIONS(285), - [anon_sym_catch] = ACTIONS(285), - [anon_sym_return] = ACTIONS(285), - [anon_sym_source] = ACTIONS(285), - [anon_sym_source_DASHenv] = ACTIONS(285), - [anon_sym_register] = ACTIONS(285), - [anon_sym_hide] = ACTIONS(285), - [anon_sym_hide_DASHenv] = ACTIONS(285), - [anon_sym_overlay] = ACTIONS(285), - [anon_sym_as] = ACTIONS(285), - [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(1278), - [aux_sym__val_number_decimal_token2] = ACTIONS(1280), - [aux_sym__val_number_decimal_token3] = ACTIONS(1282), - [aux_sym__val_number_decimal_token4] = ACTIONS(1284), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym__str_single_quotes] = ACTIONS(1288), - [sym__str_back_ticks] = ACTIONS(1288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1290), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(281), + [anon_sym_let] = ACTIONS(281), + [anon_sym_let_DASHenv] = ACTIONS(281), + [anon_sym_mut] = ACTIONS(281), + [anon_sym_const] = ACTIONS(281), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [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(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(1256), + [anon_sym_def] = ACTIONS(281), + [anon_sym_export_DASHenv] = ACTIONS(281), + [anon_sym_extern] = ACTIONS(281), + [anon_sym_module] = ACTIONS(281), + [anon_sym_use] = ACTIONS(281), + [anon_sym_LPAREN] = ACTIONS(1258), + [anon_sym_DOLLAR] = ACTIONS(1260), + [anon_sym_error] = ACTIONS(281), + [anon_sym_DASH2] = ACTIONS(203), + [anon_sym_break] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(281), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(281), + [anon_sym_do] = ACTIONS(281), + [anon_sym_if] = ACTIONS(281), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(281), + [anon_sym_try] = ACTIONS(281), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(281), + [anon_sym_source] = ACTIONS(281), + [anon_sym_source_DASHenv] = ACTIONS(281), + [anon_sym_hide] = ACTIONS(281), + [anon_sym_hide_DASHenv] = ACTIONS(281), + [anon_sym_overlay] = ACTIONS(281), + [anon_sym_as] = ACTIONS(281), + [anon_sym_PLUS2] = ACTIONS(203), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1270), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym__str_single_quotes] = ACTIONS(1274), + [sym__str_back_ticks] = ACTIONS(1274), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_register] = ACTIONS(281), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1276), }, [201] = { [sym_comment] = STATE(201), - [anon_sym_export] = ACTIONS(1311), - [anon_sym_alias] = ACTIONS(1311), - [anon_sym_let] = ACTIONS(1311), - [anon_sym_let_DASHenv] = ACTIONS(1311), - [anon_sym_mut] = ACTIONS(1311), - [anon_sym_const] = ACTIONS(1311), - [aux_sym_cmd_identifier_token1] = ACTIONS(1311), - [aux_sym_cmd_identifier_token2] = ACTIONS(1309), - [aux_sym_cmd_identifier_token3] = ACTIONS(1309), - [aux_sym_cmd_identifier_token4] = ACTIONS(1309), - [aux_sym_cmd_identifier_token5] = ACTIONS(1309), - [aux_sym_cmd_identifier_token6] = ACTIONS(1309), - [aux_sym_cmd_identifier_token7] = ACTIONS(1309), - [aux_sym_cmd_identifier_token8] = ACTIONS(1311), - [aux_sym_cmd_identifier_token9] = ACTIONS(1311), - [aux_sym_cmd_identifier_token10] = ACTIONS(1309), - [aux_sym_cmd_identifier_token11] = ACTIONS(1309), - [aux_sym_cmd_identifier_token12] = ACTIONS(1311), - [aux_sym_cmd_identifier_token13] = ACTIONS(1311), - [aux_sym_cmd_identifier_token14] = ACTIONS(1311), - [aux_sym_cmd_identifier_token15] = ACTIONS(1311), - [aux_sym_cmd_identifier_token16] = ACTIONS(1309), - [aux_sym_cmd_identifier_token17] = ACTIONS(1309), - [aux_sym_cmd_identifier_token18] = ACTIONS(1311), - [aux_sym_cmd_identifier_token19] = ACTIONS(1309), - [aux_sym_cmd_identifier_token20] = ACTIONS(1309), - [aux_sym_cmd_identifier_token21] = ACTIONS(1309), - [aux_sym_cmd_identifier_token22] = ACTIONS(1309), - [aux_sym_cmd_identifier_token23] = ACTIONS(1309), - [aux_sym_cmd_identifier_token24] = ACTIONS(1309), - [aux_sym_cmd_identifier_token25] = ACTIONS(1309), - [aux_sym_cmd_identifier_token26] = ACTIONS(1309), - [aux_sym_cmd_identifier_token27] = ACTIONS(1309), - [aux_sym_cmd_identifier_token28] = ACTIONS(1309), - [aux_sym_cmd_identifier_token29] = ACTIONS(1309), - [aux_sym_cmd_identifier_token30] = ACTIONS(1309), - [aux_sym_cmd_identifier_token31] = ACTIONS(1309), - [aux_sym_cmd_identifier_token32] = ACTIONS(1311), - [aux_sym_cmd_identifier_token33] = ACTIONS(1309), - [aux_sym_cmd_identifier_token34] = ACTIONS(1311), - [aux_sym_cmd_identifier_token35] = ACTIONS(1309), - [aux_sym_cmd_identifier_token36] = ACTIONS(1309), - [aux_sym_cmd_identifier_token37] = ACTIONS(1309), - [aux_sym_cmd_identifier_token38] = ACTIONS(1311), - [aux_sym_cmd_identifier_token39] = ACTIONS(1309), - [aux_sym_cmd_identifier_token40] = ACTIONS(1309), - [sym__newline] = ACTIONS(1309), - [anon_sym_SEMI] = ACTIONS(1309), - [anon_sym_PIPE] = ACTIONS(1309), - [anon_sym_def] = ACTIONS(1311), - [anon_sym_export_DASHenv] = ACTIONS(1311), - [anon_sym_extern] = ACTIONS(1311), - [anon_sym_module] = ACTIONS(1311), - [anon_sym_use] = ACTIONS(1311), - [anon_sym_LBRACK] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(1309), - [anon_sym_DOLLAR] = ACTIONS(1311), - [anon_sym_error] = ACTIONS(1311), - [anon_sym_DASH2] = ACTIONS(1311), - [anon_sym_break] = ACTIONS(1311), - [anon_sym_continue] = ACTIONS(1311), - [anon_sym_for] = ACTIONS(1311), - [anon_sym_in2] = ACTIONS(1311), - [anon_sym_loop] = ACTIONS(1311), - [anon_sym_make] = ACTIONS(1311), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_do] = ACTIONS(1311), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_else] = ACTIONS(1311), - [anon_sym_match] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_DOT_DOT] = ACTIONS(1311), - [anon_sym_try] = ACTIONS(1311), - [anon_sym_catch] = ACTIONS(1311), - [anon_sym_return] = ACTIONS(1311), - [anon_sym_source] = ACTIONS(1311), - [anon_sym_source_DASHenv] = ACTIONS(1311), - [anon_sym_register] = ACTIONS(1311), - [anon_sym_hide] = ACTIONS(1311), - [anon_sym_hide_DASHenv] = ACTIONS(1311), - [anon_sym_overlay] = ACTIONS(1311), - [anon_sym_as] = ACTIONS(1311), - [anon_sym_where] = ACTIONS(1309), - [aux_sym_expr_unary_token1] = ACTIONS(1309), - [anon_sym_PLUS2] = ACTIONS(1311), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1309), - [anon_sym_DOT_DOT_LT] = ACTIONS(1309), - [anon_sym_null] = ACTIONS(1311), - [anon_sym_true] = ACTIONS(1311), - [anon_sym_false] = ACTIONS(1311), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1309), - [aux_sym__val_number_decimal_token1] = ACTIONS(1311), - [aux_sym__val_number_decimal_token2] = ACTIONS(1309), - [aux_sym__val_number_decimal_token3] = ACTIONS(1309), - [aux_sym__val_number_decimal_token4] = ACTIONS(1309), - [aux_sym__val_number_token1] = ACTIONS(1309), - [aux_sym__val_number_token2] = ACTIONS(1309), - [aux_sym__val_number_token3] = ACTIONS(1309), - [aux_sym__val_number_token4] = ACTIONS(1311), - [aux_sym__val_number_token5] = ACTIONS(1311), - [aux_sym__val_number_token6] = ACTIONS(1311), - [anon_sym_0b] = ACTIONS(1311), - [anon_sym_0o] = ACTIONS(1311), - [anon_sym_0x] = ACTIONS(1311), - [sym_val_date] = ACTIONS(1309), - [anon_sym_DQUOTE] = ACTIONS(1309), - [sym__str_single_quotes] = ACTIONS(1309), - [sym__str_back_ticks] = ACTIONS(1309), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1309), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1309), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1309), - [aux_sym_env_var_token1] = ACTIONS(1311), - [anon_sym_CARET] = ACTIONS(1309), - [aux_sym_command_token1] = ACTIONS(1309), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1309), + [anon_sym_export] = ACTIONS(1290), + [anon_sym_alias] = ACTIONS(1290), + [anon_sym_let] = ACTIONS(1290), + [anon_sym_let_DASHenv] = ACTIONS(1290), + [anon_sym_mut] = ACTIONS(1290), + [anon_sym_const] = ACTIONS(1290), + [aux_sym_cmd_identifier_token1] = ACTIONS(1290), + [aux_sym_cmd_identifier_token2] = ACTIONS(1288), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [aux_sym_cmd_identifier_token6] = ACTIONS(1288), + [aux_sym_cmd_identifier_token7] = ACTIONS(1288), + [aux_sym_cmd_identifier_token8] = ACTIONS(1290), + [aux_sym_cmd_identifier_token9] = ACTIONS(1290), + [aux_sym_cmd_identifier_token10] = ACTIONS(1288), + [aux_sym_cmd_identifier_token11] = ACTIONS(1288), + [aux_sym_cmd_identifier_token12] = ACTIONS(1290), + [aux_sym_cmd_identifier_token13] = ACTIONS(1290), + [aux_sym_cmd_identifier_token14] = ACTIONS(1290), + [aux_sym_cmd_identifier_token15] = ACTIONS(1290), + [aux_sym_cmd_identifier_token16] = ACTIONS(1288), + [aux_sym_cmd_identifier_token17] = ACTIONS(1288), + [aux_sym_cmd_identifier_token18] = ACTIONS(1290), + [aux_sym_cmd_identifier_token19] = ACTIONS(1288), + [aux_sym_cmd_identifier_token20] = ACTIONS(1288), + [aux_sym_cmd_identifier_token21] = ACTIONS(1288), + [aux_sym_cmd_identifier_token22] = ACTIONS(1288), + [aux_sym_cmd_identifier_token23] = ACTIONS(1288), + [aux_sym_cmd_identifier_token24] = ACTIONS(1288), + [aux_sym_cmd_identifier_token25] = ACTIONS(1288), + [aux_sym_cmd_identifier_token26] = ACTIONS(1288), + [aux_sym_cmd_identifier_token27] = ACTIONS(1288), + [aux_sym_cmd_identifier_token28] = ACTIONS(1288), + [aux_sym_cmd_identifier_token29] = ACTIONS(1288), + [aux_sym_cmd_identifier_token30] = ACTIONS(1288), + [aux_sym_cmd_identifier_token31] = ACTIONS(1288), + [aux_sym_cmd_identifier_token32] = ACTIONS(1290), + [aux_sym_cmd_identifier_token33] = ACTIONS(1288), + [aux_sym_cmd_identifier_token34] = ACTIONS(1290), + [aux_sym_cmd_identifier_token35] = ACTIONS(1288), + [aux_sym_cmd_identifier_token36] = ACTIONS(1288), + [aux_sym_cmd_identifier_token37] = ACTIONS(1288), + [aux_sym_cmd_identifier_token38] = ACTIONS(1290), + [aux_sym_cmd_identifier_token39] = ACTIONS(1288), + [aux_sym_cmd_identifier_token40] = ACTIONS(1288), + [sym__newline] = ACTIONS(1288), + [anon_sym_SEMI] = ACTIONS(1288), + [anon_sym_PIPE] = ACTIONS(1288), + [anon_sym_def] = ACTIONS(1290), + [anon_sym_export_DASHenv] = ACTIONS(1290), + [anon_sym_extern] = ACTIONS(1290), + [anon_sym_module] = ACTIONS(1290), + [anon_sym_use] = ACTIONS(1290), + [anon_sym_LBRACK] = ACTIONS(1288), + [anon_sym_LPAREN] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1290), + [anon_sym_error] = ACTIONS(1290), + [anon_sym_DASH2] = ACTIONS(1290), + [anon_sym_break] = ACTIONS(1290), + [anon_sym_continue] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1290), + [anon_sym_in2] = ACTIONS(1290), + [anon_sym_loop] = ACTIONS(1290), + [anon_sym_make] = ACTIONS(1290), + [anon_sym_while] = ACTIONS(1290), + [anon_sym_do] = ACTIONS(1290), + [anon_sym_if] = ACTIONS(1290), + [anon_sym_else] = ACTIONS(1290), + [anon_sym_match] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1288), + [anon_sym_DOT_DOT] = ACTIONS(1290), + [anon_sym_try] = ACTIONS(1290), + [anon_sym_catch] = ACTIONS(1290), + [anon_sym_return] = ACTIONS(1290), + [anon_sym_source] = ACTIONS(1290), + [anon_sym_source_DASHenv] = ACTIONS(1290), + [anon_sym_hide] = ACTIONS(1290), + [anon_sym_hide_DASHenv] = ACTIONS(1290), + [anon_sym_overlay] = ACTIONS(1290), + [anon_sym_as] = ACTIONS(1290), + [anon_sym_where] = ACTIONS(1288), + [aux_sym_expr_unary_token1] = ACTIONS(1288), + [anon_sym_PLUS2] = ACTIONS(1290), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1288), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1288), + [anon_sym_DOT_DOT_LT] = ACTIONS(1288), + [anon_sym_null] = ACTIONS(1290), + [anon_sym_true] = ACTIONS(1290), + [anon_sym_false] = ACTIONS(1290), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1288), + [aux_sym__val_number_decimal_token1] = ACTIONS(1290), + [aux_sym__val_number_decimal_token2] = ACTIONS(1288), + [aux_sym__val_number_decimal_token3] = ACTIONS(1288), + [aux_sym__val_number_decimal_token4] = ACTIONS(1288), + [aux_sym__val_number_token1] = ACTIONS(1288), + [aux_sym__val_number_token2] = ACTIONS(1288), + [aux_sym__val_number_token3] = ACTIONS(1288), + [aux_sym__val_number_token4] = ACTIONS(1290), + [aux_sym__val_number_token5] = ACTIONS(1290), + [aux_sym__val_number_token6] = ACTIONS(1290), + [anon_sym_0b] = ACTIONS(1290), + [anon_sym_0o] = ACTIONS(1290), + [anon_sym_0x] = ACTIONS(1290), + [sym_val_date] = ACTIONS(1288), + [anon_sym_DQUOTE] = ACTIONS(1288), + [sym__str_single_quotes] = ACTIONS(1288), + [sym__str_back_ticks] = ACTIONS(1288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1288), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1288), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1288), + [anon_sym_register] = ACTIONS(1290), + [aux_sym_env_var_token1] = ACTIONS(1290), + [anon_sym_CARET] = ACTIONS(1288), + [aux_sym_command_token1] = ACTIONS(1288), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1288), }, [202] = { - [sym_cmd_identifier] = STATE(6253), - [sym_expr_parenthesized] = STATE(7674), - [sym__spread_parenthesized] = STATE(731), - [sym__spread_variable] = STATE(732), - [sym_val_variable] = STATE(652), - [sym_val_number] = STATE(7674), - [sym__val_number_decimal] = STATE(3652), - [sym__val_number] = STATE(1667), - [sym_val_string] = STATE(7674), - [sym__raw_str] = STATE(3668), - [sym__str_double_quotes] = STATE(3668), - [sym_val_interpolated] = STATE(7674), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym__spread_record] = STATE(731), - [sym_record_entry] = STATE(707), - [sym__record_key] = STATE(7600), + [sym_cmd_identifier] = STATE(6247), + [sym_expr_parenthesized] = STATE(7697), + [sym__spread_parenthesized] = STATE(681), + [sym__spread_variable] = STATE(682), + [sym_val_variable] = STATE(602), + [sym_val_number] = STATE(7697), + [sym__val_number_decimal] = STATE(3631), + [sym__val_number] = STATE(1536), + [sym_val_string] = STATE(7697), + [sym__raw_str] = STATE(3793), + [sym__str_double_quotes] = STATE(3793), + [sym_val_interpolated] = STATE(7697), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym__spread_record] = STATE(681), + [sym_record_entry] = STATE(702), + [sym__record_key] = STATE(7592), [sym_comment] = STATE(202), - [aux_sym__match_pattern_record_repeat1] = STATE(206), - [anon_sym_export] = ACTIONS(1315), - [anon_sym_alias] = ACTIONS(1315), - [anon_sym_let] = ACTIONS(1315), - [anon_sym_let_DASHenv] = ACTIONS(1315), - [anon_sym_mut] = ACTIONS(1315), - [anon_sym_const] = ACTIONS(1315), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(137), - [aux_sym_cmd_identifier_token3] = ACTIONS(137), - [aux_sym_cmd_identifier_token4] = ACTIONS(137), - [aux_sym_cmd_identifier_token5] = ACTIONS(137), - [aux_sym_cmd_identifier_token6] = ACTIONS(137), - [aux_sym_cmd_identifier_token7] = ACTIONS(137), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(137), - [aux_sym_cmd_identifier_token11] = ACTIONS(137), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(137), - [aux_sym_cmd_identifier_token17] = ACTIONS(137), - [aux_sym_cmd_identifier_token18] = ACTIONS(137), - [aux_sym_cmd_identifier_token19] = ACTIONS(137), - [aux_sym_cmd_identifier_token20] = ACTIONS(137), - [aux_sym_cmd_identifier_token21] = ACTIONS(137), - [aux_sym_cmd_identifier_token22] = ACTIONS(137), - [aux_sym_cmd_identifier_token23] = ACTIONS(137), - [aux_sym_cmd_identifier_token24] = ACTIONS(137), - [aux_sym_cmd_identifier_token25] = ACTIONS(137), - [aux_sym_cmd_identifier_token26] = ACTIONS(137), - [aux_sym_cmd_identifier_token27] = ACTIONS(137), - [aux_sym_cmd_identifier_token28] = ACTIONS(137), - [aux_sym_cmd_identifier_token29] = ACTIONS(137), - [aux_sym_cmd_identifier_token30] = ACTIONS(137), - [aux_sym_cmd_identifier_token31] = ACTIONS(137), - [aux_sym_cmd_identifier_token32] = ACTIONS(137), - [aux_sym_cmd_identifier_token33] = ACTIONS(137), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(137), - [aux_sym_cmd_identifier_token36] = ACTIONS(137), - [aux_sym_cmd_identifier_token37] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(135), - [aux_sym_cmd_identifier_token39] = ACTIONS(137), - [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [anon_sym_def] = ACTIONS(1315), - [anon_sym_export_DASHenv] = ACTIONS(1315), - [anon_sym_extern] = ACTIONS(1315), - [anon_sym_module] = ACTIONS(1315), - [anon_sym_use] = ACTIONS(1315), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_DOLLAR] = ACTIONS(1317), - [anon_sym_error] = ACTIONS(1315), - [anon_sym_DASH2] = ACTIONS(207), - [anon_sym_break] = ACTIONS(1315), - [anon_sym_continue] = ACTIONS(1315), - [anon_sym_for] = ACTIONS(1315), - [anon_sym_in2] = ACTIONS(1315), - [anon_sym_loop] = ACTIONS(1315), - [anon_sym_make] = ACTIONS(1315), - [anon_sym_while] = ACTIONS(1315), - [anon_sym_do] = ACTIONS(1315), - [anon_sym_if] = ACTIONS(1315), - [anon_sym_else] = ACTIONS(1315), - [anon_sym_match] = ACTIONS(1315), + [aux_sym__match_pattern_record_repeat1] = STATE(202), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_alias] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_let_DASHenv] = ACTIONS(1301), + [anon_sym_mut] = ACTIONS(1301), + [anon_sym_const] = ACTIONS(1301), + [aux_sym_cmd_identifier_token1] = ACTIONS(1304), + [aux_sym_cmd_identifier_token2] = ACTIONS(1307), + [aux_sym_cmd_identifier_token3] = ACTIONS(1307), + [aux_sym_cmd_identifier_token4] = ACTIONS(1307), + [aux_sym_cmd_identifier_token5] = ACTIONS(1307), + [aux_sym_cmd_identifier_token6] = ACTIONS(1307), + [aux_sym_cmd_identifier_token7] = ACTIONS(1307), + [aux_sym_cmd_identifier_token8] = ACTIONS(1304), + [aux_sym_cmd_identifier_token9] = ACTIONS(1304), + [aux_sym_cmd_identifier_token10] = ACTIONS(1307), + [aux_sym_cmd_identifier_token11] = ACTIONS(1307), + [aux_sym_cmd_identifier_token12] = ACTIONS(1304), + [aux_sym_cmd_identifier_token13] = ACTIONS(1304), + [aux_sym_cmd_identifier_token14] = ACTIONS(1304), + [aux_sym_cmd_identifier_token15] = ACTIONS(1304), + [aux_sym_cmd_identifier_token16] = ACTIONS(1307), + [aux_sym_cmd_identifier_token17] = ACTIONS(1307), + [aux_sym_cmd_identifier_token18] = ACTIONS(1307), + [aux_sym_cmd_identifier_token19] = ACTIONS(1307), + [aux_sym_cmd_identifier_token20] = ACTIONS(1307), + [aux_sym_cmd_identifier_token21] = ACTIONS(1307), + [aux_sym_cmd_identifier_token22] = ACTIONS(1307), + [aux_sym_cmd_identifier_token23] = ACTIONS(1307), + [aux_sym_cmd_identifier_token24] = ACTIONS(1307), + [aux_sym_cmd_identifier_token25] = ACTIONS(1307), + [aux_sym_cmd_identifier_token26] = ACTIONS(1307), + [aux_sym_cmd_identifier_token27] = ACTIONS(1307), + [aux_sym_cmd_identifier_token28] = ACTIONS(1307), + [aux_sym_cmd_identifier_token29] = ACTIONS(1307), + [aux_sym_cmd_identifier_token30] = ACTIONS(1307), + [aux_sym_cmd_identifier_token31] = ACTIONS(1307), + [aux_sym_cmd_identifier_token32] = ACTIONS(1307), + [aux_sym_cmd_identifier_token33] = ACTIONS(1307), + [aux_sym_cmd_identifier_token34] = ACTIONS(1304), + [aux_sym_cmd_identifier_token35] = ACTIONS(1307), + [aux_sym_cmd_identifier_token36] = ACTIONS(1307), + [aux_sym_cmd_identifier_token37] = ACTIONS(1307), + [aux_sym_cmd_identifier_token38] = ACTIONS(1304), + [aux_sym_cmd_identifier_token39] = ACTIONS(1307), + [aux_sym_cmd_identifier_token40] = ACTIONS(1307), + [anon_sym_def] = ACTIONS(1301), + [anon_sym_export_DASHenv] = ACTIONS(1301), + [anon_sym_extern] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_use] = ACTIONS(1301), + [anon_sym_LPAREN] = ACTIONS(1310), + [anon_sym_DOLLAR] = ACTIONS(1313), + [anon_sym_error] = ACTIONS(1301), + [anon_sym_DASH2] = ACTIONS(1316), + [anon_sym_break] = ACTIONS(1301), + [anon_sym_continue] = ACTIONS(1301), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_in2] = ACTIONS(1301), + [anon_sym_loop] = ACTIONS(1301), + [anon_sym_make] = ACTIONS(1301), + [anon_sym_while] = ACTIONS(1301), + [anon_sym_do] = ACTIONS(1301), + [anon_sym_if] = ACTIONS(1301), + [anon_sym_else] = ACTIONS(1301), + [anon_sym_match] = ACTIONS(1301), [anon_sym_RBRACE] = ACTIONS(1319), - [anon_sym_try] = ACTIONS(1315), - [anon_sym_catch] = ACTIONS(1315), - [anon_sym_return] = ACTIONS(1315), - [anon_sym_source] = ACTIONS(1315), - [anon_sym_source_DASHenv] = ACTIONS(1315), - [anon_sym_register] = ACTIONS(1315), - [anon_sym_hide] = ACTIONS(1315), - [anon_sym_hide_DASHenv] = ACTIONS(1315), - [anon_sym_overlay] = ACTIONS(1315), - [anon_sym_as] = ACTIONS(1315), - [anon_sym_PLUS2] = ACTIONS(207), + [anon_sym_try] = ACTIONS(1301), + [anon_sym_catch] = ACTIONS(1301), + [anon_sym_return] = ACTIONS(1301), + [anon_sym_source] = ACTIONS(1301), + [anon_sym_source_DASHenv] = ACTIONS(1301), + [anon_sym_hide] = ACTIONS(1301), + [anon_sym_hide_DASHenv] = ACTIONS(1301), + [anon_sym_overlay] = ACTIONS(1301), + [anon_sym_as] = ACTIONS(1301), + [anon_sym_PLUS2] = ACTIONS(1316), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1321), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1323), - [aux_sym__val_number_decimal_token1] = ACTIONS(1278), - [aux_sym__val_number_decimal_token2] = ACTIONS(1280), - [aux_sym__val_number_decimal_token3] = ACTIONS(1282), - [aux_sym__val_number_decimal_token4] = ACTIONS(1284), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym__str_single_quotes] = ACTIONS(1288), - [sym__str_back_ticks] = ACTIONS(1288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1325), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1290), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1324), + [aux_sym__val_number_decimal_token1] = ACTIONS(1327), + [aux_sym__val_number_decimal_token2] = ACTIONS(1330), + [aux_sym__val_number_decimal_token3] = ACTIONS(1333), + [aux_sym__val_number_decimal_token4] = ACTIONS(1336), + [aux_sym__val_number_token1] = ACTIONS(1339), + [aux_sym__val_number_token2] = ACTIONS(1339), + [aux_sym__val_number_token3] = ACTIONS(1339), + [aux_sym__val_number_token4] = ACTIONS(1342), + [aux_sym__val_number_token5] = ACTIONS(1342), + [aux_sym__val_number_token6] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1345), + [sym__str_single_quotes] = ACTIONS(1348), + [sym__str_back_ticks] = ACTIONS(1348), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1351), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1354), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1357), + [anon_sym_register] = ACTIONS(1301), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1360), }, [203] = { - [sym_cmd_identifier] = STATE(6253), - [sym_expr_parenthesized] = STATE(7674), - [sym__spread_parenthesized] = STATE(731), - [sym__spread_variable] = STATE(732), - [sym_val_variable] = STATE(652), - [sym_val_number] = STATE(7674), - [sym__val_number_decimal] = STATE(3652), - [sym__val_number] = STATE(1667), - [sym_val_string] = STATE(7674), - [sym__raw_str] = STATE(3668), - [sym__str_double_quotes] = STATE(3668), - [sym_val_interpolated] = STATE(7674), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym__spread_record] = STATE(731), - [sym_record_entry] = STATE(707), - [sym__record_key] = STATE(7600), + [sym_cmd_identifier] = STATE(6247), + [sym_expr_parenthesized] = STATE(7697), + [sym__spread_parenthesized] = STATE(681), + [sym__spread_variable] = STATE(682), + [sym_val_variable] = STATE(602), + [sym_val_number] = STATE(7697), + [sym__val_number_decimal] = STATE(3631), + [sym__val_number] = STATE(1536), + [sym_val_string] = STATE(7697), + [sym__raw_str] = STATE(3793), + [sym__str_double_quotes] = STATE(3793), + [sym_val_interpolated] = STATE(7697), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym__spread_record] = STATE(681), + [sym_record_entry] = STATE(702), + [sym__record_key] = STATE(7592), [sym_comment] = STATE(203), - [aux_sym__match_pattern_record_repeat1] = STATE(204), - [anon_sym_export] = ACTIONS(1315), - [anon_sym_alias] = ACTIONS(1315), - [anon_sym_let] = ACTIONS(1315), - [anon_sym_let_DASHenv] = ACTIONS(1315), - [anon_sym_mut] = ACTIONS(1315), - [anon_sym_const] = ACTIONS(1315), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(137), - [aux_sym_cmd_identifier_token3] = ACTIONS(137), - [aux_sym_cmd_identifier_token4] = ACTIONS(137), - [aux_sym_cmd_identifier_token5] = ACTIONS(137), - [aux_sym_cmd_identifier_token6] = ACTIONS(137), - [aux_sym_cmd_identifier_token7] = ACTIONS(137), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(137), - [aux_sym_cmd_identifier_token11] = ACTIONS(137), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(137), - [aux_sym_cmd_identifier_token17] = ACTIONS(137), - [aux_sym_cmd_identifier_token18] = ACTIONS(137), - [aux_sym_cmd_identifier_token19] = ACTIONS(137), - [aux_sym_cmd_identifier_token20] = ACTIONS(137), - [aux_sym_cmd_identifier_token21] = ACTIONS(137), - [aux_sym_cmd_identifier_token22] = ACTIONS(137), - [aux_sym_cmd_identifier_token23] = ACTIONS(137), - [aux_sym_cmd_identifier_token24] = ACTIONS(137), - [aux_sym_cmd_identifier_token25] = ACTIONS(137), - [aux_sym_cmd_identifier_token26] = ACTIONS(137), - [aux_sym_cmd_identifier_token27] = ACTIONS(137), - [aux_sym_cmd_identifier_token28] = ACTIONS(137), - [aux_sym_cmd_identifier_token29] = ACTIONS(137), - [aux_sym_cmd_identifier_token30] = ACTIONS(137), - [aux_sym_cmd_identifier_token31] = ACTIONS(137), - [aux_sym_cmd_identifier_token32] = ACTIONS(137), - [aux_sym_cmd_identifier_token33] = ACTIONS(137), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(137), - [aux_sym_cmd_identifier_token36] = ACTIONS(137), - [aux_sym_cmd_identifier_token37] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(135), - [aux_sym_cmd_identifier_token39] = ACTIONS(137), - [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [anon_sym_def] = ACTIONS(1315), - [anon_sym_export_DASHenv] = ACTIONS(1315), - [anon_sym_extern] = ACTIONS(1315), - [anon_sym_module] = ACTIONS(1315), - [anon_sym_use] = ACTIONS(1315), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_DOLLAR] = ACTIONS(1317), - [anon_sym_error] = ACTIONS(1315), - [anon_sym_DASH2] = ACTIONS(207), - [anon_sym_break] = ACTIONS(1315), - [anon_sym_continue] = ACTIONS(1315), - [anon_sym_for] = ACTIONS(1315), - [anon_sym_in2] = ACTIONS(1315), - [anon_sym_loop] = ACTIONS(1315), - [anon_sym_make] = ACTIONS(1315), - [anon_sym_while] = ACTIONS(1315), - [anon_sym_do] = ACTIONS(1315), - [anon_sym_if] = ACTIONS(1315), - [anon_sym_else] = ACTIONS(1315), - [anon_sym_match] = ACTIONS(1315), - [anon_sym_RBRACE] = ACTIONS(1327), - [anon_sym_try] = ACTIONS(1315), - [anon_sym_catch] = ACTIONS(1315), - [anon_sym_return] = ACTIONS(1315), - [anon_sym_source] = ACTIONS(1315), - [anon_sym_source_DASHenv] = ACTIONS(1315), - [anon_sym_register] = ACTIONS(1315), - [anon_sym_hide] = ACTIONS(1315), - [anon_sym_hide_DASHenv] = ACTIONS(1315), - [anon_sym_overlay] = ACTIONS(1315), - [anon_sym_as] = ACTIONS(1315), - [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1321), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1323), - [aux_sym__val_number_decimal_token1] = ACTIONS(1278), - [aux_sym__val_number_decimal_token2] = ACTIONS(1280), - [aux_sym__val_number_decimal_token3] = ACTIONS(1282), - [aux_sym__val_number_decimal_token4] = ACTIONS(1284), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym__str_single_quotes] = ACTIONS(1288), - [sym__str_back_ticks] = ACTIONS(1288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1325), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1290), + [aux_sym__match_pattern_record_repeat1] = STATE(202), + [anon_sym_export] = ACTIONS(1363), + [anon_sym_alias] = ACTIONS(1363), + [anon_sym_let] = ACTIONS(1363), + [anon_sym_let_DASHenv] = ACTIONS(1363), + [anon_sym_mut] = ACTIONS(1363), + [anon_sym_const] = ACTIONS(1363), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [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(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [anon_sym_def] = ACTIONS(1363), + [anon_sym_export_DASHenv] = ACTIONS(1363), + [anon_sym_extern] = ACTIONS(1363), + [anon_sym_module] = ACTIONS(1363), + [anon_sym_use] = ACTIONS(1363), + [anon_sym_LPAREN] = ACTIONS(1258), + [anon_sym_DOLLAR] = ACTIONS(1365), + [anon_sym_error] = ACTIONS(1363), + [anon_sym_DASH2] = ACTIONS(203), + [anon_sym_break] = ACTIONS(1363), + [anon_sym_continue] = ACTIONS(1363), + [anon_sym_for] = ACTIONS(1363), + [anon_sym_in2] = ACTIONS(1363), + [anon_sym_loop] = ACTIONS(1363), + [anon_sym_make] = ACTIONS(1363), + [anon_sym_while] = ACTIONS(1363), + [anon_sym_do] = ACTIONS(1363), + [anon_sym_if] = ACTIONS(1363), + [anon_sym_else] = ACTIONS(1363), + [anon_sym_match] = ACTIONS(1363), + [anon_sym_RBRACE] = ACTIONS(1367), + [anon_sym_try] = ACTIONS(1363), + [anon_sym_catch] = ACTIONS(1363), + [anon_sym_return] = ACTIONS(1363), + [anon_sym_source] = ACTIONS(1363), + [anon_sym_source_DASHenv] = ACTIONS(1363), + [anon_sym_hide] = ACTIONS(1363), + [anon_sym_hide_DASHenv] = ACTIONS(1363), + [anon_sym_overlay] = ACTIONS(1363), + [anon_sym_as] = ACTIONS(1363), + [anon_sym_PLUS2] = ACTIONS(203), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1369), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1371), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1270), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym__str_single_quotes] = ACTIONS(1274), + [sym__str_back_ticks] = ACTIONS(1274), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1373), + [anon_sym_register] = ACTIONS(1363), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1276), }, [204] = { - [sym_cmd_identifier] = STATE(6253), - [sym_expr_parenthesized] = STATE(7674), - [sym__spread_parenthesized] = STATE(731), - [sym__spread_variable] = STATE(732), - [sym_val_variable] = STATE(652), - [sym_val_number] = STATE(7674), - [sym__val_number_decimal] = STATE(3652), - [sym__val_number] = STATE(1667), - [sym_val_string] = STATE(7674), - [sym__raw_str] = STATE(3668), - [sym__str_double_quotes] = STATE(3668), - [sym_val_interpolated] = STATE(7674), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym__spread_record] = STATE(731), - [sym_record_entry] = STATE(707), - [sym__record_key] = STATE(7600), + [sym_cmd_identifier] = STATE(6247), + [sym_expr_parenthesized] = STATE(7697), + [sym__spread_parenthesized] = STATE(681), + [sym__spread_variable] = STATE(682), + [sym_val_variable] = STATE(602), + [sym_val_number] = STATE(7697), + [sym__val_number_decimal] = STATE(3631), + [sym__val_number] = STATE(1536), + [sym_val_string] = STATE(7697), + [sym__raw_str] = STATE(3793), + [sym__str_double_quotes] = STATE(3793), + [sym_val_interpolated] = STATE(7697), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym__spread_record] = STATE(681), + [sym_record_entry] = STATE(702), + [sym__record_key] = STATE(7592), [sym_comment] = STATE(204), - [aux_sym__match_pattern_record_repeat1] = STATE(204), - [anon_sym_export] = ACTIONS(1329), - [anon_sym_alias] = ACTIONS(1329), - [anon_sym_let] = ACTIONS(1329), - [anon_sym_let_DASHenv] = ACTIONS(1329), - [anon_sym_mut] = ACTIONS(1329), - [anon_sym_const] = ACTIONS(1329), - [aux_sym_cmd_identifier_token1] = ACTIONS(1332), - [aux_sym_cmd_identifier_token2] = ACTIONS(1335), - [aux_sym_cmd_identifier_token3] = ACTIONS(1335), - [aux_sym_cmd_identifier_token4] = ACTIONS(1335), - [aux_sym_cmd_identifier_token5] = ACTIONS(1335), - [aux_sym_cmd_identifier_token6] = ACTIONS(1335), - [aux_sym_cmd_identifier_token7] = ACTIONS(1335), - [aux_sym_cmd_identifier_token8] = ACTIONS(1332), - [aux_sym_cmd_identifier_token9] = ACTIONS(1332), - [aux_sym_cmd_identifier_token10] = ACTIONS(1335), - [aux_sym_cmd_identifier_token11] = ACTIONS(1335), - [aux_sym_cmd_identifier_token12] = ACTIONS(1332), - [aux_sym_cmd_identifier_token13] = ACTIONS(1332), - [aux_sym_cmd_identifier_token14] = ACTIONS(1332), - [aux_sym_cmd_identifier_token15] = ACTIONS(1332), - [aux_sym_cmd_identifier_token16] = ACTIONS(1335), - [aux_sym_cmd_identifier_token17] = ACTIONS(1335), - [aux_sym_cmd_identifier_token18] = ACTIONS(1335), - [aux_sym_cmd_identifier_token19] = ACTIONS(1335), - [aux_sym_cmd_identifier_token20] = ACTIONS(1335), - [aux_sym_cmd_identifier_token21] = ACTIONS(1335), - [aux_sym_cmd_identifier_token22] = ACTIONS(1335), - [aux_sym_cmd_identifier_token23] = ACTIONS(1335), - [aux_sym_cmd_identifier_token24] = ACTIONS(1335), - [aux_sym_cmd_identifier_token25] = ACTIONS(1335), - [aux_sym_cmd_identifier_token26] = ACTIONS(1335), - [aux_sym_cmd_identifier_token27] = ACTIONS(1335), - [aux_sym_cmd_identifier_token28] = ACTIONS(1335), - [aux_sym_cmd_identifier_token29] = ACTIONS(1335), - [aux_sym_cmd_identifier_token30] = ACTIONS(1335), - [aux_sym_cmd_identifier_token31] = ACTIONS(1335), - [aux_sym_cmd_identifier_token32] = ACTIONS(1335), - [aux_sym_cmd_identifier_token33] = ACTIONS(1335), - [aux_sym_cmd_identifier_token34] = ACTIONS(1332), - [aux_sym_cmd_identifier_token35] = ACTIONS(1335), - [aux_sym_cmd_identifier_token36] = ACTIONS(1335), - [aux_sym_cmd_identifier_token37] = ACTIONS(1335), - [aux_sym_cmd_identifier_token38] = ACTIONS(1332), - [aux_sym_cmd_identifier_token39] = ACTIONS(1335), - [aux_sym_cmd_identifier_token40] = ACTIONS(1335), - [anon_sym_def] = ACTIONS(1329), - [anon_sym_export_DASHenv] = ACTIONS(1329), - [anon_sym_extern] = ACTIONS(1329), - [anon_sym_module] = ACTIONS(1329), - [anon_sym_use] = ACTIONS(1329), - [anon_sym_LPAREN] = ACTIONS(1338), - [anon_sym_DOLLAR] = ACTIONS(1341), - [anon_sym_error] = ACTIONS(1329), - [anon_sym_DASH2] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1329), - [anon_sym_continue] = ACTIONS(1329), - [anon_sym_for] = ACTIONS(1329), - [anon_sym_in2] = ACTIONS(1329), - [anon_sym_loop] = ACTIONS(1329), - [anon_sym_make] = ACTIONS(1329), - [anon_sym_while] = ACTIONS(1329), - [anon_sym_do] = ACTIONS(1329), - [anon_sym_if] = ACTIONS(1329), - [anon_sym_else] = ACTIONS(1329), - [anon_sym_match] = ACTIONS(1329), - [anon_sym_RBRACE] = ACTIONS(1347), - [anon_sym_try] = ACTIONS(1329), - [anon_sym_catch] = ACTIONS(1329), - [anon_sym_return] = ACTIONS(1329), - [anon_sym_source] = ACTIONS(1329), - [anon_sym_source_DASHenv] = ACTIONS(1329), - [anon_sym_register] = ACTIONS(1329), - [anon_sym_hide] = ACTIONS(1329), - [anon_sym_hide_DASHenv] = ACTIONS(1329), - [anon_sym_overlay] = ACTIONS(1329), - [anon_sym_as] = ACTIONS(1329), - [anon_sym_PLUS2] = ACTIONS(1344), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1349), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1352), - [aux_sym__val_number_decimal_token1] = ACTIONS(1355), - [aux_sym__val_number_decimal_token2] = ACTIONS(1358), - [aux_sym__val_number_decimal_token3] = ACTIONS(1361), - [aux_sym__val_number_decimal_token4] = ACTIONS(1364), - [aux_sym__val_number_token1] = ACTIONS(1367), - [aux_sym__val_number_token2] = ACTIONS(1367), - [aux_sym__val_number_token3] = ACTIONS(1367), - [aux_sym__val_number_token4] = ACTIONS(1370), - [aux_sym__val_number_token5] = ACTIONS(1370), - [aux_sym__val_number_token6] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1373), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1379), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1382), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1385), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1388), + [aux_sym__match_pattern_record_repeat1] = STATE(203), + [anon_sym_export] = ACTIONS(1363), + [anon_sym_alias] = ACTIONS(1363), + [anon_sym_let] = ACTIONS(1363), + [anon_sym_let_DASHenv] = ACTIONS(1363), + [anon_sym_mut] = ACTIONS(1363), + [anon_sym_const] = ACTIONS(1363), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [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(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [anon_sym_def] = ACTIONS(1363), + [anon_sym_export_DASHenv] = ACTIONS(1363), + [anon_sym_extern] = ACTIONS(1363), + [anon_sym_module] = ACTIONS(1363), + [anon_sym_use] = ACTIONS(1363), + [anon_sym_LPAREN] = ACTIONS(1258), + [anon_sym_DOLLAR] = ACTIONS(1365), + [anon_sym_error] = ACTIONS(1363), + [anon_sym_DASH2] = ACTIONS(203), + [anon_sym_break] = ACTIONS(1363), + [anon_sym_continue] = ACTIONS(1363), + [anon_sym_for] = ACTIONS(1363), + [anon_sym_in2] = ACTIONS(1363), + [anon_sym_loop] = ACTIONS(1363), + [anon_sym_make] = ACTIONS(1363), + [anon_sym_while] = ACTIONS(1363), + [anon_sym_do] = ACTIONS(1363), + [anon_sym_if] = ACTIONS(1363), + [anon_sym_else] = ACTIONS(1363), + [anon_sym_match] = ACTIONS(1363), + [anon_sym_RBRACE] = ACTIONS(1375), + [anon_sym_try] = ACTIONS(1363), + [anon_sym_catch] = ACTIONS(1363), + [anon_sym_return] = ACTIONS(1363), + [anon_sym_source] = ACTIONS(1363), + [anon_sym_source_DASHenv] = ACTIONS(1363), + [anon_sym_hide] = ACTIONS(1363), + [anon_sym_hide_DASHenv] = ACTIONS(1363), + [anon_sym_overlay] = ACTIONS(1363), + [anon_sym_as] = ACTIONS(1363), + [anon_sym_PLUS2] = ACTIONS(203), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1369), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1371), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1270), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym__str_single_quotes] = ACTIONS(1274), + [sym__str_back_ticks] = ACTIONS(1274), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1373), + [anon_sym_register] = ACTIONS(1363), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1276), }, [205] = { - [sym_cmd_identifier] = STATE(6253), - [sym_expr_parenthesized] = STATE(7674), - [sym__spread_parenthesized] = STATE(731), - [sym__spread_variable] = STATE(732), - [sym_val_variable] = STATE(652), - [sym_val_number] = STATE(7674), - [sym__val_number_decimal] = STATE(3652), - [sym__val_number] = STATE(1667), - [sym_val_string] = STATE(7674), - [sym__raw_str] = STATE(3668), - [sym__str_double_quotes] = STATE(3668), - [sym_val_interpolated] = STATE(7674), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym__spread_record] = STATE(731), - [sym_record_entry] = STATE(707), - [sym__record_key] = STATE(7600), + [sym_cmd_identifier] = STATE(6247), + [sym_expr_parenthesized] = STATE(7697), + [sym__spread_parenthesized] = STATE(681), + [sym__spread_variable] = STATE(682), + [sym_val_variable] = STATE(602), + [sym_val_number] = STATE(7697), + [sym__val_number_decimal] = STATE(3631), + [sym__val_number] = STATE(1536), + [sym_val_string] = STATE(7697), + [sym__raw_str] = STATE(3793), + [sym__str_double_quotes] = STATE(3793), + [sym_val_interpolated] = STATE(7697), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym__spread_record] = STATE(681), + [sym_record_entry] = STATE(702), + [sym__record_key] = STATE(7592), [sym_comment] = STATE(205), - [aux_sym__match_pattern_record_repeat1] = STATE(203), - [anon_sym_export] = ACTIONS(1315), - [anon_sym_alias] = ACTIONS(1315), - [anon_sym_let] = ACTIONS(1315), - [anon_sym_let_DASHenv] = ACTIONS(1315), - [anon_sym_mut] = ACTIONS(1315), - [anon_sym_const] = ACTIONS(1315), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(137), - [aux_sym_cmd_identifier_token3] = ACTIONS(137), - [aux_sym_cmd_identifier_token4] = ACTIONS(137), - [aux_sym_cmd_identifier_token5] = ACTIONS(137), - [aux_sym_cmd_identifier_token6] = ACTIONS(137), - [aux_sym_cmd_identifier_token7] = ACTIONS(137), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(137), - [aux_sym_cmd_identifier_token11] = ACTIONS(137), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(137), - [aux_sym_cmd_identifier_token17] = ACTIONS(137), - [aux_sym_cmd_identifier_token18] = ACTIONS(137), - [aux_sym_cmd_identifier_token19] = ACTIONS(137), - [aux_sym_cmd_identifier_token20] = ACTIONS(137), - [aux_sym_cmd_identifier_token21] = ACTIONS(137), - [aux_sym_cmd_identifier_token22] = ACTIONS(137), - [aux_sym_cmd_identifier_token23] = ACTIONS(137), - [aux_sym_cmd_identifier_token24] = ACTIONS(137), - [aux_sym_cmd_identifier_token25] = ACTIONS(137), - [aux_sym_cmd_identifier_token26] = ACTIONS(137), - [aux_sym_cmd_identifier_token27] = ACTIONS(137), - [aux_sym_cmd_identifier_token28] = ACTIONS(137), - [aux_sym_cmd_identifier_token29] = ACTIONS(137), - [aux_sym_cmd_identifier_token30] = ACTIONS(137), - [aux_sym_cmd_identifier_token31] = ACTIONS(137), - [aux_sym_cmd_identifier_token32] = ACTIONS(137), - [aux_sym_cmd_identifier_token33] = ACTIONS(137), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(137), - [aux_sym_cmd_identifier_token36] = ACTIONS(137), - [aux_sym_cmd_identifier_token37] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(135), - [aux_sym_cmd_identifier_token39] = ACTIONS(137), - [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [anon_sym_def] = ACTIONS(1315), - [anon_sym_export_DASHenv] = ACTIONS(1315), - [anon_sym_extern] = ACTIONS(1315), - [anon_sym_module] = ACTIONS(1315), - [anon_sym_use] = ACTIONS(1315), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_DOLLAR] = ACTIONS(1317), - [anon_sym_error] = ACTIONS(1315), - [anon_sym_DASH2] = ACTIONS(207), - [anon_sym_break] = ACTIONS(1315), - [anon_sym_continue] = ACTIONS(1315), - [anon_sym_for] = ACTIONS(1315), - [anon_sym_in2] = ACTIONS(1315), - [anon_sym_loop] = ACTIONS(1315), - [anon_sym_make] = ACTIONS(1315), - [anon_sym_while] = ACTIONS(1315), - [anon_sym_do] = ACTIONS(1315), - [anon_sym_if] = ACTIONS(1315), - [anon_sym_else] = ACTIONS(1315), - [anon_sym_match] = ACTIONS(1315), - [anon_sym_RBRACE] = ACTIONS(1391), - [anon_sym_try] = ACTIONS(1315), - [anon_sym_catch] = ACTIONS(1315), - [anon_sym_return] = ACTIONS(1315), - [anon_sym_source] = ACTIONS(1315), - [anon_sym_source_DASHenv] = ACTIONS(1315), - [anon_sym_register] = ACTIONS(1315), - [anon_sym_hide] = ACTIONS(1315), - [anon_sym_hide_DASHenv] = ACTIONS(1315), - [anon_sym_overlay] = ACTIONS(1315), - [anon_sym_as] = ACTIONS(1315), - [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1321), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1323), - [aux_sym__val_number_decimal_token1] = ACTIONS(1278), - [aux_sym__val_number_decimal_token2] = ACTIONS(1280), - [aux_sym__val_number_decimal_token3] = ACTIONS(1282), - [aux_sym__val_number_decimal_token4] = ACTIONS(1284), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym__str_single_quotes] = ACTIONS(1288), - [sym__str_back_ticks] = ACTIONS(1288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1325), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1290), + [aux_sym__match_pattern_record_repeat1] = STATE(202), + [anon_sym_export] = ACTIONS(1363), + [anon_sym_alias] = ACTIONS(1363), + [anon_sym_let] = ACTIONS(1363), + [anon_sym_let_DASHenv] = ACTIONS(1363), + [anon_sym_mut] = ACTIONS(1363), + [anon_sym_const] = ACTIONS(1363), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [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(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [anon_sym_def] = ACTIONS(1363), + [anon_sym_export_DASHenv] = ACTIONS(1363), + [anon_sym_extern] = ACTIONS(1363), + [anon_sym_module] = ACTIONS(1363), + [anon_sym_use] = ACTIONS(1363), + [anon_sym_LPAREN] = ACTIONS(1258), + [anon_sym_DOLLAR] = ACTIONS(1365), + [anon_sym_error] = ACTIONS(1363), + [anon_sym_DASH2] = ACTIONS(203), + [anon_sym_break] = ACTIONS(1363), + [anon_sym_continue] = ACTIONS(1363), + [anon_sym_for] = ACTIONS(1363), + [anon_sym_in2] = ACTIONS(1363), + [anon_sym_loop] = ACTIONS(1363), + [anon_sym_make] = ACTIONS(1363), + [anon_sym_while] = ACTIONS(1363), + [anon_sym_do] = ACTIONS(1363), + [anon_sym_if] = ACTIONS(1363), + [anon_sym_else] = ACTIONS(1363), + [anon_sym_match] = ACTIONS(1363), + [anon_sym_RBRACE] = ACTIONS(1377), + [anon_sym_try] = ACTIONS(1363), + [anon_sym_catch] = ACTIONS(1363), + [anon_sym_return] = ACTIONS(1363), + [anon_sym_source] = ACTIONS(1363), + [anon_sym_source_DASHenv] = ACTIONS(1363), + [anon_sym_hide] = ACTIONS(1363), + [anon_sym_hide_DASHenv] = ACTIONS(1363), + [anon_sym_overlay] = ACTIONS(1363), + [anon_sym_as] = ACTIONS(1363), + [anon_sym_PLUS2] = ACTIONS(203), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1369), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1371), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1270), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym__str_single_quotes] = ACTIONS(1274), + [sym__str_back_ticks] = ACTIONS(1274), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1373), + [anon_sym_register] = ACTIONS(1363), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1276), }, [206] = { - [sym_cmd_identifier] = STATE(6253), - [sym_expr_parenthesized] = STATE(7674), - [sym__spread_parenthesized] = STATE(731), - [sym__spread_variable] = STATE(732), - [sym_val_variable] = STATE(652), - [sym_val_number] = STATE(7674), - [sym__val_number_decimal] = STATE(3652), - [sym__val_number] = STATE(1667), - [sym_val_string] = STATE(7674), - [sym__raw_str] = STATE(3668), - [sym__str_double_quotes] = STATE(3668), - [sym_val_interpolated] = STATE(7674), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym__spread_record] = STATE(731), - [sym_record_entry] = STATE(707), - [sym__record_key] = STATE(7600), + [sym_cmd_identifier] = STATE(6247), + [sym_expr_parenthesized] = STATE(7697), + [sym__spread_parenthesized] = STATE(681), + [sym__spread_variable] = STATE(682), + [sym_val_variable] = STATE(602), + [sym_val_number] = STATE(7697), + [sym__val_number_decimal] = STATE(3631), + [sym__val_number] = STATE(1536), + [sym_val_string] = STATE(7697), + [sym__raw_str] = STATE(3793), + [sym__str_double_quotes] = STATE(3793), + [sym_val_interpolated] = STATE(7697), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym__spread_record] = STATE(681), + [sym_record_entry] = STATE(702), + [sym__record_key] = STATE(7592), [sym_comment] = STATE(206), - [aux_sym__match_pattern_record_repeat1] = STATE(204), - [anon_sym_export] = ACTIONS(1315), - [anon_sym_alias] = ACTIONS(1315), - [anon_sym_let] = ACTIONS(1315), - [anon_sym_let_DASHenv] = ACTIONS(1315), - [anon_sym_mut] = ACTIONS(1315), - [anon_sym_const] = ACTIONS(1315), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(137), - [aux_sym_cmd_identifier_token3] = ACTIONS(137), - [aux_sym_cmd_identifier_token4] = ACTIONS(137), - [aux_sym_cmd_identifier_token5] = ACTIONS(137), - [aux_sym_cmd_identifier_token6] = ACTIONS(137), - [aux_sym_cmd_identifier_token7] = ACTIONS(137), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(137), - [aux_sym_cmd_identifier_token11] = ACTIONS(137), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(137), - [aux_sym_cmd_identifier_token17] = ACTIONS(137), - [aux_sym_cmd_identifier_token18] = ACTIONS(137), - [aux_sym_cmd_identifier_token19] = ACTIONS(137), - [aux_sym_cmd_identifier_token20] = ACTIONS(137), - [aux_sym_cmd_identifier_token21] = ACTIONS(137), - [aux_sym_cmd_identifier_token22] = ACTIONS(137), - [aux_sym_cmd_identifier_token23] = ACTIONS(137), - [aux_sym_cmd_identifier_token24] = ACTIONS(137), - [aux_sym_cmd_identifier_token25] = ACTIONS(137), - [aux_sym_cmd_identifier_token26] = ACTIONS(137), - [aux_sym_cmd_identifier_token27] = ACTIONS(137), - [aux_sym_cmd_identifier_token28] = ACTIONS(137), - [aux_sym_cmd_identifier_token29] = ACTIONS(137), - [aux_sym_cmd_identifier_token30] = ACTIONS(137), - [aux_sym_cmd_identifier_token31] = ACTIONS(137), - [aux_sym_cmd_identifier_token32] = ACTIONS(137), - [aux_sym_cmd_identifier_token33] = ACTIONS(137), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(137), - [aux_sym_cmd_identifier_token36] = ACTIONS(137), - [aux_sym_cmd_identifier_token37] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(135), - [aux_sym_cmd_identifier_token39] = ACTIONS(137), - [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [anon_sym_def] = ACTIONS(1315), - [anon_sym_export_DASHenv] = ACTIONS(1315), - [anon_sym_extern] = ACTIONS(1315), - [anon_sym_module] = ACTIONS(1315), - [anon_sym_use] = ACTIONS(1315), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_DOLLAR] = ACTIONS(1317), - [anon_sym_error] = ACTIONS(1315), - [anon_sym_DASH2] = ACTIONS(207), - [anon_sym_break] = ACTIONS(1315), - [anon_sym_continue] = ACTIONS(1315), - [anon_sym_for] = ACTIONS(1315), - [anon_sym_in2] = ACTIONS(1315), - [anon_sym_loop] = ACTIONS(1315), - [anon_sym_make] = ACTIONS(1315), - [anon_sym_while] = ACTIONS(1315), - [anon_sym_do] = ACTIONS(1315), - [anon_sym_if] = ACTIONS(1315), - [anon_sym_else] = ACTIONS(1315), - [anon_sym_match] = ACTIONS(1315), - [anon_sym_RBRACE] = ACTIONS(1393), - [anon_sym_try] = ACTIONS(1315), - [anon_sym_catch] = ACTIONS(1315), - [anon_sym_return] = ACTIONS(1315), - [anon_sym_source] = ACTIONS(1315), - [anon_sym_source_DASHenv] = ACTIONS(1315), - [anon_sym_register] = ACTIONS(1315), - [anon_sym_hide] = ACTIONS(1315), - [anon_sym_hide_DASHenv] = ACTIONS(1315), - [anon_sym_overlay] = ACTIONS(1315), - [anon_sym_as] = ACTIONS(1315), - [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1321), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1323), - [aux_sym__val_number_decimal_token1] = ACTIONS(1278), - [aux_sym__val_number_decimal_token2] = ACTIONS(1280), - [aux_sym__val_number_decimal_token3] = ACTIONS(1282), - [aux_sym__val_number_decimal_token4] = ACTIONS(1284), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym__str_single_quotes] = ACTIONS(1288), - [sym__str_back_ticks] = ACTIONS(1288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1325), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1290), + [aux_sym__match_pattern_record_repeat1] = STATE(205), + [anon_sym_export] = ACTIONS(1363), + [anon_sym_alias] = ACTIONS(1363), + [anon_sym_let] = ACTIONS(1363), + [anon_sym_let_DASHenv] = ACTIONS(1363), + [anon_sym_mut] = ACTIONS(1363), + [anon_sym_const] = ACTIONS(1363), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [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(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [anon_sym_def] = ACTIONS(1363), + [anon_sym_export_DASHenv] = ACTIONS(1363), + [anon_sym_extern] = ACTIONS(1363), + [anon_sym_module] = ACTIONS(1363), + [anon_sym_use] = ACTIONS(1363), + [anon_sym_LPAREN] = ACTIONS(1258), + [anon_sym_DOLLAR] = ACTIONS(1365), + [anon_sym_error] = ACTIONS(1363), + [anon_sym_DASH2] = ACTIONS(203), + [anon_sym_break] = ACTIONS(1363), + [anon_sym_continue] = ACTIONS(1363), + [anon_sym_for] = ACTIONS(1363), + [anon_sym_in2] = ACTIONS(1363), + [anon_sym_loop] = ACTIONS(1363), + [anon_sym_make] = ACTIONS(1363), + [anon_sym_while] = ACTIONS(1363), + [anon_sym_do] = ACTIONS(1363), + [anon_sym_if] = ACTIONS(1363), + [anon_sym_else] = ACTIONS(1363), + [anon_sym_match] = ACTIONS(1363), + [anon_sym_RBRACE] = ACTIONS(1379), + [anon_sym_try] = ACTIONS(1363), + [anon_sym_catch] = ACTIONS(1363), + [anon_sym_return] = ACTIONS(1363), + [anon_sym_source] = ACTIONS(1363), + [anon_sym_source_DASHenv] = ACTIONS(1363), + [anon_sym_hide] = ACTIONS(1363), + [anon_sym_hide_DASHenv] = ACTIONS(1363), + [anon_sym_overlay] = ACTIONS(1363), + [anon_sym_as] = ACTIONS(1363), + [anon_sym_PLUS2] = ACTIONS(203), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1369), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1371), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1270), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym__str_single_quotes] = ACTIONS(1274), + [sym__str_back_ticks] = ACTIONS(1274), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1373), + [anon_sym_register] = ACTIONS(1363), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1276), }, [207] = { - [sym_cmd_identifier] = STATE(6688), - [sym_expr_parenthesized] = STATE(7753), - [sym__spread_parenthesized] = STATE(7438), - [sym__spread_variable] = STATE(7458), - [sym_val_variable] = STATE(7753), - [sym_val_number] = STATE(7753), - [sym__val_number_decimal] = STATE(3652), - [sym__val_number] = STATE(1667), - [sym_val_string] = STATE(7753), - [sym__raw_str] = STATE(3668), - [sym__str_double_quotes] = STATE(3668), - [sym_val_interpolated] = STATE(7753), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym__spread_record] = STATE(7438), - [sym_record_entry] = STATE(7387), - [sym__record_key] = STATE(7605), + [sym_cmd_identifier] = STATE(6681), + [sym_expr_parenthesized] = STATE(7505), + [sym__spread_parenthesized] = STATE(7377), + [sym__spread_variable] = STATE(7424), + [sym_val_variable] = STATE(7505), + [sym_val_number] = STATE(7505), + [sym__val_number_decimal] = STATE(3631), + [sym__val_number] = STATE(1536), + [sym_val_string] = STATE(7505), + [sym__raw_str] = STATE(3793), + [sym__str_double_quotes] = STATE(3793), + [sym_val_interpolated] = STATE(7505), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym__spread_record] = STATE(7377), + [sym_record_entry] = STATE(7447), + [sym__record_key] = STATE(7701), [sym_comment] = STATE(207), [aux_sym_record_body_repeat1] = STATE(207), - [anon_sym_export] = ACTIONS(1395), - [anon_sym_alias] = ACTIONS(1395), - [anon_sym_let] = ACTIONS(1395), - [anon_sym_let_DASHenv] = ACTIONS(1395), - [anon_sym_mut] = ACTIONS(1395), - [anon_sym_const] = ACTIONS(1395), - [aux_sym_cmd_identifier_token1] = ACTIONS(1398), - [aux_sym_cmd_identifier_token2] = ACTIONS(1401), - [aux_sym_cmd_identifier_token3] = ACTIONS(1401), - [aux_sym_cmd_identifier_token4] = ACTIONS(1401), - [aux_sym_cmd_identifier_token5] = ACTIONS(1401), - [aux_sym_cmd_identifier_token6] = ACTIONS(1401), - [aux_sym_cmd_identifier_token7] = ACTIONS(1401), - [aux_sym_cmd_identifier_token8] = ACTIONS(1398), - [aux_sym_cmd_identifier_token9] = ACTIONS(1398), - [aux_sym_cmd_identifier_token10] = ACTIONS(1401), - [aux_sym_cmd_identifier_token11] = ACTIONS(1401), - [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(1401), - [aux_sym_cmd_identifier_token17] = ACTIONS(1401), - [aux_sym_cmd_identifier_token18] = ACTIONS(1401), - [aux_sym_cmd_identifier_token19] = ACTIONS(1401), - [aux_sym_cmd_identifier_token20] = ACTIONS(1401), - [aux_sym_cmd_identifier_token21] = ACTIONS(1401), - [aux_sym_cmd_identifier_token22] = ACTIONS(1401), - [aux_sym_cmd_identifier_token23] = ACTIONS(1401), - [aux_sym_cmd_identifier_token24] = ACTIONS(1401), - [aux_sym_cmd_identifier_token25] = ACTIONS(1401), - [aux_sym_cmd_identifier_token26] = ACTIONS(1401), - [aux_sym_cmd_identifier_token27] = ACTIONS(1401), - [aux_sym_cmd_identifier_token28] = ACTIONS(1401), - [aux_sym_cmd_identifier_token29] = ACTIONS(1401), - [aux_sym_cmd_identifier_token30] = ACTIONS(1401), - [aux_sym_cmd_identifier_token31] = ACTIONS(1401), - [aux_sym_cmd_identifier_token32] = ACTIONS(1401), - [aux_sym_cmd_identifier_token33] = ACTIONS(1401), - [aux_sym_cmd_identifier_token34] = ACTIONS(1398), - [aux_sym_cmd_identifier_token35] = ACTIONS(1401), - [aux_sym_cmd_identifier_token36] = ACTIONS(1401), - [aux_sym_cmd_identifier_token37] = ACTIONS(1401), - [aux_sym_cmd_identifier_token38] = ACTIONS(1398), - [aux_sym_cmd_identifier_token39] = ACTIONS(1401), - [aux_sym_cmd_identifier_token40] = ACTIONS(1401), - [anon_sym_def] = ACTIONS(1395), - [anon_sym_export_DASHenv] = ACTIONS(1395), - [anon_sym_extern] = ACTIONS(1395), - [anon_sym_module] = ACTIONS(1395), - [anon_sym_use] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_DOLLAR] = ACTIONS(1407), - [anon_sym_error] = ACTIONS(1395), - [anon_sym_DASH2] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1395), - [anon_sym_continue] = ACTIONS(1395), - [anon_sym_for] = ACTIONS(1395), - [anon_sym_in2] = ACTIONS(1395), - [anon_sym_loop] = ACTIONS(1395), - [anon_sym_make] = ACTIONS(1395), - [anon_sym_while] = ACTIONS(1395), - [anon_sym_do] = ACTIONS(1395), - [anon_sym_if] = ACTIONS(1395), - [anon_sym_else] = ACTIONS(1395), - [anon_sym_match] = ACTIONS(1395), - [anon_sym_try] = ACTIONS(1395), - [anon_sym_catch] = ACTIONS(1395), - [anon_sym_return] = ACTIONS(1395), - [anon_sym_source] = ACTIONS(1395), - [anon_sym_source_DASHenv] = ACTIONS(1395), - [anon_sym_register] = ACTIONS(1395), - [anon_sym_hide] = ACTIONS(1395), - [anon_sym_hide_DASHenv] = ACTIONS(1395), - [anon_sym_overlay] = ACTIONS(1395), - [anon_sym_as] = ACTIONS(1395), - [anon_sym_PLUS2] = ACTIONS(1410), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1413), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1416), - [aux_sym__val_number_decimal_token1] = ACTIONS(1419), - [aux_sym__val_number_decimal_token2] = ACTIONS(1422), - [aux_sym__val_number_decimal_token3] = ACTIONS(1425), - [aux_sym__val_number_decimal_token4] = ACTIONS(1428), - [aux_sym__val_number_token1] = ACTIONS(1431), - [aux_sym__val_number_token2] = ACTIONS(1431), - [aux_sym__val_number_token3] = ACTIONS(1431), - [aux_sym__val_number_token4] = ACTIONS(1434), - [aux_sym__val_number_token5] = ACTIONS(1434), - [aux_sym__val_number_token6] = ACTIONS(1434), - [anon_sym_DQUOTE] = ACTIONS(1437), - [sym__str_single_quotes] = ACTIONS(1440), - [sym__str_back_ticks] = ACTIONS(1440), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1443), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1446), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1449), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1452), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_alias] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_let_DASHenv] = ACTIONS(1381), + [anon_sym_mut] = ACTIONS(1381), + [anon_sym_const] = ACTIONS(1381), + [aux_sym_cmd_identifier_token1] = ACTIONS(1384), + [aux_sym_cmd_identifier_token2] = ACTIONS(1387), + [aux_sym_cmd_identifier_token3] = ACTIONS(1387), + [aux_sym_cmd_identifier_token4] = ACTIONS(1387), + [aux_sym_cmd_identifier_token5] = ACTIONS(1387), + [aux_sym_cmd_identifier_token6] = ACTIONS(1387), + [aux_sym_cmd_identifier_token7] = ACTIONS(1387), + [aux_sym_cmd_identifier_token8] = ACTIONS(1384), + [aux_sym_cmd_identifier_token9] = ACTIONS(1384), + [aux_sym_cmd_identifier_token10] = ACTIONS(1387), + [aux_sym_cmd_identifier_token11] = ACTIONS(1387), + [aux_sym_cmd_identifier_token12] = ACTIONS(1384), + [aux_sym_cmd_identifier_token13] = ACTIONS(1384), + [aux_sym_cmd_identifier_token14] = ACTIONS(1384), + [aux_sym_cmd_identifier_token15] = ACTIONS(1384), + [aux_sym_cmd_identifier_token16] = ACTIONS(1387), + [aux_sym_cmd_identifier_token17] = ACTIONS(1387), + [aux_sym_cmd_identifier_token18] = ACTIONS(1387), + [aux_sym_cmd_identifier_token19] = ACTIONS(1387), + [aux_sym_cmd_identifier_token20] = ACTIONS(1387), + [aux_sym_cmd_identifier_token21] = ACTIONS(1387), + [aux_sym_cmd_identifier_token22] = ACTIONS(1387), + [aux_sym_cmd_identifier_token23] = ACTIONS(1387), + [aux_sym_cmd_identifier_token24] = ACTIONS(1387), + [aux_sym_cmd_identifier_token25] = ACTIONS(1387), + [aux_sym_cmd_identifier_token26] = ACTIONS(1387), + [aux_sym_cmd_identifier_token27] = ACTIONS(1387), + [aux_sym_cmd_identifier_token28] = ACTIONS(1387), + [aux_sym_cmd_identifier_token29] = ACTIONS(1387), + [aux_sym_cmd_identifier_token30] = ACTIONS(1387), + [aux_sym_cmd_identifier_token31] = ACTIONS(1387), + [aux_sym_cmd_identifier_token32] = ACTIONS(1387), + [aux_sym_cmd_identifier_token33] = ACTIONS(1387), + [aux_sym_cmd_identifier_token34] = ACTIONS(1384), + [aux_sym_cmd_identifier_token35] = ACTIONS(1387), + [aux_sym_cmd_identifier_token36] = ACTIONS(1387), + [aux_sym_cmd_identifier_token37] = ACTIONS(1387), + [aux_sym_cmd_identifier_token38] = ACTIONS(1384), + [aux_sym_cmd_identifier_token39] = ACTIONS(1387), + [aux_sym_cmd_identifier_token40] = ACTIONS(1387), + [anon_sym_def] = ACTIONS(1381), + [anon_sym_export_DASHenv] = ACTIONS(1381), + [anon_sym_extern] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_use] = ACTIONS(1381), + [anon_sym_LPAREN] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1393), + [anon_sym_error] = ACTIONS(1381), + [anon_sym_DASH2] = ACTIONS(1396), + [anon_sym_break] = ACTIONS(1381), + [anon_sym_continue] = ACTIONS(1381), + [anon_sym_for] = ACTIONS(1381), + [anon_sym_in2] = ACTIONS(1381), + [anon_sym_loop] = ACTIONS(1381), + [anon_sym_make] = ACTIONS(1381), + [anon_sym_while] = ACTIONS(1381), + [anon_sym_do] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(1381), + [anon_sym_else] = ACTIONS(1381), + [anon_sym_match] = ACTIONS(1381), + [anon_sym_try] = ACTIONS(1381), + [anon_sym_catch] = ACTIONS(1381), + [anon_sym_return] = ACTIONS(1381), + [anon_sym_source] = ACTIONS(1381), + [anon_sym_source_DASHenv] = ACTIONS(1381), + [anon_sym_hide] = ACTIONS(1381), + [anon_sym_hide_DASHenv] = ACTIONS(1381), + [anon_sym_overlay] = ACTIONS(1381), + [anon_sym_as] = ACTIONS(1381), + [anon_sym_PLUS2] = ACTIONS(1396), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1399), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1402), + [aux_sym__val_number_decimal_token1] = ACTIONS(1405), + [aux_sym__val_number_decimal_token2] = ACTIONS(1408), + [aux_sym__val_number_decimal_token3] = ACTIONS(1411), + [aux_sym__val_number_decimal_token4] = ACTIONS(1414), + [aux_sym__val_number_token1] = ACTIONS(1417), + [aux_sym__val_number_token2] = ACTIONS(1417), + [aux_sym__val_number_token3] = ACTIONS(1417), + [aux_sym__val_number_token4] = ACTIONS(1420), + [aux_sym__val_number_token5] = ACTIONS(1420), + [aux_sym__val_number_token6] = ACTIONS(1420), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym__str_single_quotes] = ACTIONS(1426), + [sym__str_back_ticks] = ACTIONS(1426), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1429), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1432), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1435), + [anon_sym_register] = ACTIONS(1381), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1438), }, [208] = { - [sym_cmd_identifier] = STATE(6688), - [sym_expr_parenthesized] = STATE(7753), - [sym__spread_parenthesized] = STATE(7438), - [sym__spread_variable] = STATE(7458), - [sym_val_variable] = STATE(7753), - [sym_val_number] = STATE(7753), - [sym__val_number_decimal] = STATE(3652), - [sym__val_number] = STATE(1667), - [sym_val_string] = STATE(7753), - [sym__raw_str] = STATE(3668), - [sym__str_double_quotes] = STATE(3668), - [sym_val_interpolated] = STATE(7753), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym__spread_record] = STATE(7438), - [sym_record_entry] = STATE(7132), - [sym__record_key] = STATE(7605), + [sym_cmd_identifier] = STATE(6681), + [sym_expr_parenthesized] = STATE(7505), + [sym__spread_parenthesized] = STATE(7377), + [sym__spread_variable] = STATE(7424), + [sym_val_variable] = STATE(7505), + [sym_val_number] = STATE(7505), + [sym__val_number_decimal] = STATE(3631), + [sym__val_number] = STATE(1536), + [sym_val_string] = STATE(7505), + [sym__raw_str] = STATE(3793), + [sym__str_double_quotes] = STATE(3793), + [sym_val_interpolated] = STATE(7505), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym__spread_record] = STATE(7377), + [sym_record_entry] = STATE(7268), + [sym__record_key] = STATE(7701), [sym_comment] = STATE(208), [aux_sym_record_body_repeat1] = STATE(207), - [anon_sym_export] = ACTIONS(285), - [anon_sym_alias] = ACTIONS(285), - [anon_sym_let] = ACTIONS(285), - [anon_sym_let_DASHenv] = ACTIONS(285), - [anon_sym_mut] = ACTIONS(285), - [anon_sym_const] = ACTIONS(285), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(137), - [aux_sym_cmd_identifier_token3] = ACTIONS(137), - [aux_sym_cmd_identifier_token4] = ACTIONS(137), - [aux_sym_cmd_identifier_token5] = ACTIONS(137), - [aux_sym_cmd_identifier_token6] = ACTIONS(137), - [aux_sym_cmd_identifier_token7] = ACTIONS(137), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(137), - [aux_sym_cmd_identifier_token11] = ACTIONS(137), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(137), - [aux_sym_cmd_identifier_token17] = ACTIONS(137), - [aux_sym_cmd_identifier_token18] = ACTIONS(137), - [aux_sym_cmd_identifier_token19] = ACTIONS(137), - [aux_sym_cmd_identifier_token20] = ACTIONS(137), - [aux_sym_cmd_identifier_token21] = ACTIONS(137), - [aux_sym_cmd_identifier_token22] = ACTIONS(137), - [aux_sym_cmd_identifier_token23] = ACTIONS(137), - [aux_sym_cmd_identifier_token24] = ACTIONS(137), - [aux_sym_cmd_identifier_token25] = ACTIONS(137), - [aux_sym_cmd_identifier_token26] = ACTIONS(137), - [aux_sym_cmd_identifier_token27] = ACTIONS(137), - [aux_sym_cmd_identifier_token28] = ACTIONS(137), - [aux_sym_cmd_identifier_token29] = ACTIONS(137), - [aux_sym_cmd_identifier_token30] = ACTIONS(137), - [aux_sym_cmd_identifier_token31] = ACTIONS(137), - [aux_sym_cmd_identifier_token32] = ACTIONS(137), - [aux_sym_cmd_identifier_token33] = ACTIONS(137), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(137), - [aux_sym_cmd_identifier_token36] = ACTIONS(137), - [aux_sym_cmd_identifier_token37] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(135), - [aux_sym_cmd_identifier_token39] = ACTIONS(137), - [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [anon_sym_def] = ACTIONS(285), - [anon_sym_export_DASHenv] = ACTIONS(285), - [anon_sym_extern] = ACTIONS(285), - [anon_sym_module] = ACTIONS(285), - [anon_sym_use] = ACTIONS(285), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_DOLLAR] = ACTIONS(1274), - [anon_sym_error] = ACTIONS(285), - [anon_sym_DASH2] = ACTIONS(207), - [anon_sym_break] = ACTIONS(285), - [anon_sym_continue] = ACTIONS(285), - [anon_sym_for] = ACTIONS(285), - [anon_sym_in2] = ACTIONS(285), - [anon_sym_loop] = ACTIONS(285), - [anon_sym_make] = ACTIONS(285), - [anon_sym_while] = ACTIONS(285), - [anon_sym_do] = ACTIONS(285), - [anon_sym_if] = ACTIONS(285), - [anon_sym_else] = ACTIONS(285), - [anon_sym_match] = ACTIONS(285), - [anon_sym_try] = ACTIONS(285), - [anon_sym_catch] = ACTIONS(285), - [anon_sym_return] = ACTIONS(285), - [anon_sym_source] = ACTIONS(285), - [anon_sym_source_DASHenv] = ACTIONS(285), - [anon_sym_register] = ACTIONS(285), - [anon_sym_hide] = ACTIONS(285), - [anon_sym_hide_DASHenv] = ACTIONS(285), - [anon_sym_overlay] = ACTIONS(285), - [anon_sym_as] = ACTIONS(285), - [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(1278), - [aux_sym__val_number_decimal_token2] = ACTIONS(1280), - [aux_sym__val_number_decimal_token3] = ACTIONS(1282), - [aux_sym__val_number_decimal_token4] = ACTIONS(1284), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym__str_single_quotes] = ACTIONS(1288), - [sym__str_back_ticks] = ACTIONS(1288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1290), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(281), + [anon_sym_let] = ACTIONS(281), + [anon_sym_let_DASHenv] = ACTIONS(281), + [anon_sym_mut] = ACTIONS(281), + [anon_sym_const] = ACTIONS(281), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [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(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [anon_sym_def] = ACTIONS(281), + [anon_sym_export_DASHenv] = ACTIONS(281), + [anon_sym_extern] = ACTIONS(281), + [anon_sym_module] = ACTIONS(281), + [anon_sym_use] = ACTIONS(281), + [anon_sym_LPAREN] = ACTIONS(1258), + [anon_sym_DOLLAR] = ACTIONS(1260), + [anon_sym_error] = ACTIONS(281), + [anon_sym_DASH2] = ACTIONS(203), + [anon_sym_break] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(281), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(281), + [anon_sym_do] = ACTIONS(281), + [anon_sym_if] = ACTIONS(281), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(281), + [anon_sym_try] = ACTIONS(281), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(281), + [anon_sym_source] = ACTIONS(281), + [anon_sym_source_DASHenv] = ACTIONS(281), + [anon_sym_hide] = ACTIONS(281), + [anon_sym_hide_DASHenv] = ACTIONS(281), + [anon_sym_overlay] = ACTIONS(281), + [anon_sym_as] = ACTIONS(281), + [anon_sym_PLUS2] = ACTIONS(203), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1270), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym__str_single_quotes] = ACTIONS(1274), + [sym__str_back_ticks] = ACTIONS(1274), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_register] = ACTIONS(281), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1276), }, [209] = { - [sym_cmd_identifier] = STATE(6688), - [sym_expr_parenthesized] = STATE(7753), - [sym__spread_parenthesized] = STATE(7438), - [sym__spread_variable] = STATE(7458), - [sym_val_variable] = STATE(7753), - [sym_val_number] = STATE(7753), - [sym__val_number_decimal] = STATE(3652), - [sym__val_number] = STATE(1667), - [sym_val_string] = STATE(7753), - [sym__raw_str] = STATE(3668), - [sym__str_double_quotes] = STATE(3668), - [sym_val_interpolated] = STATE(7753), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym__spread_record] = STATE(7438), - [sym_record_entry] = STATE(7236), - [sym__record_key] = STATE(7605), + [sym_cmd_identifier] = STATE(6681), + [sym_expr_parenthesized] = STATE(7505), + [sym__spread_parenthesized] = STATE(7377), + [sym__spread_variable] = STATE(7424), + [sym_val_variable] = STATE(7505), + [sym_val_number] = STATE(7505), + [sym__val_number_decimal] = STATE(3631), + [sym__val_number] = STATE(1536), + [sym_val_string] = STATE(7505), + [sym__raw_str] = STATE(3793), + [sym__str_double_quotes] = STATE(3793), + [sym_val_interpolated] = STATE(7505), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym__spread_record] = STATE(7377), + [sym_record_entry] = STATE(6804), + [sym__record_key] = STATE(7701), [sym_comment] = STATE(209), [aux_sym_record_body_repeat1] = STATE(207), - [anon_sym_export] = ACTIONS(285), - [anon_sym_alias] = ACTIONS(285), - [anon_sym_let] = ACTIONS(285), - [anon_sym_let_DASHenv] = ACTIONS(285), - [anon_sym_mut] = ACTIONS(285), - [anon_sym_const] = ACTIONS(285), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(137), - [aux_sym_cmd_identifier_token3] = ACTIONS(137), - [aux_sym_cmd_identifier_token4] = ACTIONS(137), - [aux_sym_cmd_identifier_token5] = ACTIONS(137), - [aux_sym_cmd_identifier_token6] = ACTIONS(137), - [aux_sym_cmd_identifier_token7] = ACTIONS(137), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(137), - [aux_sym_cmd_identifier_token11] = ACTIONS(137), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(137), - [aux_sym_cmd_identifier_token17] = ACTIONS(137), - [aux_sym_cmd_identifier_token18] = ACTIONS(137), - [aux_sym_cmd_identifier_token19] = ACTIONS(137), - [aux_sym_cmd_identifier_token20] = ACTIONS(137), - [aux_sym_cmd_identifier_token21] = ACTIONS(137), - [aux_sym_cmd_identifier_token22] = ACTIONS(137), - [aux_sym_cmd_identifier_token23] = ACTIONS(137), - [aux_sym_cmd_identifier_token24] = ACTIONS(137), - [aux_sym_cmd_identifier_token25] = ACTIONS(137), - [aux_sym_cmd_identifier_token26] = ACTIONS(137), - [aux_sym_cmd_identifier_token27] = ACTIONS(137), - [aux_sym_cmd_identifier_token28] = ACTIONS(137), - [aux_sym_cmd_identifier_token29] = ACTIONS(137), - [aux_sym_cmd_identifier_token30] = ACTIONS(137), - [aux_sym_cmd_identifier_token31] = ACTIONS(137), - [aux_sym_cmd_identifier_token32] = ACTIONS(137), - [aux_sym_cmd_identifier_token33] = ACTIONS(137), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(137), - [aux_sym_cmd_identifier_token36] = ACTIONS(137), - [aux_sym_cmd_identifier_token37] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(135), - [aux_sym_cmd_identifier_token39] = ACTIONS(137), - [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [anon_sym_def] = ACTIONS(285), - [anon_sym_export_DASHenv] = ACTIONS(285), - [anon_sym_extern] = ACTIONS(285), - [anon_sym_module] = ACTIONS(285), - [anon_sym_use] = ACTIONS(285), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_DOLLAR] = ACTIONS(1274), - [anon_sym_error] = ACTIONS(285), - [anon_sym_DASH2] = ACTIONS(207), - [anon_sym_break] = ACTIONS(285), - [anon_sym_continue] = ACTIONS(285), - [anon_sym_for] = ACTIONS(285), - [anon_sym_in2] = ACTIONS(285), - [anon_sym_loop] = ACTIONS(285), - [anon_sym_make] = ACTIONS(285), - [anon_sym_while] = ACTIONS(285), - [anon_sym_do] = ACTIONS(285), - [anon_sym_if] = ACTIONS(285), - [anon_sym_else] = ACTIONS(285), - [anon_sym_match] = ACTIONS(285), - [anon_sym_try] = ACTIONS(285), - [anon_sym_catch] = ACTIONS(285), - [anon_sym_return] = ACTIONS(285), - [anon_sym_source] = ACTIONS(285), - [anon_sym_source_DASHenv] = ACTIONS(285), - [anon_sym_register] = ACTIONS(285), - [anon_sym_hide] = ACTIONS(285), - [anon_sym_hide_DASHenv] = ACTIONS(285), - [anon_sym_overlay] = ACTIONS(285), - [anon_sym_as] = ACTIONS(285), - [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(1278), - [aux_sym__val_number_decimal_token2] = ACTIONS(1280), - [aux_sym__val_number_decimal_token3] = ACTIONS(1282), - [aux_sym__val_number_decimal_token4] = ACTIONS(1284), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym__str_single_quotes] = ACTIONS(1288), - [sym__str_back_ticks] = ACTIONS(1288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1290), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(281), + [anon_sym_let] = ACTIONS(281), + [anon_sym_let_DASHenv] = ACTIONS(281), + [anon_sym_mut] = ACTIONS(281), + [anon_sym_const] = ACTIONS(281), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [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(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [anon_sym_def] = ACTIONS(281), + [anon_sym_export_DASHenv] = ACTIONS(281), + [anon_sym_extern] = ACTIONS(281), + [anon_sym_module] = ACTIONS(281), + [anon_sym_use] = ACTIONS(281), + [anon_sym_LPAREN] = ACTIONS(1258), + [anon_sym_DOLLAR] = ACTIONS(1260), + [anon_sym_error] = ACTIONS(281), + [anon_sym_DASH2] = ACTIONS(203), + [anon_sym_break] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(281), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(281), + [anon_sym_do] = ACTIONS(281), + [anon_sym_if] = ACTIONS(281), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(281), + [anon_sym_try] = ACTIONS(281), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(281), + [anon_sym_source] = ACTIONS(281), + [anon_sym_source_DASHenv] = ACTIONS(281), + [anon_sym_hide] = ACTIONS(281), + [anon_sym_hide_DASHenv] = ACTIONS(281), + [anon_sym_overlay] = ACTIONS(281), + [anon_sym_as] = ACTIONS(281), + [anon_sym_PLUS2] = ACTIONS(203), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1270), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym__str_single_quotes] = ACTIONS(1274), + [sym__str_back_ticks] = ACTIONS(1274), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_register] = ACTIONS(281), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1276), }, [210] = { + [sym__expr_parenthesized_immediate] = STATE(452), + [sym__immediate_decimal] = STATE(382), + [sym_val_variable] = STATE(452), [sym_comment] = STATE(210), - [aux_sym__block_body_repeat1] = STATE(213), - [anon_sym_export] = ACTIONS(1455), - [anon_sym_alias] = ACTIONS(1455), - [anon_sym_let] = ACTIONS(1455), - [anon_sym_let_DASHenv] = ACTIONS(1455), - [anon_sym_mut] = ACTIONS(1455), - [anon_sym_const] = ACTIONS(1455), - [aux_sym_cmd_identifier_token1] = ACTIONS(1455), - [aux_sym_cmd_identifier_token2] = ACTIONS(1457), - [aux_sym_cmd_identifier_token3] = ACTIONS(1457), - [aux_sym_cmd_identifier_token4] = ACTIONS(1457), - [aux_sym_cmd_identifier_token5] = ACTIONS(1457), - [aux_sym_cmd_identifier_token6] = ACTIONS(1457), - [aux_sym_cmd_identifier_token7] = ACTIONS(1457), - [aux_sym_cmd_identifier_token8] = ACTIONS(1455), - [aux_sym_cmd_identifier_token9] = ACTIONS(1455), - [aux_sym_cmd_identifier_token10] = ACTIONS(1457), - [aux_sym_cmd_identifier_token11] = ACTIONS(1457), - [aux_sym_cmd_identifier_token12] = ACTIONS(1455), - [aux_sym_cmd_identifier_token13] = ACTIONS(1455), - [aux_sym_cmd_identifier_token14] = ACTIONS(1455), - [aux_sym_cmd_identifier_token15] = ACTIONS(1455), - [aux_sym_cmd_identifier_token16] = ACTIONS(1457), - [aux_sym_cmd_identifier_token17] = ACTIONS(1457), - [aux_sym_cmd_identifier_token18] = ACTIONS(1455), - [aux_sym_cmd_identifier_token19] = ACTIONS(1457), - [aux_sym_cmd_identifier_token20] = ACTIONS(1457), - [aux_sym_cmd_identifier_token21] = ACTIONS(1457), - [aux_sym_cmd_identifier_token22] = ACTIONS(1457), - [aux_sym_cmd_identifier_token23] = ACTIONS(1457), - [aux_sym_cmd_identifier_token24] = ACTIONS(1457), - [aux_sym_cmd_identifier_token25] = ACTIONS(1457), - [aux_sym_cmd_identifier_token26] = ACTIONS(1457), - [aux_sym_cmd_identifier_token27] = ACTIONS(1457), - [aux_sym_cmd_identifier_token28] = ACTIONS(1457), - [aux_sym_cmd_identifier_token29] = ACTIONS(1457), - [aux_sym_cmd_identifier_token30] = ACTIONS(1457), - [aux_sym_cmd_identifier_token31] = ACTIONS(1457), - [aux_sym_cmd_identifier_token32] = ACTIONS(1455), - [aux_sym_cmd_identifier_token33] = ACTIONS(1457), - [aux_sym_cmd_identifier_token34] = ACTIONS(1455), - [aux_sym_cmd_identifier_token35] = ACTIONS(1457), - [aux_sym_cmd_identifier_token36] = ACTIONS(1457), - [aux_sym_cmd_identifier_token37] = ACTIONS(1457), - [aux_sym_cmd_identifier_token38] = ACTIONS(1455), - [aux_sym_cmd_identifier_token39] = ACTIONS(1457), - [aux_sym_cmd_identifier_token40] = ACTIONS(1457), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(1455), - [anon_sym_export_DASHenv] = ACTIONS(1455), - [anon_sym_extern] = ACTIONS(1455), - [anon_sym_module] = ACTIONS(1455), - [anon_sym_use] = ACTIONS(1455), - [anon_sym_LBRACK] = ACTIONS(1457), - [anon_sym_LPAREN] = ACTIONS(1457), - [anon_sym_RPAREN] = ACTIONS(1459), - [anon_sym_DOLLAR] = ACTIONS(1455), - [anon_sym_error] = ACTIONS(1455), - [anon_sym_DASH2] = ACTIONS(1455), - [anon_sym_break] = ACTIONS(1455), - [anon_sym_continue] = ACTIONS(1455), - [anon_sym_for] = ACTIONS(1455), - [anon_sym_loop] = ACTIONS(1455), - [anon_sym_while] = ACTIONS(1455), - [anon_sym_do] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1455), - [anon_sym_match] = ACTIONS(1455), - [anon_sym_LBRACE] = ACTIONS(1457), - [anon_sym_RBRACE] = ACTIONS(1459), - [anon_sym_DOT_DOT] = ACTIONS(1455), - [anon_sym_try] = ACTIONS(1455), - [anon_sym_return] = ACTIONS(1455), - [anon_sym_source] = ACTIONS(1455), - [anon_sym_source_DASHenv] = ACTIONS(1455), - [anon_sym_register] = ACTIONS(1455), - [anon_sym_hide] = ACTIONS(1455), - [anon_sym_hide_DASHenv] = ACTIONS(1455), - [anon_sym_overlay] = ACTIONS(1455), - [anon_sym_where] = ACTIONS(1457), - [aux_sym_expr_unary_token1] = ACTIONS(1457), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1457), - [anon_sym_DOT_DOT_LT] = ACTIONS(1457), - [anon_sym_null] = ACTIONS(1455), - [anon_sym_true] = ACTIONS(1455), - [anon_sym_false] = ACTIONS(1455), - [aux_sym__val_number_decimal_token1] = ACTIONS(1455), - [aux_sym__val_number_decimal_token2] = ACTIONS(1457), - [aux_sym__val_number_decimal_token3] = ACTIONS(1457), - [aux_sym__val_number_decimal_token4] = ACTIONS(1457), - [aux_sym__val_number_token1] = ACTIONS(1457), - [aux_sym__val_number_token2] = ACTIONS(1457), - [aux_sym__val_number_token3] = ACTIONS(1457), - [aux_sym__val_number_token4] = ACTIONS(1455), - [aux_sym__val_number_token5] = ACTIONS(1455), - [aux_sym__val_number_token6] = ACTIONS(1455), - [anon_sym_0b] = ACTIONS(1455), - [anon_sym_0o] = ACTIONS(1455), - [anon_sym_0x] = ACTIONS(1455), - [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), - [aux_sym_env_var_token1] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1457), - [aux_sym_command_token1] = ACTIONS(1457), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1457), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_alias] = ACTIONS(1441), + [anon_sym_let] = ACTIONS(1441), + [anon_sym_let_DASHenv] = ACTIONS(1441), + [anon_sym_mut] = ACTIONS(1441), + [anon_sym_const] = ACTIONS(1441), + [aux_sym_cmd_identifier_token1] = ACTIONS(1441), + [aux_sym_cmd_identifier_token2] = ACTIONS(1441), + [aux_sym_cmd_identifier_token3] = ACTIONS(1441), + [aux_sym_cmd_identifier_token4] = ACTIONS(1441), + [aux_sym_cmd_identifier_token5] = ACTIONS(1441), + [aux_sym_cmd_identifier_token6] = ACTIONS(1441), + [aux_sym_cmd_identifier_token7] = ACTIONS(1441), + [aux_sym_cmd_identifier_token8] = ACTIONS(1441), + [aux_sym_cmd_identifier_token9] = ACTIONS(1441), + [aux_sym_cmd_identifier_token10] = ACTIONS(1441), + [aux_sym_cmd_identifier_token11] = ACTIONS(1441), + [aux_sym_cmd_identifier_token12] = ACTIONS(1441), + [aux_sym_cmd_identifier_token13] = ACTIONS(1441), + [aux_sym_cmd_identifier_token14] = ACTIONS(1441), + [aux_sym_cmd_identifier_token15] = ACTIONS(1441), + [aux_sym_cmd_identifier_token16] = ACTIONS(1441), + [aux_sym_cmd_identifier_token17] = ACTIONS(1441), + [aux_sym_cmd_identifier_token18] = ACTIONS(1441), + [aux_sym_cmd_identifier_token19] = ACTIONS(1441), + [aux_sym_cmd_identifier_token20] = ACTIONS(1441), + [aux_sym_cmd_identifier_token21] = ACTIONS(1441), + [aux_sym_cmd_identifier_token22] = ACTIONS(1441), + [aux_sym_cmd_identifier_token23] = ACTIONS(1441), + [aux_sym_cmd_identifier_token24] = ACTIONS(1441), + [aux_sym_cmd_identifier_token25] = ACTIONS(1441), + [aux_sym_cmd_identifier_token26] = ACTIONS(1441), + [aux_sym_cmd_identifier_token27] = ACTIONS(1441), + [aux_sym_cmd_identifier_token28] = ACTIONS(1441), + [aux_sym_cmd_identifier_token29] = ACTIONS(1441), + [aux_sym_cmd_identifier_token30] = ACTIONS(1441), + [aux_sym_cmd_identifier_token31] = ACTIONS(1441), + [aux_sym_cmd_identifier_token32] = ACTIONS(1441), + [aux_sym_cmd_identifier_token33] = ACTIONS(1441), + [aux_sym_cmd_identifier_token34] = ACTIONS(1441), + [aux_sym_cmd_identifier_token35] = ACTIONS(1441), + [aux_sym_cmd_identifier_token36] = ACTIONS(1441), + [aux_sym_cmd_identifier_token37] = ACTIONS(1441), + [aux_sym_cmd_identifier_token38] = ACTIONS(1441), + [aux_sym_cmd_identifier_token39] = ACTIONS(1441), + [aux_sym_cmd_identifier_token40] = ACTIONS(1441), + [anon_sym_def] = ACTIONS(1441), + [anon_sym_export_DASHenv] = ACTIONS(1441), + [anon_sym_extern] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_use] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1441), + [anon_sym_COMMA] = ACTIONS(1441), + [anon_sym_DOLLAR] = ACTIONS(1443), + [anon_sym_error] = ACTIONS(1441), + [anon_sym_DASH2] = ACTIONS(1441), + [anon_sym_break] = ACTIONS(1441), + [anon_sym_continue] = ACTIONS(1441), + [anon_sym_for] = ACTIONS(1441), + [anon_sym_in2] = ACTIONS(1441), + [anon_sym_loop] = ACTIONS(1441), + [anon_sym_make] = ACTIONS(1441), + [anon_sym_while] = ACTIONS(1441), + [anon_sym_do] = ACTIONS(1441), + [anon_sym_if] = ACTIONS(1441), + [anon_sym_else] = ACTIONS(1441), + [anon_sym_match] = ACTIONS(1441), + [anon_sym_RBRACE] = ACTIONS(1441), + [anon_sym_try] = ACTIONS(1441), + [anon_sym_catch] = ACTIONS(1441), + [anon_sym_return] = ACTIONS(1441), + [anon_sym_source] = ACTIONS(1441), + [anon_sym_source_DASHenv] = ACTIONS(1441), + [anon_sym_hide] = ACTIONS(1441), + [anon_sym_hide_DASHenv] = ACTIONS(1441), + [anon_sym_overlay] = ACTIONS(1441), + [anon_sym_as] = ACTIONS(1441), + [anon_sym_LPAREN2] = ACTIONS(1445), + [anon_sym_PLUS2] = ACTIONS(1441), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1441), + [anon_sym_DOT] = ACTIONS(1447), + [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(1441), + [aux_sym__val_number_decimal_token1] = ACTIONS(1441), + [aux_sym__val_number_decimal_token2] = ACTIONS(1441), + [aux_sym__val_number_decimal_token3] = ACTIONS(1441), + [aux_sym__val_number_decimal_token4] = ACTIONS(1441), + [aux_sym__val_number_token1] = ACTIONS(1441), + [aux_sym__val_number_token2] = ACTIONS(1441), + [aux_sym__val_number_token3] = ACTIONS(1441), + [aux_sym__val_number_token4] = ACTIONS(1441), + [aux_sym__val_number_token5] = ACTIONS(1441), + [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(1441), + [sym__entry_separator] = ACTIONS(1455), + [anon_sym_register] = ACTIONS(1441), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1457), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1455), }, [211] = { - [sym__expr_parenthesized_immediate] = STATE(479), - [sym__immediate_decimal] = STATE(372), - [sym_val_variable] = STATE(479), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5043), + [sym_block] = STATE(5044), + [sym__expression_parenthesized] = STATE(5044), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1170), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5044), [sym_comment] = STATE(211), - [anon_sym_export] = ACTIONS(1461), - [anon_sym_alias] = ACTIONS(1461), - [anon_sym_let] = ACTIONS(1461), - [anon_sym_let_DASHenv] = ACTIONS(1461), - [anon_sym_mut] = ACTIONS(1461), - [anon_sym_const] = ACTIONS(1461), - [aux_sym_cmd_identifier_token1] = ACTIONS(1461), - [aux_sym_cmd_identifier_token2] = ACTIONS(1461), - [aux_sym_cmd_identifier_token3] = ACTIONS(1461), - [aux_sym_cmd_identifier_token4] = ACTIONS(1461), - [aux_sym_cmd_identifier_token5] = ACTIONS(1461), - [aux_sym_cmd_identifier_token6] = ACTIONS(1461), - [aux_sym_cmd_identifier_token7] = ACTIONS(1461), - [aux_sym_cmd_identifier_token8] = ACTIONS(1461), - [aux_sym_cmd_identifier_token9] = ACTIONS(1461), - [aux_sym_cmd_identifier_token10] = ACTIONS(1461), - [aux_sym_cmd_identifier_token11] = ACTIONS(1461), - [aux_sym_cmd_identifier_token12] = ACTIONS(1461), - [aux_sym_cmd_identifier_token13] = ACTIONS(1461), - [aux_sym_cmd_identifier_token14] = ACTIONS(1461), - [aux_sym_cmd_identifier_token15] = ACTIONS(1461), - [aux_sym_cmd_identifier_token16] = ACTIONS(1461), - [aux_sym_cmd_identifier_token17] = ACTIONS(1461), - [aux_sym_cmd_identifier_token18] = ACTIONS(1461), - [aux_sym_cmd_identifier_token19] = ACTIONS(1461), - [aux_sym_cmd_identifier_token20] = ACTIONS(1461), - [aux_sym_cmd_identifier_token21] = ACTIONS(1461), - [aux_sym_cmd_identifier_token22] = ACTIONS(1461), - [aux_sym_cmd_identifier_token23] = ACTIONS(1461), - [aux_sym_cmd_identifier_token24] = ACTIONS(1461), - [aux_sym_cmd_identifier_token25] = ACTIONS(1461), - [aux_sym_cmd_identifier_token26] = ACTIONS(1461), - [aux_sym_cmd_identifier_token27] = ACTIONS(1461), - [aux_sym_cmd_identifier_token28] = ACTIONS(1461), - [aux_sym_cmd_identifier_token29] = ACTIONS(1461), - [aux_sym_cmd_identifier_token30] = ACTIONS(1461), - [aux_sym_cmd_identifier_token31] = ACTIONS(1461), - [aux_sym_cmd_identifier_token32] = ACTIONS(1461), - [aux_sym_cmd_identifier_token33] = ACTIONS(1461), - [aux_sym_cmd_identifier_token34] = ACTIONS(1461), - [aux_sym_cmd_identifier_token35] = ACTIONS(1461), - [aux_sym_cmd_identifier_token36] = ACTIONS(1461), - [aux_sym_cmd_identifier_token37] = ACTIONS(1461), - [aux_sym_cmd_identifier_token38] = ACTIONS(1461), - [aux_sym_cmd_identifier_token39] = ACTIONS(1461), - [aux_sym_cmd_identifier_token40] = ACTIONS(1461), - [anon_sym_def] = ACTIONS(1461), - [anon_sym_export_DASHenv] = ACTIONS(1461), - [anon_sym_extern] = ACTIONS(1461), - [anon_sym_module] = ACTIONS(1461), - [anon_sym_use] = ACTIONS(1461), - [anon_sym_LPAREN] = ACTIONS(1461), - [anon_sym_COMMA] = ACTIONS(1461), - [anon_sym_DOLLAR] = ACTIONS(1463), - [anon_sym_error] = ACTIONS(1461), - [anon_sym_DASH2] = ACTIONS(1461), - [anon_sym_break] = ACTIONS(1461), - [anon_sym_continue] = ACTIONS(1461), - [anon_sym_for] = ACTIONS(1461), - [anon_sym_in2] = ACTIONS(1461), - [anon_sym_loop] = ACTIONS(1461), - [anon_sym_make] = ACTIONS(1461), - [anon_sym_while] = ACTIONS(1461), - [anon_sym_do] = ACTIONS(1461), - [anon_sym_if] = ACTIONS(1461), - [anon_sym_else] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1461), - [anon_sym_RBRACE] = ACTIONS(1461), - [anon_sym_try] = ACTIONS(1461), - [anon_sym_catch] = ACTIONS(1461), - [anon_sym_return] = ACTIONS(1461), - [anon_sym_source] = ACTIONS(1461), - [anon_sym_source_DASHenv] = ACTIONS(1461), - [anon_sym_register] = ACTIONS(1461), - [anon_sym_hide] = ACTIONS(1461), - [anon_sym_hide_DASHenv] = ACTIONS(1461), - [anon_sym_overlay] = ACTIONS(1461), - [anon_sym_as] = ACTIONS(1461), - [anon_sym_LPAREN2] = ACTIONS(1465), - [anon_sym_PLUS2] = ACTIONS(1461), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1461), - [anon_sym_DOT] = ACTIONS(1467), - [aux_sym__immediate_decimal_token1] = ACTIONS(1469), - [aux_sym__immediate_decimal_token3] = ACTIONS(1469), - [aux_sym__immediate_decimal_token4] = ACTIONS(1471), - [aux_sym__immediate_decimal_token5] = ACTIONS(1473), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1461), - [aux_sym__val_number_decimal_token1] = ACTIONS(1461), - [aux_sym__val_number_decimal_token2] = ACTIONS(1461), - [aux_sym__val_number_decimal_token3] = ACTIONS(1461), - [aux_sym__val_number_decimal_token4] = ACTIONS(1461), - [aux_sym__val_number_token1] = ACTIONS(1461), - [aux_sym__val_number_token2] = ACTIONS(1461), - [aux_sym__val_number_token3] = ACTIONS(1461), - [aux_sym__val_number_token4] = ACTIONS(1461), - [aux_sym__val_number_token5] = ACTIONS(1461), - [aux_sym__val_number_token6] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1461), - [sym__str_single_quotes] = ACTIONS(1461), - [sym__str_back_ticks] = ACTIONS(1461), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1461), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1461), - [sym__entry_separator] = ACTIONS(1475), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1477), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1475), + [aux_sym_shebang_repeat1] = STATE(236), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(441), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1463), + [aux_sym__val_number_decimal_token2] = ACTIONS(1465), + [aux_sym__val_number_decimal_token3] = ACTIONS(1467), + [aux_sym__val_number_decimal_token4] = ACTIONS(1469), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [212] = { + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5041), + [sym_block] = STATE(5042), + [sym__expression_parenthesized] = STATE(5042), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1177), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5042), [sym_comment] = STATE(212), - [aux_sym__block_body_repeat1] = STATE(213), - [anon_sym_export] = ACTIONS(1455), - [anon_sym_alias] = ACTIONS(1455), - [anon_sym_let] = ACTIONS(1455), - [anon_sym_let_DASHenv] = ACTIONS(1455), - [anon_sym_mut] = ACTIONS(1455), - [anon_sym_const] = ACTIONS(1455), - [aux_sym_cmd_identifier_token1] = ACTIONS(1455), - [aux_sym_cmd_identifier_token2] = ACTIONS(1457), - [aux_sym_cmd_identifier_token3] = ACTIONS(1457), - [aux_sym_cmd_identifier_token4] = ACTIONS(1457), - [aux_sym_cmd_identifier_token5] = ACTIONS(1457), - [aux_sym_cmd_identifier_token6] = ACTIONS(1457), - [aux_sym_cmd_identifier_token7] = ACTIONS(1457), - [aux_sym_cmd_identifier_token8] = ACTIONS(1455), - [aux_sym_cmd_identifier_token9] = ACTIONS(1455), - [aux_sym_cmd_identifier_token10] = ACTIONS(1457), - [aux_sym_cmd_identifier_token11] = ACTIONS(1457), - [aux_sym_cmd_identifier_token12] = ACTIONS(1455), - [aux_sym_cmd_identifier_token13] = ACTIONS(1455), - [aux_sym_cmd_identifier_token14] = ACTIONS(1455), - [aux_sym_cmd_identifier_token15] = ACTIONS(1455), - [aux_sym_cmd_identifier_token16] = ACTIONS(1457), - [aux_sym_cmd_identifier_token17] = ACTIONS(1457), - [aux_sym_cmd_identifier_token18] = ACTIONS(1455), - [aux_sym_cmd_identifier_token19] = ACTIONS(1457), - [aux_sym_cmd_identifier_token20] = ACTIONS(1457), - [aux_sym_cmd_identifier_token21] = ACTIONS(1457), - [aux_sym_cmd_identifier_token22] = ACTIONS(1457), - [aux_sym_cmd_identifier_token23] = ACTIONS(1457), - [aux_sym_cmd_identifier_token24] = ACTIONS(1457), - [aux_sym_cmd_identifier_token25] = ACTIONS(1457), - [aux_sym_cmd_identifier_token26] = ACTIONS(1457), - [aux_sym_cmd_identifier_token27] = ACTIONS(1457), - [aux_sym_cmd_identifier_token28] = ACTIONS(1457), - [aux_sym_cmd_identifier_token29] = ACTIONS(1457), - [aux_sym_cmd_identifier_token30] = ACTIONS(1457), - [aux_sym_cmd_identifier_token31] = ACTIONS(1457), - [aux_sym_cmd_identifier_token32] = ACTIONS(1455), - [aux_sym_cmd_identifier_token33] = ACTIONS(1457), - [aux_sym_cmd_identifier_token34] = ACTIONS(1455), - [aux_sym_cmd_identifier_token35] = ACTIONS(1457), - [aux_sym_cmd_identifier_token36] = ACTIONS(1457), - [aux_sym_cmd_identifier_token37] = ACTIONS(1457), - [aux_sym_cmd_identifier_token38] = ACTIONS(1455), - [aux_sym_cmd_identifier_token39] = ACTIONS(1457), - [aux_sym_cmd_identifier_token40] = ACTIONS(1457), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(1455), - [anon_sym_export_DASHenv] = ACTIONS(1455), - [anon_sym_extern] = ACTIONS(1455), - [anon_sym_module] = ACTIONS(1455), - [anon_sym_use] = ACTIONS(1455), - [anon_sym_LBRACK] = ACTIONS(1457), - [anon_sym_LPAREN] = ACTIONS(1457), - [anon_sym_RPAREN] = ACTIONS(1479), - [anon_sym_DOLLAR] = ACTIONS(1455), - [anon_sym_error] = ACTIONS(1455), - [anon_sym_DASH2] = ACTIONS(1455), - [anon_sym_break] = ACTIONS(1455), - [anon_sym_continue] = ACTIONS(1455), - [anon_sym_for] = ACTIONS(1455), - [anon_sym_loop] = ACTIONS(1455), - [anon_sym_while] = ACTIONS(1455), - [anon_sym_do] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1455), - [anon_sym_match] = ACTIONS(1455), - [anon_sym_LBRACE] = ACTIONS(1457), - [anon_sym_RBRACE] = ACTIONS(1479), - [anon_sym_DOT_DOT] = ACTIONS(1455), - [anon_sym_try] = ACTIONS(1455), - [anon_sym_return] = ACTIONS(1455), - [anon_sym_source] = ACTIONS(1455), - [anon_sym_source_DASHenv] = ACTIONS(1455), - [anon_sym_register] = ACTIONS(1455), - [anon_sym_hide] = ACTIONS(1455), - [anon_sym_hide_DASHenv] = ACTIONS(1455), - [anon_sym_overlay] = ACTIONS(1455), - [anon_sym_where] = ACTIONS(1457), - [aux_sym_expr_unary_token1] = ACTIONS(1457), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1457), - [anon_sym_DOT_DOT_LT] = ACTIONS(1457), - [anon_sym_null] = ACTIONS(1455), - [anon_sym_true] = ACTIONS(1455), - [anon_sym_false] = ACTIONS(1455), - [aux_sym__val_number_decimal_token1] = ACTIONS(1455), - [aux_sym__val_number_decimal_token2] = ACTIONS(1457), - [aux_sym__val_number_decimal_token3] = ACTIONS(1457), - [aux_sym__val_number_decimal_token4] = ACTIONS(1457), - [aux_sym__val_number_token1] = ACTIONS(1457), - [aux_sym__val_number_token2] = ACTIONS(1457), - [aux_sym__val_number_token3] = ACTIONS(1457), - [aux_sym__val_number_token4] = ACTIONS(1455), - [aux_sym__val_number_token5] = ACTIONS(1455), - [aux_sym__val_number_token6] = ACTIONS(1455), - [anon_sym_0b] = ACTIONS(1455), - [anon_sym_0o] = ACTIONS(1455), - [anon_sym_0x] = ACTIONS(1455), - [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), - [aux_sym_env_var_token1] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1457), - [aux_sym_command_token1] = ACTIONS(1457), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1457), + [aux_sym_shebang_repeat1] = STATE(1179), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1471), + [aux_sym__val_number_decimal_token2] = ACTIONS(1473), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1477), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [213] = { + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5041), + [sym_block] = STATE(5042), + [sym__expression_parenthesized] = STATE(5042), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1177), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5042), [sym_comment] = STATE(213), - [aux_sym__block_body_repeat1] = STATE(213), - [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(1483), - [aux_sym_cmd_identifier_token3] = ACTIONS(1483), - [aux_sym_cmd_identifier_token4] = ACTIONS(1483), - [aux_sym_cmd_identifier_token5] = ACTIONS(1483), - [aux_sym_cmd_identifier_token6] = ACTIONS(1483), - [aux_sym_cmd_identifier_token7] = ACTIONS(1483), - [aux_sym_cmd_identifier_token8] = ACTIONS(1481), - [aux_sym_cmd_identifier_token9] = ACTIONS(1481), - [aux_sym_cmd_identifier_token10] = ACTIONS(1483), - [aux_sym_cmd_identifier_token11] = ACTIONS(1483), - [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(1483), - [aux_sym_cmd_identifier_token17] = ACTIONS(1483), - [aux_sym_cmd_identifier_token18] = ACTIONS(1481), - [aux_sym_cmd_identifier_token19] = ACTIONS(1483), - [aux_sym_cmd_identifier_token20] = ACTIONS(1483), - [aux_sym_cmd_identifier_token21] = ACTIONS(1483), - [aux_sym_cmd_identifier_token22] = ACTIONS(1483), - [aux_sym_cmd_identifier_token23] = ACTIONS(1483), - [aux_sym_cmd_identifier_token24] = ACTIONS(1483), - [aux_sym_cmd_identifier_token25] = ACTIONS(1483), - [aux_sym_cmd_identifier_token26] = ACTIONS(1483), - [aux_sym_cmd_identifier_token27] = ACTIONS(1483), - [aux_sym_cmd_identifier_token28] = ACTIONS(1483), - [aux_sym_cmd_identifier_token29] = ACTIONS(1483), - [aux_sym_cmd_identifier_token30] = ACTIONS(1483), - [aux_sym_cmd_identifier_token31] = ACTIONS(1483), - [aux_sym_cmd_identifier_token32] = ACTIONS(1481), - [aux_sym_cmd_identifier_token33] = ACTIONS(1483), - [aux_sym_cmd_identifier_token34] = ACTIONS(1481), - [aux_sym_cmd_identifier_token35] = ACTIONS(1483), - [aux_sym_cmd_identifier_token36] = ACTIONS(1483), - [aux_sym_cmd_identifier_token37] = ACTIONS(1483), - [aux_sym_cmd_identifier_token38] = ACTIONS(1481), - [aux_sym_cmd_identifier_token39] = ACTIONS(1483), - [aux_sym_cmd_identifier_token40] = ACTIONS(1483), - [sym__newline] = ACTIONS(1485), - [anon_sym_SEMI] = ACTIONS(1485), - [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_LBRACK] = ACTIONS(1483), - [anon_sym_LPAREN] = ACTIONS(1483), - [anon_sym_RPAREN] = ACTIONS(1483), - [anon_sym_DOLLAR] = ACTIONS(1481), - [anon_sym_error] = ACTIONS(1481), - [anon_sym_DASH2] = ACTIONS(1481), - [anon_sym_break] = ACTIONS(1481), - [anon_sym_continue] = ACTIONS(1481), - [anon_sym_for] = ACTIONS(1481), - [anon_sym_loop] = ACTIONS(1481), - [anon_sym_while] = ACTIONS(1481), - [anon_sym_do] = ACTIONS(1481), - [anon_sym_if] = ACTIONS(1481), - [anon_sym_match] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1483), - [anon_sym_RBRACE] = ACTIONS(1483), - [anon_sym_DOT_DOT] = ACTIONS(1481), - [anon_sym_try] = 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_where] = ACTIONS(1483), - [aux_sym_expr_unary_token1] = ACTIONS(1483), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1483), - [anon_sym_DOT_DOT_LT] = ACTIONS(1483), - [anon_sym_null] = ACTIONS(1481), - [anon_sym_true] = ACTIONS(1481), - [anon_sym_false] = ACTIONS(1481), - [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), - [aux_sym__val_number_token4] = ACTIONS(1481), - [aux_sym__val_number_token5] = ACTIONS(1481), - [aux_sym__val_number_token6] = ACTIONS(1481), - [anon_sym_0b] = ACTIONS(1481), - [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), - [aux_sym_env_var_token1] = ACTIONS(1481), - [anon_sym_CARET] = ACTIONS(1483), - [aux_sym_command_token1] = ACTIONS(1483), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1483), + [aux_sym_shebang_repeat1] = STATE(223), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1471), + [aux_sym__val_number_decimal_token2] = ACTIONS(1473), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1477), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [214] = { + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5043), + [sym_block] = STATE(5044), + [sym__expression_parenthesized] = STATE(5044), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1177), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5044), [sym_comment] = STATE(214), - [aux_sym__block_body_repeat1] = STATE(213), - [anon_sym_export] = ACTIONS(1455), - [anon_sym_alias] = ACTIONS(1455), - [anon_sym_let] = ACTIONS(1455), - [anon_sym_let_DASHenv] = ACTIONS(1455), - [anon_sym_mut] = ACTIONS(1455), - [anon_sym_const] = ACTIONS(1455), - [aux_sym_cmd_identifier_token1] = ACTIONS(1455), - [aux_sym_cmd_identifier_token2] = ACTIONS(1457), - [aux_sym_cmd_identifier_token3] = ACTIONS(1457), - [aux_sym_cmd_identifier_token4] = ACTIONS(1457), - [aux_sym_cmd_identifier_token5] = ACTIONS(1457), - [aux_sym_cmd_identifier_token6] = ACTIONS(1457), - [aux_sym_cmd_identifier_token7] = ACTIONS(1457), - [aux_sym_cmd_identifier_token8] = ACTIONS(1455), - [aux_sym_cmd_identifier_token9] = ACTIONS(1455), - [aux_sym_cmd_identifier_token10] = ACTIONS(1457), - [aux_sym_cmd_identifier_token11] = ACTIONS(1457), - [aux_sym_cmd_identifier_token12] = ACTIONS(1455), - [aux_sym_cmd_identifier_token13] = ACTIONS(1455), - [aux_sym_cmd_identifier_token14] = ACTIONS(1455), - [aux_sym_cmd_identifier_token15] = ACTIONS(1455), - [aux_sym_cmd_identifier_token16] = ACTIONS(1457), - [aux_sym_cmd_identifier_token17] = ACTIONS(1457), - [aux_sym_cmd_identifier_token18] = ACTIONS(1455), - [aux_sym_cmd_identifier_token19] = ACTIONS(1457), - [aux_sym_cmd_identifier_token20] = ACTIONS(1457), - [aux_sym_cmd_identifier_token21] = ACTIONS(1457), - [aux_sym_cmd_identifier_token22] = ACTIONS(1457), - [aux_sym_cmd_identifier_token23] = ACTIONS(1457), - [aux_sym_cmd_identifier_token24] = ACTIONS(1457), - [aux_sym_cmd_identifier_token25] = ACTIONS(1457), - [aux_sym_cmd_identifier_token26] = ACTIONS(1457), - [aux_sym_cmd_identifier_token27] = ACTIONS(1457), - [aux_sym_cmd_identifier_token28] = ACTIONS(1457), - [aux_sym_cmd_identifier_token29] = ACTIONS(1457), - [aux_sym_cmd_identifier_token30] = ACTIONS(1457), - [aux_sym_cmd_identifier_token31] = ACTIONS(1457), - [aux_sym_cmd_identifier_token32] = ACTIONS(1455), - [aux_sym_cmd_identifier_token33] = ACTIONS(1457), - [aux_sym_cmd_identifier_token34] = ACTIONS(1455), - [aux_sym_cmd_identifier_token35] = ACTIONS(1457), - [aux_sym_cmd_identifier_token36] = ACTIONS(1457), - [aux_sym_cmd_identifier_token37] = ACTIONS(1457), - [aux_sym_cmd_identifier_token38] = ACTIONS(1455), - [aux_sym_cmd_identifier_token39] = ACTIONS(1457), - [aux_sym_cmd_identifier_token40] = ACTIONS(1457), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(1455), - [anon_sym_export_DASHenv] = ACTIONS(1455), - [anon_sym_extern] = ACTIONS(1455), - [anon_sym_module] = ACTIONS(1455), - [anon_sym_use] = ACTIONS(1455), - [anon_sym_LBRACK] = ACTIONS(1457), - [anon_sym_LPAREN] = ACTIONS(1457), - [anon_sym_RPAREN] = ACTIONS(1488), - [anon_sym_DOLLAR] = ACTIONS(1455), - [anon_sym_error] = ACTIONS(1455), - [anon_sym_DASH2] = ACTIONS(1455), - [anon_sym_break] = ACTIONS(1455), - [anon_sym_continue] = ACTIONS(1455), - [anon_sym_for] = ACTIONS(1455), - [anon_sym_loop] = ACTIONS(1455), - [anon_sym_while] = ACTIONS(1455), - [anon_sym_do] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1455), - [anon_sym_match] = ACTIONS(1455), - [anon_sym_LBRACE] = ACTIONS(1457), - [anon_sym_RBRACE] = ACTIONS(1488), - [anon_sym_DOT_DOT] = ACTIONS(1455), - [anon_sym_try] = ACTIONS(1455), - [anon_sym_return] = ACTIONS(1455), - [anon_sym_source] = ACTIONS(1455), - [anon_sym_source_DASHenv] = ACTIONS(1455), - [anon_sym_register] = ACTIONS(1455), - [anon_sym_hide] = ACTIONS(1455), - [anon_sym_hide_DASHenv] = ACTIONS(1455), - [anon_sym_overlay] = ACTIONS(1455), - [anon_sym_where] = ACTIONS(1457), - [aux_sym_expr_unary_token1] = ACTIONS(1457), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1457), - [anon_sym_DOT_DOT_LT] = ACTIONS(1457), - [anon_sym_null] = ACTIONS(1455), - [anon_sym_true] = ACTIONS(1455), - [anon_sym_false] = ACTIONS(1455), - [aux_sym__val_number_decimal_token1] = ACTIONS(1455), - [aux_sym__val_number_decimal_token2] = ACTIONS(1457), - [aux_sym__val_number_decimal_token3] = ACTIONS(1457), - [aux_sym__val_number_decimal_token4] = ACTIONS(1457), - [aux_sym__val_number_token1] = ACTIONS(1457), - [aux_sym__val_number_token2] = ACTIONS(1457), - [aux_sym__val_number_token3] = ACTIONS(1457), - [aux_sym__val_number_token4] = ACTIONS(1455), - [aux_sym__val_number_token5] = ACTIONS(1455), - [aux_sym__val_number_token6] = ACTIONS(1455), - [anon_sym_0b] = ACTIONS(1455), - [anon_sym_0o] = ACTIONS(1455), - [anon_sym_0x] = ACTIONS(1455), - [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), - [aux_sym_env_var_token1] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1457), - [aux_sym_command_token1] = ACTIONS(1457), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1457), + [aux_sym_shebang_repeat1] = STATE(1179), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1471), + [aux_sym__val_number_decimal_token2] = ACTIONS(1473), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1477), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [215] = { + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5043), + [sym_block] = STATE(5044), + [sym__expression_parenthesized] = STATE(5044), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1177), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5044), [sym_comment] = STATE(215), - [aux_sym_shebang_repeat1] = STATE(7296), - [aux_sym__parenthesized_body_repeat1] = STATE(215), - [anon_sym_export] = ACTIONS(1490), - [anon_sym_alias] = ACTIONS(1490), - [anon_sym_let] = ACTIONS(1490), - [anon_sym_let_DASHenv] = ACTIONS(1490), - [anon_sym_mut] = ACTIONS(1490), - [anon_sym_const] = ACTIONS(1490), - [aux_sym_cmd_identifier_token1] = ACTIONS(1490), - [aux_sym_cmd_identifier_token2] = ACTIONS(1492), - [aux_sym_cmd_identifier_token3] = ACTIONS(1492), - [aux_sym_cmd_identifier_token4] = ACTIONS(1492), - [aux_sym_cmd_identifier_token5] = ACTIONS(1492), - [aux_sym_cmd_identifier_token6] = ACTIONS(1492), - [aux_sym_cmd_identifier_token7] = ACTIONS(1492), - [aux_sym_cmd_identifier_token8] = ACTIONS(1490), - [aux_sym_cmd_identifier_token9] = ACTIONS(1490), - [aux_sym_cmd_identifier_token10] = ACTIONS(1492), - [aux_sym_cmd_identifier_token11] = ACTIONS(1492), - [aux_sym_cmd_identifier_token12] = ACTIONS(1490), - [aux_sym_cmd_identifier_token13] = ACTIONS(1490), - [aux_sym_cmd_identifier_token14] = ACTIONS(1490), - [aux_sym_cmd_identifier_token15] = ACTIONS(1490), - [aux_sym_cmd_identifier_token16] = ACTIONS(1492), - [aux_sym_cmd_identifier_token17] = ACTIONS(1492), - [aux_sym_cmd_identifier_token18] = ACTIONS(1490), - [aux_sym_cmd_identifier_token19] = ACTIONS(1492), - [aux_sym_cmd_identifier_token20] = ACTIONS(1492), - [aux_sym_cmd_identifier_token21] = ACTIONS(1492), - [aux_sym_cmd_identifier_token22] = ACTIONS(1492), - [aux_sym_cmd_identifier_token23] = ACTIONS(1492), - [aux_sym_cmd_identifier_token24] = ACTIONS(1492), - [aux_sym_cmd_identifier_token25] = ACTIONS(1492), - [aux_sym_cmd_identifier_token26] = ACTIONS(1492), - [aux_sym_cmd_identifier_token27] = ACTIONS(1492), - [aux_sym_cmd_identifier_token28] = ACTIONS(1492), - [aux_sym_cmd_identifier_token29] = ACTIONS(1492), - [aux_sym_cmd_identifier_token30] = ACTIONS(1492), - [aux_sym_cmd_identifier_token31] = ACTIONS(1492), - [aux_sym_cmd_identifier_token32] = ACTIONS(1490), - [aux_sym_cmd_identifier_token33] = ACTIONS(1492), - [aux_sym_cmd_identifier_token34] = ACTIONS(1490), - [aux_sym_cmd_identifier_token35] = ACTIONS(1492), - [aux_sym_cmd_identifier_token36] = ACTIONS(1492), - [aux_sym_cmd_identifier_token37] = ACTIONS(1492), - [aux_sym_cmd_identifier_token38] = ACTIONS(1490), - [aux_sym_cmd_identifier_token39] = ACTIONS(1492), - [aux_sym_cmd_identifier_token40] = ACTIONS(1492), - [sym__newline] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1497), - [anon_sym_def] = ACTIONS(1490), - [anon_sym_export_DASHenv] = ACTIONS(1490), - [anon_sym_extern] = ACTIONS(1490), - [anon_sym_module] = ACTIONS(1490), - [anon_sym_use] = ACTIONS(1490), - [anon_sym_LBRACK] = ACTIONS(1492), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_DOLLAR] = ACTIONS(1490), - [anon_sym_error] = ACTIONS(1490), - [anon_sym_DASH2] = ACTIONS(1490), - [anon_sym_break] = ACTIONS(1490), - [anon_sym_continue] = ACTIONS(1490), - [anon_sym_for] = ACTIONS(1490), - [anon_sym_loop] = ACTIONS(1490), - [anon_sym_while] = ACTIONS(1490), - [anon_sym_do] = ACTIONS(1490), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_match] = ACTIONS(1490), - [anon_sym_LBRACE] = ACTIONS(1492), - [anon_sym_DOT_DOT] = ACTIONS(1490), - [anon_sym_try] = ACTIONS(1490), - [anon_sym_return] = ACTIONS(1490), - [anon_sym_source] = ACTIONS(1490), - [anon_sym_source_DASHenv] = ACTIONS(1490), - [anon_sym_register] = ACTIONS(1490), - [anon_sym_hide] = ACTIONS(1490), - [anon_sym_hide_DASHenv] = ACTIONS(1490), - [anon_sym_overlay] = ACTIONS(1490), - [anon_sym_where] = ACTIONS(1492), - [aux_sym_expr_unary_token1] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1492), - [anon_sym_DOT_DOT_LT] = ACTIONS(1492), - [anon_sym_null] = ACTIONS(1490), - [anon_sym_true] = ACTIONS(1490), - [anon_sym_false] = ACTIONS(1490), - [aux_sym__val_number_decimal_token1] = ACTIONS(1490), - [aux_sym__val_number_decimal_token2] = ACTIONS(1492), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1492), - [aux_sym__val_number_token1] = ACTIONS(1492), - [aux_sym__val_number_token2] = ACTIONS(1492), - [aux_sym__val_number_token3] = ACTIONS(1492), - [aux_sym__val_number_token4] = ACTIONS(1490), - [aux_sym__val_number_token5] = ACTIONS(1490), - [aux_sym__val_number_token6] = ACTIONS(1490), - [anon_sym_0b] = ACTIONS(1490), - [anon_sym_0o] = ACTIONS(1490), - [anon_sym_0x] = ACTIONS(1490), - [sym_val_date] = ACTIONS(1492), - [anon_sym_DQUOTE] = ACTIONS(1492), - [sym__str_single_quotes] = ACTIONS(1492), - [sym__str_back_ticks] = ACTIONS(1492), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1492), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1492), - [aux_sym_env_var_token1] = ACTIONS(1490), - [anon_sym_CARET] = ACTIONS(1492), - [aux_sym_command_token1] = ACTIONS(1492), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1492), + [aux_sym_shebang_repeat1] = STATE(232), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1471), + [aux_sym__val_number_decimal_token2] = ACTIONS(1473), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1477), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [216] = { - [sym__expr_parenthesized_immediate] = STATE(477), - [sym__immediate_decimal] = STATE(478), - [sym_val_variable] = STATE(477), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5119), + [sym_block] = STATE(5120), + [sym__expression_parenthesized] = STATE(5120), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1170), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5120), [sym_comment] = STATE(216), - [anon_sym_export] = ACTIONS(1500), - [anon_sym_alias] = ACTIONS(1500), - [anon_sym_let] = ACTIONS(1500), - [anon_sym_let_DASHenv] = ACTIONS(1500), - [anon_sym_mut] = ACTIONS(1500), - [anon_sym_const] = ACTIONS(1500), - [aux_sym_cmd_identifier_token1] = ACTIONS(1500), - [aux_sym_cmd_identifier_token2] = ACTIONS(1500), - [aux_sym_cmd_identifier_token3] = ACTIONS(1500), - [aux_sym_cmd_identifier_token4] = ACTIONS(1500), - [aux_sym_cmd_identifier_token5] = ACTIONS(1500), - [aux_sym_cmd_identifier_token6] = ACTIONS(1500), - [aux_sym_cmd_identifier_token7] = ACTIONS(1500), - [aux_sym_cmd_identifier_token8] = ACTIONS(1500), - [aux_sym_cmd_identifier_token9] = ACTIONS(1500), - [aux_sym_cmd_identifier_token10] = ACTIONS(1500), - [aux_sym_cmd_identifier_token11] = ACTIONS(1500), - [aux_sym_cmd_identifier_token12] = ACTIONS(1500), - [aux_sym_cmd_identifier_token13] = ACTIONS(1500), - [aux_sym_cmd_identifier_token14] = ACTIONS(1500), - [aux_sym_cmd_identifier_token15] = ACTIONS(1500), - [aux_sym_cmd_identifier_token16] = ACTIONS(1500), - [aux_sym_cmd_identifier_token17] = ACTIONS(1500), - [aux_sym_cmd_identifier_token18] = ACTIONS(1500), - [aux_sym_cmd_identifier_token19] = ACTIONS(1500), - [aux_sym_cmd_identifier_token20] = ACTIONS(1500), - [aux_sym_cmd_identifier_token21] = ACTIONS(1500), - [aux_sym_cmd_identifier_token22] = ACTIONS(1500), - [aux_sym_cmd_identifier_token23] = ACTIONS(1500), - [aux_sym_cmd_identifier_token24] = ACTIONS(1500), - [aux_sym_cmd_identifier_token25] = ACTIONS(1500), - [aux_sym_cmd_identifier_token26] = ACTIONS(1500), - [aux_sym_cmd_identifier_token27] = ACTIONS(1500), - [aux_sym_cmd_identifier_token28] = ACTIONS(1500), - [aux_sym_cmd_identifier_token29] = ACTIONS(1500), - [aux_sym_cmd_identifier_token30] = ACTIONS(1500), - [aux_sym_cmd_identifier_token31] = ACTIONS(1500), - [aux_sym_cmd_identifier_token32] = ACTIONS(1500), - [aux_sym_cmd_identifier_token33] = ACTIONS(1500), - [aux_sym_cmd_identifier_token34] = ACTIONS(1500), - [aux_sym_cmd_identifier_token35] = ACTIONS(1500), - [aux_sym_cmd_identifier_token36] = ACTIONS(1500), - [aux_sym_cmd_identifier_token37] = ACTIONS(1500), - [aux_sym_cmd_identifier_token38] = ACTIONS(1500), - [aux_sym_cmd_identifier_token39] = ACTIONS(1500), - [aux_sym_cmd_identifier_token40] = ACTIONS(1500), - [anon_sym_def] = ACTIONS(1500), - [anon_sym_export_DASHenv] = ACTIONS(1500), - [anon_sym_extern] = ACTIONS(1500), - [anon_sym_module] = ACTIONS(1500), - [anon_sym_use] = ACTIONS(1500), - [anon_sym_LPAREN] = ACTIONS(1500), - [anon_sym_COMMA] = ACTIONS(1500), - [anon_sym_DOLLAR] = ACTIONS(1463), - [anon_sym_error] = ACTIONS(1500), - [anon_sym_DASH2] = ACTIONS(1500), - [anon_sym_break] = ACTIONS(1500), - [anon_sym_continue] = ACTIONS(1500), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_in2] = ACTIONS(1500), - [anon_sym_loop] = ACTIONS(1500), - [anon_sym_make] = ACTIONS(1500), - [anon_sym_while] = ACTIONS(1500), - [anon_sym_do] = ACTIONS(1500), - [anon_sym_if] = ACTIONS(1500), - [anon_sym_else] = ACTIONS(1500), - [anon_sym_match] = ACTIONS(1500), - [anon_sym_RBRACE] = ACTIONS(1500), - [anon_sym_try] = ACTIONS(1500), - [anon_sym_catch] = ACTIONS(1500), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_source] = ACTIONS(1500), - [anon_sym_source_DASHenv] = ACTIONS(1500), - [anon_sym_register] = ACTIONS(1500), - [anon_sym_hide] = ACTIONS(1500), - [anon_sym_hide_DASHenv] = ACTIONS(1500), - [anon_sym_overlay] = ACTIONS(1500), - [anon_sym_as] = ACTIONS(1500), - [anon_sym_LPAREN2] = ACTIONS(1465), - [anon_sym_PLUS2] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1500), - [anon_sym_DOT] = ACTIONS(1502), - [aux_sym__immediate_decimal_token1] = ACTIONS(1504), - [aux_sym__immediate_decimal_token3] = ACTIONS(1504), - [aux_sym__immediate_decimal_token4] = ACTIONS(1506), - [aux_sym__immediate_decimal_token5] = ACTIONS(1508), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1500), - [aux_sym__val_number_decimal_token1] = ACTIONS(1500), - [aux_sym__val_number_decimal_token2] = ACTIONS(1500), - [aux_sym__val_number_decimal_token3] = ACTIONS(1500), - [aux_sym__val_number_decimal_token4] = ACTIONS(1500), - [aux_sym__val_number_token1] = ACTIONS(1500), - [aux_sym__val_number_token2] = ACTIONS(1500), - [aux_sym__val_number_token3] = ACTIONS(1500), - [aux_sym__val_number_token4] = ACTIONS(1500), - [aux_sym__val_number_token5] = ACTIONS(1500), - [aux_sym__val_number_token6] = ACTIONS(1500), - [anon_sym_DQUOTE] = ACTIONS(1500), - [sym__str_single_quotes] = ACTIONS(1500), - [sym__str_back_ticks] = ACTIONS(1500), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1500), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1500), - [sym__entry_separator] = ACTIONS(1510), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1510), + [aux_sym_shebang_repeat1] = STATE(219), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(441), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1463), + [aux_sym__val_number_decimal_token2] = ACTIONS(1465), + [aux_sym__val_number_decimal_token3] = ACTIONS(1467), + [aux_sym__val_number_decimal_token4] = ACTIONS(1469), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [217] = { - [sym__expr_parenthesized_immediate] = STATE(514), - [sym__immediate_decimal] = STATE(403), - [sym_val_variable] = STATE(514), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5045), + [sym_block] = STATE(5047), + [sym__expression_parenthesized] = STATE(5047), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1177), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5047), [sym_comment] = STATE(217), - [anon_sym_export] = ACTIONS(1461), - [anon_sym_alias] = ACTIONS(1461), - [anon_sym_let] = ACTIONS(1461), - [anon_sym_let_DASHenv] = ACTIONS(1461), - [anon_sym_mut] = ACTIONS(1461), - [anon_sym_const] = ACTIONS(1461), - [aux_sym_cmd_identifier_token1] = ACTIONS(1461), - [aux_sym_cmd_identifier_token2] = ACTIONS(1475), - [aux_sym_cmd_identifier_token3] = ACTIONS(1475), - [aux_sym_cmd_identifier_token4] = ACTIONS(1475), - [aux_sym_cmd_identifier_token5] = ACTIONS(1475), - [aux_sym_cmd_identifier_token6] = ACTIONS(1475), - [aux_sym_cmd_identifier_token7] = ACTIONS(1475), - [aux_sym_cmd_identifier_token8] = ACTIONS(1461), - [aux_sym_cmd_identifier_token9] = ACTIONS(1461), - [aux_sym_cmd_identifier_token10] = ACTIONS(1475), - [aux_sym_cmd_identifier_token11] = ACTIONS(1475), - [aux_sym_cmd_identifier_token12] = ACTIONS(1461), - [aux_sym_cmd_identifier_token13] = ACTIONS(1461), - [aux_sym_cmd_identifier_token14] = ACTIONS(1461), - [aux_sym_cmd_identifier_token15] = ACTIONS(1461), - [aux_sym_cmd_identifier_token16] = ACTIONS(1475), - [aux_sym_cmd_identifier_token17] = ACTIONS(1475), - [aux_sym_cmd_identifier_token18] = ACTIONS(1475), - [aux_sym_cmd_identifier_token19] = ACTIONS(1475), - [aux_sym_cmd_identifier_token20] = ACTIONS(1475), - [aux_sym_cmd_identifier_token21] = ACTIONS(1475), - [aux_sym_cmd_identifier_token22] = ACTIONS(1475), - [aux_sym_cmd_identifier_token23] = ACTIONS(1475), - [aux_sym_cmd_identifier_token24] = ACTIONS(1475), - [aux_sym_cmd_identifier_token25] = ACTIONS(1475), - [aux_sym_cmd_identifier_token26] = ACTIONS(1475), - [aux_sym_cmd_identifier_token27] = ACTIONS(1475), - [aux_sym_cmd_identifier_token28] = ACTIONS(1475), - [aux_sym_cmd_identifier_token29] = ACTIONS(1475), - [aux_sym_cmd_identifier_token30] = ACTIONS(1475), - [aux_sym_cmd_identifier_token31] = ACTIONS(1475), - [aux_sym_cmd_identifier_token32] = ACTIONS(1475), - [aux_sym_cmd_identifier_token33] = ACTIONS(1475), - [aux_sym_cmd_identifier_token34] = ACTIONS(1461), - [aux_sym_cmd_identifier_token35] = ACTIONS(1475), - [aux_sym_cmd_identifier_token36] = ACTIONS(1475), - [aux_sym_cmd_identifier_token37] = ACTIONS(1475), - [aux_sym_cmd_identifier_token38] = ACTIONS(1461), - [aux_sym_cmd_identifier_token39] = ACTIONS(1475), - [aux_sym_cmd_identifier_token40] = ACTIONS(1475), - [anon_sym_def] = ACTIONS(1461), - [anon_sym_export_DASHenv] = ACTIONS(1461), - [anon_sym_extern] = ACTIONS(1461), - [anon_sym_module] = ACTIONS(1461), - [anon_sym_use] = ACTIONS(1461), - [anon_sym_LPAREN] = ACTIONS(1461), - [anon_sym_COMMA] = ACTIONS(1475), - [anon_sym_DOLLAR] = ACTIONS(1512), - [anon_sym_error] = ACTIONS(1461), - [anon_sym_DASH2] = ACTIONS(1461), - [anon_sym_break] = ACTIONS(1461), - [anon_sym_continue] = ACTIONS(1461), - [anon_sym_for] = ACTIONS(1461), - [anon_sym_in2] = ACTIONS(1461), - [anon_sym_loop] = ACTIONS(1461), - [anon_sym_make] = ACTIONS(1461), - [anon_sym_while] = ACTIONS(1461), - [anon_sym_do] = ACTIONS(1461), - [anon_sym_if] = ACTIONS(1461), - [anon_sym_else] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1461), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym_try] = ACTIONS(1461), - [anon_sym_catch] = ACTIONS(1461), - [anon_sym_return] = ACTIONS(1461), - [anon_sym_source] = ACTIONS(1461), - [anon_sym_source_DASHenv] = ACTIONS(1461), - [anon_sym_register] = ACTIONS(1461), - [anon_sym_hide] = ACTIONS(1461), - [anon_sym_hide_DASHenv] = ACTIONS(1461), - [anon_sym_overlay] = ACTIONS(1461), - [anon_sym_as] = ACTIONS(1461), - [anon_sym_LPAREN2] = ACTIONS(1514), - [anon_sym_PLUS2] = ACTIONS(1461), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1475), - [anon_sym_DOT] = ACTIONS(1516), - [aux_sym__immediate_decimal_token1] = ACTIONS(1518), - [aux_sym__immediate_decimal_token3] = ACTIONS(1520), - [aux_sym__immediate_decimal_token4] = ACTIONS(1522), - [aux_sym__immediate_decimal_token5] = ACTIONS(1524), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1475), - [aux_sym__val_number_decimal_token1] = ACTIONS(1461), - [aux_sym__val_number_decimal_token2] = ACTIONS(1461), - [aux_sym__val_number_decimal_token3] = ACTIONS(1461), - [aux_sym__val_number_decimal_token4] = ACTIONS(1461), - [aux_sym__val_number_token1] = ACTIONS(1475), - [aux_sym__val_number_token2] = ACTIONS(1475), - [aux_sym__val_number_token3] = ACTIONS(1475), - [aux_sym__val_number_token4] = ACTIONS(1461), - [aux_sym__val_number_token5] = ACTIONS(1461), - [aux_sym__val_number_token6] = ACTIONS(1461), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1475), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1477), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1475), + [aux_sym_shebang_repeat1] = STATE(246), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1471), + [aux_sym__val_number_decimal_token2] = ACTIONS(1473), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1477), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [218] = { - [sym__expr_parenthesized_immediate] = STATE(624), - [sym__immediate_decimal] = STATE(519), - [sym_val_variable] = STATE(624), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5136), + [sym_block] = STATE(5056), + [sym__expression_parenthesized] = STATE(5056), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1177), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5056), [sym_comment] = STATE(218), - [anon_sym_export] = ACTIONS(1461), - [anon_sym_alias] = ACTIONS(1461), - [anon_sym_let] = ACTIONS(1461), - [anon_sym_let_DASHenv] = ACTIONS(1461), - [anon_sym_mut] = ACTIONS(1461), - [anon_sym_const] = ACTIONS(1461), - [aux_sym_cmd_identifier_token1] = ACTIONS(1461), - [aux_sym_cmd_identifier_token2] = ACTIONS(1461), - [aux_sym_cmd_identifier_token3] = ACTIONS(1461), - [aux_sym_cmd_identifier_token4] = ACTIONS(1461), - [aux_sym_cmd_identifier_token5] = ACTIONS(1461), - [aux_sym_cmd_identifier_token6] = ACTIONS(1461), - [aux_sym_cmd_identifier_token7] = ACTIONS(1461), - [aux_sym_cmd_identifier_token8] = ACTIONS(1461), - [aux_sym_cmd_identifier_token9] = ACTIONS(1461), - [aux_sym_cmd_identifier_token10] = ACTIONS(1461), - [aux_sym_cmd_identifier_token11] = ACTIONS(1461), - [aux_sym_cmd_identifier_token12] = ACTIONS(1461), - [aux_sym_cmd_identifier_token13] = ACTIONS(1461), - [aux_sym_cmd_identifier_token14] = ACTIONS(1461), - [aux_sym_cmd_identifier_token15] = ACTIONS(1461), - [aux_sym_cmd_identifier_token16] = ACTIONS(1461), - [aux_sym_cmd_identifier_token17] = ACTIONS(1461), - [aux_sym_cmd_identifier_token18] = ACTIONS(1461), - [aux_sym_cmd_identifier_token19] = ACTIONS(1461), - [aux_sym_cmd_identifier_token20] = ACTIONS(1461), - [aux_sym_cmd_identifier_token21] = ACTIONS(1461), - [aux_sym_cmd_identifier_token22] = ACTIONS(1461), - [aux_sym_cmd_identifier_token23] = ACTIONS(1461), - [aux_sym_cmd_identifier_token24] = ACTIONS(1461), - [aux_sym_cmd_identifier_token25] = ACTIONS(1461), - [aux_sym_cmd_identifier_token26] = ACTIONS(1461), - [aux_sym_cmd_identifier_token27] = ACTIONS(1461), - [aux_sym_cmd_identifier_token28] = ACTIONS(1461), - [aux_sym_cmd_identifier_token29] = ACTIONS(1461), - [aux_sym_cmd_identifier_token30] = ACTIONS(1461), - [aux_sym_cmd_identifier_token31] = ACTIONS(1461), - [aux_sym_cmd_identifier_token32] = ACTIONS(1461), - [aux_sym_cmd_identifier_token33] = ACTIONS(1461), - [aux_sym_cmd_identifier_token34] = ACTIONS(1461), - [aux_sym_cmd_identifier_token35] = ACTIONS(1461), - [aux_sym_cmd_identifier_token36] = ACTIONS(1461), - [aux_sym_cmd_identifier_token37] = ACTIONS(1461), - [aux_sym_cmd_identifier_token38] = ACTIONS(1461), - [aux_sym_cmd_identifier_token39] = ACTIONS(1461), - [aux_sym_cmd_identifier_token40] = ACTIONS(1461), - [anon_sym_def] = ACTIONS(1461), - [anon_sym_export_DASHenv] = ACTIONS(1461), - [anon_sym_extern] = ACTIONS(1461), - [anon_sym_module] = ACTIONS(1461), - [anon_sym_use] = ACTIONS(1461), - [anon_sym_LPAREN] = ACTIONS(1461), - [anon_sym_COMMA] = ACTIONS(1461), - [anon_sym_DOLLAR] = ACTIONS(1526), - [anon_sym_error] = ACTIONS(1461), - [anon_sym_DASH2] = ACTIONS(1461), - [anon_sym_break] = ACTIONS(1461), - [anon_sym_continue] = ACTIONS(1461), - [anon_sym_for] = ACTIONS(1461), - [anon_sym_in2] = ACTIONS(1461), - [anon_sym_loop] = ACTIONS(1461), - [anon_sym_make] = ACTIONS(1461), - [anon_sym_while] = ACTIONS(1461), - [anon_sym_do] = ACTIONS(1461), - [anon_sym_if] = ACTIONS(1461), - [anon_sym_else] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1461), - [anon_sym_RBRACE] = ACTIONS(1461), - [anon_sym_try] = ACTIONS(1461), - [anon_sym_catch] = ACTIONS(1461), - [anon_sym_return] = ACTIONS(1461), - [anon_sym_source] = ACTIONS(1461), - [anon_sym_source_DASHenv] = ACTIONS(1461), - [anon_sym_register] = ACTIONS(1461), - [anon_sym_hide] = ACTIONS(1461), - [anon_sym_hide_DASHenv] = ACTIONS(1461), - [anon_sym_overlay] = ACTIONS(1461), - [anon_sym_as] = ACTIONS(1461), - [anon_sym_LPAREN2] = ACTIONS(1528), - [anon_sym_PLUS2] = ACTIONS(1461), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1461), - [aux_sym__immediate_decimal_token1] = ACTIONS(1530), - [aux_sym__immediate_decimal_token3] = ACTIONS(1530), - [aux_sym__immediate_decimal_token4] = ACTIONS(1532), - [aux_sym__immediate_decimal_token5] = ACTIONS(1534), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1461), - [aux_sym__val_number_decimal_token1] = ACTIONS(1461), - [aux_sym__val_number_decimal_token2] = ACTIONS(1461), - [aux_sym__val_number_decimal_token3] = ACTIONS(1461), - [aux_sym__val_number_decimal_token4] = ACTIONS(1461), - [aux_sym__val_number_token1] = ACTIONS(1461), - [aux_sym__val_number_token2] = ACTIONS(1461), - [aux_sym__val_number_token3] = ACTIONS(1461), - [aux_sym__val_number_token4] = ACTIONS(1461), - [aux_sym__val_number_token5] = ACTIONS(1461), - [aux_sym__val_number_token6] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1461), - [sym__str_single_quotes] = ACTIONS(1461), - [sym__str_back_ticks] = ACTIONS(1461), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1461), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1461), - [sym__entry_separator] = ACTIONS(1475), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1477), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1475), + [aux_sym_shebang_repeat1] = STATE(1179), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1471), + [aux_sym__val_number_decimal_token2] = ACTIONS(1473), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1477), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [219] = { - [sym__expr_parenthesized_immediate] = STATE(636), - [sym__immediate_decimal] = STATE(518), - [sym_val_variable] = STATE(636), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5011), + [sym_block] = STATE(5012), + [sym__expression_parenthesized] = STATE(5012), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1170), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5012), [sym_comment] = STATE(219), - [anon_sym_export] = ACTIONS(1536), - [anon_sym_alias] = ACTIONS(1536), - [anon_sym_let] = ACTIONS(1536), - [anon_sym_let_DASHenv] = ACTIONS(1536), - [anon_sym_mut] = ACTIONS(1536), - [anon_sym_const] = ACTIONS(1536), - [aux_sym_cmd_identifier_token1] = ACTIONS(1536), - [aux_sym_cmd_identifier_token2] = ACTIONS(1536), - [aux_sym_cmd_identifier_token3] = ACTIONS(1536), - [aux_sym_cmd_identifier_token4] = ACTIONS(1536), - [aux_sym_cmd_identifier_token5] = ACTIONS(1536), - [aux_sym_cmd_identifier_token6] = ACTIONS(1536), - [aux_sym_cmd_identifier_token7] = ACTIONS(1536), - [aux_sym_cmd_identifier_token8] = ACTIONS(1536), - [aux_sym_cmd_identifier_token9] = ACTIONS(1536), - [aux_sym_cmd_identifier_token10] = ACTIONS(1536), - [aux_sym_cmd_identifier_token11] = ACTIONS(1536), - [aux_sym_cmd_identifier_token12] = ACTIONS(1536), - [aux_sym_cmd_identifier_token13] = ACTIONS(1536), - [aux_sym_cmd_identifier_token14] = ACTIONS(1536), - [aux_sym_cmd_identifier_token15] = ACTIONS(1536), - [aux_sym_cmd_identifier_token16] = ACTIONS(1536), - [aux_sym_cmd_identifier_token17] = ACTIONS(1536), - [aux_sym_cmd_identifier_token18] = ACTIONS(1536), - [aux_sym_cmd_identifier_token19] = ACTIONS(1536), - [aux_sym_cmd_identifier_token20] = ACTIONS(1536), - [aux_sym_cmd_identifier_token21] = ACTIONS(1536), - [aux_sym_cmd_identifier_token22] = ACTIONS(1536), - [aux_sym_cmd_identifier_token23] = ACTIONS(1536), - [aux_sym_cmd_identifier_token24] = ACTIONS(1536), - [aux_sym_cmd_identifier_token25] = ACTIONS(1536), - [aux_sym_cmd_identifier_token26] = ACTIONS(1536), - [aux_sym_cmd_identifier_token27] = ACTIONS(1536), - [aux_sym_cmd_identifier_token28] = ACTIONS(1536), - [aux_sym_cmd_identifier_token29] = ACTIONS(1536), - [aux_sym_cmd_identifier_token30] = ACTIONS(1536), - [aux_sym_cmd_identifier_token31] = ACTIONS(1536), - [aux_sym_cmd_identifier_token32] = ACTIONS(1536), - [aux_sym_cmd_identifier_token33] = ACTIONS(1536), - [aux_sym_cmd_identifier_token34] = ACTIONS(1536), - [aux_sym_cmd_identifier_token35] = ACTIONS(1536), - [aux_sym_cmd_identifier_token36] = ACTIONS(1536), - [aux_sym_cmd_identifier_token37] = ACTIONS(1536), - [aux_sym_cmd_identifier_token38] = ACTIONS(1536), - [aux_sym_cmd_identifier_token39] = ACTIONS(1536), - [aux_sym_cmd_identifier_token40] = ACTIONS(1536), - [anon_sym_def] = ACTIONS(1536), - [anon_sym_export_DASHenv] = ACTIONS(1536), - [anon_sym_extern] = ACTIONS(1536), - [anon_sym_module] = ACTIONS(1536), - [anon_sym_use] = ACTIONS(1536), - [anon_sym_LPAREN] = ACTIONS(1536), - [anon_sym_COMMA] = ACTIONS(1536), - [anon_sym_DOLLAR] = ACTIONS(1526), - [anon_sym_error] = ACTIONS(1536), - [anon_sym_DASH2] = ACTIONS(1536), - [anon_sym_break] = ACTIONS(1536), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_for] = ACTIONS(1536), - [anon_sym_in2] = ACTIONS(1536), - [anon_sym_loop] = ACTIONS(1536), - [anon_sym_make] = ACTIONS(1536), - [anon_sym_while] = ACTIONS(1536), - [anon_sym_do] = ACTIONS(1536), - [anon_sym_if] = ACTIONS(1536), - [anon_sym_else] = ACTIONS(1536), - [anon_sym_match] = ACTIONS(1536), - [anon_sym_RBRACE] = ACTIONS(1536), - [anon_sym_try] = ACTIONS(1536), - [anon_sym_catch] = ACTIONS(1536), - [anon_sym_return] = ACTIONS(1536), - [anon_sym_source] = ACTIONS(1536), - [anon_sym_source_DASHenv] = ACTIONS(1536), - [anon_sym_register] = ACTIONS(1536), - [anon_sym_hide] = ACTIONS(1536), - [anon_sym_hide_DASHenv] = ACTIONS(1536), - [anon_sym_overlay] = ACTIONS(1536), - [anon_sym_as] = ACTIONS(1536), - [anon_sym_LPAREN2] = ACTIONS(1528), - [anon_sym_PLUS2] = ACTIONS(1536), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1536), - [aux_sym__immediate_decimal_token1] = ACTIONS(1530), - [aux_sym__immediate_decimal_token3] = ACTIONS(1530), - [aux_sym__immediate_decimal_token4] = ACTIONS(1532), - [aux_sym__immediate_decimal_token5] = ACTIONS(1534), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1536), - [aux_sym__val_number_decimal_token1] = ACTIONS(1536), - [aux_sym__val_number_decimal_token2] = ACTIONS(1536), - [aux_sym__val_number_decimal_token3] = ACTIONS(1536), - [aux_sym__val_number_decimal_token4] = ACTIONS(1536), - [aux_sym__val_number_token1] = ACTIONS(1536), - [aux_sym__val_number_token2] = ACTIONS(1536), - [aux_sym__val_number_token3] = ACTIONS(1536), - [aux_sym__val_number_token4] = ACTIONS(1536), - [aux_sym__val_number_token5] = ACTIONS(1536), - [aux_sym__val_number_token6] = ACTIONS(1536), - [anon_sym_DQUOTE] = ACTIONS(1536), - [sym__str_single_quotes] = ACTIONS(1536), - [sym__str_back_ticks] = ACTIONS(1536), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1536), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1536), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1536), - [sym__entry_separator] = ACTIONS(1538), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1540), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1538), + [aux_sym_shebang_repeat1] = STATE(1179), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(441), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1463), + [aux_sym__val_number_decimal_token2] = ACTIONS(1465), + [aux_sym__val_number_decimal_token3] = ACTIONS(1467), + [aux_sym__val_number_decimal_token4] = ACTIONS(1469), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [220] = { + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5011), + [sym_block] = STATE(5012), + [sym__expression_parenthesized] = STATE(5012), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1170), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5012), [sym_comment] = STATE(220), - [anon_sym_export] = ACTIONS(1542), - [anon_sym_alias] = ACTIONS(1542), - [anon_sym_let] = ACTIONS(1542), - [anon_sym_let_DASHenv] = ACTIONS(1542), - [anon_sym_mut] = ACTIONS(1542), - [anon_sym_const] = ACTIONS(1542), - [aux_sym_cmd_identifier_token1] = ACTIONS(1542), - [aux_sym_cmd_identifier_token2] = ACTIONS(1542), - [aux_sym_cmd_identifier_token3] = ACTIONS(1542), - [aux_sym_cmd_identifier_token4] = ACTIONS(1542), - [aux_sym_cmd_identifier_token5] = ACTIONS(1542), - [aux_sym_cmd_identifier_token6] = ACTIONS(1542), - [aux_sym_cmd_identifier_token7] = ACTIONS(1542), - [aux_sym_cmd_identifier_token8] = ACTIONS(1542), - [aux_sym_cmd_identifier_token9] = ACTIONS(1542), - [aux_sym_cmd_identifier_token10] = ACTIONS(1542), - [aux_sym_cmd_identifier_token11] = ACTIONS(1542), - [aux_sym_cmd_identifier_token12] = ACTIONS(1542), - [aux_sym_cmd_identifier_token13] = ACTIONS(1542), - [aux_sym_cmd_identifier_token14] = ACTIONS(1542), - [aux_sym_cmd_identifier_token15] = ACTIONS(1542), - [aux_sym_cmd_identifier_token16] = ACTIONS(1542), - [aux_sym_cmd_identifier_token17] = ACTIONS(1542), - [aux_sym_cmd_identifier_token18] = ACTIONS(1542), - [aux_sym_cmd_identifier_token19] = ACTIONS(1542), - [aux_sym_cmd_identifier_token20] = ACTIONS(1542), - [aux_sym_cmd_identifier_token21] = ACTIONS(1542), - [aux_sym_cmd_identifier_token22] = ACTIONS(1542), - [aux_sym_cmd_identifier_token23] = ACTIONS(1542), - [aux_sym_cmd_identifier_token24] = ACTIONS(1542), - [aux_sym_cmd_identifier_token25] = ACTIONS(1542), - [aux_sym_cmd_identifier_token26] = ACTIONS(1542), - [aux_sym_cmd_identifier_token27] = ACTIONS(1542), - [aux_sym_cmd_identifier_token28] = ACTIONS(1542), - [aux_sym_cmd_identifier_token29] = ACTIONS(1542), - [aux_sym_cmd_identifier_token30] = ACTIONS(1542), - [aux_sym_cmd_identifier_token31] = ACTIONS(1542), - [aux_sym_cmd_identifier_token32] = ACTIONS(1542), - [aux_sym_cmd_identifier_token33] = ACTIONS(1542), - [aux_sym_cmd_identifier_token34] = ACTIONS(1542), - [aux_sym_cmd_identifier_token35] = ACTIONS(1542), - [aux_sym_cmd_identifier_token36] = ACTIONS(1542), - [aux_sym_cmd_identifier_token37] = ACTIONS(1542), - [aux_sym_cmd_identifier_token38] = ACTIONS(1542), - [aux_sym_cmd_identifier_token39] = ACTIONS(1542), - [aux_sym_cmd_identifier_token40] = ACTIONS(1542), - [anon_sym_def] = ACTIONS(1542), - [anon_sym_export_DASHenv] = ACTIONS(1542), - [anon_sym_extern] = ACTIONS(1542), - [anon_sym_module] = ACTIONS(1542), - [anon_sym_use] = ACTIONS(1542), - [anon_sym_LPAREN] = ACTIONS(1542), - [anon_sym_COMMA] = ACTIONS(1542), - [anon_sym_DOLLAR] = ACTIONS(1542), - [anon_sym_error] = ACTIONS(1542), - [anon_sym_DASH2] = ACTIONS(1542), - [anon_sym_break] = ACTIONS(1542), - [anon_sym_continue] = ACTIONS(1542), - [anon_sym_for] = ACTIONS(1542), - [anon_sym_in2] = ACTIONS(1542), - [anon_sym_loop] = ACTIONS(1542), - [anon_sym_make] = ACTIONS(1542), - [anon_sym_while] = ACTIONS(1542), - [anon_sym_do] = ACTIONS(1542), - [anon_sym_if] = ACTIONS(1542), - [anon_sym_else] = ACTIONS(1542), - [anon_sym_match] = ACTIONS(1542), - [anon_sym_RBRACE] = ACTIONS(1542), - [anon_sym_try] = ACTIONS(1542), - [anon_sym_catch] = ACTIONS(1542), - [anon_sym_return] = ACTIONS(1542), - [anon_sym_source] = ACTIONS(1542), - [anon_sym_source_DASHenv] = ACTIONS(1542), - [anon_sym_register] = ACTIONS(1542), - [anon_sym_hide] = ACTIONS(1542), - [anon_sym_hide_DASHenv] = ACTIONS(1542), - [anon_sym_overlay] = ACTIONS(1542), - [anon_sym_as] = ACTIONS(1542), - [anon_sym_LPAREN2] = ACTIONS(1544), - [anon_sym_PLUS2] = ACTIONS(1542), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1542), - [anon_sym_DOT_DOT2] = ACTIONS(1542), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1544), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1544), - [aux_sym__immediate_decimal_token1] = ACTIONS(1546), - [aux_sym__immediate_decimal_token2] = ACTIONS(1548), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1542), - [aux_sym__val_number_decimal_token1] = ACTIONS(1542), - [aux_sym__val_number_decimal_token2] = ACTIONS(1542), - [aux_sym__val_number_decimal_token3] = ACTIONS(1542), - [aux_sym__val_number_decimal_token4] = ACTIONS(1542), - [aux_sym__val_number_token1] = ACTIONS(1542), - [aux_sym__val_number_token2] = ACTIONS(1542), - [aux_sym__val_number_token3] = ACTIONS(1542), - [aux_sym__val_number_token4] = ACTIONS(1542), - [aux_sym__val_number_token5] = ACTIONS(1542), - [aux_sym__val_number_token6] = ACTIONS(1542), - [sym_filesize_unit] = ACTIONS(1542), - [sym_duration_unit] = ACTIONS(1542), - [anon_sym_DQUOTE] = ACTIONS(1542), - [sym__str_single_quotes] = ACTIONS(1542), - [sym__str_back_ticks] = ACTIONS(1542), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1542), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1542), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1542), - [sym__entry_separator] = ACTIONS(1544), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1542), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1544), + [aux_sym_shebang_repeat1] = STATE(225), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(441), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1463), + [aux_sym__val_number_decimal_token2] = ACTIONS(1465), + [aux_sym__val_number_decimal_token3] = ACTIONS(1467), + [aux_sym__val_number_decimal_token4] = ACTIONS(1469), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [221] = { + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5013), + [sym_block] = STATE(5014), + [sym__expression_parenthesized] = STATE(5014), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1170), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5014), [sym_comment] = STATE(221), - [anon_sym_export] = ACTIONS(1550), - [anon_sym_alias] = ACTIONS(1550), - [anon_sym_let] = ACTIONS(1550), - [anon_sym_let_DASHenv] = ACTIONS(1550), - [anon_sym_mut] = ACTIONS(1550), - [anon_sym_const] = ACTIONS(1550), - [aux_sym_cmd_identifier_token1] = ACTIONS(1550), - [aux_sym_cmd_identifier_token2] = ACTIONS(1550), - [aux_sym_cmd_identifier_token3] = ACTIONS(1550), - [aux_sym_cmd_identifier_token4] = ACTIONS(1550), - [aux_sym_cmd_identifier_token5] = ACTIONS(1550), - [aux_sym_cmd_identifier_token6] = ACTIONS(1550), - [aux_sym_cmd_identifier_token7] = ACTIONS(1550), - [aux_sym_cmd_identifier_token8] = ACTIONS(1550), - [aux_sym_cmd_identifier_token9] = ACTIONS(1550), - [aux_sym_cmd_identifier_token10] = ACTIONS(1550), - [aux_sym_cmd_identifier_token11] = ACTIONS(1550), - [aux_sym_cmd_identifier_token12] = ACTIONS(1550), - [aux_sym_cmd_identifier_token13] = ACTIONS(1550), - [aux_sym_cmd_identifier_token14] = ACTIONS(1550), - [aux_sym_cmd_identifier_token15] = ACTIONS(1550), - [aux_sym_cmd_identifier_token16] = ACTIONS(1550), - [aux_sym_cmd_identifier_token17] = ACTIONS(1550), - [aux_sym_cmd_identifier_token18] = ACTIONS(1550), - [aux_sym_cmd_identifier_token19] = ACTIONS(1550), - [aux_sym_cmd_identifier_token20] = ACTIONS(1550), - [aux_sym_cmd_identifier_token21] = ACTIONS(1550), - [aux_sym_cmd_identifier_token22] = ACTIONS(1550), - [aux_sym_cmd_identifier_token23] = ACTIONS(1550), - [aux_sym_cmd_identifier_token24] = ACTIONS(1550), - [aux_sym_cmd_identifier_token25] = ACTIONS(1550), - [aux_sym_cmd_identifier_token26] = ACTIONS(1550), - [aux_sym_cmd_identifier_token27] = ACTIONS(1550), - [aux_sym_cmd_identifier_token28] = ACTIONS(1550), - [aux_sym_cmd_identifier_token29] = ACTIONS(1550), - [aux_sym_cmd_identifier_token30] = ACTIONS(1550), - [aux_sym_cmd_identifier_token31] = ACTIONS(1550), - [aux_sym_cmd_identifier_token32] = ACTIONS(1550), - [aux_sym_cmd_identifier_token33] = ACTIONS(1550), - [aux_sym_cmd_identifier_token34] = ACTIONS(1550), - [aux_sym_cmd_identifier_token35] = ACTIONS(1550), - [aux_sym_cmd_identifier_token36] = ACTIONS(1550), - [aux_sym_cmd_identifier_token37] = ACTIONS(1550), - [aux_sym_cmd_identifier_token38] = ACTIONS(1550), - [aux_sym_cmd_identifier_token39] = ACTIONS(1550), - [aux_sym_cmd_identifier_token40] = ACTIONS(1550), - [anon_sym_def] = ACTIONS(1550), - [anon_sym_export_DASHenv] = ACTIONS(1550), - [anon_sym_extern] = ACTIONS(1550), - [anon_sym_module] = ACTIONS(1550), - [anon_sym_use] = ACTIONS(1550), - [anon_sym_LPAREN] = ACTIONS(1550), - [anon_sym_COMMA] = ACTIONS(1550), - [anon_sym_DOLLAR] = ACTIONS(1550), - [anon_sym_error] = ACTIONS(1550), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_break] = ACTIONS(1550), - [anon_sym_continue] = ACTIONS(1550), - [anon_sym_for] = ACTIONS(1550), - [anon_sym_in2] = ACTIONS(1550), - [anon_sym_loop] = ACTIONS(1550), - [anon_sym_make] = ACTIONS(1550), - [anon_sym_while] = ACTIONS(1550), - [anon_sym_do] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_else] = ACTIONS(1550), - [anon_sym_match] = ACTIONS(1550), - [anon_sym_RBRACE] = ACTIONS(1550), - [anon_sym_try] = ACTIONS(1550), - [anon_sym_catch] = ACTIONS(1550), - [anon_sym_return] = ACTIONS(1550), - [anon_sym_source] = ACTIONS(1550), - [anon_sym_source_DASHenv] = ACTIONS(1550), - [anon_sym_register] = ACTIONS(1550), - [anon_sym_hide] = ACTIONS(1550), - [anon_sym_hide_DASHenv] = ACTIONS(1550), - [anon_sym_overlay] = ACTIONS(1550), - [anon_sym_as] = ACTIONS(1550), - [anon_sym_LPAREN2] = ACTIONS(1552), - [anon_sym_PLUS2] = ACTIONS(1550), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1550), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT] = ACTIONS(1554), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [aux_sym__immediate_decimal_token2] = ACTIONS(1556), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1550), - [aux_sym__val_number_decimal_token1] = ACTIONS(1550), - [aux_sym__val_number_decimal_token2] = ACTIONS(1550), - [aux_sym__val_number_decimal_token3] = ACTIONS(1550), - [aux_sym__val_number_decimal_token4] = ACTIONS(1550), - [aux_sym__val_number_token1] = ACTIONS(1550), - [aux_sym__val_number_token2] = ACTIONS(1550), - [aux_sym__val_number_token3] = ACTIONS(1550), - [aux_sym__val_number_token4] = ACTIONS(1550), - [aux_sym__val_number_token5] = ACTIONS(1550), - [aux_sym__val_number_token6] = ACTIONS(1550), - [sym_filesize_unit] = ACTIONS(1550), - [sym_duration_unit] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1550), - [sym__str_single_quotes] = ACTIONS(1550), - [sym__str_back_ticks] = ACTIONS(1550), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1550), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1550), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1550), - [sym__entry_separator] = ACTIONS(1552), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1550), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1552), + [aux_sym_shebang_repeat1] = STATE(227), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(441), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1463), + [aux_sym__val_number_decimal_token2] = ACTIONS(1465), + [aux_sym__val_number_decimal_token3] = ACTIONS(1467), + [aux_sym__val_number_decimal_token4] = ACTIONS(1469), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [222] = { + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5015), + [sym_block] = STATE(5016), + [sym__expression_parenthesized] = STATE(5016), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1170), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5016), [sym_comment] = STATE(222), - [aux_sym__block_body_repeat1] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1455), - [anon_sym_alias] = ACTIONS(1455), - [anon_sym_let] = ACTIONS(1455), - [anon_sym_let_DASHenv] = ACTIONS(1455), - [anon_sym_mut] = ACTIONS(1455), - [anon_sym_const] = ACTIONS(1455), - [aux_sym_cmd_identifier_token1] = ACTIONS(1455), - [aux_sym_cmd_identifier_token2] = ACTIONS(1457), - [aux_sym_cmd_identifier_token3] = ACTIONS(1457), - [aux_sym_cmd_identifier_token4] = ACTIONS(1457), - [aux_sym_cmd_identifier_token5] = ACTIONS(1457), - [aux_sym_cmd_identifier_token6] = ACTIONS(1457), - [aux_sym_cmd_identifier_token7] = ACTIONS(1457), - [aux_sym_cmd_identifier_token8] = ACTIONS(1455), - [aux_sym_cmd_identifier_token9] = ACTIONS(1455), - [aux_sym_cmd_identifier_token10] = ACTIONS(1457), - [aux_sym_cmd_identifier_token11] = ACTIONS(1457), - [aux_sym_cmd_identifier_token12] = ACTIONS(1455), - [aux_sym_cmd_identifier_token13] = ACTIONS(1455), - [aux_sym_cmd_identifier_token14] = ACTIONS(1455), - [aux_sym_cmd_identifier_token15] = ACTIONS(1455), - [aux_sym_cmd_identifier_token16] = ACTIONS(1457), - [aux_sym_cmd_identifier_token17] = ACTIONS(1457), - [aux_sym_cmd_identifier_token18] = ACTIONS(1455), - [aux_sym_cmd_identifier_token19] = ACTIONS(1457), - [aux_sym_cmd_identifier_token20] = ACTIONS(1457), - [aux_sym_cmd_identifier_token21] = ACTIONS(1457), - [aux_sym_cmd_identifier_token22] = ACTIONS(1457), - [aux_sym_cmd_identifier_token23] = ACTIONS(1457), - [aux_sym_cmd_identifier_token24] = ACTIONS(1457), - [aux_sym_cmd_identifier_token25] = ACTIONS(1457), - [aux_sym_cmd_identifier_token26] = ACTIONS(1457), - [aux_sym_cmd_identifier_token27] = ACTIONS(1457), - [aux_sym_cmd_identifier_token28] = ACTIONS(1457), - [aux_sym_cmd_identifier_token29] = ACTIONS(1457), - [aux_sym_cmd_identifier_token30] = ACTIONS(1457), - [aux_sym_cmd_identifier_token31] = ACTIONS(1457), - [aux_sym_cmd_identifier_token32] = ACTIONS(1455), - [aux_sym_cmd_identifier_token33] = ACTIONS(1457), - [aux_sym_cmd_identifier_token34] = ACTIONS(1455), - [aux_sym_cmd_identifier_token35] = ACTIONS(1457), - [aux_sym_cmd_identifier_token36] = ACTIONS(1457), - [aux_sym_cmd_identifier_token37] = ACTIONS(1457), - [aux_sym_cmd_identifier_token38] = ACTIONS(1455), - [aux_sym_cmd_identifier_token39] = ACTIONS(1457), - [aux_sym_cmd_identifier_token40] = ACTIONS(1457), - [sym__newline] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(25), - [anon_sym_def] = ACTIONS(1455), - [anon_sym_export_DASHenv] = ACTIONS(1455), - [anon_sym_extern] = ACTIONS(1455), - [anon_sym_module] = ACTIONS(1455), - [anon_sym_use] = ACTIONS(1455), - [anon_sym_LBRACK] = ACTIONS(1457), - [anon_sym_LPAREN] = ACTIONS(1457), - [anon_sym_DOLLAR] = ACTIONS(1455), - [anon_sym_error] = ACTIONS(1455), - [anon_sym_DASH2] = ACTIONS(1455), - [anon_sym_break] = ACTIONS(1455), - [anon_sym_continue] = ACTIONS(1455), - [anon_sym_for] = ACTIONS(1455), - [anon_sym_loop] = ACTIONS(1455), - [anon_sym_while] = ACTIONS(1455), - [anon_sym_do] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1455), - [anon_sym_match] = ACTIONS(1455), - [anon_sym_LBRACE] = ACTIONS(1457), - [anon_sym_DOT_DOT] = ACTIONS(1455), - [anon_sym_try] = ACTIONS(1455), - [anon_sym_return] = ACTIONS(1455), - [anon_sym_source] = ACTIONS(1455), - [anon_sym_source_DASHenv] = ACTIONS(1455), - [anon_sym_register] = ACTIONS(1455), - [anon_sym_hide] = ACTIONS(1455), - [anon_sym_hide_DASHenv] = ACTIONS(1455), - [anon_sym_overlay] = ACTIONS(1455), - [anon_sym_where] = ACTIONS(1457), - [aux_sym_expr_unary_token1] = ACTIONS(1457), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1457), - [anon_sym_DOT_DOT_LT] = ACTIONS(1457), - [anon_sym_null] = ACTIONS(1455), - [anon_sym_true] = ACTIONS(1455), - [anon_sym_false] = ACTIONS(1455), - [aux_sym__val_number_decimal_token1] = ACTIONS(1455), - [aux_sym__val_number_decimal_token2] = ACTIONS(1457), - [aux_sym__val_number_decimal_token3] = ACTIONS(1457), - [aux_sym__val_number_decimal_token4] = ACTIONS(1457), - [aux_sym__val_number_token1] = ACTIONS(1457), - [aux_sym__val_number_token2] = ACTIONS(1457), - [aux_sym__val_number_token3] = ACTIONS(1457), - [aux_sym__val_number_token4] = ACTIONS(1455), - [aux_sym__val_number_token5] = ACTIONS(1455), - [aux_sym__val_number_token6] = ACTIONS(1455), - [anon_sym_0b] = ACTIONS(1455), - [anon_sym_0o] = ACTIONS(1455), - [anon_sym_0x] = ACTIONS(1455), - [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), - [aux_sym_env_var_token1] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1457), - [aux_sym_command_token1] = ACTIONS(1457), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1457), + [aux_sym_shebang_repeat1] = STATE(229), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(441), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1463), + [aux_sym__val_number_decimal_token2] = ACTIONS(1465), + [aux_sym__val_number_decimal_token3] = ACTIONS(1467), + [aux_sym__val_number_decimal_token4] = ACTIONS(1469), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [223] = { + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5057), + [sym_block] = STATE(5058), + [sym__expression_parenthesized] = STATE(5058), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1177), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5058), [sym_comment] = STATE(223), - [aux_sym__block_body_repeat1] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(1479), - [anon_sym_export] = ACTIONS(1455), - [anon_sym_alias] = ACTIONS(1455), - [anon_sym_let] = ACTIONS(1455), - [anon_sym_let_DASHenv] = ACTIONS(1455), - [anon_sym_mut] = ACTIONS(1455), - [anon_sym_const] = ACTIONS(1455), - [aux_sym_cmd_identifier_token1] = ACTIONS(1455), - [aux_sym_cmd_identifier_token2] = ACTIONS(1457), - [aux_sym_cmd_identifier_token3] = ACTIONS(1457), - [aux_sym_cmd_identifier_token4] = ACTIONS(1457), - [aux_sym_cmd_identifier_token5] = ACTIONS(1457), - [aux_sym_cmd_identifier_token6] = ACTIONS(1457), - [aux_sym_cmd_identifier_token7] = ACTIONS(1457), - [aux_sym_cmd_identifier_token8] = ACTIONS(1455), - [aux_sym_cmd_identifier_token9] = ACTIONS(1455), - [aux_sym_cmd_identifier_token10] = ACTIONS(1457), - [aux_sym_cmd_identifier_token11] = ACTIONS(1457), - [aux_sym_cmd_identifier_token12] = ACTIONS(1455), - [aux_sym_cmd_identifier_token13] = ACTIONS(1455), - [aux_sym_cmd_identifier_token14] = ACTIONS(1455), - [aux_sym_cmd_identifier_token15] = ACTIONS(1455), - [aux_sym_cmd_identifier_token16] = ACTIONS(1457), - [aux_sym_cmd_identifier_token17] = ACTIONS(1457), - [aux_sym_cmd_identifier_token18] = ACTIONS(1455), - [aux_sym_cmd_identifier_token19] = ACTIONS(1457), - [aux_sym_cmd_identifier_token20] = ACTIONS(1457), - [aux_sym_cmd_identifier_token21] = ACTIONS(1457), - [aux_sym_cmd_identifier_token22] = ACTIONS(1457), - [aux_sym_cmd_identifier_token23] = ACTIONS(1457), - [aux_sym_cmd_identifier_token24] = ACTIONS(1457), - [aux_sym_cmd_identifier_token25] = ACTIONS(1457), - [aux_sym_cmd_identifier_token26] = ACTIONS(1457), - [aux_sym_cmd_identifier_token27] = ACTIONS(1457), - [aux_sym_cmd_identifier_token28] = ACTIONS(1457), - [aux_sym_cmd_identifier_token29] = ACTIONS(1457), - [aux_sym_cmd_identifier_token30] = ACTIONS(1457), - [aux_sym_cmd_identifier_token31] = ACTIONS(1457), - [aux_sym_cmd_identifier_token32] = ACTIONS(1455), - [aux_sym_cmd_identifier_token33] = ACTIONS(1457), - [aux_sym_cmd_identifier_token34] = ACTIONS(1455), - [aux_sym_cmd_identifier_token35] = ACTIONS(1457), - [aux_sym_cmd_identifier_token36] = ACTIONS(1457), - [aux_sym_cmd_identifier_token37] = ACTIONS(1457), - [aux_sym_cmd_identifier_token38] = ACTIONS(1455), - [aux_sym_cmd_identifier_token39] = ACTIONS(1457), - [aux_sym_cmd_identifier_token40] = ACTIONS(1457), - [sym__newline] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(25), - [anon_sym_def] = ACTIONS(1455), - [anon_sym_export_DASHenv] = ACTIONS(1455), - [anon_sym_extern] = ACTIONS(1455), - [anon_sym_module] = ACTIONS(1455), - [anon_sym_use] = ACTIONS(1455), - [anon_sym_LBRACK] = ACTIONS(1457), - [anon_sym_LPAREN] = ACTIONS(1457), - [anon_sym_DOLLAR] = ACTIONS(1455), - [anon_sym_error] = ACTIONS(1455), - [anon_sym_DASH2] = ACTIONS(1455), - [anon_sym_break] = ACTIONS(1455), - [anon_sym_continue] = ACTIONS(1455), - [anon_sym_for] = ACTIONS(1455), - [anon_sym_loop] = ACTIONS(1455), - [anon_sym_while] = ACTIONS(1455), - [anon_sym_do] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1455), - [anon_sym_match] = ACTIONS(1455), - [anon_sym_LBRACE] = ACTIONS(1457), - [anon_sym_DOT_DOT] = ACTIONS(1455), - [anon_sym_try] = ACTIONS(1455), - [anon_sym_return] = ACTIONS(1455), - [anon_sym_source] = ACTIONS(1455), - [anon_sym_source_DASHenv] = ACTIONS(1455), - [anon_sym_register] = ACTIONS(1455), - [anon_sym_hide] = ACTIONS(1455), - [anon_sym_hide_DASHenv] = ACTIONS(1455), - [anon_sym_overlay] = ACTIONS(1455), - [anon_sym_where] = ACTIONS(1457), - [aux_sym_expr_unary_token1] = ACTIONS(1457), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1457), - [anon_sym_DOT_DOT_LT] = ACTIONS(1457), - [anon_sym_null] = ACTIONS(1455), - [anon_sym_true] = ACTIONS(1455), - [anon_sym_false] = ACTIONS(1455), - [aux_sym__val_number_decimal_token1] = ACTIONS(1455), - [aux_sym__val_number_decimal_token2] = ACTIONS(1457), - [aux_sym__val_number_decimal_token3] = ACTIONS(1457), - [aux_sym__val_number_decimal_token4] = ACTIONS(1457), - [aux_sym__val_number_token1] = ACTIONS(1457), - [aux_sym__val_number_token2] = ACTIONS(1457), - [aux_sym__val_number_token3] = ACTIONS(1457), - [aux_sym__val_number_token4] = ACTIONS(1455), - [aux_sym__val_number_token5] = ACTIONS(1455), - [aux_sym__val_number_token6] = ACTIONS(1455), - [anon_sym_0b] = ACTIONS(1455), - [anon_sym_0o] = ACTIONS(1455), - [anon_sym_0x] = ACTIONS(1455), - [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), - [aux_sym_env_var_token1] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1457), - [aux_sym_command_token1] = ACTIONS(1457), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1457), + [aux_sym_shebang_repeat1] = STATE(1179), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1471), + [aux_sym__val_number_decimal_token2] = ACTIONS(1473), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1477), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [224] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5105), - [sym_block] = STATE(5106), - [sym__expression_parenthesized] = STATE(5106), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1226), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5106), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5057), + [sym_block] = STATE(5058), + [sym__expression_parenthesized] = STATE(5058), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1177), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5058), [sym_comment] = STATE(224), - [aux_sym_shebang_repeat1] = STATE(226), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1564), - [aux_sym__val_number_decimal_token2] = ACTIONS(1566), - [aux_sym__val_number_decimal_token3] = ACTIONS(1568), - [aux_sym__val_number_decimal_token4] = ACTIONS(1570), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(248), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1471), + [aux_sym__val_number_decimal_token2] = ACTIONS(1473), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1477), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [225] = { + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5039), + [sym_block] = STATE(5040), + [sym__expression_parenthesized] = STATE(5040), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1170), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5040), [sym_comment] = STATE(225), - [aux_sym_shebang_repeat1] = STATE(225), - [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(1296), - [aux_sym_cmd_identifier_token2] = ACTIONS(1298), - [aux_sym_cmd_identifier_token3] = ACTIONS(1298), - [aux_sym_cmd_identifier_token4] = ACTIONS(1298), - [aux_sym_cmd_identifier_token5] = ACTIONS(1298), - [aux_sym_cmd_identifier_token6] = ACTIONS(1298), - [aux_sym_cmd_identifier_token7] = ACTIONS(1298), - [aux_sym_cmd_identifier_token8] = ACTIONS(1296), - [aux_sym_cmd_identifier_token9] = ACTIONS(1296), - [aux_sym_cmd_identifier_token10] = ACTIONS(1298), - [aux_sym_cmd_identifier_token11] = ACTIONS(1298), - [aux_sym_cmd_identifier_token12] = ACTIONS(1296), - [aux_sym_cmd_identifier_token13] = ACTIONS(1296), - [aux_sym_cmd_identifier_token14] = ACTIONS(1296), - [aux_sym_cmd_identifier_token15] = ACTIONS(1296), - [aux_sym_cmd_identifier_token16] = ACTIONS(1298), - [aux_sym_cmd_identifier_token17] = ACTIONS(1298), - [aux_sym_cmd_identifier_token18] = ACTIONS(1296), - [aux_sym_cmd_identifier_token19] = ACTIONS(1298), - [aux_sym_cmd_identifier_token20] = ACTIONS(1298), - [aux_sym_cmd_identifier_token21] = ACTIONS(1298), - [aux_sym_cmd_identifier_token22] = ACTIONS(1298), - [aux_sym_cmd_identifier_token23] = ACTIONS(1298), - [aux_sym_cmd_identifier_token24] = ACTIONS(1298), - [aux_sym_cmd_identifier_token25] = ACTIONS(1298), - [aux_sym_cmd_identifier_token26] = ACTIONS(1298), - [aux_sym_cmd_identifier_token27] = ACTIONS(1298), - [aux_sym_cmd_identifier_token28] = ACTIONS(1298), - [aux_sym_cmd_identifier_token29] = ACTIONS(1298), - [aux_sym_cmd_identifier_token30] = ACTIONS(1298), - [aux_sym_cmd_identifier_token31] = ACTIONS(1298), - [aux_sym_cmd_identifier_token32] = ACTIONS(1296), - [aux_sym_cmd_identifier_token33] = ACTIONS(1298), - [aux_sym_cmd_identifier_token34] = ACTIONS(1296), - [aux_sym_cmd_identifier_token35] = ACTIONS(1298), - [aux_sym_cmd_identifier_token36] = ACTIONS(1298), - [aux_sym_cmd_identifier_token37] = ACTIONS(1298), - [aux_sym_cmd_identifier_token38] = ACTIONS(1296), - [aux_sym_cmd_identifier_token39] = ACTIONS(1298), - [aux_sym_cmd_identifier_token40] = ACTIONS(1298), - [sym__newline] = ACTIONS(1572), - [anon_sym_SEMI] = ACTIONS(1298), - [anon_sym_PIPE] = ACTIONS(1298), - [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_LBRACK] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1298), - [anon_sym_DOLLAR] = ACTIONS(1296), - [anon_sym_error] = ACTIONS(1296), - [anon_sym_DASH2] = ACTIONS(1296), - [anon_sym_break] = ACTIONS(1296), - [anon_sym_continue] = ACTIONS(1296), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_loop] = ACTIONS(1296), - [anon_sym_while] = ACTIONS(1296), - [anon_sym_do] = ACTIONS(1296), - [anon_sym_if] = ACTIONS(1296), - [anon_sym_match] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_DOT_DOT] = ACTIONS(1296), - [anon_sym_try] = 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_where] = ACTIONS(1298), - [aux_sym_expr_unary_token1] = ACTIONS(1298), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1298), - [anon_sym_DOT_DOT_LT] = ACTIONS(1298), - [anon_sym_null] = ACTIONS(1296), - [anon_sym_true] = ACTIONS(1296), - [anon_sym_false] = ACTIONS(1296), - [aux_sym__val_number_decimal_token1] = ACTIONS(1296), - [aux_sym__val_number_decimal_token2] = ACTIONS(1298), - [aux_sym__val_number_decimal_token3] = ACTIONS(1298), - [aux_sym__val_number_decimal_token4] = ACTIONS(1298), - [aux_sym__val_number_token1] = ACTIONS(1298), - [aux_sym__val_number_token2] = ACTIONS(1298), - [aux_sym__val_number_token3] = ACTIONS(1298), - [aux_sym__val_number_token4] = ACTIONS(1296), - [aux_sym__val_number_token5] = ACTIONS(1296), - [aux_sym__val_number_token6] = ACTIONS(1296), - [anon_sym_0b] = ACTIONS(1296), - [anon_sym_0o] = ACTIONS(1296), - [anon_sym_0x] = ACTIONS(1296), - [sym_val_date] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1298), - [sym__str_single_quotes] = ACTIONS(1298), - [sym__str_back_ticks] = ACTIONS(1298), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1298), - [aux_sym_env_var_token1] = ACTIONS(1296), - [anon_sym_CARET] = ACTIONS(1298), - [aux_sym_command_token1] = ACTIONS(1298), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1298), + [aux_sym_shebang_repeat1] = STATE(1179), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(441), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1463), + [aux_sym__val_number_decimal_token2] = ACTIONS(1465), + [aux_sym__val_number_decimal_token3] = ACTIONS(1467), + [aux_sym__val_number_decimal_token4] = ACTIONS(1469), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [226] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_block] = STATE(5010), - [sym__expression_parenthesized] = STATE(5010), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1226), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5010), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5039), + [sym_block] = STATE(5040), + [sym__expression_parenthesized] = STATE(5040), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1170), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5040), [sym_comment] = STATE(226), - [aux_sym_shebang_repeat1] = STATE(1146), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1564), - [aux_sym__val_number_decimal_token2] = ACTIONS(1566), - [aux_sym__val_number_decimal_token3] = ACTIONS(1568), - [aux_sym__val_number_decimal_token4] = ACTIONS(1570), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(233), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(441), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1463), + [aux_sym__val_number_decimal_token2] = ACTIONS(1465), + [aux_sym__val_number_decimal_token3] = ACTIONS(1467), + [aux_sym__val_number_decimal_token4] = ACTIONS(1469), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [227] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_block] = STATE(5010), - [sym__expression_parenthesized] = STATE(5010), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1226), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5010), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5041), + [sym_block] = STATE(5042), + [sym__expression_parenthesized] = STATE(5042), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1170), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5042), [sym_comment] = STATE(227), - [aux_sym_shebang_repeat1] = STATE(230), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1564), - [aux_sym__val_number_decimal_token2] = ACTIONS(1566), - [aux_sym__val_number_decimal_token3] = ACTIONS(1568), - [aux_sym__val_number_decimal_token4] = ACTIONS(1570), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(1179), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(441), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1463), + [aux_sym__val_number_decimal_token2] = ACTIONS(1465), + [aux_sym__val_number_decimal_token3] = ACTIONS(1467), + [aux_sym__val_number_decimal_token4] = ACTIONS(1469), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [228] = { + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5041), + [sym_block] = STATE(5042), + [sym__expression_parenthesized] = STATE(5042), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1170), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5042), [sym_comment] = STATE(228), - [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(1303), - [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(1303), - [aux_sym_cmd_identifier_token9] = ACTIONS(1303), - [aux_sym_cmd_identifier_token10] = ACTIONS(1306), - [aux_sym_cmd_identifier_token11] = ACTIONS(1306), - [aux_sym_cmd_identifier_token12] = ACTIONS(1303), - [aux_sym_cmd_identifier_token13] = ACTIONS(1303), - [aux_sym_cmd_identifier_token14] = ACTIONS(1303), - [aux_sym_cmd_identifier_token15] = ACTIONS(1303), - [aux_sym_cmd_identifier_token16] = ACTIONS(1306), - [aux_sym_cmd_identifier_token17] = ACTIONS(1306), - [aux_sym_cmd_identifier_token18] = ACTIONS(1303), - [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(1303), - [aux_sym_cmd_identifier_token33] = ACTIONS(1306), - [aux_sym_cmd_identifier_token34] = ACTIONS(1303), - [aux_sym_cmd_identifier_token35] = ACTIONS(1306), - [aux_sym_cmd_identifier_token36] = ACTIONS(1306), - [aux_sym_cmd_identifier_token37] = ACTIONS(1306), - [aux_sym_cmd_identifier_token38] = ACTIONS(1303), - [aux_sym_cmd_identifier_token39] = ACTIONS(1306), - [aux_sym_cmd_identifier_token40] = ACTIONS(1306), - [sym__newline] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1306), - [anon_sym_PIPE] = ACTIONS(1309), - [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_LBRACK] = ACTIONS(1306), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_DOLLAR] = ACTIONS(1303), - [anon_sym_error] = ACTIONS(1303), - [anon_sym_DASH2] = ACTIONS(1303), - [anon_sym_break] = ACTIONS(1303), - [anon_sym_continue] = ACTIONS(1303), - [anon_sym_for] = ACTIONS(1303), - [anon_sym_loop] = ACTIONS(1303), - [anon_sym_while] = ACTIONS(1303), - [anon_sym_do] = ACTIONS(1303), - [anon_sym_if] = ACTIONS(1303), - [anon_sym_match] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(1313), - [anon_sym_DOT_DOT] = ACTIONS(1303), - [anon_sym_try] = 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_where] = ACTIONS(1306), - [aux_sym_expr_unary_token1] = ACTIONS(1306), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1306), - [anon_sym_DOT_DOT_LT] = ACTIONS(1306), - [anon_sym_null] = ACTIONS(1303), - [anon_sym_true] = ACTIONS(1303), - [anon_sym_false] = ACTIONS(1303), - [aux_sym__val_number_decimal_token1] = ACTIONS(1303), - [aux_sym__val_number_decimal_token2] = ACTIONS(1306), - [aux_sym__val_number_decimal_token3] = ACTIONS(1306), - [aux_sym__val_number_decimal_token4] = ACTIONS(1306), - [aux_sym__val_number_token1] = ACTIONS(1306), - [aux_sym__val_number_token2] = ACTIONS(1306), - [aux_sym__val_number_token3] = ACTIONS(1306), - [aux_sym__val_number_token4] = ACTIONS(1303), - [aux_sym__val_number_token5] = ACTIONS(1303), - [aux_sym__val_number_token6] = ACTIONS(1303), - [anon_sym_0b] = ACTIONS(1303), - [anon_sym_0o] = ACTIONS(1303), - [anon_sym_0x] = ACTIONS(1303), - [sym_val_date] = ACTIONS(1306), - [anon_sym_DQUOTE] = ACTIONS(1306), - [sym__str_single_quotes] = ACTIONS(1306), - [sym__str_back_ticks] = ACTIONS(1306), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1306), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1306), - [aux_sym_env_var_token1] = ACTIONS(1303), - [anon_sym_CARET] = ACTIONS(1306), - [aux_sym_command_token1] = ACTIONS(1306), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1306), + [aux_sym_shebang_repeat1] = STATE(234), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(441), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1463), + [aux_sym__val_number_decimal_token2] = ACTIONS(1465), + [aux_sym__val_number_decimal_token3] = ACTIONS(1467), + [aux_sym__val_number_decimal_token4] = ACTIONS(1469), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [229] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5047), - [sym_block] = STATE(5050), - [sym__expression_parenthesized] = STATE(5050), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1226), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5050), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5043), + [sym_block] = STATE(5044), + [sym__expression_parenthesized] = STATE(5044), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1170), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5044), [sym_comment] = STATE(229), - [aux_sym_shebang_repeat1] = STATE(234), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1564), - [aux_sym__val_number_decimal_token2] = ACTIONS(1566), - [aux_sym__val_number_decimal_token3] = ACTIONS(1568), - [aux_sym__val_number_decimal_token4] = ACTIONS(1570), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(1179), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(441), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1463), + [aux_sym__val_number_decimal_token2] = ACTIONS(1465), + [aux_sym__val_number_decimal_token3] = ACTIONS(1467), + [aux_sym__val_number_decimal_token4] = ACTIONS(1469), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [230] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5068), - [sym_block] = STATE(5079), - [sym__expression_parenthesized] = STATE(5079), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1226), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5079), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5057), + [sym_block] = STATE(5058), + [sym__expression_parenthesized] = STATE(5058), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1203), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5058), [sym_comment] = STATE(230), - [aux_sym_shebang_repeat1] = STATE(1146), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1564), - [aux_sym__val_number_decimal_token2] = ACTIONS(1566), - [aux_sym__val_number_decimal_token3] = ACTIONS(1568), - [aux_sym__val_number_decimal_token4] = ACTIONS(1570), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1481), + [aux_sym__val_number_decimal_token2] = ACTIONS(1483), + [aux_sym__val_number_decimal_token3] = ACTIONS(1485), + [aux_sym__val_number_decimal_token4] = ACTIONS(1487), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [231] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5068), - [sym_block] = STATE(5079), - [sym__expression_parenthesized] = STATE(5079), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1226), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5079), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5045), + [sym_block] = STATE(5047), + [sym__expression_parenthesized] = STATE(5047), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1170), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5047), [sym_comment] = STATE(231), - [aux_sym_shebang_repeat1] = STATE(237), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1564), - [aux_sym__val_number_decimal_token2] = ACTIONS(1566), - [aux_sym__val_number_decimal_token3] = ACTIONS(1568), - [aux_sym__val_number_decimal_token4] = ACTIONS(1570), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(238), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(441), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1463), + [aux_sym__val_number_decimal_token2] = ACTIONS(1465), + [aux_sym__val_number_decimal_token3] = ACTIONS(1467), + [aux_sym__val_number_decimal_token4] = ACTIONS(1469), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [232] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5080), - [sym_block] = STATE(5111), - [sym__expression_parenthesized] = STATE(5111), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1226), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5111), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5059), + [sym_block] = STATE(5060), + [sym__expression_parenthesized] = STATE(5060), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1177), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5060), [sym_comment] = STATE(232), - [aux_sym_shebang_repeat1] = STATE(1146), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1564), - [aux_sym__val_number_decimal_token2] = ACTIONS(1566), - [aux_sym__val_number_decimal_token3] = ACTIONS(1568), - [aux_sym__val_number_decimal_token4] = ACTIONS(1570), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(1179), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1471), + [aux_sym__val_number_decimal_token2] = ACTIONS(1473), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1477), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [233] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5080), - [sym_block] = STATE(5111), - [sym__expression_parenthesized] = STATE(5111), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1226), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5111), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5136), + [sym_block] = STATE(5056), + [sym__expression_parenthesized] = STATE(5056), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1170), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5056), [sym_comment] = STATE(233), - [aux_sym_shebang_repeat1] = STATE(238), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1564), - [aux_sym__val_number_decimal_token2] = ACTIONS(1566), - [aux_sym__val_number_decimal_token3] = ACTIONS(1568), - [aux_sym__val_number_decimal_token4] = ACTIONS(1570), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(1179), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(441), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1463), + [aux_sym__val_number_decimal_token2] = ACTIONS(1465), + [aux_sym__val_number_decimal_token3] = ACTIONS(1467), + [aux_sym__val_number_decimal_token4] = ACTIONS(1469), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [234] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(4964), - [sym_block] = STATE(4965), - [sym__expression_parenthesized] = STATE(4965), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1226), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(4965), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5057), + [sym_block] = STATE(5058), + [sym__expression_parenthesized] = STATE(5058), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1170), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5058), [sym_comment] = STATE(234), - [aux_sym_shebang_repeat1] = STATE(1146), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1564), - [aux_sym__val_number_decimal_token2] = ACTIONS(1566), - [aux_sym__val_number_decimal_token3] = ACTIONS(1568), - [aux_sym__val_number_decimal_token4] = ACTIONS(1570), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(1179), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(441), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1463), + [aux_sym__val_number_decimal_token2] = ACTIONS(1465), + [aux_sym__val_number_decimal_token3] = ACTIONS(1467), + [aux_sym__val_number_decimal_token4] = ACTIONS(1469), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [235] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(4964), - [sym_block] = STATE(4965), - [sym__expression_parenthesized] = STATE(4965), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1226), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(4965), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5057), + [sym_block] = STATE(5058), + [sym__expression_parenthesized] = STATE(5058), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1170), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5058), [sym_comment] = STATE(235), [aux_sym_shebang_repeat1] = STATE(240), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1564), - [aux_sym__val_number_decimal_token2] = ACTIONS(1566), - [aux_sym__val_number_decimal_token3] = ACTIONS(1568), - [aux_sym__val_number_decimal_token4] = ACTIONS(1570), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(441), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1463), + [aux_sym__val_number_decimal_token2] = ACTIONS(1465), + [aux_sym__val_number_decimal_token3] = ACTIONS(1467), + [aux_sym__val_number_decimal_token4] = ACTIONS(1469), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [236] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(4982), - [sym_block] = STATE(4985), - [sym__expression_parenthesized] = STATE(4985), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1226), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(4985), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5059), + [sym_block] = STATE(5060), + [sym__expression_parenthesized] = STATE(5060), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1170), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5060), [sym_comment] = STATE(236), - [aux_sym_shebang_repeat1] = STATE(242), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1564), - [aux_sym__val_number_decimal_token2] = ACTIONS(1566), - [aux_sym__val_number_decimal_token3] = ACTIONS(1568), - [aux_sym__val_number_decimal_token4] = ACTIONS(1570), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(1179), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(441), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1463), + [aux_sym__val_number_decimal_token2] = ACTIONS(1465), + [aux_sym__val_number_decimal_token3] = ACTIONS(1467), + [aux_sym__val_number_decimal_token4] = ACTIONS(1469), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [237] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5012), - [sym_block] = STATE(5018), - [sym__expression_parenthesized] = STATE(5018), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1226), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5018), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5059), + [sym_block] = STATE(5060), + [sym__expression_parenthesized] = STATE(5060), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1170), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5060), [sym_comment] = STATE(237), - [aux_sym_shebang_repeat1] = STATE(1146), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1564), - [aux_sym__val_number_decimal_token2] = ACTIONS(1566), - [aux_sym__val_number_decimal_token3] = ACTIONS(1568), - [aux_sym__val_number_decimal_token4] = ACTIONS(1570), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(241), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(441), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1463), + [aux_sym__val_number_decimal_token2] = ACTIONS(1465), + [aux_sym__val_number_decimal_token3] = ACTIONS(1467), + [aux_sym__val_number_decimal_token4] = ACTIONS(1469), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [238] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5031), - [sym_block] = STATE(5033), - [sym__expression_parenthesized] = STATE(5033), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1226), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5033), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5064), + [sym_block] = STATE(5066), + [sym__expression_parenthesized] = STATE(5066), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1170), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5066), [sym_comment] = STATE(238), - [aux_sym_shebang_repeat1] = STATE(1146), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1564), - [aux_sym__val_number_decimal_token2] = ACTIONS(1566), - [aux_sym__val_number_decimal_token3] = ACTIONS(1568), - [aux_sym__val_number_decimal_token4] = ACTIONS(1570), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(1179), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(441), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1463), + [aux_sym__val_number_decimal_token2] = ACTIONS(1465), + [aux_sym__val_number_decimal_token3] = ACTIONS(1467), + [aux_sym__val_number_decimal_token4] = ACTIONS(1469), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [239] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5031), - [sym_block] = STATE(5033), - [sym__expression_parenthesized] = STATE(5033), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1226), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5033), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5064), + [sym_block] = STATE(5066), + [sym__expression_parenthesized] = STATE(5066), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1170), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5066), [sym_comment] = STATE(239), - [aux_sym_shebang_repeat1] = STATE(244), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1564), - [aux_sym__val_number_decimal_token2] = ACTIONS(1566), - [aux_sym__val_number_decimal_token3] = ACTIONS(1568), - [aux_sym__val_number_decimal_token4] = ACTIONS(1570), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(242), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(441), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1463), + [aux_sym__val_number_decimal_token2] = ACTIONS(1465), + [aux_sym__val_number_decimal_token3] = ACTIONS(1467), + [aux_sym__val_number_decimal_token4] = ACTIONS(1469), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [240] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_block] = STATE(5055), - [sym__expression_parenthesized] = STATE(5055), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1226), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5055), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5070), + [sym_block] = STATE(5071), + [sym__expression_parenthesized] = STATE(5071), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1170), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5071), [sym_comment] = STATE(240), - [aux_sym_shebang_repeat1] = STATE(1146), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1564), - [aux_sym__val_number_decimal_token2] = ACTIONS(1566), - [aux_sym__val_number_decimal_token3] = ACTIONS(1568), - [aux_sym__val_number_decimal_token4] = ACTIONS(1570), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(1179), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(441), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1463), + [aux_sym__val_number_decimal_token2] = ACTIONS(1465), + [aux_sym__val_number_decimal_token3] = ACTIONS(1467), + [aux_sym__val_number_decimal_token4] = ACTIONS(1469), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [241] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_block] = STATE(5055), - [sym__expression_parenthesized] = STATE(5055), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1226), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5055), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5072), + [sym_block] = STATE(5073), + [sym__expression_parenthesized] = STATE(5073), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1170), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5073), [sym_comment] = STATE(241), - [aux_sym_shebang_repeat1] = STATE(245), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1564), - [aux_sym__val_number_decimal_token2] = ACTIONS(1566), - [aux_sym__val_number_decimal_token3] = ACTIONS(1568), - [aux_sym__val_number_decimal_token4] = ACTIONS(1570), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(1179), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(441), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1463), + [aux_sym__val_number_decimal_token2] = ACTIONS(1465), + [aux_sym__val_number_decimal_token3] = ACTIONS(1467), + [aux_sym__val_number_decimal_token4] = ACTIONS(1469), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [242] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5056), - [sym_block] = STATE(5059), - [sym__expression_parenthesized] = STATE(5059), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1226), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5059), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5074), + [sym_block] = STATE(5075), + [sym__expression_parenthesized] = STATE(5075), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1170), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5075), [sym_comment] = STATE(242), - [aux_sym_shebang_repeat1] = STATE(1146), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1564), - [aux_sym__val_number_decimal_token2] = ACTIONS(1566), - [aux_sym__val_number_decimal_token3] = ACTIONS(1568), - [aux_sym__val_number_decimal_token4] = ACTIONS(1570), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(1179), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(441), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1463), + [aux_sym__val_number_decimal_token2] = ACTIONS(1465), + [aux_sym__val_number_decimal_token3] = ACTIONS(1467), + [aux_sym__val_number_decimal_token4] = ACTIONS(1469), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [243] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5056), - [sym_block] = STATE(5059), - [sym__expression_parenthesized] = STATE(5059), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1226), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5059), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5074), + [sym_block] = STATE(5075), + [sym__expression_parenthesized] = STATE(5075), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1170), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5075), [sym_comment] = STATE(243), - [aux_sym_shebang_repeat1] = STATE(246), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1564), - [aux_sym__val_number_decimal_token2] = ACTIONS(1566), - [aux_sym__val_number_decimal_token3] = ACTIONS(1568), - [aux_sym__val_number_decimal_token4] = ACTIONS(1570), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(244), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(441), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1463), + [aux_sym__val_number_decimal_token2] = ACTIONS(1465), + [aux_sym__val_number_decimal_token3] = ACTIONS(1467), + [aux_sym__val_number_decimal_token4] = ACTIONS(1469), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [244] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5122), - [sym_block] = STATE(5125), - [sym__expression_parenthesized] = STATE(5125), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1226), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5125), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5078), + [sym_block] = STATE(5079), + [sym__expression_parenthesized] = STATE(5079), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1170), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5079), [sym_comment] = STATE(244), - [aux_sym_shebang_repeat1] = STATE(1146), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1564), - [aux_sym__val_number_decimal_token2] = ACTIONS(1566), - [aux_sym__val_number_decimal_token3] = ACTIONS(1568), - [aux_sym__val_number_decimal_token4] = ACTIONS(1570), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(1179), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(441), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1463), + [aux_sym__val_number_decimal_token2] = ACTIONS(1465), + [aux_sym__val_number_decimal_token3] = ACTIONS(1467), + [aux_sym__val_number_decimal_token4] = ACTIONS(1469), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [245] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5126), - [sym_block] = STATE(5129), - [sym__expression_parenthesized] = STATE(5129), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1226), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5129), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5059), + [sym_block] = STATE(5060), + [sym__expression_parenthesized] = STATE(5060), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1177), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5060), [sym_comment] = STATE(245), - [aux_sym_shebang_repeat1] = STATE(1146), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1564), - [aux_sym__val_number_decimal_token2] = ACTIONS(1566), - [aux_sym__val_number_decimal_token3] = ACTIONS(1568), - [aux_sym__val_number_decimal_token4] = ACTIONS(1570), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(250), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1471), + [aux_sym__val_number_decimal_token2] = ACTIONS(1473), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1477), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [246] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5131), - [sym_block] = STATE(5136), - [sym__expression_parenthesized] = STATE(5136), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1226), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5136), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5064), + [sym_block] = STATE(5066), + [sym__expression_parenthesized] = STATE(5066), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1177), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5066), [sym_comment] = STATE(246), - [aux_sym_shebang_repeat1] = STATE(1146), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1564), - [aux_sym__val_number_decimal_token2] = ACTIONS(1566), - [aux_sym__val_number_decimal_token3] = ACTIONS(1568), - [aux_sym__val_number_decimal_token4] = ACTIONS(1570), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(1179), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1471), + [aux_sym__val_number_decimal_token2] = ACTIONS(1473), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1477), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [247] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5131), - [sym_block] = STATE(5136), - [sym__expression_parenthesized] = STATE(5136), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1226), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5136), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5064), + [sym_block] = STATE(5066), + [sym__expression_parenthesized] = STATE(5066), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1177), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5066), [sym_comment] = STATE(247), - [aux_sym_shebang_repeat1] = STATE(248), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1564), - [aux_sym__val_number_decimal_token2] = ACTIONS(1566), - [aux_sym__val_number_decimal_token3] = ACTIONS(1568), - [aux_sym__val_number_decimal_token4] = ACTIONS(1570), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(251), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1471), + [aux_sym__val_number_decimal_token2] = ACTIONS(1473), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1477), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [248] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(4963), - [sym_block] = STATE(4979), - [sym__expression_parenthesized] = STATE(4979), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1226), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(4979), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5070), + [sym_block] = STATE(5071), + [sym__expression_parenthesized] = STATE(5071), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1177), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5071), [sym_comment] = STATE(248), - [aux_sym_shebang_repeat1] = STATE(1146), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1564), - [aux_sym__val_number_decimal_token2] = ACTIONS(1566), - [aux_sym__val_number_decimal_token3] = ACTIONS(1568), - [aux_sym__val_number_decimal_token4] = ACTIONS(1570), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(1179), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1471), + [aux_sym__val_number_decimal_token2] = ACTIONS(1473), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1477), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [249] = { [sym_comment] = STATE(249), - [ts_builtin_sym_end] = ACTIONS(1313), - [anon_sym_POUND_BANG] = ACTIONS(1309), - [anon_sym_export] = ACTIONS(1575), - [anon_sym_alias] = ACTIONS(1575), - [anon_sym_let] = ACTIONS(1575), - [anon_sym_let_DASHenv] = ACTIONS(1575), - [anon_sym_mut] = ACTIONS(1575), - [anon_sym_const] = ACTIONS(1575), - [aux_sym_cmd_identifier_token1] = ACTIONS(1575), - [aux_sym_cmd_identifier_token2] = ACTIONS(1313), - [aux_sym_cmd_identifier_token3] = ACTIONS(1313), - [aux_sym_cmd_identifier_token4] = ACTIONS(1313), - [aux_sym_cmd_identifier_token5] = ACTIONS(1313), - [aux_sym_cmd_identifier_token6] = ACTIONS(1313), - [aux_sym_cmd_identifier_token7] = ACTIONS(1313), - [aux_sym_cmd_identifier_token8] = ACTIONS(1575), - [aux_sym_cmd_identifier_token9] = ACTIONS(1575), - [aux_sym_cmd_identifier_token10] = ACTIONS(1313), - [aux_sym_cmd_identifier_token11] = ACTIONS(1313), - [aux_sym_cmd_identifier_token12] = ACTIONS(1575), - [aux_sym_cmd_identifier_token13] = ACTIONS(1575), - [aux_sym_cmd_identifier_token14] = ACTIONS(1575), - [aux_sym_cmd_identifier_token15] = ACTIONS(1575), - [aux_sym_cmd_identifier_token16] = ACTIONS(1313), - [aux_sym_cmd_identifier_token17] = ACTIONS(1313), - [aux_sym_cmd_identifier_token18] = ACTIONS(1575), - [aux_sym_cmd_identifier_token19] = ACTIONS(1313), - [aux_sym_cmd_identifier_token20] = ACTIONS(1313), - [aux_sym_cmd_identifier_token21] = ACTIONS(1313), - [aux_sym_cmd_identifier_token22] = ACTIONS(1313), - [aux_sym_cmd_identifier_token23] = ACTIONS(1313), - [aux_sym_cmd_identifier_token24] = ACTIONS(1313), - [aux_sym_cmd_identifier_token25] = ACTIONS(1313), - [aux_sym_cmd_identifier_token26] = ACTIONS(1313), - [aux_sym_cmd_identifier_token27] = ACTIONS(1313), - [aux_sym_cmd_identifier_token28] = ACTIONS(1313), - [aux_sym_cmd_identifier_token29] = ACTIONS(1313), - [aux_sym_cmd_identifier_token30] = ACTIONS(1313), - [aux_sym_cmd_identifier_token31] = ACTIONS(1313), - [aux_sym_cmd_identifier_token32] = ACTIONS(1575), - [aux_sym_cmd_identifier_token33] = ACTIONS(1313), - [aux_sym_cmd_identifier_token34] = ACTIONS(1575), - [aux_sym_cmd_identifier_token35] = ACTIONS(1313), - [aux_sym_cmd_identifier_token36] = ACTIONS(1313), - [aux_sym_cmd_identifier_token37] = ACTIONS(1313), - [aux_sym_cmd_identifier_token38] = ACTIONS(1575), - [aux_sym_cmd_identifier_token39] = ACTIONS(1313), - [aux_sym_cmd_identifier_token40] = ACTIONS(1313), - [sym__newline] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1313), - [anon_sym_def] = ACTIONS(1575), - [anon_sym_export_DASHenv] = ACTIONS(1575), - [anon_sym_extern] = ACTIONS(1575), - [anon_sym_module] = ACTIONS(1575), - [anon_sym_use] = ACTIONS(1575), - [anon_sym_LBRACK] = ACTIONS(1313), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_DOLLAR] = ACTIONS(1575), - [anon_sym_error] = ACTIONS(1575), - [anon_sym_DASH2] = ACTIONS(1575), - [anon_sym_break] = ACTIONS(1575), - [anon_sym_continue] = ACTIONS(1575), - [anon_sym_for] = ACTIONS(1575), - [anon_sym_loop] = ACTIONS(1575), - [anon_sym_while] = ACTIONS(1575), - [anon_sym_do] = ACTIONS(1575), - [anon_sym_if] = ACTIONS(1575), - [anon_sym_match] = ACTIONS(1575), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_DOT_DOT] = ACTIONS(1575), - [anon_sym_try] = ACTIONS(1575), - [anon_sym_return] = ACTIONS(1575), - [anon_sym_source] = ACTIONS(1575), - [anon_sym_source_DASHenv] = ACTIONS(1575), - [anon_sym_register] = ACTIONS(1575), - [anon_sym_hide] = ACTIONS(1575), - [anon_sym_hide_DASHenv] = ACTIONS(1575), - [anon_sym_overlay] = ACTIONS(1575), - [anon_sym_where] = ACTIONS(1313), - [aux_sym_expr_unary_token1] = ACTIONS(1313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), - [anon_sym_DOT_DOT_LT] = ACTIONS(1313), - [anon_sym_null] = ACTIONS(1575), - [anon_sym_true] = ACTIONS(1575), - [anon_sym_false] = ACTIONS(1575), - [aux_sym__val_number_decimal_token1] = ACTIONS(1575), - [aux_sym__val_number_decimal_token2] = ACTIONS(1313), - [aux_sym__val_number_decimal_token3] = ACTIONS(1313), - [aux_sym__val_number_decimal_token4] = ACTIONS(1313), - [aux_sym__val_number_token1] = ACTIONS(1313), - [aux_sym__val_number_token2] = ACTIONS(1313), - [aux_sym__val_number_token3] = ACTIONS(1313), - [aux_sym__val_number_token4] = ACTIONS(1575), - [aux_sym__val_number_token5] = ACTIONS(1575), - [aux_sym__val_number_token6] = ACTIONS(1575), - [anon_sym_0b] = ACTIONS(1575), - [anon_sym_0o] = ACTIONS(1575), - [anon_sym_0x] = ACTIONS(1575), - [sym_val_date] = ACTIONS(1313), - [anon_sym_DQUOTE] = ACTIONS(1313), - [sym__str_single_quotes] = ACTIONS(1313), - [sym__str_back_ticks] = ACTIONS(1313), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1313), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1313), - [aux_sym_env_var_token1] = ACTIONS(1575), - [anon_sym_CARET] = ACTIONS(1313), - [aux_sym_command_token1] = ACTIONS(1313), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1313), + [aux_sym__block_body_repeat1] = STATE(253), + [anon_sym_export] = ACTIONS(1489), + [anon_sym_alias] = ACTIONS(1489), + [anon_sym_let] = ACTIONS(1489), + [anon_sym_let_DASHenv] = ACTIONS(1489), + [anon_sym_mut] = ACTIONS(1489), + [anon_sym_const] = ACTIONS(1489), + [aux_sym_cmd_identifier_token1] = ACTIONS(1489), + [aux_sym_cmd_identifier_token2] = ACTIONS(1491), + [aux_sym_cmd_identifier_token3] = ACTIONS(1491), + [aux_sym_cmd_identifier_token4] = ACTIONS(1491), + [aux_sym_cmd_identifier_token5] = ACTIONS(1491), + [aux_sym_cmd_identifier_token6] = ACTIONS(1491), + [aux_sym_cmd_identifier_token7] = ACTIONS(1491), + [aux_sym_cmd_identifier_token8] = ACTIONS(1489), + [aux_sym_cmd_identifier_token9] = ACTIONS(1489), + [aux_sym_cmd_identifier_token10] = ACTIONS(1491), + [aux_sym_cmd_identifier_token11] = ACTIONS(1491), + [aux_sym_cmd_identifier_token12] = ACTIONS(1489), + [aux_sym_cmd_identifier_token13] = ACTIONS(1489), + [aux_sym_cmd_identifier_token14] = ACTIONS(1489), + [aux_sym_cmd_identifier_token15] = ACTIONS(1489), + [aux_sym_cmd_identifier_token16] = ACTIONS(1491), + [aux_sym_cmd_identifier_token17] = ACTIONS(1491), + [aux_sym_cmd_identifier_token18] = ACTIONS(1489), + [aux_sym_cmd_identifier_token19] = ACTIONS(1491), + [aux_sym_cmd_identifier_token20] = ACTIONS(1491), + [aux_sym_cmd_identifier_token21] = ACTIONS(1491), + [aux_sym_cmd_identifier_token22] = ACTIONS(1491), + [aux_sym_cmd_identifier_token23] = ACTIONS(1491), + [aux_sym_cmd_identifier_token24] = ACTIONS(1491), + [aux_sym_cmd_identifier_token25] = ACTIONS(1491), + [aux_sym_cmd_identifier_token26] = ACTIONS(1491), + [aux_sym_cmd_identifier_token27] = ACTIONS(1491), + [aux_sym_cmd_identifier_token28] = ACTIONS(1491), + [aux_sym_cmd_identifier_token29] = ACTIONS(1491), + [aux_sym_cmd_identifier_token30] = ACTIONS(1491), + [aux_sym_cmd_identifier_token31] = ACTIONS(1491), + [aux_sym_cmd_identifier_token32] = ACTIONS(1489), + [aux_sym_cmd_identifier_token33] = ACTIONS(1491), + [aux_sym_cmd_identifier_token34] = ACTIONS(1489), + [aux_sym_cmd_identifier_token35] = ACTIONS(1491), + [aux_sym_cmd_identifier_token36] = ACTIONS(1491), + [aux_sym_cmd_identifier_token37] = ACTIONS(1491), + [aux_sym_cmd_identifier_token38] = ACTIONS(1489), + [aux_sym_cmd_identifier_token39] = ACTIONS(1491), + [aux_sym_cmd_identifier_token40] = ACTIONS(1491), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(1489), + [anon_sym_export_DASHenv] = ACTIONS(1489), + [anon_sym_extern] = ACTIONS(1489), + [anon_sym_module] = ACTIONS(1489), + [anon_sym_use] = ACTIONS(1489), + [anon_sym_LBRACK] = ACTIONS(1491), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_RPAREN] = ACTIONS(1493), + [anon_sym_DOLLAR] = ACTIONS(1489), + [anon_sym_error] = ACTIONS(1489), + [anon_sym_DASH2] = ACTIONS(1489), + [anon_sym_break] = ACTIONS(1489), + [anon_sym_continue] = ACTIONS(1489), + [anon_sym_for] = ACTIONS(1489), + [anon_sym_loop] = ACTIONS(1489), + [anon_sym_while] = ACTIONS(1489), + [anon_sym_do] = ACTIONS(1489), + [anon_sym_if] = ACTIONS(1489), + [anon_sym_match] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1491), + [anon_sym_RBRACE] = ACTIONS(1493), + [anon_sym_DOT_DOT] = ACTIONS(1489), + [anon_sym_try] = ACTIONS(1489), + [anon_sym_return] = ACTIONS(1489), + [anon_sym_source] = ACTIONS(1489), + [anon_sym_source_DASHenv] = ACTIONS(1489), + [anon_sym_hide] = ACTIONS(1489), + [anon_sym_hide_DASHenv] = ACTIONS(1489), + [anon_sym_overlay] = ACTIONS(1489), + [anon_sym_where] = ACTIONS(1491), + [aux_sym_expr_unary_token1] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1491), + [anon_sym_DOT_DOT_LT] = ACTIONS(1491), + [anon_sym_null] = ACTIONS(1489), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [aux_sym__val_number_decimal_token1] = ACTIONS(1489), + [aux_sym__val_number_decimal_token2] = ACTIONS(1491), + [aux_sym__val_number_decimal_token3] = ACTIONS(1491), + [aux_sym__val_number_decimal_token4] = ACTIONS(1491), + [aux_sym__val_number_token1] = ACTIONS(1491), + [aux_sym__val_number_token2] = ACTIONS(1491), + [aux_sym__val_number_token3] = ACTIONS(1491), + [aux_sym__val_number_token4] = ACTIONS(1489), + [aux_sym__val_number_token5] = ACTIONS(1489), + [aux_sym__val_number_token6] = ACTIONS(1489), + [anon_sym_0b] = ACTIONS(1489), + [anon_sym_0o] = ACTIONS(1489), + [anon_sym_0x] = ACTIONS(1489), + [sym_val_date] = ACTIONS(1491), + [anon_sym_DQUOTE] = ACTIONS(1491), + [sym__str_single_quotes] = ACTIONS(1491), + [sym__str_back_ticks] = ACTIONS(1491), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1491), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1491), + [aux_sym_env_var_token1] = ACTIONS(1489), + [anon_sym_CARET] = ACTIONS(1491), + [aux_sym_command_token1] = ACTIONS(1491), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1491), }, [250] = { + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5072), + [sym_block] = STATE(5073), + [sym__expression_parenthesized] = STATE(5073), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1177), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5073), [sym_comment] = STATE(250), - [aux_sym__block_body_repeat1] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1455), - [anon_sym_alias] = ACTIONS(1455), - [anon_sym_let] = ACTIONS(1455), - [anon_sym_let_DASHenv] = ACTIONS(1455), - [anon_sym_mut] = ACTIONS(1455), - [anon_sym_const] = ACTIONS(1455), - [aux_sym_cmd_identifier_token1] = ACTIONS(1455), - [aux_sym_cmd_identifier_token2] = ACTIONS(1457), - [aux_sym_cmd_identifier_token3] = ACTIONS(1457), - [aux_sym_cmd_identifier_token4] = ACTIONS(1457), - [aux_sym_cmd_identifier_token5] = ACTIONS(1457), - [aux_sym_cmd_identifier_token6] = ACTIONS(1457), - [aux_sym_cmd_identifier_token7] = ACTIONS(1457), - [aux_sym_cmd_identifier_token8] = ACTIONS(1455), - [aux_sym_cmd_identifier_token9] = ACTIONS(1455), - [aux_sym_cmd_identifier_token10] = ACTIONS(1457), - [aux_sym_cmd_identifier_token11] = ACTIONS(1457), - [aux_sym_cmd_identifier_token12] = ACTIONS(1455), - [aux_sym_cmd_identifier_token13] = ACTIONS(1455), - [aux_sym_cmd_identifier_token14] = ACTIONS(1455), - [aux_sym_cmd_identifier_token15] = ACTIONS(1455), - [aux_sym_cmd_identifier_token16] = ACTIONS(1457), - [aux_sym_cmd_identifier_token17] = ACTIONS(1457), - [aux_sym_cmd_identifier_token18] = ACTIONS(1455), - [aux_sym_cmd_identifier_token19] = ACTIONS(1457), - [aux_sym_cmd_identifier_token20] = ACTIONS(1457), - [aux_sym_cmd_identifier_token21] = ACTIONS(1457), - [aux_sym_cmd_identifier_token22] = ACTIONS(1457), - [aux_sym_cmd_identifier_token23] = ACTIONS(1457), - [aux_sym_cmd_identifier_token24] = ACTIONS(1457), - [aux_sym_cmd_identifier_token25] = ACTIONS(1457), - [aux_sym_cmd_identifier_token26] = ACTIONS(1457), - [aux_sym_cmd_identifier_token27] = ACTIONS(1457), - [aux_sym_cmd_identifier_token28] = ACTIONS(1457), - [aux_sym_cmd_identifier_token29] = ACTIONS(1457), - [aux_sym_cmd_identifier_token30] = ACTIONS(1457), - [aux_sym_cmd_identifier_token31] = ACTIONS(1457), - [aux_sym_cmd_identifier_token32] = ACTIONS(1455), - [aux_sym_cmd_identifier_token33] = ACTIONS(1457), - [aux_sym_cmd_identifier_token34] = ACTIONS(1455), - [aux_sym_cmd_identifier_token35] = ACTIONS(1457), - [aux_sym_cmd_identifier_token36] = ACTIONS(1457), - [aux_sym_cmd_identifier_token37] = ACTIONS(1457), - [aux_sym_cmd_identifier_token38] = ACTIONS(1455), - [aux_sym_cmd_identifier_token39] = ACTIONS(1457), - [aux_sym_cmd_identifier_token40] = ACTIONS(1457), - [sym__newline] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(25), - [anon_sym_def] = ACTIONS(1455), - [anon_sym_export_DASHenv] = ACTIONS(1455), - [anon_sym_extern] = ACTIONS(1455), - [anon_sym_module] = ACTIONS(1455), - [anon_sym_use] = ACTIONS(1455), - [anon_sym_LBRACK] = ACTIONS(1457), - [anon_sym_LPAREN] = ACTIONS(1457), - [anon_sym_DOLLAR] = ACTIONS(1455), - [anon_sym_error] = ACTIONS(1455), - [anon_sym_DASH2] = ACTIONS(1455), - [anon_sym_break] = ACTIONS(1455), - [anon_sym_continue] = ACTIONS(1455), - [anon_sym_for] = ACTIONS(1455), - [anon_sym_loop] = ACTIONS(1455), - [anon_sym_while] = ACTIONS(1455), - [anon_sym_do] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1455), - [anon_sym_match] = ACTIONS(1455), - [anon_sym_LBRACE] = ACTIONS(1457), - [anon_sym_DOT_DOT] = ACTIONS(1455), - [anon_sym_try] = ACTIONS(1455), - [anon_sym_return] = ACTIONS(1455), - [anon_sym_source] = ACTIONS(1455), - [anon_sym_source_DASHenv] = ACTIONS(1455), - [anon_sym_register] = ACTIONS(1455), - [anon_sym_hide] = ACTIONS(1455), - [anon_sym_hide_DASHenv] = ACTIONS(1455), - [anon_sym_overlay] = ACTIONS(1455), - [anon_sym_where] = ACTIONS(1457), - [aux_sym_expr_unary_token1] = ACTIONS(1457), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1457), - [anon_sym_DOT_DOT_LT] = ACTIONS(1457), - [anon_sym_null] = ACTIONS(1455), - [anon_sym_true] = ACTIONS(1455), - [anon_sym_false] = ACTIONS(1455), - [aux_sym__val_number_decimal_token1] = ACTIONS(1455), - [aux_sym__val_number_decimal_token2] = ACTIONS(1457), - [aux_sym__val_number_decimal_token3] = ACTIONS(1457), - [aux_sym__val_number_decimal_token4] = ACTIONS(1457), - [aux_sym__val_number_token1] = ACTIONS(1457), - [aux_sym__val_number_token2] = ACTIONS(1457), - [aux_sym__val_number_token3] = ACTIONS(1457), - [aux_sym__val_number_token4] = ACTIONS(1455), - [aux_sym__val_number_token5] = ACTIONS(1455), - [aux_sym__val_number_token6] = ACTIONS(1455), - [anon_sym_0b] = ACTIONS(1455), - [anon_sym_0o] = ACTIONS(1455), - [anon_sym_0x] = ACTIONS(1455), - [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), - [aux_sym_env_var_token1] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1457), - [aux_sym_command_token1] = ACTIONS(1457), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1457), + [aux_sym_shebang_repeat1] = STATE(1179), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1471), + [aux_sym__val_number_decimal_token2] = ACTIONS(1473), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1477), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [251] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5105), - [sym_block] = STATE(5106), - [sym__expression_parenthesized] = STATE(5106), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1190), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5106), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5074), + [sym_block] = STATE(5075), + [sym__expression_parenthesized] = STATE(5075), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1177), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5075), [sym_comment] = STATE(251), - [aux_sym_shebang_repeat1] = STATE(276), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1577), - [aux_sym__val_number_decimal_token2] = ACTIONS(1579), - [aux_sym__val_number_decimal_token3] = ACTIONS(1581), - [aux_sym__val_number_decimal_token4] = ACTIONS(1583), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(1179), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1471), + [aux_sym__val_number_decimal_token2] = ACTIONS(1473), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1477), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [252] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5105), - [sym_block] = STATE(5106), - [sym__expression_parenthesized] = STATE(5106), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1210), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5106), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5074), + [sym_block] = STATE(5075), + [sym__expression_parenthesized] = STATE(5075), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1177), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5075), [sym_comment] = STATE(252), - [aux_sym_shebang_repeat1] = STATE(253), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1585), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(254), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1471), + [aux_sym__val_number_decimal_token2] = ACTIONS(1473), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1477), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [253] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_block] = STATE(5010), - [sym__expression_parenthesized] = STATE(5010), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1210), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5010), [sym_comment] = STATE(253), - [aux_sym_shebang_repeat1] = STATE(1146), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1585), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym__block_body_repeat1] = STATE(253), + [anon_sym_export] = ACTIONS(1495), + [anon_sym_alias] = ACTIONS(1495), + [anon_sym_let] = ACTIONS(1495), + [anon_sym_let_DASHenv] = ACTIONS(1495), + [anon_sym_mut] = ACTIONS(1495), + [anon_sym_const] = ACTIONS(1495), + [aux_sym_cmd_identifier_token1] = ACTIONS(1495), + [aux_sym_cmd_identifier_token2] = ACTIONS(1497), + [aux_sym_cmd_identifier_token3] = ACTIONS(1497), + [aux_sym_cmd_identifier_token4] = ACTIONS(1497), + [aux_sym_cmd_identifier_token5] = ACTIONS(1497), + [aux_sym_cmd_identifier_token6] = ACTIONS(1497), + [aux_sym_cmd_identifier_token7] = ACTIONS(1497), + [aux_sym_cmd_identifier_token8] = ACTIONS(1495), + [aux_sym_cmd_identifier_token9] = ACTIONS(1495), + [aux_sym_cmd_identifier_token10] = ACTIONS(1497), + [aux_sym_cmd_identifier_token11] = ACTIONS(1497), + [aux_sym_cmd_identifier_token12] = ACTIONS(1495), + [aux_sym_cmd_identifier_token13] = ACTIONS(1495), + [aux_sym_cmd_identifier_token14] = ACTIONS(1495), + [aux_sym_cmd_identifier_token15] = ACTIONS(1495), + [aux_sym_cmd_identifier_token16] = ACTIONS(1497), + [aux_sym_cmd_identifier_token17] = ACTIONS(1497), + [aux_sym_cmd_identifier_token18] = ACTIONS(1495), + [aux_sym_cmd_identifier_token19] = ACTIONS(1497), + [aux_sym_cmd_identifier_token20] = ACTIONS(1497), + [aux_sym_cmd_identifier_token21] = ACTIONS(1497), + [aux_sym_cmd_identifier_token22] = ACTIONS(1497), + [aux_sym_cmd_identifier_token23] = ACTIONS(1497), + [aux_sym_cmd_identifier_token24] = ACTIONS(1497), + [aux_sym_cmd_identifier_token25] = ACTIONS(1497), + [aux_sym_cmd_identifier_token26] = ACTIONS(1497), + [aux_sym_cmd_identifier_token27] = ACTIONS(1497), + [aux_sym_cmd_identifier_token28] = ACTIONS(1497), + [aux_sym_cmd_identifier_token29] = ACTIONS(1497), + [aux_sym_cmd_identifier_token30] = ACTIONS(1497), + [aux_sym_cmd_identifier_token31] = ACTIONS(1497), + [aux_sym_cmd_identifier_token32] = ACTIONS(1495), + [aux_sym_cmd_identifier_token33] = ACTIONS(1497), + [aux_sym_cmd_identifier_token34] = ACTIONS(1495), + [aux_sym_cmd_identifier_token35] = ACTIONS(1497), + [aux_sym_cmd_identifier_token36] = ACTIONS(1497), + [aux_sym_cmd_identifier_token37] = ACTIONS(1497), + [aux_sym_cmd_identifier_token38] = ACTIONS(1495), + [aux_sym_cmd_identifier_token39] = ACTIONS(1497), + [aux_sym_cmd_identifier_token40] = ACTIONS(1497), + [sym__newline] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_def] = ACTIONS(1495), + [anon_sym_export_DASHenv] = ACTIONS(1495), + [anon_sym_extern] = ACTIONS(1495), + [anon_sym_module] = ACTIONS(1495), + [anon_sym_use] = ACTIONS(1495), + [anon_sym_LBRACK] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(1497), + [anon_sym_RPAREN] = ACTIONS(1497), + [anon_sym_DOLLAR] = ACTIONS(1495), + [anon_sym_error] = ACTIONS(1495), + [anon_sym_DASH2] = ACTIONS(1495), + [anon_sym_break] = ACTIONS(1495), + [anon_sym_continue] = ACTIONS(1495), + [anon_sym_for] = ACTIONS(1495), + [anon_sym_loop] = ACTIONS(1495), + [anon_sym_while] = ACTIONS(1495), + [anon_sym_do] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1495), + [anon_sym_match] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_RBRACE] = ACTIONS(1497), + [anon_sym_DOT_DOT] = ACTIONS(1495), + [anon_sym_try] = ACTIONS(1495), + [anon_sym_return] = ACTIONS(1495), + [anon_sym_source] = ACTIONS(1495), + [anon_sym_source_DASHenv] = ACTIONS(1495), + [anon_sym_hide] = ACTIONS(1495), + [anon_sym_hide_DASHenv] = ACTIONS(1495), + [anon_sym_overlay] = ACTIONS(1495), + [anon_sym_where] = ACTIONS(1497), + [aux_sym_expr_unary_token1] = ACTIONS(1497), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1497), + [anon_sym_DOT_DOT_LT] = ACTIONS(1497), + [anon_sym_null] = ACTIONS(1495), + [anon_sym_true] = ACTIONS(1495), + [anon_sym_false] = ACTIONS(1495), + [aux_sym__val_number_decimal_token1] = ACTIONS(1495), + [aux_sym__val_number_decimal_token2] = ACTIONS(1497), + [aux_sym__val_number_decimal_token3] = ACTIONS(1497), + [aux_sym__val_number_decimal_token4] = ACTIONS(1497), + [aux_sym__val_number_token1] = ACTIONS(1497), + [aux_sym__val_number_token2] = ACTIONS(1497), + [aux_sym__val_number_token3] = ACTIONS(1497), + [aux_sym__val_number_token4] = ACTIONS(1495), + [aux_sym__val_number_token5] = ACTIONS(1495), + [aux_sym__val_number_token6] = ACTIONS(1495), + [anon_sym_0b] = ACTIONS(1495), + [anon_sym_0o] = ACTIONS(1495), + [anon_sym_0x] = ACTIONS(1495), + [sym_val_date] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1497), + [sym__str_single_quotes] = ACTIONS(1497), + [sym__str_back_ticks] = ACTIONS(1497), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1497), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1497), + [aux_sym_env_var_token1] = ACTIONS(1495), + [anon_sym_CARET] = ACTIONS(1497), + [aux_sym_command_token1] = ACTIONS(1497), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1497), }, [254] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_block] = STATE(5010), - [sym__expression_parenthesized] = STATE(5010), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1210), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5010), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5078), + [sym_block] = STATE(5079), + [sym__expression_parenthesized] = STATE(5079), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1177), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5079), [sym_comment] = STATE(254), - [aux_sym_shebang_repeat1] = STATE(257), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1585), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(1179), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1471), + [aux_sym__val_number_decimal_token2] = ACTIONS(1473), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1477), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [255] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5011), - [sym_block] = STATE(5020), - [sym__expression_parenthesized] = STATE(5020), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1210), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5020), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5059), + [sym_block] = STATE(5060), + [sym__expression_parenthesized] = STATE(5060), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1203), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5060), [sym_comment] = STATE(255), - [aux_sym_shebang_repeat1] = STATE(259), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1585), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(1179), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1481), + [aux_sym__val_number_decimal_token2] = ACTIONS(1483), + [aux_sym__val_number_decimal_token3] = ACTIONS(1485), + [aux_sym__val_number_decimal_token4] = ACTIONS(1487), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [256] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5047), - [sym_block] = STATE(5050), - [sym__expression_parenthesized] = STATE(5050), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1210), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5050), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5059), + [sym_block] = STATE(5060), + [sym__expression_parenthesized] = STATE(5060), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1203), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5060), [sym_comment] = STATE(256), - [aux_sym_shebang_repeat1] = STATE(261), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1585), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(260), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1481), + [aux_sym__val_number_decimal_token2] = ACTIONS(1483), + [aux_sym__val_number_decimal_token3] = ACTIONS(1485), + [aux_sym__val_number_decimal_token4] = ACTIONS(1487), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [257] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5068), - [sym_block] = STATE(5079), - [sym__expression_parenthesized] = STATE(5079), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1210), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5079), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5064), + [sym_block] = STATE(5066), + [sym__expression_parenthesized] = STATE(5066), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1203), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5066), [sym_comment] = STATE(257), - [aux_sym_shebang_repeat1] = STATE(1146), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1585), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(1179), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1481), + [aux_sym__val_number_decimal_token2] = ACTIONS(1483), + [aux_sym__val_number_decimal_token3] = ACTIONS(1485), + [aux_sym__val_number_decimal_token4] = ACTIONS(1487), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [258] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5068), - [sym_block] = STATE(5079), - [sym__expression_parenthesized] = STATE(5079), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1210), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5079), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5064), + [sym_block] = STATE(5066), + [sym__expression_parenthesized] = STATE(5066), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1203), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5066), [sym_comment] = STATE(258), - [aux_sym_shebang_repeat1] = STATE(264), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1585), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(261), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1481), + [aux_sym__val_number_decimal_token2] = ACTIONS(1483), + [aux_sym__val_number_decimal_token3] = ACTIONS(1485), + [aux_sym__val_number_decimal_token4] = ACTIONS(1487), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [259] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5080), - [sym_block] = STATE(5111), - [sym__expression_parenthesized] = STATE(5111), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1210), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5111), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5070), + [sym_block] = STATE(5071), + [sym__expression_parenthesized] = STATE(5071), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1203), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5071), [sym_comment] = STATE(259), - [aux_sym_shebang_repeat1] = STATE(1146), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1585), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(1179), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1481), + [aux_sym__val_number_decimal_token2] = ACTIONS(1483), + [aux_sym__val_number_decimal_token3] = ACTIONS(1485), + [aux_sym__val_number_decimal_token4] = ACTIONS(1487), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [260] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5080), - [sym_block] = STATE(5111), - [sym__expression_parenthesized] = STATE(5111), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1210), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5111), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5072), + [sym_block] = STATE(5073), + [sym__expression_parenthesized] = STATE(5073), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1203), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5073), [sym_comment] = STATE(260), - [aux_sym_shebang_repeat1] = STATE(265), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1585), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(1179), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1481), + [aux_sym__val_number_decimal_token2] = ACTIONS(1483), + [aux_sym__val_number_decimal_token3] = ACTIONS(1485), + [aux_sym__val_number_decimal_token4] = ACTIONS(1487), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [261] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(4964), - [sym_block] = STATE(4965), - [sym__expression_parenthesized] = STATE(4965), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1210), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(4965), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5074), + [sym_block] = STATE(5075), + [sym__expression_parenthesized] = STATE(5075), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1203), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5075), [sym_comment] = STATE(261), - [aux_sym_shebang_repeat1] = STATE(1146), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1585), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(1179), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1481), + [aux_sym__val_number_decimal_token2] = ACTIONS(1483), + [aux_sym__val_number_decimal_token3] = ACTIONS(1485), + [aux_sym__val_number_decimal_token4] = ACTIONS(1487), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [262] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(4964), - [sym_block] = STATE(4965), - [sym__expression_parenthesized] = STATE(4965), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1210), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(4965), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5074), + [sym_block] = STATE(5075), + [sym__expression_parenthesized] = STATE(5075), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1203), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5075), [sym_comment] = STATE(262), - [aux_sym_shebang_repeat1] = STATE(267), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1585), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(292), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1481), + [aux_sym__val_number_decimal_token2] = ACTIONS(1483), + [aux_sym__val_number_decimal_token3] = ACTIONS(1485), + [aux_sym__val_number_decimal_token4] = ACTIONS(1487), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [263] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(4982), - [sym_block] = STATE(4985), - [sym__expression_parenthesized] = STATE(4985), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1210), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(4985), [sym_comment] = STATE(263), - [aux_sym_shebang_repeat1] = STATE(269), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1585), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym__block_body_repeat1] = STATE(253), + [anon_sym_export] = ACTIONS(1489), + [anon_sym_alias] = ACTIONS(1489), + [anon_sym_let] = ACTIONS(1489), + [anon_sym_let_DASHenv] = ACTIONS(1489), + [anon_sym_mut] = ACTIONS(1489), + [anon_sym_const] = ACTIONS(1489), + [aux_sym_cmd_identifier_token1] = ACTIONS(1489), + [aux_sym_cmd_identifier_token2] = ACTIONS(1491), + [aux_sym_cmd_identifier_token3] = ACTIONS(1491), + [aux_sym_cmd_identifier_token4] = ACTIONS(1491), + [aux_sym_cmd_identifier_token5] = ACTIONS(1491), + [aux_sym_cmd_identifier_token6] = ACTIONS(1491), + [aux_sym_cmd_identifier_token7] = ACTIONS(1491), + [aux_sym_cmd_identifier_token8] = ACTIONS(1489), + [aux_sym_cmd_identifier_token9] = ACTIONS(1489), + [aux_sym_cmd_identifier_token10] = ACTIONS(1491), + [aux_sym_cmd_identifier_token11] = ACTIONS(1491), + [aux_sym_cmd_identifier_token12] = ACTIONS(1489), + [aux_sym_cmd_identifier_token13] = ACTIONS(1489), + [aux_sym_cmd_identifier_token14] = ACTIONS(1489), + [aux_sym_cmd_identifier_token15] = ACTIONS(1489), + [aux_sym_cmd_identifier_token16] = ACTIONS(1491), + [aux_sym_cmd_identifier_token17] = ACTIONS(1491), + [aux_sym_cmd_identifier_token18] = ACTIONS(1489), + [aux_sym_cmd_identifier_token19] = ACTIONS(1491), + [aux_sym_cmd_identifier_token20] = ACTIONS(1491), + [aux_sym_cmd_identifier_token21] = ACTIONS(1491), + [aux_sym_cmd_identifier_token22] = ACTIONS(1491), + [aux_sym_cmd_identifier_token23] = ACTIONS(1491), + [aux_sym_cmd_identifier_token24] = ACTIONS(1491), + [aux_sym_cmd_identifier_token25] = ACTIONS(1491), + [aux_sym_cmd_identifier_token26] = ACTIONS(1491), + [aux_sym_cmd_identifier_token27] = ACTIONS(1491), + [aux_sym_cmd_identifier_token28] = ACTIONS(1491), + [aux_sym_cmd_identifier_token29] = ACTIONS(1491), + [aux_sym_cmd_identifier_token30] = ACTIONS(1491), + [aux_sym_cmd_identifier_token31] = ACTIONS(1491), + [aux_sym_cmd_identifier_token32] = ACTIONS(1489), + [aux_sym_cmd_identifier_token33] = ACTIONS(1491), + [aux_sym_cmd_identifier_token34] = ACTIONS(1489), + [aux_sym_cmd_identifier_token35] = ACTIONS(1491), + [aux_sym_cmd_identifier_token36] = ACTIONS(1491), + [aux_sym_cmd_identifier_token37] = ACTIONS(1491), + [aux_sym_cmd_identifier_token38] = ACTIONS(1489), + [aux_sym_cmd_identifier_token39] = ACTIONS(1491), + [aux_sym_cmd_identifier_token40] = ACTIONS(1491), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(1489), + [anon_sym_export_DASHenv] = ACTIONS(1489), + [anon_sym_extern] = ACTIONS(1489), + [anon_sym_module] = ACTIONS(1489), + [anon_sym_use] = ACTIONS(1489), + [anon_sym_LBRACK] = ACTIONS(1491), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_RPAREN] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1489), + [anon_sym_error] = ACTIONS(1489), + [anon_sym_DASH2] = ACTIONS(1489), + [anon_sym_break] = ACTIONS(1489), + [anon_sym_continue] = ACTIONS(1489), + [anon_sym_for] = ACTIONS(1489), + [anon_sym_loop] = ACTIONS(1489), + [anon_sym_while] = ACTIONS(1489), + [anon_sym_do] = ACTIONS(1489), + [anon_sym_if] = ACTIONS(1489), + [anon_sym_match] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1491), + [anon_sym_RBRACE] = ACTIONS(1502), + [anon_sym_DOT_DOT] = ACTIONS(1489), + [anon_sym_try] = ACTIONS(1489), + [anon_sym_return] = ACTIONS(1489), + [anon_sym_source] = ACTIONS(1489), + [anon_sym_source_DASHenv] = ACTIONS(1489), + [anon_sym_hide] = ACTIONS(1489), + [anon_sym_hide_DASHenv] = ACTIONS(1489), + [anon_sym_overlay] = ACTIONS(1489), + [anon_sym_where] = ACTIONS(1491), + [aux_sym_expr_unary_token1] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1491), + [anon_sym_DOT_DOT_LT] = ACTIONS(1491), + [anon_sym_null] = ACTIONS(1489), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [aux_sym__val_number_decimal_token1] = ACTIONS(1489), + [aux_sym__val_number_decimal_token2] = ACTIONS(1491), + [aux_sym__val_number_decimal_token3] = ACTIONS(1491), + [aux_sym__val_number_decimal_token4] = ACTIONS(1491), + [aux_sym__val_number_token1] = ACTIONS(1491), + [aux_sym__val_number_token2] = ACTIONS(1491), + [aux_sym__val_number_token3] = ACTIONS(1491), + [aux_sym__val_number_token4] = ACTIONS(1489), + [aux_sym__val_number_token5] = ACTIONS(1489), + [aux_sym__val_number_token6] = ACTIONS(1489), + [anon_sym_0b] = ACTIONS(1489), + [anon_sym_0o] = ACTIONS(1489), + [anon_sym_0x] = ACTIONS(1489), + [sym_val_date] = ACTIONS(1491), + [anon_sym_DQUOTE] = ACTIONS(1491), + [sym__str_single_quotes] = ACTIONS(1491), + [sym__str_back_ticks] = ACTIONS(1491), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1491), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1491), + [aux_sym_env_var_token1] = ACTIONS(1489), + [anon_sym_CARET] = ACTIONS(1491), + [aux_sym_command_token1] = ACTIONS(1491), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1491), }, [264] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5012), - [sym_block] = STATE(5018), - [sym__expression_parenthesized] = STATE(5018), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1210), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5018), [sym_comment] = STATE(264), - [aux_sym_shebang_repeat1] = STATE(1146), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1585), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1504), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_error] = ACTIONS(1504), + [anon_sym_DASH2] = ACTIONS(1504), + [anon_sym_break] = ACTIONS(1504), + [anon_sym_continue] = ACTIONS(1504), + [anon_sym_for] = ACTIONS(1504), + [anon_sym_in2] = 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_hide] = ACTIONS(1504), + [anon_sym_hide_DASHenv] = ACTIONS(1504), + [anon_sym_overlay] = ACTIONS(1504), + [anon_sym_as] = ACTIONS(1504), + [anon_sym_LPAREN2] = ACTIONS(1506), + [anon_sym_PLUS2] = ACTIONS(1504), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1504), + [anon_sym_DOT_DOT2] = ACTIONS(1504), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1506), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1506), + [aux_sym__immediate_decimal_token1] = ACTIONS(1508), + [aux_sym__immediate_decimal_token2] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1504), + [aux_sym__val_number_decimal_token1] = ACTIONS(1504), + [aux_sym__val_number_decimal_token2] = ACTIONS(1504), + [aux_sym__val_number_decimal_token3] = ACTIONS(1504), + [aux_sym__val_number_decimal_token4] = ACTIONS(1504), + [aux_sym__val_number_token1] = ACTIONS(1504), + [aux_sym__val_number_token2] = ACTIONS(1504), + [aux_sym__val_number_token3] = ACTIONS(1504), + [aux_sym__val_number_token4] = ACTIONS(1504), + [aux_sym__val_number_token5] = ACTIONS(1504), + [aux_sym__val_number_token6] = 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_DOLLAR_SQUOTE] = ACTIONS(1504), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1504), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1504), + [sym__entry_separator] = ACTIONS(1506), + [anon_sym_register] = ACTIONS(1504), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1504), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1506), }, [265] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5031), - [sym_block] = STATE(5033), - [sym__expression_parenthesized] = STATE(5033), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1210), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5033), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5119), + [sym_block] = STATE(5120), + [sym__expression_parenthesized] = STATE(5120), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1177), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5120), [sym_comment] = STATE(265), - [aux_sym_shebang_repeat1] = STATE(1146), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1585), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(267), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1471), + [aux_sym__val_number_decimal_token2] = ACTIONS(1473), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1477), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [266] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5031), - [sym_block] = STATE(5033), - [sym__expression_parenthesized] = STATE(5033), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1210), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5033), [sym_comment] = STATE(266), - [aux_sym_shebang_repeat1] = STATE(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1585), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_export] = ACTIONS(1512), + [anon_sym_alias] = ACTIONS(1512), + [anon_sym_let] = ACTIONS(1512), + [anon_sym_let_DASHenv] = ACTIONS(1512), + [anon_sym_mut] = ACTIONS(1512), + [anon_sym_const] = ACTIONS(1512), + [aux_sym_cmd_identifier_token1] = ACTIONS(1512), + [aux_sym_cmd_identifier_token2] = ACTIONS(1512), + [aux_sym_cmd_identifier_token3] = ACTIONS(1512), + [aux_sym_cmd_identifier_token4] = ACTIONS(1512), + [aux_sym_cmd_identifier_token5] = ACTIONS(1512), + [aux_sym_cmd_identifier_token6] = ACTIONS(1512), + [aux_sym_cmd_identifier_token7] = ACTIONS(1512), + [aux_sym_cmd_identifier_token8] = ACTIONS(1512), + [aux_sym_cmd_identifier_token9] = ACTIONS(1512), + [aux_sym_cmd_identifier_token10] = ACTIONS(1512), + [aux_sym_cmd_identifier_token11] = ACTIONS(1512), + [aux_sym_cmd_identifier_token12] = ACTIONS(1512), + [aux_sym_cmd_identifier_token13] = ACTIONS(1512), + [aux_sym_cmd_identifier_token14] = ACTIONS(1512), + [aux_sym_cmd_identifier_token15] = ACTIONS(1512), + [aux_sym_cmd_identifier_token16] = ACTIONS(1512), + [aux_sym_cmd_identifier_token17] = ACTIONS(1512), + [aux_sym_cmd_identifier_token18] = ACTIONS(1512), + [aux_sym_cmd_identifier_token19] = ACTIONS(1512), + [aux_sym_cmd_identifier_token20] = ACTIONS(1512), + [aux_sym_cmd_identifier_token21] = ACTIONS(1512), + [aux_sym_cmd_identifier_token22] = ACTIONS(1512), + [aux_sym_cmd_identifier_token23] = ACTIONS(1512), + [aux_sym_cmd_identifier_token24] = ACTIONS(1512), + [aux_sym_cmd_identifier_token25] = ACTIONS(1512), + [aux_sym_cmd_identifier_token26] = ACTIONS(1512), + [aux_sym_cmd_identifier_token27] = ACTIONS(1512), + [aux_sym_cmd_identifier_token28] = ACTIONS(1512), + [aux_sym_cmd_identifier_token29] = ACTIONS(1512), + [aux_sym_cmd_identifier_token30] = ACTIONS(1512), + [aux_sym_cmd_identifier_token31] = ACTIONS(1512), + [aux_sym_cmd_identifier_token32] = ACTIONS(1512), + [aux_sym_cmd_identifier_token33] = ACTIONS(1512), + [aux_sym_cmd_identifier_token34] = ACTIONS(1512), + [aux_sym_cmd_identifier_token35] = ACTIONS(1512), + [aux_sym_cmd_identifier_token36] = ACTIONS(1512), + [aux_sym_cmd_identifier_token37] = ACTIONS(1512), + [aux_sym_cmd_identifier_token38] = ACTIONS(1512), + [aux_sym_cmd_identifier_token39] = ACTIONS(1512), + [aux_sym_cmd_identifier_token40] = ACTIONS(1512), + [anon_sym_def] = ACTIONS(1512), + [anon_sym_export_DASHenv] = ACTIONS(1512), + [anon_sym_extern] = ACTIONS(1512), + [anon_sym_module] = ACTIONS(1512), + [anon_sym_use] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_COMMA] = ACTIONS(1512), + [anon_sym_DOLLAR] = ACTIONS(1512), + [anon_sym_error] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_break] = ACTIONS(1512), + [anon_sym_continue] = ACTIONS(1512), + [anon_sym_for] = ACTIONS(1512), + [anon_sym_in2] = ACTIONS(1512), + [anon_sym_loop] = ACTIONS(1512), + [anon_sym_make] = ACTIONS(1512), + [anon_sym_while] = ACTIONS(1512), + [anon_sym_do] = ACTIONS(1512), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_else] = ACTIONS(1512), + [anon_sym_match] = ACTIONS(1512), + [anon_sym_RBRACE] = ACTIONS(1512), + [anon_sym_try] = ACTIONS(1512), + [anon_sym_catch] = ACTIONS(1512), + [anon_sym_return] = ACTIONS(1512), + [anon_sym_source] = ACTIONS(1512), + [anon_sym_source_DASHenv] = ACTIONS(1512), + [anon_sym_hide] = ACTIONS(1512), + [anon_sym_hide_DASHenv] = ACTIONS(1512), + [anon_sym_overlay] = ACTIONS(1512), + [anon_sym_as] = ACTIONS(1512), + [anon_sym_LPAREN2] = ACTIONS(1514), + [anon_sym_PLUS2] = ACTIONS(1512), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT] = ACTIONS(1516), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [aux_sym__immediate_decimal_token2] = ACTIONS(1518), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1512), + [aux_sym__val_number_decimal_token1] = ACTIONS(1512), + [aux_sym__val_number_decimal_token2] = ACTIONS(1512), + [aux_sym__val_number_decimal_token3] = ACTIONS(1512), + [aux_sym__val_number_decimal_token4] = ACTIONS(1512), + [aux_sym__val_number_token1] = ACTIONS(1512), + [aux_sym__val_number_token2] = ACTIONS(1512), + [aux_sym__val_number_token3] = ACTIONS(1512), + [aux_sym__val_number_token4] = ACTIONS(1512), + [aux_sym__val_number_token5] = ACTIONS(1512), + [aux_sym__val_number_token6] = ACTIONS(1512), + [sym_filesize_unit] = ACTIONS(1512), + [sym_duration_unit] = ACTIONS(1512), + [anon_sym_DQUOTE] = ACTIONS(1512), + [sym__str_single_quotes] = ACTIONS(1512), + [sym__str_back_ticks] = ACTIONS(1512), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1512), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1512), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1512), + [sym__entry_separator] = ACTIONS(1514), + [anon_sym_register] = ACTIONS(1512), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1514), }, [267] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_block] = STATE(5055), - [sym__expression_parenthesized] = STATE(5055), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1210), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5055), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5011), + [sym_block] = STATE(5012), + [sym__expression_parenthesized] = STATE(5012), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1177), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5012), [sym_comment] = STATE(267), - [aux_sym_shebang_repeat1] = STATE(1146), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1585), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(1179), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1471), + [aux_sym__val_number_decimal_token2] = ACTIONS(1473), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1477), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [268] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_block] = STATE(5055), - [sym__expression_parenthesized] = STATE(5055), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1210), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5055), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5119), + [sym_block] = STATE(5120), + [sym__expression_parenthesized] = STATE(5120), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1203), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5120), [sym_comment] = STATE(268), [aux_sym_shebang_repeat1] = STATE(272), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1585), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1481), + [aux_sym__val_number_decimal_token2] = ACTIONS(1483), + [aux_sym__val_number_decimal_token3] = ACTIONS(1485), + [aux_sym__val_number_decimal_token4] = ACTIONS(1487), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [269] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5056), - [sym_block] = STATE(5059), - [sym__expression_parenthesized] = STATE(5059), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1210), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5059), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5011), + [sym_block] = STATE(5012), + [sym__expression_parenthesized] = STATE(5012), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1177), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5012), [sym_comment] = STATE(269), - [aux_sym_shebang_repeat1] = STATE(1146), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1585), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(276), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1471), + [aux_sym__val_number_decimal_token2] = ACTIONS(1473), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1477), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [270] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5056), - [sym_block] = STATE(5059), - [sym__expression_parenthesized] = STATE(5059), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1210), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5059), [sym_comment] = STATE(270), - [aux_sym_shebang_repeat1] = STATE(273), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1585), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym__block_body_repeat1] = STATE(253), + [anon_sym_export] = ACTIONS(1489), + [anon_sym_alias] = ACTIONS(1489), + [anon_sym_let] = ACTIONS(1489), + [anon_sym_let_DASHenv] = ACTIONS(1489), + [anon_sym_mut] = ACTIONS(1489), + [anon_sym_const] = ACTIONS(1489), + [aux_sym_cmd_identifier_token1] = ACTIONS(1489), + [aux_sym_cmd_identifier_token2] = ACTIONS(1491), + [aux_sym_cmd_identifier_token3] = ACTIONS(1491), + [aux_sym_cmd_identifier_token4] = ACTIONS(1491), + [aux_sym_cmd_identifier_token5] = ACTIONS(1491), + [aux_sym_cmd_identifier_token6] = ACTIONS(1491), + [aux_sym_cmd_identifier_token7] = ACTIONS(1491), + [aux_sym_cmd_identifier_token8] = ACTIONS(1489), + [aux_sym_cmd_identifier_token9] = ACTIONS(1489), + [aux_sym_cmd_identifier_token10] = ACTIONS(1491), + [aux_sym_cmd_identifier_token11] = ACTIONS(1491), + [aux_sym_cmd_identifier_token12] = ACTIONS(1489), + [aux_sym_cmd_identifier_token13] = ACTIONS(1489), + [aux_sym_cmd_identifier_token14] = ACTIONS(1489), + [aux_sym_cmd_identifier_token15] = ACTIONS(1489), + [aux_sym_cmd_identifier_token16] = ACTIONS(1491), + [aux_sym_cmd_identifier_token17] = ACTIONS(1491), + [aux_sym_cmd_identifier_token18] = ACTIONS(1489), + [aux_sym_cmd_identifier_token19] = ACTIONS(1491), + [aux_sym_cmd_identifier_token20] = ACTIONS(1491), + [aux_sym_cmd_identifier_token21] = ACTIONS(1491), + [aux_sym_cmd_identifier_token22] = ACTIONS(1491), + [aux_sym_cmd_identifier_token23] = ACTIONS(1491), + [aux_sym_cmd_identifier_token24] = ACTIONS(1491), + [aux_sym_cmd_identifier_token25] = ACTIONS(1491), + [aux_sym_cmd_identifier_token26] = ACTIONS(1491), + [aux_sym_cmd_identifier_token27] = ACTIONS(1491), + [aux_sym_cmd_identifier_token28] = ACTIONS(1491), + [aux_sym_cmd_identifier_token29] = ACTIONS(1491), + [aux_sym_cmd_identifier_token30] = ACTIONS(1491), + [aux_sym_cmd_identifier_token31] = ACTIONS(1491), + [aux_sym_cmd_identifier_token32] = ACTIONS(1489), + [aux_sym_cmd_identifier_token33] = ACTIONS(1491), + [aux_sym_cmd_identifier_token34] = ACTIONS(1489), + [aux_sym_cmd_identifier_token35] = ACTIONS(1491), + [aux_sym_cmd_identifier_token36] = ACTIONS(1491), + [aux_sym_cmd_identifier_token37] = ACTIONS(1491), + [aux_sym_cmd_identifier_token38] = ACTIONS(1489), + [aux_sym_cmd_identifier_token39] = ACTIONS(1491), + [aux_sym_cmd_identifier_token40] = ACTIONS(1491), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(1489), + [anon_sym_export_DASHenv] = ACTIONS(1489), + [anon_sym_extern] = ACTIONS(1489), + [anon_sym_module] = ACTIONS(1489), + [anon_sym_use] = ACTIONS(1489), + [anon_sym_LBRACK] = ACTIONS(1491), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_RPAREN] = ACTIONS(1520), + [anon_sym_DOLLAR] = ACTIONS(1489), + [anon_sym_error] = ACTIONS(1489), + [anon_sym_DASH2] = ACTIONS(1489), + [anon_sym_break] = ACTIONS(1489), + [anon_sym_continue] = ACTIONS(1489), + [anon_sym_for] = ACTIONS(1489), + [anon_sym_loop] = ACTIONS(1489), + [anon_sym_while] = ACTIONS(1489), + [anon_sym_do] = ACTIONS(1489), + [anon_sym_if] = ACTIONS(1489), + [anon_sym_match] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1491), + [anon_sym_RBRACE] = ACTIONS(1520), + [anon_sym_DOT_DOT] = ACTIONS(1489), + [anon_sym_try] = ACTIONS(1489), + [anon_sym_return] = ACTIONS(1489), + [anon_sym_source] = ACTIONS(1489), + [anon_sym_source_DASHenv] = ACTIONS(1489), + [anon_sym_hide] = ACTIONS(1489), + [anon_sym_hide_DASHenv] = ACTIONS(1489), + [anon_sym_overlay] = ACTIONS(1489), + [anon_sym_where] = ACTIONS(1491), + [aux_sym_expr_unary_token1] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1491), + [anon_sym_DOT_DOT_LT] = ACTIONS(1491), + [anon_sym_null] = ACTIONS(1489), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [aux_sym__val_number_decimal_token1] = ACTIONS(1489), + [aux_sym__val_number_decimal_token2] = ACTIONS(1491), + [aux_sym__val_number_decimal_token3] = ACTIONS(1491), + [aux_sym__val_number_decimal_token4] = ACTIONS(1491), + [aux_sym__val_number_token1] = ACTIONS(1491), + [aux_sym__val_number_token2] = ACTIONS(1491), + [aux_sym__val_number_token3] = ACTIONS(1491), + [aux_sym__val_number_token4] = ACTIONS(1489), + [aux_sym__val_number_token5] = ACTIONS(1489), + [aux_sym__val_number_token6] = ACTIONS(1489), + [anon_sym_0b] = ACTIONS(1489), + [anon_sym_0o] = ACTIONS(1489), + [anon_sym_0x] = ACTIONS(1489), + [sym_val_date] = ACTIONS(1491), + [anon_sym_DQUOTE] = ACTIONS(1491), + [sym__str_single_quotes] = ACTIONS(1491), + [sym__str_back_ticks] = ACTIONS(1491), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1491), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1491), + [aux_sym_env_var_token1] = ACTIONS(1489), + [anon_sym_CARET] = ACTIONS(1491), + [aux_sym_command_token1] = ACTIONS(1491), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1491), }, [271] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5122), - [sym_block] = STATE(5125), - [sym__expression_parenthesized] = STATE(5125), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1210), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5125), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5013), + [sym_block] = STATE(5014), + [sym__expression_parenthesized] = STATE(5014), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1177), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5014), [sym_comment] = STATE(271), - [aux_sym_shebang_repeat1] = STATE(1146), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1585), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(212), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1471), + [aux_sym__val_number_decimal_token2] = ACTIONS(1473), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1477), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [272] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5126), - [sym_block] = STATE(5129), - [sym__expression_parenthesized] = STATE(5129), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1210), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5129), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5011), + [sym_block] = STATE(5012), + [sym__expression_parenthesized] = STATE(5012), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1203), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5012), [sym_comment] = STATE(272), - [aux_sym_shebang_repeat1] = STATE(1146), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1585), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(1179), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1481), + [aux_sym__val_number_decimal_token2] = ACTIONS(1483), + [aux_sym__val_number_decimal_token3] = ACTIONS(1485), + [aux_sym__val_number_decimal_token4] = ACTIONS(1487), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [273] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5131), - [sym_block] = STATE(5136), - [sym__expression_parenthesized] = STATE(5136), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1210), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5136), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5015), + [sym_block] = STATE(5016), + [sym__expression_parenthesized] = STATE(5016), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1177), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5016), [sym_comment] = STATE(273), - [aux_sym_shebang_repeat1] = STATE(1146), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1585), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(214), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1471), + [aux_sym__val_number_decimal_token2] = ACTIONS(1473), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1477), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [274] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5131), - [sym_block] = STATE(5136), - [sym__expression_parenthesized] = STATE(5136), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1210), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5136), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5011), + [sym_block] = STATE(5012), + [sym__expression_parenthesized] = STATE(5012), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1203), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5012), [sym_comment] = STATE(274), - [aux_sym_shebang_repeat1] = STATE(275), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1585), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(278), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1481), + [aux_sym__val_number_decimal_token2] = ACTIONS(1483), + [aux_sym__val_number_decimal_token3] = ACTIONS(1485), + [aux_sym__val_number_decimal_token4] = ACTIONS(1487), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [275] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(4963), - [sym_block] = STATE(4979), - [sym__expression_parenthesized] = STATE(4979), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1210), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(4979), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5013), + [sym_block] = STATE(5014), + [sym__expression_parenthesized] = STATE(5014), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1203), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5014), [sym_comment] = STATE(275), - [aux_sym_shebang_repeat1] = STATE(1146), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1585), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(281), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1481), + [aux_sym__val_number_decimal_token2] = ACTIONS(1483), + [aux_sym__val_number_decimal_token3] = ACTIONS(1485), + [aux_sym__val_number_decimal_token4] = ACTIONS(1487), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [276] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_block] = STATE(5010), - [sym__expression_parenthesized] = STATE(5010), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1190), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5010), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5039), + [sym_block] = STATE(5040), + [sym__expression_parenthesized] = STATE(5040), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1177), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5040), [sym_comment] = STATE(276), - [aux_sym_shebang_repeat1] = STATE(1146), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1577), - [aux_sym__val_number_decimal_token2] = ACTIONS(1579), - [aux_sym__val_number_decimal_token3] = ACTIONS(1581), - [aux_sym__val_number_decimal_token4] = ACTIONS(1583), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(1179), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1471), + [aux_sym__val_number_decimal_token2] = ACTIONS(1473), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1477), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [277] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_block] = STATE(5010), - [sym__expression_parenthesized] = STATE(5010), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1190), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5010), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5015), + [sym_block] = STATE(5016), + [sym__expression_parenthesized] = STATE(5016), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1203), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5016), [sym_comment] = STATE(277), - [aux_sym_shebang_repeat1] = STATE(281), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1577), - [aux_sym__val_number_decimal_token2] = ACTIONS(1579), - [aux_sym__val_number_decimal_token3] = ACTIONS(1581), - [aux_sym__val_number_decimal_token4] = ACTIONS(1583), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(284), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1481), + [aux_sym__val_number_decimal_token2] = ACTIONS(1483), + [aux_sym__val_number_decimal_token3] = ACTIONS(1485), + [aux_sym__val_number_decimal_token4] = ACTIONS(1487), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [278] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5011), - [sym_block] = STATE(5020), - [sym__expression_parenthesized] = STATE(5020), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1190), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5020), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5039), + [sym_block] = STATE(5040), + [sym__expression_parenthesized] = STATE(5040), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1203), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5040), [sym_comment] = STATE(278), - [aux_sym_shebang_repeat1] = STATE(283), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1577), - [aux_sym__val_number_decimal_token2] = ACTIONS(1579), - [aux_sym__val_number_decimal_token3] = ACTIONS(1581), - [aux_sym__val_number_decimal_token4] = ACTIONS(1583), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(1179), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1481), + [aux_sym__val_number_decimal_token2] = ACTIONS(1483), + [aux_sym__val_number_decimal_token3] = ACTIONS(1485), + [aux_sym__val_number_decimal_token4] = ACTIONS(1487), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [279] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5047), - [sym_block] = STATE(5050), - [sym__expression_parenthesized] = STATE(5050), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1190), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5050), + [sym__expr_parenthesized_immediate] = STATE(483), + [sym__immediate_decimal] = STATE(449), + [sym_val_variable] = STATE(483), [sym_comment] = STATE(279), - [aux_sym_shebang_repeat1] = STATE(285), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1577), - [aux_sym__val_number_decimal_token2] = ACTIONS(1579), - [aux_sym__val_number_decimal_token3] = ACTIONS(1581), - [aux_sym__val_number_decimal_token4] = ACTIONS(1583), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_export] = ACTIONS(1522), + [anon_sym_alias] = ACTIONS(1522), + [anon_sym_let] = ACTIONS(1522), + [anon_sym_let_DASHenv] = ACTIONS(1522), + [anon_sym_mut] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1522), + [aux_sym_cmd_identifier_token1] = ACTIONS(1522), + [aux_sym_cmd_identifier_token2] = ACTIONS(1522), + [aux_sym_cmd_identifier_token3] = ACTIONS(1522), + [aux_sym_cmd_identifier_token4] = ACTIONS(1522), + [aux_sym_cmd_identifier_token5] = ACTIONS(1522), + [aux_sym_cmd_identifier_token6] = ACTIONS(1522), + [aux_sym_cmd_identifier_token7] = ACTIONS(1522), + [aux_sym_cmd_identifier_token8] = ACTIONS(1522), + [aux_sym_cmd_identifier_token9] = ACTIONS(1522), + [aux_sym_cmd_identifier_token10] = ACTIONS(1522), + [aux_sym_cmd_identifier_token11] = ACTIONS(1522), + [aux_sym_cmd_identifier_token12] = ACTIONS(1522), + [aux_sym_cmd_identifier_token13] = ACTIONS(1522), + [aux_sym_cmd_identifier_token14] = ACTIONS(1522), + [aux_sym_cmd_identifier_token15] = ACTIONS(1522), + [aux_sym_cmd_identifier_token16] = ACTIONS(1522), + [aux_sym_cmd_identifier_token17] = ACTIONS(1522), + [aux_sym_cmd_identifier_token18] = ACTIONS(1522), + [aux_sym_cmd_identifier_token19] = ACTIONS(1522), + [aux_sym_cmd_identifier_token20] = ACTIONS(1522), + [aux_sym_cmd_identifier_token21] = ACTIONS(1522), + [aux_sym_cmd_identifier_token22] = ACTIONS(1522), + [aux_sym_cmd_identifier_token23] = ACTIONS(1522), + [aux_sym_cmd_identifier_token24] = ACTIONS(1522), + [aux_sym_cmd_identifier_token25] = ACTIONS(1522), + [aux_sym_cmd_identifier_token26] = ACTIONS(1522), + [aux_sym_cmd_identifier_token27] = ACTIONS(1522), + [aux_sym_cmd_identifier_token28] = ACTIONS(1522), + [aux_sym_cmd_identifier_token29] = ACTIONS(1522), + [aux_sym_cmd_identifier_token30] = ACTIONS(1522), + [aux_sym_cmd_identifier_token31] = ACTIONS(1522), + [aux_sym_cmd_identifier_token32] = ACTIONS(1522), + [aux_sym_cmd_identifier_token33] = ACTIONS(1522), + [aux_sym_cmd_identifier_token34] = ACTIONS(1522), + [aux_sym_cmd_identifier_token35] = ACTIONS(1522), + [aux_sym_cmd_identifier_token36] = ACTIONS(1522), + [aux_sym_cmd_identifier_token37] = ACTIONS(1522), + [aux_sym_cmd_identifier_token38] = ACTIONS(1522), + [aux_sym_cmd_identifier_token39] = ACTIONS(1522), + [aux_sym_cmd_identifier_token40] = ACTIONS(1522), + [anon_sym_def] = ACTIONS(1522), + [anon_sym_export_DASHenv] = ACTIONS(1522), + [anon_sym_extern] = ACTIONS(1522), + [anon_sym_module] = ACTIONS(1522), + [anon_sym_use] = ACTIONS(1522), + [anon_sym_LPAREN] = ACTIONS(1522), + [anon_sym_COMMA] = ACTIONS(1522), + [anon_sym_DOLLAR] = ACTIONS(1443), + [anon_sym_error] = ACTIONS(1522), + [anon_sym_DASH2] = ACTIONS(1522), + [anon_sym_break] = ACTIONS(1522), + [anon_sym_continue] = ACTIONS(1522), + [anon_sym_for] = ACTIONS(1522), + [anon_sym_in2] = ACTIONS(1522), + [anon_sym_loop] = ACTIONS(1522), + [anon_sym_make] = ACTIONS(1522), + [anon_sym_while] = ACTIONS(1522), + [anon_sym_do] = ACTIONS(1522), + [anon_sym_if] = ACTIONS(1522), + [anon_sym_else] = ACTIONS(1522), + [anon_sym_match] = ACTIONS(1522), + [anon_sym_RBRACE] = ACTIONS(1522), + [anon_sym_try] = ACTIONS(1522), + [anon_sym_catch] = ACTIONS(1522), + [anon_sym_return] = ACTIONS(1522), + [anon_sym_source] = ACTIONS(1522), + [anon_sym_source_DASHenv] = ACTIONS(1522), + [anon_sym_hide] = ACTIONS(1522), + [anon_sym_hide_DASHenv] = ACTIONS(1522), + [anon_sym_overlay] = ACTIONS(1522), + [anon_sym_as] = ACTIONS(1522), + [anon_sym_LPAREN2] = ACTIONS(1445), + [anon_sym_PLUS2] = ACTIONS(1522), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1522), + [anon_sym_DOT] = ACTIONS(1524), + [aux_sym__immediate_decimal_token1] = ACTIONS(1526), + [aux_sym__immediate_decimal_token3] = ACTIONS(1526), + [aux_sym__immediate_decimal_token4] = ACTIONS(1528), + [aux_sym__immediate_decimal_token5] = ACTIONS(1530), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1522), + [aux_sym__val_number_decimal_token1] = ACTIONS(1522), + [aux_sym__val_number_decimal_token2] = ACTIONS(1522), + [aux_sym__val_number_decimal_token3] = ACTIONS(1522), + [aux_sym__val_number_decimal_token4] = ACTIONS(1522), + [aux_sym__val_number_token1] = ACTIONS(1522), + [aux_sym__val_number_token2] = ACTIONS(1522), + [aux_sym__val_number_token3] = ACTIONS(1522), + [aux_sym__val_number_token4] = ACTIONS(1522), + [aux_sym__val_number_token5] = ACTIONS(1522), + [aux_sym__val_number_token6] = ACTIONS(1522), + [anon_sym_DQUOTE] = ACTIONS(1522), + [sym__str_single_quotes] = ACTIONS(1522), + [sym__str_back_ticks] = ACTIONS(1522), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1522), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1522), + [sym__entry_separator] = ACTIONS(1532), + [anon_sym_register] = ACTIONS(1522), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1532), }, [280] = { + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5039), + [sym_block] = STATE(5040), + [sym__expression_parenthesized] = STATE(5040), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1203), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5040), [sym_comment] = STATE(280), - [aux_sym__block_body_repeat1] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(1483), - [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(1483), - [aux_sym_cmd_identifier_token3] = ACTIONS(1483), - [aux_sym_cmd_identifier_token4] = ACTIONS(1483), - [aux_sym_cmd_identifier_token5] = ACTIONS(1483), - [aux_sym_cmd_identifier_token6] = ACTIONS(1483), - [aux_sym_cmd_identifier_token7] = ACTIONS(1483), - [aux_sym_cmd_identifier_token8] = ACTIONS(1481), - [aux_sym_cmd_identifier_token9] = ACTIONS(1481), - [aux_sym_cmd_identifier_token10] = ACTIONS(1483), - [aux_sym_cmd_identifier_token11] = ACTIONS(1483), - [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(1483), - [aux_sym_cmd_identifier_token17] = ACTIONS(1483), - [aux_sym_cmd_identifier_token18] = ACTIONS(1481), - [aux_sym_cmd_identifier_token19] = ACTIONS(1483), - [aux_sym_cmd_identifier_token20] = ACTIONS(1483), - [aux_sym_cmd_identifier_token21] = ACTIONS(1483), - [aux_sym_cmd_identifier_token22] = ACTIONS(1483), - [aux_sym_cmd_identifier_token23] = ACTIONS(1483), - [aux_sym_cmd_identifier_token24] = ACTIONS(1483), - [aux_sym_cmd_identifier_token25] = ACTIONS(1483), - [aux_sym_cmd_identifier_token26] = ACTIONS(1483), - [aux_sym_cmd_identifier_token27] = ACTIONS(1483), - [aux_sym_cmd_identifier_token28] = ACTIONS(1483), - [aux_sym_cmd_identifier_token29] = ACTIONS(1483), - [aux_sym_cmd_identifier_token30] = ACTIONS(1483), - [aux_sym_cmd_identifier_token31] = ACTIONS(1483), - [aux_sym_cmd_identifier_token32] = ACTIONS(1481), - [aux_sym_cmd_identifier_token33] = ACTIONS(1483), - [aux_sym_cmd_identifier_token34] = ACTIONS(1481), - [aux_sym_cmd_identifier_token35] = ACTIONS(1483), - [aux_sym_cmd_identifier_token36] = ACTIONS(1483), - [aux_sym_cmd_identifier_token37] = ACTIONS(1483), - [aux_sym_cmd_identifier_token38] = ACTIONS(1481), - [aux_sym_cmd_identifier_token39] = ACTIONS(1483), - [aux_sym_cmd_identifier_token40] = ACTIONS(1483), - [sym__newline] = ACTIONS(1593), - [anon_sym_SEMI] = ACTIONS(1593), - [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_LBRACK] = ACTIONS(1483), - [anon_sym_LPAREN] = ACTIONS(1483), - [anon_sym_DOLLAR] = ACTIONS(1481), - [anon_sym_error] = ACTIONS(1481), - [anon_sym_DASH2] = ACTIONS(1481), - [anon_sym_break] = ACTIONS(1481), - [anon_sym_continue] = ACTIONS(1481), - [anon_sym_for] = ACTIONS(1481), - [anon_sym_loop] = ACTIONS(1481), - [anon_sym_while] = ACTIONS(1481), - [anon_sym_do] = ACTIONS(1481), - [anon_sym_if] = ACTIONS(1481), - [anon_sym_match] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1483), - [anon_sym_DOT_DOT] = ACTIONS(1481), - [anon_sym_try] = 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_where] = ACTIONS(1483), - [aux_sym_expr_unary_token1] = ACTIONS(1483), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1483), - [anon_sym_DOT_DOT_LT] = ACTIONS(1483), - [anon_sym_null] = ACTIONS(1481), - [anon_sym_true] = ACTIONS(1481), - [anon_sym_false] = ACTIONS(1481), + [aux_sym_shebang_repeat1] = STATE(289), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), [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), - [aux_sym__val_number_token4] = ACTIONS(1481), - [aux_sym__val_number_token5] = ACTIONS(1481), - [aux_sym__val_number_token6] = ACTIONS(1481), - [anon_sym_0b] = ACTIONS(1481), - [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), - [aux_sym_env_var_token1] = ACTIONS(1481), - [anon_sym_CARET] = ACTIONS(1483), - [aux_sym_command_token1] = ACTIONS(1483), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1483), + [aux_sym__val_number_decimal_token3] = ACTIONS(1485), + [aux_sym__val_number_decimal_token4] = ACTIONS(1487), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [281] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5068), - [sym_block] = STATE(5079), - [sym__expression_parenthesized] = STATE(5079), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1190), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5079), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5041), + [sym_block] = STATE(5042), + [sym__expression_parenthesized] = STATE(5042), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1203), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5042), [sym_comment] = STATE(281), - [aux_sym_shebang_repeat1] = STATE(1146), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1577), - [aux_sym__val_number_decimal_token2] = ACTIONS(1579), - [aux_sym__val_number_decimal_token3] = ACTIONS(1581), - [aux_sym__val_number_decimal_token4] = ACTIONS(1583), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(1179), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1481), + [aux_sym__val_number_decimal_token2] = ACTIONS(1483), + [aux_sym__val_number_decimal_token3] = ACTIONS(1485), + [aux_sym__val_number_decimal_token4] = ACTIONS(1487), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [282] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5068), - [sym_block] = STATE(5079), - [sym__expression_parenthesized] = STATE(5079), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1190), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5079), + [sym__expr_parenthesized_immediate] = STATE(547), + [sym__immediate_decimal] = STATE(420), + [sym_val_variable] = STATE(547), [sym_comment] = STATE(282), - [aux_sym_shebang_repeat1] = STATE(288), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1577), - [aux_sym__val_number_decimal_token2] = ACTIONS(1579), - [aux_sym__val_number_decimal_token3] = ACTIONS(1581), - [aux_sym__val_number_decimal_token4] = ACTIONS(1583), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_alias] = ACTIONS(1441), + [anon_sym_let] = ACTIONS(1441), + [anon_sym_let_DASHenv] = ACTIONS(1441), + [anon_sym_mut] = ACTIONS(1441), + [anon_sym_const] = ACTIONS(1441), + [aux_sym_cmd_identifier_token1] = ACTIONS(1441), + [aux_sym_cmd_identifier_token2] = ACTIONS(1455), + [aux_sym_cmd_identifier_token3] = ACTIONS(1455), + [aux_sym_cmd_identifier_token4] = ACTIONS(1455), + [aux_sym_cmd_identifier_token5] = ACTIONS(1455), + [aux_sym_cmd_identifier_token6] = ACTIONS(1455), + [aux_sym_cmd_identifier_token7] = ACTIONS(1455), + [aux_sym_cmd_identifier_token8] = ACTIONS(1441), + [aux_sym_cmd_identifier_token9] = ACTIONS(1441), + [aux_sym_cmd_identifier_token10] = ACTIONS(1455), + [aux_sym_cmd_identifier_token11] = ACTIONS(1455), + [aux_sym_cmd_identifier_token12] = ACTIONS(1441), + [aux_sym_cmd_identifier_token13] = ACTIONS(1441), + [aux_sym_cmd_identifier_token14] = ACTIONS(1441), + [aux_sym_cmd_identifier_token15] = ACTIONS(1441), + [aux_sym_cmd_identifier_token16] = ACTIONS(1455), + [aux_sym_cmd_identifier_token17] = ACTIONS(1455), + [aux_sym_cmd_identifier_token18] = ACTIONS(1455), + [aux_sym_cmd_identifier_token19] = ACTIONS(1455), + [aux_sym_cmd_identifier_token20] = ACTIONS(1455), + [aux_sym_cmd_identifier_token21] = ACTIONS(1455), + [aux_sym_cmd_identifier_token22] = ACTIONS(1455), + [aux_sym_cmd_identifier_token23] = ACTIONS(1455), + [aux_sym_cmd_identifier_token24] = ACTIONS(1455), + [aux_sym_cmd_identifier_token25] = ACTIONS(1455), + [aux_sym_cmd_identifier_token26] = ACTIONS(1455), + [aux_sym_cmd_identifier_token27] = ACTIONS(1455), + [aux_sym_cmd_identifier_token28] = ACTIONS(1455), + [aux_sym_cmd_identifier_token29] = ACTIONS(1455), + [aux_sym_cmd_identifier_token30] = ACTIONS(1455), + [aux_sym_cmd_identifier_token31] = ACTIONS(1455), + [aux_sym_cmd_identifier_token32] = ACTIONS(1455), + [aux_sym_cmd_identifier_token33] = ACTIONS(1455), + [aux_sym_cmd_identifier_token34] = ACTIONS(1441), + [aux_sym_cmd_identifier_token35] = ACTIONS(1455), + [aux_sym_cmd_identifier_token36] = ACTIONS(1455), + [aux_sym_cmd_identifier_token37] = ACTIONS(1455), + [aux_sym_cmd_identifier_token38] = ACTIONS(1441), + [aux_sym_cmd_identifier_token39] = ACTIONS(1455), + [aux_sym_cmd_identifier_token40] = ACTIONS(1455), + [anon_sym_def] = ACTIONS(1441), + [anon_sym_export_DASHenv] = ACTIONS(1441), + [anon_sym_extern] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_use] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1441), + [anon_sym_COMMA] = ACTIONS(1455), + [anon_sym_DOLLAR] = ACTIONS(1534), + [anon_sym_error] = ACTIONS(1441), + [anon_sym_DASH2] = ACTIONS(1441), + [anon_sym_break] = ACTIONS(1441), + [anon_sym_continue] = ACTIONS(1441), + [anon_sym_for] = ACTIONS(1441), + [anon_sym_in2] = ACTIONS(1441), + [anon_sym_loop] = ACTIONS(1441), + [anon_sym_make] = ACTIONS(1441), + [anon_sym_while] = ACTIONS(1441), + [anon_sym_do] = ACTIONS(1441), + [anon_sym_if] = ACTIONS(1441), + [anon_sym_else] = ACTIONS(1441), + [anon_sym_match] = ACTIONS(1441), + [anon_sym_RBRACE] = ACTIONS(1455), + [anon_sym_try] = ACTIONS(1441), + [anon_sym_catch] = ACTIONS(1441), + [anon_sym_return] = ACTIONS(1441), + [anon_sym_source] = ACTIONS(1441), + [anon_sym_source_DASHenv] = ACTIONS(1441), + [anon_sym_hide] = ACTIONS(1441), + [anon_sym_hide_DASHenv] = ACTIONS(1441), + [anon_sym_overlay] = ACTIONS(1441), + [anon_sym_as] = ACTIONS(1441), + [anon_sym_LPAREN2] = ACTIONS(1536), + [anon_sym_PLUS2] = ACTIONS(1441), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1455), + [anon_sym_DOT] = ACTIONS(1538), + [aux_sym__immediate_decimal_token1] = ACTIONS(1540), + [aux_sym__immediate_decimal_token3] = ACTIONS(1542), + [aux_sym__immediate_decimal_token4] = ACTIONS(1544), + [aux_sym__immediate_decimal_token5] = ACTIONS(1546), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1455), + [aux_sym__val_number_decimal_token1] = ACTIONS(1441), + [aux_sym__val_number_decimal_token2] = ACTIONS(1441), + [aux_sym__val_number_decimal_token3] = ACTIONS(1441), + [aux_sym__val_number_decimal_token4] = ACTIONS(1441), + [aux_sym__val_number_token1] = ACTIONS(1455), + [aux_sym__val_number_token2] = ACTIONS(1455), + [aux_sym__val_number_token3] = ACTIONS(1455), + [aux_sym__val_number_token4] = ACTIONS(1441), + [aux_sym__val_number_token5] = ACTIONS(1441), + [aux_sym__val_number_token6] = ACTIONS(1441), + [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1455), + [anon_sym_register] = ACTIONS(1441), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1457), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1455), }, [283] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5080), - [sym_block] = STATE(5111), - [sym__expression_parenthesized] = STATE(5111), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1190), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5111), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5041), + [sym_block] = STATE(5042), + [sym__expression_parenthesized] = STATE(5042), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1203), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5042), [sym_comment] = STATE(283), - [aux_sym_shebang_repeat1] = STATE(1146), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1577), - [aux_sym__val_number_decimal_token2] = ACTIONS(1579), - [aux_sym__val_number_decimal_token3] = ACTIONS(1581), - [aux_sym__val_number_decimal_token4] = ACTIONS(1583), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(290), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1481), + [aux_sym__val_number_decimal_token2] = ACTIONS(1483), + [aux_sym__val_number_decimal_token3] = ACTIONS(1485), + [aux_sym__val_number_decimal_token4] = ACTIONS(1487), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [284] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5080), - [sym_block] = STATE(5111), - [sym__expression_parenthesized] = STATE(5111), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1190), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5111), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5043), + [sym_block] = STATE(5044), + [sym__expression_parenthesized] = STATE(5044), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1203), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5044), [sym_comment] = STATE(284), - [aux_sym_shebang_repeat1] = STATE(289), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1577), - [aux_sym__val_number_decimal_token2] = ACTIONS(1579), - [aux_sym__val_number_decimal_token3] = ACTIONS(1581), - [aux_sym__val_number_decimal_token4] = ACTIONS(1583), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(1179), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1481), + [aux_sym__val_number_decimal_token2] = ACTIONS(1483), + [aux_sym__val_number_decimal_token3] = ACTIONS(1485), + [aux_sym__val_number_decimal_token4] = ACTIONS(1487), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [285] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(4964), - [sym_block] = STATE(4965), - [sym__expression_parenthesized] = STATE(4965), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1190), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(4965), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5039), + [sym_block] = STATE(5040), + [sym__expression_parenthesized] = STATE(5040), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1177), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5040), [sym_comment] = STATE(285), - [aux_sym_shebang_repeat1] = STATE(1146), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1577), - [aux_sym__val_number_decimal_token2] = ACTIONS(1579), - [aux_sym__val_number_decimal_token3] = ACTIONS(1581), - [aux_sym__val_number_decimal_token4] = ACTIONS(1583), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(218), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1471), + [aux_sym__val_number_decimal_token2] = ACTIONS(1473), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1477), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [286] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(4964), - [sym_block] = STATE(4965), - [sym__expression_parenthesized] = STATE(4965), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1190), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(4965), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5043), + [sym_block] = STATE(5044), + [sym__expression_parenthesized] = STATE(5044), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1203), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5044), [sym_comment] = STATE(286), - [aux_sym_shebang_repeat1] = STATE(291), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1577), - [aux_sym__val_number_decimal_token2] = ACTIONS(1579), - [aux_sym__val_number_decimal_token3] = ACTIONS(1581), - [aux_sym__val_number_decimal_token4] = ACTIONS(1583), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(255), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1481), + [aux_sym__val_number_decimal_token2] = ACTIONS(1483), + [aux_sym__val_number_decimal_token3] = ACTIONS(1485), + [aux_sym__val_number_decimal_token4] = ACTIONS(1487), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [287] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(4982), - [sym_block] = STATE(4985), - [sym__expression_parenthesized] = STATE(4985), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1190), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(4985), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5045), + [sym_block] = STATE(5047), + [sym__expression_parenthesized] = STATE(5047), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1203), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5047), [sym_comment] = STATE(287), - [aux_sym_shebang_repeat1] = STATE(293), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1577), - [aux_sym__val_number_decimal_token2] = ACTIONS(1579), - [aux_sym__val_number_decimal_token3] = ACTIONS(1581), - [aux_sym__val_number_decimal_token4] = ACTIONS(1583), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(257), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1481), + [aux_sym__val_number_decimal_token2] = ACTIONS(1483), + [aux_sym__val_number_decimal_token3] = ACTIONS(1485), + [aux_sym__val_number_decimal_token4] = ACTIONS(1487), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [288] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5012), - [sym_block] = STATE(5018), - [sym__expression_parenthesized] = STATE(5018), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1190), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5018), + [sym__expr_parenthesized_immediate] = STATE(608), + [sym__immediate_decimal] = STATE(537), + [sym_val_variable] = STATE(608), [sym_comment] = STATE(288), - [aux_sym_shebang_repeat1] = STATE(1146), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1577), - [aux_sym__val_number_decimal_token2] = ACTIONS(1579), - [aux_sym__val_number_decimal_token3] = ACTIONS(1581), - [aux_sym__val_number_decimal_token4] = ACTIONS(1583), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_alias] = ACTIONS(1441), + [anon_sym_let] = ACTIONS(1441), + [anon_sym_let_DASHenv] = ACTIONS(1441), + [anon_sym_mut] = ACTIONS(1441), + [anon_sym_const] = ACTIONS(1441), + [aux_sym_cmd_identifier_token1] = ACTIONS(1441), + [aux_sym_cmd_identifier_token2] = ACTIONS(1441), + [aux_sym_cmd_identifier_token3] = ACTIONS(1441), + [aux_sym_cmd_identifier_token4] = ACTIONS(1441), + [aux_sym_cmd_identifier_token5] = ACTIONS(1441), + [aux_sym_cmd_identifier_token6] = ACTIONS(1441), + [aux_sym_cmd_identifier_token7] = ACTIONS(1441), + [aux_sym_cmd_identifier_token8] = ACTIONS(1441), + [aux_sym_cmd_identifier_token9] = ACTIONS(1441), + [aux_sym_cmd_identifier_token10] = ACTIONS(1441), + [aux_sym_cmd_identifier_token11] = ACTIONS(1441), + [aux_sym_cmd_identifier_token12] = ACTIONS(1441), + [aux_sym_cmd_identifier_token13] = ACTIONS(1441), + [aux_sym_cmd_identifier_token14] = ACTIONS(1441), + [aux_sym_cmd_identifier_token15] = ACTIONS(1441), + [aux_sym_cmd_identifier_token16] = ACTIONS(1441), + [aux_sym_cmd_identifier_token17] = ACTIONS(1441), + [aux_sym_cmd_identifier_token18] = ACTIONS(1441), + [aux_sym_cmd_identifier_token19] = ACTIONS(1441), + [aux_sym_cmd_identifier_token20] = ACTIONS(1441), + [aux_sym_cmd_identifier_token21] = ACTIONS(1441), + [aux_sym_cmd_identifier_token22] = ACTIONS(1441), + [aux_sym_cmd_identifier_token23] = ACTIONS(1441), + [aux_sym_cmd_identifier_token24] = ACTIONS(1441), + [aux_sym_cmd_identifier_token25] = ACTIONS(1441), + [aux_sym_cmd_identifier_token26] = ACTIONS(1441), + [aux_sym_cmd_identifier_token27] = ACTIONS(1441), + [aux_sym_cmd_identifier_token28] = ACTIONS(1441), + [aux_sym_cmd_identifier_token29] = ACTIONS(1441), + [aux_sym_cmd_identifier_token30] = ACTIONS(1441), + [aux_sym_cmd_identifier_token31] = ACTIONS(1441), + [aux_sym_cmd_identifier_token32] = ACTIONS(1441), + [aux_sym_cmd_identifier_token33] = ACTIONS(1441), + [aux_sym_cmd_identifier_token34] = ACTIONS(1441), + [aux_sym_cmd_identifier_token35] = ACTIONS(1441), + [aux_sym_cmd_identifier_token36] = ACTIONS(1441), + [aux_sym_cmd_identifier_token37] = ACTIONS(1441), + [aux_sym_cmd_identifier_token38] = ACTIONS(1441), + [aux_sym_cmd_identifier_token39] = ACTIONS(1441), + [aux_sym_cmd_identifier_token40] = ACTIONS(1441), + [anon_sym_def] = ACTIONS(1441), + [anon_sym_export_DASHenv] = ACTIONS(1441), + [anon_sym_extern] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_use] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1441), + [anon_sym_COMMA] = ACTIONS(1441), + [anon_sym_DOLLAR] = ACTIONS(1548), + [anon_sym_error] = ACTIONS(1441), + [anon_sym_DASH2] = ACTIONS(1441), + [anon_sym_break] = ACTIONS(1441), + [anon_sym_continue] = ACTIONS(1441), + [anon_sym_for] = ACTIONS(1441), + [anon_sym_in2] = ACTIONS(1441), + [anon_sym_loop] = ACTIONS(1441), + [anon_sym_make] = ACTIONS(1441), + [anon_sym_while] = ACTIONS(1441), + [anon_sym_do] = ACTIONS(1441), + [anon_sym_if] = ACTIONS(1441), + [anon_sym_else] = ACTIONS(1441), + [anon_sym_match] = ACTIONS(1441), + [anon_sym_RBRACE] = ACTIONS(1441), + [anon_sym_try] = ACTIONS(1441), + [anon_sym_catch] = ACTIONS(1441), + [anon_sym_return] = ACTIONS(1441), + [anon_sym_source] = ACTIONS(1441), + [anon_sym_source_DASHenv] = ACTIONS(1441), + [anon_sym_hide] = ACTIONS(1441), + [anon_sym_hide_DASHenv] = ACTIONS(1441), + [anon_sym_overlay] = ACTIONS(1441), + [anon_sym_as] = ACTIONS(1441), + [anon_sym_LPAREN2] = ACTIONS(1550), + [anon_sym_PLUS2] = ACTIONS(1441), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1441), + [aux_sym__immediate_decimal_token1] = ACTIONS(1552), + [aux_sym__immediate_decimal_token3] = ACTIONS(1552), + [aux_sym__immediate_decimal_token4] = ACTIONS(1554), + [aux_sym__immediate_decimal_token5] = ACTIONS(1556), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1441), + [aux_sym__val_number_decimal_token1] = ACTIONS(1441), + [aux_sym__val_number_decimal_token2] = ACTIONS(1441), + [aux_sym__val_number_decimal_token3] = ACTIONS(1441), + [aux_sym__val_number_decimal_token4] = ACTIONS(1441), + [aux_sym__val_number_token1] = ACTIONS(1441), + [aux_sym__val_number_token2] = ACTIONS(1441), + [aux_sym__val_number_token3] = ACTIONS(1441), + [aux_sym__val_number_token4] = ACTIONS(1441), + [aux_sym__val_number_token5] = ACTIONS(1441), + [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(1441), + [sym__entry_separator] = ACTIONS(1455), + [anon_sym_register] = ACTIONS(1441), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1457), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1455), }, [289] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5031), - [sym_block] = STATE(5033), - [sym__expression_parenthesized] = STATE(5033), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1190), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5033), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5136), + [sym_block] = STATE(5056), + [sym__expression_parenthesized] = STATE(5056), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1203), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5056), [sym_comment] = STATE(289), - [aux_sym_shebang_repeat1] = STATE(1146), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1577), - [aux_sym__val_number_decimal_token2] = ACTIONS(1579), - [aux_sym__val_number_decimal_token3] = ACTIONS(1581), - [aux_sym__val_number_decimal_token4] = ACTIONS(1583), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(1179), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1481), + [aux_sym__val_number_decimal_token2] = ACTIONS(1483), + [aux_sym__val_number_decimal_token3] = ACTIONS(1485), + [aux_sym__val_number_decimal_token4] = ACTIONS(1487), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [290] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5031), - [sym_block] = STATE(5033), - [sym__expression_parenthesized] = STATE(5033), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1190), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5033), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5057), + [sym_block] = STATE(5058), + [sym__expression_parenthesized] = STATE(5058), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1203), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5058), [sym_comment] = STATE(290), - [aux_sym_shebang_repeat1] = STATE(295), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1577), - [aux_sym__val_number_decimal_token2] = ACTIONS(1579), - [aux_sym__val_number_decimal_token3] = ACTIONS(1581), - [aux_sym__val_number_decimal_token4] = ACTIONS(1583), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(1179), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1481), + [aux_sym__val_number_decimal_token2] = ACTIONS(1483), + [aux_sym__val_number_decimal_token3] = ACTIONS(1485), + [aux_sym__val_number_decimal_token4] = ACTIONS(1487), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [291] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_block] = STATE(5055), - [sym__expression_parenthesized] = STATE(5055), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1190), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5055), + [sym__expr_parenthesized_immediate] = STATE(669), + [sym__immediate_decimal] = STATE(544), + [sym_val_variable] = STATE(669), [sym_comment] = STATE(291), - [aux_sym_shebang_repeat1] = STATE(1146), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1577), - [aux_sym__val_number_decimal_token2] = ACTIONS(1579), - [aux_sym__val_number_decimal_token3] = ACTIONS(1581), - [aux_sym__val_number_decimal_token4] = ACTIONS(1583), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_export] = ACTIONS(1558), + [anon_sym_alias] = ACTIONS(1558), + [anon_sym_let] = ACTIONS(1558), + [anon_sym_let_DASHenv] = ACTIONS(1558), + [anon_sym_mut] = ACTIONS(1558), + [anon_sym_const] = ACTIONS(1558), + [aux_sym_cmd_identifier_token1] = ACTIONS(1558), + [aux_sym_cmd_identifier_token2] = ACTIONS(1558), + [aux_sym_cmd_identifier_token3] = ACTIONS(1558), + [aux_sym_cmd_identifier_token4] = ACTIONS(1558), + [aux_sym_cmd_identifier_token5] = ACTIONS(1558), + [aux_sym_cmd_identifier_token6] = ACTIONS(1558), + [aux_sym_cmd_identifier_token7] = ACTIONS(1558), + [aux_sym_cmd_identifier_token8] = ACTIONS(1558), + [aux_sym_cmd_identifier_token9] = ACTIONS(1558), + [aux_sym_cmd_identifier_token10] = ACTIONS(1558), + [aux_sym_cmd_identifier_token11] = ACTIONS(1558), + [aux_sym_cmd_identifier_token12] = ACTIONS(1558), + [aux_sym_cmd_identifier_token13] = ACTIONS(1558), + [aux_sym_cmd_identifier_token14] = ACTIONS(1558), + [aux_sym_cmd_identifier_token15] = ACTIONS(1558), + [aux_sym_cmd_identifier_token16] = ACTIONS(1558), + [aux_sym_cmd_identifier_token17] = ACTIONS(1558), + [aux_sym_cmd_identifier_token18] = ACTIONS(1558), + [aux_sym_cmd_identifier_token19] = ACTIONS(1558), + [aux_sym_cmd_identifier_token20] = ACTIONS(1558), + [aux_sym_cmd_identifier_token21] = ACTIONS(1558), + [aux_sym_cmd_identifier_token22] = ACTIONS(1558), + [aux_sym_cmd_identifier_token23] = ACTIONS(1558), + [aux_sym_cmd_identifier_token24] = ACTIONS(1558), + [aux_sym_cmd_identifier_token25] = ACTIONS(1558), + [aux_sym_cmd_identifier_token26] = ACTIONS(1558), + [aux_sym_cmd_identifier_token27] = ACTIONS(1558), + [aux_sym_cmd_identifier_token28] = ACTIONS(1558), + [aux_sym_cmd_identifier_token29] = ACTIONS(1558), + [aux_sym_cmd_identifier_token30] = ACTIONS(1558), + [aux_sym_cmd_identifier_token31] = ACTIONS(1558), + [aux_sym_cmd_identifier_token32] = ACTIONS(1558), + [aux_sym_cmd_identifier_token33] = ACTIONS(1558), + [aux_sym_cmd_identifier_token34] = ACTIONS(1558), + [aux_sym_cmd_identifier_token35] = ACTIONS(1558), + [aux_sym_cmd_identifier_token36] = ACTIONS(1558), + [aux_sym_cmd_identifier_token37] = ACTIONS(1558), + [aux_sym_cmd_identifier_token38] = ACTIONS(1558), + [aux_sym_cmd_identifier_token39] = ACTIONS(1558), + [aux_sym_cmd_identifier_token40] = ACTIONS(1558), + [anon_sym_def] = ACTIONS(1558), + [anon_sym_export_DASHenv] = ACTIONS(1558), + [anon_sym_extern] = ACTIONS(1558), + [anon_sym_module] = ACTIONS(1558), + [anon_sym_use] = ACTIONS(1558), + [anon_sym_LPAREN] = ACTIONS(1558), + [anon_sym_COMMA] = ACTIONS(1558), + [anon_sym_DOLLAR] = ACTIONS(1548), + [anon_sym_error] = ACTIONS(1558), + [anon_sym_DASH2] = ACTIONS(1558), + [anon_sym_break] = ACTIONS(1558), + [anon_sym_continue] = ACTIONS(1558), + [anon_sym_for] = ACTIONS(1558), + [anon_sym_in2] = ACTIONS(1558), + [anon_sym_loop] = ACTIONS(1558), + [anon_sym_make] = ACTIONS(1558), + [anon_sym_while] = ACTIONS(1558), + [anon_sym_do] = ACTIONS(1558), + [anon_sym_if] = ACTIONS(1558), + [anon_sym_else] = ACTIONS(1558), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_RBRACE] = ACTIONS(1558), + [anon_sym_try] = ACTIONS(1558), + [anon_sym_catch] = ACTIONS(1558), + [anon_sym_return] = ACTIONS(1558), + [anon_sym_source] = ACTIONS(1558), + [anon_sym_source_DASHenv] = ACTIONS(1558), + [anon_sym_hide] = ACTIONS(1558), + [anon_sym_hide_DASHenv] = ACTIONS(1558), + [anon_sym_overlay] = ACTIONS(1558), + [anon_sym_as] = ACTIONS(1558), + [anon_sym_LPAREN2] = ACTIONS(1550), + [anon_sym_PLUS2] = ACTIONS(1558), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1558), + [aux_sym__immediate_decimal_token1] = ACTIONS(1552), + [aux_sym__immediate_decimal_token3] = ACTIONS(1552), + [aux_sym__immediate_decimal_token4] = ACTIONS(1554), + [aux_sym__immediate_decimal_token5] = ACTIONS(1556), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1558), + [aux_sym__val_number_decimal_token1] = ACTIONS(1558), + [aux_sym__val_number_decimal_token2] = ACTIONS(1558), + [aux_sym__val_number_decimal_token3] = ACTIONS(1558), + [aux_sym__val_number_decimal_token4] = ACTIONS(1558), + [aux_sym__val_number_token1] = ACTIONS(1558), + [aux_sym__val_number_token2] = ACTIONS(1558), + [aux_sym__val_number_token3] = ACTIONS(1558), + [aux_sym__val_number_token4] = ACTIONS(1558), + [aux_sym__val_number_token5] = ACTIONS(1558), + [aux_sym__val_number_token6] = ACTIONS(1558), + [anon_sym_DQUOTE] = ACTIONS(1558), + [sym__str_single_quotes] = ACTIONS(1558), + [sym__str_back_ticks] = ACTIONS(1558), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1558), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1558), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1558), + [sym__entry_separator] = ACTIONS(1560), + [anon_sym_register] = ACTIONS(1558), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1562), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1560), }, [292] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_block] = STATE(5055), - [sym__expression_parenthesized] = STATE(5055), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1190), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5055), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if_parenthesized] = STATE(5078), + [sym_block] = STATE(5079), + [sym__expression_parenthesized] = STATE(5079), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1203), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(5079), [sym_comment] = STATE(292), - [aux_sym_shebang_repeat1] = STATE(296), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1577), - [aux_sym__val_number_decimal_token2] = ACTIONS(1579), - [aux_sym__val_number_decimal_token3] = ACTIONS(1581), - [aux_sym__val_number_decimal_token4] = ACTIONS(1583), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(1179), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [sym__newline] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1481), + [aux_sym__val_number_decimal_token2] = ACTIONS(1483), + [aux_sym__val_number_decimal_token3] = ACTIONS(1485), + [aux_sym__val_number_decimal_token4] = ACTIONS(1487), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [293] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5056), - [sym_block] = STATE(5059), - [sym__expression_parenthesized] = STATE(5059), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1190), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5059), [sym_comment] = STATE(293), - [aux_sym_shebang_repeat1] = STATE(1146), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1577), - [aux_sym__val_number_decimal_token2] = ACTIONS(1579), - [aux_sym__val_number_decimal_token3] = ACTIONS(1581), - [aux_sym__val_number_decimal_token4] = ACTIONS(1583), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym__block_body_repeat1] = STATE(310), + [ts_builtin_sym_end] = ACTIONS(1520), + [anon_sym_export] = ACTIONS(1489), + [anon_sym_alias] = ACTIONS(1489), + [anon_sym_let] = ACTIONS(1489), + [anon_sym_let_DASHenv] = ACTIONS(1489), + [anon_sym_mut] = ACTIONS(1489), + [anon_sym_const] = ACTIONS(1489), + [aux_sym_cmd_identifier_token1] = ACTIONS(1489), + [aux_sym_cmd_identifier_token2] = ACTIONS(1491), + [aux_sym_cmd_identifier_token3] = ACTIONS(1491), + [aux_sym_cmd_identifier_token4] = ACTIONS(1491), + [aux_sym_cmd_identifier_token5] = ACTIONS(1491), + [aux_sym_cmd_identifier_token6] = ACTIONS(1491), + [aux_sym_cmd_identifier_token7] = ACTIONS(1491), + [aux_sym_cmd_identifier_token8] = ACTIONS(1489), + [aux_sym_cmd_identifier_token9] = ACTIONS(1489), + [aux_sym_cmd_identifier_token10] = ACTIONS(1491), + [aux_sym_cmd_identifier_token11] = ACTIONS(1491), + [aux_sym_cmd_identifier_token12] = ACTIONS(1489), + [aux_sym_cmd_identifier_token13] = ACTIONS(1489), + [aux_sym_cmd_identifier_token14] = ACTIONS(1489), + [aux_sym_cmd_identifier_token15] = ACTIONS(1489), + [aux_sym_cmd_identifier_token16] = ACTIONS(1491), + [aux_sym_cmd_identifier_token17] = ACTIONS(1491), + [aux_sym_cmd_identifier_token18] = ACTIONS(1489), + [aux_sym_cmd_identifier_token19] = ACTIONS(1491), + [aux_sym_cmd_identifier_token20] = ACTIONS(1491), + [aux_sym_cmd_identifier_token21] = ACTIONS(1491), + [aux_sym_cmd_identifier_token22] = ACTIONS(1491), + [aux_sym_cmd_identifier_token23] = ACTIONS(1491), + [aux_sym_cmd_identifier_token24] = ACTIONS(1491), + [aux_sym_cmd_identifier_token25] = ACTIONS(1491), + [aux_sym_cmd_identifier_token26] = ACTIONS(1491), + [aux_sym_cmd_identifier_token27] = ACTIONS(1491), + [aux_sym_cmd_identifier_token28] = ACTIONS(1491), + [aux_sym_cmd_identifier_token29] = ACTIONS(1491), + [aux_sym_cmd_identifier_token30] = ACTIONS(1491), + [aux_sym_cmd_identifier_token31] = ACTIONS(1491), + [aux_sym_cmd_identifier_token32] = ACTIONS(1489), + [aux_sym_cmd_identifier_token33] = ACTIONS(1491), + [aux_sym_cmd_identifier_token34] = ACTIONS(1489), + [aux_sym_cmd_identifier_token35] = ACTIONS(1491), + [aux_sym_cmd_identifier_token36] = ACTIONS(1491), + [aux_sym_cmd_identifier_token37] = ACTIONS(1491), + [aux_sym_cmd_identifier_token38] = ACTIONS(1489), + [aux_sym_cmd_identifier_token39] = ACTIONS(1491), + [aux_sym_cmd_identifier_token40] = ACTIONS(1491), + [sym__newline] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(25), + [anon_sym_def] = ACTIONS(1489), + [anon_sym_export_DASHenv] = ACTIONS(1489), + [anon_sym_extern] = ACTIONS(1489), + [anon_sym_module] = ACTIONS(1489), + [anon_sym_use] = ACTIONS(1489), + [anon_sym_LBRACK] = ACTIONS(1491), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_DOLLAR] = ACTIONS(1489), + [anon_sym_error] = ACTIONS(1489), + [anon_sym_DASH2] = ACTIONS(1489), + [anon_sym_break] = ACTIONS(1489), + [anon_sym_continue] = ACTIONS(1489), + [anon_sym_for] = ACTIONS(1489), + [anon_sym_loop] = ACTIONS(1489), + [anon_sym_while] = ACTIONS(1489), + [anon_sym_do] = ACTIONS(1489), + [anon_sym_if] = ACTIONS(1489), + [anon_sym_match] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1491), + [anon_sym_DOT_DOT] = ACTIONS(1489), + [anon_sym_try] = ACTIONS(1489), + [anon_sym_return] = ACTIONS(1489), + [anon_sym_source] = ACTIONS(1489), + [anon_sym_source_DASHenv] = ACTIONS(1489), + [anon_sym_hide] = ACTIONS(1489), + [anon_sym_hide_DASHenv] = ACTIONS(1489), + [anon_sym_overlay] = ACTIONS(1489), + [anon_sym_where] = ACTIONS(1491), + [aux_sym_expr_unary_token1] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1491), + [anon_sym_DOT_DOT_LT] = ACTIONS(1491), + [anon_sym_null] = ACTIONS(1489), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [aux_sym__val_number_decimal_token1] = ACTIONS(1489), + [aux_sym__val_number_decimal_token2] = ACTIONS(1491), + [aux_sym__val_number_decimal_token3] = ACTIONS(1491), + [aux_sym__val_number_decimal_token4] = ACTIONS(1491), + [aux_sym__val_number_token1] = ACTIONS(1491), + [aux_sym__val_number_token2] = ACTIONS(1491), + [aux_sym__val_number_token3] = ACTIONS(1491), + [aux_sym__val_number_token4] = ACTIONS(1489), + [aux_sym__val_number_token5] = ACTIONS(1489), + [aux_sym__val_number_token6] = ACTIONS(1489), + [anon_sym_0b] = ACTIONS(1489), + [anon_sym_0o] = ACTIONS(1489), + [anon_sym_0x] = ACTIONS(1489), + [sym_val_date] = ACTIONS(1491), + [anon_sym_DQUOTE] = ACTIONS(1491), + [sym__str_single_quotes] = ACTIONS(1491), + [sym__str_back_ticks] = ACTIONS(1491), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1491), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1491), + [aux_sym_env_var_token1] = ACTIONS(1489), + [anon_sym_CARET] = ACTIONS(1491), + [aux_sym_command_token1] = ACTIONS(1491), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1491), }, [294] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5056), - [sym_block] = STATE(5059), - [sym__expression_parenthesized] = STATE(5059), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1190), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5059), + [sym__expr_parenthesized_immediate] = STATE(545), + [sym__immediate_decimal] = STATE(546), + [sym_val_variable] = STATE(545), [sym_comment] = STATE(294), - [aux_sym_shebang_repeat1] = STATE(297), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1577), - [aux_sym__val_number_decimal_token2] = ACTIONS(1579), - [aux_sym__val_number_decimal_token3] = ACTIONS(1581), - [aux_sym__val_number_decimal_token4] = ACTIONS(1583), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_export] = ACTIONS(1522), + [anon_sym_alias] = ACTIONS(1522), + [anon_sym_let] = ACTIONS(1522), + [anon_sym_let_DASHenv] = ACTIONS(1522), + [anon_sym_mut] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1522), + [aux_sym_cmd_identifier_token1] = ACTIONS(1522), + [aux_sym_cmd_identifier_token2] = ACTIONS(1532), + [aux_sym_cmd_identifier_token3] = ACTIONS(1532), + [aux_sym_cmd_identifier_token4] = ACTIONS(1532), + [aux_sym_cmd_identifier_token5] = ACTIONS(1532), + [aux_sym_cmd_identifier_token6] = ACTIONS(1532), + [aux_sym_cmd_identifier_token7] = ACTIONS(1532), + [aux_sym_cmd_identifier_token8] = ACTIONS(1522), + [aux_sym_cmd_identifier_token9] = ACTIONS(1522), + [aux_sym_cmd_identifier_token10] = ACTIONS(1532), + [aux_sym_cmd_identifier_token11] = ACTIONS(1532), + [aux_sym_cmd_identifier_token12] = ACTIONS(1522), + [aux_sym_cmd_identifier_token13] = ACTIONS(1522), + [aux_sym_cmd_identifier_token14] = ACTIONS(1522), + [aux_sym_cmd_identifier_token15] = ACTIONS(1522), + [aux_sym_cmd_identifier_token16] = ACTIONS(1532), + [aux_sym_cmd_identifier_token17] = ACTIONS(1532), + [aux_sym_cmd_identifier_token18] = ACTIONS(1532), + [aux_sym_cmd_identifier_token19] = ACTIONS(1532), + [aux_sym_cmd_identifier_token20] = ACTIONS(1532), + [aux_sym_cmd_identifier_token21] = ACTIONS(1532), + [aux_sym_cmd_identifier_token22] = ACTIONS(1532), + [aux_sym_cmd_identifier_token23] = ACTIONS(1532), + [aux_sym_cmd_identifier_token24] = ACTIONS(1532), + [aux_sym_cmd_identifier_token25] = ACTIONS(1532), + [aux_sym_cmd_identifier_token26] = ACTIONS(1532), + [aux_sym_cmd_identifier_token27] = ACTIONS(1532), + [aux_sym_cmd_identifier_token28] = ACTIONS(1532), + [aux_sym_cmd_identifier_token29] = ACTIONS(1532), + [aux_sym_cmd_identifier_token30] = ACTIONS(1532), + [aux_sym_cmd_identifier_token31] = ACTIONS(1532), + [aux_sym_cmd_identifier_token32] = ACTIONS(1532), + [aux_sym_cmd_identifier_token33] = ACTIONS(1532), + [aux_sym_cmd_identifier_token34] = ACTIONS(1522), + [aux_sym_cmd_identifier_token35] = ACTIONS(1532), + [aux_sym_cmd_identifier_token36] = ACTIONS(1532), + [aux_sym_cmd_identifier_token37] = ACTIONS(1532), + [aux_sym_cmd_identifier_token38] = ACTIONS(1522), + [aux_sym_cmd_identifier_token39] = ACTIONS(1532), + [aux_sym_cmd_identifier_token40] = ACTIONS(1532), + [anon_sym_def] = ACTIONS(1522), + [anon_sym_export_DASHenv] = ACTIONS(1522), + [anon_sym_extern] = ACTIONS(1522), + [anon_sym_module] = ACTIONS(1522), + [anon_sym_use] = ACTIONS(1522), + [anon_sym_LPAREN] = ACTIONS(1522), + [anon_sym_COMMA] = ACTIONS(1532), + [anon_sym_DOLLAR] = ACTIONS(1534), + [anon_sym_error] = ACTIONS(1522), + [anon_sym_DASH2] = ACTIONS(1522), + [anon_sym_break] = ACTIONS(1522), + [anon_sym_continue] = ACTIONS(1522), + [anon_sym_for] = ACTIONS(1522), + [anon_sym_in2] = ACTIONS(1522), + [anon_sym_loop] = ACTIONS(1522), + [anon_sym_make] = ACTIONS(1522), + [anon_sym_while] = ACTIONS(1522), + [anon_sym_do] = ACTIONS(1522), + [anon_sym_if] = ACTIONS(1522), + [anon_sym_else] = ACTIONS(1522), + [anon_sym_match] = ACTIONS(1522), + [anon_sym_RBRACE] = ACTIONS(1532), + [anon_sym_try] = ACTIONS(1522), + [anon_sym_catch] = ACTIONS(1522), + [anon_sym_return] = ACTIONS(1522), + [anon_sym_source] = ACTIONS(1522), + [anon_sym_source_DASHenv] = ACTIONS(1522), + [anon_sym_hide] = ACTIONS(1522), + [anon_sym_hide_DASHenv] = ACTIONS(1522), + [anon_sym_overlay] = ACTIONS(1522), + [anon_sym_as] = ACTIONS(1522), + [anon_sym_LPAREN2] = ACTIONS(1536), + [anon_sym_PLUS2] = ACTIONS(1522), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1532), + [anon_sym_DOT] = ACTIONS(1564), + [aux_sym__immediate_decimal_token1] = ACTIONS(1566), + [aux_sym__immediate_decimal_token3] = ACTIONS(1568), + [aux_sym__immediate_decimal_token4] = ACTIONS(1570), + [aux_sym__immediate_decimal_token5] = ACTIONS(1572), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1532), + [aux_sym__val_number_decimal_token1] = ACTIONS(1522), + [aux_sym__val_number_decimal_token2] = ACTIONS(1522), + [aux_sym__val_number_decimal_token3] = ACTIONS(1522), + [aux_sym__val_number_decimal_token4] = ACTIONS(1522), + [aux_sym__val_number_token1] = ACTIONS(1532), + [aux_sym__val_number_token2] = ACTIONS(1532), + [aux_sym__val_number_token3] = ACTIONS(1532), + [aux_sym__val_number_token4] = ACTIONS(1522), + [aux_sym__val_number_token5] = ACTIONS(1522), + [aux_sym__val_number_token6] = ACTIONS(1522), + [anon_sym_DQUOTE] = ACTIONS(1532), + [sym__str_single_quotes] = ACTIONS(1532), + [sym__str_back_ticks] = ACTIONS(1532), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1532), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1532), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1532), + [anon_sym_register] = ACTIONS(1522), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1532), }, [295] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5122), - [sym_block] = STATE(5125), - [sym__expression_parenthesized] = STATE(5125), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1190), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5125), + [sym__expr_parenthesized_immediate] = STATE(625), + [sym__immediate_decimal] = STATE(631), + [sym_val_variable] = STATE(625), [sym_comment] = STATE(295), - [aux_sym_shebang_repeat1] = STATE(1146), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1577), - [aux_sym__val_number_decimal_token2] = ACTIONS(1579), - [aux_sym__val_number_decimal_token3] = ACTIONS(1581), - [aux_sym__val_number_decimal_token4] = ACTIONS(1583), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_export] = ACTIONS(1522), + [anon_sym_alias] = ACTIONS(1522), + [anon_sym_let] = ACTIONS(1522), + [anon_sym_let_DASHenv] = ACTIONS(1522), + [anon_sym_mut] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1522), + [aux_sym_cmd_identifier_token1] = ACTIONS(1522), + [aux_sym_cmd_identifier_token2] = ACTIONS(1522), + [aux_sym_cmd_identifier_token3] = ACTIONS(1522), + [aux_sym_cmd_identifier_token4] = ACTIONS(1522), + [aux_sym_cmd_identifier_token5] = ACTIONS(1522), + [aux_sym_cmd_identifier_token6] = ACTIONS(1522), + [aux_sym_cmd_identifier_token7] = ACTIONS(1522), + [aux_sym_cmd_identifier_token8] = ACTIONS(1522), + [aux_sym_cmd_identifier_token9] = ACTIONS(1522), + [aux_sym_cmd_identifier_token10] = ACTIONS(1522), + [aux_sym_cmd_identifier_token11] = ACTIONS(1522), + [aux_sym_cmd_identifier_token12] = ACTIONS(1522), + [aux_sym_cmd_identifier_token13] = ACTIONS(1522), + [aux_sym_cmd_identifier_token14] = ACTIONS(1522), + [aux_sym_cmd_identifier_token15] = ACTIONS(1522), + [aux_sym_cmd_identifier_token16] = ACTIONS(1522), + [aux_sym_cmd_identifier_token17] = ACTIONS(1522), + [aux_sym_cmd_identifier_token18] = ACTIONS(1522), + [aux_sym_cmd_identifier_token19] = ACTIONS(1522), + [aux_sym_cmd_identifier_token20] = ACTIONS(1522), + [aux_sym_cmd_identifier_token21] = ACTIONS(1522), + [aux_sym_cmd_identifier_token22] = ACTIONS(1522), + [aux_sym_cmd_identifier_token23] = ACTIONS(1522), + [aux_sym_cmd_identifier_token24] = ACTIONS(1522), + [aux_sym_cmd_identifier_token25] = ACTIONS(1522), + [aux_sym_cmd_identifier_token26] = ACTIONS(1522), + [aux_sym_cmd_identifier_token27] = ACTIONS(1522), + [aux_sym_cmd_identifier_token28] = ACTIONS(1522), + [aux_sym_cmd_identifier_token29] = ACTIONS(1522), + [aux_sym_cmd_identifier_token30] = ACTIONS(1522), + [aux_sym_cmd_identifier_token31] = ACTIONS(1522), + [aux_sym_cmd_identifier_token32] = ACTIONS(1522), + [aux_sym_cmd_identifier_token33] = ACTIONS(1522), + [aux_sym_cmd_identifier_token34] = ACTIONS(1522), + [aux_sym_cmd_identifier_token35] = ACTIONS(1522), + [aux_sym_cmd_identifier_token36] = ACTIONS(1522), + [aux_sym_cmd_identifier_token37] = ACTIONS(1522), + [aux_sym_cmd_identifier_token38] = ACTIONS(1522), + [aux_sym_cmd_identifier_token39] = ACTIONS(1522), + [aux_sym_cmd_identifier_token40] = ACTIONS(1522), + [anon_sym_def] = ACTIONS(1522), + [anon_sym_export_DASHenv] = ACTIONS(1522), + [anon_sym_extern] = ACTIONS(1522), + [anon_sym_module] = ACTIONS(1522), + [anon_sym_use] = ACTIONS(1522), + [anon_sym_LPAREN] = ACTIONS(1522), + [anon_sym_COMMA] = ACTIONS(1522), + [anon_sym_DOLLAR] = ACTIONS(1548), + [anon_sym_error] = ACTIONS(1522), + [anon_sym_DASH2] = ACTIONS(1522), + [anon_sym_break] = ACTIONS(1522), + [anon_sym_continue] = ACTIONS(1522), + [anon_sym_for] = ACTIONS(1522), + [anon_sym_in2] = ACTIONS(1522), + [anon_sym_loop] = ACTIONS(1522), + [anon_sym_make] = ACTIONS(1522), + [anon_sym_while] = ACTIONS(1522), + [anon_sym_do] = ACTIONS(1522), + [anon_sym_if] = ACTIONS(1522), + [anon_sym_else] = ACTIONS(1522), + [anon_sym_match] = ACTIONS(1522), + [anon_sym_RBRACE] = ACTIONS(1522), + [anon_sym_try] = ACTIONS(1522), + [anon_sym_catch] = ACTIONS(1522), + [anon_sym_return] = ACTIONS(1522), + [anon_sym_source] = ACTIONS(1522), + [anon_sym_source_DASHenv] = ACTIONS(1522), + [anon_sym_hide] = ACTIONS(1522), + [anon_sym_hide_DASHenv] = ACTIONS(1522), + [anon_sym_overlay] = ACTIONS(1522), + [anon_sym_as] = ACTIONS(1522), + [anon_sym_LPAREN2] = ACTIONS(1550), + [anon_sym_PLUS2] = ACTIONS(1522), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1522), + [aux_sym__immediate_decimal_token1] = ACTIONS(1574), + [aux_sym__immediate_decimal_token3] = ACTIONS(1574), + [aux_sym__immediate_decimal_token4] = ACTIONS(1576), + [aux_sym__immediate_decimal_token5] = ACTIONS(1578), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1522), + [aux_sym__val_number_decimal_token1] = ACTIONS(1522), + [aux_sym__val_number_decimal_token2] = ACTIONS(1522), + [aux_sym__val_number_decimal_token3] = ACTIONS(1522), + [aux_sym__val_number_decimal_token4] = ACTIONS(1522), + [aux_sym__val_number_token1] = ACTIONS(1522), + [aux_sym__val_number_token2] = ACTIONS(1522), + [aux_sym__val_number_token3] = ACTIONS(1522), + [aux_sym__val_number_token4] = ACTIONS(1522), + [aux_sym__val_number_token5] = ACTIONS(1522), + [aux_sym__val_number_token6] = ACTIONS(1522), + [anon_sym_DQUOTE] = ACTIONS(1522), + [sym__str_single_quotes] = ACTIONS(1522), + [sym__str_back_ticks] = ACTIONS(1522), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1522), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1522), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1522), + [sym__entry_separator] = ACTIONS(1532), + [anon_sym_register] = ACTIONS(1522), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1532), }, [296] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5126), - [sym_block] = STATE(5129), - [sym__expression_parenthesized] = STATE(5129), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1190), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5129), + [sym__expr_parenthesized_immediate] = STATE(659), + [sym__immediate_decimal] = STATE(651), + [sym_val_variable] = STATE(659), [sym_comment] = STATE(296), - [aux_sym_shebang_repeat1] = STATE(1146), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1577), - [aux_sym__val_number_decimal_token2] = ACTIONS(1579), - [aux_sym__val_number_decimal_token3] = ACTIONS(1581), - [aux_sym__val_number_decimal_token4] = ACTIONS(1583), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_export] = ACTIONS(1580), + [anon_sym_alias] = ACTIONS(1580), + [anon_sym_let] = ACTIONS(1580), + [anon_sym_let_DASHenv] = ACTIONS(1580), + [anon_sym_mut] = ACTIONS(1580), + [anon_sym_const] = ACTIONS(1580), + [aux_sym_cmd_identifier_token1] = ACTIONS(1580), + [aux_sym_cmd_identifier_token2] = ACTIONS(1580), + [aux_sym_cmd_identifier_token3] = ACTIONS(1580), + [aux_sym_cmd_identifier_token4] = ACTIONS(1580), + [aux_sym_cmd_identifier_token5] = ACTIONS(1580), + [aux_sym_cmd_identifier_token6] = ACTIONS(1580), + [aux_sym_cmd_identifier_token7] = ACTIONS(1580), + [aux_sym_cmd_identifier_token8] = ACTIONS(1580), + [aux_sym_cmd_identifier_token9] = ACTIONS(1580), + [aux_sym_cmd_identifier_token10] = ACTIONS(1580), + [aux_sym_cmd_identifier_token11] = ACTIONS(1580), + [aux_sym_cmd_identifier_token12] = ACTIONS(1580), + [aux_sym_cmd_identifier_token13] = ACTIONS(1580), + [aux_sym_cmd_identifier_token14] = ACTIONS(1580), + [aux_sym_cmd_identifier_token15] = ACTIONS(1580), + [aux_sym_cmd_identifier_token16] = ACTIONS(1580), + [aux_sym_cmd_identifier_token17] = ACTIONS(1580), + [aux_sym_cmd_identifier_token18] = ACTIONS(1580), + [aux_sym_cmd_identifier_token19] = ACTIONS(1580), + [aux_sym_cmd_identifier_token20] = ACTIONS(1580), + [aux_sym_cmd_identifier_token21] = ACTIONS(1580), + [aux_sym_cmd_identifier_token22] = ACTIONS(1580), + [aux_sym_cmd_identifier_token23] = ACTIONS(1580), + [aux_sym_cmd_identifier_token24] = ACTIONS(1580), + [aux_sym_cmd_identifier_token25] = ACTIONS(1580), + [aux_sym_cmd_identifier_token26] = ACTIONS(1580), + [aux_sym_cmd_identifier_token27] = ACTIONS(1580), + [aux_sym_cmd_identifier_token28] = ACTIONS(1580), + [aux_sym_cmd_identifier_token29] = ACTIONS(1580), + [aux_sym_cmd_identifier_token30] = ACTIONS(1580), + [aux_sym_cmd_identifier_token31] = ACTIONS(1580), + [aux_sym_cmd_identifier_token32] = ACTIONS(1580), + [aux_sym_cmd_identifier_token33] = ACTIONS(1580), + [aux_sym_cmd_identifier_token34] = ACTIONS(1580), + [aux_sym_cmd_identifier_token35] = ACTIONS(1580), + [aux_sym_cmd_identifier_token36] = ACTIONS(1580), + [aux_sym_cmd_identifier_token37] = ACTIONS(1580), + [aux_sym_cmd_identifier_token38] = ACTIONS(1580), + [aux_sym_cmd_identifier_token39] = ACTIONS(1580), + [aux_sym_cmd_identifier_token40] = ACTIONS(1580), + [anon_sym_def] = ACTIONS(1580), + [anon_sym_export_DASHenv] = ACTIONS(1580), + [anon_sym_extern] = ACTIONS(1580), + [anon_sym_module] = ACTIONS(1580), + [anon_sym_use] = ACTIONS(1580), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_COMMA] = ACTIONS(1580), + [anon_sym_DOLLAR] = ACTIONS(1548), + [anon_sym_error] = ACTIONS(1580), + [anon_sym_DASH2] = ACTIONS(1580), + [anon_sym_break] = ACTIONS(1580), + [anon_sym_continue] = ACTIONS(1580), + [anon_sym_for] = ACTIONS(1580), + [anon_sym_in2] = ACTIONS(1580), + [anon_sym_loop] = ACTIONS(1580), + [anon_sym_make] = ACTIONS(1580), + [anon_sym_while] = ACTIONS(1580), + [anon_sym_do] = ACTIONS(1580), + [anon_sym_if] = ACTIONS(1580), + [anon_sym_else] = ACTIONS(1580), + [anon_sym_match] = ACTIONS(1580), + [anon_sym_RBRACE] = ACTIONS(1580), + [anon_sym_try] = ACTIONS(1580), + [anon_sym_catch] = ACTIONS(1580), + [anon_sym_return] = ACTIONS(1580), + [anon_sym_source] = ACTIONS(1580), + [anon_sym_source_DASHenv] = ACTIONS(1580), + [anon_sym_hide] = ACTIONS(1580), + [anon_sym_hide_DASHenv] = ACTIONS(1580), + [anon_sym_overlay] = ACTIONS(1580), + [anon_sym_as] = ACTIONS(1580), + [anon_sym_LPAREN2] = ACTIONS(1550), + [anon_sym_PLUS2] = ACTIONS(1580), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1580), + [aux_sym__immediate_decimal_token1] = ACTIONS(1574), + [aux_sym__immediate_decimal_token3] = ACTIONS(1574), + [aux_sym__immediate_decimal_token4] = ACTIONS(1576), + [aux_sym__immediate_decimal_token5] = ACTIONS(1578), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1580), + [aux_sym__val_number_decimal_token1] = ACTIONS(1580), + [aux_sym__val_number_decimal_token2] = ACTIONS(1580), + [aux_sym__val_number_decimal_token3] = ACTIONS(1580), + [aux_sym__val_number_decimal_token4] = ACTIONS(1580), + [aux_sym__val_number_token1] = ACTIONS(1580), + [aux_sym__val_number_token2] = ACTIONS(1580), + [aux_sym__val_number_token3] = ACTIONS(1580), + [aux_sym__val_number_token4] = ACTIONS(1580), + [aux_sym__val_number_token5] = ACTIONS(1580), + [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(1580), + [sym__entry_separator] = ACTIONS(1582), + [anon_sym_register] = ACTIONS(1580), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1582), }, [297] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5131), - [sym_block] = STATE(5136), - [sym__expression_parenthesized] = STATE(5136), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1190), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5136), + [sym__expr_parenthesized_immediate] = STATE(653), + [sym__immediate_decimal] = STATE(658), + [sym_val_variable] = STATE(653), [sym_comment] = STATE(297), - [aux_sym_shebang_repeat1] = STATE(1146), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1577), - [aux_sym__val_number_decimal_token2] = ACTIONS(1579), - [aux_sym__val_number_decimal_token3] = ACTIONS(1581), - [aux_sym__val_number_decimal_token4] = ACTIONS(1583), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_export] = ACTIONS(1584), + [anon_sym_alias] = ACTIONS(1584), + [anon_sym_let] = ACTIONS(1584), + [anon_sym_let_DASHenv] = ACTIONS(1584), + [anon_sym_mut] = ACTIONS(1584), + [anon_sym_const] = ACTIONS(1584), + [aux_sym_cmd_identifier_token1] = ACTIONS(1584), + [aux_sym_cmd_identifier_token2] = ACTIONS(1584), + [aux_sym_cmd_identifier_token3] = ACTIONS(1584), + [aux_sym_cmd_identifier_token4] = ACTIONS(1584), + [aux_sym_cmd_identifier_token5] = ACTIONS(1584), + [aux_sym_cmd_identifier_token6] = ACTIONS(1584), + [aux_sym_cmd_identifier_token7] = ACTIONS(1584), + [aux_sym_cmd_identifier_token8] = ACTIONS(1584), + [aux_sym_cmd_identifier_token9] = ACTIONS(1584), + [aux_sym_cmd_identifier_token10] = ACTIONS(1584), + [aux_sym_cmd_identifier_token11] = ACTIONS(1584), + [aux_sym_cmd_identifier_token12] = ACTIONS(1584), + [aux_sym_cmd_identifier_token13] = ACTIONS(1584), + [aux_sym_cmd_identifier_token14] = ACTIONS(1584), + [aux_sym_cmd_identifier_token15] = ACTIONS(1584), + [aux_sym_cmd_identifier_token16] = ACTIONS(1584), + [aux_sym_cmd_identifier_token17] = ACTIONS(1584), + [aux_sym_cmd_identifier_token18] = ACTIONS(1584), + [aux_sym_cmd_identifier_token19] = ACTIONS(1584), + [aux_sym_cmd_identifier_token20] = ACTIONS(1584), + [aux_sym_cmd_identifier_token21] = ACTIONS(1584), + [aux_sym_cmd_identifier_token22] = ACTIONS(1584), + [aux_sym_cmd_identifier_token23] = ACTIONS(1584), + [aux_sym_cmd_identifier_token24] = ACTIONS(1584), + [aux_sym_cmd_identifier_token25] = ACTIONS(1584), + [aux_sym_cmd_identifier_token26] = ACTIONS(1584), + [aux_sym_cmd_identifier_token27] = ACTIONS(1584), + [aux_sym_cmd_identifier_token28] = ACTIONS(1584), + [aux_sym_cmd_identifier_token29] = ACTIONS(1584), + [aux_sym_cmd_identifier_token30] = ACTIONS(1584), + [aux_sym_cmd_identifier_token31] = ACTIONS(1584), + [aux_sym_cmd_identifier_token32] = ACTIONS(1584), + [aux_sym_cmd_identifier_token33] = ACTIONS(1584), + [aux_sym_cmd_identifier_token34] = ACTIONS(1584), + [aux_sym_cmd_identifier_token35] = ACTIONS(1584), + [aux_sym_cmd_identifier_token36] = ACTIONS(1584), + [aux_sym_cmd_identifier_token37] = ACTIONS(1584), + [aux_sym_cmd_identifier_token38] = ACTIONS(1584), + [aux_sym_cmd_identifier_token39] = ACTIONS(1584), + [aux_sym_cmd_identifier_token40] = ACTIONS(1584), + [anon_sym_def] = ACTIONS(1584), + [anon_sym_export_DASHenv] = ACTIONS(1584), + [anon_sym_extern] = ACTIONS(1584), + [anon_sym_module] = ACTIONS(1584), + [anon_sym_use] = ACTIONS(1584), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_COMMA] = ACTIONS(1584), + [anon_sym_DOLLAR] = ACTIONS(1548), + [anon_sym_error] = ACTIONS(1584), + [anon_sym_DASH2] = ACTIONS(1584), + [anon_sym_break] = ACTIONS(1584), + [anon_sym_continue] = ACTIONS(1584), + [anon_sym_for] = ACTIONS(1584), + [anon_sym_in2] = ACTIONS(1584), + [anon_sym_loop] = ACTIONS(1584), + [anon_sym_make] = ACTIONS(1584), + [anon_sym_while] = ACTIONS(1584), + [anon_sym_do] = ACTIONS(1584), + [anon_sym_if] = ACTIONS(1584), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_match] = ACTIONS(1584), + [anon_sym_RBRACE] = ACTIONS(1584), + [anon_sym_try] = ACTIONS(1584), + [anon_sym_catch] = ACTIONS(1584), + [anon_sym_return] = ACTIONS(1584), + [anon_sym_source] = ACTIONS(1584), + [anon_sym_source_DASHenv] = ACTIONS(1584), + [anon_sym_hide] = ACTIONS(1584), + [anon_sym_hide_DASHenv] = ACTIONS(1584), + [anon_sym_overlay] = ACTIONS(1584), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_LPAREN2] = ACTIONS(1550), + [anon_sym_PLUS2] = ACTIONS(1584), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1584), + [aux_sym__immediate_decimal_token1] = ACTIONS(1574), + [aux_sym__immediate_decimal_token3] = ACTIONS(1574), + [aux_sym__immediate_decimal_token4] = ACTIONS(1576), + [aux_sym__immediate_decimal_token5] = ACTIONS(1578), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1584), + [aux_sym__val_number_decimal_token1] = ACTIONS(1584), + [aux_sym__val_number_decimal_token2] = ACTIONS(1584), + [aux_sym__val_number_decimal_token3] = ACTIONS(1584), + [aux_sym__val_number_decimal_token4] = ACTIONS(1584), + [aux_sym__val_number_token1] = ACTIONS(1584), + [aux_sym__val_number_token2] = ACTIONS(1584), + [aux_sym__val_number_token3] = ACTIONS(1584), + [aux_sym__val_number_token4] = ACTIONS(1584), + [aux_sym__val_number_token5] = ACTIONS(1584), + [aux_sym__val_number_token6] = ACTIONS(1584), + [anon_sym_DQUOTE] = ACTIONS(1584), + [sym__str_single_quotes] = ACTIONS(1584), + [sym__str_back_ticks] = ACTIONS(1584), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1584), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1584), + [sym__entry_separator] = ACTIONS(1586), + [anon_sym_register] = ACTIONS(1584), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1586), }, [298] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5131), - [sym_block] = STATE(5136), - [sym__expression_parenthesized] = STATE(5136), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1190), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5136), + [sym__expr_parenthesized_immediate] = STATE(662), + [sym__immediate_decimal] = STATE(667), + [sym_val_variable] = STATE(662), [sym_comment] = STATE(298), - [aux_sym_shebang_repeat1] = STATE(299), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1577), - [aux_sym__val_number_decimal_token2] = ACTIONS(1579), - [aux_sym__val_number_decimal_token3] = ACTIONS(1581), - [aux_sym__val_number_decimal_token4] = ACTIONS(1583), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_export] = ACTIONS(1588), + [anon_sym_alias] = ACTIONS(1588), + [anon_sym_let] = ACTIONS(1588), + [anon_sym_let_DASHenv] = ACTIONS(1588), + [anon_sym_mut] = ACTIONS(1588), + [anon_sym_const] = ACTIONS(1588), + [aux_sym_cmd_identifier_token1] = ACTIONS(1588), + [aux_sym_cmd_identifier_token2] = ACTIONS(1588), + [aux_sym_cmd_identifier_token3] = ACTIONS(1588), + [aux_sym_cmd_identifier_token4] = ACTIONS(1588), + [aux_sym_cmd_identifier_token5] = ACTIONS(1588), + [aux_sym_cmd_identifier_token6] = ACTIONS(1588), + [aux_sym_cmd_identifier_token7] = ACTIONS(1588), + [aux_sym_cmd_identifier_token8] = ACTIONS(1588), + [aux_sym_cmd_identifier_token9] = ACTIONS(1588), + [aux_sym_cmd_identifier_token10] = ACTIONS(1588), + [aux_sym_cmd_identifier_token11] = ACTIONS(1588), + [aux_sym_cmd_identifier_token12] = ACTIONS(1588), + [aux_sym_cmd_identifier_token13] = ACTIONS(1588), + [aux_sym_cmd_identifier_token14] = ACTIONS(1588), + [aux_sym_cmd_identifier_token15] = ACTIONS(1588), + [aux_sym_cmd_identifier_token16] = ACTIONS(1588), + [aux_sym_cmd_identifier_token17] = ACTIONS(1588), + [aux_sym_cmd_identifier_token18] = ACTIONS(1588), + [aux_sym_cmd_identifier_token19] = ACTIONS(1588), + [aux_sym_cmd_identifier_token20] = ACTIONS(1588), + [aux_sym_cmd_identifier_token21] = ACTIONS(1588), + [aux_sym_cmd_identifier_token22] = ACTIONS(1588), + [aux_sym_cmd_identifier_token23] = ACTIONS(1588), + [aux_sym_cmd_identifier_token24] = ACTIONS(1588), + [aux_sym_cmd_identifier_token25] = ACTIONS(1588), + [aux_sym_cmd_identifier_token26] = ACTIONS(1588), + [aux_sym_cmd_identifier_token27] = ACTIONS(1588), + [aux_sym_cmd_identifier_token28] = ACTIONS(1588), + [aux_sym_cmd_identifier_token29] = ACTIONS(1588), + [aux_sym_cmd_identifier_token30] = ACTIONS(1588), + [aux_sym_cmd_identifier_token31] = ACTIONS(1588), + [aux_sym_cmd_identifier_token32] = ACTIONS(1588), + [aux_sym_cmd_identifier_token33] = ACTIONS(1588), + [aux_sym_cmd_identifier_token34] = ACTIONS(1588), + [aux_sym_cmd_identifier_token35] = ACTIONS(1588), + [aux_sym_cmd_identifier_token36] = ACTIONS(1588), + [aux_sym_cmd_identifier_token37] = ACTIONS(1588), + [aux_sym_cmd_identifier_token38] = ACTIONS(1588), + [aux_sym_cmd_identifier_token39] = ACTIONS(1588), + [aux_sym_cmd_identifier_token40] = ACTIONS(1588), + [anon_sym_def] = ACTIONS(1588), + [anon_sym_export_DASHenv] = ACTIONS(1588), + [anon_sym_extern] = ACTIONS(1588), + [anon_sym_module] = ACTIONS(1588), + [anon_sym_use] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1588), + [anon_sym_COMMA] = ACTIONS(1588), + [anon_sym_DOLLAR] = ACTIONS(1548), + [anon_sym_error] = ACTIONS(1588), + [anon_sym_DASH2] = ACTIONS(1588), + [anon_sym_break] = ACTIONS(1588), + [anon_sym_continue] = ACTIONS(1588), + [anon_sym_for] = ACTIONS(1588), + [anon_sym_in2] = ACTIONS(1588), + [anon_sym_loop] = ACTIONS(1588), + [anon_sym_make] = ACTIONS(1588), + [anon_sym_while] = ACTIONS(1588), + [anon_sym_do] = ACTIONS(1588), + [anon_sym_if] = ACTIONS(1588), + [anon_sym_else] = ACTIONS(1588), + [anon_sym_match] = ACTIONS(1588), + [anon_sym_RBRACE] = ACTIONS(1588), + [anon_sym_try] = ACTIONS(1588), + [anon_sym_catch] = ACTIONS(1588), + [anon_sym_return] = ACTIONS(1588), + [anon_sym_source] = ACTIONS(1588), + [anon_sym_source_DASHenv] = ACTIONS(1588), + [anon_sym_hide] = ACTIONS(1588), + [anon_sym_hide_DASHenv] = ACTIONS(1588), + [anon_sym_overlay] = ACTIONS(1588), + [anon_sym_as] = ACTIONS(1588), + [anon_sym_LPAREN2] = ACTIONS(1550), + [anon_sym_PLUS2] = ACTIONS(1588), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1588), + [aux_sym__immediate_decimal_token1] = ACTIONS(1574), + [aux_sym__immediate_decimal_token3] = ACTIONS(1574), + [aux_sym__immediate_decimal_token4] = ACTIONS(1576), + [aux_sym__immediate_decimal_token5] = ACTIONS(1578), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1588), + [aux_sym__val_number_decimal_token1] = ACTIONS(1588), + [aux_sym__val_number_decimal_token2] = ACTIONS(1588), + [aux_sym__val_number_decimal_token3] = ACTIONS(1588), + [aux_sym__val_number_decimal_token4] = ACTIONS(1588), + [aux_sym__val_number_token1] = ACTIONS(1588), + [aux_sym__val_number_token2] = ACTIONS(1588), + [aux_sym__val_number_token3] = ACTIONS(1588), + [aux_sym__val_number_token4] = ACTIONS(1588), + [aux_sym__val_number_token5] = ACTIONS(1588), + [aux_sym__val_number_token6] = ACTIONS(1588), + [anon_sym_DQUOTE] = ACTIONS(1588), + [sym__str_single_quotes] = ACTIONS(1588), + [sym__str_back_ticks] = ACTIONS(1588), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1588), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1588), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1588), + [sym__entry_separator] = ACTIONS(1590), + [anon_sym_register] = ACTIONS(1588), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1590), }, [299] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(4963), - [sym_block] = STATE(4979), - [sym__expression_parenthesized] = STATE(4979), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1190), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(4979), + [sym__expr_parenthesized_immediate] = STATE(736), + [sym__immediate_decimal] = STATE(570), + [sym_val_variable] = STATE(736), [sym_comment] = STATE(299), - [aux_sym_shebang_repeat1] = STATE(1146), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1577), - [aux_sym__val_number_decimal_token2] = ACTIONS(1579), - [aux_sym__val_number_decimal_token3] = ACTIONS(1581), - [aux_sym__val_number_decimal_token4] = ACTIONS(1583), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_alias] = ACTIONS(1441), + [anon_sym_let] = ACTIONS(1441), + [anon_sym_let_DASHenv] = ACTIONS(1441), + [anon_sym_mut] = ACTIONS(1441), + [anon_sym_const] = ACTIONS(1441), + [aux_sym_cmd_identifier_token1] = ACTIONS(1441), + [aux_sym_cmd_identifier_token2] = ACTIONS(1455), + [aux_sym_cmd_identifier_token3] = ACTIONS(1455), + [aux_sym_cmd_identifier_token4] = ACTIONS(1455), + [aux_sym_cmd_identifier_token5] = ACTIONS(1455), + [aux_sym_cmd_identifier_token6] = ACTIONS(1455), + [aux_sym_cmd_identifier_token7] = ACTIONS(1455), + [aux_sym_cmd_identifier_token8] = ACTIONS(1441), + [aux_sym_cmd_identifier_token9] = ACTIONS(1441), + [aux_sym_cmd_identifier_token10] = ACTIONS(1455), + [aux_sym_cmd_identifier_token11] = ACTIONS(1455), + [aux_sym_cmd_identifier_token12] = ACTIONS(1441), + [aux_sym_cmd_identifier_token13] = ACTIONS(1441), + [aux_sym_cmd_identifier_token14] = ACTIONS(1441), + [aux_sym_cmd_identifier_token15] = ACTIONS(1441), + [aux_sym_cmd_identifier_token16] = ACTIONS(1455), + [aux_sym_cmd_identifier_token17] = ACTIONS(1455), + [aux_sym_cmd_identifier_token18] = ACTIONS(1455), + [aux_sym_cmd_identifier_token19] = ACTIONS(1455), + [aux_sym_cmd_identifier_token20] = ACTIONS(1455), + [aux_sym_cmd_identifier_token21] = ACTIONS(1455), + [aux_sym_cmd_identifier_token22] = ACTIONS(1455), + [aux_sym_cmd_identifier_token23] = ACTIONS(1455), + [aux_sym_cmd_identifier_token24] = ACTIONS(1455), + [aux_sym_cmd_identifier_token25] = ACTIONS(1455), + [aux_sym_cmd_identifier_token26] = ACTIONS(1455), + [aux_sym_cmd_identifier_token27] = ACTIONS(1455), + [aux_sym_cmd_identifier_token28] = ACTIONS(1455), + [aux_sym_cmd_identifier_token29] = ACTIONS(1455), + [aux_sym_cmd_identifier_token30] = ACTIONS(1455), + [aux_sym_cmd_identifier_token31] = ACTIONS(1455), + [aux_sym_cmd_identifier_token32] = ACTIONS(1455), + [aux_sym_cmd_identifier_token33] = ACTIONS(1455), + [aux_sym_cmd_identifier_token34] = ACTIONS(1441), + [aux_sym_cmd_identifier_token35] = ACTIONS(1455), + [aux_sym_cmd_identifier_token36] = ACTIONS(1455), + [aux_sym_cmd_identifier_token37] = ACTIONS(1455), + [aux_sym_cmd_identifier_token38] = ACTIONS(1441), + [aux_sym_cmd_identifier_token39] = ACTIONS(1455), + [aux_sym_cmd_identifier_token40] = ACTIONS(1455), + [anon_sym_def] = ACTIONS(1441), + [anon_sym_export_DASHenv] = ACTIONS(1441), + [anon_sym_extern] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_use] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1441), + [anon_sym_COMMA] = ACTIONS(1455), + [anon_sym_DOLLAR] = ACTIONS(1365), + [anon_sym_error] = ACTIONS(1441), + [anon_sym_DASH2] = ACTIONS(1441), + [anon_sym_break] = ACTIONS(1441), + [anon_sym_continue] = ACTIONS(1441), + [anon_sym_for] = ACTIONS(1441), + [anon_sym_in2] = ACTIONS(1441), + [anon_sym_loop] = ACTIONS(1441), + [anon_sym_make] = ACTIONS(1441), + [anon_sym_while] = ACTIONS(1441), + [anon_sym_do] = ACTIONS(1441), + [anon_sym_if] = ACTIONS(1441), + [anon_sym_else] = ACTIONS(1441), + [anon_sym_match] = ACTIONS(1441), + [anon_sym_RBRACE] = ACTIONS(1455), + [anon_sym_try] = ACTIONS(1441), + [anon_sym_catch] = ACTIONS(1441), + [anon_sym_return] = ACTIONS(1441), + [anon_sym_source] = ACTIONS(1441), + [anon_sym_source_DASHenv] = ACTIONS(1441), + [anon_sym_hide] = ACTIONS(1441), + [anon_sym_hide_DASHenv] = ACTIONS(1441), + [anon_sym_overlay] = ACTIONS(1441), + [anon_sym_as] = ACTIONS(1441), + [anon_sym_LPAREN2] = ACTIONS(1592), + [anon_sym_PLUS2] = ACTIONS(1441), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1455), + [aux_sym__immediate_decimal_token1] = ACTIONS(1594), + [aux_sym__immediate_decimal_token3] = ACTIONS(1596), + [aux_sym__immediate_decimal_token4] = ACTIONS(1598), + [aux_sym__immediate_decimal_token5] = ACTIONS(1600), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1455), + [aux_sym__val_number_decimal_token1] = ACTIONS(1441), + [aux_sym__val_number_decimal_token2] = ACTIONS(1441), + [aux_sym__val_number_decimal_token3] = ACTIONS(1441), + [aux_sym__val_number_decimal_token4] = ACTIONS(1441), + [aux_sym__val_number_token1] = ACTIONS(1455), + [aux_sym__val_number_token2] = ACTIONS(1455), + [aux_sym__val_number_token3] = ACTIONS(1455), + [aux_sym__val_number_token4] = ACTIONS(1441), + [aux_sym__val_number_token5] = ACTIONS(1441), + [aux_sym__val_number_token6] = ACTIONS(1441), + [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1455), + [anon_sym_register] = ACTIONS(1441), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1457), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1455), }, [300] = { + [sym__expr_parenthesized_immediate] = STATE(746), + [sym__immediate_decimal] = STATE(572), + [sym_val_variable] = STATE(746), [sym_comment] = STATE(300), - [anon_sym_export] = ACTIONS(1575), - [anon_sym_alias] = ACTIONS(1575), - [anon_sym_let] = ACTIONS(1575), - [anon_sym_let_DASHenv] = ACTIONS(1575), - [anon_sym_mut] = ACTIONS(1575), - [anon_sym_const] = ACTIONS(1575), - [aux_sym_cmd_identifier_token1] = ACTIONS(1575), - [aux_sym_cmd_identifier_token2] = ACTIONS(1313), - [aux_sym_cmd_identifier_token3] = ACTIONS(1313), - [aux_sym_cmd_identifier_token4] = ACTIONS(1313), - [aux_sym_cmd_identifier_token5] = ACTIONS(1313), - [aux_sym_cmd_identifier_token6] = ACTIONS(1313), - [aux_sym_cmd_identifier_token7] = ACTIONS(1313), - [aux_sym_cmd_identifier_token8] = ACTIONS(1575), - [aux_sym_cmd_identifier_token9] = ACTIONS(1575), - [aux_sym_cmd_identifier_token10] = ACTIONS(1313), - [aux_sym_cmd_identifier_token11] = ACTIONS(1313), - [aux_sym_cmd_identifier_token12] = ACTIONS(1575), - [aux_sym_cmd_identifier_token13] = ACTIONS(1575), - [aux_sym_cmd_identifier_token14] = ACTIONS(1575), - [aux_sym_cmd_identifier_token15] = ACTIONS(1575), - [aux_sym_cmd_identifier_token16] = ACTIONS(1313), - [aux_sym_cmd_identifier_token17] = ACTIONS(1313), - [aux_sym_cmd_identifier_token18] = ACTIONS(1575), - [aux_sym_cmd_identifier_token19] = ACTIONS(1313), - [aux_sym_cmd_identifier_token20] = ACTIONS(1313), - [aux_sym_cmd_identifier_token21] = ACTIONS(1313), - [aux_sym_cmd_identifier_token22] = ACTIONS(1313), - [aux_sym_cmd_identifier_token23] = ACTIONS(1313), - [aux_sym_cmd_identifier_token24] = ACTIONS(1313), - [aux_sym_cmd_identifier_token25] = ACTIONS(1313), - [aux_sym_cmd_identifier_token26] = ACTIONS(1313), - [aux_sym_cmd_identifier_token27] = ACTIONS(1313), - [aux_sym_cmd_identifier_token28] = ACTIONS(1313), - [aux_sym_cmd_identifier_token29] = ACTIONS(1313), - [aux_sym_cmd_identifier_token30] = ACTIONS(1313), - [aux_sym_cmd_identifier_token31] = ACTIONS(1313), - [aux_sym_cmd_identifier_token32] = ACTIONS(1575), - [aux_sym_cmd_identifier_token33] = ACTIONS(1313), - [aux_sym_cmd_identifier_token34] = ACTIONS(1575), - [aux_sym_cmd_identifier_token35] = ACTIONS(1313), - [aux_sym_cmd_identifier_token36] = ACTIONS(1313), - [aux_sym_cmd_identifier_token37] = ACTIONS(1313), - [aux_sym_cmd_identifier_token38] = ACTIONS(1575), - [aux_sym_cmd_identifier_token39] = ACTIONS(1313), - [aux_sym_cmd_identifier_token40] = ACTIONS(1313), - [sym__newline] = ACTIONS(1313), - [anon_sym_SEMI] = ACTIONS(1313), - [anon_sym_def] = ACTIONS(1575), - [anon_sym_export_DASHenv] = ACTIONS(1575), - [anon_sym_extern] = ACTIONS(1575), - [anon_sym_module] = ACTIONS(1575), - [anon_sym_use] = ACTIONS(1575), - [anon_sym_LBRACK] = ACTIONS(1313), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_RPAREN] = ACTIONS(1313), - [anon_sym_DOLLAR] = ACTIONS(1575), - [anon_sym_error] = ACTIONS(1575), - [anon_sym_DASH2] = ACTIONS(1575), - [anon_sym_break] = ACTIONS(1575), - [anon_sym_continue] = ACTIONS(1575), - [anon_sym_for] = ACTIONS(1575), - [anon_sym_loop] = ACTIONS(1575), - [anon_sym_while] = ACTIONS(1575), - [anon_sym_do] = ACTIONS(1575), - [anon_sym_if] = ACTIONS(1575), - [anon_sym_match] = ACTIONS(1575), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_RBRACE] = ACTIONS(1313), - [anon_sym_DOT_DOT] = ACTIONS(1575), - [anon_sym_try] = ACTIONS(1575), - [anon_sym_return] = ACTIONS(1575), - [anon_sym_source] = ACTIONS(1575), - [anon_sym_source_DASHenv] = ACTIONS(1575), - [anon_sym_register] = ACTIONS(1575), - [anon_sym_hide] = ACTIONS(1575), - [anon_sym_hide_DASHenv] = ACTIONS(1575), - [anon_sym_overlay] = ACTIONS(1575), - [anon_sym_where] = ACTIONS(1313), - [aux_sym_expr_unary_token1] = ACTIONS(1313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), - [anon_sym_DOT_DOT_LT] = ACTIONS(1313), - [anon_sym_null] = ACTIONS(1575), - [anon_sym_true] = ACTIONS(1575), - [anon_sym_false] = ACTIONS(1575), - [aux_sym__val_number_decimal_token1] = ACTIONS(1575), - [aux_sym__val_number_decimal_token2] = ACTIONS(1313), - [aux_sym__val_number_decimal_token3] = ACTIONS(1313), - [aux_sym__val_number_decimal_token4] = ACTIONS(1313), - [aux_sym__val_number_token1] = ACTIONS(1313), - [aux_sym__val_number_token2] = ACTIONS(1313), - [aux_sym__val_number_token3] = ACTIONS(1313), - [aux_sym__val_number_token4] = ACTIONS(1575), - [aux_sym__val_number_token5] = ACTIONS(1575), - [aux_sym__val_number_token6] = ACTIONS(1575), - [anon_sym_0b] = ACTIONS(1575), - [anon_sym_0o] = ACTIONS(1575), - [anon_sym_0x] = ACTIONS(1575), - [sym_val_date] = ACTIONS(1313), - [anon_sym_DQUOTE] = ACTIONS(1313), - [sym__str_single_quotes] = ACTIONS(1313), - [sym__str_back_ticks] = ACTIONS(1313), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1313), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1313), - [aux_sym_env_var_token1] = ACTIONS(1575), - [anon_sym_CARET] = ACTIONS(1313), - [aux_sym_command_token1] = ACTIONS(1313), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1313), + [anon_sym_export] = ACTIONS(1558), + [anon_sym_alias] = ACTIONS(1558), + [anon_sym_let] = ACTIONS(1558), + [anon_sym_let_DASHenv] = ACTIONS(1558), + [anon_sym_mut] = ACTIONS(1558), + [anon_sym_const] = ACTIONS(1558), + [aux_sym_cmd_identifier_token1] = ACTIONS(1558), + [aux_sym_cmd_identifier_token2] = ACTIONS(1560), + [aux_sym_cmd_identifier_token3] = ACTIONS(1560), + [aux_sym_cmd_identifier_token4] = ACTIONS(1560), + [aux_sym_cmd_identifier_token5] = ACTIONS(1560), + [aux_sym_cmd_identifier_token6] = ACTIONS(1560), + [aux_sym_cmd_identifier_token7] = ACTIONS(1560), + [aux_sym_cmd_identifier_token8] = ACTIONS(1558), + [aux_sym_cmd_identifier_token9] = ACTIONS(1558), + [aux_sym_cmd_identifier_token10] = ACTIONS(1560), + [aux_sym_cmd_identifier_token11] = ACTIONS(1560), + [aux_sym_cmd_identifier_token12] = ACTIONS(1558), + [aux_sym_cmd_identifier_token13] = ACTIONS(1558), + [aux_sym_cmd_identifier_token14] = ACTIONS(1558), + [aux_sym_cmd_identifier_token15] = ACTIONS(1558), + [aux_sym_cmd_identifier_token16] = ACTIONS(1560), + [aux_sym_cmd_identifier_token17] = ACTIONS(1560), + [aux_sym_cmd_identifier_token18] = ACTIONS(1560), + [aux_sym_cmd_identifier_token19] = ACTIONS(1560), + [aux_sym_cmd_identifier_token20] = ACTIONS(1560), + [aux_sym_cmd_identifier_token21] = ACTIONS(1560), + [aux_sym_cmd_identifier_token22] = ACTIONS(1560), + [aux_sym_cmd_identifier_token23] = ACTIONS(1560), + [aux_sym_cmd_identifier_token24] = ACTIONS(1560), + [aux_sym_cmd_identifier_token25] = ACTIONS(1560), + [aux_sym_cmd_identifier_token26] = ACTIONS(1560), + [aux_sym_cmd_identifier_token27] = ACTIONS(1560), + [aux_sym_cmd_identifier_token28] = ACTIONS(1560), + [aux_sym_cmd_identifier_token29] = ACTIONS(1560), + [aux_sym_cmd_identifier_token30] = ACTIONS(1560), + [aux_sym_cmd_identifier_token31] = ACTIONS(1560), + [aux_sym_cmd_identifier_token32] = ACTIONS(1560), + [aux_sym_cmd_identifier_token33] = ACTIONS(1560), + [aux_sym_cmd_identifier_token34] = ACTIONS(1558), + [aux_sym_cmd_identifier_token35] = ACTIONS(1560), + [aux_sym_cmd_identifier_token36] = ACTIONS(1560), + [aux_sym_cmd_identifier_token37] = ACTIONS(1560), + [aux_sym_cmd_identifier_token38] = ACTIONS(1558), + [aux_sym_cmd_identifier_token39] = ACTIONS(1560), + [aux_sym_cmd_identifier_token40] = ACTIONS(1560), + [anon_sym_def] = ACTIONS(1558), + [anon_sym_export_DASHenv] = ACTIONS(1558), + [anon_sym_extern] = ACTIONS(1558), + [anon_sym_module] = ACTIONS(1558), + [anon_sym_use] = ACTIONS(1558), + [anon_sym_LPAREN] = ACTIONS(1558), + [anon_sym_COMMA] = ACTIONS(1560), + [anon_sym_DOLLAR] = ACTIONS(1365), + [anon_sym_error] = ACTIONS(1558), + [anon_sym_DASH2] = ACTIONS(1558), + [anon_sym_break] = ACTIONS(1558), + [anon_sym_continue] = ACTIONS(1558), + [anon_sym_for] = ACTIONS(1558), + [anon_sym_in2] = ACTIONS(1558), + [anon_sym_loop] = ACTIONS(1558), + [anon_sym_make] = ACTIONS(1558), + [anon_sym_while] = ACTIONS(1558), + [anon_sym_do] = ACTIONS(1558), + [anon_sym_if] = ACTIONS(1558), + [anon_sym_else] = ACTIONS(1558), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_RBRACE] = ACTIONS(1560), + [anon_sym_try] = ACTIONS(1558), + [anon_sym_catch] = ACTIONS(1558), + [anon_sym_return] = ACTIONS(1558), + [anon_sym_source] = ACTIONS(1558), + [anon_sym_source_DASHenv] = ACTIONS(1558), + [anon_sym_hide] = ACTIONS(1558), + [anon_sym_hide_DASHenv] = ACTIONS(1558), + [anon_sym_overlay] = ACTIONS(1558), + [anon_sym_as] = ACTIONS(1558), + [anon_sym_LPAREN2] = ACTIONS(1592), + [anon_sym_PLUS2] = ACTIONS(1558), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1560), + [aux_sym__immediate_decimal_token1] = ACTIONS(1594), + [aux_sym__immediate_decimal_token3] = ACTIONS(1596), + [aux_sym__immediate_decimal_token4] = ACTIONS(1598), + [aux_sym__immediate_decimal_token5] = ACTIONS(1600), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1560), + [aux_sym__val_number_decimal_token1] = ACTIONS(1558), + [aux_sym__val_number_decimal_token2] = ACTIONS(1558), + [aux_sym__val_number_decimal_token3] = ACTIONS(1558), + [aux_sym__val_number_decimal_token4] = ACTIONS(1558), + [aux_sym__val_number_token1] = ACTIONS(1560), + [aux_sym__val_number_token2] = ACTIONS(1560), + [aux_sym__val_number_token3] = ACTIONS(1560), + [aux_sym__val_number_token4] = ACTIONS(1558), + [aux_sym__val_number_token5] = ACTIONS(1558), + [aux_sym__val_number_token6] = ACTIONS(1558), + [anon_sym_DQUOTE] = ACTIONS(1560), + [sym__str_single_quotes] = ACTIONS(1560), + [sym__str_back_ticks] = ACTIONS(1560), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1560), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1560), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1560), + [anon_sym_register] = ACTIONS(1558), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1562), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1560), }, [301] = { [sym_comment] = STATE(301), - [aux_sym_shebang_repeat1] = STATE(306), - [aux_sym__parenthesized_body_repeat1] = STATE(215), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_alias] = ACTIONS(1596), - [anon_sym_let] = ACTIONS(1596), - [anon_sym_let_DASHenv] = ACTIONS(1596), - [anon_sym_mut] = ACTIONS(1596), - [anon_sym_const] = ACTIONS(1596), - [aux_sym_cmd_identifier_token1] = ACTIONS(1596), - [aux_sym_cmd_identifier_token2] = ACTIONS(1598), - [aux_sym_cmd_identifier_token3] = ACTIONS(1598), - [aux_sym_cmd_identifier_token4] = ACTIONS(1598), - [aux_sym_cmd_identifier_token5] = ACTIONS(1598), - [aux_sym_cmd_identifier_token6] = ACTIONS(1598), - [aux_sym_cmd_identifier_token7] = ACTIONS(1598), - [aux_sym_cmd_identifier_token8] = ACTIONS(1596), - [aux_sym_cmd_identifier_token9] = ACTIONS(1596), - [aux_sym_cmd_identifier_token10] = ACTIONS(1598), - [aux_sym_cmd_identifier_token11] = ACTIONS(1598), - [aux_sym_cmd_identifier_token12] = ACTIONS(1596), - [aux_sym_cmd_identifier_token13] = ACTIONS(1596), - [aux_sym_cmd_identifier_token14] = ACTIONS(1596), - [aux_sym_cmd_identifier_token15] = ACTIONS(1596), - [aux_sym_cmd_identifier_token16] = ACTIONS(1598), - [aux_sym_cmd_identifier_token17] = ACTIONS(1598), - [aux_sym_cmd_identifier_token18] = ACTIONS(1596), - [aux_sym_cmd_identifier_token19] = ACTIONS(1598), - [aux_sym_cmd_identifier_token20] = ACTIONS(1598), - [aux_sym_cmd_identifier_token21] = ACTIONS(1598), - [aux_sym_cmd_identifier_token22] = ACTIONS(1598), - [aux_sym_cmd_identifier_token23] = ACTIONS(1598), - [aux_sym_cmd_identifier_token24] = ACTIONS(1598), - [aux_sym_cmd_identifier_token25] = ACTIONS(1598), - [aux_sym_cmd_identifier_token26] = ACTIONS(1598), - [aux_sym_cmd_identifier_token27] = ACTIONS(1598), - [aux_sym_cmd_identifier_token28] = ACTIONS(1598), - [aux_sym_cmd_identifier_token29] = ACTIONS(1598), - [aux_sym_cmd_identifier_token30] = ACTIONS(1598), - [aux_sym_cmd_identifier_token31] = ACTIONS(1598), - [aux_sym_cmd_identifier_token32] = ACTIONS(1596), - [aux_sym_cmd_identifier_token33] = ACTIONS(1598), - [aux_sym_cmd_identifier_token34] = ACTIONS(1596), - [aux_sym_cmd_identifier_token35] = ACTIONS(1598), - [aux_sym_cmd_identifier_token36] = ACTIONS(1598), - [aux_sym_cmd_identifier_token37] = ACTIONS(1598), - [aux_sym_cmd_identifier_token38] = ACTIONS(1596), - [aux_sym_cmd_identifier_token39] = ACTIONS(1598), - [aux_sym_cmd_identifier_token40] = ACTIONS(1598), - [sym__newline] = ACTIONS(1600), - [anon_sym_SEMI] = ACTIONS(1602), - [anon_sym_def] = ACTIONS(1596), - [anon_sym_export_DASHenv] = ACTIONS(1596), - [anon_sym_extern] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_use] = ACTIONS(1596), - [anon_sym_LBRACK] = ACTIONS(1598), - [anon_sym_LPAREN] = ACTIONS(1598), - [anon_sym_DOLLAR] = ACTIONS(1596), - [anon_sym_error] = ACTIONS(1596), - [anon_sym_DASH2] = ACTIONS(1596), - [anon_sym_break] = ACTIONS(1596), - [anon_sym_continue] = ACTIONS(1596), - [anon_sym_for] = ACTIONS(1596), - [anon_sym_loop] = ACTIONS(1596), - [anon_sym_while] = ACTIONS(1596), - [anon_sym_do] = ACTIONS(1596), - [anon_sym_if] = ACTIONS(1596), - [anon_sym_match] = ACTIONS(1596), - [anon_sym_LBRACE] = ACTIONS(1598), - [anon_sym_DOT_DOT] = ACTIONS(1596), - [anon_sym_try] = ACTIONS(1596), - [anon_sym_return] = ACTIONS(1596), - [anon_sym_source] = ACTIONS(1596), - [anon_sym_source_DASHenv] = ACTIONS(1596), - [anon_sym_register] = ACTIONS(1596), - [anon_sym_hide] = ACTIONS(1596), - [anon_sym_hide_DASHenv] = ACTIONS(1596), - [anon_sym_overlay] = ACTIONS(1596), - [anon_sym_where] = ACTIONS(1598), - [aux_sym_expr_unary_token1] = ACTIONS(1598), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1598), - [anon_sym_DOT_DOT_LT] = ACTIONS(1598), - [anon_sym_null] = ACTIONS(1596), - [anon_sym_true] = ACTIONS(1596), - [anon_sym_false] = ACTIONS(1596), - [aux_sym__val_number_decimal_token1] = ACTIONS(1596), - [aux_sym__val_number_decimal_token2] = ACTIONS(1598), - [aux_sym__val_number_decimal_token3] = ACTIONS(1598), - [aux_sym__val_number_decimal_token4] = ACTIONS(1598), - [aux_sym__val_number_token1] = ACTIONS(1598), - [aux_sym__val_number_token2] = ACTIONS(1598), - [aux_sym__val_number_token3] = ACTIONS(1598), - [aux_sym__val_number_token4] = ACTIONS(1596), - [aux_sym__val_number_token5] = ACTIONS(1596), - [aux_sym__val_number_token6] = ACTIONS(1596), - [anon_sym_0b] = ACTIONS(1596), - [anon_sym_0o] = ACTIONS(1596), - [anon_sym_0x] = ACTIONS(1596), - [sym_val_date] = ACTIONS(1598), - [anon_sym_DQUOTE] = ACTIONS(1598), - [sym__str_single_quotes] = ACTIONS(1598), - [sym__str_back_ticks] = ACTIONS(1598), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1598), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1598), - [aux_sym_env_var_token1] = ACTIONS(1596), - [anon_sym_CARET] = ACTIONS(1598), - [aux_sym_command_token1] = ACTIONS(1598), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1598), + [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(1506), + [aux_sym_cmd_identifier_token3] = ACTIONS(1506), + [aux_sym_cmd_identifier_token4] = ACTIONS(1506), + [aux_sym_cmd_identifier_token5] = ACTIONS(1506), + [aux_sym_cmd_identifier_token6] = ACTIONS(1506), + [aux_sym_cmd_identifier_token7] = ACTIONS(1506), + [aux_sym_cmd_identifier_token8] = ACTIONS(1504), + [aux_sym_cmd_identifier_token9] = ACTIONS(1504), + [aux_sym_cmd_identifier_token10] = ACTIONS(1506), + [aux_sym_cmd_identifier_token11] = ACTIONS(1506), + [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(1506), + [aux_sym_cmd_identifier_token17] = ACTIONS(1506), + [aux_sym_cmd_identifier_token18] = ACTIONS(1506), + [aux_sym_cmd_identifier_token19] = ACTIONS(1506), + [aux_sym_cmd_identifier_token20] = ACTIONS(1506), + [aux_sym_cmd_identifier_token21] = ACTIONS(1506), + [aux_sym_cmd_identifier_token22] = ACTIONS(1506), + [aux_sym_cmd_identifier_token23] = ACTIONS(1506), + [aux_sym_cmd_identifier_token24] = ACTIONS(1506), + [aux_sym_cmd_identifier_token25] = ACTIONS(1506), + [aux_sym_cmd_identifier_token26] = ACTIONS(1506), + [aux_sym_cmd_identifier_token27] = ACTIONS(1506), + [aux_sym_cmd_identifier_token28] = ACTIONS(1506), + [aux_sym_cmd_identifier_token29] = ACTIONS(1506), + [aux_sym_cmd_identifier_token30] = ACTIONS(1506), + [aux_sym_cmd_identifier_token31] = ACTIONS(1506), + [aux_sym_cmd_identifier_token32] = ACTIONS(1506), + [aux_sym_cmd_identifier_token33] = ACTIONS(1506), + [aux_sym_cmd_identifier_token34] = ACTIONS(1504), + [aux_sym_cmd_identifier_token35] = ACTIONS(1506), + [aux_sym_cmd_identifier_token36] = ACTIONS(1506), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1506), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_error] = ACTIONS(1504), + [anon_sym_DASH2] = ACTIONS(1504), + [anon_sym_break] = ACTIONS(1504), + [anon_sym_continue] = ACTIONS(1504), + [anon_sym_for] = ACTIONS(1504), + [anon_sym_in2] = 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_hide] = ACTIONS(1504), + [anon_sym_hide_DASHenv] = ACTIONS(1504), + [anon_sym_overlay] = ACTIONS(1504), + [anon_sym_as] = ACTIONS(1504), + [anon_sym_LPAREN2] = ACTIONS(1506), + [anon_sym_PLUS2] = ACTIONS(1504), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1506), + [anon_sym_DOT_DOT2] = ACTIONS(1504), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1506), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1506), + [aux_sym__immediate_decimal_token1] = ACTIONS(1602), + [aux_sym__immediate_decimal_token2] = ACTIONS(1604), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1506), + [aux_sym__val_number_decimal_token1] = ACTIONS(1504), + [aux_sym__val_number_decimal_token2] = ACTIONS(1506), + [aux_sym__val_number_decimal_token3] = ACTIONS(1506), + [aux_sym__val_number_decimal_token4] = ACTIONS(1506), + [aux_sym__val_number_token1] = ACTIONS(1506), + [aux_sym__val_number_token2] = ACTIONS(1506), + [aux_sym__val_number_token3] = ACTIONS(1506), + [aux_sym__val_number_token4] = ACTIONS(1504), + [aux_sym__val_number_token5] = ACTIONS(1504), + [aux_sym__val_number_token6] = ACTIONS(1504), + [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_DOLLAR_SQUOTE] = ACTIONS(1506), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1506), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1506), + [anon_sym_register] = ACTIONS(1504), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1504), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1506), }, [302] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5011), - [sym_block] = STATE(5020), - [sym__expression_parenthesized] = STATE(5020), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1226), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(5020), [sym_comment] = STATE(302), - [aux_sym_shebang_repeat1] = STATE(232), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [sym__newline] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1564), - [aux_sym__val_number_decimal_token2] = ACTIONS(1566), - [aux_sym__val_number_decimal_token3] = ACTIONS(1568), - [aux_sym__val_number_decimal_token4] = ACTIONS(1570), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_export] = ACTIONS(1512), + [anon_sym_alias] = ACTIONS(1512), + [anon_sym_let] = ACTIONS(1512), + [anon_sym_let_DASHenv] = ACTIONS(1512), + [anon_sym_mut] = ACTIONS(1512), + [anon_sym_const] = ACTIONS(1512), + [aux_sym_cmd_identifier_token1] = ACTIONS(1512), + [aux_sym_cmd_identifier_token2] = ACTIONS(1514), + [aux_sym_cmd_identifier_token3] = ACTIONS(1514), + [aux_sym_cmd_identifier_token4] = ACTIONS(1514), + [aux_sym_cmd_identifier_token5] = ACTIONS(1514), + [aux_sym_cmd_identifier_token6] = ACTIONS(1514), + [aux_sym_cmd_identifier_token7] = ACTIONS(1514), + [aux_sym_cmd_identifier_token8] = ACTIONS(1512), + [aux_sym_cmd_identifier_token9] = ACTIONS(1512), + [aux_sym_cmd_identifier_token10] = ACTIONS(1514), + [aux_sym_cmd_identifier_token11] = ACTIONS(1514), + [aux_sym_cmd_identifier_token12] = ACTIONS(1512), + [aux_sym_cmd_identifier_token13] = ACTIONS(1512), + [aux_sym_cmd_identifier_token14] = ACTIONS(1512), + [aux_sym_cmd_identifier_token15] = ACTIONS(1512), + [aux_sym_cmd_identifier_token16] = ACTIONS(1514), + [aux_sym_cmd_identifier_token17] = ACTIONS(1514), + [aux_sym_cmd_identifier_token18] = ACTIONS(1514), + [aux_sym_cmd_identifier_token19] = ACTIONS(1514), + [aux_sym_cmd_identifier_token20] = ACTIONS(1514), + [aux_sym_cmd_identifier_token21] = ACTIONS(1514), + [aux_sym_cmd_identifier_token22] = ACTIONS(1514), + [aux_sym_cmd_identifier_token23] = ACTIONS(1514), + [aux_sym_cmd_identifier_token24] = ACTIONS(1514), + [aux_sym_cmd_identifier_token25] = ACTIONS(1514), + [aux_sym_cmd_identifier_token26] = ACTIONS(1514), + [aux_sym_cmd_identifier_token27] = ACTIONS(1514), + [aux_sym_cmd_identifier_token28] = ACTIONS(1514), + [aux_sym_cmd_identifier_token29] = ACTIONS(1514), + [aux_sym_cmd_identifier_token30] = ACTIONS(1514), + [aux_sym_cmd_identifier_token31] = ACTIONS(1514), + [aux_sym_cmd_identifier_token32] = ACTIONS(1514), + [aux_sym_cmd_identifier_token33] = ACTIONS(1514), + [aux_sym_cmd_identifier_token34] = ACTIONS(1512), + [aux_sym_cmd_identifier_token35] = ACTIONS(1514), + [aux_sym_cmd_identifier_token36] = ACTIONS(1514), + [aux_sym_cmd_identifier_token37] = ACTIONS(1514), + [aux_sym_cmd_identifier_token38] = ACTIONS(1512), + [aux_sym_cmd_identifier_token39] = ACTIONS(1514), + [aux_sym_cmd_identifier_token40] = ACTIONS(1514), + [anon_sym_def] = ACTIONS(1512), + [anon_sym_export_DASHenv] = ACTIONS(1512), + [anon_sym_extern] = ACTIONS(1512), + [anon_sym_module] = ACTIONS(1512), + [anon_sym_use] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_COMMA] = ACTIONS(1514), + [anon_sym_DOLLAR] = ACTIONS(1512), + [anon_sym_error] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_break] = ACTIONS(1512), + [anon_sym_continue] = ACTIONS(1512), + [anon_sym_for] = ACTIONS(1512), + [anon_sym_in2] = ACTIONS(1512), + [anon_sym_loop] = ACTIONS(1512), + [anon_sym_make] = ACTIONS(1512), + [anon_sym_while] = ACTIONS(1512), + [anon_sym_do] = ACTIONS(1512), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_else] = ACTIONS(1512), + [anon_sym_match] = ACTIONS(1512), + [anon_sym_RBRACE] = ACTIONS(1514), + [anon_sym_try] = ACTIONS(1512), + [anon_sym_catch] = ACTIONS(1512), + [anon_sym_return] = ACTIONS(1512), + [anon_sym_source] = ACTIONS(1512), + [anon_sym_source_DASHenv] = ACTIONS(1512), + [anon_sym_hide] = ACTIONS(1512), + [anon_sym_hide_DASHenv] = ACTIONS(1512), + [anon_sym_overlay] = ACTIONS(1512), + [anon_sym_as] = ACTIONS(1512), + [anon_sym_LPAREN2] = ACTIONS(1514), + [anon_sym_PLUS2] = ACTIONS(1512), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1514), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT] = ACTIONS(1606), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [aux_sym__immediate_decimal_token2] = ACTIONS(1608), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1514), + [aux_sym__val_number_decimal_token1] = ACTIONS(1512), + [aux_sym__val_number_decimal_token2] = ACTIONS(1514), + [aux_sym__val_number_decimal_token3] = ACTIONS(1514), + [aux_sym__val_number_decimal_token4] = ACTIONS(1514), + [aux_sym__val_number_token1] = ACTIONS(1514), + [aux_sym__val_number_token2] = ACTIONS(1514), + [aux_sym__val_number_token3] = ACTIONS(1514), + [aux_sym__val_number_token4] = ACTIONS(1512), + [aux_sym__val_number_token5] = ACTIONS(1512), + [aux_sym__val_number_token6] = ACTIONS(1512), + [sym_filesize_unit] = ACTIONS(1512), + [sym_duration_unit] = ACTIONS(1512), + [anon_sym_DQUOTE] = ACTIONS(1514), + [sym__str_single_quotes] = ACTIONS(1514), + [sym__str_back_ticks] = ACTIONS(1514), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1514), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1514), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1514), + [anon_sym_register] = ACTIONS(1512), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1514), }, [303] = { - [sym__expr_parenthesized_immediate] = STATE(634), - [sym__immediate_decimal] = STATE(635), - [sym_val_variable] = STATE(634), [sym_comment] = STATE(303), - [anon_sym_export] = ACTIONS(1604), - [anon_sym_alias] = ACTIONS(1604), - [anon_sym_let] = ACTIONS(1604), - [anon_sym_let_DASHenv] = ACTIONS(1604), - [anon_sym_mut] = ACTIONS(1604), - [anon_sym_const] = ACTIONS(1604), - [aux_sym_cmd_identifier_token1] = ACTIONS(1604), - [aux_sym_cmd_identifier_token2] = ACTIONS(1604), - [aux_sym_cmd_identifier_token3] = ACTIONS(1604), - [aux_sym_cmd_identifier_token4] = ACTIONS(1604), - [aux_sym_cmd_identifier_token5] = ACTIONS(1604), - [aux_sym_cmd_identifier_token6] = ACTIONS(1604), - [aux_sym_cmd_identifier_token7] = ACTIONS(1604), - [aux_sym_cmd_identifier_token8] = ACTIONS(1604), - [aux_sym_cmd_identifier_token9] = ACTIONS(1604), - [aux_sym_cmd_identifier_token10] = ACTIONS(1604), - [aux_sym_cmd_identifier_token11] = ACTIONS(1604), - [aux_sym_cmd_identifier_token12] = ACTIONS(1604), - [aux_sym_cmd_identifier_token13] = ACTIONS(1604), - [aux_sym_cmd_identifier_token14] = ACTIONS(1604), - [aux_sym_cmd_identifier_token15] = ACTIONS(1604), - [aux_sym_cmd_identifier_token16] = ACTIONS(1604), - [aux_sym_cmd_identifier_token17] = ACTIONS(1604), - [aux_sym_cmd_identifier_token18] = ACTIONS(1604), - [aux_sym_cmd_identifier_token19] = ACTIONS(1604), - [aux_sym_cmd_identifier_token20] = ACTIONS(1604), - [aux_sym_cmd_identifier_token21] = ACTIONS(1604), - [aux_sym_cmd_identifier_token22] = ACTIONS(1604), - [aux_sym_cmd_identifier_token23] = ACTIONS(1604), - [aux_sym_cmd_identifier_token24] = ACTIONS(1604), - [aux_sym_cmd_identifier_token25] = ACTIONS(1604), - [aux_sym_cmd_identifier_token26] = ACTIONS(1604), - [aux_sym_cmd_identifier_token27] = ACTIONS(1604), - [aux_sym_cmd_identifier_token28] = ACTIONS(1604), - [aux_sym_cmd_identifier_token29] = ACTIONS(1604), - [aux_sym_cmd_identifier_token30] = ACTIONS(1604), - [aux_sym_cmd_identifier_token31] = ACTIONS(1604), - [aux_sym_cmd_identifier_token32] = ACTIONS(1604), - [aux_sym_cmd_identifier_token33] = ACTIONS(1604), - [aux_sym_cmd_identifier_token34] = ACTIONS(1604), - [aux_sym_cmd_identifier_token35] = ACTIONS(1604), - [aux_sym_cmd_identifier_token36] = ACTIONS(1604), - [aux_sym_cmd_identifier_token37] = ACTIONS(1604), - [aux_sym_cmd_identifier_token38] = ACTIONS(1604), - [aux_sym_cmd_identifier_token39] = ACTIONS(1604), - [aux_sym_cmd_identifier_token40] = ACTIONS(1604), - [anon_sym_def] = ACTIONS(1604), - [anon_sym_export_DASHenv] = ACTIONS(1604), - [anon_sym_extern] = ACTIONS(1604), - [anon_sym_module] = ACTIONS(1604), - [anon_sym_use] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1604), - [anon_sym_COMMA] = ACTIONS(1604), - [anon_sym_DOLLAR] = ACTIONS(1526), - [anon_sym_error] = ACTIONS(1604), - [anon_sym_DASH2] = ACTIONS(1604), - [anon_sym_break] = ACTIONS(1604), - [anon_sym_continue] = ACTIONS(1604), - [anon_sym_for] = ACTIONS(1604), - [anon_sym_in2] = ACTIONS(1604), - [anon_sym_loop] = ACTIONS(1604), - [anon_sym_make] = ACTIONS(1604), - [anon_sym_while] = ACTIONS(1604), - [anon_sym_do] = ACTIONS(1604), - [anon_sym_if] = ACTIONS(1604), - [anon_sym_else] = ACTIONS(1604), - [anon_sym_match] = ACTIONS(1604), - [anon_sym_RBRACE] = ACTIONS(1604), - [anon_sym_try] = ACTIONS(1604), - [anon_sym_catch] = ACTIONS(1604), - [anon_sym_return] = ACTIONS(1604), - [anon_sym_source] = ACTIONS(1604), - [anon_sym_source_DASHenv] = ACTIONS(1604), - [anon_sym_register] = ACTIONS(1604), - [anon_sym_hide] = ACTIONS(1604), - [anon_sym_hide_DASHenv] = ACTIONS(1604), - [anon_sym_overlay] = ACTIONS(1604), - [anon_sym_as] = ACTIONS(1604), - [anon_sym_LPAREN2] = ACTIONS(1528), - [anon_sym_PLUS2] = ACTIONS(1604), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1604), - [aux_sym__immediate_decimal_token1] = ACTIONS(1606), - [aux_sym__immediate_decimal_token3] = ACTIONS(1606), - [aux_sym__immediate_decimal_token4] = ACTIONS(1608), - [aux_sym__immediate_decimal_token5] = ACTIONS(1610), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1604), - [aux_sym__val_number_decimal_token1] = ACTIONS(1604), - [aux_sym__val_number_decimal_token2] = ACTIONS(1604), - [aux_sym__val_number_decimal_token3] = ACTIONS(1604), - [aux_sym__val_number_decimal_token4] = ACTIONS(1604), - [aux_sym__val_number_token1] = ACTIONS(1604), - [aux_sym__val_number_token2] = ACTIONS(1604), - [aux_sym__val_number_token3] = ACTIONS(1604), - [aux_sym__val_number_token4] = ACTIONS(1604), - [aux_sym__val_number_token5] = ACTIONS(1604), - [aux_sym__val_number_token6] = ACTIONS(1604), - [anon_sym_DQUOTE] = ACTIONS(1604), - [sym__str_single_quotes] = ACTIONS(1604), - [sym__str_back_ticks] = ACTIONS(1604), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1604), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1604), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1604), - [sym__entry_separator] = ACTIONS(1612), + [anon_sym_export] = ACTIONS(1512), + [anon_sym_alias] = ACTIONS(1512), + [anon_sym_let] = ACTIONS(1512), + [anon_sym_let_DASHenv] = ACTIONS(1512), + [anon_sym_mut] = ACTIONS(1512), + [anon_sym_const] = ACTIONS(1512), + [aux_sym_cmd_identifier_token1] = ACTIONS(1512), + [aux_sym_cmd_identifier_token2] = ACTIONS(1512), + [aux_sym_cmd_identifier_token3] = ACTIONS(1512), + [aux_sym_cmd_identifier_token4] = ACTIONS(1512), + [aux_sym_cmd_identifier_token5] = ACTIONS(1512), + [aux_sym_cmd_identifier_token6] = ACTIONS(1512), + [aux_sym_cmd_identifier_token7] = ACTIONS(1512), + [aux_sym_cmd_identifier_token8] = ACTIONS(1512), + [aux_sym_cmd_identifier_token9] = ACTIONS(1512), + [aux_sym_cmd_identifier_token10] = ACTIONS(1512), + [aux_sym_cmd_identifier_token11] = ACTIONS(1512), + [aux_sym_cmd_identifier_token12] = ACTIONS(1512), + [aux_sym_cmd_identifier_token13] = ACTIONS(1512), + [aux_sym_cmd_identifier_token14] = ACTIONS(1512), + [aux_sym_cmd_identifier_token15] = ACTIONS(1512), + [aux_sym_cmd_identifier_token16] = ACTIONS(1512), + [aux_sym_cmd_identifier_token17] = ACTIONS(1512), + [aux_sym_cmd_identifier_token18] = ACTIONS(1512), + [aux_sym_cmd_identifier_token19] = ACTIONS(1512), + [aux_sym_cmd_identifier_token20] = ACTIONS(1512), + [aux_sym_cmd_identifier_token21] = ACTIONS(1512), + [aux_sym_cmd_identifier_token22] = ACTIONS(1512), + [aux_sym_cmd_identifier_token23] = ACTIONS(1512), + [aux_sym_cmd_identifier_token24] = ACTIONS(1512), + [aux_sym_cmd_identifier_token25] = ACTIONS(1512), + [aux_sym_cmd_identifier_token26] = ACTIONS(1512), + [aux_sym_cmd_identifier_token27] = ACTIONS(1512), + [aux_sym_cmd_identifier_token28] = ACTIONS(1512), + [aux_sym_cmd_identifier_token29] = ACTIONS(1512), + [aux_sym_cmd_identifier_token30] = ACTIONS(1512), + [aux_sym_cmd_identifier_token31] = ACTIONS(1512), + [aux_sym_cmd_identifier_token32] = ACTIONS(1512), + [aux_sym_cmd_identifier_token33] = ACTIONS(1512), + [aux_sym_cmd_identifier_token34] = ACTIONS(1512), + [aux_sym_cmd_identifier_token35] = ACTIONS(1512), + [aux_sym_cmd_identifier_token36] = ACTIONS(1512), + [aux_sym_cmd_identifier_token37] = ACTIONS(1512), + [aux_sym_cmd_identifier_token38] = ACTIONS(1512), + [aux_sym_cmd_identifier_token39] = ACTIONS(1512), + [aux_sym_cmd_identifier_token40] = ACTIONS(1512), + [anon_sym_def] = ACTIONS(1512), + [anon_sym_export_DASHenv] = ACTIONS(1512), + [anon_sym_extern] = ACTIONS(1512), + [anon_sym_module] = ACTIONS(1512), + [anon_sym_use] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_COMMA] = ACTIONS(1512), + [anon_sym_DOLLAR] = ACTIONS(1512), + [anon_sym_error] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_break] = ACTIONS(1512), + [anon_sym_continue] = ACTIONS(1512), + [anon_sym_for] = ACTIONS(1512), + [anon_sym_in2] = ACTIONS(1512), + [anon_sym_loop] = ACTIONS(1512), + [anon_sym_make] = ACTIONS(1512), + [anon_sym_while] = ACTIONS(1512), + [anon_sym_do] = ACTIONS(1512), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_else] = ACTIONS(1512), + [anon_sym_match] = ACTIONS(1512), + [anon_sym_RBRACE] = ACTIONS(1512), + [anon_sym_try] = ACTIONS(1512), + [anon_sym_catch] = ACTIONS(1512), + [anon_sym_return] = ACTIONS(1512), + [anon_sym_source] = ACTIONS(1512), + [anon_sym_source_DASHenv] = ACTIONS(1512), + [anon_sym_hide] = ACTIONS(1512), + [anon_sym_hide_DASHenv] = ACTIONS(1512), + [anon_sym_overlay] = ACTIONS(1512), + [anon_sym_as] = ACTIONS(1512), + [anon_sym_LPAREN2] = ACTIONS(1514), + [anon_sym_PLUS2] = ACTIONS(1512), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [aux_sym__immediate_decimal_token2] = ACTIONS(1518), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1512), + [aux_sym__val_number_decimal_token1] = ACTIONS(1512), + [aux_sym__val_number_decimal_token2] = ACTIONS(1512), + [aux_sym__val_number_decimal_token3] = ACTIONS(1512), + [aux_sym__val_number_decimal_token4] = ACTIONS(1512), + [aux_sym__val_number_token1] = ACTIONS(1512), + [aux_sym__val_number_token2] = ACTIONS(1512), + [aux_sym__val_number_token3] = ACTIONS(1512), + [aux_sym__val_number_token4] = ACTIONS(1512), + [aux_sym__val_number_token5] = ACTIONS(1512), + [aux_sym__val_number_token6] = ACTIONS(1512), + [sym_filesize_unit] = ACTIONS(1512), + [sym_duration_unit] = ACTIONS(1512), + [anon_sym_DQUOTE] = ACTIONS(1512), + [sym__str_single_quotes] = ACTIONS(1512), + [sym__str_back_ticks] = ACTIONS(1512), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1512), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1512), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1512), + [sym__entry_separator] = ACTIONS(1514), + [anon_sym_register] = ACTIONS(1512), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1512), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1612), + [sym_raw_string_begin] = ACTIONS(1514), }, [304] = { - [sym__expr_parenthesized_immediate] = STATE(622), - [sym__immediate_decimal] = STATE(623), - [sym_val_variable] = STATE(622), [sym_comment] = STATE(304), - [anon_sym_export] = ACTIONS(1500), - [anon_sym_alias] = ACTIONS(1500), - [anon_sym_let] = ACTIONS(1500), - [anon_sym_let_DASHenv] = ACTIONS(1500), - [anon_sym_mut] = ACTIONS(1500), - [anon_sym_const] = ACTIONS(1500), - [aux_sym_cmd_identifier_token1] = ACTIONS(1500), - [aux_sym_cmd_identifier_token2] = ACTIONS(1500), - [aux_sym_cmd_identifier_token3] = ACTIONS(1500), - [aux_sym_cmd_identifier_token4] = ACTIONS(1500), - [aux_sym_cmd_identifier_token5] = ACTIONS(1500), - [aux_sym_cmd_identifier_token6] = ACTIONS(1500), - [aux_sym_cmd_identifier_token7] = ACTIONS(1500), - [aux_sym_cmd_identifier_token8] = ACTIONS(1500), - [aux_sym_cmd_identifier_token9] = ACTIONS(1500), - [aux_sym_cmd_identifier_token10] = ACTIONS(1500), - [aux_sym_cmd_identifier_token11] = ACTIONS(1500), - [aux_sym_cmd_identifier_token12] = ACTIONS(1500), - [aux_sym_cmd_identifier_token13] = ACTIONS(1500), - [aux_sym_cmd_identifier_token14] = ACTIONS(1500), - [aux_sym_cmd_identifier_token15] = ACTIONS(1500), - [aux_sym_cmd_identifier_token16] = ACTIONS(1500), - [aux_sym_cmd_identifier_token17] = ACTIONS(1500), - [aux_sym_cmd_identifier_token18] = ACTIONS(1500), - [aux_sym_cmd_identifier_token19] = ACTIONS(1500), - [aux_sym_cmd_identifier_token20] = ACTIONS(1500), - [aux_sym_cmd_identifier_token21] = ACTIONS(1500), - [aux_sym_cmd_identifier_token22] = ACTIONS(1500), - [aux_sym_cmd_identifier_token23] = ACTIONS(1500), - [aux_sym_cmd_identifier_token24] = ACTIONS(1500), - [aux_sym_cmd_identifier_token25] = ACTIONS(1500), - [aux_sym_cmd_identifier_token26] = ACTIONS(1500), - [aux_sym_cmd_identifier_token27] = ACTIONS(1500), - [aux_sym_cmd_identifier_token28] = ACTIONS(1500), - [aux_sym_cmd_identifier_token29] = ACTIONS(1500), - [aux_sym_cmd_identifier_token30] = ACTIONS(1500), - [aux_sym_cmd_identifier_token31] = ACTIONS(1500), - [aux_sym_cmd_identifier_token32] = ACTIONS(1500), - [aux_sym_cmd_identifier_token33] = ACTIONS(1500), - [aux_sym_cmd_identifier_token34] = ACTIONS(1500), - [aux_sym_cmd_identifier_token35] = ACTIONS(1500), - [aux_sym_cmd_identifier_token36] = ACTIONS(1500), - [aux_sym_cmd_identifier_token37] = ACTIONS(1500), - [aux_sym_cmd_identifier_token38] = ACTIONS(1500), - [aux_sym_cmd_identifier_token39] = ACTIONS(1500), - [aux_sym_cmd_identifier_token40] = ACTIONS(1500), - [anon_sym_def] = ACTIONS(1500), - [anon_sym_export_DASHenv] = ACTIONS(1500), - [anon_sym_extern] = ACTIONS(1500), - [anon_sym_module] = ACTIONS(1500), - [anon_sym_use] = ACTIONS(1500), - [anon_sym_LPAREN] = ACTIONS(1500), - [anon_sym_COMMA] = ACTIONS(1500), - [anon_sym_DOLLAR] = ACTIONS(1526), - [anon_sym_error] = ACTIONS(1500), - [anon_sym_DASH2] = ACTIONS(1500), - [anon_sym_break] = ACTIONS(1500), - [anon_sym_continue] = ACTIONS(1500), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_in2] = ACTIONS(1500), - [anon_sym_loop] = ACTIONS(1500), - [anon_sym_make] = ACTIONS(1500), - [anon_sym_while] = ACTIONS(1500), - [anon_sym_do] = ACTIONS(1500), - [anon_sym_if] = ACTIONS(1500), - [anon_sym_else] = ACTIONS(1500), - [anon_sym_match] = ACTIONS(1500), - [anon_sym_RBRACE] = ACTIONS(1500), - [anon_sym_try] = ACTIONS(1500), - [anon_sym_catch] = ACTIONS(1500), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_source] = ACTIONS(1500), - [anon_sym_source_DASHenv] = ACTIONS(1500), - [anon_sym_register] = ACTIONS(1500), - [anon_sym_hide] = ACTIONS(1500), - [anon_sym_hide_DASHenv] = ACTIONS(1500), - [anon_sym_overlay] = ACTIONS(1500), - [anon_sym_as] = ACTIONS(1500), - [anon_sym_LPAREN2] = ACTIONS(1528), - [anon_sym_PLUS2] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1500), - [aux_sym__immediate_decimal_token1] = ACTIONS(1606), - [aux_sym__immediate_decimal_token3] = ACTIONS(1606), - [aux_sym__immediate_decimal_token4] = ACTIONS(1608), - [aux_sym__immediate_decimal_token5] = ACTIONS(1610), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1500), - [aux_sym__val_number_decimal_token1] = ACTIONS(1500), - [aux_sym__val_number_decimal_token2] = ACTIONS(1500), - [aux_sym__val_number_decimal_token3] = ACTIONS(1500), - [aux_sym__val_number_decimal_token4] = ACTIONS(1500), - [aux_sym__val_number_token1] = ACTIONS(1500), - [aux_sym__val_number_token2] = ACTIONS(1500), - [aux_sym__val_number_token3] = ACTIONS(1500), - [aux_sym__val_number_token4] = ACTIONS(1500), - [aux_sym__val_number_token5] = ACTIONS(1500), - [aux_sym__val_number_token6] = ACTIONS(1500), - [anon_sym_DQUOTE] = ACTIONS(1500), - [sym__str_single_quotes] = ACTIONS(1500), - [sym__str_back_ticks] = ACTIONS(1500), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1500), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1500), - [sym__entry_separator] = ACTIONS(1510), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1510), + [aux_sym_shebang_repeat1] = STATE(338), + [aux_sym__parenthesized_body_repeat1] = STATE(309), + [anon_sym_export] = ACTIONS(1610), + [anon_sym_alias] = ACTIONS(1610), + [anon_sym_let] = ACTIONS(1610), + [anon_sym_let_DASHenv] = ACTIONS(1610), + [anon_sym_mut] = ACTIONS(1610), + [anon_sym_const] = ACTIONS(1610), + [aux_sym_cmd_identifier_token1] = ACTIONS(1610), + [aux_sym_cmd_identifier_token2] = ACTIONS(1612), + [aux_sym_cmd_identifier_token3] = ACTIONS(1612), + [aux_sym_cmd_identifier_token4] = ACTIONS(1612), + [aux_sym_cmd_identifier_token5] = ACTIONS(1612), + [aux_sym_cmd_identifier_token6] = ACTIONS(1612), + [aux_sym_cmd_identifier_token7] = ACTIONS(1612), + [aux_sym_cmd_identifier_token8] = ACTIONS(1610), + [aux_sym_cmd_identifier_token9] = ACTIONS(1610), + [aux_sym_cmd_identifier_token10] = ACTIONS(1612), + [aux_sym_cmd_identifier_token11] = ACTIONS(1612), + [aux_sym_cmd_identifier_token12] = ACTIONS(1610), + [aux_sym_cmd_identifier_token13] = ACTIONS(1610), + [aux_sym_cmd_identifier_token14] = ACTIONS(1610), + [aux_sym_cmd_identifier_token15] = ACTIONS(1610), + [aux_sym_cmd_identifier_token16] = ACTIONS(1612), + [aux_sym_cmd_identifier_token17] = ACTIONS(1612), + [aux_sym_cmd_identifier_token18] = ACTIONS(1610), + [aux_sym_cmd_identifier_token19] = ACTIONS(1612), + [aux_sym_cmd_identifier_token20] = ACTIONS(1612), + [aux_sym_cmd_identifier_token21] = ACTIONS(1612), + [aux_sym_cmd_identifier_token22] = ACTIONS(1612), + [aux_sym_cmd_identifier_token23] = ACTIONS(1612), + [aux_sym_cmd_identifier_token24] = ACTIONS(1612), + [aux_sym_cmd_identifier_token25] = ACTIONS(1612), + [aux_sym_cmd_identifier_token26] = ACTIONS(1612), + [aux_sym_cmd_identifier_token27] = ACTIONS(1612), + [aux_sym_cmd_identifier_token28] = ACTIONS(1612), + [aux_sym_cmd_identifier_token29] = ACTIONS(1612), + [aux_sym_cmd_identifier_token30] = ACTIONS(1612), + [aux_sym_cmd_identifier_token31] = ACTIONS(1612), + [aux_sym_cmd_identifier_token32] = ACTIONS(1610), + [aux_sym_cmd_identifier_token33] = ACTIONS(1612), + [aux_sym_cmd_identifier_token34] = ACTIONS(1610), + [aux_sym_cmd_identifier_token35] = ACTIONS(1612), + [aux_sym_cmd_identifier_token36] = ACTIONS(1612), + [aux_sym_cmd_identifier_token37] = ACTIONS(1612), + [aux_sym_cmd_identifier_token38] = ACTIONS(1610), + [aux_sym_cmd_identifier_token39] = ACTIONS(1612), + [aux_sym_cmd_identifier_token40] = ACTIONS(1612), + [sym__newline] = ACTIONS(1614), + [anon_sym_SEMI] = ACTIONS(1616), + [anon_sym_def] = ACTIONS(1610), + [anon_sym_export_DASHenv] = ACTIONS(1610), + [anon_sym_extern] = ACTIONS(1610), + [anon_sym_module] = ACTIONS(1610), + [anon_sym_use] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(1612), + [anon_sym_DOLLAR] = ACTIONS(1610), + [anon_sym_error] = ACTIONS(1610), + [anon_sym_DASH2] = ACTIONS(1610), + [anon_sym_break] = ACTIONS(1610), + [anon_sym_continue] = ACTIONS(1610), + [anon_sym_for] = ACTIONS(1610), + [anon_sym_loop] = ACTIONS(1610), + [anon_sym_while] = ACTIONS(1610), + [anon_sym_do] = ACTIONS(1610), + [anon_sym_if] = ACTIONS(1610), + [anon_sym_match] = ACTIONS(1610), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_DOT_DOT] = ACTIONS(1610), + [anon_sym_try] = ACTIONS(1610), + [anon_sym_return] = ACTIONS(1610), + [anon_sym_source] = ACTIONS(1610), + [anon_sym_source_DASHenv] = ACTIONS(1610), + [anon_sym_hide] = ACTIONS(1610), + [anon_sym_hide_DASHenv] = ACTIONS(1610), + [anon_sym_overlay] = ACTIONS(1610), + [anon_sym_where] = ACTIONS(1612), + [aux_sym_expr_unary_token1] = ACTIONS(1612), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1612), + [anon_sym_DOT_DOT_LT] = ACTIONS(1612), + [anon_sym_null] = ACTIONS(1610), + [anon_sym_true] = ACTIONS(1610), + [anon_sym_false] = ACTIONS(1610), + [aux_sym__val_number_decimal_token1] = ACTIONS(1610), + [aux_sym__val_number_decimal_token2] = ACTIONS(1612), + [aux_sym__val_number_decimal_token3] = ACTIONS(1612), + [aux_sym__val_number_decimal_token4] = ACTIONS(1612), + [aux_sym__val_number_token1] = ACTIONS(1612), + [aux_sym__val_number_token2] = ACTIONS(1612), + [aux_sym__val_number_token3] = ACTIONS(1612), + [aux_sym__val_number_token4] = ACTIONS(1610), + [aux_sym__val_number_token5] = ACTIONS(1610), + [aux_sym__val_number_token6] = ACTIONS(1610), + [anon_sym_0b] = ACTIONS(1610), + [anon_sym_0o] = ACTIONS(1610), + [anon_sym_0x] = ACTIONS(1610), + [sym_val_date] = ACTIONS(1612), + [anon_sym_DQUOTE] = ACTIONS(1612), + [sym__str_single_quotes] = ACTIONS(1612), + [sym__str_back_ticks] = ACTIONS(1612), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1612), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1612), + [aux_sym_env_var_token1] = ACTIONS(1610), + [anon_sym_CARET] = ACTIONS(1612), + [aux_sym_command_token1] = ACTIONS(1612), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1612), }, [305] = { [sym_comment] = STATE(305), - [ts_builtin_sym_end] = ACTIONS(1614), - [anon_sym_export] = ACTIONS(1616), - [anon_sym_alias] = ACTIONS(1616), - [anon_sym_let] = ACTIONS(1616), - [anon_sym_let_DASHenv] = ACTIONS(1616), - [anon_sym_mut] = ACTIONS(1616), - [anon_sym_const] = ACTIONS(1616), - [aux_sym_cmd_identifier_token1] = ACTIONS(1616), - [aux_sym_cmd_identifier_token2] = ACTIONS(1614), - [aux_sym_cmd_identifier_token3] = ACTIONS(1614), - [aux_sym_cmd_identifier_token4] = ACTIONS(1614), - [aux_sym_cmd_identifier_token5] = ACTIONS(1614), - [aux_sym_cmd_identifier_token6] = ACTIONS(1614), - [aux_sym_cmd_identifier_token7] = ACTIONS(1614), - [aux_sym_cmd_identifier_token8] = ACTIONS(1616), - [aux_sym_cmd_identifier_token9] = ACTIONS(1616), - [aux_sym_cmd_identifier_token10] = ACTIONS(1614), - [aux_sym_cmd_identifier_token11] = ACTIONS(1614), - [aux_sym_cmd_identifier_token12] = ACTIONS(1616), - [aux_sym_cmd_identifier_token13] = ACTIONS(1616), - [aux_sym_cmd_identifier_token14] = ACTIONS(1616), - [aux_sym_cmd_identifier_token15] = ACTIONS(1616), - [aux_sym_cmd_identifier_token16] = ACTIONS(1614), - [aux_sym_cmd_identifier_token17] = ACTIONS(1614), - [aux_sym_cmd_identifier_token18] = ACTIONS(1616), - [aux_sym_cmd_identifier_token19] = ACTIONS(1614), - [aux_sym_cmd_identifier_token20] = ACTIONS(1614), - [aux_sym_cmd_identifier_token21] = ACTIONS(1614), - [aux_sym_cmd_identifier_token22] = ACTIONS(1614), - [aux_sym_cmd_identifier_token23] = ACTIONS(1614), - [aux_sym_cmd_identifier_token24] = ACTIONS(1614), - [aux_sym_cmd_identifier_token25] = ACTIONS(1614), - [aux_sym_cmd_identifier_token26] = ACTIONS(1614), - [aux_sym_cmd_identifier_token27] = ACTIONS(1614), - [aux_sym_cmd_identifier_token28] = ACTIONS(1614), - [aux_sym_cmd_identifier_token29] = ACTIONS(1614), - [aux_sym_cmd_identifier_token30] = ACTIONS(1614), - [aux_sym_cmd_identifier_token31] = ACTIONS(1614), - [aux_sym_cmd_identifier_token32] = ACTIONS(1616), - [aux_sym_cmd_identifier_token33] = ACTIONS(1614), - [aux_sym_cmd_identifier_token34] = ACTIONS(1616), - [aux_sym_cmd_identifier_token35] = ACTIONS(1614), - [aux_sym_cmd_identifier_token36] = ACTIONS(1614), - [aux_sym_cmd_identifier_token37] = ACTIONS(1614), - [aux_sym_cmd_identifier_token38] = ACTIONS(1616), - [aux_sym_cmd_identifier_token39] = ACTIONS(1614), - [aux_sym_cmd_identifier_token40] = ACTIONS(1614), - [sym__newline] = ACTIONS(1614), - [anon_sym_SEMI] = ACTIONS(1614), - [anon_sym_def] = ACTIONS(1616), - [anon_sym_export_DASHenv] = ACTIONS(1616), - [anon_sym_extern] = ACTIONS(1616), - [anon_sym_module] = ACTIONS(1616), - [anon_sym_use] = ACTIONS(1616), - [anon_sym_LBRACK] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(1614), - [anon_sym_DOLLAR] = ACTIONS(1616), - [anon_sym_error] = ACTIONS(1616), - [anon_sym_DASH2] = ACTIONS(1616), - [anon_sym_break] = ACTIONS(1616), - [anon_sym_continue] = ACTIONS(1616), - [anon_sym_for] = ACTIONS(1616), - [anon_sym_loop] = ACTIONS(1616), - [anon_sym_while] = ACTIONS(1616), - [anon_sym_do] = ACTIONS(1616), - [anon_sym_if] = ACTIONS(1616), - [anon_sym_match] = ACTIONS(1616), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_DOT_DOT] = ACTIONS(1616), - [anon_sym_try] = ACTIONS(1616), - [anon_sym_return] = ACTIONS(1616), - [anon_sym_source] = ACTIONS(1616), - [anon_sym_source_DASHenv] = ACTIONS(1616), - [anon_sym_register] = ACTIONS(1616), - [anon_sym_hide] = ACTIONS(1616), - [anon_sym_hide_DASHenv] = ACTIONS(1616), - [anon_sym_overlay] = ACTIONS(1616), - [anon_sym_where] = ACTIONS(1614), - [aux_sym_expr_unary_token1] = ACTIONS(1614), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1614), - [anon_sym_DOT_DOT_LT] = ACTIONS(1614), - [anon_sym_null] = ACTIONS(1616), - [anon_sym_true] = ACTIONS(1616), - [anon_sym_false] = ACTIONS(1616), - [aux_sym__val_number_decimal_token1] = ACTIONS(1616), - [aux_sym__val_number_decimal_token2] = ACTIONS(1614), - [aux_sym__val_number_decimal_token3] = ACTIONS(1614), - [aux_sym__val_number_decimal_token4] = ACTIONS(1614), - [aux_sym__val_number_token1] = ACTIONS(1614), - [aux_sym__val_number_token2] = ACTIONS(1614), - [aux_sym__val_number_token3] = ACTIONS(1614), - [aux_sym__val_number_token4] = ACTIONS(1616), - [aux_sym__val_number_token5] = ACTIONS(1616), - [aux_sym__val_number_token6] = ACTIONS(1616), - [anon_sym_0b] = ACTIONS(1616), - [anon_sym_0o] = ACTIONS(1616), - [anon_sym_0x] = ACTIONS(1616), - [sym_val_date] = ACTIONS(1614), - [anon_sym_DQUOTE] = ACTIONS(1614), - [sym__str_single_quotes] = ACTIONS(1614), - [sym__str_back_ticks] = ACTIONS(1614), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1614), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1614), - [aux_sym_env_var_token1] = ACTIONS(1616), - [anon_sym_CARET] = ACTIONS(1614), - [aux_sym_command_token1] = ACTIONS(1614), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1614), - }, - [306] = { - [sym_comment] = STATE(306), - [aux_sym_shebang_repeat1] = STATE(225), [anon_sym_export] = ACTIONS(1618), [anon_sym_alias] = ACTIONS(1618), [anon_sym_let] = ACTIONS(1618), @@ -115541,112 +115378,332 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mut] = ACTIONS(1618), [anon_sym_const] = ACTIONS(1618), [aux_sym_cmd_identifier_token1] = ACTIONS(1618), - [aux_sym_cmd_identifier_token2] = ACTIONS(1620), - [aux_sym_cmd_identifier_token3] = ACTIONS(1620), - [aux_sym_cmd_identifier_token4] = ACTIONS(1620), - [aux_sym_cmd_identifier_token5] = ACTIONS(1620), - [aux_sym_cmd_identifier_token6] = ACTIONS(1620), - [aux_sym_cmd_identifier_token7] = ACTIONS(1620), + [aux_sym_cmd_identifier_token2] = ACTIONS(1618), + [aux_sym_cmd_identifier_token3] = ACTIONS(1618), + [aux_sym_cmd_identifier_token4] = ACTIONS(1618), + [aux_sym_cmd_identifier_token5] = ACTIONS(1618), + [aux_sym_cmd_identifier_token6] = ACTIONS(1618), + [aux_sym_cmd_identifier_token7] = ACTIONS(1618), [aux_sym_cmd_identifier_token8] = ACTIONS(1618), [aux_sym_cmd_identifier_token9] = ACTIONS(1618), - [aux_sym_cmd_identifier_token10] = ACTIONS(1620), - [aux_sym_cmd_identifier_token11] = ACTIONS(1620), + [aux_sym_cmd_identifier_token10] = ACTIONS(1618), + [aux_sym_cmd_identifier_token11] = ACTIONS(1618), [aux_sym_cmd_identifier_token12] = ACTIONS(1618), [aux_sym_cmd_identifier_token13] = ACTIONS(1618), [aux_sym_cmd_identifier_token14] = ACTIONS(1618), [aux_sym_cmd_identifier_token15] = ACTIONS(1618), - [aux_sym_cmd_identifier_token16] = ACTIONS(1620), - [aux_sym_cmd_identifier_token17] = ACTIONS(1620), + [aux_sym_cmd_identifier_token16] = ACTIONS(1618), + [aux_sym_cmd_identifier_token17] = ACTIONS(1618), [aux_sym_cmd_identifier_token18] = ACTIONS(1618), - [aux_sym_cmd_identifier_token19] = ACTIONS(1620), - [aux_sym_cmd_identifier_token20] = ACTIONS(1620), - [aux_sym_cmd_identifier_token21] = ACTIONS(1620), - [aux_sym_cmd_identifier_token22] = ACTIONS(1620), - [aux_sym_cmd_identifier_token23] = ACTIONS(1620), - [aux_sym_cmd_identifier_token24] = ACTIONS(1620), - [aux_sym_cmd_identifier_token25] = ACTIONS(1620), - [aux_sym_cmd_identifier_token26] = ACTIONS(1620), - [aux_sym_cmd_identifier_token27] = ACTIONS(1620), - [aux_sym_cmd_identifier_token28] = ACTIONS(1620), - [aux_sym_cmd_identifier_token29] = ACTIONS(1620), - [aux_sym_cmd_identifier_token30] = ACTIONS(1620), - [aux_sym_cmd_identifier_token31] = ACTIONS(1620), + [aux_sym_cmd_identifier_token19] = ACTIONS(1618), + [aux_sym_cmd_identifier_token20] = ACTIONS(1618), + [aux_sym_cmd_identifier_token21] = ACTIONS(1618), + [aux_sym_cmd_identifier_token22] = ACTIONS(1618), + [aux_sym_cmd_identifier_token23] = ACTIONS(1618), + [aux_sym_cmd_identifier_token24] = ACTIONS(1618), + [aux_sym_cmd_identifier_token25] = ACTIONS(1618), + [aux_sym_cmd_identifier_token26] = ACTIONS(1618), + [aux_sym_cmd_identifier_token27] = ACTIONS(1618), + [aux_sym_cmd_identifier_token28] = ACTIONS(1618), + [aux_sym_cmd_identifier_token29] = ACTIONS(1618), + [aux_sym_cmd_identifier_token30] = ACTIONS(1618), + [aux_sym_cmd_identifier_token31] = ACTIONS(1618), [aux_sym_cmd_identifier_token32] = ACTIONS(1618), - [aux_sym_cmd_identifier_token33] = ACTIONS(1620), + [aux_sym_cmd_identifier_token33] = ACTIONS(1618), [aux_sym_cmd_identifier_token34] = ACTIONS(1618), - [aux_sym_cmd_identifier_token35] = ACTIONS(1620), - [aux_sym_cmd_identifier_token36] = ACTIONS(1620), - [aux_sym_cmd_identifier_token37] = ACTIONS(1620), + [aux_sym_cmd_identifier_token35] = ACTIONS(1618), + [aux_sym_cmd_identifier_token36] = ACTIONS(1618), + [aux_sym_cmd_identifier_token37] = ACTIONS(1618), [aux_sym_cmd_identifier_token38] = ACTIONS(1618), - [aux_sym_cmd_identifier_token39] = ACTIONS(1620), - [aux_sym_cmd_identifier_token40] = ACTIONS(1620), - [sym__newline] = ACTIONS(1600), - [anon_sym_SEMI] = ACTIONS(1622), + [aux_sym_cmd_identifier_token39] = ACTIONS(1618), + [aux_sym_cmd_identifier_token40] = ACTIONS(1618), [anon_sym_def] = ACTIONS(1618), [anon_sym_export_DASHenv] = ACTIONS(1618), [anon_sym_extern] = ACTIONS(1618), [anon_sym_module] = ACTIONS(1618), [anon_sym_use] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_LPAREN] = ACTIONS(1620), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_COMMA] = ACTIONS(1618), [anon_sym_DOLLAR] = ACTIONS(1618), [anon_sym_error] = ACTIONS(1618), [anon_sym_DASH2] = ACTIONS(1618), [anon_sym_break] = ACTIONS(1618), [anon_sym_continue] = ACTIONS(1618), [anon_sym_for] = ACTIONS(1618), + [anon_sym_in2] = ACTIONS(1618), [anon_sym_loop] = ACTIONS(1618), + [anon_sym_make] = ACTIONS(1618), [anon_sym_while] = ACTIONS(1618), [anon_sym_do] = ACTIONS(1618), [anon_sym_if] = ACTIONS(1618), + [anon_sym_else] = ACTIONS(1618), [anon_sym_match] = ACTIONS(1618), - [anon_sym_LBRACE] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1618), [anon_sym_try] = ACTIONS(1618), + [anon_sym_catch] = ACTIONS(1618), [anon_sym_return] = ACTIONS(1618), [anon_sym_source] = ACTIONS(1618), [anon_sym_source_DASHenv] = ACTIONS(1618), - [anon_sym_register] = ACTIONS(1618), [anon_sym_hide] = ACTIONS(1618), [anon_sym_hide_DASHenv] = ACTIONS(1618), [anon_sym_overlay] = ACTIONS(1618), - [anon_sym_where] = ACTIONS(1620), - [aux_sym_expr_unary_token1] = ACTIONS(1620), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1620), - [anon_sym_DOT_DOT_LT] = ACTIONS(1620), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_true] = ACTIONS(1618), - [anon_sym_false] = ACTIONS(1618), + [anon_sym_as] = ACTIONS(1618), + [anon_sym_LPAREN2] = ACTIONS(1620), + [anon_sym_PLUS2] = ACTIONS(1618), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1618), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [aux_sym__immediate_decimal_token2] = ACTIONS(1622), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1618), [aux_sym__val_number_decimal_token1] = ACTIONS(1618), - [aux_sym__val_number_decimal_token2] = ACTIONS(1620), - [aux_sym__val_number_decimal_token3] = ACTIONS(1620), - [aux_sym__val_number_decimal_token4] = ACTIONS(1620), - [aux_sym__val_number_token1] = ACTIONS(1620), - [aux_sym__val_number_token2] = ACTIONS(1620), - [aux_sym__val_number_token3] = ACTIONS(1620), + [aux_sym__val_number_decimal_token2] = ACTIONS(1618), + [aux_sym__val_number_decimal_token3] = ACTIONS(1618), + [aux_sym__val_number_decimal_token4] = ACTIONS(1618), + [aux_sym__val_number_token1] = ACTIONS(1618), + [aux_sym__val_number_token2] = ACTIONS(1618), + [aux_sym__val_number_token3] = ACTIONS(1618), [aux_sym__val_number_token4] = ACTIONS(1618), [aux_sym__val_number_token5] = ACTIONS(1618), [aux_sym__val_number_token6] = ACTIONS(1618), - [anon_sym_0b] = ACTIONS(1618), - [anon_sym_0o] = ACTIONS(1618), - [anon_sym_0x] = ACTIONS(1618), - [sym_val_date] = ACTIONS(1620), - [anon_sym_DQUOTE] = ACTIONS(1620), - [sym__str_single_quotes] = ACTIONS(1620), - [sym__str_back_ticks] = ACTIONS(1620), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1620), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1620), - [aux_sym_env_var_token1] = ACTIONS(1618), - [anon_sym_CARET] = ACTIONS(1620), - [aux_sym_command_token1] = ACTIONS(1620), - [anon_sym_POUND] = ACTIONS(251), + [sym_filesize_unit] = ACTIONS(1618), + [sym_duration_unit] = ACTIONS(1618), + [anon_sym_DQUOTE] = ACTIONS(1618), + [sym__str_single_quotes] = ACTIONS(1618), + [sym__str_back_ticks] = ACTIONS(1618), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1618), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1618), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1618), + [sym__entry_separator] = ACTIONS(1620), + [anon_sym_register] = ACTIONS(1618), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1620), }, + [306] = { + [sym_comment] = STATE(306), + [aux_sym__block_body_repeat1] = STATE(310), + [ts_builtin_sym_end] = ACTIONS(1493), + [anon_sym_export] = ACTIONS(1489), + [anon_sym_alias] = ACTIONS(1489), + [anon_sym_let] = ACTIONS(1489), + [anon_sym_let_DASHenv] = ACTIONS(1489), + [anon_sym_mut] = ACTIONS(1489), + [anon_sym_const] = ACTIONS(1489), + [aux_sym_cmd_identifier_token1] = ACTIONS(1489), + [aux_sym_cmd_identifier_token2] = ACTIONS(1491), + [aux_sym_cmd_identifier_token3] = ACTIONS(1491), + [aux_sym_cmd_identifier_token4] = ACTIONS(1491), + [aux_sym_cmd_identifier_token5] = ACTIONS(1491), + [aux_sym_cmd_identifier_token6] = ACTIONS(1491), + [aux_sym_cmd_identifier_token7] = ACTIONS(1491), + [aux_sym_cmd_identifier_token8] = ACTIONS(1489), + [aux_sym_cmd_identifier_token9] = ACTIONS(1489), + [aux_sym_cmd_identifier_token10] = ACTIONS(1491), + [aux_sym_cmd_identifier_token11] = ACTIONS(1491), + [aux_sym_cmd_identifier_token12] = ACTIONS(1489), + [aux_sym_cmd_identifier_token13] = ACTIONS(1489), + [aux_sym_cmd_identifier_token14] = ACTIONS(1489), + [aux_sym_cmd_identifier_token15] = ACTIONS(1489), + [aux_sym_cmd_identifier_token16] = ACTIONS(1491), + [aux_sym_cmd_identifier_token17] = ACTIONS(1491), + [aux_sym_cmd_identifier_token18] = ACTIONS(1489), + [aux_sym_cmd_identifier_token19] = ACTIONS(1491), + [aux_sym_cmd_identifier_token20] = ACTIONS(1491), + [aux_sym_cmd_identifier_token21] = ACTIONS(1491), + [aux_sym_cmd_identifier_token22] = ACTIONS(1491), + [aux_sym_cmd_identifier_token23] = ACTIONS(1491), + [aux_sym_cmd_identifier_token24] = ACTIONS(1491), + [aux_sym_cmd_identifier_token25] = ACTIONS(1491), + [aux_sym_cmd_identifier_token26] = ACTIONS(1491), + [aux_sym_cmd_identifier_token27] = ACTIONS(1491), + [aux_sym_cmd_identifier_token28] = ACTIONS(1491), + [aux_sym_cmd_identifier_token29] = ACTIONS(1491), + [aux_sym_cmd_identifier_token30] = ACTIONS(1491), + [aux_sym_cmd_identifier_token31] = ACTIONS(1491), + [aux_sym_cmd_identifier_token32] = ACTIONS(1489), + [aux_sym_cmd_identifier_token33] = ACTIONS(1491), + [aux_sym_cmd_identifier_token34] = ACTIONS(1489), + [aux_sym_cmd_identifier_token35] = ACTIONS(1491), + [aux_sym_cmd_identifier_token36] = ACTIONS(1491), + [aux_sym_cmd_identifier_token37] = ACTIONS(1491), + [aux_sym_cmd_identifier_token38] = ACTIONS(1489), + [aux_sym_cmd_identifier_token39] = ACTIONS(1491), + [aux_sym_cmd_identifier_token40] = ACTIONS(1491), + [sym__newline] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(25), + [anon_sym_def] = ACTIONS(1489), + [anon_sym_export_DASHenv] = ACTIONS(1489), + [anon_sym_extern] = ACTIONS(1489), + [anon_sym_module] = ACTIONS(1489), + [anon_sym_use] = ACTIONS(1489), + [anon_sym_LBRACK] = ACTIONS(1491), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_DOLLAR] = ACTIONS(1489), + [anon_sym_error] = ACTIONS(1489), + [anon_sym_DASH2] = ACTIONS(1489), + [anon_sym_break] = ACTIONS(1489), + [anon_sym_continue] = ACTIONS(1489), + [anon_sym_for] = ACTIONS(1489), + [anon_sym_loop] = ACTIONS(1489), + [anon_sym_while] = ACTIONS(1489), + [anon_sym_do] = ACTIONS(1489), + [anon_sym_if] = ACTIONS(1489), + [anon_sym_match] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1491), + [anon_sym_DOT_DOT] = ACTIONS(1489), + [anon_sym_try] = ACTIONS(1489), + [anon_sym_return] = ACTIONS(1489), + [anon_sym_source] = ACTIONS(1489), + [anon_sym_source_DASHenv] = ACTIONS(1489), + [anon_sym_hide] = ACTIONS(1489), + [anon_sym_hide_DASHenv] = ACTIONS(1489), + [anon_sym_overlay] = ACTIONS(1489), + [anon_sym_where] = ACTIONS(1491), + [aux_sym_expr_unary_token1] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1491), + [anon_sym_DOT_DOT_LT] = ACTIONS(1491), + [anon_sym_null] = ACTIONS(1489), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [aux_sym__val_number_decimal_token1] = ACTIONS(1489), + [aux_sym__val_number_decimal_token2] = ACTIONS(1491), + [aux_sym__val_number_decimal_token3] = ACTIONS(1491), + [aux_sym__val_number_decimal_token4] = ACTIONS(1491), + [aux_sym__val_number_token1] = ACTIONS(1491), + [aux_sym__val_number_token2] = ACTIONS(1491), + [aux_sym__val_number_token3] = ACTIONS(1491), + [aux_sym__val_number_token4] = ACTIONS(1489), + [aux_sym__val_number_token5] = ACTIONS(1489), + [aux_sym__val_number_token6] = ACTIONS(1489), + [anon_sym_0b] = ACTIONS(1489), + [anon_sym_0o] = ACTIONS(1489), + [anon_sym_0x] = ACTIONS(1489), + [sym_val_date] = ACTIONS(1491), + [anon_sym_DQUOTE] = ACTIONS(1491), + [sym__str_single_quotes] = ACTIONS(1491), + [sym__str_back_ticks] = ACTIONS(1491), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1491), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1491), + [aux_sym_env_var_token1] = ACTIONS(1489), + [anon_sym_CARET] = ACTIONS(1491), + [aux_sym_command_token1] = ACTIONS(1491), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1491), + }, [307] = { - [sym__expr_parenthesized_immediate] = STATE(630), - [sym__immediate_decimal] = STATE(631), - [sym_val_variable] = STATE(630), [sym_comment] = STATE(307), + [aux_sym__block_body_repeat1] = STATE(310), + [ts_builtin_sym_end] = ACTIONS(1502), + [anon_sym_export] = ACTIONS(1489), + [anon_sym_alias] = ACTIONS(1489), + [anon_sym_let] = ACTIONS(1489), + [anon_sym_let_DASHenv] = ACTIONS(1489), + [anon_sym_mut] = ACTIONS(1489), + [anon_sym_const] = ACTIONS(1489), + [aux_sym_cmd_identifier_token1] = ACTIONS(1489), + [aux_sym_cmd_identifier_token2] = ACTIONS(1491), + [aux_sym_cmd_identifier_token3] = ACTIONS(1491), + [aux_sym_cmd_identifier_token4] = ACTIONS(1491), + [aux_sym_cmd_identifier_token5] = ACTIONS(1491), + [aux_sym_cmd_identifier_token6] = ACTIONS(1491), + [aux_sym_cmd_identifier_token7] = ACTIONS(1491), + [aux_sym_cmd_identifier_token8] = ACTIONS(1489), + [aux_sym_cmd_identifier_token9] = ACTIONS(1489), + [aux_sym_cmd_identifier_token10] = ACTIONS(1491), + [aux_sym_cmd_identifier_token11] = ACTIONS(1491), + [aux_sym_cmd_identifier_token12] = ACTIONS(1489), + [aux_sym_cmd_identifier_token13] = ACTIONS(1489), + [aux_sym_cmd_identifier_token14] = ACTIONS(1489), + [aux_sym_cmd_identifier_token15] = ACTIONS(1489), + [aux_sym_cmd_identifier_token16] = ACTIONS(1491), + [aux_sym_cmd_identifier_token17] = ACTIONS(1491), + [aux_sym_cmd_identifier_token18] = ACTIONS(1489), + [aux_sym_cmd_identifier_token19] = ACTIONS(1491), + [aux_sym_cmd_identifier_token20] = ACTIONS(1491), + [aux_sym_cmd_identifier_token21] = ACTIONS(1491), + [aux_sym_cmd_identifier_token22] = ACTIONS(1491), + [aux_sym_cmd_identifier_token23] = ACTIONS(1491), + [aux_sym_cmd_identifier_token24] = ACTIONS(1491), + [aux_sym_cmd_identifier_token25] = ACTIONS(1491), + [aux_sym_cmd_identifier_token26] = ACTIONS(1491), + [aux_sym_cmd_identifier_token27] = ACTIONS(1491), + [aux_sym_cmd_identifier_token28] = ACTIONS(1491), + [aux_sym_cmd_identifier_token29] = ACTIONS(1491), + [aux_sym_cmd_identifier_token30] = ACTIONS(1491), + [aux_sym_cmd_identifier_token31] = ACTIONS(1491), + [aux_sym_cmd_identifier_token32] = ACTIONS(1489), + [aux_sym_cmd_identifier_token33] = ACTIONS(1491), + [aux_sym_cmd_identifier_token34] = ACTIONS(1489), + [aux_sym_cmd_identifier_token35] = ACTIONS(1491), + [aux_sym_cmd_identifier_token36] = ACTIONS(1491), + [aux_sym_cmd_identifier_token37] = ACTIONS(1491), + [aux_sym_cmd_identifier_token38] = ACTIONS(1489), + [aux_sym_cmd_identifier_token39] = ACTIONS(1491), + [aux_sym_cmd_identifier_token40] = ACTIONS(1491), + [sym__newline] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(25), + [anon_sym_def] = ACTIONS(1489), + [anon_sym_export_DASHenv] = ACTIONS(1489), + [anon_sym_extern] = ACTIONS(1489), + [anon_sym_module] = ACTIONS(1489), + [anon_sym_use] = ACTIONS(1489), + [anon_sym_LBRACK] = ACTIONS(1491), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_DOLLAR] = ACTIONS(1489), + [anon_sym_error] = ACTIONS(1489), + [anon_sym_DASH2] = ACTIONS(1489), + [anon_sym_break] = ACTIONS(1489), + [anon_sym_continue] = ACTIONS(1489), + [anon_sym_for] = ACTIONS(1489), + [anon_sym_loop] = ACTIONS(1489), + [anon_sym_while] = ACTIONS(1489), + [anon_sym_do] = ACTIONS(1489), + [anon_sym_if] = ACTIONS(1489), + [anon_sym_match] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1491), + [anon_sym_DOT_DOT] = ACTIONS(1489), + [anon_sym_try] = ACTIONS(1489), + [anon_sym_return] = ACTIONS(1489), + [anon_sym_source] = ACTIONS(1489), + [anon_sym_source_DASHenv] = ACTIONS(1489), + [anon_sym_hide] = ACTIONS(1489), + [anon_sym_hide_DASHenv] = ACTIONS(1489), + [anon_sym_overlay] = ACTIONS(1489), + [anon_sym_where] = ACTIONS(1491), + [aux_sym_expr_unary_token1] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1491), + [anon_sym_DOT_DOT_LT] = ACTIONS(1491), + [anon_sym_null] = ACTIONS(1489), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [aux_sym__val_number_decimal_token1] = ACTIONS(1489), + [aux_sym__val_number_decimal_token2] = ACTIONS(1491), + [aux_sym__val_number_decimal_token3] = ACTIONS(1491), + [aux_sym__val_number_decimal_token4] = ACTIONS(1491), + [aux_sym__val_number_token1] = ACTIONS(1491), + [aux_sym__val_number_token2] = ACTIONS(1491), + [aux_sym__val_number_token3] = ACTIONS(1491), + [aux_sym__val_number_token4] = ACTIONS(1489), + [aux_sym__val_number_token5] = ACTIONS(1489), + [aux_sym__val_number_token6] = ACTIONS(1489), + [anon_sym_0b] = ACTIONS(1489), + [anon_sym_0o] = ACTIONS(1489), + [anon_sym_0x] = ACTIONS(1489), + [sym_val_date] = ACTIONS(1491), + [anon_sym_DQUOTE] = ACTIONS(1491), + [sym__str_single_quotes] = ACTIONS(1491), + [sym__str_back_ticks] = ACTIONS(1491), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1491), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1491), + [aux_sym_env_var_token1] = ACTIONS(1489), + [anon_sym_CARET] = ACTIONS(1491), + [aux_sym_command_token1] = ACTIONS(1491), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1491), + }, + [308] = { + [sym_comment] = STATE(308), [anon_sym_export] = ACTIONS(1624), [anon_sym_alias] = ACTIONS(1624), [anon_sym_let] = ACTIONS(1624), @@ -115654,1103 +115711,993 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mut] = ACTIONS(1624), [anon_sym_const] = ACTIONS(1624), [aux_sym_cmd_identifier_token1] = ACTIONS(1624), - [aux_sym_cmd_identifier_token2] = ACTIONS(1624), - [aux_sym_cmd_identifier_token3] = ACTIONS(1624), - [aux_sym_cmd_identifier_token4] = ACTIONS(1624), - [aux_sym_cmd_identifier_token5] = ACTIONS(1624), - [aux_sym_cmd_identifier_token6] = ACTIONS(1624), - [aux_sym_cmd_identifier_token7] = ACTIONS(1624), + [aux_sym_cmd_identifier_token2] = ACTIONS(1292), + [aux_sym_cmd_identifier_token3] = ACTIONS(1292), + [aux_sym_cmd_identifier_token4] = ACTIONS(1292), + [aux_sym_cmd_identifier_token5] = ACTIONS(1292), + [aux_sym_cmd_identifier_token6] = ACTIONS(1292), + [aux_sym_cmd_identifier_token7] = ACTIONS(1292), [aux_sym_cmd_identifier_token8] = ACTIONS(1624), [aux_sym_cmd_identifier_token9] = ACTIONS(1624), - [aux_sym_cmd_identifier_token10] = ACTIONS(1624), - [aux_sym_cmd_identifier_token11] = ACTIONS(1624), + [aux_sym_cmd_identifier_token10] = ACTIONS(1292), + [aux_sym_cmd_identifier_token11] = ACTIONS(1292), [aux_sym_cmd_identifier_token12] = ACTIONS(1624), [aux_sym_cmd_identifier_token13] = ACTIONS(1624), [aux_sym_cmd_identifier_token14] = ACTIONS(1624), [aux_sym_cmd_identifier_token15] = ACTIONS(1624), - [aux_sym_cmd_identifier_token16] = ACTIONS(1624), - [aux_sym_cmd_identifier_token17] = ACTIONS(1624), + [aux_sym_cmd_identifier_token16] = ACTIONS(1292), + [aux_sym_cmd_identifier_token17] = ACTIONS(1292), [aux_sym_cmd_identifier_token18] = ACTIONS(1624), - [aux_sym_cmd_identifier_token19] = ACTIONS(1624), - [aux_sym_cmd_identifier_token20] = ACTIONS(1624), - [aux_sym_cmd_identifier_token21] = ACTIONS(1624), - [aux_sym_cmd_identifier_token22] = ACTIONS(1624), - [aux_sym_cmd_identifier_token23] = ACTIONS(1624), - [aux_sym_cmd_identifier_token24] = ACTIONS(1624), - [aux_sym_cmd_identifier_token25] = ACTIONS(1624), - [aux_sym_cmd_identifier_token26] = ACTIONS(1624), - [aux_sym_cmd_identifier_token27] = ACTIONS(1624), - [aux_sym_cmd_identifier_token28] = ACTIONS(1624), - [aux_sym_cmd_identifier_token29] = ACTIONS(1624), - [aux_sym_cmd_identifier_token30] = ACTIONS(1624), - [aux_sym_cmd_identifier_token31] = ACTIONS(1624), + [aux_sym_cmd_identifier_token19] = ACTIONS(1292), + [aux_sym_cmd_identifier_token20] = ACTIONS(1292), + [aux_sym_cmd_identifier_token21] = ACTIONS(1292), + [aux_sym_cmd_identifier_token22] = ACTIONS(1292), + [aux_sym_cmd_identifier_token23] = ACTIONS(1292), + [aux_sym_cmd_identifier_token24] = ACTIONS(1292), + [aux_sym_cmd_identifier_token25] = ACTIONS(1292), + [aux_sym_cmd_identifier_token26] = ACTIONS(1292), + [aux_sym_cmd_identifier_token27] = ACTIONS(1292), + [aux_sym_cmd_identifier_token28] = ACTIONS(1292), + [aux_sym_cmd_identifier_token29] = ACTIONS(1292), + [aux_sym_cmd_identifier_token30] = ACTIONS(1292), + [aux_sym_cmd_identifier_token31] = ACTIONS(1292), [aux_sym_cmd_identifier_token32] = ACTIONS(1624), - [aux_sym_cmd_identifier_token33] = ACTIONS(1624), + [aux_sym_cmd_identifier_token33] = ACTIONS(1292), [aux_sym_cmd_identifier_token34] = ACTIONS(1624), - [aux_sym_cmd_identifier_token35] = ACTIONS(1624), - [aux_sym_cmd_identifier_token36] = ACTIONS(1624), - [aux_sym_cmd_identifier_token37] = ACTIONS(1624), + [aux_sym_cmd_identifier_token35] = ACTIONS(1292), + [aux_sym_cmd_identifier_token36] = ACTIONS(1292), + [aux_sym_cmd_identifier_token37] = ACTIONS(1292), [aux_sym_cmd_identifier_token38] = ACTIONS(1624), - [aux_sym_cmd_identifier_token39] = ACTIONS(1624), - [aux_sym_cmd_identifier_token40] = ACTIONS(1624), + [aux_sym_cmd_identifier_token39] = ACTIONS(1292), + [aux_sym_cmd_identifier_token40] = ACTIONS(1292), + [sym__newline] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1292), [anon_sym_def] = ACTIONS(1624), [anon_sym_export_DASHenv] = ACTIONS(1624), [anon_sym_extern] = ACTIONS(1624), [anon_sym_module] = ACTIONS(1624), [anon_sym_use] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(1624), - [anon_sym_COMMA] = ACTIONS(1624), - [anon_sym_DOLLAR] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_RPAREN] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1624), [anon_sym_error] = ACTIONS(1624), [anon_sym_DASH2] = ACTIONS(1624), [anon_sym_break] = ACTIONS(1624), [anon_sym_continue] = ACTIONS(1624), [anon_sym_for] = ACTIONS(1624), - [anon_sym_in2] = ACTIONS(1624), [anon_sym_loop] = ACTIONS(1624), - [anon_sym_make] = ACTIONS(1624), [anon_sym_while] = ACTIONS(1624), [anon_sym_do] = ACTIONS(1624), [anon_sym_if] = ACTIONS(1624), - [anon_sym_else] = ACTIONS(1624), [anon_sym_match] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1624), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_RBRACE] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1624), [anon_sym_try] = ACTIONS(1624), - [anon_sym_catch] = ACTIONS(1624), [anon_sym_return] = ACTIONS(1624), [anon_sym_source] = ACTIONS(1624), [anon_sym_source_DASHenv] = ACTIONS(1624), - [anon_sym_register] = ACTIONS(1624), [anon_sym_hide] = ACTIONS(1624), [anon_sym_hide_DASHenv] = ACTIONS(1624), [anon_sym_overlay] = ACTIONS(1624), - [anon_sym_as] = ACTIONS(1624), - [anon_sym_LPAREN2] = ACTIONS(1528), - [anon_sym_PLUS2] = ACTIONS(1624), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1624), - [aux_sym__immediate_decimal_token1] = ACTIONS(1606), - [aux_sym__immediate_decimal_token3] = ACTIONS(1606), - [aux_sym__immediate_decimal_token4] = ACTIONS(1608), - [aux_sym__immediate_decimal_token5] = ACTIONS(1610), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1624), + [anon_sym_where] = ACTIONS(1292), + [aux_sym_expr_unary_token1] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1292), + [anon_sym_DOT_DOT_LT] = ACTIONS(1292), + [anon_sym_null] = ACTIONS(1624), + [anon_sym_true] = ACTIONS(1624), + [anon_sym_false] = ACTIONS(1624), [aux_sym__val_number_decimal_token1] = ACTIONS(1624), - [aux_sym__val_number_decimal_token2] = ACTIONS(1624), - [aux_sym__val_number_decimal_token3] = ACTIONS(1624), - [aux_sym__val_number_decimal_token4] = ACTIONS(1624), - [aux_sym__val_number_token1] = ACTIONS(1624), - [aux_sym__val_number_token2] = ACTIONS(1624), - [aux_sym__val_number_token3] = ACTIONS(1624), + [aux_sym__val_number_decimal_token2] = ACTIONS(1292), + [aux_sym__val_number_decimal_token3] = ACTIONS(1292), + [aux_sym__val_number_decimal_token4] = ACTIONS(1292), + [aux_sym__val_number_token1] = ACTIONS(1292), + [aux_sym__val_number_token2] = ACTIONS(1292), + [aux_sym__val_number_token3] = ACTIONS(1292), [aux_sym__val_number_token4] = ACTIONS(1624), [aux_sym__val_number_token5] = ACTIONS(1624), [aux_sym__val_number_token6] = ACTIONS(1624), - [anon_sym_DQUOTE] = ACTIONS(1624), - [sym__str_single_quotes] = ACTIONS(1624), - [sym__str_back_ticks] = ACTIONS(1624), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1624), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1624), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1624), - [sym__entry_separator] = ACTIONS(1626), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1626), - }, - [308] = { - [sym__expr_parenthesized_immediate] = STATE(686), - [sym__immediate_decimal] = STATE(580), - [sym_val_variable] = STATE(686), - [sym_comment] = STATE(308), - [anon_sym_export] = ACTIONS(1461), - [anon_sym_alias] = ACTIONS(1461), - [anon_sym_let] = ACTIONS(1461), - [anon_sym_let_DASHenv] = ACTIONS(1461), - [anon_sym_mut] = ACTIONS(1461), - [anon_sym_const] = ACTIONS(1461), - [aux_sym_cmd_identifier_token1] = ACTIONS(1461), - [aux_sym_cmd_identifier_token2] = ACTIONS(1475), - [aux_sym_cmd_identifier_token3] = ACTIONS(1475), - [aux_sym_cmd_identifier_token4] = ACTIONS(1475), - [aux_sym_cmd_identifier_token5] = ACTIONS(1475), - [aux_sym_cmd_identifier_token6] = ACTIONS(1475), - [aux_sym_cmd_identifier_token7] = ACTIONS(1475), - [aux_sym_cmd_identifier_token8] = ACTIONS(1461), - [aux_sym_cmd_identifier_token9] = ACTIONS(1461), - [aux_sym_cmd_identifier_token10] = ACTIONS(1475), - [aux_sym_cmd_identifier_token11] = ACTIONS(1475), - [aux_sym_cmd_identifier_token12] = ACTIONS(1461), - [aux_sym_cmd_identifier_token13] = ACTIONS(1461), - [aux_sym_cmd_identifier_token14] = ACTIONS(1461), - [aux_sym_cmd_identifier_token15] = ACTIONS(1461), - [aux_sym_cmd_identifier_token16] = ACTIONS(1475), - [aux_sym_cmd_identifier_token17] = ACTIONS(1475), - [aux_sym_cmd_identifier_token18] = ACTIONS(1475), - [aux_sym_cmd_identifier_token19] = ACTIONS(1475), - [aux_sym_cmd_identifier_token20] = ACTIONS(1475), - [aux_sym_cmd_identifier_token21] = ACTIONS(1475), - [aux_sym_cmd_identifier_token22] = ACTIONS(1475), - [aux_sym_cmd_identifier_token23] = ACTIONS(1475), - [aux_sym_cmd_identifier_token24] = ACTIONS(1475), - [aux_sym_cmd_identifier_token25] = ACTIONS(1475), - [aux_sym_cmd_identifier_token26] = ACTIONS(1475), - [aux_sym_cmd_identifier_token27] = ACTIONS(1475), - [aux_sym_cmd_identifier_token28] = ACTIONS(1475), - [aux_sym_cmd_identifier_token29] = ACTIONS(1475), - [aux_sym_cmd_identifier_token30] = ACTIONS(1475), - [aux_sym_cmd_identifier_token31] = ACTIONS(1475), - [aux_sym_cmd_identifier_token32] = ACTIONS(1475), - [aux_sym_cmd_identifier_token33] = ACTIONS(1475), - [aux_sym_cmd_identifier_token34] = ACTIONS(1461), - [aux_sym_cmd_identifier_token35] = ACTIONS(1475), - [aux_sym_cmd_identifier_token36] = ACTIONS(1475), - [aux_sym_cmd_identifier_token37] = ACTIONS(1475), - [aux_sym_cmd_identifier_token38] = ACTIONS(1461), - [aux_sym_cmd_identifier_token39] = ACTIONS(1475), - [aux_sym_cmd_identifier_token40] = ACTIONS(1475), - [anon_sym_def] = ACTIONS(1461), - [anon_sym_export_DASHenv] = ACTIONS(1461), - [anon_sym_extern] = ACTIONS(1461), - [anon_sym_module] = ACTIONS(1461), - [anon_sym_use] = ACTIONS(1461), - [anon_sym_LPAREN] = ACTIONS(1461), - [anon_sym_COMMA] = ACTIONS(1475), - [anon_sym_DOLLAR] = ACTIONS(1317), - [anon_sym_error] = ACTIONS(1461), - [anon_sym_DASH2] = ACTIONS(1461), - [anon_sym_break] = ACTIONS(1461), - [anon_sym_continue] = ACTIONS(1461), - [anon_sym_for] = ACTIONS(1461), - [anon_sym_in2] = ACTIONS(1461), - [anon_sym_loop] = ACTIONS(1461), - [anon_sym_make] = ACTIONS(1461), - [anon_sym_while] = ACTIONS(1461), - [anon_sym_do] = ACTIONS(1461), - [anon_sym_if] = ACTIONS(1461), - [anon_sym_else] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1461), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym_try] = ACTIONS(1461), - [anon_sym_catch] = ACTIONS(1461), - [anon_sym_return] = ACTIONS(1461), - [anon_sym_source] = ACTIONS(1461), - [anon_sym_source_DASHenv] = ACTIONS(1461), - [anon_sym_register] = ACTIONS(1461), - [anon_sym_hide] = ACTIONS(1461), - [anon_sym_hide_DASHenv] = ACTIONS(1461), - [anon_sym_overlay] = ACTIONS(1461), - [anon_sym_as] = ACTIONS(1461), - [anon_sym_LPAREN2] = ACTIONS(1628), - [anon_sym_PLUS2] = ACTIONS(1461), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1475), - [aux_sym__immediate_decimal_token1] = ACTIONS(1630), - [aux_sym__immediate_decimal_token3] = ACTIONS(1632), - [aux_sym__immediate_decimal_token4] = ACTIONS(1634), - [aux_sym__immediate_decimal_token5] = ACTIONS(1636), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1475), - [aux_sym__val_number_decimal_token1] = ACTIONS(1461), - [aux_sym__val_number_decimal_token2] = ACTIONS(1461), - [aux_sym__val_number_decimal_token3] = ACTIONS(1461), - [aux_sym__val_number_decimal_token4] = ACTIONS(1461), - [aux_sym__val_number_token1] = ACTIONS(1475), - [aux_sym__val_number_token2] = ACTIONS(1475), - [aux_sym__val_number_token3] = ACTIONS(1475), - [aux_sym__val_number_token4] = ACTIONS(1461), - [aux_sym__val_number_token5] = ACTIONS(1461), - [aux_sym__val_number_token6] = ACTIONS(1461), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1475), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1477), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1475), + [anon_sym_0b] = ACTIONS(1624), + [anon_sym_0o] = ACTIONS(1624), + [anon_sym_0x] = ACTIONS(1624), + [sym_val_date] = ACTIONS(1292), + [anon_sym_DQUOTE] = ACTIONS(1292), + [sym__str_single_quotes] = ACTIONS(1292), + [sym__str_back_ticks] = ACTIONS(1292), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1292), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1292), + [aux_sym_env_var_token1] = ACTIONS(1624), + [anon_sym_CARET] = ACTIONS(1292), + [aux_sym_command_token1] = ACTIONS(1292), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1292), }, [309] = { - [sym__expr_parenthesized_immediate] = STATE(710), - [sym__immediate_decimal] = STATE(557), - [sym_val_variable] = STATE(710), [sym_comment] = STATE(309), - [anon_sym_export] = ACTIONS(1536), - [anon_sym_alias] = ACTIONS(1536), - [anon_sym_let] = ACTIONS(1536), - [anon_sym_let_DASHenv] = ACTIONS(1536), - [anon_sym_mut] = ACTIONS(1536), - [anon_sym_const] = ACTIONS(1536), - [aux_sym_cmd_identifier_token1] = ACTIONS(1536), - [aux_sym_cmd_identifier_token2] = ACTIONS(1538), - [aux_sym_cmd_identifier_token3] = ACTIONS(1538), - [aux_sym_cmd_identifier_token4] = ACTIONS(1538), - [aux_sym_cmd_identifier_token5] = ACTIONS(1538), - [aux_sym_cmd_identifier_token6] = ACTIONS(1538), - [aux_sym_cmd_identifier_token7] = ACTIONS(1538), - [aux_sym_cmd_identifier_token8] = ACTIONS(1536), - [aux_sym_cmd_identifier_token9] = ACTIONS(1536), - [aux_sym_cmd_identifier_token10] = ACTIONS(1538), - [aux_sym_cmd_identifier_token11] = ACTIONS(1538), - [aux_sym_cmd_identifier_token12] = ACTIONS(1536), - [aux_sym_cmd_identifier_token13] = ACTIONS(1536), - [aux_sym_cmd_identifier_token14] = ACTIONS(1536), - [aux_sym_cmd_identifier_token15] = ACTIONS(1536), - [aux_sym_cmd_identifier_token16] = ACTIONS(1538), - [aux_sym_cmd_identifier_token17] = ACTIONS(1538), - [aux_sym_cmd_identifier_token18] = ACTIONS(1538), - [aux_sym_cmd_identifier_token19] = ACTIONS(1538), - [aux_sym_cmd_identifier_token20] = ACTIONS(1538), - [aux_sym_cmd_identifier_token21] = ACTIONS(1538), - [aux_sym_cmd_identifier_token22] = ACTIONS(1538), - [aux_sym_cmd_identifier_token23] = ACTIONS(1538), - [aux_sym_cmd_identifier_token24] = ACTIONS(1538), - [aux_sym_cmd_identifier_token25] = ACTIONS(1538), - [aux_sym_cmd_identifier_token26] = ACTIONS(1538), - [aux_sym_cmd_identifier_token27] = ACTIONS(1538), - [aux_sym_cmd_identifier_token28] = ACTIONS(1538), - [aux_sym_cmd_identifier_token29] = ACTIONS(1538), - [aux_sym_cmd_identifier_token30] = ACTIONS(1538), - [aux_sym_cmd_identifier_token31] = ACTIONS(1538), - [aux_sym_cmd_identifier_token32] = ACTIONS(1538), - [aux_sym_cmd_identifier_token33] = ACTIONS(1538), - [aux_sym_cmd_identifier_token34] = ACTIONS(1536), - [aux_sym_cmd_identifier_token35] = ACTIONS(1538), - [aux_sym_cmd_identifier_token36] = ACTIONS(1538), - [aux_sym_cmd_identifier_token37] = ACTIONS(1538), - [aux_sym_cmd_identifier_token38] = ACTIONS(1536), - [aux_sym_cmd_identifier_token39] = ACTIONS(1538), - [aux_sym_cmd_identifier_token40] = ACTIONS(1538), - [anon_sym_def] = ACTIONS(1536), - [anon_sym_export_DASHenv] = ACTIONS(1536), - [anon_sym_extern] = ACTIONS(1536), - [anon_sym_module] = ACTIONS(1536), - [anon_sym_use] = ACTIONS(1536), - [anon_sym_LPAREN] = ACTIONS(1536), - [anon_sym_COMMA] = ACTIONS(1538), - [anon_sym_DOLLAR] = ACTIONS(1317), - [anon_sym_error] = ACTIONS(1536), - [anon_sym_DASH2] = ACTIONS(1536), - [anon_sym_break] = ACTIONS(1536), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_for] = ACTIONS(1536), - [anon_sym_in2] = ACTIONS(1536), - [anon_sym_loop] = ACTIONS(1536), - [anon_sym_make] = ACTIONS(1536), - [anon_sym_while] = ACTIONS(1536), - [anon_sym_do] = ACTIONS(1536), - [anon_sym_if] = ACTIONS(1536), - [anon_sym_else] = ACTIONS(1536), - [anon_sym_match] = ACTIONS(1536), - [anon_sym_RBRACE] = ACTIONS(1538), - [anon_sym_try] = ACTIONS(1536), - [anon_sym_catch] = ACTIONS(1536), - [anon_sym_return] = ACTIONS(1536), - [anon_sym_source] = ACTIONS(1536), - [anon_sym_source_DASHenv] = ACTIONS(1536), - [anon_sym_register] = ACTIONS(1536), - [anon_sym_hide] = ACTIONS(1536), - [anon_sym_hide_DASHenv] = ACTIONS(1536), - [anon_sym_overlay] = ACTIONS(1536), - [anon_sym_as] = ACTIONS(1536), - [anon_sym_LPAREN2] = ACTIONS(1628), - [anon_sym_PLUS2] = ACTIONS(1536), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1538), - [aux_sym__immediate_decimal_token1] = ACTIONS(1630), - [aux_sym__immediate_decimal_token3] = ACTIONS(1632), - [aux_sym__immediate_decimal_token4] = ACTIONS(1634), - [aux_sym__immediate_decimal_token5] = ACTIONS(1636), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1538), - [aux_sym__val_number_decimal_token1] = ACTIONS(1536), - [aux_sym__val_number_decimal_token2] = ACTIONS(1536), - [aux_sym__val_number_decimal_token3] = ACTIONS(1536), - [aux_sym__val_number_decimal_token4] = ACTIONS(1536), - [aux_sym__val_number_token1] = ACTIONS(1538), - [aux_sym__val_number_token2] = ACTIONS(1538), - [aux_sym__val_number_token3] = ACTIONS(1538), - [aux_sym__val_number_token4] = ACTIONS(1536), - [aux_sym__val_number_token5] = ACTIONS(1536), - [aux_sym__val_number_token6] = ACTIONS(1536), - [anon_sym_DQUOTE] = ACTIONS(1538), - [sym__str_single_quotes] = ACTIONS(1538), - [sym__str_back_ticks] = ACTIONS(1538), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1538), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1538), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1538), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1540), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1538), + [aux_sym_shebang_repeat1] = STATE(6958), + [aux_sym__parenthesized_body_repeat1] = STATE(309), + [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(1628), + [aux_sym_cmd_identifier_token3] = ACTIONS(1628), + [aux_sym_cmd_identifier_token4] = ACTIONS(1628), + [aux_sym_cmd_identifier_token5] = ACTIONS(1628), + [aux_sym_cmd_identifier_token6] = ACTIONS(1628), + [aux_sym_cmd_identifier_token7] = ACTIONS(1628), + [aux_sym_cmd_identifier_token8] = ACTIONS(1626), + [aux_sym_cmd_identifier_token9] = ACTIONS(1626), + [aux_sym_cmd_identifier_token10] = ACTIONS(1628), + [aux_sym_cmd_identifier_token11] = ACTIONS(1628), + [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(1628), + [aux_sym_cmd_identifier_token17] = ACTIONS(1628), + [aux_sym_cmd_identifier_token18] = ACTIONS(1626), + [aux_sym_cmd_identifier_token19] = ACTIONS(1628), + [aux_sym_cmd_identifier_token20] = ACTIONS(1628), + [aux_sym_cmd_identifier_token21] = ACTIONS(1628), + [aux_sym_cmd_identifier_token22] = ACTIONS(1628), + [aux_sym_cmd_identifier_token23] = ACTIONS(1628), + [aux_sym_cmd_identifier_token24] = ACTIONS(1628), + [aux_sym_cmd_identifier_token25] = ACTIONS(1628), + [aux_sym_cmd_identifier_token26] = ACTIONS(1628), + [aux_sym_cmd_identifier_token27] = ACTIONS(1628), + [aux_sym_cmd_identifier_token28] = ACTIONS(1628), + [aux_sym_cmd_identifier_token29] = ACTIONS(1628), + [aux_sym_cmd_identifier_token30] = ACTIONS(1628), + [aux_sym_cmd_identifier_token31] = ACTIONS(1628), + [aux_sym_cmd_identifier_token32] = ACTIONS(1626), + [aux_sym_cmd_identifier_token33] = ACTIONS(1628), + [aux_sym_cmd_identifier_token34] = ACTIONS(1626), + [aux_sym_cmd_identifier_token35] = ACTIONS(1628), + [aux_sym_cmd_identifier_token36] = ACTIONS(1628), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = 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), + [anon_sym_LBRACE] = 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_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), + [anon_sym_null] = ACTIONS(1626), + [anon_sym_true] = ACTIONS(1626), + [anon_sym_false] = ACTIONS(1626), + [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), + [aux_sym__val_number_token4] = ACTIONS(1626), + [aux_sym__val_number_token5] = ACTIONS(1626), + [aux_sym__val_number_token6] = ACTIONS(1626), + [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), + [aux_sym_command_token1] = ACTIONS(1628), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1628), }, [310] = { [sym_comment] = STATE(310), - [aux_sym__block_body_repeat1] = STATE(213), - [anon_sym_export] = ACTIONS(1455), - [anon_sym_alias] = ACTIONS(1455), - [anon_sym_let] = ACTIONS(1455), - [anon_sym_let_DASHenv] = ACTIONS(1455), - [anon_sym_mut] = ACTIONS(1455), - [anon_sym_const] = ACTIONS(1455), - [aux_sym_cmd_identifier_token1] = ACTIONS(1455), - [aux_sym_cmd_identifier_token2] = ACTIONS(1457), - [aux_sym_cmd_identifier_token3] = ACTIONS(1457), - [aux_sym_cmd_identifier_token4] = ACTIONS(1457), - [aux_sym_cmd_identifier_token5] = ACTIONS(1457), - [aux_sym_cmd_identifier_token6] = ACTIONS(1457), - [aux_sym_cmd_identifier_token7] = ACTIONS(1457), - [aux_sym_cmd_identifier_token8] = ACTIONS(1455), - [aux_sym_cmd_identifier_token9] = ACTIONS(1455), - [aux_sym_cmd_identifier_token10] = ACTIONS(1457), - [aux_sym_cmd_identifier_token11] = ACTIONS(1457), - [aux_sym_cmd_identifier_token12] = ACTIONS(1455), - [aux_sym_cmd_identifier_token13] = ACTIONS(1455), - [aux_sym_cmd_identifier_token14] = ACTIONS(1455), - [aux_sym_cmd_identifier_token15] = ACTIONS(1455), - [aux_sym_cmd_identifier_token16] = ACTIONS(1457), - [aux_sym_cmd_identifier_token17] = ACTIONS(1457), - [aux_sym_cmd_identifier_token18] = ACTIONS(1455), - [aux_sym_cmd_identifier_token19] = ACTIONS(1457), - [aux_sym_cmd_identifier_token20] = ACTIONS(1457), - [aux_sym_cmd_identifier_token21] = ACTIONS(1457), - [aux_sym_cmd_identifier_token22] = ACTIONS(1457), - [aux_sym_cmd_identifier_token23] = ACTIONS(1457), - [aux_sym_cmd_identifier_token24] = ACTIONS(1457), - [aux_sym_cmd_identifier_token25] = ACTIONS(1457), - [aux_sym_cmd_identifier_token26] = ACTIONS(1457), - [aux_sym_cmd_identifier_token27] = ACTIONS(1457), - [aux_sym_cmd_identifier_token28] = ACTIONS(1457), - [aux_sym_cmd_identifier_token29] = ACTIONS(1457), - [aux_sym_cmd_identifier_token30] = ACTIONS(1457), - [aux_sym_cmd_identifier_token31] = ACTIONS(1457), - [aux_sym_cmd_identifier_token32] = ACTIONS(1455), - [aux_sym_cmd_identifier_token33] = ACTIONS(1457), - [aux_sym_cmd_identifier_token34] = ACTIONS(1455), - [aux_sym_cmd_identifier_token35] = ACTIONS(1457), - [aux_sym_cmd_identifier_token36] = ACTIONS(1457), - [aux_sym_cmd_identifier_token37] = ACTIONS(1457), - [aux_sym_cmd_identifier_token38] = ACTIONS(1455), - [aux_sym_cmd_identifier_token39] = ACTIONS(1457), - [aux_sym_cmd_identifier_token40] = ACTIONS(1457), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(1455), - [anon_sym_export_DASHenv] = ACTIONS(1455), - [anon_sym_extern] = ACTIONS(1455), - [anon_sym_module] = ACTIONS(1455), - [anon_sym_use] = ACTIONS(1455), - [anon_sym_LBRACK] = ACTIONS(1457), - [anon_sym_LPAREN] = ACTIONS(1457), - [anon_sym_DOLLAR] = ACTIONS(1455), - [anon_sym_error] = ACTIONS(1455), - [anon_sym_DASH2] = ACTIONS(1455), - [anon_sym_break] = ACTIONS(1455), - [anon_sym_continue] = ACTIONS(1455), - [anon_sym_for] = ACTIONS(1455), - [anon_sym_loop] = ACTIONS(1455), - [anon_sym_while] = ACTIONS(1455), - [anon_sym_do] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1455), - [anon_sym_match] = ACTIONS(1455), - [anon_sym_LBRACE] = ACTIONS(1457), - [anon_sym_DOT_DOT] = ACTIONS(1455), - [anon_sym_try] = ACTIONS(1455), - [anon_sym_return] = ACTIONS(1455), - [anon_sym_source] = ACTIONS(1455), - [anon_sym_source_DASHenv] = ACTIONS(1455), - [anon_sym_register] = ACTIONS(1455), - [anon_sym_hide] = ACTIONS(1455), - [anon_sym_hide_DASHenv] = ACTIONS(1455), - [anon_sym_overlay] = ACTIONS(1455), - [anon_sym_where] = ACTIONS(1457), - [aux_sym_expr_unary_token1] = ACTIONS(1457), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1457), - [anon_sym_DOT_DOT_LT] = ACTIONS(1457), - [anon_sym_null] = ACTIONS(1455), - [anon_sym_true] = ACTIONS(1455), - [anon_sym_false] = ACTIONS(1455), - [aux_sym__val_number_decimal_token1] = ACTIONS(1455), - [aux_sym__val_number_decimal_token2] = ACTIONS(1457), - [aux_sym__val_number_decimal_token3] = ACTIONS(1457), - [aux_sym__val_number_decimal_token4] = ACTIONS(1457), - [aux_sym__val_number_token1] = ACTIONS(1457), - [aux_sym__val_number_token2] = ACTIONS(1457), - [aux_sym__val_number_token3] = ACTIONS(1457), - [aux_sym__val_number_token4] = ACTIONS(1455), - [aux_sym__val_number_token5] = ACTIONS(1455), - [aux_sym__val_number_token6] = ACTIONS(1455), - [anon_sym_0b] = ACTIONS(1455), - [anon_sym_0o] = ACTIONS(1455), - [anon_sym_0x] = ACTIONS(1455), - [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), - [aux_sym_env_var_token1] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1457), - [aux_sym_command_token1] = ACTIONS(1457), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1457), + [aux_sym__block_body_repeat1] = STATE(310), + [ts_builtin_sym_end] = ACTIONS(1497), + [anon_sym_export] = ACTIONS(1495), + [anon_sym_alias] = ACTIONS(1495), + [anon_sym_let] = ACTIONS(1495), + [anon_sym_let_DASHenv] = ACTIONS(1495), + [anon_sym_mut] = ACTIONS(1495), + [anon_sym_const] = ACTIONS(1495), + [aux_sym_cmd_identifier_token1] = ACTIONS(1495), + [aux_sym_cmd_identifier_token2] = ACTIONS(1497), + [aux_sym_cmd_identifier_token3] = ACTIONS(1497), + [aux_sym_cmd_identifier_token4] = ACTIONS(1497), + [aux_sym_cmd_identifier_token5] = ACTIONS(1497), + [aux_sym_cmd_identifier_token6] = ACTIONS(1497), + [aux_sym_cmd_identifier_token7] = ACTIONS(1497), + [aux_sym_cmd_identifier_token8] = ACTIONS(1495), + [aux_sym_cmd_identifier_token9] = ACTIONS(1495), + [aux_sym_cmd_identifier_token10] = ACTIONS(1497), + [aux_sym_cmd_identifier_token11] = ACTIONS(1497), + [aux_sym_cmd_identifier_token12] = ACTIONS(1495), + [aux_sym_cmd_identifier_token13] = ACTIONS(1495), + [aux_sym_cmd_identifier_token14] = ACTIONS(1495), + [aux_sym_cmd_identifier_token15] = ACTIONS(1495), + [aux_sym_cmd_identifier_token16] = ACTIONS(1497), + [aux_sym_cmd_identifier_token17] = ACTIONS(1497), + [aux_sym_cmd_identifier_token18] = ACTIONS(1495), + [aux_sym_cmd_identifier_token19] = ACTIONS(1497), + [aux_sym_cmd_identifier_token20] = ACTIONS(1497), + [aux_sym_cmd_identifier_token21] = ACTIONS(1497), + [aux_sym_cmd_identifier_token22] = ACTIONS(1497), + [aux_sym_cmd_identifier_token23] = ACTIONS(1497), + [aux_sym_cmd_identifier_token24] = ACTIONS(1497), + [aux_sym_cmd_identifier_token25] = ACTIONS(1497), + [aux_sym_cmd_identifier_token26] = ACTIONS(1497), + [aux_sym_cmd_identifier_token27] = ACTIONS(1497), + [aux_sym_cmd_identifier_token28] = ACTIONS(1497), + [aux_sym_cmd_identifier_token29] = ACTIONS(1497), + [aux_sym_cmd_identifier_token30] = ACTIONS(1497), + [aux_sym_cmd_identifier_token31] = ACTIONS(1497), + [aux_sym_cmd_identifier_token32] = ACTIONS(1495), + [aux_sym_cmd_identifier_token33] = ACTIONS(1497), + [aux_sym_cmd_identifier_token34] = ACTIONS(1495), + [aux_sym_cmd_identifier_token35] = ACTIONS(1497), + [aux_sym_cmd_identifier_token36] = ACTIONS(1497), + [aux_sym_cmd_identifier_token37] = ACTIONS(1497), + [aux_sym_cmd_identifier_token38] = ACTIONS(1495), + [aux_sym_cmd_identifier_token39] = ACTIONS(1497), + [aux_sym_cmd_identifier_token40] = ACTIONS(1497), + [sym__newline] = ACTIONS(1636), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_def] = ACTIONS(1495), + [anon_sym_export_DASHenv] = ACTIONS(1495), + [anon_sym_extern] = ACTIONS(1495), + [anon_sym_module] = ACTIONS(1495), + [anon_sym_use] = ACTIONS(1495), + [anon_sym_LBRACK] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(1497), + [anon_sym_DOLLAR] = ACTIONS(1495), + [anon_sym_error] = ACTIONS(1495), + [anon_sym_DASH2] = ACTIONS(1495), + [anon_sym_break] = ACTIONS(1495), + [anon_sym_continue] = ACTIONS(1495), + [anon_sym_for] = ACTIONS(1495), + [anon_sym_loop] = ACTIONS(1495), + [anon_sym_while] = ACTIONS(1495), + [anon_sym_do] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1495), + [anon_sym_match] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_DOT_DOT] = ACTIONS(1495), + [anon_sym_try] = ACTIONS(1495), + [anon_sym_return] = ACTIONS(1495), + [anon_sym_source] = ACTIONS(1495), + [anon_sym_source_DASHenv] = ACTIONS(1495), + [anon_sym_hide] = ACTIONS(1495), + [anon_sym_hide_DASHenv] = ACTIONS(1495), + [anon_sym_overlay] = ACTIONS(1495), + [anon_sym_where] = ACTIONS(1497), + [aux_sym_expr_unary_token1] = ACTIONS(1497), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1497), + [anon_sym_DOT_DOT_LT] = ACTIONS(1497), + [anon_sym_null] = ACTIONS(1495), + [anon_sym_true] = ACTIONS(1495), + [anon_sym_false] = ACTIONS(1495), + [aux_sym__val_number_decimal_token1] = ACTIONS(1495), + [aux_sym__val_number_decimal_token2] = ACTIONS(1497), + [aux_sym__val_number_decimal_token3] = ACTIONS(1497), + [aux_sym__val_number_decimal_token4] = ACTIONS(1497), + [aux_sym__val_number_token1] = ACTIONS(1497), + [aux_sym__val_number_token2] = ACTIONS(1497), + [aux_sym__val_number_token3] = ACTIONS(1497), + [aux_sym__val_number_token4] = ACTIONS(1495), + [aux_sym__val_number_token5] = ACTIONS(1495), + [aux_sym__val_number_token6] = ACTIONS(1495), + [anon_sym_0b] = ACTIONS(1495), + [anon_sym_0o] = ACTIONS(1495), + [anon_sym_0x] = ACTIONS(1495), + [sym_val_date] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1497), + [sym__str_single_quotes] = ACTIONS(1497), + [sym__str_back_ticks] = ACTIONS(1497), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1497), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1497), + [aux_sym_env_var_token1] = ACTIONS(1495), + [anon_sym_CARET] = ACTIONS(1497), + [aux_sym_command_token1] = ACTIONS(1497), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1497), }, [311] = { - [sym__expr_parenthesized_immediate] = STATE(7306), [sym_comment] = STATE(311), - [anon_sym_export] = ACTIONS(1638), - [anon_sym_alias] = ACTIONS(1638), - [anon_sym_let] = ACTIONS(1638), - [anon_sym_let_DASHenv] = ACTIONS(1638), - [anon_sym_mut] = ACTIONS(1638), - [anon_sym_const] = ACTIONS(1638), - [aux_sym_cmd_identifier_token1] = ACTIONS(1638), - [aux_sym_cmd_identifier_token2] = ACTIONS(1638), - [aux_sym_cmd_identifier_token3] = ACTIONS(1638), - [aux_sym_cmd_identifier_token4] = ACTIONS(1638), - [aux_sym_cmd_identifier_token5] = ACTIONS(1638), - [aux_sym_cmd_identifier_token6] = ACTIONS(1638), - [aux_sym_cmd_identifier_token7] = ACTIONS(1638), - [aux_sym_cmd_identifier_token8] = ACTIONS(1638), - [aux_sym_cmd_identifier_token9] = ACTIONS(1638), - [aux_sym_cmd_identifier_token10] = ACTIONS(1638), - [aux_sym_cmd_identifier_token11] = ACTIONS(1638), - [aux_sym_cmd_identifier_token12] = ACTIONS(1638), - [aux_sym_cmd_identifier_token13] = ACTIONS(1638), - [aux_sym_cmd_identifier_token14] = ACTIONS(1638), - [aux_sym_cmd_identifier_token15] = ACTIONS(1638), - [aux_sym_cmd_identifier_token16] = ACTIONS(1638), - [aux_sym_cmd_identifier_token17] = ACTIONS(1638), - [aux_sym_cmd_identifier_token18] = ACTIONS(1638), - [aux_sym_cmd_identifier_token19] = ACTIONS(1638), - [aux_sym_cmd_identifier_token20] = ACTIONS(1638), - [aux_sym_cmd_identifier_token21] = ACTIONS(1638), - [aux_sym_cmd_identifier_token22] = ACTIONS(1638), - [aux_sym_cmd_identifier_token23] = ACTIONS(1638), - [aux_sym_cmd_identifier_token24] = ACTIONS(1638), - [aux_sym_cmd_identifier_token25] = ACTIONS(1638), - [aux_sym_cmd_identifier_token26] = ACTIONS(1638), - [aux_sym_cmd_identifier_token27] = ACTIONS(1638), - [aux_sym_cmd_identifier_token28] = ACTIONS(1638), - [aux_sym_cmd_identifier_token29] = ACTIONS(1638), - [aux_sym_cmd_identifier_token30] = ACTIONS(1638), - [aux_sym_cmd_identifier_token31] = ACTIONS(1638), - [aux_sym_cmd_identifier_token32] = ACTIONS(1638), - [aux_sym_cmd_identifier_token33] = ACTIONS(1638), - [aux_sym_cmd_identifier_token34] = ACTIONS(1638), - [aux_sym_cmd_identifier_token35] = ACTIONS(1638), - [aux_sym_cmd_identifier_token36] = ACTIONS(1638), - [aux_sym_cmd_identifier_token37] = ACTIONS(1638), - [aux_sym_cmd_identifier_token38] = ACTIONS(1638), - [aux_sym_cmd_identifier_token39] = ACTIONS(1638), - [aux_sym_cmd_identifier_token40] = ACTIONS(1638), - [anon_sym_def] = ACTIONS(1638), - [anon_sym_export_DASHenv] = ACTIONS(1638), - [anon_sym_extern] = ACTIONS(1638), - [anon_sym_module] = ACTIONS(1638), - [anon_sym_use] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1638), - [anon_sym_COMMA] = ACTIONS(1638), - [anon_sym_DOLLAR] = ACTIONS(1638), - [anon_sym_error] = ACTIONS(1638), - [anon_sym_DASH2] = ACTIONS(1638), - [anon_sym_break] = ACTIONS(1638), - [anon_sym_continue] = ACTIONS(1638), - [anon_sym_for] = ACTIONS(1638), - [anon_sym_in2] = ACTIONS(1638), - [anon_sym_loop] = ACTIONS(1638), - [anon_sym_make] = ACTIONS(1638), - [anon_sym_while] = ACTIONS(1638), - [anon_sym_do] = ACTIONS(1638), - [anon_sym_if] = ACTIONS(1638), - [anon_sym_else] = ACTIONS(1638), - [anon_sym_match] = ACTIONS(1638), - [anon_sym_RBRACE] = ACTIONS(1638), - [anon_sym_try] = ACTIONS(1638), - [anon_sym_catch] = ACTIONS(1638), - [anon_sym_return] = ACTIONS(1638), - [anon_sym_source] = ACTIONS(1638), - [anon_sym_source_DASHenv] = ACTIONS(1638), - [anon_sym_register] = ACTIONS(1638), - [anon_sym_hide] = ACTIONS(1638), - [anon_sym_hide_DASHenv] = ACTIONS(1638), - [anon_sym_overlay] = ACTIONS(1638), - [anon_sym_as] = ACTIONS(1638), - [anon_sym_LPAREN2] = ACTIONS(1640), - [anon_sym_PLUS2] = ACTIONS(1638), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1638), - [anon_sym_DOT_DOT2] = ACTIONS(1642), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1644), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1644), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1638), - [aux_sym__val_number_decimal_token1] = ACTIONS(1638), - [aux_sym__val_number_decimal_token2] = ACTIONS(1638), - [aux_sym__val_number_decimal_token3] = ACTIONS(1638), - [aux_sym__val_number_decimal_token4] = ACTIONS(1638), - [aux_sym__val_number_token1] = ACTIONS(1638), - [aux_sym__val_number_token2] = ACTIONS(1638), - [aux_sym__val_number_token3] = ACTIONS(1638), - [aux_sym__val_number_token4] = ACTIONS(1638), - [aux_sym__val_number_token5] = ACTIONS(1638), - [aux_sym__val_number_token6] = ACTIONS(1638), - [sym_filesize_unit] = ACTIONS(1646), - [sym_duration_unit] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1638), - [sym__str_single_quotes] = ACTIONS(1638), - [sym__str_back_ticks] = ACTIONS(1638), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1638), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1638), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1638), - [sym__entry_separator] = ACTIONS(1650), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1652), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1650), + [anon_sym_export] = ACTIONS(1282), + [anon_sym_alias] = ACTIONS(1282), + [anon_sym_let] = ACTIONS(1282), + [anon_sym_let_DASHenv] = ACTIONS(1282), + [anon_sym_mut] = ACTIONS(1282), + [anon_sym_const] = ACTIONS(1282), + [aux_sym_cmd_identifier_token1] = ACTIONS(1282), + [aux_sym_cmd_identifier_token2] = ACTIONS(1285), + [aux_sym_cmd_identifier_token3] = ACTIONS(1285), + [aux_sym_cmd_identifier_token4] = ACTIONS(1285), + [aux_sym_cmd_identifier_token5] = ACTIONS(1285), + [aux_sym_cmd_identifier_token6] = ACTIONS(1285), + [aux_sym_cmd_identifier_token7] = ACTIONS(1285), + [aux_sym_cmd_identifier_token8] = ACTIONS(1282), + [aux_sym_cmd_identifier_token9] = ACTIONS(1282), + [aux_sym_cmd_identifier_token10] = ACTIONS(1285), + [aux_sym_cmd_identifier_token11] = ACTIONS(1285), + [aux_sym_cmd_identifier_token12] = ACTIONS(1282), + [aux_sym_cmd_identifier_token13] = ACTIONS(1282), + [aux_sym_cmd_identifier_token14] = ACTIONS(1282), + [aux_sym_cmd_identifier_token15] = ACTIONS(1282), + [aux_sym_cmd_identifier_token16] = ACTIONS(1285), + [aux_sym_cmd_identifier_token17] = ACTIONS(1285), + [aux_sym_cmd_identifier_token18] = ACTIONS(1282), + [aux_sym_cmd_identifier_token19] = ACTIONS(1285), + [aux_sym_cmd_identifier_token20] = ACTIONS(1285), + [aux_sym_cmd_identifier_token21] = ACTIONS(1285), + [aux_sym_cmd_identifier_token22] = ACTIONS(1285), + [aux_sym_cmd_identifier_token23] = ACTIONS(1285), + [aux_sym_cmd_identifier_token24] = ACTIONS(1285), + [aux_sym_cmd_identifier_token25] = ACTIONS(1285), + [aux_sym_cmd_identifier_token26] = ACTIONS(1285), + [aux_sym_cmd_identifier_token27] = ACTIONS(1285), + [aux_sym_cmd_identifier_token28] = ACTIONS(1285), + [aux_sym_cmd_identifier_token29] = ACTIONS(1285), + [aux_sym_cmd_identifier_token30] = ACTIONS(1285), + [aux_sym_cmd_identifier_token31] = ACTIONS(1285), + [aux_sym_cmd_identifier_token32] = ACTIONS(1282), + [aux_sym_cmd_identifier_token33] = ACTIONS(1285), + [aux_sym_cmd_identifier_token34] = ACTIONS(1282), + [aux_sym_cmd_identifier_token35] = ACTIONS(1285), + [aux_sym_cmd_identifier_token36] = ACTIONS(1285), + [aux_sym_cmd_identifier_token37] = ACTIONS(1285), + [aux_sym_cmd_identifier_token38] = ACTIONS(1282), + [aux_sym_cmd_identifier_token39] = ACTIONS(1285), + [aux_sym_cmd_identifier_token40] = ACTIONS(1285), + [sym__newline] = ACTIONS(1285), + [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1288), + [anon_sym_def] = ACTIONS(1282), + [anon_sym_export_DASHenv] = ACTIONS(1282), + [anon_sym_extern] = ACTIONS(1282), + [anon_sym_module] = ACTIONS(1282), + [anon_sym_use] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_LPAREN] = ACTIONS(1285), + [anon_sym_DOLLAR] = ACTIONS(1282), + [anon_sym_error] = ACTIONS(1282), + [anon_sym_DASH2] = ACTIONS(1282), + [anon_sym_break] = ACTIONS(1282), + [anon_sym_continue] = ACTIONS(1282), + [anon_sym_for] = ACTIONS(1282), + [anon_sym_loop] = ACTIONS(1282), + [anon_sym_while] = ACTIONS(1282), + [anon_sym_do] = ACTIONS(1282), + [anon_sym_if] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1282), + [anon_sym_try] = ACTIONS(1282), + [anon_sym_return] = ACTIONS(1282), + [anon_sym_source] = ACTIONS(1282), + [anon_sym_source_DASHenv] = ACTIONS(1282), + [anon_sym_hide] = ACTIONS(1282), + [anon_sym_hide_DASHenv] = ACTIONS(1282), + [anon_sym_overlay] = ACTIONS(1282), + [anon_sym_where] = ACTIONS(1285), + [aux_sym_expr_unary_token1] = ACTIONS(1285), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_DOT_DOT_LT] = ACTIONS(1285), + [anon_sym_null] = ACTIONS(1282), + [anon_sym_true] = ACTIONS(1282), + [anon_sym_false] = ACTIONS(1282), + [aux_sym__val_number_decimal_token1] = ACTIONS(1282), + [aux_sym__val_number_decimal_token2] = ACTIONS(1285), + [aux_sym__val_number_decimal_token3] = ACTIONS(1285), + [aux_sym__val_number_decimal_token4] = ACTIONS(1285), + [aux_sym__val_number_token1] = ACTIONS(1285), + [aux_sym__val_number_token2] = ACTIONS(1285), + [aux_sym__val_number_token3] = ACTIONS(1285), + [aux_sym__val_number_token4] = ACTIONS(1282), + [aux_sym__val_number_token5] = ACTIONS(1282), + [aux_sym__val_number_token6] = ACTIONS(1282), + [anon_sym_0b] = ACTIONS(1282), + [anon_sym_0o] = ACTIONS(1282), + [anon_sym_0x] = ACTIONS(1282), + [sym_val_date] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym__str_single_quotes] = ACTIONS(1285), + [sym__str_back_ticks] = ACTIONS(1285), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1285), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1285), + [aux_sym_env_var_token1] = ACTIONS(1282), + [anon_sym_CARET] = ACTIONS(1285), + [aux_sym_command_token1] = ACTIONS(1285), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1285), }, [312] = { - [sym__expr_parenthesized_immediate] = STATE(674), - [sym__immediate_decimal] = STATE(633), - [sym_val_variable] = STATE(674), + [sym__expr_parenthesized_immediate] = STATE(7303), [sym_comment] = STATE(312), - [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(1654), - [aux_sym_cmd_identifier_token25] = ACTIONS(1654), - [aux_sym_cmd_identifier_token26] = ACTIONS(1654), - [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(1654), - [aux_sym_cmd_identifier_token32] = ACTIONS(1654), - [aux_sym_cmd_identifier_token33] = ACTIONS(1654), - [aux_sym_cmd_identifier_token34] = ACTIONS(1654), - [aux_sym_cmd_identifier_token35] = ACTIONS(1654), - [aux_sym_cmd_identifier_token36] = ACTIONS(1654), - [aux_sym_cmd_identifier_token37] = ACTIONS(1654), - [aux_sym_cmd_identifier_token38] = ACTIONS(1654), - [aux_sym_cmd_identifier_token39] = ACTIONS(1654), - [aux_sym_cmd_identifier_token40] = ACTIONS(1654), - [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_LPAREN] = ACTIONS(1654), - [anon_sym_COMMA] = ACTIONS(1654), - [anon_sym_DOLLAR] = ACTIONS(1526), - [anon_sym_error] = ACTIONS(1654), - [anon_sym_DASH2] = ACTIONS(1654), - [anon_sym_break] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(1654), - [anon_sym_for] = ACTIONS(1654), - [anon_sym_in2] = ACTIONS(1654), - [anon_sym_loop] = ACTIONS(1654), - [anon_sym_make] = ACTIONS(1654), - [anon_sym_while] = ACTIONS(1654), - [anon_sym_do] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1654), - [anon_sym_else] = ACTIONS(1654), - [anon_sym_match] = ACTIONS(1654), - [anon_sym_RBRACE] = ACTIONS(1654), - [anon_sym_try] = ACTIONS(1654), - [anon_sym_catch] = 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_as] = ACTIONS(1654), - [anon_sym_LPAREN2] = ACTIONS(1528), - [anon_sym_PLUS2] = ACTIONS(1654), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1654), - [aux_sym__immediate_decimal_token1] = ACTIONS(1606), - [aux_sym__immediate_decimal_token3] = ACTIONS(1606), - [aux_sym__immediate_decimal_token4] = ACTIONS(1608), - [aux_sym__immediate_decimal_token5] = ACTIONS(1610), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1654), - [aux_sym__val_number_decimal_token1] = ACTIONS(1654), - [aux_sym__val_number_decimal_token2] = ACTIONS(1654), - [aux_sym__val_number_decimal_token3] = ACTIONS(1654), - [aux_sym__val_number_decimal_token4] = ACTIONS(1654), - [aux_sym__val_number_token1] = ACTIONS(1654), - [aux_sym__val_number_token2] = ACTIONS(1654), - [aux_sym__val_number_token3] = ACTIONS(1654), - [aux_sym__val_number_token4] = ACTIONS(1654), - [aux_sym__val_number_token5] = ACTIONS(1654), - [aux_sym__val_number_token6] = ACTIONS(1654), - [anon_sym_DQUOTE] = ACTIONS(1654), - [sym__str_single_quotes] = ACTIONS(1654), - [sym__str_back_ticks] = ACTIONS(1654), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1654), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1654), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1654), - [sym__entry_separator] = ACTIONS(1656), + [anon_sym_export] = ACTIONS(1639), + [anon_sym_alias] = ACTIONS(1639), + [anon_sym_let] = ACTIONS(1639), + [anon_sym_let_DASHenv] = ACTIONS(1639), + [anon_sym_mut] = ACTIONS(1639), + [anon_sym_const] = ACTIONS(1639), + [aux_sym_cmd_identifier_token1] = ACTIONS(1639), + [aux_sym_cmd_identifier_token2] = ACTIONS(1639), + [aux_sym_cmd_identifier_token3] = ACTIONS(1639), + [aux_sym_cmd_identifier_token4] = ACTIONS(1639), + [aux_sym_cmd_identifier_token5] = ACTIONS(1639), + [aux_sym_cmd_identifier_token6] = ACTIONS(1639), + [aux_sym_cmd_identifier_token7] = ACTIONS(1639), + [aux_sym_cmd_identifier_token8] = ACTIONS(1639), + [aux_sym_cmd_identifier_token9] = ACTIONS(1639), + [aux_sym_cmd_identifier_token10] = ACTIONS(1639), + [aux_sym_cmd_identifier_token11] = ACTIONS(1639), + [aux_sym_cmd_identifier_token12] = ACTIONS(1639), + [aux_sym_cmd_identifier_token13] = ACTIONS(1639), + [aux_sym_cmd_identifier_token14] = ACTIONS(1639), + [aux_sym_cmd_identifier_token15] = ACTIONS(1639), + [aux_sym_cmd_identifier_token16] = ACTIONS(1639), + [aux_sym_cmd_identifier_token17] = ACTIONS(1639), + [aux_sym_cmd_identifier_token18] = ACTIONS(1639), + [aux_sym_cmd_identifier_token19] = ACTIONS(1639), + [aux_sym_cmd_identifier_token20] = ACTIONS(1639), + [aux_sym_cmd_identifier_token21] = ACTIONS(1639), + [aux_sym_cmd_identifier_token22] = ACTIONS(1639), + [aux_sym_cmd_identifier_token23] = ACTIONS(1639), + [aux_sym_cmd_identifier_token24] = ACTIONS(1639), + [aux_sym_cmd_identifier_token25] = ACTIONS(1639), + [aux_sym_cmd_identifier_token26] = ACTIONS(1639), + [aux_sym_cmd_identifier_token27] = ACTIONS(1639), + [aux_sym_cmd_identifier_token28] = ACTIONS(1639), + [aux_sym_cmd_identifier_token29] = ACTIONS(1639), + [aux_sym_cmd_identifier_token30] = ACTIONS(1639), + [aux_sym_cmd_identifier_token31] = ACTIONS(1639), + [aux_sym_cmd_identifier_token32] = ACTIONS(1639), + [aux_sym_cmd_identifier_token33] = ACTIONS(1639), + [aux_sym_cmd_identifier_token34] = ACTIONS(1639), + [aux_sym_cmd_identifier_token35] = ACTIONS(1639), + [aux_sym_cmd_identifier_token36] = ACTIONS(1639), + [aux_sym_cmd_identifier_token37] = ACTIONS(1639), + [aux_sym_cmd_identifier_token38] = ACTIONS(1639), + [aux_sym_cmd_identifier_token39] = ACTIONS(1639), + [aux_sym_cmd_identifier_token40] = ACTIONS(1639), + [anon_sym_def] = ACTIONS(1639), + [anon_sym_export_DASHenv] = ACTIONS(1639), + [anon_sym_extern] = ACTIONS(1639), + [anon_sym_module] = ACTIONS(1639), + [anon_sym_use] = ACTIONS(1639), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_COMMA] = ACTIONS(1639), + [anon_sym_DOLLAR] = ACTIONS(1639), + [anon_sym_error] = ACTIONS(1639), + [anon_sym_DASH2] = ACTIONS(1639), + [anon_sym_break] = ACTIONS(1639), + [anon_sym_continue] = ACTIONS(1639), + [anon_sym_for] = ACTIONS(1639), + [anon_sym_in2] = ACTIONS(1639), + [anon_sym_loop] = ACTIONS(1639), + [anon_sym_make] = ACTIONS(1639), + [anon_sym_while] = ACTIONS(1639), + [anon_sym_do] = ACTIONS(1639), + [anon_sym_if] = ACTIONS(1639), + [anon_sym_else] = ACTIONS(1639), + [anon_sym_match] = ACTIONS(1639), + [anon_sym_RBRACE] = ACTIONS(1639), + [anon_sym_try] = ACTIONS(1639), + [anon_sym_catch] = ACTIONS(1639), + [anon_sym_return] = ACTIONS(1639), + [anon_sym_source] = ACTIONS(1639), + [anon_sym_source_DASHenv] = ACTIONS(1639), + [anon_sym_hide] = ACTIONS(1639), + [anon_sym_hide_DASHenv] = ACTIONS(1639), + [anon_sym_overlay] = ACTIONS(1639), + [anon_sym_as] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(1641), + [anon_sym_PLUS2] = ACTIONS(1639), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1639), + [anon_sym_DOT_DOT2] = ACTIONS(1643), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1639), + [aux_sym__val_number_decimal_token1] = ACTIONS(1639), + [aux_sym__val_number_decimal_token2] = ACTIONS(1639), + [aux_sym__val_number_decimal_token3] = ACTIONS(1639), + [aux_sym__val_number_decimal_token4] = ACTIONS(1639), + [aux_sym__val_number_token1] = ACTIONS(1639), + [aux_sym__val_number_token2] = ACTIONS(1639), + [aux_sym__val_number_token3] = ACTIONS(1639), + [aux_sym__val_number_token4] = ACTIONS(1639), + [aux_sym__val_number_token5] = ACTIONS(1639), + [aux_sym__val_number_token6] = ACTIONS(1639), + [sym_filesize_unit] = ACTIONS(1647), + [sym_duration_unit] = ACTIONS(1649), + [anon_sym_DQUOTE] = ACTIONS(1639), + [sym__str_single_quotes] = ACTIONS(1639), + [sym__str_back_ticks] = ACTIONS(1639), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1639), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1639), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1639), + [sym__entry_separator] = ACTIONS(1651), + [anon_sym_register] = ACTIONS(1639), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1653), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1656), + [sym_raw_string_begin] = ACTIONS(1651), }, [313] = { [sym_comment] = STATE(313), - [ts_builtin_sym_end] = ACTIONS(1313), - [anon_sym_export] = ACTIONS(1575), - [anon_sym_alias] = ACTIONS(1575), - [anon_sym_let] = ACTIONS(1575), - [anon_sym_let_DASHenv] = ACTIONS(1575), - [anon_sym_mut] = ACTIONS(1575), - [anon_sym_const] = ACTIONS(1575), - [aux_sym_cmd_identifier_token1] = ACTIONS(1575), - [aux_sym_cmd_identifier_token2] = ACTIONS(1313), - [aux_sym_cmd_identifier_token3] = ACTIONS(1313), - [aux_sym_cmd_identifier_token4] = ACTIONS(1313), - [aux_sym_cmd_identifier_token5] = ACTIONS(1313), - [aux_sym_cmd_identifier_token6] = ACTIONS(1313), - [aux_sym_cmd_identifier_token7] = ACTIONS(1313), - [aux_sym_cmd_identifier_token8] = ACTIONS(1575), - [aux_sym_cmd_identifier_token9] = ACTIONS(1575), - [aux_sym_cmd_identifier_token10] = ACTIONS(1313), - [aux_sym_cmd_identifier_token11] = ACTIONS(1313), - [aux_sym_cmd_identifier_token12] = ACTIONS(1575), - [aux_sym_cmd_identifier_token13] = ACTIONS(1575), - [aux_sym_cmd_identifier_token14] = ACTIONS(1575), - [aux_sym_cmd_identifier_token15] = ACTIONS(1575), - [aux_sym_cmd_identifier_token16] = ACTIONS(1313), - [aux_sym_cmd_identifier_token17] = ACTIONS(1313), - [aux_sym_cmd_identifier_token18] = ACTIONS(1575), - [aux_sym_cmd_identifier_token19] = ACTIONS(1313), - [aux_sym_cmd_identifier_token20] = ACTIONS(1313), - [aux_sym_cmd_identifier_token21] = ACTIONS(1313), - [aux_sym_cmd_identifier_token22] = ACTIONS(1313), - [aux_sym_cmd_identifier_token23] = ACTIONS(1313), - [aux_sym_cmd_identifier_token24] = ACTIONS(1313), - [aux_sym_cmd_identifier_token25] = ACTIONS(1313), - [aux_sym_cmd_identifier_token26] = ACTIONS(1313), - [aux_sym_cmd_identifier_token27] = ACTIONS(1313), - [aux_sym_cmd_identifier_token28] = ACTIONS(1313), - [aux_sym_cmd_identifier_token29] = ACTIONS(1313), - [aux_sym_cmd_identifier_token30] = ACTIONS(1313), - [aux_sym_cmd_identifier_token31] = ACTIONS(1313), - [aux_sym_cmd_identifier_token32] = ACTIONS(1575), - [aux_sym_cmd_identifier_token33] = ACTIONS(1313), - [aux_sym_cmd_identifier_token34] = ACTIONS(1575), - [aux_sym_cmd_identifier_token35] = ACTIONS(1313), - [aux_sym_cmd_identifier_token36] = ACTIONS(1313), - [aux_sym_cmd_identifier_token37] = ACTIONS(1313), - [aux_sym_cmd_identifier_token38] = ACTIONS(1575), - [aux_sym_cmd_identifier_token39] = ACTIONS(1313), - [aux_sym_cmd_identifier_token40] = ACTIONS(1313), - [sym__newline] = ACTIONS(1313), - [anon_sym_SEMI] = ACTIONS(1313), - [anon_sym_def] = ACTIONS(1575), - [anon_sym_export_DASHenv] = ACTIONS(1575), - [anon_sym_extern] = ACTIONS(1575), - [anon_sym_module] = ACTIONS(1575), - [anon_sym_use] = ACTIONS(1575), - [anon_sym_LBRACK] = ACTIONS(1313), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_DOLLAR] = ACTIONS(1575), - [anon_sym_error] = ACTIONS(1575), - [anon_sym_DASH2] = ACTIONS(1575), - [anon_sym_break] = ACTIONS(1575), - [anon_sym_continue] = ACTIONS(1575), - [anon_sym_for] = ACTIONS(1575), - [anon_sym_loop] = ACTIONS(1575), - [anon_sym_while] = ACTIONS(1575), - [anon_sym_do] = ACTIONS(1575), - [anon_sym_if] = ACTIONS(1575), - [anon_sym_match] = ACTIONS(1575), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_DOT_DOT] = ACTIONS(1575), - [anon_sym_try] = ACTIONS(1575), - [anon_sym_return] = ACTIONS(1575), - [anon_sym_source] = ACTIONS(1575), - [anon_sym_source_DASHenv] = ACTIONS(1575), - [anon_sym_register] = ACTIONS(1575), - [anon_sym_hide] = ACTIONS(1575), - [anon_sym_hide_DASHenv] = ACTIONS(1575), - [anon_sym_overlay] = ACTIONS(1575), - [anon_sym_where] = ACTIONS(1313), - [aux_sym_expr_unary_token1] = ACTIONS(1313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), - [anon_sym_DOT_DOT_LT] = ACTIONS(1313), - [anon_sym_null] = ACTIONS(1575), - [anon_sym_true] = ACTIONS(1575), - [anon_sym_false] = ACTIONS(1575), - [aux_sym__val_number_decimal_token1] = ACTIONS(1575), - [aux_sym__val_number_decimal_token2] = ACTIONS(1313), - [aux_sym__val_number_decimal_token3] = ACTIONS(1313), - [aux_sym__val_number_decimal_token4] = ACTIONS(1313), - [aux_sym__val_number_token1] = ACTIONS(1313), - [aux_sym__val_number_token2] = ACTIONS(1313), - [aux_sym__val_number_token3] = ACTIONS(1313), - [aux_sym__val_number_token4] = ACTIONS(1575), - [aux_sym__val_number_token5] = ACTIONS(1575), - [aux_sym__val_number_token6] = ACTIONS(1575), - [anon_sym_0b] = ACTIONS(1575), - [anon_sym_0o] = ACTIONS(1575), - [anon_sym_0x] = ACTIONS(1575), - [sym_val_date] = ACTIONS(1313), - [anon_sym_DQUOTE] = ACTIONS(1313), - [sym__str_single_quotes] = ACTIONS(1313), - [sym__str_back_ticks] = ACTIONS(1313), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1313), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1313), - [aux_sym_env_var_token1] = ACTIONS(1575), - [anon_sym_CARET] = ACTIONS(1313), - [aux_sym_command_token1] = ACTIONS(1313), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1313), + [aux_sym_shebang_repeat1] = STATE(313), + [anon_sym_export] = ACTIONS(1294), + [anon_sym_alias] = ACTIONS(1294), + [anon_sym_let] = ACTIONS(1294), + [anon_sym_let_DASHenv] = ACTIONS(1294), + [anon_sym_mut] = ACTIONS(1294), + [anon_sym_const] = ACTIONS(1294), + [aux_sym_cmd_identifier_token1] = ACTIONS(1294), + [aux_sym_cmd_identifier_token2] = ACTIONS(1296), + [aux_sym_cmd_identifier_token3] = ACTIONS(1296), + [aux_sym_cmd_identifier_token4] = ACTIONS(1296), + [aux_sym_cmd_identifier_token5] = ACTIONS(1296), + [aux_sym_cmd_identifier_token6] = ACTIONS(1296), + [aux_sym_cmd_identifier_token7] = ACTIONS(1296), + [aux_sym_cmd_identifier_token8] = ACTIONS(1294), + [aux_sym_cmd_identifier_token9] = ACTIONS(1294), + [aux_sym_cmd_identifier_token10] = ACTIONS(1296), + [aux_sym_cmd_identifier_token11] = ACTIONS(1296), + [aux_sym_cmd_identifier_token12] = ACTIONS(1294), + [aux_sym_cmd_identifier_token13] = ACTIONS(1294), + [aux_sym_cmd_identifier_token14] = ACTIONS(1294), + [aux_sym_cmd_identifier_token15] = ACTIONS(1294), + [aux_sym_cmd_identifier_token16] = ACTIONS(1296), + [aux_sym_cmd_identifier_token17] = ACTIONS(1296), + [aux_sym_cmd_identifier_token18] = ACTIONS(1294), + [aux_sym_cmd_identifier_token19] = ACTIONS(1296), + [aux_sym_cmd_identifier_token20] = ACTIONS(1296), + [aux_sym_cmd_identifier_token21] = ACTIONS(1296), + [aux_sym_cmd_identifier_token22] = ACTIONS(1296), + [aux_sym_cmd_identifier_token23] = ACTIONS(1296), + [aux_sym_cmd_identifier_token24] = ACTIONS(1296), + [aux_sym_cmd_identifier_token25] = ACTIONS(1296), + [aux_sym_cmd_identifier_token26] = ACTIONS(1296), + [aux_sym_cmd_identifier_token27] = ACTIONS(1296), + [aux_sym_cmd_identifier_token28] = ACTIONS(1296), + [aux_sym_cmd_identifier_token29] = ACTIONS(1296), + [aux_sym_cmd_identifier_token30] = ACTIONS(1296), + [aux_sym_cmd_identifier_token31] = ACTIONS(1296), + [aux_sym_cmd_identifier_token32] = ACTIONS(1294), + [aux_sym_cmd_identifier_token33] = ACTIONS(1296), + [aux_sym_cmd_identifier_token34] = ACTIONS(1294), + [aux_sym_cmd_identifier_token35] = ACTIONS(1296), + [aux_sym_cmd_identifier_token36] = ACTIONS(1296), + [aux_sym_cmd_identifier_token37] = ACTIONS(1296), + [aux_sym_cmd_identifier_token38] = ACTIONS(1294), + [aux_sym_cmd_identifier_token39] = ACTIONS(1296), + [aux_sym_cmd_identifier_token40] = ACTIONS(1296), + [sym__newline] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1296), + [anon_sym_PIPE] = ACTIONS(1296), + [anon_sym_def] = ACTIONS(1294), + [anon_sym_export_DASHenv] = ACTIONS(1294), + [anon_sym_extern] = ACTIONS(1294), + [anon_sym_module] = ACTIONS(1294), + [anon_sym_use] = ACTIONS(1294), + [anon_sym_LBRACK] = ACTIONS(1296), + [anon_sym_LPAREN] = ACTIONS(1296), + [anon_sym_DOLLAR] = ACTIONS(1294), + [anon_sym_error] = ACTIONS(1294), + [anon_sym_DASH2] = ACTIONS(1294), + [anon_sym_break] = ACTIONS(1294), + [anon_sym_continue] = ACTIONS(1294), + [anon_sym_for] = ACTIONS(1294), + [anon_sym_loop] = ACTIONS(1294), + [anon_sym_while] = ACTIONS(1294), + [anon_sym_do] = ACTIONS(1294), + [anon_sym_if] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1294), + [anon_sym_LBRACE] = ACTIONS(1296), + [anon_sym_DOT_DOT] = ACTIONS(1294), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_return] = ACTIONS(1294), + [anon_sym_source] = ACTIONS(1294), + [anon_sym_source_DASHenv] = ACTIONS(1294), + [anon_sym_hide] = ACTIONS(1294), + [anon_sym_hide_DASHenv] = ACTIONS(1294), + [anon_sym_overlay] = ACTIONS(1294), + [anon_sym_where] = ACTIONS(1296), + [aux_sym_expr_unary_token1] = ACTIONS(1296), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1296), + [anon_sym_DOT_DOT_LT] = ACTIONS(1296), + [anon_sym_null] = ACTIONS(1294), + [anon_sym_true] = ACTIONS(1294), + [anon_sym_false] = ACTIONS(1294), + [aux_sym__val_number_decimal_token1] = ACTIONS(1294), + [aux_sym__val_number_decimal_token2] = ACTIONS(1296), + [aux_sym__val_number_decimal_token3] = ACTIONS(1296), + [aux_sym__val_number_decimal_token4] = ACTIONS(1296), + [aux_sym__val_number_token1] = ACTIONS(1296), + [aux_sym__val_number_token2] = ACTIONS(1296), + [aux_sym__val_number_token3] = ACTIONS(1296), + [aux_sym__val_number_token4] = ACTIONS(1294), + [aux_sym__val_number_token5] = ACTIONS(1294), + [aux_sym__val_number_token6] = ACTIONS(1294), + [anon_sym_0b] = ACTIONS(1294), + [anon_sym_0o] = ACTIONS(1294), + [anon_sym_0x] = ACTIONS(1294), + [sym_val_date] = ACTIONS(1296), + [anon_sym_DQUOTE] = ACTIONS(1296), + [sym__str_single_quotes] = ACTIONS(1296), + [sym__str_back_ticks] = ACTIONS(1296), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1296), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1296), + [aux_sym_env_var_token1] = ACTIONS(1294), + [anon_sym_CARET] = ACTIONS(1296), + [aux_sym_command_token1] = ACTIONS(1296), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1296), }, [314] = { [sym_comment] = STATE(314), - [anon_sym_export] = ACTIONS(1311), - [anon_sym_alias] = ACTIONS(1311), - [anon_sym_let] = ACTIONS(1311), - [anon_sym_let_DASHenv] = ACTIONS(1311), - [anon_sym_mut] = ACTIONS(1311), - [anon_sym_const] = ACTIONS(1311), - [aux_sym_cmd_identifier_token1] = ACTIONS(1311), - [aux_sym_cmd_identifier_token2] = ACTIONS(1309), - [aux_sym_cmd_identifier_token3] = ACTIONS(1309), - [aux_sym_cmd_identifier_token4] = ACTIONS(1309), - [aux_sym_cmd_identifier_token5] = ACTIONS(1309), - [aux_sym_cmd_identifier_token6] = ACTIONS(1309), - [aux_sym_cmd_identifier_token7] = ACTIONS(1309), - [aux_sym_cmd_identifier_token8] = ACTIONS(1311), - [aux_sym_cmd_identifier_token9] = ACTIONS(1311), - [aux_sym_cmd_identifier_token10] = ACTIONS(1309), - [aux_sym_cmd_identifier_token11] = ACTIONS(1309), - [aux_sym_cmd_identifier_token12] = ACTIONS(1311), - [aux_sym_cmd_identifier_token13] = ACTIONS(1311), - [aux_sym_cmd_identifier_token14] = ACTIONS(1311), - [aux_sym_cmd_identifier_token15] = ACTIONS(1311), - [aux_sym_cmd_identifier_token16] = ACTIONS(1309), - [aux_sym_cmd_identifier_token17] = ACTIONS(1309), - [aux_sym_cmd_identifier_token18] = ACTIONS(1311), - [aux_sym_cmd_identifier_token19] = ACTIONS(1309), - [aux_sym_cmd_identifier_token20] = ACTIONS(1309), - [aux_sym_cmd_identifier_token21] = ACTIONS(1309), - [aux_sym_cmd_identifier_token22] = ACTIONS(1309), - [aux_sym_cmd_identifier_token23] = ACTIONS(1309), - [aux_sym_cmd_identifier_token24] = ACTIONS(1309), - [aux_sym_cmd_identifier_token25] = ACTIONS(1309), - [aux_sym_cmd_identifier_token26] = ACTIONS(1309), - [aux_sym_cmd_identifier_token27] = ACTIONS(1309), - [aux_sym_cmd_identifier_token28] = ACTIONS(1309), - [aux_sym_cmd_identifier_token29] = ACTIONS(1309), - [aux_sym_cmd_identifier_token30] = ACTIONS(1309), - [aux_sym_cmd_identifier_token31] = ACTIONS(1309), - [aux_sym_cmd_identifier_token32] = ACTIONS(1311), - [aux_sym_cmd_identifier_token33] = ACTIONS(1309), - [aux_sym_cmd_identifier_token34] = ACTIONS(1311), - [aux_sym_cmd_identifier_token35] = ACTIONS(1309), - [aux_sym_cmd_identifier_token36] = ACTIONS(1309), - [aux_sym_cmd_identifier_token37] = ACTIONS(1309), - [aux_sym_cmd_identifier_token38] = ACTIONS(1311), - [aux_sym_cmd_identifier_token39] = ACTIONS(1309), - [aux_sym_cmd_identifier_token40] = ACTIONS(1309), - [sym__newline] = ACTIONS(1309), - [anon_sym_SEMI] = ACTIONS(1309), - [anon_sym_PIPE] = ACTIONS(1309), - [anon_sym_def] = ACTIONS(1311), - [anon_sym_export_DASHenv] = ACTIONS(1311), - [anon_sym_extern] = ACTIONS(1311), - [anon_sym_module] = ACTIONS(1311), - [anon_sym_use] = ACTIONS(1311), - [anon_sym_LBRACK] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(1309), - [anon_sym_DOLLAR] = ACTIONS(1311), - [anon_sym_error] = ACTIONS(1311), - [anon_sym_DASH2] = ACTIONS(1311), - [anon_sym_break] = ACTIONS(1311), - [anon_sym_continue] = ACTIONS(1311), - [anon_sym_for] = ACTIONS(1311), - [anon_sym_loop] = ACTIONS(1311), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_do] = ACTIONS(1311), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_match] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_DOT_DOT] = ACTIONS(1311), - [anon_sym_try] = ACTIONS(1311), - [anon_sym_return] = ACTIONS(1311), - [anon_sym_source] = ACTIONS(1311), - [anon_sym_source_DASHenv] = ACTIONS(1311), - [anon_sym_register] = ACTIONS(1311), - [anon_sym_hide] = ACTIONS(1311), - [anon_sym_hide_DASHenv] = ACTIONS(1311), - [anon_sym_overlay] = ACTIONS(1311), - [anon_sym_where] = ACTIONS(1309), - [aux_sym_expr_unary_token1] = ACTIONS(1309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1309), - [anon_sym_DOT_DOT_LT] = ACTIONS(1309), - [anon_sym_null] = ACTIONS(1311), - [anon_sym_true] = ACTIONS(1311), - [anon_sym_false] = ACTIONS(1311), - [aux_sym__val_number_decimal_token1] = ACTIONS(1311), - [aux_sym__val_number_decimal_token2] = ACTIONS(1309), - [aux_sym__val_number_decimal_token3] = ACTIONS(1309), - [aux_sym__val_number_decimal_token4] = ACTIONS(1309), - [aux_sym__val_number_token1] = ACTIONS(1309), - [aux_sym__val_number_token2] = ACTIONS(1309), - [aux_sym__val_number_token3] = ACTIONS(1309), - [aux_sym__val_number_token4] = ACTIONS(1311), - [aux_sym__val_number_token5] = ACTIONS(1311), - [aux_sym__val_number_token6] = ACTIONS(1311), - [anon_sym_0b] = ACTIONS(1311), - [anon_sym_0o] = ACTIONS(1311), - [anon_sym_0x] = ACTIONS(1311), - [sym_val_date] = ACTIONS(1309), - [anon_sym_DQUOTE] = ACTIONS(1309), - [sym__str_single_quotes] = ACTIONS(1309), - [sym__str_back_ticks] = ACTIONS(1309), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1309), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1309), - [aux_sym_env_var_token1] = ACTIONS(1311), - [anon_sym_CARET] = ACTIONS(1309), - [aux_sym_command_token1] = ACTIONS(1309), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1309), + [ts_builtin_sym_end] = ACTIONS(1292), + [anon_sym_POUND_BANG] = ACTIONS(1288), + [anon_sym_export] = ACTIONS(1624), + [anon_sym_alias] = ACTIONS(1624), + [anon_sym_let] = ACTIONS(1624), + [anon_sym_let_DASHenv] = ACTIONS(1624), + [anon_sym_mut] = ACTIONS(1624), + [anon_sym_const] = ACTIONS(1624), + [aux_sym_cmd_identifier_token1] = ACTIONS(1624), + [aux_sym_cmd_identifier_token2] = ACTIONS(1292), + [aux_sym_cmd_identifier_token3] = ACTIONS(1292), + [aux_sym_cmd_identifier_token4] = ACTIONS(1292), + [aux_sym_cmd_identifier_token5] = ACTIONS(1292), + [aux_sym_cmd_identifier_token6] = ACTIONS(1292), + [aux_sym_cmd_identifier_token7] = ACTIONS(1292), + [aux_sym_cmd_identifier_token8] = ACTIONS(1624), + [aux_sym_cmd_identifier_token9] = ACTIONS(1624), + [aux_sym_cmd_identifier_token10] = ACTIONS(1292), + [aux_sym_cmd_identifier_token11] = ACTIONS(1292), + [aux_sym_cmd_identifier_token12] = ACTIONS(1624), + [aux_sym_cmd_identifier_token13] = ACTIONS(1624), + [aux_sym_cmd_identifier_token14] = ACTIONS(1624), + [aux_sym_cmd_identifier_token15] = ACTIONS(1624), + [aux_sym_cmd_identifier_token16] = ACTIONS(1292), + [aux_sym_cmd_identifier_token17] = ACTIONS(1292), + [aux_sym_cmd_identifier_token18] = ACTIONS(1624), + [aux_sym_cmd_identifier_token19] = ACTIONS(1292), + [aux_sym_cmd_identifier_token20] = ACTIONS(1292), + [aux_sym_cmd_identifier_token21] = ACTIONS(1292), + [aux_sym_cmd_identifier_token22] = ACTIONS(1292), + [aux_sym_cmd_identifier_token23] = ACTIONS(1292), + [aux_sym_cmd_identifier_token24] = ACTIONS(1292), + [aux_sym_cmd_identifier_token25] = ACTIONS(1292), + [aux_sym_cmd_identifier_token26] = ACTIONS(1292), + [aux_sym_cmd_identifier_token27] = ACTIONS(1292), + [aux_sym_cmd_identifier_token28] = ACTIONS(1292), + [aux_sym_cmd_identifier_token29] = ACTIONS(1292), + [aux_sym_cmd_identifier_token30] = ACTIONS(1292), + [aux_sym_cmd_identifier_token31] = ACTIONS(1292), + [aux_sym_cmd_identifier_token32] = ACTIONS(1624), + [aux_sym_cmd_identifier_token33] = ACTIONS(1292), + [aux_sym_cmd_identifier_token34] = ACTIONS(1624), + [aux_sym_cmd_identifier_token35] = ACTIONS(1292), + [aux_sym_cmd_identifier_token36] = ACTIONS(1292), + [aux_sym_cmd_identifier_token37] = ACTIONS(1292), + [aux_sym_cmd_identifier_token38] = ACTIONS(1624), + [aux_sym_cmd_identifier_token39] = ACTIONS(1292), + [aux_sym_cmd_identifier_token40] = ACTIONS(1292), + [sym__newline] = ACTIONS(1285), + [anon_sym_SEMI] = ACTIONS(1292), + [anon_sym_def] = ACTIONS(1624), + [anon_sym_export_DASHenv] = ACTIONS(1624), + [anon_sym_extern] = ACTIONS(1624), + [anon_sym_module] = ACTIONS(1624), + [anon_sym_use] = ACTIONS(1624), + [anon_sym_LBRACK] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1624), + [anon_sym_error] = ACTIONS(1624), + [anon_sym_DASH2] = ACTIONS(1624), + [anon_sym_break] = ACTIONS(1624), + [anon_sym_continue] = ACTIONS(1624), + [anon_sym_for] = ACTIONS(1624), + [anon_sym_loop] = ACTIONS(1624), + [anon_sym_while] = ACTIONS(1624), + [anon_sym_do] = ACTIONS(1624), + [anon_sym_if] = ACTIONS(1624), + [anon_sym_match] = ACTIONS(1624), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1624), + [anon_sym_try] = ACTIONS(1624), + [anon_sym_return] = ACTIONS(1624), + [anon_sym_source] = ACTIONS(1624), + [anon_sym_source_DASHenv] = ACTIONS(1624), + [anon_sym_hide] = ACTIONS(1624), + [anon_sym_hide_DASHenv] = ACTIONS(1624), + [anon_sym_overlay] = ACTIONS(1624), + [anon_sym_where] = ACTIONS(1292), + [aux_sym_expr_unary_token1] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1292), + [anon_sym_DOT_DOT_LT] = ACTIONS(1292), + [anon_sym_null] = ACTIONS(1624), + [anon_sym_true] = ACTIONS(1624), + [anon_sym_false] = ACTIONS(1624), + [aux_sym__val_number_decimal_token1] = ACTIONS(1624), + [aux_sym__val_number_decimal_token2] = ACTIONS(1292), + [aux_sym__val_number_decimal_token3] = ACTIONS(1292), + [aux_sym__val_number_decimal_token4] = ACTIONS(1292), + [aux_sym__val_number_token1] = ACTIONS(1292), + [aux_sym__val_number_token2] = ACTIONS(1292), + [aux_sym__val_number_token3] = ACTIONS(1292), + [aux_sym__val_number_token4] = ACTIONS(1624), + [aux_sym__val_number_token5] = ACTIONS(1624), + [aux_sym__val_number_token6] = ACTIONS(1624), + [anon_sym_0b] = ACTIONS(1624), + [anon_sym_0o] = ACTIONS(1624), + [anon_sym_0x] = ACTIONS(1624), + [sym_val_date] = ACTIONS(1292), + [anon_sym_DQUOTE] = ACTIONS(1292), + [sym__str_single_quotes] = ACTIONS(1292), + [sym__str_back_ticks] = ACTIONS(1292), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1292), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1292), + [aux_sym_env_var_token1] = ACTIONS(1624), + [anon_sym_CARET] = ACTIONS(1292), + [aux_sym_command_token1] = ACTIONS(1292), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1292), }, [315] = { - [sym__expr_parenthesized_immediate] = STATE(512), - [sym__immediate_decimal] = STATE(513), - [sym_val_variable] = STATE(512), + [sym__expr_parenthesized_immediate] = STATE(734), + [sym__immediate_decimal] = STATE(735), + [sym_val_variable] = STATE(734), [sym_comment] = STATE(315), - [anon_sym_export] = ACTIONS(1500), - [anon_sym_alias] = ACTIONS(1500), - [anon_sym_let] = ACTIONS(1500), - [anon_sym_let_DASHenv] = ACTIONS(1500), - [anon_sym_mut] = ACTIONS(1500), - [anon_sym_const] = ACTIONS(1500), - [aux_sym_cmd_identifier_token1] = ACTIONS(1500), - [aux_sym_cmd_identifier_token2] = ACTIONS(1510), - [aux_sym_cmd_identifier_token3] = ACTIONS(1510), - [aux_sym_cmd_identifier_token4] = ACTIONS(1510), - [aux_sym_cmd_identifier_token5] = ACTIONS(1510), - [aux_sym_cmd_identifier_token6] = ACTIONS(1510), - [aux_sym_cmd_identifier_token7] = ACTIONS(1510), - [aux_sym_cmd_identifier_token8] = ACTIONS(1500), - [aux_sym_cmd_identifier_token9] = ACTIONS(1500), - [aux_sym_cmd_identifier_token10] = ACTIONS(1510), - [aux_sym_cmd_identifier_token11] = ACTIONS(1510), - [aux_sym_cmd_identifier_token12] = ACTIONS(1500), - [aux_sym_cmd_identifier_token13] = ACTIONS(1500), - [aux_sym_cmd_identifier_token14] = ACTIONS(1500), - [aux_sym_cmd_identifier_token15] = ACTIONS(1500), - [aux_sym_cmd_identifier_token16] = ACTIONS(1510), - [aux_sym_cmd_identifier_token17] = ACTIONS(1510), - [aux_sym_cmd_identifier_token18] = ACTIONS(1510), - [aux_sym_cmd_identifier_token19] = ACTIONS(1510), - [aux_sym_cmd_identifier_token20] = ACTIONS(1510), - [aux_sym_cmd_identifier_token21] = ACTIONS(1510), - [aux_sym_cmd_identifier_token22] = ACTIONS(1510), - [aux_sym_cmd_identifier_token23] = ACTIONS(1510), - [aux_sym_cmd_identifier_token24] = ACTIONS(1510), - [aux_sym_cmd_identifier_token25] = ACTIONS(1510), - [aux_sym_cmd_identifier_token26] = ACTIONS(1510), - [aux_sym_cmd_identifier_token27] = ACTIONS(1510), - [aux_sym_cmd_identifier_token28] = ACTIONS(1510), - [aux_sym_cmd_identifier_token29] = ACTIONS(1510), - [aux_sym_cmd_identifier_token30] = ACTIONS(1510), - [aux_sym_cmd_identifier_token31] = ACTIONS(1510), - [aux_sym_cmd_identifier_token32] = ACTIONS(1510), - [aux_sym_cmd_identifier_token33] = ACTIONS(1510), - [aux_sym_cmd_identifier_token34] = ACTIONS(1500), - [aux_sym_cmd_identifier_token35] = ACTIONS(1510), - [aux_sym_cmd_identifier_token36] = ACTIONS(1510), - [aux_sym_cmd_identifier_token37] = ACTIONS(1510), - [aux_sym_cmd_identifier_token38] = ACTIONS(1500), - [aux_sym_cmd_identifier_token39] = ACTIONS(1510), - [aux_sym_cmd_identifier_token40] = ACTIONS(1510), - [anon_sym_def] = ACTIONS(1500), - [anon_sym_export_DASHenv] = ACTIONS(1500), - [anon_sym_extern] = ACTIONS(1500), - [anon_sym_module] = ACTIONS(1500), - [anon_sym_use] = ACTIONS(1500), - [anon_sym_LPAREN] = ACTIONS(1500), - [anon_sym_COMMA] = ACTIONS(1510), - [anon_sym_DOLLAR] = ACTIONS(1512), - [anon_sym_error] = ACTIONS(1500), - [anon_sym_DASH2] = ACTIONS(1500), - [anon_sym_break] = ACTIONS(1500), - [anon_sym_continue] = ACTIONS(1500), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_in2] = ACTIONS(1500), - [anon_sym_loop] = ACTIONS(1500), - [anon_sym_make] = ACTIONS(1500), - [anon_sym_while] = ACTIONS(1500), - [anon_sym_do] = ACTIONS(1500), - [anon_sym_if] = ACTIONS(1500), - [anon_sym_else] = ACTIONS(1500), - [anon_sym_match] = ACTIONS(1500), - [anon_sym_RBRACE] = ACTIONS(1510), - [anon_sym_try] = ACTIONS(1500), - [anon_sym_catch] = ACTIONS(1500), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_source] = ACTIONS(1500), - [anon_sym_source_DASHenv] = ACTIONS(1500), - [anon_sym_register] = ACTIONS(1500), - [anon_sym_hide] = ACTIONS(1500), - [anon_sym_hide_DASHenv] = ACTIONS(1500), - [anon_sym_overlay] = ACTIONS(1500), - [anon_sym_as] = ACTIONS(1500), - [anon_sym_LPAREN2] = ACTIONS(1514), - [anon_sym_PLUS2] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1510), - [anon_sym_DOT] = ACTIONS(1658), - [aux_sym__immediate_decimal_token1] = ACTIONS(1660), - [aux_sym__immediate_decimal_token3] = ACTIONS(1662), - [aux_sym__immediate_decimal_token4] = ACTIONS(1664), - [aux_sym__immediate_decimal_token5] = ACTIONS(1666), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1510), - [aux_sym__val_number_decimal_token1] = ACTIONS(1500), - [aux_sym__val_number_decimal_token2] = ACTIONS(1500), - [aux_sym__val_number_decimal_token3] = ACTIONS(1500), - [aux_sym__val_number_decimal_token4] = ACTIONS(1500), - [aux_sym__val_number_token1] = ACTIONS(1510), - [aux_sym__val_number_token2] = ACTIONS(1510), - [aux_sym__val_number_token3] = ACTIONS(1510), - [aux_sym__val_number_token4] = ACTIONS(1500), - [aux_sym__val_number_token5] = ACTIONS(1500), - [aux_sym__val_number_token6] = ACTIONS(1500), - [anon_sym_DQUOTE] = ACTIONS(1510), - [sym__str_single_quotes] = ACTIONS(1510), - [sym__str_back_ticks] = ACTIONS(1510), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1510), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1510), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1510), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1510), + [anon_sym_export] = ACTIONS(1522), + [anon_sym_alias] = ACTIONS(1522), + [anon_sym_let] = ACTIONS(1522), + [anon_sym_let_DASHenv] = ACTIONS(1522), + [anon_sym_mut] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1522), + [aux_sym_cmd_identifier_token1] = ACTIONS(1522), + [aux_sym_cmd_identifier_token2] = ACTIONS(1532), + [aux_sym_cmd_identifier_token3] = ACTIONS(1532), + [aux_sym_cmd_identifier_token4] = ACTIONS(1532), + [aux_sym_cmd_identifier_token5] = ACTIONS(1532), + [aux_sym_cmd_identifier_token6] = ACTIONS(1532), + [aux_sym_cmd_identifier_token7] = ACTIONS(1532), + [aux_sym_cmd_identifier_token8] = ACTIONS(1522), + [aux_sym_cmd_identifier_token9] = ACTIONS(1522), + [aux_sym_cmd_identifier_token10] = ACTIONS(1532), + [aux_sym_cmd_identifier_token11] = ACTIONS(1532), + [aux_sym_cmd_identifier_token12] = ACTIONS(1522), + [aux_sym_cmd_identifier_token13] = ACTIONS(1522), + [aux_sym_cmd_identifier_token14] = ACTIONS(1522), + [aux_sym_cmd_identifier_token15] = ACTIONS(1522), + [aux_sym_cmd_identifier_token16] = ACTIONS(1532), + [aux_sym_cmd_identifier_token17] = ACTIONS(1532), + [aux_sym_cmd_identifier_token18] = ACTIONS(1532), + [aux_sym_cmd_identifier_token19] = ACTIONS(1532), + [aux_sym_cmd_identifier_token20] = ACTIONS(1532), + [aux_sym_cmd_identifier_token21] = ACTIONS(1532), + [aux_sym_cmd_identifier_token22] = ACTIONS(1532), + [aux_sym_cmd_identifier_token23] = ACTIONS(1532), + [aux_sym_cmd_identifier_token24] = ACTIONS(1532), + [aux_sym_cmd_identifier_token25] = ACTIONS(1532), + [aux_sym_cmd_identifier_token26] = ACTIONS(1532), + [aux_sym_cmd_identifier_token27] = ACTIONS(1532), + [aux_sym_cmd_identifier_token28] = ACTIONS(1532), + [aux_sym_cmd_identifier_token29] = ACTIONS(1532), + [aux_sym_cmd_identifier_token30] = ACTIONS(1532), + [aux_sym_cmd_identifier_token31] = ACTIONS(1532), + [aux_sym_cmd_identifier_token32] = ACTIONS(1532), + [aux_sym_cmd_identifier_token33] = ACTIONS(1532), + [aux_sym_cmd_identifier_token34] = ACTIONS(1522), + [aux_sym_cmd_identifier_token35] = ACTIONS(1532), + [aux_sym_cmd_identifier_token36] = ACTIONS(1532), + [aux_sym_cmd_identifier_token37] = ACTIONS(1532), + [aux_sym_cmd_identifier_token38] = ACTIONS(1522), + [aux_sym_cmd_identifier_token39] = ACTIONS(1532), + [aux_sym_cmd_identifier_token40] = ACTIONS(1532), + [anon_sym_def] = ACTIONS(1522), + [anon_sym_export_DASHenv] = ACTIONS(1522), + [anon_sym_extern] = ACTIONS(1522), + [anon_sym_module] = ACTIONS(1522), + [anon_sym_use] = ACTIONS(1522), + [anon_sym_LPAREN] = ACTIONS(1522), + [anon_sym_COMMA] = ACTIONS(1532), + [anon_sym_DOLLAR] = ACTIONS(1365), + [anon_sym_error] = ACTIONS(1522), + [anon_sym_DASH2] = ACTIONS(1522), + [anon_sym_break] = ACTIONS(1522), + [anon_sym_continue] = ACTIONS(1522), + [anon_sym_for] = ACTIONS(1522), + [anon_sym_in2] = ACTIONS(1522), + [anon_sym_loop] = ACTIONS(1522), + [anon_sym_make] = ACTIONS(1522), + [anon_sym_while] = ACTIONS(1522), + [anon_sym_do] = ACTIONS(1522), + [anon_sym_if] = ACTIONS(1522), + [anon_sym_else] = ACTIONS(1522), + [anon_sym_match] = ACTIONS(1522), + [anon_sym_RBRACE] = ACTIONS(1532), + [anon_sym_try] = ACTIONS(1522), + [anon_sym_catch] = ACTIONS(1522), + [anon_sym_return] = ACTIONS(1522), + [anon_sym_source] = ACTIONS(1522), + [anon_sym_source_DASHenv] = ACTIONS(1522), + [anon_sym_hide] = ACTIONS(1522), + [anon_sym_hide_DASHenv] = ACTIONS(1522), + [anon_sym_overlay] = ACTIONS(1522), + [anon_sym_as] = ACTIONS(1522), + [anon_sym_LPAREN2] = ACTIONS(1592), + [anon_sym_PLUS2] = ACTIONS(1522), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1532), + [aux_sym__immediate_decimal_token1] = ACTIONS(1658), + [aux_sym__immediate_decimal_token3] = ACTIONS(1660), + [aux_sym__immediate_decimal_token4] = ACTIONS(1662), + [aux_sym__immediate_decimal_token5] = ACTIONS(1664), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1532), + [aux_sym__val_number_decimal_token1] = ACTIONS(1522), + [aux_sym__val_number_decimal_token2] = ACTIONS(1522), + [aux_sym__val_number_decimal_token3] = ACTIONS(1522), + [aux_sym__val_number_decimal_token4] = ACTIONS(1522), + [aux_sym__val_number_token1] = ACTIONS(1532), + [aux_sym__val_number_token2] = ACTIONS(1532), + [aux_sym__val_number_token3] = ACTIONS(1532), + [aux_sym__val_number_token4] = ACTIONS(1522), + [aux_sym__val_number_token5] = ACTIONS(1522), + [aux_sym__val_number_token6] = ACTIONS(1522), + [anon_sym_DQUOTE] = ACTIONS(1532), + [sym__str_single_quotes] = ACTIONS(1532), + [sym__str_back_ticks] = ACTIONS(1532), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1532), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1532), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1532), + [anon_sym_register] = ACTIONS(1522), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1532), }, [316] = { + [sym_cell_path] = STATE(464), + [sym_path] = STATE(411), [sym_comment] = STATE(316), - [anon_sym_export] = ACTIONS(1542), - [anon_sym_alias] = ACTIONS(1542), - [anon_sym_let] = ACTIONS(1542), - [anon_sym_let_DASHenv] = ACTIONS(1542), - [anon_sym_mut] = ACTIONS(1542), - [anon_sym_const] = ACTIONS(1542), - [aux_sym_cmd_identifier_token1] = ACTIONS(1542), - [aux_sym_cmd_identifier_token2] = ACTIONS(1544), - [aux_sym_cmd_identifier_token3] = ACTIONS(1544), - [aux_sym_cmd_identifier_token4] = ACTIONS(1544), - [aux_sym_cmd_identifier_token5] = ACTIONS(1544), - [aux_sym_cmd_identifier_token6] = ACTIONS(1544), - [aux_sym_cmd_identifier_token7] = ACTIONS(1544), - [aux_sym_cmd_identifier_token8] = ACTIONS(1542), - [aux_sym_cmd_identifier_token9] = ACTIONS(1542), - [aux_sym_cmd_identifier_token10] = ACTIONS(1544), - [aux_sym_cmd_identifier_token11] = ACTIONS(1544), - [aux_sym_cmd_identifier_token12] = ACTIONS(1542), - [aux_sym_cmd_identifier_token13] = ACTIONS(1542), - [aux_sym_cmd_identifier_token14] = ACTIONS(1542), - [aux_sym_cmd_identifier_token15] = ACTIONS(1542), - [aux_sym_cmd_identifier_token16] = ACTIONS(1544), - [aux_sym_cmd_identifier_token17] = ACTIONS(1544), - [aux_sym_cmd_identifier_token18] = ACTIONS(1544), - [aux_sym_cmd_identifier_token19] = ACTIONS(1544), - [aux_sym_cmd_identifier_token20] = ACTIONS(1544), - [aux_sym_cmd_identifier_token21] = ACTIONS(1544), - [aux_sym_cmd_identifier_token22] = ACTIONS(1544), - [aux_sym_cmd_identifier_token23] = ACTIONS(1544), - [aux_sym_cmd_identifier_token24] = ACTIONS(1544), - [aux_sym_cmd_identifier_token25] = ACTIONS(1544), - [aux_sym_cmd_identifier_token26] = ACTIONS(1544), - [aux_sym_cmd_identifier_token27] = ACTIONS(1544), - [aux_sym_cmd_identifier_token28] = ACTIONS(1544), - [aux_sym_cmd_identifier_token29] = ACTIONS(1544), - [aux_sym_cmd_identifier_token30] = ACTIONS(1544), - [aux_sym_cmd_identifier_token31] = ACTIONS(1544), - [aux_sym_cmd_identifier_token32] = ACTIONS(1544), - [aux_sym_cmd_identifier_token33] = ACTIONS(1544), - [aux_sym_cmd_identifier_token34] = ACTIONS(1542), - [aux_sym_cmd_identifier_token35] = ACTIONS(1544), - [aux_sym_cmd_identifier_token36] = ACTIONS(1544), - [aux_sym_cmd_identifier_token37] = ACTIONS(1544), - [aux_sym_cmd_identifier_token38] = ACTIONS(1542), - [aux_sym_cmd_identifier_token39] = ACTIONS(1544), - [aux_sym_cmd_identifier_token40] = ACTIONS(1544), - [anon_sym_def] = ACTIONS(1542), - [anon_sym_export_DASHenv] = ACTIONS(1542), - [anon_sym_extern] = ACTIONS(1542), - [anon_sym_module] = ACTIONS(1542), - [anon_sym_use] = ACTIONS(1542), - [anon_sym_LPAREN] = ACTIONS(1542), - [anon_sym_COMMA] = ACTIONS(1544), - [anon_sym_DOLLAR] = ACTIONS(1542), - [anon_sym_error] = ACTIONS(1542), - [anon_sym_DASH2] = ACTIONS(1542), - [anon_sym_break] = ACTIONS(1542), - [anon_sym_continue] = ACTIONS(1542), - [anon_sym_for] = ACTIONS(1542), - [anon_sym_in2] = ACTIONS(1542), - [anon_sym_loop] = ACTIONS(1542), - [anon_sym_make] = ACTIONS(1542), - [anon_sym_while] = ACTIONS(1542), - [anon_sym_do] = ACTIONS(1542), - [anon_sym_if] = ACTIONS(1542), - [anon_sym_else] = ACTIONS(1542), - [anon_sym_match] = ACTIONS(1542), - [anon_sym_RBRACE] = ACTIONS(1544), - [anon_sym_try] = ACTIONS(1542), - [anon_sym_catch] = ACTIONS(1542), - [anon_sym_return] = ACTIONS(1542), - [anon_sym_source] = ACTIONS(1542), - [anon_sym_source_DASHenv] = ACTIONS(1542), - [anon_sym_register] = ACTIONS(1542), - [anon_sym_hide] = ACTIONS(1542), - [anon_sym_hide_DASHenv] = ACTIONS(1542), - [anon_sym_overlay] = ACTIONS(1542), - [anon_sym_as] = ACTIONS(1542), - [anon_sym_LPAREN2] = ACTIONS(1544), - [anon_sym_PLUS2] = ACTIONS(1542), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1544), - [anon_sym_DOT_DOT2] = ACTIONS(1542), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1544), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1544), - [aux_sym__immediate_decimal_token1] = ACTIONS(1668), - [aux_sym__immediate_decimal_token2] = ACTIONS(1670), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1544), - [aux_sym__val_number_decimal_token1] = ACTIONS(1542), - [aux_sym__val_number_decimal_token2] = ACTIONS(1544), - [aux_sym__val_number_decimal_token3] = ACTIONS(1544), - [aux_sym__val_number_decimal_token4] = ACTIONS(1544), - [aux_sym__val_number_token1] = ACTIONS(1544), - [aux_sym__val_number_token2] = ACTIONS(1544), - [aux_sym__val_number_token3] = ACTIONS(1544), - [aux_sym__val_number_token4] = ACTIONS(1542), - [aux_sym__val_number_token5] = ACTIONS(1542), - [aux_sym__val_number_token6] = ACTIONS(1542), - [sym_filesize_unit] = ACTIONS(1542), - [sym_duration_unit] = ACTIONS(1542), - [anon_sym_DQUOTE] = ACTIONS(1544), - [sym__str_single_quotes] = ACTIONS(1544), - [sym__str_back_ticks] = ACTIONS(1544), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1544), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1544), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1544), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1542), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1544), + [aux_sym_cell_path_repeat1] = STATE(353), + [anon_sym_export] = ACTIONS(1666), + [anon_sym_alias] = ACTIONS(1666), + [anon_sym_let] = ACTIONS(1666), + [anon_sym_let_DASHenv] = ACTIONS(1666), + [anon_sym_mut] = ACTIONS(1666), + [anon_sym_const] = ACTIONS(1666), + [aux_sym_cmd_identifier_token1] = ACTIONS(1666), + [aux_sym_cmd_identifier_token2] = ACTIONS(1666), + [aux_sym_cmd_identifier_token3] = ACTIONS(1666), + [aux_sym_cmd_identifier_token4] = ACTIONS(1666), + [aux_sym_cmd_identifier_token5] = ACTIONS(1666), + [aux_sym_cmd_identifier_token6] = ACTIONS(1666), + [aux_sym_cmd_identifier_token7] = ACTIONS(1666), + [aux_sym_cmd_identifier_token8] = ACTIONS(1666), + [aux_sym_cmd_identifier_token9] = ACTIONS(1666), + [aux_sym_cmd_identifier_token10] = ACTIONS(1666), + [aux_sym_cmd_identifier_token11] = ACTIONS(1666), + [aux_sym_cmd_identifier_token12] = ACTIONS(1666), + [aux_sym_cmd_identifier_token13] = ACTIONS(1666), + [aux_sym_cmd_identifier_token14] = ACTIONS(1666), + [aux_sym_cmd_identifier_token15] = ACTIONS(1666), + [aux_sym_cmd_identifier_token16] = ACTIONS(1666), + [aux_sym_cmd_identifier_token17] = ACTIONS(1666), + [aux_sym_cmd_identifier_token18] = ACTIONS(1666), + [aux_sym_cmd_identifier_token19] = ACTIONS(1666), + [aux_sym_cmd_identifier_token20] = ACTIONS(1666), + [aux_sym_cmd_identifier_token21] = ACTIONS(1666), + [aux_sym_cmd_identifier_token22] = ACTIONS(1666), + [aux_sym_cmd_identifier_token23] = ACTIONS(1666), + [aux_sym_cmd_identifier_token24] = ACTIONS(1666), + [aux_sym_cmd_identifier_token25] = ACTIONS(1666), + [aux_sym_cmd_identifier_token26] = ACTIONS(1666), + [aux_sym_cmd_identifier_token27] = ACTIONS(1666), + [aux_sym_cmd_identifier_token28] = ACTIONS(1666), + [aux_sym_cmd_identifier_token29] = ACTIONS(1666), + [aux_sym_cmd_identifier_token30] = ACTIONS(1666), + [aux_sym_cmd_identifier_token31] = ACTIONS(1666), + [aux_sym_cmd_identifier_token32] = ACTIONS(1666), + [aux_sym_cmd_identifier_token33] = ACTIONS(1666), + [aux_sym_cmd_identifier_token34] = ACTIONS(1666), + [aux_sym_cmd_identifier_token35] = ACTIONS(1666), + [aux_sym_cmd_identifier_token36] = ACTIONS(1666), + [aux_sym_cmd_identifier_token37] = ACTIONS(1666), + [aux_sym_cmd_identifier_token38] = ACTIONS(1666), + [aux_sym_cmd_identifier_token39] = ACTIONS(1666), + [aux_sym_cmd_identifier_token40] = ACTIONS(1666), + [anon_sym_def] = ACTIONS(1666), + [anon_sym_export_DASHenv] = ACTIONS(1666), + [anon_sym_extern] = ACTIONS(1666), + [anon_sym_module] = ACTIONS(1666), + [anon_sym_use] = ACTIONS(1666), + [anon_sym_LPAREN] = ACTIONS(1666), + [anon_sym_COMMA] = ACTIONS(1666), + [anon_sym_DOLLAR] = ACTIONS(1666), + [anon_sym_error] = ACTIONS(1666), + [anon_sym_DASH2] = ACTIONS(1666), + [anon_sym_break] = ACTIONS(1666), + [anon_sym_continue] = ACTIONS(1666), + [anon_sym_for] = ACTIONS(1666), + [anon_sym_in2] = ACTIONS(1666), + [anon_sym_loop] = ACTIONS(1666), + [anon_sym_make] = ACTIONS(1666), + [anon_sym_while] = ACTIONS(1666), + [anon_sym_do] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_else] = ACTIONS(1666), + [anon_sym_match] = ACTIONS(1666), + [anon_sym_RBRACE] = ACTIONS(1666), + [anon_sym_try] = ACTIONS(1666), + [anon_sym_catch] = ACTIONS(1666), + [anon_sym_return] = ACTIONS(1666), + [anon_sym_source] = ACTIONS(1666), + [anon_sym_source_DASHenv] = ACTIONS(1666), + [anon_sym_hide] = ACTIONS(1666), + [anon_sym_hide_DASHenv] = ACTIONS(1666), + [anon_sym_overlay] = ACTIONS(1666), + [anon_sym_as] = ACTIONS(1666), + [anon_sym_PLUS2] = ACTIONS(1666), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1666), + [anon_sym_DOT_DOT2] = ACTIONS(1666), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1666), + [aux_sym__val_number_decimal_token1] = ACTIONS(1666), + [aux_sym__val_number_decimal_token2] = ACTIONS(1666), + [aux_sym__val_number_decimal_token3] = ACTIONS(1666), + [aux_sym__val_number_decimal_token4] = ACTIONS(1666), + [aux_sym__val_number_token1] = ACTIONS(1666), + [aux_sym__val_number_token2] = ACTIONS(1666), + [aux_sym__val_number_token3] = ACTIONS(1666), + [aux_sym__val_number_token4] = ACTIONS(1666), + [aux_sym__val_number_token5] = ACTIONS(1666), + [aux_sym__val_number_token6] = ACTIONS(1666), + [anon_sym_DQUOTE] = ACTIONS(1666), + [sym__str_single_quotes] = ACTIONS(1666), + [sym__str_back_ticks] = ACTIONS(1666), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1666), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1666), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1666), + [sym__entry_separator] = ACTIONS(1668), + [anon_sym_register] = ACTIONS(1666), + [anon_sym_DOT2] = ACTIONS(1670), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1668), }, [317] = { [sym_comment] = STATE(317), @@ -116827,7 +116774,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(1674), [anon_sym_source] = ACTIONS(1674), [anon_sym_source_DASHenv] = ACTIONS(1674), - [anon_sym_register] = ACTIONS(1674), [anon_sym_hide] = ACTIONS(1674), [anon_sym_hide_DASHenv] = ACTIONS(1674), [anon_sym_overlay] = ACTIONS(1674), @@ -116860,233 +116806,451 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_env_var_token1] = ACTIONS(1674), [anon_sym_CARET] = ACTIONS(1672), [aux_sym_command_token1] = ACTIONS(1672), - [anon_sym_POUND] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1672), }, [318] = { + [sym__expr_parenthesized_immediate] = STATE(744), + [sym__immediate_decimal] = STATE(745), + [sym_val_variable] = STATE(744), [sym_comment] = STATE(318), - [anon_sym_export] = ACTIONS(1550), - [anon_sym_alias] = ACTIONS(1550), - [anon_sym_let] = ACTIONS(1550), - [anon_sym_let_DASHenv] = ACTIONS(1550), - [anon_sym_mut] = ACTIONS(1550), - [anon_sym_const] = ACTIONS(1550), - [aux_sym_cmd_identifier_token1] = ACTIONS(1550), - [aux_sym_cmd_identifier_token2] = ACTIONS(1552), - [aux_sym_cmd_identifier_token3] = ACTIONS(1552), - [aux_sym_cmd_identifier_token4] = ACTIONS(1552), - [aux_sym_cmd_identifier_token5] = ACTIONS(1552), - [aux_sym_cmd_identifier_token6] = ACTIONS(1552), - [aux_sym_cmd_identifier_token7] = ACTIONS(1552), - [aux_sym_cmd_identifier_token8] = ACTIONS(1550), - [aux_sym_cmd_identifier_token9] = ACTIONS(1550), - [aux_sym_cmd_identifier_token10] = ACTIONS(1552), - [aux_sym_cmd_identifier_token11] = ACTIONS(1552), - [aux_sym_cmd_identifier_token12] = ACTIONS(1550), - [aux_sym_cmd_identifier_token13] = ACTIONS(1550), - [aux_sym_cmd_identifier_token14] = ACTIONS(1550), - [aux_sym_cmd_identifier_token15] = ACTIONS(1550), - [aux_sym_cmd_identifier_token16] = ACTIONS(1552), - [aux_sym_cmd_identifier_token17] = ACTIONS(1552), - [aux_sym_cmd_identifier_token18] = ACTIONS(1552), - [aux_sym_cmd_identifier_token19] = ACTIONS(1552), - [aux_sym_cmd_identifier_token20] = ACTIONS(1552), - [aux_sym_cmd_identifier_token21] = ACTIONS(1552), - [aux_sym_cmd_identifier_token22] = ACTIONS(1552), - [aux_sym_cmd_identifier_token23] = ACTIONS(1552), - [aux_sym_cmd_identifier_token24] = ACTIONS(1552), - [aux_sym_cmd_identifier_token25] = ACTIONS(1552), - [aux_sym_cmd_identifier_token26] = ACTIONS(1552), - [aux_sym_cmd_identifier_token27] = ACTIONS(1552), - [aux_sym_cmd_identifier_token28] = ACTIONS(1552), - [aux_sym_cmd_identifier_token29] = ACTIONS(1552), - [aux_sym_cmd_identifier_token30] = ACTIONS(1552), - [aux_sym_cmd_identifier_token31] = ACTIONS(1552), - [aux_sym_cmd_identifier_token32] = ACTIONS(1552), - [aux_sym_cmd_identifier_token33] = ACTIONS(1552), - [aux_sym_cmd_identifier_token34] = ACTIONS(1550), - [aux_sym_cmd_identifier_token35] = ACTIONS(1552), - [aux_sym_cmd_identifier_token36] = ACTIONS(1552), - [aux_sym_cmd_identifier_token37] = ACTIONS(1552), - [aux_sym_cmd_identifier_token38] = ACTIONS(1550), - [aux_sym_cmd_identifier_token39] = ACTIONS(1552), - [aux_sym_cmd_identifier_token40] = ACTIONS(1552), - [anon_sym_def] = ACTIONS(1550), - [anon_sym_export_DASHenv] = ACTIONS(1550), - [anon_sym_extern] = ACTIONS(1550), - [anon_sym_module] = ACTIONS(1550), - [anon_sym_use] = ACTIONS(1550), - [anon_sym_LPAREN] = ACTIONS(1550), - [anon_sym_COMMA] = ACTIONS(1552), - [anon_sym_DOLLAR] = ACTIONS(1550), - [anon_sym_error] = ACTIONS(1550), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_break] = ACTIONS(1550), - [anon_sym_continue] = ACTIONS(1550), - [anon_sym_for] = ACTIONS(1550), - [anon_sym_in2] = ACTIONS(1550), - [anon_sym_loop] = ACTIONS(1550), - [anon_sym_make] = ACTIONS(1550), - [anon_sym_while] = ACTIONS(1550), - [anon_sym_do] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_else] = ACTIONS(1550), - [anon_sym_match] = ACTIONS(1550), - [anon_sym_RBRACE] = ACTIONS(1552), - [anon_sym_try] = ACTIONS(1550), - [anon_sym_catch] = ACTIONS(1550), - [anon_sym_return] = ACTIONS(1550), - [anon_sym_source] = ACTIONS(1550), - [anon_sym_source_DASHenv] = ACTIONS(1550), - [anon_sym_register] = ACTIONS(1550), - [anon_sym_hide] = ACTIONS(1550), - [anon_sym_hide_DASHenv] = ACTIONS(1550), - [anon_sym_overlay] = ACTIONS(1550), - [anon_sym_as] = ACTIONS(1550), - [anon_sym_LPAREN2] = ACTIONS(1552), - [anon_sym_PLUS2] = ACTIONS(1550), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1552), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT] = ACTIONS(1676), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [aux_sym__immediate_decimal_token2] = ACTIONS(1678), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1552), - [aux_sym__val_number_decimal_token1] = ACTIONS(1550), - [aux_sym__val_number_decimal_token2] = ACTIONS(1552), - [aux_sym__val_number_decimal_token3] = ACTIONS(1552), - [aux_sym__val_number_decimal_token4] = ACTIONS(1552), - [aux_sym__val_number_token1] = ACTIONS(1552), - [aux_sym__val_number_token2] = ACTIONS(1552), - [aux_sym__val_number_token3] = ACTIONS(1552), - [aux_sym__val_number_token4] = ACTIONS(1550), - [aux_sym__val_number_token5] = ACTIONS(1550), - [aux_sym__val_number_token6] = ACTIONS(1550), - [sym_filesize_unit] = ACTIONS(1550), - [sym_duration_unit] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [sym__str_single_quotes] = ACTIONS(1552), - [sym__str_back_ticks] = ACTIONS(1552), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1552), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1552), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1552), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1550), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1552), + [anon_sym_export] = ACTIONS(1588), + [anon_sym_alias] = ACTIONS(1588), + [anon_sym_let] = ACTIONS(1588), + [anon_sym_let_DASHenv] = ACTIONS(1588), + [anon_sym_mut] = ACTIONS(1588), + [anon_sym_const] = ACTIONS(1588), + [aux_sym_cmd_identifier_token1] = ACTIONS(1588), + [aux_sym_cmd_identifier_token2] = ACTIONS(1590), + [aux_sym_cmd_identifier_token3] = ACTIONS(1590), + [aux_sym_cmd_identifier_token4] = ACTIONS(1590), + [aux_sym_cmd_identifier_token5] = ACTIONS(1590), + [aux_sym_cmd_identifier_token6] = ACTIONS(1590), + [aux_sym_cmd_identifier_token7] = ACTIONS(1590), + [aux_sym_cmd_identifier_token8] = ACTIONS(1588), + [aux_sym_cmd_identifier_token9] = ACTIONS(1588), + [aux_sym_cmd_identifier_token10] = ACTIONS(1590), + [aux_sym_cmd_identifier_token11] = ACTIONS(1590), + [aux_sym_cmd_identifier_token12] = ACTIONS(1588), + [aux_sym_cmd_identifier_token13] = ACTIONS(1588), + [aux_sym_cmd_identifier_token14] = ACTIONS(1588), + [aux_sym_cmd_identifier_token15] = ACTIONS(1588), + [aux_sym_cmd_identifier_token16] = ACTIONS(1590), + [aux_sym_cmd_identifier_token17] = ACTIONS(1590), + [aux_sym_cmd_identifier_token18] = ACTIONS(1590), + [aux_sym_cmd_identifier_token19] = ACTIONS(1590), + [aux_sym_cmd_identifier_token20] = ACTIONS(1590), + [aux_sym_cmd_identifier_token21] = ACTIONS(1590), + [aux_sym_cmd_identifier_token22] = ACTIONS(1590), + [aux_sym_cmd_identifier_token23] = ACTIONS(1590), + [aux_sym_cmd_identifier_token24] = ACTIONS(1590), + [aux_sym_cmd_identifier_token25] = ACTIONS(1590), + [aux_sym_cmd_identifier_token26] = ACTIONS(1590), + [aux_sym_cmd_identifier_token27] = ACTIONS(1590), + [aux_sym_cmd_identifier_token28] = ACTIONS(1590), + [aux_sym_cmd_identifier_token29] = ACTIONS(1590), + [aux_sym_cmd_identifier_token30] = ACTIONS(1590), + [aux_sym_cmd_identifier_token31] = ACTIONS(1590), + [aux_sym_cmd_identifier_token32] = ACTIONS(1590), + [aux_sym_cmd_identifier_token33] = ACTIONS(1590), + [aux_sym_cmd_identifier_token34] = ACTIONS(1588), + [aux_sym_cmd_identifier_token35] = ACTIONS(1590), + [aux_sym_cmd_identifier_token36] = ACTIONS(1590), + [aux_sym_cmd_identifier_token37] = ACTIONS(1590), + [aux_sym_cmd_identifier_token38] = ACTIONS(1588), + [aux_sym_cmd_identifier_token39] = ACTIONS(1590), + [aux_sym_cmd_identifier_token40] = ACTIONS(1590), + [anon_sym_def] = ACTIONS(1588), + [anon_sym_export_DASHenv] = ACTIONS(1588), + [anon_sym_extern] = ACTIONS(1588), + [anon_sym_module] = ACTIONS(1588), + [anon_sym_use] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1588), + [anon_sym_COMMA] = ACTIONS(1590), + [anon_sym_DOLLAR] = ACTIONS(1365), + [anon_sym_error] = ACTIONS(1588), + [anon_sym_DASH2] = ACTIONS(1588), + [anon_sym_break] = ACTIONS(1588), + [anon_sym_continue] = ACTIONS(1588), + [anon_sym_for] = ACTIONS(1588), + [anon_sym_in2] = ACTIONS(1588), + [anon_sym_loop] = ACTIONS(1588), + [anon_sym_make] = ACTIONS(1588), + [anon_sym_while] = ACTIONS(1588), + [anon_sym_do] = ACTIONS(1588), + [anon_sym_if] = ACTIONS(1588), + [anon_sym_else] = ACTIONS(1588), + [anon_sym_match] = ACTIONS(1588), + [anon_sym_RBRACE] = ACTIONS(1590), + [anon_sym_try] = ACTIONS(1588), + [anon_sym_catch] = ACTIONS(1588), + [anon_sym_return] = ACTIONS(1588), + [anon_sym_source] = ACTIONS(1588), + [anon_sym_source_DASHenv] = ACTIONS(1588), + [anon_sym_hide] = ACTIONS(1588), + [anon_sym_hide_DASHenv] = ACTIONS(1588), + [anon_sym_overlay] = ACTIONS(1588), + [anon_sym_as] = ACTIONS(1588), + [anon_sym_LPAREN2] = ACTIONS(1592), + [anon_sym_PLUS2] = ACTIONS(1588), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1590), + [aux_sym__immediate_decimal_token1] = ACTIONS(1658), + [aux_sym__immediate_decimal_token3] = ACTIONS(1660), + [aux_sym__immediate_decimal_token4] = ACTIONS(1662), + [aux_sym__immediate_decimal_token5] = ACTIONS(1664), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1590), + [aux_sym__val_number_decimal_token1] = ACTIONS(1588), + [aux_sym__val_number_decimal_token2] = ACTIONS(1588), + [aux_sym__val_number_decimal_token3] = ACTIONS(1588), + [aux_sym__val_number_decimal_token4] = ACTIONS(1588), + [aux_sym__val_number_token1] = ACTIONS(1590), + [aux_sym__val_number_token2] = ACTIONS(1590), + [aux_sym__val_number_token3] = ACTIONS(1590), + [aux_sym__val_number_token4] = ACTIONS(1588), + [aux_sym__val_number_token5] = ACTIONS(1588), + [aux_sym__val_number_token6] = ACTIONS(1588), + [anon_sym_DQUOTE] = ACTIONS(1590), + [sym__str_single_quotes] = ACTIONS(1590), + [sym__str_back_ticks] = ACTIONS(1590), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1590), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1590), + [anon_sym_register] = ACTIONS(1588), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1590), }, [319] = { + [sym_cell_path] = STATE(473), + [sym_path] = STATE(411), [sym_comment] = STATE(319), - [anon_sym_export] = ACTIONS(1550), - [anon_sym_alias] = ACTIONS(1550), - [anon_sym_let] = ACTIONS(1550), - [anon_sym_let_DASHenv] = ACTIONS(1550), - [anon_sym_mut] = ACTIONS(1550), - [anon_sym_const] = ACTIONS(1550), - [aux_sym_cmd_identifier_token1] = ACTIONS(1550), - [aux_sym_cmd_identifier_token2] = ACTIONS(1550), - [aux_sym_cmd_identifier_token3] = ACTIONS(1550), - [aux_sym_cmd_identifier_token4] = ACTIONS(1550), - [aux_sym_cmd_identifier_token5] = ACTIONS(1550), - [aux_sym_cmd_identifier_token6] = ACTIONS(1550), - [aux_sym_cmd_identifier_token7] = ACTIONS(1550), - [aux_sym_cmd_identifier_token8] = ACTIONS(1550), - [aux_sym_cmd_identifier_token9] = ACTIONS(1550), - [aux_sym_cmd_identifier_token10] = ACTIONS(1550), - [aux_sym_cmd_identifier_token11] = ACTIONS(1550), - [aux_sym_cmd_identifier_token12] = ACTIONS(1550), - [aux_sym_cmd_identifier_token13] = ACTIONS(1550), - [aux_sym_cmd_identifier_token14] = ACTIONS(1550), - [aux_sym_cmd_identifier_token15] = ACTIONS(1550), - [aux_sym_cmd_identifier_token16] = ACTIONS(1550), - [aux_sym_cmd_identifier_token17] = ACTIONS(1550), - [aux_sym_cmd_identifier_token18] = ACTIONS(1550), - [aux_sym_cmd_identifier_token19] = ACTIONS(1550), - [aux_sym_cmd_identifier_token20] = ACTIONS(1550), - [aux_sym_cmd_identifier_token21] = ACTIONS(1550), - [aux_sym_cmd_identifier_token22] = ACTIONS(1550), - [aux_sym_cmd_identifier_token23] = ACTIONS(1550), - [aux_sym_cmd_identifier_token24] = ACTIONS(1550), - [aux_sym_cmd_identifier_token25] = ACTIONS(1550), - [aux_sym_cmd_identifier_token26] = ACTIONS(1550), - [aux_sym_cmd_identifier_token27] = ACTIONS(1550), - [aux_sym_cmd_identifier_token28] = ACTIONS(1550), - [aux_sym_cmd_identifier_token29] = ACTIONS(1550), - [aux_sym_cmd_identifier_token30] = ACTIONS(1550), - [aux_sym_cmd_identifier_token31] = ACTIONS(1550), - [aux_sym_cmd_identifier_token32] = ACTIONS(1550), - [aux_sym_cmd_identifier_token33] = ACTIONS(1550), - [aux_sym_cmd_identifier_token34] = ACTIONS(1550), - [aux_sym_cmd_identifier_token35] = ACTIONS(1550), - [aux_sym_cmd_identifier_token36] = ACTIONS(1550), - [aux_sym_cmd_identifier_token37] = ACTIONS(1550), - [aux_sym_cmd_identifier_token38] = ACTIONS(1550), - [aux_sym_cmd_identifier_token39] = ACTIONS(1550), - [aux_sym_cmd_identifier_token40] = ACTIONS(1550), - [anon_sym_def] = ACTIONS(1550), - [anon_sym_export_DASHenv] = ACTIONS(1550), - [anon_sym_extern] = ACTIONS(1550), - [anon_sym_module] = ACTIONS(1550), - [anon_sym_use] = ACTIONS(1550), - [anon_sym_LPAREN] = ACTIONS(1550), - [anon_sym_COMMA] = ACTIONS(1550), - [anon_sym_DOLLAR] = ACTIONS(1550), - [anon_sym_error] = ACTIONS(1550), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_break] = ACTIONS(1550), - [anon_sym_continue] = ACTIONS(1550), - [anon_sym_for] = ACTIONS(1550), - [anon_sym_in2] = ACTIONS(1550), - [anon_sym_loop] = ACTIONS(1550), - [anon_sym_make] = ACTIONS(1550), - [anon_sym_while] = ACTIONS(1550), - [anon_sym_do] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_else] = ACTIONS(1550), - [anon_sym_match] = ACTIONS(1550), - [anon_sym_RBRACE] = ACTIONS(1550), - [anon_sym_try] = ACTIONS(1550), - [anon_sym_catch] = ACTIONS(1550), - [anon_sym_return] = ACTIONS(1550), - [anon_sym_source] = ACTIONS(1550), - [anon_sym_source_DASHenv] = ACTIONS(1550), - [anon_sym_register] = ACTIONS(1550), - [anon_sym_hide] = ACTIONS(1550), - [anon_sym_hide_DASHenv] = ACTIONS(1550), - [anon_sym_overlay] = ACTIONS(1550), - [anon_sym_as] = ACTIONS(1550), - [anon_sym_LPAREN2] = ACTIONS(1552), - [anon_sym_PLUS2] = ACTIONS(1550), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1550), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [aux_sym__immediate_decimal_token2] = ACTIONS(1556), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1550), - [aux_sym__val_number_decimal_token1] = ACTIONS(1550), - [aux_sym__val_number_decimal_token2] = ACTIONS(1550), - [aux_sym__val_number_decimal_token3] = ACTIONS(1550), - [aux_sym__val_number_decimal_token4] = ACTIONS(1550), - [aux_sym__val_number_token1] = ACTIONS(1550), - [aux_sym__val_number_token2] = ACTIONS(1550), - [aux_sym__val_number_token3] = ACTIONS(1550), - [aux_sym__val_number_token4] = ACTIONS(1550), - [aux_sym__val_number_token5] = ACTIONS(1550), - [aux_sym__val_number_token6] = ACTIONS(1550), - [sym_filesize_unit] = ACTIONS(1550), - [sym_duration_unit] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1550), - [sym__str_single_quotes] = ACTIONS(1550), - [sym__str_back_ticks] = ACTIONS(1550), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1550), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1550), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1550), - [sym__entry_separator] = ACTIONS(1552), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1550), + [aux_sym_cell_path_repeat1] = STATE(353), + [anon_sym_export] = ACTIONS(1676), + [anon_sym_alias] = ACTIONS(1676), + [anon_sym_let] = ACTIONS(1676), + [anon_sym_let_DASHenv] = ACTIONS(1676), + [anon_sym_mut] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [aux_sym_cmd_identifier_token1] = ACTIONS(1676), + [aux_sym_cmd_identifier_token2] = ACTIONS(1676), + [aux_sym_cmd_identifier_token3] = ACTIONS(1676), + [aux_sym_cmd_identifier_token4] = ACTIONS(1676), + [aux_sym_cmd_identifier_token5] = ACTIONS(1676), + [aux_sym_cmd_identifier_token6] = ACTIONS(1676), + [aux_sym_cmd_identifier_token7] = ACTIONS(1676), + [aux_sym_cmd_identifier_token8] = ACTIONS(1676), + [aux_sym_cmd_identifier_token9] = ACTIONS(1676), + [aux_sym_cmd_identifier_token10] = ACTIONS(1676), + [aux_sym_cmd_identifier_token11] = ACTIONS(1676), + [aux_sym_cmd_identifier_token12] = ACTIONS(1676), + [aux_sym_cmd_identifier_token13] = ACTIONS(1676), + [aux_sym_cmd_identifier_token14] = ACTIONS(1676), + [aux_sym_cmd_identifier_token15] = ACTIONS(1676), + [aux_sym_cmd_identifier_token16] = ACTIONS(1676), + [aux_sym_cmd_identifier_token17] = ACTIONS(1676), + [aux_sym_cmd_identifier_token18] = ACTIONS(1676), + [aux_sym_cmd_identifier_token19] = ACTIONS(1676), + [aux_sym_cmd_identifier_token20] = ACTIONS(1676), + [aux_sym_cmd_identifier_token21] = ACTIONS(1676), + [aux_sym_cmd_identifier_token22] = ACTIONS(1676), + [aux_sym_cmd_identifier_token23] = ACTIONS(1676), + [aux_sym_cmd_identifier_token24] = ACTIONS(1676), + [aux_sym_cmd_identifier_token25] = ACTIONS(1676), + [aux_sym_cmd_identifier_token26] = ACTIONS(1676), + [aux_sym_cmd_identifier_token27] = ACTIONS(1676), + [aux_sym_cmd_identifier_token28] = ACTIONS(1676), + [aux_sym_cmd_identifier_token29] = ACTIONS(1676), + [aux_sym_cmd_identifier_token30] = ACTIONS(1676), + [aux_sym_cmd_identifier_token31] = ACTIONS(1676), + [aux_sym_cmd_identifier_token32] = ACTIONS(1676), + [aux_sym_cmd_identifier_token33] = ACTIONS(1676), + [aux_sym_cmd_identifier_token34] = ACTIONS(1676), + [aux_sym_cmd_identifier_token35] = ACTIONS(1676), + [aux_sym_cmd_identifier_token36] = ACTIONS(1676), + [aux_sym_cmd_identifier_token37] = ACTIONS(1676), + [aux_sym_cmd_identifier_token38] = ACTIONS(1676), + [aux_sym_cmd_identifier_token39] = ACTIONS(1676), + [aux_sym_cmd_identifier_token40] = ACTIONS(1676), + [anon_sym_def] = ACTIONS(1676), + [anon_sym_export_DASHenv] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym_module] = ACTIONS(1676), + [anon_sym_use] = ACTIONS(1676), + [anon_sym_LPAREN] = ACTIONS(1676), + [anon_sym_COMMA] = ACTIONS(1676), + [anon_sym_DOLLAR] = ACTIONS(1676), + [anon_sym_error] = ACTIONS(1676), + [anon_sym_DASH2] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_in2] = ACTIONS(1676), + [anon_sym_loop] = ACTIONS(1676), + [anon_sym_make] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_else] = ACTIONS(1676), + [anon_sym_match] = ACTIONS(1676), + [anon_sym_RBRACE] = ACTIONS(1676), + [anon_sym_try] = ACTIONS(1676), + [anon_sym_catch] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_source] = ACTIONS(1676), + [anon_sym_source_DASHenv] = ACTIONS(1676), + [anon_sym_hide] = ACTIONS(1676), + [anon_sym_hide_DASHenv] = ACTIONS(1676), + [anon_sym_overlay] = ACTIONS(1676), + [anon_sym_as] = ACTIONS(1676), + [anon_sym_PLUS2] = ACTIONS(1676), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1676), + [anon_sym_DOT_DOT2] = ACTIONS(1676), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1678), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1678), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1676), + [aux_sym__val_number_decimal_token1] = ACTIONS(1676), + [aux_sym__val_number_decimal_token2] = ACTIONS(1676), + [aux_sym__val_number_decimal_token3] = ACTIONS(1676), + [aux_sym__val_number_decimal_token4] = ACTIONS(1676), + [aux_sym__val_number_token1] = ACTIONS(1676), + [aux_sym__val_number_token2] = ACTIONS(1676), + [aux_sym__val_number_token3] = ACTIONS(1676), + [aux_sym__val_number_token4] = ACTIONS(1676), + [aux_sym__val_number_token5] = ACTIONS(1676), + [aux_sym__val_number_token6] = ACTIONS(1676), + [anon_sym_DQUOTE] = ACTIONS(1676), + [sym__str_single_quotes] = ACTIONS(1676), + [sym__str_back_ticks] = ACTIONS(1676), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1676), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1676), + [sym__entry_separator] = ACTIONS(1678), + [anon_sym_register] = ACTIONS(1676), + [anon_sym_DOT2] = ACTIONS(1670), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1552), + [sym_raw_string_begin] = ACTIONS(1678), }, [320] = { [sym_comment] = STATE(320), + [aux_sym__block_body_repeat1] = STATE(253), + [anon_sym_export] = ACTIONS(1489), + [anon_sym_alias] = ACTIONS(1489), + [anon_sym_let] = ACTIONS(1489), + [anon_sym_let_DASHenv] = ACTIONS(1489), + [anon_sym_mut] = ACTIONS(1489), + [anon_sym_const] = ACTIONS(1489), + [aux_sym_cmd_identifier_token1] = ACTIONS(1489), + [aux_sym_cmd_identifier_token2] = ACTIONS(1491), + [aux_sym_cmd_identifier_token3] = ACTIONS(1491), + [aux_sym_cmd_identifier_token4] = ACTIONS(1491), + [aux_sym_cmd_identifier_token5] = ACTIONS(1491), + [aux_sym_cmd_identifier_token6] = ACTIONS(1491), + [aux_sym_cmd_identifier_token7] = ACTIONS(1491), + [aux_sym_cmd_identifier_token8] = ACTIONS(1489), + [aux_sym_cmd_identifier_token9] = ACTIONS(1489), + [aux_sym_cmd_identifier_token10] = ACTIONS(1491), + [aux_sym_cmd_identifier_token11] = ACTIONS(1491), + [aux_sym_cmd_identifier_token12] = ACTIONS(1489), + [aux_sym_cmd_identifier_token13] = ACTIONS(1489), + [aux_sym_cmd_identifier_token14] = ACTIONS(1489), + [aux_sym_cmd_identifier_token15] = ACTIONS(1489), + [aux_sym_cmd_identifier_token16] = ACTIONS(1491), + [aux_sym_cmd_identifier_token17] = ACTIONS(1491), + [aux_sym_cmd_identifier_token18] = ACTIONS(1489), + [aux_sym_cmd_identifier_token19] = ACTIONS(1491), + [aux_sym_cmd_identifier_token20] = ACTIONS(1491), + [aux_sym_cmd_identifier_token21] = ACTIONS(1491), + [aux_sym_cmd_identifier_token22] = ACTIONS(1491), + [aux_sym_cmd_identifier_token23] = ACTIONS(1491), + [aux_sym_cmd_identifier_token24] = ACTIONS(1491), + [aux_sym_cmd_identifier_token25] = ACTIONS(1491), + [aux_sym_cmd_identifier_token26] = ACTIONS(1491), + [aux_sym_cmd_identifier_token27] = ACTIONS(1491), + [aux_sym_cmd_identifier_token28] = ACTIONS(1491), + [aux_sym_cmd_identifier_token29] = ACTIONS(1491), + [aux_sym_cmd_identifier_token30] = ACTIONS(1491), + [aux_sym_cmd_identifier_token31] = ACTIONS(1491), + [aux_sym_cmd_identifier_token32] = ACTIONS(1489), + [aux_sym_cmd_identifier_token33] = ACTIONS(1491), + [aux_sym_cmd_identifier_token34] = ACTIONS(1489), + [aux_sym_cmd_identifier_token35] = ACTIONS(1491), + [aux_sym_cmd_identifier_token36] = ACTIONS(1491), + [aux_sym_cmd_identifier_token37] = ACTIONS(1491), + [aux_sym_cmd_identifier_token38] = ACTIONS(1489), + [aux_sym_cmd_identifier_token39] = ACTIONS(1491), + [aux_sym_cmd_identifier_token40] = ACTIONS(1491), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(1489), + [anon_sym_export_DASHenv] = ACTIONS(1489), + [anon_sym_extern] = ACTIONS(1489), + [anon_sym_module] = ACTIONS(1489), + [anon_sym_use] = ACTIONS(1489), + [anon_sym_LBRACK] = ACTIONS(1491), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_DOLLAR] = ACTIONS(1489), + [anon_sym_error] = ACTIONS(1489), + [anon_sym_DASH2] = ACTIONS(1489), + [anon_sym_break] = ACTIONS(1489), + [anon_sym_continue] = ACTIONS(1489), + [anon_sym_for] = ACTIONS(1489), + [anon_sym_loop] = ACTIONS(1489), + [anon_sym_while] = ACTIONS(1489), + [anon_sym_do] = ACTIONS(1489), + [anon_sym_if] = ACTIONS(1489), + [anon_sym_match] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1491), + [anon_sym_DOT_DOT] = ACTIONS(1489), + [anon_sym_try] = ACTIONS(1489), + [anon_sym_return] = ACTIONS(1489), + [anon_sym_source] = ACTIONS(1489), + [anon_sym_source_DASHenv] = ACTIONS(1489), + [anon_sym_hide] = ACTIONS(1489), + [anon_sym_hide_DASHenv] = ACTIONS(1489), + [anon_sym_overlay] = ACTIONS(1489), + [anon_sym_where] = ACTIONS(1491), + [aux_sym_expr_unary_token1] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1491), + [anon_sym_DOT_DOT_LT] = ACTIONS(1491), + [anon_sym_null] = ACTIONS(1489), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [aux_sym__val_number_decimal_token1] = ACTIONS(1489), + [aux_sym__val_number_decimal_token2] = ACTIONS(1491), + [aux_sym__val_number_decimal_token3] = ACTIONS(1491), + [aux_sym__val_number_decimal_token4] = ACTIONS(1491), + [aux_sym__val_number_token1] = ACTIONS(1491), + [aux_sym__val_number_token2] = ACTIONS(1491), + [aux_sym__val_number_token3] = ACTIONS(1491), + [aux_sym__val_number_token4] = ACTIONS(1489), + [aux_sym__val_number_token5] = ACTIONS(1489), + [aux_sym__val_number_token6] = ACTIONS(1489), + [anon_sym_0b] = ACTIONS(1489), + [anon_sym_0o] = ACTIONS(1489), + [anon_sym_0x] = ACTIONS(1489), + [sym_val_date] = ACTIONS(1491), + [anon_sym_DQUOTE] = ACTIONS(1491), + [sym__str_single_quotes] = ACTIONS(1491), + [sym__str_back_ticks] = ACTIONS(1491), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1491), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1491), + [aux_sym_env_var_token1] = ACTIONS(1489), + [anon_sym_CARET] = ACTIONS(1491), + [aux_sym_command_token1] = ACTIONS(1491), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1491), + }, + [321] = { + [sym_comment] = STATE(321), + [ts_builtin_sym_end] = ACTIONS(1292), + [anon_sym_export] = ACTIONS(1624), + [anon_sym_alias] = ACTIONS(1624), + [anon_sym_let] = ACTIONS(1624), + [anon_sym_let_DASHenv] = ACTIONS(1624), + [anon_sym_mut] = ACTIONS(1624), + [anon_sym_const] = ACTIONS(1624), + [aux_sym_cmd_identifier_token1] = ACTIONS(1624), + [aux_sym_cmd_identifier_token2] = ACTIONS(1292), + [aux_sym_cmd_identifier_token3] = ACTIONS(1292), + [aux_sym_cmd_identifier_token4] = ACTIONS(1292), + [aux_sym_cmd_identifier_token5] = ACTIONS(1292), + [aux_sym_cmd_identifier_token6] = ACTIONS(1292), + [aux_sym_cmd_identifier_token7] = ACTIONS(1292), + [aux_sym_cmd_identifier_token8] = ACTIONS(1624), + [aux_sym_cmd_identifier_token9] = ACTIONS(1624), + [aux_sym_cmd_identifier_token10] = ACTIONS(1292), + [aux_sym_cmd_identifier_token11] = ACTIONS(1292), + [aux_sym_cmd_identifier_token12] = ACTIONS(1624), + [aux_sym_cmd_identifier_token13] = ACTIONS(1624), + [aux_sym_cmd_identifier_token14] = ACTIONS(1624), + [aux_sym_cmd_identifier_token15] = ACTIONS(1624), + [aux_sym_cmd_identifier_token16] = ACTIONS(1292), + [aux_sym_cmd_identifier_token17] = ACTIONS(1292), + [aux_sym_cmd_identifier_token18] = ACTIONS(1624), + [aux_sym_cmd_identifier_token19] = ACTIONS(1292), + [aux_sym_cmd_identifier_token20] = ACTIONS(1292), + [aux_sym_cmd_identifier_token21] = ACTIONS(1292), + [aux_sym_cmd_identifier_token22] = ACTIONS(1292), + [aux_sym_cmd_identifier_token23] = ACTIONS(1292), + [aux_sym_cmd_identifier_token24] = ACTIONS(1292), + [aux_sym_cmd_identifier_token25] = ACTIONS(1292), + [aux_sym_cmd_identifier_token26] = ACTIONS(1292), + [aux_sym_cmd_identifier_token27] = ACTIONS(1292), + [aux_sym_cmd_identifier_token28] = ACTIONS(1292), + [aux_sym_cmd_identifier_token29] = ACTIONS(1292), + [aux_sym_cmd_identifier_token30] = ACTIONS(1292), + [aux_sym_cmd_identifier_token31] = ACTIONS(1292), + [aux_sym_cmd_identifier_token32] = ACTIONS(1624), + [aux_sym_cmd_identifier_token33] = ACTIONS(1292), + [aux_sym_cmd_identifier_token34] = ACTIONS(1624), + [aux_sym_cmd_identifier_token35] = ACTIONS(1292), + [aux_sym_cmd_identifier_token36] = ACTIONS(1292), + [aux_sym_cmd_identifier_token37] = ACTIONS(1292), + [aux_sym_cmd_identifier_token38] = ACTIONS(1624), + [aux_sym_cmd_identifier_token39] = ACTIONS(1292), + [aux_sym_cmd_identifier_token40] = ACTIONS(1292), + [sym__newline] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1292), + [anon_sym_def] = ACTIONS(1624), + [anon_sym_export_DASHenv] = ACTIONS(1624), + [anon_sym_extern] = ACTIONS(1624), + [anon_sym_module] = ACTIONS(1624), + [anon_sym_use] = ACTIONS(1624), + [anon_sym_LBRACK] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1624), + [anon_sym_error] = ACTIONS(1624), + [anon_sym_DASH2] = ACTIONS(1624), + [anon_sym_break] = ACTIONS(1624), + [anon_sym_continue] = ACTIONS(1624), + [anon_sym_for] = ACTIONS(1624), + [anon_sym_loop] = ACTIONS(1624), + [anon_sym_while] = ACTIONS(1624), + [anon_sym_do] = ACTIONS(1624), + [anon_sym_if] = ACTIONS(1624), + [anon_sym_match] = ACTIONS(1624), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1624), + [anon_sym_try] = ACTIONS(1624), + [anon_sym_return] = ACTIONS(1624), + [anon_sym_source] = ACTIONS(1624), + [anon_sym_source_DASHenv] = ACTIONS(1624), + [anon_sym_hide] = ACTIONS(1624), + [anon_sym_hide_DASHenv] = ACTIONS(1624), + [anon_sym_overlay] = ACTIONS(1624), + [anon_sym_where] = ACTIONS(1292), + [aux_sym_expr_unary_token1] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1292), + [anon_sym_DOT_DOT_LT] = ACTIONS(1292), + [anon_sym_null] = ACTIONS(1624), + [anon_sym_true] = ACTIONS(1624), + [anon_sym_false] = ACTIONS(1624), + [aux_sym__val_number_decimal_token1] = ACTIONS(1624), + [aux_sym__val_number_decimal_token2] = ACTIONS(1292), + [aux_sym__val_number_decimal_token3] = ACTIONS(1292), + [aux_sym__val_number_decimal_token4] = ACTIONS(1292), + [aux_sym__val_number_token1] = ACTIONS(1292), + [aux_sym__val_number_token2] = ACTIONS(1292), + [aux_sym__val_number_token3] = ACTIONS(1292), + [aux_sym__val_number_token4] = ACTIONS(1624), + [aux_sym__val_number_token5] = ACTIONS(1624), + [aux_sym__val_number_token6] = ACTIONS(1624), + [anon_sym_0b] = ACTIONS(1624), + [anon_sym_0o] = ACTIONS(1624), + [anon_sym_0x] = ACTIONS(1624), + [sym_val_date] = ACTIONS(1292), + [anon_sym_DQUOTE] = ACTIONS(1292), + [sym__str_single_quotes] = ACTIONS(1292), + [sym__str_back_ticks] = ACTIONS(1292), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1292), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1292), + [aux_sym_env_var_token1] = ACTIONS(1624), + [anon_sym_CARET] = ACTIONS(1292), + [aux_sym_command_token1] = ACTIONS(1292), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1292), + }, + [322] = { + [sym_comment] = STATE(322), [anon_sym_export] = ACTIONS(1680), [anon_sym_alias] = ACTIONS(1680), [anon_sym_let] = ACTIONS(1680), @@ -117094,221 +117258,989 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mut] = ACTIONS(1680), [anon_sym_const] = ACTIONS(1680), [aux_sym_cmd_identifier_token1] = ACTIONS(1680), - [aux_sym_cmd_identifier_token2] = ACTIONS(1680), - [aux_sym_cmd_identifier_token3] = ACTIONS(1680), - [aux_sym_cmd_identifier_token4] = ACTIONS(1680), - [aux_sym_cmd_identifier_token5] = ACTIONS(1680), - [aux_sym_cmd_identifier_token6] = ACTIONS(1680), - [aux_sym_cmd_identifier_token7] = ACTIONS(1680), + [aux_sym_cmd_identifier_token2] = ACTIONS(1682), + [aux_sym_cmd_identifier_token3] = ACTIONS(1682), + [aux_sym_cmd_identifier_token4] = ACTIONS(1682), + [aux_sym_cmd_identifier_token5] = ACTIONS(1682), + [aux_sym_cmd_identifier_token6] = ACTIONS(1682), + [aux_sym_cmd_identifier_token7] = ACTIONS(1682), [aux_sym_cmd_identifier_token8] = ACTIONS(1680), [aux_sym_cmd_identifier_token9] = ACTIONS(1680), - [aux_sym_cmd_identifier_token10] = ACTIONS(1680), - [aux_sym_cmd_identifier_token11] = ACTIONS(1680), + [aux_sym_cmd_identifier_token10] = ACTIONS(1682), + [aux_sym_cmd_identifier_token11] = ACTIONS(1682), [aux_sym_cmd_identifier_token12] = ACTIONS(1680), [aux_sym_cmd_identifier_token13] = ACTIONS(1680), [aux_sym_cmd_identifier_token14] = ACTIONS(1680), [aux_sym_cmd_identifier_token15] = ACTIONS(1680), - [aux_sym_cmd_identifier_token16] = ACTIONS(1680), - [aux_sym_cmd_identifier_token17] = ACTIONS(1680), + [aux_sym_cmd_identifier_token16] = ACTIONS(1682), + [aux_sym_cmd_identifier_token17] = ACTIONS(1682), [aux_sym_cmd_identifier_token18] = ACTIONS(1680), - [aux_sym_cmd_identifier_token19] = ACTIONS(1680), - [aux_sym_cmd_identifier_token20] = ACTIONS(1680), - [aux_sym_cmd_identifier_token21] = ACTIONS(1680), - [aux_sym_cmd_identifier_token22] = ACTIONS(1680), - [aux_sym_cmd_identifier_token23] = ACTIONS(1680), - [aux_sym_cmd_identifier_token24] = ACTIONS(1680), - [aux_sym_cmd_identifier_token25] = ACTIONS(1680), - [aux_sym_cmd_identifier_token26] = ACTIONS(1680), - [aux_sym_cmd_identifier_token27] = ACTIONS(1680), - [aux_sym_cmd_identifier_token28] = ACTIONS(1680), - [aux_sym_cmd_identifier_token29] = ACTIONS(1680), - [aux_sym_cmd_identifier_token30] = ACTIONS(1680), - [aux_sym_cmd_identifier_token31] = ACTIONS(1680), + [aux_sym_cmd_identifier_token19] = ACTIONS(1682), + [aux_sym_cmd_identifier_token20] = ACTIONS(1682), + [aux_sym_cmd_identifier_token21] = ACTIONS(1682), + [aux_sym_cmd_identifier_token22] = ACTIONS(1682), + [aux_sym_cmd_identifier_token23] = ACTIONS(1682), + [aux_sym_cmd_identifier_token24] = ACTIONS(1682), + [aux_sym_cmd_identifier_token25] = ACTIONS(1682), + [aux_sym_cmd_identifier_token26] = ACTIONS(1682), + [aux_sym_cmd_identifier_token27] = ACTIONS(1682), + [aux_sym_cmd_identifier_token28] = ACTIONS(1682), + [aux_sym_cmd_identifier_token29] = ACTIONS(1682), + [aux_sym_cmd_identifier_token30] = ACTIONS(1682), + [aux_sym_cmd_identifier_token31] = ACTIONS(1682), [aux_sym_cmd_identifier_token32] = ACTIONS(1680), - [aux_sym_cmd_identifier_token33] = ACTIONS(1680), + [aux_sym_cmd_identifier_token33] = ACTIONS(1682), [aux_sym_cmd_identifier_token34] = ACTIONS(1680), - [aux_sym_cmd_identifier_token35] = ACTIONS(1680), - [aux_sym_cmd_identifier_token36] = ACTIONS(1680), - [aux_sym_cmd_identifier_token37] = ACTIONS(1680), + [aux_sym_cmd_identifier_token35] = ACTIONS(1682), + [aux_sym_cmd_identifier_token36] = ACTIONS(1682), + [aux_sym_cmd_identifier_token37] = ACTIONS(1682), [aux_sym_cmd_identifier_token38] = ACTIONS(1680), - [aux_sym_cmd_identifier_token39] = ACTIONS(1680), - [aux_sym_cmd_identifier_token40] = ACTIONS(1680), + [aux_sym_cmd_identifier_token39] = ACTIONS(1682), + [aux_sym_cmd_identifier_token40] = ACTIONS(1682), + [sym__newline] = ACTIONS(1684), + [anon_sym_SEMI] = ACTIONS(1684), [anon_sym_def] = ACTIONS(1680), [anon_sym_export_DASHenv] = ACTIONS(1680), [anon_sym_extern] = ACTIONS(1680), [anon_sym_module] = ACTIONS(1680), [anon_sym_use] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1680), - [anon_sym_COMMA] = ACTIONS(1680), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_LPAREN] = ACTIONS(1682), + [anon_sym_RPAREN] = ACTIONS(1292), [anon_sym_DOLLAR] = ACTIONS(1680), [anon_sym_error] = ACTIONS(1680), [anon_sym_DASH2] = ACTIONS(1680), [anon_sym_break] = ACTIONS(1680), [anon_sym_continue] = ACTIONS(1680), [anon_sym_for] = ACTIONS(1680), - [anon_sym_in2] = ACTIONS(1680), [anon_sym_loop] = ACTIONS(1680), - [anon_sym_make] = ACTIONS(1680), [anon_sym_while] = ACTIONS(1680), [anon_sym_do] = ACTIONS(1680), [anon_sym_if] = ACTIONS(1680), - [anon_sym_else] = ACTIONS(1680), [anon_sym_match] = ACTIONS(1680), - [anon_sym_RBRACE] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1680), [anon_sym_try] = ACTIONS(1680), - [anon_sym_catch] = ACTIONS(1680), [anon_sym_return] = ACTIONS(1680), [anon_sym_source] = ACTIONS(1680), [anon_sym_source_DASHenv] = ACTIONS(1680), - [anon_sym_register] = ACTIONS(1680), [anon_sym_hide] = ACTIONS(1680), [anon_sym_hide_DASHenv] = ACTIONS(1680), [anon_sym_overlay] = ACTIONS(1680), - [anon_sym_as] = ACTIONS(1680), - [anon_sym_LPAREN2] = ACTIONS(1682), - [anon_sym_PLUS2] = ACTIONS(1680), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1680), - [anon_sym_DOT_DOT2] = ACTIONS(1680), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1682), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1682), - [aux_sym__immediate_decimal_token2] = ACTIONS(1684), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1680), + [anon_sym_where] = ACTIONS(1682), + [aux_sym_expr_unary_token1] = ACTIONS(1682), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1682), + [anon_sym_DOT_DOT_LT] = ACTIONS(1682), + [anon_sym_null] = ACTIONS(1680), + [anon_sym_true] = ACTIONS(1680), + [anon_sym_false] = ACTIONS(1680), [aux_sym__val_number_decimal_token1] = ACTIONS(1680), - [aux_sym__val_number_decimal_token2] = ACTIONS(1680), - [aux_sym__val_number_decimal_token3] = ACTIONS(1680), - [aux_sym__val_number_decimal_token4] = ACTIONS(1680), - [aux_sym__val_number_token1] = ACTIONS(1680), - [aux_sym__val_number_token2] = ACTIONS(1680), - [aux_sym__val_number_token3] = ACTIONS(1680), + [aux_sym__val_number_decimal_token2] = ACTIONS(1682), + [aux_sym__val_number_decimal_token3] = ACTIONS(1682), + [aux_sym__val_number_decimal_token4] = ACTIONS(1682), + [aux_sym__val_number_token1] = ACTIONS(1682), + [aux_sym__val_number_token2] = ACTIONS(1682), + [aux_sym__val_number_token3] = ACTIONS(1682), [aux_sym__val_number_token4] = ACTIONS(1680), [aux_sym__val_number_token5] = ACTIONS(1680), [aux_sym__val_number_token6] = ACTIONS(1680), - [sym_filesize_unit] = ACTIONS(1680), - [sym_duration_unit] = ACTIONS(1680), - [anon_sym_DQUOTE] = ACTIONS(1680), - [sym__str_single_quotes] = ACTIONS(1680), - [sym__str_back_ticks] = ACTIONS(1680), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1680), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1680), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1680), - [sym__entry_separator] = ACTIONS(1682), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1680), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_0b] = ACTIONS(1680), + [anon_sym_0o] = ACTIONS(1680), + [anon_sym_0x] = ACTIONS(1680), + [sym_val_date] = ACTIONS(1682), + [anon_sym_DQUOTE] = ACTIONS(1682), + [sym__str_single_quotes] = ACTIONS(1682), + [sym__str_back_ticks] = ACTIONS(1682), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1682), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1682), + [aux_sym_env_var_token1] = ACTIONS(1680), + [anon_sym_CARET] = ACTIONS(1682), + [aux_sym_command_token1] = ACTIONS(1682), + [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1682), }, - [321] = { - [sym_comment] = STATE(321), - [anon_sym_export] = ACTIONS(1686), - [anon_sym_alias] = ACTIONS(1686), - [anon_sym_let] = ACTIONS(1686), - [anon_sym_let_DASHenv] = ACTIONS(1686), - [anon_sym_mut] = ACTIONS(1686), - [anon_sym_const] = ACTIONS(1686), - [aux_sym_cmd_identifier_token1] = ACTIONS(1686), - [aux_sym_cmd_identifier_token2] = ACTIONS(1688), - [aux_sym_cmd_identifier_token3] = ACTIONS(1688), - [aux_sym_cmd_identifier_token4] = ACTIONS(1688), - [aux_sym_cmd_identifier_token5] = ACTIONS(1688), - [aux_sym_cmd_identifier_token6] = ACTIONS(1688), - [aux_sym_cmd_identifier_token7] = ACTIONS(1688), - [aux_sym_cmd_identifier_token8] = ACTIONS(1686), - [aux_sym_cmd_identifier_token9] = ACTIONS(1686), - [aux_sym_cmd_identifier_token10] = ACTIONS(1688), - [aux_sym_cmd_identifier_token11] = ACTIONS(1688), - [aux_sym_cmd_identifier_token12] = ACTIONS(1686), - [aux_sym_cmd_identifier_token13] = ACTIONS(1686), - [aux_sym_cmd_identifier_token14] = ACTIONS(1686), - [aux_sym_cmd_identifier_token15] = ACTIONS(1686), - [aux_sym_cmd_identifier_token16] = ACTIONS(1688), - [aux_sym_cmd_identifier_token17] = ACTIONS(1688), - [aux_sym_cmd_identifier_token18] = ACTIONS(1686), - [aux_sym_cmd_identifier_token19] = ACTIONS(1688), - [aux_sym_cmd_identifier_token20] = ACTIONS(1688), - [aux_sym_cmd_identifier_token21] = ACTIONS(1688), - [aux_sym_cmd_identifier_token22] = ACTIONS(1688), - [aux_sym_cmd_identifier_token23] = ACTIONS(1688), - [aux_sym_cmd_identifier_token24] = ACTIONS(1688), - [aux_sym_cmd_identifier_token25] = ACTIONS(1688), - [aux_sym_cmd_identifier_token26] = ACTIONS(1688), - [aux_sym_cmd_identifier_token27] = ACTIONS(1688), - [aux_sym_cmd_identifier_token28] = ACTIONS(1688), - [aux_sym_cmd_identifier_token29] = ACTIONS(1688), - [aux_sym_cmd_identifier_token30] = ACTIONS(1688), - [aux_sym_cmd_identifier_token31] = ACTIONS(1688), - [aux_sym_cmd_identifier_token32] = ACTIONS(1686), - [aux_sym_cmd_identifier_token33] = ACTIONS(1688), - [aux_sym_cmd_identifier_token34] = ACTIONS(1686), - [aux_sym_cmd_identifier_token35] = ACTIONS(1688), - [aux_sym_cmd_identifier_token36] = ACTIONS(1688), - [aux_sym_cmd_identifier_token37] = ACTIONS(1688), - [aux_sym_cmd_identifier_token38] = ACTIONS(1686), - [aux_sym_cmd_identifier_token39] = ACTIONS(1688), - [aux_sym_cmd_identifier_token40] = ACTIONS(1688), - [sym__newline] = ACTIONS(1690), - [anon_sym_SEMI] = ACTIONS(1690), - [anon_sym_def] = ACTIONS(1686), - [anon_sym_export_DASHenv] = ACTIONS(1686), - [anon_sym_extern] = ACTIONS(1686), - [anon_sym_module] = ACTIONS(1686), - [anon_sym_use] = ACTIONS(1686), - [anon_sym_LBRACK] = ACTIONS(1688), - [anon_sym_LPAREN] = ACTIONS(1688), - [anon_sym_RPAREN] = ACTIONS(1313), - [anon_sym_DOLLAR] = ACTIONS(1686), - [anon_sym_error] = ACTIONS(1686), - [anon_sym_DASH2] = ACTIONS(1686), - [anon_sym_break] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(1686), - [anon_sym_for] = ACTIONS(1686), - [anon_sym_loop] = ACTIONS(1686), - [anon_sym_while] = ACTIONS(1686), - [anon_sym_do] = ACTIONS(1686), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_match] = ACTIONS(1686), - [anon_sym_LBRACE] = ACTIONS(1688), - [anon_sym_DOT_DOT] = ACTIONS(1686), - [anon_sym_try] = ACTIONS(1686), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_source] = ACTIONS(1686), - [anon_sym_source_DASHenv] = ACTIONS(1686), - [anon_sym_register] = ACTIONS(1686), - [anon_sym_hide] = ACTIONS(1686), - [anon_sym_hide_DASHenv] = ACTIONS(1686), - [anon_sym_overlay] = ACTIONS(1686), - [anon_sym_where] = ACTIONS(1688), - [aux_sym_expr_unary_token1] = ACTIONS(1688), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1688), - [anon_sym_DOT_DOT_LT] = ACTIONS(1688), - [anon_sym_null] = ACTIONS(1686), - [anon_sym_true] = ACTIONS(1686), - [anon_sym_false] = ACTIONS(1686), - [aux_sym__val_number_decimal_token1] = ACTIONS(1686), - [aux_sym__val_number_decimal_token2] = ACTIONS(1688), - [aux_sym__val_number_decimal_token3] = ACTIONS(1688), - [aux_sym__val_number_decimal_token4] = ACTIONS(1688), - [aux_sym__val_number_token1] = ACTIONS(1688), - [aux_sym__val_number_token2] = ACTIONS(1688), - [aux_sym__val_number_token3] = ACTIONS(1688), - [aux_sym__val_number_token4] = ACTIONS(1686), - [aux_sym__val_number_token5] = ACTIONS(1686), - [aux_sym__val_number_token6] = ACTIONS(1686), - [anon_sym_0b] = ACTIONS(1686), - [anon_sym_0o] = ACTIONS(1686), - [anon_sym_0x] = ACTIONS(1686), - [sym_val_date] = ACTIONS(1688), - [anon_sym_DQUOTE] = ACTIONS(1688), - [sym__str_single_quotes] = ACTIONS(1688), - [sym__str_back_ticks] = ACTIONS(1688), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1688), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1688), - [aux_sym_env_var_token1] = ACTIONS(1686), - [anon_sym_CARET] = ACTIONS(1688), - [aux_sym_command_token1] = ACTIONS(1688), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1688), + [323] = { + [sym_cell_path] = STATE(447), + [sym_path] = STATE(411), + [sym_comment] = STATE(323), + [aux_sym_cell_path_repeat1] = STATE(353), + [anon_sym_export] = ACTIONS(929), + [anon_sym_alias] = ACTIONS(929), + [anon_sym_let] = ACTIONS(929), + [anon_sym_let_DASHenv] = ACTIONS(929), + [anon_sym_mut] = ACTIONS(929), + [anon_sym_const] = ACTIONS(929), + [aux_sym_cmd_identifier_token1] = ACTIONS(929), + [aux_sym_cmd_identifier_token2] = ACTIONS(929), + [aux_sym_cmd_identifier_token3] = ACTIONS(929), + [aux_sym_cmd_identifier_token4] = ACTIONS(929), + [aux_sym_cmd_identifier_token5] = ACTIONS(929), + [aux_sym_cmd_identifier_token6] = ACTIONS(929), + [aux_sym_cmd_identifier_token7] = ACTIONS(929), + [aux_sym_cmd_identifier_token8] = ACTIONS(929), + [aux_sym_cmd_identifier_token9] = ACTIONS(929), + [aux_sym_cmd_identifier_token10] = ACTIONS(929), + [aux_sym_cmd_identifier_token11] = ACTIONS(929), + [aux_sym_cmd_identifier_token12] = ACTIONS(929), + [aux_sym_cmd_identifier_token13] = ACTIONS(929), + [aux_sym_cmd_identifier_token14] = ACTIONS(929), + [aux_sym_cmd_identifier_token15] = ACTIONS(929), + [aux_sym_cmd_identifier_token16] = ACTIONS(929), + [aux_sym_cmd_identifier_token17] = ACTIONS(929), + [aux_sym_cmd_identifier_token18] = ACTIONS(929), + [aux_sym_cmd_identifier_token19] = ACTIONS(929), + [aux_sym_cmd_identifier_token20] = ACTIONS(929), + [aux_sym_cmd_identifier_token21] = ACTIONS(929), + [aux_sym_cmd_identifier_token22] = ACTIONS(929), + [aux_sym_cmd_identifier_token23] = ACTIONS(929), + [aux_sym_cmd_identifier_token24] = ACTIONS(929), + [aux_sym_cmd_identifier_token25] = ACTIONS(929), + [aux_sym_cmd_identifier_token26] = ACTIONS(929), + [aux_sym_cmd_identifier_token27] = ACTIONS(929), + [aux_sym_cmd_identifier_token28] = ACTIONS(929), + [aux_sym_cmd_identifier_token29] = ACTIONS(929), + [aux_sym_cmd_identifier_token30] = ACTIONS(929), + [aux_sym_cmd_identifier_token31] = ACTIONS(929), + [aux_sym_cmd_identifier_token32] = ACTIONS(929), + [aux_sym_cmd_identifier_token33] = ACTIONS(929), + [aux_sym_cmd_identifier_token34] = ACTIONS(929), + [aux_sym_cmd_identifier_token35] = ACTIONS(929), + [aux_sym_cmd_identifier_token36] = ACTIONS(929), + [aux_sym_cmd_identifier_token37] = ACTIONS(929), + [aux_sym_cmd_identifier_token38] = ACTIONS(929), + [aux_sym_cmd_identifier_token39] = ACTIONS(929), + [aux_sym_cmd_identifier_token40] = ACTIONS(929), + [anon_sym_def] = ACTIONS(929), + [anon_sym_export_DASHenv] = ACTIONS(929), + [anon_sym_extern] = ACTIONS(929), + [anon_sym_module] = ACTIONS(929), + [anon_sym_use] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(929), + [anon_sym_COMMA] = ACTIONS(929), + [anon_sym_DOLLAR] = ACTIONS(929), + [anon_sym_error] = ACTIONS(929), + [anon_sym_DASH2] = ACTIONS(929), + [anon_sym_break] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(929), + [anon_sym_for] = ACTIONS(929), + [anon_sym_in2] = ACTIONS(929), + [anon_sym_loop] = ACTIONS(929), + [anon_sym_make] = ACTIONS(929), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(929), + [anon_sym_if] = ACTIONS(929), + [anon_sym_else] = ACTIONS(929), + [anon_sym_match] = ACTIONS(929), + [anon_sym_RBRACE] = ACTIONS(929), + [anon_sym_try] = ACTIONS(929), + [anon_sym_catch] = ACTIONS(929), + [anon_sym_return] = ACTIONS(929), + [anon_sym_source] = ACTIONS(929), + [anon_sym_source_DASHenv] = ACTIONS(929), + [anon_sym_hide] = ACTIONS(929), + [anon_sym_hide_DASHenv] = ACTIONS(929), + [anon_sym_overlay] = ACTIONS(929), + [anon_sym_as] = ACTIONS(929), + [anon_sym_PLUS2] = ACTIONS(929), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(929), + [anon_sym_DOT_DOT2] = ACTIONS(929), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(931), + [anon_sym_DOT_DOT_LT2] = ACTIONS(931), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(929), + [aux_sym__val_number_decimal_token1] = ACTIONS(929), + [aux_sym__val_number_decimal_token2] = ACTIONS(929), + [aux_sym__val_number_decimal_token3] = ACTIONS(929), + [aux_sym__val_number_decimal_token4] = ACTIONS(929), + [aux_sym__val_number_token1] = ACTIONS(929), + [aux_sym__val_number_token2] = ACTIONS(929), + [aux_sym__val_number_token3] = ACTIONS(929), + [aux_sym__val_number_token4] = ACTIONS(929), + [aux_sym__val_number_token5] = ACTIONS(929), + [aux_sym__val_number_token6] = ACTIONS(929), + [anon_sym_DQUOTE] = ACTIONS(929), + [sym__str_single_quotes] = ACTIONS(929), + [sym__str_back_ticks] = ACTIONS(929), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(929), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(929), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(929), + [sym__entry_separator] = ACTIONS(931), + [anon_sym_register] = ACTIONS(929), + [anon_sym_DOT2] = ACTIONS(1670), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(931), }, - [322] = { - [sym_comment] = STATE(322), + [324] = { + [sym_comment] = STATE(324), + [anon_sym_export] = ACTIONS(1512), + [anon_sym_alias] = ACTIONS(1512), + [anon_sym_let] = ACTIONS(1512), + [anon_sym_let_DASHenv] = ACTIONS(1512), + [anon_sym_mut] = ACTIONS(1512), + [anon_sym_const] = ACTIONS(1512), + [aux_sym_cmd_identifier_token1] = ACTIONS(1512), + [aux_sym_cmd_identifier_token2] = ACTIONS(1514), + [aux_sym_cmd_identifier_token3] = ACTIONS(1514), + [aux_sym_cmd_identifier_token4] = ACTIONS(1514), + [aux_sym_cmd_identifier_token5] = ACTIONS(1514), + [aux_sym_cmd_identifier_token6] = ACTIONS(1514), + [aux_sym_cmd_identifier_token7] = ACTIONS(1514), + [aux_sym_cmd_identifier_token8] = ACTIONS(1512), + [aux_sym_cmd_identifier_token9] = ACTIONS(1512), + [aux_sym_cmd_identifier_token10] = ACTIONS(1514), + [aux_sym_cmd_identifier_token11] = ACTIONS(1514), + [aux_sym_cmd_identifier_token12] = ACTIONS(1512), + [aux_sym_cmd_identifier_token13] = ACTIONS(1512), + [aux_sym_cmd_identifier_token14] = ACTIONS(1512), + [aux_sym_cmd_identifier_token15] = ACTIONS(1512), + [aux_sym_cmd_identifier_token16] = ACTIONS(1514), + [aux_sym_cmd_identifier_token17] = ACTIONS(1514), + [aux_sym_cmd_identifier_token18] = ACTIONS(1514), + [aux_sym_cmd_identifier_token19] = ACTIONS(1514), + [aux_sym_cmd_identifier_token20] = ACTIONS(1514), + [aux_sym_cmd_identifier_token21] = ACTIONS(1514), + [aux_sym_cmd_identifier_token22] = ACTIONS(1514), + [aux_sym_cmd_identifier_token23] = ACTIONS(1514), + [aux_sym_cmd_identifier_token24] = ACTIONS(1514), + [aux_sym_cmd_identifier_token25] = ACTIONS(1514), + [aux_sym_cmd_identifier_token26] = ACTIONS(1514), + [aux_sym_cmd_identifier_token27] = ACTIONS(1514), + [aux_sym_cmd_identifier_token28] = ACTIONS(1514), + [aux_sym_cmd_identifier_token29] = ACTIONS(1514), + [aux_sym_cmd_identifier_token30] = ACTIONS(1514), + [aux_sym_cmd_identifier_token31] = ACTIONS(1514), + [aux_sym_cmd_identifier_token32] = ACTIONS(1514), + [aux_sym_cmd_identifier_token33] = ACTIONS(1514), + [aux_sym_cmd_identifier_token34] = ACTIONS(1512), + [aux_sym_cmd_identifier_token35] = ACTIONS(1514), + [aux_sym_cmd_identifier_token36] = ACTIONS(1514), + [aux_sym_cmd_identifier_token37] = ACTIONS(1514), + [aux_sym_cmd_identifier_token38] = ACTIONS(1512), + [aux_sym_cmd_identifier_token39] = ACTIONS(1514), + [aux_sym_cmd_identifier_token40] = ACTIONS(1514), + [anon_sym_def] = ACTIONS(1512), + [anon_sym_export_DASHenv] = ACTIONS(1512), + [anon_sym_extern] = ACTIONS(1512), + [anon_sym_module] = ACTIONS(1512), + [anon_sym_use] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_COMMA] = ACTIONS(1514), + [anon_sym_DOLLAR] = ACTIONS(1512), + [anon_sym_error] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_break] = ACTIONS(1512), + [anon_sym_continue] = ACTIONS(1512), + [anon_sym_for] = ACTIONS(1512), + [anon_sym_in2] = ACTIONS(1512), + [anon_sym_loop] = ACTIONS(1512), + [anon_sym_make] = ACTIONS(1512), + [anon_sym_while] = ACTIONS(1512), + [anon_sym_do] = ACTIONS(1512), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_else] = ACTIONS(1512), + [anon_sym_match] = ACTIONS(1512), + [anon_sym_RBRACE] = ACTIONS(1514), + [anon_sym_try] = ACTIONS(1512), + [anon_sym_catch] = ACTIONS(1512), + [anon_sym_return] = ACTIONS(1512), + [anon_sym_source] = ACTIONS(1512), + [anon_sym_source_DASHenv] = ACTIONS(1512), + [anon_sym_hide] = ACTIONS(1512), + [anon_sym_hide_DASHenv] = ACTIONS(1512), + [anon_sym_overlay] = ACTIONS(1512), + [anon_sym_as] = ACTIONS(1512), + [anon_sym_LPAREN2] = ACTIONS(1514), + [anon_sym_PLUS2] = ACTIONS(1512), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1514), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [aux_sym__immediate_decimal_token2] = ACTIONS(1608), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1514), + [aux_sym__val_number_decimal_token1] = ACTIONS(1512), + [aux_sym__val_number_decimal_token2] = ACTIONS(1514), + [aux_sym__val_number_decimal_token3] = ACTIONS(1514), + [aux_sym__val_number_decimal_token4] = ACTIONS(1514), + [aux_sym__val_number_token1] = ACTIONS(1514), + [aux_sym__val_number_token2] = ACTIONS(1514), + [aux_sym__val_number_token3] = ACTIONS(1514), + [aux_sym__val_number_token4] = ACTIONS(1512), + [aux_sym__val_number_token5] = ACTIONS(1512), + [aux_sym__val_number_token6] = ACTIONS(1512), + [sym_filesize_unit] = ACTIONS(1512), + [sym_duration_unit] = ACTIONS(1512), + [anon_sym_DQUOTE] = ACTIONS(1514), + [sym__str_single_quotes] = ACTIONS(1514), + [sym__str_back_ticks] = ACTIONS(1514), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1514), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1514), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1514), + [anon_sym_register] = ACTIONS(1512), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1514), + }, + [325] = { + [sym_comment] = STATE(325), + [anon_sym_export] = ACTIONS(1618), + [anon_sym_alias] = ACTIONS(1618), + [anon_sym_let] = ACTIONS(1618), + [anon_sym_let_DASHenv] = ACTIONS(1618), + [anon_sym_mut] = ACTIONS(1618), + [anon_sym_const] = ACTIONS(1618), + [aux_sym_cmd_identifier_token1] = ACTIONS(1618), + [aux_sym_cmd_identifier_token2] = ACTIONS(1620), + [aux_sym_cmd_identifier_token3] = ACTIONS(1620), + [aux_sym_cmd_identifier_token4] = ACTIONS(1620), + [aux_sym_cmd_identifier_token5] = ACTIONS(1620), + [aux_sym_cmd_identifier_token6] = ACTIONS(1620), + [aux_sym_cmd_identifier_token7] = ACTIONS(1620), + [aux_sym_cmd_identifier_token8] = ACTIONS(1618), + [aux_sym_cmd_identifier_token9] = ACTIONS(1618), + [aux_sym_cmd_identifier_token10] = ACTIONS(1620), + [aux_sym_cmd_identifier_token11] = ACTIONS(1620), + [aux_sym_cmd_identifier_token12] = ACTIONS(1618), + [aux_sym_cmd_identifier_token13] = ACTIONS(1618), + [aux_sym_cmd_identifier_token14] = ACTIONS(1618), + [aux_sym_cmd_identifier_token15] = ACTIONS(1618), + [aux_sym_cmd_identifier_token16] = ACTIONS(1620), + [aux_sym_cmd_identifier_token17] = ACTIONS(1620), + [aux_sym_cmd_identifier_token18] = ACTIONS(1620), + [aux_sym_cmd_identifier_token19] = ACTIONS(1620), + [aux_sym_cmd_identifier_token20] = ACTIONS(1620), + [aux_sym_cmd_identifier_token21] = ACTIONS(1620), + [aux_sym_cmd_identifier_token22] = ACTIONS(1620), + [aux_sym_cmd_identifier_token23] = ACTIONS(1620), + [aux_sym_cmd_identifier_token24] = ACTIONS(1620), + [aux_sym_cmd_identifier_token25] = ACTIONS(1620), + [aux_sym_cmd_identifier_token26] = ACTIONS(1620), + [aux_sym_cmd_identifier_token27] = ACTIONS(1620), + [aux_sym_cmd_identifier_token28] = ACTIONS(1620), + [aux_sym_cmd_identifier_token29] = ACTIONS(1620), + [aux_sym_cmd_identifier_token30] = ACTIONS(1620), + [aux_sym_cmd_identifier_token31] = ACTIONS(1620), + [aux_sym_cmd_identifier_token32] = ACTIONS(1620), + [aux_sym_cmd_identifier_token33] = ACTIONS(1620), + [aux_sym_cmd_identifier_token34] = ACTIONS(1618), + [aux_sym_cmd_identifier_token35] = ACTIONS(1620), + [aux_sym_cmd_identifier_token36] = ACTIONS(1620), + [aux_sym_cmd_identifier_token37] = ACTIONS(1620), + [aux_sym_cmd_identifier_token38] = ACTIONS(1618), + [aux_sym_cmd_identifier_token39] = ACTIONS(1620), + [aux_sym_cmd_identifier_token40] = ACTIONS(1620), + [anon_sym_def] = ACTIONS(1618), + [anon_sym_export_DASHenv] = ACTIONS(1618), + [anon_sym_extern] = ACTIONS(1618), + [anon_sym_module] = ACTIONS(1618), + [anon_sym_use] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_COMMA] = ACTIONS(1620), + [anon_sym_DOLLAR] = ACTIONS(1618), + [anon_sym_error] = ACTIONS(1618), + [anon_sym_DASH2] = ACTIONS(1618), + [anon_sym_break] = ACTIONS(1618), + [anon_sym_continue] = ACTIONS(1618), + [anon_sym_for] = ACTIONS(1618), + [anon_sym_in2] = ACTIONS(1618), + [anon_sym_loop] = ACTIONS(1618), + [anon_sym_make] = ACTIONS(1618), + [anon_sym_while] = ACTIONS(1618), + [anon_sym_do] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1618), + [anon_sym_else] = ACTIONS(1618), + [anon_sym_match] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1620), + [anon_sym_try] = ACTIONS(1618), + [anon_sym_catch] = ACTIONS(1618), + [anon_sym_return] = ACTIONS(1618), + [anon_sym_source] = ACTIONS(1618), + [anon_sym_source_DASHenv] = ACTIONS(1618), + [anon_sym_hide] = ACTIONS(1618), + [anon_sym_hide_DASHenv] = ACTIONS(1618), + [anon_sym_overlay] = ACTIONS(1618), + [anon_sym_as] = ACTIONS(1618), + [anon_sym_LPAREN2] = ACTIONS(1620), + [anon_sym_PLUS2] = ACTIONS(1618), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1620), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [aux_sym__immediate_decimal_token2] = ACTIONS(1687), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1620), + [aux_sym__val_number_decimal_token1] = ACTIONS(1618), + [aux_sym__val_number_decimal_token2] = ACTIONS(1620), + [aux_sym__val_number_decimal_token3] = ACTIONS(1620), + [aux_sym__val_number_decimal_token4] = ACTIONS(1620), + [aux_sym__val_number_token1] = ACTIONS(1620), + [aux_sym__val_number_token2] = ACTIONS(1620), + [aux_sym__val_number_token3] = ACTIONS(1620), + [aux_sym__val_number_token4] = ACTIONS(1618), + [aux_sym__val_number_token5] = ACTIONS(1618), + [aux_sym__val_number_token6] = ACTIONS(1618), + [sym_filesize_unit] = ACTIONS(1618), + [sym_duration_unit] = ACTIONS(1618), + [anon_sym_DQUOTE] = ACTIONS(1620), + [sym__str_single_quotes] = ACTIONS(1620), + [sym__str_back_ticks] = ACTIONS(1620), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1620), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1620), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1620), + [anon_sym_register] = ACTIONS(1618), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1620), + }, + [326] = { + [sym_comment] = STATE(326), + [anon_sym_export] = ACTIONS(1290), + [anon_sym_alias] = ACTIONS(1290), + [anon_sym_let] = ACTIONS(1290), + [anon_sym_let_DASHenv] = ACTIONS(1290), + [anon_sym_mut] = ACTIONS(1290), + [anon_sym_const] = ACTIONS(1290), + [aux_sym_cmd_identifier_token1] = ACTIONS(1290), + [aux_sym_cmd_identifier_token2] = ACTIONS(1288), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [aux_sym_cmd_identifier_token6] = ACTIONS(1288), + [aux_sym_cmd_identifier_token7] = ACTIONS(1288), + [aux_sym_cmd_identifier_token8] = ACTIONS(1290), + [aux_sym_cmd_identifier_token9] = ACTIONS(1290), + [aux_sym_cmd_identifier_token10] = ACTIONS(1288), + [aux_sym_cmd_identifier_token11] = ACTIONS(1288), + [aux_sym_cmd_identifier_token12] = ACTIONS(1290), + [aux_sym_cmd_identifier_token13] = ACTIONS(1290), + [aux_sym_cmd_identifier_token14] = ACTIONS(1290), + [aux_sym_cmd_identifier_token15] = ACTIONS(1290), + [aux_sym_cmd_identifier_token16] = ACTIONS(1288), + [aux_sym_cmd_identifier_token17] = ACTIONS(1288), + [aux_sym_cmd_identifier_token18] = ACTIONS(1290), + [aux_sym_cmd_identifier_token19] = ACTIONS(1288), + [aux_sym_cmd_identifier_token20] = ACTIONS(1288), + [aux_sym_cmd_identifier_token21] = ACTIONS(1288), + [aux_sym_cmd_identifier_token22] = ACTIONS(1288), + [aux_sym_cmd_identifier_token23] = ACTIONS(1288), + [aux_sym_cmd_identifier_token24] = ACTIONS(1288), + [aux_sym_cmd_identifier_token25] = ACTIONS(1288), + [aux_sym_cmd_identifier_token26] = ACTIONS(1288), + [aux_sym_cmd_identifier_token27] = ACTIONS(1288), + [aux_sym_cmd_identifier_token28] = ACTIONS(1288), + [aux_sym_cmd_identifier_token29] = ACTIONS(1288), + [aux_sym_cmd_identifier_token30] = ACTIONS(1288), + [aux_sym_cmd_identifier_token31] = ACTIONS(1288), + [aux_sym_cmd_identifier_token32] = ACTIONS(1290), + [aux_sym_cmd_identifier_token33] = ACTIONS(1288), + [aux_sym_cmd_identifier_token34] = ACTIONS(1290), + [aux_sym_cmd_identifier_token35] = ACTIONS(1288), + [aux_sym_cmd_identifier_token36] = ACTIONS(1288), + [aux_sym_cmd_identifier_token37] = ACTIONS(1288), + [aux_sym_cmd_identifier_token38] = ACTIONS(1290), + [aux_sym_cmd_identifier_token39] = ACTIONS(1288), + [aux_sym_cmd_identifier_token40] = ACTIONS(1288), + [sym__newline] = ACTIONS(1288), + [anon_sym_SEMI] = ACTIONS(1288), + [anon_sym_PIPE] = ACTIONS(1288), + [anon_sym_def] = ACTIONS(1290), + [anon_sym_export_DASHenv] = ACTIONS(1290), + [anon_sym_extern] = ACTIONS(1290), + [anon_sym_module] = ACTIONS(1290), + [anon_sym_use] = ACTIONS(1290), + [anon_sym_LBRACK] = ACTIONS(1288), + [anon_sym_LPAREN] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1290), + [anon_sym_error] = ACTIONS(1290), + [anon_sym_DASH2] = ACTIONS(1290), + [anon_sym_break] = ACTIONS(1290), + [anon_sym_continue] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1290), + [anon_sym_loop] = ACTIONS(1290), + [anon_sym_while] = ACTIONS(1290), + [anon_sym_do] = ACTIONS(1290), + [anon_sym_if] = ACTIONS(1290), + [anon_sym_match] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1288), + [anon_sym_DOT_DOT] = ACTIONS(1290), + [anon_sym_try] = ACTIONS(1290), + [anon_sym_return] = ACTIONS(1290), + [anon_sym_source] = ACTIONS(1290), + [anon_sym_source_DASHenv] = ACTIONS(1290), + [anon_sym_hide] = ACTIONS(1290), + [anon_sym_hide_DASHenv] = ACTIONS(1290), + [anon_sym_overlay] = ACTIONS(1290), + [anon_sym_where] = ACTIONS(1288), + [aux_sym_expr_unary_token1] = ACTIONS(1288), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1288), + [anon_sym_DOT_DOT_LT] = ACTIONS(1288), + [anon_sym_null] = ACTIONS(1290), + [anon_sym_true] = ACTIONS(1290), + [anon_sym_false] = ACTIONS(1290), + [aux_sym__val_number_decimal_token1] = ACTIONS(1290), + [aux_sym__val_number_decimal_token2] = ACTIONS(1288), + [aux_sym__val_number_decimal_token3] = ACTIONS(1288), + [aux_sym__val_number_decimal_token4] = ACTIONS(1288), + [aux_sym__val_number_token1] = ACTIONS(1288), + [aux_sym__val_number_token2] = ACTIONS(1288), + [aux_sym__val_number_token3] = ACTIONS(1288), + [aux_sym__val_number_token4] = ACTIONS(1290), + [aux_sym__val_number_token5] = ACTIONS(1290), + [aux_sym__val_number_token6] = ACTIONS(1290), + [anon_sym_0b] = ACTIONS(1290), + [anon_sym_0o] = ACTIONS(1290), + [anon_sym_0x] = ACTIONS(1290), + [sym_val_date] = ACTIONS(1288), + [anon_sym_DQUOTE] = ACTIONS(1288), + [sym__str_single_quotes] = ACTIONS(1288), + [sym__str_back_ticks] = ACTIONS(1288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1288), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1288), + [aux_sym_env_var_token1] = ACTIONS(1290), + [anon_sym_CARET] = ACTIONS(1288), + [aux_sym_command_token1] = ACTIONS(1288), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1288), + }, + [327] = { + [sym_comment] = STATE(327), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1504), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_error] = ACTIONS(1504), + [anon_sym_DASH2] = ACTIONS(1504), + [anon_sym_break] = ACTIONS(1504), + [anon_sym_continue] = ACTIONS(1504), + [anon_sym_for] = ACTIONS(1504), + [anon_sym_in2] = 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_hide] = ACTIONS(1504), + [anon_sym_hide_DASHenv] = ACTIONS(1504), + [anon_sym_overlay] = ACTIONS(1504), + [anon_sym_as] = ACTIONS(1504), + [anon_sym_LPAREN2] = ACTIONS(1506), + [anon_sym_PLUS2] = ACTIONS(1504), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1504), + [anon_sym_DOT_DOT2] = 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), + [aux_sym__val_number_decimal_token3] = ACTIONS(1504), + [aux_sym__val_number_decimal_token4] = ACTIONS(1504), + [aux_sym__val_number_token1] = ACTIONS(1504), + [aux_sym__val_number_token2] = ACTIONS(1504), + [aux_sym__val_number_token3] = ACTIONS(1504), + [aux_sym__val_number_token4] = ACTIONS(1504), + [aux_sym__val_number_token5] = ACTIONS(1504), + [aux_sym__val_number_token6] = 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_DOLLAR_SQUOTE] = ACTIONS(1504), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1504), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1504), + [sym__entry_separator] = ACTIONS(1506), + [anon_sym_register] = ACTIONS(1504), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1504), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1506), + }, + [328] = { + [sym__expr_parenthesized_immediate] = STATE(740), + [sym__immediate_decimal] = STATE(741), + [sym_val_variable] = STATE(740), + [sym_comment] = STATE(328), + [anon_sym_export] = ACTIONS(1580), + [anon_sym_alias] = ACTIONS(1580), + [anon_sym_let] = ACTIONS(1580), + [anon_sym_let_DASHenv] = ACTIONS(1580), + [anon_sym_mut] = ACTIONS(1580), + [anon_sym_const] = ACTIONS(1580), + [aux_sym_cmd_identifier_token1] = ACTIONS(1580), + [aux_sym_cmd_identifier_token2] = ACTIONS(1582), + [aux_sym_cmd_identifier_token3] = ACTIONS(1582), + [aux_sym_cmd_identifier_token4] = ACTIONS(1582), + [aux_sym_cmd_identifier_token5] = ACTIONS(1582), + [aux_sym_cmd_identifier_token6] = ACTIONS(1582), + [aux_sym_cmd_identifier_token7] = ACTIONS(1582), + [aux_sym_cmd_identifier_token8] = ACTIONS(1580), + [aux_sym_cmd_identifier_token9] = ACTIONS(1580), + [aux_sym_cmd_identifier_token10] = ACTIONS(1582), + [aux_sym_cmd_identifier_token11] = ACTIONS(1582), + [aux_sym_cmd_identifier_token12] = ACTIONS(1580), + [aux_sym_cmd_identifier_token13] = ACTIONS(1580), + [aux_sym_cmd_identifier_token14] = ACTIONS(1580), + [aux_sym_cmd_identifier_token15] = ACTIONS(1580), + [aux_sym_cmd_identifier_token16] = ACTIONS(1582), + [aux_sym_cmd_identifier_token17] = ACTIONS(1582), + [aux_sym_cmd_identifier_token18] = ACTIONS(1582), + [aux_sym_cmd_identifier_token19] = ACTIONS(1582), + [aux_sym_cmd_identifier_token20] = ACTIONS(1582), + [aux_sym_cmd_identifier_token21] = ACTIONS(1582), + [aux_sym_cmd_identifier_token22] = ACTIONS(1582), + [aux_sym_cmd_identifier_token23] = ACTIONS(1582), + [aux_sym_cmd_identifier_token24] = ACTIONS(1582), + [aux_sym_cmd_identifier_token25] = ACTIONS(1582), + [aux_sym_cmd_identifier_token26] = ACTIONS(1582), + [aux_sym_cmd_identifier_token27] = ACTIONS(1582), + [aux_sym_cmd_identifier_token28] = ACTIONS(1582), + [aux_sym_cmd_identifier_token29] = ACTIONS(1582), + [aux_sym_cmd_identifier_token30] = ACTIONS(1582), + [aux_sym_cmd_identifier_token31] = ACTIONS(1582), + [aux_sym_cmd_identifier_token32] = ACTIONS(1582), + [aux_sym_cmd_identifier_token33] = ACTIONS(1582), + [aux_sym_cmd_identifier_token34] = ACTIONS(1580), + [aux_sym_cmd_identifier_token35] = ACTIONS(1582), + [aux_sym_cmd_identifier_token36] = ACTIONS(1582), + [aux_sym_cmd_identifier_token37] = ACTIONS(1582), + [aux_sym_cmd_identifier_token38] = ACTIONS(1580), + [aux_sym_cmd_identifier_token39] = ACTIONS(1582), + [aux_sym_cmd_identifier_token40] = ACTIONS(1582), + [anon_sym_def] = ACTIONS(1580), + [anon_sym_export_DASHenv] = ACTIONS(1580), + [anon_sym_extern] = ACTIONS(1580), + [anon_sym_module] = ACTIONS(1580), + [anon_sym_use] = ACTIONS(1580), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_COMMA] = ACTIONS(1582), + [anon_sym_DOLLAR] = ACTIONS(1365), + [anon_sym_error] = ACTIONS(1580), + [anon_sym_DASH2] = ACTIONS(1580), + [anon_sym_break] = ACTIONS(1580), + [anon_sym_continue] = ACTIONS(1580), + [anon_sym_for] = ACTIONS(1580), + [anon_sym_in2] = ACTIONS(1580), + [anon_sym_loop] = ACTIONS(1580), + [anon_sym_make] = ACTIONS(1580), + [anon_sym_while] = ACTIONS(1580), + [anon_sym_do] = ACTIONS(1580), + [anon_sym_if] = ACTIONS(1580), + [anon_sym_else] = ACTIONS(1580), + [anon_sym_match] = ACTIONS(1580), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_try] = ACTIONS(1580), + [anon_sym_catch] = ACTIONS(1580), + [anon_sym_return] = ACTIONS(1580), + [anon_sym_source] = ACTIONS(1580), + [anon_sym_source_DASHenv] = ACTIONS(1580), + [anon_sym_hide] = ACTIONS(1580), + [anon_sym_hide_DASHenv] = ACTIONS(1580), + [anon_sym_overlay] = ACTIONS(1580), + [anon_sym_as] = ACTIONS(1580), + [anon_sym_LPAREN2] = ACTIONS(1592), + [anon_sym_PLUS2] = ACTIONS(1580), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1582), + [aux_sym__immediate_decimal_token1] = ACTIONS(1658), + [aux_sym__immediate_decimal_token3] = ACTIONS(1660), + [aux_sym__immediate_decimal_token4] = ACTIONS(1662), + [aux_sym__immediate_decimal_token5] = ACTIONS(1664), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1582), + [aux_sym__val_number_decimal_token1] = ACTIONS(1580), + [aux_sym__val_number_decimal_token2] = ACTIONS(1580), + [aux_sym__val_number_decimal_token3] = ACTIONS(1580), + [aux_sym__val_number_decimal_token4] = ACTIONS(1580), + [aux_sym__val_number_token1] = ACTIONS(1582), + [aux_sym__val_number_token2] = ACTIONS(1582), + [aux_sym__val_number_token3] = ACTIONS(1582), + [aux_sym__val_number_token4] = ACTIONS(1580), + [aux_sym__val_number_token5] = ACTIONS(1580), + [aux_sym__val_number_token6] = ACTIONS(1580), + [anon_sym_DQUOTE] = ACTIONS(1582), + [sym__str_single_quotes] = ACTIONS(1582), + [sym__str_back_ticks] = ACTIONS(1582), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1582), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1582), + [anon_sym_register] = ACTIONS(1580), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1582), + }, + [329] = { + [sym_comment] = STATE(329), + [anon_sym_export] = ACTIONS(1618), + [anon_sym_alias] = ACTIONS(1618), + [anon_sym_let] = ACTIONS(1618), + [anon_sym_let_DASHenv] = ACTIONS(1618), + [anon_sym_mut] = ACTIONS(1618), + [anon_sym_const] = ACTIONS(1618), + [aux_sym_cmd_identifier_token1] = ACTIONS(1618), + [aux_sym_cmd_identifier_token2] = ACTIONS(1618), + [aux_sym_cmd_identifier_token3] = ACTIONS(1618), + [aux_sym_cmd_identifier_token4] = ACTIONS(1618), + [aux_sym_cmd_identifier_token5] = ACTIONS(1618), + [aux_sym_cmd_identifier_token6] = ACTIONS(1618), + [aux_sym_cmd_identifier_token7] = ACTIONS(1618), + [aux_sym_cmd_identifier_token8] = ACTIONS(1618), + [aux_sym_cmd_identifier_token9] = ACTIONS(1618), + [aux_sym_cmd_identifier_token10] = ACTIONS(1618), + [aux_sym_cmd_identifier_token11] = ACTIONS(1618), + [aux_sym_cmd_identifier_token12] = ACTIONS(1618), + [aux_sym_cmd_identifier_token13] = ACTIONS(1618), + [aux_sym_cmd_identifier_token14] = ACTIONS(1618), + [aux_sym_cmd_identifier_token15] = ACTIONS(1618), + [aux_sym_cmd_identifier_token16] = ACTIONS(1618), + [aux_sym_cmd_identifier_token17] = ACTIONS(1618), + [aux_sym_cmd_identifier_token18] = ACTIONS(1618), + [aux_sym_cmd_identifier_token19] = ACTIONS(1618), + [aux_sym_cmd_identifier_token20] = ACTIONS(1618), + [aux_sym_cmd_identifier_token21] = ACTIONS(1618), + [aux_sym_cmd_identifier_token22] = ACTIONS(1618), + [aux_sym_cmd_identifier_token23] = ACTIONS(1618), + [aux_sym_cmd_identifier_token24] = ACTIONS(1618), + [aux_sym_cmd_identifier_token25] = ACTIONS(1618), + [aux_sym_cmd_identifier_token26] = ACTIONS(1618), + [aux_sym_cmd_identifier_token27] = ACTIONS(1618), + [aux_sym_cmd_identifier_token28] = ACTIONS(1618), + [aux_sym_cmd_identifier_token29] = ACTIONS(1618), + [aux_sym_cmd_identifier_token30] = ACTIONS(1618), + [aux_sym_cmd_identifier_token31] = ACTIONS(1618), + [aux_sym_cmd_identifier_token32] = ACTIONS(1618), + [aux_sym_cmd_identifier_token33] = ACTIONS(1618), + [aux_sym_cmd_identifier_token34] = ACTIONS(1618), + [aux_sym_cmd_identifier_token35] = ACTIONS(1618), + [aux_sym_cmd_identifier_token36] = ACTIONS(1618), + [aux_sym_cmd_identifier_token37] = ACTIONS(1618), + [aux_sym_cmd_identifier_token38] = ACTIONS(1618), + [aux_sym_cmd_identifier_token39] = ACTIONS(1618), + [aux_sym_cmd_identifier_token40] = ACTIONS(1618), + [anon_sym_def] = ACTIONS(1618), + [anon_sym_export_DASHenv] = ACTIONS(1618), + [anon_sym_extern] = ACTIONS(1618), + [anon_sym_module] = ACTIONS(1618), + [anon_sym_use] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_COMMA] = ACTIONS(1618), + [anon_sym_DOLLAR] = ACTIONS(1618), + [anon_sym_error] = ACTIONS(1618), + [anon_sym_DASH2] = ACTIONS(1618), + [anon_sym_break] = ACTIONS(1618), + [anon_sym_continue] = ACTIONS(1618), + [anon_sym_for] = ACTIONS(1618), + [anon_sym_in2] = ACTIONS(1618), + [anon_sym_loop] = ACTIONS(1618), + [anon_sym_make] = ACTIONS(1618), + [anon_sym_while] = ACTIONS(1618), + [anon_sym_do] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1618), + [anon_sym_else] = ACTIONS(1618), + [anon_sym_match] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1618), + [anon_sym_try] = ACTIONS(1618), + [anon_sym_catch] = ACTIONS(1618), + [anon_sym_return] = ACTIONS(1618), + [anon_sym_source] = ACTIONS(1618), + [anon_sym_source_DASHenv] = ACTIONS(1618), + [anon_sym_hide] = ACTIONS(1618), + [anon_sym_hide_DASHenv] = ACTIONS(1618), + [anon_sym_overlay] = ACTIONS(1618), + [anon_sym_as] = ACTIONS(1618), + [anon_sym_LPAREN2] = ACTIONS(1620), + [anon_sym_PLUS2] = ACTIONS(1618), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1618), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1618), + [aux_sym__val_number_decimal_token1] = ACTIONS(1618), + [aux_sym__val_number_decimal_token2] = ACTIONS(1618), + [aux_sym__val_number_decimal_token3] = ACTIONS(1618), + [aux_sym__val_number_decimal_token4] = ACTIONS(1618), + [aux_sym__val_number_token1] = ACTIONS(1618), + [aux_sym__val_number_token2] = ACTIONS(1618), + [aux_sym__val_number_token3] = ACTIONS(1618), + [aux_sym__val_number_token4] = ACTIONS(1618), + [aux_sym__val_number_token5] = ACTIONS(1618), + [aux_sym__val_number_token6] = ACTIONS(1618), + [sym_filesize_unit] = ACTIONS(1618), + [sym_duration_unit] = ACTIONS(1618), + [anon_sym_DQUOTE] = ACTIONS(1618), + [sym__str_single_quotes] = ACTIONS(1618), + [sym__str_back_ticks] = ACTIONS(1618), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1618), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1618), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1618), + [sym__entry_separator] = ACTIONS(1620), + [anon_sym_register] = ACTIONS(1618), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1620), + }, + [330] = { + [sym_comment] = STATE(330), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1689), + [anon_sym_DOLLAR] = ACTIONS(1689), + [anon_sym_error] = ACTIONS(1689), + [anon_sym_DASH2] = ACTIONS(1689), + [anon_sym_break] = ACTIONS(1689), + [anon_sym_continue] = ACTIONS(1689), + [anon_sym_for] = ACTIONS(1689), + [anon_sym_in2] = 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_hide] = ACTIONS(1689), + [anon_sym_hide_DASHenv] = ACTIONS(1689), + [anon_sym_overlay] = ACTIONS(1689), + [anon_sym_as] = ACTIONS(1689), + [anon_sym_LPAREN2] = ACTIONS(1691), + [anon_sym_PLUS2] = ACTIONS(1689), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1689), + [anon_sym_DOT_DOT2] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1691), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1691), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1689), + [aux_sym__val_number_decimal_token1] = ACTIONS(1689), + [aux_sym__val_number_decimal_token2] = ACTIONS(1689), + [aux_sym__val_number_decimal_token3] = ACTIONS(1689), + [aux_sym__val_number_decimal_token4] = ACTIONS(1689), + [aux_sym__val_number_token1] = ACTIONS(1689), + [aux_sym__val_number_token2] = ACTIONS(1689), + [aux_sym__val_number_token3] = ACTIONS(1689), + [aux_sym__val_number_token4] = ACTIONS(1689), + [aux_sym__val_number_token5] = ACTIONS(1689), + [aux_sym__val_number_token6] = ACTIONS(1689), + [sym_filesize_unit] = ACTIONS(1689), + [sym_duration_unit] = ACTIONS(1689), + [anon_sym_DQUOTE] = ACTIONS(1689), + [sym__str_single_quotes] = ACTIONS(1689), + [sym__str_back_ticks] = ACTIONS(1689), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1689), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1689), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1689), + [sym__entry_separator] = ACTIONS(1691), + [anon_sym_register] = ACTIONS(1689), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1689), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1691), + }, + [331] = { + [sym_comment] = STATE(331), [anon_sym_export] = ACTIONS(1693), [anon_sym_alias] = ACTIONS(1693), [anon_sym_let] = ACTIONS(1693), @@ -117316,882 +118248,550 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mut] = ACTIONS(1693), [anon_sym_const] = ACTIONS(1693), [aux_sym_cmd_identifier_token1] = ACTIONS(1693), - [aux_sym_cmd_identifier_token2] = ACTIONS(1695), - [aux_sym_cmd_identifier_token3] = ACTIONS(1695), - [aux_sym_cmd_identifier_token4] = ACTIONS(1695), - [aux_sym_cmd_identifier_token5] = ACTIONS(1695), - [aux_sym_cmd_identifier_token6] = ACTIONS(1695), - [aux_sym_cmd_identifier_token7] = ACTIONS(1695), + [aux_sym_cmd_identifier_token2] = ACTIONS(1693), + [aux_sym_cmd_identifier_token3] = ACTIONS(1693), + [aux_sym_cmd_identifier_token4] = ACTIONS(1693), + [aux_sym_cmd_identifier_token5] = ACTIONS(1693), + [aux_sym_cmd_identifier_token6] = ACTIONS(1693), + [aux_sym_cmd_identifier_token7] = ACTIONS(1693), [aux_sym_cmd_identifier_token8] = ACTIONS(1693), [aux_sym_cmd_identifier_token9] = ACTIONS(1693), - [aux_sym_cmd_identifier_token10] = ACTIONS(1695), - [aux_sym_cmd_identifier_token11] = ACTIONS(1695), + [aux_sym_cmd_identifier_token10] = ACTIONS(1693), + [aux_sym_cmd_identifier_token11] = ACTIONS(1693), [aux_sym_cmd_identifier_token12] = ACTIONS(1693), [aux_sym_cmd_identifier_token13] = ACTIONS(1693), [aux_sym_cmd_identifier_token14] = ACTIONS(1693), [aux_sym_cmd_identifier_token15] = ACTIONS(1693), - [aux_sym_cmd_identifier_token16] = ACTIONS(1695), - [aux_sym_cmd_identifier_token17] = ACTIONS(1695), + [aux_sym_cmd_identifier_token16] = ACTIONS(1693), + [aux_sym_cmd_identifier_token17] = ACTIONS(1693), [aux_sym_cmd_identifier_token18] = ACTIONS(1693), - [aux_sym_cmd_identifier_token19] = ACTIONS(1695), - [aux_sym_cmd_identifier_token20] = ACTIONS(1695), - [aux_sym_cmd_identifier_token21] = ACTIONS(1695), - [aux_sym_cmd_identifier_token22] = ACTIONS(1695), - [aux_sym_cmd_identifier_token23] = ACTIONS(1695), - [aux_sym_cmd_identifier_token24] = ACTIONS(1695), - [aux_sym_cmd_identifier_token25] = ACTIONS(1695), - [aux_sym_cmd_identifier_token26] = ACTIONS(1695), - [aux_sym_cmd_identifier_token27] = ACTIONS(1695), - [aux_sym_cmd_identifier_token28] = ACTIONS(1695), - [aux_sym_cmd_identifier_token29] = ACTIONS(1695), - [aux_sym_cmd_identifier_token30] = ACTIONS(1695), - [aux_sym_cmd_identifier_token31] = ACTIONS(1695), + [aux_sym_cmd_identifier_token19] = ACTIONS(1693), + [aux_sym_cmd_identifier_token20] = ACTIONS(1693), + [aux_sym_cmd_identifier_token21] = ACTIONS(1693), + [aux_sym_cmd_identifier_token22] = ACTIONS(1693), + [aux_sym_cmd_identifier_token23] = ACTIONS(1693), + [aux_sym_cmd_identifier_token24] = ACTIONS(1693), + [aux_sym_cmd_identifier_token25] = ACTIONS(1693), + [aux_sym_cmd_identifier_token26] = ACTIONS(1693), + [aux_sym_cmd_identifier_token27] = ACTIONS(1693), + [aux_sym_cmd_identifier_token28] = ACTIONS(1693), + [aux_sym_cmd_identifier_token29] = ACTIONS(1693), + [aux_sym_cmd_identifier_token30] = ACTIONS(1693), + [aux_sym_cmd_identifier_token31] = ACTIONS(1693), [aux_sym_cmd_identifier_token32] = ACTIONS(1693), - [aux_sym_cmd_identifier_token33] = ACTIONS(1695), + [aux_sym_cmd_identifier_token33] = ACTIONS(1693), [aux_sym_cmd_identifier_token34] = ACTIONS(1693), - [aux_sym_cmd_identifier_token35] = ACTIONS(1695), - [aux_sym_cmd_identifier_token36] = ACTIONS(1695), - [aux_sym_cmd_identifier_token37] = ACTIONS(1695), + [aux_sym_cmd_identifier_token35] = ACTIONS(1693), + [aux_sym_cmd_identifier_token36] = ACTIONS(1693), + [aux_sym_cmd_identifier_token37] = ACTIONS(1693), [aux_sym_cmd_identifier_token38] = ACTIONS(1693), - [aux_sym_cmd_identifier_token39] = ACTIONS(1695), - [aux_sym_cmd_identifier_token40] = ACTIONS(1695), - [sym__newline] = ACTIONS(1695), - [anon_sym_SEMI] = ACTIONS(1695), + [aux_sym_cmd_identifier_token39] = ACTIONS(1693), + [aux_sym_cmd_identifier_token40] = ACTIONS(1693), [anon_sym_def] = ACTIONS(1693), [anon_sym_export_DASHenv] = ACTIONS(1693), [anon_sym_extern] = ACTIONS(1693), [anon_sym_module] = ACTIONS(1693), [anon_sym_use] = ACTIONS(1693), - [anon_sym_LBRACK] = ACTIONS(1695), - [anon_sym_LPAREN] = ACTIONS(1695), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_COMMA] = ACTIONS(1693), [anon_sym_DOLLAR] = ACTIONS(1693), [anon_sym_error] = ACTIONS(1693), [anon_sym_DASH2] = ACTIONS(1693), [anon_sym_break] = ACTIONS(1693), [anon_sym_continue] = ACTIONS(1693), [anon_sym_for] = ACTIONS(1693), + [anon_sym_in2] = ACTIONS(1693), [anon_sym_loop] = ACTIONS(1693), + [anon_sym_make] = ACTIONS(1693), [anon_sym_while] = ACTIONS(1693), [anon_sym_do] = ACTIONS(1693), [anon_sym_if] = ACTIONS(1693), + [anon_sym_else] = ACTIONS(1693), [anon_sym_match] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1695), - [anon_sym_DOT_DOT] = ACTIONS(1693), + [anon_sym_RBRACE] = ACTIONS(1693), [anon_sym_try] = ACTIONS(1693), + [anon_sym_catch] = ACTIONS(1693), [anon_sym_return] = ACTIONS(1693), [anon_sym_source] = ACTIONS(1693), [anon_sym_source_DASHenv] = ACTIONS(1693), - [anon_sym_register] = ACTIONS(1693), [anon_sym_hide] = ACTIONS(1693), [anon_sym_hide_DASHenv] = ACTIONS(1693), [anon_sym_overlay] = ACTIONS(1693), - [anon_sym_where] = ACTIONS(1695), - [aux_sym_expr_unary_token1] = ACTIONS(1695), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1695), - [anon_sym_DOT_DOT_LT] = ACTIONS(1695), - [anon_sym_null] = ACTIONS(1693), - [anon_sym_true] = ACTIONS(1693), - [anon_sym_false] = ACTIONS(1693), + [anon_sym_as] = ACTIONS(1693), + [anon_sym_LPAREN2] = ACTIONS(1695), + [anon_sym_PLUS2] = ACTIONS(1693), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1693), + [anon_sym_DOT_DOT2] = ACTIONS(1693), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1695), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1695), + [aux_sym__immediate_decimal_token1] = ACTIONS(1697), + [aux_sym__immediate_decimal_token2] = ACTIONS(1699), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1693), [aux_sym__val_number_decimal_token1] = ACTIONS(1693), - [aux_sym__val_number_decimal_token2] = ACTIONS(1695), - [aux_sym__val_number_decimal_token3] = ACTIONS(1695), - [aux_sym__val_number_decimal_token4] = ACTIONS(1695), - [aux_sym__val_number_token1] = ACTIONS(1695), - [aux_sym__val_number_token2] = ACTIONS(1695), - [aux_sym__val_number_token3] = ACTIONS(1695), + [aux_sym__val_number_decimal_token2] = ACTIONS(1693), + [aux_sym__val_number_decimal_token3] = ACTIONS(1693), + [aux_sym__val_number_decimal_token4] = ACTIONS(1693), + [aux_sym__val_number_token1] = ACTIONS(1693), + [aux_sym__val_number_token2] = ACTIONS(1693), + [aux_sym__val_number_token3] = ACTIONS(1693), [aux_sym__val_number_token4] = ACTIONS(1693), [aux_sym__val_number_token5] = ACTIONS(1693), [aux_sym__val_number_token6] = ACTIONS(1693), - [anon_sym_0b] = ACTIONS(1693), - [anon_sym_0o] = ACTIONS(1693), - [anon_sym_0x] = ACTIONS(1693), - [sym_val_date] = ACTIONS(1695), - [anon_sym_DQUOTE] = ACTIONS(1695), - [sym__str_single_quotes] = ACTIONS(1695), - [sym__str_back_ticks] = ACTIONS(1695), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1695), - [aux_sym_env_var_token1] = ACTIONS(1693), - [anon_sym_CARET] = ACTIONS(1695), - [aux_sym_command_token1] = ACTIONS(1695), - [anon_sym_POUND] = ACTIONS(251), + [anon_sym_DQUOTE] = ACTIONS(1693), + [sym__str_single_quotes] = ACTIONS(1693), + [sym__str_back_ticks] = ACTIONS(1693), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1693), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1693), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1693), + [sym__entry_separator] = ACTIONS(1695), + [anon_sym_register] = ACTIONS(1693), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1695), }, - [323] = { - [sym_cmd_identifier] = STATE(4643), - [sym__expression] = STATE(3863), - [sym_expr_unary] = STATE(2492), - [sym__expr_unary_minus] = STATE(2458), - [sym_expr_binary] = STATE(2492), - [sym__expr_binary_expression] = STATE(3874), - [sym_expr_parenthesized] = STATE(2094), - [sym_val_range] = STATE(2492), - [sym__value] = STATE(2492), - [sym_val_nothing] = STATE(2516), - [sym_val_bool] = STATE(2516), - [sym_val_variable] = STATE(2101), - [sym_val_number] = STATE(2516), - [sym__val_number_decimal] = STATE(813), - [sym__val_number] = STATE(2512), - [sym_val_duration] = STATE(2516), - [sym_val_filesize] = STATE(2516), - [sym_val_binary] = STATE(2516), - [sym_val_string] = STATE(2516), - [sym__raw_str] = STATE(1732), - [sym__str_double_quotes] = STATE(1732), - [sym_val_interpolated] = STATE(2516), - [sym__inter_single_quotes] = STATE(2527), - [sym__inter_double_quotes] = STATE(2528), - [sym_val_list] = STATE(2516), - [sym_val_record] = STATE(2516), - [sym_val_table] = STATE(2516), - [sym_val_closure] = STATE(2516), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4980), - [sym_comment] = STATE(323), - [aux_sym_pipe_element_repeat2] = STATE(1148), - [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(19), - [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(19), - [aux_sym_cmd_identifier_token33] = ACTIONS(21), - [aux_sym_cmd_identifier_token34] = ACTIONS(19), - [aux_sym_cmd_identifier_token35] = ACTIONS(21), - [aux_sym_cmd_identifier_token36] = ACTIONS(21), - [aux_sym_cmd_identifier_token37] = ACTIONS(21), - [aux_sym_cmd_identifier_token38] = ACTIONS(19), - [aux_sym_cmd_identifier_token39] = ACTIONS(21), - [aux_sym_cmd_identifier_token40] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1044), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(65), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(85), - [anon_sym_DOT_DOT_LT] = ACTIONS(85), - [anon_sym_null] = ACTIONS(87), - [anon_sym_true] = ACTIONS(89), - [anon_sym_false] = ACTIONS(89), - [aux_sym__val_number_decimal_token1] = ACTIONS(91), - [aux_sym__val_number_decimal_token2] = ACTIONS(93), - [aux_sym__val_number_decimal_token3] = ACTIONS(95), - [aux_sym__val_number_decimal_token4] = ACTIONS(97), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(101), - [aux_sym__val_number_token5] = ACTIONS(101), - [aux_sym__val_number_token6] = ACTIONS(101), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(119), - [aux_sym_command_token1] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [324] = { - [sym_cell_path] = STATE(473), - [sym_path] = STATE(404), - [sym_comment] = STATE(324), - [aux_sym_cell_path_repeat1] = STATE(361), - [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), - [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1697), - [anon_sym_DOLLAR] = ACTIONS(1697), - [anon_sym_error] = ACTIONS(1697), - [anon_sym_DASH2] = ACTIONS(1697), - [anon_sym_break] = ACTIONS(1697), - [anon_sym_continue] = ACTIONS(1697), - [anon_sym_for] = ACTIONS(1697), - [anon_sym_in2] = 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_as] = ACTIONS(1697), - [anon_sym_PLUS2] = ACTIONS(1697), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1697), - [anon_sym_DOT_DOT2] = ACTIONS(1697), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1699), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1699), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1697), - [aux_sym__val_number_decimal_token1] = ACTIONS(1697), - [aux_sym__val_number_decimal_token2] = ACTIONS(1697), - [aux_sym__val_number_decimal_token3] = ACTIONS(1697), - [aux_sym__val_number_decimal_token4] = ACTIONS(1697), - [aux_sym__val_number_token1] = ACTIONS(1697), - [aux_sym__val_number_token2] = ACTIONS(1697), - [aux_sym__val_number_token3] = ACTIONS(1697), - [aux_sym__val_number_token4] = ACTIONS(1697), - [aux_sym__val_number_token5] = ACTIONS(1697), - [aux_sym__val_number_token6] = ACTIONS(1697), - [anon_sym_DQUOTE] = ACTIONS(1697), - [sym__str_single_quotes] = ACTIONS(1697), - [sym__str_back_ticks] = ACTIONS(1697), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1697), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1697), - [sym__entry_separator] = ACTIONS(1699), - [anon_sym_DOT2] = ACTIONS(1701), + [332] = { + [sym_comment] = STATE(332), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1701), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_error] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_in2] = 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_hide] = ACTIONS(1701), + [anon_sym_hide_DASHenv] = ACTIONS(1701), + [anon_sym_overlay] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1701), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT] = ACTIONS(1705), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(1707), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1701), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1701), + [aux_sym__val_number_decimal_token3] = ACTIONS(1701), + [aux_sym__val_number_decimal_token4] = ACTIONS(1701), + [aux_sym__val_number_token1] = ACTIONS(1701), + [aux_sym__val_number_token2] = ACTIONS(1701), + [aux_sym__val_number_token3] = ACTIONS(1701), + [aux_sym__val_number_token4] = ACTIONS(1701), + [aux_sym__val_number_token5] = ACTIONS(1701), + [aux_sym__val_number_token6] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1701), + [sym__str_single_quotes] = ACTIONS(1701), + [sym__str_back_ticks] = ACTIONS(1701), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1701), + [sym__entry_separator] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1701), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1701), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1699), - }, - [325] = { - [sym_cmd_identifier] = STATE(4711), - [sym__expression_parenthesized] = STATE(3860), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(843), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5124), - [sym_comment] = STATE(325), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1147), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1703), - [aux_sym__val_number_decimal_token2] = ACTIONS(1705), - [aux_sym__val_number_decimal_token3] = ACTIONS(1707), - [aux_sym__val_number_decimal_token4] = ACTIONS(1709), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, - [326] = { - [sym_comment] = STATE(326), - [anon_sym_export] = ACTIONS(1490), - [anon_sym_alias] = ACTIONS(1490), - [anon_sym_let] = ACTIONS(1490), - [anon_sym_let_DASHenv] = ACTIONS(1490), - [anon_sym_mut] = ACTIONS(1490), - [anon_sym_const] = ACTIONS(1490), - [aux_sym_cmd_identifier_token1] = ACTIONS(1490), - [aux_sym_cmd_identifier_token2] = ACTIONS(1492), - [aux_sym_cmd_identifier_token3] = ACTIONS(1492), - [aux_sym_cmd_identifier_token4] = ACTIONS(1492), - [aux_sym_cmd_identifier_token5] = ACTIONS(1492), - [aux_sym_cmd_identifier_token6] = ACTIONS(1492), - [aux_sym_cmd_identifier_token7] = ACTIONS(1492), - [aux_sym_cmd_identifier_token8] = ACTIONS(1490), - [aux_sym_cmd_identifier_token9] = ACTIONS(1490), - [aux_sym_cmd_identifier_token10] = ACTIONS(1492), - [aux_sym_cmd_identifier_token11] = ACTIONS(1492), - [aux_sym_cmd_identifier_token12] = ACTIONS(1490), - [aux_sym_cmd_identifier_token13] = ACTIONS(1490), - [aux_sym_cmd_identifier_token14] = ACTIONS(1490), - [aux_sym_cmd_identifier_token15] = ACTIONS(1490), - [aux_sym_cmd_identifier_token16] = ACTIONS(1492), - [aux_sym_cmd_identifier_token17] = ACTIONS(1492), - [aux_sym_cmd_identifier_token18] = ACTIONS(1490), - [aux_sym_cmd_identifier_token19] = ACTIONS(1492), - [aux_sym_cmd_identifier_token20] = ACTIONS(1492), - [aux_sym_cmd_identifier_token21] = ACTIONS(1492), - [aux_sym_cmd_identifier_token22] = ACTIONS(1492), - [aux_sym_cmd_identifier_token23] = ACTIONS(1492), - [aux_sym_cmd_identifier_token24] = ACTIONS(1492), - [aux_sym_cmd_identifier_token25] = ACTIONS(1492), - [aux_sym_cmd_identifier_token26] = ACTIONS(1492), - [aux_sym_cmd_identifier_token27] = ACTIONS(1492), - [aux_sym_cmd_identifier_token28] = ACTIONS(1492), - [aux_sym_cmd_identifier_token29] = ACTIONS(1492), - [aux_sym_cmd_identifier_token30] = ACTIONS(1492), - [aux_sym_cmd_identifier_token31] = ACTIONS(1492), - [aux_sym_cmd_identifier_token32] = ACTIONS(1490), - [aux_sym_cmd_identifier_token33] = ACTIONS(1492), - [aux_sym_cmd_identifier_token34] = ACTIONS(1490), - [aux_sym_cmd_identifier_token35] = ACTIONS(1492), - [aux_sym_cmd_identifier_token36] = ACTIONS(1492), - [aux_sym_cmd_identifier_token37] = ACTIONS(1492), - [aux_sym_cmd_identifier_token38] = ACTIONS(1490), - [aux_sym_cmd_identifier_token39] = ACTIONS(1492), - [aux_sym_cmd_identifier_token40] = ACTIONS(1492), - [sym__newline] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_def] = ACTIONS(1490), - [anon_sym_export_DASHenv] = ACTIONS(1490), - [anon_sym_extern] = ACTIONS(1490), - [anon_sym_module] = ACTIONS(1490), - [anon_sym_use] = ACTIONS(1490), - [anon_sym_LBRACK] = ACTIONS(1492), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_DOLLAR] = ACTIONS(1490), - [anon_sym_error] = ACTIONS(1490), - [anon_sym_DASH2] = ACTIONS(1490), - [anon_sym_break] = ACTIONS(1490), - [anon_sym_continue] = ACTIONS(1490), - [anon_sym_for] = ACTIONS(1490), - [anon_sym_loop] = ACTIONS(1490), - [anon_sym_while] = ACTIONS(1490), - [anon_sym_do] = ACTIONS(1490), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_match] = ACTIONS(1490), - [anon_sym_LBRACE] = ACTIONS(1492), - [anon_sym_DOT_DOT] = ACTIONS(1490), - [anon_sym_try] = ACTIONS(1490), - [anon_sym_return] = ACTIONS(1490), - [anon_sym_source] = ACTIONS(1490), - [anon_sym_source_DASHenv] = ACTIONS(1490), - [anon_sym_register] = ACTIONS(1490), - [anon_sym_hide] = ACTIONS(1490), - [anon_sym_hide_DASHenv] = ACTIONS(1490), - [anon_sym_overlay] = ACTIONS(1490), - [anon_sym_where] = ACTIONS(1492), - [aux_sym_expr_unary_token1] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1492), - [anon_sym_DOT_DOT_LT] = ACTIONS(1492), - [anon_sym_null] = ACTIONS(1490), - [anon_sym_true] = ACTIONS(1490), - [anon_sym_false] = ACTIONS(1490), - [aux_sym__val_number_decimal_token1] = ACTIONS(1490), - [aux_sym__val_number_decimal_token2] = ACTIONS(1492), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1492), - [aux_sym__val_number_token1] = ACTIONS(1492), - [aux_sym__val_number_token2] = ACTIONS(1492), - [aux_sym__val_number_token3] = ACTIONS(1492), - [aux_sym__val_number_token4] = ACTIONS(1490), - [aux_sym__val_number_token5] = ACTIONS(1490), - [aux_sym__val_number_token6] = ACTIONS(1490), - [anon_sym_0b] = ACTIONS(1490), - [anon_sym_0o] = ACTIONS(1490), - [anon_sym_0x] = ACTIONS(1490), - [sym_val_date] = ACTIONS(1492), - [anon_sym_DQUOTE] = ACTIONS(1492), - [sym__str_single_quotes] = ACTIONS(1492), - [sym__str_back_ticks] = ACTIONS(1492), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1492), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1492), - [aux_sym_env_var_token1] = ACTIONS(1490), - [anon_sym_CARET] = ACTIONS(1492), - [aux_sym_command_token1] = ACTIONS(1492), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1492), + [sym_raw_string_begin] = ACTIONS(1703), }, - [327] = { - [sym_comment] = STATE(327), - [anon_sym_export] = ACTIONS(1711), - [anon_sym_alias] = ACTIONS(1711), - [anon_sym_let] = ACTIONS(1711), - [anon_sym_let_DASHenv] = ACTIONS(1711), - [anon_sym_mut] = ACTIONS(1711), - [anon_sym_const] = ACTIONS(1711), - [aux_sym_cmd_identifier_token1] = ACTIONS(1711), - [aux_sym_cmd_identifier_token2] = ACTIONS(1711), - [aux_sym_cmd_identifier_token3] = ACTIONS(1711), - [aux_sym_cmd_identifier_token4] = ACTIONS(1711), - [aux_sym_cmd_identifier_token5] = ACTIONS(1711), - [aux_sym_cmd_identifier_token6] = ACTIONS(1711), - [aux_sym_cmd_identifier_token7] = ACTIONS(1711), - [aux_sym_cmd_identifier_token8] = ACTIONS(1711), - [aux_sym_cmd_identifier_token9] = ACTIONS(1711), - [aux_sym_cmd_identifier_token10] = ACTIONS(1711), - [aux_sym_cmd_identifier_token11] = ACTIONS(1711), - [aux_sym_cmd_identifier_token12] = ACTIONS(1711), - [aux_sym_cmd_identifier_token13] = ACTIONS(1711), - [aux_sym_cmd_identifier_token14] = ACTIONS(1711), - [aux_sym_cmd_identifier_token15] = ACTIONS(1711), - [aux_sym_cmd_identifier_token16] = ACTIONS(1711), - [aux_sym_cmd_identifier_token17] = ACTIONS(1711), - [aux_sym_cmd_identifier_token18] = ACTIONS(1711), - [aux_sym_cmd_identifier_token19] = ACTIONS(1711), - [aux_sym_cmd_identifier_token20] = ACTIONS(1711), - [aux_sym_cmd_identifier_token21] = ACTIONS(1711), - [aux_sym_cmd_identifier_token22] = ACTIONS(1711), - [aux_sym_cmd_identifier_token23] = ACTIONS(1711), - [aux_sym_cmd_identifier_token24] = ACTIONS(1711), - [aux_sym_cmd_identifier_token25] = ACTIONS(1711), - [aux_sym_cmd_identifier_token26] = ACTIONS(1711), - [aux_sym_cmd_identifier_token27] = ACTIONS(1711), - [aux_sym_cmd_identifier_token28] = ACTIONS(1711), - [aux_sym_cmd_identifier_token29] = ACTIONS(1711), - [aux_sym_cmd_identifier_token30] = ACTIONS(1711), - [aux_sym_cmd_identifier_token31] = ACTIONS(1711), - [aux_sym_cmd_identifier_token32] = ACTIONS(1711), - [aux_sym_cmd_identifier_token33] = ACTIONS(1711), - [aux_sym_cmd_identifier_token34] = ACTIONS(1711), - [aux_sym_cmd_identifier_token35] = ACTIONS(1711), - [aux_sym_cmd_identifier_token36] = ACTIONS(1711), - [aux_sym_cmd_identifier_token37] = ACTIONS(1711), - [aux_sym_cmd_identifier_token38] = ACTIONS(1711), - [aux_sym_cmd_identifier_token39] = ACTIONS(1711), - [aux_sym_cmd_identifier_token40] = ACTIONS(1711), - [anon_sym_def] = ACTIONS(1711), - [anon_sym_export_DASHenv] = ACTIONS(1711), - [anon_sym_extern] = ACTIONS(1711), - [anon_sym_module] = ACTIONS(1711), - [anon_sym_use] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_COMMA] = ACTIONS(1711), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_error] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_break] = ACTIONS(1711), - [anon_sym_continue] = ACTIONS(1711), - [anon_sym_for] = ACTIONS(1711), - [anon_sym_in2] = ACTIONS(1711), - [anon_sym_loop] = ACTIONS(1711), - [anon_sym_make] = ACTIONS(1711), - [anon_sym_while] = ACTIONS(1711), - [anon_sym_do] = ACTIONS(1711), - [anon_sym_if] = ACTIONS(1711), - [anon_sym_else] = ACTIONS(1711), - [anon_sym_match] = ACTIONS(1711), - [anon_sym_RBRACE] = ACTIONS(1711), - [anon_sym_try] = ACTIONS(1711), - [anon_sym_catch] = ACTIONS(1711), - [anon_sym_return] = ACTIONS(1711), - [anon_sym_source] = ACTIONS(1711), - [anon_sym_source_DASHenv] = ACTIONS(1711), - [anon_sym_register] = ACTIONS(1711), - [anon_sym_hide] = ACTIONS(1711), - [anon_sym_hide_DASHenv] = ACTIONS(1711), - [anon_sym_overlay] = ACTIONS(1711), - [anon_sym_as] = ACTIONS(1711), - [anon_sym_LPAREN2] = ACTIONS(1713), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1711), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [aux_sym__immediate_decimal_token1] = ACTIONS(1715), - [aux_sym__immediate_decimal_token2] = ACTIONS(1717), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1711), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), + [333] = { + [sym_cmd_identifier] = STATE(4601), + [sym__expression_parenthesized] = STATE(3865), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(826), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5103), + [sym_comment] = STATE(333), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1188), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1709), [aux_sym__val_number_decimal_token2] = ACTIONS(1711), - [aux_sym__val_number_decimal_token3] = ACTIONS(1711), - [aux_sym__val_number_decimal_token4] = ACTIONS(1711), - [aux_sym__val_number_token1] = ACTIONS(1711), - [aux_sym__val_number_token2] = ACTIONS(1711), - [aux_sym__val_number_token3] = ACTIONS(1711), - [aux_sym__val_number_token4] = ACTIONS(1711), - [aux_sym__val_number_token5] = ACTIONS(1711), - [aux_sym__val_number_token6] = ACTIONS(1711), - [anon_sym_DQUOTE] = ACTIONS(1711), - [sym__str_single_quotes] = ACTIONS(1711), - [sym__str_back_ticks] = ACTIONS(1711), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1711), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1711), - [sym__entry_separator] = ACTIONS(1713), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1713), + [aux_sym__val_number_decimal_token3] = ACTIONS(1713), + [aux_sym__val_number_decimal_token4] = ACTIONS(1715), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, - [328] = { - [sym_cell_path] = STATE(452), - [sym_path] = STATE(404), - [sym_comment] = STATE(328), - [aux_sym_cell_path_repeat1] = STATE(361), - [anon_sym_export] = ACTIONS(943), - [anon_sym_alias] = ACTIONS(943), - [anon_sym_let] = ACTIONS(943), - [anon_sym_let_DASHenv] = ACTIONS(943), - [anon_sym_mut] = ACTIONS(943), - [anon_sym_const] = ACTIONS(943), - [aux_sym_cmd_identifier_token1] = ACTIONS(943), - [aux_sym_cmd_identifier_token2] = ACTIONS(943), - [aux_sym_cmd_identifier_token3] = ACTIONS(943), - [aux_sym_cmd_identifier_token4] = ACTIONS(943), - [aux_sym_cmd_identifier_token5] = ACTIONS(943), - [aux_sym_cmd_identifier_token6] = ACTIONS(943), - [aux_sym_cmd_identifier_token7] = ACTIONS(943), - [aux_sym_cmd_identifier_token8] = ACTIONS(943), - [aux_sym_cmd_identifier_token9] = ACTIONS(943), - [aux_sym_cmd_identifier_token10] = ACTIONS(943), - [aux_sym_cmd_identifier_token11] = ACTIONS(943), - [aux_sym_cmd_identifier_token12] = ACTIONS(943), - [aux_sym_cmd_identifier_token13] = ACTIONS(943), - [aux_sym_cmd_identifier_token14] = ACTIONS(943), - [aux_sym_cmd_identifier_token15] = ACTIONS(943), - [aux_sym_cmd_identifier_token16] = ACTIONS(943), - [aux_sym_cmd_identifier_token17] = ACTIONS(943), - [aux_sym_cmd_identifier_token18] = ACTIONS(943), - [aux_sym_cmd_identifier_token19] = ACTIONS(943), - [aux_sym_cmd_identifier_token20] = ACTIONS(943), - [aux_sym_cmd_identifier_token21] = ACTIONS(943), - [aux_sym_cmd_identifier_token22] = ACTIONS(943), - [aux_sym_cmd_identifier_token23] = ACTIONS(943), - [aux_sym_cmd_identifier_token24] = ACTIONS(943), - [aux_sym_cmd_identifier_token25] = ACTIONS(943), - [aux_sym_cmd_identifier_token26] = ACTIONS(943), - [aux_sym_cmd_identifier_token27] = ACTIONS(943), - [aux_sym_cmd_identifier_token28] = ACTIONS(943), - [aux_sym_cmd_identifier_token29] = ACTIONS(943), - [aux_sym_cmd_identifier_token30] = ACTIONS(943), - [aux_sym_cmd_identifier_token31] = ACTIONS(943), - [aux_sym_cmd_identifier_token32] = ACTIONS(943), - [aux_sym_cmd_identifier_token33] = ACTIONS(943), - [aux_sym_cmd_identifier_token34] = ACTIONS(943), - [aux_sym_cmd_identifier_token35] = ACTIONS(943), - [aux_sym_cmd_identifier_token36] = ACTIONS(943), - [aux_sym_cmd_identifier_token37] = ACTIONS(943), - [aux_sym_cmd_identifier_token38] = ACTIONS(943), - [aux_sym_cmd_identifier_token39] = ACTIONS(943), - [aux_sym_cmd_identifier_token40] = ACTIONS(943), - [anon_sym_def] = ACTIONS(943), - [anon_sym_export_DASHenv] = ACTIONS(943), - [anon_sym_extern] = ACTIONS(943), - [anon_sym_module] = ACTIONS(943), - [anon_sym_use] = ACTIONS(943), - [anon_sym_LPAREN] = ACTIONS(943), - [anon_sym_COMMA] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(943), - [anon_sym_error] = ACTIONS(943), - [anon_sym_DASH2] = ACTIONS(943), - [anon_sym_break] = ACTIONS(943), - [anon_sym_continue] = ACTIONS(943), - [anon_sym_for] = ACTIONS(943), - [anon_sym_in2] = ACTIONS(943), - [anon_sym_loop] = ACTIONS(943), - [anon_sym_make] = ACTIONS(943), - [anon_sym_while] = ACTIONS(943), - [anon_sym_do] = ACTIONS(943), - [anon_sym_if] = ACTIONS(943), - [anon_sym_else] = ACTIONS(943), - [anon_sym_match] = ACTIONS(943), - [anon_sym_RBRACE] = ACTIONS(943), - [anon_sym_try] = ACTIONS(943), - [anon_sym_catch] = ACTIONS(943), - [anon_sym_return] = ACTIONS(943), - [anon_sym_source] = ACTIONS(943), - [anon_sym_source_DASHenv] = ACTIONS(943), - [anon_sym_register] = ACTIONS(943), - [anon_sym_hide] = ACTIONS(943), - [anon_sym_hide_DASHenv] = ACTIONS(943), - [anon_sym_overlay] = ACTIONS(943), - [anon_sym_as] = ACTIONS(943), - [anon_sym_PLUS2] = ACTIONS(943), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(943), - [anon_sym_DOT_DOT2] = ACTIONS(943), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(945), - [anon_sym_DOT_DOT_LT2] = ACTIONS(945), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(943), - [aux_sym__val_number_decimal_token1] = ACTIONS(943), - [aux_sym__val_number_decimal_token2] = ACTIONS(943), - [aux_sym__val_number_decimal_token3] = ACTIONS(943), - [aux_sym__val_number_decimal_token4] = ACTIONS(943), - [aux_sym__val_number_token1] = ACTIONS(943), - [aux_sym__val_number_token2] = ACTIONS(943), - [aux_sym__val_number_token3] = ACTIONS(943), - [aux_sym__val_number_token4] = ACTIONS(943), - [aux_sym__val_number_token5] = ACTIONS(943), - [aux_sym__val_number_token6] = ACTIONS(943), - [anon_sym_DQUOTE] = ACTIONS(943), - [sym__str_single_quotes] = ACTIONS(943), - [sym__str_back_ticks] = ACTIONS(943), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(943), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(943), - [sym__entry_separator] = ACTIONS(945), - [anon_sym_DOT2] = ACTIONS(1701), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(945), + [334] = { + [sym_cmd_identifier] = STATE(4601), + [sym__expression_parenthesized] = STATE(3865), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5103), + [sym_comment] = STATE(334), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1188), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, - [329] = { - [sym_cmd_identifier] = STATE(4514), - [sym__expression] = STATE(3797), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(843), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4798), - [sym_comment] = STATE(329), - [aux_sym_pipe_element_repeat2] = STATE(1148), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1703), - [aux_sym__val_number_decimal_token2] = ACTIONS(1705), - [aux_sym__val_number_decimal_token3] = ACTIONS(1707), - [aux_sym__val_number_decimal_token4] = ACTIONS(1709), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [335] = { + [sym__expr_parenthesized_immediate] = STATE(742), + [sym__immediate_decimal] = STATE(743), + [sym_val_variable] = STATE(742), + [sym_comment] = STATE(335), + [anon_sym_export] = ACTIONS(1584), + [anon_sym_alias] = ACTIONS(1584), + [anon_sym_let] = ACTIONS(1584), + [anon_sym_let_DASHenv] = ACTIONS(1584), + [anon_sym_mut] = ACTIONS(1584), + [anon_sym_const] = ACTIONS(1584), + [aux_sym_cmd_identifier_token1] = ACTIONS(1584), + [aux_sym_cmd_identifier_token2] = ACTIONS(1586), + [aux_sym_cmd_identifier_token3] = ACTIONS(1586), + [aux_sym_cmd_identifier_token4] = ACTIONS(1586), + [aux_sym_cmd_identifier_token5] = ACTIONS(1586), + [aux_sym_cmd_identifier_token6] = ACTIONS(1586), + [aux_sym_cmd_identifier_token7] = ACTIONS(1586), + [aux_sym_cmd_identifier_token8] = ACTIONS(1584), + [aux_sym_cmd_identifier_token9] = ACTIONS(1584), + [aux_sym_cmd_identifier_token10] = ACTIONS(1586), + [aux_sym_cmd_identifier_token11] = ACTIONS(1586), + [aux_sym_cmd_identifier_token12] = ACTIONS(1584), + [aux_sym_cmd_identifier_token13] = ACTIONS(1584), + [aux_sym_cmd_identifier_token14] = ACTIONS(1584), + [aux_sym_cmd_identifier_token15] = ACTIONS(1584), + [aux_sym_cmd_identifier_token16] = ACTIONS(1586), + [aux_sym_cmd_identifier_token17] = ACTIONS(1586), + [aux_sym_cmd_identifier_token18] = ACTIONS(1586), + [aux_sym_cmd_identifier_token19] = ACTIONS(1586), + [aux_sym_cmd_identifier_token20] = ACTIONS(1586), + [aux_sym_cmd_identifier_token21] = ACTIONS(1586), + [aux_sym_cmd_identifier_token22] = ACTIONS(1586), + [aux_sym_cmd_identifier_token23] = ACTIONS(1586), + [aux_sym_cmd_identifier_token24] = ACTIONS(1586), + [aux_sym_cmd_identifier_token25] = ACTIONS(1586), + [aux_sym_cmd_identifier_token26] = ACTIONS(1586), + [aux_sym_cmd_identifier_token27] = ACTIONS(1586), + [aux_sym_cmd_identifier_token28] = ACTIONS(1586), + [aux_sym_cmd_identifier_token29] = ACTIONS(1586), + [aux_sym_cmd_identifier_token30] = ACTIONS(1586), + [aux_sym_cmd_identifier_token31] = ACTIONS(1586), + [aux_sym_cmd_identifier_token32] = ACTIONS(1586), + [aux_sym_cmd_identifier_token33] = ACTIONS(1586), + [aux_sym_cmd_identifier_token34] = ACTIONS(1584), + [aux_sym_cmd_identifier_token35] = ACTIONS(1586), + [aux_sym_cmd_identifier_token36] = ACTIONS(1586), + [aux_sym_cmd_identifier_token37] = ACTIONS(1586), + [aux_sym_cmd_identifier_token38] = ACTIONS(1584), + [aux_sym_cmd_identifier_token39] = ACTIONS(1586), + [aux_sym_cmd_identifier_token40] = ACTIONS(1586), + [anon_sym_def] = ACTIONS(1584), + [anon_sym_export_DASHenv] = ACTIONS(1584), + [anon_sym_extern] = ACTIONS(1584), + [anon_sym_module] = ACTIONS(1584), + [anon_sym_use] = ACTIONS(1584), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_COMMA] = ACTIONS(1586), + [anon_sym_DOLLAR] = ACTIONS(1365), + [anon_sym_error] = ACTIONS(1584), + [anon_sym_DASH2] = ACTIONS(1584), + [anon_sym_break] = ACTIONS(1584), + [anon_sym_continue] = ACTIONS(1584), + [anon_sym_for] = ACTIONS(1584), + [anon_sym_in2] = ACTIONS(1584), + [anon_sym_loop] = ACTIONS(1584), + [anon_sym_make] = ACTIONS(1584), + [anon_sym_while] = ACTIONS(1584), + [anon_sym_do] = ACTIONS(1584), + [anon_sym_if] = ACTIONS(1584), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_match] = ACTIONS(1584), + [anon_sym_RBRACE] = ACTIONS(1586), + [anon_sym_try] = ACTIONS(1584), + [anon_sym_catch] = ACTIONS(1584), + [anon_sym_return] = ACTIONS(1584), + [anon_sym_source] = ACTIONS(1584), + [anon_sym_source_DASHenv] = ACTIONS(1584), + [anon_sym_hide] = ACTIONS(1584), + [anon_sym_hide_DASHenv] = ACTIONS(1584), + [anon_sym_overlay] = ACTIONS(1584), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_LPAREN2] = ACTIONS(1592), + [anon_sym_PLUS2] = ACTIONS(1584), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1586), + [aux_sym__immediate_decimal_token1] = ACTIONS(1658), + [aux_sym__immediate_decimal_token3] = ACTIONS(1660), + [aux_sym__immediate_decimal_token4] = ACTIONS(1662), + [aux_sym__immediate_decimal_token5] = ACTIONS(1664), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1586), + [aux_sym__val_number_decimal_token1] = ACTIONS(1584), + [aux_sym__val_number_decimal_token2] = ACTIONS(1584), + [aux_sym__val_number_decimal_token3] = ACTIONS(1584), + [aux_sym__val_number_decimal_token4] = ACTIONS(1584), + [aux_sym__val_number_token1] = ACTIONS(1586), + [aux_sym__val_number_token2] = ACTIONS(1586), + [aux_sym__val_number_token3] = ACTIONS(1586), + [aux_sym__val_number_token4] = ACTIONS(1584), + [aux_sym__val_number_token5] = ACTIONS(1584), + [aux_sym__val_number_token6] = ACTIONS(1584), + [anon_sym_DQUOTE] = ACTIONS(1586), + [sym__str_single_quotes] = ACTIONS(1586), + [sym__str_back_ticks] = ACTIONS(1586), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1586), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1586), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1586), + [anon_sym_register] = ACTIONS(1584), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1586), }, - [330] = { - [sym_cell_path] = STATE(476), - [sym_path] = STATE(404), - [sym_comment] = STATE(330), - [aux_sym_cell_path_repeat1] = STATE(361), + [336] = { + [sym_comment] = STATE(336), + [ts_builtin_sym_end] = ACTIONS(1717), [anon_sym_export] = ACTIONS(1719), [anon_sym_alias] = ACTIONS(1719), [anon_sym_let] = ACTIONS(1719), @@ -118199,797 +118799,469 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mut] = ACTIONS(1719), [anon_sym_const] = ACTIONS(1719), [aux_sym_cmd_identifier_token1] = ACTIONS(1719), - [aux_sym_cmd_identifier_token2] = ACTIONS(1719), - [aux_sym_cmd_identifier_token3] = ACTIONS(1719), - [aux_sym_cmd_identifier_token4] = ACTIONS(1719), - [aux_sym_cmd_identifier_token5] = ACTIONS(1719), - [aux_sym_cmd_identifier_token6] = ACTIONS(1719), - [aux_sym_cmd_identifier_token7] = ACTIONS(1719), + [aux_sym_cmd_identifier_token2] = ACTIONS(1717), + [aux_sym_cmd_identifier_token3] = ACTIONS(1717), + [aux_sym_cmd_identifier_token4] = ACTIONS(1717), + [aux_sym_cmd_identifier_token5] = ACTIONS(1717), + [aux_sym_cmd_identifier_token6] = ACTIONS(1717), + [aux_sym_cmd_identifier_token7] = ACTIONS(1717), [aux_sym_cmd_identifier_token8] = ACTIONS(1719), [aux_sym_cmd_identifier_token9] = ACTIONS(1719), - [aux_sym_cmd_identifier_token10] = ACTIONS(1719), - [aux_sym_cmd_identifier_token11] = ACTIONS(1719), + [aux_sym_cmd_identifier_token10] = ACTIONS(1717), + [aux_sym_cmd_identifier_token11] = ACTIONS(1717), [aux_sym_cmd_identifier_token12] = ACTIONS(1719), [aux_sym_cmd_identifier_token13] = ACTIONS(1719), [aux_sym_cmd_identifier_token14] = ACTIONS(1719), [aux_sym_cmd_identifier_token15] = ACTIONS(1719), - [aux_sym_cmd_identifier_token16] = ACTIONS(1719), - [aux_sym_cmd_identifier_token17] = ACTIONS(1719), + [aux_sym_cmd_identifier_token16] = ACTIONS(1717), + [aux_sym_cmd_identifier_token17] = ACTIONS(1717), [aux_sym_cmd_identifier_token18] = ACTIONS(1719), - [aux_sym_cmd_identifier_token19] = ACTIONS(1719), - [aux_sym_cmd_identifier_token20] = ACTIONS(1719), - [aux_sym_cmd_identifier_token21] = ACTIONS(1719), - [aux_sym_cmd_identifier_token22] = ACTIONS(1719), - [aux_sym_cmd_identifier_token23] = ACTIONS(1719), - [aux_sym_cmd_identifier_token24] = ACTIONS(1719), - [aux_sym_cmd_identifier_token25] = ACTIONS(1719), - [aux_sym_cmd_identifier_token26] = ACTIONS(1719), - [aux_sym_cmd_identifier_token27] = ACTIONS(1719), - [aux_sym_cmd_identifier_token28] = ACTIONS(1719), - [aux_sym_cmd_identifier_token29] = ACTIONS(1719), - [aux_sym_cmd_identifier_token30] = ACTIONS(1719), - [aux_sym_cmd_identifier_token31] = ACTIONS(1719), + [aux_sym_cmd_identifier_token19] = ACTIONS(1717), + [aux_sym_cmd_identifier_token20] = ACTIONS(1717), + [aux_sym_cmd_identifier_token21] = ACTIONS(1717), + [aux_sym_cmd_identifier_token22] = ACTIONS(1717), + [aux_sym_cmd_identifier_token23] = ACTIONS(1717), + [aux_sym_cmd_identifier_token24] = ACTIONS(1717), + [aux_sym_cmd_identifier_token25] = ACTIONS(1717), + [aux_sym_cmd_identifier_token26] = ACTIONS(1717), + [aux_sym_cmd_identifier_token27] = ACTIONS(1717), + [aux_sym_cmd_identifier_token28] = ACTIONS(1717), + [aux_sym_cmd_identifier_token29] = ACTIONS(1717), + [aux_sym_cmd_identifier_token30] = ACTIONS(1717), + [aux_sym_cmd_identifier_token31] = ACTIONS(1717), [aux_sym_cmd_identifier_token32] = ACTIONS(1719), - [aux_sym_cmd_identifier_token33] = ACTIONS(1719), + [aux_sym_cmd_identifier_token33] = ACTIONS(1717), [aux_sym_cmd_identifier_token34] = ACTIONS(1719), - [aux_sym_cmd_identifier_token35] = ACTIONS(1719), - [aux_sym_cmd_identifier_token36] = ACTIONS(1719), - [aux_sym_cmd_identifier_token37] = ACTIONS(1719), + [aux_sym_cmd_identifier_token35] = ACTIONS(1717), + [aux_sym_cmd_identifier_token36] = ACTIONS(1717), + [aux_sym_cmd_identifier_token37] = ACTIONS(1717), [aux_sym_cmd_identifier_token38] = ACTIONS(1719), - [aux_sym_cmd_identifier_token39] = ACTIONS(1719), - [aux_sym_cmd_identifier_token40] = ACTIONS(1719), + [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_def] = ACTIONS(1719), [anon_sym_export_DASHenv] = ACTIONS(1719), [anon_sym_extern] = ACTIONS(1719), [anon_sym_module] = ACTIONS(1719), [anon_sym_use] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_COMMA] = ACTIONS(1719), + [anon_sym_LBRACK] = ACTIONS(1717), + [anon_sym_LPAREN] = ACTIONS(1717), [anon_sym_DOLLAR] = ACTIONS(1719), [anon_sym_error] = ACTIONS(1719), [anon_sym_DASH2] = ACTIONS(1719), [anon_sym_break] = ACTIONS(1719), [anon_sym_continue] = ACTIONS(1719), [anon_sym_for] = ACTIONS(1719), - [anon_sym_in2] = ACTIONS(1719), [anon_sym_loop] = ACTIONS(1719), - [anon_sym_make] = ACTIONS(1719), [anon_sym_while] = ACTIONS(1719), [anon_sym_do] = ACTIONS(1719), [anon_sym_if] = ACTIONS(1719), - [anon_sym_else] = ACTIONS(1719), [anon_sym_match] = ACTIONS(1719), - [anon_sym_RBRACE] = ACTIONS(1719), + [anon_sym_LBRACE] = ACTIONS(1717), + [anon_sym_DOT_DOT] = ACTIONS(1719), [anon_sym_try] = ACTIONS(1719), - [anon_sym_catch] = ACTIONS(1719), [anon_sym_return] = ACTIONS(1719), [anon_sym_source] = ACTIONS(1719), [anon_sym_source_DASHenv] = ACTIONS(1719), - [anon_sym_register] = ACTIONS(1719), [anon_sym_hide] = ACTIONS(1719), [anon_sym_hide_DASHenv] = ACTIONS(1719), [anon_sym_overlay] = ACTIONS(1719), - [anon_sym_as] = ACTIONS(1719), - [anon_sym_PLUS2] = ACTIONS(1719), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1719), - [anon_sym_DOT_DOT2] = ACTIONS(1719), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1721), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1719), + [anon_sym_where] = ACTIONS(1717), + [aux_sym_expr_unary_token1] = ACTIONS(1717), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1717), + [anon_sym_DOT_DOT_LT] = ACTIONS(1717), + [anon_sym_null] = ACTIONS(1719), + [anon_sym_true] = ACTIONS(1719), + [anon_sym_false] = ACTIONS(1719), [aux_sym__val_number_decimal_token1] = ACTIONS(1719), - [aux_sym__val_number_decimal_token2] = ACTIONS(1719), - [aux_sym__val_number_decimal_token3] = ACTIONS(1719), - [aux_sym__val_number_decimal_token4] = ACTIONS(1719), - [aux_sym__val_number_token1] = ACTIONS(1719), - [aux_sym__val_number_token2] = ACTIONS(1719), - [aux_sym__val_number_token3] = ACTIONS(1719), + [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), [aux_sym__val_number_token4] = ACTIONS(1719), [aux_sym__val_number_token5] = ACTIONS(1719), [aux_sym__val_number_token6] = ACTIONS(1719), - [anon_sym_DQUOTE] = ACTIONS(1719), - [sym__str_single_quotes] = ACTIONS(1719), - [sym__str_back_ticks] = ACTIONS(1719), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1719), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1719), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1719), - [sym__entry_separator] = ACTIONS(1721), - [anon_sym_DOT2] = ACTIONS(1701), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1721), + [anon_sym_0b] = ACTIONS(1719), + [anon_sym_0o] = ACTIONS(1719), + [anon_sym_0x] = ACTIONS(1719), + [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), + [aux_sym_env_var_token1] = ACTIONS(1719), + [anon_sym_CARET] = ACTIONS(1717), + [aux_sym_command_token1] = ACTIONS(1717), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1717), }, - [331] = { - [sym_comment] = STATE(331), - [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(1725), - [aux_sym_cmd_identifier_token3] = ACTIONS(1725), - [aux_sym_cmd_identifier_token4] = ACTIONS(1725), - [aux_sym_cmd_identifier_token5] = ACTIONS(1725), - [aux_sym_cmd_identifier_token6] = ACTIONS(1725), - [aux_sym_cmd_identifier_token7] = ACTIONS(1725), - [aux_sym_cmd_identifier_token8] = ACTIONS(1723), - [aux_sym_cmd_identifier_token9] = ACTIONS(1723), - [aux_sym_cmd_identifier_token10] = ACTIONS(1725), - [aux_sym_cmd_identifier_token11] = ACTIONS(1725), - [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(1725), - [aux_sym_cmd_identifier_token17] = ACTIONS(1725), - [aux_sym_cmd_identifier_token18] = ACTIONS(1723), - [aux_sym_cmd_identifier_token19] = ACTIONS(1725), - [aux_sym_cmd_identifier_token20] = ACTIONS(1725), - [aux_sym_cmd_identifier_token21] = ACTIONS(1725), - [aux_sym_cmd_identifier_token22] = ACTIONS(1725), - [aux_sym_cmd_identifier_token23] = ACTIONS(1725), - [aux_sym_cmd_identifier_token24] = ACTIONS(1725), - [aux_sym_cmd_identifier_token25] = ACTIONS(1725), - [aux_sym_cmd_identifier_token26] = ACTIONS(1725), - [aux_sym_cmd_identifier_token27] = ACTIONS(1725), - [aux_sym_cmd_identifier_token28] = ACTIONS(1725), - [aux_sym_cmd_identifier_token29] = ACTIONS(1725), - [aux_sym_cmd_identifier_token30] = ACTIONS(1725), - [aux_sym_cmd_identifier_token31] = ACTIONS(1725), - [aux_sym_cmd_identifier_token32] = ACTIONS(1723), - [aux_sym_cmd_identifier_token33] = ACTIONS(1725), - [aux_sym_cmd_identifier_token34] = ACTIONS(1723), - [aux_sym_cmd_identifier_token35] = ACTIONS(1725), - [aux_sym_cmd_identifier_token36] = ACTIONS(1725), - [aux_sym_cmd_identifier_token37] = ACTIONS(1725), - [aux_sym_cmd_identifier_token38] = ACTIONS(1723), - [aux_sym_cmd_identifier_token39] = ACTIONS(1725), - [aux_sym_cmd_identifier_token40] = ACTIONS(1725), - [sym__newline] = ACTIONS(1725), + [337] = { + [sym_cmd_identifier] = STATE(4539), + [sym__expression] = STATE(3845), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(792), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4817), + [sym_comment] = STATE(337), + [aux_sym_pipe_element_repeat2] = STATE(1180), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(409), + [aux_sym__val_number_decimal_token2] = ACTIONS(411), + [aux_sym__val_number_decimal_token3] = ACTIONS(413), + [aux_sym__val_number_decimal_token4] = ACTIONS(415), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), + }, + [338] = { + [sym_comment] = STATE(338), + [aux_sym_shebang_repeat1] = STATE(313), + [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(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(1721), + [aux_sym_cmd_identifier_token9] = ACTIONS(1721), + [aux_sym_cmd_identifier_token10] = ACTIONS(1723), + [aux_sym_cmd_identifier_token11] = ACTIONS(1723), + [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(1723), + [aux_sym_cmd_identifier_token17] = ACTIONS(1723), + [aux_sym_cmd_identifier_token18] = ACTIONS(1721), + [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(1721), + [aux_sym_cmd_identifier_token33] = ACTIONS(1723), + [aux_sym_cmd_identifier_token34] = ACTIONS(1721), + [aux_sym_cmd_identifier_token35] = ACTIONS(1723), + [aux_sym_cmd_identifier_token36] = ACTIONS(1723), + [aux_sym_cmd_identifier_token37] = ACTIONS(1723), + [aux_sym_cmd_identifier_token38] = ACTIONS(1721), + [aux_sym_cmd_identifier_token39] = ACTIONS(1723), + [aux_sym_cmd_identifier_token40] = ACTIONS(1723), + [sym__newline] = ACTIONS(1614), [anon_sym_SEMI] = 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_LBRACK] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_DOLLAR] = ACTIONS(1723), - [anon_sym_error] = ACTIONS(1723), - [anon_sym_DASH2] = ACTIONS(1723), - [anon_sym_break] = ACTIONS(1723), - [anon_sym_continue] = ACTIONS(1723), - [anon_sym_for] = ACTIONS(1723), - [anon_sym_loop] = ACTIONS(1723), - [anon_sym_while] = ACTIONS(1723), - [anon_sym_do] = ACTIONS(1723), - [anon_sym_if] = ACTIONS(1723), - [anon_sym_match] = ACTIONS(1723), - [anon_sym_LBRACE] = ACTIONS(1725), - [anon_sym_DOT_DOT] = ACTIONS(1723), - [anon_sym_try] = 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_where] = ACTIONS(1725), - [aux_sym_expr_unary_token1] = ACTIONS(1725), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1725), - [anon_sym_DOT_DOT_LT] = ACTIONS(1725), - [anon_sym_null] = ACTIONS(1723), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [aux_sym__val_number_decimal_token1] = ACTIONS(1723), - [aux_sym__val_number_decimal_token2] = ACTIONS(1725), - [aux_sym__val_number_decimal_token3] = ACTIONS(1725), - [aux_sym__val_number_decimal_token4] = ACTIONS(1725), - [aux_sym__val_number_token1] = ACTIONS(1725), - [aux_sym__val_number_token2] = ACTIONS(1725), - [aux_sym__val_number_token3] = ACTIONS(1725), - [aux_sym__val_number_token4] = ACTIONS(1723), - [aux_sym__val_number_token5] = ACTIONS(1723), - [aux_sym__val_number_token6] = ACTIONS(1723), - [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), - [aux_sym_env_var_token1] = ACTIONS(1723), - [anon_sym_CARET] = ACTIONS(1725), - [aux_sym_command_token1] = ACTIONS(1725), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1725), + [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_LBRACK] = ACTIONS(1723), + [anon_sym_LPAREN] = ACTIONS(1723), + [anon_sym_DOLLAR] = ACTIONS(1721), + [anon_sym_error] = ACTIONS(1721), + [anon_sym_DASH2] = ACTIONS(1721), + [anon_sym_break] = ACTIONS(1721), + [anon_sym_continue] = ACTIONS(1721), + [anon_sym_for] = ACTIONS(1721), + [anon_sym_loop] = ACTIONS(1721), + [anon_sym_while] = ACTIONS(1721), + [anon_sym_do] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1721), + [anon_sym_match] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1721), + [anon_sym_try] = ACTIONS(1721), + [anon_sym_return] = ACTIONS(1721), + [anon_sym_source] = ACTIONS(1721), + [anon_sym_source_DASHenv] = ACTIONS(1721), + [anon_sym_hide] = ACTIONS(1721), + [anon_sym_hide_DASHenv] = ACTIONS(1721), + [anon_sym_overlay] = ACTIONS(1721), + [anon_sym_where] = ACTIONS(1723), + [aux_sym_expr_unary_token1] = ACTIONS(1723), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1723), + [anon_sym_DOT_DOT_LT] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1721), + [anon_sym_true] = ACTIONS(1721), + [anon_sym_false] = ACTIONS(1721), + [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), + [aux_sym__val_number_token4] = ACTIONS(1721), + [aux_sym__val_number_token5] = ACTIONS(1721), + [aux_sym__val_number_token6] = ACTIONS(1721), + [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), + [aux_sym_env_var_token1] = ACTIONS(1721), + [anon_sym_CARET] = ACTIONS(1723), + [aux_sym_command_token1] = ACTIONS(1723), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1723), }, - [332] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if] = STATE(4892), - [sym_block] = STATE(4893), - [sym__expression] = STATE(4893), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3876), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1226), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(4893), - [sym_comment] = STATE(332), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(1727), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1564), - [aux_sym__val_number_decimal_token2] = ACTIONS(1566), - [aux_sym__val_number_decimal_token3] = ACTIONS(1568), - [aux_sym__val_number_decimal_token4] = ACTIONS(1570), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, - [333] = { - [sym_comment] = STATE(333), - [anon_sym_export] = ACTIONS(1550), - [anon_sym_alias] = ACTIONS(1550), - [anon_sym_let] = ACTIONS(1550), - [anon_sym_let_DASHenv] = ACTIONS(1550), - [anon_sym_mut] = ACTIONS(1550), - [anon_sym_const] = ACTIONS(1550), - [aux_sym_cmd_identifier_token1] = ACTIONS(1550), - [aux_sym_cmd_identifier_token2] = ACTIONS(1552), - [aux_sym_cmd_identifier_token3] = ACTIONS(1552), - [aux_sym_cmd_identifier_token4] = ACTIONS(1552), - [aux_sym_cmd_identifier_token5] = ACTIONS(1552), - [aux_sym_cmd_identifier_token6] = ACTIONS(1552), - [aux_sym_cmd_identifier_token7] = ACTIONS(1552), - [aux_sym_cmd_identifier_token8] = ACTIONS(1550), - [aux_sym_cmd_identifier_token9] = ACTIONS(1550), - [aux_sym_cmd_identifier_token10] = ACTIONS(1552), - [aux_sym_cmd_identifier_token11] = ACTIONS(1552), - [aux_sym_cmd_identifier_token12] = ACTIONS(1550), - [aux_sym_cmd_identifier_token13] = ACTIONS(1550), - [aux_sym_cmd_identifier_token14] = ACTIONS(1550), - [aux_sym_cmd_identifier_token15] = ACTIONS(1550), - [aux_sym_cmd_identifier_token16] = ACTIONS(1552), - [aux_sym_cmd_identifier_token17] = ACTIONS(1552), - [aux_sym_cmd_identifier_token18] = ACTIONS(1552), - [aux_sym_cmd_identifier_token19] = ACTIONS(1552), - [aux_sym_cmd_identifier_token20] = ACTIONS(1552), - [aux_sym_cmd_identifier_token21] = ACTIONS(1552), - [aux_sym_cmd_identifier_token22] = ACTIONS(1552), - [aux_sym_cmd_identifier_token23] = ACTIONS(1552), - [aux_sym_cmd_identifier_token24] = ACTIONS(1552), - [aux_sym_cmd_identifier_token25] = ACTIONS(1552), - [aux_sym_cmd_identifier_token26] = ACTIONS(1552), - [aux_sym_cmd_identifier_token27] = ACTIONS(1552), - [aux_sym_cmd_identifier_token28] = ACTIONS(1552), - [aux_sym_cmd_identifier_token29] = ACTIONS(1552), - [aux_sym_cmd_identifier_token30] = ACTIONS(1552), - [aux_sym_cmd_identifier_token31] = ACTIONS(1552), - [aux_sym_cmd_identifier_token32] = ACTIONS(1552), - [aux_sym_cmd_identifier_token33] = ACTIONS(1552), - [aux_sym_cmd_identifier_token34] = ACTIONS(1550), - [aux_sym_cmd_identifier_token35] = ACTIONS(1552), - [aux_sym_cmd_identifier_token36] = ACTIONS(1552), - [aux_sym_cmd_identifier_token37] = ACTIONS(1552), - [aux_sym_cmd_identifier_token38] = ACTIONS(1550), - [aux_sym_cmd_identifier_token39] = ACTIONS(1552), - [aux_sym_cmd_identifier_token40] = ACTIONS(1552), - [anon_sym_def] = ACTIONS(1550), - [anon_sym_export_DASHenv] = ACTIONS(1550), - [anon_sym_extern] = ACTIONS(1550), - [anon_sym_module] = ACTIONS(1550), - [anon_sym_use] = ACTIONS(1550), - [anon_sym_LPAREN] = ACTIONS(1550), - [anon_sym_COMMA] = ACTIONS(1552), - [anon_sym_DOLLAR] = ACTIONS(1550), - [anon_sym_error] = ACTIONS(1550), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_break] = ACTIONS(1550), - [anon_sym_continue] = ACTIONS(1550), - [anon_sym_for] = ACTIONS(1550), - [anon_sym_in2] = ACTIONS(1550), - [anon_sym_loop] = ACTIONS(1550), - [anon_sym_make] = ACTIONS(1550), - [anon_sym_while] = ACTIONS(1550), - [anon_sym_do] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_else] = ACTIONS(1550), - [anon_sym_match] = ACTIONS(1550), - [anon_sym_RBRACE] = ACTIONS(1552), - [anon_sym_try] = ACTIONS(1550), - [anon_sym_catch] = ACTIONS(1550), - [anon_sym_return] = ACTIONS(1550), - [anon_sym_source] = ACTIONS(1550), - [anon_sym_source_DASHenv] = ACTIONS(1550), - [anon_sym_register] = ACTIONS(1550), - [anon_sym_hide] = ACTIONS(1550), - [anon_sym_hide_DASHenv] = ACTIONS(1550), - [anon_sym_overlay] = ACTIONS(1550), - [anon_sym_as] = ACTIONS(1550), - [anon_sym_LPAREN2] = ACTIONS(1552), - [anon_sym_PLUS2] = ACTIONS(1550), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1552), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [aux_sym__immediate_decimal_token2] = ACTIONS(1678), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1552), - [aux_sym__val_number_decimal_token1] = ACTIONS(1550), - [aux_sym__val_number_decimal_token2] = ACTIONS(1552), - [aux_sym__val_number_decimal_token3] = ACTIONS(1552), - [aux_sym__val_number_decimal_token4] = ACTIONS(1552), - [aux_sym__val_number_token1] = ACTIONS(1552), - [aux_sym__val_number_token2] = ACTIONS(1552), - [aux_sym__val_number_token3] = ACTIONS(1552), - [aux_sym__val_number_token4] = ACTIONS(1550), - [aux_sym__val_number_token5] = ACTIONS(1550), - [aux_sym__val_number_token6] = ACTIONS(1550), - [sym_filesize_unit] = ACTIONS(1550), - [sym_duration_unit] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [sym__str_single_quotes] = ACTIONS(1552), - [sym__str_back_ticks] = ACTIONS(1552), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1552), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1552), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1552), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1550), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1552), - }, - [334] = { - [sym_cmd_identifier] = STATE(4514), - [sym__expression] = STATE(3797), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4798), - [sym_comment] = STATE(334), - [aux_sym_pipe_element_repeat2] = STATE(1148), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1036), - [aux_sym__val_number_decimal_token2] = ACTIONS(1038), - [aux_sym__val_number_decimal_token3] = ACTIONS(1040), - [aux_sym__val_number_decimal_token4] = ACTIONS(1042), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, - [335] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if] = STATE(4892), - [sym_block] = STATE(4893), - [sym__expression] = STATE(4893), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3876), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1210), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(4893), - [sym_comment] = STATE(335), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(1032), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1585), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, - [336] = { - [sym_comment] = STATE(336), - [anon_sym_export] = ACTIONS(1686), - [anon_sym_alias] = ACTIONS(1686), - [anon_sym_let] = ACTIONS(1686), - [anon_sym_let_DASHenv] = ACTIONS(1686), - [anon_sym_mut] = ACTIONS(1686), - [anon_sym_const] = ACTIONS(1686), - [aux_sym_cmd_identifier_token1] = ACTIONS(1686), - [aux_sym_cmd_identifier_token2] = ACTIONS(1688), - [aux_sym_cmd_identifier_token3] = ACTIONS(1688), - [aux_sym_cmd_identifier_token4] = ACTIONS(1688), - [aux_sym_cmd_identifier_token5] = ACTIONS(1688), - [aux_sym_cmd_identifier_token6] = ACTIONS(1688), - [aux_sym_cmd_identifier_token7] = ACTIONS(1688), - [aux_sym_cmd_identifier_token8] = ACTIONS(1686), - [aux_sym_cmd_identifier_token9] = ACTIONS(1686), - [aux_sym_cmd_identifier_token10] = ACTIONS(1688), - [aux_sym_cmd_identifier_token11] = ACTIONS(1688), - [aux_sym_cmd_identifier_token12] = ACTIONS(1686), - [aux_sym_cmd_identifier_token13] = ACTIONS(1686), - [aux_sym_cmd_identifier_token14] = ACTIONS(1686), - [aux_sym_cmd_identifier_token15] = ACTIONS(1686), - [aux_sym_cmd_identifier_token16] = ACTIONS(1688), - [aux_sym_cmd_identifier_token17] = ACTIONS(1688), - [aux_sym_cmd_identifier_token18] = ACTIONS(1686), - [aux_sym_cmd_identifier_token19] = ACTIONS(1688), - [aux_sym_cmd_identifier_token20] = ACTIONS(1688), - [aux_sym_cmd_identifier_token21] = ACTIONS(1688), - [aux_sym_cmd_identifier_token22] = ACTIONS(1688), - [aux_sym_cmd_identifier_token23] = ACTIONS(1688), - [aux_sym_cmd_identifier_token24] = ACTIONS(1688), - [aux_sym_cmd_identifier_token25] = ACTIONS(1688), - [aux_sym_cmd_identifier_token26] = ACTIONS(1688), - [aux_sym_cmd_identifier_token27] = ACTIONS(1688), - [aux_sym_cmd_identifier_token28] = ACTIONS(1688), - [aux_sym_cmd_identifier_token29] = ACTIONS(1688), - [aux_sym_cmd_identifier_token30] = ACTIONS(1688), - [aux_sym_cmd_identifier_token31] = ACTIONS(1688), - [aux_sym_cmd_identifier_token32] = ACTIONS(1686), - [aux_sym_cmd_identifier_token33] = ACTIONS(1688), - [aux_sym_cmd_identifier_token34] = ACTIONS(1686), - [aux_sym_cmd_identifier_token35] = ACTIONS(1688), - [aux_sym_cmd_identifier_token36] = ACTIONS(1688), - [aux_sym_cmd_identifier_token37] = ACTIONS(1688), - [aux_sym_cmd_identifier_token38] = ACTIONS(1686), - [aux_sym_cmd_identifier_token39] = ACTIONS(1688), - [aux_sym_cmd_identifier_token40] = ACTIONS(1688), - [sym__newline] = ACTIONS(1688), - [anon_sym_SEMI] = ACTIONS(1688), - [anon_sym_def] = ACTIONS(1686), - [anon_sym_export_DASHenv] = ACTIONS(1686), - [anon_sym_extern] = ACTIONS(1686), - [anon_sym_module] = ACTIONS(1686), - [anon_sym_use] = ACTIONS(1686), - [anon_sym_LBRACK] = ACTIONS(1688), - [anon_sym_LPAREN] = ACTIONS(1688), - [anon_sym_DOLLAR] = ACTIONS(1686), - [anon_sym_error] = ACTIONS(1686), - [anon_sym_DASH2] = ACTIONS(1686), - [anon_sym_break] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(1686), - [anon_sym_for] = ACTIONS(1686), - [anon_sym_loop] = ACTIONS(1686), - [anon_sym_while] = ACTIONS(1686), - [anon_sym_do] = ACTIONS(1686), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_match] = ACTIONS(1686), - [anon_sym_LBRACE] = ACTIONS(1688), - [anon_sym_DOT_DOT] = ACTIONS(1686), - [anon_sym_try] = ACTIONS(1686), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_source] = ACTIONS(1686), - [anon_sym_source_DASHenv] = ACTIONS(1686), - [anon_sym_register] = ACTIONS(1686), - [anon_sym_hide] = ACTIONS(1686), - [anon_sym_hide_DASHenv] = ACTIONS(1686), - [anon_sym_overlay] = ACTIONS(1686), - [anon_sym_where] = ACTIONS(1688), - [aux_sym_expr_unary_token1] = ACTIONS(1688), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1688), - [anon_sym_DOT_DOT_LT] = ACTIONS(1688), - [anon_sym_null] = ACTIONS(1686), - [anon_sym_true] = ACTIONS(1686), - [anon_sym_false] = ACTIONS(1686), - [aux_sym__val_number_decimal_token1] = ACTIONS(1686), - [aux_sym__val_number_decimal_token2] = ACTIONS(1688), - [aux_sym__val_number_decimal_token3] = ACTIONS(1688), - [aux_sym__val_number_decimal_token4] = ACTIONS(1688), - [aux_sym__val_number_token1] = ACTIONS(1688), - [aux_sym__val_number_token2] = ACTIONS(1688), - [aux_sym__val_number_token3] = ACTIONS(1688), - [aux_sym__val_number_token4] = ACTIONS(1686), - [aux_sym__val_number_token5] = ACTIONS(1686), - [aux_sym__val_number_token6] = ACTIONS(1686), - [anon_sym_0b] = ACTIONS(1686), - [anon_sym_0o] = ACTIONS(1686), - [anon_sym_0x] = ACTIONS(1686), - [sym_val_date] = ACTIONS(1688), - [anon_sym_DQUOTE] = ACTIONS(1688), - [sym__str_single_quotes] = ACTIONS(1688), - [sym__str_back_ticks] = ACTIONS(1688), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1688), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1688), - [aux_sym_env_var_token1] = ACTIONS(1686), - [anon_sym_CARET] = ACTIONS(1688), - [aux_sym_command_token1] = ACTIONS(1688), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1688), + [339] = { + [sym_cmd_identifier] = STATE(4539), + [sym__expression] = STATE(3845), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(781), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4817), + [sym_comment] = STATE(339), + [aux_sym_pipe_element_repeat2] = STATE(1180), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(451), + [aux_sym__val_number_decimal_token2] = ACTIONS(453), + [aux_sym__val_number_decimal_token3] = ACTIONS(455), + [aux_sym__val_number_decimal_token4] = ACTIONS(457), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, - [337] = { - [sym_cmd_identifier] = STATE(4643), - [sym_ctrl_if] = STATE(5015), - [sym_block] = STATE(5016), - [sym__expression] = STATE(5016), - [sym_expr_unary] = STATE(2492), - [sym__expr_unary_minus] = STATE(2458), - [sym_expr_binary] = STATE(2492), - [sym__expr_binary_expression] = STATE(3882), - [sym_expr_parenthesized] = STATE(2094), - [sym_val_range] = STATE(2492), - [sym__value] = STATE(2492), - [sym_val_nothing] = STATE(2516), - [sym_val_bool] = STATE(2516), - [sym_val_variable] = STATE(2101), - [sym_val_number] = STATE(2516), - [sym__val_number_decimal] = STATE(1193), - [sym__val_number] = STATE(2512), - [sym_val_duration] = STATE(2516), - [sym_val_filesize] = STATE(2516), - [sym_val_binary] = STATE(2516), - [sym_val_string] = STATE(2516), - [sym__raw_str] = STATE(1732), - [sym__str_double_quotes] = STATE(1732), - [sym_val_interpolated] = STATE(2516), - [sym__inter_single_quotes] = STATE(2527), - [sym__inter_double_quotes] = STATE(2528), - [sym_val_list] = STATE(2516), - [sym_val_record] = STATE(2516), - [sym_val_table] = STATE(2516), - [sym_val_closure] = STATE(2516), - [sym_command] = STATE(5016), - [sym_comment] = STATE(337), + [340] = { + [sym_cmd_identifier] = STATE(4582), + [sym_ctrl_if] = STATE(5089), + [sym_block] = STATE(5090), + [sym__expression] = STATE(5090), + [sym_expr_unary] = STATE(2443), + [sym__expr_unary_minus] = STATE(2502), + [sym_expr_binary] = STATE(2443), + [sym__expr_binary_expression] = STATE(3849), + [sym_expr_parenthesized] = STATE(2049), + [sym_val_range] = STATE(2443), + [sym__value] = STATE(2443), + [sym_val_nothing] = STATE(2419), + [sym_val_bool] = STATE(2419), + [sym_val_variable] = STATE(2121), + [sym_val_number] = STATE(2419), + [sym__val_number_decimal] = STATE(1165), + [sym__val_number] = STATE(2425), + [sym_val_duration] = STATE(2419), + [sym_val_filesize] = STATE(2419), + [sym_val_binary] = STATE(2419), + [sym_val_string] = STATE(2419), + [sym__raw_str] = STATE(1605), + [sym__str_double_quotes] = STATE(1605), + [sym_val_interpolated] = STATE(2419), + [sym__inter_single_quotes] = STATE(2426), + [sym__inter_double_quotes] = STATE(2421), + [sym_val_list] = STATE(2419), + [sym_val_record] = STATE(2419), + [sym_val_table] = STATE(2419), + [sym_val_closure] = STATE(2419), + [sym_command] = STATE(5090), + [sym_comment] = STATE(340), [aux_sym_cmd_identifier_token1] = ACTIONS(19), [aux_sym_cmd_identifier_token2] = ACTIONS(21), [aux_sym_cmd_identifier_token3] = ACTIONS(21), @@ -119032,2895 +119304,2669 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(21), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1044), + [anon_sym_DOLLAR] = ACTIONS(1018), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_if] = ACTIONS(59), - [anon_sym_LBRACE] = ACTIONS(1729), + [anon_sym_LBRACE] = ACTIONS(1727), [anon_sym_DOT_DOT] = ACTIONS(65), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(85), - [anon_sym_DOT_DOT_LT] = ACTIONS(85), - [anon_sym_null] = ACTIONS(87), - [anon_sym_true] = ACTIONS(89), - [anon_sym_false] = ACTIONS(89), - [aux_sym__val_number_decimal_token1] = ACTIONS(1731), - [aux_sym__val_number_decimal_token2] = ACTIONS(1733), - [aux_sym__val_number_decimal_token3] = ACTIONS(1735), - [aux_sym__val_number_decimal_token4] = ACTIONS(1737), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(101), - [aux_sym__val_number_token5] = ACTIONS(101), - [aux_sym__val_number_token6] = ACTIONS(101), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_CARET] = ACTIONS(119), - [aux_sym_command_token1] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [338] = { - [sym_cmd_identifier] = STATE(4711), - [sym__expression_parenthesized] = STATE(3860), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5124), - [sym_comment] = STATE(338), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1147), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1036), - [aux_sym__val_number_decimal_token2] = ACTIONS(1038), - [aux_sym__val_number_decimal_token3] = ACTIONS(1040), - [aux_sym__val_number_decimal_token4] = ACTIONS(1042), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, - [339] = { - [sym_cmd_identifier] = STATE(4514), - [sym__expression] = STATE(3797), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4798), - [sym_comment] = STATE(339), - [aux_sym_pipe_element_repeat2] = STATE(1148), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, - [340] = { - [sym_comment] = STATE(340), - [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(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(1739), - [aux_sym_cmd_identifier_token9] = ACTIONS(1739), - [aux_sym_cmd_identifier_token10] = ACTIONS(1741), - [aux_sym_cmd_identifier_token11] = ACTIONS(1741), - [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(1741), - [aux_sym_cmd_identifier_token17] = ACTIONS(1741), - [aux_sym_cmd_identifier_token18] = ACTIONS(1739), - [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(1739), - [aux_sym_cmd_identifier_token33] = ACTIONS(1741), - [aux_sym_cmd_identifier_token34] = ACTIONS(1739), - [aux_sym_cmd_identifier_token35] = ACTIONS(1741), - [aux_sym_cmd_identifier_token36] = ACTIONS(1741), - [aux_sym_cmd_identifier_token37] = ACTIONS(1741), - [aux_sym_cmd_identifier_token38] = ACTIONS(1739), - [aux_sym_cmd_identifier_token39] = ACTIONS(1741), - [aux_sym_cmd_identifier_token40] = ACTIONS(1741), - [sym__newline] = ACTIONS(1741), - [anon_sym_SEMI] = ACTIONS(1741), - [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(1741), - [anon_sym_LPAREN] = ACTIONS(1741), - [anon_sym_DOLLAR] = ACTIONS(1739), - [anon_sym_error] = ACTIONS(1739), - [anon_sym_DASH2] = 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), - [anon_sym_LBRACE] = ACTIONS(1741), - [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(1741), - [aux_sym_expr_unary_token1] = ACTIONS(1741), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1741), - [anon_sym_DOT_DOT_LT] = ACTIONS(1741), - [anon_sym_null] = ACTIONS(1739), - [anon_sym_true] = ACTIONS(1739), - [anon_sym_false] = ACTIONS(1739), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [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), - [aux_sym__val_number_token4] = ACTIONS(1739), - [aux_sym__val_number_token5] = ACTIONS(1739), - [aux_sym__val_number_token6] = ACTIONS(1739), - [anon_sym_0b] = ACTIONS(1739), - [anon_sym_0o] = ACTIONS(1739), - [anon_sym_0x] = ACTIONS(1739), - [sym_val_date] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym__str_single_quotes] = ACTIONS(1741), - [sym__str_back_ticks] = ACTIONS(1741), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), - [aux_sym_env_var_token1] = ACTIONS(1739), - [anon_sym_CARET] = ACTIONS(1741), - [aux_sym_command_token1] = ACTIONS(1741), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1741), + [aux_sym_expr_unary_token1] = ACTIONS(81), + [anon_sym_DOT_DOT_EQ] = ACTIONS(83), + [anon_sym_DOT_DOT_LT] = ACTIONS(83), + [anon_sym_null] = ACTIONS(85), + [anon_sym_true] = ACTIONS(87), + [anon_sym_false] = ACTIONS(87), + [aux_sym__val_number_decimal_token1] = ACTIONS(1729), + [aux_sym__val_number_decimal_token2] = ACTIONS(1731), + [aux_sym__val_number_decimal_token3] = ACTIONS(1733), + [aux_sym__val_number_decimal_token4] = ACTIONS(1735), + [aux_sym__val_number_token1] = ACTIONS(97), + [aux_sym__val_number_token2] = ACTIONS(97), + [aux_sym__val_number_token3] = ACTIONS(97), + [aux_sym__val_number_token4] = ACTIONS(99), + [aux_sym__val_number_token5] = ACTIONS(99), + [aux_sym__val_number_token6] = ACTIONS(99), + [anon_sym_0b] = ACTIONS(101), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym__str_single_quotes] = ACTIONS(109), + [sym__str_back_ticks] = ACTIONS(109), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [anon_sym_CARET] = ACTIONS(117), + [aux_sym_command_token1] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [341] = { + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if] = STATE(4763), + [sym_block] = STATE(4771), + [sym__expression] = STATE(4771), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3838), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1170), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(4771), [sym_comment] = STATE(341), - [anon_sym_export] = ACTIONS(1550), - [anon_sym_alias] = ACTIONS(1550), - [anon_sym_let] = ACTIONS(1550), - [anon_sym_let_DASHenv] = ACTIONS(1550), - [anon_sym_mut] = ACTIONS(1550), - [anon_sym_const] = ACTIONS(1550), - [aux_sym_cmd_identifier_token1] = ACTIONS(1550), - [aux_sym_cmd_identifier_token2] = ACTIONS(1550), - [aux_sym_cmd_identifier_token3] = ACTIONS(1550), - [aux_sym_cmd_identifier_token4] = ACTIONS(1550), - [aux_sym_cmd_identifier_token5] = ACTIONS(1550), - [aux_sym_cmd_identifier_token6] = ACTIONS(1550), - [aux_sym_cmd_identifier_token7] = ACTIONS(1550), - [aux_sym_cmd_identifier_token8] = ACTIONS(1550), - [aux_sym_cmd_identifier_token9] = ACTIONS(1550), - [aux_sym_cmd_identifier_token10] = ACTIONS(1550), - [aux_sym_cmd_identifier_token11] = ACTIONS(1550), - [aux_sym_cmd_identifier_token12] = ACTIONS(1550), - [aux_sym_cmd_identifier_token13] = ACTIONS(1550), - [aux_sym_cmd_identifier_token14] = ACTIONS(1550), - [aux_sym_cmd_identifier_token15] = ACTIONS(1550), - [aux_sym_cmd_identifier_token16] = ACTIONS(1550), - [aux_sym_cmd_identifier_token17] = ACTIONS(1550), - [aux_sym_cmd_identifier_token18] = ACTIONS(1550), - [aux_sym_cmd_identifier_token19] = ACTIONS(1550), - [aux_sym_cmd_identifier_token20] = ACTIONS(1550), - [aux_sym_cmd_identifier_token21] = ACTIONS(1550), - [aux_sym_cmd_identifier_token22] = ACTIONS(1550), - [aux_sym_cmd_identifier_token23] = ACTIONS(1550), - [aux_sym_cmd_identifier_token24] = ACTIONS(1550), - [aux_sym_cmd_identifier_token25] = ACTIONS(1550), - [aux_sym_cmd_identifier_token26] = ACTIONS(1550), - [aux_sym_cmd_identifier_token27] = ACTIONS(1550), - [aux_sym_cmd_identifier_token28] = ACTIONS(1550), - [aux_sym_cmd_identifier_token29] = ACTIONS(1550), - [aux_sym_cmd_identifier_token30] = ACTIONS(1550), - [aux_sym_cmd_identifier_token31] = ACTIONS(1550), - [aux_sym_cmd_identifier_token32] = ACTIONS(1550), - [aux_sym_cmd_identifier_token33] = ACTIONS(1550), - [aux_sym_cmd_identifier_token34] = ACTIONS(1550), - [aux_sym_cmd_identifier_token35] = ACTIONS(1550), - [aux_sym_cmd_identifier_token36] = ACTIONS(1550), - [aux_sym_cmd_identifier_token37] = ACTIONS(1550), - [aux_sym_cmd_identifier_token38] = ACTIONS(1550), - [aux_sym_cmd_identifier_token39] = ACTIONS(1550), - [aux_sym_cmd_identifier_token40] = ACTIONS(1550), - [anon_sym_def] = ACTIONS(1550), - [anon_sym_export_DASHenv] = ACTIONS(1550), - [anon_sym_extern] = ACTIONS(1550), - [anon_sym_module] = ACTIONS(1550), - [anon_sym_use] = ACTIONS(1550), - [anon_sym_LPAREN] = ACTIONS(1550), - [anon_sym_COMMA] = ACTIONS(1550), - [anon_sym_DOLLAR] = ACTIONS(1550), - [anon_sym_error] = ACTIONS(1550), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_break] = ACTIONS(1550), - [anon_sym_continue] = ACTIONS(1550), - [anon_sym_for] = ACTIONS(1550), - [anon_sym_in2] = ACTIONS(1550), - [anon_sym_loop] = ACTIONS(1550), - [anon_sym_make] = ACTIONS(1550), - [anon_sym_while] = ACTIONS(1550), - [anon_sym_do] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_else] = ACTIONS(1550), - [anon_sym_match] = ACTIONS(1550), - [anon_sym_RBRACE] = ACTIONS(1550), - [anon_sym_try] = ACTIONS(1550), - [anon_sym_catch] = ACTIONS(1550), - [anon_sym_return] = ACTIONS(1550), - [anon_sym_source] = ACTIONS(1550), - [anon_sym_source_DASHenv] = ACTIONS(1550), - [anon_sym_register] = ACTIONS(1550), - [anon_sym_hide] = ACTIONS(1550), - [anon_sym_hide_DASHenv] = ACTIONS(1550), - [anon_sym_overlay] = ACTIONS(1550), - [anon_sym_as] = ACTIONS(1550), - [anon_sym_LPAREN2] = ACTIONS(1552), - [anon_sym_PLUS2] = ACTIONS(1550), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1550), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1550), - [aux_sym__val_number_decimal_token1] = ACTIONS(1550), - [aux_sym__val_number_decimal_token2] = ACTIONS(1550), - [aux_sym__val_number_decimal_token3] = ACTIONS(1550), - [aux_sym__val_number_decimal_token4] = ACTIONS(1550), - [aux_sym__val_number_token1] = ACTIONS(1550), - [aux_sym__val_number_token2] = ACTIONS(1550), - [aux_sym__val_number_token3] = ACTIONS(1550), - [aux_sym__val_number_token4] = ACTIONS(1550), - [aux_sym__val_number_token5] = ACTIONS(1550), - [aux_sym__val_number_token6] = ACTIONS(1550), - [sym_filesize_unit] = ACTIONS(1550), - [sym_duration_unit] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1550), - [sym__str_single_quotes] = ACTIONS(1550), - [sym__str_back_ticks] = ACTIONS(1550), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1550), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1550), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1550), - [sym__entry_separator] = ACTIONS(1552), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1550), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1552), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(595), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1463), + [aux_sym__val_number_decimal_token2] = ACTIONS(1465), + [aux_sym__val_number_decimal_token3] = ACTIONS(1467), + [aux_sym__val_number_decimal_token4] = ACTIONS(1469), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [342] = { - [sym_cmd_identifier] = STATE(4711), - [sym__expression_parenthesized] = STATE(3860), - [sym_expr_unary] = STATE(2398), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2398), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2015), - [sym_val_range] = STATE(2398), - [sym__value] = STATE(2398), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(811), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(6935), - [sym__command_parenthesized] = STATE(5124), + [sym_cmd_identifier] = STATE(4582), + [sym__expression] = STATE(3868), + [sym_expr_unary] = STATE(2443), + [sym__expr_unary_minus] = STATE(2502), + [sym_expr_binary] = STATE(2443), + [sym__expr_binary_expression] = STATE(3829), + [sym_expr_parenthesized] = STATE(2049), + [sym_val_range] = STATE(2443), + [sym__value] = STATE(2443), + [sym_val_nothing] = STATE(2419), + [sym_val_bool] = STATE(2419), + [sym_val_variable] = STATE(2121), + [sym_val_number] = STATE(2419), + [sym__val_number_decimal] = STATE(782), + [sym__val_number] = STATE(2425), + [sym_val_duration] = STATE(2419), + [sym_val_filesize] = STATE(2419), + [sym_val_binary] = STATE(2419), + [sym_val_string] = STATE(2419), + [sym__raw_str] = STATE(1605), + [sym__str_double_quotes] = STATE(1605), + [sym_val_interpolated] = STATE(2419), + [sym__inter_single_quotes] = STATE(2426), + [sym__inter_double_quotes] = STATE(2421), + [sym_val_list] = STATE(2419), + [sym_val_record] = STATE(2419), + [sym_val_table] = STATE(2419), + [sym_val_closure] = STATE(2419), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(5009), [sym_comment] = STATE(342), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1147), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(459), - [aux_sym__val_number_decimal_token2] = ACTIONS(461), - [aux_sym__val_number_decimal_token3] = ACTIONS(463), - [aux_sym__val_number_decimal_token4] = ACTIONS(465), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(467), - [aux_sym_command_token1] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipe_element_repeat2] = STATE(1180), + [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(19), + [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(19), + [aux_sym_cmd_identifier_token33] = ACTIONS(21), + [aux_sym_cmd_identifier_token34] = ACTIONS(19), + [aux_sym_cmd_identifier_token35] = ACTIONS(21), + [aux_sym_cmd_identifier_token36] = ACTIONS(21), + [aux_sym_cmd_identifier_token37] = ACTIONS(21), + [aux_sym_cmd_identifier_token38] = ACTIONS(19), + [aux_sym_cmd_identifier_token39] = ACTIONS(21), + [aux_sym_cmd_identifier_token40] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1018), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(65), + [aux_sym_expr_unary_token1] = ACTIONS(81), + [anon_sym_DOT_DOT_EQ] = ACTIONS(83), + [anon_sym_DOT_DOT_LT] = ACTIONS(83), + [anon_sym_null] = ACTIONS(85), + [anon_sym_true] = ACTIONS(87), + [anon_sym_false] = ACTIONS(87), + [aux_sym__val_number_decimal_token1] = ACTIONS(89), + [aux_sym__val_number_decimal_token2] = ACTIONS(91), + [aux_sym__val_number_decimal_token3] = ACTIONS(93), + [aux_sym__val_number_decimal_token4] = ACTIONS(95), + [aux_sym__val_number_token1] = ACTIONS(97), + [aux_sym__val_number_token2] = ACTIONS(97), + [aux_sym__val_number_token3] = ACTIONS(97), + [aux_sym__val_number_token4] = ACTIONS(99), + [aux_sym__val_number_token5] = ACTIONS(99), + [aux_sym__val_number_token6] = ACTIONS(99), + [anon_sym_0b] = ACTIONS(101), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym__str_single_quotes] = ACTIONS(109), + [sym__str_back_ticks] = ACTIONS(109), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(117), + [aux_sym_command_token1] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [343] = { + [sym_cmd_identifier] = STATE(4601), + [sym__expression_parenthesized] = STATE(3865), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2381), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(1951), + [sym_val_range] = STATE(2381), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(807), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(6928), + [sym__command_parenthesized] = STATE(5103), [sym_comment] = STATE(343), - [anon_sym_export] = ACTIONS(1542), - [anon_sym_alias] = ACTIONS(1542), - [anon_sym_let] = ACTIONS(1542), - [anon_sym_let_DASHenv] = ACTIONS(1542), - [anon_sym_mut] = ACTIONS(1542), - [anon_sym_const] = ACTIONS(1542), - [aux_sym_cmd_identifier_token1] = ACTIONS(1542), - [aux_sym_cmd_identifier_token2] = ACTIONS(1542), - [aux_sym_cmd_identifier_token3] = ACTIONS(1542), - [aux_sym_cmd_identifier_token4] = ACTIONS(1542), - [aux_sym_cmd_identifier_token5] = ACTIONS(1542), - [aux_sym_cmd_identifier_token6] = ACTIONS(1542), - [aux_sym_cmd_identifier_token7] = ACTIONS(1542), - [aux_sym_cmd_identifier_token8] = ACTIONS(1542), - [aux_sym_cmd_identifier_token9] = ACTIONS(1542), - [aux_sym_cmd_identifier_token10] = ACTIONS(1542), - [aux_sym_cmd_identifier_token11] = ACTIONS(1542), - [aux_sym_cmd_identifier_token12] = ACTIONS(1542), - [aux_sym_cmd_identifier_token13] = ACTIONS(1542), - [aux_sym_cmd_identifier_token14] = ACTIONS(1542), - [aux_sym_cmd_identifier_token15] = ACTIONS(1542), - [aux_sym_cmd_identifier_token16] = ACTIONS(1542), - [aux_sym_cmd_identifier_token17] = ACTIONS(1542), - [aux_sym_cmd_identifier_token18] = ACTIONS(1542), - [aux_sym_cmd_identifier_token19] = ACTIONS(1542), - [aux_sym_cmd_identifier_token20] = ACTIONS(1542), - [aux_sym_cmd_identifier_token21] = ACTIONS(1542), - [aux_sym_cmd_identifier_token22] = ACTIONS(1542), - [aux_sym_cmd_identifier_token23] = ACTIONS(1542), - [aux_sym_cmd_identifier_token24] = ACTIONS(1542), - [aux_sym_cmd_identifier_token25] = ACTIONS(1542), - [aux_sym_cmd_identifier_token26] = ACTIONS(1542), - [aux_sym_cmd_identifier_token27] = ACTIONS(1542), - [aux_sym_cmd_identifier_token28] = ACTIONS(1542), - [aux_sym_cmd_identifier_token29] = ACTIONS(1542), - [aux_sym_cmd_identifier_token30] = ACTIONS(1542), - [aux_sym_cmd_identifier_token31] = ACTIONS(1542), - [aux_sym_cmd_identifier_token32] = ACTIONS(1542), - [aux_sym_cmd_identifier_token33] = ACTIONS(1542), - [aux_sym_cmd_identifier_token34] = ACTIONS(1542), - [aux_sym_cmd_identifier_token35] = ACTIONS(1542), - [aux_sym_cmd_identifier_token36] = ACTIONS(1542), - [aux_sym_cmd_identifier_token37] = ACTIONS(1542), - [aux_sym_cmd_identifier_token38] = ACTIONS(1542), - [aux_sym_cmd_identifier_token39] = ACTIONS(1542), - [aux_sym_cmd_identifier_token40] = ACTIONS(1542), - [anon_sym_def] = ACTIONS(1542), - [anon_sym_export_DASHenv] = ACTIONS(1542), - [anon_sym_extern] = ACTIONS(1542), - [anon_sym_module] = ACTIONS(1542), - [anon_sym_use] = ACTIONS(1542), - [anon_sym_LPAREN] = ACTIONS(1542), - [anon_sym_COMMA] = ACTIONS(1542), - [anon_sym_DOLLAR] = ACTIONS(1542), - [anon_sym_error] = ACTIONS(1542), - [anon_sym_DASH2] = ACTIONS(1542), - [anon_sym_break] = ACTIONS(1542), - [anon_sym_continue] = ACTIONS(1542), - [anon_sym_for] = ACTIONS(1542), - [anon_sym_in2] = ACTIONS(1542), - [anon_sym_loop] = ACTIONS(1542), - [anon_sym_make] = ACTIONS(1542), - [anon_sym_while] = ACTIONS(1542), - [anon_sym_do] = ACTIONS(1542), - [anon_sym_if] = ACTIONS(1542), - [anon_sym_else] = ACTIONS(1542), - [anon_sym_match] = ACTIONS(1542), - [anon_sym_RBRACE] = ACTIONS(1542), - [anon_sym_try] = ACTIONS(1542), - [anon_sym_catch] = ACTIONS(1542), - [anon_sym_return] = ACTIONS(1542), - [anon_sym_source] = ACTIONS(1542), - [anon_sym_source_DASHenv] = ACTIONS(1542), - [anon_sym_register] = ACTIONS(1542), - [anon_sym_hide] = ACTIONS(1542), - [anon_sym_hide_DASHenv] = ACTIONS(1542), - [anon_sym_overlay] = ACTIONS(1542), - [anon_sym_as] = ACTIONS(1542), - [anon_sym_LPAREN2] = ACTIONS(1544), - [anon_sym_PLUS2] = ACTIONS(1542), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1542), - [anon_sym_DOT_DOT2] = ACTIONS(1542), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1544), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1544), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1542), - [aux_sym__val_number_decimal_token1] = ACTIONS(1542), - [aux_sym__val_number_decimal_token2] = ACTIONS(1542), - [aux_sym__val_number_decimal_token3] = ACTIONS(1542), - [aux_sym__val_number_decimal_token4] = ACTIONS(1542), - [aux_sym__val_number_token1] = ACTIONS(1542), - [aux_sym__val_number_token2] = ACTIONS(1542), - [aux_sym__val_number_token3] = ACTIONS(1542), - [aux_sym__val_number_token4] = ACTIONS(1542), - [aux_sym__val_number_token5] = ACTIONS(1542), - [aux_sym__val_number_token6] = ACTIONS(1542), - [sym_filesize_unit] = ACTIONS(1542), - [sym_duration_unit] = ACTIONS(1542), - [anon_sym_DQUOTE] = ACTIONS(1542), - [sym__str_single_quotes] = ACTIONS(1542), - [sym__str_back_ticks] = ACTIONS(1542), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1542), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1542), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1542), - [sym__entry_separator] = ACTIONS(1544), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1542), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1544), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1188), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(459), + [aux_sym_command_token1] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [344] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if] = STATE(4892), - [sym_block] = STATE(4893), - [sym__expression] = STATE(4893), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3876), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1190), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(4893), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if] = STATE(4763), + [sym_block] = STATE(4771), + [sym__expression] = STATE(4771), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3838), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1173), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(4771), [sym_comment] = STATE(344), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(603), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1577), - [aux_sym__val_number_decimal_token2] = ACTIONS(1579), - [aux_sym__val_number_decimal_token3] = ACTIONS(1581), - [aux_sym__val_number_decimal_token4] = ACTIONS(1583), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1737), + [aux_sym__val_number_decimal_token2] = ACTIONS(1739), + [aux_sym__val_number_decimal_token3] = ACTIONS(1741), + [aux_sym__val_number_decimal_token4] = ACTIONS(1743), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [345] = { + [sym__expr_parenthesized_immediate] = STATE(7402), [sym_comment] = STATE(345), - [anon_sym_export] = ACTIONS(1680), - [anon_sym_alias] = ACTIONS(1680), - [anon_sym_let] = ACTIONS(1680), - [anon_sym_let_DASHenv] = ACTIONS(1680), - [anon_sym_mut] = ACTIONS(1680), - [anon_sym_const] = ACTIONS(1680), - [aux_sym_cmd_identifier_token1] = ACTIONS(1680), - [aux_sym_cmd_identifier_token2] = ACTIONS(1680), - [aux_sym_cmd_identifier_token3] = ACTIONS(1680), - [aux_sym_cmd_identifier_token4] = ACTIONS(1680), - [aux_sym_cmd_identifier_token5] = ACTIONS(1680), - [aux_sym_cmd_identifier_token6] = ACTIONS(1680), - [aux_sym_cmd_identifier_token7] = ACTIONS(1680), - [aux_sym_cmd_identifier_token8] = ACTIONS(1680), - [aux_sym_cmd_identifier_token9] = ACTIONS(1680), - [aux_sym_cmd_identifier_token10] = ACTIONS(1680), - [aux_sym_cmd_identifier_token11] = ACTIONS(1680), - [aux_sym_cmd_identifier_token12] = ACTIONS(1680), - [aux_sym_cmd_identifier_token13] = ACTIONS(1680), - [aux_sym_cmd_identifier_token14] = ACTIONS(1680), - [aux_sym_cmd_identifier_token15] = ACTIONS(1680), - [aux_sym_cmd_identifier_token16] = ACTIONS(1680), - [aux_sym_cmd_identifier_token17] = ACTIONS(1680), - [aux_sym_cmd_identifier_token18] = ACTIONS(1680), - [aux_sym_cmd_identifier_token19] = ACTIONS(1680), - [aux_sym_cmd_identifier_token20] = ACTIONS(1680), - [aux_sym_cmd_identifier_token21] = ACTIONS(1680), - [aux_sym_cmd_identifier_token22] = ACTIONS(1680), - [aux_sym_cmd_identifier_token23] = ACTIONS(1680), - [aux_sym_cmd_identifier_token24] = ACTIONS(1680), - [aux_sym_cmd_identifier_token25] = ACTIONS(1680), - [aux_sym_cmd_identifier_token26] = ACTIONS(1680), - [aux_sym_cmd_identifier_token27] = ACTIONS(1680), - [aux_sym_cmd_identifier_token28] = ACTIONS(1680), - [aux_sym_cmd_identifier_token29] = ACTIONS(1680), - [aux_sym_cmd_identifier_token30] = ACTIONS(1680), - [aux_sym_cmd_identifier_token31] = ACTIONS(1680), - [aux_sym_cmd_identifier_token32] = ACTIONS(1680), - [aux_sym_cmd_identifier_token33] = ACTIONS(1680), - [aux_sym_cmd_identifier_token34] = ACTIONS(1680), - [aux_sym_cmd_identifier_token35] = ACTIONS(1680), - [aux_sym_cmd_identifier_token36] = ACTIONS(1680), - [aux_sym_cmd_identifier_token37] = ACTIONS(1680), - [aux_sym_cmd_identifier_token38] = ACTIONS(1680), - [aux_sym_cmd_identifier_token39] = ACTIONS(1680), - [aux_sym_cmd_identifier_token40] = ACTIONS(1680), - [anon_sym_def] = ACTIONS(1680), - [anon_sym_export_DASHenv] = ACTIONS(1680), - [anon_sym_extern] = ACTIONS(1680), - [anon_sym_module] = ACTIONS(1680), - [anon_sym_use] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1680), - [anon_sym_COMMA] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1680), - [anon_sym_error] = ACTIONS(1680), - [anon_sym_DASH2] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_continue] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_in2] = ACTIONS(1680), - [anon_sym_loop] = ACTIONS(1680), - [anon_sym_make] = ACTIONS(1680), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_do] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_else] = ACTIONS(1680), - [anon_sym_match] = ACTIONS(1680), - [anon_sym_RBRACE] = ACTIONS(1680), - [anon_sym_try] = ACTIONS(1680), - [anon_sym_catch] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_source] = ACTIONS(1680), - [anon_sym_source_DASHenv] = ACTIONS(1680), - [anon_sym_register] = ACTIONS(1680), - [anon_sym_hide] = ACTIONS(1680), - [anon_sym_hide_DASHenv] = ACTIONS(1680), - [anon_sym_overlay] = ACTIONS(1680), - [anon_sym_as] = ACTIONS(1680), - [anon_sym_LPAREN2] = ACTIONS(1682), - [anon_sym_PLUS2] = ACTIONS(1680), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1680), - [anon_sym_DOT_DOT2] = ACTIONS(1680), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1682), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1682), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1680), - [aux_sym__val_number_decimal_token1] = ACTIONS(1680), - [aux_sym__val_number_decimal_token2] = ACTIONS(1680), - [aux_sym__val_number_decimal_token3] = ACTIONS(1680), - [aux_sym__val_number_decimal_token4] = ACTIONS(1680), - [aux_sym__val_number_token1] = ACTIONS(1680), - [aux_sym__val_number_token2] = ACTIONS(1680), - [aux_sym__val_number_token3] = ACTIONS(1680), - [aux_sym__val_number_token4] = ACTIONS(1680), - [aux_sym__val_number_token5] = ACTIONS(1680), - [aux_sym__val_number_token6] = ACTIONS(1680), - [sym_filesize_unit] = ACTIONS(1680), - [sym_duration_unit] = ACTIONS(1680), - [anon_sym_DQUOTE] = ACTIONS(1680), - [sym__str_single_quotes] = ACTIONS(1680), - [sym__str_back_ticks] = ACTIONS(1680), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1680), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1680), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1680), - [sym__entry_separator] = ACTIONS(1682), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1680), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1682), + [anon_sym_export] = ACTIONS(1639), + [anon_sym_alias] = ACTIONS(1639), + [anon_sym_let] = ACTIONS(1639), + [anon_sym_let_DASHenv] = ACTIONS(1639), + [anon_sym_mut] = ACTIONS(1639), + [anon_sym_const] = ACTIONS(1639), + [aux_sym_cmd_identifier_token1] = ACTIONS(1639), + [aux_sym_cmd_identifier_token2] = ACTIONS(1651), + [aux_sym_cmd_identifier_token3] = ACTIONS(1651), + [aux_sym_cmd_identifier_token4] = ACTIONS(1651), + [aux_sym_cmd_identifier_token5] = ACTIONS(1651), + [aux_sym_cmd_identifier_token6] = ACTIONS(1651), + [aux_sym_cmd_identifier_token7] = ACTIONS(1651), + [aux_sym_cmd_identifier_token8] = ACTIONS(1639), + [aux_sym_cmd_identifier_token9] = ACTIONS(1639), + [aux_sym_cmd_identifier_token10] = ACTIONS(1651), + [aux_sym_cmd_identifier_token11] = ACTIONS(1651), + [aux_sym_cmd_identifier_token12] = ACTIONS(1639), + [aux_sym_cmd_identifier_token13] = ACTIONS(1639), + [aux_sym_cmd_identifier_token14] = ACTIONS(1639), + [aux_sym_cmd_identifier_token15] = ACTIONS(1639), + [aux_sym_cmd_identifier_token16] = ACTIONS(1651), + [aux_sym_cmd_identifier_token17] = ACTIONS(1651), + [aux_sym_cmd_identifier_token18] = ACTIONS(1651), + [aux_sym_cmd_identifier_token19] = ACTIONS(1651), + [aux_sym_cmd_identifier_token20] = ACTIONS(1651), + [aux_sym_cmd_identifier_token21] = ACTIONS(1651), + [aux_sym_cmd_identifier_token22] = ACTIONS(1651), + [aux_sym_cmd_identifier_token23] = ACTIONS(1651), + [aux_sym_cmd_identifier_token24] = ACTIONS(1651), + [aux_sym_cmd_identifier_token25] = ACTIONS(1651), + [aux_sym_cmd_identifier_token26] = ACTIONS(1651), + [aux_sym_cmd_identifier_token27] = ACTIONS(1651), + [aux_sym_cmd_identifier_token28] = ACTIONS(1651), + [aux_sym_cmd_identifier_token29] = ACTIONS(1651), + [aux_sym_cmd_identifier_token30] = ACTIONS(1651), + [aux_sym_cmd_identifier_token31] = ACTIONS(1651), + [aux_sym_cmd_identifier_token32] = ACTIONS(1651), + [aux_sym_cmd_identifier_token33] = ACTIONS(1651), + [aux_sym_cmd_identifier_token34] = ACTIONS(1639), + [aux_sym_cmd_identifier_token35] = ACTIONS(1651), + [aux_sym_cmd_identifier_token36] = ACTIONS(1651), + [aux_sym_cmd_identifier_token37] = ACTIONS(1651), + [aux_sym_cmd_identifier_token38] = ACTIONS(1639), + [aux_sym_cmd_identifier_token39] = ACTIONS(1651), + [aux_sym_cmd_identifier_token40] = ACTIONS(1651), + [anon_sym_def] = ACTIONS(1639), + [anon_sym_export_DASHenv] = ACTIONS(1639), + [anon_sym_extern] = ACTIONS(1639), + [anon_sym_module] = ACTIONS(1639), + [anon_sym_use] = ACTIONS(1639), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_COMMA] = ACTIONS(1651), + [anon_sym_DOLLAR] = ACTIONS(1639), + [anon_sym_error] = ACTIONS(1639), + [anon_sym_DASH2] = ACTIONS(1639), + [anon_sym_break] = ACTIONS(1639), + [anon_sym_continue] = ACTIONS(1639), + [anon_sym_for] = ACTIONS(1639), + [anon_sym_in2] = ACTIONS(1639), + [anon_sym_loop] = ACTIONS(1639), + [anon_sym_make] = ACTIONS(1639), + [anon_sym_while] = ACTIONS(1639), + [anon_sym_do] = ACTIONS(1639), + [anon_sym_if] = ACTIONS(1639), + [anon_sym_else] = ACTIONS(1639), + [anon_sym_match] = ACTIONS(1639), + [anon_sym_RBRACE] = ACTIONS(1651), + [anon_sym_try] = ACTIONS(1639), + [anon_sym_catch] = ACTIONS(1639), + [anon_sym_return] = ACTIONS(1639), + [anon_sym_source] = ACTIONS(1639), + [anon_sym_source_DASHenv] = ACTIONS(1639), + [anon_sym_hide] = ACTIONS(1639), + [anon_sym_hide_DASHenv] = ACTIONS(1639), + [anon_sym_overlay] = ACTIONS(1639), + [anon_sym_as] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(1641), + [anon_sym_PLUS2] = ACTIONS(1639), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1651), + [anon_sym_DOT_DOT2] = ACTIONS(1745), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1747), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1747), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1651), + [aux_sym__val_number_decimal_token1] = ACTIONS(1639), + [aux_sym__val_number_decimal_token2] = ACTIONS(1651), + [aux_sym__val_number_decimal_token3] = ACTIONS(1651), + [aux_sym__val_number_decimal_token4] = ACTIONS(1651), + [aux_sym__val_number_token1] = ACTIONS(1651), + [aux_sym__val_number_token2] = ACTIONS(1651), + [aux_sym__val_number_token3] = ACTIONS(1651), + [aux_sym__val_number_token4] = ACTIONS(1639), + [aux_sym__val_number_token5] = ACTIONS(1639), + [aux_sym__val_number_token6] = ACTIONS(1639), + [sym_filesize_unit] = ACTIONS(1749), + [sym_duration_unit] = ACTIONS(1751), + [anon_sym_DQUOTE] = ACTIONS(1651), + [sym__str_single_quotes] = ACTIONS(1651), + [sym__str_back_ticks] = ACTIONS(1651), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1651), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1651), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1651), + [anon_sym_register] = ACTIONS(1639), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1753), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1651), }, [346] = { + [sym_cmd_identifier] = STATE(4539), + [sym__expression] = STATE(3845), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(826), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4817), [sym_comment] = STATE(346), - [anon_sym_export] = ACTIONS(1743), - [anon_sym_alias] = ACTIONS(1743), - [anon_sym_let] = ACTIONS(1743), - [anon_sym_let_DASHenv] = ACTIONS(1743), - [anon_sym_mut] = ACTIONS(1743), - [anon_sym_const] = ACTIONS(1743), - [aux_sym_cmd_identifier_token1] = ACTIONS(1743), - [aux_sym_cmd_identifier_token2] = ACTIONS(1743), - [aux_sym_cmd_identifier_token3] = ACTIONS(1743), - [aux_sym_cmd_identifier_token4] = ACTIONS(1743), - [aux_sym_cmd_identifier_token5] = ACTIONS(1743), - [aux_sym_cmd_identifier_token6] = ACTIONS(1743), - [aux_sym_cmd_identifier_token7] = ACTIONS(1743), - [aux_sym_cmd_identifier_token8] = ACTIONS(1743), - [aux_sym_cmd_identifier_token9] = ACTIONS(1743), - [aux_sym_cmd_identifier_token10] = ACTIONS(1743), - [aux_sym_cmd_identifier_token11] = ACTIONS(1743), - [aux_sym_cmd_identifier_token12] = ACTIONS(1743), - [aux_sym_cmd_identifier_token13] = ACTIONS(1743), - [aux_sym_cmd_identifier_token14] = ACTIONS(1743), - [aux_sym_cmd_identifier_token15] = ACTIONS(1743), - [aux_sym_cmd_identifier_token16] = ACTIONS(1743), - [aux_sym_cmd_identifier_token17] = ACTIONS(1743), - [aux_sym_cmd_identifier_token18] = ACTIONS(1743), - [aux_sym_cmd_identifier_token19] = ACTIONS(1743), - [aux_sym_cmd_identifier_token20] = ACTIONS(1743), - [aux_sym_cmd_identifier_token21] = ACTIONS(1743), - [aux_sym_cmd_identifier_token22] = ACTIONS(1743), - [aux_sym_cmd_identifier_token23] = ACTIONS(1743), - [aux_sym_cmd_identifier_token24] = ACTIONS(1743), - [aux_sym_cmd_identifier_token25] = ACTIONS(1743), - [aux_sym_cmd_identifier_token26] = ACTIONS(1743), - [aux_sym_cmd_identifier_token27] = ACTIONS(1743), - [aux_sym_cmd_identifier_token28] = ACTIONS(1743), - [aux_sym_cmd_identifier_token29] = ACTIONS(1743), - [aux_sym_cmd_identifier_token30] = ACTIONS(1743), - [aux_sym_cmd_identifier_token31] = ACTIONS(1743), - [aux_sym_cmd_identifier_token32] = ACTIONS(1743), - [aux_sym_cmd_identifier_token33] = ACTIONS(1743), - [aux_sym_cmd_identifier_token34] = ACTIONS(1743), - [aux_sym_cmd_identifier_token35] = ACTIONS(1743), - [aux_sym_cmd_identifier_token36] = ACTIONS(1743), - [aux_sym_cmd_identifier_token37] = ACTIONS(1743), - [aux_sym_cmd_identifier_token38] = ACTIONS(1743), - [aux_sym_cmd_identifier_token39] = ACTIONS(1743), - [aux_sym_cmd_identifier_token40] = ACTIONS(1743), - [anon_sym_def] = ACTIONS(1743), - [anon_sym_export_DASHenv] = ACTIONS(1743), - [anon_sym_extern] = ACTIONS(1743), - [anon_sym_module] = ACTIONS(1743), - [anon_sym_use] = ACTIONS(1743), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_COMMA] = ACTIONS(1743), - [anon_sym_DOLLAR] = ACTIONS(1743), - [anon_sym_error] = ACTIONS(1743), - [anon_sym_DASH2] = ACTIONS(1743), - [anon_sym_break] = ACTIONS(1743), - [anon_sym_continue] = ACTIONS(1743), - [anon_sym_for] = ACTIONS(1743), - [anon_sym_in2] = ACTIONS(1743), - [anon_sym_loop] = ACTIONS(1743), - [anon_sym_make] = ACTIONS(1743), - [anon_sym_while] = ACTIONS(1743), - [anon_sym_do] = ACTIONS(1743), - [anon_sym_if] = ACTIONS(1743), - [anon_sym_else] = ACTIONS(1743), - [anon_sym_match] = ACTIONS(1743), - [anon_sym_RBRACE] = ACTIONS(1743), - [anon_sym_try] = ACTIONS(1743), - [anon_sym_catch] = ACTIONS(1743), - [anon_sym_return] = ACTIONS(1743), - [anon_sym_source] = ACTIONS(1743), - [anon_sym_source_DASHenv] = ACTIONS(1743), - [anon_sym_register] = ACTIONS(1743), - [anon_sym_hide] = ACTIONS(1743), - [anon_sym_hide_DASHenv] = ACTIONS(1743), - [anon_sym_overlay] = ACTIONS(1743), - [anon_sym_as] = ACTIONS(1743), - [anon_sym_LPAREN2] = ACTIONS(1745), - [anon_sym_PLUS2] = ACTIONS(1743), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1743), - [anon_sym_DOT_DOT2] = ACTIONS(1743), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1745), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1745), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1743), - [aux_sym__val_number_decimal_token1] = ACTIONS(1743), - [aux_sym__val_number_decimal_token2] = ACTIONS(1743), - [aux_sym__val_number_decimal_token3] = ACTIONS(1743), - [aux_sym__val_number_decimal_token4] = ACTIONS(1743), - [aux_sym__val_number_token1] = ACTIONS(1743), - [aux_sym__val_number_token2] = ACTIONS(1743), - [aux_sym__val_number_token3] = ACTIONS(1743), - [aux_sym__val_number_token4] = ACTIONS(1743), - [aux_sym__val_number_token5] = ACTIONS(1743), - [aux_sym__val_number_token6] = ACTIONS(1743), - [sym_filesize_unit] = ACTIONS(1743), - [sym_duration_unit] = ACTIONS(1743), - [anon_sym_DQUOTE] = ACTIONS(1743), - [sym__str_single_quotes] = ACTIONS(1743), - [sym__str_back_ticks] = ACTIONS(1743), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1743), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1743), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1743), - [sym__entry_separator] = ACTIONS(1745), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1743), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1745), + [aux_sym_pipe_element_repeat2] = STATE(1180), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1709), + [aux_sym__val_number_decimal_token2] = ACTIONS(1711), + [aux_sym__val_number_decimal_token3] = ACTIONS(1713), + [aux_sym__val_number_decimal_token4] = ACTIONS(1715), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [347] = { - [sym_cmd_identifier] = STATE(4514), - [sym__expression] = STATE(3797), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_env_var] = STATE(7385), - [sym_command] = STATE(4798), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if] = STATE(4763), + [sym_block] = STATE(4771), + [sym__expression] = STATE(4771), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3838), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1203), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(4771), [sym_comment] = STATE(347), - [aux_sym_pipe_element_repeat2] = STATE(1148), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(417), - [aux_sym__val_number_decimal_token2] = ACTIONS(419), - [aux_sym__val_number_decimal_token3] = ACTIONS(421), - [aux_sym__val_number_decimal_token4] = ACTIONS(423), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1481), + [aux_sym__val_number_decimal_token2] = ACTIONS(1483), + [aux_sym__val_number_decimal_token3] = ACTIONS(1485), + [aux_sym__val_number_decimal_token4] = ACTIONS(1487), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [348] = { - [sym__expr_parenthesized_immediate] = STATE(679), - [sym__immediate_decimal] = STATE(680), - [sym_val_variable] = STATE(679), + [sym_cmd_identifier] = STATE(4539), + [sym__expression] = STATE(3845), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3830), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(807), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_env_var] = STATE(7436), + [sym_command] = STATE(4817), [sym_comment] = STATE(348), - [anon_sym_export] = ACTIONS(1500), - [anon_sym_alias] = ACTIONS(1500), - [anon_sym_let] = ACTIONS(1500), - [anon_sym_let_DASHenv] = ACTIONS(1500), - [anon_sym_mut] = ACTIONS(1500), - [anon_sym_const] = ACTIONS(1500), - [aux_sym_cmd_identifier_token1] = ACTIONS(1500), - [aux_sym_cmd_identifier_token2] = ACTIONS(1510), - [aux_sym_cmd_identifier_token3] = ACTIONS(1510), - [aux_sym_cmd_identifier_token4] = ACTIONS(1510), - [aux_sym_cmd_identifier_token5] = ACTIONS(1510), - [aux_sym_cmd_identifier_token6] = ACTIONS(1510), - [aux_sym_cmd_identifier_token7] = ACTIONS(1510), - [aux_sym_cmd_identifier_token8] = ACTIONS(1500), - [aux_sym_cmd_identifier_token9] = ACTIONS(1500), - [aux_sym_cmd_identifier_token10] = ACTIONS(1510), - [aux_sym_cmd_identifier_token11] = ACTIONS(1510), - [aux_sym_cmd_identifier_token12] = ACTIONS(1500), - [aux_sym_cmd_identifier_token13] = ACTIONS(1500), - [aux_sym_cmd_identifier_token14] = ACTIONS(1500), - [aux_sym_cmd_identifier_token15] = ACTIONS(1500), - [aux_sym_cmd_identifier_token16] = ACTIONS(1510), - [aux_sym_cmd_identifier_token17] = ACTIONS(1510), - [aux_sym_cmd_identifier_token18] = ACTIONS(1510), - [aux_sym_cmd_identifier_token19] = ACTIONS(1510), - [aux_sym_cmd_identifier_token20] = ACTIONS(1510), - [aux_sym_cmd_identifier_token21] = ACTIONS(1510), - [aux_sym_cmd_identifier_token22] = ACTIONS(1510), - [aux_sym_cmd_identifier_token23] = ACTIONS(1510), - [aux_sym_cmd_identifier_token24] = ACTIONS(1510), - [aux_sym_cmd_identifier_token25] = ACTIONS(1510), - [aux_sym_cmd_identifier_token26] = ACTIONS(1510), - [aux_sym_cmd_identifier_token27] = ACTIONS(1510), - [aux_sym_cmd_identifier_token28] = ACTIONS(1510), - [aux_sym_cmd_identifier_token29] = ACTIONS(1510), - [aux_sym_cmd_identifier_token30] = ACTIONS(1510), - [aux_sym_cmd_identifier_token31] = ACTIONS(1510), - [aux_sym_cmd_identifier_token32] = ACTIONS(1510), - [aux_sym_cmd_identifier_token33] = ACTIONS(1510), - [aux_sym_cmd_identifier_token34] = ACTIONS(1500), - [aux_sym_cmd_identifier_token35] = ACTIONS(1510), - [aux_sym_cmd_identifier_token36] = ACTIONS(1510), - [aux_sym_cmd_identifier_token37] = ACTIONS(1510), - [aux_sym_cmd_identifier_token38] = ACTIONS(1500), - [aux_sym_cmd_identifier_token39] = ACTIONS(1510), - [aux_sym_cmd_identifier_token40] = ACTIONS(1510), - [anon_sym_def] = ACTIONS(1500), - [anon_sym_export_DASHenv] = ACTIONS(1500), - [anon_sym_extern] = ACTIONS(1500), - [anon_sym_module] = ACTIONS(1500), - [anon_sym_use] = ACTIONS(1500), - [anon_sym_LPAREN] = ACTIONS(1500), - [anon_sym_COMMA] = ACTIONS(1510), - [anon_sym_DOLLAR] = ACTIONS(1317), - [anon_sym_error] = ACTIONS(1500), - [anon_sym_DASH2] = ACTIONS(1500), - [anon_sym_break] = ACTIONS(1500), - [anon_sym_continue] = ACTIONS(1500), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_in2] = ACTIONS(1500), - [anon_sym_loop] = ACTIONS(1500), - [anon_sym_make] = ACTIONS(1500), - [anon_sym_while] = ACTIONS(1500), - [anon_sym_do] = ACTIONS(1500), - [anon_sym_if] = ACTIONS(1500), - [anon_sym_else] = ACTIONS(1500), - [anon_sym_match] = ACTIONS(1500), - [anon_sym_RBRACE] = ACTIONS(1510), - [anon_sym_try] = ACTIONS(1500), - [anon_sym_catch] = ACTIONS(1500), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_source] = ACTIONS(1500), - [anon_sym_source_DASHenv] = ACTIONS(1500), - [anon_sym_register] = ACTIONS(1500), - [anon_sym_hide] = ACTIONS(1500), - [anon_sym_hide_DASHenv] = ACTIONS(1500), - [anon_sym_overlay] = ACTIONS(1500), - [anon_sym_as] = ACTIONS(1500), - [anon_sym_LPAREN2] = ACTIONS(1628), - [anon_sym_PLUS2] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1510), - [aux_sym__immediate_decimal_token1] = ACTIONS(1747), - [aux_sym__immediate_decimal_token3] = ACTIONS(1749), - [aux_sym__immediate_decimal_token4] = ACTIONS(1751), - [aux_sym__immediate_decimal_token5] = ACTIONS(1753), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1510), - [aux_sym__val_number_decimal_token1] = ACTIONS(1500), - [aux_sym__val_number_decimal_token2] = ACTIONS(1500), - [aux_sym__val_number_decimal_token3] = ACTIONS(1500), - [aux_sym__val_number_decimal_token4] = ACTIONS(1500), - [aux_sym__val_number_token1] = ACTIONS(1510), - [aux_sym__val_number_token2] = ACTIONS(1510), - [aux_sym__val_number_token3] = ACTIONS(1510), - [aux_sym__val_number_token4] = ACTIONS(1500), - [aux_sym__val_number_token5] = ACTIONS(1500), - [aux_sym__val_number_token6] = ACTIONS(1500), - [anon_sym_DQUOTE] = ACTIONS(1510), - [sym__str_single_quotes] = ACTIONS(1510), - [sym__str_back_ticks] = ACTIONS(1510), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1510), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1510), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1510), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1510), + [aux_sym_pipe_element_repeat2] = STATE(1180), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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), + [aux_sym_env_var_token1] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [349] = { - [sym__expr_parenthesized_immediate] = STATE(696), - [sym__immediate_decimal] = STATE(697), - [sym_val_variable] = STATE(696), + [sym_cmd_identifier] = STATE(4539), + [sym_ctrl_if] = STATE(4763), + [sym_block] = STATE(4771), + [sym__expression] = STATE(4771), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3838), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1177), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_command] = STATE(4771), [sym_comment] = STATE(349), - [anon_sym_export] = ACTIONS(1624), - [anon_sym_alias] = ACTIONS(1624), - [anon_sym_let] = ACTIONS(1624), - [anon_sym_let_DASHenv] = ACTIONS(1624), - [anon_sym_mut] = ACTIONS(1624), - [anon_sym_const] = ACTIONS(1624), - [aux_sym_cmd_identifier_token1] = ACTIONS(1624), - [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(1624), - [aux_sym_cmd_identifier_token9] = ACTIONS(1624), - [aux_sym_cmd_identifier_token10] = ACTIONS(1626), - [aux_sym_cmd_identifier_token11] = ACTIONS(1626), - [aux_sym_cmd_identifier_token12] = ACTIONS(1624), - [aux_sym_cmd_identifier_token13] = ACTIONS(1624), - [aux_sym_cmd_identifier_token14] = ACTIONS(1624), - [aux_sym_cmd_identifier_token15] = ACTIONS(1624), - [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(1626), - [aux_sym_cmd_identifier_token25] = ACTIONS(1626), - [aux_sym_cmd_identifier_token26] = ACTIONS(1626), - [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(1626), - [aux_sym_cmd_identifier_token32] = ACTIONS(1626), - [aux_sym_cmd_identifier_token33] = ACTIONS(1626), - [aux_sym_cmd_identifier_token34] = ACTIONS(1624), - [aux_sym_cmd_identifier_token35] = ACTIONS(1626), - [aux_sym_cmd_identifier_token36] = ACTIONS(1626), - [aux_sym_cmd_identifier_token37] = ACTIONS(1626), - [aux_sym_cmd_identifier_token38] = ACTIONS(1624), - [aux_sym_cmd_identifier_token39] = ACTIONS(1626), - [aux_sym_cmd_identifier_token40] = ACTIONS(1626), - [anon_sym_def] = ACTIONS(1624), - [anon_sym_export_DASHenv] = ACTIONS(1624), - [anon_sym_extern] = ACTIONS(1624), - [anon_sym_module] = ACTIONS(1624), - [anon_sym_use] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(1624), - [anon_sym_COMMA] = ACTIONS(1626), - [anon_sym_DOLLAR] = ACTIONS(1317), - [anon_sym_error] = ACTIONS(1624), - [anon_sym_DASH2] = ACTIONS(1624), - [anon_sym_break] = ACTIONS(1624), - [anon_sym_continue] = ACTIONS(1624), - [anon_sym_for] = ACTIONS(1624), - [anon_sym_in2] = ACTIONS(1624), - [anon_sym_loop] = ACTIONS(1624), - [anon_sym_make] = ACTIONS(1624), - [anon_sym_while] = ACTIONS(1624), - [anon_sym_do] = ACTIONS(1624), - [anon_sym_if] = ACTIONS(1624), - [anon_sym_else] = ACTIONS(1624), - [anon_sym_match] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1626), - [anon_sym_try] = ACTIONS(1624), - [anon_sym_catch] = ACTIONS(1624), - [anon_sym_return] = ACTIONS(1624), - [anon_sym_source] = ACTIONS(1624), - [anon_sym_source_DASHenv] = ACTIONS(1624), - [anon_sym_register] = ACTIONS(1624), - [anon_sym_hide] = ACTIONS(1624), - [anon_sym_hide_DASHenv] = ACTIONS(1624), - [anon_sym_overlay] = ACTIONS(1624), - [anon_sym_as] = ACTIONS(1624), - [anon_sym_LPAREN2] = ACTIONS(1628), - [anon_sym_PLUS2] = ACTIONS(1624), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1626), - [aux_sym__immediate_decimal_token1] = ACTIONS(1747), - [aux_sym__immediate_decimal_token3] = ACTIONS(1749), - [aux_sym__immediate_decimal_token4] = ACTIONS(1751), - [aux_sym__immediate_decimal_token5] = ACTIONS(1753), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1626), - [aux_sym__val_number_decimal_token1] = ACTIONS(1624), - [aux_sym__val_number_decimal_token2] = ACTIONS(1624), - [aux_sym__val_number_decimal_token3] = ACTIONS(1624), - [aux_sym__val_number_decimal_token4] = ACTIONS(1624), - [aux_sym__val_number_token1] = ACTIONS(1626), - [aux_sym__val_number_token2] = ACTIONS(1626), - [aux_sym__val_number_token3] = ACTIONS(1626), - [aux_sym__val_number_token4] = ACTIONS(1624), - [aux_sym__val_number_token5] = ACTIONS(1624), - [aux_sym__val_number_token6] = ACTIONS(1624), - [anon_sym_DQUOTE] = ACTIONS(1626), - [sym__str_single_quotes] = ACTIONS(1626), - [sym__str_back_ticks] = ACTIONS(1626), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1626), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1626), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1626), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1626), + [aux_sym_cmd_identifier_token1] = ACTIONS(359), + [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(359), + [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(359), + [aux_sym_cmd_identifier_token14] = ACTIONS(361), + [aux_sym_cmd_identifier_token15] = ACTIONS(359), + [aux_sym_cmd_identifier_token16] = ACTIONS(361), + [aux_sym_cmd_identifier_token17] = ACTIONS(361), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [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(361), + [aux_sym_cmd_identifier_token25] = ACTIONS(361), + [aux_sym_cmd_identifier_token26] = ACTIONS(361), + [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(361), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(361), + [aux_sym_cmd_identifier_token34] = ACTIONS(359), + [aux_sym_cmd_identifier_token35] = ACTIONS(361), + [aux_sym_cmd_identifier_token36] = ACTIONS(361), + [aux_sym_cmd_identifier_token37] = ACTIONS(361), + [aux_sym_cmd_identifier_token38] = ACTIONS(359), + [aux_sym_cmd_identifier_token39] = ACTIONS(361), + [aux_sym_cmd_identifier_token40] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1471), + [aux_sym__val_number_decimal_token2] = ACTIONS(1473), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1477), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = 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_CARET] = ACTIONS(243), + [aux_sym_command_token1] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [350] = { [sym_comment] = STATE(350), - [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), - [aux_sym_cmd_identifier_token37] = ACTIONS(1755), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1755), - [aux_sym_cmd_identifier_token40] = ACTIONS(1755), - [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(1755), - [anon_sym_COMMA] = ACTIONS(1755), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in2] = 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_RBRACE] = 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_as] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_PLUS2] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1755), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT] = ACTIONS(1759), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(1761), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1755), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1755), - [aux_sym__val_number_decimal_token3] = ACTIONS(1755), - [aux_sym__val_number_decimal_token4] = ACTIONS(1755), - [aux_sym__val_number_token1] = ACTIONS(1755), - [aux_sym__val_number_token2] = ACTIONS(1755), - [aux_sym__val_number_token3] = ACTIONS(1755), - [aux_sym__val_number_token4] = ACTIONS(1755), - [aux_sym__val_number_token5] = ACTIONS(1755), - [aux_sym__val_number_token6] = ACTIONS(1755), - [anon_sym_DQUOTE] = ACTIONS(1755), - [sym__str_single_quotes] = ACTIONS(1755), - [sym__str_back_ticks] = ACTIONS(1755), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1755), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1755), - [sym__entry_separator] = ACTIONS(1757), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1755), + [anon_sym_export] = ACTIONS(1512), + [anon_sym_alias] = ACTIONS(1512), + [anon_sym_let] = ACTIONS(1512), + [anon_sym_let_DASHenv] = ACTIONS(1512), + [anon_sym_mut] = ACTIONS(1512), + [anon_sym_const] = ACTIONS(1512), + [aux_sym_cmd_identifier_token1] = ACTIONS(1512), + [aux_sym_cmd_identifier_token2] = ACTIONS(1512), + [aux_sym_cmd_identifier_token3] = ACTIONS(1512), + [aux_sym_cmd_identifier_token4] = ACTIONS(1512), + [aux_sym_cmd_identifier_token5] = ACTIONS(1512), + [aux_sym_cmd_identifier_token6] = ACTIONS(1512), + [aux_sym_cmd_identifier_token7] = ACTIONS(1512), + [aux_sym_cmd_identifier_token8] = ACTIONS(1512), + [aux_sym_cmd_identifier_token9] = ACTIONS(1512), + [aux_sym_cmd_identifier_token10] = ACTIONS(1512), + [aux_sym_cmd_identifier_token11] = ACTIONS(1512), + [aux_sym_cmd_identifier_token12] = ACTIONS(1512), + [aux_sym_cmd_identifier_token13] = ACTIONS(1512), + [aux_sym_cmd_identifier_token14] = ACTIONS(1512), + [aux_sym_cmd_identifier_token15] = ACTIONS(1512), + [aux_sym_cmd_identifier_token16] = ACTIONS(1512), + [aux_sym_cmd_identifier_token17] = ACTIONS(1512), + [aux_sym_cmd_identifier_token18] = ACTIONS(1512), + [aux_sym_cmd_identifier_token19] = ACTIONS(1512), + [aux_sym_cmd_identifier_token20] = ACTIONS(1512), + [aux_sym_cmd_identifier_token21] = ACTIONS(1512), + [aux_sym_cmd_identifier_token22] = ACTIONS(1512), + [aux_sym_cmd_identifier_token23] = ACTIONS(1512), + [aux_sym_cmd_identifier_token24] = ACTIONS(1512), + [aux_sym_cmd_identifier_token25] = ACTIONS(1512), + [aux_sym_cmd_identifier_token26] = ACTIONS(1512), + [aux_sym_cmd_identifier_token27] = ACTIONS(1512), + [aux_sym_cmd_identifier_token28] = ACTIONS(1512), + [aux_sym_cmd_identifier_token29] = ACTIONS(1512), + [aux_sym_cmd_identifier_token30] = ACTIONS(1512), + [aux_sym_cmd_identifier_token31] = ACTIONS(1512), + [aux_sym_cmd_identifier_token32] = ACTIONS(1512), + [aux_sym_cmd_identifier_token33] = ACTIONS(1512), + [aux_sym_cmd_identifier_token34] = ACTIONS(1512), + [aux_sym_cmd_identifier_token35] = ACTIONS(1512), + [aux_sym_cmd_identifier_token36] = ACTIONS(1512), + [aux_sym_cmd_identifier_token37] = ACTIONS(1512), + [aux_sym_cmd_identifier_token38] = ACTIONS(1512), + [aux_sym_cmd_identifier_token39] = ACTIONS(1512), + [aux_sym_cmd_identifier_token40] = ACTIONS(1512), + [anon_sym_def] = ACTIONS(1512), + [anon_sym_export_DASHenv] = ACTIONS(1512), + [anon_sym_extern] = ACTIONS(1512), + [anon_sym_module] = ACTIONS(1512), + [anon_sym_use] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_COMMA] = ACTIONS(1512), + [anon_sym_DOLLAR] = ACTIONS(1512), + [anon_sym_error] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_break] = ACTIONS(1512), + [anon_sym_continue] = ACTIONS(1512), + [anon_sym_for] = ACTIONS(1512), + [anon_sym_in2] = ACTIONS(1512), + [anon_sym_loop] = ACTIONS(1512), + [anon_sym_make] = ACTIONS(1512), + [anon_sym_while] = ACTIONS(1512), + [anon_sym_do] = ACTIONS(1512), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_else] = ACTIONS(1512), + [anon_sym_match] = ACTIONS(1512), + [anon_sym_RBRACE] = ACTIONS(1512), + [anon_sym_try] = ACTIONS(1512), + [anon_sym_catch] = ACTIONS(1512), + [anon_sym_return] = ACTIONS(1512), + [anon_sym_source] = ACTIONS(1512), + [anon_sym_source_DASHenv] = ACTIONS(1512), + [anon_sym_hide] = ACTIONS(1512), + [anon_sym_hide_DASHenv] = ACTIONS(1512), + [anon_sym_overlay] = ACTIONS(1512), + [anon_sym_as] = ACTIONS(1512), + [anon_sym_LPAREN2] = ACTIONS(1514), + [anon_sym_PLUS2] = ACTIONS(1512), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1512), + [aux_sym__val_number_decimal_token1] = ACTIONS(1512), + [aux_sym__val_number_decimal_token2] = ACTIONS(1512), + [aux_sym__val_number_decimal_token3] = ACTIONS(1512), + [aux_sym__val_number_decimal_token4] = ACTIONS(1512), + [aux_sym__val_number_token1] = ACTIONS(1512), + [aux_sym__val_number_token2] = ACTIONS(1512), + [aux_sym__val_number_token3] = ACTIONS(1512), + [aux_sym__val_number_token4] = ACTIONS(1512), + [aux_sym__val_number_token5] = ACTIONS(1512), + [aux_sym__val_number_token6] = ACTIONS(1512), + [sym_filesize_unit] = ACTIONS(1512), + [sym_duration_unit] = ACTIONS(1512), + [anon_sym_DQUOTE] = ACTIONS(1512), + [sym__str_single_quotes] = ACTIONS(1512), + [sym__str_back_ticks] = ACTIONS(1512), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1512), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1512), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1512), + [sym__entry_separator] = ACTIONS(1514), + [anon_sym_register] = ACTIONS(1512), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1512), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1757), + [sym_raw_string_begin] = ACTIONS(1514), }, [351] = { - [sym__expr_parenthesized_immediate] = STATE(698), - [sym__immediate_decimal] = STATE(703), - [sym_val_variable] = STATE(698), [sym_comment] = STATE(351), - [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(1656), - [aux_sym_cmd_identifier_token3] = ACTIONS(1656), - [aux_sym_cmd_identifier_token4] = ACTIONS(1656), - [aux_sym_cmd_identifier_token5] = ACTIONS(1656), - [aux_sym_cmd_identifier_token6] = ACTIONS(1656), - [aux_sym_cmd_identifier_token7] = ACTIONS(1656), - [aux_sym_cmd_identifier_token8] = ACTIONS(1654), - [aux_sym_cmd_identifier_token9] = ACTIONS(1654), - [aux_sym_cmd_identifier_token10] = ACTIONS(1656), - [aux_sym_cmd_identifier_token11] = ACTIONS(1656), - [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(1656), - [aux_sym_cmd_identifier_token17] = ACTIONS(1656), - [aux_sym_cmd_identifier_token18] = ACTIONS(1656), - [aux_sym_cmd_identifier_token19] = ACTIONS(1656), - [aux_sym_cmd_identifier_token20] = ACTIONS(1656), - [aux_sym_cmd_identifier_token21] = ACTIONS(1656), - [aux_sym_cmd_identifier_token22] = ACTIONS(1656), - [aux_sym_cmd_identifier_token23] = ACTIONS(1656), - [aux_sym_cmd_identifier_token24] = ACTIONS(1656), - [aux_sym_cmd_identifier_token25] = ACTIONS(1656), - [aux_sym_cmd_identifier_token26] = ACTIONS(1656), - [aux_sym_cmd_identifier_token27] = ACTIONS(1656), - [aux_sym_cmd_identifier_token28] = ACTIONS(1656), - [aux_sym_cmd_identifier_token29] = ACTIONS(1656), - [aux_sym_cmd_identifier_token30] = ACTIONS(1656), - [aux_sym_cmd_identifier_token31] = ACTIONS(1656), - [aux_sym_cmd_identifier_token32] = ACTIONS(1656), - [aux_sym_cmd_identifier_token33] = ACTIONS(1656), - [aux_sym_cmd_identifier_token34] = ACTIONS(1654), - [aux_sym_cmd_identifier_token35] = ACTIONS(1656), - [aux_sym_cmd_identifier_token36] = ACTIONS(1656), - [aux_sym_cmd_identifier_token37] = ACTIONS(1656), - [aux_sym_cmd_identifier_token38] = ACTIONS(1654), - [aux_sym_cmd_identifier_token39] = ACTIONS(1656), - [aux_sym_cmd_identifier_token40] = ACTIONS(1656), - [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_LPAREN] = ACTIONS(1654), - [anon_sym_COMMA] = ACTIONS(1656), - [anon_sym_DOLLAR] = ACTIONS(1317), - [anon_sym_error] = ACTIONS(1654), - [anon_sym_DASH2] = ACTIONS(1654), - [anon_sym_break] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(1654), - [anon_sym_for] = ACTIONS(1654), - [anon_sym_in2] = ACTIONS(1654), - [anon_sym_loop] = ACTIONS(1654), - [anon_sym_make] = ACTIONS(1654), - [anon_sym_while] = ACTIONS(1654), - [anon_sym_do] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1654), - [anon_sym_else] = ACTIONS(1654), - [anon_sym_match] = ACTIONS(1654), - [anon_sym_RBRACE] = ACTIONS(1656), - [anon_sym_try] = ACTIONS(1654), - [anon_sym_catch] = 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_as] = ACTIONS(1654), - [anon_sym_LPAREN2] = ACTIONS(1628), - [anon_sym_PLUS2] = ACTIONS(1654), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1656), - [aux_sym__immediate_decimal_token1] = ACTIONS(1747), - [aux_sym__immediate_decimal_token3] = ACTIONS(1749), - [aux_sym__immediate_decimal_token4] = ACTIONS(1751), - [aux_sym__immediate_decimal_token5] = ACTIONS(1753), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1656), - [aux_sym__val_number_decimal_token1] = ACTIONS(1654), - [aux_sym__val_number_decimal_token2] = ACTIONS(1654), - [aux_sym__val_number_decimal_token3] = ACTIONS(1654), - [aux_sym__val_number_decimal_token4] = ACTIONS(1654), - [aux_sym__val_number_token1] = ACTIONS(1656), - [aux_sym__val_number_token2] = ACTIONS(1656), - [aux_sym__val_number_token3] = ACTIONS(1656), - [aux_sym__val_number_token4] = ACTIONS(1654), - [aux_sym__val_number_token5] = ACTIONS(1654), - [aux_sym__val_number_token6] = ACTIONS(1654), - [anon_sym_DQUOTE] = ACTIONS(1656), - [sym__str_single_quotes] = ACTIONS(1656), - [sym__str_back_ticks] = ACTIONS(1656), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1656), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1656), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1656), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1656), + [anon_sym_export] = ACTIONS(1693), + [anon_sym_alias] = ACTIONS(1693), + [anon_sym_let] = ACTIONS(1693), + [anon_sym_let_DASHenv] = ACTIONS(1693), + [anon_sym_mut] = ACTIONS(1693), + [anon_sym_const] = ACTIONS(1693), + [aux_sym_cmd_identifier_token1] = ACTIONS(1693), + [aux_sym_cmd_identifier_token2] = ACTIONS(1695), + [aux_sym_cmd_identifier_token3] = ACTIONS(1695), + [aux_sym_cmd_identifier_token4] = ACTIONS(1695), + [aux_sym_cmd_identifier_token5] = ACTIONS(1695), + [aux_sym_cmd_identifier_token6] = ACTIONS(1695), + [aux_sym_cmd_identifier_token7] = ACTIONS(1695), + [aux_sym_cmd_identifier_token8] = ACTIONS(1693), + [aux_sym_cmd_identifier_token9] = ACTIONS(1693), + [aux_sym_cmd_identifier_token10] = ACTIONS(1695), + [aux_sym_cmd_identifier_token11] = ACTIONS(1695), + [aux_sym_cmd_identifier_token12] = ACTIONS(1693), + [aux_sym_cmd_identifier_token13] = ACTIONS(1693), + [aux_sym_cmd_identifier_token14] = ACTIONS(1693), + [aux_sym_cmd_identifier_token15] = ACTIONS(1693), + [aux_sym_cmd_identifier_token16] = ACTIONS(1695), + [aux_sym_cmd_identifier_token17] = ACTIONS(1695), + [aux_sym_cmd_identifier_token18] = ACTIONS(1695), + [aux_sym_cmd_identifier_token19] = ACTIONS(1695), + [aux_sym_cmd_identifier_token20] = ACTIONS(1695), + [aux_sym_cmd_identifier_token21] = ACTIONS(1695), + [aux_sym_cmd_identifier_token22] = ACTIONS(1695), + [aux_sym_cmd_identifier_token23] = ACTIONS(1695), + [aux_sym_cmd_identifier_token24] = ACTIONS(1695), + [aux_sym_cmd_identifier_token25] = ACTIONS(1695), + [aux_sym_cmd_identifier_token26] = ACTIONS(1695), + [aux_sym_cmd_identifier_token27] = ACTIONS(1695), + [aux_sym_cmd_identifier_token28] = ACTIONS(1695), + [aux_sym_cmd_identifier_token29] = ACTIONS(1695), + [aux_sym_cmd_identifier_token30] = ACTIONS(1695), + [aux_sym_cmd_identifier_token31] = ACTIONS(1695), + [aux_sym_cmd_identifier_token32] = ACTIONS(1695), + [aux_sym_cmd_identifier_token33] = ACTIONS(1695), + [aux_sym_cmd_identifier_token34] = ACTIONS(1693), + [aux_sym_cmd_identifier_token35] = ACTIONS(1695), + [aux_sym_cmd_identifier_token36] = ACTIONS(1695), + [aux_sym_cmd_identifier_token37] = ACTIONS(1695), + [aux_sym_cmd_identifier_token38] = ACTIONS(1693), + [aux_sym_cmd_identifier_token39] = ACTIONS(1695), + [aux_sym_cmd_identifier_token40] = ACTIONS(1695), + [anon_sym_def] = ACTIONS(1693), + [anon_sym_export_DASHenv] = ACTIONS(1693), + [anon_sym_extern] = ACTIONS(1693), + [anon_sym_module] = ACTIONS(1693), + [anon_sym_use] = ACTIONS(1693), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_COMMA] = ACTIONS(1695), + [anon_sym_DOLLAR] = ACTIONS(1693), + [anon_sym_error] = ACTIONS(1693), + [anon_sym_DASH2] = ACTIONS(1693), + [anon_sym_break] = ACTIONS(1693), + [anon_sym_continue] = ACTIONS(1693), + [anon_sym_for] = ACTIONS(1693), + [anon_sym_in2] = ACTIONS(1693), + [anon_sym_loop] = ACTIONS(1693), + [anon_sym_make] = ACTIONS(1693), + [anon_sym_while] = ACTIONS(1693), + [anon_sym_do] = ACTIONS(1693), + [anon_sym_if] = ACTIONS(1693), + [anon_sym_else] = ACTIONS(1693), + [anon_sym_match] = ACTIONS(1693), + [anon_sym_RBRACE] = ACTIONS(1695), + [anon_sym_try] = ACTIONS(1693), + [anon_sym_catch] = ACTIONS(1693), + [anon_sym_return] = ACTIONS(1693), + [anon_sym_source] = ACTIONS(1693), + [anon_sym_source_DASHenv] = ACTIONS(1693), + [anon_sym_hide] = ACTIONS(1693), + [anon_sym_hide_DASHenv] = ACTIONS(1693), + [anon_sym_overlay] = ACTIONS(1693), + [anon_sym_as] = ACTIONS(1693), + [anon_sym_LPAREN2] = ACTIONS(1695), + [anon_sym_PLUS2] = ACTIONS(1693), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1695), + [anon_sym_DOT_DOT2] = ACTIONS(1693), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1695), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1695), + [aux_sym__immediate_decimal_token1] = ACTIONS(1757), + [aux_sym__immediate_decimal_token2] = ACTIONS(1759), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1695), + [aux_sym__val_number_decimal_token1] = ACTIONS(1693), + [aux_sym__val_number_decimal_token2] = ACTIONS(1695), + [aux_sym__val_number_decimal_token3] = ACTIONS(1695), + [aux_sym__val_number_decimal_token4] = ACTIONS(1695), + [aux_sym__val_number_token1] = ACTIONS(1695), + [aux_sym__val_number_token2] = ACTIONS(1695), + [aux_sym__val_number_token3] = ACTIONS(1695), + [aux_sym__val_number_token4] = ACTIONS(1693), + [aux_sym__val_number_token5] = ACTIONS(1693), + [aux_sym__val_number_token6] = ACTIONS(1693), + [anon_sym_DQUOTE] = ACTIONS(1695), + [sym__str_single_quotes] = ACTIONS(1695), + [sym__str_back_ticks] = ACTIONS(1695), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1695), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1695), + [anon_sym_register] = ACTIONS(1693), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1695), }, [352] = { - [sym__expr_parenthesized_immediate] = STATE(705), - [sym__immediate_decimal] = STATE(706), - [sym_val_variable] = STATE(705), + [sym_cell_path] = STATE(512), + [sym_path] = STATE(445), [sym_comment] = STATE(352), - [anon_sym_export] = ACTIONS(1604), - [anon_sym_alias] = ACTIONS(1604), - [anon_sym_let] = ACTIONS(1604), - [anon_sym_let_DASHenv] = ACTIONS(1604), - [anon_sym_mut] = ACTIONS(1604), - [anon_sym_const] = ACTIONS(1604), - [aux_sym_cmd_identifier_token1] = ACTIONS(1604), - [aux_sym_cmd_identifier_token2] = ACTIONS(1612), - [aux_sym_cmd_identifier_token3] = ACTIONS(1612), - [aux_sym_cmd_identifier_token4] = ACTIONS(1612), - [aux_sym_cmd_identifier_token5] = ACTIONS(1612), - [aux_sym_cmd_identifier_token6] = ACTIONS(1612), - [aux_sym_cmd_identifier_token7] = ACTIONS(1612), - [aux_sym_cmd_identifier_token8] = ACTIONS(1604), - [aux_sym_cmd_identifier_token9] = ACTIONS(1604), - [aux_sym_cmd_identifier_token10] = ACTIONS(1612), - [aux_sym_cmd_identifier_token11] = ACTIONS(1612), - [aux_sym_cmd_identifier_token12] = ACTIONS(1604), - [aux_sym_cmd_identifier_token13] = ACTIONS(1604), - [aux_sym_cmd_identifier_token14] = ACTIONS(1604), - [aux_sym_cmd_identifier_token15] = ACTIONS(1604), - [aux_sym_cmd_identifier_token16] = ACTIONS(1612), - [aux_sym_cmd_identifier_token17] = ACTIONS(1612), - [aux_sym_cmd_identifier_token18] = ACTIONS(1612), - [aux_sym_cmd_identifier_token19] = ACTIONS(1612), - [aux_sym_cmd_identifier_token20] = ACTIONS(1612), - [aux_sym_cmd_identifier_token21] = ACTIONS(1612), - [aux_sym_cmd_identifier_token22] = ACTIONS(1612), - [aux_sym_cmd_identifier_token23] = ACTIONS(1612), - [aux_sym_cmd_identifier_token24] = ACTIONS(1612), - [aux_sym_cmd_identifier_token25] = ACTIONS(1612), - [aux_sym_cmd_identifier_token26] = ACTIONS(1612), - [aux_sym_cmd_identifier_token27] = ACTIONS(1612), - [aux_sym_cmd_identifier_token28] = ACTIONS(1612), - [aux_sym_cmd_identifier_token29] = ACTIONS(1612), - [aux_sym_cmd_identifier_token30] = ACTIONS(1612), - [aux_sym_cmd_identifier_token31] = ACTIONS(1612), - [aux_sym_cmd_identifier_token32] = ACTIONS(1612), - [aux_sym_cmd_identifier_token33] = ACTIONS(1612), - [aux_sym_cmd_identifier_token34] = ACTIONS(1604), - [aux_sym_cmd_identifier_token35] = ACTIONS(1612), - [aux_sym_cmd_identifier_token36] = ACTIONS(1612), - [aux_sym_cmd_identifier_token37] = ACTIONS(1612), - [aux_sym_cmd_identifier_token38] = ACTIONS(1604), - [aux_sym_cmd_identifier_token39] = ACTIONS(1612), - [aux_sym_cmd_identifier_token40] = ACTIONS(1612), - [anon_sym_def] = ACTIONS(1604), - [anon_sym_export_DASHenv] = ACTIONS(1604), - [anon_sym_extern] = ACTIONS(1604), - [anon_sym_module] = ACTIONS(1604), - [anon_sym_use] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1604), - [anon_sym_COMMA] = ACTIONS(1612), - [anon_sym_DOLLAR] = ACTIONS(1317), - [anon_sym_error] = ACTIONS(1604), - [anon_sym_DASH2] = ACTIONS(1604), - [anon_sym_break] = ACTIONS(1604), - [anon_sym_continue] = ACTIONS(1604), - [anon_sym_for] = ACTIONS(1604), - [anon_sym_in2] = ACTIONS(1604), - [anon_sym_loop] = ACTIONS(1604), - [anon_sym_make] = ACTIONS(1604), - [anon_sym_while] = ACTIONS(1604), - [anon_sym_do] = ACTIONS(1604), - [anon_sym_if] = ACTIONS(1604), - [anon_sym_else] = ACTIONS(1604), - [anon_sym_match] = ACTIONS(1604), - [anon_sym_RBRACE] = ACTIONS(1612), - [anon_sym_try] = ACTIONS(1604), - [anon_sym_catch] = ACTIONS(1604), - [anon_sym_return] = ACTIONS(1604), - [anon_sym_source] = ACTIONS(1604), - [anon_sym_source_DASHenv] = ACTIONS(1604), - [anon_sym_register] = ACTIONS(1604), - [anon_sym_hide] = ACTIONS(1604), - [anon_sym_hide_DASHenv] = ACTIONS(1604), - [anon_sym_overlay] = ACTIONS(1604), - [anon_sym_as] = ACTIONS(1604), - [anon_sym_LPAREN2] = ACTIONS(1628), - [anon_sym_PLUS2] = ACTIONS(1604), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1612), - [aux_sym__immediate_decimal_token1] = ACTIONS(1747), - [aux_sym__immediate_decimal_token3] = ACTIONS(1749), - [aux_sym__immediate_decimal_token4] = ACTIONS(1751), - [aux_sym__immediate_decimal_token5] = ACTIONS(1753), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1612), - [aux_sym__val_number_decimal_token1] = ACTIONS(1604), - [aux_sym__val_number_decimal_token2] = ACTIONS(1604), - [aux_sym__val_number_decimal_token3] = ACTIONS(1604), - [aux_sym__val_number_decimal_token4] = ACTIONS(1604), - [aux_sym__val_number_token1] = ACTIONS(1612), - [aux_sym__val_number_token2] = ACTIONS(1612), - [aux_sym__val_number_token3] = ACTIONS(1612), - [aux_sym__val_number_token4] = ACTIONS(1604), - [aux_sym__val_number_token5] = ACTIONS(1604), - [aux_sym__val_number_token6] = ACTIONS(1604), - [anon_sym_DQUOTE] = ACTIONS(1612), - [sym__str_single_quotes] = ACTIONS(1612), - [sym__str_back_ticks] = ACTIONS(1612), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1612), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1612), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1612), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1612), + [aux_sym_cell_path_repeat1] = STATE(384), + [anon_sym_export] = ACTIONS(1666), + [anon_sym_alias] = ACTIONS(1666), + [anon_sym_let] = ACTIONS(1666), + [anon_sym_let_DASHenv] = ACTIONS(1666), + [anon_sym_mut] = ACTIONS(1666), + [anon_sym_const] = ACTIONS(1666), + [aux_sym_cmd_identifier_token1] = ACTIONS(1666), + [aux_sym_cmd_identifier_token2] = ACTIONS(1668), + [aux_sym_cmd_identifier_token3] = ACTIONS(1668), + [aux_sym_cmd_identifier_token4] = ACTIONS(1668), + [aux_sym_cmd_identifier_token5] = ACTIONS(1668), + [aux_sym_cmd_identifier_token6] = ACTIONS(1668), + [aux_sym_cmd_identifier_token7] = ACTIONS(1668), + [aux_sym_cmd_identifier_token8] = ACTIONS(1666), + [aux_sym_cmd_identifier_token9] = ACTIONS(1666), + [aux_sym_cmd_identifier_token10] = ACTIONS(1668), + [aux_sym_cmd_identifier_token11] = ACTIONS(1668), + [aux_sym_cmd_identifier_token12] = ACTIONS(1666), + [aux_sym_cmd_identifier_token13] = ACTIONS(1666), + [aux_sym_cmd_identifier_token14] = ACTIONS(1666), + [aux_sym_cmd_identifier_token15] = ACTIONS(1666), + [aux_sym_cmd_identifier_token16] = ACTIONS(1668), + [aux_sym_cmd_identifier_token17] = ACTIONS(1668), + [aux_sym_cmd_identifier_token18] = ACTIONS(1668), + [aux_sym_cmd_identifier_token19] = ACTIONS(1668), + [aux_sym_cmd_identifier_token20] = ACTIONS(1668), + [aux_sym_cmd_identifier_token21] = ACTIONS(1668), + [aux_sym_cmd_identifier_token22] = ACTIONS(1668), + [aux_sym_cmd_identifier_token23] = ACTIONS(1668), + [aux_sym_cmd_identifier_token24] = ACTIONS(1668), + [aux_sym_cmd_identifier_token25] = ACTIONS(1668), + [aux_sym_cmd_identifier_token26] = ACTIONS(1668), + [aux_sym_cmd_identifier_token27] = ACTIONS(1668), + [aux_sym_cmd_identifier_token28] = ACTIONS(1668), + [aux_sym_cmd_identifier_token29] = ACTIONS(1668), + [aux_sym_cmd_identifier_token30] = ACTIONS(1668), + [aux_sym_cmd_identifier_token31] = ACTIONS(1668), + [aux_sym_cmd_identifier_token32] = ACTIONS(1668), + [aux_sym_cmd_identifier_token33] = ACTIONS(1668), + [aux_sym_cmd_identifier_token34] = ACTIONS(1666), + [aux_sym_cmd_identifier_token35] = ACTIONS(1668), + [aux_sym_cmd_identifier_token36] = ACTIONS(1668), + [aux_sym_cmd_identifier_token37] = ACTIONS(1668), + [aux_sym_cmd_identifier_token38] = ACTIONS(1666), + [aux_sym_cmd_identifier_token39] = ACTIONS(1668), + [aux_sym_cmd_identifier_token40] = ACTIONS(1668), + [anon_sym_def] = ACTIONS(1666), + [anon_sym_export_DASHenv] = ACTIONS(1666), + [anon_sym_extern] = ACTIONS(1666), + [anon_sym_module] = ACTIONS(1666), + [anon_sym_use] = ACTIONS(1666), + [anon_sym_LPAREN] = ACTIONS(1668), + [anon_sym_COMMA] = ACTIONS(1668), + [anon_sym_DOLLAR] = ACTIONS(1666), + [anon_sym_error] = ACTIONS(1666), + [anon_sym_DASH2] = ACTIONS(1666), + [anon_sym_break] = ACTIONS(1666), + [anon_sym_continue] = ACTIONS(1666), + [anon_sym_for] = ACTIONS(1666), + [anon_sym_in2] = ACTIONS(1666), + [anon_sym_loop] = ACTIONS(1666), + [anon_sym_make] = ACTIONS(1666), + [anon_sym_while] = ACTIONS(1666), + [anon_sym_do] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_else] = ACTIONS(1666), + [anon_sym_match] = ACTIONS(1666), + [anon_sym_RBRACE] = ACTIONS(1668), + [anon_sym_try] = ACTIONS(1666), + [anon_sym_catch] = ACTIONS(1666), + [anon_sym_return] = ACTIONS(1666), + [anon_sym_source] = ACTIONS(1666), + [anon_sym_source_DASHenv] = ACTIONS(1666), + [anon_sym_hide] = ACTIONS(1666), + [anon_sym_hide_DASHenv] = ACTIONS(1666), + [anon_sym_overlay] = ACTIONS(1666), + [anon_sym_as] = ACTIONS(1666), + [anon_sym_PLUS2] = ACTIONS(1666), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1668), + [anon_sym_DOT_DOT2] = ACTIONS(1666), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1668), + [aux_sym__val_number_decimal_token1] = ACTIONS(1666), + [aux_sym__val_number_decimal_token2] = ACTIONS(1668), + [aux_sym__val_number_decimal_token3] = ACTIONS(1668), + [aux_sym__val_number_decimal_token4] = ACTIONS(1668), + [aux_sym__val_number_token1] = ACTIONS(1668), + [aux_sym__val_number_token2] = ACTIONS(1668), + [aux_sym__val_number_token3] = ACTIONS(1668), + [aux_sym__val_number_token4] = ACTIONS(1666), + [aux_sym__val_number_token5] = ACTIONS(1666), + [aux_sym__val_number_token6] = ACTIONS(1666), + [anon_sym_DQUOTE] = ACTIONS(1668), + [sym__str_single_quotes] = ACTIONS(1668), + [sym__str_back_ticks] = ACTIONS(1668), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1668), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1668), + [anon_sym_register] = ACTIONS(1666), + [anon_sym_DOT2] = ACTIONS(1761), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1668), }, [353] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if] = STATE(4892), - [sym_block] = STATE(4893), - [sym__expression] = STATE(4893), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3876), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1197), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_command] = STATE(4893), + [sym_path] = STATE(411), [sym_comment] = STATE(353), - [aux_sym_cmd_identifier_token1] = ACTIONS(365), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(365), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(365), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(365), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(367), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(367), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(367), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(367), - [aux_sym_cmd_identifier_token34] = ACTIONS(365), - [aux_sym_cmd_identifier_token35] = ACTIONS(367), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [aux_sym_cmd_identifier_token37] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(365), - [aux_sym_cmd_identifier_token39] = ACTIONS(367), - [aux_sym_cmd_identifier_token40] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_if] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1763), - [aux_sym__val_number_decimal_token2] = ACTIONS(1765), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1769), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_cell_path_repeat1] = STATE(354), + [anon_sym_export] = ACTIONS(942), + [anon_sym_alias] = ACTIONS(942), + [anon_sym_let] = ACTIONS(942), + [anon_sym_let_DASHenv] = ACTIONS(942), + [anon_sym_mut] = ACTIONS(942), + [anon_sym_const] = ACTIONS(942), + [aux_sym_cmd_identifier_token1] = ACTIONS(942), + [aux_sym_cmd_identifier_token2] = ACTIONS(942), + [aux_sym_cmd_identifier_token3] = ACTIONS(942), + [aux_sym_cmd_identifier_token4] = ACTIONS(942), + [aux_sym_cmd_identifier_token5] = ACTIONS(942), + [aux_sym_cmd_identifier_token6] = ACTIONS(942), + [aux_sym_cmd_identifier_token7] = ACTIONS(942), + [aux_sym_cmd_identifier_token8] = ACTIONS(942), + [aux_sym_cmd_identifier_token9] = ACTIONS(942), + [aux_sym_cmd_identifier_token10] = ACTIONS(942), + [aux_sym_cmd_identifier_token11] = ACTIONS(942), + [aux_sym_cmd_identifier_token12] = ACTIONS(942), + [aux_sym_cmd_identifier_token13] = ACTIONS(942), + [aux_sym_cmd_identifier_token14] = ACTIONS(942), + [aux_sym_cmd_identifier_token15] = ACTIONS(942), + [aux_sym_cmd_identifier_token16] = ACTIONS(942), + [aux_sym_cmd_identifier_token17] = ACTIONS(942), + [aux_sym_cmd_identifier_token18] = ACTIONS(942), + [aux_sym_cmd_identifier_token19] = ACTIONS(942), + [aux_sym_cmd_identifier_token20] = ACTIONS(942), + [aux_sym_cmd_identifier_token21] = ACTIONS(942), + [aux_sym_cmd_identifier_token22] = ACTIONS(942), + [aux_sym_cmd_identifier_token23] = ACTIONS(942), + [aux_sym_cmd_identifier_token24] = ACTIONS(942), + [aux_sym_cmd_identifier_token25] = ACTIONS(942), + [aux_sym_cmd_identifier_token26] = ACTIONS(942), + [aux_sym_cmd_identifier_token27] = ACTIONS(942), + [aux_sym_cmd_identifier_token28] = ACTIONS(942), + [aux_sym_cmd_identifier_token29] = ACTIONS(942), + [aux_sym_cmd_identifier_token30] = ACTIONS(942), + [aux_sym_cmd_identifier_token31] = ACTIONS(942), + [aux_sym_cmd_identifier_token32] = ACTIONS(942), + [aux_sym_cmd_identifier_token33] = ACTIONS(942), + [aux_sym_cmd_identifier_token34] = ACTIONS(942), + [aux_sym_cmd_identifier_token35] = ACTIONS(942), + [aux_sym_cmd_identifier_token36] = ACTIONS(942), + [aux_sym_cmd_identifier_token37] = ACTIONS(942), + [aux_sym_cmd_identifier_token38] = ACTIONS(942), + [aux_sym_cmd_identifier_token39] = ACTIONS(942), + [aux_sym_cmd_identifier_token40] = ACTIONS(942), + [anon_sym_def] = ACTIONS(942), + [anon_sym_export_DASHenv] = ACTIONS(942), + [anon_sym_extern] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [anon_sym_use] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_COMMA] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_error] = ACTIONS(942), + [anon_sym_DASH2] = ACTIONS(942), + [anon_sym_break] = ACTIONS(942), + [anon_sym_continue] = ACTIONS(942), + [anon_sym_for] = ACTIONS(942), + [anon_sym_in2] = ACTIONS(942), + [anon_sym_loop] = ACTIONS(942), + [anon_sym_make] = ACTIONS(942), + [anon_sym_while] = ACTIONS(942), + [anon_sym_do] = ACTIONS(942), + [anon_sym_if] = ACTIONS(942), + [anon_sym_else] = ACTIONS(942), + [anon_sym_match] = ACTIONS(942), + [anon_sym_RBRACE] = ACTIONS(942), + [anon_sym_try] = ACTIONS(942), + [anon_sym_catch] = ACTIONS(942), + [anon_sym_return] = ACTIONS(942), + [anon_sym_source] = ACTIONS(942), + [anon_sym_source_DASHenv] = ACTIONS(942), + [anon_sym_hide] = ACTIONS(942), + [anon_sym_hide_DASHenv] = ACTIONS(942), + [anon_sym_overlay] = ACTIONS(942), + [anon_sym_as] = ACTIONS(942), + [anon_sym_PLUS2] = ACTIONS(942), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(942), + [anon_sym_DOT_DOT2] = ACTIONS(942), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(944), + [anon_sym_DOT_DOT_LT2] = ACTIONS(944), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(942), + [aux_sym__val_number_decimal_token1] = ACTIONS(942), + [aux_sym__val_number_decimal_token2] = ACTIONS(942), + [aux_sym__val_number_decimal_token3] = ACTIONS(942), + [aux_sym__val_number_decimal_token4] = ACTIONS(942), + [aux_sym__val_number_token1] = ACTIONS(942), + [aux_sym__val_number_token2] = ACTIONS(942), + [aux_sym__val_number_token3] = ACTIONS(942), + [aux_sym__val_number_token4] = ACTIONS(942), + [aux_sym__val_number_token5] = ACTIONS(942), + [aux_sym__val_number_token6] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym__str_single_quotes] = ACTIONS(942), + [sym__str_back_ticks] = ACTIONS(942), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(942), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(942), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(942), + [sym__entry_separator] = ACTIONS(944), + [anon_sym_register] = ACTIONS(942), + [anon_sym_DOT2] = ACTIONS(1670), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(944), }, [354] = { - [sym__expr_parenthesized_immediate] = STATE(7338), + [sym_path] = STATE(411), [sym_comment] = STATE(354), - [anon_sym_export] = ACTIONS(1638), - [anon_sym_alias] = ACTIONS(1638), - [anon_sym_let] = ACTIONS(1638), - [anon_sym_let_DASHenv] = ACTIONS(1638), - [anon_sym_mut] = ACTIONS(1638), - [anon_sym_const] = ACTIONS(1638), - [aux_sym_cmd_identifier_token1] = ACTIONS(1638), - [aux_sym_cmd_identifier_token2] = ACTIONS(1650), - [aux_sym_cmd_identifier_token3] = ACTIONS(1650), - [aux_sym_cmd_identifier_token4] = ACTIONS(1650), - [aux_sym_cmd_identifier_token5] = ACTIONS(1650), - [aux_sym_cmd_identifier_token6] = ACTIONS(1650), - [aux_sym_cmd_identifier_token7] = ACTIONS(1650), - [aux_sym_cmd_identifier_token8] = ACTIONS(1638), - [aux_sym_cmd_identifier_token9] = ACTIONS(1638), - [aux_sym_cmd_identifier_token10] = ACTIONS(1650), - [aux_sym_cmd_identifier_token11] = ACTIONS(1650), - [aux_sym_cmd_identifier_token12] = ACTIONS(1638), - [aux_sym_cmd_identifier_token13] = ACTIONS(1638), - [aux_sym_cmd_identifier_token14] = ACTIONS(1638), - [aux_sym_cmd_identifier_token15] = ACTIONS(1638), - [aux_sym_cmd_identifier_token16] = ACTIONS(1650), - [aux_sym_cmd_identifier_token17] = ACTIONS(1650), - [aux_sym_cmd_identifier_token18] = ACTIONS(1650), - [aux_sym_cmd_identifier_token19] = ACTIONS(1650), - [aux_sym_cmd_identifier_token20] = ACTIONS(1650), - [aux_sym_cmd_identifier_token21] = ACTIONS(1650), - [aux_sym_cmd_identifier_token22] = ACTIONS(1650), - [aux_sym_cmd_identifier_token23] = ACTIONS(1650), - [aux_sym_cmd_identifier_token24] = ACTIONS(1650), - [aux_sym_cmd_identifier_token25] = ACTIONS(1650), - [aux_sym_cmd_identifier_token26] = ACTIONS(1650), - [aux_sym_cmd_identifier_token27] = ACTIONS(1650), - [aux_sym_cmd_identifier_token28] = ACTIONS(1650), - [aux_sym_cmd_identifier_token29] = ACTIONS(1650), - [aux_sym_cmd_identifier_token30] = ACTIONS(1650), - [aux_sym_cmd_identifier_token31] = ACTIONS(1650), - [aux_sym_cmd_identifier_token32] = ACTIONS(1650), - [aux_sym_cmd_identifier_token33] = ACTIONS(1650), - [aux_sym_cmd_identifier_token34] = ACTIONS(1638), - [aux_sym_cmd_identifier_token35] = ACTIONS(1650), - [aux_sym_cmd_identifier_token36] = ACTIONS(1650), - [aux_sym_cmd_identifier_token37] = ACTIONS(1650), - [aux_sym_cmd_identifier_token38] = ACTIONS(1638), - [aux_sym_cmd_identifier_token39] = ACTIONS(1650), - [aux_sym_cmd_identifier_token40] = ACTIONS(1650), - [anon_sym_def] = ACTIONS(1638), - [anon_sym_export_DASHenv] = ACTIONS(1638), - [anon_sym_extern] = ACTIONS(1638), - [anon_sym_module] = ACTIONS(1638), - [anon_sym_use] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1638), - [anon_sym_COMMA] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1638), - [anon_sym_error] = ACTIONS(1638), - [anon_sym_DASH2] = ACTIONS(1638), - [anon_sym_break] = ACTIONS(1638), - [anon_sym_continue] = ACTIONS(1638), - [anon_sym_for] = ACTIONS(1638), - [anon_sym_in2] = ACTIONS(1638), - [anon_sym_loop] = ACTIONS(1638), - [anon_sym_make] = ACTIONS(1638), - [anon_sym_while] = ACTIONS(1638), - [anon_sym_do] = ACTIONS(1638), - [anon_sym_if] = ACTIONS(1638), - [anon_sym_else] = ACTIONS(1638), - [anon_sym_match] = ACTIONS(1638), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_try] = ACTIONS(1638), - [anon_sym_catch] = ACTIONS(1638), - [anon_sym_return] = ACTIONS(1638), - [anon_sym_source] = ACTIONS(1638), - [anon_sym_source_DASHenv] = ACTIONS(1638), - [anon_sym_register] = ACTIONS(1638), - [anon_sym_hide] = ACTIONS(1638), - [anon_sym_hide_DASHenv] = ACTIONS(1638), - [anon_sym_overlay] = ACTIONS(1638), - [anon_sym_as] = ACTIONS(1638), - [anon_sym_LPAREN2] = ACTIONS(1640), - [anon_sym_PLUS2] = ACTIONS(1638), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1650), - [anon_sym_DOT_DOT2] = ACTIONS(1771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1773), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1650), - [aux_sym__val_number_decimal_token1] = ACTIONS(1638), - [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), - [aux_sym__val_number_token4] = ACTIONS(1638), - [aux_sym__val_number_token5] = ACTIONS(1638), - [aux_sym__val_number_token6] = ACTIONS(1638), - [sym_filesize_unit] = ACTIONS(1775), - [sym_duration_unit] = ACTIONS(1777), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1650), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1779), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1650), + [aux_sym_cell_path_repeat1] = STATE(354), + [anon_sym_export] = ACTIONS(935), + [anon_sym_alias] = ACTIONS(935), + [anon_sym_let] = ACTIONS(935), + [anon_sym_let_DASHenv] = ACTIONS(935), + [anon_sym_mut] = ACTIONS(935), + [anon_sym_const] = ACTIONS(935), + [aux_sym_cmd_identifier_token1] = ACTIONS(935), + [aux_sym_cmd_identifier_token2] = ACTIONS(935), + [aux_sym_cmd_identifier_token3] = ACTIONS(935), + [aux_sym_cmd_identifier_token4] = ACTIONS(935), + [aux_sym_cmd_identifier_token5] = ACTIONS(935), + [aux_sym_cmd_identifier_token6] = ACTIONS(935), + [aux_sym_cmd_identifier_token7] = ACTIONS(935), + [aux_sym_cmd_identifier_token8] = ACTIONS(935), + [aux_sym_cmd_identifier_token9] = ACTIONS(935), + [aux_sym_cmd_identifier_token10] = ACTIONS(935), + [aux_sym_cmd_identifier_token11] = ACTIONS(935), + [aux_sym_cmd_identifier_token12] = ACTIONS(935), + [aux_sym_cmd_identifier_token13] = ACTIONS(935), + [aux_sym_cmd_identifier_token14] = ACTIONS(935), + [aux_sym_cmd_identifier_token15] = ACTIONS(935), + [aux_sym_cmd_identifier_token16] = ACTIONS(935), + [aux_sym_cmd_identifier_token17] = ACTIONS(935), + [aux_sym_cmd_identifier_token18] = ACTIONS(935), + [aux_sym_cmd_identifier_token19] = ACTIONS(935), + [aux_sym_cmd_identifier_token20] = ACTIONS(935), + [aux_sym_cmd_identifier_token21] = ACTIONS(935), + [aux_sym_cmd_identifier_token22] = ACTIONS(935), + [aux_sym_cmd_identifier_token23] = ACTIONS(935), + [aux_sym_cmd_identifier_token24] = ACTIONS(935), + [aux_sym_cmd_identifier_token25] = ACTIONS(935), + [aux_sym_cmd_identifier_token26] = ACTIONS(935), + [aux_sym_cmd_identifier_token27] = ACTIONS(935), + [aux_sym_cmd_identifier_token28] = ACTIONS(935), + [aux_sym_cmd_identifier_token29] = ACTIONS(935), + [aux_sym_cmd_identifier_token30] = ACTIONS(935), + [aux_sym_cmd_identifier_token31] = ACTIONS(935), + [aux_sym_cmd_identifier_token32] = ACTIONS(935), + [aux_sym_cmd_identifier_token33] = ACTIONS(935), + [aux_sym_cmd_identifier_token34] = ACTIONS(935), + [aux_sym_cmd_identifier_token35] = ACTIONS(935), + [aux_sym_cmd_identifier_token36] = ACTIONS(935), + [aux_sym_cmd_identifier_token37] = ACTIONS(935), + [aux_sym_cmd_identifier_token38] = ACTIONS(935), + [aux_sym_cmd_identifier_token39] = ACTIONS(935), + [aux_sym_cmd_identifier_token40] = ACTIONS(935), + [anon_sym_def] = ACTIONS(935), + [anon_sym_export_DASHenv] = ACTIONS(935), + [anon_sym_extern] = ACTIONS(935), + [anon_sym_module] = ACTIONS(935), + [anon_sym_use] = ACTIONS(935), + [anon_sym_LPAREN] = ACTIONS(935), + [anon_sym_COMMA] = ACTIONS(935), + [anon_sym_DOLLAR] = ACTIONS(935), + [anon_sym_error] = ACTIONS(935), + [anon_sym_DASH2] = ACTIONS(935), + [anon_sym_break] = ACTIONS(935), + [anon_sym_continue] = ACTIONS(935), + [anon_sym_for] = ACTIONS(935), + [anon_sym_in2] = ACTIONS(935), + [anon_sym_loop] = ACTIONS(935), + [anon_sym_make] = ACTIONS(935), + [anon_sym_while] = ACTIONS(935), + [anon_sym_do] = ACTIONS(935), + [anon_sym_if] = ACTIONS(935), + [anon_sym_else] = ACTIONS(935), + [anon_sym_match] = ACTIONS(935), + [anon_sym_RBRACE] = ACTIONS(935), + [anon_sym_try] = ACTIONS(935), + [anon_sym_catch] = ACTIONS(935), + [anon_sym_return] = ACTIONS(935), + [anon_sym_source] = ACTIONS(935), + [anon_sym_source_DASHenv] = ACTIONS(935), + [anon_sym_hide] = ACTIONS(935), + [anon_sym_hide_DASHenv] = ACTIONS(935), + [anon_sym_overlay] = ACTIONS(935), + [anon_sym_as] = ACTIONS(935), + [anon_sym_PLUS2] = ACTIONS(935), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(935), + [anon_sym_DOT_DOT2] = ACTIONS(935), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(937), + [anon_sym_DOT_DOT_LT2] = ACTIONS(937), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(935), + [aux_sym__val_number_decimal_token1] = ACTIONS(935), + [aux_sym__val_number_decimal_token2] = ACTIONS(935), + [aux_sym__val_number_decimal_token3] = ACTIONS(935), + [aux_sym__val_number_decimal_token4] = ACTIONS(935), + [aux_sym__val_number_token1] = ACTIONS(935), + [aux_sym__val_number_token2] = ACTIONS(935), + [aux_sym__val_number_token3] = ACTIONS(935), + [aux_sym__val_number_token4] = ACTIONS(935), + [aux_sym__val_number_token5] = ACTIONS(935), + [aux_sym__val_number_token6] = ACTIONS(935), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym__str_single_quotes] = ACTIONS(935), + [sym__str_back_ticks] = ACTIONS(935), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(935), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(935), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(935), + [sym__entry_separator] = ACTIONS(937), + [anon_sym_register] = ACTIONS(935), + [anon_sym_DOT2] = ACTIONS(1763), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(937), }, [355] = { [sym_comment] = STATE(355), - [anon_sym_export] = ACTIONS(1680), - [anon_sym_alias] = ACTIONS(1680), - [anon_sym_let] = ACTIONS(1680), - [anon_sym_let_DASHenv] = ACTIONS(1680), - [anon_sym_mut] = ACTIONS(1680), - [anon_sym_const] = ACTIONS(1680), - [aux_sym_cmd_identifier_token1] = ACTIONS(1680), - [aux_sym_cmd_identifier_token2] = ACTIONS(1682), - [aux_sym_cmd_identifier_token3] = ACTIONS(1682), - [aux_sym_cmd_identifier_token4] = ACTIONS(1682), - [aux_sym_cmd_identifier_token5] = ACTIONS(1682), - [aux_sym_cmd_identifier_token6] = ACTIONS(1682), - [aux_sym_cmd_identifier_token7] = ACTIONS(1682), - [aux_sym_cmd_identifier_token8] = ACTIONS(1680), - [aux_sym_cmd_identifier_token9] = ACTIONS(1680), - [aux_sym_cmd_identifier_token10] = ACTIONS(1682), - [aux_sym_cmd_identifier_token11] = ACTIONS(1682), - [aux_sym_cmd_identifier_token12] = ACTIONS(1680), - [aux_sym_cmd_identifier_token13] = ACTIONS(1680), - [aux_sym_cmd_identifier_token14] = ACTIONS(1680), - [aux_sym_cmd_identifier_token15] = ACTIONS(1680), - [aux_sym_cmd_identifier_token16] = ACTIONS(1682), - [aux_sym_cmd_identifier_token17] = ACTIONS(1682), - [aux_sym_cmd_identifier_token18] = ACTIONS(1682), - [aux_sym_cmd_identifier_token19] = ACTIONS(1682), - [aux_sym_cmd_identifier_token20] = ACTIONS(1682), - [aux_sym_cmd_identifier_token21] = ACTIONS(1682), - [aux_sym_cmd_identifier_token22] = ACTIONS(1682), - [aux_sym_cmd_identifier_token23] = ACTIONS(1682), - [aux_sym_cmd_identifier_token24] = ACTIONS(1682), - [aux_sym_cmd_identifier_token25] = ACTIONS(1682), - [aux_sym_cmd_identifier_token26] = ACTIONS(1682), - [aux_sym_cmd_identifier_token27] = ACTIONS(1682), - [aux_sym_cmd_identifier_token28] = ACTIONS(1682), - [aux_sym_cmd_identifier_token29] = ACTIONS(1682), - [aux_sym_cmd_identifier_token30] = ACTIONS(1682), - [aux_sym_cmd_identifier_token31] = ACTIONS(1682), - [aux_sym_cmd_identifier_token32] = ACTIONS(1682), - [aux_sym_cmd_identifier_token33] = ACTIONS(1682), - [aux_sym_cmd_identifier_token34] = ACTIONS(1680), - [aux_sym_cmd_identifier_token35] = ACTIONS(1682), - [aux_sym_cmd_identifier_token36] = ACTIONS(1682), - [aux_sym_cmd_identifier_token37] = ACTIONS(1682), - [aux_sym_cmd_identifier_token38] = ACTIONS(1680), - [aux_sym_cmd_identifier_token39] = ACTIONS(1682), - [aux_sym_cmd_identifier_token40] = ACTIONS(1682), - [anon_sym_def] = ACTIONS(1680), - [anon_sym_export_DASHenv] = ACTIONS(1680), - [anon_sym_extern] = ACTIONS(1680), - [anon_sym_module] = ACTIONS(1680), - [anon_sym_use] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1680), - [anon_sym_COMMA] = ACTIONS(1682), - [anon_sym_DOLLAR] = ACTIONS(1680), - [anon_sym_error] = ACTIONS(1680), - [anon_sym_DASH2] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_continue] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_in2] = ACTIONS(1680), - [anon_sym_loop] = ACTIONS(1680), - [anon_sym_make] = ACTIONS(1680), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_do] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_else] = ACTIONS(1680), - [anon_sym_match] = ACTIONS(1680), - [anon_sym_RBRACE] = ACTIONS(1682), - [anon_sym_try] = ACTIONS(1680), - [anon_sym_catch] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_source] = ACTIONS(1680), - [anon_sym_source_DASHenv] = ACTIONS(1680), - [anon_sym_register] = ACTIONS(1680), - [anon_sym_hide] = ACTIONS(1680), - [anon_sym_hide_DASHenv] = ACTIONS(1680), - [anon_sym_overlay] = ACTIONS(1680), - [anon_sym_as] = ACTIONS(1680), - [anon_sym_LPAREN2] = ACTIONS(1682), - [anon_sym_PLUS2] = ACTIONS(1680), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1682), - [anon_sym_DOT_DOT2] = ACTIONS(1680), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1682), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1682), - [aux_sym__immediate_decimal_token2] = ACTIONS(1781), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1682), - [aux_sym__val_number_decimal_token1] = ACTIONS(1680), - [aux_sym__val_number_decimal_token2] = ACTIONS(1682), - [aux_sym__val_number_decimal_token3] = ACTIONS(1682), - [aux_sym__val_number_decimal_token4] = ACTIONS(1682), - [aux_sym__val_number_token1] = ACTIONS(1682), - [aux_sym__val_number_token2] = ACTIONS(1682), - [aux_sym__val_number_token3] = ACTIONS(1682), - [aux_sym__val_number_token4] = ACTIONS(1680), - [aux_sym__val_number_token5] = ACTIONS(1680), - [aux_sym__val_number_token6] = ACTIONS(1680), - [sym_filesize_unit] = ACTIONS(1680), - [sym_duration_unit] = ACTIONS(1680), - [anon_sym_DQUOTE] = ACTIONS(1682), - [sym__str_single_quotes] = ACTIONS(1682), - [sym__str_back_ticks] = ACTIONS(1682), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1682), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1682), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1682), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1680), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1682), + [anon_sym_export] = ACTIONS(1512), + [anon_sym_alias] = ACTIONS(1512), + [anon_sym_let] = ACTIONS(1512), + [anon_sym_let_DASHenv] = ACTIONS(1512), + [anon_sym_mut] = ACTIONS(1512), + [anon_sym_const] = ACTIONS(1512), + [aux_sym_cmd_identifier_token1] = ACTIONS(1512), + [aux_sym_cmd_identifier_token2] = ACTIONS(1514), + [aux_sym_cmd_identifier_token3] = ACTIONS(1514), + [aux_sym_cmd_identifier_token4] = ACTIONS(1514), + [aux_sym_cmd_identifier_token5] = ACTIONS(1514), + [aux_sym_cmd_identifier_token6] = ACTIONS(1514), + [aux_sym_cmd_identifier_token7] = ACTIONS(1514), + [aux_sym_cmd_identifier_token8] = ACTIONS(1512), + [aux_sym_cmd_identifier_token9] = ACTIONS(1512), + [aux_sym_cmd_identifier_token10] = ACTIONS(1514), + [aux_sym_cmd_identifier_token11] = ACTIONS(1514), + [aux_sym_cmd_identifier_token12] = ACTIONS(1512), + [aux_sym_cmd_identifier_token13] = ACTIONS(1512), + [aux_sym_cmd_identifier_token14] = ACTIONS(1512), + [aux_sym_cmd_identifier_token15] = ACTIONS(1512), + [aux_sym_cmd_identifier_token16] = ACTIONS(1514), + [aux_sym_cmd_identifier_token17] = ACTIONS(1514), + [aux_sym_cmd_identifier_token18] = ACTIONS(1514), + [aux_sym_cmd_identifier_token19] = ACTIONS(1514), + [aux_sym_cmd_identifier_token20] = ACTIONS(1514), + [aux_sym_cmd_identifier_token21] = ACTIONS(1514), + [aux_sym_cmd_identifier_token22] = ACTIONS(1514), + [aux_sym_cmd_identifier_token23] = ACTIONS(1514), + [aux_sym_cmd_identifier_token24] = ACTIONS(1514), + [aux_sym_cmd_identifier_token25] = ACTIONS(1514), + [aux_sym_cmd_identifier_token26] = ACTIONS(1514), + [aux_sym_cmd_identifier_token27] = ACTIONS(1514), + [aux_sym_cmd_identifier_token28] = ACTIONS(1514), + [aux_sym_cmd_identifier_token29] = ACTIONS(1514), + [aux_sym_cmd_identifier_token30] = ACTIONS(1514), + [aux_sym_cmd_identifier_token31] = ACTIONS(1514), + [aux_sym_cmd_identifier_token32] = ACTIONS(1514), + [aux_sym_cmd_identifier_token33] = ACTIONS(1514), + [aux_sym_cmd_identifier_token34] = ACTIONS(1512), + [aux_sym_cmd_identifier_token35] = ACTIONS(1514), + [aux_sym_cmd_identifier_token36] = ACTIONS(1514), + [aux_sym_cmd_identifier_token37] = ACTIONS(1514), + [aux_sym_cmd_identifier_token38] = ACTIONS(1512), + [aux_sym_cmd_identifier_token39] = ACTIONS(1514), + [aux_sym_cmd_identifier_token40] = ACTIONS(1514), + [anon_sym_def] = ACTIONS(1512), + [anon_sym_export_DASHenv] = ACTIONS(1512), + [anon_sym_extern] = ACTIONS(1512), + [anon_sym_module] = ACTIONS(1512), + [anon_sym_use] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_COMMA] = ACTIONS(1514), + [anon_sym_DOLLAR] = ACTIONS(1512), + [anon_sym_error] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_break] = ACTIONS(1512), + [anon_sym_continue] = ACTIONS(1512), + [anon_sym_for] = ACTIONS(1512), + [anon_sym_in2] = ACTIONS(1512), + [anon_sym_loop] = ACTIONS(1512), + [anon_sym_make] = ACTIONS(1512), + [anon_sym_while] = ACTIONS(1512), + [anon_sym_do] = ACTIONS(1512), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_else] = ACTIONS(1512), + [anon_sym_match] = ACTIONS(1512), + [anon_sym_RBRACE] = ACTIONS(1514), + [anon_sym_try] = ACTIONS(1512), + [anon_sym_catch] = ACTIONS(1512), + [anon_sym_return] = ACTIONS(1512), + [anon_sym_source] = ACTIONS(1512), + [anon_sym_source_DASHenv] = ACTIONS(1512), + [anon_sym_hide] = ACTIONS(1512), + [anon_sym_hide_DASHenv] = ACTIONS(1512), + [anon_sym_overlay] = ACTIONS(1512), + [anon_sym_as] = ACTIONS(1512), + [anon_sym_LPAREN2] = ACTIONS(1514), + [anon_sym_PLUS2] = ACTIONS(1512), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1514), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1514), + [aux_sym__val_number_decimal_token1] = ACTIONS(1512), + [aux_sym__val_number_decimal_token2] = ACTIONS(1514), + [aux_sym__val_number_decimal_token3] = ACTIONS(1514), + [aux_sym__val_number_decimal_token4] = ACTIONS(1514), + [aux_sym__val_number_token1] = ACTIONS(1514), + [aux_sym__val_number_token2] = ACTIONS(1514), + [aux_sym__val_number_token3] = ACTIONS(1514), + [aux_sym__val_number_token4] = ACTIONS(1512), + [aux_sym__val_number_token5] = ACTIONS(1512), + [aux_sym__val_number_token6] = ACTIONS(1512), + [sym_filesize_unit] = ACTIONS(1512), + [sym_duration_unit] = ACTIONS(1512), + [anon_sym_DQUOTE] = ACTIONS(1514), + [sym__str_single_quotes] = ACTIONS(1514), + [sym__str_back_ticks] = ACTIONS(1514), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1514), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1514), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1514), + [anon_sym_register] = ACTIONS(1512), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1514), }, [356] = { [sym_comment] = STATE(356), - [anon_sym_export] = ACTIONS(1783), - [anon_sym_alias] = ACTIONS(1783), - [anon_sym_let] = ACTIONS(1783), - [anon_sym_let_DASHenv] = ACTIONS(1783), - [anon_sym_mut] = ACTIONS(1783), - [anon_sym_const] = ACTIONS(1783), - [aux_sym_cmd_identifier_token1] = ACTIONS(1783), - [aux_sym_cmd_identifier_token2] = ACTIONS(1783), - [aux_sym_cmd_identifier_token3] = ACTIONS(1783), - [aux_sym_cmd_identifier_token4] = ACTIONS(1783), - [aux_sym_cmd_identifier_token5] = ACTIONS(1783), - [aux_sym_cmd_identifier_token6] = ACTIONS(1783), - [aux_sym_cmd_identifier_token7] = ACTIONS(1783), - [aux_sym_cmd_identifier_token8] = ACTIONS(1783), - [aux_sym_cmd_identifier_token9] = ACTIONS(1783), - [aux_sym_cmd_identifier_token10] = ACTIONS(1783), - [aux_sym_cmd_identifier_token11] = ACTIONS(1783), - [aux_sym_cmd_identifier_token12] = ACTIONS(1783), - [aux_sym_cmd_identifier_token13] = ACTIONS(1783), - [aux_sym_cmd_identifier_token14] = ACTIONS(1783), - [aux_sym_cmd_identifier_token15] = ACTIONS(1783), - [aux_sym_cmd_identifier_token16] = ACTIONS(1783), - [aux_sym_cmd_identifier_token17] = ACTIONS(1783), - [aux_sym_cmd_identifier_token18] = ACTIONS(1783), - [aux_sym_cmd_identifier_token19] = ACTIONS(1783), - [aux_sym_cmd_identifier_token20] = ACTIONS(1783), - [aux_sym_cmd_identifier_token21] = ACTIONS(1783), - [aux_sym_cmd_identifier_token22] = ACTIONS(1783), - [aux_sym_cmd_identifier_token23] = ACTIONS(1783), - [aux_sym_cmd_identifier_token24] = ACTIONS(1783), - [aux_sym_cmd_identifier_token25] = ACTIONS(1783), - [aux_sym_cmd_identifier_token26] = ACTIONS(1783), - [aux_sym_cmd_identifier_token27] = ACTIONS(1783), - [aux_sym_cmd_identifier_token28] = ACTIONS(1783), - [aux_sym_cmd_identifier_token29] = ACTIONS(1783), - [aux_sym_cmd_identifier_token30] = ACTIONS(1783), - [aux_sym_cmd_identifier_token31] = ACTIONS(1783), - [aux_sym_cmd_identifier_token32] = ACTIONS(1783), - [aux_sym_cmd_identifier_token33] = ACTIONS(1783), - [aux_sym_cmd_identifier_token34] = ACTIONS(1783), - [aux_sym_cmd_identifier_token35] = ACTIONS(1783), - [aux_sym_cmd_identifier_token36] = ACTIONS(1783), - [aux_sym_cmd_identifier_token37] = ACTIONS(1783), - [aux_sym_cmd_identifier_token38] = ACTIONS(1783), - [aux_sym_cmd_identifier_token39] = ACTIONS(1783), - [aux_sym_cmd_identifier_token40] = ACTIONS(1783), - [anon_sym_def] = ACTIONS(1783), - [anon_sym_export_DASHenv] = ACTIONS(1783), - [anon_sym_extern] = ACTIONS(1783), - [anon_sym_module] = ACTIONS(1783), - [anon_sym_use] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_COMMA] = ACTIONS(1783), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_error] = ACTIONS(1783), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_break] = ACTIONS(1783), - [anon_sym_continue] = ACTIONS(1783), - [anon_sym_for] = ACTIONS(1783), - [anon_sym_in2] = ACTIONS(1783), - [anon_sym_loop] = ACTIONS(1783), - [anon_sym_make] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1783), - [anon_sym_do] = ACTIONS(1783), - [anon_sym_if] = ACTIONS(1783), - [anon_sym_else] = ACTIONS(1783), - [anon_sym_match] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(1783), - [anon_sym_try] = ACTIONS(1783), - [anon_sym_catch] = ACTIONS(1783), - [anon_sym_return] = ACTIONS(1783), - [anon_sym_source] = ACTIONS(1783), - [anon_sym_source_DASHenv] = ACTIONS(1783), - [anon_sym_register] = ACTIONS(1783), - [anon_sym_hide] = ACTIONS(1783), - [anon_sym_hide_DASHenv] = ACTIONS(1783), - [anon_sym_overlay] = ACTIONS(1783), - [anon_sym_as] = ACTIONS(1783), - [anon_sym_LPAREN2] = ACTIONS(1785), - [anon_sym_PLUS2] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1783), - [anon_sym_DOT_DOT2] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1785), - [aux_sym__immediate_decimal_token2] = ACTIONS(1787), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1783), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1783), - [aux_sym__val_number_decimal_token3] = ACTIONS(1783), - [aux_sym__val_number_decimal_token4] = ACTIONS(1783), - [aux_sym__val_number_token1] = ACTIONS(1783), - [aux_sym__val_number_token2] = ACTIONS(1783), - [aux_sym__val_number_token3] = ACTIONS(1783), - [aux_sym__val_number_token4] = ACTIONS(1783), - [aux_sym__val_number_token5] = ACTIONS(1783), - [aux_sym__val_number_token6] = ACTIONS(1783), - [anon_sym_DQUOTE] = ACTIONS(1783), - [sym__str_single_quotes] = ACTIONS(1783), - [sym__str_back_ticks] = ACTIONS(1783), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1783), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1783), - [sym__entry_separator] = ACTIONS(1785), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1783), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1785), + [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(1506), + [aux_sym_cmd_identifier_token3] = ACTIONS(1506), + [aux_sym_cmd_identifier_token4] = ACTIONS(1506), + [aux_sym_cmd_identifier_token5] = ACTIONS(1506), + [aux_sym_cmd_identifier_token6] = ACTIONS(1506), + [aux_sym_cmd_identifier_token7] = ACTIONS(1506), + [aux_sym_cmd_identifier_token8] = ACTIONS(1504), + [aux_sym_cmd_identifier_token9] = ACTIONS(1504), + [aux_sym_cmd_identifier_token10] = ACTIONS(1506), + [aux_sym_cmd_identifier_token11] = ACTIONS(1506), + [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(1506), + [aux_sym_cmd_identifier_token17] = ACTIONS(1506), + [aux_sym_cmd_identifier_token18] = ACTIONS(1506), + [aux_sym_cmd_identifier_token19] = ACTIONS(1506), + [aux_sym_cmd_identifier_token20] = ACTIONS(1506), + [aux_sym_cmd_identifier_token21] = ACTIONS(1506), + [aux_sym_cmd_identifier_token22] = ACTIONS(1506), + [aux_sym_cmd_identifier_token23] = ACTIONS(1506), + [aux_sym_cmd_identifier_token24] = ACTIONS(1506), + [aux_sym_cmd_identifier_token25] = ACTIONS(1506), + [aux_sym_cmd_identifier_token26] = ACTIONS(1506), + [aux_sym_cmd_identifier_token27] = ACTIONS(1506), + [aux_sym_cmd_identifier_token28] = ACTIONS(1506), + [aux_sym_cmd_identifier_token29] = ACTIONS(1506), + [aux_sym_cmd_identifier_token30] = ACTIONS(1506), + [aux_sym_cmd_identifier_token31] = ACTIONS(1506), + [aux_sym_cmd_identifier_token32] = ACTIONS(1506), + [aux_sym_cmd_identifier_token33] = ACTIONS(1506), + [aux_sym_cmd_identifier_token34] = ACTIONS(1504), + [aux_sym_cmd_identifier_token35] = ACTIONS(1506), + [aux_sym_cmd_identifier_token36] = ACTIONS(1506), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1506), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_error] = ACTIONS(1504), + [anon_sym_DASH2] = ACTIONS(1504), + [anon_sym_break] = ACTIONS(1504), + [anon_sym_continue] = ACTIONS(1504), + [anon_sym_for] = ACTIONS(1504), + [anon_sym_in2] = 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_hide] = ACTIONS(1504), + [anon_sym_hide_DASHenv] = ACTIONS(1504), + [anon_sym_overlay] = ACTIONS(1504), + [anon_sym_as] = ACTIONS(1504), + [anon_sym_LPAREN2] = ACTIONS(1506), + [anon_sym_PLUS2] = ACTIONS(1504), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1506), + [anon_sym_DOT_DOT2] = 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), + [aux_sym__val_number_decimal_token3] = ACTIONS(1506), + [aux_sym__val_number_decimal_token4] = ACTIONS(1506), + [aux_sym__val_number_token1] = ACTIONS(1506), + [aux_sym__val_number_token2] = ACTIONS(1506), + [aux_sym__val_number_token3] = ACTIONS(1506), + [aux_sym__val_number_token4] = ACTIONS(1504), + [aux_sym__val_number_token5] = ACTIONS(1504), + [aux_sym__val_number_token6] = ACTIONS(1504), + [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_DOLLAR_SQUOTE] = ACTIONS(1506), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1506), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1506), + [anon_sym_register] = ACTIONS(1504), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1504), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1506), }, [357] = { [sym_comment] = STATE(357), - [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(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(1755), - [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(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(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(1757), - [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(1755), - [aux_sym_cmd_identifier_token35] = ACTIONS(1757), - [aux_sym_cmd_identifier_token36] = ACTIONS(1757), - [aux_sym_cmd_identifier_token37] = ACTIONS(1757), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1757), - [aux_sym_cmd_identifier_token40] = ACTIONS(1757), - [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(1755), - [anon_sym_COMMA] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in2] = 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_RBRACE] = ACTIONS(1757), - [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_as] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_PLUS2] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1757), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT] = ACTIONS(1789), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(1791), - [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), - [aux_sym__val_number_token4] = ACTIONS(1755), - [aux_sym__val_number_token5] = ACTIONS(1755), - [aux_sym__val_number_token6] = ACTIONS(1755), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1757), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1618), + [anon_sym_alias] = ACTIONS(1618), + [anon_sym_let] = ACTIONS(1618), + [anon_sym_let_DASHenv] = ACTIONS(1618), + [anon_sym_mut] = ACTIONS(1618), + [anon_sym_const] = ACTIONS(1618), + [aux_sym_cmd_identifier_token1] = ACTIONS(1618), + [aux_sym_cmd_identifier_token2] = ACTIONS(1620), + [aux_sym_cmd_identifier_token3] = ACTIONS(1620), + [aux_sym_cmd_identifier_token4] = ACTIONS(1620), + [aux_sym_cmd_identifier_token5] = ACTIONS(1620), + [aux_sym_cmd_identifier_token6] = ACTIONS(1620), + [aux_sym_cmd_identifier_token7] = ACTIONS(1620), + [aux_sym_cmd_identifier_token8] = ACTIONS(1618), + [aux_sym_cmd_identifier_token9] = ACTIONS(1618), + [aux_sym_cmd_identifier_token10] = ACTIONS(1620), + [aux_sym_cmd_identifier_token11] = ACTIONS(1620), + [aux_sym_cmd_identifier_token12] = ACTIONS(1618), + [aux_sym_cmd_identifier_token13] = ACTIONS(1618), + [aux_sym_cmd_identifier_token14] = ACTIONS(1618), + [aux_sym_cmd_identifier_token15] = ACTIONS(1618), + [aux_sym_cmd_identifier_token16] = ACTIONS(1620), + [aux_sym_cmd_identifier_token17] = ACTIONS(1620), + [aux_sym_cmd_identifier_token18] = ACTIONS(1620), + [aux_sym_cmd_identifier_token19] = ACTIONS(1620), + [aux_sym_cmd_identifier_token20] = ACTIONS(1620), + [aux_sym_cmd_identifier_token21] = ACTIONS(1620), + [aux_sym_cmd_identifier_token22] = ACTIONS(1620), + [aux_sym_cmd_identifier_token23] = ACTIONS(1620), + [aux_sym_cmd_identifier_token24] = ACTIONS(1620), + [aux_sym_cmd_identifier_token25] = ACTIONS(1620), + [aux_sym_cmd_identifier_token26] = ACTIONS(1620), + [aux_sym_cmd_identifier_token27] = ACTIONS(1620), + [aux_sym_cmd_identifier_token28] = ACTIONS(1620), + [aux_sym_cmd_identifier_token29] = ACTIONS(1620), + [aux_sym_cmd_identifier_token30] = ACTIONS(1620), + [aux_sym_cmd_identifier_token31] = ACTIONS(1620), + [aux_sym_cmd_identifier_token32] = ACTIONS(1620), + [aux_sym_cmd_identifier_token33] = ACTIONS(1620), + [aux_sym_cmd_identifier_token34] = ACTIONS(1618), + [aux_sym_cmd_identifier_token35] = ACTIONS(1620), + [aux_sym_cmd_identifier_token36] = ACTIONS(1620), + [aux_sym_cmd_identifier_token37] = ACTIONS(1620), + [aux_sym_cmd_identifier_token38] = ACTIONS(1618), + [aux_sym_cmd_identifier_token39] = ACTIONS(1620), + [aux_sym_cmd_identifier_token40] = ACTIONS(1620), + [anon_sym_def] = ACTIONS(1618), + [anon_sym_export_DASHenv] = ACTIONS(1618), + [anon_sym_extern] = ACTIONS(1618), + [anon_sym_module] = ACTIONS(1618), + [anon_sym_use] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_COMMA] = ACTIONS(1620), + [anon_sym_DOLLAR] = ACTIONS(1618), + [anon_sym_error] = ACTIONS(1618), + [anon_sym_DASH2] = ACTIONS(1618), + [anon_sym_break] = ACTIONS(1618), + [anon_sym_continue] = ACTIONS(1618), + [anon_sym_for] = ACTIONS(1618), + [anon_sym_in2] = ACTIONS(1618), + [anon_sym_loop] = ACTIONS(1618), + [anon_sym_make] = ACTIONS(1618), + [anon_sym_while] = ACTIONS(1618), + [anon_sym_do] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1618), + [anon_sym_else] = ACTIONS(1618), + [anon_sym_match] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1620), + [anon_sym_try] = ACTIONS(1618), + [anon_sym_catch] = ACTIONS(1618), + [anon_sym_return] = ACTIONS(1618), + [anon_sym_source] = ACTIONS(1618), + [anon_sym_source_DASHenv] = ACTIONS(1618), + [anon_sym_hide] = ACTIONS(1618), + [anon_sym_hide_DASHenv] = ACTIONS(1618), + [anon_sym_overlay] = ACTIONS(1618), + [anon_sym_as] = ACTIONS(1618), + [anon_sym_LPAREN2] = ACTIONS(1620), + [anon_sym_PLUS2] = ACTIONS(1618), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1620), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1620), + [aux_sym__val_number_decimal_token1] = ACTIONS(1618), + [aux_sym__val_number_decimal_token2] = ACTIONS(1620), + [aux_sym__val_number_decimal_token3] = ACTIONS(1620), + [aux_sym__val_number_decimal_token4] = ACTIONS(1620), + [aux_sym__val_number_token1] = ACTIONS(1620), + [aux_sym__val_number_token2] = ACTIONS(1620), + [aux_sym__val_number_token3] = ACTIONS(1620), + [aux_sym__val_number_token4] = ACTIONS(1618), + [aux_sym__val_number_token5] = ACTIONS(1618), + [aux_sym__val_number_token6] = ACTIONS(1618), + [sym_filesize_unit] = ACTIONS(1618), + [sym_duration_unit] = ACTIONS(1618), + [anon_sym_DQUOTE] = ACTIONS(1620), + [sym__str_single_quotes] = ACTIONS(1620), + [sym__str_back_ticks] = ACTIONS(1620), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1620), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1620), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1620), + [anon_sym_register] = ACTIONS(1618), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1620), }, [358] = { - [sym_cell_path] = STATE(504), - [sym_path] = STATE(450), [sym_comment] = STATE(358), - [aux_sym_cell_path_repeat1] = STATE(375), - [anon_sym_export] = ACTIONS(943), - [anon_sym_alias] = ACTIONS(943), - [anon_sym_let] = ACTIONS(943), - [anon_sym_let_DASHenv] = ACTIONS(943), - [anon_sym_mut] = ACTIONS(943), - [anon_sym_const] = ACTIONS(943), - [aux_sym_cmd_identifier_token1] = ACTIONS(943), - [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(943), - [aux_sym_cmd_identifier_token9] = ACTIONS(943), - [aux_sym_cmd_identifier_token10] = ACTIONS(945), - [aux_sym_cmd_identifier_token11] = ACTIONS(945), - [aux_sym_cmd_identifier_token12] = ACTIONS(943), - [aux_sym_cmd_identifier_token13] = ACTIONS(943), - [aux_sym_cmd_identifier_token14] = ACTIONS(943), - [aux_sym_cmd_identifier_token15] = ACTIONS(943), - [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(943), - [aux_sym_cmd_identifier_token35] = ACTIONS(945), - [aux_sym_cmd_identifier_token36] = ACTIONS(945), - [aux_sym_cmd_identifier_token37] = ACTIONS(945), - [aux_sym_cmd_identifier_token38] = ACTIONS(943), - [aux_sym_cmd_identifier_token39] = ACTIONS(945), - [aux_sym_cmd_identifier_token40] = ACTIONS(945), - [anon_sym_def] = ACTIONS(943), - [anon_sym_export_DASHenv] = ACTIONS(943), - [anon_sym_extern] = ACTIONS(943), - [anon_sym_module] = ACTIONS(943), - [anon_sym_use] = ACTIONS(943), - [anon_sym_LPAREN] = ACTIONS(945), - [anon_sym_COMMA] = ACTIONS(945), - [anon_sym_DOLLAR] = ACTIONS(943), - [anon_sym_error] = ACTIONS(943), - [anon_sym_DASH2] = ACTIONS(943), - [anon_sym_break] = ACTIONS(943), - [anon_sym_continue] = ACTIONS(943), - [anon_sym_for] = ACTIONS(943), - [anon_sym_in2] = ACTIONS(943), - [anon_sym_loop] = ACTIONS(943), - [anon_sym_make] = ACTIONS(943), - [anon_sym_while] = ACTIONS(943), - [anon_sym_do] = ACTIONS(943), - [anon_sym_if] = ACTIONS(943), - [anon_sym_else] = ACTIONS(943), - [anon_sym_match] = ACTIONS(943), - [anon_sym_RBRACE] = ACTIONS(945), - [anon_sym_try] = ACTIONS(943), - [anon_sym_catch] = ACTIONS(943), - [anon_sym_return] = ACTIONS(943), - [anon_sym_source] = ACTIONS(943), - [anon_sym_source_DASHenv] = ACTIONS(943), - [anon_sym_register] = ACTIONS(943), - [anon_sym_hide] = ACTIONS(943), - [anon_sym_hide_DASHenv] = ACTIONS(943), - [anon_sym_overlay] = ACTIONS(943), - [anon_sym_as] = ACTIONS(943), - [anon_sym_PLUS2] = ACTIONS(943), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(945), - [anon_sym_DOT_DOT2] = ACTIONS(943), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(945), - [anon_sym_DOT_DOT_LT2] = ACTIONS(945), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(945), - [aux_sym__val_number_decimal_token1] = ACTIONS(943), - [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), - [aux_sym__val_number_token4] = ACTIONS(943), - [aux_sym__val_number_token5] = ACTIONS(943), - [aux_sym__val_number_token6] = ACTIONS(943), - [anon_sym_DQUOTE] = ACTIONS(945), - [sym__str_single_quotes] = ACTIONS(945), - [sym__str_back_ticks] = ACTIONS(945), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(945), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(945), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(945), - [anon_sym_DOT2] = ACTIONS(1793), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(945), + [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(1691), + [aux_sym_cmd_identifier_token3] = ACTIONS(1691), + [aux_sym_cmd_identifier_token4] = ACTIONS(1691), + [aux_sym_cmd_identifier_token5] = ACTIONS(1691), + [aux_sym_cmd_identifier_token6] = ACTIONS(1691), + [aux_sym_cmd_identifier_token7] = ACTIONS(1691), + [aux_sym_cmd_identifier_token8] = ACTIONS(1689), + [aux_sym_cmd_identifier_token9] = ACTIONS(1689), + [aux_sym_cmd_identifier_token10] = ACTIONS(1691), + [aux_sym_cmd_identifier_token11] = ACTIONS(1691), + [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(1691), + [aux_sym_cmd_identifier_token17] = ACTIONS(1691), + [aux_sym_cmd_identifier_token18] = ACTIONS(1691), + [aux_sym_cmd_identifier_token19] = ACTIONS(1691), + [aux_sym_cmd_identifier_token20] = ACTIONS(1691), + [aux_sym_cmd_identifier_token21] = ACTIONS(1691), + [aux_sym_cmd_identifier_token22] = ACTIONS(1691), + [aux_sym_cmd_identifier_token23] = ACTIONS(1691), + [aux_sym_cmd_identifier_token24] = ACTIONS(1691), + [aux_sym_cmd_identifier_token25] = ACTIONS(1691), + [aux_sym_cmd_identifier_token26] = ACTIONS(1691), + [aux_sym_cmd_identifier_token27] = ACTIONS(1691), + [aux_sym_cmd_identifier_token28] = ACTIONS(1691), + [aux_sym_cmd_identifier_token29] = ACTIONS(1691), + [aux_sym_cmd_identifier_token30] = ACTIONS(1691), + [aux_sym_cmd_identifier_token31] = ACTIONS(1691), + [aux_sym_cmd_identifier_token32] = ACTIONS(1691), + [aux_sym_cmd_identifier_token33] = ACTIONS(1691), + [aux_sym_cmd_identifier_token34] = ACTIONS(1689), + [aux_sym_cmd_identifier_token35] = ACTIONS(1691), + [aux_sym_cmd_identifier_token36] = ACTIONS(1691), + [aux_sym_cmd_identifier_token37] = 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(1689), + [anon_sym_COMMA] = ACTIONS(1691), + [anon_sym_DOLLAR] = ACTIONS(1689), + [anon_sym_error] = ACTIONS(1689), + [anon_sym_DASH2] = ACTIONS(1689), + [anon_sym_break] = ACTIONS(1689), + [anon_sym_continue] = ACTIONS(1689), + [anon_sym_for] = ACTIONS(1689), + [anon_sym_in2] = 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_hide] = ACTIONS(1689), + [anon_sym_hide_DASHenv] = ACTIONS(1689), + [anon_sym_overlay] = ACTIONS(1689), + [anon_sym_as] = ACTIONS(1689), + [anon_sym_LPAREN2] = ACTIONS(1691), + [anon_sym_PLUS2] = ACTIONS(1689), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1691), + [anon_sym_DOT_DOT2] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1691), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1691), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1691), + [aux_sym__val_number_decimal_token1] = ACTIONS(1689), + [aux_sym__val_number_decimal_token2] = ACTIONS(1691), + [aux_sym__val_number_decimal_token3] = ACTIONS(1691), + [aux_sym__val_number_decimal_token4] = ACTIONS(1691), + [aux_sym__val_number_token1] = ACTIONS(1691), + [aux_sym__val_number_token2] = ACTIONS(1691), + [aux_sym__val_number_token3] = ACTIONS(1691), + [aux_sym__val_number_token4] = ACTIONS(1689), + [aux_sym__val_number_token5] = ACTIONS(1689), + [aux_sym__val_number_token6] = ACTIONS(1689), + [sym_filesize_unit] = ACTIONS(1689), + [sym_duration_unit] = ACTIONS(1689), + [anon_sym_DQUOTE] = ACTIONS(1691), + [sym__str_single_quotes] = ACTIONS(1691), + [sym__str_back_ticks] = ACTIONS(1691), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1691), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1691), + [anon_sym_register] = ACTIONS(1689), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1689), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1691), }, [359] = { - [sym_cell_path] = STATE(517), - [sym_path] = STATE(450), + [sym_cell_path] = STATE(513), + [sym_path] = STATE(445), [sym_comment] = STATE(359), - [aux_sym_cell_path_repeat1] = STATE(375), - [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(1699), - [aux_sym_cmd_identifier_token3] = ACTIONS(1699), - [aux_sym_cmd_identifier_token4] = ACTIONS(1699), - [aux_sym_cmd_identifier_token5] = ACTIONS(1699), - [aux_sym_cmd_identifier_token6] = ACTIONS(1699), - [aux_sym_cmd_identifier_token7] = ACTIONS(1699), - [aux_sym_cmd_identifier_token8] = ACTIONS(1697), - [aux_sym_cmd_identifier_token9] = ACTIONS(1697), - [aux_sym_cmd_identifier_token10] = ACTIONS(1699), - [aux_sym_cmd_identifier_token11] = ACTIONS(1699), - [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(1699), - [aux_sym_cmd_identifier_token17] = ACTIONS(1699), - [aux_sym_cmd_identifier_token18] = ACTIONS(1699), - [aux_sym_cmd_identifier_token19] = ACTIONS(1699), - [aux_sym_cmd_identifier_token20] = ACTIONS(1699), - [aux_sym_cmd_identifier_token21] = ACTIONS(1699), - [aux_sym_cmd_identifier_token22] = ACTIONS(1699), - [aux_sym_cmd_identifier_token23] = ACTIONS(1699), - [aux_sym_cmd_identifier_token24] = ACTIONS(1699), - [aux_sym_cmd_identifier_token25] = ACTIONS(1699), - [aux_sym_cmd_identifier_token26] = ACTIONS(1699), - [aux_sym_cmd_identifier_token27] = ACTIONS(1699), - [aux_sym_cmd_identifier_token28] = ACTIONS(1699), - [aux_sym_cmd_identifier_token29] = ACTIONS(1699), - [aux_sym_cmd_identifier_token30] = ACTIONS(1699), - [aux_sym_cmd_identifier_token31] = ACTIONS(1699), - [aux_sym_cmd_identifier_token32] = ACTIONS(1699), - [aux_sym_cmd_identifier_token33] = ACTIONS(1699), - [aux_sym_cmd_identifier_token34] = ACTIONS(1697), - [aux_sym_cmd_identifier_token35] = ACTIONS(1699), - [aux_sym_cmd_identifier_token36] = ACTIONS(1699), - [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1699), - [anon_sym_DOLLAR] = ACTIONS(1697), - [anon_sym_error] = ACTIONS(1697), - [anon_sym_DASH2] = ACTIONS(1697), - [anon_sym_break] = ACTIONS(1697), - [anon_sym_continue] = ACTIONS(1697), - [anon_sym_for] = ACTIONS(1697), - [anon_sym_in2] = 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_as] = ACTIONS(1697), - [anon_sym_PLUS2] = ACTIONS(1697), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1699), - [anon_sym_DOT_DOT2] = ACTIONS(1697), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1699), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1699), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1699), - [aux_sym__val_number_decimal_token1] = ACTIONS(1697), - [aux_sym__val_number_decimal_token2] = ACTIONS(1699), - [aux_sym__val_number_decimal_token3] = ACTIONS(1699), - [aux_sym__val_number_decimal_token4] = ACTIONS(1699), - [aux_sym__val_number_token1] = ACTIONS(1699), - [aux_sym__val_number_token2] = ACTIONS(1699), - [aux_sym__val_number_token3] = ACTIONS(1699), - [aux_sym__val_number_token4] = ACTIONS(1697), - [aux_sym__val_number_token5] = ACTIONS(1697), - [aux_sym__val_number_token6] = ACTIONS(1697), - [anon_sym_DQUOTE] = ACTIONS(1699), - [sym__str_single_quotes] = ACTIONS(1699), - [sym__str_back_ticks] = ACTIONS(1699), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1699), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1699), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1699), - [anon_sym_DOT2] = ACTIONS(1793), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1699), + [aux_sym_cell_path_repeat1] = STATE(384), + [anon_sym_export] = ACTIONS(1676), + [anon_sym_alias] = ACTIONS(1676), + [anon_sym_let] = ACTIONS(1676), + [anon_sym_let_DASHenv] = ACTIONS(1676), + [anon_sym_mut] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [aux_sym_cmd_identifier_token1] = ACTIONS(1676), + [aux_sym_cmd_identifier_token2] = ACTIONS(1678), + [aux_sym_cmd_identifier_token3] = ACTIONS(1678), + [aux_sym_cmd_identifier_token4] = ACTIONS(1678), + [aux_sym_cmd_identifier_token5] = ACTIONS(1678), + [aux_sym_cmd_identifier_token6] = ACTIONS(1678), + [aux_sym_cmd_identifier_token7] = ACTIONS(1678), + [aux_sym_cmd_identifier_token8] = ACTIONS(1676), + [aux_sym_cmd_identifier_token9] = ACTIONS(1676), + [aux_sym_cmd_identifier_token10] = ACTIONS(1678), + [aux_sym_cmd_identifier_token11] = ACTIONS(1678), + [aux_sym_cmd_identifier_token12] = ACTIONS(1676), + [aux_sym_cmd_identifier_token13] = ACTIONS(1676), + [aux_sym_cmd_identifier_token14] = ACTIONS(1676), + [aux_sym_cmd_identifier_token15] = ACTIONS(1676), + [aux_sym_cmd_identifier_token16] = ACTIONS(1678), + [aux_sym_cmd_identifier_token17] = ACTIONS(1678), + [aux_sym_cmd_identifier_token18] = ACTIONS(1678), + [aux_sym_cmd_identifier_token19] = ACTIONS(1678), + [aux_sym_cmd_identifier_token20] = ACTIONS(1678), + [aux_sym_cmd_identifier_token21] = ACTIONS(1678), + [aux_sym_cmd_identifier_token22] = ACTIONS(1678), + [aux_sym_cmd_identifier_token23] = ACTIONS(1678), + [aux_sym_cmd_identifier_token24] = ACTIONS(1678), + [aux_sym_cmd_identifier_token25] = ACTIONS(1678), + [aux_sym_cmd_identifier_token26] = ACTIONS(1678), + [aux_sym_cmd_identifier_token27] = ACTIONS(1678), + [aux_sym_cmd_identifier_token28] = ACTIONS(1678), + [aux_sym_cmd_identifier_token29] = ACTIONS(1678), + [aux_sym_cmd_identifier_token30] = ACTIONS(1678), + [aux_sym_cmd_identifier_token31] = ACTIONS(1678), + [aux_sym_cmd_identifier_token32] = ACTIONS(1678), + [aux_sym_cmd_identifier_token33] = ACTIONS(1678), + [aux_sym_cmd_identifier_token34] = ACTIONS(1676), + [aux_sym_cmd_identifier_token35] = ACTIONS(1678), + [aux_sym_cmd_identifier_token36] = ACTIONS(1678), + [aux_sym_cmd_identifier_token37] = ACTIONS(1678), + [aux_sym_cmd_identifier_token38] = ACTIONS(1676), + [aux_sym_cmd_identifier_token39] = ACTIONS(1678), + [aux_sym_cmd_identifier_token40] = ACTIONS(1678), + [anon_sym_def] = ACTIONS(1676), + [anon_sym_export_DASHenv] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym_module] = ACTIONS(1676), + [anon_sym_use] = ACTIONS(1676), + [anon_sym_LPAREN] = ACTIONS(1678), + [anon_sym_COMMA] = ACTIONS(1678), + [anon_sym_DOLLAR] = ACTIONS(1676), + [anon_sym_error] = ACTIONS(1676), + [anon_sym_DASH2] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_in2] = ACTIONS(1676), + [anon_sym_loop] = ACTIONS(1676), + [anon_sym_make] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_else] = ACTIONS(1676), + [anon_sym_match] = ACTIONS(1676), + [anon_sym_RBRACE] = ACTIONS(1678), + [anon_sym_try] = ACTIONS(1676), + [anon_sym_catch] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_source] = ACTIONS(1676), + [anon_sym_source_DASHenv] = ACTIONS(1676), + [anon_sym_hide] = ACTIONS(1676), + [anon_sym_hide_DASHenv] = ACTIONS(1676), + [anon_sym_overlay] = ACTIONS(1676), + [anon_sym_as] = ACTIONS(1676), + [anon_sym_PLUS2] = ACTIONS(1676), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1678), + [anon_sym_DOT_DOT2] = ACTIONS(1676), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1678), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1678), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1678), + [aux_sym__val_number_decimal_token1] = ACTIONS(1676), + [aux_sym__val_number_decimal_token2] = ACTIONS(1678), + [aux_sym__val_number_decimal_token3] = ACTIONS(1678), + [aux_sym__val_number_decimal_token4] = ACTIONS(1678), + [aux_sym__val_number_token1] = ACTIONS(1678), + [aux_sym__val_number_token2] = ACTIONS(1678), + [aux_sym__val_number_token3] = ACTIONS(1678), + [aux_sym__val_number_token4] = ACTIONS(1676), + [aux_sym__val_number_token5] = ACTIONS(1676), + [aux_sym__val_number_token6] = ACTIONS(1676), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym__str_single_quotes] = ACTIONS(1678), + [sym__str_back_ticks] = ACTIONS(1678), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1678), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1678), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1678), + [anon_sym_register] = ACTIONS(1676), + [anon_sym_DOT2] = ACTIONS(1761), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1678), }, [360] = { [sym_comment] = STATE(360), - [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), - [aux_sym_cmd_identifier_token37] = ACTIONS(1755), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1755), - [aux_sym_cmd_identifier_token40] = ACTIONS(1755), - [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(1755), - [anon_sym_COMMA] = ACTIONS(1755), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in2] = 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_RBRACE] = 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_as] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_PLUS2] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1755), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(1761), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1755), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1755), - [aux_sym__val_number_decimal_token3] = ACTIONS(1755), - [aux_sym__val_number_decimal_token4] = ACTIONS(1755), - [aux_sym__val_number_token1] = ACTIONS(1755), - [aux_sym__val_number_token2] = ACTIONS(1755), - [aux_sym__val_number_token3] = ACTIONS(1755), - [aux_sym__val_number_token4] = ACTIONS(1755), - [aux_sym__val_number_token5] = ACTIONS(1755), - [aux_sym__val_number_token6] = ACTIONS(1755), - [anon_sym_DQUOTE] = ACTIONS(1755), - [sym__str_single_quotes] = ACTIONS(1755), - [sym__str_back_ticks] = ACTIONS(1755), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1755), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1755), - [sym__entry_separator] = ACTIONS(1757), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1755), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1701), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_error] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_in2] = 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_hide] = ACTIONS(1701), + [anon_sym_hide_DASHenv] = ACTIONS(1701), + [anon_sym_overlay] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1701), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(1707), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1701), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1701), + [aux_sym__val_number_decimal_token3] = ACTIONS(1701), + [aux_sym__val_number_decimal_token4] = ACTIONS(1701), + [aux_sym__val_number_token1] = ACTIONS(1701), + [aux_sym__val_number_token2] = ACTIONS(1701), + [aux_sym__val_number_token3] = ACTIONS(1701), + [aux_sym__val_number_token4] = ACTIONS(1701), + [aux_sym__val_number_token5] = ACTIONS(1701), + [aux_sym__val_number_token6] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1701), + [sym__str_single_quotes] = ACTIONS(1701), + [sym__str_back_ticks] = ACTIONS(1701), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1701), + [sym__entry_separator] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1701), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1701), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1757), + [sym_raw_string_begin] = ACTIONS(1703), }, [361] = { - [sym_path] = STATE(404), [sym_comment] = STATE(361), - [aux_sym_cell_path_repeat1] = STATE(362), - [anon_sym_export] = ACTIONS(949), - [anon_sym_alias] = ACTIONS(949), - [anon_sym_let] = ACTIONS(949), - [anon_sym_let_DASHenv] = ACTIONS(949), - [anon_sym_mut] = ACTIONS(949), - [anon_sym_const] = ACTIONS(949), - [aux_sym_cmd_identifier_token1] = ACTIONS(949), - [aux_sym_cmd_identifier_token2] = ACTIONS(949), - [aux_sym_cmd_identifier_token3] = ACTIONS(949), - [aux_sym_cmd_identifier_token4] = ACTIONS(949), - [aux_sym_cmd_identifier_token5] = ACTIONS(949), - [aux_sym_cmd_identifier_token6] = ACTIONS(949), - [aux_sym_cmd_identifier_token7] = ACTIONS(949), - [aux_sym_cmd_identifier_token8] = ACTIONS(949), - [aux_sym_cmd_identifier_token9] = ACTIONS(949), - [aux_sym_cmd_identifier_token10] = ACTIONS(949), - [aux_sym_cmd_identifier_token11] = ACTIONS(949), - [aux_sym_cmd_identifier_token12] = ACTIONS(949), - [aux_sym_cmd_identifier_token13] = ACTIONS(949), - [aux_sym_cmd_identifier_token14] = ACTIONS(949), - [aux_sym_cmd_identifier_token15] = ACTIONS(949), - [aux_sym_cmd_identifier_token16] = ACTIONS(949), - [aux_sym_cmd_identifier_token17] = ACTIONS(949), - [aux_sym_cmd_identifier_token18] = ACTIONS(949), - [aux_sym_cmd_identifier_token19] = ACTIONS(949), - [aux_sym_cmd_identifier_token20] = ACTIONS(949), - [aux_sym_cmd_identifier_token21] = ACTIONS(949), - [aux_sym_cmd_identifier_token22] = ACTIONS(949), - [aux_sym_cmd_identifier_token23] = ACTIONS(949), - [aux_sym_cmd_identifier_token24] = ACTIONS(949), - [aux_sym_cmd_identifier_token25] = ACTIONS(949), - [aux_sym_cmd_identifier_token26] = ACTIONS(949), - [aux_sym_cmd_identifier_token27] = ACTIONS(949), - [aux_sym_cmd_identifier_token28] = ACTIONS(949), - [aux_sym_cmd_identifier_token29] = ACTIONS(949), - [aux_sym_cmd_identifier_token30] = ACTIONS(949), - [aux_sym_cmd_identifier_token31] = ACTIONS(949), - [aux_sym_cmd_identifier_token32] = ACTIONS(949), - [aux_sym_cmd_identifier_token33] = ACTIONS(949), - [aux_sym_cmd_identifier_token34] = ACTIONS(949), - [aux_sym_cmd_identifier_token35] = ACTIONS(949), - [aux_sym_cmd_identifier_token36] = ACTIONS(949), - [aux_sym_cmd_identifier_token37] = ACTIONS(949), - [aux_sym_cmd_identifier_token38] = ACTIONS(949), - [aux_sym_cmd_identifier_token39] = ACTIONS(949), - [aux_sym_cmd_identifier_token40] = ACTIONS(949), - [anon_sym_def] = ACTIONS(949), - [anon_sym_export_DASHenv] = ACTIONS(949), - [anon_sym_extern] = ACTIONS(949), - [anon_sym_module] = ACTIONS(949), - [anon_sym_use] = ACTIONS(949), - [anon_sym_LPAREN] = ACTIONS(949), - [anon_sym_COMMA] = ACTIONS(949), - [anon_sym_DOLLAR] = ACTIONS(949), - [anon_sym_error] = ACTIONS(949), - [anon_sym_DASH2] = ACTIONS(949), - [anon_sym_break] = ACTIONS(949), - [anon_sym_continue] = ACTIONS(949), - [anon_sym_for] = ACTIONS(949), - [anon_sym_in2] = ACTIONS(949), - [anon_sym_loop] = ACTIONS(949), - [anon_sym_make] = ACTIONS(949), - [anon_sym_while] = ACTIONS(949), - [anon_sym_do] = ACTIONS(949), - [anon_sym_if] = ACTIONS(949), - [anon_sym_else] = ACTIONS(949), - [anon_sym_match] = ACTIONS(949), - [anon_sym_RBRACE] = ACTIONS(949), - [anon_sym_try] = ACTIONS(949), - [anon_sym_catch] = ACTIONS(949), - [anon_sym_return] = ACTIONS(949), - [anon_sym_source] = ACTIONS(949), - [anon_sym_source_DASHenv] = ACTIONS(949), - [anon_sym_register] = ACTIONS(949), - [anon_sym_hide] = ACTIONS(949), - [anon_sym_hide_DASHenv] = ACTIONS(949), - [anon_sym_overlay] = ACTIONS(949), - [anon_sym_as] = ACTIONS(949), - [anon_sym_PLUS2] = ACTIONS(949), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(949), - [anon_sym_DOT_DOT2] = ACTIONS(949), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(951), - [anon_sym_DOT_DOT_LT2] = ACTIONS(951), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(949), - [aux_sym__val_number_decimal_token1] = ACTIONS(949), - [aux_sym__val_number_decimal_token2] = ACTIONS(949), - [aux_sym__val_number_decimal_token3] = ACTIONS(949), - [aux_sym__val_number_decimal_token4] = ACTIONS(949), - [aux_sym__val_number_token1] = ACTIONS(949), - [aux_sym__val_number_token2] = ACTIONS(949), - [aux_sym__val_number_token3] = ACTIONS(949), - [aux_sym__val_number_token4] = ACTIONS(949), - [aux_sym__val_number_token5] = ACTIONS(949), - [aux_sym__val_number_token6] = ACTIONS(949), - [anon_sym_DQUOTE] = ACTIONS(949), - [sym__str_single_quotes] = ACTIONS(949), - [sym__str_back_ticks] = ACTIONS(949), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(949), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(949), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(949), - [sym__entry_separator] = ACTIONS(951), - [anon_sym_DOT2] = ACTIONS(1701), + [anon_sym_export] = ACTIONS(1766), + [anon_sym_alias] = ACTIONS(1766), + [anon_sym_let] = ACTIONS(1766), + [anon_sym_let_DASHenv] = ACTIONS(1766), + [anon_sym_mut] = ACTIONS(1766), + [anon_sym_const] = ACTIONS(1766), + [aux_sym_cmd_identifier_token1] = ACTIONS(1766), + [aux_sym_cmd_identifier_token2] = ACTIONS(1766), + [aux_sym_cmd_identifier_token3] = ACTIONS(1766), + [aux_sym_cmd_identifier_token4] = ACTIONS(1766), + [aux_sym_cmd_identifier_token5] = ACTIONS(1766), + [aux_sym_cmd_identifier_token6] = ACTIONS(1766), + [aux_sym_cmd_identifier_token7] = ACTIONS(1766), + [aux_sym_cmd_identifier_token8] = ACTIONS(1766), + [aux_sym_cmd_identifier_token9] = ACTIONS(1766), + [aux_sym_cmd_identifier_token10] = ACTIONS(1766), + [aux_sym_cmd_identifier_token11] = ACTIONS(1766), + [aux_sym_cmd_identifier_token12] = ACTIONS(1766), + [aux_sym_cmd_identifier_token13] = ACTIONS(1766), + [aux_sym_cmd_identifier_token14] = ACTIONS(1766), + [aux_sym_cmd_identifier_token15] = ACTIONS(1766), + [aux_sym_cmd_identifier_token16] = ACTIONS(1766), + [aux_sym_cmd_identifier_token17] = ACTIONS(1766), + [aux_sym_cmd_identifier_token18] = ACTIONS(1766), + [aux_sym_cmd_identifier_token19] = ACTIONS(1766), + [aux_sym_cmd_identifier_token20] = ACTIONS(1766), + [aux_sym_cmd_identifier_token21] = ACTIONS(1766), + [aux_sym_cmd_identifier_token22] = ACTIONS(1766), + [aux_sym_cmd_identifier_token23] = ACTIONS(1766), + [aux_sym_cmd_identifier_token24] = ACTIONS(1766), + [aux_sym_cmd_identifier_token25] = ACTIONS(1766), + [aux_sym_cmd_identifier_token26] = ACTIONS(1766), + [aux_sym_cmd_identifier_token27] = ACTIONS(1766), + [aux_sym_cmd_identifier_token28] = ACTIONS(1766), + [aux_sym_cmd_identifier_token29] = ACTIONS(1766), + [aux_sym_cmd_identifier_token30] = ACTIONS(1766), + [aux_sym_cmd_identifier_token31] = ACTIONS(1766), + [aux_sym_cmd_identifier_token32] = ACTIONS(1766), + [aux_sym_cmd_identifier_token33] = ACTIONS(1766), + [aux_sym_cmd_identifier_token34] = ACTIONS(1766), + [aux_sym_cmd_identifier_token35] = ACTIONS(1766), + [aux_sym_cmd_identifier_token36] = ACTIONS(1766), + [aux_sym_cmd_identifier_token37] = ACTIONS(1766), + [aux_sym_cmd_identifier_token38] = ACTIONS(1766), + [aux_sym_cmd_identifier_token39] = ACTIONS(1766), + [aux_sym_cmd_identifier_token40] = ACTIONS(1766), + [anon_sym_def] = ACTIONS(1766), + [anon_sym_export_DASHenv] = ACTIONS(1766), + [anon_sym_extern] = ACTIONS(1766), + [anon_sym_module] = ACTIONS(1766), + [anon_sym_use] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1766), + [anon_sym_COMMA] = ACTIONS(1766), + [anon_sym_DOLLAR] = ACTIONS(1766), + [anon_sym_error] = ACTIONS(1766), + [anon_sym_DASH2] = ACTIONS(1766), + [anon_sym_break] = ACTIONS(1766), + [anon_sym_continue] = ACTIONS(1766), + [anon_sym_for] = ACTIONS(1766), + [anon_sym_in2] = ACTIONS(1766), + [anon_sym_loop] = ACTIONS(1766), + [anon_sym_make] = ACTIONS(1766), + [anon_sym_while] = ACTIONS(1766), + [anon_sym_do] = ACTIONS(1766), + [anon_sym_if] = ACTIONS(1766), + [anon_sym_else] = ACTIONS(1766), + [anon_sym_match] = ACTIONS(1766), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_try] = ACTIONS(1766), + [anon_sym_catch] = ACTIONS(1766), + [anon_sym_return] = ACTIONS(1766), + [anon_sym_source] = ACTIONS(1766), + [anon_sym_source_DASHenv] = ACTIONS(1766), + [anon_sym_hide] = ACTIONS(1766), + [anon_sym_hide_DASHenv] = ACTIONS(1766), + [anon_sym_overlay] = ACTIONS(1766), + [anon_sym_as] = ACTIONS(1766), + [anon_sym_LPAREN2] = ACTIONS(1768), + [anon_sym_PLUS2] = ACTIONS(1766), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1766), + [anon_sym_DOT_DOT2] = ACTIONS(1766), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1768), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1768), + [aux_sym__immediate_decimal_token2] = ACTIONS(1770), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1766), + [aux_sym__val_number_decimal_token1] = ACTIONS(1766), + [aux_sym__val_number_decimal_token2] = ACTIONS(1766), + [aux_sym__val_number_decimal_token3] = ACTIONS(1766), + [aux_sym__val_number_decimal_token4] = ACTIONS(1766), + [aux_sym__val_number_token1] = ACTIONS(1766), + [aux_sym__val_number_token2] = ACTIONS(1766), + [aux_sym__val_number_token3] = ACTIONS(1766), + [aux_sym__val_number_token4] = ACTIONS(1766), + [aux_sym__val_number_token5] = ACTIONS(1766), + [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(1766), + [sym__entry_separator] = ACTIONS(1768), + [anon_sym_register] = ACTIONS(1766), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1766), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(951), + [sym_raw_string_begin] = ACTIONS(1768), }, [362] = { - [sym_path] = STATE(404), [sym_comment] = STATE(362), - [aux_sym_cell_path_repeat1] = STATE(362), - [anon_sym_export] = ACTIONS(953), - [anon_sym_alias] = ACTIONS(953), - [anon_sym_let] = ACTIONS(953), - [anon_sym_let_DASHenv] = ACTIONS(953), - [anon_sym_mut] = ACTIONS(953), - [anon_sym_const] = ACTIONS(953), - [aux_sym_cmd_identifier_token1] = ACTIONS(953), - [aux_sym_cmd_identifier_token2] = ACTIONS(953), - [aux_sym_cmd_identifier_token3] = ACTIONS(953), - [aux_sym_cmd_identifier_token4] = ACTIONS(953), - [aux_sym_cmd_identifier_token5] = ACTIONS(953), - [aux_sym_cmd_identifier_token6] = ACTIONS(953), - [aux_sym_cmd_identifier_token7] = ACTIONS(953), - [aux_sym_cmd_identifier_token8] = ACTIONS(953), - [aux_sym_cmd_identifier_token9] = ACTIONS(953), - [aux_sym_cmd_identifier_token10] = ACTIONS(953), - [aux_sym_cmd_identifier_token11] = ACTIONS(953), - [aux_sym_cmd_identifier_token12] = ACTIONS(953), - [aux_sym_cmd_identifier_token13] = ACTIONS(953), - [aux_sym_cmd_identifier_token14] = ACTIONS(953), - [aux_sym_cmd_identifier_token15] = ACTIONS(953), - [aux_sym_cmd_identifier_token16] = ACTIONS(953), - [aux_sym_cmd_identifier_token17] = ACTIONS(953), - [aux_sym_cmd_identifier_token18] = ACTIONS(953), - [aux_sym_cmd_identifier_token19] = ACTIONS(953), - [aux_sym_cmd_identifier_token20] = ACTIONS(953), - [aux_sym_cmd_identifier_token21] = ACTIONS(953), - [aux_sym_cmd_identifier_token22] = ACTIONS(953), - [aux_sym_cmd_identifier_token23] = ACTIONS(953), - [aux_sym_cmd_identifier_token24] = ACTIONS(953), - [aux_sym_cmd_identifier_token25] = ACTIONS(953), - [aux_sym_cmd_identifier_token26] = ACTIONS(953), - [aux_sym_cmd_identifier_token27] = ACTIONS(953), - [aux_sym_cmd_identifier_token28] = ACTIONS(953), - [aux_sym_cmd_identifier_token29] = ACTIONS(953), - [aux_sym_cmd_identifier_token30] = ACTIONS(953), - [aux_sym_cmd_identifier_token31] = ACTIONS(953), - [aux_sym_cmd_identifier_token32] = ACTIONS(953), - [aux_sym_cmd_identifier_token33] = ACTIONS(953), - [aux_sym_cmd_identifier_token34] = ACTIONS(953), - [aux_sym_cmd_identifier_token35] = ACTIONS(953), - [aux_sym_cmd_identifier_token36] = ACTIONS(953), - [aux_sym_cmd_identifier_token37] = ACTIONS(953), - [aux_sym_cmd_identifier_token38] = ACTIONS(953), - [aux_sym_cmd_identifier_token39] = ACTIONS(953), - [aux_sym_cmd_identifier_token40] = ACTIONS(953), - [anon_sym_def] = ACTIONS(953), - [anon_sym_export_DASHenv] = ACTIONS(953), - [anon_sym_extern] = ACTIONS(953), - [anon_sym_module] = ACTIONS(953), - [anon_sym_use] = ACTIONS(953), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(953), - [anon_sym_DOLLAR] = ACTIONS(953), - [anon_sym_error] = ACTIONS(953), - [anon_sym_DASH2] = ACTIONS(953), - [anon_sym_break] = ACTIONS(953), - [anon_sym_continue] = ACTIONS(953), - [anon_sym_for] = ACTIONS(953), - [anon_sym_in2] = ACTIONS(953), - [anon_sym_loop] = ACTIONS(953), - [anon_sym_make] = ACTIONS(953), - [anon_sym_while] = ACTIONS(953), - [anon_sym_do] = ACTIONS(953), - [anon_sym_if] = ACTIONS(953), - [anon_sym_else] = ACTIONS(953), - [anon_sym_match] = ACTIONS(953), - [anon_sym_RBRACE] = ACTIONS(953), - [anon_sym_try] = ACTIONS(953), - [anon_sym_catch] = ACTIONS(953), - [anon_sym_return] = ACTIONS(953), - [anon_sym_source] = ACTIONS(953), - [anon_sym_source_DASHenv] = ACTIONS(953), - [anon_sym_register] = ACTIONS(953), - [anon_sym_hide] = ACTIONS(953), - [anon_sym_hide_DASHenv] = ACTIONS(953), - [anon_sym_overlay] = ACTIONS(953), - [anon_sym_as] = ACTIONS(953), - [anon_sym_PLUS2] = ACTIONS(953), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(953), - [anon_sym_DOT_DOT2] = ACTIONS(953), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(955), - [anon_sym_DOT_DOT_LT2] = ACTIONS(955), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(953), - [aux_sym__val_number_decimal_token1] = ACTIONS(953), - [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), - [aux_sym__val_number_token4] = ACTIONS(953), - [aux_sym__val_number_token5] = ACTIONS(953), - [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(953), - [sym__entry_separator] = ACTIONS(955), - [anon_sym_DOT2] = ACTIONS(1795), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(955), + [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(1703), + [aux_sym_cmd_identifier_token3] = ACTIONS(1703), + [aux_sym_cmd_identifier_token4] = ACTIONS(1703), + [aux_sym_cmd_identifier_token5] = ACTIONS(1703), + [aux_sym_cmd_identifier_token6] = ACTIONS(1703), + [aux_sym_cmd_identifier_token7] = ACTIONS(1703), + [aux_sym_cmd_identifier_token8] = ACTIONS(1701), + [aux_sym_cmd_identifier_token9] = ACTIONS(1701), + [aux_sym_cmd_identifier_token10] = ACTIONS(1703), + [aux_sym_cmd_identifier_token11] = ACTIONS(1703), + [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(1703), + [aux_sym_cmd_identifier_token17] = ACTIONS(1703), + [aux_sym_cmd_identifier_token18] = ACTIONS(1703), + [aux_sym_cmd_identifier_token19] = ACTIONS(1703), + [aux_sym_cmd_identifier_token20] = ACTIONS(1703), + [aux_sym_cmd_identifier_token21] = ACTIONS(1703), + [aux_sym_cmd_identifier_token22] = ACTIONS(1703), + [aux_sym_cmd_identifier_token23] = ACTIONS(1703), + [aux_sym_cmd_identifier_token24] = ACTIONS(1703), + [aux_sym_cmd_identifier_token25] = ACTIONS(1703), + [aux_sym_cmd_identifier_token26] = ACTIONS(1703), + [aux_sym_cmd_identifier_token27] = ACTIONS(1703), + [aux_sym_cmd_identifier_token28] = ACTIONS(1703), + [aux_sym_cmd_identifier_token29] = ACTIONS(1703), + [aux_sym_cmd_identifier_token30] = ACTIONS(1703), + [aux_sym_cmd_identifier_token31] = ACTIONS(1703), + [aux_sym_cmd_identifier_token32] = ACTIONS(1703), + [aux_sym_cmd_identifier_token33] = ACTIONS(1703), + [aux_sym_cmd_identifier_token34] = ACTIONS(1701), + [aux_sym_cmd_identifier_token35] = ACTIONS(1703), + [aux_sym_cmd_identifier_token36] = ACTIONS(1703), + [aux_sym_cmd_identifier_token37] = ACTIONS(1703), + [aux_sym_cmd_identifier_token38] = ACTIONS(1701), + [aux_sym_cmd_identifier_token39] = ACTIONS(1703), + [aux_sym_cmd_identifier_token40] = ACTIONS(1703), + [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_COMMA] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_error] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_in2] = 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(1703), + [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_hide] = ACTIONS(1701), + [anon_sym_hide_DASHenv] = ACTIONS(1701), + [anon_sym_overlay] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1703), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT] = ACTIONS(1772), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(1774), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1701), + [aux_sym__val_number_token5] = ACTIONS(1701), + [aux_sym__val_number_token6] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1701), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1703), }, [363] = { - [sym_cell_path] = STATE(511), - [sym_path] = STATE(450), [sym_comment] = STATE(363), - [aux_sym_cell_path_repeat1] = STATE(375), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_alias] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_let_DASHenv] = ACTIONS(1719), - [anon_sym_mut] = ACTIONS(1719), - [anon_sym_const] = ACTIONS(1719), - [aux_sym_cmd_identifier_token1] = ACTIONS(1719), - [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(1719), - [aux_sym_cmd_identifier_token9] = ACTIONS(1719), - [aux_sym_cmd_identifier_token10] = ACTIONS(1721), - [aux_sym_cmd_identifier_token11] = ACTIONS(1721), - [aux_sym_cmd_identifier_token12] = ACTIONS(1719), - [aux_sym_cmd_identifier_token13] = ACTIONS(1719), - [aux_sym_cmd_identifier_token14] = ACTIONS(1719), - [aux_sym_cmd_identifier_token15] = ACTIONS(1719), - [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(1719), - [aux_sym_cmd_identifier_token35] = ACTIONS(1721), - [aux_sym_cmd_identifier_token36] = ACTIONS(1721), - [aux_sym_cmd_identifier_token37] = ACTIONS(1721), - [aux_sym_cmd_identifier_token38] = ACTIONS(1719), - [aux_sym_cmd_identifier_token39] = ACTIONS(1721), - [aux_sym_cmd_identifier_token40] = ACTIONS(1721), - [anon_sym_def] = ACTIONS(1719), - [anon_sym_export_DASHenv] = ACTIONS(1719), - [anon_sym_extern] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(1719), - [anon_sym_use] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_COMMA] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1719), - [anon_sym_error] = ACTIONS(1719), - [anon_sym_DASH2] = ACTIONS(1719), - [anon_sym_break] = ACTIONS(1719), - [anon_sym_continue] = ACTIONS(1719), - [anon_sym_for] = ACTIONS(1719), - [anon_sym_in2] = ACTIONS(1719), - [anon_sym_loop] = ACTIONS(1719), - [anon_sym_make] = ACTIONS(1719), - [anon_sym_while] = ACTIONS(1719), - [anon_sym_do] = ACTIONS(1719), - [anon_sym_if] = ACTIONS(1719), - [anon_sym_else] = ACTIONS(1719), - [anon_sym_match] = ACTIONS(1719), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_try] = ACTIONS(1719), - [anon_sym_catch] = ACTIONS(1719), - [anon_sym_return] = ACTIONS(1719), - [anon_sym_source] = ACTIONS(1719), - [anon_sym_source_DASHenv] = ACTIONS(1719), - [anon_sym_register] = ACTIONS(1719), - [anon_sym_hide] = ACTIONS(1719), - [anon_sym_hide_DASHenv] = ACTIONS(1719), - [anon_sym_overlay] = ACTIONS(1719), - [anon_sym_as] = ACTIONS(1719), - [anon_sym_PLUS2] = ACTIONS(1719), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1721), - [anon_sym_DOT_DOT2] = ACTIONS(1719), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1721), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1721), - [aux_sym__val_number_decimal_token1] = ACTIONS(1719), - [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), - [aux_sym__val_number_token4] = ACTIONS(1719), - [aux_sym__val_number_token5] = ACTIONS(1719), - [aux_sym__val_number_token6] = ACTIONS(1719), - [anon_sym_DQUOTE] = ACTIONS(1721), - [sym__str_single_quotes] = ACTIONS(1721), - [sym__str_back_ticks] = ACTIONS(1721), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1721), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1721), - [anon_sym_DOT2] = ACTIONS(1793), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1721), + [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(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(1776), + [aux_sym_cmd_identifier_token9] = ACTIONS(1776), + [aux_sym_cmd_identifier_token10] = ACTIONS(1778), + [aux_sym_cmd_identifier_token11] = ACTIONS(1778), + [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(1778), + [aux_sym_cmd_identifier_token17] = ACTIONS(1778), + [aux_sym_cmd_identifier_token18] = ACTIONS(1776), + [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(1776), + [aux_sym_cmd_identifier_token33] = ACTIONS(1778), + [aux_sym_cmd_identifier_token34] = ACTIONS(1776), + [aux_sym_cmd_identifier_token35] = ACTIONS(1778), + [aux_sym_cmd_identifier_token36] = ACTIONS(1778), + [aux_sym_cmd_identifier_token37] = ACTIONS(1778), + [aux_sym_cmd_identifier_token38] = ACTIONS(1776), + [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_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_LBRACK] = ACTIONS(1778), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_DOLLAR] = ACTIONS(1776), + [anon_sym_error] = ACTIONS(1776), + [anon_sym_DASH2] = ACTIONS(1776), + [anon_sym_break] = ACTIONS(1776), + [anon_sym_continue] = ACTIONS(1776), + [anon_sym_for] = ACTIONS(1776), + [anon_sym_loop] = ACTIONS(1776), + [anon_sym_while] = ACTIONS(1776), + [anon_sym_do] = ACTIONS(1776), + [anon_sym_if] = ACTIONS(1776), + [anon_sym_match] = ACTIONS(1776), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_try] = ACTIONS(1776), + [anon_sym_return] = ACTIONS(1776), + [anon_sym_source] = ACTIONS(1776), + [anon_sym_source_DASHenv] = ACTIONS(1776), + [anon_sym_hide] = ACTIONS(1776), + [anon_sym_hide_DASHenv] = ACTIONS(1776), + [anon_sym_overlay] = ACTIONS(1776), + [anon_sym_where] = ACTIONS(1778), + [aux_sym_expr_unary_token1] = ACTIONS(1778), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1778), + [anon_sym_DOT_DOT_LT] = ACTIONS(1778), + [anon_sym_null] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1776), + [anon_sym_false] = ACTIONS(1776), + [aux_sym__val_number_decimal_token1] = ACTIONS(1776), + [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), + [aux_sym__val_number_token4] = ACTIONS(1776), + [aux_sym__val_number_token5] = ACTIONS(1776), + [aux_sym__val_number_token6] = ACTIONS(1776), + [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), + [aux_sym_env_var_token1] = ACTIONS(1776), + [anon_sym_CARET] = ACTIONS(1778), + [aux_sym_command_token1] = ACTIONS(1778), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1778), }, [364] = { [sym_comment] = STATE(364), + [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(1628), + [aux_sym_cmd_identifier_token3] = ACTIONS(1628), + [aux_sym_cmd_identifier_token4] = ACTIONS(1628), + [aux_sym_cmd_identifier_token5] = ACTIONS(1628), + [aux_sym_cmd_identifier_token6] = ACTIONS(1628), + [aux_sym_cmd_identifier_token7] = ACTIONS(1628), + [aux_sym_cmd_identifier_token8] = ACTIONS(1626), + [aux_sym_cmd_identifier_token9] = ACTIONS(1626), + [aux_sym_cmd_identifier_token10] = ACTIONS(1628), + [aux_sym_cmd_identifier_token11] = ACTIONS(1628), + [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(1628), + [aux_sym_cmd_identifier_token17] = ACTIONS(1628), + [aux_sym_cmd_identifier_token18] = ACTIONS(1626), + [aux_sym_cmd_identifier_token19] = ACTIONS(1628), + [aux_sym_cmd_identifier_token20] = ACTIONS(1628), + [aux_sym_cmd_identifier_token21] = ACTIONS(1628), + [aux_sym_cmd_identifier_token22] = ACTIONS(1628), + [aux_sym_cmd_identifier_token23] = ACTIONS(1628), + [aux_sym_cmd_identifier_token24] = ACTIONS(1628), + [aux_sym_cmd_identifier_token25] = ACTIONS(1628), + [aux_sym_cmd_identifier_token26] = ACTIONS(1628), + [aux_sym_cmd_identifier_token27] = ACTIONS(1628), + [aux_sym_cmd_identifier_token28] = ACTIONS(1628), + [aux_sym_cmd_identifier_token29] = ACTIONS(1628), + [aux_sym_cmd_identifier_token30] = ACTIONS(1628), + [aux_sym_cmd_identifier_token31] = ACTIONS(1628), + [aux_sym_cmd_identifier_token32] = ACTIONS(1626), + [aux_sym_cmd_identifier_token33] = ACTIONS(1628), + [aux_sym_cmd_identifier_token34] = ACTIONS(1626), + [aux_sym_cmd_identifier_token35] = ACTIONS(1628), + [aux_sym_cmd_identifier_token36] = ACTIONS(1628), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = 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), + [anon_sym_LBRACE] = 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_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), + [anon_sym_null] = ACTIONS(1626), + [anon_sym_true] = ACTIONS(1626), + [anon_sym_false] = ACTIONS(1626), + [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), + [aux_sym__val_number_token4] = ACTIONS(1626), + [aux_sym__val_number_token5] = ACTIONS(1626), + [aux_sym__val_number_token6] = ACTIONS(1626), + [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), + [aux_sym_command_token1] = ACTIONS(1628), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1628), + }, + [365] = { + [sym_comment] = STATE(365), [anon_sym_export] = ACTIONS(1680), [anon_sym_alias] = ACTIONS(1680), [anon_sym_let] = ACTIONS(1680), @@ -121944,7 +121990,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token15] = ACTIONS(1680), [aux_sym_cmd_identifier_token16] = ACTIONS(1682), [aux_sym_cmd_identifier_token17] = ACTIONS(1682), - [aux_sym_cmd_identifier_token18] = ACTIONS(1682), + [aux_sym_cmd_identifier_token18] = ACTIONS(1680), [aux_sym_cmd_identifier_token19] = ACTIONS(1682), [aux_sym_cmd_identifier_token20] = ACTIONS(1682), [aux_sym_cmd_identifier_token21] = ACTIONS(1682), @@ -121958,7 +122004,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token29] = ACTIONS(1682), [aux_sym_cmd_identifier_token30] = ACTIONS(1682), [aux_sym_cmd_identifier_token31] = ACTIONS(1682), - [aux_sym_cmd_identifier_token32] = ACTIONS(1682), + [aux_sym_cmd_identifier_token32] = ACTIONS(1680), [aux_sym_cmd_identifier_token33] = ACTIONS(1682), [aux_sym_cmd_identifier_token34] = ACTIONS(1680), [aux_sym_cmd_identifier_token35] = ACTIONS(1682), @@ -121967,45 +122013,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(1680), [aux_sym_cmd_identifier_token39] = ACTIONS(1682), [aux_sym_cmd_identifier_token40] = ACTIONS(1682), + [sym__newline] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1682), [anon_sym_def] = ACTIONS(1680), [anon_sym_export_DASHenv] = ACTIONS(1680), [anon_sym_extern] = ACTIONS(1680), [anon_sym_module] = ACTIONS(1680), [anon_sym_use] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1680), - [anon_sym_COMMA] = ACTIONS(1682), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_LPAREN] = ACTIONS(1682), [anon_sym_DOLLAR] = ACTIONS(1680), [anon_sym_error] = ACTIONS(1680), [anon_sym_DASH2] = ACTIONS(1680), [anon_sym_break] = ACTIONS(1680), [anon_sym_continue] = ACTIONS(1680), [anon_sym_for] = ACTIONS(1680), - [anon_sym_in2] = ACTIONS(1680), [anon_sym_loop] = ACTIONS(1680), - [anon_sym_make] = ACTIONS(1680), [anon_sym_while] = ACTIONS(1680), [anon_sym_do] = ACTIONS(1680), [anon_sym_if] = ACTIONS(1680), - [anon_sym_else] = ACTIONS(1680), [anon_sym_match] = ACTIONS(1680), - [anon_sym_RBRACE] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1680), [anon_sym_try] = ACTIONS(1680), - [anon_sym_catch] = ACTIONS(1680), [anon_sym_return] = ACTIONS(1680), [anon_sym_source] = ACTIONS(1680), [anon_sym_source_DASHenv] = ACTIONS(1680), - [anon_sym_register] = ACTIONS(1680), [anon_sym_hide] = ACTIONS(1680), [anon_sym_hide_DASHenv] = ACTIONS(1680), [anon_sym_overlay] = ACTIONS(1680), - [anon_sym_as] = ACTIONS(1680), - [anon_sym_LPAREN2] = ACTIONS(1682), - [anon_sym_PLUS2] = ACTIONS(1680), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1682), - [anon_sym_DOT_DOT2] = ACTIONS(1680), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1682), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1682), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1682), + [anon_sym_where] = ACTIONS(1682), + [aux_sym_expr_unary_token1] = ACTIONS(1682), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1682), + [anon_sym_DOT_DOT_LT] = ACTIONS(1682), + [anon_sym_null] = ACTIONS(1680), + [anon_sym_true] = ACTIONS(1680), + [anon_sym_false] = ACTIONS(1680), [aux_sym__val_number_decimal_token1] = ACTIONS(1680), [aux_sym__val_number_decimal_token2] = ACTIONS(1682), [aux_sym__val_number_decimal_token3] = ACTIONS(1682), @@ -122016,1320 +122059,2186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token4] = ACTIONS(1680), [aux_sym__val_number_token5] = ACTIONS(1680), [aux_sym__val_number_token6] = ACTIONS(1680), - [sym_filesize_unit] = ACTIONS(1680), - [sym_duration_unit] = ACTIONS(1680), + [anon_sym_0b] = ACTIONS(1680), + [anon_sym_0o] = ACTIONS(1680), + [anon_sym_0x] = ACTIONS(1680), + [sym_val_date] = ACTIONS(1682), [anon_sym_DQUOTE] = ACTIONS(1682), [sym__str_single_quotes] = ACTIONS(1682), [sym__str_back_ticks] = ACTIONS(1682), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1682), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1682), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1682), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1680), - [anon_sym_POUND] = ACTIONS(251), + [aux_sym_env_var_token1] = ACTIONS(1680), + [anon_sym_CARET] = ACTIONS(1682), + [aux_sym_command_token1] = ACTIONS(1682), + [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1682), }, - [365] = { - [sym_comment] = STATE(365), - [anon_sym_export] = ACTIONS(1550), - [anon_sym_alias] = ACTIONS(1550), - [anon_sym_let] = ACTIONS(1550), - [anon_sym_let_DASHenv] = ACTIONS(1550), - [anon_sym_mut] = ACTIONS(1550), - [anon_sym_const] = ACTIONS(1550), - [aux_sym_cmd_identifier_token1] = ACTIONS(1550), - [aux_sym_cmd_identifier_token2] = ACTIONS(1552), - [aux_sym_cmd_identifier_token3] = ACTIONS(1552), - [aux_sym_cmd_identifier_token4] = ACTIONS(1552), - [aux_sym_cmd_identifier_token5] = ACTIONS(1552), - [aux_sym_cmd_identifier_token6] = ACTIONS(1552), - [aux_sym_cmd_identifier_token7] = ACTIONS(1552), - [aux_sym_cmd_identifier_token8] = ACTIONS(1550), - [aux_sym_cmd_identifier_token9] = ACTIONS(1550), - [aux_sym_cmd_identifier_token10] = ACTIONS(1552), - [aux_sym_cmd_identifier_token11] = ACTIONS(1552), - [aux_sym_cmd_identifier_token12] = ACTIONS(1550), - [aux_sym_cmd_identifier_token13] = ACTIONS(1550), - [aux_sym_cmd_identifier_token14] = ACTIONS(1550), - [aux_sym_cmd_identifier_token15] = ACTIONS(1550), - [aux_sym_cmd_identifier_token16] = ACTIONS(1552), - [aux_sym_cmd_identifier_token17] = ACTIONS(1552), - [aux_sym_cmd_identifier_token18] = ACTIONS(1552), - [aux_sym_cmd_identifier_token19] = ACTIONS(1552), - [aux_sym_cmd_identifier_token20] = ACTIONS(1552), - [aux_sym_cmd_identifier_token21] = ACTIONS(1552), - [aux_sym_cmd_identifier_token22] = ACTIONS(1552), - [aux_sym_cmd_identifier_token23] = ACTIONS(1552), - [aux_sym_cmd_identifier_token24] = ACTIONS(1552), - [aux_sym_cmd_identifier_token25] = ACTIONS(1552), - [aux_sym_cmd_identifier_token26] = ACTIONS(1552), - [aux_sym_cmd_identifier_token27] = ACTIONS(1552), - [aux_sym_cmd_identifier_token28] = ACTIONS(1552), - [aux_sym_cmd_identifier_token29] = ACTIONS(1552), - [aux_sym_cmd_identifier_token30] = ACTIONS(1552), - [aux_sym_cmd_identifier_token31] = ACTIONS(1552), - [aux_sym_cmd_identifier_token32] = ACTIONS(1552), - [aux_sym_cmd_identifier_token33] = ACTIONS(1552), - [aux_sym_cmd_identifier_token34] = ACTIONS(1550), - [aux_sym_cmd_identifier_token35] = ACTIONS(1552), - [aux_sym_cmd_identifier_token36] = ACTIONS(1552), - [aux_sym_cmd_identifier_token37] = ACTIONS(1552), - [aux_sym_cmd_identifier_token38] = ACTIONS(1550), - [aux_sym_cmd_identifier_token39] = ACTIONS(1552), - [aux_sym_cmd_identifier_token40] = ACTIONS(1552), - [anon_sym_def] = ACTIONS(1550), - [anon_sym_export_DASHenv] = ACTIONS(1550), - [anon_sym_extern] = ACTIONS(1550), - [anon_sym_module] = ACTIONS(1550), - [anon_sym_use] = ACTIONS(1550), - [anon_sym_LPAREN] = ACTIONS(1550), - [anon_sym_COMMA] = ACTIONS(1552), - [anon_sym_DOLLAR] = ACTIONS(1550), - [anon_sym_error] = ACTIONS(1550), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_break] = ACTIONS(1550), - [anon_sym_continue] = ACTIONS(1550), - [anon_sym_for] = ACTIONS(1550), - [anon_sym_in2] = ACTIONS(1550), - [anon_sym_loop] = ACTIONS(1550), - [anon_sym_make] = ACTIONS(1550), - [anon_sym_while] = ACTIONS(1550), - [anon_sym_do] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_else] = ACTIONS(1550), - [anon_sym_match] = ACTIONS(1550), - [anon_sym_RBRACE] = ACTIONS(1552), - [anon_sym_try] = ACTIONS(1550), - [anon_sym_catch] = ACTIONS(1550), - [anon_sym_return] = ACTIONS(1550), - [anon_sym_source] = ACTIONS(1550), - [anon_sym_source_DASHenv] = ACTIONS(1550), - [anon_sym_register] = ACTIONS(1550), - [anon_sym_hide] = ACTIONS(1550), - [anon_sym_hide_DASHenv] = ACTIONS(1550), - [anon_sym_overlay] = ACTIONS(1550), - [anon_sym_as] = ACTIONS(1550), - [anon_sym_LPAREN2] = ACTIONS(1552), - [anon_sym_PLUS2] = ACTIONS(1550), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1552), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1552), - [aux_sym__val_number_decimal_token1] = ACTIONS(1550), - [aux_sym__val_number_decimal_token2] = ACTIONS(1552), - [aux_sym__val_number_decimal_token3] = ACTIONS(1552), - [aux_sym__val_number_decimal_token4] = ACTIONS(1552), - [aux_sym__val_number_token1] = ACTIONS(1552), - [aux_sym__val_number_token2] = ACTIONS(1552), - [aux_sym__val_number_token3] = ACTIONS(1552), - [aux_sym__val_number_token4] = ACTIONS(1550), - [aux_sym__val_number_token5] = ACTIONS(1550), - [aux_sym__val_number_token6] = ACTIONS(1550), - [sym_filesize_unit] = ACTIONS(1550), - [sym_duration_unit] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [sym__str_single_quotes] = ACTIONS(1552), - [sym__str_back_ticks] = ACTIONS(1552), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1552), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1552), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1552), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1550), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1552), - }, [366] = { [sym_comment] = STATE(366), - [anon_sym_export] = ACTIONS(1542), - [anon_sym_alias] = ACTIONS(1542), - [anon_sym_let] = ACTIONS(1542), - [anon_sym_let_DASHenv] = ACTIONS(1542), - [anon_sym_mut] = ACTIONS(1542), - [anon_sym_const] = ACTIONS(1542), - [aux_sym_cmd_identifier_token1] = ACTIONS(1542), - [aux_sym_cmd_identifier_token2] = ACTIONS(1544), - [aux_sym_cmd_identifier_token3] = ACTIONS(1544), - [aux_sym_cmd_identifier_token4] = ACTIONS(1544), - [aux_sym_cmd_identifier_token5] = ACTIONS(1544), - [aux_sym_cmd_identifier_token6] = ACTIONS(1544), - [aux_sym_cmd_identifier_token7] = ACTIONS(1544), - [aux_sym_cmd_identifier_token8] = ACTIONS(1542), - [aux_sym_cmd_identifier_token9] = ACTIONS(1542), - [aux_sym_cmd_identifier_token10] = ACTIONS(1544), - [aux_sym_cmd_identifier_token11] = ACTIONS(1544), - [aux_sym_cmd_identifier_token12] = ACTIONS(1542), - [aux_sym_cmd_identifier_token13] = ACTIONS(1542), - [aux_sym_cmd_identifier_token14] = ACTIONS(1542), - [aux_sym_cmd_identifier_token15] = ACTIONS(1542), - [aux_sym_cmd_identifier_token16] = ACTIONS(1544), - [aux_sym_cmd_identifier_token17] = ACTIONS(1544), - [aux_sym_cmd_identifier_token18] = ACTIONS(1544), - [aux_sym_cmd_identifier_token19] = ACTIONS(1544), - [aux_sym_cmd_identifier_token20] = ACTIONS(1544), - [aux_sym_cmd_identifier_token21] = ACTIONS(1544), - [aux_sym_cmd_identifier_token22] = ACTIONS(1544), - [aux_sym_cmd_identifier_token23] = ACTIONS(1544), - [aux_sym_cmd_identifier_token24] = ACTIONS(1544), - [aux_sym_cmd_identifier_token25] = ACTIONS(1544), - [aux_sym_cmd_identifier_token26] = ACTIONS(1544), - [aux_sym_cmd_identifier_token27] = ACTIONS(1544), - [aux_sym_cmd_identifier_token28] = ACTIONS(1544), - [aux_sym_cmd_identifier_token29] = ACTIONS(1544), - [aux_sym_cmd_identifier_token30] = ACTIONS(1544), - [aux_sym_cmd_identifier_token31] = ACTIONS(1544), - [aux_sym_cmd_identifier_token32] = ACTIONS(1544), - [aux_sym_cmd_identifier_token33] = ACTIONS(1544), - [aux_sym_cmd_identifier_token34] = ACTIONS(1542), - [aux_sym_cmd_identifier_token35] = ACTIONS(1544), - [aux_sym_cmd_identifier_token36] = ACTIONS(1544), - [aux_sym_cmd_identifier_token37] = ACTIONS(1544), - [aux_sym_cmd_identifier_token38] = ACTIONS(1542), - [aux_sym_cmd_identifier_token39] = ACTIONS(1544), - [aux_sym_cmd_identifier_token40] = ACTIONS(1544), - [anon_sym_def] = ACTIONS(1542), - [anon_sym_export_DASHenv] = ACTIONS(1542), - [anon_sym_extern] = ACTIONS(1542), - [anon_sym_module] = ACTIONS(1542), - [anon_sym_use] = ACTIONS(1542), - [anon_sym_LPAREN] = ACTIONS(1542), - [anon_sym_COMMA] = ACTIONS(1544), - [anon_sym_DOLLAR] = ACTIONS(1542), - [anon_sym_error] = ACTIONS(1542), - [anon_sym_DASH2] = ACTIONS(1542), - [anon_sym_break] = ACTIONS(1542), - [anon_sym_continue] = ACTIONS(1542), - [anon_sym_for] = ACTIONS(1542), - [anon_sym_in2] = ACTIONS(1542), - [anon_sym_loop] = ACTIONS(1542), - [anon_sym_make] = ACTIONS(1542), - [anon_sym_while] = ACTIONS(1542), - [anon_sym_do] = ACTIONS(1542), - [anon_sym_if] = ACTIONS(1542), - [anon_sym_else] = ACTIONS(1542), - [anon_sym_match] = ACTIONS(1542), - [anon_sym_RBRACE] = ACTIONS(1544), - [anon_sym_try] = ACTIONS(1542), - [anon_sym_catch] = ACTIONS(1542), - [anon_sym_return] = ACTIONS(1542), - [anon_sym_source] = ACTIONS(1542), - [anon_sym_source_DASHenv] = ACTIONS(1542), - [anon_sym_register] = ACTIONS(1542), - [anon_sym_hide] = ACTIONS(1542), - [anon_sym_hide_DASHenv] = ACTIONS(1542), - [anon_sym_overlay] = ACTIONS(1542), - [anon_sym_as] = ACTIONS(1542), - [anon_sym_LPAREN2] = ACTIONS(1544), - [anon_sym_PLUS2] = ACTIONS(1542), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1544), - [anon_sym_DOT_DOT2] = ACTIONS(1542), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1544), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1544), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1544), - [aux_sym__val_number_decimal_token1] = ACTIONS(1542), - [aux_sym__val_number_decimal_token2] = ACTIONS(1544), - [aux_sym__val_number_decimal_token3] = ACTIONS(1544), - [aux_sym__val_number_decimal_token4] = ACTIONS(1544), - [aux_sym__val_number_token1] = ACTIONS(1544), - [aux_sym__val_number_token2] = ACTIONS(1544), - [aux_sym__val_number_token3] = ACTIONS(1544), - [aux_sym__val_number_token4] = ACTIONS(1542), - [aux_sym__val_number_token5] = ACTIONS(1542), - [aux_sym__val_number_token6] = ACTIONS(1542), - [sym_filesize_unit] = ACTIONS(1542), - [sym_duration_unit] = ACTIONS(1542), - [anon_sym_DQUOTE] = ACTIONS(1544), - [sym__str_single_quotes] = ACTIONS(1544), - [sym__str_back_ticks] = ACTIONS(1544), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1544), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1544), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1544), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1542), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1544), + [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(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(1780), + [aux_sym_cmd_identifier_token9] = ACTIONS(1780), + [aux_sym_cmd_identifier_token10] = ACTIONS(1782), + [aux_sym_cmd_identifier_token11] = ACTIONS(1782), + [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(1782), + [aux_sym_cmd_identifier_token17] = ACTIONS(1782), + [aux_sym_cmd_identifier_token18] = ACTIONS(1780), + [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(1780), + [aux_sym_cmd_identifier_token33] = ACTIONS(1782), + [aux_sym_cmd_identifier_token34] = ACTIONS(1780), + [aux_sym_cmd_identifier_token35] = ACTIONS(1782), + [aux_sym_cmd_identifier_token36] = ACTIONS(1782), + [aux_sym_cmd_identifier_token37] = ACTIONS(1782), + [aux_sym_cmd_identifier_token38] = ACTIONS(1780), + [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_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_LBRACK] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_DOLLAR] = ACTIONS(1780), + [anon_sym_error] = ACTIONS(1780), + [anon_sym_DASH2] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_for] = ACTIONS(1780), + [anon_sym_loop] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_do] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_match] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_DOT_DOT] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_source] = ACTIONS(1780), + [anon_sym_source_DASHenv] = ACTIONS(1780), + [anon_sym_hide] = ACTIONS(1780), + [anon_sym_hide_DASHenv] = ACTIONS(1780), + [anon_sym_overlay] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1782), + [aux_sym_expr_unary_token1] = ACTIONS(1782), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1782), + [anon_sym_DOT_DOT_LT] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1780), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [aux_sym__val_number_decimal_token1] = ACTIONS(1780), + [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), + [aux_sym__val_number_token4] = ACTIONS(1780), + [aux_sym__val_number_token5] = ACTIONS(1780), + [aux_sym__val_number_token6] = ACTIONS(1780), + [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), + [aux_sym_env_var_token1] = ACTIONS(1780), + [anon_sym_CARET] = ACTIONS(1782), + [aux_sym_command_token1] = ACTIONS(1782), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1782), }, [367] = { [sym_comment] = STATE(367), - [anon_sym_export] = ACTIONS(1743), - [anon_sym_alias] = ACTIONS(1743), - [anon_sym_let] = ACTIONS(1743), - [anon_sym_let_DASHenv] = ACTIONS(1743), - [anon_sym_mut] = ACTIONS(1743), - [anon_sym_const] = ACTIONS(1743), - [aux_sym_cmd_identifier_token1] = ACTIONS(1743), - [aux_sym_cmd_identifier_token2] = ACTIONS(1745), - [aux_sym_cmd_identifier_token3] = ACTIONS(1745), - [aux_sym_cmd_identifier_token4] = ACTIONS(1745), - [aux_sym_cmd_identifier_token5] = ACTIONS(1745), - [aux_sym_cmd_identifier_token6] = ACTIONS(1745), - [aux_sym_cmd_identifier_token7] = ACTIONS(1745), - [aux_sym_cmd_identifier_token8] = ACTIONS(1743), - [aux_sym_cmd_identifier_token9] = ACTIONS(1743), - [aux_sym_cmd_identifier_token10] = ACTIONS(1745), - [aux_sym_cmd_identifier_token11] = ACTIONS(1745), - [aux_sym_cmd_identifier_token12] = ACTIONS(1743), - [aux_sym_cmd_identifier_token13] = ACTIONS(1743), - [aux_sym_cmd_identifier_token14] = ACTIONS(1743), - [aux_sym_cmd_identifier_token15] = ACTIONS(1743), - [aux_sym_cmd_identifier_token16] = ACTIONS(1745), - [aux_sym_cmd_identifier_token17] = ACTIONS(1745), - [aux_sym_cmd_identifier_token18] = ACTIONS(1745), - [aux_sym_cmd_identifier_token19] = ACTIONS(1745), - [aux_sym_cmd_identifier_token20] = ACTIONS(1745), - [aux_sym_cmd_identifier_token21] = ACTIONS(1745), - [aux_sym_cmd_identifier_token22] = ACTIONS(1745), - [aux_sym_cmd_identifier_token23] = ACTIONS(1745), - [aux_sym_cmd_identifier_token24] = ACTIONS(1745), - [aux_sym_cmd_identifier_token25] = ACTIONS(1745), - [aux_sym_cmd_identifier_token26] = ACTIONS(1745), - [aux_sym_cmd_identifier_token27] = ACTIONS(1745), - [aux_sym_cmd_identifier_token28] = ACTIONS(1745), - [aux_sym_cmd_identifier_token29] = ACTIONS(1745), - [aux_sym_cmd_identifier_token30] = ACTIONS(1745), - [aux_sym_cmd_identifier_token31] = ACTIONS(1745), - [aux_sym_cmd_identifier_token32] = ACTIONS(1745), - [aux_sym_cmd_identifier_token33] = ACTIONS(1745), - [aux_sym_cmd_identifier_token34] = ACTIONS(1743), - [aux_sym_cmd_identifier_token35] = ACTIONS(1745), - [aux_sym_cmd_identifier_token36] = ACTIONS(1745), - [aux_sym_cmd_identifier_token37] = ACTIONS(1745), - [aux_sym_cmd_identifier_token38] = ACTIONS(1743), - [aux_sym_cmd_identifier_token39] = ACTIONS(1745), - [aux_sym_cmd_identifier_token40] = ACTIONS(1745), - [anon_sym_def] = ACTIONS(1743), - [anon_sym_export_DASHenv] = ACTIONS(1743), - [anon_sym_extern] = ACTIONS(1743), - [anon_sym_module] = ACTIONS(1743), - [anon_sym_use] = ACTIONS(1743), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_COMMA] = ACTIONS(1745), - [anon_sym_DOLLAR] = ACTIONS(1743), - [anon_sym_error] = ACTIONS(1743), - [anon_sym_DASH2] = ACTIONS(1743), - [anon_sym_break] = ACTIONS(1743), - [anon_sym_continue] = ACTIONS(1743), - [anon_sym_for] = ACTIONS(1743), - [anon_sym_in2] = ACTIONS(1743), - [anon_sym_loop] = ACTIONS(1743), - [anon_sym_make] = ACTIONS(1743), - [anon_sym_while] = ACTIONS(1743), - [anon_sym_do] = ACTIONS(1743), - [anon_sym_if] = ACTIONS(1743), - [anon_sym_else] = ACTIONS(1743), - [anon_sym_match] = ACTIONS(1743), - [anon_sym_RBRACE] = ACTIONS(1745), - [anon_sym_try] = ACTIONS(1743), - [anon_sym_catch] = ACTIONS(1743), - [anon_sym_return] = ACTIONS(1743), - [anon_sym_source] = ACTIONS(1743), - [anon_sym_source_DASHenv] = ACTIONS(1743), - [anon_sym_register] = ACTIONS(1743), - [anon_sym_hide] = ACTIONS(1743), - [anon_sym_hide_DASHenv] = ACTIONS(1743), - [anon_sym_overlay] = ACTIONS(1743), - [anon_sym_as] = ACTIONS(1743), - [anon_sym_LPAREN2] = ACTIONS(1745), - [anon_sym_PLUS2] = ACTIONS(1743), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1745), - [anon_sym_DOT_DOT2] = ACTIONS(1743), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1745), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1745), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1745), - [aux_sym__val_number_decimal_token1] = ACTIONS(1743), - [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), - [aux_sym__val_number_token4] = ACTIONS(1743), - [aux_sym__val_number_token5] = ACTIONS(1743), - [aux_sym__val_number_token6] = ACTIONS(1743), - [sym_filesize_unit] = ACTIONS(1743), - [sym_duration_unit] = ACTIONS(1743), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1745), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1743), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1745), + [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(1786), + [aux_sym_cmd_identifier_token3] = ACTIONS(1786), + [aux_sym_cmd_identifier_token4] = ACTIONS(1786), + [aux_sym_cmd_identifier_token5] = ACTIONS(1786), + [aux_sym_cmd_identifier_token6] = ACTIONS(1786), + [aux_sym_cmd_identifier_token7] = ACTIONS(1786), + [aux_sym_cmd_identifier_token8] = ACTIONS(1784), + [aux_sym_cmd_identifier_token9] = ACTIONS(1784), + [aux_sym_cmd_identifier_token10] = ACTIONS(1786), + [aux_sym_cmd_identifier_token11] = ACTIONS(1786), + [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(1786), + [aux_sym_cmd_identifier_token17] = ACTIONS(1786), + [aux_sym_cmd_identifier_token18] = ACTIONS(1784), + [aux_sym_cmd_identifier_token19] = ACTIONS(1786), + [aux_sym_cmd_identifier_token20] = ACTIONS(1786), + [aux_sym_cmd_identifier_token21] = ACTIONS(1786), + [aux_sym_cmd_identifier_token22] = ACTIONS(1786), + [aux_sym_cmd_identifier_token23] = ACTIONS(1786), + [aux_sym_cmd_identifier_token24] = ACTIONS(1786), + [aux_sym_cmd_identifier_token25] = ACTIONS(1786), + [aux_sym_cmd_identifier_token26] = ACTIONS(1786), + [aux_sym_cmd_identifier_token27] = ACTIONS(1786), + [aux_sym_cmd_identifier_token28] = ACTIONS(1786), + [aux_sym_cmd_identifier_token29] = ACTIONS(1786), + [aux_sym_cmd_identifier_token30] = ACTIONS(1786), + [aux_sym_cmd_identifier_token31] = ACTIONS(1786), + [aux_sym_cmd_identifier_token32] = ACTIONS(1784), + [aux_sym_cmd_identifier_token33] = ACTIONS(1786), + [aux_sym_cmd_identifier_token34] = ACTIONS(1784), + [aux_sym_cmd_identifier_token35] = ACTIONS(1786), + [aux_sym_cmd_identifier_token36] = ACTIONS(1786), + [aux_sym_cmd_identifier_token37] = ACTIONS(1786), + [aux_sym_cmd_identifier_token38] = ACTIONS(1784), + [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_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_LBRACK] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1786), + [anon_sym_DOLLAR] = ACTIONS(1784), + [anon_sym_error] = ACTIONS(1784), + [anon_sym_DASH2] = ACTIONS(1784), + [anon_sym_break] = ACTIONS(1784), + [anon_sym_continue] = ACTIONS(1784), + [anon_sym_for] = ACTIONS(1784), + [anon_sym_loop] = ACTIONS(1784), + [anon_sym_while] = ACTIONS(1784), + [anon_sym_do] = ACTIONS(1784), + [anon_sym_if] = ACTIONS(1784), + [anon_sym_match] = ACTIONS(1784), + [anon_sym_LBRACE] = ACTIONS(1786), + [anon_sym_DOT_DOT] = ACTIONS(1784), + [anon_sym_try] = ACTIONS(1784), + [anon_sym_return] = ACTIONS(1784), + [anon_sym_source] = ACTIONS(1784), + [anon_sym_source_DASHenv] = ACTIONS(1784), + [anon_sym_hide] = ACTIONS(1784), + [anon_sym_hide_DASHenv] = ACTIONS(1784), + [anon_sym_overlay] = ACTIONS(1784), + [anon_sym_where] = ACTIONS(1786), + [aux_sym_expr_unary_token1] = ACTIONS(1786), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1786), + [anon_sym_DOT_DOT_LT] = ACTIONS(1786), + [anon_sym_null] = ACTIONS(1784), + [anon_sym_true] = ACTIONS(1784), + [anon_sym_false] = ACTIONS(1784), + [aux_sym__val_number_decimal_token1] = ACTIONS(1784), + [aux_sym__val_number_decimal_token2] = ACTIONS(1786), + [aux_sym__val_number_decimal_token3] = ACTIONS(1786), + [aux_sym__val_number_decimal_token4] = ACTIONS(1786), + [aux_sym__val_number_token1] = ACTIONS(1786), + [aux_sym__val_number_token2] = ACTIONS(1786), + [aux_sym__val_number_token3] = ACTIONS(1786), + [aux_sym__val_number_token4] = ACTIONS(1784), + [aux_sym__val_number_token5] = ACTIONS(1784), + [aux_sym__val_number_token6] = ACTIONS(1784), + [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), + [aux_sym_env_var_token1] = ACTIONS(1784), + [anon_sym_CARET] = ACTIONS(1786), + [aux_sym_command_token1] = ACTIONS(1786), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1786), }, [368] = { + [sym_cell_path] = STATE(496), + [sym_path] = STATE(445), [sym_comment] = STATE(368), - [anon_sym_export] = ACTIONS(1711), - [anon_sym_alias] = ACTIONS(1711), - [anon_sym_let] = ACTIONS(1711), - [anon_sym_let_DASHenv] = ACTIONS(1711), - [anon_sym_mut] = ACTIONS(1711), - [anon_sym_const] = ACTIONS(1711), - [aux_sym_cmd_identifier_token1] = ACTIONS(1711), - [aux_sym_cmd_identifier_token2] = ACTIONS(1713), - [aux_sym_cmd_identifier_token3] = ACTIONS(1713), - [aux_sym_cmd_identifier_token4] = ACTIONS(1713), - [aux_sym_cmd_identifier_token5] = ACTIONS(1713), - [aux_sym_cmd_identifier_token6] = ACTIONS(1713), - [aux_sym_cmd_identifier_token7] = ACTIONS(1713), - [aux_sym_cmd_identifier_token8] = ACTIONS(1711), - [aux_sym_cmd_identifier_token9] = ACTIONS(1711), - [aux_sym_cmd_identifier_token10] = ACTIONS(1713), - [aux_sym_cmd_identifier_token11] = ACTIONS(1713), - [aux_sym_cmd_identifier_token12] = ACTIONS(1711), - [aux_sym_cmd_identifier_token13] = ACTIONS(1711), - [aux_sym_cmd_identifier_token14] = ACTIONS(1711), - [aux_sym_cmd_identifier_token15] = ACTIONS(1711), - [aux_sym_cmd_identifier_token16] = ACTIONS(1713), - [aux_sym_cmd_identifier_token17] = ACTIONS(1713), - [aux_sym_cmd_identifier_token18] = ACTIONS(1713), - [aux_sym_cmd_identifier_token19] = ACTIONS(1713), - [aux_sym_cmd_identifier_token20] = ACTIONS(1713), - [aux_sym_cmd_identifier_token21] = ACTIONS(1713), - [aux_sym_cmd_identifier_token22] = ACTIONS(1713), - [aux_sym_cmd_identifier_token23] = ACTIONS(1713), - [aux_sym_cmd_identifier_token24] = ACTIONS(1713), - [aux_sym_cmd_identifier_token25] = ACTIONS(1713), - [aux_sym_cmd_identifier_token26] = ACTIONS(1713), - [aux_sym_cmd_identifier_token27] = ACTIONS(1713), - [aux_sym_cmd_identifier_token28] = ACTIONS(1713), - [aux_sym_cmd_identifier_token29] = ACTIONS(1713), - [aux_sym_cmd_identifier_token30] = ACTIONS(1713), - [aux_sym_cmd_identifier_token31] = ACTIONS(1713), - [aux_sym_cmd_identifier_token32] = ACTIONS(1713), - [aux_sym_cmd_identifier_token33] = ACTIONS(1713), - [aux_sym_cmd_identifier_token34] = ACTIONS(1711), - [aux_sym_cmd_identifier_token35] = ACTIONS(1713), - [aux_sym_cmd_identifier_token36] = ACTIONS(1713), - [aux_sym_cmd_identifier_token37] = ACTIONS(1713), - [aux_sym_cmd_identifier_token38] = ACTIONS(1711), - [aux_sym_cmd_identifier_token39] = ACTIONS(1713), - [aux_sym_cmd_identifier_token40] = ACTIONS(1713), - [anon_sym_def] = ACTIONS(1711), - [anon_sym_export_DASHenv] = ACTIONS(1711), - [anon_sym_extern] = ACTIONS(1711), - [anon_sym_module] = ACTIONS(1711), - [anon_sym_use] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_COMMA] = ACTIONS(1713), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_error] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_break] = ACTIONS(1711), - [anon_sym_continue] = ACTIONS(1711), - [anon_sym_for] = ACTIONS(1711), - [anon_sym_in2] = ACTIONS(1711), - [anon_sym_loop] = ACTIONS(1711), - [anon_sym_make] = ACTIONS(1711), - [anon_sym_while] = ACTIONS(1711), - [anon_sym_do] = ACTIONS(1711), - [anon_sym_if] = ACTIONS(1711), - [anon_sym_else] = ACTIONS(1711), - [anon_sym_match] = ACTIONS(1711), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_try] = ACTIONS(1711), - [anon_sym_catch] = ACTIONS(1711), - [anon_sym_return] = ACTIONS(1711), - [anon_sym_source] = ACTIONS(1711), - [anon_sym_source_DASHenv] = ACTIONS(1711), - [anon_sym_register] = ACTIONS(1711), - [anon_sym_hide] = ACTIONS(1711), - [anon_sym_hide_DASHenv] = ACTIONS(1711), - [anon_sym_overlay] = ACTIONS(1711), - [anon_sym_as] = ACTIONS(1711), - [anon_sym_LPAREN2] = ACTIONS(1713), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1713), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [aux_sym__immediate_decimal_token1] = ACTIONS(1798), - [aux_sym__immediate_decimal_token2] = ACTIONS(1800), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1713), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1713), - [aux_sym__val_number_decimal_token3] = ACTIONS(1713), - [aux_sym__val_number_decimal_token4] = ACTIONS(1713), - [aux_sym__val_number_token1] = ACTIONS(1713), - [aux_sym__val_number_token2] = ACTIONS(1713), - [aux_sym__val_number_token3] = ACTIONS(1713), - [aux_sym__val_number_token4] = ACTIONS(1711), - [aux_sym__val_number_token5] = ACTIONS(1711), - [aux_sym__val_number_token6] = ACTIONS(1711), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym__str_single_quotes] = ACTIONS(1713), - [sym__str_back_ticks] = ACTIONS(1713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1713), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1713), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1713), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1713), + [aux_sym_cell_path_repeat1] = STATE(384), + [anon_sym_export] = ACTIONS(929), + [anon_sym_alias] = ACTIONS(929), + [anon_sym_let] = ACTIONS(929), + [anon_sym_let_DASHenv] = ACTIONS(929), + [anon_sym_mut] = ACTIONS(929), + [anon_sym_const] = ACTIONS(929), + [aux_sym_cmd_identifier_token1] = ACTIONS(929), + [aux_sym_cmd_identifier_token2] = ACTIONS(931), + [aux_sym_cmd_identifier_token3] = ACTIONS(931), + [aux_sym_cmd_identifier_token4] = ACTIONS(931), + [aux_sym_cmd_identifier_token5] = ACTIONS(931), + [aux_sym_cmd_identifier_token6] = ACTIONS(931), + [aux_sym_cmd_identifier_token7] = ACTIONS(931), + [aux_sym_cmd_identifier_token8] = ACTIONS(929), + [aux_sym_cmd_identifier_token9] = ACTIONS(929), + [aux_sym_cmd_identifier_token10] = ACTIONS(931), + [aux_sym_cmd_identifier_token11] = ACTIONS(931), + [aux_sym_cmd_identifier_token12] = ACTIONS(929), + [aux_sym_cmd_identifier_token13] = ACTIONS(929), + [aux_sym_cmd_identifier_token14] = ACTIONS(929), + [aux_sym_cmd_identifier_token15] = ACTIONS(929), + [aux_sym_cmd_identifier_token16] = ACTIONS(931), + [aux_sym_cmd_identifier_token17] = ACTIONS(931), + [aux_sym_cmd_identifier_token18] = ACTIONS(931), + [aux_sym_cmd_identifier_token19] = ACTIONS(931), + [aux_sym_cmd_identifier_token20] = ACTIONS(931), + [aux_sym_cmd_identifier_token21] = ACTIONS(931), + [aux_sym_cmd_identifier_token22] = ACTIONS(931), + [aux_sym_cmd_identifier_token23] = ACTIONS(931), + [aux_sym_cmd_identifier_token24] = ACTIONS(931), + [aux_sym_cmd_identifier_token25] = ACTIONS(931), + [aux_sym_cmd_identifier_token26] = ACTIONS(931), + [aux_sym_cmd_identifier_token27] = ACTIONS(931), + [aux_sym_cmd_identifier_token28] = ACTIONS(931), + [aux_sym_cmd_identifier_token29] = ACTIONS(931), + [aux_sym_cmd_identifier_token30] = ACTIONS(931), + [aux_sym_cmd_identifier_token31] = ACTIONS(931), + [aux_sym_cmd_identifier_token32] = ACTIONS(931), + [aux_sym_cmd_identifier_token33] = ACTIONS(931), + [aux_sym_cmd_identifier_token34] = ACTIONS(929), + [aux_sym_cmd_identifier_token35] = ACTIONS(931), + [aux_sym_cmd_identifier_token36] = ACTIONS(931), + [aux_sym_cmd_identifier_token37] = ACTIONS(931), + [aux_sym_cmd_identifier_token38] = ACTIONS(929), + [aux_sym_cmd_identifier_token39] = ACTIONS(931), + [aux_sym_cmd_identifier_token40] = ACTIONS(931), + [anon_sym_def] = ACTIONS(929), + [anon_sym_export_DASHenv] = ACTIONS(929), + [anon_sym_extern] = ACTIONS(929), + [anon_sym_module] = ACTIONS(929), + [anon_sym_use] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_COMMA] = ACTIONS(931), + [anon_sym_DOLLAR] = ACTIONS(929), + [anon_sym_error] = ACTIONS(929), + [anon_sym_DASH2] = ACTIONS(929), + [anon_sym_break] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(929), + [anon_sym_for] = ACTIONS(929), + [anon_sym_in2] = ACTIONS(929), + [anon_sym_loop] = ACTIONS(929), + [anon_sym_make] = ACTIONS(929), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(929), + [anon_sym_if] = ACTIONS(929), + [anon_sym_else] = ACTIONS(929), + [anon_sym_match] = ACTIONS(929), + [anon_sym_RBRACE] = ACTIONS(931), + [anon_sym_try] = ACTIONS(929), + [anon_sym_catch] = ACTIONS(929), + [anon_sym_return] = ACTIONS(929), + [anon_sym_source] = ACTIONS(929), + [anon_sym_source_DASHenv] = ACTIONS(929), + [anon_sym_hide] = ACTIONS(929), + [anon_sym_hide_DASHenv] = ACTIONS(929), + [anon_sym_overlay] = ACTIONS(929), + [anon_sym_as] = ACTIONS(929), + [anon_sym_PLUS2] = ACTIONS(929), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(931), + [anon_sym_DOT_DOT2] = ACTIONS(929), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(931), + [anon_sym_DOT_DOT_LT2] = ACTIONS(931), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(931), + [aux_sym__val_number_decimal_token1] = ACTIONS(929), + [aux_sym__val_number_decimal_token2] = ACTIONS(931), + [aux_sym__val_number_decimal_token3] = ACTIONS(931), + [aux_sym__val_number_decimal_token4] = ACTIONS(931), + [aux_sym__val_number_token1] = ACTIONS(931), + [aux_sym__val_number_token2] = ACTIONS(931), + [aux_sym__val_number_token3] = ACTIONS(931), + [aux_sym__val_number_token4] = ACTIONS(929), + [aux_sym__val_number_token5] = ACTIONS(929), + [aux_sym__val_number_token6] = ACTIONS(929), + [anon_sym_DQUOTE] = ACTIONS(931), + [sym__str_single_quotes] = ACTIONS(931), + [sym__str_back_ticks] = ACTIONS(931), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(931), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(931), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(931), + [anon_sym_register] = ACTIONS(929), + [anon_sym_DOT2] = ACTIONS(1761), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(931), }, [369] = { [sym_comment] = STATE(369), - [anon_sym_export] = ACTIONS(1802), - [anon_sym_alias] = ACTIONS(1802), - [anon_sym_let] = ACTIONS(1802), - [anon_sym_let_DASHenv] = ACTIONS(1802), - [anon_sym_mut] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [aux_sym_cmd_identifier_token1] = ACTIONS(1802), - [aux_sym_cmd_identifier_token2] = ACTIONS(1802), - [aux_sym_cmd_identifier_token3] = ACTIONS(1802), - [aux_sym_cmd_identifier_token4] = ACTIONS(1802), - [aux_sym_cmd_identifier_token5] = ACTIONS(1802), - [aux_sym_cmd_identifier_token6] = ACTIONS(1802), - [aux_sym_cmd_identifier_token7] = ACTIONS(1802), - [aux_sym_cmd_identifier_token8] = ACTIONS(1802), - [aux_sym_cmd_identifier_token9] = ACTIONS(1802), - [aux_sym_cmd_identifier_token10] = ACTIONS(1802), - [aux_sym_cmd_identifier_token11] = ACTIONS(1802), - [aux_sym_cmd_identifier_token12] = ACTIONS(1802), - [aux_sym_cmd_identifier_token13] = ACTIONS(1802), - [aux_sym_cmd_identifier_token14] = ACTIONS(1802), - [aux_sym_cmd_identifier_token15] = ACTIONS(1802), - [aux_sym_cmd_identifier_token16] = ACTIONS(1802), - [aux_sym_cmd_identifier_token17] = ACTIONS(1802), - [aux_sym_cmd_identifier_token18] = ACTIONS(1802), - [aux_sym_cmd_identifier_token19] = ACTIONS(1802), - [aux_sym_cmd_identifier_token20] = ACTIONS(1802), - [aux_sym_cmd_identifier_token21] = ACTIONS(1802), - [aux_sym_cmd_identifier_token22] = ACTIONS(1802), - [aux_sym_cmd_identifier_token23] = ACTIONS(1802), - [aux_sym_cmd_identifier_token24] = ACTIONS(1802), - [aux_sym_cmd_identifier_token25] = ACTIONS(1802), - [aux_sym_cmd_identifier_token26] = ACTIONS(1802), - [aux_sym_cmd_identifier_token27] = ACTIONS(1802), - [aux_sym_cmd_identifier_token28] = ACTIONS(1802), - [aux_sym_cmd_identifier_token29] = ACTIONS(1802), - [aux_sym_cmd_identifier_token30] = ACTIONS(1802), - [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(1802), - [aux_sym_cmd_identifier_token37] = ACTIONS(1802), - [aux_sym_cmd_identifier_token38] = ACTIONS(1802), - [aux_sym_cmd_identifier_token39] = ACTIONS(1802), - [aux_sym_cmd_identifier_token40] = ACTIONS(1802), - [anon_sym_def] = ACTIONS(1802), - [anon_sym_export_DASHenv] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym_module] = ACTIONS(1802), - [anon_sym_use] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_COMMA] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1802), - [anon_sym_error] = ACTIONS(1802), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_in2] = ACTIONS(1802), - [anon_sym_loop] = ACTIONS(1802), - [anon_sym_make] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_else] = ACTIONS(1802), - [anon_sym_match] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_try] = ACTIONS(1802), - [anon_sym_catch] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_source] = ACTIONS(1802), - [anon_sym_source_DASHenv] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_hide] = ACTIONS(1802), - [anon_sym_hide_DASHenv] = ACTIONS(1802), - [anon_sym_overlay] = ACTIONS(1802), - [anon_sym_as] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_PLUS2] = ACTIONS(1802), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1802), - [anon_sym_DOT_DOT2] = ACTIONS(1806), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1808), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1808), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1802), - [aux_sym__val_number_decimal_token1] = ACTIONS(1802), - [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), - [aux_sym__val_number_token4] = ACTIONS(1802), - [aux_sym__val_number_token5] = ACTIONS(1802), - [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(1802), - [sym__entry_separator] = ACTIONS(1810), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1477), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1810), + [anon_sym_export] = ACTIONS(1766), + [anon_sym_alias] = ACTIONS(1766), + [anon_sym_let] = ACTIONS(1766), + [anon_sym_let_DASHenv] = ACTIONS(1766), + [anon_sym_mut] = ACTIONS(1766), + [anon_sym_const] = ACTIONS(1766), + [aux_sym_cmd_identifier_token1] = ACTIONS(1766), + [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(1766), + [aux_sym_cmd_identifier_token9] = ACTIONS(1766), + [aux_sym_cmd_identifier_token10] = ACTIONS(1768), + [aux_sym_cmd_identifier_token11] = ACTIONS(1768), + [aux_sym_cmd_identifier_token12] = ACTIONS(1766), + [aux_sym_cmd_identifier_token13] = ACTIONS(1766), + [aux_sym_cmd_identifier_token14] = ACTIONS(1766), + [aux_sym_cmd_identifier_token15] = ACTIONS(1766), + [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(1766), + [aux_sym_cmd_identifier_token35] = ACTIONS(1768), + [aux_sym_cmd_identifier_token36] = ACTIONS(1768), + [aux_sym_cmd_identifier_token37] = ACTIONS(1768), + [aux_sym_cmd_identifier_token38] = ACTIONS(1766), + [aux_sym_cmd_identifier_token39] = ACTIONS(1768), + [aux_sym_cmd_identifier_token40] = ACTIONS(1768), + [anon_sym_def] = ACTIONS(1766), + [anon_sym_export_DASHenv] = ACTIONS(1766), + [anon_sym_extern] = ACTIONS(1766), + [anon_sym_module] = ACTIONS(1766), + [anon_sym_use] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1766), + [anon_sym_COMMA] = ACTIONS(1768), + [anon_sym_DOLLAR] = ACTIONS(1766), + [anon_sym_error] = ACTIONS(1766), + [anon_sym_DASH2] = ACTIONS(1766), + [anon_sym_break] = ACTIONS(1766), + [anon_sym_continue] = ACTIONS(1766), + [anon_sym_for] = ACTIONS(1766), + [anon_sym_in2] = ACTIONS(1766), + [anon_sym_loop] = ACTIONS(1766), + [anon_sym_make] = ACTIONS(1766), + [anon_sym_while] = ACTIONS(1766), + [anon_sym_do] = ACTIONS(1766), + [anon_sym_if] = ACTIONS(1766), + [anon_sym_else] = ACTIONS(1766), + [anon_sym_match] = ACTIONS(1766), + [anon_sym_RBRACE] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1766), + [anon_sym_catch] = ACTIONS(1766), + [anon_sym_return] = ACTIONS(1766), + [anon_sym_source] = ACTIONS(1766), + [anon_sym_source_DASHenv] = ACTIONS(1766), + [anon_sym_hide] = ACTIONS(1766), + [anon_sym_hide_DASHenv] = ACTIONS(1766), + [anon_sym_overlay] = ACTIONS(1766), + [anon_sym_as] = ACTIONS(1766), + [anon_sym_LPAREN2] = ACTIONS(1768), + [anon_sym_PLUS2] = ACTIONS(1766), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1768), + [anon_sym_DOT_DOT2] = ACTIONS(1766), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1768), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1768), + [aux_sym__immediate_decimal_token2] = ACTIONS(1788), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1768), + [aux_sym__val_number_decimal_token1] = ACTIONS(1766), + [aux_sym__val_number_decimal_token2] = ACTIONS(1768), + [aux_sym__val_number_decimal_token3] = ACTIONS(1768), + [aux_sym__val_number_decimal_token4] = ACTIONS(1768), + [aux_sym__val_number_token1] = ACTIONS(1768), + [aux_sym__val_number_token2] = ACTIONS(1768), + [aux_sym__val_number_token3] = ACTIONS(1768), + [aux_sym__val_number_token4] = ACTIONS(1766), + [aux_sym__val_number_token5] = ACTIONS(1766), + [aux_sym__val_number_token6] = ACTIONS(1766), + [anon_sym_DQUOTE] = ACTIONS(1768), + [sym__str_single_quotes] = ACTIONS(1768), + [sym__str_back_ticks] = ACTIONS(1768), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1768), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1768), + [anon_sym_register] = ACTIONS(1766), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1766), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1768), }, [370] = { [sym_comment] = STATE(370), - [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), - [aux_sym_cmd_identifier_token37] = ACTIONS(1755), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1755), - [aux_sym_cmd_identifier_token40] = ACTIONS(1755), - [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(1755), - [anon_sym_COMMA] = ACTIONS(1755), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in2] = 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_RBRACE] = 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_as] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_PLUS2] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1755), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1755), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1755), - [aux_sym__val_number_decimal_token3] = ACTIONS(1755), - [aux_sym__val_number_decimal_token4] = ACTIONS(1755), - [aux_sym__val_number_token1] = ACTIONS(1755), - [aux_sym__val_number_token2] = ACTIONS(1755), - [aux_sym__val_number_token3] = ACTIONS(1755), - [aux_sym__val_number_token4] = ACTIONS(1755), - [aux_sym__val_number_token5] = ACTIONS(1755), - [aux_sym__val_number_token6] = ACTIONS(1755), - [anon_sym_DQUOTE] = ACTIONS(1755), - [sym__str_single_quotes] = ACTIONS(1755), - [sym__str_back_ticks] = ACTIONS(1755), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1755), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1755), - [sym__entry_separator] = ACTIONS(1757), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1755), + [anon_sym_export] = ACTIONS(950), + [anon_sym_alias] = ACTIONS(950), + [anon_sym_let] = ACTIONS(950), + [anon_sym_let_DASHenv] = ACTIONS(950), + [anon_sym_mut] = ACTIONS(950), + [anon_sym_const] = ACTIONS(950), + [aux_sym_cmd_identifier_token1] = ACTIONS(950), + [aux_sym_cmd_identifier_token2] = ACTIONS(950), + [aux_sym_cmd_identifier_token3] = ACTIONS(950), + [aux_sym_cmd_identifier_token4] = ACTIONS(950), + [aux_sym_cmd_identifier_token5] = ACTIONS(950), + [aux_sym_cmd_identifier_token6] = ACTIONS(950), + [aux_sym_cmd_identifier_token7] = ACTIONS(950), + [aux_sym_cmd_identifier_token8] = ACTIONS(950), + [aux_sym_cmd_identifier_token9] = ACTIONS(950), + [aux_sym_cmd_identifier_token10] = ACTIONS(950), + [aux_sym_cmd_identifier_token11] = ACTIONS(950), + [aux_sym_cmd_identifier_token12] = ACTIONS(950), + [aux_sym_cmd_identifier_token13] = ACTIONS(950), + [aux_sym_cmd_identifier_token14] = ACTIONS(950), + [aux_sym_cmd_identifier_token15] = ACTIONS(950), + [aux_sym_cmd_identifier_token16] = ACTIONS(950), + [aux_sym_cmd_identifier_token17] = ACTIONS(950), + [aux_sym_cmd_identifier_token18] = ACTIONS(950), + [aux_sym_cmd_identifier_token19] = ACTIONS(950), + [aux_sym_cmd_identifier_token20] = ACTIONS(950), + [aux_sym_cmd_identifier_token21] = ACTIONS(950), + [aux_sym_cmd_identifier_token22] = ACTIONS(950), + [aux_sym_cmd_identifier_token23] = ACTIONS(950), + [aux_sym_cmd_identifier_token24] = ACTIONS(950), + [aux_sym_cmd_identifier_token25] = ACTIONS(950), + [aux_sym_cmd_identifier_token26] = ACTIONS(950), + [aux_sym_cmd_identifier_token27] = ACTIONS(950), + [aux_sym_cmd_identifier_token28] = ACTIONS(950), + [aux_sym_cmd_identifier_token29] = ACTIONS(950), + [aux_sym_cmd_identifier_token30] = ACTIONS(950), + [aux_sym_cmd_identifier_token31] = ACTIONS(950), + [aux_sym_cmd_identifier_token32] = ACTIONS(950), + [aux_sym_cmd_identifier_token33] = ACTIONS(950), + [aux_sym_cmd_identifier_token34] = ACTIONS(950), + [aux_sym_cmd_identifier_token35] = ACTIONS(950), + [aux_sym_cmd_identifier_token36] = ACTIONS(950), + [aux_sym_cmd_identifier_token37] = ACTIONS(950), + [aux_sym_cmd_identifier_token38] = ACTIONS(950), + [aux_sym_cmd_identifier_token39] = ACTIONS(950), + [aux_sym_cmd_identifier_token40] = ACTIONS(950), + [anon_sym_def] = ACTIONS(950), + [anon_sym_export_DASHenv] = ACTIONS(950), + [anon_sym_extern] = ACTIONS(950), + [anon_sym_module] = ACTIONS(950), + [anon_sym_use] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(950), + [anon_sym_COMMA] = ACTIONS(950), + [anon_sym_DOLLAR] = ACTIONS(950), + [anon_sym_error] = ACTIONS(950), + [anon_sym_DASH2] = ACTIONS(950), + [anon_sym_break] = ACTIONS(950), + [anon_sym_continue] = ACTIONS(950), + [anon_sym_for] = ACTIONS(950), + [anon_sym_in2] = ACTIONS(950), + [anon_sym_loop] = ACTIONS(950), + [anon_sym_make] = ACTIONS(950), + [anon_sym_while] = ACTIONS(950), + [anon_sym_do] = ACTIONS(950), + [anon_sym_if] = ACTIONS(950), + [anon_sym_else] = ACTIONS(950), + [anon_sym_match] = ACTIONS(950), + [anon_sym_RBRACE] = ACTIONS(950), + [anon_sym_try] = ACTIONS(950), + [anon_sym_catch] = ACTIONS(950), + [anon_sym_return] = ACTIONS(950), + [anon_sym_source] = ACTIONS(950), + [anon_sym_source_DASHenv] = ACTIONS(950), + [anon_sym_hide] = ACTIONS(950), + [anon_sym_hide_DASHenv] = ACTIONS(950), + [anon_sym_overlay] = ACTIONS(950), + [anon_sym_as] = ACTIONS(950), + [anon_sym_QMARK2] = ACTIONS(1790), + [anon_sym_PLUS2] = ACTIONS(950), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(950), + [anon_sym_DOT_DOT2] = ACTIONS(950), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(952), + [anon_sym_DOT_DOT_LT2] = ACTIONS(952), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(950), + [aux_sym__val_number_decimal_token1] = ACTIONS(950), + [aux_sym__val_number_decimal_token2] = ACTIONS(950), + [aux_sym__val_number_decimal_token3] = ACTIONS(950), + [aux_sym__val_number_decimal_token4] = ACTIONS(950), + [aux_sym__val_number_token1] = ACTIONS(950), + [aux_sym__val_number_token2] = ACTIONS(950), + [aux_sym__val_number_token3] = ACTIONS(950), + [aux_sym__val_number_token4] = ACTIONS(950), + [aux_sym__val_number_token5] = ACTIONS(950), + [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(950), + [sym__entry_separator] = ACTIONS(952), + [anon_sym_register] = ACTIONS(950), + [anon_sym_DOT2] = ACTIONS(950), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1757), + [sym_raw_string_begin] = ACTIONS(952), }, [371] = { [sym_comment] = STATE(371), - [anon_sym_export] = ACTIONS(1711), - [anon_sym_alias] = ACTIONS(1711), - [anon_sym_let] = ACTIONS(1711), - [anon_sym_let_DASHenv] = ACTIONS(1711), - [anon_sym_mut] = ACTIONS(1711), - [anon_sym_const] = ACTIONS(1711), - [aux_sym_cmd_identifier_token1] = ACTIONS(1711), - [aux_sym_cmd_identifier_token2] = ACTIONS(1711), - [aux_sym_cmd_identifier_token3] = ACTIONS(1711), - [aux_sym_cmd_identifier_token4] = ACTIONS(1711), - [aux_sym_cmd_identifier_token5] = ACTIONS(1711), - [aux_sym_cmd_identifier_token6] = ACTIONS(1711), - [aux_sym_cmd_identifier_token7] = ACTIONS(1711), - [aux_sym_cmd_identifier_token8] = ACTIONS(1711), - [aux_sym_cmd_identifier_token9] = ACTIONS(1711), - [aux_sym_cmd_identifier_token10] = ACTIONS(1711), - [aux_sym_cmd_identifier_token11] = ACTIONS(1711), - [aux_sym_cmd_identifier_token12] = ACTIONS(1711), - [aux_sym_cmd_identifier_token13] = ACTIONS(1711), - [aux_sym_cmd_identifier_token14] = ACTIONS(1711), - [aux_sym_cmd_identifier_token15] = ACTIONS(1711), - [aux_sym_cmd_identifier_token16] = ACTIONS(1711), - [aux_sym_cmd_identifier_token17] = ACTIONS(1711), - [aux_sym_cmd_identifier_token18] = ACTIONS(1711), - [aux_sym_cmd_identifier_token19] = ACTIONS(1711), - [aux_sym_cmd_identifier_token20] = ACTIONS(1711), - [aux_sym_cmd_identifier_token21] = ACTIONS(1711), - [aux_sym_cmd_identifier_token22] = ACTIONS(1711), - [aux_sym_cmd_identifier_token23] = ACTIONS(1711), - [aux_sym_cmd_identifier_token24] = ACTIONS(1711), - [aux_sym_cmd_identifier_token25] = ACTIONS(1711), - [aux_sym_cmd_identifier_token26] = ACTIONS(1711), - [aux_sym_cmd_identifier_token27] = ACTIONS(1711), - [aux_sym_cmd_identifier_token28] = ACTIONS(1711), - [aux_sym_cmd_identifier_token29] = ACTIONS(1711), - [aux_sym_cmd_identifier_token30] = ACTIONS(1711), - [aux_sym_cmd_identifier_token31] = ACTIONS(1711), - [aux_sym_cmd_identifier_token32] = ACTIONS(1711), - [aux_sym_cmd_identifier_token33] = ACTIONS(1711), - [aux_sym_cmd_identifier_token34] = ACTIONS(1711), - [aux_sym_cmd_identifier_token35] = ACTIONS(1711), - [aux_sym_cmd_identifier_token36] = ACTIONS(1711), - [aux_sym_cmd_identifier_token37] = ACTIONS(1711), - [aux_sym_cmd_identifier_token38] = ACTIONS(1711), - [aux_sym_cmd_identifier_token39] = ACTIONS(1711), - [aux_sym_cmd_identifier_token40] = ACTIONS(1711), - [anon_sym_def] = ACTIONS(1711), - [anon_sym_export_DASHenv] = ACTIONS(1711), - [anon_sym_extern] = ACTIONS(1711), - [anon_sym_module] = ACTIONS(1711), - [anon_sym_use] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_COMMA] = ACTIONS(1711), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_error] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_break] = ACTIONS(1711), - [anon_sym_continue] = ACTIONS(1711), - [anon_sym_for] = ACTIONS(1711), - [anon_sym_in2] = ACTIONS(1711), - [anon_sym_loop] = ACTIONS(1711), - [anon_sym_make] = ACTIONS(1711), - [anon_sym_while] = ACTIONS(1711), - [anon_sym_do] = ACTIONS(1711), - [anon_sym_if] = ACTIONS(1711), - [anon_sym_else] = ACTIONS(1711), - [anon_sym_match] = ACTIONS(1711), - [anon_sym_RBRACE] = ACTIONS(1711), - [anon_sym_try] = ACTIONS(1711), - [anon_sym_catch] = ACTIONS(1711), - [anon_sym_return] = ACTIONS(1711), - [anon_sym_source] = ACTIONS(1711), - [anon_sym_source_DASHenv] = ACTIONS(1711), - [anon_sym_register] = ACTIONS(1711), - [anon_sym_hide] = ACTIONS(1711), - [anon_sym_hide_DASHenv] = ACTIONS(1711), - [anon_sym_overlay] = ACTIONS(1711), - [anon_sym_as] = ACTIONS(1711), - [anon_sym_LPAREN2] = ACTIONS(1713), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1711), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1711), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1711), - [aux_sym__val_number_decimal_token3] = ACTIONS(1711), - [aux_sym__val_number_decimal_token4] = ACTIONS(1711), - [aux_sym__val_number_token1] = ACTIONS(1711), - [aux_sym__val_number_token2] = ACTIONS(1711), - [aux_sym__val_number_token3] = ACTIONS(1711), - [aux_sym__val_number_token4] = ACTIONS(1711), - [aux_sym__val_number_token5] = ACTIONS(1711), - [aux_sym__val_number_token6] = ACTIONS(1711), - [anon_sym_DQUOTE] = ACTIONS(1711), - [sym__str_single_quotes] = ACTIONS(1711), - [sym__str_back_ticks] = ACTIONS(1711), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1711), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1711), - [sym__entry_separator] = ACTIONS(1713), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1711), + [anon_sym_export] = ACTIONS(1693), + [anon_sym_alias] = ACTIONS(1693), + [anon_sym_let] = ACTIONS(1693), + [anon_sym_let_DASHenv] = ACTIONS(1693), + [anon_sym_mut] = ACTIONS(1693), + [anon_sym_const] = ACTIONS(1693), + [aux_sym_cmd_identifier_token1] = ACTIONS(1693), + [aux_sym_cmd_identifier_token2] = ACTIONS(1693), + [aux_sym_cmd_identifier_token3] = ACTIONS(1693), + [aux_sym_cmd_identifier_token4] = ACTIONS(1693), + [aux_sym_cmd_identifier_token5] = ACTIONS(1693), + [aux_sym_cmd_identifier_token6] = ACTIONS(1693), + [aux_sym_cmd_identifier_token7] = ACTIONS(1693), + [aux_sym_cmd_identifier_token8] = ACTIONS(1693), + [aux_sym_cmd_identifier_token9] = ACTIONS(1693), + [aux_sym_cmd_identifier_token10] = ACTIONS(1693), + [aux_sym_cmd_identifier_token11] = ACTIONS(1693), + [aux_sym_cmd_identifier_token12] = ACTIONS(1693), + [aux_sym_cmd_identifier_token13] = ACTIONS(1693), + [aux_sym_cmd_identifier_token14] = ACTIONS(1693), + [aux_sym_cmd_identifier_token15] = ACTIONS(1693), + [aux_sym_cmd_identifier_token16] = ACTIONS(1693), + [aux_sym_cmd_identifier_token17] = ACTIONS(1693), + [aux_sym_cmd_identifier_token18] = ACTIONS(1693), + [aux_sym_cmd_identifier_token19] = ACTIONS(1693), + [aux_sym_cmd_identifier_token20] = ACTIONS(1693), + [aux_sym_cmd_identifier_token21] = ACTIONS(1693), + [aux_sym_cmd_identifier_token22] = ACTIONS(1693), + [aux_sym_cmd_identifier_token23] = ACTIONS(1693), + [aux_sym_cmd_identifier_token24] = ACTIONS(1693), + [aux_sym_cmd_identifier_token25] = ACTIONS(1693), + [aux_sym_cmd_identifier_token26] = ACTIONS(1693), + [aux_sym_cmd_identifier_token27] = ACTIONS(1693), + [aux_sym_cmd_identifier_token28] = ACTIONS(1693), + [aux_sym_cmd_identifier_token29] = ACTIONS(1693), + [aux_sym_cmd_identifier_token30] = ACTIONS(1693), + [aux_sym_cmd_identifier_token31] = ACTIONS(1693), + [aux_sym_cmd_identifier_token32] = ACTIONS(1693), + [aux_sym_cmd_identifier_token33] = ACTIONS(1693), + [aux_sym_cmd_identifier_token34] = ACTIONS(1693), + [aux_sym_cmd_identifier_token35] = ACTIONS(1693), + [aux_sym_cmd_identifier_token36] = ACTIONS(1693), + [aux_sym_cmd_identifier_token37] = ACTIONS(1693), + [aux_sym_cmd_identifier_token38] = ACTIONS(1693), + [aux_sym_cmd_identifier_token39] = ACTIONS(1693), + [aux_sym_cmd_identifier_token40] = ACTIONS(1693), + [anon_sym_def] = ACTIONS(1693), + [anon_sym_export_DASHenv] = ACTIONS(1693), + [anon_sym_extern] = ACTIONS(1693), + [anon_sym_module] = ACTIONS(1693), + [anon_sym_use] = ACTIONS(1693), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_COMMA] = ACTIONS(1693), + [anon_sym_DOLLAR] = ACTIONS(1693), + [anon_sym_error] = ACTIONS(1693), + [anon_sym_DASH2] = ACTIONS(1693), + [anon_sym_break] = ACTIONS(1693), + [anon_sym_continue] = ACTIONS(1693), + [anon_sym_for] = ACTIONS(1693), + [anon_sym_in2] = ACTIONS(1693), + [anon_sym_loop] = ACTIONS(1693), + [anon_sym_make] = ACTIONS(1693), + [anon_sym_while] = ACTIONS(1693), + [anon_sym_do] = ACTIONS(1693), + [anon_sym_if] = ACTIONS(1693), + [anon_sym_else] = ACTIONS(1693), + [anon_sym_match] = ACTIONS(1693), + [anon_sym_RBRACE] = ACTIONS(1693), + [anon_sym_try] = ACTIONS(1693), + [anon_sym_catch] = ACTIONS(1693), + [anon_sym_return] = ACTIONS(1693), + [anon_sym_source] = ACTIONS(1693), + [anon_sym_source_DASHenv] = ACTIONS(1693), + [anon_sym_hide] = ACTIONS(1693), + [anon_sym_hide_DASHenv] = ACTIONS(1693), + [anon_sym_overlay] = ACTIONS(1693), + [anon_sym_as] = ACTIONS(1693), + [anon_sym_LPAREN2] = ACTIONS(1695), + [anon_sym_PLUS2] = ACTIONS(1693), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1693), + [anon_sym_DOT_DOT2] = ACTIONS(1693), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1695), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1695), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1693), + [aux_sym__val_number_decimal_token1] = ACTIONS(1693), + [aux_sym__val_number_decimal_token2] = ACTIONS(1693), + [aux_sym__val_number_decimal_token3] = ACTIONS(1693), + [aux_sym__val_number_decimal_token4] = ACTIONS(1693), + [aux_sym__val_number_token1] = ACTIONS(1693), + [aux_sym__val_number_token2] = ACTIONS(1693), + [aux_sym__val_number_token3] = ACTIONS(1693), + [aux_sym__val_number_token4] = ACTIONS(1693), + [aux_sym__val_number_token5] = ACTIONS(1693), + [aux_sym__val_number_token6] = ACTIONS(1693), + [anon_sym_DQUOTE] = ACTIONS(1693), + [sym__str_single_quotes] = ACTIONS(1693), + [sym__str_back_ticks] = ACTIONS(1693), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1693), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1693), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1693), + [sym__entry_separator] = ACTIONS(1695), + [anon_sym_register] = ACTIONS(1693), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1693), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1713), + [sym_raw_string_begin] = ACTIONS(1695), }, [372] = { [sym_comment] = STATE(372), - [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), - [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1812), - [anon_sym_error] = ACTIONS(1812), - [anon_sym_DASH2] = ACTIONS(1812), - [anon_sym_break] = ACTIONS(1812), - [anon_sym_continue] = ACTIONS(1812), - [anon_sym_for] = ACTIONS(1812), - [anon_sym_in2] = 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_as] = ACTIONS(1812), - [anon_sym_LPAREN2] = ACTIONS(1814), - [anon_sym_PLUS2] = ACTIONS(1812), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1812), - [anon_sym_DOT_DOT2] = ACTIONS(1816), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1818), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1818), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1812), - [aux_sym__val_number_decimal_token1] = ACTIONS(1812), - [aux_sym__val_number_decimal_token2] = ACTIONS(1812), - [aux_sym__val_number_decimal_token3] = ACTIONS(1812), - [aux_sym__val_number_decimal_token4] = ACTIONS(1812), - [aux_sym__val_number_token1] = ACTIONS(1812), - [aux_sym__val_number_token2] = ACTIONS(1812), - [aux_sym__val_number_token3] = ACTIONS(1812), - [aux_sym__val_number_token4] = ACTIONS(1812), - [aux_sym__val_number_token5] = ACTIONS(1812), - [aux_sym__val_number_token6] = ACTIONS(1812), - [anon_sym_DQUOTE] = ACTIONS(1812), - [sym__str_single_quotes] = ACTIONS(1812), - [sym__str_back_ticks] = ACTIONS(1812), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1812), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1812), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1812), - [sym__entry_separator] = ACTIONS(1820), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1822), + [anon_sym_export] = ACTIONS(964), + [anon_sym_alias] = ACTIONS(964), + [anon_sym_let] = ACTIONS(964), + [anon_sym_let_DASHenv] = ACTIONS(964), + [anon_sym_mut] = ACTIONS(964), + [anon_sym_const] = ACTIONS(964), + [aux_sym_cmd_identifier_token1] = ACTIONS(964), + [aux_sym_cmd_identifier_token2] = ACTIONS(964), + [aux_sym_cmd_identifier_token3] = ACTIONS(964), + [aux_sym_cmd_identifier_token4] = ACTIONS(964), + [aux_sym_cmd_identifier_token5] = ACTIONS(964), + [aux_sym_cmd_identifier_token6] = ACTIONS(964), + [aux_sym_cmd_identifier_token7] = ACTIONS(964), + [aux_sym_cmd_identifier_token8] = ACTIONS(964), + [aux_sym_cmd_identifier_token9] = ACTIONS(964), + [aux_sym_cmd_identifier_token10] = ACTIONS(964), + [aux_sym_cmd_identifier_token11] = ACTIONS(964), + [aux_sym_cmd_identifier_token12] = ACTIONS(964), + [aux_sym_cmd_identifier_token13] = ACTIONS(964), + [aux_sym_cmd_identifier_token14] = ACTIONS(964), + [aux_sym_cmd_identifier_token15] = ACTIONS(964), + [aux_sym_cmd_identifier_token16] = ACTIONS(964), + [aux_sym_cmd_identifier_token17] = ACTIONS(964), + [aux_sym_cmd_identifier_token18] = ACTIONS(964), + [aux_sym_cmd_identifier_token19] = ACTIONS(964), + [aux_sym_cmd_identifier_token20] = ACTIONS(964), + [aux_sym_cmd_identifier_token21] = ACTIONS(964), + [aux_sym_cmd_identifier_token22] = ACTIONS(964), + [aux_sym_cmd_identifier_token23] = ACTIONS(964), + [aux_sym_cmd_identifier_token24] = ACTIONS(964), + [aux_sym_cmd_identifier_token25] = ACTIONS(964), + [aux_sym_cmd_identifier_token26] = ACTIONS(964), + [aux_sym_cmd_identifier_token27] = ACTIONS(964), + [aux_sym_cmd_identifier_token28] = ACTIONS(964), + [aux_sym_cmd_identifier_token29] = ACTIONS(964), + [aux_sym_cmd_identifier_token30] = ACTIONS(964), + [aux_sym_cmd_identifier_token31] = ACTIONS(964), + [aux_sym_cmd_identifier_token32] = ACTIONS(964), + [aux_sym_cmd_identifier_token33] = ACTIONS(964), + [aux_sym_cmd_identifier_token34] = ACTIONS(964), + [aux_sym_cmd_identifier_token35] = ACTIONS(964), + [aux_sym_cmd_identifier_token36] = ACTIONS(964), + [aux_sym_cmd_identifier_token37] = ACTIONS(964), + [aux_sym_cmd_identifier_token38] = ACTIONS(964), + [aux_sym_cmd_identifier_token39] = ACTIONS(964), + [aux_sym_cmd_identifier_token40] = ACTIONS(964), + [anon_sym_def] = ACTIONS(964), + [anon_sym_export_DASHenv] = ACTIONS(964), + [anon_sym_extern] = ACTIONS(964), + [anon_sym_module] = ACTIONS(964), + [anon_sym_use] = ACTIONS(964), + [anon_sym_LPAREN] = ACTIONS(964), + [anon_sym_COMMA] = ACTIONS(964), + [anon_sym_DOLLAR] = ACTIONS(964), + [anon_sym_error] = ACTIONS(964), + [anon_sym_DASH2] = ACTIONS(964), + [anon_sym_break] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_in2] = ACTIONS(964), + [anon_sym_loop] = ACTIONS(964), + [anon_sym_make] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [anon_sym_do] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_else] = ACTIONS(964), + [anon_sym_match] = ACTIONS(964), + [anon_sym_RBRACE] = ACTIONS(964), + [anon_sym_try] = ACTIONS(964), + [anon_sym_catch] = ACTIONS(964), + [anon_sym_return] = ACTIONS(964), + [anon_sym_source] = ACTIONS(964), + [anon_sym_source_DASHenv] = ACTIONS(964), + [anon_sym_hide] = ACTIONS(964), + [anon_sym_hide_DASHenv] = ACTIONS(964), + [anon_sym_overlay] = ACTIONS(964), + [anon_sym_as] = ACTIONS(964), + [anon_sym_QMARK2] = ACTIONS(964), + [anon_sym_PLUS2] = ACTIONS(964), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(964), + [anon_sym_DOT_DOT2] = ACTIONS(964), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(966), + [anon_sym_DOT_DOT_LT2] = ACTIONS(966), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(964), + [aux_sym__val_number_decimal_token1] = ACTIONS(964), + [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), + [aux_sym__val_number_token4] = ACTIONS(964), + [aux_sym__val_number_token5] = ACTIONS(964), + [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(964), + [sym__entry_separator] = ACTIONS(966), + [anon_sym_register] = ACTIONS(964), + [anon_sym_DOT2] = ACTIONS(964), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1820), + [sym_raw_string_begin] = ACTIONS(966), }, [373] = { [sym_comment] = STATE(373), - [anon_sym_export] = ACTIONS(1783), - [anon_sym_alias] = ACTIONS(1783), - [anon_sym_let] = ACTIONS(1783), - [anon_sym_let_DASHenv] = ACTIONS(1783), - [anon_sym_mut] = ACTIONS(1783), - [anon_sym_const] = ACTIONS(1783), - [aux_sym_cmd_identifier_token1] = ACTIONS(1783), - [aux_sym_cmd_identifier_token2] = ACTIONS(1783), - [aux_sym_cmd_identifier_token3] = ACTIONS(1783), - [aux_sym_cmd_identifier_token4] = ACTIONS(1783), - [aux_sym_cmd_identifier_token5] = ACTIONS(1783), - [aux_sym_cmd_identifier_token6] = ACTIONS(1783), - [aux_sym_cmd_identifier_token7] = ACTIONS(1783), - [aux_sym_cmd_identifier_token8] = ACTIONS(1783), - [aux_sym_cmd_identifier_token9] = ACTIONS(1783), - [aux_sym_cmd_identifier_token10] = ACTIONS(1783), - [aux_sym_cmd_identifier_token11] = ACTIONS(1783), - [aux_sym_cmd_identifier_token12] = ACTIONS(1783), - [aux_sym_cmd_identifier_token13] = ACTIONS(1783), - [aux_sym_cmd_identifier_token14] = ACTIONS(1783), - [aux_sym_cmd_identifier_token15] = ACTIONS(1783), - [aux_sym_cmd_identifier_token16] = ACTIONS(1783), - [aux_sym_cmd_identifier_token17] = ACTIONS(1783), - [aux_sym_cmd_identifier_token18] = ACTIONS(1783), - [aux_sym_cmd_identifier_token19] = ACTIONS(1783), - [aux_sym_cmd_identifier_token20] = ACTIONS(1783), - [aux_sym_cmd_identifier_token21] = ACTIONS(1783), - [aux_sym_cmd_identifier_token22] = ACTIONS(1783), - [aux_sym_cmd_identifier_token23] = ACTIONS(1783), - [aux_sym_cmd_identifier_token24] = ACTIONS(1783), - [aux_sym_cmd_identifier_token25] = ACTIONS(1783), - [aux_sym_cmd_identifier_token26] = ACTIONS(1783), - [aux_sym_cmd_identifier_token27] = ACTIONS(1783), - [aux_sym_cmd_identifier_token28] = ACTIONS(1783), - [aux_sym_cmd_identifier_token29] = ACTIONS(1783), - [aux_sym_cmd_identifier_token30] = ACTIONS(1783), - [aux_sym_cmd_identifier_token31] = ACTIONS(1783), - [aux_sym_cmd_identifier_token32] = ACTIONS(1783), - [aux_sym_cmd_identifier_token33] = ACTIONS(1783), - [aux_sym_cmd_identifier_token34] = ACTIONS(1783), - [aux_sym_cmd_identifier_token35] = ACTIONS(1783), - [aux_sym_cmd_identifier_token36] = ACTIONS(1783), - [aux_sym_cmd_identifier_token37] = ACTIONS(1783), - [aux_sym_cmd_identifier_token38] = ACTIONS(1783), - [aux_sym_cmd_identifier_token39] = ACTIONS(1783), - [aux_sym_cmd_identifier_token40] = ACTIONS(1783), - [anon_sym_def] = ACTIONS(1783), - [anon_sym_export_DASHenv] = ACTIONS(1783), - [anon_sym_extern] = ACTIONS(1783), - [anon_sym_module] = ACTIONS(1783), - [anon_sym_use] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_COMMA] = ACTIONS(1783), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_error] = ACTIONS(1783), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_break] = ACTIONS(1783), - [anon_sym_continue] = ACTIONS(1783), - [anon_sym_for] = ACTIONS(1783), - [anon_sym_in2] = ACTIONS(1783), - [anon_sym_loop] = ACTIONS(1783), - [anon_sym_make] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1783), - [anon_sym_do] = ACTIONS(1783), - [anon_sym_if] = ACTIONS(1783), - [anon_sym_else] = ACTIONS(1783), - [anon_sym_match] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(1783), - [anon_sym_try] = ACTIONS(1783), - [anon_sym_catch] = ACTIONS(1783), - [anon_sym_return] = ACTIONS(1783), - [anon_sym_source] = ACTIONS(1783), - [anon_sym_source_DASHenv] = ACTIONS(1783), - [anon_sym_register] = ACTIONS(1783), - [anon_sym_hide] = ACTIONS(1783), - [anon_sym_hide_DASHenv] = ACTIONS(1783), - [anon_sym_overlay] = ACTIONS(1783), - [anon_sym_as] = ACTIONS(1783), - [anon_sym_LPAREN2] = ACTIONS(1785), - [anon_sym_PLUS2] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1783), - [anon_sym_DOT_DOT2] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1783), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1783), - [aux_sym__val_number_decimal_token3] = ACTIONS(1783), - [aux_sym__val_number_decimal_token4] = ACTIONS(1783), - [aux_sym__val_number_token1] = ACTIONS(1783), - [aux_sym__val_number_token2] = ACTIONS(1783), - [aux_sym__val_number_token3] = ACTIONS(1783), - [aux_sym__val_number_token4] = ACTIONS(1783), - [aux_sym__val_number_token5] = ACTIONS(1783), - [aux_sym__val_number_token6] = ACTIONS(1783), - [anon_sym_DQUOTE] = ACTIONS(1783), - [sym__str_single_quotes] = ACTIONS(1783), - [sym__str_back_ticks] = ACTIONS(1783), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1783), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1783), - [sym__entry_separator] = ACTIONS(1785), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1783), + [anon_sym_export] = ACTIONS(1766), + [anon_sym_alias] = ACTIONS(1766), + [anon_sym_let] = ACTIONS(1766), + [anon_sym_let_DASHenv] = ACTIONS(1766), + [anon_sym_mut] = ACTIONS(1766), + [anon_sym_const] = ACTIONS(1766), + [aux_sym_cmd_identifier_token1] = ACTIONS(1766), + [aux_sym_cmd_identifier_token2] = ACTIONS(1766), + [aux_sym_cmd_identifier_token3] = ACTIONS(1766), + [aux_sym_cmd_identifier_token4] = ACTIONS(1766), + [aux_sym_cmd_identifier_token5] = ACTIONS(1766), + [aux_sym_cmd_identifier_token6] = ACTIONS(1766), + [aux_sym_cmd_identifier_token7] = ACTIONS(1766), + [aux_sym_cmd_identifier_token8] = ACTIONS(1766), + [aux_sym_cmd_identifier_token9] = ACTIONS(1766), + [aux_sym_cmd_identifier_token10] = ACTIONS(1766), + [aux_sym_cmd_identifier_token11] = ACTIONS(1766), + [aux_sym_cmd_identifier_token12] = ACTIONS(1766), + [aux_sym_cmd_identifier_token13] = ACTIONS(1766), + [aux_sym_cmd_identifier_token14] = ACTIONS(1766), + [aux_sym_cmd_identifier_token15] = ACTIONS(1766), + [aux_sym_cmd_identifier_token16] = ACTIONS(1766), + [aux_sym_cmd_identifier_token17] = ACTIONS(1766), + [aux_sym_cmd_identifier_token18] = ACTIONS(1766), + [aux_sym_cmd_identifier_token19] = ACTIONS(1766), + [aux_sym_cmd_identifier_token20] = ACTIONS(1766), + [aux_sym_cmd_identifier_token21] = ACTIONS(1766), + [aux_sym_cmd_identifier_token22] = ACTIONS(1766), + [aux_sym_cmd_identifier_token23] = ACTIONS(1766), + [aux_sym_cmd_identifier_token24] = ACTIONS(1766), + [aux_sym_cmd_identifier_token25] = ACTIONS(1766), + [aux_sym_cmd_identifier_token26] = ACTIONS(1766), + [aux_sym_cmd_identifier_token27] = ACTIONS(1766), + [aux_sym_cmd_identifier_token28] = ACTIONS(1766), + [aux_sym_cmd_identifier_token29] = ACTIONS(1766), + [aux_sym_cmd_identifier_token30] = ACTIONS(1766), + [aux_sym_cmd_identifier_token31] = ACTIONS(1766), + [aux_sym_cmd_identifier_token32] = ACTIONS(1766), + [aux_sym_cmd_identifier_token33] = ACTIONS(1766), + [aux_sym_cmd_identifier_token34] = ACTIONS(1766), + [aux_sym_cmd_identifier_token35] = ACTIONS(1766), + [aux_sym_cmd_identifier_token36] = ACTIONS(1766), + [aux_sym_cmd_identifier_token37] = ACTIONS(1766), + [aux_sym_cmd_identifier_token38] = ACTIONS(1766), + [aux_sym_cmd_identifier_token39] = ACTIONS(1766), + [aux_sym_cmd_identifier_token40] = ACTIONS(1766), + [anon_sym_def] = ACTIONS(1766), + [anon_sym_export_DASHenv] = ACTIONS(1766), + [anon_sym_extern] = ACTIONS(1766), + [anon_sym_module] = ACTIONS(1766), + [anon_sym_use] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1766), + [anon_sym_COMMA] = ACTIONS(1766), + [anon_sym_DOLLAR] = ACTIONS(1766), + [anon_sym_error] = ACTIONS(1766), + [anon_sym_DASH2] = ACTIONS(1766), + [anon_sym_break] = ACTIONS(1766), + [anon_sym_continue] = ACTIONS(1766), + [anon_sym_for] = ACTIONS(1766), + [anon_sym_in2] = ACTIONS(1766), + [anon_sym_loop] = ACTIONS(1766), + [anon_sym_make] = ACTIONS(1766), + [anon_sym_while] = ACTIONS(1766), + [anon_sym_do] = ACTIONS(1766), + [anon_sym_if] = ACTIONS(1766), + [anon_sym_else] = ACTIONS(1766), + [anon_sym_match] = ACTIONS(1766), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_try] = ACTIONS(1766), + [anon_sym_catch] = ACTIONS(1766), + [anon_sym_return] = ACTIONS(1766), + [anon_sym_source] = ACTIONS(1766), + [anon_sym_source_DASHenv] = ACTIONS(1766), + [anon_sym_hide] = ACTIONS(1766), + [anon_sym_hide_DASHenv] = ACTIONS(1766), + [anon_sym_overlay] = ACTIONS(1766), + [anon_sym_as] = ACTIONS(1766), + [anon_sym_LPAREN2] = ACTIONS(1768), + [anon_sym_PLUS2] = ACTIONS(1766), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1766), + [anon_sym_DOT_DOT2] = ACTIONS(1766), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1768), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1768), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1766), + [aux_sym__val_number_decimal_token1] = ACTIONS(1766), + [aux_sym__val_number_decimal_token2] = ACTIONS(1766), + [aux_sym__val_number_decimal_token3] = ACTIONS(1766), + [aux_sym__val_number_decimal_token4] = ACTIONS(1766), + [aux_sym__val_number_token1] = ACTIONS(1766), + [aux_sym__val_number_token2] = ACTIONS(1766), + [aux_sym__val_number_token3] = ACTIONS(1766), + [aux_sym__val_number_token4] = ACTIONS(1766), + [aux_sym__val_number_token5] = ACTIONS(1766), + [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(1766), + [sym__entry_separator] = ACTIONS(1768), + [anon_sym_register] = ACTIONS(1766), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1766), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1785), + [sym_raw_string_begin] = ACTIONS(1768), }, [374] = { [sym_comment] = STATE(374), - [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), - [aux_sym_cmd_identifier_token37] = ACTIONS(1755), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1755), - [aux_sym_cmd_identifier_token40] = ACTIONS(1755), - [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(1755), - [anon_sym_COMMA] = ACTIONS(1755), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in2] = 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_RBRACE] = 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_as] = ACTIONS(1755), - [anon_sym_PLUS2] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1755), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT] = ACTIONS(1824), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(1826), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1755), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1755), - [aux_sym__val_number_decimal_token3] = ACTIONS(1755), - [aux_sym__val_number_decimal_token4] = ACTIONS(1755), - [aux_sym__val_number_token1] = ACTIONS(1755), - [aux_sym__val_number_token2] = ACTIONS(1755), - [aux_sym__val_number_token3] = ACTIONS(1755), - [aux_sym__val_number_token4] = ACTIONS(1755), - [aux_sym__val_number_token5] = ACTIONS(1755), - [aux_sym__val_number_token6] = ACTIONS(1755), - [anon_sym_DQUOTE] = ACTIONS(1755), - [sym__str_single_quotes] = ACTIONS(1755), - [sym__str_back_ticks] = ACTIONS(1755), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1755), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1755), - [sym__entry_separator] = ACTIONS(1757), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1792), + [anon_sym_DOLLAR] = ACTIONS(1792), + [anon_sym_error] = ACTIONS(1792), + [anon_sym_DASH2] = ACTIONS(1792), + [anon_sym_break] = ACTIONS(1792), + [anon_sym_continue] = ACTIONS(1792), + [anon_sym_for] = ACTIONS(1792), + [anon_sym_in2] = 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_hide] = ACTIONS(1792), + [anon_sym_hide_DASHenv] = ACTIONS(1792), + [anon_sym_overlay] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1792), + [anon_sym_LPAREN2] = ACTIONS(1794), + [anon_sym_PLUS2] = ACTIONS(1792), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1792), + [anon_sym_DOT_DOT2] = ACTIONS(1792), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1794), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1794), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1792), + [aux_sym__val_number_decimal_token1] = ACTIONS(1792), + [aux_sym__val_number_decimal_token2] = ACTIONS(1792), + [aux_sym__val_number_decimal_token3] = ACTIONS(1792), + [aux_sym__val_number_decimal_token4] = ACTIONS(1792), + [aux_sym__val_number_token1] = ACTIONS(1792), + [aux_sym__val_number_token2] = ACTIONS(1792), + [aux_sym__val_number_token3] = ACTIONS(1792), + [aux_sym__val_number_token4] = ACTIONS(1792), + [aux_sym__val_number_token5] = ACTIONS(1792), + [aux_sym__val_number_token6] = ACTIONS(1792), + [anon_sym_DQUOTE] = ACTIONS(1792), + [sym__str_single_quotes] = ACTIONS(1792), + [sym__str_back_ticks] = ACTIONS(1792), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1792), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1792), + [sym__entry_separator] = ACTIONS(1794), + [anon_sym_register] = ACTIONS(1792), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1792), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1757), + [sym_raw_string_begin] = ACTIONS(1794), }, [375] = { - [sym_path] = STATE(450), [sym_comment] = STATE(375), - [aux_sym_cell_path_repeat1] = STATE(378), - [anon_sym_export] = ACTIONS(949), - [anon_sym_alias] = ACTIONS(949), - [anon_sym_let] = ACTIONS(949), - [anon_sym_let_DASHenv] = ACTIONS(949), - [anon_sym_mut] = ACTIONS(949), - [anon_sym_const] = ACTIONS(949), - [aux_sym_cmd_identifier_token1] = ACTIONS(949), - [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(949), - [aux_sym_cmd_identifier_token9] = ACTIONS(949), - [aux_sym_cmd_identifier_token10] = ACTIONS(951), - [aux_sym_cmd_identifier_token11] = ACTIONS(951), - [aux_sym_cmd_identifier_token12] = ACTIONS(949), - [aux_sym_cmd_identifier_token13] = ACTIONS(949), - [aux_sym_cmd_identifier_token14] = ACTIONS(949), - [aux_sym_cmd_identifier_token15] = ACTIONS(949), - [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(949), - [aux_sym_cmd_identifier_token35] = ACTIONS(951), - [aux_sym_cmd_identifier_token36] = ACTIONS(951), - [aux_sym_cmd_identifier_token37] = ACTIONS(951), - [aux_sym_cmd_identifier_token38] = ACTIONS(949), - [aux_sym_cmd_identifier_token39] = ACTIONS(951), - [aux_sym_cmd_identifier_token40] = ACTIONS(951), - [anon_sym_def] = ACTIONS(949), - [anon_sym_export_DASHenv] = ACTIONS(949), - [anon_sym_extern] = ACTIONS(949), - [anon_sym_module] = ACTIONS(949), - [anon_sym_use] = ACTIONS(949), - [anon_sym_LPAREN] = ACTIONS(951), - [anon_sym_COMMA] = ACTIONS(951), - [anon_sym_DOLLAR] = ACTIONS(949), - [anon_sym_error] = ACTIONS(949), - [anon_sym_DASH2] = ACTIONS(949), - [anon_sym_break] = ACTIONS(949), - [anon_sym_continue] = ACTIONS(949), - [anon_sym_for] = ACTIONS(949), - [anon_sym_in2] = ACTIONS(949), - [anon_sym_loop] = ACTIONS(949), - [anon_sym_make] = ACTIONS(949), - [anon_sym_while] = ACTIONS(949), - [anon_sym_do] = ACTIONS(949), - [anon_sym_if] = ACTIONS(949), - [anon_sym_else] = ACTIONS(949), - [anon_sym_match] = ACTIONS(949), - [anon_sym_RBRACE] = ACTIONS(951), - [anon_sym_try] = ACTIONS(949), - [anon_sym_catch] = ACTIONS(949), - [anon_sym_return] = ACTIONS(949), - [anon_sym_source] = ACTIONS(949), - [anon_sym_source_DASHenv] = ACTIONS(949), - [anon_sym_register] = ACTIONS(949), - [anon_sym_hide] = ACTIONS(949), - [anon_sym_hide_DASHenv] = ACTIONS(949), - [anon_sym_overlay] = ACTIONS(949), - [anon_sym_as] = ACTIONS(949), - [anon_sym_PLUS2] = ACTIONS(949), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(951), - [anon_sym_DOT_DOT2] = ACTIONS(949), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(951), - [anon_sym_DOT_DOT_LT2] = ACTIONS(951), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(951), - [aux_sym__val_number_decimal_token1] = ACTIONS(949), - [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), - [aux_sym__val_number_token4] = ACTIONS(949), - [aux_sym__val_number_token5] = ACTIONS(949), - [aux_sym__val_number_token6] = ACTIONS(949), - [anon_sym_DQUOTE] = ACTIONS(951), - [sym__str_single_quotes] = ACTIONS(951), - [sym__str_back_ticks] = ACTIONS(951), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(951), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(951), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(951), - [anon_sym_DOT2] = ACTIONS(1793), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(951), + [anon_sym_export] = ACTIONS(1693), + [anon_sym_alias] = ACTIONS(1693), + [anon_sym_let] = ACTIONS(1693), + [anon_sym_let_DASHenv] = ACTIONS(1693), + [anon_sym_mut] = ACTIONS(1693), + [anon_sym_const] = ACTIONS(1693), + [aux_sym_cmd_identifier_token1] = ACTIONS(1693), + [aux_sym_cmd_identifier_token2] = ACTIONS(1693), + [aux_sym_cmd_identifier_token3] = ACTIONS(1693), + [aux_sym_cmd_identifier_token4] = ACTIONS(1693), + [aux_sym_cmd_identifier_token5] = ACTIONS(1693), + [aux_sym_cmd_identifier_token6] = ACTIONS(1693), + [aux_sym_cmd_identifier_token7] = ACTIONS(1693), + [aux_sym_cmd_identifier_token8] = ACTIONS(1693), + [aux_sym_cmd_identifier_token9] = ACTIONS(1693), + [aux_sym_cmd_identifier_token10] = ACTIONS(1693), + [aux_sym_cmd_identifier_token11] = ACTIONS(1693), + [aux_sym_cmd_identifier_token12] = ACTIONS(1693), + [aux_sym_cmd_identifier_token13] = ACTIONS(1693), + [aux_sym_cmd_identifier_token14] = ACTIONS(1693), + [aux_sym_cmd_identifier_token15] = ACTIONS(1693), + [aux_sym_cmd_identifier_token16] = ACTIONS(1693), + [aux_sym_cmd_identifier_token17] = ACTIONS(1693), + [aux_sym_cmd_identifier_token18] = ACTIONS(1693), + [aux_sym_cmd_identifier_token19] = ACTIONS(1693), + [aux_sym_cmd_identifier_token20] = ACTIONS(1693), + [aux_sym_cmd_identifier_token21] = ACTIONS(1693), + [aux_sym_cmd_identifier_token22] = ACTIONS(1693), + [aux_sym_cmd_identifier_token23] = ACTIONS(1693), + [aux_sym_cmd_identifier_token24] = ACTIONS(1693), + [aux_sym_cmd_identifier_token25] = ACTIONS(1693), + [aux_sym_cmd_identifier_token26] = ACTIONS(1693), + [aux_sym_cmd_identifier_token27] = ACTIONS(1693), + [aux_sym_cmd_identifier_token28] = ACTIONS(1693), + [aux_sym_cmd_identifier_token29] = ACTIONS(1693), + [aux_sym_cmd_identifier_token30] = ACTIONS(1693), + [aux_sym_cmd_identifier_token31] = ACTIONS(1693), + [aux_sym_cmd_identifier_token32] = ACTIONS(1693), + [aux_sym_cmd_identifier_token33] = ACTIONS(1693), + [aux_sym_cmd_identifier_token34] = ACTIONS(1693), + [aux_sym_cmd_identifier_token35] = ACTIONS(1693), + [aux_sym_cmd_identifier_token36] = ACTIONS(1693), + [aux_sym_cmd_identifier_token37] = ACTIONS(1693), + [aux_sym_cmd_identifier_token38] = ACTIONS(1693), + [aux_sym_cmd_identifier_token39] = ACTIONS(1693), + [aux_sym_cmd_identifier_token40] = ACTIONS(1693), + [anon_sym_def] = ACTIONS(1693), + [anon_sym_export_DASHenv] = ACTIONS(1693), + [anon_sym_extern] = ACTIONS(1693), + [anon_sym_module] = ACTIONS(1693), + [anon_sym_use] = ACTIONS(1693), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_COMMA] = ACTIONS(1693), + [anon_sym_DOLLAR] = ACTIONS(1693), + [anon_sym_error] = ACTIONS(1693), + [anon_sym_DASH2] = ACTIONS(1693), + [anon_sym_break] = ACTIONS(1693), + [anon_sym_continue] = ACTIONS(1693), + [anon_sym_for] = ACTIONS(1693), + [anon_sym_in2] = ACTIONS(1693), + [anon_sym_loop] = ACTIONS(1693), + [anon_sym_make] = ACTIONS(1693), + [anon_sym_while] = ACTIONS(1693), + [anon_sym_do] = ACTIONS(1693), + [anon_sym_if] = ACTIONS(1693), + [anon_sym_else] = ACTIONS(1693), + [anon_sym_match] = ACTIONS(1693), + [anon_sym_RBRACE] = ACTIONS(1693), + [anon_sym_try] = ACTIONS(1693), + [anon_sym_catch] = ACTIONS(1693), + [anon_sym_return] = ACTIONS(1693), + [anon_sym_source] = ACTIONS(1693), + [anon_sym_source_DASHenv] = ACTIONS(1693), + [anon_sym_hide] = ACTIONS(1693), + [anon_sym_hide_DASHenv] = ACTIONS(1693), + [anon_sym_overlay] = ACTIONS(1693), + [anon_sym_as] = ACTIONS(1693), + [anon_sym_PLUS2] = ACTIONS(1693), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1693), + [anon_sym_DOT_DOT2] = ACTIONS(1693), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1695), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1695), + [aux_sym__immediate_decimal_token1] = ACTIONS(1796), + [aux_sym__immediate_decimal_token2] = ACTIONS(1798), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1693), + [aux_sym__val_number_decimal_token1] = ACTIONS(1693), + [aux_sym__val_number_decimal_token2] = ACTIONS(1693), + [aux_sym__val_number_decimal_token3] = ACTIONS(1693), + [aux_sym__val_number_decimal_token4] = ACTIONS(1693), + [aux_sym__val_number_token1] = ACTIONS(1693), + [aux_sym__val_number_token2] = ACTIONS(1693), + [aux_sym__val_number_token3] = ACTIONS(1693), + [aux_sym__val_number_token4] = ACTIONS(1693), + [aux_sym__val_number_token5] = ACTIONS(1693), + [aux_sym__val_number_token6] = ACTIONS(1693), + [anon_sym_DQUOTE] = ACTIONS(1693), + [sym__str_single_quotes] = ACTIONS(1693), + [sym__str_back_ticks] = ACTIONS(1693), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1693), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1693), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1693), + [sym__entry_separator] = ACTIONS(1695), + [anon_sym_register] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1695), }, [376] = { [sym_comment] = STATE(376), - [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), - [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(966), - [anon_sym_DOLLAR] = ACTIONS(966), - [anon_sym_error] = ACTIONS(966), - [anon_sym_DASH2] = ACTIONS(966), - [anon_sym_break] = ACTIONS(966), - [anon_sym_continue] = ACTIONS(966), - [anon_sym_for] = ACTIONS(966), - [anon_sym_in2] = 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_as] = ACTIONS(966), - [anon_sym_QMARK2] = ACTIONS(1828), - [anon_sym_PLUS2] = ACTIONS(966), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(966), - [anon_sym_DOT_DOT2] = 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), - [aux_sym__val_number_token4] = ACTIONS(966), - [aux_sym__val_number_token5] = ACTIONS(966), - [aux_sym__val_number_token6] = ACTIONS(966), - [anon_sym_DQUOTE] = ACTIONS(966), - [sym__str_single_quotes] = ACTIONS(966), - [sym__str_back_ticks] = ACTIONS(966), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(966), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(966), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(966), - [sym__entry_separator] = ACTIONS(968), - [anon_sym_DOT2] = ACTIONS(966), + [anon_sym_export] = ACTIONS(968), + [anon_sym_alias] = ACTIONS(968), + [anon_sym_let] = ACTIONS(968), + [anon_sym_let_DASHenv] = ACTIONS(968), + [anon_sym_mut] = ACTIONS(968), + [anon_sym_const] = ACTIONS(968), + [aux_sym_cmd_identifier_token1] = ACTIONS(968), + [aux_sym_cmd_identifier_token2] = ACTIONS(968), + [aux_sym_cmd_identifier_token3] = ACTIONS(968), + [aux_sym_cmd_identifier_token4] = ACTIONS(968), + [aux_sym_cmd_identifier_token5] = ACTIONS(968), + [aux_sym_cmd_identifier_token6] = ACTIONS(968), + [aux_sym_cmd_identifier_token7] = ACTIONS(968), + [aux_sym_cmd_identifier_token8] = ACTIONS(968), + [aux_sym_cmd_identifier_token9] = ACTIONS(968), + [aux_sym_cmd_identifier_token10] = ACTIONS(968), + [aux_sym_cmd_identifier_token11] = ACTIONS(968), + [aux_sym_cmd_identifier_token12] = ACTIONS(968), + [aux_sym_cmd_identifier_token13] = ACTIONS(968), + [aux_sym_cmd_identifier_token14] = ACTIONS(968), + [aux_sym_cmd_identifier_token15] = ACTIONS(968), + [aux_sym_cmd_identifier_token16] = ACTIONS(968), + [aux_sym_cmd_identifier_token17] = ACTIONS(968), + [aux_sym_cmd_identifier_token18] = ACTIONS(968), + [aux_sym_cmd_identifier_token19] = ACTIONS(968), + [aux_sym_cmd_identifier_token20] = ACTIONS(968), + [aux_sym_cmd_identifier_token21] = ACTIONS(968), + [aux_sym_cmd_identifier_token22] = ACTIONS(968), + [aux_sym_cmd_identifier_token23] = ACTIONS(968), + [aux_sym_cmd_identifier_token24] = ACTIONS(968), + [aux_sym_cmd_identifier_token25] = ACTIONS(968), + [aux_sym_cmd_identifier_token26] = ACTIONS(968), + [aux_sym_cmd_identifier_token27] = ACTIONS(968), + [aux_sym_cmd_identifier_token28] = ACTIONS(968), + [aux_sym_cmd_identifier_token29] = ACTIONS(968), + [aux_sym_cmd_identifier_token30] = ACTIONS(968), + [aux_sym_cmd_identifier_token31] = ACTIONS(968), + [aux_sym_cmd_identifier_token32] = ACTIONS(968), + [aux_sym_cmd_identifier_token33] = ACTIONS(968), + [aux_sym_cmd_identifier_token34] = ACTIONS(968), + [aux_sym_cmd_identifier_token35] = ACTIONS(968), + [aux_sym_cmd_identifier_token36] = ACTIONS(968), + [aux_sym_cmd_identifier_token37] = ACTIONS(968), + [aux_sym_cmd_identifier_token38] = ACTIONS(968), + [aux_sym_cmd_identifier_token39] = ACTIONS(968), + [aux_sym_cmd_identifier_token40] = ACTIONS(968), + [anon_sym_def] = ACTIONS(968), + [anon_sym_export_DASHenv] = ACTIONS(968), + [anon_sym_extern] = ACTIONS(968), + [anon_sym_module] = ACTIONS(968), + [anon_sym_use] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(968), + [anon_sym_COMMA] = ACTIONS(968), + [anon_sym_DOLLAR] = ACTIONS(968), + [anon_sym_error] = ACTIONS(968), + [anon_sym_DASH2] = ACTIONS(968), + [anon_sym_break] = ACTIONS(968), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_for] = ACTIONS(968), + [anon_sym_in2] = ACTIONS(968), + [anon_sym_loop] = ACTIONS(968), + [anon_sym_make] = ACTIONS(968), + [anon_sym_while] = ACTIONS(968), + [anon_sym_do] = ACTIONS(968), + [anon_sym_if] = ACTIONS(968), + [anon_sym_else] = ACTIONS(968), + [anon_sym_match] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym_try] = ACTIONS(968), + [anon_sym_catch] = ACTIONS(968), + [anon_sym_return] = ACTIONS(968), + [anon_sym_source] = ACTIONS(968), + [anon_sym_source_DASHenv] = ACTIONS(968), + [anon_sym_hide] = ACTIONS(968), + [anon_sym_hide_DASHenv] = ACTIONS(968), + [anon_sym_overlay] = ACTIONS(968), + [anon_sym_as] = ACTIONS(968), + [anon_sym_QMARK2] = ACTIONS(1800), + [anon_sym_PLUS2] = ACTIONS(968), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(968), + [anon_sym_DOT_DOT2] = ACTIONS(968), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(970), + [anon_sym_DOT_DOT_LT2] = ACTIONS(970), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(968), + [aux_sym__val_number_decimal_token1] = ACTIONS(968), + [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), + [aux_sym__val_number_token4] = ACTIONS(968), + [aux_sym__val_number_token5] = ACTIONS(968), + [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(968), + [sym__entry_separator] = ACTIONS(970), + [anon_sym_register] = ACTIONS(968), + [anon_sym_DOT2] = ACTIONS(968), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(968), + [sym_raw_string_begin] = ACTIONS(970), }, [377] = { [sym_comment] = STATE(377), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1701), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_error] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_in2] = 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_hide] = ACTIONS(1701), + [anon_sym_hide_DASHenv] = ACTIONS(1701), + [anon_sym_overlay] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1701), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1701), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(1804), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1701), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1701), + [aux_sym__val_number_decimal_token3] = ACTIONS(1701), + [aux_sym__val_number_decimal_token4] = ACTIONS(1701), + [aux_sym__val_number_token1] = ACTIONS(1701), + [aux_sym__val_number_token2] = ACTIONS(1701), + [aux_sym__val_number_token3] = ACTIONS(1701), + [aux_sym__val_number_token4] = ACTIONS(1701), + [aux_sym__val_number_token5] = ACTIONS(1701), + [aux_sym__val_number_token6] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1701), + [sym__str_single_quotes] = ACTIONS(1701), + [sym__str_back_ticks] = ACTIONS(1701), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1701), + [sym__entry_separator] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1703), + }, + [378] = { + [sym_comment] = STATE(378), + [anon_sym_export] = ACTIONS(946), + [anon_sym_alias] = ACTIONS(946), + [anon_sym_let] = ACTIONS(946), + [anon_sym_let_DASHenv] = ACTIONS(946), + [anon_sym_mut] = ACTIONS(946), + [anon_sym_const] = ACTIONS(946), + [aux_sym_cmd_identifier_token1] = ACTIONS(946), + [aux_sym_cmd_identifier_token2] = ACTIONS(946), + [aux_sym_cmd_identifier_token3] = ACTIONS(946), + [aux_sym_cmd_identifier_token4] = ACTIONS(946), + [aux_sym_cmd_identifier_token5] = ACTIONS(946), + [aux_sym_cmd_identifier_token6] = ACTIONS(946), + [aux_sym_cmd_identifier_token7] = ACTIONS(946), + [aux_sym_cmd_identifier_token8] = ACTIONS(946), + [aux_sym_cmd_identifier_token9] = ACTIONS(946), + [aux_sym_cmd_identifier_token10] = ACTIONS(946), + [aux_sym_cmd_identifier_token11] = ACTIONS(946), + [aux_sym_cmd_identifier_token12] = ACTIONS(946), + [aux_sym_cmd_identifier_token13] = ACTIONS(946), + [aux_sym_cmd_identifier_token14] = ACTIONS(946), + [aux_sym_cmd_identifier_token15] = ACTIONS(946), + [aux_sym_cmd_identifier_token16] = ACTIONS(946), + [aux_sym_cmd_identifier_token17] = ACTIONS(946), + [aux_sym_cmd_identifier_token18] = ACTIONS(946), + [aux_sym_cmd_identifier_token19] = ACTIONS(946), + [aux_sym_cmd_identifier_token20] = ACTIONS(946), + [aux_sym_cmd_identifier_token21] = ACTIONS(946), + [aux_sym_cmd_identifier_token22] = ACTIONS(946), + [aux_sym_cmd_identifier_token23] = ACTIONS(946), + [aux_sym_cmd_identifier_token24] = ACTIONS(946), + [aux_sym_cmd_identifier_token25] = ACTIONS(946), + [aux_sym_cmd_identifier_token26] = ACTIONS(946), + [aux_sym_cmd_identifier_token27] = ACTIONS(946), + [aux_sym_cmd_identifier_token28] = ACTIONS(946), + [aux_sym_cmd_identifier_token29] = ACTIONS(946), + [aux_sym_cmd_identifier_token30] = ACTIONS(946), + [aux_sym_cmd_identifier_token31] = ACTIONS(946), + [aux_sym_cmd_identifier_token32] = ACTIONS(946), + [aux_sym_cmd_identifier_token33] = ACTIONS(946), + [aux_sym_cmd_identifier_token34] = ACTIONS(946), + [aux_sym_cmd_identifier_token35] = ACTIONS(946), + [aux_sym_cmd_identifier_token36] = ACTIONS(946), + [aux_sym_cmd_identifier_token37] = ACTIONS(946), + [aux_sym_cmd_identifier_token38] = ACTIONS(946), + [aux_sym_cmd_identifier_token39] = ACTIONS(946), + [aux_sym_cmd_identifier_token40] = ACTIONS(946), + [anon_sym_def] = ACTIONS(946), + [anon_sym_export_DASHenv] = ACTIONS(946), + [anon_sym_extern] = ACTIONS(946), + [anon_sym_module] = ACTIONS(946), + [anon_sym_use] = ACTIONS(946), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_COMMA] = ACTIONS(946), + [anon_sym_DOLLAR] = ACTIONS(946), + [anon_sym_error] = ACTIONS(946), + [anon_sym_DASH2] = ACTIONS(946), + [anon_sym_break] = ACTIONS(946), + [anon_sym_continue] = ACTIONS(946), + [anon_sym_for] = ACTIONS(946), + [anon_sym_in2] = ACTIONS(946), + [anon_sym_loop] = ACTIONS(946), + [anon_sym_make] = ACTIONS(946), + [anon_sym_while] = ACTIONS(946), + [anon_sym_do] = ACTIONS(946), + [anon_sym_if] = ACTIONS(946), + [anon_sym_else] = ACTIONS(946), + [anon_sym_match] = ACTIONS(946), + [anon_sym_RBRACE] = ACTIONS(946), + [anon_sym_try] = ACTIONS(946), + [anon_sym_catch] = ACTIONS(946), + [anon_sym_return] = ACTIONS(946), + [anon_sym_source] = ACTIONS(946), + [anon_sym_source_DASHenv] = ACTIONS(946), + [anon_sym_hide] = ACTIONS(946), + [anon_sym_hide_DASHenv] = ACTIONS(946), + [anon_sym_overlay] = ACTIONS(946), + [anon_sym_as] = ACTIONS(946), + [anon_sym_QMARK2] = ACTIONS(946), + [anon_sym_PLUS2] = ACTIONS(946), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(946), + [anon_sym_DOT_DOT2] = ACTIONS(946), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(948), + [anon_sym_DOT_DOT_LT2] = ACTIONS(948), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(946), + [aux_sym__val_number_decimal_token1] = ACTIONS(946), + [aux_sym__val_number_decimal_token2] = ACTIONS(946), + [aux_sym__val_number_decimal_token3] = ACTIONS(946), + [aux_sym__val_number_decimal_token4] = ACTIONS(946), + [aux_sym__val_number_token1] = ACTIONS(946), + [aux_sym__val_number_token2] = ACTIONS(946), + [aux_sym__val_number_token3] = ACTIONS(946), + [aux_sym__val_number_token4] = ACTIONS(946), + [aux_sym__val_number_token5] = ACTIONS(946), + [aux_sym__val_number_token6] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(946), + [sym__str_single_quotes] = ACTIONS(946), + [sym__str_back_ticks] = ACTIONS(946), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(946), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(946), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(946), + [sym__entry_separator] = ACTIONS(948), + [anon_sym_register] = ACTIONS(946), + [anon_sym_DOT2] = ACTIONS(946), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(948), + }, + [379] = { + [sym_comment] = STATE(379), + [anon_sym_export] = ACTIONS(956), + [anon_sym_alias] = ACTIONS(956), + [anon_sym_let] = ACTIONS(956), + [anon_sym_let_DASHenv] = ACTIONS(956), + [anon_sym_mut] = ACTIONS(956), + [anon_sym_const] = ACTIONS(956), + [aux_sym_cmd_identifier_token1] = ACTIONS(956), + [aux_sym_cmd_identifier_token2] = ACTIONS(956), + [aux_sym_cmd_identifier_token3] = ACTIONS(956), + [aux_sym_cmd_identifier_token4] = ACTIONS(956), + [aux_sym_cmd_identifier_token5] = ACTIONS(956), + [aux_sym_cmd_identifier_token6] = ACTIONS(956), + [aux_sym_cmd_identifier_token7] = ACTIONS(956), + [aux_sym_cmd_identifier_token8] = ACTIONS(956), + [aux_sym_cmd_identifier_token9] = ACTIONS(956), + [aux_sym_cmd_identifier_token10] = ACTIONS(956), + [aux_sym_cmd_identifier_token11] = ACTIONS(956), + [aux_sym_cmd_identifier_token12] = ACTIONS(956), + [aux_sym_cmd_identifier_token13] = ACTIONS(956), + [aux_sym_cmd_identifier_token14] = ACTIONS(956), + [aux_sym_cmd_identifier_token15] = ACTIONS(956), + [aux_sym_cmd_identifier_token16] = ACTIONS(956), + [aux_sym_cmd_identifier_token17] = ACTIONS(956), + [aux_sym_cmd_identifier_token18] = ACTIONS(956), + [aux_sym_cmd_identifier_token19] = ACTIONS(956), + [aux_sym_cmd_identifier_token20] = ACTIONS(956), + [aux_sym_cmd_identifier_token21] = ACTIONS(956), + [aux_sym_cmd_identifier_token22] = ACTIONS(956), + [aux_sym_cmd_identifier_token23] = ACTIONS(956), + [aux_sym_cmd_identifier_token24] = ACTIONS(956), + [aux_sym_cmd_identifier_token25] = ACTIONS(956), + [aux_sym_cmd_identifier_token26] = ACTIONS(956), + [aux_sym_cmd_identifier_token27] = ACTIONS(956), + [aux_sym_cmd_identifier_token28] = ACTIONS(956), + [aux_sym_cmd_identifier_token29] = ACTIONS(956), + [aux_sym_cmd_identifier_token30] = ACTIONS(956), + [aux_sym_cmd_identifier_token31] = ACTIONS(956), + [aux_sym_cmd_identifier_token32] = ACTIONS(956), + [aux_sym_cmd_identifier_token33] = ACTIONS(956), + [aux_sym_cmd_identifier_token34] = ACTIONS(956), + [aux_sym_cmd_identifier_token35] = ACTIONS(956), + [aux_sym_cmd_identifier_token36] = ACTIONS(956), + [aux_sym_cmd_identifier_token37] = ACTIONS(956), + [aux_sym_cmd_identifier_token38] = ACTIONS(956), + [aux_sym_cmd_identifier_token39] = ACTIONS(956), + [aux_sym_cmd_identifier_token40] = ACTIONS(956), + [anon_sym_def] = ACTIONS(956), + [anon_sym_export_DASHenv] = ACTIONS(956), + [anon_sym_extern] = ACTIONS(956), + [anon_sym_module] = ACTIONS(956), + [anon_sym_use] = ACTIONS(956), + [anon_sym_LPAREN] = ACTIONS(956), + [anon_sym_COMMA] = ACTIONS(956), + [anon_sym_DOLLAR] = ACTIONS(956), + [anon_sym_error] = ACTIONS(956), + [anon_sym_DASH2] = ACTIONS(956), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(956), + [anon_sym_for] = ACTIONS(956), + [anon_sym_in2] = ACTIONS(956), + [anon_sym_loop] = ACTIONS(956), + [anon_sym_make] = ACTIONS(956), + [anon_sym_while] = ACTIONS(956), + [anon_sym_do] = ACTIONS(956), + [anon_sym_if] = ACTIONS(956), + [anon_sym_else] = ACTIONS(956), + [anon_sym_match] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(956), + [anon_sym_try] = ACTIONS(956), + [anon_sym_catch] = ACTIONS(956), + [anon_sym_return] = ACTIONS(956), + [anon_sym_source] = ACTIONS(956), + [anon_sym_source_DASHenv] = ACTIONS(956), + [anon_sym_hide] = ACTIONS(956), + [anon_sym_hide_DASHenv] = ACTIONS(956), + [anon_sym_overlay] = ACTIONS(956), + [anon_sym_as] = ACTIONS(956), + [anon_sym_QMARK2] = ACTIONS(956), + [anon_sym_PLUS2] = ACTIONS(956), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(956), + [anon_sym_DOT_DOT2] = ACTIONS(956), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(958), + [anon_sym_DOT_DOT_LT2] = ACTIONS(958), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(956), + [aux_sym__val_number_decimal_token1] = ACTIONS(956), + [aux_sym__val_number_decimal_token2] = ACTIONS(956), + [aux_sym__val_number_decimal_token3] = ACTIONS(956), + [aux_sym__val_number_decimal_token4] = ACTIONS(956), + [aux_sym__val_number_token1] = ACTIONS(956), + [aux_sym__val_number_token2] = ACTIONS(956), + [aux_sym__val_number_token3] = ACTIONS(956), + [aux_sym__val_number_token4] = ACTIONS(956), + [aux_sym__val_number_token5] = ACTIONS(956), + [aux_sym__val_number_token6] = ACTIONS(956), + [anon_sym_DQUOTE] = ACTIONS(956), + [sym__str_single_quotes] = ACTIONS(956), + [sym__str_back_ticks] = ACTIONS(956), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(956), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(956), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(956), + [sym__entry_separator] = ACTIONS(958), + [anon_sym_register] = ACTIONS(956), + [anon_sym_DOT2] = ACTIONS(956), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(958), + }, + [380] = { + [sym_comment] = STATE(380), + [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(1703), + [aux_sym_cmd_identifier_token3] = ACTIONS(1703), + [aux_sym_cmd_identifier_token4] = ACTIONS(1703), + [aux_sym_cmd_identifier_token5] = ACTIONS(1703), + [aux_sym_cmd_identifier_token6] = ACTIONS(1703), + [aux_sym_cmd_identifier_token7] = ACTIONS(1703), + [aux_sym_cmd_identifier_token8] = ACTIONS(1701), + [aux_sym_cmd_identifier_token9] = ACTIONS(1701), + [aux_sym_cmd_identifier_token10] = ACTIONS(1703), + [aux_sym_cmd_identifier_token11] = ACTIONS(1703), + [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(1703), + [aux_sym_cmd_identifier_token17] = ACTIONS(1703), + [aux_sym_cmd_identifier_token18] = ACTIONS(1703), + [aux_sym_cmd_identifier_token19] = ACTIONS(1703), + [aux_sym_cmd_identifier_token20] = ACTIONS(1703), + [aux_sym_cmd_identifier_token21] = ACTIONS(1703), + [aux_sym_cmd_identifier_token22] = ACTIONS(1703), + [aux_sym_cmd_identifier_token23] = ACTIONS(1703), + [aux_sym_cmd_identifier_token24] = ACTIONS(1703), + [aux_sym_cmd_identifier_token25] = ACTIONS(1703), + [aux_sym_cmd_identifier_token26] = ACTIONS(1703), + [aux_sym_cmd_identifier_token27] = ACTIONS(1703), + [aux_sym_cmd_identifier_token28] = ACTIONS(1703), + [aux_sym_cmd_identifier_token29] = ACTIONS(1703), + [aux_sym_cmd_identifier_token30] = ACTIONS(1703), + [aux_sym_cmd_identifier_token31] = ACTIONS(1703), + [aux_sym_cmd_identifier_token32] = ACTIONS(1703), + [aux_sym_cmd_identifier_token33] = ACTIONS(1703), + [aux_sym_cmd_identifier_token34] = ACTIONS(1701), + [aux_sym_cmd_identifier_token35] = ACTIONS(1703), + [aux_sym_cmd_identifier_token36] = ACTIONS(1703), + [aux_sym_cmd_identifier_token37] = ACTIONS(1703), + [aux_sym_cmd_identifier_token38] = ACTIONS(1701), + [aux_sym_cmd_identifier_token39] = ACTIONS(1703), + [aux_sym_cmd_identifier_token40] = ACTIONS(1703), + [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_COMMA] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_error] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_in2] = 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(1703), + [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_hide] = ACTIONS(1701), + [anon_sym_hide_DASHenv] = ACTIONS(1701), + [anon_sym_overlay] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1703), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(1774), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1701), + [aux_sym__val_number_token5] = ACTIONS(1701), + [aux_sym__val_number_token6] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1701), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1703), + }, + [381] = { + [sym_comment] = STATE(381), + [anon_sym_export] = ACTIONS(1806), + [anon_sym_alias] = ACTIONS(1806), + [anon_sym_let] = ACTIONS(1806), + [anon_sym_let_DASHenv] = ACTIONS(1806), + [anon_sym_mut] = ACTIONS(1806), + [anon_sym_const] = ACTIONS(1806), + [aux_sym_cmd_identifier_token1] = ACTIONS(1806), + [aux_sym_cmd_identifier_token2] = ACTIONS(1806), + [aux_sym_cmd_identifier_token3] = ACTIONS(1806), + [aux_sym_cmd_identifier_token4] = ACTIONS(1806), + [aux_sym_cmd_identifier_token5] = ACTIONS(1806), + [aux_sym_cmd_identifier_token6] = ACTIONS(1806), + [aux_sym_cmd_identifier_token7] = ACTIONS(1806), + [aux_sym_cmd_identifier_token8] = ACTIONS(1806), + [aux_sym_cmd_identifier_token9] = ACTIONS(1806), + [aux_sym_cmd_identifier_token10] = ACTIONS(1806), + [aux_sym_cmd_identifier_token11] = ACTIONS(1806), + [aux_sym_cmd_identifier_token12] = ACTIONS(1806), + [aux_sym_cmd_identifier_token13] = ACTIONS(1806), + [aux_sym_cmd_identifier_token14] = ACTIONS(1806), + [aux_sym_cmd_identifier_token15] = ACTIONS(1806), + [aux_sym_cmd_identifier_token16] = ACTIONS(1806), + [aux_sym_cmd_identifier_token17] = ACTIONS(1806), + [aux_sym_cmd_identifier_token18] = ACTIONS(1806), + [aux_sym_cmd_identifier_token19] = ACTIONS(1806), + [aux_sym_cmd_identifier_token20] = ACTIONS(1806), + [aux_sym_cmd_identifier_token21] = ACTIONS(1806), + [aux_sym_cmd_identifier_token22] = ACTIONS(1806), + [aux_sym_cmd_identifier_token23] = ACTIONS(1806), + [aux_sym_cmd_identifier_token24] = ACTIONS(1806), + [aux_sym_cmd_identifier_token25] = ACTIONS(1806), + [aux_sym_cmd_identifier_token26] = ACTIONS(1806), + [aux_sym_cmd_identifier_token27] = ACTIONS(1806), + [aux_sym_cmd_identifier_token28] = ACTIONS(1806), + [aux_sym_cmd_identifier_token29] = ACTIONS(1806), + [aux_sym_cmd_identifier_token30] = ACTIONS(1806), + [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(1806), + [aux_sym_cmd_identifier_token37] = ACTIONS(1806), + [aux_sym_cmd_identifier_token38] = ACTIONS(1806), + [aux_sym_cmd_identifier_token39] = ACTIONS(1806), + [aux_sym_cmd_identifier_token40] = ACTIONS(1806), + [anon_sym_def] = ACTIONS(1806), + [anon_sym_export_DASHenv] = ACTIONS(1806), + [anon_sym_extern] = ACTIONS(1806), + [anon_sym_module] = ACTIONS(1806), + [anon_sym_use] = ACTIONS(1806), + [anon_sym_LPAREN] = ACTIONS(1806), + [anon_sym_COMMA] = ACTIONS(1806), + [anon_sym_DOLLAR] = ACTIONS(1806), + [anon_sym_error] = ACTIONS(1806), + [anon_sym_DASH2] = ACTIONS(1806), + [anon_sym_break] = ACTIONS(1806), + [anon_sym_continue] = ACTIONS(1806), + [anon_sym_for] = ACTIONS(1806), + [anon_sym_in2] = ACTIONS(1806), + [anon_sym_loop] = ACTIONS(1806), + [anon_sym_make] = ACTIONS(1806), + [anon_sym_while] = ACTIONS(1806), + [anon_sym_do] = ACTIONS(1806), + [anon_sym_if] = ACTIONS(1806), + [anon_sym_else] = ACTIONS(1806), + [anon_sym_match] = ACTIONS(1806), + [anon_sym_RBRACE] = ACTIONS(1806), + [anon_sym_try] = ACTIONS(1806), + [anon_sym_catch] = ACTIONS(1806), + [anon_sym_return] = ACTIONS(1806), + [anon_sym_source] = ACTIONS(1806), + [anon_sym_source_DASHenv] = ACTIONS(1806), + [anon_sym_hide] = ACTIONS(1806), + [anon_sym_hide_DASHenv] = ACTIONS(1806), + [anon_sym_overlay] = ACTIONS(1806), + [anon_sym_as] = ACTIONS(1806), + [anon_sym_LPAREN2] = ACTIONS(1808), + [anon_sym_PLUS2] = ACTIONS(1806), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1806), + [anon_sym_DOT_DOT2] = ACTIONS(1810), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1812), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1812), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1806), + [aux_sym__val_number_decimal_token1] = ACTIONS(1806), + [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), + [aux_sym__val_number_token4] = ACTIONS(1806), + [aux_sym__val_number_token5] = ACTIONS(1806), + [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(1806), + [sym__entry_separator] = ACTIONS(1814), + [anon_sym_register] = ACTIONS(1806), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1457), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1814), + }, + [382] = { + [sym_comment] = STATE(382), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1816), + [anon_sym_DOLLAR] = ACTIONS(1816), + [anon_sym_error] = ACTIONS(1816), + [anon_sym_DASH2] = ACTIONS(1816), + [anon_sym_break] = ACTIONS(1816), + [anon_sym_continue] = ACTIONS(1816), + [anon_sym_for] = ACTIONS(1816), + [anon_sym_in2] = 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_hide] = ACTIONS(1816), + [anon_sym_hide_DASHenv] = ACTIONS(1816), + [anon_sym_overlay] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1816), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_PLUS2] = ACTIONS(1816), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1816), + [anon_sym_DOT_DOT2] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1816), + [aux_sym__val_number_decimal_token1] = ACTIONS(1816), + [aux_sym__val_number_decimal_token2] = 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), + [aux_sym__val_number_token4] = ACTIONS(1816), + [aux_sym__val_number_token5] = ACTIONS(1816), + [aux_sym__val_number_token6] = ACTIONS(1816), + [anon_sym_DQUOTE] = ACTIONS(1816), + [sym__str_single_quotes] = ACTIONS(1816), + [sym__str_back_ticks] = ACTIONS(1816), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1816), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1816), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1816), + [sym__entry_separator] = ACTIONS(1824), + [anon_sym_register] = ACTIONS(1816), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1826), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1824), + }, + [383] = { + [sym_path] = STATE(445), + [sym_comment] = STATE(383), + [aux_sym_cell_path_repeat1] = STATE(383), + [anon_sym_export] = ACTIONS(935), + [anon_sym_alias] = ACTIONS(935), + [anon_sym_let] = ACTIONS(935), + [anon_sym_let_DASHenv] = ACTIONS(935), + [anon_sym_mut] = ACTIONS(935), + [anon_sym_const] = ACTIONS(935), + [aux_sym_cmd_identifier_token1] = ACTIONS(935), + [aux_sym_cmd_identifier_token2] = ACTIONS(937), + [aux_sym_cmd_identifier_token3] = ACTIONS(937), + [aux_sym_cmd_identifier_token4] = ACTIONS(937), + [aux_sym_cmd_identifier_token5] = ACTIONS(937), + [aux_sym_cmd_identifier_token6] = ACTIONS(937), + [aux_sym_cmd_identifier_token7] = ACTIONS(937), + [aux_sym_cmd_identifier_token8] = ACTIONS(935), + [aux_sym_cmd_identifier_token9] = ACTIONS(935), + [aux_sym_cmd_identifier_token10] = ACTIONS(937), + [aux_sym_cmd_identifier_token11] = ACTIONS(937), + [aux_sym_cmd_identifier_token12] = ACTIONS(935), + [aux_sym_cmd_identifier_token13] = ACTIONS(935), + [aux_sym_cmd_identifier_token14] = ACTIONS(935), + [aux_sym_cmd_identifier_token15] = ACTIONS(935), + [aux_sym_cmd_identifier_token16] = ACTIONS(937), + [aux_sym_cmd_identifier_token17] = ACTIONS(937), + [aux_sym_cmd_identifier_token18] = ACTIONS(937), + [aux_sym_cmd_identifier_token19] = ACTIONS(937), + [aux_sym_cmd_identifier_token20] = ACTIONS(937), + [aux_sym_cmd_identifier_token21] = ACTIONS(937), + [aux_sym_cmd_identifier_token22] = ACTIONS(937), + [aux_sym_cmd_identifier_token23] = ACTIONS(937), + [aux_sym_cmd_identifier_token24] = ACTIONS(937), + [aux_sym_cmd_identifier_token25] = ACTIONS(937), + [aux_sym_cmd_identifier_token26] = ACTIONS(937), + [aux_sym_cmd_identifier_token27] = ACTIONS(937), + [aux_sym_cmd_identifier_token28] = ACTIONS(937), + [aux_sym_cmd_identifier_token29] = ACTIONS(937), + [aux_sym_cmd_identifier_token30] = ACTIONS(937), + [aux_sym_cmd_identifier_token31] = ACTIONS(937), + [aux_sym_cmd_identifier_token32] = ACTIONS(937), + [aux_sym_cmd_identifier_token33] = ACTIONS(937), + [aux_sym_cmd_identifier_token34] = ACTIONS(935), + [aux_sym_cmd_identifier_token35] = ACTIONS(937), + [aux_sym_cmd_identifier_token36] = ACTIONS(937), + [aux_sym_cmd_identifier_token37] = ACTIONS(937), + [aux_sym_cmd_identifier_token38] = ACTIONS(935), + [aux_sym_cmd_identifier_token39] = ACTIONS(937), + [aux_sym_cmd_identifier_token40] = ACTIONS(937), + [anon_sym_def] = ACTIONS(935), + [anon_sym_export_DASHenv] = ACTIONS(935), + [anon_sym_extern] = ACTIONS(935), + [anon_sym_module] = ACTIONS(935), + [anon_sym_use] = ACTIONS(935), + [anon_sym_LPAREN] = ACTIONS(937), + [anon_sym_COMMA] = ACTIONS(937), + [anon_sym_DOLLAR] = ACTIONS(935), + [anon_sym_error] = ACTIONS(935), + [anon_sym_DASH2] = ACTIONS(935), + [anon_sym_break] = ACTIONS(935), + [anon_sym_continue] = ACTIONS(935), + [anon_sym_for] = ACTIONS(935), + [anon_sym_in2] = ACTIONS(935), + [anon_sym_loop] = ACTIONS(935), + [anon_sym_make] = ACTIONS(935), + [anon_sym_while] = ACTIONS(935), + [anon_sym_do] = ACTIONS(935), + [anon_sym_if] = ACTIONS(935), + [anon_sym_else] = ACTIONS(935), + [anon_sym_match] = ACTIONS(935), + [anon_sym_RBRACE] = ACTIONS(937), + [anon_sym_try] = ACTIONS(935), + [anon_sym_catch] = ACTIONS(935), + [anon_sym_return] = ACTIONS(935), + [anon_sym_source] = ACTIONS(935), + [anon_sym_source_DASHenv] = ACTIONS(935), + [anon_sym_hide] = ACTIONS(935), + [anon_sym_hide_DASHenv] = ACTIONS(935), + [anon_sym_overlay] = ACTIONS(935), + [anon_sym_as] = ACTIONS(935), + [anon_sym_PLUS2] = ACTIONS(935), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(937), + [anon_sym_DOT_DOT2] = ACTIONS(935), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(937), + [anon_sym_DOT_DOT_LT2] = ACTIONS(937), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(937), + [aux_sym__val_number_decimal_token1] = ACTIONS(935), + [aux_sym__val_number_decimal_token2] = ACTIONS(937), + [aux_sym__val_number_decimal_token3] = ACTIONS(937), + [aux_sym__val_number_decimal_token4] = ACTIONS(937), + [aux_sym__val_number_token1] = ACTIONS(937), + [aux_sym__val_number_token2] = ACTIONS(937), + [aux_sym__val_number_token3] = ACTIONS(937), + [aux_sym__val_number_token4] = ACTIONS(935), + [aux_sym__val_number_token5] = ACTIONS(935), + [aux_sym__val_number_token6] = ACTIONS(935), + [anon_sym_DQUOTE] = ACTIONS(937), + [sym__str_single_quotes] = ACTIONS(937), + [sym__str_back_ticks] = ACTIONS(937), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(937), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(937), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(937), + [anon_sym_register] = ACTIONS(935), + [anon_sym_DOT2] = ACTIONS(1828), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(937), + }, + [384] = { + [sym_path] = STATE(445), + [sym_comment] = STATE(384), + [aux_sym_cell_path_repeat1] = STATE(383), + [anon_sym_export] = ACTIONS(942), + [anon_sym_alias] = ACTIONS(942), + [anon_sym_let] = ACTIONS(942), + [anon_sym_let_DASHenv] = ACTIONS(942), + [anon_sym_mut] = ACTIONS(942), + [anon_sym_const] = ACTIONS(942), + [aux_sym_cmd_identifier_token1] = ACTIONS(942), + [aux_sym_cmd_identifier_token2] = ACTIONS(944), + [aux_sym_cmd_identifier_token3] = ACTIONS(944), + [aux_sym_cmd_identifier_token4] = ACTIONS(944), + [aux_sym_cmd_identifier_token5] = ACTIONS(944), + [aux_sym_cmd_identifier_token6] = ACTIONS(944), + [aux_sym_cmd_identifier_token7] = ACTIONS(944), + [aux_sym_cmd_identifier_token8] = ACTIONS(942), + [aux_sym_cmd_identifier_token9] = ACTIONS(942), + [aux_sym_cmd_identifier_token10] = ACTIONS(944), + [aux_sym_cmd_identifier_token11] = ACTIONS(944), + [aux_sym_cmd_identifier_token12] = ACTIONS(942), + [aux_sym_cmd_identifier_token13] = ACTIONS(942), + [aux_sym_cmd_identifier_token14] = ACTIONS(942), + [aux_sym_cmd_identifier_token15] = ACTIONS(942), + [aux_sym_cmd_identifier_token16] = ACTIONS(944), + [aux_sym_cmd_identifier_token17] = ACTIONS(944), + [aux_sym_cmd_identifier_token18] = ACTIONS(944), + [aux_sym_cmd_identifier_token19] = ACTIONS(944), + [aux_sym_cmd_identifier_token20] = ACTIONS(944), + [aux_sym_cmd_identifier_token21] = ACTIONS(944), + [aux_sym_cmd_identifier_token22] = ACTIONS(944), + [aux_sym_cmd_identifier_token23] = ACTIONS(944), + [aux_sym_cmd_identifier_token24] = ACTIONS(944), + [aux_sym_cmd_identifier_token25] = ACTIONS(944), + [aux_sym_cmd_identifier_token26] = ACTIONS(944), + [aux_sym_cmd_identifier_token27] = ACTIONS(944), + [aux_sym_cmd_identifier_token28] = ACTIONS(944), + [aux_sym_cmd_identifier_token29] = ACTIONS(944), + [aux_sym_cmd_identifier_token30] = ACTIONS(944), + [aux_sym_cmd_identifier_token31] = ACTIONS(944), + [aux_sym_cmd_identifier_token32] = ACTIONS(944), + [aux_sym_cmd_identifier_token33] = ACTIONS(944), + [aux_sym_cmd_identifier_token34] = ACTIONS(942), + [aux_sym_cmd_identifier_token35] = ACTIONS(944), + [aux_sym_cmd_identifier_token36] = ACTIONS(944), + [aux_sym_cmd_identifier_token37] = ACTIONS(944), + [aux_sym_cmd_identifier_token38] = ACTIONS(942), + [aux_sym_cmd_identifier_token39] = ACTIONS(944), + [aux_sym_cmd_identifier_token40] = ACTIONS(944), + [anon_sym_def] = ACTIONS(942), + [anon_sym_export_DASHenv] = ACTIONS(942), + [anon_sym_extern] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [anon_sym_use] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(944), + [anon_sym_COMMA] = ACTIONS(944), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_error] = ACTIONS(942), + [anon_sym_DASH2] = ACTIONS(942), + [anon_sym_break] = ACTIONS(942), + [anon_sym_continue] = ACTIONS(942), + [anon_sym_for] = ACTIONS(942), + [anon_sym_in2] = ACTIONS(942), + [anon_sym_loop] = ACTIONS(942), + [anon_sym_make] = ACTIONS(942), + [anon_sym_while] = ACTIONS(942), + [anon_sym_do] = ACTIONS(942), + [anon_sym_if] = ACTIONS(942), + [anon_sym_else] = ACTIONS(942), + [anon_sym_match] = ACTIONS(942), + [anon_sym_RBRACE] = ACTIONS(944), + [anon_sym_try] = ACTIONS(942), + [anon_sym_catch] = ACTIONS(942), + [anon_sym_return] = ACTIONS(942), + [anon_sym_source] = ACTIONS(942), + [anon_sym_source_DASHenv] = ACTIONS(942), + [anon_sym_hide] = ACTIONS(942), + [anon_sym_hide_DASHenv] = ACTIONS(942), + [anon_sym_overlay] = ACTIONS(942), + [anon_sym_as] = ACTIONS(942), + [anon_sym_PLUS2] = ACTIONS(942), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(944), + [anon_sym_DOT_DOT2] = ACTIONS(942), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(944), + [anon_sym_DOT_DOT_LT2] = ACTIONS(944), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(944), + [aux_sym__val_number_decimal_token1] = ACTIONS(942), + [aux_sym__val_number_decimal_token2] = ACTIONS(944), + [aux_sym__val_number_decimal_token3] = ACTIONS(944), + [aux_sym__val_number_decimal_token4] = ACTIONS(944), + [aux_sym__val_number_token1] = ACTIONS(944), + [aux_sym__val_number_token2] = ACTIONS(944), + [aux_sym__val_number_token3] = ACTIONS(944), + [aux_sym__val_number_token4] = ACTIONS(942), + [aux_sym__val_number_token5] = ACTIONS(942), + [aux_sym__val_number_token6] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(944), + [sym__str_single_quotes] = ACTIONS(944), + [sym__str_back_ticks] = ACTIONS(944), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(944), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(944), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(944), + [anon_sym_register] = ACTIONS(942), + [anon_sym_DOT2] = ACTIONS(1761), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(944), + }, + [385] = { + [sym_comment] = STATE(385), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1701), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_error] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_in2] = 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_hide] = ACTIONS(1701), + [anon_sym_hide_DASHenv] = ACTIONS(1701), + [anon_sym_overlay] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1701), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = 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), + [aux_sym__val_number_decimal_token3] = ACTIONS(1701), + [aux_sym__val_number_decimal_token4] = ACTIONS(1701), + [aux_sym__val_number_token1] = ACTIONS(1701), + [aux_sym__val_number_token2] = ACTIONS(1701), + [aux_sym__val_number_token3] = ACTIONS(1701), + [aux_sym__val_number_token4] = ACTIONS(1701), + [aux_sym__val_number_token5] = ACTIONS(1701), + [aux_sym__val_number_token6] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1701), + [sym__str_single_quotes] = ACTIONS(1701), + [sym__str_back_ticks] = ACTIONS(1701), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1701), + [sym__entry_separator] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1701), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1703), + }, + [386] = { + [sym_comment] = STATE(386), [anon_sym_export] = ACTIONS(960), [anon_sym_alias] = ACTIONS(960), [anon_sym_let] = ACTIONS(960), @@ -123403,12 +124312,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(960), [anon_sym_source] = ACTIONS(960), [anon_sym_source_DASHenv] = ACTIONS(960), - [anon_sym_register] = ACTIONS(960), [anon_sym_hide] = ACTIONS(960), [anon_sym_hide_DASHenv] = ACTIONS(960), [anon_sym_overlay] = ACTIONS(960), [anon_sym_as] = ACTIONS(960), - [anon_sym_QMARK2] = ACTIONS(1830), + [anon_sym_QMARK2] = ACTIONS(960), [anon_sym_PLUS2] = ACTIONS(960), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(960), [anon_sym_DOT_DOT2] = ACTIONS(960), @@ -123432,1968 +124340,2602 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE] = ACTIONS(960), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(960), [sym__entry_separator] = ACTIONS(962), + [anon_sym_register] = ACTIONS(960), [anon_sym_DOT2] = ACTIONS(960), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(962), }, - [378] = { - [sym_path] = STATE(450), - [sym_comment] = STATE(378), - [aux_sym_cell_path_repeat1] = STATE(378), - [anon_sym_export] = ACTIONS(953), - [anon_sym_alias] = ACTIONS(953), - [anon_sym_let] = ACTIONS(953), - [anon_sym_let_DASHenv] = ACTIONS(953), - [anon_sym_mut] = ACTIONS(953), - [anon_sym_const] = ACTIONS(953), - [aux_sym_cmd_identifier_token1] = ACTIONS(953), - [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(953), - [aux_sym_cmd_identifier_token9] = ACTIONS(953), - [aux_sym_cmd_identifier_token10] = ACTIONS(955), - [aux_sym_cmd_identifier_token11] = ACTIONS(955), - [aux_sym_cmd_identifier_token12] = ACTIONS(953), - [aux_sym_cmd_identifier_token13] = ACTIONS(953), - [aux_sym_cmd_identifier_token14] = ACTIONS(953), - [aux_sym_cmd_identifier_token15] = ACTIONS(953), - [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(953), - [aux_sym_cmd_identifier_token35] = ACTIONS(955), - [aux_sym_cmd_identifier_token36] = ACTIONS(955), - [aux_sym_cmd_identifier_token37] = ACTIONS(955), - [aux_sym_cmd_identifier_token38] = ACTIONS(953), - [aux_sym_cmd_identifier_token39] = ACTIONS(955), - [aux_sym_cmd_identifier_token40] = ACTIONS(955), - [anon_sym_def] = ACTIONS(953), - [anon_sym_export_DASHenv] = ACTIONS(953), - [anon_sym_extern] = ACTIONS(953), - [anon_sym_module] = ACTIONS(953), - [anon_sym_use] = ACTIONS(953), - [anon_sym_LPAREN] = ACTIONS(955), - [anon_sym_COMMA] = ACTIONS(955), - [anon_sym_DOLLAR] = ACTIONS(953), - [anon_sym_error] = ACTIONS(953), - [anon_sym_DASH2] = ACTIONS(953), - [anon_sym_break] = ACTIONS(953), - [anon_sym_continue] = ACTIONS(953), - [anon_sym_for] = ACTIONS(953), - [anon_sym_in2] = ACTIONS(953), - [anon_sym_loop] = ACTIONS(953), - [anon_sym_make] = ACTIONS(953), - [anon_sym_while] = ACTIONS(953), - [anon_sym_do] = ACTIONS(953), - [anon_sym_if] = ACTIONS(953), - [anon_sym_else] = ACTIONS(953), - [anon_sym_match] = ACTIONS(953), - [anon_sym_RBRACE] = ACTIONS(955), - [anon_sym_try] = ACTIONS(953), - [anon_sym_catch] = ACTIONS(953), - [anon_sym_return] = ACTIONS(953), - [anon_sym_source] = ACTIONS(953), - [anon_sym_source_DASHenv] = ACTIONS(953), - [anon_sym_register] = ACTIONS(953), - [anon_sym_hide] = ACTIONS(953), - [anon_sym_hide_DASHenv] = ACTIONS(953), - [anon_sym_overlay] = ACTIONS(953), - [anon_sym_as] = ACTIONS(953), - [anon_sym_PLUS2] = ACTIONS(953), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(955), - [anon_sym_DOT_DOT2] = ACTIONS(953), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(955), - [anon_sym_DOT_DOT_LT2] = ACTIONS(955), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(955), - [aux_sym__val_number_decimal_token1] = ACTIONS(953), - [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), - [aux_sym__val_number_token4] = ACTIONS(953), - [aux_sym__val_number_token5] = ACTIONS(953), - [aux_sym__val_number_token6] = ACTIONS(953), - [anon_sym_DQUOTE] = ACTIONS(955), - [sym__str_single_quotes] = ACTIONS(955), - [sym__str_back_ticks] = ACTIONS(955), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(955), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(955), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(955), - [anon_sym_DOT2] = ACTIONS(1832), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(955), + [387] = { + [sym_comment] = STATE(387), + [anon_sym_export] = ACTIONS(950), + [anon_sym_alias] = ACTIONS(950), + [anon_sym_let] = ACTIONS(950), + [anon_sym_let_DASHenv] = ACTIONS(950), + [anon_sym_mut] = ACTIONS(950), + [anon_sym_const] = ACTIONS(950), + [aux_sym_cmd_identifier_token1] = ACTIONS(950), + [aux_sym_cmd_identifier_token2] = ACTIONS(952), + [aux_sym_cmd_identifier_token3] = ACTIONS(952), + [aux_sym_cmd_identifier_token4] = ACTIONS(952), + [aux_sym_cmd_identifier_token5] = ACTIONS(952), + [aux_sym_cmd_identifier_token6] = ACTIONS(952), + [aux_sym_cmd_identifier_token7] = ACTIONS(952), + [aux_sym_cmd_identifier_token8] = ACTIONS(950), + [aux_sym_cmd_identifier_token9] = ACTIONS(950), + [aux_sym_cmd_identifier_token10] = ACTIONS(952), + [aux_sym_cmd_identifier_token11] = ACTIONS(952), + [aux_sym_cmd_identifier_token12] = ACTIONS(950), + [aux_sym_cmd_identifier_token13] = ACTIONS(950), + [aux_sym_cmd_identifier_token14] = ACTIONS(950), + [aux_sym_cmd_identifier_token15] = ACTIONS(950), + [aux_sym_cmd_identifier_token16] = ACTIONS(952), + [aux_sym_cmd_identifier_token17] = ACTIONS(952), + [aux_sym_cmd_identifier_token18] = ACTIONS(952), + [aux_sym_cmd_identifier_token19] = ACTIONS(952), + [aux_sym_cmd_identifier_token20] = ACTIONS(952), + [aux_sym_cmd_identifier_token21] = ACTIONS(952), + [aux_sym_cmd_identifier_token22] = ACTIONS(952), + [aux_sym_cmd_identifier_token23] = ACTIONS(952), + [aux_sym_cmd_identifier_token24] = ACTIONS(952), + [aux_sym_cmd_identifier_token25] = ACTIONS(952), + [aux_sym_cmd_identifier_token26] = ACTIONS(952), + [aux_sym_cmd_identifier_token27] = ACTIONS(952), + [aux_sym_cmd_identifier_token28] = ACTIONS(952), + [aux_sym_cmd_identifier_token29] = ACTIONS(952), + [aux_sym_cmd_identifier_token30] = ACTIONS(952), + [aux_sym_cmd_identifier_token31] = ACTIONS(952), + [aux_sym_cmd_identifier_token32] = ACTIONS(952), + [aux_sym_cmd_identifier_token33] = ACTIONS(952), + [aux_sym_cmd_identifier_token34] = ACTIONS(950), + [aux_sym_cmd_identifier_token35] = ACTIONS(952), + [aux_sym_cmd_identifier_token36] = ACTIONS(952), + [aux_sym_cmd_identifier_token37] = ACTIONS(952), + [aux_sym_cmd_identifier_token38] = ACTIONS(950), + [aux_sym_cmd_identifier_token39] = ACTIONS(952), + [aux_sym_cmd_identifier_token40] = ACTIONS(952), + [anon_sym_def] = ACTIONS(950), + [anon_sym_export_DASHenv] = ACTIONS(950), + [anon_sym_extern] = ACTIONS(950), + [anon_sym_module] = ACTIONS(950), + [anon_sym_use] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(952), + [anon_sym_COMMA] = ACTIONS(952), + [anon_sym_DOLLAR] = ACTIONS(950), + [anon_sym_error] = ACTIONS(950), + [anon_sym_DASH2] = ACTIONS(950), + [anon_sym_break] = ACTIONS(950), + [anon_sym_continue] = ACTIONS(950), + [anon_sym_for] = ACTIONS(950), + [anon_sym_in2] = ACTIONS(950), + [anon_sym_loop] = ACTIONS(950), + [anon_sym_make] = ACTIONS(950), + [anon_sym_while] = ACTIONS(950), + [anon_sym_do] = ACTIONS(950), + [anon_sym_if] = ACTIONS(950), + [anon_sym_else] = ACTIONS(950), + [anon_sym_match] = ACTIONS(950), + [anon_sym_RBRACE] = ACTIONS(952), + [anon_sym_try] = ACTIONS(950), + [anon_sym_catch] = ACTIONS(950), + [anon_sym_return] = ACTIONS(950), + [anon_sym_source] = ACTIONS(950), + [anon_sym_source_DASHenv] = ACTIONS(950), + [anon_sym_hide] = ACTIONS(950), + [anon_sym_hide_DASHenv] = ACTIONS(950), + [anon_sym_overlay] = ACTIONS(950), + [anon_sym_as] = ACTIONS(950), + [anon_sym_QMARK2] = ACTIONS(1831), + [anon_sym_PLUS2] = ACTIONS(950), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(952), + [anon_sym_DOT_DOT2] = ACTIONS(950), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(952), + [anon_sym_DOT_DOT_LT2] = ACTIONS(952), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(952), + [aux_sym__val_number_decimal_token1] = ACTIONS(950), + [aux_sym__val_number_decimal_token2] = ACTIONS(952), + [aux_sym__val_number_decimal_token3] = ACTIONS(952), + [aux_sym__val_number_decimal_token4] = ACTIONS(952), + [aux_sym__val_number_token1] = ACTIONS(952), + [aux_sym__val_number_token2] = ACTIONS(952), + [aux_sym__val_number_token3] = ACTIONS(952), + [aux_sym__val_number_token4] = ACTIONS(950), + [aux_sym__val_number_token5] = ACTIONS(950), + [aux_sym__val_number_token6] = ACTIONS(950), + [anon_sym_DQUOTE] = ACTIONS(952), + [sym__str_single_quotes] = ACTIONS(952), + [sym__str_back_ticks] = ACTIONS(952), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(952), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(952), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(952), + [anon_sym_register] = ACTIONS(950), + [anon_sym_DOT2] = ACTIONS(950), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(952), }, - [379] = { - [sym_comment] = STATE(379), - [anon_sym_export] = ACTIONS(972), - [anon_sym_alias] = ACTIONS(972), - [anon_sym_let] = ACTIONS(972), - [anon_sym_let_DASHenv] = ACTIONS(972), - [anon_sym_mut] = ACTIONS(972), - [anon_sym_const] = ACTIONS(972), - [aux_sym_cmd_identifier_token1] = ACTIONS(972), - [aux_sym_cmd_identifier_token2] = ACTIONS(972), - [aux_sym_cmd_identifier_token3] = ACTIONS(972), - [aux_sym_cmd_identifier_token4] = ACTIONS(972), - [aux_sym_cmd_identifier_token5] = ACTIONS(972), - [aux_sym_cmd_identifier_token6] = ACTIONS(972), - [aux_sym_cmd_identifier_token7] = ACTIONS(972), - [aux_sym_cmd_identifier_token8] = ACTIONS(972), - [aux_sym_cmd_identifier_token9] = ACTIONS(972), - [aux_sym_cmd_identifier_token10] = ACTIONS(972), - [aux_sym_cmd_identifier_token11] = ACTIONS(972), - [aux_sym_cmd_identifier_token12] = ACTIONS(972), - [aux_sym_cmd_identifier_token13] = ACTIONS(972), - [aux_sym_cmd_identifier_token14] = ACTIONS(972), - [aux_sym_cmd_identifier_token15] = ACTIONS(972), - [aux_sym_cmd_identifier_token16] = ACTIONS(972), - [aux_sym_cmd_identifier_token17] = ACTIONS(972), - [aux_sym_cmd_identifier_token18] = ACTIONS(972), - [aux_sym_cmd_identifier_token19] = ACTIONS(972), - [aux_sym_cmd_identifier_token20] = ACTIONS(972), - [aux_sym_cmd_identifier_token21] = ACTIONS(972), - [aux_sym_cmd_identifier_token22] = ACTIONS(972), - [aux_sym_cmd_identifier_token23] = ACTIONS(972), - [aux_sym_cmd_identifier_token24] = ACTIONS(972), - [aux_sym_cmd_identifier_token25] = ACTIONS(972), - [aux_sym_cmd_identifier_token26] = ACTIONS(972), - [aux_sym_cmd_identifier_token27] = ACTIONS(972), - [aux_sym_cmd_identifier_token28] = ACTIONS(972), - [aux_sym_cmd_identifier_token29] = ACTIONS(972), - [aux_sym_cmd_identifier_token30] = ACTIONS(972), - [aux_sym_cmd_identifier_token31] = ACTIONS(972), - [aux_sym_cmd_identifier_token32] = ACTIONS(972), - [aux_sym_cmd_identifier_token33] = ACTIONS(972), - [aux_sym_cmd_identifier_token34] = ACTIONS(972), - [aux_sym_cmd_identifier_token35] = ACTIONS(972), - [aux_sym_cmd_identifier_token36] = ACTIONS(972), - [aux_sym_cmd_identifier_token37] = ACTIONS(972), - [aux_sym_cmd_identifier_token38] = ACTIONS(972), - [aux_sym_cmd_identifier_token39] = ACTIONS(972), - [aux_sym_cmd_identifier_token40] = ACTIONS(972), - [anon_sym_def] = ACTIONS(972), - [anon_sym_export_DASHenv] = ACTIONS(972), - [anon_sym_extern] = ACTIONS(972), - [anon_sym_module] = ACTIONS(972), - [anon_sym_use] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(972), - [anon_sym_COMMA] = ACTIONS(972), - [anon_sym_DOLLAR] = ACTIONS(972), - [anon_sym_error] = ACTIONS(972), - [anon_sym_DASH2] = ACTIONS(972), - [anon_sym_break] = ACTIONS(972), - [anon_sym_continue] = ACTIONS(972), - [anon_sym_for] = ACTIONS(972), - [anon_sym_in2] = ACTIONS(972), - [anon_sym_loop] = ACTIONS(972), - [anon_sym_make] = ACTIONS(972), - [anon_sym_while] = ACTIONS(972), - [anon_sym_do] = ACTIONS(972), - [anon_sym_if] = ACTIONS(972), - [anon_sym_else] = ACTIONS(972), - [anon_sym_match] = ACTIONS(972), - [anon_sym_RBRACE] = ACTIONS(972), - [anon_sym_try] = ACTIONS(972), - [anon_sym_catch] = ACTIONS(972), - [anon_sym_return] = ACTIONS(972), - [anon_sym_source] = ACTIONS(972), - [anon_sym_source_DASHenv] = ACTIONS(972), - [anon_sym_register] = ACTIONS(972), - [anon_sym_hide] = ACTIONS(972), - [anon_sym_hide_DASHenv] = ACTIONS(972), - [anon_sym_overlay] = ACTIONS(972), - [anon_sym_as] = ACTIONS(972), - [anon_sym_QMARK2] = ACTIONS(972), - [anon_sym_PLUS2] = ACTIONS(972), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(972), - [anon_sym_DOT_DOT2] = ACTIONS(972), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(974), - [anon_sym_DOT_DOT_LT2] = ACTIONS(974), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(972), - [aux_sym__val_number_decimal_token1] = ACTIONS(972), - [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), - [aux_sym__val_number_token4] = ACTIONS(972), - [aux_sym__val_number_token5] = ACTIONS(972), - [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(972), - [sym__entry_separator] = ACTIONS(974), - [anon_sym_DOT2] = ACTIONS(972), + [388] = { + [sym_comment] = STATE(388), + [anon_sym_export] = ACTIONS(956), + [anon_sym_alias] = ACTIONS(956), + [anon_sym_let] = ACTIONS(956), + [anon_sym_let_DASHenv] = ACTIONS(956), + [anon_sym_mut] = ACTIONS(956), + [anon_sym_const] = ACTIONS(956), + [aux_sym_cmd_identifier_token1] = ACTIONS(956), + [aux_sym_cmd_identifier_token2] = ACTIONS(958), + [aux_sym_cmd_identifier_token3] = ACTIONS(958), + [aux_sym_cmd_identifier_token4] = ACTIONS(958), + [aux_sym_cmd_identifier_token5] = ACTIONS(958), + [aux_sym_cmd_identifier_token6] = ACTIONS(958), + [aux_sym_cmd_identifier_token7] = ACTIONS(958), + [aux_sym_cmd_identifier_token8] = ACTIONS(956), + [aux_sym_cmd_identifier_token9] = ACTIONS(956), + [aux_sym_cmd_identifier_token10] = ACTIONS(958), + [aux_sym_cmd_identifier_token11] = ACTIONS(958), + [aux_sym_cmd_identifier_token12] = ACTIONS(956), + [aux_sym_cmd_identifier_token13] = ACTIONS(956), + [aux_sym_cmd_identifier_token14] = ACTIONS(956), + [aux_sym_cmd_identifier_token15] = ACTIONS(956), + [aux_sym_cmd_identifier_token16] = ACTIONS(958), + [aux_sym_cmd_identifier_token17] = ACTIONS(958), + [aux_sym_cmd_identifier_token18] = ACTIONS(958), + [aux_sym_cmd_identifier_token19] = ACTIONS(958), + [aux_sym_cmd_identifier_token20] = ACTIONS(958), + [aux_sym_cmd_identifier_token21] = ACTIONS(958), + [aux_sym_cmd_identifier_token22] = ACTIONS(958), + [aux_sym_cmd_identifier_token23] = ACTIONS(958), + [aux_sym_cmd_identifier_token24] = ACTIONS(958), + [aux_sym_cmd_identifier_token25] = ACTIONS(958), + [aux_sym_cmd_identifier_token26] = ACTIONS(958), + [aux_sym_cmd_identifier_token27] = ACTIONS(958), + [aux_sym_cmd_identifier_token28] = ACTIONS(958), + [aux_sym_cmd_identifier_token29] = ACTIONS(958), + [aux_sym_cmd_identifier_token30] = ACTIONS(958), + [aux_sym_cmd_identifier_token31] = ACTIONS(958), + [aux_sym_cmd_identifier_token32] = ACTIONS(958), + [aux_sym_cmd_identifier_token33] = ACTIONS(958), + [aux_sym_cmd_identifier_token34] = ACTIONS(956), + [aux_sym_cmd_identifier_token35] = ACTIONS(958), + [aux_sym_cmd_identifier_token36] = ACTIONS(958), + [aux_sym_cmd_identifier_token37] = ACTIONS(958), + [aux_sym_cmd_identifier_token38] = ACTIONS(956), + [aux_sym_cmd_identifier_token39] = ACTIONS(958), + [aux_sym_cmd_identifier_token40] = ACTIONS(958), + [anon_sym_def] = ACTIONS(956), + [anon_sym_export_DASHenv] = ACTIONS(956), + [anon_sym_extern] = ACTIONS(956), + [anon_sym_module] = ACTIONS(956), + [anon_sym_use] = ACTIONS(956), + [anon_sym_LPAREN] = ACTIONS(958), + [anon_sym_COMMA] = ACTIONS(958), + [anon_sym_DOLLAR] = ACTIONS(956), + [anon_sym_error] = ACTIONS(956), + [anon_sym_DASH2] = ACTIONS(956), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(956), + [anon_sym_for] = ACTIONS(956), + [anon_sym_in2] = ACTIONS(956), + [anon_sym_loop] = ACTIONS(956), + [anon_sym_make] = ACTIONS(956), + [anon_sym_while] = ACTIONS(956), + [anon_sym_do] = ACTIONS(956), + [anon_sym_if] = ACTIONS(956), + [anon_sym_else] = ACTIONS(956), + [anon_sym_match] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(958), + [anon_sym_try] = ACTIONS(956), + [anon_sym_catch] = ACTIONS(956), + [anon_sym_return] = ACTIONS(956), + [anon_sym_source] = ACTIONS(956), + [anon_sym_source_DASHenv] = ACTIONS(956), + [anon_sym_hide] = ACTIONS(956), + [anon_sym_hide_DASHenv] = ACTIONS(956), + [anon_sym_overlay] = ACTIONS(956), + [anon_sym_as] = ACTIONS(956), + [anon_sym_QMARK2] = ACTIONS(958), + [anon_sym_PLUS2] = ACTIONS(956), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(958), + [anon_sym_DOT_DOT2] = ACTIONS(956), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(958), + [anon_sym_DOT_DOT_LT2] = ACTIONS(958), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(958), + [aux_sym__val_number_decimal_token1] = ACTIONS(956), + [aux_sym__val_number_decimal_token2] = ACTIONS(958), + [aux_sym__val_number_decimal_token3] = ACTIONS(958), + [aux_sym__val_number_decimal_token4] = ACTIONS(958), + [aux_sym__val_number_token1] = ACTIONS(958), + [aux_sym__val_number_token2] = ACTIONS(958), + [aux_sym__val_number_token3] = ACTIONS(958), + [aux_sym__val_number_token4] = ACTIONS(956), + [aux_sym__val_number_token5] = ACTIONS(956), + [aux_sym__val_number_token6] = ACTIONS(956), + [anon_sym_DQUOTE] = ACTIONS(958), + [sym__str_single_quotes] = ACTIONS(958), + [sym__str_back_ticks] = ACTIONS(958), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(958), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(958), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(958), + [anon_sym_register] = ACTIONS(956), + [anon_sym_DOT2] = ACTIONS(956), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(958), + }, + [389] = { + [sym_comment] = STATE(389), + [anon_sym_export] = ACTIONS(960), + [anon_sym_alias] = ACTIONS(960), + [anon_sym_let] = ACTIONS(960), + [anon_sym_let_DASHenv] = ACTIONS(960), + [anon_sym_mut] = ACTIONS(960), + [anon_sym_const] = ACTIONS(960), + [aux_sym_cmd_identifier_token1] = ACTIONS(960), + [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(960), + [aux_sym_cmd_identifier_token9] = ACTIONS(960), + [aux_sym_cmd_identifier_token10] = ACTIONS(962), + [aux_sym_cmd_identifier_token11] = ACTIONS(962), + [aux_sym_cmd_identifier_token12] = ACTIONS(960), + [aux_sym_cmd_identifier_token13] = ACTIONS(960), + [aux_sym_cmd_identifier_token14] = ACTIONS(960), + [aux_sym_cmd_identifier_token15] = ACTIONS(960), + [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(960), + [aux_sym_cmd_identifier_token35] = ACTIONS(962), + [aux_sym_cmd_identifier_token36] = ACTIONS(962), + [aux_sym_cmd_identifier_token37] = ACTIONS(962), + [aux_sym_cmd_identifier_token38] = ACTIONS(960), + [aux_sym_cmd_identifier_token39] = ACTIONS(962), + [aux_sym_cmd_identifier_token40] = ACTIONS(962), + [anon_sym_def] = ACTIONS(960), + [anon_sym_export_DASHenv] = ACTIONS(960), + [anon_sym_extern] = ACTIONS(960), + [anon_sym_module] = ACTIONS(960), + [anon_sym_use] = ACTIONS(960), + [anon_sym_LPAREN] = ACTIONS(962), + [anon_sym_COMMA] = ACTIONS(962), + [anon_sym_DOLLAR] = ACTIONS(960), + [anon_sym_error] = ACTIONS(960), + [anon_sym_DASH2] = ACTIONS(960), + [anon_sym_break] = ACTIONS(960), + [anon_sym_continue] = ACTIONS(960), + [anon_sym_for] = ACTIONS(960), + [anon_sym_in2] = ACTIONS(960), + [anon_sym_loop] = ACTIONS(960), + [anon_sym_make] = ACTIONS(960), + [anon_sym_while] = ACTIONS(960), + [anon_sym_do] = ACTIONS(960), + [anon_sym_if] = ACTIONS(960), + [anon_sym_else] = ACTIONS(960), + [anon_sym_match] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(962), + [anon_sym_try] = ACTIONS(960), + [anon_sym_catch] = ACTIONS(960), + [anon_sym_return] = ACTIONS(960), + [anon_sym_source] = ACTIONS(960), + [anon_sym_source_DASHenv] = ACTIONS(960), + [anon_sym_hide] = ACTIONS(960), + [anon_sym_hide_DASHenv] = ACTIONS(960), + [anon_sym_overlay] = ACTIONS(960), + [anon_sym_as] = ACTIONS(960), + [anon_sym_QMARK2] = ACTIONS(962), + [anon_sym_PLUS2] = ACTIONS(960), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(962), + [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(962), + [aux_sym__val_number_decimal_token1] = ACTIONS(960), + [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), + [aux_sym__val_number_token4] = ACTIONS(960), + [aux_sym__val_number_token5] = ACTIONS(960), + [aux_sym__val_number_token6] = ACTIONS(960), + [anon_sym_DQUOTE] = ACTIONS(962), + [sym__str_single_quotes] = ACTIONS(962), + [sym__str_back_ticks] = ACTIONS(962), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(962), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(962), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(962), + [anon_sym_register] = ACTIONS(960), + [anon_sym_DOT2] = ACTIONS(960), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(962), + }, + [390] = { + [sym_cell_path] = STATE(593), + [sym_path] = STATE(559), + [sym_comment] = STATE(390), + [aux_sym_cell_path_repeat1] = STATE(446), + [anon_sym_export] = ACTIONS(1833), + [anon_sym_alias] = ACTIONS(1833), + [anon_sym_let] = ACTIONS(1833), + [anon_sym_let_DASHenv] = ACTIONS(1833), + [anon_sym_mut] = ACTIONS(1833), + [anon_sym_const] = ACTIONS(1833), + [aux_sym_cmd_identifier_token1] = ACTIONS(1833), + [aux_sym_cmd_identifier_token2] = ACTIONS(1833), + [aux_sym_cmd_identifier_token3] = ACTIONS(1833), + [aux_sym_cmd_identifier_token4] = ACTIONS(1833), + [aux_sym_cmd_identifier_token5] = ACTIONS(1833), + [aux_sym_cmd_identifier_token6] = ACTIONS(1833), + [aux_sym_cmd_identifier_token7] = ACTIONS(1833), + [aux_sym_cmd_identifier_token8] = ACTIONS(1833), + [aux_sym_cmd_identifier_token9] = ACTIONS(1833), + [aux_sym_cmd_identifier_token10] = ACTIONS(1833), + [aux_sym_cmd_identifier_token11] = ACTIONS(1833), + [aux_sym_cmd_identifier_token12] = ACTIONS(1833), + [aux_sym_cmd_identifier_token13] = ACTIONS(1833), + [aux_sym_cmd_identifier_token14] = ACTIONS(1833), + [aux_sym_cmd_identifier_token15] = ACTIONS(1833), + [aux_sym_cmd_identifier_token16] = ACTIONS(1833), + [aux_sym_cmd_identifier_token17] = ACTIONS(1833), + [aux_sym_cmd_identifier_token18] = ACTIONS(1833), + [aux_sym_cmd_identifier_token19] = ACTIONS(1833), + [aux_sym_cmd_identifier_token20] = ACTIONS(1833), + [aux_sym_cmd_identifier_token21] = ACTIONS(1833), + [aux_sym_cmd_identifier_token22] = ACTIONS(1833), + [aux_sym_cmd_identifier_token23] = ACTIONS(1833), + [aux_sym_cmd_identifier_token24] = ACTIONS(1833), + [aux_sym_cmd_identifier_token25] = ACTIONS(1833), + [aux_sym_cmd_identifier_token26] = ACTIONS(1833), + [aux_sym_cmd_identifier_token27] = ACTIONS(1833), + [aux_sym_cmd_identifier_token28] = ACTIONS(1833), + [aux_sym_cmd_identifier_token29] = ACTIONS(1833), + [aux_sym_cmd_identifier_token30] = ACTIONS(1833), + [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(1833), + [aux_sym_cmd_identifier_token37] = ACTIONS(1833), + [aux_sym_cmd_identifier_token38] = ACTIONS(1833), + [aux_sym_cmd_identifier_token39] = ACTIONS(1833), + [aux_sym_cmd_identifier_token40] = ACTIONS(1833), + [anon_sym_def] = ACTIONS(1833), + [anon_sym_export_DASHenv] = ACTIONS(1833), + [anon_sym_extern] = ACTIONS(1833), + [anon_sym_module] = ACTIONS(1833), + [anon_sym_use] = ACTIONS(1833), + [anon_sym_LPAREN] = ACTIONS(1833), + [anon_sym_COMMA] = ACTIONS(1833), + [anon_sym_DOLLAR] = ACTIONS(1833), + [anon_sym_error] = ACTIONS(1833), + [anon_sym_DASH2] = ACTIONS(1833), + [anon_sym_break] = ACTIONS(1833), + [anon_sym_continue] = ACTIONS(1833), + [anon_sym_for] = ACTIONS(1833), + [anon_sym_in2] = ACTIONS(1833), + [anon_sym_loop] = ACTIONS(1833), + [anon_sym_make] = ACTIONS(1833), + [anon_sym_while] = ACTIONS(1833), + [anon_sym_do] = ACTIONS(1833), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_else] = ACTIONS(1833), + [anon_sym_match] = ACTIONS(1833), + [anon_sym_RBRACE] = ACTIONS(1833), + [anon_sym_try] = ACTIONS(1833), + [anon_sym_catch] = ACTIONS(1833), + [anon_sym_return] = ACTIONS(1833), + [anon_sym_source] = ACTIONS(1833), + [anon_sym_source_DASHenv] = ACTIONS(1833), + [anon_sym_hide] = ACTIONS(1833), + [anon_sym_hide_DASHenv] = ACTIONS(1833), + [anon_sym_overlay] = ACTIONS(1833), + [anon_sym_as] = ACTIONS(1833), + [anon_sym_PLUS2] = ACTIONS(1833), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1833), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1833), + [aux_sym__val_number_decimal_token1] = ACTIONS(1833), + [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), + [aux_sym__val_number_token4] = ACTIONS(1833), + [aux_sym__val_number_token5] = ACTIONS(1833), + [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(1833), + [sym__entry_separator] = ACTIONS(1835), + [anon_sym_register] = ACTIONS(1833), + [anon_sym_DOT2] = ACTIONS(1837), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(974), + [sym_raw_string_begin] = ACTIONS(1835), }, - [380] = { - [sym_comment] = STATE(380), - [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), - [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(976), - [anon_sym_DOLLAR] = ACTIONS(976), - [anon_sym_error] = ACTIONS(976), - [anon_sym_DASH2] = ACTIONS(976), - [anon_sym_break] = ACTIONS(976), - [anon_sym_continue] = ACTIONS(976), - [anon_sym_for] = ACTIONS(976), - [anon_sym_in2] = 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_as] = ACTIONS(976), - [anon_sym_QMARK2] = ACTIONS(976), - [anon_sym_PLUS2] = ACTIONS(976), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(976), - [anon_sym_DOT_DOT2] = 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), - [aux_sym__val_number_token4] = ACTIONS(976), - [aux_sym__val_number_token5] = ACTIONS(976), - [aux_sym__val_number_token6] = ACTIONS(976), - [anon_sym_DQUOTE] = ACTIONS(976), - [sym__str_single_quotes] = ACTIONS(976), - [sym__str_back_ticks] = ACTIONS(976), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(976), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(976), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(976), - [sym__entry_separator] = ACTIONS(978), - [anon_sym_DOT2] = ACTIONS(976), + [391] = { + [sym_cell_path] = STATE(632), + [sym_path] = STATE(559), + [sym_comment] = STATE(391), + [aux_sym_cell_path_repeat1] = STATE(446), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1839), + [anon_sym_DOLLAR] = ACTIONS(1839), + [anon_sym_error] = ACTIONS(1839), + [anon_sym_DASH2] = ACTIONS(1839), + [anon_sym_break] = ACTIONS(1839), + [anon_sym_continue] = ACTIONS(1839), + [anon_sym_for] = ACTIONS(1839), + [anon_sym_in2] = 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_hide] = ACTIONS(1839), + [anon_sym_hide_DASHenv] = ACTIONS(1839), + [anon_sym_overlay] = ACTIONS(1839), + [anon_sym_as] = ACTIONS(1839), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(1839), + [aux_sym__val_number_token5] = ACTIONS(1839), + [aux_sym__val_number_token6] = ACTIONS(1839), + [anon_sym_DQUOTE] = ACTIONS(1839), + [sym__str_single_quotes] = ACTIONS(1839), + [sym__str_back_ticks] = ACTIONS(1839), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1839), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1839), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1839), + [sym__entry_separator] = ACTIONS(1841), + [anon_sym_register] = ACTIONS(1839), + [anon_sym_DOT2] = ACTIONS(1837), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(978), + [sym_raw_string_begin] = ACTIONS(1841), }, - [381] = { - [sym_comment] = STATE(381), - [anon_sym_export] = ACTIONS(984), - [anon_sym_alias] = ACTIONS(984), - [anon_sym_let] = ACTIONS(984), - [anon_sym_let_DASHenv] = ACTIONS(984), - [anon_sym_mut] = ACTIONS(984), - [anon_sym_const] = ACTIONS(984), - [aux_sym_cmd_identifier_token1] = ACTIONS(984), - [aux_sym_cmd_identifier_token2] = ACTIONS(984), - [aux_sym_cmd_identifier_token3] = ACTIONS(984), - [aux_sym_cmd_identifier_token4] = ACTIONS(984), - [aux_sym_cmd_identifier_token5] = ACTIONS(984), - [aux_sym_cmd_identifier_token6] = ACTIONS(984), - [aux_sym_cmd_identifier_token7] = ACTIONS(984), - [aux_sym_cmd_identifier_token8] = ACTIONS(984), - [aux_sym_cmd_identifier_token9] = ACTIONS(984), - [aux_sym_cmd_identifier_token10] = ACTIONS(984), - [aux_sym_cmd_identifier_token11] = ACTIONS(984), - [aux_sym_cmd_identifier_token12] = ACTIONS(984), - [aux_sym_cmd_identifier_token13] = ACTIONS(984), - [aux_sym_cmd_identifier_token14] = ACTIONS(984), - [aux_sym_cmd_identifier_token15] = ACTIONS(984), - [aux_sym_cmd_identifier_token16] = ACTIONS(984), - [aux_sym_cmd_identifier_token17] = ACTIONS(984), - [aux_sym_cmd_identifier_token18] = ACTIONS(984), - [aux_sym_cmd_identifier_token19] = ACTIONS(984), - [aux_sym_cmd_identifier_token20] = ACTIONS(984), - [aux_sym_cmd_identifier_token21] = ACTIONS(984), - [aux_sym_cmd_identifier_token22] = ACTIONS(984), - [aux_sym_cmd_identifier_token23] = ACTIONS(984), - [aux_sym_cmd_identifier_token24] = ACTIONS(984), - [aux_sym_cmd_identifier_token25] = ACTIONS(984), - [aux_sym_cmd_identifier_token26] = ACTIONS(984), - [aux_sym_cmd_identifier_token27] = ACTIONS(984), - [aux_sym_cmd_identifier_token28] = ACTIONS(984), - [aux_sym_cmd_identifier_token29] = ACTIONS(984), - [aux_sym_cmd_identifier_token30] = ACTIONS(984), - [aux_sym_cmd_identifier_token31] = ACTIONS(984), - [aux_sym_cmd_identifier_token32] = ACTIONS(984), - [aux_sym_cmd_identifier_token33] = ACTIONS(984), - [aux_sym_cmd_identifier_token34] = ACTIONS(984), - [aux_sym_cmd_identifier_token35] = ACTIONS(984), - [aux_sym_cmd_identifier_token36] = ACTIONS(984), - [aux_sym_cmd_identifier_token37] = ACTIONS(984), - [aux_sym_cmd_identifier_token38] = ACTIONS(984), - [aux_sym_cmd_identifier_token39] = ACTIONS(984), - [aux_sym_cmd_identifier_token40] = ACTIONS(984), - [anon_sym_def] = ACTIONS(984), - [anon_sym_export_DASHenv] = ACTIONS(984), - [anon_sym_extern] = ACTIONS(984), - [anon_sym_module] = ACTIONS(984), - [anon_sym_use] = ACTIONS(984), - [anon_sym_LPAREN] = ACTIONS(984), - [anon_sym_COMMA] = ACTIONS(984), - [anon_sym_DOLLAR] = ACTIONS(984), - [anon_sym_error] = ACTIONS(984), - [anon_sym_DASH2] = ACTIONS(984), - [anon_sym_break] = ACTIONS(984), - [anon_sym_continue] = ACTIONS(984), - [anon_sym_for] = ACTIONS(984), - [anon_sym_in2] = ACTIONS(984), - [anon_sym_loop] = ACTIONS(984), - [anon_sym_make] = ACTIONS(984), - [anon_sym_while] = ACTIONS(984), - [anon_sym_do] = ACTIONS(984), - [anon_sym_if] = ACTIONS(984), - [anon_sym_else] = ACTIONS(984), - [anon_sym_match] = ACTIONS(984), - [anon_sym_RBRACE] = ACTIONS(984), - [anon_sym_try] = ACTIONS(984), - [anon_sym_catch] = ACTIONS(984), - [anon_sym_return] = ACTIONS(984), - [anon_sym_source] = ACTIONS(984), - [anon_sym_source_DASHenv] = ACTIONS(984), - [anon_sym_register] = ACTIONS(984), - [anon_sym_hide] = ACTIONS(984), - [anon_sym_hide_DASHenv] = ACTIONS(984), - [anon_sym_overlay] = ACTIONS(984), - [anon_sym_as] = ACTIONS(984), - [anon_sym_QMARK2] = ACTIONS(984), - [anon_sym_PLUS2] = ACTIONS(984), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(984), - [anon_sym_DOT_DOT2] = ACTIONS(984), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), - [anon_sym_DOT_DOT_LT2] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(984), - [aux_sym__val_number_decimal_token1] = ACTIONS(984), - [aux_sym__val_number_decimal_token2] = ACTIONS(984), - [aux_sym__val_number_decimal_token3] = ACTIONS(984), - [aux_sym__val_number_decimal_token4] = ACTIONS(984), - [aux_sym__val_number_token1] = ACTIONS(984), - [aux_sym__val_number_token2] = ACTIONS(984), - [aux_sym__val_number_token3] = ACTIONS(984), - [aux_sym__val_number_token4] = ACTIONS(984), - [aux_sym__val_number_token5] = ACTIONS(984), - [aux_sym__val_number_token6] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(984), - [sym__str_single_quotes] = ACTIONS(984), - [sym__str_back_ticks] = ACTIONS(984), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(984), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(984), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(984), - [sym__entry_separator] = ACTIONS(986), - [anon_sym_DOT2] = ACTIONS(984), + [392] = { + [sym_comment] = STATE(392), + [anon_sym_export] = ACTIONS(964), + [anon_sym_alias] = ACTIONS(964), + [anon_sym_let] = ACTIONS(964), + [anon_sym_let_DASHenv] = ACTIONS(964), + [anon_sym_mut] = ACTIONS(964), + [anon_sym_const] = ACTIONS(964), + [aux_sym_cmd_identifier_token1] = ACTIONS(964), + [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(964), + [aux_sym_cmd_identifier_token9] = ACTIONS(964), + [aux_sym_cmd_identifier_token10] = ACTIONS(966), + [aux_sym_cmd_identifier_token11] = ACTIONS(966), + [aux_sym_cmd_identifier_token12] = ACTIONS(964), + [aux_sym_cmd_identifier_token13] = ACTIONS(964), + [aux_sym_cmd_identifier_token14] = ACTIONS(964), + [aux_sym_cmd_identifier_token15] = ACTIONS(964), + [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(964), + [aux_sym_cmd_identifier_token35] = ACTIONS(966), + [aux_sym_cmd_identifier_token36] = ACTIONS(966), + [aux_sym_cmd_identifier_token37] = ACTIONS(966), + [aux_sym_cmd_identifier_token38] = ACTIONS(964), + [aux_sym_cmd_identifier_token39] = ACTIONS(966), + [aux_sym_cmd_identifier_token40] = ACTIONS(966), + [anon_sym_def] = ACTIONS(964), + [anon_sym_export_DASHenv] = ACTIONS(964), + [anon_sym_extern] = ACTIONS(964), + [anon_sym_module] = ACTIONS(964), + [anon_sym_use] = ACTIONS(964), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_COMMA] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(964), + [anon_sym_error] = ACTIONS(964), + [anon_sym_DASH2] = ACTIONS(964), + [anon_sym_break] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_in2] = ACTIONS(964), + [anon_sym_loop] = ACTIONS(964), + [anon_sym_make] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [anon_sym_do] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_else] = ACTIONS(964), + [anon_sym_match] = ACTIONS(964), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_try] = ACTIONS(964), + [anon_sym_catch] = ACTIONS(964), + [anon_sym_return] = ACTIONS(964), + [anon_sym_source] = ACTIONS(964), + [anon_sym_source_DASHenv] = ACTIONS(964), + [anon_sym_hide] = ACTIONS(964), + [anon_sym_hide_DASHenv] = ACTIONS(964), + [anon_sym_overlay] = ACTIONS(964), + [anon_sym_as] = ACTIONS(964), + [anon_sym_QMARK2] = ACTIONS(966), + [anon_sym_PLUS2] = ACTIONS(964), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(966), + [anon_sym_DOT_DOT2] = ACTIONS(964), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(966), + [anon_sym_DOT_DOT_LT2] = ACTIONS(966), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(966), + [aux_sym__val_number_decimal_token1] = ACTIONS(964), + [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), + [aux_sym__val_number_token4] = ACTIONS(964), + [aux_sym__val_number_token5] = ACTIONS(964), + [aux_sym__val_number_token6] = ACTIONS(964), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym__str_single_quotes] = ACTIONS(966), + [sym__str_back_ticks] = ACTIONS(966), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(966), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(966), + [anon_sym_register] = ACTIONS(964), + [anon_sym_DOT2] = ACTIONS(964), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(966), + }, + [393] = { + [sym_comment] = STATE(393), + [anon_sym_export] = ACTIONS(946), + [anon_sym_alias] = ACTIONS(946), + [anon_sym_let] = ACTIONS(946), + [anon_sym_let_DASHenv] = ACTIONS(946), + [anon_sym_mut] = ACTIONS(946), + [anon_sym_const] = ACTIONS(946), + [aux_sym_cmd_identifier_token1] = ACTIONS(946), + [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(946), + [aux_sym_cmd_identifier_token9] = ACTIONS(946), + [aux_sym_cmd_identifier_token10] = ACTIONS(948), + [aux_sym_cmd_identifier_token11] = ACTIONS(948), + [aux_sym_cmd_identifier_token12] = ACTIONS(946), + [aux_sym_cmd_identifier_token13] = ACTIONS(946), + [aux_sym_cmd_identifier_token14] = ACTIONS(946), + [aux_sym_cmd_identifier_token15] = ACTIONS(946), + [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(946), + [aux_sym_cmd_identifier_token35] = ACTIONS(948), + [aux_sym_cmd_identifier_token36] = ACTIONS(948), + [aux_sym_cmd_identifier_token37] = ACTIONS(948), + [aux_sym_cmd_identifier_token38] = ACTIONS(946), + [aux_sym_cmd_identifier_token39] = ACTIONS(948), + [aux_sym_cmd_identifier_token40] = ACTIONS(948), + [anon_sym_def] = ACTIONS(946), + [anon_sym_export_DASHenv] = ACTIONS(946), + [anon_sym_extern] = ACTIONS(946), + [anon_sym_module] = ACTIONS(946), + [anon_sym_use] = ACTIONS(946), + [anon_sym_LPAREN] = ACTIONS(948), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_DOLLAR] = ACTIONS(946), + [anon_sym_error] = ACTIONS(946), + [anon_sym_DASH2] = ACTIONS(946), + [anon_sym_break] = ACTIONS(946), + [anon_sym_continue] = ACTIONS(946), + [anon_sym_for] = ACTIONS(946), + [anon_sym_in2] = ACTIONS(946), + [anon_sym_loop] = ACTIONS(946), + [anon_sym_make] = ACTIONS(946), + [anon_sym_while] = ACTIONS(946), + [anon_sym_do] = ACTIONS(946), + [anon_sym_if] = ACTIONS(946), + [anon_sym_else] = ACTIONS(946), + [anon_sym_match] = ACTIONS(946), + [anon_sym_RBRACE] = ACTIONS(948), + [anon_sym_try] = ACTIONS(946), + [anon_sym_catch] = ACTIONS(946), + [anon_sym_return] = ACTIONS(946), + [anon_sym_source] = ACTIONS(946), + [anon_sym_source_DASHenv] = ACTIONS(946), + [anon_sym_hide] = ACTIONS(946), + [anon_sym_hide_DASHenv] = ACTIONS(946), + [anon_sym_overlay] = ACTIONS(946), + [anon_sym_as] = ACTIONS(946), + [anon_sym_QMARK2] = ACTIONS(948), + [anon_sym_PLUS2] = ACTIONS(946), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(948), + [anon_sym_DOT_DOT2] = ACTIONS(946), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(948), + [anon_sym_DOT_DOT_LT2] = ACTIONS(948), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(948), + [aux_sym__val_number_decimal_token1] = ACTIONS(946), + [aux_sym__val_number_decimal_token2] = ACTIONS(948), + [aux_sym__val_number_decimal_token3] = ACTIONS(948), + [aux_sym__val_number_decimal_token4] = ACTIONS(948), + [aux_sym__val_number_token1] = ACTIONS(948), + [aux_sym__val_number_token2] = ACTIONS(948), + [aux_sym__val_number_token3] = ACTIONS(948), + [aux_sym__val_number_token4] = ACTIONS(946), + [aux_sym__val_number_token5] = ACTIONS(946), + [aux_sym__val_number_token6] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(948), + [sym__str_single_quotes] = ACTIONS(948), + [sym__str_back_ticks] = ACTIONS(948), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(948), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(948), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(948), + [anon_sym_register] = ACTIONS(946), + [anon_sym_DOT2] = ACTIONS(946), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(948), + }, + [394] = { + [sym_cell_path] = STATE(644), + [sym_path] = STATE(559), + [sym_comment] = STATE(394), + [aux_sym_cell_path_repeat1] = STATE(446), + [anon_sym_export] = ACTIONS(929), + [anon_sym_alias] = ACTIONS(929), + [anon_sym_let] = ACTIONS(929), + [anon_sym_let_DASHenv] = ACTIONS(929), + [anon_sym_mut] = ACTIONS(929), + [anon_sym_const] = ACTIONS(929), + [aux_sym_cmd_identifier_token1] = ACTIONS(929), + [aux_sym_cmd_identifier_token2] = ACTIONS(929), + [aux_sym_cmd_identifier_token3] = ACTIONS(929), + [aux_sym_cmd_identifier_token4] = ACTIONS(929), + [aux_sym_cmd_identifier_token5] = ACTIONS(929), + [aux_sym_cmd_identifier_token6] = ACTIONS(929), + [aux_sym_cmd_identifier_token7] = ACTIONS(929), + [aux_sym_cmd_identifier_token8] = ACTIONS(929), + [aux_sym_cmd_identifier_token9] = ACTIONS(929), + [aux_sym_cmd_identifier_token10] = ACTIONS(929), + [aux_sym_cmd_identifier_token11] = ACTIONS(929), + [aux_sym_cmd_identifier_token12] = ACTIONS(929), + [aux_sym_cmd_identifier_token13] = ACTIONS(929), + [aux_sym_cmd_identifier_token14] = ACTIONS(929), + [aux_sym_cmd_identifier_token15] = ACTIONS(929), + [aux_sym_cmd_identifier_token16] = ACTIONS(929), + [aux_sym_cmd_identifier_token17] = ACTIONS(929), + [aux_sym_cmd_identifier_token18] = ACTIONS(929), + [aux_sym_cmd_identifier_token19] = ACTIONS(929), + [aux_sym_cmd_identifier_token20] = ACTIONS(929), + [aux_sym_cmd_identifier_token21] = ACTIONS(929), + [aux_sym_cmd_identifier_token22] = ACTIONS(929), + [aux_sym_cmd_identifier_token23] = ACTIONS(929), + [aux_sym_cmd_identifier_token24] = ACTIONS(929), + [aux_sym_cmd_identifier_token25] = ACTIONS(929), + [aux_sym_cmd_identifier_token26] = ACTIONS(929), + [aux_sym_cmd_identifier_token27] = ACTIONS(929), + [aux_sym_cmd_identifier_token28] = ACTIONS(929), + [aux_sym_cmd_identifier_token29] = ACTIONS(929), + [aux_sym_cmd_identifier_token30] = ACTIONS(929), + [aux_sym_cmd_identifier_token31] = ACTIONS(929), + [aux_sym_cmd_identifier_token32] = ACTIONS(929), + [aux_sym_cmd_identifier_token33] = ACTIONS(929), + [aux_sym_cmd_identifier_token34] = ACTIONS(929), + [aux_sym_cmd_identifier_token35] = ACTIONS(929), + [aux_sym_cmd_identifier_token36] = ACTIONS(929), + [aux_sym_cmd_identifier_token37] = ACTIONS(929), + [aux_sym_cmd_identifier_token38] = ACTIONS(929), + [aux_sym_cmd_identifier_token39] = ACTIONS(929), + [aux_sym_cmd_identifier_token40] = ACTIONS(929), + [anon_sym_def] = ACTIONS(929), + [anon_sym_export_DASHenv] = ACTIONS(929), + [anon_sym_extern] = ACTIONS(929), + [anon_sym_module] = ACTIONS(929), + [anon_sym_use] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(929), + [anon_sym_COMMA] = ACTIONS(929), + [anon_sym_DOLLAR] = ACTIONS(929), + [anon_sym_error] = ACTIONS(929), + [anon_sym_DASH2] = ACTIONS(929), + [anon_sym_break] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(929), + [anon_sym_for] = ACTIONS(929), + [anon_sym_in2] = ACTIONS(929), + [anon_sym_loop] = ACTIONS(929), + [anon_sym_make] = ACTIONS(929), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(929), + [anon_sym_if] = ACTIONS(929), + [anon_sym_else] = ACTIONS(929), + [anon_sym_match] = ACTIONS(929), + [anon_sym_RBRACE] = ACTIONS(929), + [anon_sym_try] = ACTIONS(929), + [anon_sym_catch] = ACTIONS(929), + [anon_sym_return] = ACTIONS(929), + [anon_sym_source] = ACTIONS(929), + [anon_sym_source_DASHenv] = ACTIONS(929), + [anon_sym_hide] = ACTIONS(929), + [anon_sym_hide_DASHenv] = ACTIONS(929), + [anon_sym_overlay] = ACTIONS(929), + [anon_sym_as] = ACTIONS(929), + [anon_sym_PLUS2] = ACTIONS(929), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(929), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(929), + [aux_sym__val_number_decimal_token1] = ACTIONS(929), + [aux_sym__val_number_decimal_token2] = ACTIONS(929), + [aux_sym__val_number_decimal_token3] = ACTIONS(929), + [aux_sym__val_number_decimal_token4] = ACTIONS(929), + [aux_sym__val_number_token1] = ACTIONS(929), + [aux_sym__val_number_token2] = ACTIONS(929), + [aux_sym__val_number_token3] = ACTIONS(929), + [aux_sym__val_number_token4] = ACTIONS(929), + [aux_sym__val_number_token5] = ACTIONS(929), + [aux_sym__val_number_token6] = ACTIONS(929), + [anon_sym_DQUOTE] = ACTIONS(929), + [sym__str_single_quotes] = ACTIONS(929), + [sym__str_back_ticks] = ACTIONS(929), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(929), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(929), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(929), + [sym__entry_separator] = ACTIONS(931), + [anon_sym_register] = ACTIONS(929), + [anon_sym_DOT2] = ACTIONS(1837), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(986), + [sym_raw_string_begin] = ACTIONS(931), }, - [382] = { - [sym_comment] = STATE(382), - [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), - [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1835), - [anon_sym_DOLLAR] = ACTIONS(1835), - [anon_sym_error] = ACTIONS(1835), - [anon_sym_DASH2] = ACTIONS(1835), - [anon_sym_break] = ACTIONS(1835), - [anon_sym_continue] = ACTIONS(1835), - [anon_sym_for] = ACTIONS(1835), - [anon_sym_in2] = 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_as] = ACTIONS(1835), - [anon_sym_LPAREN2] = ACTIONS(1837), - [anon_sym_PLUS2] = ACTIONS(1835), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1835), - [anon_sym_DOT_DOT2] = ACTIONS(1835), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1837), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1837), - [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), - [aux_sym__val_number_token4] = ACTIONS(1835), - [aux_sym__val_number_token5] = ACTIONS(1835), - [aux_sym__val_number_token6] = ACTIONS(1835), - [anon_sym_DQUOTE] = ACTIONS(1835), - [sym__str_single_quotes] = ACTIONS(1835), - [sym__str_back_ticks] = ACTIONS(1835), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1835), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1835), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1835), - [sym__entry_separator] = ACTIONS(1837), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1835), + [395] = { + [sym_comment] = STATE(395), + [anon_sym_export] = ACTIONS(1693), + [anon_sym_alias] = ACTIONS(1693), + [anon_sym_let] = ACTIONS(1693), + [anon_sym_let_DASHenv] = ACTIONS(1693), + [anon_sym_mut] = ACTIONS(1693), + [anon_sym_const] = ACTIONS(1693), + [aux_sym_cmd_identifier_token1] = ACTIONS(1693), + [aux_sym_cmd_identifier_token2] = ACTIONS(1693), + [aux_sym_cmd_identifier_token3] = ACTIONS(1693), + [aux_sym_cmd_identifier_token4] = ACTIONS(1693), + [aux_sym_cmd_identifier_token5] = ACTIONS(1693), + [aux_sym_cmd_identifier_token6] = ACTIONS(1693), + [aux_sym_cmd_identifier_token7] = ACTIONS(1693), + [aux_sym_cmd_identifier_token8] = ACTIONS(1693), + [aux_sym_cmd_identifier_token9] = ACTIONS(1693), + [aux_sym_cmd_identifier_token10] = ACTIONS(1693), + [aux_sym_cmd_identifier_token11] = ACTIONS(1693), + [aux_sym_cmd_identifier_token12] = ACTIONS(1693), + [aux_sym_cmd_identifier_token13] = ACTIONS(1693), + [aux_sym_cmd_identifier_token14] = ACTIONS(1693), + [aux_sym_cmd_identifier_token15] = ACTIONS(1693), + [aux_sym_cmd_identifier_token16] = ACTIONS(1693), + [aux_sym_cmd_identifier_token17] = ACTIONS(1693), + [aux_sym_cmd_identifier_token18] = ACTIONS(1693), + [aux_sym_cmd_identifier_token19] = ACTIONS(1693), + [aux_sym_cmd_identifier_token20] = ACTIONS(1693), + [aux_sym_cmd_identifier_token21] = ACTIONS(1693), + [aux_sym_cmd_identifier_token22] = ACTIONS(1693), + [aux_sym_cmd_identifier_token23] = ACTIONS(1693), + [aux_sym_cmd_identifier_token24] = ACTIONS(1693), + [aux_sym_cmd_identifier_token25] = ACTIONS(1693), + [aux_sym_cmd_identifier_token26] = ACTIONS(1693), + [aux_sym_cmd_identifier_token27] = ACTIONS(1693), + [aux_sym_cmd_identifier_token28] = ACTIONS(1693), + [aux_sym_cmd_identifier_token29] = ACTIONS(1693), + [aux_sym_cmd_identifier_token30] = ACTIONS(1693), + [aux_sym_cmd_identifier_token31] = ACTIONS(1693), + [aux_sym_cmd_identifier_token32] = ACTIONS(1693), + [aux_sym_cmd_identifier_token33] = ACTIONS(1693), + [aux_sym_cmd_identifier_token34] = ACTIONS(1693), + [aux_sym_cmd_identifier_token35] = ACTIONS(1693), + [aux_sym_cmd_identifier_token36] = ACTIONS(1693), + [aux_sym_cmd_identifier_token37] = ACTIONS(1693), + [aux_sym_cmd_identifier_token38] = ACTIONS(1693), + [aux_sym_cmd_identifier_token39] = ACTIONS(1693), + [aux_sym_cmd_identifier_token40] = ACTIONS(1693), + [anon_sym_def] = ACTIONS(1693), + [anon_sym_export_DASHenv] = ACTIONS(1693), + [anon_sym_extern] = ACTIONS(1693), + [anon_sym_module] = ACTIONS(1693), + [anon_sym_use] = ACTIONS(1693), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_COMMA] = ACTIONS(1693), + [anon_sym_DOLLAR] = ACTIONS(1693), + [anon_sym_error] = ACTIONS(1693), + [anon_sym_DASH2] = ACTIONS(1693), + [anon_sym_break] = ACTIONS(1693), + [anon_sym_continue] = ACTIONS(1693), + [anon_sym_for] = ACTIONS(1693), + [anon_sym_in2] = ACTIONS(1693), + [anon_sym_loop] = ACTIONS(1693), + [anon_sym_make] = ACTIONS(1693), + [anon_sym_while] = ACTIONS(1693), + [anon_sym_do] = ACTIONS(1693), + [anon_sym_if] = ACTIONS(1693), + [anon_sym_else] = ACTIONS(1693), + [anon_sym_match] = ACTIONS(1693), + [anon_sym_RBRACE] = ACTIONS(1693), + [anon_sym_try] = ACTIONS(1693), + [anon_sym_catch] = ACTIONS(1693), + [anon_sym_return] = ACTIONS(1693), + [anon_sym_source] = ACTIONS(1693), + [anon_sym_source_DASHenv] = ACTIONS(1693), + [anon_sym_hide] = ACTIONS(1693), + [anon_sym_hide_DASHenv] = ACTIONS(1693), + [anon_sym_overlay] = ACTIONS(1693), + [anon_sym_as] = ACTIONS(1693), + [anon_sym_LPAREN2] = ACTIONS(1695), + [anon_sym_PLUS2] = ACTIONS(1693), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1693), + [aux_sym__immediate_decimal_token1] = ACTIONS(1843), + [aux_sym__immediate_decimal_token2] = ACTIONS(1845), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1693), + [aux_sym__val_number_decimal_token1] = ACTIONS(1693), + [aux_sym__val_number_decimal_token2] = ACTIONS(1693), + [aux_sym__val_number_decimal_token3] = ACTIONS(1693), + [aux_sym__val_number_decimal_token4] = ACTIONS(1693), + [aux_sym__val_number_token1] = ACTIONS(1693), + [aux_sym__val_number_token2] = ACTIONS(1693), + [aux_sym__val_number_token3] = ACTIONS(1693), + [aux_sym__val_number_token4] = ACTIONS(1693), + [aux_sym__val_number_token5] = ACTIONS(1693), + [aux_sym__val_number_token6] = ACTIONS(1693), + [anon_sym_DQUOTE] = ACTIONS(1693), + [sym__str_single_quotes] = ACTIONS(1693), + [sym__str_back_ticks] = ACTIONS(1693), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1693), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1693), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1693), + [sym__entry_separator] = ACTIONS(1695), + [anon_sym_register] = ACTIONS(1693), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1693), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1837), + [sym_raw_string_begin] = ACTIONS(1695), }, - [383] = { - [sym_comment] = STATE(383), - [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), - [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(980), - [anon_sym_DOLLAR] = ACTIONS(980), - [anon_sym_error] = ACTIONS(980), - [anon_sym_DASH2] = ACTIONS(980), - [anon_sym_break] = ACTIONS(980), - [anon_sym_continue] = ACTIONS(980), - [anon_sym_for] = ACTIONS(980), - [anon_sym_in2] = 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_as] = ACTIONS(980), - [anon_sym_QMARK2] = ACTIONS(980), - [anon_sym_PLUS2] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(980), - [anon_sym_DOT_DOT2] = 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), - [aux_sym__val_number_token4] = ACTIONS(980), - [aux_sym__val_number_token5] = ACTIONS(980), - [aux_sym__val_number_token6] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(980), - [sym__str_single_quotes] = ACTIONS(980), - [sym__str_back_ticks] = ACTIONS(980), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(980), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(980), - [sym__entry_separator] = ACTIONS(982), - [anon_sym_DOT2] = ACTIONS(980), + [396] = { + [sym_comment] = STATE(396), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1701), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_error] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_in2] = 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_hide] = ACTIONS(1701), + [anon_sym_hide_DASHenv] = ACTIONS(1701), + [anon_sym_overlay] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1701), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1701), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(1804), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1701), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1701), + [aux_sym__val_number_decimal_token3] = ACTIONS(1701), + [aux_sym__val_number_decimal_token4] = ACTIONS(1701), + [aux_sym__val_number_token1] = ACTIONS(1701), + [aux_sym__val_number_token2] = ACTIONS(1701), + [aux_sym__val_number_token3] = ACTIONS(1701), + [aux_sym__val_number_token4] = ACTIONS(1701), + [aux_sym__val_number_token5] = ACTIONS(1701), + [aux_sym__val_number_token6] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1701), + [sym__str_single_quotes] = ACTIONS(1701), + [sym__str_back_ticks] = ACTIONS(1701), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1701), + [sym__entry_separator] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1701), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(982), + [sym_raw_string_begin] = ACTIONS(1703), }, - [384] = { - [sym_comment] = STATE(384), - [anon_sym_export] = ACTIONS(1711), - [anon_sym_alias] = ACTIONS(1711), - [anon_sym_let] = ACTIONS(1711), - [anon_sym_let_DASHenv] = ACTIONS(1711), - [anon_sym_mut] = ACTIONS(1711), - [anon_sym_const] = ACTIONS(1711), - [aux_sym_cmd_identifier_token1] = ACTIONS(1711), - [aux_sym_cmd_identifier_token2] = ACTIONS(1711), - [aux_sym_cmd_identifier_token3] = ACTIONS(1711), - [aux_sym_cmd_identifier_token4] = ACTIONS(1711), - [aux_sym_cmd_identifier_token5] = ACTIONS(1711), - [aux_sym_cmd_identifier_token6] = ACTIONS(1711), - [aux_sym_cmd_identifier_token7] = ACTIONS(1711), - [aux_sym_cmd_identifier_token8] = ACTIONS(1711), - [aux_sym_cmd_identifier_token9] = ACTIONS(1711), - [aux_sym_cmd_identifier_token10] = ACTIONS(1711), - [aux_sym_cmd_identifier_token11] = ACTIONS(1711), - [aux_sym_cmd_identifier_token12] = ACTIONS(1711), - [aux_sym_cmd_identifier_token13] = ACTIONS(1711), - [aux_sym_cmd_identifier_token14] = ACTIONS(1711), - [aux_sym_cmd_identifier_token15] = ACTIONS(1711), - [aux_sym_cmd_identifier_token16] = ACTIONS(1711), - [aux_sym_cmd_identifier_token17] = ACTIONS(1711), - [aux_sym_cmd_identifier_token18] = ACTIONS(1711), - [aux_sym_cmd_identifier_token19] = ACTIONS(1711), - [aux_sym_cmd_identifier_token20] = ACTIONS(1711), - [aux_sym_cmd_identifier_token21] = ACTIONS(1711), - [aux_sym_cmd_identifier_token22] = ACTIONS(1711), - [aux_sym_cmd_identifier_token23] = ACTIONS(1711), - [aux_sym_cmd_identifier_token24] = ACTIONS(1711), - [aux_sym_cmd_identifier_token25] = ACTIONS(1711), - [aux_sym_cmd_identifier_token26] = ACTIONS(1711), - [aux_sym_cmd_identifier_token27] = ACTIONS(1711), - [aux_sym_cmd_identifier_token28] = ACTIONS(1711), - [aux_sym_cmd_identifier_token29] = ACTIONS(1711), - [aux_sym_cmd_identifier_token30] = ACTIONS(1711), - [aux_sym_cmd_identifier_token31] = ACTIONS(1711), - [aux_sym_cmd_identifier_token32] = ACTIONS(1711), - [aux_sym_cmd_identifier_token33] = ACTIONS(1711), - [aux_sym_cmd_identifier_token34] = ACTIONS(1711), - [aux_sym_cmd_identifier_token35] = ACTIONS(1711), - [aux_sym_cmd_identifier_token36] = ACTIONS(1711), - [aux_sym_cmd_identifier_token37] = ACTIONS(1711), - [aux_sym_cmd_identifier_token38] = ACTIONS(1711), - [aux_sym_cmd_identifier_token39] = ACTIONS(1711), - [aux_sym_cmd_identifier_token40] = ACTIONS(1711), - [anon_sym_def] = ACTIONS(1711), - [anon_sym_export_DASHenv] = ACTIONS(1711), - [anon_sym_extern] = ACTIONS(1711), - [anon_sym_module] = ACTIONS(1711), - [anon_sym_use] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_COMMA] = ACTIONS(1711), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_error] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_break] = ACTIONS(1711), - [anon_sym_continue] = ACTIONS(1711), - [anon_sym_for] = ACTIONS(1711), - [anon_sym_in2] = ACTIONS(1711), - [anon_sym_loop] = ACTIONS(1711), - [anon_sym_make] = ACTIONS(1711), - [anon_sym_while] = ACTIONS(1711), - [anon_sym_do] = ACTIONS(1711), - [anon_sym_if] = ACTIONS(1711), - [anon_sym_else] = ACTIONS(1711), - [anon_sym_match] = ACTIONS(1711), - [anon_sym_RBRACE] = ACTIONS(1711), - [anon_sym_try] = ACTIONS(1711), - [anon_sym_catch] = ACTIONS(1711), - [anon_sym_return] = ACTIONS(1711), - [anon_sym_source] = ACTIONS(1711), - [anon_sym_source_DASHenv] = ACTIONS(1711), - [anon_sym_register] = ACTIONS(1711), - [anon_sym_hide] = ACTIONS(1711), - [anon_sym_hide_DASHenv] = ACTIONS(1711), - [anon_sym_overlay] = ACTIONS(1711), - [anon_sym_as] = ACTIONS(1711), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1711), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [aux_sym__immediate_decimal_token1] = ACTIONS(1839), - [aux_sym__immediate_decimal_token2] = ACTIONS(1841), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1711), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1711), - [aux_sym__val_number_decimal_token3] = ACTIONS(1711), - [aux_sym__val_number_decimal_token4] = ACTIONS(1711), - [aux_sym__val_number_token1] = ACTIONS(1711), - [aux_sym__val_number_token2] = ACTIONS(1711), - [aux_sym__val_number_token3] = ACTIONS(1711), - [aux_sym__val_number_token4] = ACTIONS(1711), - [aux_sym__val_number_token5] = ACTIONS(1711), - [aux_sym__val_number_token6] = ACTIONS(1711), - [anon_sym_DQUOTE] = ACTIONS(1711), - [sym__str_single_quotes] = ACTIONS(1711), - [sym__str_back_ticks] = ACTIONS(1711), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1711), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1711), - [sym__entry_separator] = ACTIONS(1713), + [397] = { + [sym_cell_path] = STATE(591), + [sym_path] = STATE(559), + [sym_comment] = STATE(397), + [aux_sym_cell_path_repeat1] = STATE(446), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1847), + [anon_sym_DOLLAR] = ACTIONS(1847), + [anon_sym_error] = ACTIONS(1847), + [anon_sym_DASH2] = ACTIONS(1847), + [anon_sym_break] = ACTIONS(1847), + [anon_sym_continue] = ACTIONS(1847), + [anon_sym_for] = ACTIONS(1847), + [anon_sym_in2] = 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_hide] = ACTIONS(1847), + [anon_sym_hide_DASHenv] = ACTIONS(1847), + [anon_sym_overlay] = ACTIONS(1847), + [anon_sym_as] = ACTIONS(1847), + [anon_sym_PLUS2] = ACTIONS(1847), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1847), + [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), + [aux_sym__val_number_token4] = ACTIONS(1847), + [aux_sym__val_number_token5] = ACTIONS(1847), + [aux_sym__val_number_token6] = ACTIONS(1847), + [anon_sym_DQUOTE] = ACTIONS(1847), + [sym__str_single_quotes] = ACTIONS(1847), + [sym__str_back_ticks] = ACTIONS(1847), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1847), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1847), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1847), + [sym__entry_separator] = ACTIONS(1849), + [anon_sym_register] = ACTIONS(1847), + [anon_sym_DOT2] = ACTIONS(1837), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1713), + [sym_raw_string_begin] = ACTIONS(1849), }, - [385] = { - [sym_comment] = STATE(385), - [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(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(1755), - [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(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(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(1757), - [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(1755), - [aux_sym_cmd_identifier_token35] = ACTIONS(1757), - [aux_sym_cmd_identifier_token36] = ACTIONS(1757), - [aux_sym_cmd_identifier_token37] = ACTIONS(1757), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1757), - [aux_sym_cmd_identifier_token40] = ACTIONS(1757), - [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(1755), - [anon_sym_COMMA] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in2] = 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_RBRACE] = ACTIONS(1757), - [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_as] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_PLUS2] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1757), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(1791), - [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), - [aux_sym__val_number_token4] = ACTIONS(1755), - [aux_sym__val_number_token5] = ACTIONS(1755), - [aux_sym__val_number_token6] = ACTIONS(1755), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1757), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1757), + [398] = { + [sym_comment] = STATE(398), + [anon_sym_export] = ACTIONS(1766), + [anon_sym_alias] = ACTIONS(1766), + [anon_sym_let] = ACTIONS(1766), + [anon_sym_let_DASHenv] = ACTIONS(1766), + [anon_sym_mut] = ACTIONS(1766), + [anon_sym_const] = ACTIONS(1766), + [aux_sym_cmd_identifier_token1] = ACTIONS(1766), + [aux_sym_cmd_identifier_token2] = ACTIONS(1766), + [aux_sym_cmd_identifier_token3] = ACTIONS(1766), + [aux_sym_cmd_identifier_token4] = ACTIONS(1766), + [aux_sym_cmd_identifier_token5] = ACTIONS(1766), + [aux_sym_cmd_identifier_token6] = ACTIONS(1766), + [aux_sym_cmd_identifier_token7] = ACTIONS(1766), + [aux_sym_cmd_identifier_token8] = ACTIONS(1766), + [aux_sym_cmd_identifier_token9] = ACTIONS(1766), + [aux_sym_cmd_identifier_token10] = ACTIONS(1766), + [aux_sym_cmd_identifier_token11] = ACTIONS(1766), + [aux_sym_cmd_identifier_token12] = ACTIONS(1766), + [aux_sym_cmd_identifier_token13] = ACTIONS(1766), + [aux_sym_cmd_identifier_token14] = ACTIONS(1766), + [aux_sym_cmd_identifier_token15] = ACTIONS(1766), + [aux_sym_cmd_identifier_token16] = ACTIONS(1766), + [aux_sym_cmd_identifier_token17] = ACTIONS(1766), + [aux_sym_cmd_identifier_token18] = ACTIONS(1766), + [aux_sym_cmd_identifier_token19] = ACTIONS(1766), + [aux_sym_cmd_identifier_token20] = ACTIONS(1766), + [aux_sym_cmd_identifier_token21] = ACTIONS(1766), + [aux_sym_cmd_identifier_token22] = ACTIONS(1766), + [aux_sym_cmd_identifier_token23] = ACTIONS(1766), + [aux_sym_cmd_identifier_token24] = ACTIONS(1766), + [aux_sym_cmd_identifier_token25] = ACTIONS(1766), + [aux_sym_cmd_identifier_token26] = ACTIONS(1766), + [aux_sym_cmd_identifier_token27] = ACTIONS(1766), + [aux_sym_cmd_identifier_token28] = ACTIONS(1766), + [aux_sym_cmd_identifier_token29] = ACTIONS(1766), + [aux_sym_cmd_identifier_token30] = ACTIONS(1766), + [aux_sym_cmd_identifier_token31] = ACTIONS(1766), + [aux_sym_cmd_identifier_token32] = ACTIONS(1766), + [aux_sym_cmd_identifier_token33] = ACTIONS(1766), + [aux_sym_cmd_identifier_token34] = ACTIONS(1766), + [aux_sym_cmd_identifier_token35] = ACTIONS(1766), + [aux_sym_cmd_identifier_token36] = ACTIONS(1766), + [aux_sym_cmd_identifier_token37] = ACTIONS(1766), + [aux_sym_cmd_identifier_token38] = ACTIONS(1766), + [aux_sym_cmd_identifier_token39] = ACTIONS(1766), + [aux_sym_cmd_identifier_token40] = ACTIONS(1766), + [anon_sym_def] = ACTIONS(1766), + [anon_sym_export_DASHenv] = ACTIONS(1766), + [anon_sym_extern] = ACTIONS(1766), + [anon_sym_module] = ACTIONS(1766), + [anon_sym_use] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1766), + [anon_sym_COMMA] = ACTIONS(1766), + [anon_sym_DOLLAR] = ACTIONS(1766), + [anon_sym_error] = ACTIONS(1766), + [anon_sym_DASH2] = ACTIONS(1766), + [anon_sym_break] = ACTIONS(1766), + [anon_sym_continue] = ACTIONS(1766), + [anon_sym_for] = ACTIONS(1766), + [anon_sym_in2] = ACTIONS(1766), + [anon_sym_loop] = ACTIONS(1766), + [anon_sym_make] = ACTIONS(1766), + [anon_sym_while] = ACTIONS(1766), + [anon_sym_do] = ACTIONS(1766), + [anon_sym_if] = ACTIONS(1766), + [anon_sym_else] = ACTIONS(1766), + [anon_sym_match] = ACTIONS(1766), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_try] = ACTIONS(1766), + [anon_sym_catch] = ACTIONS(1766), + [anon_sym_return] = ACTIONS(1766), + [anon_sym_source] = ACTIONS(1766), + [anon_sym_source_DASHenv] = ACTIONS(1766), + [anon_sym_hide] = ACTIONS(1766), + [anon_sym_hide_DASHenv] = ACTIONS(1766), + [anon_sym_overlay] = ACTIONS(1766), + [anon_sym_as] = ACTIONS(1766), + [anon_sym_PLUS2] = ACTIONS(1766), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1766), + [anon_sym_DOT_DOT2] = ACTIONS(1766), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1768), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1768), + [aux_sym__immediate_decimal_token2] = ACTIONS(1851), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1766), + [aux_sym__val_number_decimal_token1] = ACTIONS(1766), + [aux_sym__val_number_decimal_token2] = ACTIONS(1766), + [aux_sym__val_number_decimal_token3] = ACTIONS(1766), + [aux_sym__val_number_decimal_token4] = ACTIONS(1766), + [aux_sym__val_number_token1] = ACTIONS(1766), + [aux_sym__val_number_token2] = ACTIONS(1766), + [aux_sym__val_number_token3] = ACTIONS(1766), + [aux_sym__val_number_token4] = ACTIONS(1766), + [aux_sym__val_number_token5] = ACTIONS(1766), + [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(1766), + [sym__entry_separator] = ACTIONS(1768), + [anon_sym_register] = ACTIONS(1766), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1768), }, - [386] = { - [sym_comment] = STATE(386), - [anon_sym_export] = ACTIONS(1783), - [anon_sym_alias] = ACTIONS(1783), - [anon_sym_let] = ACTIONS(1783), - [anon_sym_let_DASHenv] = ACTIONS(1783), - [anon_sym_mut] = ACTIONS(1783), - [anon_sym_const] = ACTIONS(1783), - [aux_sym_cmd_identifier_token1] = ACTIONS(1783), - [aux_sym_cmd_identifier_token2] = ACTIONS(1785), - [aux_sym_cmd_identifier_token3] = ACTIONS(1785), - [aux_sym_cmd_identifier_token4] = ACTIONS(1785), - [aux_sym_cmd_identifier_token5] = ACTIONS(1785), - [aux_sym_cmd_identifier_token6] = ACTIONS(1785), - [aux_sym_cmd_identifier_token7] = ACTIONS(1785), - [aux_sym_cmd_identifier_token8] = ACTIONS(1783), - [aux_sym_cmd_identifier_token9] = ACTIONS(1783), - [aux_sym_cmd_identifier_token10] = ACTIONS(1785), - [aux_sym_cmd_identifier_token11] = ACTIONS(1785), - [aux_sym_cmd_identifier_token12] = ACTIONS(1783), - [aux_sym_cmd_identifier_token13] = ACTIONS(1783), - [aux_sym_cmd_identifier_token14] = ACTIONS(1783), - [aux_sym_cmd_identifier_token15] = ACTIONS(1783), - [aux_sym_cmd_identifier_token16] = ACTIONS(1785), - [aux_sym_cmd_identifier_token17] = ACTIONS(1785), - [aux_sym_cmd_identifier_token18] = ACTIONS(1785), - [aux_sym_cmd_identifier_token19] = ACTIONS(1785), - [aux_sym_cmd_identifier_token20] = ACTIONS(1785), - [aux_sym_cmd_identifier_token21] = ACTIONS(1785), - [aux_sym_cmd_identifier_token22] = ACTIONS(1785), - [aux_sym_cmd_identifier_token23] = ACTIONS(1785), - [aux_sym_cmd_identifier_token24] = ACTIONS(1785), - [aux_sym_cmd_identifier_token25] = ACTIONS(1785), - [aux_sym_cmd_identifier_token26] = ACTIONS(1785), - [aux_sym_cmd_identifier_token27] = ACTIONS(1785), - [aux_sym_cmd_identifier_token28] = ACTIONS(1785), - [aux_sym_cmd_identifier_token29] = ACTIONS(1785), - [aux_sym_cmd_identifier_token30] = ACTIONS(1785), - [aux_sym_cmd_identifier_token31] = ACTIONS(1785), - [aux_sym_cmd_identifier_token32] = ACTIONS(1785), - [aux_sym_cmd_identifier_token33] = ACTIONS(1785), - [aux_sym_cmd_identifier_token34] = ACTIONS(1783), - [aux_sym_cmd_identifier_token35] = ACTIONS(1785), - [aux_sym_cmd_identifier_token36] = ACTIONS(1785), - [aux_sym_cmd_identifier_token37] = ACTIONS(1785), - [aux_sym_cmd_identifier_token38] = ACTIONS(1783), - [aux_sym_cmd_identifier_token39] = ACTIONS(1785), - [aux_sym_cmd_identifier_token40] = ACTIONS(1785), - [anon_sym_def] = ACTIONS(1783), - [anon_sym_export_DASHenv] = ACTIONS(1783), - [anon_sym_extern] = ACTIONS(1783), - [anon_sym_module] = ACTIONS(1783), - [anon_sym_use] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_COMMA] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_error] = ACTIONS(1783), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_break] = ACTIONS(1783), - [anon_sym_continue] = ACTIONS(1783), - [anon_sym_for] = ACTIONS(1783), - [anon_sym_in2] = ACTIONS(1783), - [anon_sym_loop] = ACTIONS(1783), - [anon_sym_make] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1783), - [anon_sym_do] = ACTIONS(1783), - [anon_sym_if] = ACTIONS(1783), - [anon_sym_else] = ACTIONS(1783), - [anon_sym_match] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_try] = ACTIONS(1783), - [anon_sym_catch] = ACTIONS(1783), - [anon_sym_return] = ACTIONS(1783), - [anon_sym_source] = ACTIONS(1783), - [anon_sym_source_DASHenv] = ACTIONS(1783), - [anon_sym_register] = ACTIONS(1783), - [anon_sym_hide] = ACTIONS(1783), - [anon_sym_hide_DASHenv] = ACTIONS(1783), - [anon_sym_overlay] = ACTIONS(1783), - [anon_sym_as] = ACTIONS(1783), - [anon_sym_LPAREN2] = ACTIONS(1785), - [anon_sym_PLUS2] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1785), - [anon_sym_DOT_DOT2] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1785), - [aux_sym__immediate_decimal_token2] = ACTIONS(1843), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(1785), - [aux_sym__val_number_token2] = ACTIONS(1785), - [aux_sym__val_number_token3] = ACTIONS(1785), - [aux_sym__val_number_token4] = ACTIONS(1783), - [aux_sym__val_number_token5] = ACTIONS(1783), - [aux_sym__val_number_token6] = ACTIONS(1783), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1785), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1785), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1783), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1785), + [399] = { + [sym_cell_path] = STATE(638), + [sym_path] = STATE(559), + [sym_comment] = STATE(399), + [aux_sym_cell_path_repeat1] = STATE(446), + [anon_sym_export] = ACTIONS(1853), + [anon_sym_alias] = ACTIONS(1853), + [anon_sym_let] = ACTIONS(1853), + [anon_sym_let_DASHenv] = ACTIONS(1853), + [anon_sym_mut] = ACTIONS(1853), + [anon_sym_const] = ACTIONS(1853), + [aux_sym_cmd_identifier_token1] = ACTIONS(1853), + [aux_sym_cmd_identifier_token2] = ACTIONS(1853), + [aux_sym_cmd_identifier_token3] = ACTIONS(1853), + [aux_sym_cmd_identifier_token4] = ACTIONS(1853), + [aux_sym_cmd_identifier_token5] = ACTIONS(1853), + [aux_sym_cmd_identifier_token6] = ACTIONS(1853), + [aux_sym_cmd_identifier_token7] = ACTIONS(1853), + [aux_sym_cmd_identifier_token8] = ACTIONS(1853), + [aux_sym_cmd_identifier_token9] = ACTIONS(1853), + [aux_sym_cmd_identifier_token10] = ACTIONS(1853), + [aux_sym_cmd_identifier_token11] = ACTIONS(1853), + [aux_sym_cmd_identifier_token12] = ACTIONS(1853), + [aux_sym_cmd_identifier_token13] = ACTIONS(1853), + [aux_sym_cmd_identifier_token14] = ACTIONS(1853), + [aux_sym_cmd_identifier_token15] = ACTIONS(1853), + [aux_sym_cmd_identifier_token16] = ACTIONS(1853), + [aux_sym_cmd_identifier_token17] = ACTIONS(1853), + [aux_sym_cmd_identifier_token18] = ACTIONS(1853), + [aux_sym_cmd_identifier_token19] = ACTIONS(1853), + [aux_sym_cmd_identifier_token20] = ACTIONS(1853), + [aux_sym_cmd_identifier_token21] = ACTIONS(1853), + [aux_sym_cmd_identifier_token22] = ACTIONS(1853), + [aux_sym_cmd_identifier_token23] = ACTIONS(1853), + [aux_sym_cmd_identifier_token24] = ACTIONS(1853), + [aux_sym_cmd_identifier_token25] = ACTIONS(1853), + [aux_sym_cmd_identifier_token26] = ACTIONS(1853), + [aux_sym_cmd_identifier_token27] = ACTIONS(1853), + [aux_sym_cmd_identifier_token28] = ACTIONS(1853), + [aux_sym_cmd_identifier_token29] = ACTIONS(1853), + [aux_sym_cmd_identifier_token30] = ACTIONS(1853), + [aux_sym_cmd_identifier_token31] = ACTIONS(1853), + [aux_sym_cmd_identifier_token32] = ACTIONS(1853), + [aux_sym_cmd_identifier_token33] = ACTIONS(1853), + [aux_sym_cmd_identifier_token34] = ACTIONS(1853), + [aux_sym_cmd_identifier_token35] = ACTIONS(1853), + [aux_sym_cmd_identifier_token36] = ACTIONS(1853), + [aux_sym_cmd_identifier_token37] = ACTIONS(1853), + [aux_sym_cmd_identifier_token38] = ACTIONS(1853), + [aux_sym_cmd_identifier_token39] = ACTIONS(1853), + [aux_sym_cmd_identifier_token40] = ACTIONS(1853), + [anon_sym_def] = ACTIONS(1853), + [anon_sym_export_DASHenv] = ACTIONS(1853), + [anon_sym_extern] = ACTIONS(1853), + [anon_sym_module] = ACTIONS(1853), + [anon_sym_use] = ACTIONS(1853), + [anon_sym_LPAREN] = ACTIONS(1853), + [anon_sym_COMMA] = ACTIONS(1853), + [anon_sym_DOLLAR] = ACTIONS(1853), + [anon_sym_error] = ACTIONS(1853), + [anon_sym_DASH2] = ACTIONS(1853), + [anon_sym_break] = ACTIONS(1853), + [anon_sym_continue] = ACTIONS(1853), + [anon_sym_for] = ACTIONS(1853), + [anon_sym_in2] = ACTIONS(1853), + [anon_sym_loop] = ACTIONS(1853), + [anon_sym_make] = ACTIONS(1853), + [anon_sym_while] = ACTIONS(1853), + [anon_sym_do] = ACTIONS(1853), + [anon_sym_if] = ACTIONS(1853), + [anon_sym_else] = ACTIONS(1853), + [anon_sym_match] = ACTIONS(1853), + [anon_sym_RBRACE] = ACTIONS(1853), + [anon_sym_try] = ACTIONS(1853), + [anon_sym_catch] = ACTIONS(1853), + [anon_sym_return] = ACTIONS(1853), + [anon_sym_source] = ACTIONS(1853), + [anon_sym_source_DASHenv] = ACTIONS(1853), + [anon_sym_hide] = ACTIONS(1853), + [anon_sym_hide_DASHenv] = ACTIONS(1853), + [anon_sym_overlay] = ACTIONS(1853), + [anon_sym_as] = ACTIONS(1853), + [anon_sym_PLUS2] = ACTIONS(1853), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1853), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1853), + [aux_sym__val_number_decimal_token1] = ACTIONS(1853), + [aux_sym__val_number_decimal_token2] = ACTIONS(1853), + [aux_sym__val_number_decimal_token3] = ACTIONS(1853), + [aux_sym__val_number_decimal_token4] = ACTIONS(1853), + [aux_sym__val_number_token1] = ACTIONS(1853), + [aux_sym__val_number_token2] = ACTIONS(1853), + [aux_sym__val_number_token3] = ACTIONS(1853), + [aux_sym__val_number_token4] = ACTIONS(1853), + [aux_sym__val_number_token5] = ACTIONS(1853), + [aux_sym__val_number_token6] = ACTIONS(1853), + [anon_sym_DQUOTE] = ACTIONS(1853), + [sym__str_single_quotes] = ACTIONS(1853), + [sym__str_back_ticks] = ACTIONS(1853), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1853), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1853), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1853), + [sym__entry_separator] = ACTIONS(1855), + [anon_sym_register] = ACTIONS(1853), + [anon_sym_DOT2] = ACTIONS(1837), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1855), }, - [387] = { - [sym_comment] = STATE(387), - [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), - [aux_sym_cmd_identifier_token37] = ACTIONS(1755), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1755), - [aux_sym_cmd_identifier_token40] = ACTIONS(1755), - [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(1755), - [anon_sym_COMMA] = ACTIONS(1755), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in2] = 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_RBRACE] = 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_as] = ACTIONS(1755), - [anon_sym_PLUS2] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1755), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(1826), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1755), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1755), - [aux_sym__val_number_decimal_token3] = ACTIONS(1755), - [aux_sym__val_number_decimal_token4] = ACTIONS(1755), - [aux_sym__val_number_token1] = ACTIONS(1755), - [aux_sym__val_number_token2] = ACTIONS(1755), - [aux_sym__val_number_token3] = ACTIONS(1755), - [aux_sym__val_number_token4] = ACTIONS(1755), - [aux_sym__val_number_token5] = ACTIONS(1755), - [aux_sym__val_number_token6] = ACTIONS(1755), - [anon_sym_DQUOTE] = ACTIONS(1755), - [sym__str_single_quotes] = ACTIONS(1755), - [sym__str_back_ticks] = ACTIONS(1755), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1755), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1755), - [sym__entry_separator] = ACTIONS(1757), + [400] = { + [sym_comment] = STATE(400), + [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(1703), + [aux_sym_cmd_identifier_token3] = ACTIONS(1703), + [aux_sym_cmd_identifier_token4] = ACTIONS(1703), + [aux_sym_cmd_identifier_token5] = ACTIONS(1703), + [aux_sym_cmd_identifier_token6] = ACTIONS(1703), + [aux_sym_cmd_identifier_token7] = ACTIONS(1703), + [aux_sym_cmd_identifier_token8] = ACTIONS(1701), + [aux_sym_cmd_identifier_token9] = ACTIONS(1701), + [aux_sym_cmd_identifier_token10] = ACTIONS(1703), + [aux_sym_cmd_identifier_token11] = ACTIONS(1703), + [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(1703), + [aux_sym_cmd_identifier_token17] = ACTIONS(1703), + [aux_sym_cmd_identifier_token18] = ACTIONS(1703), + [aux_sym_cmd_identifier_token19] = ACTIONS(1703), + [aux_sym_cmd_identifier_token20] = ACTIONS(1703), + [aux_sym_cmd_identifier_token21] = ACTIONS(1703), + [aux_sym_cmd_identifier_token22] = ACTIONS(1703), + [aux_sym_cmd_identifier_token23] = ACTIONS(1703), + [aux_sym_cmd_identifier_token24] = ACTIONS(1703), + [aux_sym_cmd_identifier_token25] = ACTIONS(1703), + [aux_sym_cmd_identifier_token26] = ACTIONS(1703), + [aux_sym_cmd_identifier_token27] = ACTIONS(1703), + [aux_sym_cmd_identifier_token28] = ACTIONS(1703), + [aux_sym_cmd_identifier_token29] = ACTIONS(1703), + [aux_sym_cmd_identifier_token30] = ACTIONS(1703), + [aux_sym_cmd_identifier_token31] = ACTIONS(1703), + [aux_sym_cmd_identifier_token32] = ACTIONS(1703), + [aux_sym_cmd_identifier_token33] = ACTIONS(1703), + [aux_sym_cmd_identifier_token34] = ACTIONS(1701), + [aux_sym_cmd_identifier_token35] = ACTIONS(1703), + [aux_sym_cmd_identifier_token36] = ACTIONS(1703), + [aux_sym_cmd_identifier_token37] = ACTIONS(1703), + [aux_sym_cmd_identifier_token38] = ACTIONS(1701), + [aux_sym_cmd_identifier_token39] = ACTIONS(1703), + [aux_sym_cmd_identifier_token40] = ACTIONS(1703), + [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(1703), + [anon_sym_COMMA] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_error] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_in2] = 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(1703), + [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_hide] = ACTIONS(1701), + [anon_sym_hide_DASHenv] = ACTIONS(1701), + [anon_sym_overlay] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1701), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1703), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT] = ACTIONS(1857), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(1859), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1701), + [aux_sym__val_number_token5] = ACTIONS(1701), + [aux_sym__val_number_token6] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1703), + }, + [401] = { + [sym_cell_path] = STATE(599), + [sym_path] = STATE(559), + [sym_comment] = STATE(401), + [aux_sym_cell_path_repeat1] = STATE(446), + [anon_sym_export] = ACTIONS(1861), + [anon_sym_alias] = ACTIONS(1861), + [anon_sym_let] = ACTIONS(1861), + [anon_sym_let_DASHenv] = ACTIONS(1861), + [anon_sym_mut] = ACTIONS(1861), + [anon_sym_const] = ACTIONS(1861), + [aux_sym_cmd_identifier_token1] = ACTIONS(1861), + [aux_sym_cmd_identifier_token2] = ACTIONS(1861), + [aux_sym_cmd_identifier_token3] = ACTIONS(1861), + [aux_sym_cmd_identifier_token4] = ACTIONS(1861), + [aux_sym_cmd_identifier_token5] = ACTIONS(1861), + [aux_sym_cmd_identifier_token6] = ACTIONS(1861), + [aux_sym_cmd_identifier_token7] = ACTIONS(1861), + [aux_sym_cmd_identifier_token8] = ACTIONS(1861), + [aux_sym_cmd_identifier_token9] = ACTIONS(1861), + [aux_sym_cmd_identifier_token10] = ACTIONS(1861), + [aux_sym_cmd_identifier_token11] = ACTIONS(1861), + [aux_sym_cmd_identifier_token12] = ACTIONS(1861), + [aux_sym_cmd_identifier_token13] = ACTIONS(1861), + [aux_sym_cmd_identifier_token14] = ACTIONS(1861), + [aux_sym_cmd_identifier_token15] = ACTIONS(1861), + [aux_sym_cmd_identifier_token16] = ACTIONS(1861), + [aux_sym_cmd_identifier_token17] = ACTIONS(1861), + [aux_sym_cmd_identifier_token18] = ACTIONS(1861), + [aux_sym_cmd_identifier_token19] = ACTIONS(1861), + [aux_sym_cmd_identifier_token20] = ACTIONS(1861), + [aux_sym_cmd_identifier_token21] = ACTIONS(1861), + [aux_sym_cmd_identifier_token22] = ACTIONS(1861), + [aux_sym_cmd_identifier_token23] = ACTIONS(1861), + [aux_sym_cmd_identifier_token24] = ACTIONS(1861), + [aux_sym_cmd_identifier_token25] = ACTIONS(1861), + [aux_sym_cmd_identifier_token26] = ACTIONS(1861), + [aux_sym_cmd_identifier_token27] = ACTIONS(1861), + [aux_sym_cmd_identifier_token28] = ACTIONS(1861), + [aux_sym_cmd_identifier_token29] = ACTIONS(1861), + [aux_sym_cmd_identifier_token30] = ACTIONS(1861), + [aux_sym_cmd_identifier_token31] = ACTIONS(1861), + [aux_sym_cmd_identifier_token32] = ACTIONS(1861), + [aux_sym_cmd_identifier_token33] = ACTIONS(1861), + [aux_sym_cmd_identifier_token34] = ACTIONS(1861), + [aux_sym_cmd_identifier_token35] = ACTIONS(1861), + [aux_sym_cmd_identifier_token36] = ACTIONS(1861), + [aux_sym_cmd_identifier_token37] = ACTIONS(1861), + [aux_sym_cmd_identifier_token38] = ACTIONS(1861), + [aux_sym_cmd_identifier_token39] = ACTIONS(1861), + [aux_sym_cmd_identifier_token40] = ACTIONS(1861), + [anon_sym_def] = ACTIONS(1861), + [anon_sym_export_DASHenv] = ACTIONS(1861), + [anon_sym_extern] = ACTIONS(1861), + [anon_sym_module] = ACTIONS(1861), + [anon_sym_use] = ACTIONS(1861), + [anon_sym_LPAREN] = ACTIONS(1861), + [anon_sym_COMMA] = ACTIONS(1861), + [anon_sym_DOLLAR] = ACTIONS(1861), + [anon_sym_error] = ACTIONS(1861), + [anon_sym_DASH2] = ACTIONS(1861), + [anon_sym_break] = ACTIONS(1861), + [anon_sym_continue] = ACTIONS(1861), + [anon_sym_for] = ACTIONS(1861), + [anon_sym_in2] = ACTIONS(1861), + [anon_sym_loop] = ACTIONS(1861), + [anon_sym_make] = ACTIONS(1861), + [anon_sym_while] = ACTIONS(1861), + [anon_sym_do] = ACTIONS(1861), + [anon_sym_if] = ACTIONS(1861), + [anon_sym_else] = ACTIONS(1861), + [anon_sym_match] = ACTIONS(1861), + [anon_sym_RBRACE] = ACTIONS(1861), + [anon_sym_try] = ACTIONS(1861), + [anon_sym_catch] = ACTIONS(1861), + [anon_sym_return] = ACTIONS(1861), + [anon_sym_source] = ACTIONS(1861), + [anon_sym_source_DASHenv] = ACTIONS(1861), + [anon_sym_hide] = ACTIONS(1861), + [anon_sym_hide_DASHenv] = ACTIONS(1861), + [anon_sym_overlay] = ACTIONS(1861), + [anon_sym_as] = ACTIONS(1861), + [anon_sym_PLUS2] = ACTIONS(1861), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1861), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1861), + [aux_sym__val_number_decimal_token1] = ACTIONS(1861), + [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), + [aux_sym__val_number_token4] = ACTIONS(1861), + [aux_sym__val_number_token5] = ACTIONS(1861), + [aux_sym__val_number_token6] = ACTIONS(1861), + [anon_sym_DQUOTE] = ACTIONS(1861), + [sym__str_single_quotes] = ACTIONS(1861), + [sym__str_back_ticks] = ACTIONS(1861), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1861), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1861), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1861), + [sym__entry_separator] = ACTIONS(1863), + [anon_sym_register] = ACTIONS(1861), + [anon_sym_DOT2] = ACTIONS(1837), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1757), + [sym_raw_string_begin] = ACTIONS(1863), }, - [388] = { - [sym_cell_path] = STATE(641), - [sym_path] = STATE(569), - [sym_comment] = STATE(388), - [aux_sym_cell_path_repeat1] = STATE(451), - [anon_sym_export] = ACTIONS(1845), - [anon_sym_alias] = ACTIONS(1845), - [anon_sym_let] = ACTIONS(1845), - [anon_sym_let_DASHenv] = ACTIONS(1845), - [anon_sym_mut] = ACTIONS(1845), - [anon_sym_const] = ACTIONS(1845), - [aux_sym_cmd_identifier_token1] = ACTIONS(1845), - [aux_sym_cmd_identifier_token2] = ACTIONS(1845), - [aux_sym_cmd_identifier_token3] = ACTIONS(1845), - [aux_sym_cmd_identifier_token4] = ACTIONS(1845), - [aux_sym_cmd_identifier_token5] = ACTIONS(1845), - [aux_sym_cmd_identifier_token6] = ACTIONS(1845), - [aux_sym_cmd_identifier_token7] = ACTIONS(1845), - [aux_sym_cmd_identifier_token8] = ACTIONS(1845), - [aux_sym_cmd_identifier_token9] = ACTIONS(1845), - [aux_sym_cmd_identifier_token10] = ACTIONS(1845), - [aux_sym_cmd_identifier_token11] = ACTIONS(1845), - [aux_sym_cmd_identifier_token12] = ACTIONS(1845), - [aux_sym_cmd_identifier_token13] = ACTIONS(1845), - [aux_sym_cmd_identifier_token14] = ACTIONS(1845), - [aux_sym_cmd_identifier_token15] = ACTIONS(1845), - [aux_sym_cmd_identifier_token16] = ACTIONS(1845), - [aux_sym_cmd_identifier_token17] = ACTIONS(1845), - [aux_sym_cmd_identifier_token18] = ACTIONS(1845), - [aux_sym_cmd_identifier_token19] = ACTIONS(1845), - [aux_sym_cmd_identifier_token20] = ACTIONS(1845), - [aux_sym_cmd_identifier_token21] = ACTIONS(1845), - [aux_sym_cmd_identifier_token22] = ACTIONS(1845), - [aux_sym_cmd_identifier_token23] = ACTIONS(1845), - [aux_sym_cmd_identifier_token24] = ACTIONS(1845), - [aux_sym_cmd_identifier_token25] = ACTIONS(1845), - [aux_sym_cmd_identifier_token26] = ACTIONS(1845), - [aux_sym_cmd_identifier_token27] = ACTIONS(1845), - [aux_sym_cmd_identifier_token28] = ACTIONS(1845), - [aux_sym_cmd_identifier_token29] = ACTIONS(1845), - [aux_sym_cmd_identifier_token30] = ACTIONS(1845), - [aux_sym_cmd_identifier_token31] = ACTIONS(1845), - [aux_sym_cmd_identifier_token32] = ACTIONS(1845), - [aux_sym_cmd_identifier_token33] = ACTIONS(1845), - [aux_sym_cmd_identifier_token34] = ACTIONS(1845), - [aux_sym_cmd_identifier_token35] = ACTIONS(1845), - [aux_sym_cmd_identifier_token36] = ACTIONS(1845), - [aux_sym_cmd_identifier_token37] = ACTIONS(1845), - [aux_sym_cmd_identifier_token38] = ACTIONS(1845), - [aux_sym_cmd_identifier_token39] = ACTIONS(1845), - [aux_sym_cmd_identifier_token40] = ACTIONS(1845), - [anon_sym_def] = ACTIONS(1845), - [anon_sym_export_DASHenv] = ACTIONS(1845), - [anon_sym_extern] = ACTIONS(1845), - [anon_sym_module] = ACTIONS(1845), - [anon_sym_use] = ACTIONS(1845), - [anon_sym_LPAREN] = ACTIONS(1845), - [anon_sym_COMMA] = ACTIONS(1845), - [anon_sym_DOLLAR] = ACTIONS(1845), - [anon_sym_error] = ACTIONS(1845), - [anon_sym_DASH2] = ACTIONS(1845), - [anon_sym_break] = ACTIONS(1845), - [anon_sym_continue] = ACTIONS(1845), - [anon_sym_for] = ACTIONS(1845), - [anon_sym_in2] = ACTIONS(1845), - [anon_sym_loop] = ACTIONS(1845), - [anon_sym_make] = ACTIONS(1845), - [anon_sym_while] = ACTIONS(1845), - [anon_sym_do] = ACTIONS(1845), - [anon_sym_if] = ACTIONS(1845), - [anon_sym_else] = ACTIONS(1845), - [anon_sym_match] = ACTIONS(1845), - [anon_sym_RBRACE] = ACTIONS(1845), - [anon_sym_try] = ACTIONS(1845), - [anon_sym_catch] = ACTIONS(1845), - [anon_sym_return] = ACTIONS(1845), - [anon_sym_source] = ACTIONS(1845), - [anon_sym_source_DASHenv] = ACTIONS(1845), - [anon_sym_register] = ACTIONS(1845), - [anon_sym_hide] = ACTIONS(1845), - [anon_sym_hide_DASHenv] = ACTIONS(1845), - [anon_sym_overlay] = ACTIONS(1845), - [anon_sym_as] = ACTIONS(1845), - [anon_sym_PLUS2] = ACTIONS(1845), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1845), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1845), - [aux_sym__val_number_decimal_token1] = ACTIONS(1845), - [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), - [aux_sym__val_number_token4] = ACTIONS(1845), - [aux_sym__val_number_token5] = ACTIONS(1845), - [aux_sym__val_number_token6] = ACTIONS(1845), - [anon_sym_DQUOTE] = ACTIONS(1845), - [sym__str_single_quotes] = ACTIONS(1845), - [sym__str_back_ticks] = ACTIONS(1845), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1845), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1845), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1845), - [sym__entry_separator] = ACTIONS(1847), - [anon_sym_DOT2] = ACTIONS(1849), + [402] = { + [sym_comment] = STATE(402), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1701), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_error] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_in2] = 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_hide] = ACTIONS(1701), + [anon_sym_hide_DASHenv] = ACTIONS(1701), + [anon_sym_overlay] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1701), + [anon_sym_DOT] = ACTIONS(1865), + [aux_sym__immediate_decimal_token2] = ACTIONS(1867), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1701), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1701), + [aux_sym__val_number_decimal_token3] = ACTIONS(1701), + [aux_sym__val_number_decimal_token4] = ACTIONS(1701), + [aux_sym__val_number_token1] = ACTIONS(1701), + [aux_sym__val_number_token2] = ACTIONS(1701), + [aux_sym__val_number_token3] = ACTIONS(1701), + [aux_sym__val_number_token4] = ACTIONS(1701), + [aux_sym__val_number_token5] = ACTIONS(1701), + [aux_sym__val_number_token6] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1701), + [sym__str_single_quotes] = ACTIONS(1701), + [sym__str_back_ticks] = ACTIONS(1701), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1701), + [sym__entry_separator] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1701), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1701), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1847), + [sym_raw_string_begin] = ACTIONS(1703), }, - [389] = { - [sym_comment] = STATE(389), - [anon_sym_export] = ACTIONS(972), - [anon_sym_alias] = ACTIONS(972), - [anon_sym_let] = ACTIONS(972), - [anon_sym_let_DASHenv] = ACTIONS(972), - [anon_sym_mut] = ACTIONS(972), - [anon_sym_const] = ACTIONS(972), - [aux_sym_cmd_identifier_token1] = ACTIONS(972), - [aux_sym_cmd_identifier_token2] = ACTIONS(974), - [aux_sym_cmd_identifier_token3] = ACTIONS(974), - [aux_sym_cmd_identifier_token4] = ACTIONS(974), - [aux_sym_cmd_identifier_token5] = ACTIONS(974), - [aux_sym_cmd_identifier_token6] = ACTIONS(974), - [aux_sym_cmd_identifier_token7] = ACTIONS(974), - [aux_sym_cmd_identifier_token8] = ACTIONS(972), - [aux_sym_cmd_identifier_token9] = ACTIONS(972), - [aux_sym_cmd_identifier_token10] = ACTIONS(974), - [aux_sym_cmd_identifier_token11] = ACTIONS(974), - [aux_sym_cmd_identifier_token12] = ACTIONS(972), - [aux_sym_cmd_identifier_token13] = ACTIONS(972), - [aux_sym_cmd_identifier_token14] = ACTIONS(972), - [aux_sym_cmd_identifier_token15] = ACTIONS(972), - [aux_sym_cmd_identifier_token16] = ACTIONS(974), - [aux_sym_cmd_identifier_token17] = ACTIONS(974), - [aux_sym_cmd_identifier_token18] = ACTIONS(974), - [aux_sym_cmd_identifier_token19] = ACTIONS(974), - [aux_sym_cmd_identifier_token20] = ACTIONS(974), - [aux_sym_cmd_identifier_token21] = ACTIONS(974), - [aux_sym_cmd_identifier_token22] = ACTIONS(974), - [aux_sym_cmd_identifier_token23] = ACTIONS(974), - [aux_sym_cmd_identifier_token24] = ACTIONS(974), - [aux_sym_cmd_identifier_token25] = ACTIONS(974), - [aux_sym_cmd_identifier_token26] = ACTIONS(974), - [aux_sym_cmd_identifier_token27] = ACTIONS(974), - [aux_sym_cmd_identifier_token28] = ACTIONS(974), - [aux_sym_cmd_identifier_token29] = ACTIONS(974), - [aux_sym_cmd_identifier_token30] = ACTIONS(974), - [aux_sym_cmd_identifier_token31] = ACTIONS(974), - [aux_sym_cmd_identifier_token32] = ACTIONS(974), - [aux_sym_cmd_identifier_token33] = ACTIONS(974), - [aux_sym_cmd_identifier_token34] = ACTIONS(972), - [aux_sym_cmd_identifier_token35] = ACTIONS(974), - [aux_sym_cmd_identifier_token36] = ACTIONS(974), - [aux_sym_cmd_identifier_token37] = ACTIONS(974), - [aux_sym_cmd_identifier_token38] = ACTIONS(972), - [aux_sym_cmd_identifier_token39] = ACTIONS(974), - [aux_sym_cmd_identifier_token40] = ACTIONS(974), - [anon_sym_def] = ACTIONS(972), - [anon_sym_export_DASHenv] = ACTIONS(972), - [anon_sym_extern] = ACTIONS(972), - [anon_sym_module] = ACTIONS(972), - [anon_sym_use] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_COMMA] = ACTIONS(974), - [anon_sym_DOLLAR] = ACTIONS(972), - [anon_sym_error] = ACTIONS(972), - [anon_sym_DASH2] = ACTIONS(972), - [anon_sym_break] = ACTIONS(972), - [anon_sym_continue] = ACTIONS(972), - [anon_sym_for] = ACTIONS(972), - [anon_sym_in2] = ACTIONS(972), - [anon_sym_loop] = ACTIONS(972), - [anon_sym_make] = ACTIONS(972), - [anon_sym_while] = ACTIONS(972), - [anon_sym_do] = ACTIONS(972), - [anon_sym_if] = ACTIONS(972), - [anon_sym_else] = ACTIONS(972), - [anon_sym_match] = ACTIONS(972), - [anon_sym_RBRACE] = ACTIONS(974), - [anon_sym_try] = ACTIONS(972), - [anon_sym_catch] = ACTIONS(972), - [anon_sym_return] = ACTIONS(972), - [anon_sym_source] = ACTIONS(972), - [anon_sym_source_DASHenv] = ACTIONS(972), - [anon_sym_register] = ACTIONS(972), - [anon_sym_hide] = ACTIONS(972), - [anon_sym_hide_DASHenv] = ACTIONS(972), - [anon_sym_overlay] = ACTIONS(972), - [anon_sym_as] = ACTIONS(972), - [anon_sym_QMARK2] = ACTIONS(974), - [anon_sym_PLUS2] = ACTIONS(972), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(974), - [anon_sym_DOT_DOT2] = ACTIONS(972), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(974), - [anon_sym_DOT_DOT_LT2] = ACTIONS(974), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(974), - [aux_sym__val_number_decimal_token1] = ACTIONS(972), - [aux_sym__val_number_decimal_token2] = ACTIONS(974), - [aux_sym__val_number_decimal_token3] = ACTIONS(974), - [aux_sym__val_number_decimal_token4] = ACTIONS(974), - [aux_sym__val_number_token1] = ACTIONS(974), - [aux_sym__val_number_token2] = ACTIONS(974), - [aux_sym__val_number_token3] = ACTIONS(974), - [aux_sym__val_number_token4] = ACTIONS(972), - [aux_sym__val_number_token5] = ACTIONS(972), - [aux_sym__val_number_token6] = ACTIONS(972), - [anon_sym_DQUOTE] = ACTIONS(974), - [sym__str_single_quotes] = ACTIONS(974), - [sym__str_back_ticks] = ACTIONS(974), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(974), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(974), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(974), - [anon_sym_DOT2] = ACTIONS(972), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(974), + [403] = { + [sym_cell_path] = STATE(646), + [sym_path] = STATE(559), + [sym_comment] = STATE(403), + [aux_sym_cell_path_repeat1] = STATE(446), + [anon_sym_export] = ACTIONS(1869), + [anon_sym_alias] = ACTIONS(1869), + [anon_sym_let] = ACTIONS(1869), + [anon_sym_let_DASHenv] = ACTIONS(1869), + [anon_sym_mut] = ACTIONS(1869), + [anon_sym_const] = ACTIONS(1869), + [aux_sym_cmd_identifier_token1] = ACTIONS(1869), + [aux_sym_cmd_identifier_token2] = ACTIONS(1869), + [aux_sym_cmd_identifier_token3] = ACTIONS(1869), + [aux_sym_cmd_identifier_token4] = ACTIONS(1869), + [aux_sym_cmd_identifier_token5] = ACTIONS(1869), + [aux_sym_cmd_identifier_token6] = ACTIONS(1869), + [aux_sym_cmd_identifier_token7] = ACTIONS(1869), + [aux_sym_cmd_identifier_token8] = ACTIONS(1869), + [aux_sym_cmd_identifier_token9] = ACTIONS(1869), + [aux_sym_cmd_identifier_token10] = ACTIONS(1869), + [aux_sym_cmd_identifier_token11] = ACTIONS(1869), + [aux_sym_cmd_identifier_token12] = ACTIONS(1869), + [aux_sym_cmd_identifier_token13] = ACTIONS(1869), + [aux_sym_cmd_identifier_token14] = ACTIONS(1869), + [aux_sym_cmd_identifier_token15] = ACTIONS(1869), + [aux_sym_cmd_identifier_token16] = ACTIONS(1869), + [aux_sym_cmd_identifier_token17] = ACTIONS(1869), + [aux_sym_cmd_identifier_token18] = ACTIONS(1869), + [aux_sym_cmd_identifier_token19] = ACTIONS(1869), + [aux_sym_cmd_identifier_token20] = ACTIONS(1869), + [aux_sym_cmd_identifier_token21] = ACTIONS(1869), + [aux_sym_cmd_identifier_token22] = ACTIONS(1869), + [aux_sym_cmd_identifier_token23] = ACTIONS(1869), + [aux_sym_cmd_identifier_token24] = ACTIONS(1869), + [aux_sym_cmd_identifier_token25] = ACTIONS(1869), + [aux_sym_cmd_identifier_token26] = ACTIONS(1869), + [aux_sym_cmd_identifier_token27] = ACTIONS(1869), + [aux_sym_cmd_identifier_token28] = ACTIONS(1869), + [aux_sym_cmd_identifier_token29] = ACTIONS(1869), + [aux_sym_cmd_identifier_token30] = ACTIONS(1869), + [aux_sym_cmd_identifier_token31] = ACTIONS(1869), + [aux_sym_cmd_identifier_token32] = ACTIONS(1869), + [aux_sym_cmd_identifier_token33] = ACTIONS(1869), + [aux_sym_cmd_identifier_token34] = ACTIONS(1869), + [aux_sym_cmd_identifier_token35] = ACTIONS(1869), + [aux_sym_cmd_identifier_token36] = ACTIONS(1869), + [aux_sym_cmd_identifier_token37] = ACTIONS(1869), + [aux_sym_cmd_identifier_token38] = ACTIONS(1869), + [aux_sym_cmd_identifier_token39] = ACTIONS(1869), + [aux_sym_cmd_identifier_token40] = ACTIONS(1869), + [anon_sym_def] = ACTIONS(1869), + [anon_sym_export_DASHenv] = ACTIONS(1869), + [anon_sym_extern] = ACTIONS(1869), + [anon_sym_module] = ACTIONS(1869), + [anon_sym_use] = ACTIONS(1869), + [anon_sym_LPAREN] = ACTIONS(1869), + [anon_sym_COMMA] = ACTIONS(1869), + [anon_sym_DOLLAR] = ACTIONS(1869), + [anon_sym_error] = ACTIONS(1869), + [anon_sym_DASH2] = ACTIONS(1869), + [anon_sym_break] = ACTIONS(1869), + [anon_sym_continue] = ACTIONS(1869), + [anon_sym_for] = ACTIONS(1869), + [anon_sym_in2] = ACTIONS(1869), + [anon_sym_loop] = ACTIONS(1869), + [anon_sym_make] = ACTIONS(1869), + [anon_sym_while] = ACTIONS(1869), + [anon_sym_do] = ACTIONS(1869), + [anon_sym_if] = ACTIONS(1869), + [anon_sym_else] = ACTIONS(1869), + [anon_sym_match] = ACTIONS(1869), + [anon_sym_RBRACE] = ACTIONS(1869), + [anon_sym_try] = ACTIONS(1869), + [anon_sym_catch] = ACTIONS(1869), + [anon_sym_return] = ACTIONS(1869), + [anon_sym_source] = ACTIONS(1869), + [anon_sym_source_DASHenv] = ACTIONS(1869), + [anon_sym_hide] = ACTIONS(1869), + [anon_sym_hide_DASHenv] = ACTIONS(1869), + [anon_sym_overlay] = ACTIONS(1869), + [anon_sym_as] = ACTIONS(1869), + [anon_sym_PLUS2] = ACTIONS(1869), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1869), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1869), + [aux_sym__val_number_decimal_token1] = ACTIONS(1869), + [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), + [aux_sym__val_number_token4] = ACTIONS(1869), + [aux_sym__val_number_token5] = ACTIONS(1869), + [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(1869), + [sym__entry_separator] = ACTIONS(1871), + [anon_sym_register] = ACTIONS(1869), + [anon_sym_DOT2] = ACTIONS(1837), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1871), }, - [390] = { - [sym_comment] = STATE(390), - [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(978), - [aux_sym_cmd_identifier_token3] = ACTIONS(978), - [aux_sym_cmd_identifier_token4] = ACTIONS(978), - [aux_sym_cmd_identifier_token5] = ACTIONS(978), - [aux_sym_cmd_identifier_token6] = ACTIONS(978), - [aux_sym_cmd_identifier_token7] = ACTIONS(978), - [aux_sym_cmd_identifier_token8] = ACTIONS(976), - [aux_sym_cmd_identifier_token9] = ACTIONS(976), - [aux_sym_cmd_identifier_token10] = ACTIONS(978), - [aux_sym_cmd_identifier_token11] = ACTIONS(978), - [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(978), - [aux_sym_cmd_identifier_token17] = ACTIONS(978), - [aux_sym_cmd_identifier_token18] = ACTIONS(978), - [aux_sym_cmd_identifier_token19] = ACTIONS(978), - [aux_sym_cmd_identifier_token20] = ACTIONS(978), - [aux_sym_cmd_identifier_token21] = ACTIONS(978), - [aux_sym_cmd_identifier_token22] = ACTIONS(978), - [aux_sym_cmd_identifier_token23] = ACTIONS(978), - [aux_sym_cmd_identifier_token24] = ACTIONS(978), - [aux_sym_cmd_identifier_token25] = ACTIONS(978), - [aux_sym_cmd_identifier_token26] = ACTIONS(978), - [aux_sym_cmd_identifier_token27] = ACTIONS(978), - [aux_sym_cmd_identifier_token28] = ACTIONS(978), - [aux_sym_cmd_identifier_token29] = ACTIONS(978), - [aux_sym_cmd_identifier_token30] = ACTIONS(978), - [aux_sym_cmd_identifier_token31] = ACTIONS(978), - [aux_sym_cmd_identifier_token32] = ACTIONS(978), - [aux_sym_cmd_identifier_token33] = ACTIONS(978), - [aux_sym_cmd_identifier_token34] = ACTIONS(976), - [aux_sym_cmd_identifier_token35] = ACTIONS(978), - [aux_sym_cmd_identifier_token36] = ACTIONS(978), - [aux_sym_cmd_identifier_token37] = 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(976), - [anon_sym_error] = ACTIONS(976), - [anon_sym_DASH2] = ACTIONS(976), - [anon_sym_break] = ACTIONS(976), - [anon_sym_continue] = ACTIONS(976), - [anon_sym_for] = ACTIONS(976), - [anon_sym_in2] = 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_as] = ACTIONS(976), - [anon_sym_QMARK2] = ACTIONS(978), - [anon_sym_PLUS2] = ACTIONS(976), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(978), - [anon_sym_DOT_DOT2] = 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), - [aux_sym__val_number_token4] = ACTIONS(976), - [aux_sym__val_number_token5] = ACTIONS(976), - [aux_sym__val_number_token6] = ACTIONS(976), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(978), - [anon_sym_DOT2] = ACTIONS(976), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(978), + [404] = { + [sym_cell_path] = STATE(612), + [sym_path] = STATE(559), + [sym_comment] = STATE(404), + [aux_sym_cell_path_repeat1] = STATE(446), + [anon_sym_export] = ACTIONS(1873), + [anon_sym_alias] = ACTIONS(1873), + [anon_sym_let] = ACTIONS(1873), + [anon_sym_let_DASHenv] = ACTIONS(1873), + [anon_sym_mut] = ACTIONS(1873), + [anon_sym_const] = ACTIONS(1873), + [aux_sym_cmd_identifier_token1] = ACTIONS(1873), + [aux_sym_cmd_identifier_token2] = ACTIONS(1873), + [aux_sym_cmd_identifier_token3] = ACTIONS(1873), + [aux_sym_cmd_identifier_token4] = ACTIONS(1873), + [aux_sym_cmd_identifier_token5] = ACTIONS(1873), + [aux_sym_cmd_identifier_token6] = ACTIONS(1873), + [aux_sym_cmd_identifier_token7] = ACTIONS(1873), + [aux_sym_cmd_identifier_token8] = ACTIONS(1873), + [aux_sym_cmd_identifier_token9] = ACTIONS(1873), + [aux_sym_cmd_identifier_token10] = ACTIONS(1873), + [aux_sym_cmd_identifier_token11] = ACTIONS(1873), + [aux_sym_cmd_identifier_token12] = ACTIONS(1873), + [aux_sym_cmd_identifier_token13] = ACTIONS(1873), + [aux_sym_cmd_identifier_token14] = ACTIONS(1873), + [aux_sym_cmd_identifier_token15] = ACTIONS(1873), + [aux_sym_cmd_identifier_token16] = ACTIONS(1873), + [aux_sym_cmd_identifier_token17] = ACTIONS(1873), + [aux_sym_cmd_identifier_token18] = ACTIONS(1873), + [aux_sym_cmd_identifier_token19] = ACTIONS(1873), + [aux_sym_cmd_identifier_token20] = ACTIONS(1873), + [aux_sym_cmd_identifier_token21] = ACTIONS(1873), + [aux_sym_cmd_identifier_token22] = ACTIONS(1873), + [aux_sym_cmd_identifier_token23] = ACTIONS(1873), + [aux_sym_cmd_identifier_token24] = ACTIONS(1873), + [aux_sym_cmd_identifier_token25] = ACTIONS(1873), + [aux_sym_cmd_identifier_token26] = ACTIONS(1873), + [aux_sym_cmd_identifier_token27] = ACTIONS(1873), + [aux_sym_cmd_identifier_token28] = ACTIONS(1873), + [aux_sym_cmd_identifier_token29] = ACTIONS(1873), + [aux_sym_cmd_identifier_token30] = ACTIONS(1873), + [aux_sym_cmd_identifier_token31] = ACTIONS(1873), + [aux_sym_cmd_identifier_token32] = ACTIONS(1873), + [aux_sym_cmd_identifier_token33] = ACTIONS(1873), + [aux_sym_cmd_identifier_token34] = ACTIONS(1873), + [aux_sym_cmd_identifier_token35] = ACTIONS(1873), + [aux_sym_cmd_identifier_token36] = ACTIONS(1873), + [aux_sym_cmd_identifier_token37] = ACTIONS(1873), + [aux_sym_cmd_identifier_token38] = ACTIONS(1873), + [aux_sym_cmd_identifier_token39] = ACTIONS(1873), + [aux_sym_cmd_identifier_token40] = ACTIONS(1873), + [anon_sym_def] = ACTIONS(1873), + [anon_sym_export_DASHenv] = ACTIONS(1873), + [anon_sym_extern] = ACTIONS(1873), + [anon_sym_module] = ACTIONS(1873), + [anon_sym_use] = ACTIONS(1873), + [anon_sym_LPAREN] = ACTIONS(1873), + [anon_sym_COMMA] = ACTIONS(1873), + [anon_sym_DOLLAR] = ACTIONS(1873), + [anon_sym_error] = ACTIONS(1873), + [anon_sym_DASH2] = ACTIONS(1873), + [anon_sym_break] = ACTIONS(1873), + [anon_sym_continue] = ACTIONS(1873), + [anon_sym_for] = ACTIONS(1873), + [anon_sym_in2] = ACTIONS(1873), + [anon_sym_loop] = ACTIONS(1873), + [anon_sym_make] = ACTIONS(1873), + [anon_sym_while] = ACTIONS(1873), + [anon_sym_do] = ACTIONS(1873), + [anon_sym_if] = ACTIONS(1873), + [anon_sym_else] = ACTIONS(1873), + [anon_sym_match] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(1873), + [anon_sym_try] = ACTIONS(1873), + [anon_sym_catch] = ACTIONS(1873), + [anon_sym_return] = ACTIONS(1873), + [anon_sym_source] = ACTIONS(1873), + [anon_sym_source_DASHenv] = ACTIONS(1873), + [anon_sym_hide] = ACTIONS(1873), + [anon_sym_hide_DASHenv] = ACTIONS(1873), + [anon_sym_overlay] = ACTIONS(1873), + [anon_sym_as] = ACTIONS(1873), + [anon_sym_PLUS2] = ACTIONS(1873), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1873), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1873), + [aux_sym__val_number_decimal_token1] = ACTIONS(1873), + [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), + [aux_sym__val_number_token4] = ACTIONS(1873), + [aux_sym__val_number_token5] = ACTIONS(1873), + [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(1873), + [sym__entry_separator] = ACTIONS(1875), + [anon_sym_register] = ACTIONS(1873), + [anon_sym_DOT2] = ACTIONS(1837), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1875), }, - [391] = { - [sym_cell_path] = STATE(628), - [sym_path] = STATE(569), - [sym_comment] = STATE(391), - [aux_sym_cell_path_repeat1] = STATE(451), - [anon_sym_export] = ACTIONS(1851), - [anon_sym_alias] = ACTIONS(1851), - [anon_sym_let] = ACTIONS(1851), - [anon_sym_let_DASHenv] = ACTIONS(1851), - [anon_sym_mut] = ACTIONS(1851), - [anon_sym_const] = ACTIONS(1851), - [aux_sym_cmd_identifier_token1] = ACTIONS(1851), - [aux_sym_cmd_identifier_token2] = ACTIONS(1851), - [aux_sym_cmd_identifier_token3] = ACTIONS(1851), - [aux_sym_cmd_identifier_token4] = ACTIONS(1851), - [aux_sym_cmd_identifier_token5] = ACTIONS(1851), - [aux_sym_cmd_identifier_token6] = ACTIONS(1851), - [aux_sym_cmd_identifier_token7] = ACTIONS(1851), - [aux_sym_cmd_identifier_token8] = ACTIONS(1851), - [aux_sym_cmd_identifier_token9] = ACTIONS(1851), - [aux_sym_cmd_identifier_token10] = ACTIONS(1851), - [aux_sym_cmd_identifier_token11] = ACTIONS(1851), - [aux_sym_cmd_identifier_token12] = ACTIONS(1851), - [aux_sym_cmd_identifier_token13] = ACTIONS(1851), - [aux_sym_cmd_identifier_token14] = ACTIONS(1851), - [aux_sym_cmd_identifier_token15] = ACTIONS(1851), - [aux_sym_cmd_identifier_token16] = ACTIONS(1851), - [aux_sym_cmd_identifier_token17] = ACTIONS(1851), - [aux_sym_cmd_identifier_token18] = ACTIONS(1851), - [aux_sym_cmd_identifier_token19] = ACTIONS(1851), - [aux_sym_cmd_identifier_token20] = ACTIONS(1851), - [aux_sym_cmd_identifier_token21] = ACTIONS(1851), - [aux_sym_cmd_identifier_token22] = ACTIONS(1851), - [aux_sym_cmd_identifier_token23] = ACTIONS(1851), - [aux_sym_cmd_identifier_token24] = ACTIONS(1851), - [aux_sym_cmd_identifier_token25] = ACTIONS(1851), - [aux_sym_cmd_identifier_token26] = ACTIONS(1851), - [aux_sym_cmd_identifier_token27] = ACTIONS(1851), - [aux_sym_cmd_identifier_token28] = ACTIONS(1851), - [aux_sym_cmd_identifier_token29] = ACTIONS(1851), - [aux_sym_cmd_identifier_token30] = ACTIONS(1851), - [aux_sym_cmd_identifier_token31] = ACTIONS(1851), - [aux_sym_cmd_identifier_token32] = ACTIONS(1851), - [aux_sym_cmd_identifier_token33] = ACTIONS(1851), - [aux_sym_cmd_identifier_token34] = ACTIONS(1851), - [aux_sym_cmd_identifier_token35] = ACTIONS(1851), - [aux_sym_cmd_identifier_token36] = ACTIONS(1851), - [aux_sym_cmd_identifier_token37] = ACTIONS(1851), - [aux_sym_cmd_identifier_token38] = ACTIONS(1851), - [aux_sym_cmd_identifier_token39] = ACTIONS(1851), - [aux_sym_cmd_identifier_token40] = ACTIONS(1851), - [anon_sym_def] = ACTIONS(1851), - [anon_sym_export_DASHenv] = ACTIONS(1851), - [anon_sym_extern] = ACTIONS(1851), - [anon_sym_module] = ACTIONS(1851), - [anon_sym_use] = ACTIONS(1851), - [anon_sym_LPAREN] = ACTIONS(1851), - [anon_sym_COMMA] = ACTIONS(1851), - [anon_sym_DOLLAR] = ACTIONS(1851), - [anon_sym_error] = ACTIONS(1851), - [anon_sym_DASH2] = ACTIONS(1851), - [anon_sym_break] = ACTIONS(1851), - [anon_sym_continue] = ACTIONS(1851), - [anon_sym_for] = ACTIONS(1851), - [anon_sym_in2] = ACTIONS(1851), - [anon_sym_loop] = ACTIONS(1851), - [anon_sym_make] = ACTIONS(1851), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1851), - [anon_sym_if] = ACTIONS(1851), - [anon_sym_else] = ACTIONS(1851), - [anon_sym_match] = ACTIONS(1851), - [anon_sym_RBRACE] = ACTIONS(1851), - [anon_sym_try] = ACTIONS(1851), - [anon_sym_catch] = ACTIONS(1851), - [anon_sym_return] = ACTIONS(1851), - [anon_sym_source] = ACTIONS(1851), - [anon_sym_source_DASHenv] = ACTIONS(1851), - [anon_sym_register] = ACTIONS(1851), - [anon_sym_hide] = ACTIONS(1851), - [anon_sym_hide_DASHenv] = ACTIONS(1851), - [anon_sym_overlay] = ACTIONS(1851), - [anon_sym_as] = ACTIONS(1851), - [anon_sym_PLUS2] = ACTIONS(1851), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1851), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1851), - [aux_sym__val_number_decimal_token1] = ACTIONS(1851), - [aux_sym__val_number_decimal_token2] = ACTIONS(1851), - [aux_sym__val_number_decimal_token3] = ACTIONS(1851), - [aux_sym__val_number_decimal_token4] = ACTIONS(1851), - [aux_sym__val_number_token1] = ACTIONS(1851), - [aux_sym__val_number_token2] = ACTIONS(1851), - [aux_sym__val_number_token3] = ACTIONS(1851), - [aux_sym__val_number_token4] = ACTIONS(1851), - [aux_sym__val_number_token5] = ACTIONS(1851), - [aux_sym__val_number_token6] = ACTIONS(1851), - [anon_sym_DQUOTE] = ACTIONS(1851), - [sym__str_single_quotes] = ACTIONS(1851), - [sym__str_back_ticks] = ACTIONS(1851), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1851), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1851), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1851), - [sym__entry_separator] = ACTIONS(1853), - [anon_sym_DOT2] = ACTIONS(1849), + [405] = { + [sym_cell_path] = STATE(590), + [sym_path] = STATE(559), + [sym_comment] = STATE(405), + [aux_sym_cell_path_repeat1] = STATE(446), + [anon_sym_export] = ACTIONS(1877), + [anon_sym_alias] = ACTIONS(1877), + [anon_sym_let] = ACTIONS(1877), + [anon_sym_let_DASHenv] = ACTIONS(1877), + [anon_sym_mut] = ACTIONS(1877), + [anon_sym_const] = ACTIONS(1877), + [aux_sym_cmd_identifier_token1] = ACTIONS(1877), + [aux_sym_cmd_identifier_token2] = ACTIONS(1877), + [aux_sym_cmd_identifier_token3] = ACTIONS(1877), + [aux_sym_cmd_identifier_token4] = ACTIONS(1877), + [aux_sym_cmd_identifier_token5] = ACTIONS(1877), + [aux_sym_cmd_identifier_token6] = ACTIONS(1877), + [aux_sym_cmd_identifier_token7] = ACTIONS(1877), + [aux_sym_cmd_identifier_token8] = ACTIONS(1877), + [aux_sym_cmd_identifier_token9] = ACTIONS(1877), + [aux_sym_cmd_identifier_token10] = ACTIONS(1877), + [aux_sym_cmd_identifier_token11] = ACTIONS(1877), + [aux_sym_cmd_identifier_token12] = ACTIONS(1877), + [aux_sym_cmd_identifier_token13] = ACTIONS(1877), + [aux_sym_cmd_identifier_token14] = ACTIONS(1877), + [aux_sym_cmd_identifier_token15] = ACTIONS(1877), + [aux_sym_cmd_identifier_token16] = ACTIONS(1877), + [aux_sym_cmd_identifier_token17] = ACTIONS(1877), + [aux_sym_cmd_identifier_token18] = ACTIONS(1877), + [aux_sym_cmd_identifier_token19] = ACTIONS(1877), + [aux_sym_cmd_identifier_token20] = ACTIONS(1877), + [aux_sym_cmd_identifier_token21] = ACTIONS(1877), + [aux_sym_cmd_identifier_token22] = ACTIONS(1877), + [aux_sym_cmd_identifier_token23] = ACTIONS(1877), + [aux_sym_cmd_identifier_token24] = ACTIONS(1877), + [aux_sym_cmd_identifier_token25] = ACTIONS(1877), + [aux_sym_cmd_identifier_token26] = ACTIONS(1877), + [aux_sym_cmd_identifier_token27] = ACTIONS(1877), + [aux_sym_cmd_identifier_token28] = ACTIONS(1877), + [aux_sym_cmd_identifier_token29] = ACTIONS(1877), + [aux_sym_cmd_identifier_token30] = ACTIONS(1877), + [aux_sym_cmd_identifier_token31] = ACTIONS(1877), + [aux_sym_cmd_identifier_token32] = ACTIONS(1877), + [aux_sym_cmd_identifier_token33] = ACTIONS(1877), + [aux_sym_cmd_identifier_token34] = ACTIONS(1877), + [aux_sym_cmd_identifier_token35] = ACTIONS(1877), + [aux_sym_cmd_identifier_token36] = ACTIONS(1877), + [aux_sym_cmd_identifier_token37] = ACTIONS(1877), + [aux_sym_cmd_identifier_token38] = ACTIONS(1877), + [aux_sym_cmd_identifier_token39] = ACTIONS(1877), + [aux_sym_cmd_identifier_token40] = ACTIONS(1877), + [anon_sym_def] = ACTIONS(1877), + [anon_sym_export_DASHenv] = ACTIONS(1877), + [anon_sym_extern] = ACTIONS(1877), + [anon_sym_module] = ACTIONS(1877), + [anon_sym_use] = ACTIONS(1877), + [anon_sym_LPAREN] = ACTIONS(1877), + [anon_sym_COMMA] = ACTIONS(1877), + [anon_sym_DOLLAR] = ACTIONS(1877), + [anon_sym_error] = ACTIONS(1877), + [anon_sym_DASH2] = ACTIONS(1877), + [anon_sym_break] = ACTIONS(1877), + [anon_sym_continue] = ACTIONS(1877), + [anon_sym_for] = ACTIONS(1877), + [anon_sym_in2] = ACTIONS(1877), + [anon_sym_loop] = ACTIONS(1877), + [anon_sym_make] = ACTIONS(1877), + [anon_sym_while] = ACTIONS(1877), + [anon_sym_do] = ACTIONS(1877), + [anon_sym_if] = ACTIONS(1877), + [anon_sym_else] = ACTIONS(1877), + [anon_sym_match] = ACTIONS(1877), + [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym_try] = ACTIONS(1877), + [anon_sym_catch] = ACTIONS(1877), + [anon_sym_return] = ACTIONS(1877), + [anon_sym_source] = ACTIONS(1877), + [anon_sym_source_DASHenv] = ACTIONS(1877), + [anon_sym_hide] = ACTIONS(1877), + [anon_sym_hide_DASHenv] = ACTIONS(1877), + [anon_sym_overlay] = ACTIONS(1877), + [anon_sym_as] = ACTIONS(1877), + [anon_sym_PLUS2] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1877), + [aux_sym__val_number_decimal_token1] = ACTIONS(1877), + [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), + [aux_sym__val_number_token4] = ACTIONS(1877), + [aux_sym__val_number_token5] = ACTIONS(1877), + [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(1877), + [sym__entry_separator] = ACTIONS(1879), + [anon_sym_register] = ACTIONS(1877), + [anon_sym_DOT2] = ACTIONS(1837), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1853), + [sym_raw_string_begin] = ACTIONS(1879), }, - [392] = { - [sym_cell_path] = STATE(657), - [sym_path] = STATE(569), - [sym_comment] = STATE(392), - [aux_sym_cell_path_repeat1] = STATE(451), - [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), - [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1855), - [anon_sym_DOLLAR] = ACTIONS(1855), - [anon_sym_error] = ACTIONS(1855), - [anon_sym_DASH2] = ACTIONS(1855), - [anon_sym_break] = ACTIONS(1855), - [anon_sym_continue] = ACTIONS(1855), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_in2] = 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_as] = ACTIONS(1855), - [anon_sym_PLUS2] = 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), - [aux_sym__val_number_token4] = ACTIONS(1855), - [aux_sym__val_number_token5] = ACTIONS(1855), - [aux_sym__val_number_token6] = ACTIONS(1855), - [anon_sym_DQUOTE] = ACTIONS(1855), - [sym__str_single_quotes] = ACTIONS(1855), - [sym__str_back_ticks] = ACTIONS(1855), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1855), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1855), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1855), - [sym__entry_separator] = ACTIONS(1857), - [anon_sym_DOT2] = ACTIONS(1849), + [406] = { + [sym_cell_path] = STATE(624), + [sym_path] = STATE(559), + [sym_comment] = STATE(406), + [aux_sym_cell_path_repeat1] = STATE(446), + [anon_sym_export] = ACTIONS(1881), + [anon_sym_alias] = ACTIONS(1881), + [anon_sym_let] = ACTIONS(1881), + [anon_sym_let_DASHenv] = ACTIONS(1881), + [anon_sym_mut] = ACTIONS(1881), + [anon_sym_const] = ACTIONS(1881), + [aux_sym_cmd_identifier_token1] = ACTIONS(1881), + [aux_sym_cmd_identifier_token2] = ACTIONS(1881), + [aux_sym_cmd_identifier_token3] = ACTIONS(1881), + [aux_sym_cmd_identifier_token4] = ACTIONS(1881), + [aux_sym_cmd_identifier_token5] = ACTIONS(1881), + [aux_sym_cmd_identifier_token6] = ACTIONS(1881), + [aux_sym_cmd_identifier_token7] = ACTIONS(1881), + [aux_sym_cmd_identifier_token8] = ACTIONS(1881), + [aux_sym_cmd_identifier_token9] = ACTIONS(1881), + [aux_sym_cmd_identifier_token10] = ACTIONS(1881), + [aux_sym_cmd_identifier_token11] = ACTIONS(1881), + [aux_sym_cmd_identifier_token12] = ACTIONS(1881), + [aux_sym_cmd_identifier_token13] = ACTIONS(1881), + [aux_sym_cmd_identifier_token14] = ACTIONS(1881), + [aux_sym_cmd_identifier_token15] = ACTIONS(1881), + [aux_sym_cmd_identifier_token16] = ACTIONS(1881), + [aux_sym_cmd_identifier_token17] = ACTIONS(1881), + [aux_sym_cmd_identifier_token18] = ACTIONS(1881), + [aux_sym_cmd_identifier_token19] = ACTIONS(1881), + [aux_sym_cmd_identifier_token20] = ACTIONS(1881), + [aux_sym_cmd_identifier_token21] = ACTIONS(1881), + [aux_sym_cmd_identifier_token22] = ACTIONS(1881), + [aux_sym_cmd_identifier_token23] = ACTIONS(1881), + [aux_sym_cmd_identifier_token24] = ACTIONS(1881), + [aux_sym_cmd_identifier_token25] = ACTIONS(1881), + [aux_sym_cmd_identifier_token26] = ACTIONS(1881), + [aux_sym_cmd_identifier_token27] = ACTIONS(1881), + [aux_sym_cmd_identifier_token28] = ACTIONS(1881), + [aux_sym_cmd_identifier_token29] = ACTIONS(1881), + [aux_sym_cmd_identifier_token30] = ACTIONS(1881), + [aux_sym_cmd_identifier_token31] = ACTIONS(1881), + [aux_sym_cmd_identifier_token32] = ACTIONS(1881), + [aux_sym_cmd_identifier_token33] = ACTIONS(1881), + [aux_sym_cmd_identifier_token34] = ACTIONS(1881), + [aux_sym_cmd_identifier_token35] = ACTIONS(1881), + [aux_sym_cmd_identifier_token36] = ACTIONS(1881), + [aux_sym_cmd_identifier_token37] = ACTIONS(1881), + [aux_sym_cmd_identifier_token38] = ACTIONS(1881), + [aux_sym_cmd_identifier_token39] = ACTIONS(1881), + [aux_sym_cmd_identifier_token40] = ACTIONS(1881), + [anon_sym_def] = ACTIONS(1881), + [anon_sym_export_DASHenv] = ACTIONS(1881), + [anon_sym_extern] = ACTIONS(1881), + [anon_sym_module] = ACTIONS(1881), + [anon_sym_use] = ACTIONS(1881), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_COMMA] = ACTIONS(1881), + [anon_sym_DOLLAR] = ACTIONS(1881), + [anon_sym_error] = ACTIONS(1881), + [anon_sym_DASH2] = ACTIONS(1881), + [anon_sym_break] = ACTIONS(1881), + [anon_sym_continue] = ACTIONS(1881), + [anon_sym_for] = ACTIONS(1881), + [anon_sym_in2] = ACTIONS(1881), + [anon_sym_loop] = ACTIONS(1881), + [anon_sym_make] = ACTIONS(1881), + [anon_sym_while] = ACTIONS(1881), + [anon_sym_do] = ACTIONS(1881), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_else] = ACTIONS(1881), + [anon_sym_match] = ACTIONS(1881), + [anon_sym_RBRACE] = ACTIONS(1881), + [anon_sym_try] = ACTIONS(1881), + [anon_sym_catch] = ACTIONS(1881), + [anon_sym_return] = ACTIONS(1881), + [anon_sym_source] = ACTIONS(1881), + [anon_sym_source_DASHenv] = ACTIONS(1881), + [anon_sym_hide] = ACTIONS(1881), + [anon_sym_hide_DASHenv] = ACTIONS(1881), + [anon_sym_overlay] = ACTIONS(1881), + [anon_sym_as] = ACTIONS(1881), + [anon_sym_PLUS2] = ACTIONS(1881), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1881), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1881), + [aux_sym__val_number_decimal_token1] = ACTIONS(1881), + [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), + [aux_sym__val_number_token4] = ACTIONS(1881), + [aux_sym__val_number_token5] = ACTIONS(1881), + [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(1881), + [sym__entry_separator] = ACTIONS(1883), + [anon_sym_register] = ACTIONS(1881), + [anon_sym_DOT2] = ACTIONS(1837), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1857), + [sym_raw_string_begin] = ACTIONS(1883), }, - [393] = { - [sym_cell_path] = STATE(638), - [sym_path] = STATE(569), - [sym_comment] = STATE(393), - [aux_sym_cell_path_repeat1] = STATE(451), - [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), - [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1859), - [anon_sym_DOLLAR] = ACTIONS(1859), - [anon_sym_error] = ACTIONS(1859), - [anon_sym_DASH2] = ACTIONS(1859), - [anon_sym_break] = ACTIONS(1859), - [anon_sym_continue] = ACTIONS(1859), - [anon_sym_for] = ACTIONS(1859), - [anon_sym_in2] = 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_as] = ACTIONS(1859), - [anon_sym_PLUS2] = ACTIONS(1859), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1859), - [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), - [aux_sym__val_number_token4] = ACTIONS(1859), - [aux_sym__val_number_token5] = ACTIONS(1859), - [aux_sym__val_number_token6] = ACTIONS(1859), - [anon_sym_DQUOTE] = ACTIONS(1859), - [sym__str_single_quotes] = ACTIONS(1859), - [sym__str_back_ticks] = ACTIONS(1859), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1859), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1859), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1859), - [sym__entry_separator] = ACTIONS(1861), - [anon_sym_DOT2] = ACTIONS(1849), + [407] = { + [sym_cell_path] = STATE(626), + [sym_path] = STATE(559), + [sym_comment] = STATE(407), + [aux_sym_cell_path_repeat1] = STATE(446), + [anon_sym_export] = ACTIONS(1885), + [anon_sym_alias] = ACTIONS(1885), + [anon_sym_let] = ACTIONS(1885), + [anon_sym_let_DASHenv] = ACTIONS(1885), + [anon_sym_mut] = ACTIONS(1885), + [anon_sym_const] = ACTIONS(1885), + [aux_sym_cmd_identifier_token1] = ACTIONS(1885), + [aux_sym_cmd_identifier_token2] = ACTIONS(1885), + [aux_sym_cmd_identifier_token3] = ACTIONS(1885), + [aux_sym_cmd_identifier_token4] = ACTIONS(1885), + [aux_sym_cmd_identifier_token5] = ACTIONS(1885), + [aux_sym_cmd_identifier_token6] = ACTIONS(1885), + [aux_sym_cmd_identifier_token7] = ACTIONS(1885), + [aux_sym_cmd_identifier_token8] = ACTIONS(1885), + [aux_sym_cmd_identifier_token9] = ACTIONS(1885), + [aux_sym_cmd_identifier_token10] = ACTIONS(1885), + [aux_sym_cmd_identifier_token11] = ACTIONS(1885), + [aux_sym_cmd_identifier_token12] = ACTIONS(1885), + [aux_sym_cmd_identifier_token13] = ACTIONS(1885), + [aux_sym_cmd_identifier_token14] = ACTIONS(1885), + [aux_sym_cmd_identifier_token15] = ACTIONS(1885), + [aux_sym_cmd_identifier_token16] = ACTIONS(1885), + [aux_sym_cmd_identifier_token17] = ACTIONS(1885), + [aux_sym_cmd_identifier_token18] = ACTIONS(1885), + [aux_sym_cmd_identifier_token19] = ACTIONS(1885), + [aux_sym_cmd_identifier_token20] = ACTIONS(1885), + [aux_sym_cmd_identifier_token21] = ACTIONS(1885), + [aux_sym_cmd_identifier_token22] = ACTIONS(1885), + [aux_sym_cmd_identifier_token23] = ACTIONS(1885), + [aux_sym_cmd_identifier_token24] = ACTIONS(1885), + [aux_sym_cmd_identifier_token25] = ACTIONS(1885), + [aux_sym_cmd_identifier_token26] = ACTIONS(1885), + [aux_sym_cmd_identifier_token27] = ACTIONS(1885), + [aux_sym_cmd_identifier_token28] = ACTIONS(1885), + [aux_sym_cmd_identifier_token29] = ACTIONS(1885), + [aux_sym_cmd_identifier_token30] = ACTIONS(1885), + [aux_sym_cmd_identifier_token31] = ACTIONS(1885), + [aux_sym_cmd_identifier_token32] = ACTIONS(1885), + [aux_sym_cmd_identifier_token33] = ACTIONS(1885), + [aux_sym_cmd_identifier_token34] = ACTIONS(1885), + [aux_sym_cmd_identifier_token35] = ACTIONS(1885), + [aux_sym_cmd_identifier_token36] = ACTIONS(1885), + [aux_sym_cmd_identifier_token37] = ACTIONS(1885), + [aux_sym_cmd_identifier_token38] = ACTIONS(1885), + [aux_sym_cmd_identifier_token39] = ACTIONS(1885), + [aux_sym_cmd_identifier_token40] = ACTIONS(1885), + [anon_sym_def] = ACTIONS(1885), + [anon_sym_export_DASHenv] = ACTIONS(1885), + [anon_sym_extern] = ACTIONS(1885), + [anon_sym_module] = ACTIONS(1885), + [anon_sym_use] = ACTIONS(1885), + [anon_sym_LPAREN] = ACTIONS(1885), + [anon_sym_COMMA] = ACTIONS(1885), + [anon_sym_DOLLAR] = ACTIONS(1885), + [anon_sym_error] = ACTIONS(1885), + [anon_sym_DASH2] = ACTIONS(1885), + [anon_sym_break] = ACTIONS(1885), + [anon_sym_continue] = ACTIONS(1885), + [anon_sym_for] = ACTIONS(1885), + [anon_sym_in2] = ACTIONS(1885), + [anon_sym_loop] = ACTIONS(1885), + [anon_sym_make] = ACTIONS(1885), + [anon_sym_while] = ACTIONS(1885), + [anon_sym_do] = ACTIONS(1885), + [anon_sym_if] = ACTIONS(1885), + [anon_sym_else] = ACTIONS(1885), + [anon_sym_match] = ACTIONS(1885), + [anon_sym_RBRACE] = ACTIONS(1885), + [anon_sym_try] = ACTIONS(1885), + [anon_sym_catch] = ACTIONS(1885), + [anon_sym_return] = ACTIONS(1885), + [anon_sym_source] = ACTIONS(1885), + [anon_sym_source_DASHenv] = ACTIONS(1885), + [anon_sym_hide] = ACTIONS(1885), + [anon_sym_hide_DASHenv] = ACTIONS(1885), + [anon_sym_overlay] = ACTIONS(1885), + [anon_sym_as] = ACTIONS(1885), + [anon_sym_PLUS2] = ACTIONS(1885), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1885), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1885), + [aux_sym__val_number_decimal_token1] = ACTIONS(1885), + [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), + [aux_sym__val_number_token4] = ACTIONS(1885), + [aux_sym__val_number_token5] = ACTIONS(1885), + [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(1885), + [sym__entry_separator] = ACTIONS(1887), + [anon_sym_register] = ACTIONS(1885), + [anon_sym_DOT2] = ACTIONS(1837), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1861), + [sym_raw_string_begin] = ACTIONS(1887), }, - [394] = { - [sym_comment] = STATE(394), - [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(1837), - [aux_sym_cmd_identifier_token3] = ACTIONS(1837), - [aux_sym_cmd_identifier_token4] = ACTIONS(1837), - [aux_sym_cmd_identifier_token5] = ACTIONS(1837), - [aux_sym_cmd_identifier_token6] = ACTIONS(1837), - [aux_sym_cmd_identifier_token7] = ACTIONS(1837), - [aux_sym_cmd_identifier_token8] = ACTIONS(1835), - [aux_sym_cmd_identifier_token9] = ACTIONS(1835), - [aux_sym_cmd_identifier_token10] = ACTIONS(1837), - [aux_sym_cmd_identifier_token11] = ACTIONS(1837), - [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(1837), - [aux_sym_cmd_identifier_token17] = ACTIONS(1837), - [aux_sym_cmd_identifier_token18] = ACTIONS(1837), - [aux_sym_cmd_identifier_token19] = ACTIONS(1837), - [aux_sym_cmd_identifier_token20] = ACTIONS(1837), - [aux_sym_cmd_identifier_token21] = ACTIONS(1837), - [aux_sym_cmd_identifier_token22] = ACTIONS(1837), - [aux_sym_cmd_identifier_token23] = ACTIONS(1837), - [aux_sym_cmd_identifier_token24] = ACTIONS(1837), - [aux_sym_cmd_identifier_token25] = ACTIONS(1837), - [aux_sym_cmd_identifier_token26] = ACTIONS(1837), - [aux_sym_cmd_identifier_token27] = ACTIONS(1837), - [aux_sym_cmd_identifier_token28] = ACTIONS(1837), - [aux_sym_cmd_identifier_token29] = ACTIONS(1837), - [aux_sym_cmd_identifier_token30] = ACTIONS(1837), - [aux_sym_cmd_identifier_token31] = ACTIONS(1837), - [aux_sym_cmd_identifier_token32] = ACTIONS(1837), - [aux_sym_cmd_identifier_token33] = ACTIONS(1837), - [aux_sym_cmd_identifier_token34] = ACTIONS(1835), - [aux_sym_cmd_identifier_token35] = ACTIONS(1837), - [aux_sym_cmd_identifier_token36] = ACTIONS(1837), - [aux_sym_cmd_identifier_token37] = 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(1835), - [anon_sym_COMMA] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1835), - [anon_sym_error] = ACTIONS(1835), - [anon_sym_DASH2] = ACTIONS(1835), - [anon_sym_break] = ACTIONS(1835), - [anon_sym_continue] = ACTIONS(1835), - [anon_sym_for] = ACTIONS(1835), - [anon_sym_in2] = 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_as] = ACTIONS(1835), - [anon_sym_LPAREN2] = ACTIONS(1837), - [anon_sym_PLUS2] = ACTIONS(1835), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1837), - [anon_sym_DOT_DOT2] = ACTIONS(1835), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1837), - [anon_sym_DOT_DOT_LT2] = 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), - [aux_sym__val_number_token4] = ACTIONS(1835), - [aux_sym__val_number_token5] = ACTIONS(1835), - [aux_sym__val_number_token6] = ACTIONS(1835), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1837), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1835), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1837), + [408] = { + [sym_cell_path] = STATE(627), + [sym_path] = STATE(559), + [sym_comment] = STATE(408), + [aux_sym_cell_path_repeat1] = STATE(446), + [anon_sym_export] = ACTIONS(1889), + [anon_sym_alias] = ACTIONS(1889), + [anon_sym_let] = ACTIONS(1889), + [anon_sym_let_DASHenv] = ACTIONS(1889), + [anon_sym_mut] = ACTIONS(1889), + [anon_sym_const] = ACTIONS(1889), + [aux_sym_cmd_identifier_token1] = ACTIONS(1889), + [aux_sym_cmd_identifier_token2] = ACTIONS(1889), + [aux_sym_cmd_identifier_token3] = ACTIONS(1889), + [aux_sym_cmd_identifier_token4] = ACTIONS(1889), + [aux_sym_cmd_identifier_token5] = ACTIONS(1889), + [aux_sym_cmd_identifier_token6] = ACTIONS(1889), + [aux_sym_cmd_identifier_token7] = ACTIONS(1889), + [aux_sym_cmd_identifier_token8] = ACTIONS(1889), + [aux_sym_cmd_identifier_token9] = ACTIONS(1889), + [aux_sym_cmd_identifier_token10] = ACTIONS(1889), + [aux_sym_cmd_identifier_token11] = ACTIONS(1889), + [aux_sym_cmd_identifier_token12] = ACTIONS(1889), + [aux_sym_cmd_identifier_token13] = ACTIONS(1889), + [aux_sym_cmd_identifier_token14] = ACTIONS(1889), + [aux_sym_cmd_identifier_token15] = ACTIONS(1889), + [aux_sym_cmd_identifier_token16] = ACTIONS(1889), + [aux_sym_cmd_identifier_token17] = ACTIONS(1889), + [aux_sym_cmd_identifier_token18] = ACTIONS(1889), + [aux_sym_cmd_identifier_token19] = ACTIONS(1889), + [aux_sym_cmd_identifier_token20] = ACTIONS(1889), + [aux_sym_cmd_identifier_token21] = ACTIONS(1889), + [aux_sym_cmd_identifier_token22] = ACTIONS(1889), + [aux_sym_cmd_identifier_token23] = ACTIONS(1889), + [aux_sym_cmd_identifier_token24] = ACTIONS(1889), + [aux_sym_cmd_identifier_token25] = ACTIONS(1889), + [aux_sym_cmd_identifier_token26] = ACTIONS(1889), + [aux_sym_cmd_identifier_token27] = ACTIONS(1889), + [aux_sym_cmd_identifier_token28] = ACTIONS(1889), + [aux_sym_cmd_identifier_token29] = ACTIONS(1889), + [aux_sym_cmd_identifier_token30] = ACTIONS(1889), + [aux_sym_cmd_identifier_token31] = ACTIONS(1889), + [aux_sym_cmd_identifier_token32] = ACTIONS(1889), + [aux_sym_cmd_identifier_token33] = ACTIONS(1889), + [aux_sym_cmd_identifier_token34] = ACTIONS(1889), + [aux_sym_cmd_identifier_token35] = ACTIONS(1889), + [aux_sym_cmd_identifier_token36] = ACTIONS(1889), + [aux_sym_cmd_identifier_token37] = ACTIONS(1889), + [aux_sym_cmd_identifier_token38] = ACTIONS(1889), + [aux_sym_cmd_identifier_token39] = ACTIONS(1889), + [aux_sym_cmd_identifier_token40] = ACTIONS(1889), + [anon_sym_def] = ACTIONS(1889), + [anon_sym_export_DASHenv] = ACTIONS(1889), + [anon_sym_extern] = ACTIONS(1889), + [anon_sym_module] = ACTIONS(1889), + [anon_sym_use] = ACTIONS(1889), + [anon_sym_LPAREN] = ACTIONS(1889), + [anon_sym_COMMA] = ACTIONS(1889), + [anon_sym_DOLLAR] = ACTIONS(1889), + [anon_sym_error] = ACTIONS(1889), + [anon_sym_DASH2] = ACTIONS(1889), + [anon_sym_break] = ACTIONS(1889), + [anon_sym_continue] = ACTIONS(1889), + [anon_sym_for] = ACTIONS(1889), + [anon_sym_in2] = ACTIONS(1889), + [anon_sym_loop] = ACTIONS(1889), + [anon_sym_make] = ACTIONS(1889), + [anon_sym_while] = ACTIONS(1889), + [anon_sym_do] = ACTIONS(1889), + [anon_sym_if] = ACTIONS(1889), + [anon_sym_else] = ACTIONS(1889), + [anon_sym_match] = ACTIONS(1889), + [anon_sym_RBRACE] = ACTIONS(1889), + [anon_sym_try] = ACTIONS(1889), + [anon_sym_catch] = ACTIONS(1889), + [anon_sym_return] = ACTIONS(1889), + [anon_sym_source] = ACTIONS(1889), + [anon_sym_source_DASHenv] = ACTIONS(1889), + [anon_sym_hide] = ACTIONS(1889), + [anon_sym_hide_DASHenv] = ACTIONS(1889), + [anon_sym_overlay] = ACTIONS(1889), + [anon_sym_as] = ACTIONS(1889), + [anon_sym_PLUS2] = ACTIONS(1889), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1889), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1889), + [aux_sym__val_number_decimal_token1] = ACTIONS(1889), + [aux_sym__val_number_decimal_token2] = ACTIONS(1889), + [aux_sym__val_number_decimal_token3] = ACTIONS(1889), + [aux_sym__val_number_decimal_token4] = ACTIONS(1889), + [aux_sym__val_number_token1] = ACTIONS(1889), + [aux_sym__val_number_token2] = ACTIONS(1889), + [aux_sym__val_number_token3] = ACTIONS(1889), + [aux_sym__val_number_token4] = ACTIONS(1889), + [aux_sym__val_number_token5] = ACTIONS(1889), + [aux_sym__val_number_token6] = ACTIONS(1889), + [anon_sym_DQUOTE] = ACTIONS(1889), + [sym__str_single_quotes] = ACTIONS(1889), + [sym__str_back_ticks] = ACTIONS(1889), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1889), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1889), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1889), + [sym__entry_separator] = ACTIONS(1891), + [anon_sym_register] = ACTIONS(1889), + [anon_sym_DOT2] = ACTIONS(1837), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1891), }, - [395] = { - [sym_comment] = STATE(395), - [anon_sym_export] = ACTIONS(984), - [anon_sym_alias] = ACTIONS(984), - [anon_sym_let] = ACTIONS(984), - [anon_sym_let_DASHenv] = ACTIONS(984), - [anon_sym_mut] = ACTIONS(984), - [anon_sym_const] = ACTIONS(984), - [aux_sym_cmd_identifier_token1] = ACTIONS(984), - [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(984), - [aux_sym_cmd_identifier_token9] = ACTIONS(984), - [aux_sym_cmd_identifier_token10] = ACTIONS(986), - [aux_sym_cmd_identifier_token11] = ACTIONS(986), - [aux_sym_cmd_identifier_token12] = ACTIONS(984), - [aux_sym_cmd_identifier_token13] = ACTIONS(984), - [aux_sym_cmd_identifier_token14] = ACTIONS(984), - [aux_sym_cmd_identifier_token15] = ACTIONS(984), - [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(984), - [aux_sym_cmd_identifier_token35] = ACTIONS(986), - [aux_sym_cmd_identifier_token36] = ACTIONS(986), - [aux_sym_cmd_identifier_token37] = ACTIONS(986), - [aux_sym_cmd_identifier_token38] = ACTIONS(984), - [aux_sym_cmd_identifier_token39] = ACTIONS(986), - [aux_sym_cmd_identifier_token40] = ACTIONS(986), - [anon_sym_def] = ACTIONS(984), - [anon_sym_export_DASHenv] = ACTIONS(984), - [anon_sym_extern] = ACTIONS(984), - [anon_sym_module] = ACTIONS(984), - [anon_sym_use] = ACTIONS(984), - [anon_sym_LPAREN] = ACTIONS(986), - [anon_sym_COMMA] = ACTIONS(986), - [anon_sym_DOLLAR] = ACTIONS(984), - [anon_sym_error] = ACTIONS(984), - [anon_sym_DASH2] = ACTIONS(984), - [anon_sym_break] = ACTIONS(984), - [anon_sym_continue] = ACTIONS(984), - [anon_sym_for] = ACTIONS(984), - [anon_sym_in2] = ACTIONS(984), - [anon_sym_loop] = ACTIONS(984), - [anon_sym_make] = ACTIONS(984), - [anon_sym_while] = ACTIONS(984), - [anon_sym_do] = ACTIONS(984), - [anon_sym_if] = ACTIONS(984), - [anon_sym_else] = ACTIONS(984), - [anon_sym_match] = ACTIONS(984), - [anon_sym_RBRACE] = ACTIONS(986), - [anon_sym_try] = ACTIONS(984), - [anon_sym_catch] = ACTIONS(984), - [anon_sym_return] = ACTIONS(984), - [anon_sym_source] = ACTIONS(984), - [anon_sym_source_DASHenv] = ACTIONS(984), - [anon_sym_register] = ACTIONS(984), - [anon_sym_hide] = ACTIONS(984), - [anon_sym_hide_DASHenv] = ACTIONS(984), - [anon_sym_overlay] = ACTIONS(984), - [anon_sym_as] = ACTIONS(984), - [anon_sym_QMARK2] = ACTIONS(986), - [anon_sym_PLUS2] = ACTIONS(984), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(986), - [anon_sym_DOT_DOT2] = ACTIONS(984), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), - [anon_sym_DOT_DOT_LT2] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(986), - [aux_sym__val_number_decimal_token1] = ACTIONS(984), - [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), - [aux_sym__val_number_token4] = ACTIONS(984), - [aux_sym__val_number_token5] = ACTIONS(984), - [aux_sym__val_number_token6] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym__str_single_quotes] = ACTIONS(986), - [sym__str_back_ticks] = ACTIONS(986), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(986), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(986), - [anon_sym_DOT2] = ACTIONS(984), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(986), + [409] = { + [sym_cell_path] = STATE(615), + [sym_path] = STATE(559), + [sym_comment] = STATE(409), + [aux_sym_cell_path_repeat1] = STATE(446), + [anon_sym_export] = ACTIONS(1893), + [anon_sym_alias] = ACTIONS(1893), + [anon_sym_let] = ACTIONS(1893), + [anon_sym_let_DASHenv] = ACTIONS(1893), + [anon_sym_mut] = ACTIONS(1893), + [anon_sym_const] = ACTIONS(1893), + [aux_sym_cmd_identifier_token1] = ACTIONS(1893), + [aux_sym_cmd_identifier_token2] = ACTIONS(1893), + [aux_sym_cmd_identifier_token3] = ACTIONS(1893), + [aux_sym_cmd_identifier_token4] = ACTIONS(1893), + [aux_sym_cmd_identifier_token5] = ACTIONS(1893), + [aux_sym_cmd_identifier_token6] = ACTIONS(1893), + [aux_sym_cmd_identifier_token7] = ACTIONS(1893), + [aux_sym_cmd_identifier_token8] = ACTIONS(1893), + [aux_sym_cmd_identifier_token9] = ACTIONS(1893), + [aux_sym_cmd_identifier_token10] = ACTIONS(1893), + [aux_sym_cmd_identifier_token11] = ACTIONS(1893), + [aux_sym_cmd_identifier_token12] = ACTIONS(1893), + [aux_sym_cmd_identifier_token13] = ACTIONS(1893), + [aux_sym_cmd_identifier_token14] = ACTIONS(1893), + [aux_sym_cmd_identifier_token15] = ACTIONS(1893), + [aux_sym_cmd_identifier_token16] = ACTIONS(1893), + [aux_sym_cmd_identifier_token17] = ACTIONS(1893), + [aux_sym_cmd_identifier_token18] = ACTIONS(1893), + [aux_sym_cmd_identifier_token19] = ACTIONS(1893), + [aux_sym_cmd_identifier_token20] = ACTIONS(1893), + [aux_sym_cmd_identifier_token21] = ACTIONS(1893), + [aux_sym_cmd_identifier_token22] = ACTIONS(1893), + [aux_sym_cmd_identifier_token23] = ACTIONS(1893), + [aux_sym_cmd_identifier_token24] = ACTIONS(1893), + [aux_sym_cmd_identifier_token25] = ACTIONS(1893), + [aux_sym_cmd_identifier_token26] = ACTIONS(1893), + [aux_sym_cmd_identifier_token27] = ACTIONS(1893), + [aux_sym_cmd_identifier_token28] = ACTIONS(1893), + [aux_sym_cmd_identifier_token29] = ACTIONS(1893), + [aux_sym_cmd_identifier_token30] = ACTIONS(1893), + [aux_sym_cmd_identifier_token31] = ACTIONS(1893), + [aux_sym_cmd_identifier_token32] = ACTIONS(1893), + [aux_sym_cmd_identifier_token33] = ACTIONS(1893), + [aux_sym_cmd_identifier_token34] = ACTIONS(1893), + [aux_sym_cmd_identifier_token35] = ACTIONS(1893), + [aux_sym_cmd_identifier_token36] = ACTIONS(1893), + [aux_sym_cmd_identifier_token37] = ACTIONS(1893), + [aux_sym_cmd_identifier_token38] = ACTIONS(1893), + [aux_sym_cmd_identifier_token39] = ACTIONS(1893), + [aux_sym_cmd_identifier_token40] = ACTIONS(1893), + [anon_sym_def] = ACTIONS(1893), + [anon_sym_export_DASHenv] = ACTIONS(1893), + [anon_sym_extern] = ACTIONS(1893), + [anon_sym_module] = ACTIONS(1893), + [anon_sym_use] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1893), + [anon_sym_COMMA] = ACTIONS(1893), + [anon_sym_DOLLAR] = ACTIONS(1893), + [anon_sym_error] = ACTIONS(1893), + [anon_sym_DASH2] = ACTIONS(1893), + [anon_sym_break] = ACTIONS(1893), + [anon_sym_continue] = ACTIONS(1893), + [anon_sym_for] = ACTIONS(1893), + [anon_sym_in2] = ACTIONS(1893), + [anon_sym_loop] = ACTIONS(1893), + [anon_sym_make] = ACTIONS(1893), + [anon_sym_while] = ACTIONS(1893), + [anon_sym_do] = ACTIONS(1893), + [anon_sym_if] = ACTIONS(1893), + [anon_sym_else] = ACTIONS(1893), + [anon_sym_match] = ACTIONS(1893), + [anon_sym_RBRACE] = ACTIONS(1893), + [anon_sym_try] = ACTIONS(1893), + [anon_sym_catch] = ACTIONS(1893), + [anon_sym_return] = ACTIONS(1893), + [anon_sym_source] = ACTIONS(1893), + [anon_sym_source_DASHenv] = ACTIONS(1893), + [anon_sym_hide] = ACTIONS(1893), + [anon_sym_hide_DASHenv] = ACTIONS(1893), + [anon_sym_overlay] = ACTIONS(1893), + [anon_sym_as] = ACTIONS(1893), + [anon_sym_PLUS2] = ACTIONS(1893), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1893), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1893), + [aux_sym__val_number_decimal_token1] = ACTIONS(1893), + [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), + [aux_sym__val_number_token4] = ACTIONS(1893), + [aux_sym__val_number_token5] = ACTIONS(1893), + [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(1893), + [sym__entry_separator] = ACTIONS(1895), + [anon_sym_register] = ACTIONS(1893), + [anon_sym_DOT2] = ACTIONS(1837), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1895), }, - [396] = { - [sym_comment] = STATE(396), - [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), + [410] = { + [sym_cell_path] = STATE(645), + [sym_path] = STATE(559), + [sym_comment] = STATE(410), + [aux_sym_cell_path_repeat1] = STATE(446), + [anon_sym_export] = ACTIONS(1897), + [anon_sym_alias] = ACTIONS(1897), + [anon_sym_let] = ACTIONS(1897), + [anon_sym_let_DASHenv] = ACTIONS(1897), + [anon_sym_mut] = ACTIONS(1897), + [anon_sym_const] = ACTIONS(1897), + [aux_sym_cmd_identifier_token1] = ACTIONS(1897), + [aux_sym_cmd_identifier_token2] = ACTIONS(1897), + [aux_sym_cmd_identifier_token3] = ACTIONS(1897), + [aux_sym_cmd_identifier_token4] = ACTIONS(1897), + [aux_sym_cmd_identifier_token5] = ACTIONS(1897), + [aux_sym_cmd_identifier_token6] = ACTIONS(1897), + [aux_sym_cmd_identifier_token7] = ACTIONS(1897), + [aux_sym_cmd_identifier_token8] = ACTIONS(1897), + [aux_sym_cmd_identifier_token9] = ACTIONS(1897), + [aux_sym_cmd_identifier_token10] = ACTIONS(1897), + [aux_sym_cmd_identifier_token11] = ACTIONS(1897), + [aux_sym_cmd_identifier_token12] = ACTIONS(1897), + [aux_sym_cmd_identifier_token13] = ACTIONS(1897), + [aux_sym_cmd_identifier_token14] = ACTIONS(1897), + [aux_sym_cmd_identifier_token15] = ACTIONS(1897), + [aux_sym_cmd_identifier_token16] = ACTIONS(1897), + [aux_sym_cmd_identifier_token17] = ACTIONS(1897), + [aux_sym_cmd_identifier_token18] = ACTIONS(1897), + [aux_sym_cmd_identifier_token19] = ACTIONS(1897), + [aux_sym_cmd_identifier_token20] = ACTIONS(1897), + [aux_sym_cmd_identifier_token21] = ACTIONS(1897), + [aux_sym_cmd_identifier_token22] = ACTIONS(1897), + [aux_sym_cmd_identifier_token23] = ACTIONS(1897), + [aux_sym_cmd_identifier_token24] = ACTIONS(1897), + [aux_sym_cmd_identifier_token25] = ACTIONS(1897), + [aux_sym_cmd_identifier_token26] = ACTIONS(1897), + [aux_sym_cmd_identifier_token27] = ACTIONS(1897), + [aux_sym_cmd_identifier_token28] = ACTIONS(1897), + [aux_sym_cmd_identifier_token29] = ACTIONS(1897), + [aux_sym_cmd_identifier_token30] = ACTIONS(1897), + [aux_sym_cmd_identifier_token31] = ACTIONS(1897), + [aux_sym_cmd_identifier_token32] = ACTIONS(1897), + [aux_sym_cmd_identifier_token33] = ACTIONS(1897), + [aux_sym_cmd_identifier_token34] = ACTIONS(1897), + [aux_sym_cmd_identifier_token35] = ACTIONS(1897), + [aux_sym_cmd_identifier_token36] = ACTIONS(1897), + [aux_sym_cmd_identifier_token37] = ACTIONS(1897), + [aux_sym_cmd_identifier_token38] = ACTIONS(1897), + [aux_sym_cmd_identifier_token39] = ACTIONS(1897), + [aux_sym_cmd_identifier_token40] = ACTIONS(1897), + [anon_sym_def] = ACTIONS(1897), + [anon_sym_export_DASHenv] = ACTIONS(1897), + [anon_sym_extern] = ACTIONS(1897), + [anon_sym_module] = ACTIONS(1897), + [anon_sym_use] = ACTIONS(1897), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_COMMA] = ACTIONS(1897), + [anon_sym_DOLLAR] = ACTIONS(1897), + [anon_sym_error] = ACTIONS(1897), + [anon_sym_DASH2] = ACTIONS(1897), + [anon_sym_break] = ACTIONS(1897), + [anon_sym_continue] = ACTIONS(1897), + [anon_sym_for] = ACTIONS(1897), + [anon_sym_in2] = ACTIONS(1897), + [anon_sym_loop] = ACTIONS(1897), + [anon_sym_make] = ACTIONS(1897), + [anon_sym_while] = ACTIONS(1897), + [anon_sym_do] = ACTIONS(1897), + [anon_sym_if] = ACTIONS(1897), + [anon_sym_else] = ACTIONS(1897), + [anon_sym_match] = ACTIONS(1897), + [anon_sym_RBRACE] = ACTIONS(1897), + [anon_sym_try] = ACTIONS(1897), + [anon_sym_catch] = ACTIONS(1897), + [anon_sym_return] = ACTIONS(1897), + [anon_sym_source] = ACTIONS(1897), + [anon_sym_source_DASHenv] = ACTIONS(1897), + [anon_sym_hide] = ACTIONS(1897), + [anon_sym_hide_DASHenv] = ACTIONS(1897), + [anon_sym_overlay] = ACTIONS(1897), + [anon_sym_as] = ACTIONS(1897), + [anon_sym_PLUS2] = ACTIONS(1897), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1897), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1897), + [aux_sym__val_number_decimal_token1] = ACTIONS(1897), + [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), + [aux_sym__val_number_token4] = ACTIONS(1897), + [aux_sym__val_number_token5] = ACTIONS(1897), + [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(1897), + [sym__entry_separator] = ACTIONS(1899), + [anon_sym_register] = ACTIONS(1897), + [anon_sym_DOT2] = ACTIONS(1837), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1899), + }, + [411] = { + [sym_comment] = STATE(411), + [anon_sym_export] = ACTIONS(982), + [anon_sym_alias] = ACTIONS(982), + [anon_sym_let] = ACTIONS(982), + [anon_sym_let_DASHenv] = ACTIONS(982), + [anon_sym_mut] = ACTIONS(982), + [anon_sym_const] = ACTIONS(982), + [aux_sym_cmd_identifier_token1] = ACTIONS(982), [aux_sym_cmd_identifier_token2] = ACTIONS(982), [aux_sym_cmd_identifier_token3] = ACTIONS(982), [aux_sym_cmd_identifier_token4] = ACTIONS(982), [aux_sym_cmd_identifier_token5] = ACTIONS(982), [aux_sym_cmd_identifier_token6] = ACTIONS(982), [aux_sym_cmd_identifier_token7] = ACTIONS(982), - [aux_sym_cmd_identifier_token8] = ACTIONS(980), - [aux_sym_cmd_identifier_token9] = ACTIONS(980), + [aux_sym_cmd_identifier_token8] = ACTIONS(982), + [aux_sym_cmd_identifier_token9] = ACTIONS(982), [aux_sym_cmd_identifier_token10] = ACTIONS(982), [aux_sym_cmd_identifier_token11] = ACTIONS(982), - [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_token12] = ACTIONS(982), + [aux_sym_cmd_identifier_token13] = ACTIONS(982), + [aux_sym_cmd_identifier_token14] = ACTIONS(982), + [aux_sym_cmd_identifier_token15] = ACTIONS(982), [aux_sym_cmd_identifier_token16] = ACTIONS(982), [aux_sym_cmd_identifier_token17] = ACTIONS(982), [aux_sym_cmd_identifier_token18] = ACTIONS(982), @@ -125412,1682 +126954,398 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(982), [aux_sym_cmd_identifier_token32] = ACTIONS(982), [aux_sym_cmd_identifier_token33] = ACTIONS(982), - [aux_sym_cmd_identifier_token34] = ACTIONS(980), + [aux_sym_cmd_identifier_token34] = ACTIONS(982), [aux_sym_cmd_identifier_token35] = ACTIONS(982), [aux_sym_cmd_identifier_token36] = ACTIONS(982), [aux_sym_cmd_identifier_token37] = ACTIONS(982), - [aux_sym_cmd_identifier_token38] = ACTIONS(980), + [aux_sym_cmd_identifier_token38] = ACTIONS(982), [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_def] = ACTIONS(982), + [anon_sym_export_DASHenv] = ACTIONS(982), + [anon_sym_extern] = ACTIONS(982), + [anon_sym_module] = ACTIONS(982), + [anon_sym_use] = ACTIONS(982), [anon_sym_LPAREN] = ACTIONS(982), [anon_sym_COMMA] = ACTIONS(982), - [anon_sym_DOLLAR] = ACTIONS(980), - [anon_sym_error] = ACTIONS(980), - [anon_sym_DASH2] = ACTIONS(980), - [anon_sym_break] = ACTIONS(980), - [anon_sym_continue] = ACTIONS(980), - [anon_sym_for] = ACTIONS(980), - [anon_sym_in2] = 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_DOLLAR] = ACTIONS(982), + [anon_sym_error] = ACTIONS(982), + [anon_sym_DASH2] = ACTIONS(982), + [anon_sym_break] = ACTIONS(982), + [anon_sym_continue] = ACTIONS(982), + [anon_sym_for] = ACTIONS(982), + [anon_sym_in2] = ACTIONS(982), + [anon_sym_loop] = ACTIONS(982), + [anon_sym_make] = ACTIONS(982), + [anon_sym_while] = ACTIONS(982), + [anon_sym_do] = ACTIONS(982), + [anon_sym_if] = ACTIONS(982), + [anon_sym_else] = ACTIONS(982), + [anon_sym_match] = ACTIONS(982), [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_as] = ACTIONS(980), - [anon_sym_QMARK2] = ACTIONS(982), - [anon_sym_PLUS2] = ACTIONS(980), + [anon_sym_try] = ACTIONS(982), + [anon_sym_catch] = ACTIONS(982), + [anon_sym_return] = ACTIONS(982), + [anon_sym_source] = ACTIONS(982), + [anon_sym_source_DASHenv] = ACTIONS(982), + [anon_sym_hide] = ACTIONS(982), + [anon_sym_hide_DASHenv] = ACTIONS(982), + [anon_sym_overlay] = ACTIONS(982), + [anon_sym_as] = ACTIONS(982), + [anon_sym_PLUS2] = ACTIONS(982), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(982), - [anon_sym_DOT_DOT2] = ACTIONS(980), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(982), - [anon_sym_DOT_DOT_LT2] = ACTIONS(982), + [anon_sym_DOT_DOT2] = ACTIONS(982), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(984), + [anon_sym_DOT_DOT_LT2] = ACTIONS(984), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(982), - [aux_sym__val_number_decimal_token1] = ACTIONS(980), + [aux_sym__val_number_decimal_token1] = ACTIONS(982), [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), - [aux_sym__val_number_token4] = ACTIONS(980), - [aux_sym__val_number_token5] = ACTIONS(980), - [aux_sym__val_number_token6] = ACTIONS(980), + [aux_sym__val_number_token4] = ACTIONS(982), + [aux_sym__val_number_token5] = ACTIONS(982), + [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(982), - [anon_sym_DOT2] = ACTIONS(980), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(982), + [sym__entry_separator] = ACTIONS(984), + [anon_sym_register] = ACTIONS(982), + [anon_sym_DOT2] = ACTIONS(982), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(984), }, - [397] = { - [sym_comment] = STATE(397), - [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(968), - [aux_sym_cmd_identifier_token3] = ACTIONS(968), - [aux_sym_cmd_identifier_token4] = ACTIONS(968), - [aux_sym_cmd_identifier_token5] = ACTIONS(968), - [aux_sym_cmd_identifier_token6] = ACTIONS(968), - [aux_sym_cmd_identifier_token7] = ACTIONS(968), - [aux_sym_cmd_identifier_token8] = ACTIONS(966), - [aux_sym_cmd_identifier_token9] = ACTIONS(966), - [aux_sym_cmd_identifier_token10] = ACTIONS(968), - [aux_sym_cmd_identifier_token11] = ACTIONS(968), - [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(968), - [aux_sym_cmd_identifier_token17] = ACTIONS(968), - [aux_sym_cmd_identifier_token18] = ACTIONS(968), - [aux_sym_cmd_identifier_token19] = ACTIONS(968), - [aux_sym_cmd_identifier_token20] = ACTIONS(968), - [aux_sym_cmd_identifier_token21] = ACTIONS(968), - [aux_sym_cmd_identifier_token22] = ACTIONS(968), - [aux_sym_cmd_identifier_token23] = ACTIONS(968), - [aux_sym_cmd_identifier_token24] = ACTIONS(968), - [aux_sym_cmd_identifier_token25] = ACTIONS(968), - [aux_sym_cmd_identifier_token26] = ACTIONS(968), - [aux_sym_cmd_identifier_token27] = ACTIONS(968), - [aux_sym_cmd_identifier_token28] = ACTIONS(968), - [aux_sym_cmd_identifier_token29] = ACTIONS(968), - [aux_sym_cmd_identifier_token30] = ACTIONS(968), - [aux_sym_cmd_identifier_token31] = ACTIONS(968), - [aux_sym_cmd_identifier_token32] = ACTIONS(968), - [aux_sym_cmd_identifier_token33] = ACTIONS(968), - [aux_sym_cmd_identifier_token34] = ACTIONS(966), - [aux_sym_cmd_identifier_token35] = ACTIONS(968), - [aux_sym_cmd_identifier_token36] = ACTIONS(968), - [aux_sym_cmd_identifier_token37] = 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(966), - [anon_sym_error] = ACTIONS(966), - [anon_sym_DASH2] = ACTIONS(966), - [anon_sym_break] = ACTIONS(966), - [anon_sym_continue] = ACTIONS(966), - [anon_sym_for] = ACTIONS(966), - [anon_sym_in2] = 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_as] = ACTIONS(966), - [anon_sym_QMARK2] = ACTIONS(1863), - [anon_sym_PLUS2] = ACTIONS(966), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(968), - [anon_sym_DOT_DOT2] = 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), - [aux_sym__val_number_token4] = ACTIONS(966), - [aux_sym__val_number_token5] = ACTIONS(966), - [aux_sym__val_number_token6] = ACTIONS(966), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(968), - [anon_sym_DOT2] = ACTIONS(966), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(968), + [412] = { + [sym_comment] = STATE(412), + [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(1703), + [aux_sym_cmd_identifier_token3] = ACTIONS(1703), + [aux_sym_cmd_identifier_token4] = ACTIONS(1703), + [aux_sym_cmd_identifier_token5] = ACTIONS(1703), + [aux_sym_cmd_identifier_token6] = ACTIONS(1703), + [aux_sym_cmd_identifier_token7] = ACTIONS(1703), + [aux_sym_cmd_identifier_token8] = ACTIONS(1701), + [aux_sym_cmd_identifier_token9] = ACTIONS(1701), + [aux_sym_cmd_identifier_token10] = ACTIONS(1703), + [aux_sym_cmd_identifier_token11] = ACTIONS(1703), + [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(1703), + [aux_sym_cmd_identifier_token17] = ACTIONS(1703), + [aux_sym_cmd_identifier_token18] = ACTIONS(1703), + [aux_sym_cmd_identifier_token19] = ACTIONS(1703), + [aux_sym_cmd_identifier_token20] = ACTIONS(1703), + [aux_sym_cmd_identifier_token21] = ACTIONS(1703), + [aux_sym_cmd_identifier_token22] = ACTIONS(1703), + [aux_sym_cmd_identifier_token23] = ACTIONS(1703), + [aux_sym_cmd_identifier_token24] = ACTIONS(1703), + [aux_sym_cmd_identifier_token25] = ACTIONS(1703), + [aux_sym_cmd_identifier_token26] = ACTIONS(1703), + [aux_sym_cmd_identifier_token27] = ACTIONS(1703), + [aux_sym_cmd_identifier_token28] = ACTIONS(1703), + [aux_sym_cmd_identifier_token29] = ACTIONS(1703), + [aux_sym_cmd_identifier_token30] = ACTIONS(1703), + [aux_sym_cmd_identifier_token31] = ACTIONS(1703), + [aux_sym_cmd_identifier_token32] = ACTIONS(1703), + [aux_sym_cmd_identifier_token33] = ACTIONS(1703), + [aux_sym_cmd_identifier_token34] = ACTIONS(1701), + [aux_sym_cmd_identifier_token35] = ACTIONS(1703), + [aux_sym_cmd_identifier_token36] = ACTIONS(1703), + [aux_sym_cmd_identifier_token37] = ACTIONS(1703), + [aux_sym_cmd_identifier_token38] = ACTIONS(1701), + [aux_sym_cmd_identifier_token39] = ACTIONS(1703), + [aux_sym_cmd_identifier_token40] = ACTIONS(1703), + [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_COMMA] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_error] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_in2] = 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(1703), + [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_hide] = ACTIONS(1701), + [anon_sym_hide_DASHenv] = ACTIONS(1701), + [anon_sym_overlay] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1703), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1701), + [aux_sym__val_number_token5] = ACTIONS(1701), + [aux_sym__val_number_token6] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1701), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1703), }, - [398] = { - [sym_comment] = STATE(398), - [anon_sym_export] = ACTIONS(1802), - [anon_sym_alias] = ACTIONS(1802), - [anon_sym_let] = ACTIONS(1802), - [anon_sym_let_DASHenv] = ACTIONS(1802), - [anon_sym_mut] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [aux_sym_cmd_identifier_token1] = ACTIONS(1802), - [aux_sym_cmd_identifier_token2] = ACTIONS(1810), - [aux_sym_cmd_identifier_token3] = ACTIONS(1810), - [aux_sym_cmd_identifier_token4] = ACTIONS(1810), - [aux_sym_cmd_identifier_token5] = ACTIONS(1810), - [aux_sym_cmd_identifier_token6] = ACTIONS(1810), - [aux_sym_cmd_identifier_token7] = ACTIONS(1810), - [aux_sym_cmd_identifier_token8] = ACTIONS(1802), - [aux_sym_cmd_identifier_token9] = ACTIONS(1802), - [aux_sym_cmd_identifier_token10] = ACTIONS(1810), - [aux_sym_cmd_identifier_token11] = ACTIONS(1810), - [aux_sym_cmd_identifier_token12] = ACTIONS(1802), - [aux_sym_cmd_identifier_token13] = ACTIONS(1802), - [aux_sym_cmd_identifier_token14] = ACTIONS(1802), - [aux_sym_cmd_identifier_token15] = ACTIONS(1802), - [aux_sym_cmd_identifier_token16] = ACTIONS(1810), - [aux_sym_cmd_identifier_token17] = ACTIONS(1810), - [aux_sym_cmd_identifier_token18] = ACTIONS(1810), - [aux_sym_cmd_identifier_token19] = ACTIONS(1810), - [aux_sym_cmd_identifier_token20] = ACTIONS(1810), - [aux_sym_cmd_identifier_token21] = ACTIONS(1810), - [aux_sym_cmd_identifier_token22] = ACTIONS(1810), - [aux_sym_cmd_identifier_token23] = ACTIONS(1810), - [aux_sym_cmd_identifier_token24] = ACTIONS(1810), - [aux_sym_cmd_identifier_token25] = ACTIONS(1810), - [aux_sym_cmd_identifier_token26] = ACTIONS(1810), - [aux_sym_cmd_identifier_token27] = ACTIONS(1810), - [aux_sym_cmd_identifier_token28] = ACTIONS(1810), - [aux_sym_cmd_identifier_token29] = ACTIONS(1810), - [aux_sym_cmd_identifier_token30] = ACTIONS(1810), - [aux_sym_cmd_identifier_token31] = ACTIONS(1810), - [aux_sym_cmd_identifier_token32] = ACTIONS(1810), - [aux_sym_cmd_identifier_token33] = ACTIONS(1810), - [aux_sym_cmd_identifier_token34] = ACTIONS(1802), - [aux_sym_cmd_identifier_token35] = ACTIONS(1810), - [aux_sym_cmd_identifier_token36] = ACTIONS(1810), - [aux_sym_cmd_identifier_token37] = ACTIONS(1810), - [aux_sym_cmd_identifier_token38] = ACTIONS(1802), - [aux_sym_cmd_identifier_token39] = ACTIONS(1810), - [aux_sym_cmd_identifier_token40] = ACTIONS(1810), - [anon_sym_def] = ACTIONS(1802), - [anon_sym_export_DASHenv] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym_module] = ACTIONS(1802), - [anon_sym_use] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_DOLLAR] = ACTIONS(1802), - [anon_sym_error] = ACTIONS(1802), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_in2] = ACTIONS(1802), - [anon_sym_loop] = ACTIONS(1802), - [anon_sym_make] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_else] = ACTIONS(1802), - [anon_sym_match] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_try] = ACTIONS(1802), - [anon_sym_catch] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_source] = ACTIONS(1802), - [anon_sym_source_DASHenv] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_hide] = ACTIONS(1802), - [anon_sym_hide_DASHenv] = ACTIONS(1802), - [anon_sym_overlay] = ACTIONS(1802), - [anon_sym_as] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_PLUS2] = ACTIONS(1802), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1810), - [anon_sym_DOT_DOT2] = ACTIONS(1865), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1867), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1867), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1810), - [aux_sym__val_number_decimal_token1] = ACTIONS(1802), - [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), - [aux_sym__val_number_token4] = ACTIONS(1802), - [aux_sym__val_number_token5] = ACTIONS(1802), - [aux_sym__val_number_token6] = ACTIONS(1802), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1810), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1477), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1810), + [413] = { + [sym_cell_path] = STATE(648), + [sym_path] = STATE(559), + [sym_comment] = STATE(413), + [aux_sym_cell_path_repeat1] = STATE(446), + [anon_sym_export] = ACTIONS(1901), + [anon_sym_alias] = ACTIONS(1901), + [anon_sym_let] = ACTIONS(1901), + [anon_sym_let_DASHenv] = ACTIONS(1901), + [anon_sym_mut] = ACTIONS(1901), + [anon_sym_const] = ACTIONS(1901), + [aux_sym_cmd_identifier_token1] = ACTIONS(1901), + [aux_sym_cmd_identifier_token2] = ACTIONS(1901), + [aux_sym_cmd_identifier_token3] = ACTIONS(1901), + [aux_sym_cmd_identifier_token4] = ACTIONS(1901), + [aux_sym_cmd_identifier_token5] = ACTIONS(1901), + [aux_sym_cmd_identifier_token6] = ACTIONS(1901), + [aux_sym_cmd_identifier_token7] = ACTIONS(1901), + [aux_sym_cmd_identifier_token8] = ACTIONS(1901), + [aux_sym_cmd_identifier_token9] = ACTIONS(1901), + [aux_sym_cmd_identifier_token10] = ACTIONS(1901), + [aux_sym_cmd_identifier_token11] = ACTIONS(1901), + [aux_sym_cmd_identifier_token12] = ACTIONS(1901), + [aux_sym_cmd_identifier_token13] = ACTIONS(1901), + [aux_sym_cmd_identifier_token14] = ACTIONS(1901), + [aux_sym_cmd_identifier_token15] = ACTIONS(1901), + [aux_sym_cmd_identifier_token16] = ACTIONS(1901), + [aux_sym_cmd_identifier_token17] = ACTIONS(1901), + [aux_sym_cmd_identifier_token18] = ACTIONS(1901), + [aux_sym_cmd_identifier_token19] = ACTIONS(1901), + [aux_sym_cmd_identifier_token20] = ACTIONS(1901), + [aux_sym_cmd_identifier_token21] = ACTIONS(1901), + [aux_sym_cmd_identifier_token22] = ACTIONS(1901), + [aux_sym_cmd_identifier_token23] = ACTIONS(1901), + [aux_sym_cmd_identifier_token24] = ACTIONS(1901), + [aux_sym_cmd_identifier_token25] = ACTIONS(1901), + [aux_sym_cmd_identifier_token26] = ACTIONS(1901), + [aux_sym_cmd_identifier_token27] = ACTIONS(1901), + [aux_sym_cmd_identifier_token28] = ACTIONS(1901), + [aux_sym_cmd_identifier_token29] = ACTIONS(1901), + [aux_sym_cmd_identifier_token30] = ACTIONS(1901), + [aux_sym_cmd_identifier_token31] = ACTIONS(1901), + [aux_sym_cmd_identifier_token32] = ACTIONS(1901), + [aux_sym_cmd_identifier_token33] = ACTIONS(1901), + [aux_sym_cmd_identifier_token34] = ACTIONS(1901), + [aux_sym_cmd_identifier_token35] = ACTIONS(1901), + [aux_sym_cmd_identifier_token36] = ACTIONS(1901), + [aux_sym_cmd_identifier_token37] = ACTIONS(1901), + [aux_sym_cmd_identifier_token38] = ACTIONS(1901), + [aux_sym_cmd_identifier_token39] = ACTIONS(1901), + [aux_sym_cmd_identifier_token40] = ACTIONS(1901), + [anon_sym_def] = ACTIONS(1901), + [anon_sym_export_DASHenv] = ACTIONS(1901), + [anon_sym_extern] = ACTIONS(1901), + [anon_sym_module] = ACTIONS(1901), + [anon_sym_use] = ACTIONS(1901), + [anon_sym_LPAREN] = ACTIONS(1901), + [anon_sym_COMMA] = ACTIONS(1901), + [anon_sym_DOLLAR] = ACTIONS(1901), + [anon_sym_error] = ACTIONS(1901), + [anon_sym_DASH2] = ACTIONS(1901), + [anon_sym_break] = ACTIONS(1901), + [anon_sym_continue] = ACTIONS(1901), + [anon_sym_for] = ACTIONS(1901), + [anon_sym_in2] = ACTIONS(1901), + [anon_sym_loop] = ACTIONS(1901), + [anon_sym_make] = ACTIONS(1901), + [anon_sym_while] = ACTIONS(1901), + [anon_sym_do] = ACTIONS(1901), + [anon_sym_if] = ACTIONS(1901), + [anon_sym_else] = ACTIONS(1901), + [anon_sym_match] = ACTIONS(1901), + [anon_sym_RBRACE] = ACTIONS(1901), + [anon_sym_try] = ACTIONS(1901), + [anon_sym_catch] = ACTIONS(1901), + [anon_sym_return] = ACTIONS(1901), + [anon_sym_source] = ACTIONS(1901), + [anon_sym_source_DASHenv] = ACTIONS(1901), + [anon_sym_hide] = ACTIONS(1901), + [anon_sym_hide_DASHenv] = ACTIONS(1901), + [anon_sym_overlay] = ACTIONS(1901), + [anon_sym_as] = ACTIONS(1901), + [anon_sym_PLUS2] = ACTIONS(1901), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1901), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1901), + [aux_sym__val_number_decimal_token1] = ACTIONS(1901), + [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), + [aux_sym__val_number_token4] = ACTIONS(1901), + [aux_sym__val_number_token5] = ACTIONS(1901), + [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(1901), + [sym__entry_separator] = ACTIONS(1903), + [anon_sym_register] = ACTIONS(1901), + [anon_sym_DOT2] = ACTIONS(1837), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1903), }, - [399] = { - [sym_comment] = STATE(399), - [anon_sym_export] = ACTIONS(1711), - [anon_sym_alias] = ACTIONS(1711), - [anon_sym_let] = ACTIONS(1711), - [anon_sym_let_DASHenv] = ACTIONS(1711), - [anon_sym_mut] = ACTIONS(1711), - [anon_sym_const] = ACTIONS(1711), - [aux_sym_cmd_identifier_token1] = ACTIONS(1711), - [aux_sym_cmd_identifier_token2] = ACTIONS(1711), - [aux_sym_cmd_identifier_token3] = ACTIONS(1711), - [aux_sym_cmd_identifier_token4] = ACTIONS(1711), - [aux_sym_cmd_identifier_token5] = ACTIONS(1711), - [aux_sym_cmd_identifier_token6] = ACTIONS(1711), - [aux_sym_cmd_identifier_token7] = ACTIONS(1711), - [aux_sym_cmd_identifier_token8] = ACTIONS(1711), - [aux_sym_cmd_identifier_token9] = ACTIONS(1711), - [aux_sym_cmd_identifier_token10] = ACTIONS(1711), - [aux_sym_cmd_identifier_token11] = ACTIONS(1711), - [aux_sym_cmd_identifier_token12] = ACTIONS(1711), - [aux_sym_cmd_identifier_token13] = ACTIONS(1711), - [aux_sym_cmd_identifier_token14] = ACTIONS(1711), - [aux_sym_cmd_identifier_token15] = ACTIONS(1711), - [aux_sym_cmd_identifier_token16] = ACTIONS(1711), - [aux_sym_cmd_identifier_token17] = ACTIONS(1711), - [aux_sym_cmd_identifier_token18] = ACTIONS(1711), - [aux_sym_cmd_identifier_token19] = ACTIONS(1711), - [aux_sym_cmd_identifier_token20] = ACTIONS(1711), - [aux_sym_cmd_identifier_token21] = ACTIONS(1711), - [aux_sym_cmd_identifier_token22] = ACTIONS(1711), - [aux_sym_cmd_identifier_token23] = ACTIONS(1711), - [aux_sym_cmd_identifier_token24] = ACTIONS(1711), - [aux_sym_cmd_identifier_token25] = ACTIONS(1711), - [aux_sym_cmd_identifier_token26] = ACTIONS(1711), - [aux_sym_cmd_identifier_token27] = ACTIONS(1711), - [aux_sym_cmd_identifier_token28] = ACTIONS(1711), - [aux_sym_cmd_identifier_token29] = ACTIONS(1711), - [aux_sym_cmd_identifier_token30] = ACTIONS(1711), - [aux_sym_cmd_identifier_token31] = ACTIONS(1711), - [aux_sym_cmd_identifier_token32] = ACTIONS(1711), - [aux_sym_cmd_identifier_token33] = ACTIONS(1711), - [aux_sym_cmd_identifier_token34] = ACTIONS(1711), - [aux_sym_cmd_identifier_token35] = ACTIONS(1711), - [aux_sym_cmd_identifier_token36] = ACTIONS(1711), - [aux_sym_cmd_identifier_token37] = ACTIONS(1711), - [aux_sym_cmd_identifier_token38] = ACTIONS(1711), - [aux_sym_cmd_identifier_token39] = ACTIONS(1711), - [aux_sym_cmd_identifier_token40] = ACTIONS(1711), - [anon_sym_def] = ACTIONS(1711), - [anon_sym_export_DASHenv] = ACTIONS(1711), - [anon_sym_extern] = ACTIONS(1711), - [anon_sym_module] = ACTIONS(1711), - [anon_sym_use] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_COMMA] = ACTIONS(1711), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_error] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_break] = ACTIONS(1711), - [anon_sym_continue] = ACTIONS(1711), - [anon_sym_for] = ACTIONS(1711), - [anon_sym_in2] = ACTIONS(1711), - [anon_sym_loop] = ACTIONS(1711), - [anon_sym_make] = ACTIONS(1711), - [anon_sym_while] = ACTIONS(1711), - [anon_sym_do] = ACTIONS(1711), - [anon_sym_if] = ACTIONS(1711), - [anon_sym_else] = ACTIONS(1711), - [anon_sym_match] = ACTIONS(1711), - [anon_sym_RBRACE] = ACTIONS(1711), - [anon_sym_try] = ACTIONS(1711), - [anon_sym_catch] = ACTIONS(1711), - [anon_sym_return] = ACTIONS(1711), - [anon_sym_source] = ACTIONS(1711), - [anon_sym_source_DASHenv] = ACTIONS(1711), - [anon_sym_register] = ACTIONS(1711), - [anon_sym_hide] = ACTIONS(1711), - [anon_sym_hide_DASHenv] = ACTIONS(1711), - [anon_sym_overlay] = ACTIONS(1711), - [anon_sym_as] = ACTIONS(1711), - [anon_sym_LPAREN2] = ACTIONS(1713), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1711), - [aux_sym__immediate_decimal_token1] = ACTIONS(1869), - [aux_sym__immediate_decimal_token2] = ACTIONS(1871), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1711), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1711), - [aux_sym__val_number_decimal_token3] = ACTIONS(1711), - [aux_sym__val_number_decimal_token4] = ACTIONS(1711), - [aux_sym__val_number_token1] = ACTIONS(1711), - [aux_sym__val_number_token2] = ACTIONS(1711), - [aux_sym__val_number_token3] = ACTIONS(1711), - [aux_sym__val_number_token4] = ACTIONS(1711), - [aux_sym__val_number_token5] = ACTIONS(1711), - [aux_sym__val_number_token6] = ACTIONS(1711), - [anon_sym_DQUOTE] = ACTIONS(1711), - [sym__str_single_quotes] = ACTIONS(1711), - [sym__str_back_ticks] = ACTIONS(1711), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1711), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1711), - [sym__entry_separator] = ACTIONS(1713), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1711), + [414] = { + [sym_cell_path] = STATE(654), + [sym_path] = STATE(559), + [sym_comment] = STATE(414), + [aux_sym_cell_path_repeat1] = STATE(446), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1905), + [anon_sym_DOLLAR] = ACTIONS(1905), + [anon_sym_error] = ACTIONS(1905), + [anon_sym_DASH2] = ACTIONS(1905), + [anon_sym_break] = ACTIONS(1905), + [anon_sym_continue] = ACTIONS(1905), + [anon_sym_for] = ACTIONS(1905), + [anon_sym_in2] = 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_hide] = ACTIONS(1905), + [anon_sym_hide_DASHenv] = ACTIONS(1905), + [anon_sym_overlay] = ACTIONS(1905), + [anon_sym_as] = ACTIONS(1905), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(1905), + [aux_sym__val_number_token5] = ACTIONS(1905), + [aux_sym__val_number_token6] = ACTIONS(1905), + [anon_sym_DQUOTE] = ACTIONS(1905), + [sym__str_single_quotes] = ACTIONS(1905), + [sym__str_back_ticks] = ACTIONS(1905), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1905), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1905), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1905), + [sym__entry_separator] = ACTIONS(1907), + [anon_sym_register] = ACTIONS(1905), + [anon_sym_DOT2] = ACTIONS(1837), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1713), + [sym_raw_string_begin] = ACTIONS(1907), }, - [400] = { - [sym_comment] = STATE(400), - [anon_sym_export] = ACTIONS(1783), - [anon_sym_alias] = ACTIONS(1783), - [anon_sym_let] = ACTIONS(1783), - [anon_sym_let_DASHenv] = ACTIONS(1783), - [anon_sym_mut] = ACTIONS(1783), - [anon_sym_const] = ACTIONS(1783), - [aux_sym_cmd_identifier_token1] = ACTIONS(1783), - [aux_sym_cmd_identifier_token2] = ACTIONS(1785), - [aux_sym_cmd_identifier_token3] = ACTIONS(1785), - [aux_sym_cmd_identifier_token4] = ACTIONS(1785), - [aux_sym_cmd_identifier_token5] = ACTIONS(1785), - [aux_sym_cmd_identifier_token6] = ACTIONS(1785), - [aux_sym_cmd_identifier_token7] = ACTIONS(1785), - [aux_sym_cmd_identifier_token8] = ACTIONS(1783), - [aux_sym_cmd_identifier_token9] = ACTIONS(1783), - [aux_sym_cmd_identifier_token10] = ACTIONS(1785), - [aux_sym_cmd_identifier_token11] = ACTIONS(1785), - [aux_sym_cmd_identifier_token12] = ACTIONS(1783), - [aux_sym_cmd_identifier_token13] = ACTIONS(1783), - [aux_sym_cmd_identifier_token14] = ACTIONS(1783), - [aux_sym_cmd_identifier_token15] = ACTIONS(1783), - [aux_sym_cmd_identifier_token16] = ACTIONS(1785), - [aux_sym_cmd_identifier_token17] = ACTIONS(1785), - [aux_sym_cmd_identifier_token18] = ACTIONS(1785), - [aux_sym_cmd_identifier_token19] = ACTIONS(1785), - [aux_sym_cmd_identifier_token20] = ACTIONS(1785), - [aux_sym_cmd_identifier_token21] = ACTIONS(1785), - [aux_sym_cmd_identifier_token22] = ACTIONS(1785), - [aux_sym_cmd_identifier_token23] = ACTIONS(1785), - [aux_sym_cmd_identifier_token24] = ACTIONS(1785), - [aux_sym_cmd_identifier_token25] = ACTIONS(1785), - [aux_sym_cmd_identifier_token26] = ACTIONS(1785), - [aux_sym_cmd_identifier_token27] = ACTIONS(1785), - [aux_sym_cmd_identifier_token28] = ACTIONS(1785), - [aux_sym_cmd_identifier_token29] = ACTIONS(1785), - [aux_sym_cmd_identifier_token30] = ACTIONS(1785), - [aux_sym_cmd_identifier_token31] = ACTIONS(1785), - [aux_sym_cmd_identifier_token32] = ACTIONS(1785), - [aux_sym_cmd_identifier_token33] = ACTIONS(1785), - [aux_sym_cmd_identifier_token34] = ACTIONS(1783), - [aux_sym_cmd_identifier_token35] = ACTIONS(1785), - [aux_sym_cmd_identifier_token36] = ACTIONS(1785), - [aux_sym_cmd_identifier_token37] = ACTIONS(1785), - [aux_sym_cmd_identifier_token38] = ACTIONS(1783), - [aux_sym_cmd_identifier_token39] = ACTIONS(1785), - [aux_sym_cmd_identifier_token40] = ACTIONS(1785), - [anon_sym_def] = ACTIONS(1783), - [anon_sym_export_DASHenv] = ACTIONS(1783), - [anon_sym_extern] = ACTIONS(1783), - [anon_sym_module] = ACTIONS(1783), - [anon_sym_use] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_COMMA] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_error] = ACTIONS(1783), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_break] = ACTIONS(1783), - [anon_sym_continue] = ACTIONS(1783), - [anon_sym_for] = ACTIONS(1783), - [anon_sym_in2] = ACTIONS(1783), - [anon_sym_loop] = ACTIONS(1783), - [anon_sym_make] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1783), - [anon_sym_do] = ACTIONS(1783), - [anon_sym_if] = ACTIONS(1783), - [anon_sym_else] = ACTIONS(1783), - [anon_sym_match] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_try] = ACTIONS(1783), - [anon_sym_catch] = ACTIONS(1783), - [anon_sym_return] = ACTIONS(1783), - [anon_sym_source] = ACTIONS(1783), - [anon_sym_source_DASHenv] = ACTIONS(1783), - [anon_sym_register] = ACTIONS(1783), - [anon_sym_hide] = ACTIONS(1783), - [anon_sym_hide_DASHenv] = ACTIONS(1783), - [anon_sym_overlay] = ACTIONS(1783), - [anon_sym_as] = ACTIONS(1783), - [anon_sym_LPAREN2] = ACTIONS(1785), - [anon_sym_PLUS2] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1785), - [anon_sym_DOT_DOT2] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(1785), - [aux_sym__val_number_token2] = ACTIONS(1785), - [aux_sym__val_number_token3] = ACTIONS(1785), - [aux_sym__val_number_token4] = ACTIONS(1783), - [aux_sym__val_number_token5] = ACTIONS(1783), - [aux_sym__val_number_token6] = ACTIONS(1783), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1785), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1785), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1783), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1785), - }, - [401] = { - [sym_comment] = STATE(401), - [anon_sym_export] = ACTIONS(960), - [anon_sym_alias] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_let_DASHenv] = ACTIONS(960), - [anon_sym_mut] = ACTIONS(960), - [anon_sym_const] = ACTIONS(960), - [aux_sym_cmd_identifier_token1] = ACTIONS(960), - [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(960), - [aux_sym_cmd_identifier_token9] = ACTIONS(960), - [aux_sym_cmd_identifier_token10] = ACTIONS(962), - [aux_sym_cmd_identifier_token11] = ACTIONS(962), - [aux_sym_cmd_identifier_token12] = ACTIONS(960), - [aux_sym_cmd_identifier_token13] = ACTIONS(960), - [aux_sym_cmd_identifier_token14] = ACTIONS(960), - [aux_sym_cmd_identifier_token15] = ACTIONS(960), - [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(960), - [aux_sym_cmd_identifier_token35] = ACTIONS(962), - [aux_sym_cmd_identifier_token36] = ACTIONS(962), - [aux_sym_cmd_identifier_token37] = ACTIONS(962), - [aux_sym_cmd_identifier_token38] = ACTIONS(960), - [aux_sym_cmd_identifier_token39] = ACTIONS(962), - [aux_sym_cmd_identifier_token40] = ACTIONS(962), - [anon_sym_def] = ACTIONS(960), - [anon_sym_export_DASHenv] = ACTIONS(960), - [anon_sym_extern] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), - [anon_sym_use] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(962), - [anon_sym_COMMA] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(960), - [anon_sym_error] = ACTIONS(960), - [anon_sym_DASH2] = ACTIONS(960), - [anon_sym_break] = ACTIONS(960), - [anon_sym_continue] = ACTIONS(960), - [anon_sym_for] = ACTIONS(960), - [anon_sym_in2] = ACTIONS(960), - [anon_sym_loop] = ACTIONS(960), - [anon_sym_make] = ACTIONS(960), - [anon_sym_while] = ACTIONS(960), - [anon_sym_do] = ACTIONS(960), - [anon_sym_if] = ACTIONS(960), - [anon_sym_else] = ACTIONS(960), - [anon_sym_match] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(962), - [anon_sym_try] = ACTIONS(960), - [anon_sym_catch] = ACTIONS(960), - [anon_sym_return] = ACTIONS(960), - [anon_sym_source] = ACTIONS(960), - [anon_sym_source_DASHenv] = ACTIONS(960), - [anon_sym_register] = ACTIONS(960), - [anon_sym_hide] = ACTIONS(960), - [anon_sym_hide_DASHenv] = ACTIONS(960), - [anon_sym_overlay] = ACTIONS(960), - [anon_sym_as] = ACTIONS(960), - [anon_sym_QMARK2] = ACTIONS(1873), - [anon_sym_PLUS2] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(962), - [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(962), - [aux_sym__val_number_decimal_token1] = ACTIONS(960), - [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), - [aux_sym__val_number_token4] = ACTIONS(960), - [aux_sym__val_number_token5] = ACTIONS(960), - [aux_sym__val_number_token6] = ACTIONS(960), - [anon_sym_DQUOTE] = ACTIONS(962), - [sym__str_single_quotes] = ACTIONS(962), - [sym__str_back_ticks] = ACTIONS(962), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(962), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(962), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(962), - [anon_sym_DOT2] = ACTIONS(960), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(962), - }, - [402] = { - [sym_cell_path] = STATE(650), - [sym_path] = STATE(569), - [sym_comment] = STATE(402), - [aux_sym_cell_path_repeat1] = STATE(451), - [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), - [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1875), - [anon_sym_DOLLAR] = ACTIONS(1875), - [anon_sym_error] = ACTIONS(1875), - [anon_sym_DASH2] = ACTIONS(1875), - [anon_sym_break] = ACTIONS(1875), - [anon_sym_continue] = ACTIONS(1875), - [anon_sym_for] = ACTIONS(1875), - [anon_sym_in2] = 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_as] = ACTIONS(1875), - [anon_sym_PLUS2] = ACTIONS(1875), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1875), - [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), - [aux_sym__val_number_token4] = ACTIONS(1875), - [aux_sym__val_number_token5] = ACTIONS(1875), - [aux_sym__val_number_token6] = ACTIONS(1875), - [anon_sym_DQUOTE] = ACTIONS(1875), - [sym__str_single_quotes] = ACTIONS(1875), - [sym__str_back_ticks] = ACTIONS(1875), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1875), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1875), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1875), - [sym__entry_separator] = ACTIONS(1877), - [anon_sym_DOT2] = ACTIONS(1849), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1877), - }, - [403] = { - [sym_comment] = STATE(403), - [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(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(1812), - [aux_sym_cmd_identifier_token9] = ACTIONS(1812), - [aux_sym_cmd_identifier_token10] = ACTIONS(1820), - [aux_sym_cmd_identifier_token11] = ACTIONS(1820), - [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(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(1812), - [aux_sym_cmd_identifier_token35] = ACTIONS(1820), - [aux_sym_cmd_identifier_token36] = ACTIONS(1820), - [aux_sym_cmd_identifier_token37] = ACTIONS(1820), - [aux_sym_cmd_identifier_token38] = ACTIONS(1812), - [aux_sym_cmd_identifier_token39] = ACTIONS(1820), - [aux_sym_cmd_identifier_token40] = ACTIONS(1820), - [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_COMMA] = ACTIONS(1820), - [anon_sym_DOLLAR] = ACTIONS(1812), - [anon_sym_error] = ACTIONS(1812), - [anon_sym_DASH2] = ACTIONS(1812), - [anon_sym_break] = ACTIONS(1812), - [anon_sym_continue] = ACTIONS(1812), - [anon_sym_for] = ACTIONS(1812), - [anon_sym_in2] = 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(1820), - [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_as] = ACTIONS(1812), - [anon_sym_LPAREN2] = ACTIONS(1814), - [anon_sym_PLUS2] = ACTIONS(1812), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1820), - [anon_sym_DOT_DOT2] = ACTIONS(1879), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1881), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1881), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1820), - [aux_sym__val_number_decimal_token1] = ACTIONS(1812), - [aux_sym__val_number_decimal_token2] = 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), - [aux_sym__val_number_token4] = ACTIONS(1812), - [aux_sym__val_number_token5] = ACTIONS(1812), - [aux_sym__val_number_token6] = ACTIONS(1812), - [anon_sym_DQUOTE] = ACTIONS(1820), - [sym__str_single_quotes] = ACTIONS(1820), - [sym__str_back_ticks] = ACTIONS(1820), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1820), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1820), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1820), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1822), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1820), - }, - [404] = { - [sym_comment] = STATE(404), - [anon_sym_export] = ACTIONS(996), - [anon_sym_alias] = ACTIONS(996), - [anon_sym_let] = ACTIONS(996), - [anon_sym_let_DASHenv] = ACTIONS(996), - [anon_sym_mut] = ACTIONS(996), - [anon_sym_const] = ACTIONS(996), - [aux_sym_cmd_identifier_token1] = ACTIONS(996), - [aux_sym_cmd_identifier_token2] = ACTIONS(996), - [aux_sym_cmd_identifier_token3] = ACTIONS(996), - [aux_sym_cmd_identifier_token4] = ACTIONS(996), - [aux_sym_cmd_identifier_token5] = ACTIONS(996), - [aux_sym_cmd_identifier_token6] = ACTIONS(996), - [aux_sym_cmd_identifier_token7] = ACTIONS(996), - [aux_sym_cmd_identifier_token8] = ACTIONS(996), - [aux_sym_cmd_identifier_token9] = ACTIONS(996), - [aux_sym_cmd_identifier_token10] = ACTIONS(996), - [aux_sym_cmd_identifier_token11] = ACTIONS(996), - [aux_sym_cmd_identifier_token12] = ACTIONS(996), - [aux_sym_cmd_identifier_token13] = ACTIONS(996), - [aux_sym_cmd_identifier_token14] = ACTIONS(996), - [aux_sym_cmd_identifier_token15] = ACTIONS(996), - [aux_sym_cmd_identifier_token16] = ACTIONS(996), - [aux_sym_cmd_identifier_token17] = ACTIONS(996), - [aux_sym_cmd_identifier_token18] = ACTIONS(996), - [aux_sym_cmd_identifier_token19] = ACTIONS(996), - [aux_sym_cmd_identifier_token20] = ACTIONS(996), - [aux_sym_cmd_identifier_token21] = ACTIONS(996), - [aux_sym_cmd_identifier_token22] = ACTIONS(996), - [aux_sym_cmd_identifier_token23] = ACTIONS(996), - [aux_sym_cmd_identifier_token24] = ACTIONS(996), - [aux_sym_cmd_identifier_token25] = ACTIONS(996), - [aux_sym_cmd_identifier_token26] = ACTIONS(996), - [aux_sym_cmd_identifier_token27] = ACTIONS(996), - [aux_sym_cmd_identifier_token28] = ACTIONS(996), - [aux_sym_cmd_identifier_token29] = ACTIONS(996), - [aux_sym_cmd_identifier_token30] = ACTIONS(996), - [aux_sym_cmd_identifier_token31] = ACTIONS(996), - [aux_sym_cmd_identifier_token32] = ACTIONS(996), - [aux_sym_cmd_identifier_token33] = ACTIONS(996), - [aux_sym_cmd_identifier_token34] = ACTIONS(996), - [aux_sym_cmd_identifier_token35] = ACTIONS(996), - [aux_sym_cmd_identifier_token36] = ACTIONS(996), - [aux_sym_cmd_identifier_token37] = ACTIONS(996), - [aux_sym_cmd_identifier_token38] = ACTIONS(996), - [aux_sym_cmd_identifier_token39] = ACTIONS(996), - [aux_sym_cmd_identifier_token40] = ACTIONS(996), - [anon_sym_def] = ACTIONS(996), - [anon_sym_export_DASHenv] = ACTIONS(996), - [anon_sym_extern] = ACTIONS(996), - [anon_sym_module] = ACTIONS(996), - [anon_sym_use] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_COMMA] = ACTIONS(996), - [anon_sym_DOLLAR] = ACTIONS(996), - [anon_sym_error] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_break] = ACTIONS(996), - [anon_sym_continue] = ACTIONS(996), - [anon_sym_for] = ACTIONS(996), - [anon_sym_in2] = ACTIONS(996), - [anon_sym_loop] = ACTIONS(996), - [anon_sym_make] = ACTIONS(996), - [anon_sym_while] = ACTIONS(996), - [anon_sym_do] = ACTIONS(996), - [anon_sym_if] = ACTIONS(996), - [anon_sym_else] = ACTIONS(996), - [anon_sym_match] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_try] = ACTIONS(996), - [anon_sym_catch] = ACTIONS(996), - [anon_sym_return] = ACTIONS(996), - [anon_sym_source] = ACTIONS(996), - [anon_sym_source_DASHenv] = ACTIONS(996), - [anon_sym_register] = ACTIONS(996), - [anon_sym_hide] = ACTIONS(996), - [anon_sym_hide_DASHenv] = ACTIONS(996), - [anon_sym_overlay] = ACTIONS(996), - [anon_sym_as] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(996), - [anon_sym_DOT_DOT2] = ACTIONS(996), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(998), - [anon_sym_DOT_DOT_LT2] = ACTIONS(998), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(996), - [aux_sym__val_number_decimal_token1] = ACTIONS(996), - [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), - [aux_sym__val_number_token4] = ACTIONS(996), - [aux_sym__val_number_token5] = ACTIONS(996), - [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(996), - [sym__entry_separator] = ACTIONS(998), - [anon_sym_DOT2] = ACTIONS(996), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(998), - }, - [405] = { - [sym_comment] = STATE(405), - [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(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(1755), - [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(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(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(1757), - [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(1755), - [aux_sym_cmd_identifier_token35] = ACTIONS(1757), - [aux_sym_cmd_identifier_token36] = ACTIONS(1757), - [aux_sym_cmd_identifier_token37] = ACTIONS(1757), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1757), - [aux_sym_cmd_identifier_token40] = ACTIONS(1757), - [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_COMMA] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in2] = 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_RBRACE] = ACTIONS(1757), - [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_as] = ACTIONS(1755), - [anon_sym_PLUS2] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1757), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT] = ACTIONS(1883), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(1885), - [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), - [aux_sym__val_number_token4] = ACTIONS(1755), - [aux_sym__val_number_token5] = ACTIONS(1755), - [aux_sym__val_number_token6] = ACTIONS(1755), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1757), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1757), - }, - [406] = { - [sym_comment] = STATE(406), - [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), - [aux_sym_cmd_identifier_token37] = ACTIONS(1755), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1755), - [aux_sym_cmd_identifier_token40] = ACTIONS(1755), - [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(1755), - [anon_sym_COMMA] = ACTIONS(1755), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in2] = 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_RBRACE] = 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_as] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_PLUS2] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1755), - [anon_sym_DOT] = ACTIONS(1887), - [aux_sym__immediate_decimal_token2] = ACTIONS(1889), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1755), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1755), - [aux_sym__val_number_decimal_token3] = ACTIONS(1755), - [aux_sym__val_number_decimal_token4] = ACTIONS(1755), - [aux_sym__val_number_token1] = ACTIONS(1755), - [aux_sym__val_number_token2] = ACTIONS(1755), - [aux_sym__val_number_token3] = ACTIONS(1755), - [aux_sym__val_number_token4] = ACTIONS(1755), - [aux_sym__val_number_token5] = ACTIONS(1755), - [aux_sym__val_number_token6] = ACTIONS(1755), - [anon_sym_DQUOTE] = ACTIONS(1755), - [sym__str_single_quotes] = ACTIONS(1755), - [sym__str_back_ticks] = ACTIONS(1755), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1755), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1755), - [sym__entry_separator] = ACTIONS(1757), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1757), - }, - [407] = { - [sym_cell_path] = STATE(590), - [sym_path] = STATE(569), - [sym_comment] = STATE(407), - [aux_sym_cell_path_repeat1] = STATE(451), - [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), - [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1891), - [anon_sym_DOLLAR] = ACTIONS(1891), - [anon_sym_error] = ACTIONS(1891), - [anon_sym_DASH2] = ACTIONS(1891), - [anon_sym_break] = ACTIONS(1891), - [anon_sym_continue] = ACTIONS(1891), - [anon_sym_for] = ACTIONS(1891), - [anon_sym_in2] = 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_as] = ACTIONS(1891), - [anon_sym_PLUS2] = ACTIONS(1891), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1891), - [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), - [aux_sym__val_number_token4] = ACTIONS(1891), - [aux_sym__val_number_token5] = ACTIONS(1891), - [aux_sym__val_number_token6] = ACTIONS(1891), - [anon_sym_DQUOTE] = ACTIONS(1891), - [sym__str_single_quotes] = ACTIONS(1891), - [sym__str_back_ticks] = ACTIONS(1891), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1891), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1891), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1891), - [sym__entry_separator] = ACTIONS(1893), - [anon_sym_DOT2] = ACTIONS(1849), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1893), - }, - [408] = { - [sym_cell_path] = STATE(656), - [sym_path] = STATE(569), - [sym_comment] = STATE(408), - [aux_sym_cell_path_repeat1] = STATE(451), - [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), - [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1895), - [anon_sym_DOLLAR] = ACTIONS(1895), - [anon_sym_error] = ACTIONS(1895), - [anon_sym_DASH2] = ACTIONS(1895), - [anon_sym_break] = ACTIONS(1895), - [anon_sym_continue] = ACTIONS(1895), - [anon_sym_for] = ACTIONS(1895), - [anon_sym_in2] = 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_as] = ACTIONS(1895), - [anon_sym_PLUS2] = ACTIONS(1895), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1895), - [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), - [aux_sym__val_number_token4] = ACTIONS(1895), - [aux_sym__val_number_token5] = ACTIONS(1895), - [aux_sym__val_number_token6] = ACTIONS(1895), - [anon_sym_DQUOTE] = ACTIONS(1895), - [sym__str_single_quotes] = ACTIONS(1895), - [sym__str_back_ticks] = ACTIONS(1895), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1895), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1895), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1895), - [sym__entry_separator] = ACTIONS(1897), - [anon_sym_DOT2] = ACTIONS(1849), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1897), - }, - [409] = { - [sym_comment] = STATE(409), - [anon_sym_export] = ACTIONS(1711), - [anon_sym_alias] = ACTIONS(1711), - [anon_sym_let] = ACTIONS(1711), - [anon_sym_let_DASHenv] = ACTIONS(1711), - [anon_sym_mut] = ACTIONS(1711), - [anon_sym_const] = ACTIONS(1711), - [aux_sym_cmd_identifier_token1] = ACTIONS(1711), - [aux_sym_cmd_identifier_token2] = ACTIONS(1713), - [aux_sym_cmd_identifier_token3] = ACTIONS(1713), - [aux_sym_cmd_identifier_token4] = ACTIONS(1713), - [aux_sym_cmd_identifier_token5] = ACTIONS(1713), - [aux_sym_cmd_identifier_token6] = ACTIONS(1713), - [aux_sym_cmd_identifier_token7] = ACTIONS(1713), - [aux_sym_cmd_identifier_token8] = ACTIONS(1711), - [aux_sym_cmd_identifier_token9] = ACTIONS(1711), - [aux_sym_cmd_identifier_token10] = ACTIONS(1713), - [aux_sym_cmd_identifier_token11] = ACTIONS(1713), - [aux_sym_cmd_identifier_token12] = ACTIONS(1711), - [aux_sym_cmd_identifier_token13] = ACTIONS(1711), - [aux_sym_cmd_identifier_token14] = ACTIONS(1711), - [aux_sym_cmd_identifier_token15] = ACTIONS(1711), - [aux_sym_cmd_identifier_token16] = ACTIONS(1713), - [aux_sym_cmd_identifier_token17] = ACTIONS(1713), - [aux_sym_cmd_identifier_token18] = ACTIONS(1713), - [aux_sym_cmd_identifier_token19] = ACTIONS(1713), - [aux_sym_cmd_identifier_token20] = ACTIONS(1713), - [aux_sym_cmd_identifier_token21] = ACTIONS(1713), - [aux_sym_cmd_identifier_token22] = ACTIONS(1713), - [aux_sym_cmd_identifier_token23] = ACTIONS(1713), - [aux_sym_cmd_identifier_token24] = ACTIONS(1713), - [aux_sym_cmd_identifier_token25] = ACTIONS(1713), - [aux_sym_cmd_identifier_token26] = ACTIONS(1713), - [aux_sym_cmd_identifier_token27] = ACTIONS(1713), - [aux_sym_cmd_identifier_token28] = ACTIONS(1713), - [aux_sym_cmd_identifier_token29] = ACTIONS(1713), - [aux_sym_cmd_identifier_token30] = ACTIONS(1713), - [aux_sym_cmd_identifier_token31] = ACTIONS(1713), - [aux_sym_cmd_identifier_token32] = ACTIONS(1713), - [aux_sym_cmd_identifier_token33] = ACTIONS(1713), - [aux_sym_cmd_identifier_token34] = ACTIONS(1711), - [aux_sym_cmd_identifier_token35] = ACTIONS(1713), - [aux_sym_cmd_identifier_token36] = ACTIONS(1713), - [aux_sym_cmd_identifier_token37] = ACTIONS(1713), - [aux_sym_cmd_identifier_token38] = ACTIONS(1711), - [aux_sym_cmd_identifier_token39] = ACTIONS(1713), - [aux_sym_cmd_identifier_token40] = ACTIONS(1713), - [anon_sym_def] = ACTIONS(1711), - [anon_sym_export_DASHenv] = ACTIONS(1711), - [anon_sym_extern] = ACTIONS(1711), - [anon_sym_module] = ACTIONS(1711), - [anon_sym_use] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_COMMA] = ACTIONS(1713), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_error] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_break] = ACTIONS(1711), - [anon_sym_continue] = ACTIONS(1711), - [anon_sym_for] = ACTIONS(1711), - [anon_sym_in2] = ACTIONS(1711), - [anon_sym_loop] = ACTIONS(1711), - [anon_sym_make] = ACTIONS(1711), - [anon_sym_while] = ACTIONS(1711), - [anon_sym_do] = ACTIONS(1711), - [anon_sym_if] = ACTIONS(1711), - [anon_sym_else] = ACTIONS(1711), - [anon_sym_match] = ACTIONS(1711), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_try] = ACTIONS(1711), - [anon_sym_catch] = ACTIONS(1711), - [anon_sym_return] = ACTIONS(1711), - [anon_sym_source] = ACTIONS(1711), - [anon_sym_source_DASHenv] = ACTIONS(1711), - [anon_sym_register] = ACTIONS(1711), - [anon_sym_hide] = ACTIONS(1711), - [anon_sym_hide_DASHenv] = ACTIONS(1711), - [anon_sym_overlay] = ACTIONS(1711), - [anon_sym_as] = ACTIONS(1711), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1713), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [aux_sym__immediate_decimal_token1] = ACTIONS(1899), - [aux_sym__immediate_decimal_token2] = ACTIONS(1901), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1713), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1713), - [aux_sym__val_number_decimal_token3] = ACTIONS(1713), - [aux_sym__val_number_decimal_token4] = ACTIONS(1713), - [aux_sym__val_number_token1] = ACTIONS(1713), - [aux_sym__val_number_token2] = ACTIONS(1713), - [aux_sym__val_number_token3] = ACTIONS(1713), - [aux_sym__val_number_token4] = ACTIONS(1711), - [aux_sym__val_number_token5] = ACTIONS(1711), - [aux_sym__val_number_token6] = ACTIONS(1711), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym__str_single_quotes] = ACTIONS(1713), - [sym__str_back_ticks] = ACTIONS(1713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1713), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1713), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1713), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1713), - }, - [410] = { - [sym_comment] = STATE(410), - [anon_sym_export] = ACTIONS(1783), - [anon_sym_alias] = ACTIONS(1783), - [anon_sym_let] = ACTIONS(1783), - [anon_sym_let_DASHenv] = ACTIONS(1783), - [anon_sym_mut] = ACTIONS(1783), - [anon_sym_const] = ACTIONS(1783), - [aux_sym_cmd_identifier_token1] = ACTIONS(1783), - [aux_sym_cmd_identifier_token2] = ACTIONS(1783), - [aux_sym_cmd_identifier_token3] = ACTIONS(1783), - [aux_sym_cmd_identifier_token4] = ACTIONS(1783), - [aux_sym_cmd_identifier_token5] = ACTIONS(1783), - [aux_sym_cmd_identifier_token6] = ACTIONS(1783), - [aux_sym_cmd_identifier_token7] = ACTIONS(1783), - [aux_sym_cmd_identifier_token8] = ACTIONS(1783), - [aux_sym_cmd_identifier_token9] = ACTIONS(1783), - [aux_sym_cmd_identifier_token10] = ACTIONS(1783), - [aux_sym_cmd_identifier_token11] = ACTIONS(1783), - [aux_sym_cmd_identifier_token12] = ACTIONS(1783), - [aux_sym_cmd_identifier_token13] = ACTIONS(1783), - [aux_sym_cmd_identifier_token14] = ACTIONS(1783), - [aux_sym_cmd_identifier_token15] = ACTIONS(1783), - [aux_sym_cmd_identifier_token16] = ACTIONS(1783), - [aux_sym_cmd_identifier_token17] = ACTIONS(1783), - [aux_sym_cmd_identifier_token18] = ACTIONS(1783), - [aux_sym_cmd_identifier_token19] = ACTIONS(1783), - [aux_sym_cmd_identifier_token20] = ACTIONS(1783), - [aux_sym_cmd_identifier_token21] = ACTIONS(1783), - [aux_sym_cmd_identifier_token22] = ACTIONS(1783), - [aux_sym_cmd_identifier_token23] = ACTIONS(1783), - [aux_sym_cmd_identifier_token24] = ACTIONS(1783), - [aux_sym_cmd_identifier_token25] = ACTIONS(1783), - [aux_sym_cmd_identifier_token26] = ACTIONS(1783), - [aux_sym_cmd_identifier_token27] = ACTIONS(1783), - [aux_sym_cmd_identifier_token28] = ACTIONS(1783), - [aux_sym_cmd_identifier_token29] = ACTIONS(1783), - [aux_sym_cmd_identifier_token30] = ACTIONS(1783), - [aux_sym_cmd_identifier_token31] = ACTIONS(1783), - [aux_sym_cmd_identifier_token32] = ACTIONS(1783), - [aux_sym_cmd_identifier_token33] = ACTIONS(1783), - [aux_sym_cmd_identifier_token34] = ACTIONS(1783), - [aux_sym_cmd_identifier_token35] = ACTIONS(1783), - [aux_sym_cmd_identifier_token36] = ACTIONS(1783), - [aux_sym_cmd_identifier_token37] = ACTIONS(1783), - [aux_sym_cmd_identifier_token38] = ACTIONS(1783), - [aux_sym_cmd_identifier_token39] = ACTIONS(1783), - [aux_sym_cmd_identifier_token40] = ACTIONS(1783), - [anon_sym_def] = ACTIONS(1783), - [anon_sym_export_DASHenv] = ACTIONS(1783), - [anon_sym_extern] = ACTIONS(1783), - [anon_sym_module] = ACTIONS(1783), - [anon_sym_use] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_COMMA] = ACTIONS(1783), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_error] = ACTIONS(1783), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_break] = ACTIONS(1783), - [anon_sym_continue] = ACTIONS(1783), - [anon_sym_for] = ACTIONS(1783), - [anon_sym_in2] = ACTIONS(1783), - [anon_sym_loop] = ACTIONS(1783), - [anon_sym_make] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1783), - [anon_sym_do] = ACTIONS(1783), - [anon_sym_if] = ACTIONS(1783), - [anon_sym_else] = ACTIONS(1783), - [anon_sym_match] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(1783), - [anon_sym_try] = ACTIONS(1783), - [anon_sym_catch] = ACTIONS(1783), - [anon_sym_return] = ACTIONS(1783), - [anon_sym_source] = ACTIONS(1783), - [anon_sym_source_DASHenv] = ACTIONS(1783), - [anon_sym_register] = ACTIONS(1783), - [anon_sym_hide] = ACTIONS(1783), - [anon_sym_hide_DASHenv] = ACTIONS(1783), - [anon_sym_overlay] = ACTIONS(1783), - [anon_sym_as] = ACTIONS(1783), - [anon_sym_PLUS2] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1783), - [anon_sym_DOT_DOT2] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1785), - [aux_sym__immediate_decimal_token2] = ACTIONS(1903), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1783), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1783), - [aux_sym__val_number_decimal_token3] = ACTIONS(1783), - [aux_sym__val_number_decimal_token4] = ACTIONS(1783), - [aux_sym__val_number_token1] = ACTIONS(1783), - [aux_sym__val_number_token2] = ACTIONS(1783), - [aux_sym__val_number_token3] = ACTIONS(1783), - [aux_sym__val_number_token4] = ACTIONS(1783), - [aux_sym__val_number_token5] = ACTIONS(1783), - [aux_sym__val_number_token6] = ACTIONS(1783), - [anon_sym_DQUOTE] = ACTIONS(1783), - [sym__str_single_quotes] = ACTIONS(1783), - [sym__str_back_ticks] = ACTIONS(1783), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1783), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1783), - [sym__entry_separator] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1785), - }, - [411] = { - [sym_cell_path] = STATE(608), - [sym_path] = STATE(569), - [sym_comment] = STATE(411), - [aux_sym_cell_path_repeat1] = STATE(451), - [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), - [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1905), - [anon_sym_DOLLAR] = ACTIONS(1905), - [anon_sym_error] = ACTIONS(1905), - [anon_sym_DASH2] = ACTIONS(1905), - [anon_sym_break] = ACTIONS(1905), - [anon_sym_continue] = ACTIONS(1905), - [anon_sym_for] = ACTIONS(1905), - [anon_sym_in2] = 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_as] = ACTIONS(1905), - [anon_sym_PLUS2] = 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), - [aux_sym__val_number_token4] = ACTIONS(1905), - [aux_sym__val_number_token5] = ACTIONS(1905), - [aux_sym__val_number_token6] = ACTIONS(1905), - [anon_sym_DQUOTE] = ACTIONS(1905), - [sym__str_single_quotes] = ACTIONS(1905), - [sym__str_back_ticks] = ACTIONS(1905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1905), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1905), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1905), - [sym__entry_separator] = ACTIONS(1907), - [anon_sym_DOT2] = ACTIONS(1849), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1907), - }, - [412] = { - [sym_cell_path] = STATE(591), - [sym_path] = STATE(569), - [sym_comment] = STATE(412), - [aux_sym_cell_path_repeat1] = STATE(451), + [415] = { + [sym_cell_path] = STATE(670), + [sym_path] = STATE(559), + [sym_comment] = STATE(415), + [aux_sym_cell_path_repeat1] = STATE(446), [anon_sym_export] = ACTIONS(1909), [anon_sym_alias] = ACTIONS(1909), [anon_sym_let] = ACTIONS(1909), @@ -127161,7 +127419,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -127186,122 +127443,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1909), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1909), [sym__entry_separator] = ACTIONS(1911), - [anon_sym_DOT2] = ACTIONS(1849), + [anon_sym_register] = ACTIONS(1909), + [anon_sym_DOT2] = ACTIONS(1837), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1911), }, - [413] = { - [sym_cell_path] = STATE(592), - [sym_path] = STATE(569), - [sym_comment] = STATE(413), - [aux_sym_cell_path_repeat1] = STATE(451), - [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), - [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1913), - [anon_sym_DOLLAR] = ACTIONS(1913), - [anon_sym_error] = ACTIONS(1913), - [anon_sym_DASH2] = ACTIONS(1913), - [anon_sym_break] = ACTIONS(1913), - [anon_sym_continue] = ACTIONS(1913), - [anon_sym_for] = ACTIONS(1913), - [anon_sym_in2] = 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_as] = ACTIONS(1913), - [anon_sym_PLUS2] = ACTIONS(1913), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1913), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1913), - [aux_sym__val_number_decimal_token1] = ACTIONS(1913), - [aux_sym__val_number_decimal_token2] = ACTIONS(1913), - [aux_sym__val_number_decimal_token3] = ACTIONS(1913), - [aux_sym__val_number_decimal_token4] = ACTIONS(1913), - [aux_sym__val_number_token1] = ACTIONS(1913), - [aux_sym__val_number_token2] = ACTIONS(1913), - [aux_sym__val_number_token3] = ACTIONS(1913), - [aux_sym__val_number_token4] = ACTIONS(1913), - [aux_sym__val_number_token5] = ACTIONS(1913), - [aux_sym__val_number_token6] = ACTIONS(1913), - [anon_sym_DQUOTE] = ACTIONS(1913), - [sym__str_single_quotes] = ACTIONS(1913), - [sym__str_back_ticks] = ACTIONS(1913), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1913), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1913), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1913), - [sym__entry_separator] = ACTIONS(1915), - [anon_sym_DOT2] = ACTIONS(1849), + [416] = { + [sym_comment] = STATE(416), + [anon_sym_export] = ACTIONS(1806), + [anon_sym_alias] = ACTIONS(1806), + [anon_sym_let] = ACTIONS(1806), + [anon_sym_let_DASHenv] = ACTIONS(1806), + [anon_sym_mut] = ACTIONS(1806), + [anon_sym_const] = ACTIONS(1806), + [aux_sym_cmd_identifier_token1] = ACTIONS(1806), + [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(1806), + [aux_sym_cmd_identifier_token9] = ACTIONS(1806), + [aux_sym_cmd_identifier_token10] = ACTIONS(1814), + [aux_sym_cmd_identifier_token11] = ACTIONS(1814), + [aux_sym_cmd_identifier_token12] = ACTIONS(1806), + [aux_sym_cmd_identifier_token13] = ACTIONS(1806), + [aux_sym_cmd_identifier_token14] = ACTIONS(1806), + [aux_sym_cmd_identifier_token15] = ACTIONS(1806), + [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(1814), + [aux_sym_cmd_identifier_token25] = ACTIONS(1814), + [aux_sym_cmd_identifier_token26] = ACTIONS(1814), + [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(1814), + [aux_sym_cmd_identifier_token32] = ACTIONS(1814), + [aux_sym_cmd_identifier_token33] = ACTIONS(1814), + [aux_sym_cmd_identifier_token34] = ACTIONS(1806), + [aux_sym_cmd_identifier_token35] = ACTIONS(1814), + [aux_sym_cmd_identifier_token36] = ACTIONS(1814), + [aux_sym_cmd_identifier_token37] = ACTIONS(1814), + [aux_sym_cmd_identifier_token38] = ACTIONS(1806), + [aux_sym_cmd_identifier_token39] = ACTIONS(1814), + [aux_sym_cmd_identifier_token40] = ACTIONS(1814), + [anon_sym_def] = ACTIONS(1806), + [anon_sym_export_DASHenv] = ACTIONS(1806), + [anon_sym_extern] = ACTIONS(1806), + [anon_sym_module] = ACTIONS(1806), + [anon_sym_use] = ACTIONS(1806), + [anon_sym_LPAREN] = ACTIONS(1806), + [anon_sym_COMMA] = ACTIONS(1814), + [anon_sym_DOLLAR] = ACTIONS(1806), + [anon_sym_error] = ACTIONS(1806), + [anon_sym_DASH2] = ACTIONS(1806), + [anon_sym_break] = ACTIONS(1806), + [anon_sym_continue] = ACTIONS(1806), + [anon_sym_for] = ACTIONS(1806), + [anon_sym_in2] = ACTIONS(1806), + [anon_sym_loop] = ACTIONS(1806), + [anon_sym_make] = ACTIONS(1806), + [anon_sym_while] = ACTIONS(1806), + [anon_sym_do] = ACTIONS(1806), + [anon_sym_if] = ACTIONS(1806), + [anon_sym_else] = ACTIONS(1806), + [anon_sym_match] = ACTIONS(1806), + [anon_sym_RBRACE] = ACTIONS(1814), + [anon_sym_try] = ACTIONS(1806), + [anon_sym_catch] = ACTIONS(1806), + [anon_sym_return] = ACTIONS(1806), + [anon_sym_source] = ACTIONS(1806), + [anon_sym_source_DASHenv] = ACTIONS(1806), + [anon_sym_hide] = ACTIONS(1806), + [anon_sym_hide_DASHenv] = ACTIONS(1806), + [anon_sym_overlay] = ACTIONS(1806), + [anon_sym_as] = ACTIONS(1806), + [anon_sym_LPAREN2] = ACTIONS(1808), + [anon_sym_PLUS2] = ACTIONS(1806), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1814), + [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(1814), + [aux_sym__val_number_decimal_token1] = ACTIONS(1806), + [aux_sym__val_number_decimal_token2] = ACTIONS(1814), + [aux_sym__val_number_decimal_token3] = ACTIONS(1814), + [aux_sym__val_number_decimal_token4] = ACTIONS(1814), + [aux_sym__val_number_token1] = ACTIONS(1814), + [aux_sym__val_number_token2] = ACTIONS(1814), + [aux_sym__val_number_token3] = ACTIONS(1814), + [aux_sym__val_number_token4] = ACTIONS(1806), + [aux_sym__val_number_token5] = ACTIONS(1806), + [aux_sym__val_number_token6] = ACTIONS(1806), + [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1814), + [anon_sym_register] = ACTIONS(1806), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1457), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1814), + }, + [417] = { + [sym_comment] = STATE(417), + [anon_sym_export] = ACTIONS(978), + [anon_sym_alias] = ACTIONS(978), + [anon_sym_let] = ACTIONS(978), + [anon_sym_let_DASHenv] = ACTIONS(978), + [anon_sym_mut] = ACTIONS(978), + [anon_sym_const] = ACTIONS(978), + [aux_sym_cmd_identifier_token1] = ACTIONS(978), + [aux_sym_cmd_identifier_token2] = ACTIONS(978), + [aux_sym_cmd_identifier_token3] = ACTIONS(978), + [aux_sym_cmd_identifier_token4] = ACTIONS(978), + [aux_sym_cmd_identifier_token5] = ACTIONS(978), + [aux_sym_cmd_identifier_token6] = ACTIONS(978), + [aux_sym_cmd_identifier_token7] = ACTIONS(978), + [aux_sym_cmd_identifier_token8] = ACTIONS(978), + [aux_sym_cmd_identifier_token9] = ACTIONS(978), + [aux_sym_cmd_identifier_token10] = ACTIONS(978), + [aux_sym_cmd_identifier_token11] = ACTIONS(978), + [aux_sym_cmd_identifier_token12] = ACTIONS(978), + [aux_sym_cmd_identifier_token13] = ACTIONS(978), + [aux_sym_cmd_identifier_token14] = ACTIONS(978), + [aux_sym_cmd_identifier_token15] = ACTIONS(978), + [aux_sym_cmd_identifier_token16] = ACTIONS(978), + [aux_sym_cmd_identifier_token17] = ACTIONS(978), + [aux_sym_cmd_identifier_token18] = ACTIONS(978), + [aux_sym_cmd_identifier_token19] = ACTIONS(978), + [aux_sym_cmd_identifier_token20] = ACTIONS(978), + [aux_sym_cmd_identifier_token21] = ACTIONS(978), + [aux_sym_cmd_identifier_token22] = ACTIONS(978), + [aux_sym_cmd_identifier_token23] = ACTIONS(978), + [aux_sym_cmd_identifier_token24] = ACTIONS(978), + [aux_sym_cmd_identifier_token25] = ACTIONS(978), + [aux_sym_cmd_identifier_token26] = ACTIONS(978), + [aux_sym_cmd_identifier_token27] = ACTIONS(978), + [aux_sym_cmd_identifier_token28] = ACTIONS(978), + [aux_sym_cmd_identifier_token29] = ACTIONS(978), + [aux_sym_cmd_identifier_token30] = ACTIONS(978), + [aux_sym_cmd_identifier_token31] = ACTIONS(978), + [aux_sym_cmd_identifier_token32] = ACTIONS(978), + [aux_sym_cmd_identifier_token33] = ACTIONS(978), + [aux_sym_cmd_identifier_token34] = ACTIONS(978), + [aux_sym_cmd_identifier_token35] = ACTIONS(978), + [aux_sym_cmd_identifier_token36] = ACTIONS(978), + [aux_sym_cmd_identifier_token37] = ACTIONS(978), + [aux_sym_cmd_identifier_token38] = ACTIONS(978), + [aux_sym_cmd_identifier_token39] = ACTIONS(978), + [aux_sym_cmd_identifier_token40] = ACTIONS(978), + [anon_sym_def] = ACTIONS(978), + [anon_sym_export_DASHenv] = ACTIONS(978), + [anon_sym_extern] = ACTIONS(978), + [anon_sym_module] = ACTIONS(978), + [anon_sym_use] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(978), + [anon_sym_COMMA] = ACTIONS(978), + [anon_sym_DOLLAR] = ACTIONS(978), + [anon_sym_error] = ACTIONS(978), + [anon_sym_DASH2] = ACTIONS(978), + [anon_sym_break] = ACTIONS(978), + [anon_sym_continue] = ACTIONS(978), + [anon_sym_for] = ACTIONS(978), + [anon_sym_in2] = ACTIONS(978), + [anon_sym_loop] = ACTIONS(978), + [anon_sym_make] = ACTIONS(978), + [anon_sym_while] = ACTIONS(978), + [anon_sym_do] = ACTIONS(978), + [anon_sym_if] = ACTIONS(978), + [anon_sym_else] = ACTIONS(978), + [anon_sym_match] = ACTIONS(978), + [anon_sym_RBRACE] = ACTIONS(978), + [anon_sym_try] = ACTIONS(978), + [anon_sym_catch] = ACTIONS(978), + [anon_sym_return] = ACTIONS(978), + [anon_sym_source] = ACTIONS(978), + [anon_sym_source_DASHenv] = ACTIONS(978), + [anon_sym_hide] = ACTIONS(978), + [anon_sym_hide_DASHenv] = ACTIONS(978), + [anon_sym_overlay] = ACTIONS(978), + [anon_sym_as] = ACTIONS(978), + [anon_sym_PLUS2] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(978), + [anon_sym_DOT_DOT2] = ACTIONS(978), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(980), + [anon_sym_DOT_DOT_LT2] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(978), + [aux_sym__val_number_decimal_token1] = ACTIONS(978), + [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), + [aux_sym__val_number_token4] = ACTIONS(978), + [aux_sym__val_number_token5] = ACTIONS(978), + [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(978), + [sym__entry_separator] = ACTIONS(980), + [anon_sym_register] = ACTIONS(978), + [anon_sym_DOT2] = ACTIONS(978), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1915), + [sym_raw_string_begin] = ACTIONS(980), }, - [414] = { - [sym_cell_path] = STATE(593), - [sym_path] = STATE(569), - [sym_comment] = STATE(414), - [aux_sym_cell_path_repeat1] = STATE(451), + [418] = { + [sym_cell_path] = STATE(598), + [sym_path] = STATE(559), + [sym_comment] = STATE(418), + [aux_sym_cell_path_repeat1] = STATE(446), [anon_sym_export] = ACTIONS(1917), [anon_sym_alias] = ACTIONS(1917), [anon_sym_let] = ACTIONS(1917), @@ -127375,7 +127740,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(1917), [anon_sym_source] = ACTIONS(1917), [anon_sym_source_DASHenv] = ACTIONS(1917), - [anon_sym_register] = ACTIONS(1917), [anon_sym_hide] = ACTIONS(1917), [anon_sym_hide_DASHenv] = ACTIONS(1917), [anon_sym_overlay] = ACTIONS(1917), @@ -127400,992 +127764,1100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1917), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1917), [sym__entry_separator] = ACTIONS(1919), - [anon_sym_DOT2] = ACTIONS(1849), + [anon_sym_register] = ACTIONS(1917), + [anon_sym_DOT2] = ACTIONS(1837), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1919), }, - [415] = { - [sym_cell_path] = STATE(644), - [sym_path] = STATE(569), - [sym_comment] = STATE(415), - [aux_sym_cell_path_repeat1] = STATE(451), - [anon_sym_export] = ACTIONS(1921), - [anon_sym_alias] = ACTIONS(1921), - [anon_sym_let] = ACTIONS(1921), - [anon_sym_let_DASHenv] = ACTIONS(1921), - [anon_sym_mut] = ACTIONS(1921), - [anon_sym_const] = ACTIONS(1921), - [aux_sym_cmd_identifier_token1] = ACTIONS(1921), - [aux_sym_cmd_identifier_token2] = ACTIONS(1921), - [aux_sym_cmd_identifier_token3] = ACTIONS(1921), - [aux_sym_cmd_identifier_token4] = ACTIONS(1921), - [aux_sym_cmd_identifier_token5] = ACTIONS(1921), - [aux_sym_cmd_identifier_token6] = ACTIONS(1921), - [aux_sym_cmd_identifier_token7] = ACTIONS(1921), - [aux_sym_cmd_identifier_token8] = ACTIONS(1921), - [aux_sym_cmd_identifier_token9] = ACTIONS(1921), - [aux_sym_cmd_identifier_token10] = ACTIONS(1921), - [aux_sym_cmd_identifier_token11] = ACTIONS(1921), - [aux_sym_cmd_identifier_token12] = ACTIONS(1921), - [aux_sym_cmd_identifier_token13] = ACTIONS(1921), - [aux_sym_cmd_identifier_token14] = ACTIONS(1921), - [aux_sym_cmd_identifier_token15] = ACTIONS(1921), - [aux_sym_cmd_identifier_token16] = ACTIONS(1921), - [aux_sym_cmd_identifier_token17] = ACTIONS(1921), - [aux_sym_cmd_identifier_token18] = ACTIONS(1921), - [aux_sym_cmd_identifier_token19] = ACTIONS(1921), - [aux_sym_cmd_identifier_token20] = ACTIONS(1921), - [aux_sym_cmd_identifier_token21] = ACTIONS(1921), - [aux_sym_cmd_identifier_token22] = ACTIONS(1921), - [aux_sym_cmd_identifier_token23] = ACTIONS(1921), - [aux_sym_cmd_identifier_token24] = ACTIONS(1921), - [aux_sym_cmd_identifier_token25] = ACTIONS(1921), - [aux_sym_cmd_identifier_token26] = ACTIONS(1921), - [aux_sym_cmd_identifier_token27] = ACTIONS(1921), - [aux_sym_cmd_identifier_token28] = ACTIONS(1921), - [aux_sym_cmd_identifier_token29] = ACTIONS(1921), - [aux_sym_cmd_identifier_token30] = ACTIONS(1921), - [aux_sym_cmd_identifier_token31] = ACTIONS(1921), - [aux_sym_cmd_identifier_token32] = ACTIONS(1921), - [aux_sym_cmd_identifier_token33] = ACTIONS(1921), - [aux_sym_cmd_identifier_token34] = ACTIONS(1921), - [aux_sym_cmd_identifier_token35] = ACTIONS(1921), - [aux_sym_cmd_identifier_token36] = ACTIONS(1921), - [aux_sym_cmd_identifier_token37] = ACTIONS(1921), - [aux_sym_cmd_identifier_token38] = ACTIONS(1921), - [aux_sym_cmd_identifier_token39] = ACTIONS(1921), - [aux_sym_cmd_identifier_token40] = ACTIONS(1921), - [anon_sym_def] = ACTIONS(1921), - [anon_sym_export_DASHenv] = ACTIONS(1921), - [anon_sym_extern] = ACTIONS(1921), - [anon_sym_module] = ACTIONS(1921), - [anon_sym_use] = ACTIONS(1921), - [anon_sym_LPAREN] = ACTIONS(1921), - [anon_sym_COMMA] = ACTIONS(1921), - [anon_sym_DOLLAR] = ACTIONS(1921), - [anon_sym_error] = ACTIONS(1921), - [anon_sym_DASH2] = ACTIONS(1921), - [anon_sym_break] = ACTIONS(1921), - [anon_sym_continue] = ACTIONS(1921), - [anon_sym_for] = ACTIONS(1921), - [anon_sym_in2] = ACTIONS(1921), - [anon_sym_loop] = ACTIONS(1921), - [anon_sym_make] = ACTIONS(1921), - [anon_sym_while] = ACTIONS(1921), - [anon_sym_do] = ACTIONS(1921), - [anon_sym_if] = ACTIONS(1921), - [anon_sym_else] = ACTIONS(1921), - [anon_sym_match] = ACTIONS(1921), - [anon_sym_RBRACE] = ACTIONS(1921), - [anon_sym_try] = ACTIONS(1921), - [anon_sym_catch] = ACTIONS(1921), - [anon_sym_return] = ACTIONS(1921), - [anon_sym_source] = ACTIONS(1921), - [anon_sym_source_DASHenv] = ACTIONS(1921), - [anon_sym_register] = ACTIONS(1921), - [anon_sym_hide] = ACTIONS(1921), - [anon_sym_hide_DASHenv] = ACTIONS(1921), - [anon_sym_overlay] = ACTIONS(1921), - [anon_sym_as] = ACTIONS(1921), - [anon_sym_PLUS2] = ACTIONS(1921), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1921), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1921), - [aux_sym__val_number_decimal_token1] = ACTIONS(1921), - [aux_sym__val_number_decimal_token2] = ACTIONS(1921), - [aux_sym__val_number_decimal_token3] = ACTIONS(1921), - [aux_sym__val_number_decimal_token4] = ACTIONS(1921), - [aux_sym__val_number_token1] = ACTIONS(1921), - [aux_sym__val_number_token2] = ACTIONS(1921), - [aux_sym__val_number_token3] = ACTIONS(1921), - [aux_sym__val_number_token4] = ACTIONS(1921), - [aux_sym__val_number_token5] = ACTIONS(1921), - [aux_sym__val_number_token6] = ACTIONS(1921), - [anon_sym_DQUOTE] = ACTIONS(1921), - [sym__str_single_quotes] = ACTIONS(1921), - [sym__str_back_ticks] = ACTIONS(1921), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1921), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1921), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1921), - [sym__entry_separator] = ACTIONS(1923), - [anon_sym_DOT2] = ACTIONS(1849), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1923), - }, - [416] = { - [sym_cell_path] = STATE(594), - [sym_path] = STATE(569), - [sym_comment] = STATE(416), - [aux_sym_cell_path_repeat1] = STATE(451), - [anon_sym_export] = ACTIONS(1925), - [anon_sym_alias] = ACTIONS(1925), - [anon_sym_let] = ACTIONS(1925), - [anon_sym_let_DASHenv] = ACTIONS(1925), - [anon_sym_mut] = ACTIONS(1925), - [anon_sym_const] = ACTIONS(1925), - [aux_sym_cmd_identifier_token1] = ACTIONS(1925), - [aux_sym_cmd_identifier_token2] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1925), - [aux_sym_cmd_identifier_token4] = ACTIONS(1925), - [aux_sym_cmd_identifier_token5] = ACTIONS(1925), - [aux_sym_cmd_identifier_token6] = ACTIONS(1925), - [aux_sym_cmd_identifier_token7] = ACTIONS(1925), - [aux_sym_cmd_identifier_token8] = ACTIONS(1925), - [aux_sym_cmd_identifier_token9] = ACTIONS(1925), - [aux_sym_cmd_identifier_token10] = ACTIONS(1925), - [aux_sym_cmd_identifier_token11] = ACTIONS(1925), - [aux_sym_cmd_identifier_token12] = ACTIONS(1925), - [aux_sym_cmd_identifier_token13] = ACTIONS(1925), - [aux_sym_cmd_identifier_token14] = ACTIONS(1925), - [aux_sym_cmd_identifier_token15] = ACTIONS(1925), - [aux_sym_cmd_identifier_token16] = ACTIONS(1925), - [aux_sym_cmd_identifier_token17] = ACTIONS(1925), - [aux_sym_cmd_identifier_token18] = ACTIONS(1925), - [aux_sym_cmd_identifier_token19] = ACTIONS(1925), - [aux_sym_cmd_identifier_token20] = ACTIONS(1925), - [aux_sym_cmd_identifier_token21] = ACTIONS(1925), - [aux_sym_cmd_identifier_token22] = ACTIONS(1925), - [aux_sym_cmd_identifier_token23] = ACTIONS(1925), - [aux_sym_cmd_identifier_token24] = ACTIONS(1925), - [aux_sym_cmd_identifier_token25] = ACTIONS(1925), - [aux_sym_cmd_identifier_token26] = ACTIONS(1925), - [aux_sym_cmd_identifier_token27] = ACTIONS(1925), - [aux_sym_cmd_identifier_token28] = ACTIONS(1925), - [aux_sym_cmd_identifier_token29] = ACTIONS(1925), - [aux_sym_cmd_identifier_token30] = ACTIONS(1925), - [aux_sym_cmd_identifier_token31] = ACTIONS(1925), - [aux_sym_cmd_identifier_token32] = ACTIONS(1925), - [aux_sym_cmd_identifier_token33] = ACTIONS(1925), - [aux_sym_cmd_identifier_token34] = ACTIONS(1925), - [aux_sym_cmd_identifier_token35] = ACTIONS(1925), - [aux_sym_cmd_identifier_token36] = ACTIONS(1925), - [aux_sym_cmd_identifier_token37] = ACTIONS(1925), - [aux_sym_cmd_identifier_token38] = ACTIONS(1925), - [aux_sym_cmd_identifier_token39] = ACTIONS(1925), - [aux_sym_cmd_identifier_token40] = ACTIONS(1925), - [anon_sym_def] = ACTIONS(1925), - [anon_sym_export_DASHenv] = ACTIONS(1925), - [anon_sym_extern] = ACTIONS(1925), - [anon_sym_module] = ACTIONS(1925), - [anon_sym_use] = ACTIONS(1925), - [anon_sym_LPAREN] = ACTIONS(1925), - [anon_sym_COMMA] = ACTIONS(1925), - [anon_sym_DOLLAR] = ACTIONS(1925), - [anon_sym_error] = ACTIONS(1925), - [anon_sym_DASH2] = ACTIONS(1925), - [anon_sym_break] = ACTIONS(1925), - [anon_sym_continue] = ACTIONS(1925), - [anon_sym_for] = ACTIONS(1925), - [anon_sym_in2] = ACTIONS(1925), - [anon_sym_loop] = ACTIONS(1925), - [anon_sym_make] = ACTIONS(1925), - [anon_sym_while] = ACTIONS(1925), - [anon_sym_do] = ACTIONS(1925), - [anon_sym_if] = ACTIONS(1925), - [anon_sym_else] = ACTIONS(1925), - [anon_sym_match] = ACTIONS(1925), - [anon_sym_RBRACE] = ACTIONS(1925), - [anon_sym_try] = ACTIONS(1925), - [anon_sym_catch] = ACTIONS(1925), - [anon_sym_return] = ACTIONS(1925), - [anon_sym_source] = ACTIONS(1925), - [anon_sym_source_DASHenv] = ACTIONS(1925), - [anon_sym_register] = ACTIONS(1925), - [anon_sym_hide] = ACTIONS(1925), - [anon_sym_hide_DASHenv] = ACTIONS(1925), - [anon_sym_overlay] = ACTIONS(1925), - [anon_sym_as] = ACTIONS(1925), - [anon_sym_PLUS2] = ACTIONS(1925), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1925), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1925), - [aux_sym__val_number_decimal_token1] = ACTIONS(1925), - [aux_sym__val_number_decimal_token2] = ACTIONS(1925), - [aux_sym__val_number_decimal_token3] = ACTIONS(1925), - [aux_sym__val_number_decimal_token4] = ACTIONS(1925), - [aux_sym__val_number_token1] = ACTIONS(1925), - [aux_sym__val_number_token2] = ACTIONS(1925), - [aux_sym__val_number_token3] = ACTIONS(1925), - [aux_sym__val_number_token4] = ACTIONS(1925), - [aux_sym__val_number_token5] = ACTIONS(1925), - [aux_sym__val_number_token6] = ACTIONS(1925), - [anon_sym_DQUOTE] = ACTIONS(1925), - [sym__str_single_quotes] = ACTIONS(1925), - [sym__str_back_ticks] = ACTIONS(1925), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1925), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1925), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1925), - [sym__entry_separator] = ACTIONS(1927), - [anon_sym_DOT2] = ACTIONS(1849), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1927), - }, - [417] = { - [sym_cell_path] = STATE(595), - [sym_path] = STATE(569), - [sym_comment] = STATE(417), - [aux_sym_cell_path_repeat1] = STATE(451), - [anon_sym_export] = ACTIONS(1929), - [anon_sym_alias] = ACTIONS(1929), - [anon_sym_let] = ACTIONS(1929), - [anon_sym_let_DASHenv] = ACTIONS(1929), - [anon_sym_mut] = ACTIONS(1929), - [anon_sym_const] = ACTIONS(1929), - [aux_sym_cmd_identifier_token1] = ACTIONS(1929), - [aux_sym_cmd_identifier_token2] = ACTIONS(1929), - [aux_sym_cmd_identifier_token3] = ACTIONS(1929), - [aux_sym_cmd_identifier_token4] = ACTIONS(1929), - [aux_sym_cmd_identifier_token5] = ACTIONS(1929), - [aux_sym_cmd_identifier_token6] = ACTIONS(1929), - [aux_sym_cmd_identifier_token7] = ACTIONS(1929), - [aux_sym_cmd_identifier_token8] = ACTIONS(1929), - [aux_sym_cmd_identifier_token9] = ACTIONS(1929), - [aux_sym_cmd_identifier_token10] = ACTIONS(1929), - [aux_sym_cmd_identifier_token11] = ACTIONS(1929), - [aux_sym_cmd_identifier_token12] = ACTIONS(1929), - [aux_sym_cmd_identifier_token13] = ACTIONS(1929), - [aux_sym_cmd_identifier_token14] = ACTIONS(1929), - [aux_sym_cmd_identifier_token15] = ACTIONS(1929), - [aux_sym_cmd_identifier_token16] = ACTIONS(1929), - [aux_sym_cmd_identifier_token17] = ACTIONS(1929), - [aux_sym_cmd_identifier_token18] = ACTIONS(1929), - [aux_sym_cmd_identifier_token19] = ACTIONS(1929), - [aux_sym_cmd_identifier_token20] = ACTIONS(1929), - [aux_sym_cmd_identifier_token21] = ACTIONS(1929), - [aux_sym_cmd_identifier_token22] = ACTIONS(1929), - [aux_sym_cmd_identifier_token23] = ACTIONS(1929), - [aux_sym_cmd_identifier_token24] = ACTIONS(1929), - [aux_sym_cmd_identifier_token25] = ACTIONS(1929), - [aux_sym_cmd_identifier_token26] = ACTIONS(1929), - [aux_sym_cmd_identifier_token27] = ACTIONS(1929), - [aux_sym_cmd_identifier_token28] = ACTIONS(1929), - [aux_sym_cmd_identifier_token29] = ACTIONS(1929), - [aux_sym_cmd_identifier_token30] = ACTIONS(1929), - [aux_sym_cmd_identifier_token31] = ACTIONS(1929), - [aux_sym_cmd_identifier_token32] = ACTIONS(1929), - [aux_sym_cmd_identifier_token33] = ACTIONS(1929), - [aux_sym_cmd_identifier_token34] = ACTIONS(1929), - [aux_sym_cmd_identifier_token35] = ACTIONS(1929), - [aux_sym_cmd_identifier_token36] = ACTIONS(1929), - [aux_sym_cmd_identifier_token37] = ACTIONS(1929), - [aux_sym_cmd_identifier_token38] = ACTIONS(1929), - [aux_sym_cmd_identifier_token39] = ACTIONS(1929), - [aux_sym_cmd_identifier_token40] = ACTIONS(1929), - [anon_sym_def] = ACTIONS(1929), - [anon_sym_export_DASHenv] = ACTIONS(1929), - [anon_sym_extern] = ACTIONS(1929), - [anon_sym_module] = ACTIONS(1929), - [anon_sym_use] = ACTIONS(1929), - [anon_sym_LPAREN] = ACTIONS(1929), - [anon_sym_COMMA] = ACTIONS(1929), - [anon_sym_DOLLAR] = ACTIONS(1929), - [anon_sym_error] = ACTIONS(1929), - [anon_sym_DASH2] = ACTIONS(1929), - [anon_sym_break] = ACTIONS(1929), - [anon_sym_continue] = ACTIONS(1929), - [anon_sym_for] = ACTIONS(1929), - [anon_sym_in2] = ACTIONS(1929), - [anon_sym_loop] = ACTIONS(1929), - [anon_sym_make] = ACTIONS(1929), - [anon_sym_while] = ACTIONS(1929), - [anon_sym_do] = ACTIONS(1929), - [anon_sym_if] = ACTIONS(1929), - [anon_sym_else] = ACTIONS(1929), - [anon_sym_match] = ACTIONS(1929), - [anon_sym_RBRACE] = ACTIONS(1929), - [anon_sym_try] = ACTIONS(1929), - [anon_sym_catch] = ACTIONS(1929), - [anon_sym_return] = ACTIONS(1929), - [anon_sym_source] = ACTIONS(1929), - [anon_sym_source_DASHenv] = ACTIONS(1929), - [anon_sym_register] = ACTIONS(1929), - [anon_sym_hide] = ACTIONS(1929), - [anon_sym_hide_DASHenv] = ACTIONS(1929), - [anon_sym_overlay] = ACTIONS(1929), - [anon_sym_as] = ACTIONS(1929), - [anon_sym_PLUS2] = ACTIONS(1929), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1929), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1929), - [aux_sym__val_number_decimal_token1] = ACTIONS(1929), - [aux_sym__val_number_decimal_token2] = ACTIONS(1929), - [aux_sym__val_number_decimal_token3] = ACTIONS(1929), - [aux_sym__val_number_decimal_token4] = ACTIONS(1929), - [aux_sym__val_number_token1] = ACTIONS(1929), - [aux_sym__val_number_token2] = ACTIONS(1929), - [aux_sym__val_number_token3] = ACTIONS(1929), - [aux_sym__val_number_token4] = ACTIONS(1929), - [aux_sym__val_number_token5] = ACTIONS(1929), - [aux_sym__val_number_token6] = ACTIONS(1929), - [anon_sym_DQUOTE] = ACTIONS(1929), - [sym__str_single_quotes] = ACTIONS(1929), - [sym__str_back_ticks] = ACTIONS(1929), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1929), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1929), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1929), - [sym__entry_separator] = ACTIONS(1931), - [anon_sym_DOT2] = ACTIONS(1849), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1931), - }, - [418] = { - [sym_cell_path] = STATE(596), - [sym_path] = STATE(569), - [sym_comment] = STATE(418), - [aux_sym_cell_path_repeat1] = STATE(451), - [anon_sym_export] = ACTIONS(1933), - [anon_sym_alias] = ACTIONS(1933), - [anon_sym_let] = ACTIONS(1933), - [anon_sym_let_DASHenv] = ACTIONS(1933), - [anon_sym_mut] = ACTIONS(1933), - [anon_sym_const] = ACTIONS(1933), - [aux_sym_cmd_identifier_token1] = ACTIONS(1933), - [aux_sym_cmd_identifier_token2] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1933), - [aux_sym_cmd_identifier_token4] = ACTIONS(1933), - [aux_sym_cmd_identifier_token5] = ACTIONS(1933), - [aux_sym_cmd_identifier_token6] = ACTIONS(1933), - [aux_sym_cmd_identifier_token7] = ACTIONS(1933), - [aux_sym_cmd_identifier_token8] = ACTIONS(1933), - [aux_sym_cmd_identifier_token9] = ACTIONS(1933), - [aux_sym_cmd_identifier_token10] = ACTIONS(1933), - [aux_sym_cmd_identifier_token11] = ACTIONS(1933), - [aux_sym_cmd_identifier_token12] = ACTIONS(1933), - [aux_sym_cmd_identifier_token13] = ACTIONS(1933), - [aux_sym_cmd_identifier_token14] = ACTIONS(1933), - [aux_sym_cmd_identifier_token15] = ACTIONS(1933), - [aux_sym_cmd_identifier_token16] = ACTIONS(1933), - [aux_sym_cmd_identifier_token17] = ACTIONS(1933), - [aux_sym_cmd_identifier_token18] = ACTIONS(1933), - [aux_sym_cmd_identifier_token19] = ACTIONS(1933), - [aux_sym_cmd_identifier_token20] = ACTIONS(1933), - [aux_sym_cmd_identifier_token21] = ACTIONS(1933), - [aux_sym_cmd_identifier_token22] = ACTIONS(1933), - [aux_sym_cmd_identifier_token23] = ACTIONS(1933), - [aux_sym_cmd_identifier_token24] = ACTIONS(1933), - [aux_sym_cmd_identifier_token25] = ACTIONS(1933), - [aux_sym_cmd_identifier_token26] = ACTIONS(1933), - [aux_sym_cmd_identifier_token27] = ACTIONS(1933), - [aux_sym_cmd_identifier_token28] = ACTIONS(1933), - [aux_sym_cmd_identifier_token29] = ACTIONS(1933), - [aux_sym_cmd_identifier_token30] = ACTIONS(1933), - [aux_sym_cmd_identifier_token31] = ACTIONS(1933), - [aux_sym_cmd_identifier_token32] = ACTIONS(1933), - [aux_sym_cmd_identifier_token33] = ACTIONS(1933), - [aux_sym_cmd_identifier_token34] = ACTIONS(1933), - [aux_sym_cmd_identifier_token35] = ACTIONS(1933), - [aux_sym_cmd_identifier_token36] = ACTIONS(1933), - [aux_sym_cmd_identifier_token37] = ACTIONS(1933), - [aux_sym_cmd_identifier_token38] = ACTIONS(1933), - [aux_sym_cmd_identifier_token39] = ACTIONS(1933), - [aux_sym_cmd_identifier_token40] = ACTIONS(1933), - [anon_sym_def] = ACTIONS(1933), - [anon_sym_export_DASHenv] = ACTIONS(1933), - [anon_sym_extern] = ACTIONS(1933), - [anon_sym_module] = ACTIONS(1933), - [anon_sym_use] = ACTIONS(1933), - [anon_sym_LPAREN] = ACTIONS(1933), - [anon_sym_COMMA] = ACTIONS(1933), - [anon_sym_DOLLAR] = ACTIONS(1933), - [anon_sym_error] = ACTIONS(1933), - [anon_sym_DASH2] = ACTIONS(1933), - [anon_sym_break] = ACTIONS(1933), - [anon_sym_continue] = ACTIONS(1933), - [anon_sym_for] = ACTIONS(1933), - [anon_sym_in2] = ACTIONS(1933), - [anon_sym_loop] = ACTIONS(1933), - [anon_sym_make] = ACTIONS(1933), - [anon_sym_while] = ACTIONS(1933), - [anon_sym_do] = ACTIONS(1933), - [anon_sym_if] = ACTIONS(1933), - [anon_sym_else] = ACTIONS(1933), - [anon_sym_match] = ACTIONS(1933), - [anon_sym_RBRACE] = ACTIONS(1933), - [anon_sym_try] = ACTIONS(1933), - [anon_sym_catch] = ACTIONS(1933), - [anon_sym_return] = ACTIONS(1933), - [anon_sym_source] = ACTIONS(1933), - [anon_sym_source_DASHenv] = ACTIONS(1933), - [anon_sym_register] = ACTIONS(1933), - [anon_sym_hide] = ACTIONS(1933), - [anon_sym_hide_DASHenv] = ACTIONS(1933), - [anon_sym_overlay] = ACTIONS(1933), - [anon_sym_as] = ACTIONS(1933), - [anon_sym_PLUS2] = ACTIONS(1933), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1933), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1933), - [aux_sym__val_number_decimal_token2] = ACTIONS(1933), - [aux_sym__val_number_decimal_token3] = ACTIONS(1933), - [aux_sym__val_number_decimal_token4] = ACTIONS(1933), - [aux_sym__val_number_token1] = ACTIONS(1933), - [aux_sym__val_number_token2] = ACTIONS(1933), - [aux_sym__val_number_token3] = ACTIONS(1933), - [aux_sym__val_number_token4] = ACTIONS(1933), - [aux_sym__val_number_token5] = ACTIONS(1933), - [aux_sym__val_number_token6] = ACTIONS(1933), - [anon_sym_DQUOTE] = ACTIONS(1933), - [sym__str_single_quotes] = ACTIONS(1933), - [sym__str_back_ticks] = ACTIONS(1933), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1933), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1933), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1933), - [sym__entry_separator] = ACTIONS(1935), - [anon_sym_DOT2] = ACTIONS(1849), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1935), - }, [419] = { - [sym_cell_path] = STATE(597), - [sym_path] = STATE(569), + [sym_cell_path] = STATE(647), + [sym_path] = STATE(565), [sym_comment] = STATE(419), - [aux_sym_cell_path_repeat1] = STATE(451), - [anon_sym_export] = ACTIONS(1937), - [anon_sym_alias] = ACTIONS(1937), - [anon_sym_let] = ACTIONS(1937), - [anon_sym_let_DASHenv] = ACTIONS(1937), - [anon_sym_mut] = ACTIONS(1937), - [anon_sym_const] = ACTIONS(1937), - [aux_sym_cmd_identifier_token1] = ACTIONS(1937), - [aux_sym_cmd_identifier_token2] = ACTIONS(1937), - [aux_sym_cmd_identifier_token3] = ACTIONS(1937), - [aux_sym_cmd_identifier_token4] = ACTIONS(1937), - [aux_sym_cmd_identifier_token5] = ACTIONS(1937), - [aux_sym_cmd_identifier_token6] = ACTIONS(1937), - [aux_sym_cmd_identifier_token7] = ACTIONS(1937), - [aux_sym_cmd_identifier_token8] = ACTIONS(1937), - [aux_sym_cmd_identifier_token9] = ACTIONS(1937), - [aux_sym_cmd_identifier_token10] = ACTIONS(1937), - [aux_sym_cmd_identifier_token11] = ACTIONS(1937), - [aux_sym_cmd_identifier_token12] = ACTIONS(1937), - [aux_sym_cmd_identifier_token13] = ACTIONS(1937), - [aux_sym_cmd_identifier_token14] = ACTIONS(1937), - [aux_sym_cmd_identifier_token15] = ACTIONS(1937), - [aux_sym_cmd_identifier_token16] = ACTIONS(1937), - [aux_sym_cmd_identifier_token17] = ACTIONS(1937), - [aux_sym_cmd_identifier_token18] = ACTIONS(1937), - [aux_sym_cmd_identifier_token19] = ACTIONS(1937), - [aux_sym_cmd_identifier_token20] = ACTIONS(1937), - [aux_sym_cmd_identifier_token21] = ACTIONS(1937), - [aux_sym_cmd_identifier_token22] = ACTIONS(1937), - [aux_sym_cmd_identifier_token23] = ACTIONS(1937), - [aux_sym_cmd_identifier_token24] = ACTIONS(1937), - [aux_sym_cmd_identifier_token25] = ACTIONS(1937), - [aux_sym_cmd_identifier_token26] = ACTIONS(1937), - [aux_sym_cmd_identifier_token27] = ACTIONS(1937), - [aux_sym_cmd_identifier_token28] = ACTIONS(1937), - [aux_sym_cmd_identifier_token29] = ACTIONS(1937), - [aux_sym_cmd_identifier_token30] = ACTIONS(1937), - [aux_sym_cmd_identifier_token31] = ACTIONS(1937), - [aux_sym_cmd_identifier_token32] = ACTIONS(1937), - [aux_sym_cmd_identifier_token33] = ACTIONS(1937), - [aux_sym_cmd_identifier_token34] = ACTIONS(1937), - [aux_sym_cmd_identifier_token35] = ACTIONS(1937), - [aux_sym_cmd_identifier_token36] = ACTIONS(1937), - [aux_sym_cmd_identifier_token37] = ACTIONS(1937), - [aux_sym_cmd_identifier_token38] = ACTIONS(1937), - [aux_sym_cmd_identifier_token39] = ACTIONS(1937), - [aux_sym_cmd_identifier_token40] = ACTIONS(1937), - [anon_sym_def] = ACTIONS(1937), - [anon_sym_export_DASHenv] = ACTIONS(1937), - [anon_sym_extern] = ACTIONS(1937), - [anon_sym_module] = ACTIONS(1937), - [anon_sym_use] = ACTIONS(1937), - [anon_sym_LPAREN] = ACTIONS(1937), - [anon_sym_COMMA] = ACTIONS(1937), - [anon_sym_DOLLAR] = ACTIONS(1937), - [anon_sym_error] = ACTIONS(1937), - [anon_sym_DASH2] = ACTIONS(1937), - [anon_sym_break] = ACTIONS(1937), - [anon_sym_continue] = ACTIONS(1937), - [anon_sym_for] = ACTIONS(1937), - [anon_sym_in2] = ACTIONS(1937), - [anon_sym_loop] = ACTIONS(1937), - [anon_sym_make] = ACTIONS(1937), - [anon_sym_while] = ACTIONS(1937), - [anon_sym_do] = ACTIONS(1937), - [anon_sym_if] = ACTIONS(1937), - [anon_sym_else] = ACTIONS(1937), - [anon_sym_match] = ACTIONS(1937), - [anon_sym_RBRACE] = ACTIONS(1937), - [anon_sym_try] = ACTIONS(1937), - [anon_sym_catch] = ACTIONS(1937), - [anon_sym_return] = ACTIONS(1937), - [anon_sym_source] = ACTIONS(1937), - [anon_sym_source_DASHenv] = ACTIONS(1937), - [anon_sym_register] = ACTIONS(1937), - [anon_sym_hide] = ACTIONS(1937), - [anon_sym_hide_DASHenv] = ACTIONS(1937), - [anon_sym_overlay] = ACTIONS(1937), - [anon_sym_as] = ACTIONS(1937), - [anon_sym_PLUS2] = ACTIONS(1937), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1937), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1937), - [aux_sym__val_number_decimal_token1] = ACTIONS(1937), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1937), - [aux_sym__val_number_decimal_token4] = ACTIONS(1937), - [aux_sym__val_number_token1] = ACTIONS(1937), - [aux_sym__val_number_token2] = ACTIONS(1937), - [aux_sym__val_number_token3] = ACTIONS(1937), - [aux_sym__val_number_token4] = ACTIONS(1937), - [aux_sym__val_number_token5] = ACTIONS(1937), - [aux_sym__val_number_token6] = ACTIONS(1937), - [anon_sym_DQUOTE] = ACTIONS(1937), - [sym__str_single_quotes] = ACTIONS(1937), - [sym__str_back_ticks] = ACTIONS(1937), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1937), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1937), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1937), - [sym__entry_separator] = ACTIONS(1939), - [anon_sym_DOT2] = ACTIONS(1849), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1939), + [aux_sym_cell_path_repeat1] = STATE(484), + [anon_sym_export] = ACTIONS(929), + [anon_sym_alias] = ACTIONS(929), + [anon_sym_let] = ACTIONS(929), + [anon_sym_let_DASHenv] = ACTIONS(929), + [anon_sym_mut] = ACTIONS(929), + [anon_sym_const] = ACTIONS(929), + [aux_sym_cmd_identifier_token1] = ACTIONS(929), + [aux_sym_cmd_identifier_token2] = ACTIONS(931), + [aux_sym_cmd_identifier_token3] = ACTIONS(931), + [aux_sym_cmd_identifier_token4] = ACTIONS(931), + [aux_sym_cmd_identifier_token5] = ACTIONS(931), + [aux_sym_cmd_identifier_token6] = ACTIONS(931), + [aux_sym_cmd_identifier_token7] = ACTIONS(931), + [aux_sym_cmd_identifier_token8] = ACTIONS(929), + [aux_sym_cmd_identifier_token9] = ACTIONS(929), + [aux_sym_cmd_identifier_token10] = ACTIONS(931), + [aux_sym_cmd_identifier_token11] = ACTIONS(931), + [aux_sym_cmd_identifier_token12] = ACTIONS(929), + [aux_sym_cmd_identifier_token13] = ACTIONS(929), + [aux_sym_cmd_identifier_token14] = ACTIONS(929), + [aux_sym_cmd_identifier_token15] = ACTIONS(929), + [aux_sym_cmd_identifier_token16] = ACTIONS(931), + [aux_sym_cmd_identifier_token17] = ACTIONS(931), + [aux_sym_cmd_identifier_token18] = ACTIONS(931), + [aux_sym_cmd_identifier_token19] = ACTIONS(931), + [aux_sym_cmd_identifier_token20] = ACTIONS(931), + [aux_sym_cmd_identifier_token21] = ACTIONS(931), + [aux_sym_cmd_identifier_token22] = ACTIONS(931), + [aux_sym_cmd_identifier_token23] = ACTIONS(931), + [aux_sym_cmd_identifier_token24] = ACTIONS(931), + [aux_sym_cmd_identifier_token25] = ACTIONS(931), + [aux_sym_cmd_identifier_token26] = ACTIONS(931), + [aux_sym_cmd_identifier_token27] = ACTIONS(931), + [aux_sym_cmd_identifier_token28] = ACTIONS(931), + [aux_sym_cmd_identifier_token29] = ACTIONS(931), + [aux_sym_cmd_identifier_token30] = ACTIONS(931), + [aux_sym_cmd_identifier_token31] = ACTIONS(931), + [aux_sym_cmd_identifier_token32] = ACTIONS(931), + [aux_sym_cmd_identifier_token33] = ACTIONS(931), + [aux_sym_cmd_identifier_token34] = ACTIONS(929), + [aux_sym_cmd_identifier_token35] = ACTIONS(931), + [aux_sym_cmd_identifier_token36] = ACTIONS(931), + [aux_sym_cmd_identifier_token37] = ACTIONS(931), + [aux_sym_cmd_identifier_token38] = ACTIONS(929), + [aux_sym_cmd_identifier_token39] = ACTIONS(931), + [aux_sym_cmd_identifier_token40] = ACTIONS(931), + [anon_sym_def] = ACTIONS(929), + [anon_sym_export_DASHenv] = ACTIONS(929), + [anon_sym_extern] = ACTIONS(929), + [anon_sym_module] = ACTIONS(929), + [anon_sym_use] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_COMMA] = ACTIONS(931), + [anon_sym_DOLLAR] = ACTIONS(929), + [anon_sym_error] = ACTIONS(929), + [anon_sym_DASH2] = ACTIONS(929), + [anon_sym_break] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(929), + [anon_sym_for] = ACTIONS(929), + [anon_sym_in2] = ACTIONS(929), + [anon_sym_loop] = ACTIONS(929), + [anon_sym_make] = ACTIONS(929), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(929), + [anon_sym_if] = ACTIONS(929), + [anon_sym_else] = ACTIONS(929), + [anon_sym_match] = ACTIONS(929), + [anon_sym_RBRACE] = ACTIONS(931), + [anon_sym_try] = ACTIONS(929), + [anon_sym_catch] = ACTIONS(929), + [anon_sym_return] = ACTIONS(929), + [anon_sym_source] = ACTIONS(929), + [anon_sym_source_DASHenv] = ACTIONS(929), + [anon_sym_hide] = ACTIONS(929), + [anon_sym_hide_DASHenv] = ACTIONS(929), + [anon_sym_overlay] = ACTIONS(929), + [anon_sym_as] = ACTIONS(929), + [anon_sym_PLUS2] = ACTIONS(929), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(931), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(931), + [aux_sym__val_number_decimal_token1] = ACTIONS(929), + [aux_sym__val_number_decimal_token2] = ACTIONS(931), + [aux_sym__val_number_decimal_token3] = ACTIONS(931), + [aux_sym__val_number_decimal_token4] = ACTIONS(931), + [aux_sym__val_number_token1] = ACTIONS(931), + [aux_sym__val_number_token2] = ACTIONS(931), + [aux_sym__val_number_token3] = ACTIONS(931), + [aux_sym__val_number_token4] = ACTIONS(929), + [aux_sym__val_number_token5] = ACTIONS(929), + [aux_sym__val_number_token6] = ACTIONS(929), + [anon_sym_DQUOTE] = ACTIONS(931), + [sym__str_single_quotes] = ACTIONS(931), + [sym__str_back_ticks] = ACTIONS(931), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(931), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(931), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(931), + [anon_sym_register] = ACTIONS(929), + [anon_sym_COLON2] = ACTIONS(931), + [anon_sym_DOT2] = ACTIONS(1921), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(931), }, [420] = { - [sym_cell_path] = STATE(648), - [sym_path] = STATE(569), [sym_comment] = STATE(420), - [aux_sym_cell_path_repeat1] = STATE(451), - [anon_sym_export] = ACTIONS(1941), - [anon_sym_alias] = ACTIONS(1941), - [anon_sym_let] = ACTIONS(1941), - [anon_sym_let_DASHenv] = ACTIONS(1941), - [anon_sym_mut] = ACTIONS(1941), - [anon_sym_const] = ACTIONS(1941), - [aux_sym_cmd_identifier_token1] = ACTIONS(1941), - [aux_sym_cmd_identifier_token2] = ACTIONS(1941), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [aux_sym_cmd_identifier_token6] = ACTIONS(1941), - [aux_sym_cmd_identifier_token7] = ACTIONS(1941), - [aux_sym_cmd_identifier_token8] = ACTIONS(1941), - [aux_sym_cmd_identifier_token9] = ACTIONS(1941), - [aux_sym_cmd_identifier_token10] = ACTIONS(1941), - [aux_sym_cmd_identifier_token11] = ACTIONS(1941), - [aux_sym_cmd_identifier_token12] = ACTIONS(1941), - [aux_sym_cmd_identifier_token13] = ACTIONS(1941), - [aux_sym_cmd_identifier_token14] = ACTIONS(1941), - [aux_sym_cmd_identifier_token15] = ACTIONS(1941), - [aux_sym_cmd_identifier_token16] = ACTIONS(1941), - [aux_sym_cmd_identifier_token17] = ACTIONS(1941), - [aux_sym_cmd_identifier_token18] = ACTIONS(1941), - [aux_sym_cmd_identifier_token19] = ACTIONS(1941), - [aux_sym_cmd_identifier_token20] = ACTIONS(1941), - [aux_sym_cmd_identifier_token21] = ACTIONS(1941), - [aux_sym_cmd_identifier_token22] = ACTIONS(1941), - [aux_sym_cmd_identifier_token23] = ACTIONS(1941), - [aux_sym_cmd_identifier_token24] = ACTIONS(1941), - [aux_sym_cmd_identifier_token25] = ACTIONS(1941), - [aux_sym_cmd_identifier_token26] = ACTIONS(1941), - [aux_sym_cmd_identifier_token27] = ACTIONS(1941), - [aux_sym_cmd_identifier_token28] = ACTIONS(1941), - [aux_sym_cmd_identifier_token29] = ACTIONS(1941), - [aux_sym_cmd_identifier_token30] = ACTIONS(1941), - [aux_sym_cmd_identifier_token31] = ACTIONS(1941), - [aux_sym_cmd_identifier_token32] = ACTIONS(1941), - [aux_sym_cmd_identifier_token33] = ACTIONS(1941), - [aux_sym_cmd_identifier_token34] = ACTIONS(1941), - [aux_sym_cmd_identifier_token35] = ACTIONS(1941), - [aux_sym_cmd_identifier_token36] = ACTIONS(1941), - [aux_sym_cmd_identifier_token37] = ACTIONS(1941), - [aux_sym_cmd_identifier_token38] = ACTIONS(1941), - [aux_sym_cmd_identifier_token39] = ACTIONS(1941), - [aux_sym_cmd_identifier_token40] = ACTIONS(1941), - [anon_sym_def] = ACTIONS(1941), - [anon_sym_export_DASHenv] = ACTIONS(1941), - [anon_sym_extern] = ACTIONS(1941), - [anon_sym_module] = ACTIONS(1941), - [anon_sym_use] = ACTIONS(1941), - [anon_sym_LPAREN] = ACTIONS(1941), - [anon_sym_COMMA] = ACTIONS(1941), - [anon_sym_DOLLAR] = ACTIONS(1941), - [anon_sym_error] = ACTIONS(1941), - [anon_sym_DASH2] = ACTIONS(1941), - [anon_sym_break] = ACTIONS(1941), - [anon_sym_continue] = ACTIONS(1941), - [anon_sym_for] = ACTIONS(1941), - [anon_sym_in2] = ACTIONS(1941), - [anon_sym_loop] = ACTIONS(1941), - [anon_sym_make] = ACTIONS(1941), - [anon_sym_while] = ACTIONS(1941), - [anon_sym_do] = ACTIONS(1941), - [anon_sym_if] = ACTIONS(1941), - [anon_sym_else] = ACTIONS(1941), - [anon_sym_match] = ACTIONS(1941), - [anon_sym_RBRACE] = ACTIONS(1941), - [anon_sym_try] = ACTIONS(1941), - [anon_sym_catch] = ACTIONS(1941), - [anon_sym_return] = ACTIONS(1941), - [anon_sym_source] = ACTIONS(1941), - [anon_sym_source_DASHenv] = ACTIONS(1941), - [anon_sym_register] = ACTIONS(1941), - [anon_sym_hide] = ACTIONS(1941), - [anon_sym_hide_DASHenv] = ACTIONS(1941), - [anon_sym_overlay] = ACTIONS(1941), - [anon_sym_as] = ACTIONS(1941), - [anon_sym_PLUS2] = ACTIONS(1941), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1941), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1941), - [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), - [aux_sym__val_number_token4] = ACTIONS(1941), - [aux_sym__val_number_token5] = ACTIONS(1941), - [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(1941), - [sym__entry_separator] = ACTIONS(1943), - [anon_sym_DOT2] = ACTIONS(1849), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1943), + [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(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(1816), + [aux_sym_cmd_identifier_token9] = ACTIONS(1816), + [aux_sym_cmd_identifier_token10] = ACTIONS(1824), + [aux_sym_cmd_identifier_token11] = ACTIONS(1824), + [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(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(1816), + [aux_sym_cmd_identifier_token35] = ACTIONS(1824), + [aux_sym_cmd_identifier_token36] = ACTIONS(1824), + [aux_sym_cmd_identifier_token37] = ACTIONS(1824), + [aux_sym_cmd_identifier_token38] = ACTIONS(1816), + [aux_sym_cmd_identifier_token39] = ACTIONS(1824), + [aux_sym_cmd_identifier_token40] = ACTIONS(1824), + [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_COMMA] = ACTIONS(1824), + [anon_sym_DOLLAR] = ACTIONS(1816), + [anon_sym_error] = ACTIONS(1816), + [anon_sym_DASH2] = ACTIONS(1816), + [anon_sym_break] = ACTIONS(1816), + [anon_sym_continue] = ACTIONS(1816), + [anon_sym_for] = ACTIONS(1816), + [anon_sym_in2] = 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(1824), + [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_hide] = ACTIONS(1816), + [anon_sym_hide_DASHenv] = ACTIONS(1816), + [anon_sym_overlay] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1816), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_PLUS2] = ACTIONS(1816), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1824), + [anon_sym_DOT_DOT2] = ACTIONS(1923), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1925), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1925), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1824), + [aux_sym__val_number_decimal_token1] = ACTIONS(1816), + [aux_sym__val_number_decimal_token2] = ACTIONS(1824), + [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), + [aux_sym__val_number_token4] = ACTIONS(1816), + [aux_sym__val_number_token5] = ACTIONS(1816), + [aux_sym__val_number_token6] = ACTIONS(1816), + [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1824), + [anon_sym_register] = ACTIONS(1816), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1826), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1824), }, [421] = { [sym_comment] = STATE(421), - [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(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(1755), - [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(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(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(1757), - [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(1755), - [aux_sym_cmd_identifier_token35] = ACTIONS(1757), - [aux_sym_cmd_identifier_token36] = ACTIONS(1757), - [aux_sym_cmd_identifier_token37] = ACTIONS(1757), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1757), - [aux_sym_cmd_identifier_token40] = ACTIONS(1757), - [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(1755), - [anon_sym_COMMA] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in2] = 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_RBRACE] = ACTIONS(1757), - [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_as] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_PLUS2] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1757), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = 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), - [aux_sym__val_number_token4] = ACTIONS(1755), - [aux_sym__val_number_token5] = ACTIONS(1755), - [aux_sym__val_number_token6] = ACTIONS(1755), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1757), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1693), + [anon_sym_alias] = ACTIONS(1693), + [anon_sym_let] = ACTIONS(1693), + [anon_sym_let_DASHenv] = ACTIONS(1693), + [anon_sym_mut] = ACTIONS(1693), + [anon_sym_const] = ACTIONS(1693), + [aux_sym_cmd_identifier_token1] = ACTIONS(1693), + [aux_sym_cmd_identifier_token2] = ACTIONS(1695), + [aux_sym_cmd_identifier_token3] = ACTIONS(1695), + [aux_sym_cmd_identifier_token4] = ACTIONS(1695), + [aux_sym_cmd_identifier_token5] = ACTIONS(1695), + [aux_sym_cmd_identifier_token6] = ACTIONS(1695), + [aux_sym_cmd_identifier_token7] = ACTIONS(1695), + [aux_sym_cmd_identifier_token8] = ACTIONS(1693), + [aux_sym_cmd_identifier_token9] = ACTIONS(1693), + [aux_sym_cmd_identifier_token10] = ACTIONS(1695), + [aux_sym_cmd_identifier_token11] = ACTIONS(1695), + [aux_sym_cmd_identifier_token12] = ACTIONS(1693), + [aux_sym_cmd_identifier_token13] = ACTIONS(1693), + [aux_sym_cmd_identifier_token14] = ACTIONS(1693), + [aux_sym_cmd_identifier_token15] = ACTIONS(1693), + [aux_sym_cmd_identifier_token16] = ACTIONS(1695), + [aux_sym_cmd_identifier_token17] = ACTIONS(1695), + [aux_sym_cmd_identifier_token18] = ACTIONS(1695), + [aux_sym_cmd_identifier_token19] = ACTIONS(1695), + [aux_sym_cmd_identifier_token20] = ACTIONS(1695), + [aux_sym_cmd_identifier_token21] = ACTIONS(1695), + [aux_sym_cmd_identifier_token22] = ACTIONS(1695), + [aux_sym_cmd_identifier_token23] = ACTIONS(1695), + [aux_sym_cmd_identifier_token24] = ACTIONS(1695), + [aux_sym_cmd_identifier_token25] = ACTIONS(1695), + [aux_sym_cmd_identifier_token26] = ACTIONS(1695), + [aux_sym_cmd_identifier_token27] = ACTIONS(1695), + [aux_sym_cmd_identifier_token28] = ACTIONS(1695), + [aux_sym_cmd_identifier_token29] = ACTIONS(1695), + [aux_sym_cmd_identifier_token30] = ACTIONS(1695), + [aux_sym_cmd_identifier_token31] = ACTIONS(1695), + [aux_sym_cmd_identifier_token32] = ACTIONS(1695), + [aux_sym_cmd_identifier_token33] = ACTIONS(1695), + [aux_sym_cmd_identifier_token34] = ACTIONS(1693), + [aux_sym_cmd_identifier_token35] = ACTIONS(1695), + [aux_sym_cmd_identifier_token36] = ACTIONS(1695), + [aux_sym_cmd_identifier_token37] = ACTIONS(1695), + [aux_sym_cmd_identifier_token38] = ACTIONS(1693), + [aux_sym_cmd_identifier_token39] = ACTIONS(1695), + [aux_sym_cmd_identifier_token40] = ACTIONS(1695), + [anon_sym_def] = ACTIONS(1693), + [anon_sym_export_DASHenv] = ACTIONS(1693), + [anon_sym_extern] = ACTIONS(1693), + [anon_sym_module] = ACTIONS(1693), + [anon_sym_use] = ACTIONS(1693), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_COMMA] = ACTIONS(1695), + [anon_sym_DOLLAR] = ACTIONS(1693), + [anon_sym_error] = ACTIONS(1693), + [anon_sym_DASH2] = ACTIONS(1693), + [anon_sym_break] = ACTIONS(1693), + [anon_sym_continue] = ACTIONS(1693), + [anon_sym_for] = ACTIONS(1693), + [anon_sym_in2] = ACTIONS(1693), + [anon_sym_loop] = ACTIONS(1693), + [anon_sym_make] = ACTIONS(1693), + [anon_sym_while] = ACTIONS(1693), + [anon_sym_do] = ACTIONS(1693), + [anon_sym_if] = ACTIONS(1693), + [anon_sym_else] = ACTIONS(1693), + [anon_sym_match] = ACTIONS(1693), + [anon_sym_RBRACE] = ACTIONS(1695), + [anon_sym_try] = ACTIONS(1693), + [anon_sym_catch] = ACTIONS(1693), + [anon_sym_return] = ACTIONS(1693), + [anon_sym_source] = ACTIONS(1693), + [anon_sym_source_DASHenv] = ACTIONS(1693), + [anon_sym_hide] = ACTIONS(1693), + [anon_sym_hide_DASHenv] = ACTIONS(1693), + [anon_sym_overlay] = ACTIONS(1693), + [anon_sym_as] = ACTIONS(1693), + [anon_sym_LPAREN2] = ACTIONS(1695), + [anon_sym_PLUS2] = ACTIONS(1693), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1695), + [anon_sym_DOT_DOT2] = ACTIONS(1693), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1695), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1695), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1695), + [aux_sym__val_number_decimal_token1] = ACTIONS(1693), + [aux_sym__val_number_decimal_token2] = ACTIONS(1695), + [aux_sym__val_number_decimal_token3] = ACTIONS(1695), + [aux_sym__val_number_decimal_token4] = ACTIONS(1695), + [aux_sym__val_number_token1] = ACTIONS(1695), + [aux_sym__val_number_token2] = ACTIONS(1695), + [aux_sym__val_number_token3] = ACTIONS(1695), + [aux_sym__val_number_token4] = ACTIONS(1693), + [aux_sym__val_number_token5] = ACTIONS(1693), + [aux_sym__val_number_token6] = ACTIONS(1693), + [anon_sym_DQUOTE] = ACTIONS(1695), + [sym__str_single_quotes] = ACTIONS(1695), + [sym__str_back_ticks] = ACTIONS(1695), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1695), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1695), + [anon_sym_register] = ACTIONS(1693), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1695), }, [422] = { + [sym_cell_path] = STATE(636), + [sym_path] = STATE(559), [sym_comment] = STATE(422), - [anon_sym_export] = ACTIONS(988), - [anon_sym_alias] = ACTIONS(988), - [anon_sym_let] = ACTIONS(988), - [anon_sym_let_DASHenv] = ACTIONS(988), - [anon_sym_mut] = ACTIONS(988), - [anon_sym_const] = ACTIONS(988), - [aux_sym_cmd_identifier_token1] = ACTIONS(988), - [aux_sym_cmd_identifier_token2] = ACTIONS(988), - [aux_sym_cmd_identifier_token3] = ACTIONS(988), - [aux_sym_cmd_identifier_token4] = ACTIONS(988), - [aux_sym_cmd_identifier_token5] = ACTIONS(988), - [aux_sym_cmd_identifier_token6] = ACTIONS(988), - [aux_sym_cmd_identifier_token7] = ACTIONS(988), - [aux_sym_cmd_identifier_token8] = ACTIONS(988), - [aux_sym_cmd_identifier_token9] = ACTIONS(988), - [aux_sym_cmd_identifier_token10] = ACTIONS(988), - [aux_sym_cmd_identifier_token11] = ACTIONS(988), - [aux_sym_cmd_identifier_token12] = ACTIONS(988), - [aux_sym_cmd_identifier_token13] = ACTIONS(988), - [aux_sym_cmd_identifier_token14] = ACTIONS(988), - [aux_sym_cmd_identifier_token15] = ACTIONS(988), - [aux_sym_cmd_identifier_token16] = ACTIONS(988), - [aux_sym_cmd_identifier_token17] = ACTIONS(988), - [aux_sym_cmd_identifier_token18] = ACTIONS(988), - [aux_sym_cmd_identifier_token19] = ACTIONS(988), - [aux_sym_cmd_identifier_token20] = ACTIONS(988), - [aux_sym_cmd_identifier_token21] = ACTIONS(988), - [aux_sym_cmd_identifier_token22] = ACTIONS(988), - [aux_sym_cmd_identifier_token23] = ACTIONS(988), - [aux_sym_cmd_identifier_token24] = ACTIONS(988), - [aux_sym_cmd_identifier_token25] = ACTIONS(988), - [aux_sym_cmd_identifier_token26] = ACTIONS(988), - [aux_sym_cmd_identifier_token27] = ACTIONS(988), - [aux_sym_cmd_identifier_token28] = ACTIONS(988), - [aux_sym_cmd_identifier_token29] = ACTIONS(988), - [aux_sym_cmd_identifier_token30] = ACTIONS(988), - [aux_sym_cmd_identifier_token31] = ACTIONS(988), - [aux_sym_cmd_identifier_token32] = ACTIONS(988), - [aux_sym_cmd_identifier_token33] = ACTIONS(988), - [aux_sym_cmd_identifier_token34] = ACTIONS(988), - [aux_sym_cmd_identifier_token35] = ACTIONS(988), - [aux_sym_cmd_identifier_token36] = ACTIONS(988), - [aux_sym_cmd_identifier_token37] = ACTIONS(988), - [aux_sym_cmd_identifier_token38] = ACTIONS(988), - [aux_sym_cmd_identifier_token39] = ACTIONS(988), - [aux_sym_cmd_identifier_token40] = ACTIONS(988), - [anon_sym_def] = ACTIONS(988), - [anon_sym_export_DASHenv] = ACTIONS(988), - [anon_sym_extern] = ACTIONS(988), - [anon_sym_module] = ACTIONS(988), - [anon_sym_use] = ACTIONS(988), - [anon_sym_LPAREN] = ACTIONS(988), - [anon_sym_COMMA] = ACTIONS(988), - [anon_sym_DOLLAR] = ACTIONS(988), - [anon_sym_error] = ACTIONS(988), - [anon_sym_DASH2] = ACTIONS(988), - [anon_sym_break] = ACTIONS(988), - [anon_sym_continue] = ACTIONS(988), - [anon_sym_for] = ACTIONS(988), - [anon_sym_in2] = ACTIONS(988), - [anon_sym_loop] = ACTIONS(988), - [anon_sym_make] = ACTIONS(988), - [anon_sym_while] = ACTIONS(988), - [anon_sym_do] = ACTIONS(988), - [anon_sym_if] = ACTIONS(988), - [anon_sym_else] = ACTIONS(988), - [anon_sym_match] = ACTIONS(988), - [anon_sym_RBRACE] = ACTIONS(988), - [anon_sym_try] = ACTIONS(988), - [anon_sym_catch] = ACTIONS(988), - [anon_sym_return] = ACTIONS(988), - [anon_sym_source] = ACTIONS(988), - [anon_sym_source_DASHenv] = ACTIONS(988), - [anon_sym_register] = ACTIONS(988), - [anon_sym_hide] = ACTIONS(988), - [anon_sym_hide_DASHenv] = ACTIONS(988), - [anon_sym_overlay] = ACTIONS(988), - [anon_sym_as] = ACTIONS(988), - [anon_sym_PLUS2] = ACTIONS(988), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(988), - [anon_sym_DOT_DOT2] = ACTIONS(988), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(990), - [anon_sym_DOT_DOT_LT2] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(988), - [aux_sym__val_number_decimal_token1] = ACTIONS(988), - [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), - [aux_sym__val_number_token4] = ACTIONS(988), - [aux_sym__val_number_token5] = ACTIONS(988), - [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(988), - [sym__entry_separator] = ACTIONS(990), - [anon_sym_DOT2] = ACTIONS(988), + [aux_sym_cell_path_repeat1] = STATE(446), + [anon_sym_export] = ACTIONS(1927), + [anon_sym_alias] = ACTIONS(1927), + [anon_sym_let] = ACTIONS(1927), + [anon_sym_let_DASHenv] = ACTIONS(1927), + [anon_sym_mut] = ACTIONS(1927), + [anon_sym_const] = ACTIONS(1927), + [aux_sym_cmd_identifier_token1] = ACTIONS(1927), + [aux_sym_cmd_identifier_token2] = ACTIONS(1927), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [aux_sym_cmd_identifier_token6] = ACTIONS(1927), + [aux_sym_cmd_identifier_token7] = ACTIONS(1927), + [aux_sym_cmd_identifier_token8] = ACTIONS(1927), + [aux_sym_cmd_identifier_token9] = ACTIONS(1927), + [aux_sym_cmd_identifier_token10] = ACTIONS(1927), + [aux_sym_cmd_identifier_token11] = ACTIONS(1927), + [aux_sym_cmd_identifier_token12] = ACTIONS(1927), + [aux_sym_cmd_identifier_token13] = ACTIONS(1927), + [aux_sym_cmd_identifier_token14] = ACTIONS(1927), + [aux_sym_cmd_identifier_token15] = ACTIONS(1927), + [aux_sym_cmd_identifier_token16] = ACTIONS(1927), + [aux_sym_cmd_identifier_token17] = ACTIONS(1927), + [aux_sym_cmd_identifier_token18] = ACTIONS(1927), + [aux_sym_cmd_identifier_token19] = ACTIONS(1927), + [aux_sym_cmd_identifier_token20] = ACTIONS(1927), + [aux_sym_cmd_identifier_token21] = ACTIONS(1927), + [aux_sym_cmd_identifier_token22] = ACTIONS(1927), + [aux_sym_cmd_identifier_token23] = ACTIONS(1927), + [aux_sym_cmd_identifier_token24] = ACTIONS(1927), + [aux_sym_cmd_identifier_token25] = ACTIONS(1927), + [aux_sym_cmd_identifier_token26] = ACTIONS(1927), + [aux_sym_cmd_identifier_token27] = ACTIONS(1927), + [aux_sym_cmd_identifier_token28] = ACTIONS(1927), + [aux_sym_cmd_identifier_token29] = ACTIONS(1927), + [aux_sym_cmd_identifier_token30] = ACTIONS(1927), + [aux_sym_cmd_identifier_token31] = ACTIONS(1927), + [aux_sym_cmd_identifier_token32] = ACTIONS(1927), + [aux_sym_cmd_identifier_token33] = ACTIONS(1927), + [aux_sym_cmd_identifier_token34] = ACTIONS(1927), + [aux_sym_cmd_identifier_token35] = ACTIONS(1927), + [aux_sym_cmd_identifier_token36] = ACTIONS(1927), + [aux_sym_cmd_identifier_token37] = ACTIONS(1927), + [aux_sym_cmd_identifier_token38] = ACTIONS(1927), + [aux_sym_cmd_identifier_token39] = ACTIONS(1927), + [aux_sym_cmd_identifier_token40] = ACTIONS(1927), + [anon_sym_def] = ACTIONS(1927), + [anon_sym_export_DASHenv] = ACTIONS(1927), + [anon_sym_extern] = ACTIONS(1927), + [anon_sym_module] = ACTIONS(1927), + [anon_sym_use] = ACTIONS(1927), + [anon_sym_LPAREN] = ACTIONS(1927), + [anon_sym_COMMA] = ACTIONS(1927), + [anon_sym_DOLLAR] = ACTIONS(1927), + [anon_sym_error] = ACTIONS(1927), + [anon_sym_DASH2] = ACTIONS(1927), + [anon_sym_break] = ACTIONS(1927), + [anon_sym_continue] = ACTIONS(1927), + [anon_sym_for] = ACTIONS(1927), + [anon_sym_in2] = ACTIONS(1927), + [anon_sym_loop] = ACTIONS(1927), + [anon_sym_make] = ACTIONS(1927), + [anon_sym_while] = ACTIONS(1927), + [anon_sym_do] = ACTIONS(1927), + [anon_sym_if] = ACTIONS(1927), + [anon_sym_else] = ACTIONS(1927), + [anon_sym_match] = ACTIONS(1927), + [anon_sym_RBRACE] = ACTIONS(1927), + [anon_sym_try] = ACTIONS(1927), + [anon_sym_catch] = ACTIONS(1927), + [anon_sym_return] = ACTIONS(1927), + [anon_sym_source] = ACTIONS(1927), + [anon_sym_source_DASHenv] = ACTIONS(1927), + [anon_sym_hide] = ACTIONS(1927), + [anon_sym_hide_DASHenv] = ACTIONS(1927), + [anon_sym_overlay] = ACTIONS(1927), + [anon_sym_as] = ACTIONS(1927), + [anon_sym_PLUS2] = ACTIONS(1927), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1927), + [aux_sym__val_number_decimal_token1] = ACTIONS(1927), + [aux_sym__val_number_decimal_token2] = ACTIONS(1927), + [aux_sym__val_number_decimal_token3] = ACTIONS(1927), + [aux_sym__val_number_decimal_token4] = ACTIONS(1927), + [aux_sym__val_number_token1] = ACTIONS(1927), + [aux_sym__val_number_token2] = ACTIONS(1927), + [aux_sym__val_number_token3] = ACTIONS(1927), + [aux_sym__val_number_token4] = ACTIONS(1927), + [aux_sym__val_number_token5] = ACTIONS(1927), + [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(1927), + [sym__entry_separator] = ACTIONS(1929), + [anon_sym_register] = ACTIONS(1927), + [anon_sym_DOT2] = ACTIONS(1837), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(990), + [sym_raw_string_begin] = ACTIONS(1929), }, [423] = { - [sym_cell_path] = STATE(655), - [sym_path] = STATE(569), + [sym_cell_path] = STATE(588), + [sym_path] = STATE(559), [sym_comment] = STATE(423), - [aux_sym_cell_path_repeat1] = STATE(451), - [anon_sym_export] = ACTIONS(943), - [anon_sym_alias] = ACTIONS(943), - [anon_sym_let] = ACTIONS(943), - [anon_sym_let_DASHenv] = ACTIONS(943), - [anon_sym_mut] = ACTIONS(943), - [anon_sym_const] = ACTIONS(943), - [aux_sym_cmd_identifier_token1] = ACTIONS(943), - [aux_sym_cmd_identifier_token2] = ACTIONS(943), - [aux_sym_cmd_identifier_token3] = ACTIONS(943), - [aux_sym_cmd_identifier_token4] = ACTIONS(943), - [aux_sym_cmd_identifier_token5] = ACTIONS(943), - [aux_sym_cmd_identifier_token6] = ACTIONS(943), - [aux_sym_cmd_identifier_token7] = ACTIONS(943), - [aux_sym_cmd_identifier_token8] = ACTIONS(943), - [aux_sym_cmd_identifier_token9] = ACTIONS(943), - [aux_sym_cmd_identifier_token10] = ACTIONS(943), - [aux_sym_cmd_identifier_token11] = ACTIONS(943), - [aux_sym_cmd_identifier_token12] = ACTIONS(943), - [aux_sym_cmd_identifier_token13] = ACTIONS(943), - [aux_sym_cmd_identifier_token14] = ACTIONS(943), - [aux_sym_cmd_identifier_token15] = ACTIONS(943), - [aux_sym_cmd_identifier_token16] = ACTIONS(943), - [aux_sym_cmd_identifier_token17] = ACTIONS(943), - [aux_sym_cmd_identifier_token18] = ACTIONS(943), - [aux_sym_cmd_identifier_token19] = ACTIONS(943), - [aux_sym_cmd_identifier_token20] = ACTIONS(943), - [aux_sym_cmd_identifier_token21] = ACTIONS(943), - [aux_sym_cmd_identifier_token22] = ACTIONS(943), - [aux_sym_cmd_identifier_token23] = ACTIONS(943), - [aux_sym_cmd_identifier_token24] = ACTIONS(943), - [aux_sym_cmd_identifier_token25] = ACTIONS(943), - [aux_sym_cmd_identifier_token26] = ACTIONS(943), - [aux_sym_cmd_identifier_token27] = ACTIONS(943), - [aux_sym_cmd_identifier_token28] = ACTIONS(943), - [aux_sym_cmd_identifier_token29] = ACTIONS(943), - [aux_sym_cmd_identifier_token30] = ACTIONS(943), - [aux_sym_cmd_identifier_token31] = ACTIONS(943), - [aux_sym_cmd_identifier_token32] = ACTIONS(943), - [aux_sym_cmd_identifier_token33] = ACTIONS(943), - [aux_sym_cmd_identifier_token34] = ACTIONS(943), - [aux_sym_cmd_identifier_token35] = ACTIONS(943), - [aux_sym_cmd_identifier_token36] = ACTIONS(943), - [aux_sym_cmd_identifier_token37] = ACTIONS(943), - [aux_sym_cmd_identifier_token38] = ACTIONS(943), - [aux_sym_cmd_identifier_token39] = ACTIONS(943), - [aux_sym_cmd_identifier_token40] = ACTIONS(943), - [anon_sym_def] = ACTIONS(943), - [anon_sym_export_DASHenv] = ACTIONS(943), - [anon_sym_extern] = ACTIONS(943), - [anon_sym_module] = ACTIONS(943), - [anon_sym_use] = ACTIONS(943), - [anon_sym_LPAREN] = ACTIONS(943), - [anon_sym_COMMA] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(943), - [anon_sym_error] = ACTIONS(943), - [anon_sym_DASH2] = ACTIONS(943), - [anon_sym_break] = ACTIONS(943), - [anon_sym_continue] = ACTIONS(943), - [anon_sym_for] = ACTIONS(943), - [anon_sym_in2] = ACTIONS(943), - [anon_sym_loop] = ACTIONS(943), - [anon_sym_make] = ACTIONS(943), - [anon_sym_while] = ACTIONS(943), - [anon_sym_do] = ACTIONS(943), - [anon_sym_if] = ACTIONS(943), - [anon_sym_else] = ACTIONS(943), - [anon_sym_match] = ACTIONS(943), - [anon_sym_RBRACE] = ACTIONS(943), - [anon_sym_try] = ACTIONS(943), - [anon_sym_catch] = ACTIONS(943), - [anon_sym_return] = ACTIONS(943), - [anon_sym_source] = ACTIONS(943), - [anon_sym_source_DASHenv] = ACTIONS(943), - [anon_sym_register] = ACTIONS(943), - [anon_sym_hide] = ACTIONS(943), - [anon_sym_hide_DASHenv] = ACTIONS(943), - [anon_sym_overlay] = ACTIONS(943), - [anon_sym_as] = ACTIONS(943), - [anon_sym_PLUS2] = ACTIONS(943), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(943), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(943), - [aux_sym__val_number_decimal_token1] = ACTIONS(943), - [aux_sym__val_number_decimal_token2] = ACTIONS(943), - [aux_sym__val_number_decimal_token3] = ACTIONS(943), - [aux_sym__val_number_decimal_token4] = ACTIONS(943), - [aux_sym__val_number_token1] = ACTIONS(943), - [aux_sym__val_number_token2] = ACTIONS(943), - [aux_sym__val_number_token3] = ACTIONS(943), - [aux_sym__val_number_token4] = ACTIONS(943), - [aux_sym__val_number_token5] = ACTIONS(943), - [aux_sym__val_number_token6] = ACTIONS(943), - [anon_sym_DQUOTE] = ACTIONS(943), - [sym__str_single_quotes] = ACTIONS(943), - [sym__str_back_ticks] = ACTIONS(943), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(943), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(943), - [sym__entry_separator] = ACTIONS(945), - [anon_sym_DOT2] = ACTIONS(1849), + [aux_sym_cell_path_repeat1] = STATE(446), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1931), + [anon_sym_DOLLAR] = ACTIONS(1931), + [anon_sym_error] = ACTIONS(1931), + [anon_sym_DASH2] = ACTIONS(1931), + [anon_sym_break] = ACTIONS(1931), + [anon_sym_continue] = ACTIONS(1931), + [anon_sym_for] = ACTIONS(1931), + [anon_sym_in2] = 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_hide] = ACTIONS(1931), + [anon_sym_hide_DASHenv] = ACTIONS(1931), + [anon_sym_overlay] = ACTIONS(1931), + [anon_sym_as] = ACTIONS(1931), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_decimal_token3] = ACTIONS(1931), + [aux_sym__val_number_decimal_token4] = ACTIONS(1931), + [aux_sym__val_number_token1] = ACTIONS(1931), + [aux_sym__val_number_token2] = ACTIONS(1931), + [aux_sym__val_number_token3] = ACTIONS(1931), + [aux_sym__val_number_token4] = ACTIONS(1931), + [aux_sym__val_number_token5] = ACTIONS(1931), + [aux_sym__val_number_token6] = ACTIONS(1931), + [anon_sym_DQUOTE] = ACTIONS(1931), + [sym__str_single_quotes] = ACTIONS(1931), + [sym__str_back_ticks] = ACTIONS(1931), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1931), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1931), + [sym__entry_separator] = ACTIONS(1933), + [anon_sym_register] = ACTIONS(1931), + [anon_sym_DOT2] = ACTIONS(1837), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(945), + [sym_raw_string_begin] = ACTIONS(1933), }, [424] = { - [sym_cell_path] = STATE(598), - [sym_path] = STATE(569), [sym_comment] = STATE(424), - [aux_sym_cell_path_repeat1] = STATE(451), - [anon_sym_export] = ACTIONS(1945), - [anon_sym_alias] = ACTIONS(1945), - [anon_sym_let] = ACTIONS(1945), - [anon_sym_let_DASHenv] = ACTIONS(1945), - [anon_sym_mut] = ACTIONS(1945), - [anon_sym_const] = ACTIONS(1945), - [aux_sym_cmd_identifier_token1] = ACTIONS(1945), - [aux_sym_cmd_identifier_token2] = ACTIONS(1945), - [aux_sym_cmd_identifier_token3] = ACTIONS(1945), - [aux_sym_cmd_identifier_token4] = ACTIONS(1945), - [aux_sym_cmd_identifier_token5] = ACTIONS(1945), - [aux_sym_cmd_identifier_token6] = ACTIONS(1945), - [aux_sym_cmd_identifier_token7] = ACTIONS(1945), - [aux_sym_cmd_identifier_token8] = ACTIONS(1945), + [anon_sym_export] = ACTIONS(974), + [anon_sym_alias] = ACTIONS(974), + [anon_sym_let] = ACTIONS(974), + [anon_sym_let_DASHenv] = ACTIONS(974), + [anon_sym_mut] = ACTIONS(974), + [anon_sym_const] = ACTIONS(974), + [aux_sym_cmd_identifier_token1] = ACTIONS(974), + [aux_sym_cmd_identifier_token2] = ACTIONS(974), + [aux_sym_cmd_identifier_token3] = ACTIONS(974), + [aux_sym_cmd_identifier_token4] = ACTIONS(974), + [aux_sym_cmd_identifier_token5] = ACTIONS(974), + [aux_sym_cmd_identifier_token6] = ACTIONS(974), + [aux_sym_cmd_identifier_token7] = ACTIONS(974), + [aux_sym_cmd_identifier_token8] = ACTIONS(974), + [aux_sym_cmd_identifier_token9] = ACTIONS(974), + [aux_sym_cmd_identifier_token10] = ACTIONS(974), + [aux_sym_cmd_identifier_token11] = ACTIONS(974), + [aux_sym_cmd_identifier_token12] = ACTIONS(974), + [aux_sym_cmd_identifier_token13] = ACTIONS(974), + [aux_sym_cmd_identifier_token14] = ACTIONS(974), + [aux_sym_cmd_identifier_token15] = ACTIONS(974), + [aux_sym_cmd_identifier_token16] = ACTIONS(974), + [aux_sym_cmd_identifier_token17] = ACTIONS(974), + [aux_sym_cmd_identifier_token18] = ACTIONS(974), + [aux_sym_cmd_identifier_token19] = ACTIONS(974), + [aux_sym_cmd_identifier_token20] = ACTIONS(974), + [aux_sym_cmd_identifier_token21] = ACTIONS(974), + [aux_sym_cmd_identifier_token22] = ACTIONS(974), + [aux_sym_cmd_identifier_token23] = ACTIONS(974), + [aux_sym_cmd_identifier_token24] = ACTIONS(974), + [aux_sym_cmd_identifier_token25] = ACTIONS(974), + [aux_sym_cmd_identifier_token26] = ACTIONS(974), + [aux_sym_cmd_identifier_token27] = ACTIONS(974), + [aux_sym_cmd_identifier_token28] = ACTIONS(974), + [aux_sym_cmd_identifier_token29] = ACTIONS(974), + [aux_sym_cmd_identifier_token30] = ACTIONS(974), + [aux_sym_cmd_identifier_token31] = ACTIONS(974), + [aux_sym_cmd_identifier_token32] = ACTIONS(974), + [aux_sym_cmd_identifier_token33] = ACTIONS(974), + [aux_sym_cmd_identifier_token34] = ACTIONS(974), + [aux_sym_cmd_identifier_token35] = ACTIONS(974), + [aux_sym_cmd_identifier_token36] = ACTIONS(974), + [aux_sym_cmd_identifier_token37] = ACTIONS(974), + [aux_sym_cmd_identifier_token38] = ACTIONS(974), + [aux_sym_cmd_identifier_token39] = ACTIONS(974), + [aux_sym_cmd_identifier_token40] = ACTIONS(974), + [anon_sym_def] = ACTIONS(974), + [anon_sym_export_DASHenv] = ACTIONS(974), + [anon_sym_extern] = ACTIONS(974), + [anon_sym_module] = ACTIONS(974), + [anon_sym_use] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(974), + [anon_sym_COMMA] = ACTIONS(974), + [anon_sym_DOLLAR] = ACTIONS(974), + [anon_sym_error] = ACTIONS(974), + [anon_sym_DASH2] = ACTIONS(974), + [anon_sym_break] = ACTIONS(974), + [anon_sym_continue] = ACTIONS(974), + [anon_sym_for] = ACTIONS(974), + [anon_sym_in2] = ACTIONS(974), + [anon_sym_loop] = ACTIONS(974), + [anon_sym_make] = ACTIONS(974), + [anon_sym_while] = ACTIONS(974), + [anon_sym_do] = ACTIONS(974), + [anon_sym_if] = ACTIONS(974), + [anon_sym_else] = ACTIONS(974), + [anon_sym_match] = ACTIONS(974), + [anon_sym_RBRACE] = ACTIONS(974), + [anon_sym_try] = ACTIONS(974), + [anon_sym_catch] = ACTIONS(974), + [anon_sym_return] = ACTIONS(974), + [anon_sym_source] = ACTIONS(974), + [anon_sym_source_DASHenv] = ACTIONS(974), + [anon_sym_hide] = ACTIONS(974), + [anon_sym_hide_DASHenv] = ACTIONS(974), + [anon_sym_overlay] = ACTIONS(974), + [anon_sym_as] = ACTIONS(974), + [anon_sym_PLUS2] = ACTIONS(974), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(974), + [anon_sym_DOT_DOT2] = ACTIONS(974), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(976), + [anon_sym_DOT_DOT_LT2] = ACTIONS(976), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(974), + [aux_sym__val_number_decimal_token1] = ACTIONS(974), + [aux_sym__val_number_decimal_token2] = ACTIONS(974), + [aux_sym__val_number_decimal_token3] = ACTIONS(974), + [aux_sym__val_number_decimal_token4] = ACTIONS(974), + [aux_sym__val_number_token1] = ACTIONS(974), + [aux_sym__val_number_token2] = ACTIONS(974), + [aux_sym__val_number_token3] = ACTIONS(974), + [aux_sym__val_number_token4] = ACTIONS(974), + [aux_sym__val_number_token5] = ACTIONS(974), + [aux_sym__val_number_token6] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(974), + [sym__str_single_quotes] = ACTIONS(974), + [sym__str_back_ticks] = ACTIONS(974), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(974), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(974), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(974), + [sym__entry_separator] = ACTIONS(976), + [anon_sym_register] = ACTIONS(974), + [anon_sym_DOT2] = ACTIONS(974), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(976), + }, + [425] = { + [sym_cell_path] = STATE(642), + [sym_path] = STATE(559), + [sym_comment] = STATE(425), + [aux_sym_cell_path_repeat1] = STATE(446), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1935), + [anon_sym_DOLLAR] = ACTIONS(1935), + [anon_sym_error] = ACTIONS(1935), + [anon_sym_DASH2] = ACTIONS(1935), + [anon_sym_break] = ACTIONS(1935), + [anon_sym_continue] = ACTIONS(1935), + [anon_sym_for] = ACTIONS(1935), + [anon_sym_in2] = 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_hide] = ACTIONS(1935), + [anon_sym_hide_DASHenv] = ACTIONS(1935), + [anon_sym_overlay] = ACTIONS(1935), + [anon_sym_as] = ACTIONS(1935), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(1935), + [aux_sym__val_number_token5] = ACTIONS(1935), + [aux_sym__val_number_token6] = ACTIONS(1935), + [anon_sym_DQUOTE] = ACTIONS(1935), + [sym__str_single_quotes] = ACTIONS(1935), + [sym__str_back_ticks] = ACTIONS(1935), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1935), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1935), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1935), + [sym__entry_separator] = ACTIONS(1937), + [anon_sym_register] = ACTIONS(1935), + [anon_sym_DOT2] = ACTIONS(1837), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1937), + }, + [426] = { + [sym_comment] = STATE(426), + [anon_sym_export] = ACTIONS(1766), + [anon_sym_alias] = ACTIONS(1766), + [anon_sym_let] = ACTIONS(1766), + [anon_sym_let_DASHenv] = ACTIONS(1766), + [anon_sym_mut] = ACTIONS(1766), + [anon_sym_const] = ACTIONS(1766), + [aux_sym_cmd_identifier_token1] = ACTIONS(1766), + [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(1766), + [aux_sym_cmd_identifier_token9] = ACTIONS(1766), + [aux_sym_cmd_identifier_token10] = ACTIONS(1768), + [aux_sym_cmd_identifier_token11] = ACTIONS(1768), + [aux_sym_cmd_identifier_token12] = ACTIONS(1766), + [aux_sym_cmd_identifier_token13] = ACTIONS(1766), + [aux_sym_cmd_identifier_token14] = ACTIONS(1766), + [aux_sym_cmd_identifier_token15] = ACTIONS(1766), + [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(1766), + [aux_sym_cmd_identifier_token35] = ACTIONS(1768), + [aux_sym_cmd_identifier_token36] = ACTIONS(1768), + [aux_sym_cmd_identifier_token37] = ACTIONS(1768), + [aux_sym_cmd_identifier_token38] = ACTIONS(1766), + [aux_sym_cmd_identifier_token39] = ACTIONS(1768), + [aux_sym_cmd_identifier_token40] = ACTIONS(1768), + [anon_sym_def] = ACTIONS(1766), + [anon_sym_export_DASHenv] = ACTIONS(1766), + [anon_sym_extern] = ACTIONS(1766), + [anon_sym_module] = ACTIONS(1766), + [anon_sym_use] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1766), + [anon_sym_COMMA] = ACTIONS(1768), + [anon_sym_DOLLAR] = ACTIONS(1766), + [anon_sym_error] = ACTIONS(1766), + [anon_sym_DASH2] = ACTIONS(1766), + [anon_sym_break] = ACTIONS(1766), + [anon_sym_continue] = ACTIONS(1766), + [anon_sym_for] = ACTIONS(1766), + [anon_sym_in2] = ACTIONS(1766), + [anon_sym_loop] = ACTIONS(1766), + [anon_sym_make] = ACTIONS(1766), + [anon_sym_while] = ACTIONS(1766), + [anon_sym_do] = ACTIONS(1766), + [anon_sym_if] = ACTIONS(1766), + [anon_sym_else] = ACTIONS(1766), + [anon_sym_match] = ACTIONS(1766), + [anon_sym_RBRACE] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1766), + [anon_sym_catch] = ACTIONS(1766), + [anon_sym_return] = ACTIONS(1766), + [anon_sym_source] = ACTIONS(1766), + [anon_sym_source_DASHenv] = ACTIONS(1766), + [anon_sym_hide] = ACTIONS(1766), + [anon_sym_hide_DASHenv] = ACTIONS(1766), + [anon_sym_overlay] = ACTIONS(1766), + [anon_sym_as] = ACTIONS(1766), + [anon_sym_LPAREN2] = ACTIONS(1768), + [anon_sym_PLUS2] = ACTIONS(1766), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1768), + [anon_sym_DOT_DOT2] = ACTIONS(1766), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1768), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1768), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1768), + [aux_sym__val_number_decimal_token1] = ACTIONS(1766), + [aux_sym__val_number_decimal_token2] = ACTIONS(1768), + [aux_sym__val_number_decimal_token3] = ACTIONS(1768), + [aux_sym__val_number_decimal_token4] = ACTIONS(1768), + [aux_sym__val_number_token1] = ACTIONS(1768), + [aux_sym__val_number_token2] = ACTIONS(1768), + [aux_sym__val_number_token3] = ACTIONS(1768), + [aux_sym__val_number_token4] = ACTIONS(1766), + [aux_sym__val_number_token5] = ACTIONS(1766), + [aux_sym__val_number_token6] = ACTIONS(1766), + [anon_sym_DQUOTE] = ACTIONS(1768), + [sym__str_single_quotes] = ACTIONS(1768), + [sym__str_back_ticks] = ACTIONS(1768), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1768), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1768), + [anon_sym_register] = ACTIONS(1766), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1766), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1768), + }, + [427] = { + [sym_cell_path] = STATE(668), + [sym_path] = STATE(559), + [sym_comment] = STATE(427), + [aux_sym_cell_path_repeat1] = STATE(446), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1939), + [anon_sym_DOLLAR] = ACTIONS(1939), + [anon_sym_error] = ACTIONS(1939), + [anon_sym_DASH2] = ACTIONS(1939), + [anon_sym_break] = ACTIONS(1939), + [anon_sym_continue] = ACTIONS(1939), + [anon_sym_for] = ACTIONS(1939), + [anon_sym_in2] = 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_hide] = ACTIONS(1939), + [anon_sym_hide_DASHenv] = ACTIONS(1939), + [anon_sym_overlay] = ACTIONS(1939), + [anon_sym_as] = ACTIONS(1939), + [anon_sym_PLUS2] = ACTIONS(1939), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1939), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1939), + [aux_sym__val_number_decimal_token1] = ACTIONS(1939), + [aux_sym__val_number_decimal_token2] = ACTIONS(1939), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [aux_sym__val_number_token1] = ACTIONS(1939), + [aux_sym__val_number_token2] = ACTIONS(1939), + [aux_sym__val_number_token3] = ACTIONS(1939), + [aux_sym__val_number_token4] = ACTIONS(1939), + [aux_sym__val_number_token5] = ACTIONS(1939), + [aux_sym__val_number_token6] = ACTIONS(1939), + [anon_sym_DQUOTE] = ACTIONS(1939), + [sym__str_single_quotes] = ACTIONS(1939), + [sym__str_back_ticks] = ACTIONS(1939), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1939), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1939), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1939), + [sym__entry_separator] = ACTIONS(1941), + [anon_sym_register] = ACTIONS(1939), + [anon_sym_DOT2] = ACTIONS(1837), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1941), + }, + [428] = { + [sym_comment] = STATE(428), + [anon_sym_export] = ACTIONS(968), + [anon_sym_alias] = ACTIONS(968), + [anon_sym_let] = ACTIONS(968), + [anon_sym_let_DASHenv] = ACTIONS(968), + [anon_sym_mut] = ACTIONS(968), + [anon_sym_const] = ACTIONS(968), + [aux_sym_cmd_identifier_token1] = ACTIONS(968), + [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(968), + [aux_sym_cmd_identifier_token9] = ACTIONS(968), + [aux_sym_cmd_identifier_token10] = ACTIONS(970), + [aux_sym_cmd_identifier_token11] = ACTIONS(970), + [aux_sym_cmd_identifier_token12] = ACTIONS(968), + [aux_sym_cmd_identifier_token13] = ACTIONS(968), + [aux_sym_cmd_identifier_token14] = ACTIONS(968), + [aux_sym_cmd_identifier_token15] = ACTIONS(968), + [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(968), + [aux_sym_cmd_identifier_token35] = ACTIONS(970), + [aux_sym_cmd_identifier_token36] = ACTIONS(970), + [aux_sym_cmd_identifier_token37] = ACTIONS(970), + [aux_sym_cmd_identifier_token38] = ACTIONS(968), + [aux_sym_cmd_identifier_token39] = ACTIONS(970), + [aux_sym_cmd_identifier_token40] = ACTIONS(970), + [anon_sym_def] = ACTIONS(968), + [anon_sym_export_DASHenv] = ACTIONS(968), + [anon_sym_extern] = ACTIONS(968), + [anon_sym_module] = ACTIONS(968), + [anon_sym_use] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(970), + [anon_sym_COMMA] = ACTIONS(970), + [anon_sym_DOLLAR] = ACTIONS(968), + [anon_sym_error] = ACTIONS(968), + [anon_sym_DASH2] = ACTIONS(968), + [anon_sym_break] = ACTIONS(968), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_for] = ACTIONS(968), + [anon_sym_in2] = ACTIONS(968), + [anon_sym_loop] = ACTIONS(968), + [anon_sym_make] = ACTIONS(968), + [anon_sym_while] = ACTIONS(968), + [anon_sym_do] = ACTIONS(968), + [anon_sym_if] = ACTIONS(968), + [anon_sym_else] = ACTIONS(968), + [anon_sym_match] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(970), + [anon_sym_try] = ACTIONS(968), + [anon_sym_catch] = ACTIONS(968), + [anon_sym_return] = ACTIONS(968), + [anon_sym_source] = ACTIONS(968), + [anon_sym_source_DASHenv] = ACTIONS(968), + [anon_sym_hide] = ACTIONS(968), + [anon_sym_hide_DASHenv] = ACTIONS(968), + [anon_sym_overlay] = ACTIONS(968), + [anon_sym_as] = ACTIONS(968), + [anon_sym_QMARK2] = ACTIONS(1943), + [anon_sym_PLUS2] = ACTIONS(968), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(970), + [anon_sym_DOT_DOT2] = ACTIONS(968), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(970), + [anon_sym_DOT_DOT_LT2] = ACTIONS(970), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(970), + [aux_sym__val_number_decimal_token1] = ACTIONS(968), + [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), + [aux_sym__val_number_token4] = ACTIONS(968), + [aux_sym__val_number_token5] = ACTIONS(968), + [aux_sym__val_number_token6] = ACTIONS(968), + [anon_sym_DQUOTE] = ACTIONS(970), + [sym__str_single_quotes] = ACTIONS(970), + [sym__str_back_ticks] = ACTIONS(970), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(970), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(970), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(970), + [anon_sym_register] = ACTIONS(968), + [anon_sym_DOT2] = ACTIONS(968), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(970), + }, + [429] = { + [sym_cell_path] = STATE(622), + [sym_path] = STATE(559), + [sym_comment] = STATE(429), + [aux_sym_cell_path_repeat1] = STATE(446), + [anon_sym_export] = ACTIONS(1945), + [anon_sym_alias] = ACTIONS(1945), + [anon_sym_let] = ACTIONS(1945), + [anon_sym_let_DASHenv] = ACTIONS(1945), + [anon_sym_mut] = ACTIONS(1945), + [anon_sym_const] = ACTIONS(1945), + [aux_sym_cmd_identifier_token1] = ACTIONS(1945), + [aux_sym_cmd_identifier_token2] = ACTIONS(1945), + [aux_sym_cmd_identifier_token3] = ACTIONS(1945), + [aux_sym_cmd_identifier_token4] = ACTIONS(1945), + [aux_sym_cmd_identifier_token5] = ACTIONS(1945), + [aux_sym_cmd_identifier_token6] = ACTIONS(1945), + [aux_sym_cmd_identifier_token7] = ACTIONS(1945), + [aux_sym_cmd_identifier_token8] = ACTIONS(1945), [aux_sym_cmd_identifier_token9] = ACTIONS(1945), [aux_sym_cmd_identifier_token10] = ACTIONS(1945), [aux_sym_cmd_identifier_token11] = ACTIONS(1945), @@ -128445,7 +128917,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(1945), [anon_sym_source] = ACTIONS(1945), [anon_sym_source_DASHenv] = ACTIONS(1945), - [anon_sym_register] = ACTIONS(1945), [anon_sym_hide] = ACTIONS(1945), [anon_sym_hide_DASHenv] = ACTIONS(1945), [anon_sym_overlay] = ACTIONS(1945), @@ -128470,15 +128941,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1945), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1945), [sym__entry_separator] = ACTIONS(1947), - [anon_sym_DOT2] = ACTIONS(1849), + [anon_sym_register] = ACTIONS(1945), + [anon_sym_DOT2] = ACTIONS(1837), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1947), }, - [425] = { - [sym_cell_path] = STATE(601), - [sym_path] = STATE(569), - [sym_comment] = STATE(425), - [aux_sym_cell_path_repeat1] = STATE(451), + [430] = { + [sym_comment] = STATE(430), + [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(1794), + [aux_sym_cmd_identifier_token3] = ACTIONS(1794), + [aux_sym_cmd_identifier_token4] = ACTIONS(1794), + [aux_sym_cmd_identifier_token5] = ACTIONS(1794), + [aux_sym_cmd_identifier_token6] = ACTIONS(1794), + [aux_sym_cmd_identifier_token7] = ACTIONS(1794), + [aux_sym_cmd_identifier_token8] = ACTIONS(1792), + [aux_sym_cmd_identifier_token9] = ACTIONS(1792), + [aux_sym_cmd_identifier_token10] = ACTIONS(1794), + [aux_sym_cmd_identifier_token11] = ACTIONS(1794), + [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(1794), + [aux_sym_cmd_identifier_token17] = ACTIONS(1794), + [aux_sym_cmd_identifier_token18] = ACTIONS(1794), + [aux_sym_cmd_identifier_token19] = ACTIONS(1794), + [aux_sym_cmd_identifier_token20] = ACTIONS(1794), + [aux_sym_cmd_identifier_token21] = ACTIONS(1794), + [aux_sym_cmd_identifier_token22] = ACTIONS(1794), + [aux_sym_cmd_identifier_token23] = ACTIONS(1794), + [aux_sym_cmd_identifier_token24] = ACTIONS(1794), + [aux_sym_cmd_identifier_token25] = ACTIONS(1794), + [aux_sym_cmd_identifier_token26] = ACTIONS(1794), + [aux_sym_cmd_identifier_token27] = ACTIONS(1794), + [aux_sym_cmd_identifier_token28] = ACTIONS(1794), + [aux_sym_cmd_identifier_token29] = ACTIONS(1794), + [aux_sym_cmd_identifier_token30] = ACTIONS(1794), + [aux_sym_cmd_identifier_token31] = ACTIONS(1794), + [aux_sym_cmd_identifier_token32] = ACTIONS(1794), + [aux_sym_cmd_identifier_token33] = ACTIONS(1794), + [aux_sym_cmd_identifier_token34] = ACTIONS(1792), + [aux_sym_cmd_identifier_token35] = ACTIONS(1794), + [aux_sym_cmd_identifier_token36] = ACTIONS(1794), + [aux_sym_cmd_identifier_token37] = 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(1792), + [anon_sym_COMMA] = ACTIONS(1794), + [anon_sym_DOLLAR] = ACTIONS(1792), + [anon_sym_error] = ACTIONS(1792), + [anon_sym_DASH2] = ACTIONS(1792), + [anon_sym_break] = ACTIONS(1792), + [anon_sym_continue] = ACTIONS(1792), + [anon_sym_for] = ACTIONS(1792), + [anon_sym_in2] = 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_hide] = ACTIONS(1792), + [anon_sym_hide_DASHenv] = ACTIONS(1792), + [anon_sym_overlay] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1792), + [anon_sym_LPAREN2] = ACTIONS(1794), + [anon_sym_PLUS2] = ACTIONS(1792), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1794), + [anon_sym_DOT_DOT2] = ACTIONS(1792), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1794), + [anon_sym_DOT_DOT_LT2] = 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), + [aux_sym__val_number_decimal_token3] = ACTIONS(1794), + [aux_sym__val_number_decimal_token4] = ACTIONS(1794), + [aux_sym__val_number_token1] = ACTIONS(1794), + [aux_sym__val_number_token2] = ACTIONS(1794), + [aux_sym__val_number_token3] = ACTIONS(1794), + [aux_sym__val_number_token4] = ACTIONS(1792), + [aux_sym__val_number_token5] = ACTIONS(1792), + [aux_sym__val_number_token6] = ACTIONS(1792), + [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1794), + [anon_sym_register] = ACTIONS(1792), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1792), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1794), + }, + [431] = { + [sym_cell_path] = STATE(663), + [sym_path] = STATE(559), + [sym_comment] = STATE(431), + [aux_sym_cell_path_repeat1] = STATE(446), [anon_sym_export] = ACTIONS(1949), [anon_sym_alias] = ACTIONS(1949), [anon_sym_let] = ACTIONS(1949), @@ -128552,7 +129131,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -128577,15 +129155,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1949), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1949), [sym__entry_separator] = ACTIONS(1951), - [anon_sym_DOT2] = ACTIONS(1849), + [anon_sym_register] = ACTIONS(1949), + [anon_sym_DOT2] = ACTIONS(1837), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1951), }, - [426] = { - [sym_cell_path] = STATE(602), - [sym_path] = STATE(569), - [sym_comment] = STATE(426), - [aux_sym_cell_path_repeat1] = STATE(451), + [432] = { + [sym_cell_path] = STATE(664), + [sym_path] = STATE(559), + [sym_comment] = STATE(432), + [aux_sym_cell_path_repeat1] = STATE(446), [anon_sym_export] = ACTIONS(1953), [anon_sym_alias] = ACTIONS(1953), [anon_sym_let] = ACTIONS(1953), @@ -128659,7 +129238,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -128684,15 +129262,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1953), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1953), [sym__entry_separator] = ACTIONS(1955), - [anon_sym_DOT2] = ACTIONS(1849), + [anon_sym_register] = ACTIONS(1953), + [anon_sym_DOT2] = ACTIONS(1837), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1955), }, - [427] = { - [sym_cell_path] = STATE(603), - [sym_path] = STATE(569), - [sym_comment] = STATE(427), - [aux_sym_cell_path_repeat1] = STATE(451), + [433] = { + [sym_cell_path] = STATE(665), + [sym_path] = STATE(559), + [sym_comment] = STATE(433), + [aux_sym_cell_path_repeat1] = STATE(446), [anon_sym_export] = ACTIONS(1957), [anon_sym_alias] = ACTIONS(1957), [anon_sym_let] = ACTIONS(1957), @@ -128766,7 +129345,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(1957), [anon_sym_source] = ACTIONS(1957), [anon_sym_source_DASHenv] = ACTIONS(1957), - [anon_sym_register] = ACTIONS(1957), [anon_sym_hide] = ACTIONS(1957), [anon_sym_hide_DASHenv] = ACTIONS(1957), [anon_sym_overlay] = ACTIONS(1957), @@ -128791,122 +129369,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1957), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1957), [sym__entry_separator] = ACTIONS(1959), - [anon_sym_DOT2] = ACTIONS(1849), + [anon_sym_register] = ACTIONS(1957), + [anon_sym_DOT2] = ACTIONS(1837), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1959), }, - [428] = { - [sym_comment] = STATE(428), - [anon_sym_export] = ACTIONS(1711), - [anon_sym_alias] = ACTIONS(1711), - [anon_sym_let] = ACTIONS(1711), - [anon_sym_let_DASHenv] = ACTIONS(1711), - [anon_sym_mut] = ACTIONS(1711), - [anon_sym_const] = ACTIONS(1711), - [aux_sym_cmd_identifier_token1] = ACTIONS(1711), - [aux_sym_cmd_identifier_token2] = ACTIONS(1713), - [aux_sym_cmd_identifier_token3] = ACTIONS(1713), - [aux_sym_cmd_identifier_token4] = ACTIONS(1713), - [aux_sym_cmd_identifier_token5] = ACTIONS(1713), - [aux_sym_cmd_identifier_token6] = ACTIONS(1713), - [aux_sym_cmd_identifier_token7] = ACTIONS(1713), - [aux_sym_cmd_identifier_token8] = ACTIONS(1711), - [aux_sym_cmd_identifier_token9] = ACTIONS(1711), - [aux_sym_cmd_identifier_token10] = ACTIONS(1713), - [aux_sym_cmd_identifier_token11] = ACTIONS(1713), - [aux_sym_cmd_identifier_token12] = ACTIONS(1711), - [aux_sym_cmd_identifier_token13] = ACTIONS(1711), - [aux_sym_cmd_identifier_token14] = ACTIONS(1711), - [aux_sym_cmd_identifier_token15] = ACTIONS(1711), - [aux_sym_cmd_identifier_token16] = ACTIONS(1713), - [aux_sym_cmd_identifier_token17] = ACTIONS(1713), - [aux_sym_cmd_identifier_token18] = ACTIONS(1713), - [aux_sym_cmd_identifier_token19] = ACTIONS(1713), - [aux_sym_cmd_identifier_token20] = ACTIONS(1713), - [aux_sym_cmd_identifier_token21] = ACTIONS(1713), - [aux_sym_cmd_identifier_token22] = ACTIONS(1713), - [aux_sym_cmd_identifier_token23] = ACTIONS(1713), - [aux_sym_cmd_identifier_token24] = ACTIONS(1713), - [aux_sym_cmd_identifier_token25] = ACTIONS(1713), - [aux_sym_cmd_identifier_token26] = ACTIONS(1713), - [aux_sym_cmd_identifier_token27] = ACTIONS(1713), - [aux_sym_cmd_identifier_token28] = ACTIONS(1713), - [aux_sym_cmd_identifier_token29] = ACTIONS(1713), - [aux_sym_cmd_identifier_token30] = ACTIONS(1713), - [aux_sym_cmd_identifier_token31] = ACTIONS(1713), - [aux_sym_cmd_identifier_token32] = ACTIONS(1713), - [aux_sym_cmd_identifier_token33] = ACTIONS(1713), - [aux_sym_cmd_identifier_token34] = ACTIONS(1711), - [aux_sym_cmd_identifier_token35] = ACTIONS(1713), - [aux_sym_cmd_identifier_token36] = ACTIONS(1713), - [aux_sym_cmd_identifier_token37] = ACTIONS(1713), - [aux_sym_cmd_identifier_token38] = ACTIONS(1711), - [aux_sym_cmd_identifier_token39] = ACTIONS(1713), - [aux_sym_cmd_identifier_token40] = ACTIONS(1713), - [anon_sym_def] = ACTIONS(1711), - [anon_sym_export_DASHenv] = ACTIONS(1711), - [anon_sym_extern] = ACTIONS(1711), - [anon_sym_module] = ACTIONS(1711), - [anon_sym_use] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_COMMA] = ACTIONS(1713), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_error] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_break] = ACTIONS(1711), - [anon_sym_continue] = ACTIONS(1711), - [anon_sym_for] = ACTIONS(1711), - [anon_sym_in2] = ACTIONS(1711), - [anon_sym_loop] = ACTIONS(1711), - [anon_sym_make] = ACTIONS(1711), - [anon_sym_while] = ACTIONS(1711), - [anon_sym_do] = ACTIONS(1711), - [anon_sym_if] = ACTIONS(1711), - [anon_sym_else] = ACTIONS(1711), - [anon_sym_match] = ACTIONS(1711), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_try] = ACTIONS(1711), - [anon_sym_catch] = ACTIONS(1711), - [anon_sym_return] = ACTIONS(1711), - [anon_sym_source] = ACTIONS(1711), - [anon_sym_source_DASHenv] = ACTIONS(1711), - [anon_sym_register] = ACTIONS(1711), - [anon_sym_hide] = ACTIONS(1711), - [anon_sym_hide_DASHenv] = ACTIONS(1711), - [anon_sym_overlay] = ACTIONS(1711), - [anon_sym_as] = ACTIONS(1711), - [anon_sym_LPAREN2] = ACTIONS(1713), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1713), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1713), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1713), - [aux_sym__val_number_decimal_token3] = ACTIONS(1713), - [aux_sym__val_number_decimal_token4] = ACTIONS(1713), - [aux_sym__val_number_token1] = ACTIONS(1713), - [aux_sym__val_number_token2] = ACTIONS(1713), - [aux_sym__val_number_token3] = ACTIONS(1713), - [aux_sym__val_number_token4] = ACTIONS(1711), - [aux_sym__val_number_token5] = ACTIONS(1711), - [aux_sym__val_number_token6] = ACTIONS(1711), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym__str_single_quotes] = ACTIONS(1713), - [sym__str_back_ticks] = ACTIONS(1713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1713), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1713), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1713), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1713), - }, - [429] = { - [sym_cell_path] = STATE(604), - [sym_path] = STATE(569), - [sym_comment] = STATE(429), - [aux_sym_cell_path_repeat1] = STATE(451), + [434] = { + [sym_cell_path] = STATE(637), + [sym_path] = STATE(559), + [sym_comment] = STATE(434), + [aux_sym_cell_path_repeat1] = STATE(446), [anon_sym_export] = ACTIONS(1961), [anon_sym_alias] = ACTIONS(1961), [anon_sym_let] = ACTIONS(1961), @@ -128980,7 +129452,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(1961), [anon_sym_source] = ACTIONS(1961), [anon_sym_source_DASHenv] = ACTIONS(1961), - [anon_sym_register] = ACTIONS(1961), [anon_sym_hide] = ACTIONS(1961), [anon_sym_hide_DASHenv] = ACTIONS(1961), [anon_sym_overlay] = ACTIONS(1961), @@ -129005,122 +129476,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1961), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1961), [sym__entry_separator] = ACTIONS(1963), - [anon_sym_DOT2] = ACTIONS(1849), + [anon_sym_register] = ACTIONS(1961), + [anon_sym_DOT2] = ACTIONS(1837), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1963), }, - [430] = { - [sym_cell_path] = STATE(605), - [sym_path] = STATE(569), - [sym_comment] = STATE(430), - [aux_sym_cell_path_repeat1] = STATE(451), - [anon_sym_export] = ACTIONS(1965), - [anon_sym_alias] = ACTIONS(1965), - [anon_sym_let] = ACTIONS(1965), - [anon_sym_let_DASHenv] = ACTIONS(1965), - [anon_sym_mut] = ACTIONS(1965), - [anon_sym_const] = ACTIONS(1965), - [aux_sym_cmd_identifier_token1] = ACTIONS(1965), - [aux_sym_cmd_identifier_token2] = ACTIONS(1965), - [aux_sym_cmd_identifier_token3] = ACTIONS(1965), - [aux_sym_cmd_identifier_token4] = ACTIONS(1965), - [aux_sym_cmd_identifier_token5] = ACTIONS(1965), - [aux_sym_cmd_identifier_token6] = ACTIONS(1965), - [aux_sym_cmd_identifier_token7] = ACTIONS(1965), - [aux_sym_cmd_identifier_token8] = ACTIONS(1965), - [aux_sym_cmd_identifier_token9] = ACTIONS(1965), - [aux_sym_cmd_identifier_token10] = ACTIONS(1965), - [aux_sym_cmd_identifier_token11] = ACTIONS(1965), - [aux_sym_cmd_identifier_token12] = ACTIONS(1965), - [aux_sym_cmd_identifier_token13] = ACTIONS(1965), - [aux_sym_cmd_identifier_token14] = ACTIONS(1965), - [aux_sym_cmd_identifier_token15] = ACTIONS(1965), - [aux_sym_cmd_identifier_token16] = ACTIONS(1965), - [aux_sym_cmd_identifier_token17] = ACTIONS(1965), - [aux_sym_cmd_identifier_token18] = ACTIONS(1965), - [aux_sym_cmd_identifier_token19] = ACTIONS(1965), - [aux_sym_cmd_identifier_token20] = ACTIONS(1965), - [aux_sym_cmd_identifier_token21] = ACTIONS(1965), - [aux_sym_cmd_identifier_token22] = ACTIONS(1965), - [aux_sym_cmd_identifier_token23] = ACTIONS(1965), - [aux_sym_cmd_identifier_token24] = ACTIONS(1965), - [aux_sym_cmd_identifier_token25] = ACTIONS(1965), - [aux_sym_cmd_identifier_token26] = ACTIONS(1965), - [aux_sym_cmd_identifier_token27] = ACTIONS(1965), - [aux_sym_cmd_identifier_token28] = ACTIONS(1965), - [aux_sym_cmd_identifier_token29] = ACTIONS(1965), - [aux_sym_cmd_identifier_token30] = ACTIONS(1965), - [aux_sym_cmd_identifier_token31] = ACTIONS(1965), - [aux_sym_cmd_identifier_token32] = ACTIONS(1965), - [aux_sym_cmd_identifier_token33] = ACTIONS(1965), - [aux_sym_cmd_identifier_token34] = ACTIONS(1965), - [aux_sym_cmd_identifier_token35] = ACTIONS(1965), - [aux_sym_cmd_identifier_token36] = ACTIONS(1965), - [aux_sym_cmd_identifier_token37] = ACTIONS(1965), - [aux_sym_cmd_identifier_token38] = ACTIONS(1965), - [aux_sym_cmd_identifier_token39] = ACTIONS(1965), - [aux_sym_cmd_identifier_token40] = ACTIONS(1965), - [anon_sym_def] = ACTIONS(1965), - [anon_sym_export_DASHenv] = ACTIONS(1965), - [anon_sym_extern] = ACTIONS(1965), - [anon_sym_module] = ACTIONS(1965), - [anon_sym_use] = ACTIONS(1965), - [anon_sym_LPAREN] = ACTIONS(1965), - [anon_sym_COMMA] = ACTIONS(1965), - [anon_sym_DOLLAR] = ACTIONS(1965), - [anon_sym_error] = ACTIONS(1965), - [anon_sym_DASH2] = ACTIONS(1965), - [anon_sym_break] = ACTIONS(1965), - [anon_sym_continue] = ACTIONS(1965), - [anon_sym_for] = ACTIONS(1965), - [anon_sym_in2] = ACTIONS(1965), - [anon_sym_loop] = ACTIONS(1965), - [anon_sym_make] = ACTIONS(1965), - [anon_sym_while] = ACTIONS(1965), - [anon_sym_do] = ACTIONS(1965), - [anon_sym_if] = ACTIONS(1965), - [anon_sym_else] = ACTIONS(1965), - [anon_sym_match] = ACTIONS(1965), - [anon_sym_RBRACE] = ACTIONS(1965), - [anon_sym_try] = ACTIONS(1965), - [anon_sym_catch] = ACTIONS(1965), - [anon_sym_return] = ACTIONS(1965), - [anon_sym_source] = ACTIONS(1965), - [anon_sym_source_DASHenv] = ACTIONS(1965), - [anon_sym_register] = ACTIONS(1965), - [anon_sym_hide] = ACTIONS(1965), - [anon_sym_hide_DASHenv] = ACTIONS(1965), - [anon_sym_overlay] = ACTIONS(1965), - [anon_sym_as] = ACTIONS(1965), - [anon_sym_PLUS2] = ACTIONS(1965), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1965), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1965), - [aux_sym__val_number_decimal_token1] = ACTIONS(1965), - [aux_sym__val_number_decimal_token2] = ACTIONS(1965), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), - [aux_sym__val_number_token1] = ACTIONS(1965), - [aux_sym__val_number_token2] = ACTIONS(1965), - [aux_sym__val_number_token3] = ACTIONS(1965), - [aux_sym__val_number_token4] = ACTIONS(1965), - [aux_sym__val_number_token5] = ACTIONS(1965), - [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(1965), - [sym__entry_separator] = ACTIONS(1967), - [anon_sym_DOT2] = ACTIONS(1849), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1967), + [435] = { + [sym_comment] = STATE(435), + [anon_sym_export] = ACTIONS(1693), + [anon_sym_alias] = ACTIONS(1693), + [anon_sym_let] = ACTIONS(1693), + [anon_sym_let_DASHenv] = ACTIONS(1693), + [anon_sym_mut] = ACTIONS(1693), + [anon_sym_const] = ACTIONS(1693), + [aux_sym_cmd_identifier_token1] = ACTIONS(1693), + [aux_sym_cmd_identifier_token2] = ACTIONS(1695), + [aux_sym_cmd_identifier_token3] = ACTIONS(1695), + [aux_sym_cmd_identifier_token4] = ACTIONS(1695), + [aux_sym_cmd_identifier_token5] = ACTIONS(1695), + [aux_sym_cmd_identifier_token6] = ACTIONS(1695), + [aux_sym_cmd_identifier_token7] = ACTIONS(1695), + [aux_sym_cmd_identifier_token8] = ACTIONS(1693), + [aux_sym_cmd_identifier_token9] = ACTIONS(1693), + [aux_sym_cmd_identifier_token10] = ACTIONS(1695), + [aux_sym_cmd_identifier_token11] = ACTIONS(1695), + [aux_sym_cmd_identifier_token12] = ACTIONS(1693), + [aux_sym_cmd_identifier_token13] = ACTIONS(1693), + [aux_sym_cmd_identifier_token14] = ACTIONS(1693), + [aux_sym_cmd_identifier_token15] = ACTIONS(1693), + [aux_sym_cmd_identifier_token16] = ACTIONS(1695), + [aux_sym_cmd_identifier_token17] = ACTIONS(1695), + [aux_sym_cmd_identifier_token18] = ACTIONS(1695), + [aux_sym_cmd_identifier_token19] = ACTIONS(1695), + [aux_sym_cmd_identifier_token20] = ACTIONS(1695), + [aux_sym_cmd_identifier_token21] = ACTIONS(1695), + [aux_sym_cmd_identifier_token22] = ACTIONS(1695), + [aux_sym_cmd_identifier_token23] = ACTIONS(1695), + [aux_sym_cmd_identifier_token24] = ACTIONS(1695), + [aux_sym_cmd_identifier_token25] = ACTIONS(1695), + [aux_sym_cmd_identifier_token26] = ACTIONS(1695), + [aux_sym_cmd_identifier_token27] = ACTIONS(1695), + [aux_sym_cmd_identifier_token28] = ACTIONS(1695), + [aux_sym_cmd_identifier_token29] = ACTIONS(1695), + [aux_sym_cmd_identifier_token30] = ACTIONS(1695), + [aux_sym_cmd_identifier_token31] = ACTIONS(1695), + [aux_sym_cmd_identifier_token32] = ACTIONS(1695), + [aux_sym_cmd_identifier_token33] = ACTIONS(1695), + [aux_sym_cmd_identifier_token34] = ACTIONS(1693), + [aux_sym_cmd_identifier_token35] = ACTIONS(1695), + [aux_sym_cmd_identifier_token36] = ACTIONS(1695), + [aux_sym_cmd_identifier_token37] = ACTIONS(1695), + [aux_sym_cmd_identifier_token38] = ACTIONS(1693), + [aux_sym_cmd_identifier_token39] = ACTIONS(1695), + [aux_sym_cmd_identifier_token40] = ACTIONS(1695), + [anon_sym_def] = ACTIONS(1693), + [anon_sym_export_DASHenv] = ACTIONS(1693), + [anon_sym_extern] = ACTIONS(1693), + [anon_sym_module] = ACTIONS(1693), + [anon_sym_use] = ACTIONS(1693), + [anon_sym_LPAREN] = ACTIONS(1695), + [anon_sym_COMMA] = ACTIONS(1695), + [anon_sym_DOLLAR] = ACTIONS(1693), + [anon_sym_error] = ACTIONS(1693), + [anon_sym_DASH2] = ACTIONS(1693), + [anon_sym_break] = ACTIONS(1693), + [anon_sym_continue] = ACTIONS(1693), + [anon_sym_for] = ACTIONS(1693), + [anon_sym_in2] = ACTIONS(1693), + [anon_sym_loop] = ACTIONS(1693), + [anon_sym_make] = ACTIONS(1693), + [anon_sym_while] = ACTIONS(1693), + [anon_sym_do] = ACTIONS(1693), + [anon_sym_if] = ACTIONS(1693), + [anon_sym_else] = ACTIONS(1693), + [anon_sym_match] = ACTIONS(1693), + [anon_sym_RBRACE] = ACTIONS(1695), + [anon_sym_try] = ACTIONS(1693), + [anon_sym_catch] = ACTIONS(1693), + [anon_sym_return] = ACTIONS(1693), + [anon_sym_source] = ACTIONS(1693), + [anon_sym_source_DASHenv] = ACTIONS(1693), + [anon_sym_hide] = ACTIONS(1693), + [anon_sym_hide_DASHenv] = ACTIONS(1693), + [anon_sym_overlay] = ACTIONS(1693), + [anon_sym_as] = ACTIONS(1693), + [anon_sym_PLUS2] = ACTIONS(1693), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1695), + [anon_sym_DOT_DOT2] = ACTIONS(1693), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1695), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1695), + [aux_sym__immediate_decimal_token1] = ACTIONS(1965), + [aux_sym__immediate_decimal_token2] = ACTIONS(1967), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1695), + [aux_sym__val_number_decimal_token1] = ACTIONS(1693), + [aux_sym__val_number_decimal_token2] = ACTIONS(1695), + [aux_sym__val_number_decimal_token3] = ACTIONS(1695), + [aux_sym__val_number_decimal_token4] = ACTIONS(1695), + [aux_sym__val_number_token1] = ACTIONS(1695), + [aux_sym__val_number_token2] = ACTIONS(1695), + [aux_sym__val_number_token3] = ACTIONS(1695), + [aux_sym__val_number_token4] = ACTIONS(1693), + [aux_sym__val_number_token5] = ACTIONS(1693), + [aux_sym__val_number_token6] = ACTIONS(1693), + [anon_sym_DQUOTE] = ACTIONS(1695), + [sym__str_single_quotes] = ACTIONS(1695), + [sym__str_back_ticks] = ACTIONS(1695), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1695), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1695), + [anon_sym_register] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1695), }, - [431] = { - [sym_cell_path] = STATE(606), - [sym_path] = STATE(569), - [sym_comment] = STATE(431), - [aux_sym_cell_path_repeat1] = STATE(451), + [436] = { + [sym_cell_path] = STATE(604), + [sym_path] = STATE(559), + [sym_comment] = STATE(436), + [aux_sym_cell_path_repeat1] = STATE(446), [anon_sym_export] = ACTIONS(1969), [anon_sym_alias] = ACTIONS(1969), [anon_sym_let] = ACTIONS(1969), @@ -129194,7 +129666,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(1969), [anon_sym_source] = ACTIONS(1969), [anon_sym_source_DASHenv] = ACTIONS(1969), - [anon_sym_register] = ACTIONS(1969), [anon_sym_hide] = ACTIONS(1969), [anon_sym_hide_DASHenv] = ACTIONS(1969), [anon_sym_overlay] = ACTIONS(1969), @@ -129219,2352 +129690,1500 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1969), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1969), [sym__entry_separator] = ACTIONS(1971), - [anon_sym_DOT2] = ACTIONS(1849), + [anon_sym_register] = ACTIONS(1969), + [anon_sym_DOT2] = ACTIONS(1837), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1971), }, - [432] = { - [sym_cell_path] = STATE(629), - [sym_path] = STATE(587), - [sym_comment] = STATE(432), - [aux_sym_cell_path_repeat1] = STATE(446), - [anon_sym_export] = ACTIONS(943), - [anon_sym_alias] = ACTIONS(943), - [anon_sym_let] = ACTIONS(943), - [anon_sym_let_DASHenv] = ACTIONS(943), - [anon_sym_mut] = ACTIONS(943), - [anon_sym_const] = ACTIONS(943), - [aux_sym_cmd_identifier_token1] = ACTIONS(943), - [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(943), - [aux_sym_cmd_identifier_token9] = ACTIONS(943), - [aux_sym_cmd_identifier_token10] = ACTIONS(945), - [aux_sym_cmd_identifier_token11] = ACTIONS(945), - [aux_sym_cmd_identifier_token12] = ACTIONS(943), - [aux_sym_cmd_identifier_token13] = ACTIONS(943), - [aux_sym_cmd_identifier_token14] = ACTIONS(943), - [aux_sym_cmd_identifier_token15] = ACTIONS(943), - [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(943), - [aux_sym_cmd_identifier_token35] = ACTIONS(945), - [aux_sym_cmd_identifier_token36] = ACTIONS(945), - [aux_sym_cmd_identifier_token37] = ACTIONS(945), - [aux_sym_cmd_identifier_token38] = ACTIONS(943), - [aux_sym_cmd_identifier_token39] = ACTIONS(945), - [aux_sym_cmd_identifier_token40] = ACTIONS(945), - [anon_sym_def] = ACTIONS(943), - [anon_sym_export_DASHenv] = ACTIONS(943), - [anon_sym_extern] = ACTIONS(943), - [anon_sym_module] = ACTIONS(943), - [anon_sym_use] = ACTIONS(943), - [anon_sym_LPAREN] = ACTIONS(945), - [anon_sym_COMMA] = ACTIONS(945), - [anon_sym_DOLLAR] = ACTIONS(943), - [anon_sym_error] = ACTIONS(943), - [anon_sym_DASH2] = ACTIONS(943), - [anon_sym_break] = ACTIONS(943), - [anon_sym_continue] = ACTIONS(943), - [anon_sym_for] = ACTIONS(943), - [anon_sym_in2] = ACTIONS(943), - [anon_sym_loop] = ACTIONS(943), - [anon_sym_make] = ACTIONS(943), - [anon_sym_while] = ACTIONS(943), - [anon_sym_do] = ACTIONS(943), - [anon_sym_if] = ACTIONS(943), - [anon_sym_else] = ACTIONS(943), - [anon_sym_match] = ACTIONS(943), - [anon_sym_RBRACE] = ACTIONS(945), - [anon_sym_try] = ACTIONS(943), - [anon_sym_catch] = ACTIONS(943), - [anon_sym_return] = ACTIONS(943), - [anon_sym_source] = ACTIONS(943), - [anon_sym_source_DASHenv] = ACTIONS(943), - [anon_sym_register] = ACTIONS(943), - [anon_sym_hide] = ACTIONS(943), - [anon_sym_hide_DASHenv] = ACTIONS(943), - [anon_sym_overlay] = ACTIONS(943), - [anon_sym_as] = ACTIONS(943), - [anon_sym_PLUS2] = ACTIONS(943), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(945), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(945), - [aux_sym__val_number_decimal_token1] = ACTIONS(943), - [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), - [aux_sym__val_number_token4] = ACTIONS(943), - [aux_sym__val_number_token5] = ACTIONS(943), - [aux_sym__val_number_token6] = ACTIONS(943), - [anon_sym_DQUOTE] = ACTIONS(945), - [sym__str_single_quotes] = ACTIONS(945), - [sym__str_back_ticks] = ACTIONS(945), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(945), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(945), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(945), - [anon_sym_COLON2] = ACTIONS(945), - [anon_sym_DOT2] = ACTIONS(1973), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(945), - }, - [433] = { - [sym_cell_path] = STATE(588), - [sym_path] = STATE(569), - [sym_comment] = STATE(433), - [aux_sym_cell_path_repeat1] = STATE(451), - [anon_sym_export] = ACTIONS(1975), - [anon_sym_alias] = ACTIONS(1975), - [anon_sym_let] = ACTIONS(1975), - [anon_sym_let_DASHenv] = ACTIONS(1975), - [anon_sym_mut] = ACTIONS(1975), - [anon_sym_const] = ACTIONS(1975), - [aux_sym_cmd_identifier_token1] = ACTIONS(1975), - [aux_sym_cmd_identifier_token2] = ACTIONS(1975), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [aux_sym_cmd_identifier_token6] = ACTIONS(1975), - [aux_sym_cmd_identifier_token7] = ACTIONS(1975), - [aux_sym_cmd_identifier_token8] = ACTIONS(1975), - [aux_sym_cmd_identifier_token9] = ACTIONS(1975), - [aux_sym_cmd_identifier_token10] = ACTIONS(1975), - [aux_sym_cmd_identifier_token11] = ACTIONS(1975), - [aux_sym_cmd_identifier_token12] = ACTIONS(1975), - [aux_sym_cmd_identifier_token13] = ACTIONS(1975), - [aux_sym_cmd_identifier_token14] = ACTIONS(1975), - [aux_sym_cmd_identifier_token15] = ACTIONS(1975), - [aux_sym_cmd_identifier_token16] = ACTIONS(1975), - [aux_sym_cmd_identifier_token17] = ACTIONS(1975), - [aux_sym_cmd_identifier_token18] = ACTIONS(1975), - [aux_sym_cmd_identifier_token19] = ACTIONS(1975), - [aux_sym_cmd_identifier_token20] = ACTIONS(1975), - [aux_sym_cmd_identifier_token21] = ACTIONS(1975), - [aux_sym_cmd_identifier_token22] = ACTIONS(1975), - [aux_sym_cmd_identifier_token23] = ACTIONS(1975), - [aux_sym_cmd_identifier_token24] = ACTIONS(1975), - [aux_sym_cmd_identifier_token25] = ACTIONS(1975), - [aux_sym_cmd_identifier_token26] = ACTIONS(1975), - [aux_sym_cmd_identifier_token27] = ACTIONS(1975), - [aux_sym_cmd_identifier_token28] = ACTIONS(1975), - [aux_sym_cmd_identifier_token29] = ACTIONS(1975), - [aux_sym_cmd_identifier_token30] = ACTIONS(1975), - [aux_sym_cmd_identifier_token31] = ACTIONS(1975), - [aux_sym_cmd_identifier_token32] = ACTIONS(1975), - [aux_sym_cmd_identifier_token33] = ACTIONS(1975), - [aux_sym_cmd_identifier_token34] = ACTIONS(1975), - [aux_sym_cmd_identifier_token35] = ACTIONS(1975), - [aux_sym_cmd_identifier_token36] = ACTIONS(1975), - [aux_sym_cmd_identifier_token37] = ACTIONS(1975), - [aux_sym_cmd_identifier_token38] = ACTIONS(1975), - [aux_sym_cmd_identifier_token39] = ACTIONS(1975), - [aux_sym_cmd_identifier_token40] = ACTIONS(1975), - [anon_sym_def] = ACTIONS(1975), - [anon_sym_export_DASHenv] = ACTIONS(1975), - [anon_sym_extern] = ACTIONS(1975), - [anon_sym_module] = ACTIONS(1975), - [anon_sym_use] = ACTIONS(1975), - [anon_sym_LPAREN] = ACTIONS(1975), - [anon_sym_COMMA] = ACTIONS(1975), - [anon_sym_DOLLAR] = ACTIONS(1975), - [anon_sym_error] = ACTIONS(1975), - [anon_sym_DASH2] = ACTIONS(1975), - [anon_sym_break] = ACTIONS(1975), - [anon_sym_continue] = ACTIONS(1975), - [anon_sym_for] = ACTIONS(1975), - [anon_sym_in2] = ACTIONS(1975), - [anon_sym_loop] = ACTIONS(1975), - [anon_sym_make] = ACTIONS(1975), - [anon_sym_while] = ACTIONS(1975), - [anon_sym_do] = ACTIONS(1975), - [anon_sym_if] = ACTIONS(1975), - [anon_sym_else] = ACTIONS(1975), - [anon_sym_match] = ACTIONS(1975), - [anon_sym_RBRACE] = ACTIONS(1975), - [anon_sym_try] = ACTIONS(1975), - [anon_sym_catch] = ACTIONS(1975), - [anon_sym_return] = ACTIONS(1975), - [anon_sym_source] = ACTIONS(1975), - [anon_sym_source_DASHenv] = ACTIONS(1975), - [anon_sym_register] = ACTIONS(1975), - [anon_sym_hide] = ACTIONS(1975), - [anon_sym_hide_DASHenv] = ACTIONS(1975), - [anon_sym_overlay] = ACTIONS(1975), - [anon_sym_as] = ACTIONS(1975), - [anon_sym_PLUS2] = ACTIONS(1975), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1975), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1975), - [aux_sym__val_number_decimal_token1] = ACTIONS(1975), - [aux_sym__val_number_decimal_token2] = ACTIONS(1975), - [aux_sym__val_number_decimal_token3] = ACTIONS(1975), - [aux_sym__val_number_decimal_token4] = ACTIONS(1975), - [aux_sym__val_number_token1] = ACTIONS(1975), - [aux_sym__val_number_token2] = ACTIONS(1975), - [aux_sym__val_number_token3] = ACTIONS(1975), - [aux_sym__val_number_token4] = ACTIONS(1975), - [aux_sym__val_number_token5] = ACTIONS(1975), - [aux_sym__val_number_token6] = ACTIONS(1975), - [anon_sym_DQUOTE] = ACTIONS(1975), - [sym__str_single_quotes] = ACTIONS(1975), - [sym__str_back_ticks] = ACTIONS(1975), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1975), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1975), - [sym__entry_separator] = ACTIONS(1977), - [anon_sym_DOT2] = ACTIONS(1849), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1977), - }, - [434] = { - [sym_cell_path] = STATE(607), - [sym_path] = STATE(569), - [sym_comment] = STATE(434), - [aux_sym_cell_path_repeat1] = STATE(451), - [anon_sym_export] = ACTIONS(1979), - [anon_sym_alias] = ACTIONS(1979), - [anon_sym_let] = ACTIONS(1979), - [anon_sym_let_DASHenv] = ACTIONS(1979), - [anon_sym_mut] = ACTIONS(1979), - [anon_sym_const] = ACTIONS(1979), - [aux_sym_cmd_identifier_token1] = ACTIONS(1979), - [aux_sym_cmd_identifier_token2] = ACTIONS(1979), - [aux_sym_cmd_identifier_token3] = ACTIONS(1979), - [aux_sym_cmd_identifier_token4] = ACTIONS(1979), - [aux_sym_cmd_identifier_token5] = ACTIONS(1979), - [aux_sym_cmd_identifier_token6] = ACTIONS(1979), - [aux_sym_cmd_identifier_token7] = ACTIONS(1979), - [aux_sym_cmd_identifier_token8] = ACTIONS(1979), - [aux_sym_cmd_identifier_token9] = ACTIONS(1979), - [aux_sym_cmd_identifier_token10] = ACTIONS(1979), - [aux_sym_cmd_identifier_token11] = ACTIONS(1979), - [aux_sym_cmd_identifier_token12] = ACTIONS(1979), - [aux_sym_cmd_identifier_token13] = ACTIONS(1979), - [aux_sym_cmd_identifier_token14] = ACTIONS(1979), - [aux_sym_cmd_identifier_token15] = ACTIONS(1979), - [aux_sym_cmd_identifier_token16] = ACTIONS(1979), - [aux_sym_cmd_identifier_token17] = ACTIONS(1979), - [aux_sym_cmd_identifier_token18] = ACTIONS(1979), - [aux_sym_cmd_identifier_token19] = ACTIONS(1979), - [aux_sym_cmd_identifier_token20] = ACTIONS(1979), - [aux_sym_cmd_identifier_token21] = ACTIONS(1979), - [aux_sym_cmd_identifier_token22] = ACTIONS(1979), - [aux_sym_cmd_identifier_token23] = ACTIONS(1979), - [aux_sym_cmd_identifier_token24] = ACTIONS(1979), - [aux_sym_cmd_identifier_token25] = ACTIONS(1979), - [aux_sym_cmd_identifier_token26] = ACTIONS(1979), - [aux_sym_cmd_identifier_token27] = ACTIONS(1979), - [aux_sym_cmd_identifier_token28] = ACTIONS(1979), - [aux_sym_cmd_identifier_token29] = ACTIONS(1979), - [aux_sym_cmd_identifier_token30] = ACTIONS(1979), - [aux_sym_cmd_identifier_token31] = ACTIONS(1979), - [aux_sym_cmd_identifier_token32] = ACTIONS(1979), - [aux_sym_cmd_identifier_token33] = ACTIONS(1979), - [aux_sym_cmd_identifier_token34] = ACTIONS(1979), - [aux_sym_cmd_identifier_token35] = ACTIONS(1979), - [aux_sym_cmd_identifier_token36] = ACTIONS(1979), - [aux_sym_cmd_identifier_token37] = ACTIONS(1979), - [aux_sym_cmd_identifier_token38] = ACTIONS(1979), - [aux_sym_cmd_identifier_token39] = ACTIONS(1979), - [aux_sym_cmd_identifier_token40] = ACTIONS(1979), - [anon_sym_def] = ACTIONS(1979), - [anon_sym_export_DASHenv] = ACTIONS(1979), - [anon_sym_extern] = ACTIONS(1979), - [anon_sym_module] = ACTIONS(1979), - [anon_sym_use] = ACTIONS(1979), - [anon_sym_LPAREN] = ACTIONS(1979), - [anon_sym_COMMA] = ACTIONS(1979), - [anon_sym_DOLLAR] = ACTIONS(1979), - [anon_sym_error] = ACTIONS(1979), - [anon_sym_DASH2] = ACTIONS(1979), - [anon_sym_break] = ACTIONS(1979), - [anon_sym_continue] = ACTIONS(1979), - [anon_sym_for] = ACTIONS(1979), - [anon_sym_in2] = ACTIONS(1979), - [anon_sym_loop] = ACTIONS(1979), - [anon_sym_make] = ACTIONS(1979), - [anon_sym_while] = ACTIONS(1979), - [anon_sym_do] = ACTIONS(1979), - [anon_sym_if] = ACTIONS(1979), - [anon_sym_else] = ACTIONS(1979), - [anon_sym_match] = ACTIONS(1979), - [anon_sym_RBRACE] = ACTIONS(1979), - [anon_sym_try] = ACTIONS(1979), - [anon_sym_catch] = ACTIONS(1979), - [anon_sym_return] = ACTIONS(1979), - [anon_sym_source] = ACTIONS(1979), - [anon_sym_source_DASHenv] = ACTIONS(1979), - [anon_sym_register] = ACTIONS(1979), - [anon_sym_hide] = ACTIONS(1979), - [anon_sym_hide_DASHenv] = ACTIONS(1979), - [anon_sym_overlay] = ACTIONS(1979), - [anon_sym_as] = ACTIONS(1979), - [anon_sym_PLUS2] = ACTIONS(1979), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1979), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1979), - [aux_sym__val_number_decimal_token2] = ACTIONS(1979), - [aux_sym__val_number_decimal_token3] = ACTIONS(1979), - [aux_sym__val_number_decimal_token4] = ACTIONS(1979), - [aux_sym__val_number_token1] = ACTIONS(1979), - [aux_sym__val_number_token2] = ACTIONS(1979), - [aux_sym__val_number_token3] = ACTIONS(1979), - [aux_sym__val_number_token4] = ACTIONS(1979), - [aux_sym__val_number_token5] = ACTIONS(1979), - [aux_sym__val_number_token6] = ACTIONS(1979), - [anon_sym_DQUOTE] = ACTIONS(1979), - [sym__str_single_quotes] = ACTIONS(1979), - [sym__str_back_ticks] = ACTIONS(1979), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1979), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1979), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1979), - [sym__entry_separator] = ACTIONS(1981), - [anon_sym_DOT2] = ACTIONS(1849), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1981), - }, - [435] = { - [sym_cell_path] = STATE(609), - [sym_path] = STATE(569), - [sym_comment] = STATE(435), - [aux_sym_cell_path_repeat1] = STATE(451), - [anon_sym_export] = ACTIONS(1983), - [anon_sym_alias] = ACTIONS(1983), - [anon_sym_let] = ACTIONS(1983), - [anon_sym_let_DASHenv] = ACTIONS(1983), - [anon_sym_mut] = ACTIONS(1983), - [anon_sym_const] = ACTIONS(1983), - [aux_sym_cmd_identifier_token1] = ACTIONS(1983), - [aux_sym_cmd_identifier_token2] = ACTIONS(1983), - [aux_sym_cmd_identifier_token3] = ACTIONS(1983), - [aux_sym_cmd_identifier_token4] = ACTIONS(1983), - [aux_sym_cmd_identifier_token5] = ACTIONS(1983), - [aux_sym_cmd_identifier_token6] = ACTIONS(1983), - [aux_sym_cmd_identifier_token7] = ACTIONS(1983), - [aux_sym_cmd_identifier_token8] = ACTIONS(1983), - [aux_sym_cmd_identifier_token9] = ACTIONS(1983), - [aux_sym_cmd_identifier_token10] = ACTIONS(1983), - [aux_sym_cmd_identifier_token11] = ACTIONS(1983), - [aux_sym_cmd_identifier_token12] = ACTIONS(1983), - [aux_sym_cmd_identifier_token13] = ACTIONS(1983), - [aux_sym_cmd_identifier_token14] = ACTIONS(1983), - [aux_sym_cmd_identifier_token15] = ACTIONS(1983), - [aux_sym_cmd_identifier_token16] = ACTIONS(1983), - [aux_sym_cmd_identifier_token17] = ACTIONS(1983), - [aux_sym_cmd_identifier_token18] = ACTIONS(1983), - [aux_sym_cmd_identifier_token19] = ACTIONS(1983), - [aux_sym_cmd_identifier_token20] = ACTIONS(1983), - [aux_sym_cmd_identifier_token21] = ACTIONS(1983), - [aux_sym_cmd_identifier_token22] = ACTIONS(1983), - [aux_sym_cmd_identifier_token23] = ACTIONS(1983), - [aux_sym_cmd_identifier_token24] = ACTIONS(1983), - [aux_sym_cmd_identifier_token25] = ACTIONS(1983), - [aux_sym_cmd_identifier_token26] = ACTIONS(1983), - [aux_sym_cmd_identifier_token27] = ACTIONS(1983), - [aux_sym_cmd_identifier_token28] = ACTIONS(1983), - [aux_sym_cmd_identifier_token29] = ACTIONS(1983), - [aux_sym_cmd_identifier_token30] = ACTIONS(1983), - [aux_sym_cmd_identifier_token31] = ACTIONS(1983), - [aux_sym_cmd_identifier_token32] = ACTIONS(1983), - [aux_sym_cmd_identifier_token33] = ACTIONS(1983), - [aux_sym_cmd_identifier_token34] = ACTIONS(1983), - [aux_sym_cmd_identifier_token35] = ACTIONS(1983), - [aux_sym_cmd_identifier_token36] = ACTIONS(1983), - [aux_sym_cmd_identifier_token37] = ACTIONS(1983), - [aux_sym_cmd_identifier_token38] = ACTIONS(1983), - [aux_sym_cmd_identifier_token39] = ACTIONS(1983), - [aux_sym_cmd_identifier_token40] = ACTIONS(1983), - [anon_sym_def] = ACTIONS(1983), - [anon_sym_export_DASHenv] = ACTIONS(1983), - [anon_sym_extern] = ACTIONS(1983), - [anon_sym_module] = ACTIONS(1983), - [anon_sym_use] = ACTIONS(1983), - [anon_sym_LPAREN] = ACTIONS(1983), - [anon_sym_COMMA] = ACTIONS(1983), - [anon_sym_DOLLAR] = ACTIONS(1983), - [anon_sym_error] = ACTIONS(1983), - [anon_sym_DASH2] = ACTIONS(1983), - [anon_sym_break] = ACTIONS(1983), - [anon_sym_continue] = ACTIONS(1983), - [anon_sym_for] = ACTIONS(1983), - [anon_sym_in2] = ACTIONS(1983), - [anon_sym_loop] = ACTIONS(1983), - [anon_sym_make] = ACTIONS(1983), - [anon_sym_while] = ACTIONS(1983), - [anon_sym_do] = ACTIONS(1983), - [anon_sym_if] = ACTIONS(1983), - [anon_sym_else] = ACTIONS(1983), - [anon_sym_match] = ACTIONS(1983), - [anon_sym_RBRACE] = ACTIONS(1983), - [anon_sym_try] = ACTIONS(1983), - [anon_sym_catch] = ACTIONS(1983), - [anon_sym_return] = ACTIONS(1983), - [anon_sym_source] = ACTIONS(1983), - [anon_sym_source_DASHenv] = ACTIONS(1983), - [anon_sym_register] = ACTIONS(1983), - [anon_sym_hide] = ACTIONS(1983), - [anon_sym_hide_DASHenv] = ACTIONS(1983), - [anon_sym_overlay] = ACTIONS(1983), - [anon_sym_as] = ACTIONS(1983), - [anon_sym_PLUS2] = ACTIONS(1983), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1983), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1983), - [aux_sym__val_number_decimal_token1] = ACTIONS(1983), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1983), - [aux_sym__val_number_decimal_token4] = ACTIONS(1983), - [aux_sym__val_number_token1] = ACTIONS(1983), - [aux_sym__val_number_token2] = ACTIONS(1983), - [aux_sym__val_number_token3] = ACTIONS(1983), - [aux_sym__val_number_token4] = ACTIONS(1983), - [aux_sym__val_number_token5] = ACTIONS(1983), - [aux_sym__val_number_token6] = ACTIONS(1983), - [anon_sym_DQUOTE] = ACTIONS(1983), - [sym__str_single_quotes] = ACTIONS(1983), - [sym__str_back_ticks] = ACTIONS(1983), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1983), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1983), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1983), - [sym__entry_separator] = ACTIONS(1985), - [anon_sym_DOT2] = ACTIONS(1849), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1985), - }, - [436] = { - [sym_comment] = STATE(436), - [anon_sym_export] = ACTIONS(992), - [anon_sym_alias] = ACTIONS(992), - [anon_sym_let] = ACTIONS(992), - [anon_sym_let_DASHenv] = ACTIONS(992), - [anon_sym_mut] = ACTIONS(992), - [anon_sym_const] = ACTIONS(992), - [aux_sym_cmd_identifier_token1] = ACTIONS(992), - [aux_sym_cmd_identifier_token2] = ACTIONS(992), - [aux_sym_cmd_identifier_token3] = ACTIONS(992), - [aux_sym_cmd_identifier_token4] = ACTIONS(992), - [aux_sym_cmd_identifier_token5] = ACTIONS(992), - [aux_sym_cmd_identifier_token6] = ACTIONS(992), - [aux_sym_cmd_identifier_token7] = ACTIONS(992), - [aux_sym_cmd_identifier_token8] = ACTIONS(992), - [aux_sym_cmd_identifier_token9] = ACTIONS(992), - [aux_sym_cmd_identifier_token10] = ACTIONS(992), - [aux_sym_cmd_identifier_token11] = ACTIONS(992), - [aux_sym_cmd_identifier_token12] = ACTIONS(992), - [aux_sym_cmd_identifier_token13] = ACTIONS(992), - [aux_sym_cmd_identifier_token14] = ACTIONS(992), - [aux_sym_cmd_identifier_token15] = ACTIONS(992), - [aux_sym_cmd_identifier_token16] = ACTIONS(992), - [aux_sym_cmd_identifier_token17] = ACTIONS(992), - [aux_sym_cmd_identifier_token18] = ACTIONS(992), - [aux_sym_cmd_identifier_token19] = ACTIONS(992), - [aux_sym_cmd_identifier_token20] = ACTIONS(992), - [aux_sym_cmd_identifier_token21] = ACTIONS(992), - [aux_sym_cmd_identifier_token22] = ACTIONS(992), - [aux_sym_cmd_identifier_token23] = ACTIONS(992), - [aux_sym_cmd_identifier_token24] = ACTIONS(992), - [aux_sym_cmd_identifier_token25] = ACTIONS(992), - [aux_sym_cmd_identifier_token26] = ACTIONS(992), - [aux_sym_cmd_identifier_token27] = ACTIONS(992), - [aux_sym_cmd_identifier_token28] = ACTIONS(992), - [aux_sym_cmd_identifier_token29] = ACTIONS(992), - [aux_sym_cmd_identifier_token30] = ACTIONS(992), - [aux_sym_cmd_identifier_token31] = ACTIONS(992), - [aux_sym_cmd_identifier_token32] = ACTIONS(992), - [aux_sym_cmd_identifier_token33] = ACTIONS(992), - [aux_sym_cmd_identifier_token34] = ACTIONS(992), - [aux_sym_cmd_identifier_token35] = ACTIONS(992), - [aux_sym_cmd_identifier_token36] = ACTIONS(992), - [aux_sym_cmd_identifier_token37] = ACTIONS(992), - [aux_sym_cmd_identifier_token38] = ACTIONS(992), - [aux_sym_cmd_identifier_token39] = ACTIONS(992), - [aux_sym_cmd_identifier_token40] = ACTIONS(992), - [anon_sym_def] = ACTIONS(992), - [anon_sym_export_DASHenv] = ACTIONS(992), - [anon_sym_extern] = ACTIONS(992), - [anon_sym_module] = ACTIONS(992), - [anon_sym_use] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_COMMA] = ACTIONS(992), - [anon_sym_DOLLAR] = ACTIONS(992), - [anon_sym_error] = ACTIONS(992), - [anon_sym_DASH2] = ACTIONS(992), - [anon_sym_break] = ACTIONS(992), - [anon_sym_continue] = ACTIONS(992), - [anon_sym_for] = ACTIONS(992), - [anon_sym_in2] = ACTIONS(992), - [anon_sym_loop] = ACTIONS(992), - [anon_sym_make] = ACTIONS(992), - [anon_sym_while] = ACTIONS(992), - [anon_sym_do] = ACTIONS(992), - [anon_sym_if] = ACTIONS(992), - [anon_sym_else] = ACTIONS(992), - [anon_sym_match] = ACTIONS(992), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_try] = ACTIONS(992), - [anon_sym_catch] = ACTIONS(992), - [anon_sym_return] = ACTIONS(992), - [anon_sym_source] = ACTIONS(992), - [anon_sym_source_DASHenv] = ACTIONS(992), - [anon_sym_register] = ACTIONS(992), - [anon_sym_hide] = ACTIONS(992), - [anon_sym_hide_DASHenv] = ACTIONS(992), - [anon_sym_overlay] = ACTIONS(992), - [anon_sym_as] = ACTIONS(992), - [anon_sym_PLUS2] = ACTIONS(992), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(992), - [anon_sym_DOT_DOT2] = ACTIONS(992), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(994), - [anon_sym_DOT_DOT_LT2] = ACTIONS(994), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(992), - [aux_sym__val_number_decimal_token1] = ACTIONS(992), - [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), - [aux_sym__val_number_token4] = ACTIONS(992), - [aux_sym__val_number_token5] = ACTIONS(992), - [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(992), - [sym__entry_separator] = ACTIONS(994), - [anon_sym_DOT2] = ACTIONS(992), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(994), - }, [437] = { + [sym_cell_path] = STATE(725), + [sym_path] = STATE(565), [sym_comment] = STATE(437), - [anon_sym_export] = ACTIONS(1783), - [anon_sym_alias] = ACTIONS(1783), - [anon_sym_let] = ACTIONS(1783), - [anon_sym_let_DASHenv] = ACTIONS(1783), - [anon_sym_mut] = ACTIONS(1783), - [anon_sym_const] = ACTIONS(1783), - [aux_sym_cmd_identifier_token1] = ACTIONS(1783), - [aux_sym_cmd_identifier_token2] = ACTIONS(1783), - [aux_sym_cmd_identifier_token3] = ACTIONS(1783), - [aux_sym_cmd_identifier_token4] = ACTIONS(1783), - [aux_sym_cmd_identifier_token5] = ACTIONS(1783), - [aux_sym_cmd_identifier_token6] = ACTIONS(1783), - [aux_sym_cmd_identifier_token7] = ACTIONS(1783), - [aux_sym_cmd_identifier_token8] = ACTIONS(1783), - [aux_sym_cmd_identifier_token9] = ACTIONS(1783), - [aux_sym_cmd_identifier_token10] = ACTIONS(1783), - [aux_sym_cmd_identifier_token11] = ACTIONS(1783), - [aux_sym_cmd_identifier_token12] = ACTIONS(1783), - [aux_sym_cmd_identifier_token13] = ACTIONS(1783), - [aux_sym_cmd_identifier_token14] = ACTIONS(1783), - [aux_sym_cmd_identifier_token15] = ACTIONS(1783), - [aux_sym_cmd_identifier_token16] = ACTIONS(1783), - [aux_sym_cmd_identifier_token17] = ACTIONS(1783), - [aux_sym_cmd_identifier_token18] = ACTIONS(1783), - [aux_sym_cmd_identifier_token19] = ACTIONS(1783), - [aux_sym_cmd_identifier_token20] = ACTIONS(1783), - [aux_sym_cmd_identifier_token21] = ACTIONS(1783), - [aux_sym_cmd_identifier_token22] = ACTIONS(1783), - [aux_sym_cmd_identifier_token23] = ACTIONS(1783), - [aux_sym_cmd_identifier_token24] = ACTIONS(1783), - [aux_sym_cmd_identifier_token25] = ACTIONS(1783), - [aux_sym_cmd_identifier_token26] = ACTIONS(1783), - [aux_sym_cmd_identifier_token27] = ACTIONS(1783), - [aux_sym_cmd_identifier_token28] = ACTIONS(1783), - [aux_sym_cmd_identifier_token29] = ACTIONS(1783), - [aux_sym_cmd_identifier_token30] = ACTIONS(1783), - [aux_sym_cmd_identifier_token31] = ACTIONS(1783), - [aux_sym_cmd_identifier_token32] = ACTIONS(1783), - [aux_sym_cmd_identifier_token33] = ACTIONS(1783), - [aux_sym_cmd_identifier_token34] = ACTIONS(1783), - [aux_sym_cmd_identifier_token35] = ACTIONS(1783), - [aux_sym_cmd_identifier_token36] = ACTIONS(1783), - [aux_sym_cmd_identifier_token37] = ACTIONS(1783), - [aux_sym_cmd_identifier_token38] = ACTIONS(1783), - [aux_sym_cmd_identifier_token39] = ACTIONS(1783), - [aux_sym_cmd_identifier_token40] = ACTIONS(1783), - [anon_sym_def] = ACTIONS(1783), - [anon_sym_export_DASHenv] = ACTIONS(1783), - [anon_sym_extern] = ACTIONS(1783), - [anon_sym_module] = ACTIONS(1783), - [anon_sym_use] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_COMMA] = ACTIONS(1783), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_error] = ACTIONS(1783), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_break] = ACTIONS(1783), - [anon_sym_continue] = ACTIONS(1783), - [anon_sym_for] = ACTIONS(1783), - [anon_sym_in2] = ACTIONS(1783), - [anon_sym_loop] = ACTIONS(1783), - [anon_sym_make] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1783), - [anon_sym_do] = ACTIONS(1783), - [anon_sym_if] = ACTIONS(1783), - [anon_sym_else] = ACTIONS(1783), - [anon_sym_match] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(1783), - [anon_sym_try] = ACTIONS(1783), - [anon_sym_catch] = ACTIONS(1783), - [anon_sym_return] = ACTIONS(1783), - [anon_sym_source] = ACTIONS(1783), - [anon_sym_source_DASHenv] = ACTIONS(1783), - [anon_sym_register] = ACTIONS(1783), - [anon_sym_hide] = ACTIONS(1783), - [anon_sym_hide_DASHenv] = ACTIONS(1783), - [anon_sym_overlay] = ACTIONS(1783), - [anon_sym_as] = ACTIONS(1783), - [anon_sym_LPAREN2] = ACTIONS(1785), - [anon_sym_PLUS2] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1783), - [aux_sym__immediate_decimal_token2] = ACTIONS(1987), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1783), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1783), - [aux_sym__val_number_decimal_token3] = ACTIONS(1783), - [aux_sym__val_number_decimal_token4] = ACTIONS(1783), - [aux_sym__val_number_token1] = ACTIONS(1783), - [aux_sym__val_number_token2] = ACTIONS(1783), - [aux_sym__val_number_token3] = ACTIONS(1783), - [aux_sym__val_number_token4] = ACTIONS(1783), - [aux_sym__val_number_token5] = ACTIONS(1783), - [aux_sym__val_number_token6] = ACTIONS(1783), - [anon_sym_DQUOTE] = ACTIONS(1783), - [sym__str_single_quotes] = ACTIONS(1783), - [sym__str_back_ticks] = ACTIONS(1783), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1783), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1783), - [sym__entry_separator] = ACTIONS(1785), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1783), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1785), + [aux_sym_cell_path_repeat1] = STATE(484), + [anon_sym_export] = ACTIONS(1957), + [anon_sym_alias] = ACTIONS(1957), + [anon_sym_let] = ACTIONS(1957), + [anon_sym_let_DASHenv] = ACTIONS(1957), + [anon_sym_mut] = ACTIONS(1957), + [anon_sym_const] = ACTIONS(1957), + [aux_sym_cmd_identifier_token1] = ACTIONS(1957), + [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(1957), + [aux_sym_cmd_identifier_token9] = ACTIONS(1957), + [aux_sym_cmd_identifier_token10] = ACTIONS(1959), + [aux_sym_cmd_identifier_token11] = ACTIONS(1959), + [aux_sym_cmd_identifier_token12] = ACTIONS(1957), + [aux_sym_cmd_identifier_token13] = ACTIONS(1957), + [aux_sym_cmd_identifier_token14] = ACTIONS(1957), + [aux_sym_cmd_identifier_token15] = ACTIONS(1957), + [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(1957), + [aux_sym_cmd_identifier_token35] = ACTIONS(1959), + [aux_sym_cmd_identifier_token36] = ACTIONS(1959), + [aux_sym_cmd_identifier_token37] = ACTIONS(1959), + [aux_sym_cmd_identifier_token38] = ACTIONS(1957), + [aux_sym_cmd_identifier_token39] = ACTIONS(1959), + [aux_sym_cmd_identifier_token40] = ACTIONS(1959), + [anon_sym_def] = ACTIONS(1957), + [anon_sym_export_DASHenv] = ACTIONS(1957), + [anon_sym_extern] = ACTIONS(1957), + [anon_sym_module] = ACTIONS(1957), + [anon_sym_use] = ACTIONS(1957), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_COMMA] = ACTIONS(1959), + [anon_sym_DOLLAR] = ACTIONS(1957), + [anon_sym_error] = ACTIONS(1957), + [anon_sym_DASH2] = ACTIONS(1957), + [anon_sym_break] = ACTIONS(1957), + [anon_sym_continue] = ACTIONS(1957), + [anon_sym_for] = ACTIONS(1957), + [anon_sym_in2] = ACTIONS(1957), + [anon_sym_loop] = ACTIONS(1957), + [anon_sym_make] = ACTIONS(1957), + [anon_sym_while] = ACTIONS(1957), + [anon_sym_do] = ACTIONS(1957), + [anon_sym_if] = ACTIONS(1957), + [anon_sym_else] = ACTIONS(1957), + [anon_sym_match] = ACTIONS(1957), + [anon_sym_RBRACE] = ACTIONS(1959), + [anon_sym_try] = ACTIONS(1957), + [anon_sym_catch] = ACTIONS(1957), + [anon_sym_return] = ACTIONS(1957), + [anon_sym_source] = ACTIONS(1957), + [anon_sym_source_DASHenv] = ACTIONS(1957), + [anon_sym_hide] = ACTIONS(1957), + [anon_sym_hide_DASHenv] = ACTIONS(1957), + [anon_sym_overlay] = ACTIONS(1957), + [anon_sym_as] = ACTIONS(1957), + [anon_sym_PLUS2] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1959), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1957), + [aux_sym__val_number_decimal_token2] = ACTIONS(1959), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [aux_sym__val_number_token1] = ACTIONS(1959), + [aux_sym__val_number_token2] = ACTIONS(1959), + [aux_sym__val_number_token3] = ACTIONS(1959), + [aux_sym__val_number_token4] = ACTIONS(1957), + [aux_sym__val_number_token5] = ACTIONS(1957), + [aux_sym__val_number_token6] = ACTIONS(1957), + [anon_sym_DQUOTE] = ACTIONS(1959), + [sym__str_single_quotes] = ACTIONS(1959), + [sym__str_back_ticks] = ACTIONS(1959), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1959), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1959), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1959), + [anon_sym_register] = ACTIONS(1957), + [anon_sym_DOT2] = ACTIONS(1921), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1959), }, [438] = { [sym_comment] = STATE(438), - [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), - [aux_sym_cmd_identifier_token37] = ACTIONS(1755), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1755), - [aux_sym_cmd_identifier_token40] = ACTIONS(1755), - [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(1755), - [anon_sym_COMMA] = ACTIONS(1755), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in2] = 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_RBRACE] = 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_as] = ACTIONS(1755), - [anon_sym_PLUS2] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1755), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1755), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1755), - [aux_sym__val_number_decimal_token3] = ACTIONS(1755), - [aux_sym__val_number_decimal_token4] = ACTIONS(1755), - [aux_sym__val_number_token1] = ACTIONS(1755), - [aux_sym__val_number_token2] = ACTIONS(1755), - [aux_sym__val_number_token3] = ACTIONS(1755), - [aux_sym__val_number_token4] = ACTIONS(1755), - [aux_sym__val_number_token5] = ACTIONS(1755), - [aux_sym__val_number_token6] = ACTIONS(1755), - [anon_sym_DQUOTE] = ACTIONS(1755), - [sym__str_single_quotes] = ACTIONS(1755), - [sym__str_back_ticks] = ACTIONS(1755), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1755), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1755), - [sym__entry_separator] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1693), + [anon_sym_alias] = ACTIONS(1693), + [anon_sym_let] = ACTIONS(1693), + [anon_sym_let_DASHenv] = ACTIONS(1693), + [anon_sym_mut] = ACTIONS(1693), + [anon_sym_const] = ACTIONS(1693), + [aux_sym_cmd_identifier_token1] = ACTIONS(1693), + [aux_sym_cmd_identifier_token2] = ACTIONS(1693), + [aux_sym_cmd_identifier_token3] = ACTIONS(1693), + [aux_sym_cmd_identifier_token4] = ACTIONS(1693), + [aux_sym_cmd_identifier_token5] = ACTIONS(1693), + [aux_sym_cmd_identifier_token6] = ACTIONS(1693), + [aux_sym_cmd_identifier_token7] = ACTIONS(1693), + [aux_sym_cmd_identifier_token8] = ACTIONS(1693), + [aux_sym_cmd_identifier_token9] = ACTIONS(1693), + [aux_sym_cmd_identifier_token10] = ACTIONS(1693), + [aux_sym_cmd_identifier_token11] = ACTIONS(1693), + [aux_sym_cmd_identifier_token12] = ACTIONS(1693), + [aux_sym_cmd_identifier_token13] = ACTIONS(1693), + [aux_sym_cmd_identifier_token14] = ACTIONS(1693), + [aux_sym_cmd_identifier_token15] = ACTIONS(1693), + [aux_sym_cmd_identifier_token16] = ACTIONS(1693), + [aux_sym_cmd_identifier_token17] = ACTIONS(1693), + [aux_sym_cmd_identifier_token18] = ACTIONS(1693), + [aux_sym_cmd_identifier_token19] = ACTIONS(1693), + [aux_sym_cmd_identifier_token20] = ACTIONS(1693), + [aux_sym_cmd_identifier_token21] = ACTIONS(1693), + [aux_sym_cmd_identifier_token22] = ACTIONS(1693), + [aux_sym_cmd_identifier_token23] = ACTIONS(1693), + [aux_sym_cmd_identifier_token24] = ACTIONS(1693), + [aux_sym_cmd_identifier_token25] = ACTIONS(1693), + [aux_sym_cmd_identifier_token26] = ACTIONS(1693), + [aux_sym_cmd_identifier_token27] = ACTIONS(1693), + [aux_sym_cmd_identifier_token28] = ACTIONS(1693), + [aux_sym_cmd_identifier_token29] = ACTIONS(1693), + [aux_sym_cmd_identifier_token30] = ACTIONS(1693), + [aux_sym_cmd_identifier_token31] = ACTIONS(1693), + [aux_sym_cmd_identifier_token32] = ACTIONS(1693), + [aux_sym_cmd_identifier_token33] = ACTIONS(1693), + [aux_sym_cmd_identifier_token34] = ACTIONS(1693), + [aux_sym_cmd_identifier_token35] = ACTIONS(1693), + [aux_sym_cmd_identifier_token36] = ACTIONS(1693), + [aux_sym_cmd_identifier_token37] = ACTIONS(1693), + [aux_sym_cmd_identifier_token38] = ACTIONS(1693), + [aux_sym_cmd_identifier_token39] = ACTIONS(1693), + [aux_sym_cmd_identifier_token40] = ACTIONS(1693), + [anon_sym_def] = ACTIONS(1693), + [anon_sym_export_DASHenv] = ACTIONS(1693), + [anon_sym_extern] = ACTIONS(1693), + [anon_sym_module] = ACTIONS(1693), + [anon_sym_use] = ACTIONS(1693), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_COMMA] = ACTIONS(1693), + [anon_sym_DOLLAR] = ACTIONS(1693), + [anon_sym_error] = ACTIONS(1693), + [anon_sym_DASH2] = ACTIONS(1693), + [anon_sym_break] = ACTIONS(1693), + [anon_sym_continue] = ACTIONS(1693), + [anon_sym_for] = ACTIONS(1693), + [anon_sym_in2] = ACTIONS(1693), + [anon_sym_loop] = ACTIONS(1693), + [anon_sym_make] = ACTIONS(1693), + [anon_sym_while] = ACTIONS(1693), + [anon_sym_do] = ACTIONS(1693), + [anon_sym_if] = ACTIONS(1693), + [anon_sym_else] = ACTIONS(1693), + [anon_sym_match] = ACTIONS(1693), + [anon_sym_RBRACE] = ACTIONS(1693), + [anon_sym_try] = ACTIONS(1693), + [anon_sym_catch] = ACTIONS(1693), + [anon_sym_return] = ACTIONS(1693), + [anon_sym_source] = ACTIONS(1693), + [anon_sym_source_DASHenv] = ACTIONS(1693), + [anon_sym_hide] = ACTIONS(1693), + [anon_sym_hide_DASHenv] = ACTIONS(1693), + [anon_sym_overlay] = ACTIONS(1693), + [anon_sym_as] = ACTIONS(1693), + [anon_sym_PLUS2] = ACTIONS(1693), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1693), + [anon_sym_DOT_DOT2] = ACTIONS(1693), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1695), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1695), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1693), + [aux_sym__val_number_decimal_token1] = ACTIONS(1693), + [aux_sym__val_number_decimal_token2] = ACTIONS(1693), + [aux_sym__val_number_decimal_token3] = ACTIONS(1693), + [aux_sym__val_number_decimal_token4] = ACTIONS(1693), + [aux_sym__val_number_token1] = ACTIONS(1693), + [aux_sym__val_number_token2] = ACTIONS(1693), + [aux_sym__val_number_token3] = ACTIONS(1693), + [aux_sym__val_number_token4] = ACTIONS(1693), + [aux_sym__val_number_token5] = ACTIONS(1693), + [aux_sym__val_number_token6] = ACTIONS(1693), + [anon_sym_DQUOTE] = ACTIONS(1693), + [sym__str_single_quotes] = ACTIONS(1693), + [sym__str_back_ticks] = ACTIONS(1693), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1693), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1693), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1693), + [sym__entry_separator] = ACTIONS(1695), + [anon_sym_register] = ACTIONS(1693), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1757), + [sym_raw_string_begin] = ACTIONS(1695), }, [439] = { + [sym_cell_path] = STATE(708), + [sym_path] = STATE(565), [sym_comment] = STATE(439), - [anon_sym_export] = ACTIONS(1711), - [anon_sym_alias] = ACTIONS(1711), - [anon_sym_let] = ACTIONS(1711), - [anon_sym_let_DASHenv] = ACTIONS(1711), - [anon_sym_mut] = ACTIONS(1711), - [anon_sym_const] = ACTIONS(1711), - [aux_sym_cmd_identifier_token1] = ACTIONS(1711), - [aux_sym_cmd_identifier_token2] = ACTIONS(1711), - [aux_sym_cmd_identifier_token3] = ACTIONS(1711), - [aux_sym_cmd_identifier_token4] = ACTIONS(1711), - [aux_sym_cmd_identifier_token5] = ACTIONS(1711), - [aux_sym_cmd_identifier_token6] = ACTIONS(1711), - [aux_sym_cmd_identifier_token7] = ACTIONS(1711), - [aux_sym_cmd_identifier_token8] = ACTIONS(1711), - [aux_sym_cmd_identifier_token9] = ACTIONS(1711), - [aux_sym_cmd_identifier_token10] = ACTIONS(1711), - [aux_sym_cmd_identifier_token11] = ACTIONS(1711), - [aux_sym_cmd_identifier_token12] = ACTIONS(1711), - [aux_sym_cmd_identifier_token13] = ACTIONS(1711), - [aux_sym_cmd_identifier_token14] = ACTIONS(1711), - [aux_sym_cmd_identifier_token15] = ACTIONS(1711), - [aux_sym_cmd_identifier_token16] = ACTIONS(1711), - [aux_sym_cmd_identifier_token17] = ACTIONS(1711), - [aux_sym_cmd_identifier_token18] = ACTIONS(1711), - [aux_sym_cmd_identifier_token19] = ACTIONS(1711), - [aux_sym_cmd_identifier_token20] = ACTIONS(1711), - [aux_sym_cmd_identifier_token21] = ACTIONS(1711), - [aux_sym_cmd_identifier_token22] = ACTIONS(1711), - [aux_sym_cmd_identifier_token23] = ACTIONS(1711), - [aux_sym_cmd_identifier_token24] = ACTIONS(1711), - [aux_sym_cmd_identifier_token25] = ACTIONS(1711), - [aux_sym_cmd_identifier_token26] = ACTIONS(1711), - [aux_sym_cmd_identifier_token27] = ACTIONS(1711), - [aux_sym_cmd_identifier_token28] = ACTIONS(1711), - [aux_sym_cmd_identifier_token29] = ACTIONS(1711), - [aux_sym_cmd_identifier_token30] = ACTIONS(1711), - [aux_sym_cmd_identifier_token31] = ACTIONS(1711), - [aux_sym_cmd_identifier_token32] = ACTIONS(1711), - [aux_sym_cmd_identifier_token33] = ACTIONS(1711), - [aux_sym_cmd_identifier_token34] = ACTIONS(1711), - [aux_sym_cmd_identifier_token35] = ACTIONS(1711), - [aux_sym_cmd_identifier_token36] = ACTIONS(1711), - [aux_sym_cmd_identifier_token37] = ACTIONS(1711), - [aux_sym_cmd_identifier_token38] = ACTIONS(1711), - [aux_sym_cmd_identifier_token39] = ACTIONS(1711), - [aux_sym_cmd_identifier_token40] = ACTIONS(1711), - [anon_sym_def] = ACTIONS(1711), - [anon_sym_export_DASHenv] = ACTIONS(1711), - [anon_sym_extern] = ACTIONS(1711), - [anon_sym_module] = ACTIONS(1711), - [anon_sym_use] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_COMMA] = ACTIONS(1711), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_error] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_break] = ACTIONS(1711), - [anon_sym_continue] = ACTIONS(1711), - [anon_sym_for] = ACTIONS(1711), - [anon_sym_in2] = ACTIONS(1711), - [anon_sym_loop] = ACTIONS(1711), - [anon_sym_make] = ACTIONS(1711), - [anon_sym_while] = ACTIONS(1711), - [anon_sym_do] = ACTIONS(1711), - [anon_sym_if] = ACTIONS(1711), - [anon_sym_else] = ACTIONS(1711), - [anon_sym_match] = ACTIONS(1711), - [anon_sym_RBRACE] = ACTIONS(1711), - [anon_sym_try] = ACTIONS(1711), - [anon_sym_catch] = ACTIONS(1711), - [anon_sym_return] = ACTIONS(1711), - [anon_sym_source] = ACTIONS(1711), - [anon_sym_source_DASHenv] = ACTIONS(1711), - [anon_sym_register] = ACTIONS(1711), - [anon_sym_hide] = ACTIONS(1711), - [anon_sym_hide_DASHenv] = ACTIONS(1711), - [anon_sym_overlay] = ACTIONS(1711), - [anon_sym_as] = ACTIONS(1711), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1711), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1711), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1711), - [aux_sym__val_number_decimal_token3] = ACTIONS(1711), - [aux_sym__val_number_decimal_token4] = ACTIONS(1711), - [aux_sym__val_number_token1] = ACTIONS(1711), - [aux_sym__val_number_token2] = ACTIONS(1711), - [aux_sym__val_number_token3] = ACTIONS(1711), - [aux_sym__val_number_token4] = ACTIONS(1711), - [aux_sym__val_number_token5] = ACTIONS(1711), - [aux_sym__val_number_token6] = ACTIONS(1711), - [anon_sym_DQUOTE] = ACTIONS(1711), - [sym__str_single_quotes] = ACTIONS(1711), - [sym__str_back_ticks] = ACTIONS(1711), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1711), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1711), - [sym__entry_separator] = ACTIONS(1713), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1713), + [aux_sym_cell_path_repeat1] = STATE(484), + [anon_sym_export] = ACTIONS(1881), + [anon_sym_alias] = ACTIONS(1881), + [anon_sym_let] = ACTIONS(1881), + [anon_sym_let_DASHenv] = ACTIONS(1881), + [anon_sym_mut] = ACTIONS(1881), + [anon_sym_const] = ACTIONS(1881), + [aux_sym_cmd_identifier_token1] = ACTIONS(1881), + [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(1881), + [aux_sym_cmd_identifier_token9] = ACTIONS(1881), + [aux_sym_cmd_identifier_token10] = ACTIONS(1883), + [aux_sym_cmd_identifier_token11] = ACTIONS(1883), + [aux_sym_cmd_identifier_token12] = ACTIONS(1881), + [aux_sym_cmd_identifier_token13] = ACTIONS(1881), + [aux_sym_cmd_identifier_token14] = ACTIONS(1881), + [aux_sym_cmd_identifier_token15] = ACTIONS(1881), + [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(1881), + [aux_sym_cmd_identifier_token35] = ACTIONS(1883), + [aux_sym_cmd_identifier_token36] = ACTIONS(1883), + [aux_sym_cmd_identifier_token37] = ACTIONS(1883), + [aux_sym_cmd_identifier_token38] = ACTIONS(1881), + [aux_sym_cmd_identifier_token39] = ACTIONS(1883), + [aux_sym_cmd_identifier_token40] = ACTIONS(1883), + [anon_sym_def] = ACTIONS(1881), + [anon_sym_export_DASHenv] = ACTIONS(1881), + [anon_sym_extern] = ACTIONS(1881), + [anon_sym_module] = ACTIONS(1881), + [anon_sym_use] = ACTIONS(1881), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_COMMA] = ACTIONS(1883), + [anon_sym_DOLLAR] = ACTIONS(1881), + [anon_sym_error] = ACTIONS(1881), + [anon_sym_DASH2] = ACTIONS(1881), + [anon_sym_break] = ACTIONS(1881), + [anon_sym_continue] = ACTIONS(1881), + [anon_sym_for] = ACTIONS(1881), + [anon_sym_in2] = ACTIONS(1881), + [anon_sym_loop] = ACTIONS(1881), + [anon_sym_make] = ACTIONS(1881), + [anon_sym_while] = ACTIONS(1881), + [anon_sym_do] = ACTIONS(1881), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_else] = ACTIONS(1881), + [anon_sym_match] = ACTIONS(1881), + [anon_sym_RBRACE] = ACTIONS(1883), + [anon_sym_try] = ACTIONS(1881), + [anon_sym_catch] = ACTIONS(1881), + [anon_sym_return] = ACTIONS(1881), + [anon_sym_source] = ACTIONS(1881), + [anon_sym_source_DASHenv] = ACTIONS(1881), + [anon_sym_hide] = ACTIONS(1881), + [anon_sym_hide_DASHenv] = ACTIONS(1881), + [anon_sym_overlay] = ACTIONS(1881), + [anon_sym_as] = ACTIONS(1881), + [anon_sym_PLUS2] = ACTIONS(1881), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1883), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1883), + [aux_sym__val_number_decimal_token1] = ACTIONS(1881), + [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), + [aux_sym__val_number_token4] = ACTIONS(1881), + [aux_sym__val_number_token5] = ACTIONS(1881), + [aux_sym__val_number_token6] = ACTIONS(1881), + [anon_sym_DQUOTE] = ACTIONS(1883), + [sym__str_single_quotes] = ACTIONS(1883), + [sym__str_back_ticks] = ACTIONS(1883), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1883), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1883), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1883), + [anon_sym_register] = ACTIONS(1881), + [anon_sym_DOT2] = ACTIONS(1921), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1883), }, [440] = { [sym_comment] = STATE(440), - [anon_sym_export] = ACTIONS(1783), - [anon_sym_alias] = ACTIONS(1783), - [anon_sym_let] = ACTIONS(1783), - [anon_sym_let_DASHenv] = ACTIONS(1783), - [anon_sym_mut] = ACTIONS(1783), - [anon_sym_const] = ACTIONS(1783), - [aux_sym_cmd_identifier_token1] = ACTIONS(1783), - [aux_sym_cmd_identifier_token2] = ACTIONS(1783), - [aux_sym_cmd_identifier_token3] = ACTIONS(1783), - [aux_sym_cmd_identifier_token4] = ACTIONS(1783), - [aux_sym_cmd_identifier_token5] = ACTIONS(1783), - [aux_sym_cmd_identifier_token6] = ACTIONS(1783), - [aux_sym_cmd_identifier_token7] = ACTIONS(1783), - [aux_sym_cmd_identifier_token8] = ACTIONS(1783), - [aux_sym_cmd_identifier_token9] = ACTIONS(1783), - [aux_sym_cmd_identifier_token10] = ACTIONS(1783), - [aux_sym_cmd_identifier_token11] = ACTIONS(1783), - [aux_sym_cmd_identifier_token12] = ACTIONS(1783), - [aux_sym_cmd_identifier_token13] = ACTIONS(1783), - [aux_sym_cmd_identifier_token14] = ACTIONS(1783), - [aux_sym_cmd_identifier_token15] = ACTIONS(1783), - [aux_sym_cmd_identifier_token16] = ACTIONS(1783), - [aux_sym_cmd_identifier_token17] = ACTIONS(1783), - [aux_sym_cmd_identifier_token18] = ACTIONS(1783), - [aux_sym_cmd_identifier_token19] = ACTIONS(1783), - [aux_sym_cmd_identifier_token20] = ACTIONS(1783), - [aux_sym_cmd_identifier_token21] = ACTIONS(1783), - [aux_sym_cmd_identifier_token22] = ACTIONS(1783), - [aux_sym_cmd_identifier_token23] = ACTIONS(1783), - [aux_sym_cmd_identifier_token24] = ACTIONS(1783), - [aux_sym_cmd_identifier_token25] = ACTIONS(1783), - [aux_sym_cmd_identifier_token26] = ACTIONS(1783), - [aux_sym_cmd_identifier_token27] = ACTIONS(1783), - [aux_sym_cmd_identifier_token28] = ACTIONS(1783), - [aux_sym_cmd_identifier_token29] = ACTIONS(1783), - [aux_sym_cmd_identifier_token30] = ACTIONS(1783), - [aux_sym_cmd_identifier_token31] = ACTIONS(1783), - [aux_sym_cmd_identifier_token32] = ACTIONS(1783), - [aux_sym_cmd_identifier_token33] = ACTIONS(1783), - [aux_sym_cmd_identifier_token34] = ACTIONS(1783), - [aux_sym_cmd_identifier_token35] = ACTIONS(1783), - [aux_sym_cmd_identifier_token36] = ACTIONS(1783), - [aux_sym_cmd_identifier_token37] = ACTIONS(1783), - [aux_sym_cmd_identifier_token38] = ACTIONS(1783), - [aux_sym_cmd_identifier_token39] = ACTIONS(1783), - [aux_sym_cmd_identifier_token40] = ACTIONS(1783), - [anon_sym_def] = ACTIONS(1783), - [anon_sym_export_DASHenv] = ACTIONS(1783), - [anon_sym_extern] = ACTIONS(1783), - [anon_sym_module] = ACTIONS(1783), - [anon_sym_use] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_COMMA] = ACTIONS(1783), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_error] = ACTIONS(1783), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_break] = ACTIONS(1783), - [anon_sym_continue] = ACTIONS(1783), - [anon_sym_for] = ACTIONS(1783), - [anon_sym_in2] = ACTIONS(1783), - [anon_sym_loop] = ACTIONS(1783), - [anon_sym_make] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1783), - [anon_sym_do] = ACTIONS(1783), - [anon_sym_if] = ACTIONS(1783), - [anon_sym_else] = ACTIONS(1783), - [anon_sym_match] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(1783), - [anon_sym_try] = ACTIONS(1783), - [anon_sym_catch] = ACTIONS(1783), - [anon_sym_return] = ACTIONS(1783), - [anon_sym_source] = ACTIONS(1783), - [anon_sym_source_DASHenv] = ACTIONS(1783), - [anon_sym_register] = ACTIONS(1783), - [anon_sym_hide] = ACTIONS(1783), - [anon_sym_hide_DASHenv] = ACTIONS(1783), - [anon_sym_overlay] = ACTIONS(1783), - [anon_sym_as] = ACTIONS(1783), - [anon_sym_PLUS2] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1783), - [anon_sym_DOT_DOT2] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1783), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1783), - [aux_sym__val_number_decimal_token3] = ACTIONS(1783), - [aux_sym__val_number_decimal_token4] = ACTIONS(1783), - [aux_sym__val_number_token1] = ACTIONS(1783), - [aux_sym__val_number_token2] = ACTIONS(1783), - [aux_sym__val_number_token3] = ACTIONS(1783), - [aux_sym__val_number_token4] = ACTIONS(1783), - [aux_sym__val_number_token5] = ACTIONS(1783), - [aux_sym__val_number_token6] = ACTIONS(1783), - [anon_sym_DQUOTE] = ACTIONS(1783), - [sym__str_single_quotes] = ACTIONS(1783), - [sym__str_back_ticks] = ACTIONS(1783), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1783), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1783), - [sym__entry_separator] = ACTIONS(1785), + [anon_sym_export] = ACTIONS(1766), + [anon_sym_alias] = ACTIONS(1766), + [anon_sym_let] = ACTIONS(1766), + [anon_sym_let_DASHenv] = ACTIONS(1766), + [anon_sym_mut] = ACTIONS(1766), + [anon_sym_const] = ACTIONS(1766), + [aux_sym_cmd_identifier_token1] = ACTIONS(1766), + [aux_sym_cmd_identifier_token2] = ACTIONS(1766), + [aux_sym_cmd_identifier_token3] = ACTIONS(1766), + [aux_sym_cmd_identifier_token4] = ACTIONS(1766), + [aux_sym_cmd_identifier_token5] = ACTIONS(1766), + [aux_sym_cmd_identifier_token6] = ACTIONS(1766), + [aux_sym_cmd_identifier_token7] = ACTIONS(1766), + [aux_sym_cmd_identifier_token8] = ACTIONS(1766), + [aux_sym_cmd_identifier_token9] = ACTIONS(1766), + [aux_sym_cmd_identifier_token10] = ACTIONS(1766), + [aux_sym_cmd_identifier_token11] = ACTIONS(1766), + [aux_sym_cmd_identifier_token12] = ACTIONS(1766), + [aux_sym_cmd_identifier_token13] = ACTIONS(1766), + [aux_sym_cmd_identifier_token14] = ACTIONS(1766), + [aux_sym_cmd_identifier_token15] = ACTIONS(1766), + [aux_sym_cmd_identifier_token16] = ACTIONS(1766), + [aux_sym_cmd_identifier_token17] = ACTIONS(1766), + [aux_sym_cmd_identifier_token18] = ACTIONS(1766), + [aux_sym_cmd_identifier_token19] = ACTIONS(1766), + [aux_sym_cmd_identifier_token20] = ACTIONS(1766), + [aux_sym_cmd_identifier_token21] = ACTIONS(1766), + [aux_sym_cmd_identifier_token22] = ACTIONS(1766), + [aux_sym_cmd_identifier_token23] = ACTIONS(1766), + [aux_sym_cmd_identifier_token24] = ACTIONS(1766), + [aux_sym_cmd_identifier_token25] = ACTIONS(1766), + [aux_sym_cmd_identifier_token26] = ACTIONS(1766), + [aux_sym_cmd_identifier_token27] = ACTIONS(1766), + [aux_sym_cmd_identifier_token28] = ACTIONS(1766), + [aux_sym_cmd_identifier_token29] = ACTIONS(1766), + [aux_sym_cmd_identifier_token30] = ACTIONS(1766), + [aux_sym_cmd_identifier_token31] = ACTIONS(1766), + [aux_sym_cmd_identifier_token32] = ACTIONS(1766), + [aux_sym_cmd_identifier_token33] = ACTIONS(1766), + [aux_sym_cmd_identifier_token34] = ACTIONS(1766), + [aux_sym_cmd_identifier_token35] = ACTIONS(1766), + [aux_sym_cmd_identifier_token36] = ACTIONS(1766), + [aux_sym_cmd_identifier_token37] = ACTIONS(1766), + [aux_sym_cmd_identifier_token38] = ACTIONS(1766), + [aux_sym_cmd_identifier_token39] = ACTIONS(1766), + [aux_sym_cmd_identifier_token40] = ACTIONS(1766), + [anon_sym_def] = ACTIONS(1766), + [anon_sym_export_DASHenv] = ACTIONS(1766), + [anon_sym_extern] = ACTIONS(1766), + [anon_sym_module] = ACTIONS(1766), + [anon_sym_use] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1766), + [anon_sym_COMMA] = ACTIONS(1766), + [anon_sym_DOLLAR] = ACTIONS(1766), + [anon_sym_error] = ACTIONS(1766), + [anon_sym_DASH2] = ACTIONS(1766), + [anon_sym_break] = ACTIONS(1766), + [anon_sym_continue] = ACTIONS(1766), + [anon_sym_for] = ACTIONS(1766), + [anon_sym_in2] = ACTIONS(1766), + [anon_sym_loop] = ACTIONS(1766), + [anon_sym_make] = ACTIONS(1766), + [anon_sym_while] = ACTIONS(1766), + [anon_sym_do] = ACTIONS(1766), + [anon_sym_if] = ACTIONS(1766), + [anon_sym_else] = ACTIONS(1766), + [anon_sym_match] = ACTIONS(1766), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_try] = ACTIONS(1766), + [anon_sym_catch] = ACTIONS(1766), + [anon_sym_return] = ACTIONS(1766), + [anon_sym_source] = ACTIONS(1766), + [anon_sym_source_DASHenv] = ACTIONS(1766), + [anon_sym_hide] = ACTIONS(1766), + [anon_sym_hide_DASHenv] = ACTIONS(1766), + [anon_sym_overlay] = ACTIONS(1766), + [anon_sym_as] = ACTIONS(1766), + [anon_sym_PLUS2] = ACTIONS(1766), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1766), + [anon_sym_DOT_DOT2] = ACTIONS(1766), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1768), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1768), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1766), + [aux_sym__val_number_decimal_token1] = ACTIONS(1766), + [aux_sym__val_number_decimal_token2] = ACTIONS(1766), + [aux_sym__val_number_decimal_token3] = ACTIONS(1766), + [aux_sym__val_number_decimal_token4] = ACTIONS(1766), + [aux_sym__val_number_token1] = ACTIONS(1766), + [aux_sym__val_number_token2] = ACTIONS(1766), + [aux_sym__val_number_token3] = ACTIONS(1766), + [aux_sym__val_number_token4] = ACTIONS(1766), + [aux_sym__val_number_token5] = ACTIONS(1766), + [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(1766), + [sym__entry_separator] = ACTIONS(1768), + [anon_sym_register] = ACTIONS(1766), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1785), + [sym_raw_string_begin] = ACTIONS(1768), }, [441] = { [sym_comment] = STATE(441), - [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), - [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1835), - [anon_sym_DOLLAR] = ACTIONS(1835), - [anon_sym_error] = ACTIONS(1835), - [anon_sym_DASH2] = ACTIONS(1835), - [anon_sym_break] = ACTIONS(1835), - [anon_sym_continue] = ACTIONS(1835), - [anon_sym_for] = ACTIONS(1835), - [anon_sym_in2] = 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_as] = ACTIONS(1835), - [anon_sym_PLUS2] = ACTIONS(1835), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1835), - [anon_sym_DOT_DOT2] = ACTIONS(1835), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1837), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1837), - [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), - [aux_sym__val_number_token4] = ACTIONS(1835), - [aux_sym__val_number_token5] = ACTIONS(1835), - [aux_sym__val_number_token6] = ACTIONS(1835), - [anon_sym_DQUOTE] = ACTIONS(1835), - [sym__str_single_quotes] = ACTIONS(1835), - [sym__str_back_ticks] = ACTIONS(1835), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1835), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1835), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1835), - [sym__entry_separator] = ACTIONS(1837), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1792), + [anon_sym_DOLLAR] = ACTIONS(1792), + [anon_sym_error] = ACTIONS(1792), + [anon_sym_DASH2] = ACTIONS(1792), + [anon_sym_break] = ACTIONS(1792), + [anon_sym_continue] = ACTIONS(1792), + [anon_sym_for] = ACTIONS(1792), + [anon_sym_in2] = 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_hide] = ACTIONS(1792), + [anon_sym_hide_DASHenv] = ACTIONS(1792), + [anon_sym_overlay] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1792), + [anon_sym_PLUS2] = ACTIONS(1792), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1792), + [anon_sym_DOT_DOT2] = ACTIONS(1792), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1794), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1794), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1792), + [aux_sym__val_number_decimal_token1] = ACTIONS(1792), + [aux_sym__val_number_decimal_token2] = ACTIONS(1792), + [aux_sym__val_number_decimal_token3] = ACTIONS(1792), + [aux_sym__val_number_decimal_token4] = ACTIONS(1792), + [aux_sym__val_number_token1] = ACTIONS(1792), + [aux_sym__val_number_token2] = ACTIONS(1792), + [aux_sym__val_number_token3] = ACTIONS(1792), + [aux_sym__val_number_token4] = ACTIONS(1792), + [aux_sym__val_number_token5] = ACTIONS(1792), + [aux_sym__val_number_token6] = ACTIONS(1792), + [anon_sym_DQUOTE] = ACTIONS(1792), + [sym__str_single_quotes] = ACTIONS(1792), + [sym__str_back_ticks] = ACTIONS(1792), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1792), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1792), + [sym__entry_separator] = ACTIONS(1794), + [anon_sym_register] = ACTIONS(1792), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1837), + [sym_raw_string_begin] = ACTIONS(1794), }, [442] = { + [sym_cell_path] = STATE(709), + [sym_path] = STATE(565), [sym_comment] = STATE(442), - [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(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(1755), - [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(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(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(1757), - [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(1755), - [aux_sym_cmd_identifier_token35] = ACTIONS(1757), - [aux_sym_cmd_identifier_token36] = ACTIONS(1757), - [aux_sym_cmd_identifier_token37] = ACTIONS(1757), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1757), - [aux_sym_cmd_identifier_token40] = ACTIONS(1757), - [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(1755), - [anon_sym_COMMA] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in2] = 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_RBRACE] = ACTIONS(1757), - [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_as] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_PLUS2] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1757), - [anon_sym_DOT] = ACTIONS(1989), - [aux_sym__immediate_decimal_token2] = ACTIONS(1991), - [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), - [aux_sym__val_number_token4] = ACTIONS(1755), - [aux_sym__val_number_token5] = ACTIONS(1755), - [aux_sym__val_number_token6] = ACTIONS(1755), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1757), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1757), + [aux_sym_cell_path_repeat1] = STATE(484), + [anon_sym_export] = ACTIONS(1885), + [anon_sym_alias] = ACTIONS(1885), + [anon_sym_let] = ACTIONS(1885), + [anon_sym_let_DASHenv] = ACTIONS(1885), + [anon_sym_mut] = ACTIONS(1885), + [anon_sym_const] = ACTIONS(1885), + [aux_sym_cmd_identifier_token1] = ACTIONS(1885), + [aux_sym_cmd_identifier_token2] = ACTIONS(1887), + [aux_sym_cmd_identifier_token3] = ACTIONS(1887), + [aux_sym_cmd_identifier_token4] = ACTIONS(1887), + [aux_sym_cmd_identifier_token5] = ACTIONS(1887), + [aux_sym_cmd_identifier_token6] = ACTIONS(1887), + [aux_sym_cmd_identifier_token7] = ACTIONS(1887), + [aux_sym_cmd_identifier_token8] = ACTIONS(1885), + [aux_sym_cmd_identifier_token9] = ACTIONS(1885), + [aux_sym_cmd_identifier_token10] = ACTIONS(1887), + [aux_sym_cmd_identifier_token11] = ACTIONS(1887), + [aux_sym_cmd_identifier_token12] = ACTIONS(1885), + [aux_sym_cmd_identifier_token13] = ACTIONS(1885), + [aux_sym_cmd_identifier_token14] = ACTIONS(1885), + [aux_sym_cmd_identifier_token15] = ACTIONS(1885), + [aux_sym_cmd_identifier_token16] = ACTIONS(1887), + [aux_sym_cmd_identifier_token17] = ACTIONS(1887), + [aux_sym_cmd_identifier_token18] = ACTIONS(1887), + [aux_sym_cmd_identifier_token19] = ACTIONS(1887), + [aux_sym_cmd_identifier_token20] = ACTIONS(1887), + [aux_sym_cmd_identifier_token21] = ACTIONS(1887), + [aux_sym_cmd_identifier_token22] = ACTIONS(1887), + [aux_sym_cmd_identifier_token23] = ACTIONS(1887), + [aux_sym_cmd_identifier_token24] = ACTIONS(1887), + [aux_sym_cmd_identifier_token25] = ACTIONS(1887), + [aux_sym_cmd_identifier_token26] = ACTIONS(1887), + [aux_sym_cmd_identifier_token27] = ACTIONS(1887), + [aux_sym_cmd_identifier_token28] = ACTIONS(1887), + [aux_sym_cmd_identifier_token29] = ACTIONS(1887), + [aux_sym_cmd_identifier_token30] = ACTIONS(1887), + [aux_sym_cmd_identifier_token31] = ACTIONS(1887), + [aux_sym_cmd_identifier_token32] = ACTIONS(1887), + [aux_sym_cmd_identifier_token33] = ACTIONS(1887), + [aux_sym_cmd_identifier_token34] = ACTIONS(1885), + [aux_sym_cmd_identifier_token35] = ACTIONS(1887), + [aux_sym_cmd_identifier_token36] = ACTIONS(1887), + [aux_sym_cmd_identifier_token37] = ACTIONS(1887), + [aux_sym_cmd_identifier_token38] = ACTIONS(1885), + [aux_sym_cmd_identifier_token39] = ACTIONS(1887), + [aux_sym_cmd_identifier_token40] = ACTIONS(1887), + [anon_sym_def] = ACTIONS(1885), + [anon_sym_export_DASHenv] = ACTIONS(1885), + [anon_sym_extern] = ACTIONS(1885), + [anon_sym_module] = ACTIONS(1885), + [anon_sym_use] = ACTIONS(1885), + [anon_sym_LPAREN] = ACTIONS(1887), + [anon_sym_COMMA] = ACTIONS(1887), + [anon_sym_DOLLAR] = ACTIONS(1885), + [anon_sym_error] = ACTIONS(1885), + [anon_sym_DASH2] = ACTIONS(1885), + [anon_sym_break] = ACTIONS(1885), + [anon_sym_continue] = ACTIONS(1885), + [anon_sym_for] = ACTIONS(1885), + [anon_sym_in2] = ACTIONS(1885), + [anon_sym_loop] = ACTIONS(1885), + [anon_sym_make] = ACTIONS(1885), + [anon_sym_while] = ACTIONS(1885), + [anon_sym_do] = ACTIONS(1885), + [anon_sym_if] = ACTIONS(1885), + [anon_sym_else] = ACTIONS(1885), + [anon_sym_match] = ACTIONS(1885), + [anon_sym_RBRACE] = ACTIONS(1887), + [anon_sym_try] = ACTIONS(1885), + [anon_sym_catch] = ACTIONS(1885), + [anon_sym_return] = ACTIONS(1885), + [anon_sym_source] = ACTIONS(1885), + [anon_sym_source_DASHenv] = ACTIONS(1885), + [anon_sym_hide] = ACTIONS(1885), + [anon_sym_hide_DASHenv] = ACTIONS(1885), + [anon_sym_overlay] = ACTIONS(1885), + [anon_sym_as] = ACTIONS(1885), + [anon_sym_PLUS2] = ACTIONS(1885), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1887), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1887), + [aux_sym__val_number_decimal_token1] = ACTIONS(1885), + [aux_sym__val_number_decimal_token2] = ACTIONS(1887), + [aux_sym__val_number_decimal_token3] = ACTIONS(1887), + [aux_sym__val_number_decimal_token4] = ACTIONS(1887), + [aux_sym__val_number_token1] = ACTIONS(1887), + [aux_sym__val_number_token2] = ACTIONS(1887), + [aux_sym__val_number_token3] = ACTIONS(1887), + [aux_sym__val_number_token4] = ACTIONS(1885), + [aux_sym__val_number_token5] = ACTIONS(1885), + [aux_sym__val_number_token6] = ACTIONS(1885), + [anon_sym_DQUOTE] = ACTIONS(1887), + [sym__str_single_quotes] = ACTIONS(1887), + [sym__str_back_ticks] = ACTIONS(1887), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1887), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1887), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1887), + [anon_sym_register] = ACTIONS(1885), + [anon_sym_DOT2] = ACTIONS(1921), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1887), }, [443] = { - [sym_cell_path] = STATE(683), - [sym_path] = STATE(587), [sym_comment] = STATE(443), - [aux_sym_cell_path_repeat1] = STATE(446), - [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(1861), - [aux_sym_cmd_identifier_token3] = ACTIONS(1861), - [aux_sym_cmd_identifier_token4] = ACTIONS(1861), - [aux_sym_cmd_identifier_token5] = ACTIONS(1861), - [aux_sym_cmd_identifier_token6] = ACTIONS(1861), - [aux_sym_cmd_identifier_token7] = ACTIONS(1861), - [aux_sym_cmd_identifier_token8] = ACTIONS(1859), - [aux_sym_cmd_identifier_token9] = ACTIONS(1859), - [aux_sym_cmd_identifier_token10] = ACTIONS(1861), - [aux_sym_cmd_identifier_token11] = ACTIONS(1861), - [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(1861), - [aux_sym_cmd_identifier_token17] = ACTIONS(1861), - [aux_sym_cmd_identifier_token18] = ACTIONS(1861), - [aux_sym_cmd_identifier_token19] = ACTIONS(1861), - [aux_sym_cmd_identifier_token20] = ACTIONS(1861), - [aux_sym_cmd_identifier_token21] = ACTIONS(1861), - [aux_sym_cmd_identifier_token22] = ACTIONS(1861), - [aux_sym_cmd_identifier_token23] = ACTIONS(1861), - [aux_sym_cmd_identifier_token24] = ACTIONS(1861), - [aux_sym_cmd_identifier_token25] = ACTIONS(1861), - [aux_sym_cmd_identifier_token26] = ACTIONS(1861), - [aux_sym_cmd_identifier_token27] = ACTIONS(1861), - [aux_sym_cmd_identifier_token28] = ACTIONS(1861), - [aux_sym_cmd_identifier_token29] = ACTIONS(1861), - [aux_sym_cmd_identifier_token30] = ACTIONS(1861), - [aux_sym_cmd_identifier_token31] = ACTIONS(1861), - [aux_sym_cmd_identifier_token32] = ACTIONS(1861), - [aux_sym_cmd_identifier_token33] = ACTIONS(1861), - [aux_sym_cmd_identifier_token34] = ACTIONS(1859), - [aux_sym_cmd_identifier_token35] = ACTIONS(1861), - [aux_sym_cmd_identifier_token36] = ACTIONS(1861), - [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1861), - [anon_sym_DOLLAR] = ACTIONS(1859), - [anon_sym_error] = ACTIONS(1859), - [anon_sym_DASH2] = ACTIONS(1859), - [anon_sym_break] = ACTIONS(1859), - [anon_sym_continue] = ACTIONS(1859), - [anon_sym_for] = ACTIONS(1859), - [anon_sym_in2] = 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_as] = ACTIONS(1859), - [anon_sym_PLUS2] = ACTIONS(1859), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1861), - [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), - [aux_sym__val_number_token4] = ACTIONS(1859), - [aux_sym__val_number_token5] = ACTIONS(1859), - [aux_sym__val_number_token6] = ACTIONS(1859), - [anon_sym_DQUOTE] = ACTIONS(1861), - [sym__str_single_quotes] = ACTIONS(1861), - [sym__str_back_ticks] = ACTIONS(1861), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1861), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1861), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1861), - [anon_sym_DOT2] = ACTIONS(1973), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1861), + [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(1703), + [aux_sym_cmd_identifier_token3] = ACTIONS(1703), + [aux_sym_cmd_identifier_token4] = ACTIONS(1703), + [aux_sym_cmd_identifier_token5] = ACTIONS(1703), + [aux_sym_cmd_identifier_token6] = ACTIONS(1703), + [aux_sym_cmd_identifier_token7] = ACTIONS(1703), + [aux_sym_cmd_identifier_token8] = ACTIONS(1701), + [aux_sym_cmd_identifier_token9] = ACTIONS(1701), + [aux_sym_cmd_identifier_token10] = ACTIONS(1703), + [aux_sym_cmd_identifier_token11] = ACTIONS(1703), + [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(1703), + [aux_sym_cmd_identifier_token17] = ACTIONS(1703), + [aux_sym_cmd_identifier_token18] = ACTIONS(1703), + [aux_sym_cmd_identifier_token19] = ACTIONS(1703), + [aux_sym_cmd_identifier_token20] = ACTIONS(1703), + [aux_sym_cmd_identifier_token21] = ACTIONS(1703), + [aux_sym_cmd_identifier_token22] = ACTIONS(1703), + [aux_sym_cmd_identifier_token23] = ACTIONS(1703), + [aux_sym_cmd_identifier_token24] = ACTIONS(1703), + [aux_sym_cmd_identifier_token25] = ACTIONS(1703), + [aux_sym_cmd_identifier_token26] = ACTIONS(1703), + [aux_sym_cmd_identifier_token27] = ACTIONS(1703), + [aux_sym_cmd_identifier_token28] = ACTIONS(1703), + [aux_sym_cmd_identifier_token29] = ACTIONS(1703), + [aux_sym_cmd_identifier_token30] = ACTIONS(1703), + [aux_sym_cmd_identifier_token31] = ACTIONS(1703), + [aux_sym_cmd_identifier_token32] = ACTIONS(1703), + [aux_sym_cmd_identifier_token33] = ACTIONS(1703), + [aux_sym_cmd_identifier_token34] = ACTIONS(1701), + [aux_sym_cmd_identifier_token35] = ACTIONS(1703), + [aux_sym_cmd_identifier_token36] = ACTIONS(1703), + [aux_sym_cmd_identifier_token37] = ACTIONS(1703), + [aux_sym_cmd_identifier_token38] = ACTIONS(1701), + [aux_sym_cmd_identifier_token39] = ACTIONS(1703), + [aux_sym_cmd_identifier_token40] = ACTIONS(1703), + [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_COMMA] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_error] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_in2] = 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(1703), + [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_hide] = ACTIONS(1701), + [anon_sym_hide_DASHenv] = ACTIONS(1701), + [anon_sym_overlay] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1703), + [anon_sym_DOT] = ACTIONS(1973), + [aux_sym__immediate_decimal_token2] = ACTIONS(1975), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1701), + [aux_sym__val_number_token5] = ACTIONS(1701), + [aux_sym__val_number_token6] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1701), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1703), }, [444] = { + [sym_cell_path] = STATE(711), + [sym_path] = STATE(565), [sym_comment] = STATE(444), - [anon_sym_export] = ACTIONS(1993), - [anon_sym_alias] = ACTIONS(1993), - [anon_sym_let] = ACTIONS(1993), - [anon_sym_let_DASHenv] = ACTIONS(1993), - [anon_sym_mut] = ACTIONS(1993), - [anon_sym_const] = ACTIONS(1993), - [aux_sym_cmd_identifier_token1] = ACTIONS(1993), - [aux_sym_cmd_identifier_token2] = ACTIONS(1993), - [aux_sym_cmd_identifier_token3] = ACTIONS(1993), - [aux_sym_cmd_identifier_token4] = ACTIONS(1993), - [aux_sym_cmd_identifier_token5] = ACTIONS(1993), - [aux_sym_cmd_identifier_token6] = ACTIONS(1993), - [aux_sym_cmd_identifier_token7] = ACTIONS(1993), - [aux_sym_cmd_identifier_token8] = ACTIONS(1993), - [aux_sym_cmd_identifier_token9] = ACTIONS(1993), - [aux_sym_cmd_identifier_token10] = ACTIONS(1993), - [aux_sym_cmd_identifier_token11] = ACTIONS(1993), - [aux_sym_cmd_identifier_token12] = ACTIONS(1993), - [aux_sym_cmd_identifier_token13] = ACTIONS(1993), - [aux_sym_cmd_identifier_token14] = ACTIONS(1993), - [aux_sym_cmd_identifier_token15] = ACTIONS(1993), - [aux_sym_cmd_identifier_token16] = ACTIONS(1993), - [aux_sym_cmd_identifier_token17] = ACTIONS(1993), - [aux_sym_cmd_identifier_token18] = ACTIONS(1993), - [aux_sym_cmd_identifier_token19] = ACTIONS(1993), - [aux_sym_cmd_identifier_token20] = ACTIONS(1993), - [aux_sym_cmd_identifier_token21] = ACTIONS(1993), - [aux_sym_cmd_identifier_token22] = ACTIONS(1993), - [aux_sym_cmd_identifier_token23] = ACTIONS(1993), - [aux_sym_cmd_identifier_token24] = ACTIONS(1993), - [aux_sym_cmd_identifier_token25] = ACTIONS(1993), - [aux_sym_cmd_identifier_token26] = ACTIONS(1993), - [aux_sym_cmd_identifier_token27] = ACTIONS(1993), - [aux_sym_cmd_identifier_token28] = ACTIONS(1993), - [aux_sym_cmd_identifier_token29] = ACTIONS(1993), - [aux_sym_cmd_identifier_token30] = ACTIONS(1993), - [aux_sym_cmd_identifier_token31] = ACTIONS(1993), - [aux_sym_cmd_identifier_token32] = ACTIONS(1993), - [aux_sym_cmd_identifier_token33] = ACTIONS(1993), - [aux_sym_cmd_identifier_token34] = ACTIONS(1993), - [aux_sym_cmd_identifier_token35] = ACTIONS(1993), - [aux_sym_cmd_identifier_token36] = ACTIONS(1993), - [aux_sym_cmd_identifier_token37] = ACTIONS(1993), - [aux_sym_cmd_identifier_token38] = ACTIONS(1993), - [aux_sym_cmd_identifier_token39] = ACTIONS(1993), - [aux_sym_cmd_identifier_token40] = ACTIONS(1993), - [anon_sym_def] = ACTIONS(1993), - [anon_sym_export_DASHenv] = ACTIONS(1993), - [anon_sym_extern] = ACTIONS(1993), - [anon_sym_module] = ACTIONS(1993), - [anon_sym_use] = ACTIONS(1993), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_COMMA] = ACTIONS(1993), - [anon_sym_DOLLAR] = ACTIONS(1993), - [anon_sym_error] = ACTIONS(1993), - [anon_sym_DASH2] = ACTIONS(1993), - [anon_sym_break] = ACTIONS(1993), - [anon_sym_continue] = ACTIONS(1993), - [anon_sym_for] = ACTIONS(1993), - [anon_sym_in2] = ACTIONS(1993), - [anon_sym_loop] = ACTIONS(1993), - [anon_sym_make] = ACTIONS(1993), - [anon_sym_while] = ACTIONS(1993), - [anon_sym_do] = ACTIONS(1993), - [anon_sym_if] = ACTIONS(1993), - [anon_sym_else] = ACTIONS(1993), - [anon_sym_match] = ACTIONS(1993), - [anon_sym_RBRACE] = ACTIONS(1993), - [anon_sym_try] = ACTIONS(1993), - [anon_sym_catch] = ACTIONS(1993), - [anon_sym_return] = ACTIONS(1993), - [anon_sym_source] = ACTIONS(1993), - [anon_sym_source_DASHenv] = ACTIONS(1993), - [anon_sym_register] = ACTIONS(1993), - [anon_sym_hide] = ACTIONS(1993), - [anon_sym_hide_DASHenv] = ACTIONS(1993), - [anon_sym_overlay] = ACTIONS(1993), - [anon_sym_as] = ACTIONS(1993), - [anon_sym_PLUS2] = ACTIONS(1993), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1993), - [anon_sym_DOT_DOT2] = ACTIONS(1993), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1995), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1995), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1993), - [aux_sym__val_number_decimal_token1] = ACTIONS(1993), - [aux_sym__val_number_decimal_token2] = ACTIONS(1993), - [aux_sym__val_number_decimal_token3] = ACTIONS(1993), - [aux_sym__val_number_decimal_token4] = ACTIONS(1993), - [aux_sym__val_number_token1] = ACTIONS(1993), - [aux_sym__val_number_token2] = ACTIONS(1993), - [aux_sym__val_number_token3] = ACTIONS(1993), - [aux_sym__val_number_token4] = ACTIONS(1993), - [aux_sym__val_number_token5] = ACTIONS(1993), - [aux_sym__val_number_token6] = ACTIONS(1993), - [anon_sym_DQUOTE] = ACTIONS(1993), - [sym__str_single_quotes] = ACTIONS(1993), - [sym__str_back_ticks] = ACTIONS(1993), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1993), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1993), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1993), - [sym__entry_separator] = ACTIONS(1995), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1995), + [aux_sym_cell_path_repeat1] = STATE(484), + [anon_sym_export] = ACTIONS(1889), + [anon_sym_alias] = ACTIONS(1889), + [anon_sym_let] = ACTIONS(1889), + [anon_sym_let_DASHenv] = ACTIONS(1889), + [anon_sym_mut] = ACTIONS(1889), + [anon_sym_const] = ACTIONS(1889), + [aux_sym_cmd_identifier_token1] = ACTIONS(1889), + [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(1889), + [aux_sym_cmd_identifier_token9] = ACTIONS(1889), + [aux_sym_cmd_identifier_token10] = ACTIONS(1891), + [aux_sym_cmd_identifier_token11] = ACTIONS(1891), + [aux_sym_cmd_identifier_token12] = ACTIONS(1889), + [aux_sym_cmd_identifier_token13] = ACTIONS(1889), + [aux_sym_cmd_identifier_token14] = ACTIONS(1889), + [aux_sym_cmd_identifier_token15] = ACTIONS(1889), + [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(1889), + [aux_sym_cmd_identifier_token35] = ACTIONS(1891), + [aux_sym_cmd_identifier_token36] = ACTIONS(1891), + [aux_sym_cmd_identifier_token37] = ACTIONS(1891), + [aux_sym_cmd_identifier_token38] = ACTIONS(1889), + [aux_sym_cmd_identifier_token39] = ACTIONS(1891), + [aux_sym_cmd_identifier_token40] = ACTIONS(1891), + [anon_sym_def] = ACTIONS(1889), + [anon_sym_export_DASHenv] = ACTIONS(1889), + [anon_sym_extern] = ACTIONS(1889), + [anon_sym_module] = ACTIONS(1889), + [anon_sym_use] = ACTIONS(1889), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_COMMA] = ACTIONS(1891), + [anon_sym_DOLLAR] = ACTIONS(1889), + [anon_sym_error] = ACTIONS(1889), + [anon_sym_DASH2] = ACTIONS(1889), + [anon_sym_break] = ACTIONS(1889), + [anon_sym_continue] = ACTIONS(1889), + [anon_sym_for] = ACTIONS(1889), + [anon_sym_in2] = ACTIONS(1889), + [anon_sym_loop] = ACTIONS(1889), + [anon_sym_make] = ACTIONS(1889), + [anon_sym_while] = ACTIONS(1889), + [anon_sym_do] = ACTIONS(1889), + [anon_sym_if] = ACTIONS(1889), + [anon_sym_else] = ACTIONS(1889), + [anon_sym_match] = ACTIONS(1889), + [anon_sym_RBRACE] = ACTIONS(1891), + [anon_sym_try] = ACTIONS(1889), + [anon_sym_catch] = ACTIONS(1889), + [anon_sym_return] = ACTIONS(1889), + [anon_sym_source] = ACTIONS(1889), + [anon_sym_source_DASHenv] = ACTIONS(1889), + [anon_sym_hide] = ACTIONS(1889), + [anon_sym_hide_DASHenv] = ACTIONS(1889), + [anon_sym_overlay] = ACTIONS(1889), + [anon_sym_as] = ACTIONS(1889), + [anon_sym_PLUS2] = ACTIONS(1889), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1891), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1891), + [aux_sym__val_number_decimal_token1] = ACTIONS(1889), + [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), + [aux_sym__val_number_token4] = ACTIONS(1889), + [aux_sym__val_number_token5] = ACTIONS(1889), + [aux_sym__val_number_token6] = ACTIONS(1889), + [anon_sym_DQUOTE] = ACTIONS(1891), + [sym__str_single_quotes] = ACTIONS(1891), + [sym__str_back_ticks] = ACTIONS(1891), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1891), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1891), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1891), + [anon_sym_register] = ACTIONS(1889), + [anon_sym_DOT2] = ACTIONS(1921), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1891), }, [445] = { [sym_comment] = STATE(445), - [anon_sym_export] = ACTIONS(1997), - [anon_sym_alias] = ACTIONS(1997), - [anon_sym_let] = ACTIONS(1997), - [anon_sym_let_DASHenv] = ACTIONS(1997), - [anon_sym_mut] = ACTIONS(1997), - [anon_sym_const] = ACTIONS(1997), - [aux_sym_cmd_identifier_token1] = ACTIONS(1997), - [aux_sym_cmd_identifier_token2] = ACTIONS(1997), - [aux_sym_cmd_identifier_token3] = ACTIONS(1997), - [aux_sym_cmd_identifier_token4] = ACTIONS(1997), - [aux_sym_cmd_identifier_token5] = ACTIONS(1997), - [aux_sym_cmd_identifier_token6] = ACTIONS(1997), - [aux_sym_cmd_identifier_token7] = ACTIONS(1997), - [aux_sym_cmd_identifier_token8] = ACTIONS(1997), - [aux_sym_cmd_identifier_token9] = ACTIONS(1997), - [aux_sym_cmd_identifier_token10] = ACTIONS(1997), - [aux_sym_cmd_identifier_token11] = ACTIONS(1997), - [aux_sym_cmd_identifier_token12] = ACTIONS(1997), - [aux_sym_cmd_identifier_token13] = ACTIONS(1997), - [aux_sym_cmd_identifier_token14] = ACTIONS(1997), - [aux_sym_cmd_identifier_token15] = ACTIONS(1997), - [aux_sym_cmd_identifier_token16] = ACTIONS(1997), - [aux_sym_cmd_identifier_token17] = ACTIONS(1997), - [aux_sym_cmd_identifier_token18] = ACTIONS(1997), - [aux_sym_cmd_identifier_token19] = ACTIONS(1997), - [aux_sym_cmd_identifier_token20] = ACTIONS(1997), - [aux_sym_cmd_identifier_token21] = ACTIONS(1997), - [aux_sym_cmd_identifier_token22] = ACTIONS(1997), - [aux_sym_cmd_identifier_token23] = ACTIONS(1997), - [aux_sym_cmd_identifier_token24] = ACTIONS(1997), - [aux_sym_cmd_identifier_token25] = ACTIONS(1997), - [aux_sym_cmd_identifier_token26] = ACTIONS(1997), - [aux_sym_cmd_identifier_token27] = ACTIONS(1997), - [aux_sym_cmd_identifier_token28] = ACTIONS(1997), - [aux_sym_cmd_identifier_token29] = ACTIONS(1997), - [aux_sym_cmd_identifier_token30] = ACTIONS(1997), - [aux_sym_cmd_identifier_token31] = ACTIONS(1997), - [aux_sym_cmd_identifier_token32] = ACTIONS(1997), - [aux_sym_cmd_identifier_token33] = ACTIONS(1997), - [aux_sym_cmd_identifier_token34] = ACTIONS(1997), - [aux_sym_cmd_identifier_token35] = ACTIONS(1997), - [aux_sym_cmd_identifier_token36] = ACTIONS(1997), - [aux_sym_cmd_identifier_token37] = ACTIONS(1997), - [aux_sym_cmd_identifier_token38] = ACTIONS(1997), - [aux_sym_cmd_identifier_token39] = ACTIONS(1997), - [aux_sym_cmd_identifier_token40] = ACTIONS(1997), - [anon_sym_def] = ACTIONS(1997), - [anon_sym_export_DASHenv] = ACTIONS(1997), - [anon_sym_extern] = ACTIONS(1997), - [anon_sym_module] = ACTIONS(1997), - [anon_sym_use] = ACTIONS(1997), - [anon_sym_LPAREN] = ACTIONS(1997), - [anon_sym_COMMA] = ACTIONS(1997), - [anon_sym_DOLLAR] = ACTIONS(1997), - [anon_sym_error] = ACTIONS(1997), - [anon_sym_DASH2] = ACTIONS(1997), - [anon_sym_break] = ACTIONS(1997), - [anon_sym_continue] = ACTIONS(1997), - [anon_sym_for] = ACTIONS(1997), - [anon_sym_in2] = ACTIONS(1997), - [anon_sym_loop] = ACTIONS(1997), - [anon_sym_make] = ACTIONS(1997), - [anon_sym_while] = ACTIONS(1997), - [anon_sym_do] = ACTIONS(1997), - [anon_sym_if] = ACTIONS(1997), - [anon_sym_else] = ACTIONS(1997), - [anon_sym_match] = ACTIONS(1997), - [anon_sym_RBRACE] = ACTIONS(1997), - [anon_sym_try] = ACTIONS(1997), - [anon_sym_catch] = ACTIONS(1997), - [anon_sym_return] = ACTIONS(1997), - [anon_sym_source] = ACTIONS(1997), - [anon_sym_source_DASHenv] = ACTIONS(1997), - [anon_sym_register] = ACTIONS(1997), - [anon_sym_hide] = ACTIONS(1997), - [anon_sym_hide_DASHenv] = ACTIONS(1997), - [anon_sym_overlay] = ACTIONS(1997), - [anon_sym_as] = ACTIONS(1997), - [anon_sym_PLUS2] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1997), - [anon_sym_DOT_DOT2] = ACTIONS(1997), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1999), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1999), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1997), - [aux_sym__val_number_decimal_token1] = ACTIONS(1997), - [aux_sym__val_number_decimal_token2] = ACTIONS(1997), - [aux_sym__val_number_decimal_token3] = ACTIONS(1997), - [aux_sym__val_number_decimal_token4] = ACTIONS(1997), - [aux_sym__val_number_token1] = ACTIONS(1997), - [aux_sym__val_number_token2] = ACTIONS(1997), - [aux_sym__val_number_token3] = ACTIONS(1997), - [aux_sym__val_number_token4] = ACTIONS(1997), - [aux_sym__val_number_token5] = ACTIONS(1997), - [aux_sym__val_number_token6] = ACTIONS(1997), - [anon_sym_DQUOTE] = ACTIONS(1997), - [sym__str_single_quotes] = ACTIONS(1997), - [sym__str_back_ticks] = ACTIONS(1997), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1997), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1997), - [sym__entry_separator] = ACTIONS(1999), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1999), + [anon_sym_export] = ACTIONS(982), + [anon_sym_alias] = ACTIONS(982), + [anon_sym_let] = ACTIONS(982), + [anon_sym_let_DASHenv] = ACTIONS(982), + [anon_sym_mut] = ACTIONS(982), + [anon_sym_const] = ACTIONS(982), + [aux_sym_cmd_identifier_token1] = ACTIONS(982), + [aux_sym_cmd_identifier_token2] = ACTIONS(984), + [aux_sym_cmd_identifier_token3] = ACTIONS(984), + [aux_sym_cmd_identifier_token4] = ACTIONS(984), + [aux_sym_cmd_identifier_token5] = ACTIONS(984), + [aux_sym_cmd_identifier_token6] = ACTIONS(984), + [aux_sym_cmd_identifier_token7] = ACTIONS(984), + [aux_sym_cmd_identifier_token8] = ACTIONS(982), + [aux_sym_cmd_identifier_token9] = ACTIONS(982), + [aux_sym_cmd_identifier_token10] = ACTIONS(984), + [aux_sym_cmd_identifier_token11] = ACTIONS(984), + [aux_sym_cmd_identifier_token12] = ACTIONS(982), + [aux_sym_cmd_identifier_token13] = ACTIONS(982), + [aux_sym_cmd_identifier_token14] = ACTIONS(982), + [aux_sym_cmd_identifier_token15] = ACTIONS(982), + [aux_sym_cmd_identifier_token16] = ACTIONS(984), + [aux_sym_cmd_identifier_token17] = ACTIONS(984), + [aux_sym_cmd_identifier_token18] = ACTIONS(984), + [aux_sym_cmd_identifier_token19] = ACTIONS(984), + [aux_sym_cmd_identifier_token20] = ACTIONS(984), + [aux_sym_cmd_identifier_token21] = ACTIONS(984), + [aux_sym_cmd_identifier_token22] = ACTIONS(984), + [aux_sym_cmd_identifier_token23] = ACTIONS(984), + [aux_sym_cmd_identifier_token24] = ACTIONS(984), + [aux_sym_cmd_identifier_token25] = ACTIONS(984), + [aux_sym_cmd_identifier_token26] = ACTIONS(984), + [aux_sym_cmd_identifier_token27] = ACTIONS(984), + [aux_sym_cmd_identifier_token28] = ACTIONS(984), + [aux_sym_cmd_identifier_token29] = ACTIONS(984), + [aux_sym_cmd_identifier_token30] = ACTIONS(984), + [aux_sym_cmd_identifier_token31] = ACTIONS(984), + [aux_sym_cmd_identifier_token32] = ACTIONS(984), + [aux_sym_cmd_identifier_token33] = ACTIONS(984), + [aux_sym_cmd_identifier_token34] = ACTIONS(982), + [aux_sym_cmd_identifier_token35] = ACTIONS(984), + [aux_sym_cmd_identifier_token36] = ACTIONS(984), + [aux_sym_cmd_identifier_token37] = ACTIONS(984), + [aux_sym_cmd_identifier_token38] = ACTIONS(982), + [aux_sym_cmd_identifier_token39] = ACTIONS(984), + [aux_sym_cmd_identifier_token40] = ACTIONS(984), + [anon_sym_def] = ACTIONS(982), + [anon_sym_export_DASHenv] = ACTIONS(982), + [anon_sym_extern] = ACTIONS(982), + [anon_sym_module] = ACTIONS(982), + [anon_sym_use] = ACTIONS(982), + [anon_sym_LPAREN] = ACTIONS(984), + [anon_sym_COMMA] = ACTIONS(984), + [anon_sym_DOLLAR] = ACTIONS(982), + [anon_sym_error] = ACTIONS(982), + [anon_sym_DASH2] = ACTIONS(982), + [anon_sym_break] = ACTIONS(982), + [anon_sym_continue] = ACTIONS(982), + [anon_sym_for] = ACTIONS(982), + [anon_sym_in2] = ACTIONS(982), + [anon_sym_loop] = ACTIONS(982), + [anon_sym_make] = ACTIONS(982), + [anon_sym_while] = ACTIONS(982), + [anon_sym_do] = ACTIONS(982), + [anon_sym_if] = ACTIONS(982), + [anon_sym_else] = ACTIONS(982), + [anon_sym_match] = ACTIONS(982), + [anon_sym_RBRACE] = ACTIONS(984), + [anon_sym_try] = ACTIONS(982), + [anon_sym_catch] = ACTIONS(982), + [anon_sym_return] = ACTIONS(982), + [anon_sym_source] = ACTIONS(982), + [anon_sym_source_DASHenv] = ACTIONS(982), + [anon_sym_hide] = ACTIONS(982), + [anon_sym_hide_DASHenv] = ACTIONS(982), + [anon_sym_overlay] = ACTIONS(982), + [anon_sym_as] = ACTIONS(982), + [anon_sym_PLUS2] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(984), + [anon_sym_DOT_DOT2] = ACTIONS(982), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(984), + [anon_sym_DOT_DOT_LT2] = ACTIONS(984), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(984), + [aux_sym__val_number_decimal_token1] = ACTIONS(982), + [aux_sym__val_number_decimal_token2] = ACTIONS(984), + [aux_sym__val_number_decimal_token3] = ACTIONS(984), + [aux_sym__val_number_decimal_token4] = ACTIONS(984), + [aux_sym__val_number_token1] = ACTIONS(984), + [aux_sym__val_number_token2] = ACTIONS(984), + [aux_sym__val_number_token3] = ACTIONS(984), + [aux_sym__val_number_token4] = ACTIONS(982), + [aux_sym__val_number_token5] = ACTIONS(982), + [aux_sym__val_number_token6] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(984), + [sym__str_single_quotes] = ACTIONS(984), + [sym__str_back_ticks] = ACTIONS(984), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(984), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(984), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(984), + [anon_sym_register] = ACTIONS(982), + [anon_sym_DOT2] = ACTIONS(982), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(984), }, [446] = { - [sym_path] = STATE(587), + [sym_path] = STATE(559), [sym_comment] = STATE(446), - [aux_sym_cell_path_repeat1] = STATE(447), - [anon_sym_export] = ACTIONS(949), - [anon_sym_alias] = ACTIONS(949), - [anon_sym_let] = ACTIONS(949), - [anon_sym_let_DASHenv] = ACTIONS(949), - [anon_sym_mut] = ACTIONS(949), - [anon_sym_const] = ACTIONS(949), - [aux_sym_cmd_identifier_token1] = ACTIONS(949), - [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(949), - [aux_sym_cmd_identifier_token9] = ACTIONS(949), - [aux_sym_cmd_identifier_token10] = ACTIONS(951), - [aux_sym_cmd_identifier_token11] = ACTIONS(951), - [aux_sym_cmd_identifier_token12] = ACTIONS(949), - [aux_sym_cmd_identifier_token13] = ACTIONS(949), - [aux_sym_cmd_identifier_token14] = ACTIONS(949), - [aux_sym_cmd_identifier_token15] = ACTIONS(949), - [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(949), - [aux_sym_cmd_identifier_token35] = ACTIONS(951), - [aux_sym_cmd_identifier_token36] = ACTIONS(951), - [aux_sym_cmd_identifier_token37] = ACTIONS(951), - [aux_sym_cmd_identifier_token38] = ACTIONS(949), - [aux_sym_cmd_identifier_token39] = ACTIONS(951), - [aux_sym_cmd_identifier_token40] = ACTIONS(951), - [anon_sym_def] = ACTIONS(949), - [anon_sym_export_DASHenv] = ACTIONS(949), - [anon_sym_extern] = ACTIONS(949), - [anon_sym_module] = ACTIONS(949), - [anon_sym_use] = ACTIONS(949), - [anon_sym_LPAREN] = ACTIONS(951), - [anon_sym_COMMA] = ACTIONS(951), - [anon_sym_DOLLAR] = ACTIONS(949), - [anon_sym_error] = ACTIONS(949), - [anon_sym_DASH2] = ACTIONS(949), - [anon_sym_break] = ACTIONS(949), - [anon_sym_continue] = ACTIONS(949), - [anon_sym_for] = ACTIONS(949), - [anon_sym_in2] = ACTIONS(949), - [anon_sym_loop] = ACTIONS(949), - [anon_sym_make] = ACTIONS(949), - [anon_sym_while] = ACTIONS(949), - [anon_sym_do] = ACTIONS(949), - [anon_sym_if] = ACTIONS(949), - [anon_sym_else] = ACTIONS(949), - [anon_sym_match] = ACTIONS(949), - [anon_sym_RBRACE] = ACTIONS(951), - [anon_sym_try] = ACTIONS(949), - [anon_sym_catch] = ACTIONS(949), - [anon_sym_return] = ACTIONS(949), - [anon_sym_source] = ACTIONS(949), - [anon_sym_source_DASHenv] = ACTIONS(949), - [anon_sym_register] = ACTIONS(949), - [anon_sym_hide] = ACTIONS(949), - [anon_sym_hide_DASHenv] = ACTIONS(949), - [anon_sym_overlay] = ACTIONS(949), - [anon_sym_as] = ACTIONS(949), - [anon_sym_PLUS2] = ACTIONS(949), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(951), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(951), - [aux_sym__val_number_decimal_token1] = ACTIONS(949), - [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), - [aux_sym__val_number_token4] = ACTIONS(949), - [aux_sym__val_number_token5] = ACTIONS(949), - [aux_sym__val_number_token6] = ACTIONS(949), - [anon_sym_DQUOTE] = ACTIONS(951), - [sym__str_single_quotes] = ACTIONS(951), - [sym__str_back_ticks] = ACTIONS(951), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(951), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(951), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(951), - [anon_sym_COLON2] = ACTIONS(951), - [anon_sym_DOT2] = ACTIONS(1973), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(951), + [aux_sym_cell_path_repeat1] = STATE(454), + [anon_sym_export] = ACTIONS(942), + [anon_sym_alias] = ACTIONS(942), + [anon_sym_let] = ACTIONS(942), + [anon_sym_let_DASHenv] = ACTIONS(942), + [anon_sym_mut] = ACTIONS(942), + [anon_sym_const] = ACTIONS(942), + [aux_sym_cmd_identifier_token1] = ACTIONS(942), + [aux_sym_cmd_identifier_token2] = ACTIONS(942), + [aux_sym_cmd_identifier_token3] = ACTIONS(942), + [aux_sym_cmd_identifier_token4] = ACTIONS(942), + [aux_sym_cmd_identifier_token5] = ACTIONS(942), + [aux_sym_cmd_identifier_token6] = ACTIONS(942), + [aux_sym_cmd_identifier_token7] = ACTIONS(942), + [aux_sym_cmd_identifier_token8] = ACTIONS(942), + [aux_sym_cmd_identifier_token9] = ACTIONS(942), + [aux_sym_cmd_identifier_token10] = ACTIONS(942), + [aux_sym_cmd_identifier_token11] = ACTIONS(942), + [aux_sym_cmd_identifier_token12] = ACTIONS(942), + [aux_sym_cmd_identifier_token13] = ACTIONS(942), + [aux_sym_cmd_identifier_token14] = ACTIONS(942), + [aux_sym_cmd_identifier_token15] = ACTIONS(942), + [aux_sym_cmd_identifier_token16] = ACTIONS(942), + [aux_sym_cmd_identifier_token17] = ACTIONS(942), + [aux_sym_cmd_identifier_token18] = ACTIONS(942), + [aux_sym_cmd_identifier_token19] = ACTIONS(942), + [aux_sym_cmd_identifier_token20] = ACTIONS(942), + [aux_sym_cmd_identifier_token21] = ACTIONS(942), + [aux_sym_cmd_identifier_token22] = ACTIONS(942), + [aux_sym_cmd_identifier_token23] = ACTIONS(942), + [aux_sym_cmd_identifier_token24] = ACTIONS(942), + [aux_sym_cmd_identifier_token25] = ACTIONS(942), + [aux_sym_cmd_identifier_token26] = ACTIONS(942), + [aux_sym_cmd_identifier_token27] = ACTIONS(942), + [aux_sym_cmd_identifier_token28] = ACTIONS(942), + [aux_sym_cmd_identifier_token29] = ACTIONS(942), + [aux_sym_cmd_identifier_token30] = ACTIONS(942), + [aux_sym_cmd_identifier_token31] = ACTIONS(942), + [aux_sym_cmd_identifier_token32] = ACTIONS(942), + [aux_sym_cmd_identifier_token33] = ACTIONS(942), + [aux_sym_cmd_identifier_token34] = ACTIONS(942), + [aux_sym_cmd_identifier_token35] = ACTIONS(942), + [aux_sym_cmd_identifier_token36] = ACTIONS(942), + [aux_sym_cmd_identifier_token37] = ACTIONS(942), + [aux_sym_cmd_identifier_token38] = ACTIONS(942), + [aux_sym_cmd_identifier_token39] = ACTIONS(942), + [aux_sym_cmd_identifier_token40] = ACTIONS(942), + [anon_sym_def] = ACTIONS(942), + [anon_sym_export_DASHenv] = ACTIONS(942), + [anon_sym_extern] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [anon_sym_use] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_COMMA] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_error] = ACTIONS(942), + [anon_sym_DASH2] = ACTIONS(942), + [anon_sym_break] = ACTIONS(942), + [anon_sym_continue] = ACTIONS(942), + [anon_sym_for] = ACTIONS(942), + [anon_sym_in2] = ACTIONS(942), + [anon_sym_loop] = ACTIONS(942), + [anon_sym_make] = ACTIONS(942), + [anon_sym_while] = ACTIONS(942), + [anon_sym_do] = ACTIONS(942), + [anon_sym_if] = ACTIONS(942), + [anon_sym_else] = ACTIONS(942), + [anon_sym_match] = ACTIONS(942), + [anon_sym_RBRACE] = ACTIONS(942), + [anon_sym_try] = ACTIONS(942), + [anon_sym_catch] = ACTIONS(942), + [anon_sym_return] = ACTIONS(942), + [anon_sym_source] = ACTIONS(942), + [anon_sym_source_DASHenv] = ACTIONS(942), + [anon_sym_hide] = ACTIONS(942), + [anon_sym_hide_DASHenv] = ACTIONS(942), + [anon_sym_overlay] = ACTIONS(942), + [anon_sym_as] = ACTIONS(942), + [anon_sym_PLUS2] = ACTIONS(942), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(942), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(942), + [aux_sym__val_number_decimal_token1] = ACTIONS(942), + [aux_sym__val_number_decimal_token2] = ACTIONS(942), + [aux_sym__val_number_decimal_token3] = ACTIONS(942), + [aux_sym__val_number_decimal_token4] = ACTIONS(942), + [aux_sym__val_number_token1] = ACTIONS(942), + [aux_sym__val_number_token2] = ACTIONS(942), + [aux_sym__val_number_token3] = ACTIONS(942), + [aux_sym__val_number_token4] = ACTIONS(942), + [aux_sym__val_number_token5] = ACTIONS(942), + [aux_sym__val_number_token6] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym__str_single_quotes] = ACTIONS(942), + [sym__str_back_ticks] = ACTIONS(942), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(942), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(942), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(942), + [sym__entry_separator] = ACTIONS(944), + [anon_sym_register] = ACTIONS(942), + [anon_sym_DOT2] = ACTIONS(1837), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(944), }, [447] = { - [sym_path] = STATE(587), [sym_comment] = STATE(447), - [aux_sym_cell_path_repeat1] = STATE(447), - [anon_sym_export] = ACTIONS(953), - [anon_sym_alias] = ACTIONS(953), - [anon_sym_let] = ACTIONS(953), - [anon_sym_let_DASHenv] = ACTIONS(953), - [anon_sym_mut] = ACTIONS(953), - [anon_sym_const] = ACTIONS(953), - [aux_sym_cmd_identifier_token1] = ACTIONS(953), - [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(953), - [aux_sym_cmd_identifier_token9] = ACTIONS(953), - [aux_sym_cmd_identifier_token10] = ACTIONS(955), - [aux_sym_cmd_identifier_token11] = ACTIONS(955), - [aux_sym_cmd_identifier_token12] = ACTIONS(953), - [aux_sym_cmd_identifier_token13] = ACTIONS(953), - [aux_sym_cmd_identifier_token14] = ACTIONS(953), - [aux_sym_cmd_identifier_token15] = ACTIONS(953), - [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(953), - [aux_sym_cmd_identifier_token35] = ACTIONS(955), - [aux_sym_cmd_identifier_token36] = ACTIONS(955), - [aux_sym_cmd_identifier_token37] = ACTIONS(955), - [aux_sym_cmd_identifier_token38] = ACTIONS(953), - [aux_sym_cmd_identifier_token39] = ACTIONS(955), - [aux_sym_cmd_identifier_token40] = ACTIONS(955), - [anon_sym_def] = ACTIONS(953), - [anon_sym_export_DASHenv] = ACTIONS(953), - [anon_sym_extern] = ACTIONS(953), - [anon_sym_module] = ACTIONS(953), - [anon_sym_use] = ACTIONS(953), - [anon_sym_LPAREN] = ACTIONS(955), - [anon_sym_COMMA] = ACTIONS(955), - [anon_sym_DOLLAR] = ACTIONS(953), - [anon_sym_error] = ACTIONS(953), - [anon_sym_DASH2] = ACTIONS(953), - [anon_sym_break] = ACTIONS(953), - [anon_sym_continue] = ACTIONS(953), - [anon_sym_for] = ACTIONS(953), - [anon_sym_in2] = ACTIONS(953), - [anon_sym_loop] = ACTIONS(953), - [anon_sym_make] = ACTIONS(953), - [anon_sym_while] = ACTIONS(953), - [anon_sym_do] = ACTIONS(953), - [anon_sym_if] = ACTIONS(953), - [anon_sym_else] = ACTIONS(953), - [anon_sym_match] = ACTIONS(953), - [anon_sym_RBRACE] = ACTIONS(955), - [anon_sym_try] = ACTIONS(953), - [anon_sym_catch] = ACTIONS(953), - [anon_sym_return] = ACTIONS(953), - [anon_sym_source] = ACTIONS(953), - [anon_sym_source_DASHenv] = ACTIONS(953), - [anon_sym_register] = ACTIONS(953), - [anon_sym_hide] = ACTIONS(953), - [anon_sym_hide_DASHenv] = ACTIONS(953), - [anon_sym_overlay] = ACTIONS(953), - [anon_sym_as] = ACTIONS(953), - [anon_sym_PLUS2] = ACTIONS(953), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(955), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(955), - [aux_sym__val_number_decimal_token1] = ACTIONS(953), - [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), - [aux_sym__val_number_token4] = ACTIONS(953), - [aux_sym__val_number_token5] = ACTIONS(953), - [aux_sym__val_number_token6] = ACTIONS(953), - [anon_sym_DQUOTE] = ACTIONS(955), - [sym__str_single_quotes] = ACTIONS(955), - [sym__str_back_ticks] = ACTIONS(955), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(955), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(955), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(955), - [anon_sym_COLON2] = ACTIONS(955), - [anon_sym_DOT2] = ACTIONS(2001), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(955), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(986), + [anon_sym_DOLLAR] = ACTIONS(986), + [anon_sym_error] = ACTIONS(986), + [anon_sym_DASH2] = ACTIONS(986), + [anon_sym_break] = ACTIONS(986), + [anon_sym_continue] = ACTIONS(986), + [anon_sym_for] = ACTIONS(986), + [anon_sym_in2] = 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_hide] = ACTIONS(986), + [anon_sym_hide_DASHenv] = ACTIONS(986), + [anon_sym_overlay] = ACTIONS(986), + [anon_sym_as] = ACTIONS(986), + [anon_sym_PLUS2] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(986), + [anon_sym_DOT_DOT2] = 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), + [aux_sym__val_number_token4] = ACTIONS(986), + [aux_sym__val_number_token5] = ACTIONS(986), + [aux_sym__val_number_token6] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym__str_single_quotes] = ACTIONS(986), + [sym__str_back_ticks] = ACTIONS(986), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(986), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(986), + [sym__entry_separator] = ACTIONS(988), + [anon_sym_register] = ACTIONS(986), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(988), }, [448] = { - [sym_cell_path] = STATE(719), - [sym_path] = STATE(587), + [sym_cell_path] = STATE(714), + [sym_path] = STATE(565), [sym_comment] = STATE(448), - [aux_sym_cell_path_repeat1] = STATE(446), - [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(1893), - [aux_sym_cmd_identifier_token3] = ACTIONS(1893), - [aux_sym_cmd_identifier_token4] = ACTIONS(1893), - [aux_sym_cmd_identifier_token5] = ACTIONS(1893), - [aux_sym_cmd_identifier_token6] = ACTIONS(1893), - [aux_sym_cmd_identifier_token7] = ACTIONS(1893), - [aux_sym_cmd_identifier_token8] = ACTIONS(1891), - [aux_sym_cmd_identifier_token9] = ACTIONS(1891), - [aux_sym_cmd_identifier_token10] = ACTIONS(1893), - [aux_sym_cmd_identifier_token11] = ACTIONS(1893), - [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(1893), - [aux_sym_cmd_identifier_token17] = ACTIONS(1893), - [aux_sym_cmd_identifier_token18] = ACTIONS(1893), - [aux_sym_cmd_identifier_token19] = ACTIONS(1893), - [aux_sym_cmd_identifier_token20] = ACTIONS(1893), - [aux_sym_cmd_identifier_token21] = ACTIONS(1893), - [aux_sym_cmd_identifier_token22] = ACTIONS(1893), - [aux_sym_cmd_identifier_token23] = ACTIONS(1893), - [aux_sym_cmd_identifier_token24] = ACTIONS(1893), - [aux_sym_cmd_identifier_token25] = ACTIONS(1893), - [aux_sym_cmd_identifier_token26] = ACTIONS(1893), - [aux_sym_cmd_identifier_token27] = ACTIONS(1893), - [aux_sym_cmd_identifier_token28] = ACTIONS(1893), - [aux_sym_cmd_identifier_token29] = ACTIONS(1893), - [aux_sym_cmd_identifier_token30] = ACTIONS(1893), - [aux_sym_cmd_identifier_token31] = ACTIONS(1893), - [aux_sym_cmd_identifier_token32] = ACTIONS(1893), - [aux_sym_cmd_identifier_token33] = ACTIONS(1893), - [aux_sym_cmd_identifier_token34] = ACTIONS(1891), - [aux_sym_cmd_identifier_token35] = ACTIONS(1893), - [aux_sym_cmd_identifier_token36] = ACTIONS(1893), - [aux_sym_cmd_identifier_token37] = 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_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_COMMA] = ACTIONS(1893), - [anon_sym_DOLLAR] = ACTIONS(1891), - [anon_sym_error] = ACTIONS(1891), - [anon_sym_DASH2] = ACTIONS(1891), - [anon_sym_break] = ACTIONS(1891), - [anon_sym_continue] = ACTIONS(1891), - [anon_sym_for] = ACTIONS(1891), - [anon_sym_in2] = 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_as] = ACTIONS(1891), - [anon_sym_PLUS2] = ACTIONS(1891), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1893), - [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), - [aux_sym__val_number_token4] = ACTIONS(1891), - [aux_sym__val_number_token5] = ACTIONS(1891), - [aux_sym__val_number_token6] = ACTIONS(1891), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1893), - [anon_sym_DOT2] = ACTIONS(1973), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1893), + [aux_sym_cell_path_repeat1] = STATE(484), + [anon_sym_export] = ACTIONS(1897), + [anon_sym_alias] = ACTIONS(1897), + [anon_sym_let] = ACTIONS(1897), + [anon_sym_let_DASHenv] = ACTIONS(1897), + [anon_sym_mut] = ACTIONS(1897), + [anon_sym_const] = ACTIONS(1897), + [aux_sym_cmd_identifier_token1] = ACTIONS(1897), + [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(1897), + [aux_sym_cmd_identifier_token9] = ACTIONS(1897), + [aux_sym_cmd_identifier_token10] = ACTIONS(1899), + [aux_sym_cmd_identifier_token11] = ACTIONS(1899), + [aux_sym_cmd_identifier_token12] = ACTIONS(1897), + [aux_sym_cmd_identifier_token13] = ACTIONS(1897), + [aux_sym_cmd_identifier_token14] = ACTIONS(1897), + [aux_sym_cmd_identifier_token15] = ACTIONS(1897), + [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(1897), + [aux_sym_cmd_identifier_token35] = ACTIONS(1899), + [aux_sym_cmd_identifier_token36] = ACTIONS(1899), + [aux_sym_cmd_identifier_token37] = ACTIONS(1899), + [aux_sym_cmd_identifier_token38] = ACTIONS(1897), + [aux_sym_cmd_identifier_token39] = ACTIONS(1899), + [aux_sym_cmd_identifier_token40] = ACTIONS(1899), + [anon_sym_def] = ACTIONS(1897), + [anon_sym_export_DASHenv] = ACTIONS(1897), + [anon_sym_extern] = ACTIONS(1897), + [anon_sym_module] = ACTIONS(1897), + [anon_sym_use] = ACTIONS(1897), + [anon_sym_LPAREN] = ACTIONS(1899), + [anon_sym_COMMA] = ACTIONS(1899), + [anon_sym_DOLLAR] = ACTIONS(1897), + [anon_sym_error] = ACTIONS(1897), + [anon_sym_DASH2] = ACTIONS(1897), + [anon_sym_break] = ACTIONS(1897), + [anon_sym_continue] = ACTIONS(1897), + [anon_sym_for] = ACTIONS(1897), + [anon_sym_in2] = ACTIONS(1897), + [anon_sym_loop] = ACTIONS(1897), + [anon_sym_make] = ACTIONS(1897), + [anon_sym_while] = ACTIONS(1897), + [anon_sym_do] = ACTIONS(1897), + [anon_sym_if] = ACTIONS(1897), + [anon_sym_else] = ACTIONS(1897), + [anon_sym_match] = ACTIONS(1897), + [anon_sym_RBRACE] = ACTIONS(1899), + [anon_sym_try] = ACTIONS(1897), + [anon_sym_catch] = ACTIONS(1897), + [anon_sym_return] = ACTIONS(1897), + [anon_sym_source] = ACTIONS(1897), + [anon_sym_source_DASHenv] = ACTIONS(1897), + [anon_sym_hide] = ACTIONS(1897), + [anon_sym_hide_DASHenv] = ACTIONS(1897), + [anon_sym_overlay] = ACTIONS(1897), + [anon_sym_as] = ACTIONS(1897), + [anon_sym_PLUS2] = ACTIONS(1897), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1899), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1899), + [aux_sym__val_number_decimal_token1] = ACTIONS(1897), + [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), + [aux_sym__val_number_token4] = ACTIONS(1897), + [aux_sym__val_number_token5] = ACTIONS(1897), + [aux_sym__val_number_token6] = ACTIONS(1897), + [anon_sym_DQUOTE] = ACTIONS(1899), + [sym__str_single_quotes] = ACTIONS(1899), + [sym__str_back_ticks] = ACTIONS(1899), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1899), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1899), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1899), + [anon_sym_register] = ACTIONS(1897), + [anon_sym_DOT2] = ACTIONS(1921), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1899), }, [449] = { - [sym_cell_path] = STATE(720), - [sym_path] = STATE(587), [sym_comment] = STATE(449), - [aux_sym_cell_path_repeat1] = STATE(446), - [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(1911), - [aux_sym_cmd_identifier_token3] = ACTIONS(1911), - [aux_sym_cmd_identifier_token4] = ACTIONS(1911), - [aux_sym_cmd_identifier_token5] = ACTIONS(1911), - [aux_sym_cmd_identifier_token6] = ACTIONS(1911), - [aux_sym_cmd_identifier_token7] = ACTIONS(1911), - [aux_sym_cmd_identifier_token8] = ACTIONS(1909), - [aux_sym_cmd_identifier_token9] = ACTIONS(1909), - [aux_sym_cmd_identifier_token10] = ACTIONS(1911), - [aux_sym_cmd_identifier_token11] = ACTIONS(1911), - [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(1911), - [aux_sym_cmd_identifier_token17] = ACTIONS(1911), - [aux_sym_cmd_identifier_token18] = ACTIONS(1911), - [aux_sym_cmd_identifier_token19] = ACTIONS(1911), - [aux_sym_cmd_identifier_token20] = ACTIONS(1911), - [aux_sym_cmd_identifier_token21] = ACTIONS(1911), - [aux_sym_cmd_identifier_token22] = ACTIONS(1911), - [aux_sym_cmd_identifier_token23] = ACTIONS(1911), - [aux_sym_cmd_identifier_token24] = ACTIONS(1911), - [aux_sym_cmd_identifier_token25] = ACTIONS(1911), - [aux_sym_cmd_identifier_token26] = ACTIONS(1911), - [aux_sym_cmd_identifier_token27] = ACTIONS(1911), - [aux_sym_cmd_identifier_token28] = ACTIONS(1911), - [aux_sym_cmd_identifier_token29] = ACTIONS(1911), - [aux_sym_cmd_identifier_token30] = ACTIONS(1911), - [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(1909), - [aux_sym_cmd_identifier_token35] = ACTIONS(1911), - [aux_sym_cmd_identifier_token36] = ACTIONS(1911), - [aux_sym_cmd_identifier_token37] = ACTIONS(1911), - [aux_sym_cmd_identifier_token38] = ACTIONS(1909), - [aux_sym_cmd_identifier_token39] = ACTIONS(1911), - [aux_sym_cmd_identifier_token40] = 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_LPAREN] = ACTIONS(1911), - [anon_sym_COMMA] = ACTIONS(1911), - [anon_sym_DOLLAR] = ACTIONS(1909), - [anon_sym_error] = ACTIONS(1909), - [anon_sym_DASH2] = ACTIONS(1909), - [anon_sym_break] = ACTIONS(1909), - [anon_sym_continue] = ACTIONS(1909), - [anon_sym_for] = ACTIONS(1909), - [anon_sym_in2] = ACTIONS(1909), - [anon_sym_loop] = ACTIONS(1909), - [anon_sym_make] = ACTIONS(1909), - [anon_sym_while] = ACTIONS(1909), - [anon_sym_do] = ACTIONS(1909), - [anon_sym_if] = ACTIONS(1909), - [anon_sym_else] = ACTIONS(1909), - [anon_sym_match] = ACTIONS(1909), - [anon_sym_RBRACE] = ACTIONS(1911), - [anon_sym_try] = ACTIONS(1909), - [anon_sym_catch] = 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_as] = ACTIONS(1909), - [anon_sym_PLUS2] = ACTIONS(1909), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1911), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1911), - [aux_sym__val_number_decimal_token1] = ACTIONS(1909), - [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), - [aux_sym__val_number_token4] = ACTIONS(1909), - [aux_sym__val_number_token5] = ACTIONS(1909), - [aux_sym__val_number_token6] = ACTIONS(1909), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1911), - [anon_sym_DOT2] = ACTIONS(1973), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1911), - }, - [450] = { - [sym_comment] = STATE(450), - [anon_sym_export] = ACTIONS(996), - [anon_sym_alias] = ACTIONS(996), - [anon_sym_let] = ACTIONS(996), - [anon_sym_let_DASHenv] = ACTIONS(996), - [anon_sym_mut] = ACTIONS(996), - [anon_sym_const] = ACTIONS(996), - [aux_sym_cmd_identifier_token1] = ACTIONS(996), - [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(996), - [aux_sym_cmd_identifier_token9] = ACTIONS(996), - [aux_sym_cmd_identifier_token10] = ACTIONS(998), - [aux_sym_cmd_identifier_token11] = ACTIONS(998), - [aux_sym_cmd_identifier_token12] = ACTIONS(996), - [aux_sym_cmd_identifier_token13] = ACTIONS(996), - [aux_sym_cmd_identifier_token14] = ACTIONS(996), - [aux_sym_cmd_identifier_token15] = ACTIONS(996), - [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(996), - [aux_sym_cmd_identifier_token35] = ACTIONS(998), - [aux_sym_cmd_identifier_token36] = ACTIONS(998), - [aux_sym_cmd_identifier_token37] = ACTIONS(998), - [aux_sym_cmd_identifier_token38] = ACTIONS(996), - [aux_sym_cmd_identifier_token39] = ACTIONS(998), - [aux_sym_cmd_identifier_token40] = ACTIONS(998), - [anon_sym_def] = ACTIONS(996), - [anon_sym_export_DASHenv] = ACTIONS(996), - [anon_sym_extern] = ACTIONS(996), - [anon_sym_module] = ACTIONS(996), - [anon_sym_use] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(998), - [anon_sym_COMMA] = ACTIONS(998), - [anon_sym_DOLLAR] = ACTIONS(996), - [anon_sym_error] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_break] = ACTIONS(996), - [anon_sym_continue] = ACTIONS(996), - [anon_sym_for] = ACTIONS(996), - [anon_sym_in2] = ACTIONS(996), - [anon_sym_loop] = ACTIONS(996), - [anon_sym_make] = ACTIONS(996), - [anon_sym_while] = ACTIONS(996), - [anon_sym_do] = ACTIONS(996), - [anon_sym_if] = ACTIONS(996), - [anon_sym_else] = ACTIONS(996), - [anon_sym_match] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(998), - [anon_sym_try] = ACTIONS(996), - [anon_sym_catch] = ACTIONS(996), - [anon_sym_return] = ACTIONS(996), - [anon_sym_source] = ACTIONS(996), - [anon_sym_source_DASHenv] = ACTIONS(996), - [anon_sym_register] = ACTIONS(996), - [anon_sym_hide] = ACTIONS(996), - [anon_sym_hide_DASHenv] = ACTIONS(996), - [anon_sym_overlay] = ACTIONS(996), - [anon_sym_as] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(998), - [anon_sym_DOT_DOT2] = ACTIONS(996), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(998), - [anon_sym_DOT_DOT_LT2] = ACTIONS(998), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(998), - [aux_sym__val_number_decimal_token1] = ACTIONS(996), - [aux_sym__val_number_decimal_token2] = ACTIONS(998), - [aux_sym__val_number_decimal_token3] = ACTIONS(998), - [aux_sym__val_number_decimal_token4] = ACTIONS(998), - [aux_sym__val_number_token1] = ACTIONS(998), - [aux_sym__val_number_token2] = ACTIONS(998), - [aux_sym__val_number_token3] = ACTIONS(998), - [aux_sym__val_number_token4] = ACTIONS(996), - [aux_sym__val_number_token5] = ACTIONS(996), - [aux_sym__val_number_token6] = ACTIONS(996), - [anon_sym_DQUOTE] = ACTIONS(998), - [sym__str_single_quotes] = ACTIONS(998), - [sym__str_back_ticks] = ACTIONS(998), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(998), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(998), - [anon_sym_DOT2] = ACTIONS(996), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(998), - }, - [451] = { - [sym_path] = STATE(569), - [sym_comment] = STATE(451), - [aux_sym_cell_path_repeat1] = STATE(455), - [anon_sym_export] = ACTIONS(949), - [anon_sym_alias] = ACTIONS(949), - [anon_sym_let] = ACTIONS(949), - [anon_sym_let_DASHenv] = ACTIONS(949), - [anon_sym_mut] = ACTIONS(949), - [anon_sym_const] = ACTIONS(949), - [aux_sym_cmd_identifier_token1] = ACTIONS(949), - [aux_sym_cmd_identifier_token2] = ACTIONS(949), - [aux_sym_cmd_identifier_token3] = ACTIONS(949), - [aux_sym_cmd_identifier_token4] = ACTIONS(949), - [aux_sym_cmd_identifier_token5] = ACTIONS(949), - [aux_sym_cmd_identifier_token6] = ACTIONS(949), - [aux_sym_cmd_identifier_token7] = ACTIONS(949), - [aux_sym_cmd_identifier_token8] = ACTIONS(949), - [aux_sym_cmd_identifier_token9] = ACTIONS(949), - [aux_sym_cmd_identifier_token10] = ACTIONS(949), - [aux_sym_cmd_identifier_token11] = ACTIONS(949), - [aux_sym_cmd_identifier_token12] = ACTIONS(949), - [aux_sym_cmd_identifier_token13] = ACTIONS(949), - [aux_sym_cmd_identifier_token14] = ACTIONS(949), - [aux_sym_cmd_identifier_token15] = ACTIONS(949), - [aux_sym_cmd_identifier_token16] = ACTIONS(949), - [aux_sym_cmd_identifier_token17] = ACTIONS(949), - [aux_sym_cmd_identifier_token18] = ACTIONS(949), - [aux_sym_cmd_identifier_token19] = ACTIONS(949), - [aux_sym_cmd_identifier_token20] = ACTIONS(949), - [aux_sym_cmd_identifier_token21] = ACTIONS(949), - [aux_sym_cmd_identifier_token22] = ACTIONS(949), - [aux_sym_cmd_identifier_token23] = ACTIONS(949), - [aux_sym_cmd_identifier_token24] = ACTIONS(949), - [aux_sym_cmd_identifier_token25] = ACTIONS(949), - [aux_sym_cmd_identifier_token26] = ACTIONS(949), - [aux_sym_cmd_identifier_token27] = ACTIONS(949), - [aux_sym_cmd_identifier_token28] = ACTIONS(949), - [aux_sym_cmd_identifier_token29] = ACTIONS(949), - [aux_sym_cmd_identifier_token30] = ACTIONS(949), - [aux_sym_cmd_identifier_token31] = ACTIONS(949), - [aux_sym_cmd_identifier_token32] = ACTIONS(949), - [aux_sym_cmd_identifier_token33] = ACTIONS(949), - [aux_sym_cmd_identifier_token34] = ACTIONS(949), - [aux_sym_cmd_identifier_token35] = ACTIONS(949), - [aux_sym_cmd_identifier_token36] = ACTIONS(949), - [aux_sym_cmd_identifier_token37] = ACTIONS(949), - [aux_sym_cmd_identifier_token38] = ACTIONS(949), - [aux_sym_cmd_identifier_token39] = ACTIONS(949), - [aux_sym_cmd_identifier_token40] = ACTIONS(949), - [anon_sym_def] = ACTIONS(949), - [anon_sym_export_DASHenv] = ACTIONS(949), - [anon_sym_extern] = ACTIONS(949), - [anon_sym_module] = ACTIONS(949), - [anon_sym_use] = ACTIONS(949), - [anon_sym_LPAREN] = ACTIONS(949), - [anon_sym_COMMA] = ACTIONS(949), - [anon_sym_DOLLAR] = ACTIONS(949), - [anon_sym_error] = ACTIONS(949), - [anon_sym_DASH2] = ACTIONS(949), - [anon_sym_break] = ACTIONS(949), - [anon_sym_continue] = ACTIONS(949), - [anon_sym_for] = ACTIONS(949), - [anon_sym_in2] = ACTIONS(949), - [anon_sym_loop] = ACTIONS(949), - [anon_sym_make] = ACTIONS(949), - [anon_sym_while] = ACTIONS(949), - [anon_sym_do] = ACTIONS(949), - [anon_sym_if] = ACTIONS(949), - [anon_sym_else] = ACTIONS(949), - [anon_sym_match] = ACTIONS(949), - [anon_sym_RBRACE] = ACTIONS(949), - [anon_sym_try] = ACTIONS(949), - [anon_sym_catch] = ACTIONS(949), - [anon_sym_return] = ACTIONS(949), - [anon_sym_source] = ACTIONS(949), - [anon_sym_source_DASHenv] = ACTIONS(949), - [anon_sym_register] = ACTIONS(949), - [anon_sym_hide] = ACTIONS(949), - [anon_sym_hide_DASHenv] = ACTIONS(949), - [anon_sym_overlay] = ACTIONS(949), - [anon_sym_as] = ACTIONS(949), - [anon_sym_PLUS2] = ACTIONS(949), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(949), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(949), - [aux_sym__val_number_decimal_token1] = ACTIONS(949), - [aux_sym__val_number_decimal_token2] = ACTIONS(949), - [aux_sym__val_number_decimal_token3] = ACTIONS(949), - [aux_sym__val_number_decimal_token4] = ACTIONS(949), - [aux_sym__val_number_token1] = ACTIONS(949), - [aux_sym__val_number_token2] = ACTIONS(949), - [aux_sym__val_number_token3] = ACTIONS(949), - [aux_sym__val_number_token4] = ACTIONS(949), - [aux_sym__val_number_token5] = ACTIONS(949), - [aux_sym__val_number_token6] = ACTIONS(949), - [anon_sym_DQUOTE] = ACTIONS(949), - [sym__str_single_quotes] = ACTIONS(949), - [sym__str_back_ticks] = ACTIONS(949), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(949), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(949), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(949), - [sym__entry_separator] = ACTIONS(951), - [anon_sym_DOT2] = ACTIONS(1849), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(951), - }, - [452] = { - [sym_comment] = STATE(452), - [anon_sym_export] = ACTIONS(1000), - [anon_sym_alias] = ACTIONS(1000), - [anon_sym_let] = ACTIONS(1000), - [anon_sym_let_DASHenv] = ACTIONS(1000), - [anon_sym_mut] = ACTIONS(1000), - [anon_sym_const] = ACTIONS(1000), - [aux_sym_cmd_identifier_token1] = ACTIONS(1000), - [aux_sym_cmd_identifier_token2] = ACTIONS(1000), - [aux_sym_cmd_identifier_token3] = ACTIONS(1000), - [aux_sym_cmd_identifier_token4] = ACTIONS(1000), - [aux_sym_cmd_identifier_token5] = ACTIONS(1000), - [aux_sym_cmd_identifier_token6] = ACTIONS(1000), - [aux_sym_cmd_identifier_token7] = ACTIONS(1000), - [aux_sym_cmd_identifier_token8] = ACTIONS(1000), - [aux_sym_cmd_identifier_token9] = ACTIONS(1000), - [aux_sym_cmd_identifier_token10] = ACTIONS(1000), - [aux_sym_cmd_identifier_token11] = ACTIONS(1000), - [aux_sym_cmd_identifier_token12] = ACTIONS(1000), - [aux_sym_cmd_identifier_token13] = ACTIONS(1000), - [aux_sym_cmd_identifier_token14] = ACTIONS(1000), - [aux_sym_cmd_identifier_token15] = ACTIONS(1000), - [aux_sym_cmd_identifier_token16] = ACTIONS(1000), - [aux_sym_cmd_identifier_token17] = ACTIONS(1000), - [aux_sym_cmd_identifier_token18] = ACTIONS(1000), - [aux_sym_cmd_identifier_token19] = ACTIONS(1000), - [aux_sym_cmd_identifier_token20] = ACTIONS(1000), - [aux_sym_cmd_identifier_token21] = ACTIONS(1000), - [aux_sym_cmd_identifier_token22] = ACTIONS(1000), - [aux_sym_cmd_identifier_token23] = ACTIONS(1000), - [aux_sym_cmd_identifier_token24] = ACTIONS(1000), - [aux_sym_cmd_identifier_token25] = ACTIONS(1000), - [aux_sym_cmd_identifier_token26] = ACTIONS(1000), - [aux_sym_cmd_identifier_token27] = ACTIONS(1000), - [aux_sym_cmd_identifier_token28] = ACTIONS(1000), - [aux_sym_cmd_identifier_token29] = ACTIONS(1000), - [aux_sym_cmd_identifier_token30] = ACTIONS(1000), - [aux_sym_cmd_identifier_token31] = ACTIONS(1000), - [aux_sym_cmd_identifier_token32] = ACTIONS(1000), - [aux_sym_cmd_identifier_token33] = ACTIONS(1000), - [aux_sym_cmd_identifier_token34] = ACTIONS(1000), - [aux_sym_cmd_identifier_token35] = ACTIONS(1000), - [aux_sym_cmd_identifier_token36] = ACTIONS(1000), - [aux_sym_cmd_identifier_token37] = ACTIONS(1000), - [aux_sym_cmd_identifier_token38] = ACTIONS(1000), - [aux_sym_cmd_identifier_token39] = ACTIONS(1000), - [aux_sym_cmd_identifier_token40] = ACTIONS(1000), - [anon_sym_def] = ACTIONS(1000), - [anon_sym_export_DASHenv] = ACTIONS(1000), - [anon_sym_extern] = ACTIONS(1000), - [anon_sym_module] = ACTIONS(1000), - [anon_sym_use] = ACTIONS(1000), - [anon_sym_LPAREN] = ACTIONS(1000), - [anon_sym_COMMA] = ACTIONS(1000), - [anon_sym_DOLLAR] = ACTIONS(1000), - [anon_sym_error] = ACTIONS(1000), - [anon_sym_DASH2] = ACTIONS(1000), - [anon_sym_break] = ACTIONS(1000), - [anon_sym_continue] = ACTIONS(1000), - [anon_sym_for] = ACTIONS(1000), - [anon_sym_in2] = ACTIONS(1000), - [anon_sym_loop] = ACTIONS(1000), - [anon_sym_make] = ACTIONS(1000), - [anon_sym_while] = ACTIONS(1000), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_if] = ACTIONS(1000), - [anon_sym_else] = ACTIONS(1000), - [anon_sym_match] = ACTIONS(1000), - [anon_sym_RBRACE] = ACTIONS(1000), - [anon_sym_try] = ACTIONS(1000), - [anon_sym_catch] = ACTIONS(1000), - [anon_sym_return] = ACTIONS(1000), - [anon_sym_source] = ACTIONS(1000), - [anon_sym_source_DASHenv] = ACTIONS(1000), - [anon_sym_register] = ACTIONS(1000), - [anon_sym_hide] = ACTIONS(1000), - [anon_sym_hide_DASHenv] = ACTIONS(1000), - [anon_sym_overlay] = ACTIONS(1000), - [anon_sym_as] = ACTIONS(1000), - [anon_sym_PLUS2] = ACTIONS(1000), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1000), - [anon_sym_DOT_DOT2] = ACTIONS(1000), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1002), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1002), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1000), - [aux_sym__val_number_decimal_token1] = ACTIONS(1000), - [aux_sym__val_number_decimal_token2] = ACTIONS(1000), - [aux_sym__val_number_decimal_token3] = ACTIONS(1000), - [aux_sym__val_number_decimal_token4] = ACTIONS(1000), - [aux_sym__val_number_token1] = ACTIONS(1000), - [aux_sym__val_number_token2] = ACTIONS(1000), - [aux_sym__val_number_token3] = ACTIONS(1000), - [aux_sym__val_number_token4] = ACTIONS(1000), - [aux_sym__val_number_token5] = ACTIONS(1000), - [aux_sym__val_number_token6] = ACTIONS(1000), - [anon_sym_DQUOTE] = ACTIONS(1000), - [sym__str_single_quotes] = ACTIONS(1000), - [sym__str_back_ticks] = ACTIONS(1000), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1000), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1000), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1000), - [sym__entry_separator] = ACTIONS(1002), + [anon_sym_export] = ACTIONS(1977), + [anon_sym_alias] = ACTIONS(1977), + [anon_sym_let] = ACTIONS(1977), + [anon_sym_let_DASHenv] = ACTIONS(1977), + [anon_sym_mut] = ACTIONS(1977), + [anon_sym_const] = ACTIONS(1977), + [aux_sym_cmd_identifier_token1] = ACTIONS(1977), + [aux_sym_cmd_identifier_token2] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1977), + [aux_sym_cmd_identifier_token4] = ACTIONS(1977), + [aux_sym_cmd_identifier_token5] = ACTIONS(1977), + [aux_sym_cmd_identifier_token6] = ACTIONS(1977), + [aux_sym_cmd_identifier_token7] = ACTIONS(1977), + [aux_sym_cmd_identifier_token8] = ACTIONS(1977), + [aux_sym_cmd_identifier_token9] = ACTIONS(1977), + [aux_sym_cmd_identifier_token10] = ACTIONS(1977), + [aux_sym_cmd_identifier_token11] = ACTIONS(1977), + [aux_sym_cmd_identifier_token12] = ACTIONS(1977), + [aux_sym_cmd_identifier_token13] = ACTIONS(1977), + [aux_sym_cmd_identifier_token14] = ACTIONS(1977), + [aux_sym_cmd_identifier_token15] = ACTIONS(1977), + [aux_sym_cmd_identifier_token16] = ACTIONS(1977), + [aux_sym_cmd_identifier_token17] = ACTIONS(1977), + [aux_sym_cmd_identifier_token18] = ACTIONS(1977), + [aux_sym_cmd_identifier_token19] = ACTIONS(1977), + [aux_sym_cmd_identifier_token20] = ACTIONS(1977), + [aux_sym_cmd_identifier_token21] = ACTIONS(1977), + [aux_sym_cmd_identifier_token22] = ACTIONS(1977), + [aux_sym_cmd_identifier_token23] = ACTIONS(1977), + [aux_sym_cmd_identifier_token24] = ACTIONS(1977), + [aux_sym_cmd_identifier_token25] = ACTIONS(1977), + [aux_sym_cmd_identifier_token26] = ACTIONS(1977), + [aux_sym_cmd_identifier_token27] = ACTIONS(1977), + [aux_sym_cmd_identifier_token28] = ACTIONS(1977), + [aux_sym_cmd_identifier_token29] = ACTIONS(1977), + [aux_sym_cmd_identifier_token30] = ACTIONS(1977), + [aux_sym_cmd_identifier_token31] = ACTIONS(1977), + [aux_sym_cmd_identifier_token32] = ACTIONS(1977), + [aux_sym_cmd_identifier_token33] = ACTIONS(1977), + [aux_sym_cmd_identifier_token34] = ACTIONS(1977), + [aux_sym_cmd_identifier_token35] = ACTIONS(1977), + [aux_sym_cmd_identifier_token36] = ACTIONS(1977), + [aux_sym_cmd_identifier_token37] = ACTIONS(1977), + [aux_sym_cmd_identifier_token38] = ACTIONS(1977), + [aux_sym_cmd_identifier_token39] = ACTIONS(1977), + [aux_sym_cmd_identifier_token40] = ACTIONS(1977), + [anon_sym_def] = ACTIONS(1977), + [anon_sym_export_DASHenv] = ACTIONS(1977), + [anon_sym_extern] = ACTIONS(1977), + [anon_sym_module] = ACTIONS(1977), + [anon_sym_use] = ACTIONS(1977), + [anon_sym_LPAREN] = ACTIONS(1977), + [anon_sym_COMMA] = ACTIONS(1977), + [anon_sym_DOLLAR] = ACTIONS(1977), + [anon_sym_error] = ACTIONS(1977), + [anon_sym_DASH2] = ACTIONS(1977), + [anon_sym_break] = ACTIONS(1977), + [anon_sym_continue] = ACTIONS(1977), + [anon_sym_for] = ACTIONS(1977), + [anon_sym_in2] = ACTIONS(1977), + [anon_sym_loop] = ACTIONS(1977), + [anon_sym_make] = ACTIONS(1977), + [anon_sym_while] = ACTIONS(1977), + [anon_sym_do] = ACTIONS(1977), + [anon_sym_if] = ACTIONS(1977), + [anon_sym_else] = ACTIONS(1977), + [anon_sym_match] = ACTIONS(1977), + [anon_sym_RBRACE] = ACTIONS(1977), + [anon_sym_try] = ACTIONS(1977), + [anon_sym_catch] = ACTIONS(1977), + [anon_sym_return] = ACTIONS(1977), + [anon_sym_source] = ACTIONS(1977), + [anon_sym_source_DASHenv] = ACTIONS(1977), + [anon_sym_hide] = ACTIONS(1977), + [anon_sym_hide_DASHenv] = ACTIONS(1977), + [anon_sym_overlay] = ACTIONS(1977), + [anon_sym_as] = ACTIONS(1977), + [anon_sym_PLUS2] = ACTIONS(1977), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1977), + [anon_sym_DOT_DOT2] = ACTIONS(1979), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1981), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1981), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1977), + [aux_sym__val_number_decimal_token1] = ACTIONS(1977), + [aux_sym__val_number_decimal_token2] = ACTIONS(1977), + [aux_sym__val_number_decimal_token3] = ACTIONS(1977), + [aux_sym__val_number_decimal_token4] = ACTIONS(1977), + [aux_sym__val_number_token1] = ACTIONS(1977), + [aux_sym__val_number_token2] = ACTIONS(1977), + [aux_sym__val_number_token3] = ACTIONS(1977), + [aux_sym__val_number_token4] = ACTIONS(1977), + [aux_sym__val_number_token5] = ACTIONS(1977), + [aux_sym__val_number_token6] = ACTIONS(1977), + [anon_sym_DQUOTE] = ACTIONS(1977), + [sym__str_single_quotes] = ACTIONS(1977), + [sym__str_back_ticks] = ACTIONS(1977), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1977), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1977), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1977), + [sym__entry_separator] = ACTIONS(1983), + [anon_sym_register] = ACTIONS(1977), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1002), + [sym_raw_string_begin] = ACTIONS(1983), }, - [453] = { - [sym_cell_path] = STATE(721), - [sym_path] = STATE(587), - [sym_comment] = STATE(453), - [aux_sym_cell_path_repeat1] = STATE(446), - [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(1915), - [aux_sym_cmd_identifier_token3] = ACTIONS(1915), - [aux_sym_cmd_identifier_token4] = ACTIONS(1915), - [aux_sym_cmd_identifier_token5] = ACTIONS(1915), - [aux_sym_cmd_identifier_token6] = ACTIONS(1915), - [aux_sym_cmd_identifier_token7] = ACTIONS(1915), - [aux_sym_cmd_identifier_token8] = ACTIONS(1913), - [aux_sym_cmd_identifier_token9] = ACTIONS(1913), - [aux_sym_cmd_identifier_token10] = ACTIONS(1915), - [aux_sym_cmd_identifier_token11] = ACTIONS(1915), - [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(1915), - [aux_sym_cmd_identifier_token17] = ACTIONS(1915), - [aux_sym_cmd_identifier_token18] = ACTIONS(1915), - [aux_sym_cmd_identifier_token19] = ACTIONS(1915), - [aux_sym_cmd_identifier_token20] = ACTIONS(1915), - [aux_sym_cmd_identifier_token21] = ACTIONS(1915), - [aux_sym_cmd_identifier_token22] = ACTIONS(1915), - [aux_sym_cmd_identifier_token23] = ACTIONS(1915), - [aux_sym_cmd_identifier_token24] = ACTIONS(1915), - [aux_sym_cmd_identifier_token25] = ACTIONS(1915), - [aux_sym_cmd_identifier_token26] = ACTIONS(1915), - [aux_sym_cmd_identifier_token27] = ACTIONS(1915), - [aux_sym_cmd_identifier_token28] = ACTIONS(1915), - [aux_sym_cmd_identifier_token29] = ACTIONS(1915), - [aux_sym_cmd_identifier_token30] = ACTIONS(1915), - [aux_sym_cmd_identifier_token31] = ACTIONS(1915), - [aux_sym_cmd_identifier_token32] = ACTIONS(1915), - [aux_sym_cmd_identifier_token33] = ACTIONS(1915), - [aux_sym_cmd_identifier_token34] = ACTIONS(1913), - [aux_sym_cmd_identifier_token35] = ACTIONS(1915), - [aux_sym_cmd_identifier_token36] = ACTIONS(1915), - [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1915), - [anon_sym_DOLLAR] = ACTIONS(1913), - [anon_sym_error] = ACTIONS(1913), - [anon_sym_DASH2] = ACTIONS(1913), - [anon_sym_break] = ACTIONS(1913), - [anon_sym_continue] = ACTIONS(1913), - [anon_sym_for] = ACTIONS(1913), - [anon_sym_in2] = 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_as] = ACTIONS(1913), - [anon_sym_PLUS2] = ACTIONS(1913), - [anon_sym_DOT_DOT_DOT_LPAREN] = 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), - [aux_sym__val_number_decimal_token3] = ACTIONS(1915), - [aux_sym__val_number_decimal_token4] = ACTIONS(1915), - [aux_sym__val_number_token1] = ACTIONS(1915), - [aux_sym__val_number_token2] = ACTIONS(1915), - [aux_sym__val_number_token3] = ACTIONS(1915), - [aux_sym__val_number_token4] = ACTIONS(1913), - [aux_sym__val_number_token5] = ACTIONS(1913), - [aux_sym__val_number_token6] = ACTIONS(1913), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1915), - [anon_sym_DOT2] = ACTIONS(1973), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1915), + [450] = { + [sym_cell_path] = STATE(715), + [sym_path] = STATE(565), + [sym_comment] = STATE(450), + [aux_sym_cell_path_repeat1] = STATE(484), + [anon_sym_export] = ACTIONS(1901), + [anon_sym_alias] = ACTIONS(1901), + [anon_sym_let] = ACTIONS(1901), + [anon_sym_let_DASHenv] = ACTIONS(1901), + [anon_sym_mut] = ACTIONS(1901), + [anon_sym_const] = ACTIONS(1901), + [aux_sym_cmd_identifier_token1] = ACTIONS(1901), + [aux_sym_cmd_identifier_token2] = ACTIONS(1903), + [aux_sym_cmd_identifier_token3] = ACTIONS(1903), + [aux_sym_cmd_identifier_token4] = ACTIONS(1903), + [aux_sym_cmd_identifier_token5] = ACTIONS(1903), + [aux_sym_cmd_identifier_token6] = ACTIONS(1903), + [aux_sym_cmd_identifier_token7] = ACTIONS(1903), + [aux_sym_cmd_identifier_token8] = ACTIONS(1901), + [aux_sym_cmd_identifier_token9] = ACTIONS(1901), + [aux_sym_cmd_identifier_token10] = ACTIONS(1903), + [aux_sym_cmd_identifier_token11] = ACTIONS(1903), + [aux_sym_cmd_identifier_token12] = ACTIONS(1901), + [aux_sym_cmd_identifier_token13] = ACTIONS(1901), + [aux_sym_cmd_identifier_token14] = ACTIONS(1901), + [aux_sym_cmd_identifier_token15] = ACTIONS(1901), + [aux_sym_cmd_identifier_token16] = ACTIONS(1903), + [aux_sym_cmd_identifier_token17] = ACTIONS(1903), + [aux_sym_cmd_identifier_token18] = ACTIONS(1903), + [aux_sym_cmd_identifier_token19] = ACTIONS(1903), + [aux_sym_cmd_identifier_token20] = ACTIONS(1903), + [aux_sym_cmd_identifier_token21] = ACTIONS(1903), + [aux_sym_cmd_identifier_token22] = ACTIONS(1903), + [aux_sym_cmd_identifier_token23] = ACTIONS(1903), + [aux_sym_cmd_identifier_token24] = ACTIONS(1903), + [aux_sym_cmd_identifier_token25] = ACTIONS(1903), + [aux_sym_cmd_identifier_token26] = ACTIONS(1903), + [aux_sym_cmd_identifier_token27] = ACTIONS(1903), + [aux_sym_cmd_identifier_token28] = ACTIONS(1903), + [aux_sym_cmd_identifier_token29] = ACTIONS(1903), + [aux_sym_cmd_identifier_token30] = ACTIONS(1903), + [aux_sym_cmd_identifier_token31] = ACTIONS(1903), + [aux_sym_cmd_identifier_token32] = ACTIONS(1903), + [aux_sym_cmd_identifier_token33] = ACTIONS(1903), + [aux_sym_cmd_identifier_token34] = ACTIONS(1901), + [aux_sym_cmd_identifier_token35] = ACTIONS(1903), + [aux_sym_cmd_identifier_token36] = ACTIONS(1903), + [aux_sym_cmd_identifier_token37] = ACTIONS(1903), + [aux_sym_cmd_identifier_token38] = ACTIONS(1901), + [aux_sym_cmd_identifier_token39] = ACTIONS(1903), + [aux_sym_cmd_identifier_token40] = ACTIONS(1903), + [anon_sym_def] = ACTIONS(1901), + [anon_sym_export_DASHenv] = ACTIONS(1901), + [anon_sym_extern] = ACTIONS(1901), + [anon_sym_module] = ACTIONS(1901), + [anon_sym_use] = ACTIONS(1901), + [anon_sym_LPAREN] = ACTIONS(1903), + [anon_sym_COMMA] = ACTIONS(1903), + [anon_sym_DOLLAR] = ACTIONS(1901), + [anon_sym_error] = ACTIONS(1901), + [anon_sym_DASH2] = ACTIONS(1901), + [anon_sym_break] = ACTIONS(1901), + [anon_sym_continue] = ACTIONS(1901), + [anon_sym_for] = ACTIONS(1901), + [anon_sym_in2] = ACTIONS(1901), + [anon_sym_loop] = ACTIONS(1901), + [anon_sym_make] = ACTIONS(1901), + [anon_sym_while] = ACTIONS(1901), + [anon_sym_do] = ACTIONS(1901), + [anon_sym_if] = ACTIONS(1901), + [anon_sym_else] = ACTIONS(1901), + [anon_sym_match] = ACTIONS(1901), + [anon_sym_RBRACE] = ACTIONS(1903), + [anon_sym_try] = ACTIONS(1901), + [anon_sym_catch] = ACTIONS(1901), + [anon_sym_return] = ACTIONS(1901), + [anon_sym_source] = ACTIONS(1901), + [anon_sym_source_DASHenv] = ACTIONS(1901), + [anon_sym_hide] = ACTIONS(1901), + [anon_sym_hide_DASHenv] = ACTIONS(1901), + [anon_sym_overlay] = ACTIONS(1901), + [anon_sym_as] = ACTIONS(1901), + [anon_sym_PLUS2] = ACTIONS(1901), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1903), + [aux_sym__val_number_decimal_token1] = ACTIONS(1901), + [aux_sym__val_number_decimal_token2] = ACTIONS(1903), + [aux_sym__val_number_decimal_token3] = ACTIONS(1903), + [aux_sym__val_number_decimal_token4] = ACTIONS(1903), + [aux_sym__val_number_token1] = ACTIONS(1903), + [aux_sym__val_number_token2] = ACTIONS(1903), + [aux_sym__val_number_token3] = ACTIONS(1903), + [aux_sym__val_number_token4] = ACTIONS(1901), + [aux_sym__val_number_token5] = ACTIONS(1901), + [aux_sym__val_number_token6] = ACTIONS(1901), + [anon_sym_DQUOTE] = ACTIONS(1903), + [sym__str_single_quotes] = ACTIONS(1903), + [sym__str_back_ticks] = ACTIONS(1903), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1903), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1903), + [anon_sym_register] = ACTIONS(1901), + [anon_sym_DOT2] = ACTIONS(1921), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1903), }, - [454] = { - [sym_cell_path] = STATE(722), - [sym_path] = STATE(587), - [sym_comment] = STATE(454), - [aux_sym_cell_path_repeat1] = STATE(446), + [451] = { + [sym_cell_path] = STATE(697), + [sym_path] = STATE(565), + [sym_comment] = STATE(451), + [aux_sym_cell_path_repeat1] = STATE(484), [anon_sym_export] = ACTIONS(1917), [anon_sym_alias] = ACTIONS(1917), [anon_sym_let] = ACTIONS(1917), @@ -131638,7 +131257,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(1917), [anon_sym_source] = ACTIONS(1917), [anon_sym_source_DASHenv] = ACTIONS(1917), - [anon_sym_register] = ACTIONS(1917), [anon_sym_hide] = ACTIONS(1917), [anon_sym_hide_DASHenv] = ACTIONS(1917), [anon_sym_overlay] = ACTIONS(1917), @@ -131662,757 +131280,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1919), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1919), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1919), - [anon_sym_DOT2] = ACTIONS(1973), - [anon_sym_POUND] = ACTIONS(251), + [anon_sym_register] = ACTIONS(1917), + [anon_sym_DOT2] = ACTIONS(1921), + [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1919), }, - [455] = { - [sym_path] = STATE(569), - [sym_comment] = STATE(455), - [aux_sym_cell_path_repeat1] = STATE(455), - [anon_sym_export] = ACTIONS(953), - [anon_sym_alias] = ACTIONS(953), - [anon_sym_let] = ACTIONS(953), - [anon_sym_let_DASHenv] = ACTIONS(953), - [anon_sym_mut] = ACTIONS(953), - [anon_sym_const] = ACTIONS(953), - [aux_sym_cmd_identifier_token1] = ACTIONS(953), - [aux_sym_cmd_identifier_token2] = ACTIONS(953), - [aux_sym_cmd_identifier_token3] = ACTIONS(953), - [aux_sym_cmd_identifier_token4] = ACTIONS(953), - [aux_sym_cmd_identifier_token5] = ACTIONS(953), - [aux_sym_cmd_identifier_token6] = ACTIONS(953), - [aux_sym_cmd_identifier_token7] = ACTIONS(953), - [aux_sym_cmd_identifier_token8] = ACTIONS(953), - [aux_sym_cmd_identifier_token9] = ACTIONS(953), - [aux_sym_cmd_identifier_token10] = ACTIONS(953), - [aux_sym_cmd_identifier_token11] = ACTIONS(953), - [aux_sym_cmd_identifier_token12] = ACTIONS(953), - [aux_sym_cmd_identifier_token13] = ACTIONS(953), - [aux_sym_cmd_identifier_token14] = ACTIONS(953), - [aux_sym_cmd_identifier_token15] = ACTIONS(953), - [aux_sym_cmd_identifier_token16] = ACTIONS(953), - [aux_sym_cmd_identifier_token17] = ACTIONS(953), - [aux_sym_cmd_identifier_token18] = ACTIONS(953), - [aux_sym_cmd_identifier_token19] = ACTIONS(953), - [aux_sym_cmd_identifier_token20] = ACTIONS(953), - [aux_sym_cmd_identifier_token21] = ACTIONS(953), - [aux_sym_cmd_identifier_token22] = ACTIONS(953), - [aux_sym_cmd_identifier_token23] = ACTIONS(953), - [aux_sym_cmd_identifier_token24] = ACTIONS(953), - [aux_sym_cmd_identifier_token25] = ACTIONS(953), - [aux_sym_cmd_identifier_token26] = ACTIONS(953), - [aux_sym_cmd_identifier_token27] = ACTIONS(953), - [aux_sym_cmd_identifier_token28] = ACTIONS(953), - [aux_sym_cmd_identifier_token29] = ACTIONS(953), - [aux_sym_cmd_identifier_token30] = ACTIONS(953), - [aux_sym_cmd_identifier_token31] = ACTIONS(953), - [aux_sym_cmd_identifier_token32] = ACTIONS(953), - [aux_sym_cmd_identifier_token33] = ACTIONS(953), - [aux_sym_cmd_identifier_token34] = ACTIONS(953), - [aux_sym_cmd_identifier_token35] = ACTIONS(953), - [aux_sym_cmd_identifier_token36] = ACTIONS(953), - [aux_sym_cmd_identifier_token37] = ACTIONS(953), - [aux_sym_cmd_identifier_token38] = ACTIONS(953), - [aux_sym_cmd_identifier_token39] = ACTIONS(953), - [aux_sym_cmd_identifier_token40] = ACTIONS(953), - [anon_sym_def] = ACTIONS(953), - [anon_sym_export_DASHenv] = ACTIONS(953), - [anon_sym_extern] = ACTIONS(953), - [anon_sym_module] = ACTIONS(953), - [anon_sym_use] = ACTIONS(953), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(953), - [anon_sym_DOLLAR] = ACTIONS(953), - [anon_sym_error] = ACTIONS(953), - [anon_sym_DASH2] = ACTIONS(953), - [anon_sym_break] = ACTIONS(953), - [anon_sym_continue] = ACTIONS(953), - [anon_sym_for] = ACTIONS(953), - [anon_sym_in2] = ACTIONS(953), - [anon_sym_loop] = ACTIONS(953), - [anon_sym_make] = ACTIONS(953), - [anon_sym_while] = ACTIONS(953), - [anon_sym_do] = ACTIONS(953), - [anon_sym_if] = ACTIONS(953), - [anon_sym_else] = ACTIONS(953), - [anon_sym_match] = ACTIONS(953), - [anon_sym_RBRACE] = ACTIONS(953), - [anon_sym_try] = ACTIONS(953), - [anon_sym_catch] = ACTIONS(953), - [anon_sym_return] = ACTIONS(953), - [anon_sym_source] = ACTIONS(953), - [anon_sym_source_DASHenv] = ACTIONS(953), - [anon_sym_register] = ACTIONS(953), - [anon_sym_hide] = ACTIONS(953), - [anon_sym_hide_DASHenv] = ACTIONS(953), - [anon_sym_overlay] = ACTIONS(953), - [anon_sym_as] = ACTIONS(953), - [anon_sym_PLUS2] = ACTIONS(953), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(953), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(953), - [aux_sym__val_number_decimal_token1] = ACTIONS(953), - [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), - [aux_sym__val_number_token4] = ACTIONS(953), - [aux_sym__val_number_token5] = ACTIONS(953), - [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(953), - [sym__entry_separator] = ACTIONS(955), - [anon_sym_DOT2] = ACTIONS(2004), + [452] = { + [sym_comment] = STATE(452), + [anon_sym_export] = ACTIONS(1985), + [anon_sym_alias] = ACTIONS(1985), + [anon_sym_let] = ACTIONS(1985), + [anon_sym_let_DASHenv] = ACTIONS(1985), + [anon_sym_mut] = ACTIONS(1985), + [anon_sym_const] = ACTIONS(1985), + [aux_sym_cmd_identifier_token1] = ACTIONS(1985), + [aux_sym_cmd_identifier_token2] = ACTIONS(1985), + [aux_sym_cmd_identifier_token3] = ACTIONS(1985), + [aux_sym_cmd_identifier_token4] = ACTIONS(1985), + [aux_sym_cmd_identifier_token5] = ACTIONS(1985), + [aux_sym_cmd_identifier_token6] = ACTIONS(1985), + [aux_sym_cmd_identifier_token7] = ACTIONS(1985), + [aux_sym_cmd_identifier_token8] = ACTIONS(1985), + [aux_sym_cmd_identifier_token9] = ACTIONS(1985), + [aux_sym_cmd_identifier_token10] = ACTIONS(1985), + [aux_sym_cmd_identifier_token11] = ACTIONS(1985), + [aux_sym_cmd_identifier_token12] = ACTIONS(1985), + [aux_sym_cmd_identifier_token13] = ACTIONS(1985), + [aux_sym_cmd_identifier_token14] = ACTIONS(1985), + [aux_sym_cmd_identifier_token15] = ACTIONS(1985), + [aux_sym_cmd_identifier_token16] = ACTIONS(1985), + [aux_sym_cmd_identifier_token17] = ACTIONS(1985), + [aux_sym_cmd_identifier_token18] = ACTIONS(1985), + [aux_sym_cmd_identifier_token19] = ACTIONS(1985), + [aux_sym_cmd_identifier_token20] = ACTIONS(1985), + [aux_sym_cmd_identifier_token21] = ACTIONS(1985), + [aux_sym_cmd_identifier_token22] = ACTIONS(1985), + [aux_sym_cmd_identifier_token23] = ACTIONS(1985), + [aux_sym_cmd_identifier_token24] = ACTIONS(1985), + [aux_sym_cmd_identifier_token25] = ACTIONS(1985), + [aux_sym_cmd_identifier_token26] = ACTIONS(1985), + [aux_sym_cmd_identifier_token27] = ACTIONS(1985), + [aux_sym_cmd_identifier_token28] = ACTIONS(1985), + [aux_sym_cmd_identifier_token29] = ACTIONS(1985), + [aux_sym_cmd_identifier_token30] = ACTIONS(1985), + [aux_sym_cmd_identifier_token31] = ACTIONS(1985), + [aux_sym_cmd_identifier_token32] = ACTIONS(1985), + [aux_sym_cmd_identifier_token33] = ACTIONS(1985), + [aux_sym_cmd_identifier_token34] = ACTIONS(1985), + [aux_sym_cmd_identifier_token35] = ACTIONS(1985), + [aux_sym_cmd_identifier_token36] = ACTIONS(1985), + [aux_sym_cmd_identifier_token37] = ACTIONS(1985), + [aux_sym_cmd_identifier_token38] = ACTIONS(1985), + [aux_sym_cmd_identifier_token39] = ACTIONS(1985), + [aux_sym_cmd_identifier_token40] = ACTIONS(1985), + [anon_sym_def] = ACTIONS(1985), + [anon_sym_export_DASHenv] = ACTIONS(1985), + [anon_sym_extern] = ACTIONS(1985), + [anon_sym_module] = ACTIONS(1985), + [anon_sym_use] = ACTIONS(1985), + [anon_sym_LPAREN] = ACTIONS(1985), + [anon_sym_COMMA] = ACTIONS(1985), + [anon_sym_DOLLAR] = ACTIONS(1985), + [anon_sym_error] = ACTIONS(1985), + [anon_sym_DASH2] = ACTIONS(1985), + [anon_sym_break] = ACTIONS(1985), + [anon_sym_continue] = ACTIONS(1985), + [anon_sym_for] = ACTIONS(1985), + [anon_sym_in2] = ACTIONS(1985), + [anon_sym_loop] = ACTIONS(1985), + [anon_sym_make] = ACTIONS(1985), + [anon_sym_while] = ACTIONS(1985), + [anon_sym_do] = ACTIONS(1985), + [anon_sym_if] = ACTIONS(1985), + [anon_sym_else] = ACTIONS(1985), + [anon_sym_match] = ACTIONS(1985), + [anon_sym_RBRACE] = ACTIONS(1985), + [anon_sym_try] = ACTIONS(1985), + [anon_sym_catch] = ACTIONS(1985), + [anon_sym_return] = ACTIONS(1985), + [anon_sym_source] = ACTIONS(1985), + [anon_sym_source_DASHenv] = ACTIONS(1985), + [anon_sym_hide] = ACTIONS(1985), + [anon_sym_hide_DASHenv] = ACTIONS(1985), + [anon_sym_overlay] = ACTIONS(1985), + [anon_sym_as] = ACTIONS(1985), + [anon_sym_PLUS2] = ACTIONS(1985), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1985), + [anon_sym_DOT_DOT2] = ACTIONS(1987), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1989), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1989), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1985), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1985), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(1985), + [aux_sym__val_number_token2] = ACTIONS(1985), + [aux_sym__val_number_token3] = ACTIONS(1985), + [aux_sym__val_number_token4] = ACTIONS(1985), + [aux_sym__val_number_token5] = ACTIONS(1985), + [aux_sym__val_number_token6] = ACTIONS(1985), + [anon_sym_DQUOTE] = ACTIONS(1985), + [sym__str_single_quotes] = ACTIONS(1985), + [sym__str_back_ticks] = ACTIONS(1985), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1985), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1985), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1985), + [sym__entry_separator] = ACTIONS(1991), + [anon_sym_register] = ACTIONS(1985), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(955), - }, - [456] = { - [sym_comment] = STATE(456), - [anon_sym_export] = ACTIONS(992), - [anon_sym_alias] = ACTIONS(992), - [anon_sym_let] = ACTIONS(992), - [anon_sym_let_DASHenv] = ACTIONS(992), - [anon_sym_mut] = ACTIONS(992), - [anon_sym_const] = ACTIONS(992), - [aux_sym_cmd_identifier_token1] = ACTIONS(992), - [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(992), - [aux_sym_cmd_identifier_token9] = ACTIONS(992), - [aux_sym_cmd_identifier_token10] = ACTIONS(994), - [aux_sym_cmd_identifier_token11] = ACTIONS(994), - [aux_sym_cmd_identifier_token12] = ACTIONS(992), - [aux_sym_cmd_identifier_token13] = ACTIONS(992), - [aux_sym_cmd_identifier_token14] = ACTIONS(992), - [aux_sym_cmd_identifier_token15] = ACTIONS(992), - [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(992), - [aux_sym_cmd_identifier_token35] = ACTIONS(994), - [aux_sym_cmd_identifier_token36] = ACTIONS(994), - [aux_sym_cmd_identifier_token37] = ACTIONS(994), - [aux_sym_cmd_identifier_token38] = ACTIONS(992), - [aux_sym_cmd_identifier_token39] = ACTIONS(994), - [aux_sym_cmd_identifier_token40] = ACTIONS(994), - [anon_sym_def] = ACTIONS(992), - [anon_sym_export_DASHenv] = ACTIONS(992), - [anon_sym_extern] = ACTIONS(992), - [anon_sym_module] = ACTIONS(992), - [anon_sym_use] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(994), - [anon_sym_COMMA] = ACTIONS(994), - [anon_sym_DOLLAR] = ACTIONS(992), - [anon_sym_error] = ACTIONS(992), - [anon_sym_DASH2] = ACTIONS(992), - [anon_sym_break] = ACTIONS(992), - [anon_sym_continue] = ACTIONS(992), - [anon_sym_for] = ACTIONS(992), - [anon_sym_in2] = ACTIONS(992), - [anon_sym_loop] = ACTIONS(992), - [anon_sym_make] = ACTIONS(992), - [anon_sym_while] = ACTIONS(992), - [anon_sym_do] = ACTIONS(992), - [anon_sym_if] = ACTIONS(992), - [anon_sym_else] = ACTIONS(992), - [anon_sym_match] = ACTIONS(992), - [anon_sym_RBRACE] = ACTIONS(994), - [anon_sym_try] = ACTIONS(992), - [anon_sym_catch] = ACTIONS(992), - [anon_sym_return] = ACTIONS(992), - [anon_sym_source] = ACTIONS(992), - [anon_sym_source_DASHenv] = ACTIONS(992), - [anon_sym_register] = ACTIONS(992), - [anon_sym_hide] = ACTIONS(992), - [anon_sym_hide_DASHenv] = ACTIONS(992), - [anon_sym_overlay] = ACTIONS(992), - [anon_sym_as] = ACTIONS(992), - [anon_sym_PLUS2] = ACTIONS(992), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(994), - [anon_sym_DOT_DOT2] = ACTIONS(992), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(994), - [anon_sym_DOT_DOT_LT2] = ACTIONS(994), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(994), - [aux_sym__val_number_decimal_token1] = ACTIONS(992), - [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), - [aux_sym__val_number_token4] = ACTIONS(992), - [aux_sym__val_number_token5] = ACTIONS(992), - [aux_sym__val_number_token6] = ACTIONS(992), - [anon_sym_DQUOTE] = ACTIONS(994), - [sym__str_single_quotes] = ACTIONS(994), - [sym__str_back_ticks] = ACTIONS(994), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(994), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(994), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(994), - [anon_sym_DOT2] = ACTIONS(992), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(994), - }, - [457] = { - [sym_comment] = STATE(457), - [anon_sym_export] = ACTIONS(988), - [anon_sym_alias] = ACTIONS(988), - [anon_sym_let] = ACTIONS(988), - [anon_sym_let_DASHenv] = ACTIONS(988), - [anon_sym_mut] = ACTIONS(988), - [anon_sym_const] = ACTIONS(988), - [aux_sym_cmd_identifier_token1] = ACTIONS(988), - [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(988), - [aux_sym_cmd_identifier_token9] = ACTIONS(988), - [aux_sym_cmd_identifier_token10] = ACTIONS(990), - [aux_sym_cmd_identifier_token11] = ACTIONS(990), - [aux_sym_cmd_identifier_token12] = ACTIONS(988), - [aux_sym_cmd_identifier_token13] = ACTIONS(988), - [aux_sym_cmd_identifier_token14] = ACTIONS(988), - [aux_sym_cmd_identifier_token15] = ACTIONS(988), - [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(988), - [aux_sym_cmd_identifier_token35] = ACTIONS(990), - [aux_sym_cmd_identifier_token36] = ACTIONS(990), - [aux_sym_cmd_identifier_token37] = ACTIONS(990), - [aux_sym_cmd_identifier_token38] = ACTIONS(988), - [aux_sym_cmd_identifier_token39] = ACTIONS(990), - [aux_sym_cmd_identifier_token40] = ACTIONS(990), - [anon_sym_def] = ACTIONS(988), - [anon_sym_export_DASHenv] = ACTIONS(988), - [anon_sym_extern] = ACTIONS(988), - [anon_sym_module] = ACTIONS(988), - [anon_sym_use] = ACTIONS(988), - [anon_sym_LPAREN] = ACTIONS(990), - [anon_sym_COMMA] = ACTIONS(990), - [anon_sym_DOLLAR] = ACTIONS(988), - [anon_sym_error] = ACTIONS(988), - [anon_sym_DASH2] = ACTIONS(988), - [anon_sym_break] = ACTIONS(988), - [anon_sym_continue] = ACTIONS(988), - [anon_sym_for] = ACTIONS(988), - [anon_sym_in2] = ACTIONS(988), - [anon_sym_loop] = ACTIONS(988), - [anon_sym_make] = ACTIONS(988), - [anon_sym_while] = ACTIONS(988), - [anon_sym_do] = ACTIONS(988), - [anon_sym_if] = ACTIONS(988), - [anon_sym_else] = ACTIONS(988), - [anon_sym_match] = ACTIONS(988), - [anon_sym_RBRACE] = ACTIONS(990), - [anon_sym_try] = ACTIONS(988), - [anon_sym_catch] = ACTIONS(988), - [anon_sym_return] = ACTIONS(988), - [anon_sym_source] = ACTIONS(988), - [anon_sym_source_DASHenv] = ACTIONS(988), - [anon_sym_register] = ACTIONS(988), - [anon_sym_hide] = ACTIONS(988), - [anon_sym_hide_DASHenv] = ACTIONS(988), - [anon_sym_overlay] = ACTIONS(988), - [anon_sym_as] = ACTIONS(988), - [anon_sym_PLUS2] = ACTIONS(988), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(990), - [anon_sym_DOT_DOT2] = ACTIONS(988), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(990), - [anon_sym_DOT_DOT_LT2] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(990), - [aux_sym__val_number_decimal_token1] = ACTIONS(988), - [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), - [aux_sym__val_number_token4] = ACTIONS(988), - [aux_sym__val_number_token5] = ACTIONS(988), - [aux_sym__val_number_token6] = ACTIONS(988), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym__str_single_quotes] = ACTIONS(990), - [sym__str_back_ticks] = ACTIONS(990), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(990), - [anon_sym_DOT2] = ACTIONS(988), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(990), - }, - [458] = { - [sym_cell_path] = STATE(723), - [sym_path] = STATE(587), - [sym_comment] = STATE(458), - [aux_sym_cell_path_repeat1] = STATE(446), - [anon_sym_export] = ACTIONS(1925), - [anon_sym_alias] = ACTIONS(1925), - [anon_sym_let] = ACTIONS(1925), - [anon_sym_let_DASHenv] = ACTIONS(1925), - [anon_sym_mut] = ACTIONS(1925), - [anon_sym_const] = ACTIONS(1925), - [aux_sym_cmd_identifier_token1] = ACTIONS(1925), - [aux_sym_cmd_identifier_token2] = ACTIONS(1927), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [aux_sym_cmd_identifier_token6] = ACTIONS(1927), - [aux_sym_cmd_identifier_token7] = ACTIONS(1927), - [aux_sym_cmd_identifier_token8] = ACTIONS(1925), - [aux_sym_cmd_identifier_token9] = ACTIONS(1925), - [aux_sym_cmd_identifier_token10] = ACTIONS(1927), - [aux_sym_cmd_identifier_token11] = ACTIONS(1927), - [aux_sym_cmd_identifier_token12] = ACTIONS(1925), - [aux_sym_cmd_identifier_token13] = ACTIONS(1925), - [aux_sym_cmd_identifier_token14] = ACTIONS(1925), - [aux_sym_cmd_identifier_token15] = ACTIONS(1925), - [aux_sym_cmd_identifier_token16] = ACTIONS(1927), - [aux_sym_cmd_identifier_token17] = ACTIONS(1927), - [aux_sym_cmd_identifier_token18] = ACTIONS(1927), - [aux_sym_cmd_identifier_token19] = ACTIONS(1927), - [aux_sym_cmd_identifier_token20] = ACTIONS(1927), - [aux_sym_cmd_identifier_token21] = ACTIONS(1927), - [aux_sym_cmd_identifier_token22] = ACTIONS(1927), - [aux_sym_cmd_identifier_token23] = ACTIONS(1927), - [aux_sym_cmd_identifier_token24] = ACTIONS(1927), - [aux_sym_cmd_identifier_token25] = ACTIONS(1927), - [aux_sym_cmd_identifier_token26] = ACTIONS(1927), - [aux_sym_cmd_identifier_token27] = ACTIONS(1927), - [aux_sym_cmd_identifier_token28] = ACTIONS(1927), - [aux_sym_cmd_identifier_token29] = ACTIONS(1927), - [aux_sym_cmd_identifier_token30] = ACTIONS(1927), - [aux_sym_cmd_identifier_token31] = ACTIONS(1927), - [aux_sym_cmd_identifier_token32] = ACTIONS(1927), - [aux_sym_cmd_identifier_token33] = ACTIONS(1927), - [aux_sym_cmd_identifier_token34] = ACTIONS(1925), - [aux_sym_cmd_identifier_token35] = ACTIONS(1927), - [aux_sym_cmd_identifier_token36] = ACTIONS(1927), - [aux_sym_cmd_identifier_token37] = ACTIONS(1927), - [aux_sym_cmd_identifier_token38] = ACTIONS(1925), - [aux_sym_cmd_identifier_token39] = ACTIONS(1927), - [aux_sym_cmd_identifier_token40] = ACTIONS(1927), - [anon_sym_def] = ACTIONS(1925), - [anon_sym_export_DASHenv] = ACTIONS(1925), - [anon_sym_extern] = ACTIONS(1925), - [anon_sym_module] = ACTIONS(1925), - [anon_sym_use] = ACTIONS(1925), - [anon_sym_LPAREN] = ACTIONS(1927), - [anon_sym_COMMA] = ACTIONS(1927), - [anon_sym_DOLLAR] = ACTIONS(1925), - [anon_sym_error] = ACTIONS(1925), - [anon_sym_DASH2] = ACTIONS(1925), - [anon_sym_break] = ACTIONS(1925), - [anon_sym_continue] = ACTIONS(1925), - [anon_sym_for] = ACTIONS(1925), - [anon_sym_in2] = ACTIONS(1925), - [anon_sym_loop] = ACTIONS(1925), - [anon_sym_make] = ACTIONS(1925), - [anon_sym_while] = ACTIONS(1925), - [anon_sym_do] = ACTIONS(1925), - [anon_sym_if] = ACTIONS(1925), - [anon_sym_else] = ACTIONS(1925), - [anon_sym_match] = ACTIONS(1925), - [anon_sym_RBRACE] = ACTIONS(1927), - [anon_sym_try] = ACTIONS(1925), - [anon_sym_catch] = ACTIONS(1925), - [anon_sym_return] = ACTIONS(1925), - [anon_sym_source] = ACTIONS(1925), - [anon_sym_source_DASHenv] = ACTIONS(1925), - [anon_sym_register] = ACTIONS(1925), - [anon_sym_hide] = ACTIONS(1925), - [anon_sym_hide_DASHenv] = ACTIONS(1925), - [anon_sym_overlay] = ACTIONS(1925), - [anon_sym_as] = ACTIONS(1925), - [anon_sym_PLUS2] = ACTIONS(1925), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1927), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1927), - [aux_sym__val_number_decimal_token1] = ACTIONS(1925), - [aux_sym__val_number_decimal_token2] = ACTIONS(1927), - [aux_sym__val_number_decimal_token3] = ACTIONS(1927), - [aux_sym__val_number_decimal_token4] = ACTIONS(1927), - [aux_sym__val_number_token1] = ACTIONS(1927), - [aux_sym__val_number_token2] = ACTIONS(1927), - [aux_sym__val_number_token3] = ACTIONS(1927), - [aux_sym__val_number_token4] = ACTIONS(1925), - [aux_sym__val_number_token5] = ACTIONS(1925), - [aux_sym__val_number_token6] = ACTIONS(1925), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1927), - [anon_sym_DOT2] = ACTIONS(1973), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1927), - }, - [459] = { - [sym_cell_path] = STATE(724), - [sym_path] = STATE(587), - [sym_comment] = STATE(459), - [aux_sym_cell_path_repeat1] = STATE(446), - [anon_sym_export] = ACTIONS(1929), - [anon_sym_alias] = ACTIONS(1929), - [anon_sym_let] = ACTIONS(1929), - [anon_sym_let_DASHenv] = ACTIONS(1929), - [anon_sym_mut] = ACTIONS(1929), - [anon_sym_const] = ACTIONS(1929), - [aux_sym_cmd_identifier_token1] = ACTIONS(1929), - [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(1929), - [aux_sym_cmd_identifier_token9] = ACTIONS(1929), - [aux_sym_cmd_identifier_token10] = ACTIONS(1931), - [aux_sym_cmd_identifier_token11] = ACTIONS(1931), - [aux_sym_cmd_identifier_token12] = ACTIONS(1929), - [aux_sym_cmd_identifier_token13] = ACTIONS(1929), - [aux_sym_cmd_identifier_token14] = ACTIONS(1929), - [aux_sym_cmd_identifier_token15] = ACTIONS(1929), - [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(1929), - [aux_sym_cmd_identifier_token35] = ACTIONS(1931), - [aux_sym_cmd_identifier_token36] = ACTIONS(1931), - [aux_sym_cmd_identifier_token37] = ACTIONS(1931), - [aux_sym_cmd_identifier_token38] = ACTIONS(1929), - [aux_sym_cmd_identifier_token39] = ACTIONS(1931), - [aux_sym_cmd_identifier_token40] = ACTIONS(1931), - [anon_sym_def] = ACTIONS(1929), - [anon_sym_export_DASHenv] = ACTIONS(1929), - [anon_sym_extern] = ACTIONS(1929), - [anon_sym_module] = ACTIONS(1929), - [anon_sym_use] = ACTIONS(1929), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_COMMA] = ACTIONS(1931), - [anon_sym_DOLLAR] = ACTIONS(1929), - [anon_sym_error] = ACTIONS(1929), - [anon_sym_DASH2] = ACTIONS(1929), - [anon_sym_break] = ACTIONS(1929), - [anon_sym_continue] = ACTIONS(1929), - [anon_sym_for] = ACTIONS(1929), - [anon_sym_in2] = ACTIONS(1929), - [anon_sym_loop] = ACTIONS(1929), - [anon_sym_make] = ACTIONS(1929), - [anon_sym_while] = ACTIONS(1929), - [anon_sym_do] = ACTIONS(1929), - [anon_sym_if] = ACTIONS(1929), - [anon_sym_else] = ACTIONS(1929), - [anon_sym_match] = ACTIONS(1929), - [anon_sym_RBRACE] = ACTIONS(1931), - [anon_sym_try] = ACTIONS(1929), - [anon_sym_catch] = ACTIONS(1929), - [anon_sym_return] = ACTIONS(1929), - [anon_sym_source] = ACTIONS(1929), - [anon_sym_source_DASHenv] = ACTIONS(1929), - [anon_sym_register] = ACTIONS(1929), - [anon_sym_hide] = ACTIONS(1929), - [anon_sym_hide_DASHenv] = ACTIONS(1929), - [anon_sym_overlay] = ACTIONS(1929), - [anon_sym_as] = ACTIONS(1929), - [anon_sym_PLUS2] = ACTIONS(1929), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1931), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1931), - [aux_sym__val_number_decimal_token1] = ACTIONS(1929), - [aux_sym__val_number_decimal_token2] = ACTIONS(1931), - [aux_sym__val_number_decimal_token3] = ACTIONS(1931), - [aux_sym__val_number_decimal_token4] = ACTIONS(1931), - [aux_sym__val_number_token1] = ACTIONS(1931), - [aux_sym__val_number_token2] = ACTIONS(1931), - [aux_sym__val_number_token3] = ACTIONS(1931), - [aux_sym__val_number_token4] = ACTIONS(1929), - [aux_sym__val_number_token5] = ACTIONS(1929), - [aux_sym__val_number_token6] = ACTIONS(1929), - [anon_sym_DQUOTE] = ACTIONS(1931), - [sym__str_single_quotes] = ACTIONS(1931), - [sym__str_back_ticks] = ACTIONS(1931), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1931), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1931), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1931), - [anon_sym_DOT2] = ACTIONS(1973), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1931), - }, - [460] = { - [sym_cell_path] = STATE(725), - [sym_path] = STATE(587), - [sym_comment] = STATE(460), - [aux_sym_cell_path_repeat1] = STATE(446), - [anon_sym_export] = ACTIONS(1933), - [anon_sym_alias] = ACTIONS(1933), - [anon_sym_let] = ACTIONS(1933), - [anon_sym_let_DASHenv] = ACTIONS(1933), - [anon_sym_mut] = ACTIONS(1933), - [anon_sym_const] = ACTIONS(1933), - [aux_sym_cmd_identifier_token1] = ACTIONS(1933), - [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(1933), - [aux_sym_cmd_identifier_token9] = ACTIONS(1933), - [aux_sym_cmd_identifier_token10] = ACTIONS(1935), - [aux_sym_cmd_identifier_token11] = ACTIONS(1935), - [aux_sym_cmd_identifier_token12] = ACTIONS(1933), - [aux_sym_cmd_identifier_token13] = ACTIONS(1933), - [aux_sym_cmd_identifier_token14] = ACTIONS(1933), - [aux_sym_cmd_identifier_token15] = ACTIONS(1933), - [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(1933), - [aux_sym_cmd_identifier_token35] = ACTIONS(1935), - [aux_sym_cmd_identifier_token36] = ACTIONS(1935), - [aux_sym_cmd_identifier_token37] = ACTIONS(1935), - [aux_sym_cmd_identifier_token38] = ACTIONS(1933), - [aux_sym_cmd_identifier_token39] = ACTIONS(1935), - [aux_sym_cmd_identifier_token40] = ACTIONS(1935), - [anon_sym_def] = ACTIONS(1933), - [anon_sym_export_DASHenv] = ACTIONS(1933), - [anon_sym_extern] = ACTIONS(1933), - [anon_sym_module] = ACTIONS(1933), - [anon_sym_use] = ACTIONS(1933), - [anon_sym_LPAREN] = ACTIONS(1935), - [anon_sym_COMMA] = ACTIONS(1935), - [anon_sym_DOLLAR] = ACTIONS(1933), - [anon_sym_error] = ACTIONS(1933), - [anon_sym_DASH2] = ACTIONS(1933), - [anon_sym_break] = ACTIONS(1933), - [anon_sym_continue] = ACTIONS(1933), - [anon_sym_for] = ACTIONS(1933), - [anon_sym_in2] = ACTIONS(1933), - [anon_sym_loop] = ACTIONS(1933), - [anon_sym_make] = ACTIONS(1933), - [anon_sym_while] = ACTIONS(1933), - [anon_sym_do] = ACTIONS(1933), - [anon_sym_if] = ACTIONS(1933), - [anon_sym_else] = ACTIONS(1933), - [anon_sym_match] = ACTIONS(1933), - [anon_sym_RBRACE] = ACTIONS(1935), - [anon_sym_try] = ACTIONS(1933), - [anon_sym_catch] = ACTIONS(1933), - [anon_sym_return] = ACTIONS(1933), - [anon_sym_source] = ACTIONS(1933), - [anon_sym_source_DASHenv] = ACTIONS(1933), - [anon_sym_register] = ACTIONS(1933), - [anon_sym_hide] = ACTIONS(1933), - [anon_sym_hide_DASHenv] = ACTIONS(1933), - [anon_sym_overlay] = ACTIONS(1933), - [anon_sym_as] = ACTIONS(1933), - [anon_sym_PLUS2] = ACTIONS(1933), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1935), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1935), - [aux_sym__val_number_decimal_token1] = ACTIONS(1933), - [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), - [aux_sym__val_number_token4] = ACTIONS(1933), - [aux_sym__val_number_token5] = ACTIONS(1933), - [aux_sym__val_number_token6] = ACTIONS(1933), - [anon_sym_DQUOTE] = ACTIONS(1935), - [sym__str_single_quotes] = ACTIONS(1935), - [sym__str_back_ticks] = ACTIONS(1935), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1935), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1935), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1935), - [anon_sym_DOT2] = ACTIONS(1973), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1935), - }, - [461] = { - [sym_cell_path] = STATE(726), - [sym_path] = STATE(587), - [sym_comment] = STATE(461), - [aux_sym_cell_path_repeat1] = STATE(446), - [anon_sym_export] = ACTIONS(1937), - [anon_sym_alias] = ACTIONS(1937), - [anon_sym_let] = ACTIONS(1937), - [anon_sym_let_DASHenv] = ACTIONS(1937), - [anon_sym_mut] = ACTIONS(1937), - [anon_sym_const] = ACTIONS(1937), - [aux_sym_cmd_identifier_token1] = ACTIONS(1937), - [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(1937), - [aux_sym_cmd_identifier_token9] = ACTIONS(1937), - [aux_sym_cmd_identifier_token10] = ACTIONS(1939), - [aux_sym_cmd_identifier_token11] = ACTIONS(1939), - [aux_sym_cmd_identifier_token12] = ACTIONS(1937), - [aux_sym_cmd_identifier_token13] = ACTIONS(1937), - [aux_sym_cmd_identifier_token14] = ACTIONS(1937), - [aux_sym_cmd_identifier_token15] = ACTIONS(1937), - [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(1937), - [aux_sym_cmd_identifier_token35] = ACTIONS(1939), - [aux_sym_cmd_identifier_token36] = ACTIONS(1939), - [aux_sym_cmd_identifier_token37] = ACTIONS(1939), - [aux_sym_cmd_identifier_token38] = ACTIONS(1937), - [aux_sym_cmd_identifier_token39] = ACTIONS(1939), - [aux_sym_cmd_identifier_token40] = ACTIONS(1939), - [anon_sym_def] = ACTIONS(1937), - [anon_sym_export_DASHenv] = ACTIONS(1937), - [anon_sym_extern] = ACTIONS(1937), - [anon_sym_module] = ACTIONS(1937), - [anon_sym_use] = ACTIONS(1937), - [anon_sym_LPAREN] = ACTIONS(1939), - [anon_sym_COMMA] = ACTIONS(1939), - [anon_sym_DOLLAR] = ACTIONS(1937), - [anon_sym_error] = ACTIONS(1937), - [anon_sym_DASH2] = ACTIONS(1937), - [anon_sym_break] = ACTIONS(1937), - [anon_sym_continue] = ACTIONS(1937), - [anon_sym_for] = ACTIONS(1937), - [anon_sym_in2] = ACTIONS(1937), - [anon_sym_loop] = ACTIONS(1937), - [anon_sym_make] = ACTIONS(1937), - [anon_sym_while] = ACTIONS(1937), - [anon_sym_do] = ACTIONS(1937), - [anon_sym_if] = ACTIONS(1937), - [anon_sym_else] = ACTIONS(1937), - [anon_sym_match] = ACTIONS(1937), - [anon_sym_RBRACE] = ACTIONS(1939), - [anon_sym_try] = ACTIONS(1937), - [anon_sym_catch] = ACTIONS(1937), - [anon_sym_return] = ACTIONS(1937), - [anon_sym_source] = ACTIONS(1937), - [anon_sym_source_DASHenv] = ACTIONS(1937), - [anon_sym_register] = ACTIONS(1937), - [anon_sym_hide] = ACTIONS(1937), - [anon_sym_hide_DASHenv] = ACTIONS(1937), - [anon_sym_overlay] = ACTIONS(1937), - [anon_sym_as] = ACTIONS(1937), - [anon_sym_PLUS2] = ACTIONS(1937), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1939), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1939), - [aux_sym__val_number_decimal_token1] = ACTIONS(1937), - [aux_sym__val_number_decimal_token2] = ACTIONS(1939), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), - [aux_sym__val_number_token1] = ACTIONS(1939), - [aux_sym__val_number_token2] = ACTIONS(1939), - [aux_sym__val_number_token3] = ACTIONS(1939), - [aux_sym__val_number_token4] = ACTIONS(1937), - [aux_sym__val_number_token5] = ACTIONS(1937), - [aux_sym__val_number_token6] = ACTIONS(1937), - [anon_sym_DQUOTE] = ACTIONS(1939), - [sym__str_single_quotes] = ACTIONS(1939), - [sym__str_back_ticks] = ACTIONS(1939), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1939), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1939), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1939), - [anon_sym_DOT2] = ACTIONS(1973), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1939), + [sym_raw_string_begin] = ACTIONS(1991), }, - [462] = { - [sym_cell_path] = STATE(729), - [sym_path] = STATE(587), - [sym_comment] = STATE(462), - [aux_sym_cell_path_repeat1] = STATE(446), + [453] = { + [sym_cell_path] = STATE(748), + [sym_path] = STATE(565), + [sym_comment] = STATE(453), + [aux_sym_cell_path_repeat1] = STATE(484), [anon_sym_export] = ACTIONS(1945), [anon_sym_alias] = ACTIONS(1945), [anon_sym_let] = ACTIONS(1945), @@ -132486,7 +131469,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(1945), [anon_sym_source] = ACTIONS(1945), [anon_sym_source_DASHenv] = ACTIONS(1945), - [anon_sym_register] = ACTIONS(1945), [anon_sym_hide] = ACTIONS(1945), [anon_sym_hide_DASHenv] = ACTIONS(1945), [anon_sym_overlay] = ACTIONS(1945), @@ -132510,757 +131492,334 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1947), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1947), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1947), - [anon_sym_DOT2] = ACTIONS(1973), - [anon_sym_POUND] = ACTIONS(251), + [anon_sym_register] = ACTIONS(1945), + [anon_sym_DOT2] = ACTIONS(1921), + [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1947), }, - [463] = { - [sym_cell_path] = STATE(730), - [sym_path] = STATE(587), - [sym_comment] = STATE(463), - [aux_sym_cell_path_repeat1] = STATE(446), - [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(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1951), - [aux_sym_cmd_identifier_token4] = ACTIONS(1951), - [aux_sym_cmd_identifier_token5] = ACTIONS(1951), - [aux_sym_cmd_identifier_token6] = ACTIONS(1951), - [aux_sym_cmd_identifier_token7] = ACTIONS(1951), - [aux_sym_cmd_identifier_token8] = ACTIONS(1949), - [aux_sym_cmd_identifier_token9] = ACTIONS(1949), - [aux_sym_cmd_identifier_token10] = ACTIONS(1951), - [aux_sym_cmd_identifier_token11] = ACTIONS(1951), - [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(1951), - [aux_sym_cmd_identifier_token17] = ACTIONS(1951), - [aux_sym_cmd_identifier_token18] = ACTIONS(1951), - [aux_sym_cmd_identifier_token19] = ACTIONS(1951), - [aux_sym_cmd_identifier_token20] = ACTIONS(1951), - [aux_sym_cmd_identifier_token21] = ACTIONS(1951), - [aux_sym_cmd_identifier_token22] = ACTIONS(1951), - [aux_sym_cmd_identifier_token23] = ACTIONS(1951), - [aux_sym_cmd_identifier_token24] = ACTIONS(1951), - [aux_sym_cmd_identifier_token25] = ACTIONS(1951), - [aux_sym_cmd_identifier_token26] = ACTIONS(1951), - [aux_sym_cmd_identifier_token27] = ACTIONS(1951), - [aux_sym_cmd_identifier_token28] = ACTIONS(1951), - [aux_sym_cmd_identifier_token29] = ACTIONS(1951), - [aux_sym_cmd_identifier_token30] = ACTIONS(1951), - [aux_sym_cmd_identifier_token31] = ACTIONS(1951), - [aux_sym_cmd_identifier_token32] = ACTIONS(1951), - [aux_sym_cmd_identifier_token33] = ACTIONS(1951), - [aux_sym_cmd_identifier_token34] = ACTIONS(1949), - [aux_sym_cmd_identifier_token35] = ACTIONS(1951), - [aux_sym_cmd_identifier_token36] = ACTIONS(1951), - [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1951), - [anon_sym_DOLLAR] = ACTIONS(1949), - [anon_sym_error] = ACTIONS(1949), - [anon_sym_DASH2] = ACTIONS(1949), - [anon_sym_break] = ACTIONS(1949), - [anon_sym_continue] = ACTIONS(1949), - [anon_sym_for] = ACTIONS(1949), - [anon_sym_in2] = 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_as] = ACTIONS(1949), - [anon_sym_PLUS2] = 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), - [aux_sym__val_number_token4] = ACTIONS(1949), - [aux_sym__val_number_token5] = ACTIONS(1949), - [aux_sym__val_number_token6] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(1951), - [sym__str_single_quotes] = ACTIONS(1951), - [sym__str_back_ticks] = ACTIONS(1951), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1951), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1951), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1951), - [anon_sym_DOT2] = ACTIONS(1973), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1951), - }, - [464] = { - [sym_cell_path] = STATE(733), - [sym_path] = STATE(587), - [sym_comment] = STATE(464), - [aux_sym_cell_path_repeat1] = STATE(446), - [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(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(1953), - [aux_sym_cmd_identifier_token9] = ACTIONS(1953), - [aux_sym_cmd_identifier_token10] = ACTIONS(1955), - [aux_sym_cmd_identifier_token11] = ACTIONS(1955), - [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(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(1953), - [aux_sym_cmd_identifier_token35] = ACTIONS(1955), - [aux_sym_cmd_identifier_token36] = ACTIONS(1955), - [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1955), - [anon_sym_DOLLAR] = ACTIONS(1953), - [anon_sym_error] = ACTIONS(1953), - [anon_sym_DASH2] = ACTIONS(1953), - [anon_sym_break] = ACTIONS(1953), - [anon_sym_continue] = ACTIONS(1953), - [anon_sym_for] = ACTIONS(1953), - [anon_sym_in2] = 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_as] = ACTIONS(1953), - [anon_sym_PLUS2] = 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), - [aux_sym__val_number_token4] = ACTIONS(1953), - [aux_sym__val_number_token5] = ACTIONS(1953), - [aux_sym__val_number_token6] = ACTIONS(1953), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1955), - [anon_sym_DOT2] = ACTIONS(1973), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1955), - }, - [465] = { - [sym_comment] = STATE(465), - [anon_sym_export] = ACTIONS(2007), - [anon_sym_alias] = ACTIONS(2007), - [anon_sym_let] = ACTIONS(2007), - [anon_sym_let_DASHenv] = ACTIONS(2007), - [anon_sym_mut] = ACTIONS(2007), - [anon_sym_const] = ACTIONS(2007), - [aux_sym_cmd_identifier_token1] = ACTIONS(2007), - [aux_sym_cmd_identifier_token2] = ACTIONS(2007), - [aux_sym_cmd_identifier_token3] = ACTIONS(2007), - [aux_sym_cmd_identifier_token4] = ACTIONS(2007), - [aux_sym_cmd_identifier_token5] = ACTIONS(2007), - [aux_sym_cmd_identifier_token6] = ACTIONS(2007), - [aux_sym_cmd_identifier_token7] = ACTIONS(2007), - [aux_sym_cmd_identifier_token8] = ACTIONS(2007), - [aux_sym_cmd_identifier_token9] = ACTIONS(2007), - [aux_sym_cmd_identifier_token10] = ACTIONS(2007), - [aux_sym_cmd_identifier_token11] = ACTIONS(2007), - [aux_sym_cmd_identifier_token12] = ACTIONS(2007), - [aux_sym_cmd_identifier_token13] = ACTIONS(2007), - [aux_sym_cmd_identifier_token14] = ACTIONS(2007), - [aux_sym_cmd_identifier_token15] = ACTIONS(2007), - [aux_sym_cmd_identifier_token16] = ACTIONS(2007), - [aux_sym_cmd_identifier_token17] = ACTIONS(2007), - [aux_sym_cmd_identifier_token18] = ACTIONS(2007), - [aux_sym_cmd_identifier_token19] = ACTIONS(2007), - [aux_sym_cmd_identifier_token20] = ACTIONS(2007), - [aux_sym_cmd_identifier_token21] = ACTIONS(2007), - [aux_sym_cmd_identifier_token22] = ACTIONS(2007), - [aux_sym_cmd_identifier_token23] = ACTIONS(2007), - [aux_sym_cmd_identifier_token24] = ACTIONS(2007), - [aux_sym_cmd_identifier_token25] = ACTIONS(2007), - [aux_sym_cmd_identifier_token26] = ACTIONS(2007), - [aux_sym_cmd_identifier_token27] = ACTIONS(2007), - [aux_sym_cmd_identifier_token28] = ACTIONS(2007), - [aux_sym_cmd_identifier_token29] = ACTIONS(2007), - [aux_sym_cmd_identifier_token30] = ACTIONS(2007), - [aux_sym_cmd_identifier_token31] = ACTIONS(2007), - [aux_sym_cmd_identifier_token32] = ACTIONS(2007), - [aux_sym_cmd_identifier_token33] = ACTIONS(2007), - [aux_sym_cmd_identifier_token34] = ACTIONS(2007), - [aux_sym_cmd_identifier_token35] = ACTIONS(2007), - [aux_sym_cmd_identifier_token36] = ACTIONS(2007), - [aux_sym_cmd_identifier_token37] = ACTIONS(2007), - [aux_sym_cmd_identifier_token38] = ACTIONS(2007), - [aux_sym_cmd_identifier_token39] = ACTIONS(2007), - [aux_sym_cmd_identifier_token40] = ACTIONS(2007), - [anon_sym_def] = ACTIONS(2007), - [anon_sym_export_DASHenv] = ACTIONS(2007), - [anon_sym_extern] = ACTIONS(2007), - [anon_sym_module] = ACTIONS(2007), - [anon_sym_use] = ACTIONS(2007), - [anon_sym_LPAREN] = ACTIONS(2007), - [anon_sym_COMMA] = ACTIONS(2007), - [anon_sym_DOLLAR] = ACTIONS(2007), - [anon_sym_error] = ACTIONS(2007), - [anon_sym_DASH2] = ACTIONS(2007), - [anon_sym_break] = ACTIONS(2007), - [anon_sym_continue] = ACTIONS(2007), - [anon_sym_for] = ACTIONS(2007), - [anon_sym_in2] = ACTIONS(2007), - [anon_sym_loop] = ACTIONS(2007), - [anon_sym_make] = ACTIONS(2007), - [anon_sym_while] = ACTIONS(2007), - [anon_sym_do] = ACTIONS(2007), - [anon_sym_if] = ACTIONS(2007), - [anon_sym_else] = ACTIONS(2007), - [anon_sym_match] = ACTIONS(2007), - [anon_sym_RBRACE] = ACTIONS(2007), - [anon_sym_try] = ACTIONS(2007), - [anon_sym_catch] = ACTIONS(2007), - [anon_sym_return] = ACTIONS(2007), - [anon_sym_source] = ACTIONS(2007), - [anon_sym_source_DASHenv] = ACTIONS(2007), - [anon_sym_register] = ACTIONS(2007), - [anon_sym_hide] = ACTIONS(2007), - [anon_sym_hide_DASHenv] = ACTIONS(2007), - [anon_sym_overlay] = ACTIONS(2007), - [anon_sym_as] = ACTIONS(2007), - [anon_sym_PLUS2] = ACTIONS(2007), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2007), - [anon_sym_DOT_DOT2] = ACTIONS(2009), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2011), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2011), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2007), - [aux_sym__val_number_decimal_token1] = ACTIONS(2007), - [aux_sym__val_number_decimal_token2] = ACTIONS(2007), - [aux_sym__val_number_decimal_token3] = ACTIONS(2007), - [aux_sym__val_number_decimal_token4] = ACTIONS(2007), - [aux_sym__val_number_token1] = ACTIONS(2007), - [aux_sym__val_number_token2] = ACTIONS(2007), - [aux_sym__val_number_token3] = ACTIONS(2007), - [aux_sym__val_number_token4] = ACTIONS(2007), - [aux_sym__val_number_token5] = ACTIONS(2007), - [aux_sym__val_number_token6] = ACTIONS(2007), - [anon_sym_DQUOTE] = ACTIONS(2007), - [sym__str_single_quotes] = ACTIONS(2007), - [sym__str_back_ticks] = ACTIONS(2007), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2007), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2007), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2007), - [sym__entry_separator] = ACTIONS(2013), + [454] = { + [sym_path] = STATE(559), + [sym_comment] = STATE(454), + [aux_sym_cell_path_repeat1] = STATE(454), + [anon_sym_export] = ACTIONS(935), + [anon_sym_alias] = ACTIONS(935), + [anon_sym_let] = ACTIONS(935), + [anon_sym_let_DASHenv] = ACTIONS(935), + [anon_sym_mut] = ACTIONS(935), + [anon_sym_const] = ACTIONS(935), + [aux_sym_cmd_identifier_token1] = ACTIONS(935), + [aux_sym_cmd_identifier_token2] = ACTIONS(935), + [aux_sym_cmd_identifier_token3] = ACTIONS(935), + [aux_sym_cmd_identifier_token4] = ACTIONS(935), + [aux_sym_cmd_identifier_token5] = ACTIONS(935), + [aux_sym_cmd_identifier_token6] = ACTIONS(935), + [aux_sym_cmd_identifier_token7] = ACTIONS(935), + [aux_sym_cmd_identifier_token8] = ACTIONS(935), + [aux_sym_cmd_identifier_token9] = ACTIONS(935), + [aux_sym_cmd_identifier_token10] = ACTIONS(935), + [aux_sym_cmd_identifier_token11] = ACTIONS(935), + [aux_sym_cmd_identifier_token12] = ACTIONS(935), + [aux_sym_cmd_identifier_token13] = ACTIONS(935), + [aux_sym_cmd_identifier_token14] = ACTIONS(935), + [aux_sym_cmd_identifier_token15] = ACTIONS(935), + [aux_sym_cmd_identifier_token16] = ACTIONS(935), + [aux_sym_cmd_identifier_token17] = ACTIONS(935), + [aux_sym_cmd_identifier_token18] = ACTIONS(935), + [aux_sym_cmd_identifier_token19] = ACTIONS(935), + [aux_sym_cmd_identifier_token20] = ACTIONS(935), + [aux_sym_cmd_identifier_token21] = ACTIONS(935), + [aux_sym_cmd_identifier_token22] = ACTIONS(935), + [aux_sym_cmd_identifier_token23] = ACTIONS(935), + [aux_sym_cmd_identifier_token24] = ACTIONS(935), + [aux_sym_cmd_identifier_token25] = ACTIONS(935), + [aux_sym_cmd_identifier_token26] = ACTIONS(935), + [aux_sym_cmd_identifier_token27] = ACTIONS(935), + [aux_sym_cmd_identifier_token28] = ACTIONS(935), + [aux_sym_cmd_identifier_token29] = ACTIONS(935), + [aux_sym_cmd_identifier_token30] = ACTIONS(935), + [aux_sym_cmd_identifier_token31] = ACTIONS(935), + [aux_sym_cmd_identifier_token32] = ACTIONS(935), + [aux_sym_cmd_identifier_token33] = ACTIONS(935), + [aux_sym_cmd_identifier_token34] = ACTIONS(935), + [aux_sym_cmd_identifier_token35] = ACTIONS(935), + [aux_sym_cmd_identifier_token36] = ACTIONS(935), + [aux_sym_cmd_identifier_token37] = ACTIONS(935), + [aux_sym_cmd_identifier_token38] = ACTIONS(935), + [aux_sym_cmd_identifier_token39] = ACTIONS(935), + [aux_sym_cmd_identifier_token40] = ACTIONS(935), + [anon_sym_def] = ACTIONS(935), + [anon_sym_export_DASHenv] = ACTIONS(935), + [anon_sym_extern] = ACTIONS(935), + [anon_sym_module] = ACTIONS(935), + [anon_sym_use] = ACTIONS(935), + [anon_sym_LPAREN] = ACTIONS(935), + [anon_sym_COMMA] = ACTIONS(935), + [anon_sym_DOLLAR] = ACTIONS(935), + [anon_sym_error] = ACTIONS(935), + [anon_sym_DASH2] = ACTIONS(935), + [anon_sym_break] = ACTIONS(935), + [anon_sym_continue] = ACTIONS(935), + [anon_sym_for] = ACTIONS(935), + [anon_sym_in2] = ACTIONS(935), + [anon_sym_loop] = ACTIONS(935), + [anon_sym_make] = ACTIONS(935), + [anon_sym_while] = ACTIONS(935), + [anon_sym_do] = ACTIONS(935), + [anon_sym_if] = ACTIONS(935), + [anon_sym_else] = ACTIONS(935), + [anon_sym_match] = ACTIONS(935), + [anon_sym_RBRACE] = ACTIONS(935), + [anon_sym_try] = ACTIONS(935), + [anon_sym_catch] = ACTIONS(935), + [anon_sym_return] = ACTIONS(935), + [anon_sym_source] = ACTIONS(935), + [anon_sym_source_DASHenv] = ACTIONS(935), + [anon_sym_hide] = ACTIONS(935), + [anon_sym_hide_DASHenv] = ACTIONS(935), + [anon_sym_overlay] = ACTIONS(935), + [anon_sym_as] = ACTIONS(935), + [anon_sym_PLUS2] = ACTIONS(935), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(935), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(935), + [aux_sym__val_number_decimal_token1] = ACTIONS(935), + [aux_sym__val_number_decimal_token2] = ACTIONS(935), + [aux_sym__val_number_decimal_token3] = ACTIONS(935), + [aux_sym__val_number_decimal_token4] = ACTIONS(935), + [aux_sym__val_number_token1] = ACTIONS(935), + [aux_sym__val_number_token2] = ACTIONS(935), + [aux_sym__val_number_token3] = ACTIONS(935), + [aux_sym__val_number_token4] = ACTIONS(935), + [aux_sym__val_number_token5] = ACTIONS(935), + [aux_sym__val_number_token6] = ACTIONS(935), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym__str_single_quotes] = ACTIONS(935), + [sym__str_back_ticks] = ACTIONS(935), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(935), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(935), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(935), + [sym__entry_separator] = ACTIONS(937), + [anon_sym_register] = ACTIONS(935), + [anon_sym_DOT2] = ACTIONS(1993), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2013), - }, - [466] = { - [sym_cell_path] = STATE(735), - [sym_path] = STATE(587), - [sym_comment] = STATE(466), - [aux_sym_cell_path_repeat1] = STATE(446), - [anon_sym_export] = ACTIONS(1961), - [anon_sym_alias] = ACTIONS(1961), - [anon_sym_let] = ACTIONS(1961), - [anon_sym_let_DASHenv] = ACTIONS(1961), - [anon_sym_mut] = ACTIONS(1961), - [anon_sym_const] = ACTIONS(1961), - [aux_sym_cmd_identifier_token1] = ACTIONS(1961), - [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(1961), - [aux_sym_cmd_identifier_token9] = ACTIONS(1961), - [aux_sym_cmd_identifier_token10] = ACTIONS(1963), - [aux_sym_cmd_identifier_token11] = ACTIONS(1963), - [aux_sym_cmd_identifier_token12] = ACTIONS(1961), - [aux_sym_cmd_identifier_token13] = ACTIONS(1961), - [aux_sym_cmd_identifier_token14] = ACTIONS(1961), - [aux_sym_cmd_identifier_token15] = ACTIONS(1961), - [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(1961), - [aux_sym_cmd_identifier_token35] = ACTIONS(1963), - [aux_sym_cmd_identifier_token36] = ACTIONS(1963), - [aux_sym_cmd_identifier_token37] = ACTIONS(1963), - [aux_sym_cmd_identifier_token38] = ACTIONS(1961), - [aux_sym_cmd_identifier_token39] = ACTIONS(1963), - [aux_sym_cmd_identifier_token40] = ACTIONS(1963), - [anon_sym_def] = ACTIONS(1961), - [anon_sym_export_DASHenv] = ACTIONS(1961), - [anon_sym_extern] = ACTIONS(1961), - [anon_sym_module] = ACTIONS(1961), - [anon_sym_use] = ACTIONS(1961), - [anon_sym_LPAREN] = ACTIONS(1963), - [anon_sym_COMMA] = ACTIONS(1963), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_error] = ACTIONS(1961), - [anon_sym_DASH2] = ACTIONS(1961), - [anon_sym_break] = ACTIONS(1961), - [anon_sym_continue] = ACTIONS(1961), - [anon_sym_for] = ACTIONS(1961), - [anon_sym_in2] = ACTIONS(1961), - [anon_sym_loop] = ACTIONS(1961), - [anon_sym_make] = ACTIONS(1961), - [anon_sym_while] = ACTIONS(1961), - [anon_sym_do] = ACTIONS(1961), - [anon_sym_if] = ACTIONS(1961), - [anon_sym_else] = ACTIONS(1961), - [anon_sym_match] = ACTIONS(1961), - [anon_sym_RBRACE] = ACTIONS(1963), - [anon_sym_try] = ACTIONS(1961), - [anon_sym_catch] = ACTIONS(1961), - [anon_sym_return] = ACTIONS(1961), - [anon_sym_source] = ACTIONS(1961), - [anon_sym_source_DASHenv] = ACTIONS(1961), - [anon_sym_register] = ACTIONS(1961), - [anon_sym_hide] = ACTIONS(1961), - [anon_sym_hide_DASHenv] = ACTIONS(1961), - [anon_sym_overlay] = ACTIONS(1961), - [anon_sym_as] = ACTIONS(1961), - [anon_sym_PLUS2] = ACTIONS(1961), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1963), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1963), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1963), - [aux_sym__val_number_decimal_token4] = ACTIONS(1963), - [aux_sym__val_number_token1] = ACTIONS(1963), - [aux_sym__val_number_token2] = ACTIONS(1963), - [aux_sym__val_number_token3] = ACTIONS(1963), - [aux_sym__val_number_token4] = ACTIONS(1961), - [aux_sym__val_number_token5] = ACTIONS(1961), - [aux_sym__val_number_token6] = ACTIONS(1961), - [anon_sym_DQUOTE] = ACTIONS(1963), - [sym__str_single_quotes] = ACTIONS(1963), - [sym__str_back_ticks] = ACTIONS(1963), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1963), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1963), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1963), - [anon_sym_DOT2] = ACTIONS(1973), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1963), - }, - [467] = { - [sym_cell_path] = STATE(737), - [sym_path] = STATE(587), - [sym_comment] = STATE(467), - [aux_sym_cell_path_repeat1] = STATE(446), - [anon_sym_export] = ACTIONS(1965), - [anon_sym_alias] = ACTIONS(1965), - [anon_sym_let] = ACTIONS(1965), - [anon_sym_let_DASHenv] = ACTIONS(1965), - [anon_sym_mut] = ACTIONS(1965), - [anon_sym_const] = ACTIONS(1965), - [aux_sym_cmd_identifier_token1] = ACTIONS(1965), - [aux_sym_cmd_identifier_token2] = ACTIONS(1967), - [aux_sym_cmd_identifier_token3] = ACTIONS(1967), - [aux_sym_cmd_identifier_token4] = ACTIONS(1967), - [aux_sym_cmd_identifier_token5] = ACTIONS(1967), - [aux_sym_cmd_identifier_token6] = ACTIONS(1967), - [aux_sym_cmd_identifier_token7] = ACTIONS(1967), - [aux_sym_cmd_identifier_token8] = ACTIONS(1965), - [aux_sym_cmd_identifier_token9] = ACTIONS(1965), - [aux_sym_cmd_identifier_token10] = ACTIONS(1967), - [aux_sym_cmd_identifier_token11] = ACTIONS(1967), - [aux_sym_cmd_identifier_token12] = ACTIONS(1965), - [aux_sym_cmd_identifier_token13] = ACTIONS(1965), - [aux_sym_cmd_identifier_token14] = ACTIONS(1965), - [aux_sym_cmd_identifier_token15] = ACTIONS(1965), - [aux_sym_cmd_identifier_token16] = ACTIONS(1967), - [aux_sym_cmd_identifier_token17] = ACTIONS(1967), - [aux_sym_cmd_identifier_token18] = ACTIONS(1967), - [aux_sym_cmd_identifier_token19] = ACTIONS(1967), - [aux_sym_cmd_identifier_token20] = ACTIONS(1967), - [aux_sym_cmd_identifier_token21] = ACTIONS(1967), - [aux_sym_cmd_identifier_token22] = ACTIONS(1967), - [aux_sym_cmd_identifier_token23] = ACTIONS(1967), - [aux_sym_cmd_identifier_token24] = ACTIONS(1967), - [aux_sym_cmd_identifier_token25] = ACTIONS(1967), - [aux_sym_cmd_identifier_token26] = ACTIONS(1967), - [aux_sym_cmd_identifier_token27] = ACTIONS(1967), - [aux_sym_cmd_identifier_token28] = ACTIONS(1967), - [aux_sym_cmd_identifier_token29] = ACTIONS(1967), - [aux_sym_cmd_identifier_token30] = ACTIONS(1967), - [aux_sym_cmd_identifier_token31] = ACTIONS(1967), - [aux_sym_cmd_identifier_token32] = ACTIONS(1967), - [aux_sym_cmd_identifier_token33] = ACTIONS(1967), - [aux_sym_cmd_identifier_token34] = ACTIONS(1965), - [aux_sym_cmd_identifier_token35] = ACTIONS(1967), - [aux_sym_cmd_identifier_token36] = ACTIONS(1967), - [aux_sym_cmd_identifier_token37] = ACTIONS(1967), - [aux_sym_cmd_identifier_token38] = ACTIONS(1965), - [aux_sym_cmd_identifier_token39] = ACTIONS(1967), - [aux_sym_cmd_identifier_token40] = ACTIONS(1967), - [anon_sym_def] = ACTIONS(1965), - [anon_sym_export_DASHenv] = ACTIONS(1965), - [anon_sym_extern] = ACTIONS(1965), - [anon_sym_module] = ACTIONS(1965), - [anon_sym_use] = ACTIONS(1965), - [anon_sym_LPAREN] = ACTIONS(1967), - [anon_sym_COMMA] = ACTIONS(1967), - [anon_sym_DOLLAR] = ACTIONS(1965), - [anon_sym_error] = ACTIONS(1965), - [anon_sym_DASH2] = ACTIONS(1965), - [anon_sym_break] = ACTIONS(1965), - [anon_sym_continue] = ACTIONS(1965), - [anon_sym_for] = ACTIONS(1965), - [anon_sym_in2] = ACTIONS(1965), - [anon_sym_loop] = ACTIONS(1965), - [anon_sym_make] = ACTIONS(1965), - [anon_sym_while] = ACTIONS(1965), - [anon_sym_do] = ACTIONS(1965), - [anon_sym_if] = ACTIONS(1965), - [anon_sym_else] = ACTIONS(1965), - [anon_sym_match] = ACTIONS(1965), - [anon_sym_RBRACE] = ACTIONS(1967), - [anon_sym_try] = ACTIONS(1965), - [anon_sym_catch] = ACTIONS(1965), - [anon_sym_return] = ACTIONS(1965), - [anon_sym_source] = ACTIONS(1965), - [anon_sym_source_DASHenv] = ACTIONS(1965), - [anon_sym_register] = ACTIONS(1965), - [anon_sym_hide] = ACTIONS(1965), - [anon_sym_hide_DASHenv] = ACTIONS(1965), - [anon_sym_overlay] = ACTIONS(1965), - [anon_sym_as] = ACTIONS(1965), - [anon_sym_PLUS2] = ACTIONS(1965), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1967), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1967), - [aux_sym__val_number_decimal_token1] = ACTIONS(1965), - [aux_sym__val_number_decimal_token2] = ACTIONS(1967), - [aux_sym__val_number_decimal_token3] = ACTIONS(1967), - [aux_sym__val_number_decimal_token4] = ACTIONS(1967), - [aux_sym__val_number_token1] = ACTIONS(1967), - [aux_sym__val_number_token2] = ACTIONS(1967), - [aux_sym__val_number_token3] = ACTIONS(1967), - [aux_sym__val_number_token4] = ACTIONS(1965), - [aux_sym__val_number_token5] = ACTIONS(1965), - [aux_sym__val_number_token6] = ACTIONS(1965), - [anon_sym_DQUOTE] = ACTIONS(1967), - [sym__str_single_quotes] = ACTIONS(1967), - [sym__str_back_ticks] = ACTIONS(1967), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1967), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1967), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1967), - [anon_sym_DOT2] = ACTIONS(1973), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1967), + [sym_raw_string_begin] = ACTIONS(937), }, - [468] = { - [sym_cell_path] = STATE(738), - [sym_path] = STATE(587), - [sym_comment] = STATE(468), - [aux_sym_cell_path_repeat1] = STATE(446), - [anon_sym_export] = ACTIONS(1969), - [anon_sym_alias] = ACTIONS(1969), - [anon_sym_let] = ACTIONS(1969), - [anon_sym_let_DASHenv] = ACTIONS(1969), - [anon_sym_mut] = ACTIONS(1969), - [anon_sym_const] = ACTIONS(1969), - [aux_sym_cmd_identifier_token1] = ACTIONS(1969), - [aux_sym_cmd_identifier_token2] = ACTIONS(1971), - [aux_sym_cmd_identifier_token3] = ACTIONS(1971), - [aux_sym_cmd_identifier_token4] = ACTIONS(1971), - [aux_sym_cmd_identifier_token5] = ACTIONS(1971), - [aux_sym_cmd_identifier_token6] = ACTIONS(1971), - [aux_sym_cmd_identifier_token7] = ACTIONS(1971), - [aux_sym_cmd_identifier_token8] = ACTIONS(1969), - [aux_sym_cmd_identifier_token9] = ACTIONS(1969), - [aux_sym_cmd_identifier_token10] = ACTIONS(1971), - [aux_sym_cmd_identifier_token11] = ACTIONS(1971), - [aux_sym_cmd_identifier_token12] = ACTIONS(1969), - [aux_sym_cmd_identifier_token13] = ACTIONS(1969), - [aux_sym_cmd_identifier_token14] = ACTIONS(1969), - [aux_sym_cmd_identifier_token15] = ACTIONS(1969), - [aux_sym_cmd_identifier_token16] = ACTIONS(1971), - [aux_sym_cmd_identifier_token17] = ACTIONS(1971), - [aux_sym_cmd_identifier_token18] = ACTIONS(1971), - [aux_sym_cmd_identifier_token19] = ACTIONS(1971), - [aux_sym_cmd_identifier_token20] = ACTIONS(1971), - [aux_sym_cmd_identifier_token21] = ACTIONS(1971), - [aux_sym_cmd_identifier_token22] = ACTIONS(1971), - [aux_sym_cmd_identifier_token23] = ACTIONS(1971), - [aux_sym_cmd_identifier_token24] = ACTIONS(1971), - [aux_sym_cmd_identifier_token25] = ACTIONS(1971), - [aux_sym_cmd_identifier_token26] = ACTIONS(1971), - [aux_sym_cmd_identifier_token27] = ACTIONS(1971), - [aux_sym_cmd_identifier_token28] = ACTIONS(1971), - [aux_sym_cmd_identifier_token29] = ACTIONS(1971), - [aux_sym_cmd_identifier_token30] = ACTIONS(1971), - [aux_sym_cmd_identifier_token31] = ACTIONS(1971), - [aux_sym_cmd_identifier_token32] = ACTIONS(1971), - [aux_sym_cmd_identifier_token33] = ACTIONS(1971), - [aux_sym_cmd_identifier_token34] = ACTIONS(1969), - [aux_sym_cmd_identifier_token35] = ACTIONS(1971), - [aux_sym_cmd_identifier_token36] = ACTIONS(1971), - [aux_sym_cmd_identifier_token37] = ACTIONS(1971), - [aux_sym_cmd_identifier_token38] = ACTIONS(1969), - [aux_sym_cmd_identifier_token39] = ACTIONS(1971), - [aux_sym_cmd_identifier_token40] = ACTIONS(1971), - [anon_sym_def] = ACTIONS(1969), - [anon_sym_export_DASHenv] = ACTIONS(1969), - [anon_sym_extern] = ACTIONS(1969), - [anon_sym_module] = ACTIONS(1969), - [anon_sym_use] = ACTIONS(1969), - [anon_sym_LPAREN] = ACTIONS(1971), - [anon_sym_COMMA] = ACTIONS(1971), - [anon_sym_DOLLAR] = ACTIONS(1969), - [anon_sym_error] = ACTIONS(1969), - [anon_sym_DASH2] = ACTIONS(1969), - [anon_sym_break] = ACTIONS(1969), - [anon_sym_continue] = ACTIONS(1969), - [anon_sym_for] = ACTIONS(1969), - [anon_sym_in2] = ACTIONS(1969), - [anon_sym_loop] = ACTIONS(1969), - [anon_sym_make] = ACTIONS(1969), - [anon_sym_while] = ACTIONS(1969), - [anon_sym_do] = ACTIONS(1969), - [anon_sym_if] = ACTIONS(1969), - [anon_sym_else] = ACTIONS(1969), - [anon_sym_match] = ACTIONS(1969), - [anon_sym_RBRACE] = ACTIONS(1971), - [anon_sym_try] = ACTIONS(1969), - [anon_sym_catch] = ACTIONS(1969), - [anon_sym_return] = ACTIONS(1969), - [anon_sym_source] = ACTIONS(1969), - [anon_sym_source_DASHenv] = ACTIONS(1969), - [anon_sym_register] = ACTIONS(1969), - [anon_sym_hide] = ACTIONS(1969), - [anon_sym_hide_DASHenv] = ACTIONS(1969), - [anon_sym_overlay] = ACTIONS(1969), - [anon_sym_as] = ACTIONS(1969), - [anon_sym_PLUS2] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1971), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1971), - [aux_sym__val_number_decimal_token1] = ACTIONS(1969), - [aux_sym__val_number_decimal_token2] = ACTIONS(1971), - [aux_sym__val_number_decimal_token3] = ACTIONS(1971), - [aux_sym__val_number_decimal_token4] = ACTIONS(1971), - [aux_sym__val_number_token1] = ACTIONS(1971), - [aux_sym__val_number_token2] = ACTIONS(1971), - [aux_sym__val_number_token3] = ACTIONS(1971), - [aux_sym__val_number_token4] = ACTIONS(1969), - [aux_sym__val_number_token5] = ACTIONS(1969), - [aux_sym__val_number_token6] = ACTIONS(1969), - [anon_sym_DQUOTE] = ACTIONS(1971), - [sym__str_single_quotes] = ACTIONS(1971), - [sym__str_back_ticks] = ACTIONS(1971), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1971), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1971), - [anon_sym_DOT2] = ACTIONS(1973), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1971), + [455] = { + [sym_comment] = STATE(455), + [anon_sym_export] = ACTIONS(978), + [anon_sym_alias] = ACTIONS(978), + [anon_sym_let] = ACTIONS(978), + [anon_sym_let_DASHenv] = ACTIONS(978), + [anon_sym_mut] = ACTIONS(978), + [anon_sym_const] = ACTIONS(978), + [aux_sym_cmd_identifier_token1] = ACTIONS(978), + [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(978), + [aux_sym_cmd_identifier_token9] = ACTIONS(978), + [aux_sym_cmd_identifier_token10] = ACTIONS(980), + [aux_sym_cmd_identifier_token11] = ACTIONS(980), + [aux_sym_cmd_identifier_token12] = ACTIONS(978), + [aux_sym_cmd_identifier_token13] = ACTIONS(978), + [aux_sym_cmd_identifier_token14] = ACTIONS(978), + [aux_sym_cmd_identifier_token15] = ACTIONS(978), + [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(978), + [aux_sym_cmd_identifier_token35] = ACTIONS(980), + [aux_sym_cmd_identifier_token36] = ACTIONS(980), + [aux_sym_cmd_identifier_token37] = ACTIONS(980), + [aux_sym_cmd_identifier_token38] = ACTIONS(978), + [aux_sym_cmd_identifier_token39] = ACTIONS(980), + [aux_sym_cmd_identifier_token40] = ACTIONS(980), + [anon_sym_def] = ACTIONS(978), + [anon_sym_export_DASHenv] = ACTIONS(978), + [anon_sym_extern] = ACTIONS(978), + [anon_sym_module] = ACTIONS(978), + [anon_sym_use] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(980), + [anon_sym_COMMA] = ACTIONS(980), + [anon_sym_DOLLAR] = ACTIONS(978), + [anon_sym_error] = ACTIONS(978), + [anon_sym_DASH2] = ACTIONS(978), + [anon_sym_break] = ACTIONS(978), + [anon_sym_continue] = ACTIONS(978), + [anon_sym_for] = ACTIONS(978), + [anon_sym_in2] = ACTIONS(978), + [anon_sym_loop] = ACTIONS(978), + [anon_sym_make] = ACTIONS(978), + [anon_sym_while] = ACTIONS(978), + [anon_sym_do] = ACTIONS(978), + [anon_sym_if] = ACTIONS(978), + [anon_sym_else] = ACTIONS(978), + [anon_sym_match] = ACTIONS(978), + [anon_sym_RBRACE] = ACTIONS(980), + [anon_sym_try] = ACTIONS(978), + [anon_sym_catch] = ACTIONS(978), + [anon_sym_return] = ACTIONS(978), + [anon_sym_source] = ACTIONS(978), + [anon_sym_source_DASHenv] = ACTIONS(978), + [anon_sym_hide] = ACTIONS(978), + [anon_sym_hide_DASHenv] = ACTIONS(978), + [anon_sym_overlay] = ACTIONS(978), + [anon_sym_as] = ACTIONS(978), + [anon_sym_PLUS2] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(980), + [anon_sym_DOT_DOT2] = ACTIONS(978), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(980), + [anon_sym_DOT_DOT_LT2] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(980), + [aux_sym__val_number_decimal_token1] = ACTIONS(978), + [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), + [aux_sym__val_number_token4] = ACTIONS(978), + [aux_sym__val_number_token5] = ACTIONS(978), + [aux_sym__val_number_token6] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(980), + [sym__str_single_quotes] = ACTIONS(980), + [sym__str_back_ticks] = ACTIONS(980), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(980), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(980), + [anon_sym_register] = ACTIONS(978), + [anon_sym_DOT2] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(980), }, - [469] = { - [sym_cell_path] = STATE(739), - [sym_path] = STATE(587), - [sym_comment] = STATE(469), - [aux_sym_cell_path_repeat1] = STATE(446), - [anon_sym_export] = ACTIONS(1979), - [anon_sym_alias] = ACTIONS(1979), - [anon_sym_let] = ACTIONS(1979), - [anon_sym_let_DASHenv] = ACTIONS(1979), - [anon_sym_mut] = ACTIONS(1979), - [anon_sym_const] = ACTIONS(1979), - [aux_sym_cmd_identifier_token1] = ACTIONS(1979), - [aux_sym_cmd_identifier_token2] = ACTIONS(1981), - [aux_sym_cmd_identifier_token3] = ACTIONS(1981), - [aux_sym_cmd_identifier_token4] = ACTIONS(1981), - [aux_sym_cmd_identifier_token5] = ACTIONS(1981), - [aux_sym_cmd_identifier_token6] = ACTIONS(1981), - [aux_sym_cmd_identifier_token7] = ACTIONS(1981), - [aux_sym_cmd_identifier_token8] = ACTIONS(1979), - [aux_sym_cmd_identifier_token9] = ACTIONS(1979), - [aux_sym_cmd_identifier_token10] = ACTIONS(1981), - [aux_sym_cmd_identifier_token11] = ACTIONS(1981), - [aux_sym_cmd_identifier_token12] = ACTIONS(1979), - [aux_sym_cmd_identifier_token13] = ACTIONS(1979), - [aux_sym_cmd_identifier_token14] = ACTIONS(1979), - [aux_sym_cmd_identifier_token15] = ACTIONS(1979), - [aux_sym_cmd_identifier_token16] = ACTIONS(1981), - [aux_sym_cmd_identifier_token17] = ACTIONS(1981), - [aux_sym_cmd_identifier_token18] = ACTIONS(1981), - [aux_sym_cmd_identifier_token19] = ACTIONS(1981), - [aux_sym_cmd_identifier_token20] = ACTIONS(1981), - [aux_sym_cmd_identifier_token21] = ACTIONS(1981), - [aux_sym_cmd_identifier_token22] = ACTIONS(1981), - [aux_sym_cmd_identifier_token23] = ACTIONS(1981), - [aux_sym_cmd_identifier_token24] = ACTIONS(1981), - [aux_sym_cmd_identifier_token25] = ACTIONS(1981), - [aux_sym_cmd_identifier_token26] = ACTIONS(1981), - [aux_sym_cmd_identifier_token27] = ACTIONS(1981), - [aux_sym_cmd_identifier_token28] = ACTIONS(1981), - [aux_sym_cmd_identifier_token29] = ACTIONS(1981), - [aux_sym_cmd_identifier_token30] = ACTIONS(1981), - [aux_sym_cmd_identifier_token31] = ACTIONS(1981), - [aux_sym_cmd_identifier_token32] = ACTIONS(1981), - [aux_sym_cmd_identifier_token33] = ACTIONS(1981), - [aux_sym_cmd_identifier_token34] = ACTIONS(1979), - [aux_sym_cmd_identifier_token35] = ACTIONS(1981), - [aux_sym_cmd_identifier_token36] = ACTIONS(1981), - [aux_sym_cmd_identifier_token37] = ACTIONS(1981), - [aux_sym_cmd_identifier_token38] = ACTIONS(1979), - [aux_sym_cmd_identifier_token39] = ACTIONS(1981), - [aux_sym_cmd_identifier_token40] = ACTIONS(1981), - [anon_sym_def] = ACTIONS(1979), - [anon_sym_export_DASHenv] = ACTIONS(1979), - [anon_sym_extern] = ACTIONS(1979), - [anon_sym_module] = ACTIONS(1979), - [anon_sym_use] = ACTIONS(1979), - [anon_sym_LPAREN] = ACTIONS(1981), - [anon_sym_COMMA] = ACTIONS(1981), - [anon_sym_DOLLAR] = ACTIONS(1979), - [anon_sym_error] = ACTIONS(1979), - [anon_sym_DASH2] = ACTIONS(1979), - [anon_sym_break] = ACTIONS(1979), - [anon_sym_continue] = ACTIONS(1979), - [anon_sym_for] = ACTIONS(1979), - [anon_sym_in2] = ACTIONS(1979), - [anon_sym_loop] = ACTIONS(1979), - [anon_sym_make] = ACTIONS(1979), - [anon_sym_while] = ACTIONS(1979), - [anon_sym_do] = ACTIONS(1979), - [anon_sym_if] = ACTIONS(1979), - [anon_sym_else] = ACTIONS(1979), - [anon_sym_match] = ACTIONS(1979), - [anon_sym_RBRACE] = ACTIONS(1981), - [anon_sym_try] = ACTIONS(1979), - [anon_sym_catch] = ACTIONS(1979), - [anon_sym_return] = ACTIONS(1979), - [anon_sym_source] = ACTIONS(1979), - [anon_sym_source_DASHenv] = ACTIONS(1979), - [anon_sym_register] = ACTIONS(1979), - [anon_sym_hide] = ACTIONS(1979), - [anon_sym_hide_DASHenv] = ACTIONS(1979), - [anon_sym_overlay] = ACTIONS(1979), - [anon_sym_as] = ACTIONS(1979), - [anon_sym_PLUS2] = ACTIONS(1979), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1981), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1981), - [aux_sym__val_number_decimal_token1] = ACTIONS(1979), - [aux_sym__val_number_decimal_token2] = ACTIONS(1981), - [aux_sym__val_number_decimal_token3] = ACTIONS(1981), - [aux_sym__val_number_decimal_token4] = ACTIONS(1981), - [aux_sym__val_number_token1] = ACTIONS(1981), - [aux_sym__val_number_token2] = ACTIONS(1981), - [aux_sym__val_number_token3] = ACTIONS(1981), - [aux_sym__val_number_token4] = ACTIONS(1979), - [aux_sym__val_number_token5] = ACTIONS(1979), - [aux_sym__val_number_token6] = ACTIONS(1979), - [anon_sym_DQUOTE] = ACTIONS(1981), - [sym__str_single_quotes] = ACTIONS(1981), - [sym__str_back_ticks] = ACTIONS(1981), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1981), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1981), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1981), - [anon_sym_DOT2] = ACTIONS(1973), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1981), + [456] = { + [sym_comment] = STATE(456), + [anon_sym_export] = ACTIONS(974), + [anon_sym_alias] = ACTIONS(974), + [anon_sym_let] = ACTIONS(974), + [anon_sym_let_DASHenv] = ACTIONS(974), + [anon_sym_mut] = ACTIONS(974), + [anon_sym_const] = ACTIONS(974), + [aux_sym_cmd_identifier_token1] = ACTIONS(974), + [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(974), + [aux_sym_cmd_identifier_token9] = ACTIONS(974), + [aux_sym_cmd_identifier_token10] = ACTIONS(976), + [aux_sym_cmd_identifier_token11] = ACTIONS(976), + [aux_sym_cmd_identifier_token12] = ACTIONS(974), + [aux_sym_cmd_identifier_token13] = ACTIONS(974), + [aux_sym_cmd_identifier_token14] = ACTIONS(974), + [aux_sym_cmd_identifier_token15] = ACTIONS(974), + [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(974), + [aux_sym_cmd_identifier_token35] = ACTIONS(976), + [aux_sym_cmd_identifier_token36] = ACTIONS(976), + [aux_sym_cmd_identifier_token37] = ACTIONS(976), + [aux_sym_cmd_identifier_token38] = ACTIONS(974), + [aux_sym_cmd_identifier_token39] = ACTIONS(976), + [aux_sym_cmd_identifier_token40] = ACTIONS(976), + [anon_sym_def] = ACTIONS(974), + [anon_sym_export_DASHenv] = ACTIONS(974), + [anon_sym_extern] = ACTIONS(974), + [anon_sym_module] = ACTIONS(974), + [anon_sym_use] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(976), + [anon_sym_COMMA] = ACTIONS(976), + [anon_sym_DOLLAR] = ACTIONS(974), + [anon_sym_error] = ACTIONS(974), + [anon_sym_DASH2] = ACTIONS(974), + [anon_sym_break] = ACTIONS(974), + [anon_sym_continue] = ACTIONS(974), + [anon_sym_for] = ACTIONS(974), + [anon_sym_in2] = ACTIONS(974), + [anon_sym_loop] = ACTIONS(974), + [anon_sym_make] = ACTIONS(974), + [anon_sym_while] = ACTIONS(974), + [anon_sym_do] = ACTIONS(974), + [anon_sym_if] = ACTIONS(974), + [anon_sym_else] = ACTIONS(974), + [anon_sym_match] = ACTIONS(974), + [anon_sym_RBRACE] = ACTIONS(976), + [anon_sym_try] = ACTIONS(974), + [anon_sym_catch] = ACTIONS(974), + [anon_sym_return] = ACTIONS(974), + [anon_sym_source] = ACTIONS(974), + [anon_sym_source_DASHenv] = ACTIONS(974), + [anon_sym_hide] = ACTIONS(974), + [anon_sym_hide_DASHenv] = ACTIONS(974), + [anon_sym_overlay] = ACTIONS(974), + [anon_sym_as] = ACTIONS(974), + [anon_sym_PLUS2] = ACTIONS(974), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(976), + [anon_sym_DOT_DOT2] = ACTIONS(974), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(976), + [anon_sym_DOT_DOT_LT2] = ACTIONS(976), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(976), + [aux_sym__val_number_decimal_token1] = ACTIONS(974), + [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), + [aux_sym__val_number_token4] = ACTIONS(974), + [aux_sym__val_number_token5] = ACTIONS(974), + [aux_sym__val_number_token6] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(976), + [sym__str_single_quotes] = ACTIONS(976), + [sym__str_back_ticks] = ACTIONS(976), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(976), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(976), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(976), + [anon_sym_register] = ACTIONS(974), + [anon_sym_DOT2] = ACTIONS(974), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(976), }, - [470] = { - [sym_cell_path] = STATE(740), - [sym_path] = STATE(587), - [sym_comment] = STATE(470), - [aux_sym_cell_path_repeat1] = STATE(446), + [457] = { + [sym_cell_path] = STATE(718), + [sym_path] = STATE(565), + [sym_comment] = STATE(457), + [aux_sym_cell_path_repeat1] = STATE(484), [anon_sym_export] = ACTIONS(1905), [anon_sym_alias] = ACTIONS(1905), [anon_sym_let] = ACTIONS(1905), @@ -133334,7 +131893,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -133358,3521 +131916,3532 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1907), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1907), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1907), - [anon_sym_DOT2] = ACTIONS(1973), - [anon_sym_POUND] = ACTIONS(251), + [anon_sym_register] = ACTIONS(1905), + [anon_sym_DOT2] = ACTIONS(1921), + [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1907), }, - [471] = { - [sym_cell_path] = STATE(741), - [sym_path] = STATE(587), - [sym_comment] = STATE(471), - [aux_sym_cell_path_repeat1] = STATE(446), - [anon_sym_export] = ACTIONS(1983), - [anon_sym_alias] = ACTIONS(1983), - [anon_sym_let] = ACTIONS(1983), - [anon_sym_let_DASHenv] = ACTIONS(1983), - [anon_sym_mut] = ACTIONS(1983), - [anon_sym_const] = ACTIONS(1983), - [aux_sym_cmd_identifier_token1] = ACTIONS(1983), - [aux_sym_cmd_identifier_token2] = ACTIONS(1985), - [aux_sym_cmd_identifier_token3] = ACTIONS(1985), - [aux_sym_cmd_identifier_token4] = ACTIONS(1985), - [aux_sym_cmd_identifier_token5] = ACTIONS(1985), - [aux_sym_cmd_identifier_token6] = ACTIONS(1985), - [aux_sym_cmd_identifier_token7] = ACTIONS(1985), - [aux_sym_cmd_identifier_token8] = ACTIONS(1983), - [aux_sym_cmd_identifier_token9] = ACTIONS(1983), - [aux_sym_cmd_identifier_token10] = ACTIONS(1985), - [aux_sym_cmd_identifier_token11] = ACTIONS(1985), - [aux_sym_cmd_identifier_token12] = ACTIONS(1983), - [aux_sym_cmd_identifier_token13] = ACTIONS(1983), - [aux_sym_cmd_identifier_token14] = ACTIONS(1983), - [aux_sym_cmd_identifier_token15] = ACTIONS(1983), - [aux_sym_cmd_identifier_token16] = ACTIONS(1985), - [aux_sym_cmd_identifier_token17] = ACTIONS(1985), - [aux_sym_cmd_identifier_token18] = ACTIONS(1985), - [aux_sym_cmd_identifier_token19] = ACTIONS(1985), - [aux_sym_cmd_identifier_token20] = ACTIONS(1985), - [aux_sym_cmd_identifier_token21] = ACTIONS(1985), - [aux_sym_cmd_identifier_token22] = ACTIONS(1985), - [aux_sym_cmd_identifier_token23] = ACTIONS(1985), - [aux_sym_cmd_identifier_token24] = ACTIONS(1985), - [aux_sym_cmd_identifier_token25] = ACTIONS(1985), - [aux_sym_cmd_identifier_token26] = ACTIONS(1985), - [aux_sym_cmd_identifier_token27] = ACTIONS(1985), - [aux_sym_cmd_identifier_token28] = ACTIONS(1985), - [aux_sym_cmd_identifier_token29] = ACTIONS(1985), - [aux_sym_cmd_identifier_token30] = ACTIONS(1985), - [aux_sym_cmd_identifier_token31] = ACTIONS(1985), - [aux_sym_cmd_identifier_token32] = ACTIONS(1985), - [aux_sym_cmd_identifier_token33] = ACTIONS(1985), - [aux_sym_cmd_identifier_token34] = ACTIONS(1983), - [aux_sym_cmd_identifier_token35] = ACTIONS(1985), - [aux_sym_cmd_identifier_token36] = ACTIONS(1985), - [aux_sym_cmd_identifier_token37] = ACTIONS(1985), - [aux_sym_cmd_identifier_token38] = ACTIONS(1983), - [aux_sym_cmd_identifier_token39] = ACTIONS(1985), - [aux_sym_cmd_identifier_token40] = ACTIONS(1985), - [anon_sym_def] = ACTIONS(1983), - [anon_sym_export_DASHenv] = ACTIONS(1983), - [anon_sym_extern] = ACTIONS(1983), - [anon_sym_module] = ACTIONS(1983), - [anon_sym_use] = ACTIONS(1983), - [anon_sym_LPAREN] = ACTIONS(1985), - [anon_sym_COMMA] = ACTIONS(1985), - [anon_sym_DOLLAR] = ACTIONS(1983), - [anon_sym_error] = ACTIONS(1983), - [anon_sym_DASH2] = ACTIONS(1983), - [anon_sym_break] = ACTIONS(1983), - [anon_sym_continue] = ACTIONS(1983), - [anon_sym_for] = ACTIONS(1983), - [anon_sym_in2] = ACTIONS(1983), - [anon_sym_loop] = ACTIONS(1983), - [anon_sym_make] = ACTIONS(1983), - [anon_sym_while] = ACTIONS(1983), - [anon_sym_do] = ACTIONS(1983), - [anon_sym_if] = ACTIONS(1983), - [anon_sym_else] = ACTIONS(1983), - [anon_sym_match] = ACTIONS(1983), - [anon_sym_RBRACE] = ACTIONS(1985), - [anon_sym_try] = ACTIONS(1983), - [anon_sym_catch] = ACTIONS(1983), - [anon_sym_return] = ACTIONS(1983), - [anon_sym_source] = ACTIONS(1983), - [anon_sym_source_DASHenv] = ACTIONS(1983), - [anon_sym_register] = ACTIONS(1983), - [anon_sym_hide] = ACTIONS(1983), - [anon_sym_hide_DASHenv] = ACTIONS(1983), - [anon_sym_overlay] = ACTIONS(1983), - [anon_sym_as] = ACTIONS(1983), - [anon_sym_PLUS2] = ACTIONS(1983), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1985), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1985), - [aux_sym__val_number_decimal_token1] = ACTIONS(1983), - [aux_sym__val_number_decimal_token2] = ACTIONS(1985), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), - [aux_sym__val_number_token1] = ACTIONS(1985), - [aux_sym__val_number_token2] = ACTIONS(1985), - [aux_sym__val_number_token3] = ACTIONS(1985), - [aux_sym__val_number_token4] = ACTIONS(1983), - [aux_sym__val_number_token5] = ACTIONS(1983), - [aux_sym__val_number_token6] = ACTIONS(1983), - [anon_sym_DQUOTE] = ACTIONS(1985), - [sym__str_single_quotes] = ACTIONS(1985), - [sym__str_back_ticks] = ACTIONS(1985), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1985), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1985), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1985), - [anon_sym_DOT2] = ACTIONS(1973), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1985), - }, - [472] = { - [sym_comment] = STATE(472), - [anon_sym_export] = ACTIONS(1016), - [anon_sym_alias] = ACTIONS(1016), - [anon_sym_let] = ACTIONS(1016), - [anon_sym_let_DASHenv] = ACTIONS(1016), - [anon_sym_mut] = ACTIONS(1016), - [anon_sym_const] = ACTIONS(1016), - [aux_sym_cmd_identifier_token1] = ACTIONS(1016), - [aux_sym_cmd_identifier_token2] = ACTIONS(1016), - [aux_sym_cmd_identifier_token3] = ACTIONS(1016), - [aux_sym_cmd_identifier_token4] = ACTIONS(1016), - [aux_sym_cmd_identifier_token5] = ACTIONS(1016), - [aux_sym_cmd_identifier_token6] = ACTIONS(1016), - [aux_sym_cmd_identifier_token7] = ACTIONS(1016), - [aux_sym_cmd_identifier_token8] = ACTIONS(1016), - [aux_sym_cmd_identifier_token9] = ACTIONS(1016), - [aux_sym_cmd_identifier_token10] = ACTIONS(1016), - [aux_sym_cmd_identifier_token11] = ACTIONS(1016), - [aux_sym_cmd_identifier_token12] = ACTIONS(1016), - [aux_sym_cmd_identifier_token13] = ACTIONS(1016), - [aux_sym_cmd_identifier_token14] = ACTIONS(1016), - [aux_sym_cmd_identifier_token15] = ACTIONS(1016), - [aux_sym_cmd_identifier_token16] = ACTIONS(1016), - [aux_sym_cmd_identifier_token17] = ACTIONS(1016), - [aux_sym_cmd_identifier_token18] = ACTIONS(1016), - [aux_sym_cmd_identifier_token19] = ACTIONS(1016), - [aux_sym_cmd_identifier_token20] = ACTIONS(1016), - [aux_sym_cmd_identifier_token21] = ACTIONS(1016), - [aux_sym_cmd_identifier_token22] = ACTIONS(1016), - [aux_sym_cmd_identifier_token23] = ACTIONS(1016), - [aux_sym_cmd_identifier_token24] = ACTIONS(1016), - [aux_sym_cmd_identifier_token25] = ACTIONS(1016), - [aux_sym_cmd_identifier_token26] = ACTIONS(1016), - [aux_sym_cmd_identifier_token27] = ACTIONS(1016), - [aux_sym_cmd_identifier_token28] = ACTIONS(1016), - [aux_sym_cmd_identifier_token29] = ACTIONS(1016), - [aux_sym_cmd_identifier_token30] = ACTIONS(1016), - [aux_sym_cmd_identifier_token31] = ACTIONS(1016), - [aux_sym_cmd_identifier_token32] = ACTIONS(1016), - [aux_sym_cmd_identifier_token33] = ACTIONS(1016), - [aux_sym_cmd_identifier_token34] = ACTIONS(1016), - [aux_sym_cmd_identifier_token35] = ACTIONS(1016), - [aux_sym_cmd_identifier_token36] = ACTIONS(1016), - [aux_sym_cmd_identifier_token37] = ACTIONS(1016), - [aux_sym_cmd_identifier_token38] = ACTIONS(1016), - [aux_sym_cmd_identifier_token39] = ACTIONS(1016), - [aux_sym_cmd_identifier_token40] = ACTIONS(1016), - [anon_sym_def] = ACTIONS(1016), - [anon_sym_export_DASHenv] = ACTIONS(1016), - [anon_sym_extern] = ACTIONS(1016), - [anon_sym_module] = ACTIONS(1016), - [anon_sym_use] = ACTIONS(1016), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_COMMA] = ACTIONS(1016), - [anon_sym_DOLLAR] = ACTIONS(1016), - [anon_sym_error] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_break] = ACTIONS(1016), - [anon_sym_continue] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1016), - [anon_sym_in2] = ACTIONS(1016), - [anon_sym_loop] = ACTIONS(1016), - [anon_sym_make] = ACTIONS(1016), - [anon_sym_while] = ACTIONS(1016), - [anon_sym_do] = ACTIONS(1016), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_else] = ACTIONS(1016), - [anon_sym_match] = ACTIONS(1016), - [anon_sym_RBRACE] = ACTIONS(1016), - [anon_sym_try] = ACTIONS(1016), - [anon_sym_catch] = ACTIONS(1016), - [anon_sym_return] = ACTIONS(1016), - [anon_sym_source] = ACTIONS(1016), - [anon_sym_source_DASHenv] = ACTIONS(1016), - [anon_sym_register] = ACTIONS(1016), - [anon_sym_hide] = ACTIONS(1016), - [anon_sym_hide_DASHenv] = ACTIONS(1016), - [anon_sym_overlay] = ACTIONS(1016), - [anon_sym_as] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1016), - [anon_sym_DOT_DOT2] = ACTIONS(2009), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2011), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2011), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1016), - [aux_sym__val_number_decimal_token1] = ACTIONS(1016), - [aux_sym__val_number_decimal_token2] = ACTIONS(1016), - [aux_sym__val_number_decimal_token3] = ACTIONS(1016), - [aux_sym__val_number_decimal_token4] = ACTIONS(1016), - [aux_sym__val_number_token1] = ACTIONS(1016), - [aux_sym__val_number_token2] = ACTIONS(1016), - [aux_sym__val_number_token3] = ACTIONS(1016), - [aux_sym__val_number_token4] = ACTIONS(1016), - [aux_sym__val_number_token5] = ACTIONS(1016), - [aux_sym__val_number_token6] = ACTIONS(1016), - [anon_sym_DQUOTE] = ACTIONS(1016), - [sym__str_single_quotes] = ACTIONS(1016), - [sym__str_back_ticks] = ACTIONS(1016), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1016), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1016), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1016), - [sym__entry_separator] = ACTIONS(1012), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1012), - }, - [473] = { + [458] = { + [sym_cell_path] = STATE(751), + [sym_path] = STATE(565), + [sym_comment] = STATE(458), + [aux_sym_cell_path_repeat1] = STATE(484), + [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(1911), + [aux_sym_cmd_identifier_token3] = ACTIONS(1911), + [aux_sym_cmd_identifier_token4] = ACTIONS(1911), + [aux_sym_cmd_identifier_token5] = ACTIONS(1911), + [aux_sym_cmd_identifier_token6] = ACTIONS(1911), + [aux_sym_cmd_identifier_token7] = ACTIONS(1911), + [aux_sym_cmd_identifier_token8] = ACTIONS(1909), + [aux_sym_cmd_identifier_token9] = ACTIONS(1909), + [aux_sym_cmd_identifier_token10] = ACTIONS(1911), + [aux_sym_cmd_identifier_token11] = ACTIONS(1911), + [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(1911), + [aux_sym_cmd_identifier_token17] = ACTIONS(1911), + [aux_sym_cmd_identifier_token18] = ACTIONS(1911), + [aux_sym_cmd_identifier_token19] = ACTIONS(1911), + [aux_sym_cmd_identifier_token20] = ACTIONS(1911), + [aux_sym_cmd_identifier_token21] = ACTIONS(1911), + [aux_sym_cmd_identifier_token22] = ACTIONS(1911), + [aux_sym_cmd_identifier_token23] = ACTIONS(1911), + [aux_sym_cmd_identifier_token24] = ACTIONS(1911), + [aux_sym_cmd_identifier_token25] = ACTIONS(1911), + [aux_sym_cmd_identifier_token26] = ACTIONS(1911), + [aux_sym_cmd_identifier_token27] = ACTIONS(1911), + [aux_sym_cmd_identifier_token28] = ACTIONS(1911), + [aux_sym_cmd_identifier_token29] = ACTIONS(1911), + [aux_sym_cmd_identifier_token30] = ACTIONS(1911), + [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(1909), + [aux_sym_cmd_identifier_token35] = ACTIONS(1911), + [aux_sym_cmd_identifier_token36] = ACTIONS(1911), + [aux_sym_cmd_identifier_token37] = ACTIONS(1911), + [aux_sym_cmd_identifier_token38] = ACTIONS(1909), + [aux_sym_cmd_identifier_token39] = ACTIONS(1911), + [aux_sym_cmd_identifier_token40] = 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_LPAREN] = ACTIONS(1911), + [anon_sym_COMMA] = ACTIONS(1911), + [anon_sym_DOLLAR] = ACTIONS(1909), + [anon_sym_error] = ACTIONS(1909), + [anon_sym_DASH2] = ACTIONS(1909), + [anon_sym_break] = ACTIONS(1909), + [anon_sym_continue] = ACTIONS(1909), + [anon_sym_for] = ACTIONS(1909), + [anon_sym_in2] = ACTIONS(1909), + [anon_sym_loop] = ACTIONS(1909), + [anon_sym_make] = ACTIONS(1909), + [anon_sym_while] = ACTIONS(1909), + [anon_sym_do] = ACTIONS(1909), + [anon_sym_if] = ACTIONS(1909), + [anon_sym_else] = ACTIONS(1909), + [anon_sym_match] = ACTIONS(1909), + [anon_sym_RBRACE] = ACTIONS(1911), + [anon_sym_try] = ACTIONS(1909), + [anon_sym_catch] = ACTIONS(1909), + [anon_sym_return] = ACTIONS(1909), + [anon_sym_source] = ACTIONS(1909), + [anon_sym_source_DASHenv] = ACTIONS(1909), + [anon_sym_hide] = ACTIONS(1909), + [anon_sym_hide_DASHenv] = ACTIONS(1909), + [anon_sym_overlay] = ACTIONS(1909), + [anon_sym_as] = ACTIONS(1909), + [anon_sym_PLUS2] = ACTIONS(1909), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1911), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1911), + [aux_sym__val_number_decimal_token1] = ACTIONS(1909), + [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), + [aux_sym__val_number_token4] = ACTIONS(1909), + [aux_sym__val_number_token5] = ACTIONS(1909), + [aux_sym__val_number_token6] = ACTIONS(1909), + [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1911), + [anon_sym_register] = ACTIONS(1909), + [anon_sym_DOT2] = ACTIONS(1921), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1911), + }, + [459] = { + [sym_cell_path] = STATE(713), + [sym_path] = STATE(565), + [sym_comment] = STATE(459), + [aux_sym_cell_path_repeat1] = STATE(484), + [anon_sym_export] = ACTIONS(1961), + [anon_sym_alias] = ACTIONS(1961), + [anon_sym_let] = ACTIONS(1961), + [anon_sym_let_DASHenv] = ACTIONS(1961), + [anon_sym_mut] = ACTIONS(1961), + [anon_sym_const] = ACTIONS(1961), + [aux_sym_cmd_identifier_token1] = ACTIONS(1961), + [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(1961), + [aux_sym_cmd_identifier_token9] = ACTIONS(1961), + [aux_sym_cmd_identifier_token10] = ACTIONS(1963), + [aux_sym_cmd_identifier_token11] = ACTIONS(1963), + [aux_sym_cmd_identifier_token12] = ACTIONS(1961), + [aux_sym_cmd_identifier_token13] = ACTIONS(1961), + [aux_sym_cmd_identifier_token14] = ACTIONS(1961), + [aux_sym_cmd_identifier_token15] = ACTIONS(1961), + [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(1961), + [aux_sym_cmd_identifier_token35] = ACTIONS(1963), + [aux_sym_cmd_identifier_token36] = ACTIONS(1963), + [aux_sym_cmd_identifier_token37] = ACTIONS(1963), + [aux_sym_cmd_identifier_token38] = ACTIONS(1961), + [aux_sym_cmd_identifier_token39] = ACTIONS(1963), + [aux_sym_cmd_identifier_token40] = ACTIONS(1963), + [anon_sym_def] = ACTIONS(1961), + [anon_sym_export_DASHenv] = ACTIONS(1961), + [anon_sym_extern] = ACTIONS(1961), + [anon_sym_module] = ACTIONS(1961), + [anon_sym_use] = ACTIONS(1961), + [anon_sym_LPAREN] = ACTIONS(1963), + [anon_sym_COMMA] = ACTIONS(1963), + [anon_sym_DOLLAR] = ACTIONS(1961), + [anon_sym_error] = ACTIONS(1961), + [anon_sym_DASH2] = ACTIONS(1961), + [anon_sym_break] = ACTIONS(1961), + [anon_sym_continue] = ACTIONS(1961), + [anon_sym_for] = ACTIONS(1961), + [anon_sym_in2] = ACTIONS(1961), + [anon_sym_loop] = ACTIONS(1961), + [anon_sym_make] = ACTIONS(1961), + [anon_sym_while] = ACTIONS(1961), + [anon_sym_do] = ACTIONS(1961), + [anon_sym_if] = ACTIONS(1961), + [anon_sym_else] = ACTIONS(1961), + [anon_sym_match] = ACTIONS(1961), + [anon_sym_RBRACE] = ACTIONS(1963), + [anon_sym_try] = ACTIONS(1961), + [anon_sym_catch] = ACTIONS(1961), + [anon_sym_return] = ACTIONS(1961), + [anon_sym_source] = ACTIONS(1961), + [anon_sym_source_DASHenv] = ACTIONS(1961), + [anon_sym_hide] = ACTIONS(1961), + [anon_sym_hide_DASHenv] = ACTIONS(1961), + [anon_sym_overlay] = ACTIONS(1961), + [anon_sym_as] = ACTIONS(1961), + [anon_sym_PLUS2] = ACTIONS(1961), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1963), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1963), + [aux_sym__val_number_decimal_token4] = ACTIONS(1963), + [aux_sym__val_number_token1] = ACTIONS(1963), + [aux_sym__val_number_token2] = ACTIONS(1963), + [aux_sym__val_number_token3] = ACTIONS(1963), + [aux_sym__val_number_token4] = ACTIONS(1961), + [aux_sym__val_number_token5] = ACTIONS(1961), + [aux_sym__val_number_token6] = ACTIONS(1961), + [anon_sym_DQUOTE] = ACTIONS(1963), + [sym__str_single_quotes] = ACTIONS(1963), + [sym__str_back_ticks] = ACTIONS(1963), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1963), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1963), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1963), + [anon_sym_register] = ACTIONS(1961), + [anon_sym_DOT2] = ACTIONS(1921), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1963), + }, + [460] = { + [sym_cell_path] = STATE(700), + [sym_path] = STATE(565), + [sym_comment] = STATE(460), + [aux_sym_cell_path_repeat1] = STATE(484), + [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(1841), + [aux_sym_cmd_identifier_token3] = ACTIONS(1841), + [aux_sym_cmd_identifier_token4] = ACTIONS(1841), + [aux_sym_cmd_identifier_token5] = ACTIONS(1841), + [aux_sym_cmd_identifier_token6] = ACTIONS(1841), + [aux_sym_cmd_identifier_token7] = ACTIONS(1841), + [aux_sym_cmd_identifier_token8] = ACTIONS(1839), + [aux_sym_cmd_identifier_token9] = ACTIONS(1839), + [aux_sym_cmd_identifier_token10] = ACTIONS(1841), + [aux_sym_cmd_identifier_token11] = ACTIONS(1841), + [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(1841), + [aux_sym_cmd_identifier_token17] = ACTIONS(1841), + [aux_sym_cmd_identifier_token18] = ACTIONS(1841), + [aux_sym_cmd_identifier_token19] = ACTIONS(1841), + [aux_sym_cmd_identifier_token20] = ACTIONS(1841), + [aux_sym_cmd_identifier_token21] = ACTIONS(1841), + [aux_sym_cmd_identifier_token22] = ACTIONS(1841), + [aux_sym_cmd_identifier_token23] = ACTIONS(1841), + [aux_sym_cmd_identifier_token24] = ACTIONS(1841), + [aux_sym_cmd_identifier_token25] = ACTIONS(1841), + [aux_sym_cmd_identifier_token26] = ACTIONS(1841), + [aux_sym_cmd_identifier_token27] = ACTIONS(1841), + [aux_sym_cmd_identifier_token28] = ACTIONS(1841), + [aux_sym_cmd_identifier_token29] = ACTIONS(1841), + [aux_sym_cmd_identifier_token30] = ACTIONS(1841), + [aux_sym_cmd_identifier_token31] = ACTIONS(1841), + [aux_sym_cmd_identifier_token32] = ACTIONS(1841), + [aux_sym_cmd_identifier_token33] = ACTIONS(1841), + [aux_sym_cmd_identifier_token34] = ACTIONS(1839), + [aux_sym_cmd_identifier_token35] = ACTIONS(1841), + [aux_sym_cmd_identifier_token36] = ACTIONS(1841), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1839), + [anon_sym_error] = ACTIONS(1839), + [anon_sym_DASH2] = ACTIONS(1839), + [anon_sym_break] = ACTIONS(1839), + [anon_sym_continue] = ACTIONS(1839), + [anon_sym_for] = ACTIONS(1839), + [anon_sym_in2] = 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_hide] = ACTIONS(1839), + [anon_sym_hide_DASHenv] = ACTIONS(1839), + [anon_sym_overlay] = ACTIONS(1839), + [anon_sym_as] = ACTIONS(1839), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(1839), + [aux_sym__val_number_token5] = ACTIONS(1839), + [aux_sym__val_number_token6] = ACTIONS(1839), + [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1841), + [anon_sym_register] = ACTIONS(1839), + [anon_sym_DOT2] = ACTIONS(1921), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1841), + }, + [461] = { + [sym_cell_path] = STATE(695), + [sym_path] = STATE(565), + [sym_comment] = STATE(461), + [aux_sym_cell_path_repeat1] = STATE(484), + [anon_sym_export] = ACTIONS(1927), + [anon_sym_alias] = ACTIONS(1927), + [anon_sym_let] = ACTIONS(1927), + [anon_sym_let_DASHenv] = ACTIONS(1927), + [anon_sym_mut] = ACTIONS(1927), + [anon_sym_const] = ACTIONS(1927), + [aux_sym_cmd_identifier_token1] = ACTIONS(1927), + [aux_sym_cmd_identifier_token2] = ACTIONS(1929), + [aux_sym_cmd_identifier_token3] = ACTIONS(1929), + [aux_sym_cmd_identifier_token4] = ACTIONS(1929), + [aux_sym_cmd_identifier_token5] = ACTIONS(1929), + [aux_sym_cmd_identifier_token6] = ACTIONS(1929), + [aux_sym_cmd_identifier_token7] = ACTIONS(1929), + [aux_sym_cmd_identifier_token8] = ACTIONS(1927), + [aux_sym_cmd_identifier_token9] = ACTIONS(1927), + [aux_sym_cmd_identifier_token10] = ACTIONS(1929), + [aux_sym_cmd_identifier_token11] = ACTIONS(1929), + [aux_sym_cmd_identifier_token12] = ACTIONS(1927), + [aux_sym_cmd_identifier_token13] = ACTIONS(1927), + [aux_sym_cmd_identifier_token14] = ACTIONS(1927), + [aux_sym_cmd_identifier_token15] = ACTIONS(1927), + [aux_sym_cmd_identifier_token16] = ACTIONS(1929), + [aux_sym_cmd_identifier_token17] = ACTIONS(1929), + [aux_sym_cmd_identifier_token18] = ACTIONS(1929), + [aux_sym_cmd_identifier_token19] = ACTIONS(1929), + [aux_sym_cmd_identifier_token20] = ACTIONS(1929), + [aux_sym_cmd_identifier_token21] = ACTIONS(1929), + [aux_sym_cmd_identifier_token22] = ACTIONS(1929), + [aux_sym_cmd_identifier_token23] = ACTIONS(1929), + [aux_sym_cmd_identifier_token24] = ACTIONS(1929), + [aux_sym_cmd_identifier_token25] = ACTIONS(1929), + [aux_sym_cmd_identifier_token26] = ACTIONS(1929), + [aux_sym_cmd_identifier_token27] = ACTIONS(1929), + [aux_sym_cmd_identifier_token28] = ACTIONS(1929), + [aux_sym_cmd_identifier_token29] = ACTIONS(1929), + [aux_sym_cmd_identifier_token30] = ACTIONS(1929), + [aux_sym_cmd_identifier_token31] = ACTIONS(1929), + [aux_sym_cmd_identifier_token32] = ACTIONS(1929), + [aux_sym_cmd_identifier_token33] = ACTIONS(1929), + [aux_sym_cmd_identifier_token34] = ACTIONS(1927), + [aux_sym_cmd_identifier_token35] = ACTIONS(1929), + [aux_sym_cmd_identifier_token36] = ACTIONS(1929), + [aux_sym_cmd_identifier_token37] = ACTIONS(1929), + [aux_sym_cmd_identifier_token38] = ACTIONS(1927), + [aux_sym_cmd_identifier_token39] = ACTIONS(1929), + [aux_sym_cmd_identifier_token40] = ACTIONS(1929), + [anon_sym_def] = ACTIONS(1927), + [anon_sym_export_DASHenv] = ACTIONS(1927), + [anon_sym_extern] = ACTIONS(1927), + [anon_sym_module] = ACTIONS(1927), + [anon_sym_use] = ACTIONS(1927), + [anon_sym_LPAREN] = ACTIONS(1929), + [anon_sym_COMMA] = ACTIONS(1929), + [anon_sym_DOLLAR] = ACTIONS(1927), + [anon_sym_error] = ACTIONS(1927), + [anon_sym_DASH2] = ACTIONS(1927), + [anon_sym_break] = ACTIONS(1927), + [anon_sym_continue] = ACTIONS(1927), + [anon_sym_for] = ACTIONS(1927), + [anon_sym_in2] = ACTIONS(1927), + [anon_sym_loop] = ACTIONS(1927), + [anon_sym_make] = ACTIONS(1927), + [anon_sym_while] = ACTIONS(1927), + [anon_sym_do] = ACTIONS(1927), + [anon_sym_if] = ACTIONS(1927), + [anon_sym_else] = ACTIONS(1927), + [anon_sym_match] = ACTIONS(1927), + [anon_sym_RBRACE] = ACTIONS(1929), + [anon_sym_try] = ACTIONS(1927), + [anon_sym_catch] = ACTIONS(1927), + [anon_sym_return] = ACTIONS(1927), + [anon_sym_source] = ACTIONS(1927), + [anon_sym_source_DASHenv] = ACTIONS(1927), + [anon_sym_hide] = ACTIONS(1927), + [anon_sym_hide_DASHenv] = ACTIONS(1927), + [anon_sym_overlay] = ACTIONS(1927), + [anon_sym_as] = ACTIONS(1927), + [anon_sym_PLUS2] = ACTIONS(1927), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1929), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1929), + [aux_sym__val_number_decimal_token1] = ACTIONS(1927), + [aux_sym__val_number_decimal_token2] = ACTIONS(1929), + [aux_sym__val_number_decimal_token3] = ACTIONS(1929), + [aux_sym__val_number_decimal_token4] = ACTIONS(1929), + [aux_sym__val_number_token1] = ACTIONS(1929), + [aux_sym__val_number_token2] = ACTIONS(1929), + [aux_sym__val_number_token3] = ACTIONS(1929), + [aux_sym__val_number_token4] = ACTIONS(1927), + [aux_sym__val_number_token5] = ACTIONS(1927), + [aux_sym__val_number_token6] = ACTIONS(1927), + [anon_sym_DQUOTE] = ACTIONS(1929), + [sym__str_single_quotes] = ACTIONS(1929), + [sym__str_back_ticks] = ACTIONS(1929), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1929), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1929), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1929), + [anon_sym_register] = ACTIONS(1927), + [anon_sym_DOT2] = ACTIONS(1921), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1929), + }, + [462] = { + [sym_cell_path] = STATE(678), + [sym_path] = STATE(565), + [sym_comment] = STATE(462), + [aux_sym_cell_path_repeat1] = STATE(484), + [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(1849), + [aux_sym_cmd_identifier_token3] = ACTIONS(1849), + [aux_sym_cmd_identifier_token4] = ACTIONS(1849), + [aux_sym_cmd_identifier_token5] = ACTIONS(1849), + [aux_sym_cmd_identifier_token6] = ACTIONS(1849), + [aux_sym_cmd_identifier_token7] = ACTIONS(1849), + [aux_sym_cmd_identifier_token8] = ACTIONS(1847), + [aux_sym_cmd_identifier_token9] = ACTIONS(1847), + [aux_sym_cmd_identifier_token10] = ACTIONS(1849), + [aux_sym_cmd_identifier_token11] = ACTIONS(1849), + [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(1849), + [aux_sym_cmd_identifier_token17] = ACTIONS(1849), + [aux_sym_cmd_identifier_token18] = ACTIONS(1849), + [aux_sym_cmd_identifier_token19] = ACTIONS(1849), + [aux_sym_cmd_identifier_token20] = ACTIONS(1849), + [aux_sym_cmd_identifier_token21] = ACTIONS(1849), + [aux_sym_cmd_identifier_token22] = ACTIONS(1849), + [aux_sym_cmd_identifier_token23] = ACTIONS(1849), + [aux_sym_cmd_identifier_token24] = ACTIONS(1849), + [aux_sym_cmd_identifier_token25] = ACTIONS(1849), + [aux_sym_cmd_identifier_token26] = ACTIONS(1849), + [aux_sym_cmd_identifier_token27] = ACTIONS(1849), + [aux_sym_cmd_identifier_token28] = ACTIONS(1849), + [aux_sym_cmd_identifier_token29] = ACTIONS(1849), + [aux_sym_cmd_identifier_token30] = ACTIONS(1849), + [aux_sym_cmd_identifier_token31] = ACTIONS(1849), + [aux_sym_cmd_identifier_token32] = ACTIONS(1849), + [aux_sym_cmd_identifier_token33] = ACTIONS(1849), + [aux_sym_cmd_identifier_token34] = ACTIONS(1847), + [aux_sym_cmd_identifier_token35] = ACTIONS(1849), + [aux_sym_cmd_identifier_token36] = ACTIONS(1849), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1849), + [anon_sym_DOLLAR] = ACTIONS(1847), + [anon_sym_error] = ACTIONS(1847), + [anon_sym_DASH2] = ACTIONS(1847), + [anon_sym_break] = ACTIONS(1847), + [anon_sym_continue] = ACTIONS(1847), + [anon_sym_for] = ACTIONS(1847), + [anon_sym_in2] = 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_hide] = ACTIONS(1847), + [anon_sym_hide_DASHenv] = ACTIONS(1847), + [anon_sym_overlay] = ACTIONS(1847), + [anon_sym_as] = ACTIONS(1847), + [anon_sym_PLUS2] = ACTIONS(1847), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1849), + [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), + [aux_sym__val_number_token4] = ACTIONS(1847), + [aux_sym__val_number_token5] = ACTIONS(1847), + [aux_sym__val_number_token6] = ACTIONS(1847), + [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1849), + [anon_sym_register] = ACTIONS(1847), + [anon_sym_DOT2] = ACTIONS(1921), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1849), + }, + [463] = { + [sym_cell_path] = STATE(676), + [sym_path] = STATE(565), + [sym_comment] = STATE(463), + [aux_sym_cell_path_repeat1] = STATE(484), + [anon_sym_export] = ACTIONS(1853), + [anon_sym_alias] = ACTIONS(1853), + [anon_sym_let] = ACTIONS(1853), + [anon_sym_let_DASHenv] = ACTIONS(1853), + [anon_sym_mut] = ACTIONS(1853), + [anon_sym_const] = ACTIONS(1853), + [aux_sym_cmd_identifier_token1] = ACTIONS(1853), + [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(1853), + [aux_sym_cmd_identifier_token9] = ACTIONS(1853), + [aux_sym_cmd_identifier_token10] = ACTIONS(1855), + [aux_sym_cmd_identifier_token11] = ACTIONS(1855), + [aux_sym_cmd_identifier_token12] = ACTIONS(1853), + [aux_sym_cmd_identifier_token13] = ACTIONS(1853), + [aux_sym_cmd_identifier_token14] = ACTIONS(1853), + [aux_sym_cmd_identifier_token15] = ACTIONS(1853), + [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(1853), + [aux_sym_cmd_identifier_token35] = ACTIONS(1855), + [aux_sym_cmd_identifier_token36] = ACTIONS(1855), + [aux_sym_cmd_identifier_token37] = ACTIONS(1855), + [aux_sym_cmd_identifier_token38] = ACTIONS(1853), + [aux_sym_cmd_identifier_token39] = ACTIONS(1855), + [aux_sym_cmd_identifier_token40] = ACTIONS(1855), + [anon_sym_def] = ACTIONS(1853), + [anon_sym_export_DASHenv] = ACTIONS(1853), + [anon_sym_extern] = ACTIONS(1853), + [anon_sym_module] = ACTIONS(1853), + [anon_sym_use] = ACTIONS(1853), + [anon_sym_LPAREN] = ACTIONS(1855), + [anon_sym_COMMA] = ACTIONS(1855), + [anon_sym_DOLLAR] = ACTIONS(1853), + [anon_sym_error] = ACTIONS(1853), + [anon_sym_DASH2] = ACTIONS(1853), + [anon_sym_break] = ACTIONS(1853), + [anon_sym_continue] = ACTIONS(1853), + [anon_sym_for] = ACTIONS(1853), + [anon_sym_in2] = ACTIONS(1853), + [anon_sym_loop] = ACTIONS(1853), + [anon_sym_make] = ACTIONS(1853), + [anon_sym_while] = ACTIONS(1853), + [anon_sym_do] = ACTIONS(1853), + [anon_sym_if] = ACTIONS(1853), + [anon_sym_else] = ACTIONS(1853), + [anon_sym_match] = ACTIONS(1853), + [anon_sym_RBRACE] = ACTIONS(1855), + [anon_sym_try] = ACTIONS(1853), + [anon_sym_catch] = ACTIONS(1853), + [anon_sym_return] = ACTIONS(1853), + [anon_sym_source] = ACTIONS(1853), + [anon_sym_source_DASHenv] = ACTIONS(1853), + [anon_sym_hide] = ACTIONS(1853), + [anon_sym_hide_DASHenv] = ACTIONS(1853), + [anon_sym_overlay] = ACTIONS(1853), + [anon_sym_as] = ACTIONS(1853), + [anon_sym_PLUS2] = ACTIONS(1853), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1855), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1855), + [aux_sym__val_number_decimal_token1] = ACTIONS(1853), + [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), + [aux_sym__val_number_token4] = ACTIONS(1853), + [aux_sym__val_number_token5] = ACTIONS(1853), + [aux_sym__val_number_token6] = ACTIONS(1853), + [anon_sym_DQUOTE] = ACTIONS(1855), + [sym__str_single_quotes] = ACTIONS(1855), + [sym__str_back_ticks] = ACTIONS(1855), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1855), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1855), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1855), + [anon_sym_register] = ACTIONS(1853), + [anon_sym_DOT2] = ACTIONS(1921), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1855), + }, + [464] = { + [sym_comment] = STATE(464), + [anon_sym_export] = ACTIONS(1676), + [anon_sym_alias] = ACTIONS(1676), + [anon_sym_let] = ACTIONS(1676), + [anon_sym_let_DASHenv] = ACTIONS(1676), + [anon_sym_mut] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [aux_sym_cmd_identifier_token1] = ACTIONS(1676), + [aux_sym_cmd_identifier_token2] = ACTIONS(1676), + [aux_sym_cmd_identifier_token3] = ACTIONS(1676), + [aux_sym_cmd_identifier_token4] = ACTIONS(1676), + [aux_sym_cmd_identifier_token5] = ACTIONS(1676), + [aux_sym_cmd_identifier_token6] = ACTIONS(1676), + [aux_sym_cmd_identifier_token7] = ACTIONS(1676), + [aux_sym_cmd_identifier_token8] = ACTIONS(1676), + [aux_sym_cmd_identifier_token9] = ACTIONS(1676), + [aux_sym_cmd_identifier_token10] = ACTIONS(1676), + [aux_sym_cmd_identifier_token11] = ACTIONS(1676), + [aux_sym_cmd_identifier_token12] = ACTIONS(1676), + [aux_sym_cmd_identifier_token13] = ACTIONS(1676), + [aux_sym_cmd_identifier_token14] = ACTIONS(1676), + [aux_sym_cmd_identifier_token15] = ACTIONS(1676), + [aux_sym_cmd_identifier_token16] = ACTIONS(1676), + [aux_sym_cmd_identifier_token17] = ACTIONS(1676), + [aux_sym_cmd_identifier_token18] = ACTIONS(1676), + [aux_sym_cmd_identifier_token19] = ACTIONS(1676), + [aux_sym_cmd_identifier_token20] = ACTIONS(1676), + [aux_sym_cmd_identifier_token21] = ACTIONS(1676), + [aux_sym_cmd_identifier_token22] = ACTIONS(1676), + [aux_sym_cmd_identifier_token23] = ACTIONS(1676), + [aux_sym_cmd_identifier_token24] = ACTIONS(1676), + [aux_sym_cmd_identifier_token25] = ACTIONS(1676), + [aux_sym_cmd_identifier_token26] = ACTIONS(1676), + [aux_sym_cmd_identifier_token27] = ACTIONS(1676), + [aux_sym_cmd_identifier_token28] = ACTIONS(1676), + [aux_sym_cmd_identifier_token29] = ACTIONS(1676), + [aux_sym_cmd_identifier_token30] = ACTIONS(1676), + [aux_sym_cmd_identifier_token31] = ACTIONS(1676), + [aux_sym_cmd_identifier_token32] = ACTIONS(1676), + [aux_sym_cmd_identifier_token33] = ACTIONS(1676), + [aux_sym_cmd_identifier_token34] = ACTIONS(1676), + [aux_sym_cmd_identifier_token35] = ACTIONS(1676), + [aux_sym_cmd_identifier_token36] = ACTIONS(1676), + [aux_sym_cmd_identifier_token37] = ACTIONS(1676), + [aux_sym_cmd_identifier_token38] = ACTIONS(1676), + [aux_sym_cmd_identifier_token39] = ACTIONS(1676), + [aux_sym_cmd_identifier_token40] = ACTIONS(1676), + [anon_sym_def] = ACTIONS(1676), + [anon_sym_export_DASHenv] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym_module] = ACTIONS(1676), + [anon_sym_use] = ACTIONS(1676), + [anon_sym_LPAREN] = ACTIONS(1676), + [anon_sym_COMMA] = ACTIONS(1676), + [anon_sym_DOLLAR] = ACTIONS(1676), + [anon_sym_error] = ACTIONS(1676), + [anon_sym_DASH2] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_in2] = ACTIONS(1676), + [anon_sym_loop] = ACTIONS(1676), + [anon_sym_make] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_else] = ACTIONS(1676), + [anon_sym_match] = ACTIONS(1676), + [anon_sym_RBRACE] = ACTIONS(1676), + [anon_sym_try] = ACTIONS(1676), + [anon_sym_catch] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_source] = ACTIONS(1676), + [anon_sym_source_DASHenv] = ACTIONS(1676), + [anon_sym_hide] = ACTIONS(1676), + [anon_sym_hide_DASHenv] = ACTIONS(1676), + [anon_sym_overlay] = ACTIONS(1676), + [anon_sym_as] = ACTIONS(1676), + [anon_sym_PLUS2] = ACTIONS(1676), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1676), + [anon_sym_DOT_DOT2] = ACTIONS(1676), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1678), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1678), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1676), + [aux_sym__val_number_decimal_token1] = ACTIONS(1676), + [aux_sym__val_number_decimal_token2] = ACTIONS(1676), + [aux_sym__val_number_decimal_token3] = ACTIONS(1676), + [aux_sym__val_number_decimal_token4] = ACTIONS(1676), + [aux_sym__val_number_token1] = ACTIONS(1676), + [aux_sym__val_number_token2] = ACTIONS(1676), + [aux_sym__val_number_token3] = ACTIONS(1676), + [aux_sym__val_number_token4] = ACTIONS(1676), + [aux_sym__val_number_token5] = ACTIONS(1676), + [aux_sym__val_number_token6] = ACTIONS(1676), + [anon_sym_DQUOTE] = ACTIONS(1676), + [sym__str_single_quotes] = ACTIONS(1676), + [sym__str_back_ticks] = ACTIONS(1676), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1676), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1676), + [sym__entry_separator] = ACTIONS(1678), + [anon_sym_register] = ACTIONS(1676), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1678), + }, + [465] = { + [sym_cell_path] = STATE(730), + [sym_path] = STATE(565), + [sym_comment] = STATE(465), + [aux_sym_cell_path_repeat1] = STATE(484), + [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(1941), + [aux_sym_cmd_identifier_token3] = ACTIONS(1941), + [aux_sym_cmd_identifier_token4] = ACTIONS(1941), + [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [aux_sym_cmd_identifier_token6] = ACTIONS(1941), + [aux_sym_cmd_identifier_token7] = ACTIONS(1941), + [aux_sym_cmd_identifier_token8] = ACTIONS(1939), + [aux_sym_cmd_identifier_token9] = ACTIONS(1939), + [aux_sym_cmd_identifier_token10] = ACTIONS(1941), + [aux_sym_cmd_identifier_token11] = ACTIONS(1941), + [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(1941), + [aux_sym_cmd_identifier_token17] = ACTIONS(1941), + [aux_sym_cmd_identifier_token18] = ACTIONS(1941), + [aux_sym_cmd_identifier_token19] = ACTIONS(1941), + [aux_sym_cmd_identifier_token20] = ACTIONS(1941), + [aux_sym_cmd_identifier_token21] = ACTIONS(1941), + [aux_sym_cmd_identifier_token22] = ACTIONS(1941), + [aux_sym_cmd_identifier_token23] = ACTIONS(1941), + [aux_sym_cmd_identifier_token24] = ACTIONS(1941), + [aux_sym_cmd_identifier_token25] = ACTIONS(1941), + [aux_sym_cmd_identifier_token26] = ACTIONS(1941), + [aux_sym_cmd_identifier_token27] = ACTIONS(1941), + [aux_sym_cmd_identifier_token28] = ACTIONS(1941), + [aux_sym_cmd_identifier_token29] = ACTIONS(1941), + [aux_sym_cmd_identifier_token30] = ACTIONS(1941), + [aux_sym_cmd_identifier_token31] = ACTIONS(1941), + [aux_sym_cmd_identifier_token32] = ACTIONS(1941), + [aux_sym_cmd_identifier_token33] = ACTIONS(1941), + [aux_sym_cmd_identifier_token34] = ACTIONS(1939), + [aux_sym_cmd_identifier_token35] = ACTIONS(1941), + [aux_sym_cmd_identifier_token36] = ACTIONS(1941), + [aux_sym_cmd_identifier_token37] = ACTIONS(1941), + [aux_sym_cmd_identifier_token38] = ACTIONS(1939), + [aux_sym_cmd_identifier_token39] = ACTIONS(1941), + [aux_sym_cmd_identifier_token40] = ACTIONS(1941), + [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(1941), + [anon_sym_COMMA] = ACTIONS(1941), + [anon_sym_DOLLAR] = ACTIONS(1939), + [anon_sym_error] = ACTIONS(1939), + [anon_sym_DASH2] = ACTIONS(1939), + [anon_sym_break] = ACTIONS(1939), + [anon_sym_continue] = ACTIONS(1939), + [anon_sym_for] = ACTIONS(1939), + [anon_sym_in2] = 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(1941), + [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_hide] = ACTIONS(1939), + [anon_sym_hide_DASHenv] = ACTIONS(1939), + [anon_sym_overlay] = ACTIONS(1939), + [anon_sym_as] = ACTIONS(1939), + [anon_sym_PLUS2] = ACTIONS(1939), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1941), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1939), + [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), + [aux_sym__val_number_token4] = ACTIONS(1939), + [aux_sym__val_number_token5] = ACTIONS(1939), + [aux_sym__val_number_token6] = ACTIONS(1939), + [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1941), + [anon_sym_register] = ACTIONS(1939), + [anon_sym_DOT2] = ACTIONS(1921), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1941), + }, + [466] = { + [sym_cell_path] = STATE(696), + [sym_path] = STATE(565), + [sym_comment] = STATE(466), + [aux_sym_cell_path_repeat1] = STATE(484), + [anon_sym_export] = ACTIONS(1877), + [anon_sym_alias] = ACTIONS(1877), + [anon_sym_let] = ACTIONS(1877), + [anon_sym_let_DASHenv] = ACTIONS(1877), + [anon_sym_mut] = ACTIONS(1877), + [anon_sym_const] = ACTIONS(1877), + [aux_sym_cmd_identifier_token1] = ACTIONS(1877), + [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(1877), + [aux_sym_cmd_identifier_token9] = ACTIONS(1877), + [aux_sym_cmd_identifier_token10] = ACTIONS(1879), + [aux_sym_cmd_identifier_token11] = ACTIONS(1879), + [aux_sym_cmd_identifier_token12] = ACTIONS(1877), + [aux_sym_cmd_identifier_token13] = ACTIONS(1877), + [aux_sym_cmd_identifier_token14] = ACTIONS(1877), + [aux_sym_cmd_identifier_token15] = ACTIONS(1877), + [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(1877), + [aux_sym_cmd_identifier_token35] = ACTIONS(1879), + [aux_sym_cmd_identifier_token36] = ACTIONS(1879), + [aux_sym_cmd_identifier_token37] = ACTIONS(1879), + [aux_sym_cmd_identifier_token38] = ACTIONS(1877), + [aux_sym_cmd_identifier_token39] = ACTIONS(1879), + [aux_sym_cmd_identifier_token40] = ACTIONS(1879), + [anon_sym_def] = ACTIONS(1877), + [anon_sym_export_DASHenv] = ACTIONS(1877), + [anon_sym_extern] = ACTIONS(1877), + [anon_sym_module] = ACTIONS(1877), + [anon_sym_use] = ACTIONS(1877), + [anon_sym_LPAREN] = ACTIONS(1879), + [anon_sym_COMMA] = ACTIONS(1879), + [anon_sym_DOLLAR] = ACTIONS(1877), + [anon_sym_error] = ACTIONS(1877), + [anon_sym_DASH2] = ACTIONS(1877), + [anon_sym_break] = ACTIONS(1877), + [anon_sym_continue] = ACTIONS(1877), + [anon_sym_for] = ACTIONS(1877), + [anon_sym_in2] = ACTIONS(1877), + [anon_sym_loop] = ACTIONS(1877), + [anon_sym_make] = ACTIONS(1877), + [anon_sym_while] = ACTIONS(1877), + [anon_sym_do] = ACTIONS(1877), + [anon_sym_if] = ACTIONS(1877), + [anon_sym_else] = ACTIONS(1877), + [anon_sym_match] = ACTIONS(1877), + [anon_sym_RBRACE] = ACTIONS(1879), + [anon_sym_try] = ACTIONS(1877), + [anon_sym_catch] = ACTIONS(1877), + [anon_sym_return] = ACTIONS(1877), + [anon_sym_source] = ACTIONS(1877), + [anon_sym_source_DASHenv] = ACTIONS(1877), + [anon_sym_hide] = ACTIONS(1877), + [anon_sym_hide_DASHenv] = ACTIONS(1877), + [anon_sym_overlay] = ACTIONS(1877), + [anon_sym_as] = ACTIONS(1877), + [anon_sym_PLUS2] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1879), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1879), + [aux_sym__val_number_decimal_token1] = ACTIONS(1877), + [aux_sym__val_number_decimal_token2] = 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), + [aux_sym__val_number_token4] = ACTIONS(1877), + [aux_sym__val_number_token5] = ACTIONS(1877), + [aux_sym__val_number_token6] = ACTIONS(1877), + [anon_sym_DQUOTE] = ACTIONS(1879), + [sym__str_single_quotes] = ACTIONS(1879), + [sym__str_back_ticks] = ACTIONS(1879), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1879), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1879), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1879), + [anon_sym_register] = ACTIONS(1877), + [anon_sym_DOT2] = ACTIONS(1921), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1879), + }, + [467] = { + [sym_comment] = STATE(467), + [anon_sym_export] = ACTIONS(1693), + [anon_sym_alias] = ACTIONS(1693), + [anon_sym_let] = ACTIONS(1693), + [anon_sym_let_DASHenv] = ACTIONS(1693), + [anon_sym_mut] = ACTIONS(1693), + [anon_sym_const] = ACTIONS(1693), + [aux_sym_cmd_identifier_token1] = ACTIONS(1693), + [aux_sym_cmd_identifier_token2] = ACTIONS(1695), + [aux_sym_cmd_identifier_token3] = ACTIONS(1695), + [aux_sym_cmd_identifier_token4] = ACTIONS(1695), + [aux_sym_cmd_identifier_token5] = ACTIONS(1695), + [aux_sym_cmd_identifier_token6] = ACTIONS(1695), + [aux_sym_cmd_identifier_token7] = ACTIONS(1695), + [aux_sym_cmd_identifier_token8] = ACTIONS(1693), + [aux_sym_cmd_identifier_token9] = ACTIONS(1693), + [aux_sym_cmd_identifier_token10] = ACTIONS(1695), + [aux_sym_cmd_identifier_token11] = ACTIONS(1695), + [aux_sym_cmd_identifier_token12] = ACTIONS(1693), + [aux_sym_cmd_identifier_token13] = ACTIONS(1693), + [aux_sym_cmd_identifier_token14] = ACTIONS(1693), + [aux_sym_cmd_identifier_token15] = ACTIONS(1693), + [aux_sym_cmd_identifier_token16] = ACTIONS(1695), + [aux_sym_cmd_identifier_token17] = ACTIONS(1695), + [aux_sym_cmd_identifier_token18] = ACTIONS(1695), + [aux_sym_cmd_identifier_token19] = ACTIONS(1695), + [aux_sym_cmd_identifier_token20] = ACTIONS(1695), + [aux_sym_cmd_identifier_token21] = ACTIONS(1695), + [aux_sym_cmd_identifier_token22] = ACTIONS(1695), + [aux_sym_cmd_identifier_token23] = ACTIONS(1695), + [aux_sym_cmd_identifier_token24] = ACTIONS(1695), + [aux_sym_cmd_identifier_token25] = ACTIONS(1695), + [aux_sym_cmd_identifier_token26] = ACTIONS(1695), + [aux_sym_cmd_identifier_token27] = ACTIONS(1695), + [aux_sym_cmd_identifier_token28] = ACTIONS(1695), + [aux_sym_cmd_identifier_token29] = ACTIONS(1695), + [aux_sym_cmd_identifier_token30] = ACTIONS(1695), + [aux_sym_cmd_identifier_token31] = ACTIONS(1695), + [aux_sym_cmd_identifier_token32] = ACTIONS(1695), + [aux_sym_cmd_identifier_token33] = ACTIONS(1695), + [aux_sym_cmd_identifier_token34] = ACTIONS(1693), + [aux_sym_cmd_identifier_token35] = ACTIONS(1695), + [aux_sym_cmd_identifier_token36] = ACTIONS(1695), + [aux_sym_cmd_identifier_token37] = ACTIONS(1695), + [aux_sym_cmd_identifier_token38] = ACTIONS(1693), + [aux_sym_cmd_identifier_token39] = ACTIONS(1695), + [aux_sym_cmd_identifier_token40] = ACTIONS(1695), + [anon_sym_def] = ACTIONS(1693), + [anon_sym_export_DASHenv] = ACTIONS(1693), + [anon_sym_extern] = ACTIONS(1693), + [anon_sym_module] = ACTIONS(1693), + [anon_sym_use] = ACTIONS(1693), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_COMMA] = ACTIONS(1695), + [anon_sym_DOLLAR] = ACTIONS(1693), + [anon_sym_error] = ACTIONS(1693), + [anon_sym_DASH2] = ACTIONS(1693), + [anon_sym_break] = ACTIONS(1693), + [anon_sym_continue] = ACTIONS(1693), + [anon_sym_for] = ACTIONS(1693), + [anon_sym_in2] = ACTIONS(1693), + [anon_sym_loop] = ACTIONS(1693), + [anon_sym_make] = ACTIONS(1693), + [anon_sym_while] = ACTIONS(1693), + [anon_sym_do] = ACTIONS(1693), + [anon_sym_if] = ACTIONS(1693), + [anon_sym_else] = ACTIONS(1693), + [anon_sym_match] = ACTIONS(1693), + [anon_sym_RBRACE] = ACTIONS(1695), + [anon_sym_try] = ACTIONS(1693), + [anon_sym_catch] = ACTIONS(1693), + [anon_sym_return] = ACTIONS(1693), + [anon_sym_source] = ACTIONS(1693), + [anon_sym_source_DASHenv] = ACTIONS(1693), + [anon_sym_hide] = ACTIONS(1693), + [anon_sym_hide_DASHenv] = ACTIONS(1693), + [anon_sym_overlay] = ACTIONS(1693), + [anon_sym_as] = ACTIONS(1693), + [anon_sym_LPAREN2] = ACTIONS(1695), + [anon_sym_PLUS2] = ACTIONS(1693), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1695), + [aux_sym__immediate_decimal_token1] = ACTIONS(1996), + [aux_sym__immediate_decimal_token2] = ACTIONS(1998), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1695), + [aux_sym__val_number_decimal_token1] = ACTIONS(1693), + [aux_sym__val_number_decimal_token2] = ACTIONS(1695), + [aux_sym__val_number_decimal_token3] = ACTIONS(1695), + [aux_sym__val_number_decimal_token4] = ACTIONS(1695), + [aux_sym__val_number_token1] = ACTIONS(1695), + [aux_sym__val_number_token2] = ACTIONS(1695), + [aux_sym__val_number_token3] = ACTIONS(1695), + [aux_sym__val_number_token4] = ACTIONS(1693), + [aux_sym__val_number_token5] = ACTIONS(1693), + [aux_sym__val_number_token6] = ACTIONS(1693), + [anon_sym_DQUOTE] = ACTIONS(1695), + [sym__str_single_quotes] = ACTIONS(1695), + [sym__str_back_ticks] = ACTIONS(1695), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1695), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1695), + [anon_sym_register] = ACTIONS(1693), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1695), + }, + [468] = { + [sym_cell_path] = STATE(701), + [sym_path] = STATE(565), + [sym_comment] = STATE(468), + [aux_sym_cell_path_repeat1] = STATE(484), + [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(1937), + [aux_sym_cmd_identifier_token3] = ACTIONS(1937), + [aux_sym_cmd_identifier_token4] = ACTIONS(1937), + [aux_sym_cmd_identifier_token5] = ACTIONS(1937), + [aux_sym_cmd_identifier_token6] = ACTIONS(1937), + [aux_sym_cmd_identifier_token7] = ACTIONS(1937), + [aux_sym_cmd_identifier_token8] = ACTIONS(1935), + [aux_sym_cmd_identifier_token9] = ACTIONS(1935), + [aux_sym_cmd_identifier_token10] = ACTIONS(1937), + [aux_sym_cmd_identifier_token11] = ACTIONS(1937), + [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(1937), + [aux_sym_cmd_identifier_token17] = ACTIONS(1937), + [aux_sym_cmd_identifier_token18] = ACTIONS(1937), + [aux_sym_cmd_identifier_token19] = ACTIONS(1937), + [aux_sym_cmd_identifier_token20] = ACTIONS(1937), + [aux_sym_cmd_identifier_token21] = ACTIONS(1937), + [aux_sym_cmd_identifier_token22] = ACTIONS(1937), + [aux_sym_cmd_identifier_token23] = ACTIONS(1937), + [aux_sym_cmd_identifier_token24] = ACTIONS(1937), + [aux_sym_cmd_identifier_token25] = ACTIONS(1937), + [aux_sym_cmd_identifier_token26] = ACTIONS(1937), + [aux_sym_cmd_identifier_token27] = ACTIONS(1937), + [aux_sym_cmd_identifier_token28] = ACTIONS(1937), + [aux_sym_cmd_identifier_token29] = ACTIONS(1937), + [aux_sym_cmd_identifier_token30] = ACTIONS(1937), + [aux_sym_cmd_identifier_token31] = ACTIONS(1937), + [aux_sym_cmd_identifier_token32] = ACTIONS(1937), + [aux_sym_cmd_identifier_token33] = ACTIONS(1937), + [aux_sym_cmd_identifier_token34] = ACTIONS(1935), + [aux_sym_cmd_identifier_token35] = ACTIONS(1937), + [aux_sym_cmd_identifier_token36] = ACTIONS(1937), + [aux_sym_cmd_identifier_token37] = ACTIONS(1937), + [aux_sym_cmd_identifier_token38] = ACTIONS(1935), + [aux_sym_cmd_identifier_token39] = ACTIONS(1937), + [aux_sym_cmd_identifier_token40] = ACTIONS(1937), + [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(1937), + [anon_sym_COMMA] = ACTIONS(1937), + [anon_sym_DOLLAR] = ACTIONS(1935), + [anon_sym_error] = ACTIONS(1935), + [anon_sym_DASH2] = ACTIONS(1935), + [anon_sym_break] = ACTIONS(1935), + [anon_sym_continue] = ACTIONS(1935), + [anon_sym_for] = ACTIONS(1935), + [anon_sym_in2] = 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(1937), + [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_hide] = ACTIONS(1935), + [anon_sym_hide_DASHenv] = ACTIONS(1935), + [anon_sym_overlay] = ACTIONS(1935), + [anon_sym_as] = ACTIONS(1935), + [anon_sym_PLUS2] = ACTIONS(1935), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1937), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1937), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1937), + [aux_sym__val_number_decimal_token4] = ACTIONS(1937), + [aux_sym__val_number_token1] = ACTIONS(1937), + [aux_sym__val_number_token2] = ACTIONS(1937), + [aux_sym__val_number_token3] = ACTIONS(1937), + [aux_sym__val_number_token4] = ACTIONS(1935), + [aux_sym__val_number_token5] = ACTIONS(1935), + [aux_sym__val_number_token6] = ACTIONS(1935), + [anon_sym_DQUOTE] = ACTIONS(1937), + [sym__str_single_quotes] = ACTIONS(1937), + [sym__str_back_ticks] = ACTIONS(1937), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1937), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1937), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1937), + [anon_sym_register] = ACTIONS(1935), + [anon_sym_DOT2] = ACTIONS(1921), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1937), + }, + [469] = { + [sym_comment] = STATE(469), + [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(1703), + [aux_sym_cmd_identifier_token3] = ACTIONS(1703), + [aux_sym_cmd_identifier_token4] = ACTIONS(1703), + [aux_sym_cmd_identifier_token5] = ACTIONS(1703), + [aux_sym_cmd_identifier_token6] = ACTIONS(1703), + [aux_sym_cmd_identifier_token7] = ACTIONS(1703), + [aux_sym_cmd_identifier_token8] = ACTIONS(1701), + [aux_sym_cmd_identifier_token9] = ACTIONS(1701), + [aux_sym_cmd_identifier_token10] = ACTIONS(1703), + [aux_sym_cmd_identifier_token11] = ACTIONS(1703), + [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(1703), + [aux_sym_cmd_identifier_token17] = ACTIONS(1703), + [aux_sym_cmd_identifier_token18] = ACTIONS(1703), + [aux_sym_cmd_identifier_token19] = ACTIONS(1703), + [aux_sym_cmd_identifier_token20] = ACTIONS(1703), + [aux_sym_cmd_identifier_token21] = ACTIONS(1703), + [aux_sym_cmd_identifier_token22] = ACTIONS(1703), + [aux_sym_cmd_identifier_token23] = ACTIONS(1703), + [aux_sym_cmd_identifier_token24] = ACTIONS(1703), + [aux_sym_cmd_identifier_token25] = ACTIONS(1703), + [aux_sym_cmd_identifier_token26] = ACTIONS(1703), + [aux_sym_cmd_identifier_token27] = ACTIONS(1703), + [aux_sym_cmd_identifier_token28] = ACTIONS(1703), + [aux_sym_cmd_identifier_token29] = ACTIONS(1703), + [aux_sym_cmd_identifier_token30] = ACTIONS(1703), + [aux_sym_cmd_identifier_token31] = ACTIONS(1703), + [aux_sym_cmd_identifier_token32] = ACTIONS(1703), + [aux_sym_cmd_identifier_token33] = ACTIONS(1703), + [aux_sym_cmd_identifier_token34] = ACTIONS(1701), + [aux_sym_cmd_identifier_token35] = ACTIONS(1703), + [aux_sym_cmd_identifier_token36] = ACTIONS(1703), + [aux_sym_cmd_identifier_token37] = ACTIONS(1703), + [aux_sym_cmd_identifier_token38] = ACTIONS(1701), + [aux_sym_cmd_identifier_token39] = ACTIONS(1703), + [aux_sym_cmd_identifier_token40] = ACTIONS(1703), + [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(1703), + [anon_sym_COMMA] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_error] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_in2] = 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(1703), + [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_hide] = ACTIONS(1701), + [anon_sym_hide_DASHenv] = ACTIONS(1701), + [anon_sym_overlay] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1701), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1703), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(1859), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1701), + [aux_sym__val_number_token5] = ACTIONS(1701), + [aux_sym__val_number_token6] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1703), + }, + [470] = { + [sym_cell_path] = STATE(704), + [sym_path] = STATE(565), + [sym_comment] = STATE(470), + [aux_sym_cell_path_repeat1] = STATE(484), + [anon_sym_export] = ACTIONS(1969), + [anon_sym_alias] = ACTIONS(1969), + [anon_sym_let] = ACTIONS(1969), + [anon_sym_let_DASHenv] = ACTIONS(1969), + [anon_sym_mut] = ACTIONS(1969), + [anon_sym_const] = ACTIONS(1969), + [aux_sym_cmd_identifier_token1] = ACTIONS(1969), + [aux_sym_cmd_identifier_token2] = ACTIONS(1971), + [aux_sym_cmd_identifier_token3] = ACTIONS(1971), + [aux_sym_cmd_identifier_token4] = ACTIONS(1971), + [aux_sym_cmd_identifier_token5] = ACTIONS(1971), + [aux_sym_cmd_identifier_token6] = ACTIONS(1971), + [aux_sym_cmd_identifier_token7] = ACTIONS(1971), + [aux_sym_cmd_identifier_token8] = ACTIONS(1969), + [aux_sym_cmd_identifier_token9] = ACTIONS(1969), + [aux_sym_cmd_identifier_token10] = ACTIONS(1971), + [aux_sym_cmd_identifier_token11] = ACTIONS(1971), + [aux_sym_cmd_identifier_token12] = ACTIONS(1969), + [aux_sym_cmd_identifier_token13] = ACTIONS(1969), + [aux_sym_cmd_identifier_token14] = ACTIONS(1969), + [aux_sym_cmd_identifier_token15] = ACTIONS(1969), + [aux_sym_cmd_identifier_token16] = ACTIONS(1971), + [aux_sym_cmd_identifier_token17] = ACTIONS(1971), + [aux_sym_cmd_identifier_token18] = ACTIONS(1971), + [aux_sym_cmd_identifier_token19] = ACTIONS(1971), + [aux_sym_cmd_identifier_token20] = ACTIONS(1971), + [aux_sym_cmd_identifier_token21] = ACTIONS(1971), + [aux_sym_cmd_identifier_token22] = ACTIONS(1971), + [aux_sym_cmd_identifier_token23] = ACTIONS(1971), + [aux_sym_cmd_identifier_token24] = ACTIONS(1971), + [aux_sym_cmd_identifier_token25] = ACTIONS(1971), + [aux_sym_cmd_identifier_token26] = ACTIONS(1971), + [aux_sym_cmd_identifier_token27] = ACTIONS(1971), + [aux_sym_cmd_identifier_token28] = ACTIONS(1971), + [aux_sym_cmd_identifier_token29] = ACTIONS(1971), + [aux_sym_cmd_identifier_token30] = ACTIONS(1971), + [aux_sym_cmd_identifier_token31] = ACTIONS(1971), + [aux_sym_cmd_identifier_token32] = ACTIONS(1971), + [aux_sym_cmd_identifier_token33] = ACTIONS(1971), + [aux_sym_cmd_identifier_token34] = ACTIONS(1969), + [aux_sym_cmd_identifier_token35] = ACTIONS(1971), + [aux_sym_cmd_identifier_token36] = ACTIONS(1971), + [aux_sym_cmd_identifier_token37] = ACTIONS(1971), + [aux_sym_cmd_identifier_token38] = ACTIONS(1969), + [aux_sym_cmd_identifier_token39] = ACTIONS(1971), + [aux_sym_cmd_identifier_token40] = ACTIONS(1971), + [anon_sym_def] = ACTIONS(1969), + [anon_sym_export_DASHenv] = ACTIONS(1969), + [anon_sym_extern] = ACTIONS(1969), + [anon_sym_module] = ACTIONS(1969), + [anon_sym_use] = ACTIONS(1969), + [anon_sym_LPAREN] = ACTIONS(1971), + [anon_sym_COMMA] = ACTIONS(1971), + [anon_sym_DOLLAR] = ACTIONS(1969), + [anon_sym_error] = ACTIONS(1969), + [anon_sym_DASH2] = ACTIONS(1969), + [anon_sym_break] = ACTIONS(1969), + [anon_sym_continue] = ACTIONS(1969), + [anon_sym_for] = ACTIONS(1969), + [anon_sym_in2] = ACTIONS(1969), + [anon_sym_loop] = ACTIONS(1969), + [anon_sym_make] = ACTIONS(1969), + [anon_sym_while] = ACTIONS(1969), + [anon_sym_do] = ACTIONS(1969), + [anon_sym_if] = ACTIONS(1969), + [anon_sym_else] = ACTIONS(1969), + [anon_sym_match] = ACTIONS(1969), + [anon_sym_RBRACE] = ACTIONS(1971), + [anon_sym_try] = ACTIONS(1969), + [anon_sym_catch] = ACTIONS(1969), + [anon_sym_return] = ACTIONS(1969), + [anon_sym_source] = ACTIONS(1969), + [anon_sym_source_DASHenv] = ACTIONS(1969), + [anon_sym_hide] = ACTIONS(1969), + [anon_sym_hide_DASHenv] = ACTIONS(1969), + [anon_sym_overlay] = ACTIONS(1969), + [anon_sym_as] = ACTIONS(1969), + [anon_sym_PLUS2] = ACTIONS(1969), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1971), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1971), + [aux_sym__val_number_decimal_token1] = ACTIONS(1969), + [aux_sym__val_number_decimal_token2] = ACTIONS(1971), + [aux_sym__val_number_decimal_token3] = ACTIONS(1971), + [aux_sym__val_number_decimal_token4] = ACTIONS(1971), + [aux_sym__val_number_token1] = ACTIONS(1971), + [aux_sym__val_number_token2] = ACTIONS(1971), + [aux_sym__val_number_token3] = ACTIONS(1971), + [aux_sym__val_number_token4] = ACTIONS(1969), + [aux_sym__val_number_token5] = ACTIONS(1969), + [aux_sym__val_number_token6] = ACTIONS(1969), + [anon_sym_DQUOTE] = ACTIONS(1971), + [sym__str_single_quotes] = ACTIONS(1971), + [sym__str_back_ticks] = ACTIONS(1971), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1971), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1971), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1971), + [anon_sym_register] = ACTIONS(1969), + [anon_sym_DOT2] = ACTIONS(1921), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1971), + }, + [471] = { + [sym_comment] = STATE(471), + [anon_sym_export] = ACTIONS(2000), + [anon_sym_alias] = ACTIONS(2000), + [anon_sym_let] = ACTIONS(2000), + [anon_sym_let_DASHenv] = ACTIONS(2000), + [anon_sym_mut] = ACTIONS(2000), + [anon_sym_const] = ACTIONS(2000), + [aux_sym_cmd_identifier_token1] = ACTIONS(2000), + [aux_sym_cmd_identifier_token2] = ACTIONS(2000), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [aux_sym_cmd_identifier_token6] = ACTIONS(2000), + [aux_sym_cmd_identifier_token7] = ACTIONS(2000), + [aux_sym_cmd_identifier_token8] = ACTIONS(2000), + [aux_sym_cmd_identifier_token9] = ACTIONS(2000), + [aux_sym_cmd_identifier_token10] = ACTIONS(2000), + [aux_sym_cmd_identifier_token11] = ACTIONS(2000), + [aux_sym_cmd_identifier_token12] = ACTIONS(2000), + [aux_sym_cmd_identifier_token13] = ACTIONS(2000), + [aux_sym_cmd_identifier_token14] = ACTIONS(2000), + [aux_sym_cmd_identifier_token15] = ACTIONS(2000), + [aux_sym_cmd_identifier_token16] = ACTIONS(2000), + [aux_sym_cmd_identifier_token17] = ACTIONS(2000), + [aux_sym_cmd_identifier_token18] = ACTIONS(2000), + [aux_sym_cmd_identifier_token19] = ACTIONS(2000), + [aux_sym_cmd_identifier_token20] = ACTIONS(2000), + [aux_sym_cmd_identifier_token21] = ACTIONS(2000), + [aux_sym_cmd_identifier_token22] = ACTIONS(2000), + [aux_sym_cmd_identifier_token23] = ACTIONS(2000), + [aux_sym_cmd_identifier_token24] = ACTIONS(2000), + [aux_sym_cmd_identifier_token25] = ACTIONS(2000), + [aux_sym_cmd_identifier_token26] = ACTIONS(2000), + [aux_sym_cmd_identifier_token27] = ACTIONS(2000), + [aux_sym_cmd_identifier_token28] = ACTIONS(2000), + [aux_sym_cmd_identifier_token29] = ACTIONS(2000), + [aux_sym_cmd_identifier_token30] = ACTIONS(2000), + [aux_sym_cmd_identifier_token31] = ACTIONS(2000), + [aux_sym_cmd_identifier_token32] = ACTIONS(2000), + [aux_sym_cmd_identifier_token33] = ACTIONS(2000), + [aux_sym_cmd_identifier_token34] = ACTIONS(2000), + [aux_sym_cmd_identifier_token35] = ACTIONS(2000), + [aux_sym_cmd_identifier_token36] = ACTIONS(2000), + [aux_sym_cmd_identifier_token37] = ACTIONS(2000), + [aux_sym_cmd_identifier_token38] = ACTIONS(2000), + [aux_sym_cmd_identifier_token39] = ACTIONS(2000), + [aux_sym_cmd_identifier_token40] = ACTIONS(2000), + [anon_sym_def] = ACTIONS(2000), + [anon_sym_export_DASHenv] = ACTIONS(2000), + [anon_sym_extern] = ACTIONS(2000), + [anon_sym_module] = ACTIONS(2000), + [anon_sym_use] = ACTIONS(2000), + [anon_sym_LPAREN] = ACTIONS(2000), + [anon_sym_COMMA] = ACTIONS(2000), + [anon_sym_DOLLAR] = ACTIONS(2000), + [anon_sym_error] = ACTIONS(2000), + [anon_sym_DASH2] = ACTIONS(2000), + [anon_sym_break] = ACTIONS(2000), + [anon_sym_continue] = ACTIONS(2000), + [anon_sym_for] = ACTIONS(2000), + [anon_sym_in2] = ACTIONS(2000), + [anon_sym_loop] = ACTIONS(2000), + [anon_sym_make] = ACTIONS(2000), + [anon_sym_while] = ACTIONS(2000), + [anon_sym_do] = ACTIONS(2000), + [anon_sym_if] = ACTIONS(2000), + [anon_sym_else] = ACTIONS(2000), + [anon_sym_match] = ACTIONS(2000), + [anon_sym_RBRACE] = ACTIONS(2000), + [anon_sym_try] = ACTIONS(2000), + [anon_sym_catch] = ACTIONS(2000), + [anon_sym_return] = ACTIONS(2000), + [anon_sym_source] = ACTIONS(2000), + [anon_sym_source_DASHenv] = ACTIONS(2000), + [anon_sym_hide] = ACTIONS(2000), + [anon_sym_hide_DASHenv] = ACTIONS(2000), + [anon_sym_overlay] = ACTIONS(2000), + [anon_sym_as] = ACTIONS(2000), + [anon_sym_PLUS2] = ACTIONS(2000), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2000), + [anon_sym_DOT_DOT2] = ACTIONS(2002), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2004), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2000), + [aux_sym__val_number_decimal_token1] = ACTIONS(2000), + [aux_sym__val_number_decimal_token2] = ACTIONS(2000), + [aux_sym__val_number_decimal_token3] = ACTIONS(2000), + [aux_sym__val_number_decimal_token4] = ACTIONS(2000), + [aux_sym__val_number_token1] = ACTIONS(2000), + [aux_sym__val_number_token2] = ACTIONS(2000), + [aux_sym__val_number_token3] = ACTIONS(2000), + [aux_sym__val_number_token4] = ACTIONS(2000), + [aux_sym__val_number_token5] = ACTIONS(2000), + [aux_sym__val_number_token6] = ACTIONS(2000), + [anon_sym_DQUOTE] = ACTIONS(2000), + [sym__str_single_quotes] = ACTIONS(2000), + [sym__str_back_ticks] = ACTIONS(2000), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2000), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2000), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2000), + [sym__entry_separator] = ACTIONS(2006), + [anon_sym_register] = ACTIONS(2000), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2006), + }, + [472] = { + [sym_comment] = STATE(472), + [anon_sym_export] = ACTIONS(1766), + [anon_sym_alias] = ACTIONS(1766), + [anon_sym_let] = ACTIONS(1766), + [anon_sym_let_DASHenv] = ACTIONS(1766), + [anon_sym_mut] = ACTIONS(1766), + [anon_sym_const] = ACTIONS(1766), + [aux_sym_cmd_identifier_token1] = ACTIONS(1766), + [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(1766), + [aux_sym_cmd_identifier_token9] = ACTIONS(1766), + [aux_sym_cmd_identifier_token10] = ACTIONS(1768), + [aux_sym_cmd_identifier_token11] = ACTIONS(1768), + [aux_sym_cmd_identifier_token12] = ACTIONS(1766), + [aux_sym_cmd_identifier_token13] = ACTIONS(1766), + [aux_sym_cmd_identifier_token14] = ACTIONS(1766), + [aux_sym_cmd_identifier_token15] = ACTIONS(1766), + [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(1766), + [aux_sym_cmd_identifier_token35] = ACTIONS(1768), + [aux_sym_cmd_identifier_token36] = ACTIONS(1768), + [aux_sym_cmd_identifier_token37] = ACTIONS(1768), + [aux_sym_cmd_identifier_token38] = ACTIONS(1766), + [aux_sym_cmd_identifier_token39] = ACTIONS(1768), + [aux_sym_cmd_identifier_token40] = ACTIONS(1768), + [anon_sym_def] = ACTIONS(1766), + [anon_sym_export_DASHenv] = ACTIONS(1766), + [anon_sym_extern] = ACTIONS(1766), + [anon_sym_module] = ACTIONS(1766), + [anon_sym_use] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_COMMA] = ACTIONS(1768), + [anon_sym_DOLLAR] = ACTIONS(1766), + [anon_sym_error] = ACTIONS(1766), + [anon_sym_DASH2] = ACTIONS(1766), + [anon_sym_break] = ACTIONS(1766), + [anon_sym_continue] = ACTIONS(1766), + [anon_sym_for] = ACTIONS(1766), + [anon_sym_in2] = ACTIONS(1766), + [anon_sym_loop] = ACTIONS(1766), + [anon_sym_make] = ACTIONS(1766), + [anon_sym_while] = ACTIONS(1766), + [anon_sym_do] = ACTIONS(1766), + [anon_sym_if] = ACTIONS(1766), + [anon_sym_else] = ACTIONS(1766), + [anon_sym_match] = ACTIONS(1766), + [anon_sym_RBRACE] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1766), + [anon_sym_catch] = ACTIONS(1766), + [anon_sym_return] = ACTIONS(1766), + [anon_sym_source] = ACTIONS(1766), + [anon_sym_source_DASHenv] = ACTIONS(1766), + [anon_sym_hide] = ACTIONS(1766), + [anon_sym_hide_DASHenv] = ACTIONS(1766), + [anon_sym_overlay] = ACTIONS(1766), + [anon_sym_as] = ACTIONS(1766), + [anon_sym_PLUS2] = ACTIONS(1766), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1768), + [anon_sym_DOT_DOT2] = ACTIONS(1766), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1768), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1768), + [aux_sym__immediate_decimal_token2] = ACTIONS(2008), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1768), + [aux_sym__val_number_decimal_token1] = ACTIONS(1766), + [aux_sym__val_number_decimal_token2] = ACTIONS(1768), + [aux_sym__val_number_decimal_token3] = ACTIONS(1768), + [aux_sym__val_number_decimal_token4] = ACTIONS(1768), + [aux_sym__val_number_token1] = ACTIONS(1768), + [aux_sym__val_number_token2] = ACTIONS(1768), + [aux_sym__val_number_token3] = ACTIONS(1768), + [aux_sym__val_number_token4] = ACTIONS(1766), + [aux_sym__val_number_token5] = ACTIONS(1766), + [aux_sym__val_number_token6] = ACTIONS(1766), + [anon_sym_DQUOTE] = ACTIONS(1768), + [sym__str_single_quotes] = ACTIONS(1768), + [sym__str_back_ticks] = ACTIONS(1768), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1768), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1768), + [anon_sym_register] = ACTIONS(1766), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1768), + }, + [473] = { [sym_comment] = STATE(473), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_alias] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_let_DASHenv] = ACTIONS(1719), - [anon_sym_mut] = ACTIONS(1719), - [anon_sym_const] = ACTIONS(1719), - [aux_sym_cmd_identifier_token1] = ACTIONS(1719), - [aux_sym_cmd_identifier_token2] = ACTIONS(1719), - [aux_sym_cmd_identifier_token3] = ACTIONS(1719), - [aux_sym_cmd_identifier_token4] = ACTIONS(1719), - [aux_sym_cmd_identifier_token5] = ACTIONS(1719), - [aux_sym_cmd_identifier_token6] = ACTIONS(1719), - [aux_sym_cmd_identifier_token7] = ACTIONS(1719), - [aux_sym_cmd_identifier_token8] = ACTIONS(1719), - [aux_sym_cmd_identifier_token9] = ACTIONS(1719), - [aux_sym_cmd_identifier_token10] = ACTIONS(1719), - [aux_sym_cmd_identifier_token11] = ACTIONS(1719), - [aux_sym_cmd_identifier_token12] = ACTIONS(1719), - [aux_sym_cmd_identifier_token13] = ACTIONS(1719), - [aux_sym_cmd_identifier_token14] = ACTIONS(1719), - [aux_sym_cmd_identifier_token15] = ACTIONS(1719), - [aux_sym_cmd_identifier_token16] = ACTIONS(1719), - [aux_sym_cmd_identifier_token17] = ACTIONS(1719), - [aux_sym_cmd_identifier_token18] = ACTIONS(1719), - [aux_sym_cmd_identifier_token19] = ACTIONS(1719), - [aux_sym_cmd_identifier_token20] = ACTIONS(1719), - [aux_sym_cmd_identifier_token21] = ACTIONS(1719), - [aux_sym_cmd_identifier_token22] = ACTIONS(1719), - [aux_sym_cmd_identifier_token23] = ACTIONS(1719), - [aux_sym_cmd_identifier_token24] = ACTIONS(1719), - [aux_sym_cmd_identifier_token25] = ACTIONS(1719), - [aux_sym_cmd_identifier_token26] = ACTIONS(1719), - [aux_sym_cmd_identifier_token27] = ACTIONS(1719), - [aux_sym_cmd_identifier_token28] = ACTIONS(1719), - [aux_sym_cmd_identifier_token29] = ACTIONS(1719), - [aux_sym_cmd_identifier_token30] = ACTIONS(1719), - [aux_sym_cmd_identifier_token31] = ACTIONS(1719), - [aux_sym_cmd_identifier_token32] = ACTIONS(1719), - [aux_sym_cmd_identifier_token33] = ACTIONS(1719), - [aux_sym_cmd_identifier_token34] = ACTIONS(1719), - [aux_sym_cmd_identifier_token35] = ACTIONS(1719), - [aux_sym_cmd_identifier_token36] = ACTIONS(1719), - [aux_sym_cmd_identifier_token37] = ACTIONS(1719), - [aux_sym_cmd_identifier_token38] = ACTIONS(1719), - [aux_sym_cmd_identifier_token39] = ACTIONS(1719), - [aux_sym_cmd_identifier_token40] = ACTIONS(1719), - [anon_sym_def] = ACTIONS(1719), - [anon_sym_export_DASHenv] = ACTIONS(1719), - [anon_sym_extern] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(1719), - [anon_sym_use] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_COMMA] = ACTIONS(1719), - [anon_sym_DOLLAR] = ACTIONS(1719), - [anon_sym_error] = ACTIONS(1719), - [anon_sym_DASH2] = ACTIONS(1719), - [anon_sym_break] = ACTIONS(1719), - [anon_sym_continue] = ACTIONS(1719), - [anon_sym_for] = ACTIONS(1719), - [anon_sym_in2] = ACTIONS(1719), - [anon_sym_loop] = ACTIONS(1719), - [anon_sym_make] = ACTIONS(1719), - [anon_sym_while] = ACTIONS(1719), - [anon_sym_do] = ACTIONS(1719), - [anon_sym_if] = ACTIONS(1719), - [anon_sym_else] = ACTIONS(1719), - [anon_sym_match] = ACTIONS(1719), - [anon_sym_RBRACE] = ACTIONS(1719), - [anon_sym_try] = ACTIONS(1719), - [anon_sym_catch] = ACTIONS(1719), - [anon_sym_return] = ACTIONS(1719), - [anon_sym_source] = ACTIONS(1719), - [anon_sym_source_DASHenv] = ACTIONS(1719), - [anon_sym_register] = ACTIONS(1719), - [anon_sym_hide] = ACTIONS(1719), - [anon_sym_hide_DASHenv] = ACTIONS(1719), - [anon_sym_overlay] = ACTIONS(1719), - [anon_sym_as] = ACTIONS(1719), - [anon_sym_PLUS2] = ACTIONS(1719), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1719), - [anon_sym_DOT_DOT2] = ACTIONS(1719), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1721), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1719), - [aux_sym__val_number_decimal_token1] = ACTIONS(1719), - [aux_sym__val_number_decimal_token2] = ACTIONS(1719), - [aux_sym__val_number_decimal_token3] = ACTIONS(1719), - [aux_sym__val_number_decimal_token4] = ACTIONS(1719), - [aux_sym__val_number_token1] = ACTIONS(1719), - [aux_sym__val_number_token2] = ACTIONS(1719), - [aux_sym__val_number_token3] = ACTIONS(1719), - [aux_sym__val_number_token4] = ACTIONS(1719), - [aux_sym__val_number_token5] = ACTIONS(1719), - [aux_sym__val_number_token6] = ACTIONS(1719), - [anon_sym_DQUOTE] = ACTIONS(1719), - [sym__str_single_quotes] = ACTIONS(1719), - [sym__str_back_ticks] = ACTIONS(1719), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1719), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1719), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1719), - [sym__entry_separator] = ACTIONS(1721), + [anon_sym_export] = ACTIONS(2010), + [anon_sym_alias] = ACTIONS(2010), + [anon_sym_let] = ACTIONS(2010), + [anon_sym_let_DASHenv] = ACTIONS(2010), + [anon_sym_mut] = ACTIONS(2010), + [anon_sym_const] = ACTIONS(2010), + [aux_sym_cmd_identifier_token1] = ACTIONS(2010), + [aux_sym_cmd_identifier_token2] = ACTIONS(2010), + [aux_sym_cmd_identifier_token3] = ACTIONS(2010), + [aux_sym_cmd_identifier_token4] = ACTIONS(2010), + [aux_sym_cmd_identifier_token5] = ACTIONS(2010), + [aux_sym_cmd_identifier_token6] = ACTIONS(2010), + [aux_sym_cmd_identifier_token7] = ACTIONS(2010), + [aux_sym_cmd_identifier_token8] = ACTIONS(2010), + [aux_sym_cmd_identifier_token9] = ACTIONS(2010), + [aux_sym_cmd_identifier_token10] = ACTIONS(2010), + [aux_sym_cmd_identifier_token11] = ACTIONS(2010), + [aux_sym_cmd_identifier_token12] = ACTIONS(2010), + [aux_sym_cmd_identifier_token13] = ACTIONS(2010), + [aux_sym_cmd_identifier_token14] = ACTIONS(2010), + [aux_sym_cmd_identifier_token15] = ACTIONS(2010), + [aux_sym_cmd_identifier_token16] = ACTIONS(2010), + [aux_sym_cmd_identifier_token17] = ACTIONS(2010), + [aux_sym_cmd_identifier_token18] = ACTIONS(2010), + [aux_sym_cmd_identifier_token19] = ACTIONS(2010), + [aux_sym_cmd_identifier_token20] = ACTIONS(2010), + [aux_sym_cmd_identifier_token21] = ACTIONS(2010), + [aux_sym_cmd_identifier_token22] = ACTIONS(2010), + [aux_sym_cmd_identifier_token23] = ACTIONS(2010), + [aux_sym_cmd_identifier_token24] = ACTIONS(2010), + [aux_sym_cmd_identifier_token25] = ACTIONS(2010), + [aux_sym_cmd_identifier_token26] = ACTIONS(2010), + [aux_sym_cmd_identifier_token27] = ACTIONS(2010), + [aux_sym_cmd_identifier_token28] = ACTIONS(2010), + [aux_sym_cmd_identifier_token29] = ACTIONS(2010), + [aux_sym_cmd_identifier_token30] = ACTIONS(2010), + [aux_sym_cmd_identifier_token31] = ACTIONS(2010), + [aux_sym_cmd_identifier_token32] = ACTIONS(2010), + [aux_sym_cmd_identifier_token33] = ACTIONS(2010), + [aux_sym_cmd_identifier_token34] = ACTIONS(2010), + [aux_sym_cmd_identifier_token35] = ACTIONS(2010), + [aux_sym_cmd_identifier_token36] = ACTIONS(2010), + [aux_sym_cmd_identifier_token37] = ACTIONS(2010), + [aux_sym_cmd_identifier_token38] = ACTIONS(2010), + [aux_sym_cmd_identifier_token39] = ACTIONS(2010), + [aux_sym_cmd_identifier_token40] = ACTIONS(2010), + [anon_sym_def] = ACTIONS(2010), + [anon_sym_export_DASHenv] = ACTIONS(2010), + [anon_sym_extern] = ACTIONS(2010), + [anon_sym_module] = ACTIONS(2010), + [anon_sym_use] = ACTIONS(2010), + [anon_sym_LPAREN] = ACTIONS(2010), + [anon_sym_COMMA] = ACTIONS(2010), + [anon_sym_DOLLAR] = ACTIONS(2010), + [anon_sym_error] = ACTIONS(2010), + [anon_sym_DASH2] = ACTIONS(2010), + [anon_sym_break] = ACTIONS(2010), + [anon_sym_continue] = ACTIONS(2010), + [anon_sym_for] = ACTIONS(2010), + [anon_sym_in2] = ACTIONS(2010), + [anon_sym_loop] = ACTIONS(2010), + [anon_sym_make] = ACTIONS(2010), + [anon_sym_while] = ACTIONS(2010), + [anon_sym_do] = ACTIONS(2010), + [anon_sym_if] = ACTIONS(2010), + [anon_sym_else] = ACTIONS(2010), + [anon_sym_match] = ACTIONS(2010), + [anon_sym_RBRACE] = ACTIONS(2010), + [anon_sym_try] = ACTIONS(2010), + [anon_sym_catch] = ACTIONS(2010), + [anon_sym_return] = ACTIONS(2010), + [anon_sym_source] = ACTIONS(2010), + [anon_sym_source_DASHenv] = ACTIONS(2010), + [anon_sym_hide] = ACTIONS(2010), + [anon_sym_hide_DASHenv] = ACTIONS(2010), + [anon_sym_overlay] = ACTIONS(2010), + [anon_sym_as] = ACTIONS(2010), + [anon_sym_PLUS2] = ACTIONS(2010), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2010), + [anon_sym_DOT_DOT2] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2012), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2012), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2010), + [aux_sym__val_number_decimal_token1] = ACTIONS(2010), + [aux_sym__val_number_decimal_token2] = ACTIONS(2010), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [aux_sym__val_number_token1] = ACTIONS(2010), + [aux_sym__val_number_token2] = ACTIONS(2010), + [aux_sym__val_number_token3] = ACTIONS(2010), + [aux_sym__val_number_token4] = ACTIONS(2010), + [aux_sym__val_number_token5] = ACTIONS(2010), + [aux_sym__val_number_token6] = ACTIONS(2010), + [anon_sym_DQUOTE] = ACTIONS(2010), + [sym__str_single_quotes] = ACTIONS(2010), + [sym__str_back_ticks] = ACTIONS(2010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2010), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2010), + [sym__entry_separator] = ACTIONS(2012), + [anon_sym_register] = ACTIONS(2010), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1721), + [sym_raw_string_begin] = ACTIONS(2012), }, [474] = { - [sym_cell_path] = STATE(682), - [sym_path] = STATE(587), + [sym_cell_path] = STATE(690), + [sym_path] = STATE(565), [sym_comment] = STATE(474), - [aux_sym_cell_path_repeat1] = STATE(446), - [anon_sym_export] = ACTIONS(1845), - [anon_sym_alias] = ACTIONS(1845), - [anon_sym_let] = ACTIONS(1845), - [anon_sym_let_DASHenv] = ACTIONS(1845), - [anon_sym_mut] = ACTIONS(1845), - [anon_sym_const] = ACTIONS(1845), - [aux_sym_cmd_identifier_token1] = ACTIONS(1845), - [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(1845), - [aux_sym_cmd_identifier_token9] = ACTIONS(1845), - [aux_sym_cmd_identifier_token10] = ACTIONS(1847), - [aux_sym_cmd_identifier_token11] = ACTIONS(1847), - [aux_sym_cmd_identifier_token12] = ACTIONS(1845), - [aux_sym_cmd_identifier_token13] = ACTIONS(1845), - [aux_sym_cmd_identifier_token14] = ACTIONS(1845), - [aux_sym_cmd_identifier_token15] = ACTIONS(1845), - [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(1845), - [aux_sym_cmd_identifier_token35] = ACTIONS(1847), - [aux_sym_cmd_identifier_token36] = ACTIONS(1847), - [aux_sym_cmd_identifier_token37] = ACTIONS(1847), - [aux_sym_cmd_identifier_token38] = ACTIONS(1845), - [aux_sym_cmd_identifier_token39] = ACTIONS(1847), - [aux_sym_cmd_identifier_token40] = ACTIONS(1847), - [anon_sym_def] = ACTIONS(1845), - [anon_sym_export_DASHenv] = ACTIONS(1845), - [anon_sym_extern] = ACTIONS(1845), - [anon_sym_module] = ACTIONS(1845), - [anon_sym_use] = ACTIONS(1845), - [anon_sym_LPAREN] = ACTIONS(1847), - [anon_sym_COMMA] = ACTIONS(1847), - [anon_sym_DOLLAR] = ACTIONS(1845), - [anon_sym_error] = ACTIONS(1845), - [anon_sym_DASH2] = ACTIONS(1845), - [anon_sym_break] = ACTIONS(1845), - [anon_sym_continue] = ACTIONS(1845), - [anon_sym_for] = ACTIONS(1845), - [anon_sym_in2] = ACTIONS(1845), - [anon_sym_loop] = ACTIONS(1845), - [anon_sym_make] = ACTIONS(1845), - [anon_sym_while] = ACTIONS(1845), - [anon_sym_do] = ACTIONS(1845), - [anon_sym_if] = ACTIONS(1845), - [anon_sym_else] = ACTIONS(1845), - [anon_sym_match] = ACTIONS(1845), - [anon_sym_RBRACE] = ACTIONS(1847), - [anon_sym_try] = ACTIONS(1845), - [anon_sym_catch] = ACTIONS(1845), - [anon_sym_return] = ACTIONS(1845), - [anon_sym_source] = ACTIONS(1845), - [anon_sym_source_DASHenv] = ACTIONS(1845), - [anon_sym_register] = ACTIONS(1845), - [anon_sym_hide] = ACTIONS(1845), - [anon_sym_hide_DASHenv] = ACTIONS(1845), - [anon_sym_overlay] = ACTIONS(1845), - [anon_sym_as] = ACTIONS(1845), - [anon_sym_PLUS2] = ACTIONS(1845), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1847), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1847), - [aux_sym__val_number_decimal_token1] = ACTIONS(1845), - [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), - [aux_sym__val_number_token4] = ACTIONS(1845), - [aux_sym__val_number_token5] = ACTIONS(1845), - [aux_sym__val_number_token6] = ACTIONS(1845), - [anon_sym_DQUOTE] = ACTIONS(1847), - [sym__str_single_quotes] = ACTIONS(1847), - [sym__str_back_ticks] = ACTIONS(1847), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1847), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1847), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1847), - [anon_sym_DOT2] = ACTIONS(1973), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1847), + [aux_sym_cell_path_repeat1] = STATE(484), + [anon_sym_export] = ACTIONS(1893), + [anon_sym_alias] = ACTIONS(1893), + [anon_sym_let] = ACTIONS(1893), + [anon_sym_let_DASHenv] = ACTIONS(1893), + [anon_sym_mut] = ACTIONS(1893), + [anon_sym_const] = ACTIONS(1893), + [aux_sym_cmd_identifier_token1] = ACTIONS(1893), + [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(1893), + [aux_sym_cmd_identifier_token9] = ACTIONS(1893), + [aux_sym_cmd_identifier_token10] = ACTIONS(1895), + [aux_sym_cmd_identifier_token11] = ACTIONS(1895), + [aux_sym_cmd_identifier_token12] = ACTIONS(1893), + [aux_sym_cmd_identifier_token13] = ACTIONS(1893), + [aux_sym_cmd_identifier_token14] = ACTIONS(1893), + [aux_sym_cmd_identifier_token15] = ACTIONS(1893), + [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(1893), + [aux_sym_cmd_identifier_token35] = ACTIONS(1895), + [aux_sym_cmd_identifier_token36] = ACTIONS(1895), + [aux_sym_cmd_identifier_token37] = ACTIONS(1895), + [aux_sym_cmd_identifier_token38] = ACTIONS(1893), + [aux_sym_cmd_identifier_token39] = ACTIONS(1895), + [aux_sym_cmd_identifier_token40] = ACTIONS(1895), + [anon_sym_def] = ACTIONS(1893), + [anon_sym_export_DASHenv] = ACTIONS(1893), + [anon_sym_extern] = ACTIONS(1893), + [anon_sym_module] = ACTIONS(1893), + [anon_sym_use] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_COMMA] = ACTIONS(1895), + [anon_sym_DOLLAR] = ACTIONS(1893), + [anon_sym_error] = ACTIONS(1893), + [anon_sym_DASH2] = ACTIONS(1893), + [anon_sym_break] = ACTIONS(1893), + [anon_sym_continue] = ACTIONS(1893), + [anon_sym_for] = ACTIONS(1893), + [anon_sym_in2] = ACTIONS(1893), + [anon_sym_loop] = ACTIONS(1893), + [anon_sym_make] = ACTIONS(1893), + [anon_sym_while] = ACTIONS(1893), + [anon_sym_do] = ACTIONS(1893), + [anon_sym_if] = ACTIONS(1893), + [anon_sym_else] = ACTIONS(1893), + [anon_sym_match] = ACTIONS(1893), + [anon_sym_RBRACE] = ACTIONS(1895), + [anon_sym_try] = ACTIONS(1893), + [anon_sym_catch] = ACTIONS(1893), + [anon_sym_return] = ACTIONS(1893), + [anon_sym_source] = ACTIONS(1893), + [anon_sym_source_DASHenv] = ACTIONS(1893), + [anon_sym_hide] = ACTIONS(1893), + [anon_sym_hide_DASHenv] = ACTIONS(1893), + [anon_sym_overlay] = ACTIONS(1893), + [anon_sym_as] = ACTIONS(1893), + [anon_sym_PLUS2] = ACTIONS(1893), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1895), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1895), + [aux_sym__val_number_decimal_token1] = ACTIONS(1893), + [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), + [aux_sym__val_number_token4] = ACTIONS(1893), + [aux_sym__val_number_token5] = ACTIONS(1893), + [aux_sym__val_number_token6] = ACTIONS(1893), + [anon_sym_DQUOTE] = ACTIONS(1895), + [sym__str_single_quotes] = ACTIONS(1895), + [sym__str_back_ticks] = ACTIONS(1895), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1895), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1895), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1895), + [anon_sym_register] = ACTIONS(1893), + [anon_sym_DOT2] = ACTIONS(1921), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1895), }, [475] = { - [sym_cell_path] = STATE(692), - [sym_path] = STATE(587), [sym_comment] = STATE(475), - [aux_sym_cell_path_repeat1] = STATE(446), - [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(1877), - [aux_sym_cmd_identifier_token3] = ACTIONS(1877), - [aux_sym_cmd_identifier_token4] = ACTIONS(1877), - [aux_sym_cmd_identifier_token5] = ACTIONS(1877), - [aux_sym_cmd_identifier_token6] = ACTIONS(1877), - [aux_sym_cmd_identifier_token7] = ACTIONS(1877), - [aux_sym_cmd_identifier_token8] = ACTIONS(1875), - [aux_sym_cmd_identifier_token9] = ACTIONS(1875), - [aux_sym_cmd_identifier_token10] = ACTIONS(1877), - [aux_sym_cmd_identifier_token11] = ACTIONS(1877), - [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(1877), - [aux_sym_cmd_identifier_token17] = ACTIONS(1877), - [aux_sym_cmd_identifier_token18] = ACTIONS(1877), - [aux_sym_cmd_identifier_token19] = ACTIONS(1877), - [aux_sym_cmd_identifier_token20] = ACTIONS(1877), - [aux_sym_cmd_identifier_token21] = ACTIONS(1877), - [aux_sym_cmd_identifier_token22] = ACTIONS(1877), - [aux_sym_cmd_identifier_token23] = ACTIONS(1877), - [aux_sym_cmd_identifier_token24] = ACTIONS(1877), - [aux_sym_cmd_identifier_token25] = ACTIONS(1877), - [aux_sym_cmd_identifier_token26] = ACTIONS(1877), - [aux_sym_cmd_identifier_token27] = ACTIONS(1877), - [aux_sym_cmd_identifier_token28] = ACTIONS(1877), - [aux_sym_cmd_identifier_token29] = ACTIONS(1877), - [aux_sym_cmd_identifier_token30] = ACTIONS(1877), - [aux_sym_cmd_identifier_token31] = ACTIONS(1877), - [aux_sym_cmd_identifier_token32] = ACTIONS(1877), - [aux_sym_cmd_identifier_token33] = ACTIONS(1877), - [aux_sym_cmd_identifier_token34] = ACTIONS(1875), - [aux_sym_cmd_identifier_token35] = ACTIONS(1877), - [aux_sym_cmd_identifier_token36] = ACTIONS(1877), - [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1877), - [anon_sym_DOLLAR] = ACTIONS(1875), - [anon_sym_error] = ACTIONS(1875), - [anon_sym_DASH2] = ACTIONS(1875), - [anon_sym_break] = ACTIONS(1875), - [anon_sym_continue] = ACTIONS(1875), - [anon_sym_for] = ACTIONS(1875), - [anon_sym_in2] = 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_as] = ACTIONS(1875), - [anon_sym_PLUS2] = ACTIONS(1875), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1877), - [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), - [aux_sym__val_number_token4] = ACTIONS(1875), - [aux_sym__val_number_token5] = ACTIONS(1875), - [aux_sym__val_number_token6] = ACTIONS(1875), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1877), - [anon_sym_DOT2] = ACTIONS(1973), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1877), + [anon_sym_export] = ACTIONS(2014), + [anon_sym_alias] = ACTIONS(2014), + [anon_sym_let] = ACTIONS(2014), + [anon_sym_let_DASHenv] = ACTIONS(2014), + [anon_sym_mut] = ACTIONS(2014), + [anon_sym_const] = ACTIONS(2014), + [aux_sym_cmd_identifier_token1] = ACTIONS(2014), + [aux_sym_cmd_identifier_token2] = ACTIONS(2014), + [aux_sym_cmd_identifier_token3] = ACTIONS(2014), + [aux_sym_cmd_identifier_token4] = ACTIONS(2014), + [aux_sym_cmd_identifier_token5] = ACTIONS(2014), + [aux_sym_cmd_identifier_token6] = ACTIONS(2014), + [aux_sym_cmd_identifier_token7] = ACTIONS(2014), + [aux_sym_cmd_identifier_token8] = ACTIONS(2014), + [aux_sym_cmd_identifier_token9] = ACTIONS(2014), + [aux_sym_cmd_identifier_token10] = ACTIONS(2014), + [aux_sym_cmd_identifier_token11] = ACTIONS(2014), + [aux_sym_cmd_identifier_token12] = ACTIONS(2014), + [aux_sym_cmd_identifier_token13] = ACTIONS(2014), + [aux_sym_cmd_identifier_token14] = ACTIONS(2014), + [aux_sym_cmd_identifier_token15] = ACTIONS(2014), + [aux_sym_cmd_identifier_token16] = ACTIONS(2014), + [aux_sym_cmd_identifier_token17] = ACTIONS(2014), + [aux_sym_cmd_identifier_token18] = ACTIONS(2014), + [aux_sym_cmd_identifier_token19] = ACTIONS(2014), + [aux_sym_cmd_identifier_token20] = ACTIONS(2014), + [aux_sym_cmd_identifier_token21] = ACTIONS(2014), + [aux_sym_cmd_identifier_token22] = ACTIONS(2014), + [aux_sym_cmd_identifier_token23] = ACTIONS(2014), + [aux_sym_cmd_identifier_token24] = ACTIONS(2014), + [aux_sym_cmd_identifier_token25] = ACTIONS(2014), + [aux_sym_cmd_identifier_token26] = ACTIONS(2014), + [aux_sym_cmd_identifier_token27] = ACTIONS(2014), + [aux_sym_cmd_identifier_token28] = ACTIONS(2014), + [aux_sym_cmd_identifier_token29] = ACTIONS(2014), + [aux_sym_cmd_identifier_token30] = ACTIONS(2014), + [aux_sym_cmd_identifier_token31] = ACTIONS(2014), + [aux_sym_cmd_identifier_token32] = ACTIONS(2014), + [aux_sym_cmd_identifier_token33] = ACTIONS(2014), + [aux_sym_cmd_identifier_token34] = ACTIONS(2014), + [aux_sym_cmd_identifier_token35] = ACTIONS(2014), + [aux_sym_cmd_identifier_token36] = ACTIONS(2014), + [aux_sym_cmd_identifier_token37] = ACTIONS(2014), + [aux_sym_cmd_identifier_token38] = ACTIONS(2014), + [aux_sym_cmd_identifier_token39] = ACTIONS(2014), + [aux_sym_cmd_identifier_token40] = ACTIONS(2014), + [anon_sym_def] = ACTIONS(2014), + [anon_sym_export_DASHenv] = ACTIONS(2014), + [anon_sym_extern] = ACTIONS(2014), + [anon_sym_module] = ACTIONS(2014), + [anon_sym_use] = ACTIONS(2014), + [anon_sym_LPAREN] = ACTIONS(2014), + [anon_sym_COMMA] = ACTIONS(2014), + [anon_sym_DOLLAR] = ACTIONS(2014), + [anon_sym_error] = ACTIONS(2014), + [anon_sym_DASH2] = ACTIONS(2014), + [anon_sym_break] = ACTIONS(2014), + [anon_sym_continue] = ACTIONS(2014), + [anon_sym_for] = ACTIONS(2014), + [anon_sym_in2] = ACTIONS(2014), + [anon_sym_loop] = ACTIONS(2014), + [anon_sym_make] = ACTIONS(2014), + [anon_sym_while] = ACTIONS(2014), + [anon_sym_do] = ACTIONS(2014), + [anon_sym_if] = ACTIONS(2014), + [anon_sym_else] = ACTIONS(2014), + [anon_sym_match] = ACTIONS(2014), + [anon_sym_RBRACE] = ACTIONS(2014), + [anon_sym_try] = ACTIONS(2014), + [anon_sym_catch] = ACTIONS(2014), + [anon_sym_return] = ACTIONS(2014), + [anon_sym_source] = ACTIONS(2014), + [anon_sym_source_DASHenv] = ACTIONS(2014), + [anon_sym_hide] = ACTIONS(2014), + [anon_sym_hide_DASHenv] = ACTIONS(2014), + [anon_sym_overlay] = ACTIONS(2014), + [anon_sym_as] = ACTIONS(2014), + [anon_sym_PLUS2] = ACTIONS(2014), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2014), + [anon_sym_DOT_DOT2] = ACTIONS(2002), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2004), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2014), + [aux_sym__val_number_decimal_token1] = ACTIONS(2014), + [aux_sym__val_number_decimal_token2] = ACTIONS(2014), + [aux_sym__val_number_decimal_token3] = ACTIONS(2014), + [aux_sym__val_number_decimal_token4] = ACTIONS(2014), + [aux_sym__val_number_token1] = ACTIONS(2014), + [aux_sym__val_number_token2] = ACTIONS(2014), + [aux_sym__val_number_token3] = ACTIONS(2014), + [aux_sym__val_number_token4] = ACTIONS(2014), + [aux_sym__val_number_token5] = ACTIONS(2014), + [aux_sym__val_number_token6] = ACTIONS(2014), + [anon_sym_DQUOTE] = ACTIONS(2014), + [sym__str_single_quotes] = ACTIONS(2014), + [sym__str_back_ticks] = ACTIONS(2014), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2014), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2014), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2014), + [sym__entry_separator] = ACTIONS(2016), + [anon_sym_register] = ACTIONS(2014), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2016), }, [476] = { + [sym_cell_path] = STATE(705), + [sym_path] = STATE(565), [sym_comment] = STATE(476), - [anon_sym_export] = ACTIONS(2015), - [anon_sym_alias] = ACTIONS(2015), - [anon_sym_let] = ACTIONS(2015), - [anon_sym_let_DASHenv] = ACTIONS(2015), - [anon_sym_mut] = ACTIONS(2015), - [anon_sym_const] = ACTIONS(2015), - [aux_sym_cmd_identifier_token1] = ACTIONS(2015), - [aux_sym_cmd_identifier_token2] = ACTIONS(2015), - [aux_sym_cmd_identifier_token3] = ACTIONS(2015), - [aux_sym_cmd_identifier_token4] = ACTIONS(2015), - [aux_sym_cmd_identifier_token5] = ACTIONS(2015), - [aux_sym_cmd_identifier_token6] = ACTIONS(2015), - [aux_sym_cmd_identifier_token7] = ACTIONS(2015), - [aux_sym_cmd_identifier_token8] = ACTIONS(2015), - [aux_sym_cmd_identifier_token9] = ACTIONS(2015), - [aux_sym_cmd_identifier_token10] = ACTIONS(2015), - [aux_sym_cmd_identifier_token11] = ACTIONS(2015), - [aux_sym_cmd_identifier_token12] = ACTIONS(2015), - [aux_sym_cmd_identifier_token13] = ACTIONS(2015), - [aux_sym_cmd_identifier_token14] = ACTIONS(2015), - [aux_sym_cmd_identifier_token15] = ACTIONS(2015), - [aux_sym_cmd_identifier_token16] = ACTIONS(2015), - [aux_sym_cmd_identifier_token17] = ACTIONS(2015), - [aux_sym_cmd_identifier_token18] = ACTIONS(2015), - [aux_sym_cmd_identifier_token19] = ACTIONS(2015), - [aux_sym_cmd_identifier_token20] = ACTIONS(2015), - [aux_sym_cmd_identifier_token21] = ACTIONS(2015), - [aux_sym_cmd_identifier_token22] = ACTIONS(2015), - [aux_sym_cmd_identifier_token23] = ACTIONS(2015), - [aux_sym_cmd_identifier_token24] = ACTIONS(2015), - [aux_sym_cmd_identifier_token25] = ACTIONS(2015), - [aux_sym_cmd_identifier_token26] = ACTIONS(2015), - [aux_sym_cmd_identifier_token27] = ACTIONS(2015), - [aux_sym_cmd_identifier_token28] = ACTIONS(2015), - [aux_sym_cmd_identifier_token29] = ACTIONS(2015), - [aux_sym_cmd_identifier_token30] = ACTIONS(2015), - [aux_sym_cmd_identifier_token31] = ACTIONS(2015), - [aux_sym_cmd_identifier_token32] = ACTIONS(2015), - [aux_sym_cmd_identifier_token33] = ACTIONS(2015), - [aux_sym_cmd_identifier_token34] = ACTIONS(2015), - [aux_sym_cmd_identifier_token35] = ACTIONS(2015), - [aux_sym_cmd_identifier_token36] = ACTIONS(2015), - [aux_sym_cmd_identifier_token37] = ACTIONS(2015), - [aux_sym_cmd_identifier_token38] = ACTIONS(2015), - [aux_sym_cmd_identifier_token39] = ACTIONS(2015), - [aux_sym_cmd_identifier_token40] = ACTIONS(2015), - [anon_sym_def] = ACTIONS(2015), - [anon_sym_export_DASHenv] = ACTIONS(2015), - [anon_sym_extern] = ACTIONS(2015), - [anon_sym_module] = ACTIONS(2015), - [anon_sym_use] = ACTIONS(2015), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_COMMA] = ACTIONS(2015), - [anon_sym_DOLLAR] = ACTIONS(2015), - [anon_sym_error] = ACTIONS(2015), - [anon_sym_DASH2] = ACTIONS(2015), - [anon_sym_break] = ACTIONS(2015), - [anon_sym_continue] = ACTIONS(2015), - [anon_sym_for] = ACTIONS(2015), - [anon_sym_in2] = ACTIONS(2015), - [anon_sym_loop] = ACTIONS(2015), - [anon_sym_make] = ACTIONS(2015), - [anon_sym_while] = ACTIONS(2015), - [anon_sym_do] = ACTIONS(2015), - [anon_sym_if] = ACTIONS(2015), - [anon_sym_else] = ACTIONS(2015), - [anon_sym_match] = ACTIONS(2015), - [anon_sym_RBRACE] = ACTIONS(2015), - [anon_sym_try] = ACTIONS(2015), - [anon_sym_catch] = ACTIONS(2015), - [anon_sym_return] = ACTIONS(2015), - [anon_sym_source] = ACTIONS(2015), - [anon_sym_source_DASHenv] = ACTIONS(2015), - [anon_sym_register] = ACTIONS(2015), - [anon_sym_hide] = ACTIONS(2015), - [anon_sym_hide_DASHenv] = ACTIONS(2015), - [anon_sym_overlay] = ACTIONS(2015), - [anon_sym_as] = ACTIONS(2015), - [anon_sym_PLUS2] = ACTIONS(2015), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2015), - [anon_sym_DOT_DOT2] = ACTIONS(2015), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2017), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2017), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2015), - [aux_sym__val_number_decimal_token1] = ACTIONS(2015), - [aux_sym__val_number_decimal_token2] = ACTIONS(2015), - [aux_sym__val_number_decimal_token3] = ACTIONS(2015), - [aux_sym__val_number_decimal_token4] = ACTIONS(2015), - [aux_sym__val_number_token1] = ACTIONS(2015), - [aux_sym__val_number_token2] = ACTIONS(2015), - [aux_sym__val_number_token3] = ACTIONS(2015), - [aux_sym__val_number_token4] = ACTIONS(2015), - [aux_sym__val_number_token5] = ACTIONS(2015), - [aux_sym__val_number_token6] = ACTIONS(2015), - [anon_sym_DQUOTE] = ACTIONS(2015), - [sym__str_single_quotes] = ACTIONS(2015), - [sym__str_back_ticks] = ACTIONS(2015), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2015), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2015), - [sym__entry_separator] = ACTIONS(2017), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2017), + [aux_sym_cell_path_repeat1] = STATE(484), + [anon_sym_export] = ACTIONS(1833), + [anon_sym_alias] = ACTIONS(1833), + [anon_sym_let] = ACTIONS(1833), + [anon_sym_let_DASHenv] = ACTIONS(1833), + [anon_sym_mut] = ACTIONS(1833), + [anon_sym_const] = ACTIONS(1833), + [aux_sym_cmd_identifier_token1] = ACTIONS(1833), + [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(1833), + [aux_sym_cmd_identifier_token9] = ACTIONS(1833), + [aux_sym_cmd_identifier_token10] = ACTIONS(1835), + [aux_sym_cmd_identifier_token11] = ACTIONS(1835), + [aux_sym_cmd_identifier_token12] = ACTIONS(1833), + [aux_sym_cmd_identifier_token13] = ACTIONS(1833), + [aux_sym_cmd_identifier_token14] = ACTIONS(1833), + [aux_sym_cmd_identifier_token15] = ACTIONS(1833), + [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(1833), + [aux_sym_cmd_identifier_token35] = ACTIONS(1835), + [aux_sym_cmd_identifier_token36] = ACTIONS(1835), + [aux_sym_cmd_identifier_token37] = ACTIONS(1835), + [aux_sym_cmd_identifier_token38] = ACTIONS(1833), + [aux_sym_cmd_identifier_token39] = ACTIONS(1835), + [aux_sym_cmd_identifier_token40] = ACTIONS(1835), + [anon_sym_def] = ACTIONS(1833), + [anon_sym_export_DASHenv] = ACTIONS(1833), + [anon_sym_extern] = ACTIONS(1833), + [anon_sym_module] = ACTIONS(1833), + [anon_sym_use] = ACTIONS(1833), + [anon_sym_LPAREN] = ACTIONS(1835), + [anon_sym_COMMA] = ACTIONS(1835), + [anon_sym_DOLLAR] = ACTIONS(1833), + [anon_sym_error] = ACTIONS(1833), + [anon_sym_DASH2] = ACTIONS(1833), + [anon_sym_break] = ACTIONS(1833), + [anon_sym_continue] = ACTIONS(1833), + [anon_sym_for] = ACTIONS(1833), + [anon_sym_in2] = ACTIONS(1833), + [anon_sym_loop] = ACTIONS(1833), + [anon_sym_make] = ACTIONS(1833), + [anon_sym_while] = ACTIONS(1833), + [anon_sym_do] = ACTIONS(1833), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_else] = ACTIONS(1833), + [anon_sym_match] = ACTIONS(1833), + [anon_sym_RBRACE] = ACTIONS(1835), + [anon_sym_try] = ACTIONS(1833), + [anon_sym_catch] = ACTIONS(1833), + [anon_sym_return] = ACTIONS(1833), + [anon_sym_source] = ACTIONS(1833), + [anon_sym_source_DASHenv] = ACTIONS(1833), + [anon_sym_hide] = ACTIONS(1833), + [anon_sym_hide_DASHenv] = ACTIONS(1833), + [anon_sym_overlay] = ACTIONS(1833), + [anon_sym_as] = ACTIONS(1833), + [anon_sym_PLUS2] = ACTIONS(1833), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1835), + [aux_sym__val_number_decimal_token1] = ACTIONS(1833), + [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), + [aux_sym__val_number_token4] = ACTIONS(1833), + [aux_sym__val_number_token5] = ACTIONS(1833), + [aux_sym__val_number_token6] = ACTIONS(1833), + [anon_sym_DQUOTE] = ACTIONS(1835), + [sym__str_single_quotes] = ACTIONS(1835), + [sym__str_back_ticks] = ACTIONS(1835), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1835), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1835), + [anon_sym_register] = ACTIONS(1833), + [anon_sym_DOT2] = ACTIONS(1921), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1835), }, [477] = { [sym_comment] = STATE(477), - [anon_sym_export] = ACTIONS(2019), - [anon_sym_alias] = ACTIONS(2019), - [anon_sym_let] = ACTIONS(2019), - [anon_sym_let_DASHenv] = ACTIONS(2019), - [anon_sym_mut] = ACTIONS(2019), - [anon_sym_const] = ACTIONS(2019), - [aux_sym_cmd_identifier_token1] = ACTIONS(2019), - [aux_sym_cmd_identifier_token2] = ACTIONS(2019), - [aux_sym_cmd_identifier_token3] = ACTIONS(2019), - [aux_sym_cmd_identifier_token4] = ACTIONS(2019), - [aux_sym_cmd_identifier_token5] = ACTIONS(2019), - [aux_sym_cmd_identifier_token6] = ACTIONS(2019), - [aux_sym_cmd_identifier_token7] = ACTIONS(2019), - [aux_sym_cmd_identifier_token8] = ACTIONS(2019), - [aux_sym_cmd_identifier_token9] = ACTIONS(2019), - [aux_sym_cmd_identifier_token10] = ACTIONS(2019), - [aux_sym_cmd_identifier_token11] = ACTIONS(2019), - [aux_sym_cmd_identifier_token12] = ACTIONS(2019), - [aux_sym_cmd_identifier_token13] = ACTIONS(2019), - [aux_sym_cmd_identifier_token14] = ACTIONS(2019), - [aux_sym_cmd_identifier_token15] = ACTIONS(2019), - [aux_sym_cmd_identifier_token16] = ACTIONS(2019), - [aux_sym_cmd_identifier_token17] = ACTIONS(2019), - [aux_sym_cmd_identifier_token18] = ACTIONS(2019), - [aux_sym_cmd_identifier_token19] = ACTIONS(2019), - [aux_sym_cmd_identifier_token20] = ACTIONS(2019), - [aux_sym_cmd_identifier_token21] = ACTIONS(2019), - [aux_sym_cmd_identifier_token22] = ACTIONS(2019), - [aux_sym_cmd_identifier_token23] = ACTIONS(2019), - [aux_sym_cmd_identifier_token24] = ACTIONS(2019), - [aux_sym_cmd_identifier_token25] = ACTIONS(2019), - [aux_sym_cmd_identifier_token26] = ACTIONS(2019), - [aux_sym_cmd_identifier_token27] = ACTIONS(2019), - [aux_sym_cmd_identifier_token28] = ACTIONS(2019), - [aux_sym_cmd_identifier_token29] = ACTIONS(2019), - [aux_sym_cmd_identifier_token30] = ACTIONS(2019), - [aux_sym_cmd_identifier_token31] = ACTIONS(2019), - [aux_sym_cmd_identifier_token32] = ACTIONS(2019), - [aux_sym_cmd_identifier_token33] = ACTIONS(2019), - [aux_sym_cmd_identifier_token34] = ACTIONS(2019), - [aux_sym_cmd_identifier_token35] = ACTIONS(2019), - [aux_sym_cmd_identifier_token36] = ACTIONS(2019), - [aux_sym_cmd_identifier_token37] = ACTIONS(2019), - [aux_sym_cmd_identifier_token38] = ACTIONS(2019), - [aux_sym_cmd_identifier_token39] = ACTIONS(2019), - [aux_sym_cmd_identifier_token40] = ACTIONS(2019), - [anon_sym_def] = ACTIONS(2019), - [anon_sym_export_DASHenv] = ACTIONS(2019), - [anon_sym_extern] = ACTIONS(2019), - [anon_sym_module] = ACTIONS(2019), - [anon_sym_use] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2019), - [anon_sym_COMMA] = ACTIONS(2019), - [anon_sym_DOLLAR] = ACTIONS(2019), - [anon_sym_error] = ACTIONS(2019), - [anon_sym_DASH2] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2019), - [anon_sym_continue] = ACTIONS(2019), - [anon_sym_for] = ACTIONS(2019), - [anon_sym_in2] = ACTIONS(2019), - [anon_sym_loop] = ACTIONS(2019), - [anon_sym_make] = ACTIONS(2019), - [anon_sym_while] = ACTIONS(2019), - [anon_sym_do] = ACTIONS(2019), - [anon_sym_if] = ACTIONS(2019), - [anon_sym_else] = ACTIONS(2019), - [anon_sym_match] = ACTIONS(2019), - [anon_sym_RBRACE] = ACTIONS(2019), - [anon_sym_try] = ACTIONS(2019), - [anon_sym_catch] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_source] = ACTIONS(2019), - [anon_sym_source_DASHenv] = ACTIONS(2019), - [anon_sym_register] = ACTIONS(2019), - [anon_sym_hide] = ACTIONS(2019), - [anon_sym_hide_DASHenv] = ACTIONS(2019), - [anon_sym_overlay] = ACTIONS(2019), - [anon_sym_as] = ACTIONS(2019), - [anon_sym_PLUS2] = ACTIONS(2019), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2019), - [anon_sym_DOT_DOT2] = ACTIONS(2021), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2023), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2023), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2019), - [aux_sym__val_number_decimal_token1] = ACTIONS(2019), - [aux_sym__val_number_decimal_token2] = ACTIONS(2019), - [aux_sym__val_number_decimal_token3] = ACTIONS(2019), - [aux_sym__val_number_decimal_token4] = ACTIONS(2019), - [aux_sym__val_number_token1] = ACTIONS(2019), - [aux_sym__val_number_token2] = ACTIONS(2019), - [aux_sym__val_number_token3] = ACTIONS(2019), - [aux_sym__val_number_token4] = ACTIONS(2019), - [aux_sym__val_number_token5] = ACTIONS(2019), - [aux_sym__val_number_token6] = ACTIONS(2019), - [anon_sym_DQUOTE] = ACTIONS(2019), - [sym__str_single_quotes] = ACTIONS(2019), - [sym__str_back_ticks] = ACTIONS(2019), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2019), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2019), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2019), - [sym__entry_separator] = ACTIONS(2025), + [anon_sym_export] = ACTIONS(2018), + [anon_sym_alias] = ACTIONS(2018), + [anon_sym_let] = ACTIONS(2018), + [anon_sym_let_DASHenv] = ACTIONS(2018), + [anon_sym_mut] = ACTIONS(2018), + [anon_sym_const] = ACTIONS(2018), + [aux_sym_cmd_identifier_token1] = ACTIONS(2018), + [aux_sym_cmd_identifier_token2] = ACTIONS(2018), + [aux_sym_cmd_identifier_token3] = ACTIONS(2018), + [aux_sym_cmd_identifier_token4] = ACTIONS(2018), + [aux_sym_cmd_identifier_token5] = ACTIONS(2018), + [aux_sym_cmd_identifier_token6] = ACTIONS(2018), + [aux_sym_cmd_identifier_token7] = ACTIONS(2018), + [aux_sym_cmd_identifier_token8] = ACTIONS(2018), + [aux_sym_cmd_identifier_token9] = ACTIONS(2018), + [aux_sym_cmd_identifier_token10] = ACTIONS(2018), + [aux_sym_cmd_identifier_token11] = ACTIONS(2018), + [aux_sym_cmd_identifier_token12] = ACTIONS(2018), + [aux_sym_cmd_identifier_token13] = ACTIONS(2018), + [aux_sym_cmd_identifier_token14] = ACTIONS(2018), + [aux_sym_cmd_identifier_token15] = ACTIONS(2018), + [aux_sym_cmd_identifier_token16] = ACTIONS(2018), + [aux_sym_cmd_identifier_token17] = ACTIONS(2018), + [aux_sym_cmd_identifier_token18] = ACTIONS(2018), + [aux_sym_cmd_identifier_token19] = ACTIONS(2018), + [aux_sym_cmd_identifier_token20] = ACTIONS(2018), + [aux_sym_cmd_identifier_token21] = ACTIONS(2018), + [aux_sym_cmd_identifier_token22] = ACTIONS(2018), + [aux_sym_cmd_identifier_token23] = ACTIONS(2018), + [aux_sym_cmd_identifier_token24] = ACTIONS(2018), + [aux_sym_cmd_identifier_token25] = ACTIONS(2018), + [aux_sym_cmd_identifier_token26] = ACTIONS(2018), + [aux_sym_cmd_identifier_token27] = ACTIONS(2018), + [aux_sym_cmd_identifier_token28] = ACTIONS(2018), + [aux_sym_cmd_identifier_token29] = ACTIONS(2018), + [aux_sym_cmd_identifier_token30] = ACTIONS(2018), + [aux_sym_cmd_identifier_token31] = ACTIONS(2018), + [aux_sym_cmd_identifier_token32] = ACTIONS(2018), + [aux_sym_cmd_identifier_token33] = ACTIONS(2018), + [aux_sym_cmd_identifier_token34] = ACTIONS(2018), + [aux_sym_cmd_identifier_token35] = ACTIONS(2018), + [aux_sym_cmd_identifier_token36] = ACTIONS(2018), + [aux_sym_cmd_identifier_token37] = ACTIONS(2018), + [aux_sym_cmd_identifier_token38] = ACTIONS(2018), + [aux_sym_cmd_identifier_token39] = ACTIONS(2018), + [aux_sym_cmd_identifier_token40] = ACTIONS(2018), + [anon_sym_def] = ACTIONS(2018), + [anon_sym_export_DASHenv] = ACTIONS(2018), + [anon_sym_extern] = ACTIONS(2018), + [anon_sym_module] = ACTIONS(2018), + [anon_sym_use] = ACTIONS(2018), + [anon_sym_LPAREN] = ACTIONS(2018), + [anon_sym_COMMA] = ACTIONS(2018), + [anon_sym_DOLLAR] = ACTIONS(2018), + [anon_sym_error] = ACTIONS(2018), + [anon_sym_DASH2] = ACTIONS(2018), + [anon_sym_break] = ACTIONS(2018), + [anon_sym_continue] = ACTIONS(2018), + [anon_sym_for] = ACTIONS(2018), + [anon_sym_in2] = ACTIONS(2018), + [anon_sym_loop] = ACTIONS(2018), + [anon_sym_make] = ACTIONS(2018), + [anon_sym_while] = ACTIONS(2018), + [anon_sym_do] = ACTIONS(2018), + [anon_sym_if] = ACTIONS(2018), + [anon_sym_else] = ACTIONS(2018), + [anon_sym_match] = ACTIONS(2018), + [anon_sym_RBRACE] = ACTIONS(2018), + [anon_sym_try] = ACTIONS(2018), + [anon_sym_catch] = ACTIONS(2018), + [anon_sym_return] = ACTIONS(2018), + [anon_sym_source] = ACTIONS(2018), + [anon_sym_source_DASHenv] = ACTIONS(2018), + [anon_sym_hide] = ACTIONS(2018), + [anon_sym_hide_DASHenv] = ACTIONS(2018), + [anon_sym_overlay] = ACTIONS(2018), + [anon_sym_as] = ACTIONS(2018), + [anon_sym_PLUS2] = ACTIONS(2018), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2018), + [anon_sym_DOT_DOT2] = ACTIONS(2002), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2004), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2018), + [aux_sym__val_number_decimal_token1] = ACTIONS(2018), + [aux_sym__val_number_decimal_token2] = ACTIONS(2018), + [aux_sym__val_number_decimal_token3] = ACTIONS(2018), + [aux_sym__val_number_decimal_token4] = ACTIONS(2018), + [aux_sym__val_number_token1] = ACTIONS(2018), + [aux_sym__val_number_token2] = ACTIONS(2018), + [aux_sym__val_number_token3] = ACTIONS(2018), + [aux_sym__val_number_token4] = ACTIONS(2018), + [aux_sym__val_number_token5] = ACTIONS(2018), + [aux_sym__val_number_token6] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2018), + [sym__str_single_quotes] = ACTIONS(2018), + [sym__str_back_ticks] = ACTIONS(2018), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2018), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2018), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2018), + [sym__entry_separator] = ACTIONS(2020), + [anon_sym_register] = ACTIONS(2018), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2025), + [sym_raw_string_begin] = ACTIONS(2020), }, [478] = { + [sym_cell_path] = STATE(706), + [sym_path] = STATE(565), [sym_comment] = STATE(478), - [anon_sym_export] = ACTIONS(2027), - [anon_sym_alias] = ACTIONS(2027), - [anon_sym_let] = ACTIONS(2027), - [anon_sym_let_DASHenv] = ACTIONS(2027), - [anon_sym_mut] = ACTIONS(2027), - [anon_sym_const] = ACTIONS(2027), - [aux_sym_cmd_identifier_token1] = ACTIONS(2027), - [aux_sym_cmd_identifier_token2] = ACTIONS(2027), - [aux_sym_cmd_identifier_token3] = ACTIONS(2027), - [aux_sym_cmd_identifier_token4] = ACTIONS(2027), - [aux_sym_cmd_identifier_token5] = ACTIONS(2027), - [aux_sym_cmd_identifier_token6] = ACTIONS(2027), - [aux_sym_cmd_identifier_token7] = ACTIONS(2027), - [aux_sym_cmd_identifier_token8] = ACTIONS(2027), - [aux_sym_cmd_identifier_token9] = ACTIONS(2027), - [aux_sym_cmd_identifier_token10] = ACTIONS(2027), - [aux_sym_cmd_identifier_token11] = ACTIONS(2027), - [aux_sym_cmd_identifier_token12] = ACTIONS(2027), - [aux_sym_cmd_identifier_token13] = ACTIONS(2027), - [aux_sym_cmd_identifier_token14] = ACTIONS(2027), - [aux_sym_cmd_identifier_token15] = ACTIONS(2027), - [aux_sym_cmd_identifier_token16] = ACTIONS(2027), - [aux_sym_cmd_identifier_token17] = ACTIONS(2027), - [aux_sym_cmd_identifier_token18] = ACTIONS(2027), - [aux_sym_cmd_identifier_token19] = ACTIONS(2027), - [aux_sym_cmd_identifier_token20] = ACTIONS(2027), - [aux_sym_cmd_identifier_token21] = ACTIONS(2027), - [aux_sym_cmd_identifier_token22] = ACTIONS(2027), - [aux_sym_cmd_identifier_token23] = ACTIONS(2027), - [aux_sym_cmd_identifier_token24] = ACTIONS(2027), - [aux_sym_cmd_identifier_token25] = ACTIONS(2027), - [aux_sym_cmd_identifier_token26] = ACTIONS(2027), - [aux_sym_cmd_identifier_token27] = ACTIONS(2027), - [aux_sym_cmd_identifier_token28] = ACTIONS(2027), - [aux_sym_cmd_identifier_token29] = ACTIONS(2027), - [aux_sym_cmd_identifier_token30] = ACTIONS(2027), - [aux_sym_cmd_identifier_token31] = ACTIONS(2027), - [aux_sym_cmd_identifier_token32] = ACTIONS(2027), - [aux_sym_cmd_identifier_token33] = ACTIONS(2027), - [aux_sym_cmd_identifier_token34] = ACTIONS(2027), - [aux_sym_cmd_identifier_token35] = ACTIONS(2027), - [aux_sym_cmd_identifier_token36] = ACTIONS(2027), - [aux_sym_cmd_identifier_token37] = ACTIONS(2027), - [aux_sym_cmd_identifier_token38] = ACTIONS(2027), - [aux_sym_cmd_identifier_token39] = ACTIONS(2027), - [aux_sym_cmd_identifier_token40] = ACTIONS(2027), - [anon_sym_def] = ACTIONS(2027), - [anon_sym_export_DASHenv] = ACTIONS(2027), - [anon_sym_extern] = ACTIONS(2027), - [anon_sym_module] = ACTIONS(2027), - [anon_sym_use] = ACTIONS(2027), - [anon_sym_LPAREN] = ACTIONS(2027), - [anon_sym_COMMA] = ACTIONS(2027), - [anon_sym_DOLLAR] = ACTIONS(2027), - [anon_sym_error] = ACTIONS(2027), - [anon_sym_DASH2] = ACTIONS(2027), - [anon_sym_break] = ACTIONS(2027), - [anon_sym_continue] = ACTIONS(2027), - [anon_sym_for] = ACTIONS(2027), - [anon_sym_in2] = ACTIONS(2027), - [anon_sym_loop] = ACTIONS(2027), - [anon_sym_make] = ACTIONS(2027), - [anon_sym_while] = ACTIONS(2027), - [anon_sym_do] = ACTIONS(2027), - [anon_sym_if] = ACTIONS(2027), - [anon_sym_else] = ACTIONS(2027), - [anon_sym_match] = ACTIONS(2027), - [anon_sym_RBRACE] = ACTIONS(2027), - [anon_sym_try] = ACTIONS(2027), - [anon_sym_catch] = ACTIONS(2027), - [anon_sym_return] = ACTIONS(2027), - [anon_sym_source] = ACTIONS(2027), - [anon_sym_source_DASHenv] = ACTIONS(2027), - [anon_sym_register] = ACTIONS(2027), - [anon_sym_hide] = ACTIONS(2027), - [anon_sym_hide_DASHenv] = ACTIONS(2027), - [anon_sym_overlay] = ACTIONS(2027), - [anon_sym_as] = ACTIONS(2027), - [anon_sym_PLUS2] = ACTIONS(2027), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2027), - [anon_sym_DOT_DOT2] = ACTIONS(2029), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2031), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2031), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2027), - [aux_sym__val_number_decimal_token1] = ACTIONS(2027), - [aux_sym__val_number_decimal_token2] = ACTIONS(2027), - [aux_sym__val_number_decimal_token3] = ACTIONS(2027), - [aux_sym__val_number_decimal_token4] = ACTIONS(2027), - [aux_sym__val_number_token1] = ACTIONS(2027), - [aux_sym__val_number_token2] = ACTIONS(2027), - [aux_sym__val_number_token3] = ACTIONS(2027), - [aux_sym__val_number_token4] = ACTIONS(2027), - [aux_sym__val_number_token5] = ACTIONS(2027), - [aux_sym__val_number_token6] = ACTIONS(2027), - [anon_sym_DQUOTE] = ACTIONS(2027), - [sym__str_single_quotes] = ACTIONS(2027), - [sym__str_back_ticks] = ACTIONS(2027), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2027), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2027), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2027), - [sym__entry_separator] = ACTIONS(2033), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2033), + [aux_sym_cell_path_repeat1] = STATE(484), + [anon_sym_export] = ACTIONS(1861), + [anon_sym_alias] = ACTIONS(1861), + [anon_sym_let] = ACTIONS(1861), + [anon_sym_let_DASHenv] = ACTIONS(1861), + [anon_sym_mut] = ACTIONS(1861), + [anon_sym_const] = ACTIONS(1861), + [aux_sym_cmd_identifier_token1] = ACTIONS(1861), + [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(1861), + [aux_sym_cmd_identifier_token9] = ACTIONS(1861), + [aux_sym_cmd_identifier_token10] = ACTIONS(1863), + [aux_sym_cmd_identifier_token11] = ACTIONS(1863), + [aux_sym_cmd_identifier_token12] = ACTIONS(1861), + [aux_sym_cmd_identifier_token13] = ACTIONS(1861), + [aux_sym_cmd_identifier_token14] = ACTIONS(1861), + [aux_sym_cmd_identifier_token15] = ACTIONS(1861), + [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(1861), + [aux_sym_cmd_identifier_token35] = ACTIONS(1863), + [aux_sym_cmd_identifier_token36] = ACTIONS(1863), + [aux_sym_cmd_identifier_token37] = ACTIONS(1863), + [aux_sym_cmd_identifier_token38] = ACTIONS(1861), + [aux_sym_cmd_identifier_token39] = ACTIONS(1863), + [aux_sym_cmd_identifier_token40] = ACTIONS(1863), + [anon_sym_def] = ACTIONS(1861), + [anon_sym_export_DASHenv] = ACTIONS(1861), + [anon_sym_extern] = ACTIONS(1861), + [anon_sym_module] = ACTIONS(1861), + [anon_sym_use] = ACTIONS(1861), + [anon_sym_LPAREN] = ACTIONS(1863), + [anon_sym_COMMA] = ACTIONS(1863), + [anon_sym_DOLLAR] = ACTIONS(1861), + [anon_sym_error] = ACTIONS(1861), + [anon_sym_DASH2] = ACTIONS(1861), + [anon_sym_break] = ACTIONS(1861), + [anon_sym_continue] = ACTIONS(1861), + [anon_sym_for] = ACTIONS(1861), + [anon_sym_in2] = ACTIONS(1861), + [anon_sym_loop] = ACTIONS(1861), + [anon_sym_make] = ACTIONS(1861), + [anon_sym_while] = ACTIONS(1861), + [anon_sym_do] = ACTIONS(1861), + [anon_sym_if] = ACTIONS(1861), + [anon_sym_else] = ACTIONS(1861), + [anon_sym_match] = ACTIONS(1861), + [anon_sym_RBRACE] = ACTIONS(1863), + [anon_sym_try] = ACTIONS(1861), + [anon_sym_catch] = ACTIONS(1861), + [anon_sym_return] = ACTIONS(1861), + [anon_sym_source] = ACTIONS(1861), + [anon_sym_source_DASHenv] = ACTIONS(1861), + [anon_sym_hide] = ACTIONS(1861), + [anon_sym_hide_DASHenv] = ACTIONS(1861), + [anon_sym_overlay] = ACTIONS(1861), + [anon_sym_as] = ACTIONS(1861), + [anon_sym_PLUS2] = ACTIONS(1861), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1863), + [aux_sym__val_number_decimal_token1] = ACTIONS(1861), + [aux_sym__val_number_decimal_token2] = 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), + [aux_sym__val_number_token4] = ACTIONS(1861), + [aux_sym__val_number_token5] = ACTIONS(1861), + [aux_sym__val_number_token6] = ACTIONS(1861), + [anon_sym_DQUOTE] = ACTIONS(1863), + [sym__str_single_quotes] = ACTIONS(1863), + [sym__str_back_ticks] = ACTIONS(1863), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1863), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1863), + [anon_sym_register] = ACTIONS(1861), + [anon_sym_DOT2] = ACTIONS(1921), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1863), }, [479] = { [sym_comment] = STATE(479), - [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), - [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(2035), - [anon_sym_DOLLAR] = ACTIONS(2035), - [anon_sym_error] = ACTIONS(2035), - [anon_sym_DASH2] = ACTIONS(2035), - [anon_sym_break] = ACTIONS(2035), - [anon_sym_continue] = ACTIONS(2035), - [anon_sym_for] = ACTIONS(2035), - [anon_sym_in2] = 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_as] = ACTIONS(2035), - [anon_sym_PLUS2] = ACTIONS(2035), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2035), - [anon_sym_DOT_DOT2] = ACTIONS(2037), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2039), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2039), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2035), - [aux_sym__val_number_decimal_token1] = ACTIONS(2035), - [aux_sym__val_number_decimal_token2] = ACTIONS(2035), - [aux_sym__val_number_decimal_token3] = ACTIONS(2035), - [aux_sym__val_number_decimal_token4] = ACTIONS(2035), - [aux_sym__val_number_token1] = ACTIONS(2035), - [aux_sym__val_number_token2] = ACTIONS(2035), - [aux_sym__val_number_token3] = ACTIONS(2035), - [aux_sym__val_number_token4] = ACTIONS(2035), - [aux_sym__val_number_token5] = ACTIONS(2035), - [aux_sym__val_number_token6] = ACTIONS(2035), - [anon_sym_DQUOTE] = ACTIONS(2035), - [sym__str_single_quotes] = ACTIONS(2035), - [sym__str_back_ticks] = ACTIONS(2035), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2035), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2035), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2035), - [sym__entry_separator] = ACTIONS(2041), + [anon_sym_export] = ACTIONS(2022), + [anon_sym_alias] = ACTIONS(2022), + [anon_sym_let] = ACTIONS(2022), + [anon_sym_let_DASHenv] = ACTIONS(2022), + [anon_sym_mut] = ACTIONS(2022), + [anon_sym_const] = ACTIONS(2022), + [aux_sym_cmd_identifier_token1] = ACTIONS(2022), + [aux_sym_cmd_identifier_token2] = ACTIONS(2022), + [aux_sym_cmd_identifier_token3] = ACTIONS(2022), + [aux_sym_cmd_identifier_token4] = ACTIONS(2022), + [aux_sym_cmd_identifier_token5] = ACTIONS(2022), + [aux_sym_cmd_identifier_token6] = ACTIONS(2022), + [aux_sym_cmd_identifier_token7] = ACTIONS(2022), + [aux_sym_cmd_identifier_token8] = ACTIONS(2022), + [aux_sym_cmd_identifier_token9] = ACTIONS(2022), + [aux_sym_cmd_identifier_token10] = ACTIONS(2022), + [aux_sym_cmd_identifier_token11] = ACTIONS(2022), + [aux_sym_cmd_identifier_token12] = ACTIONS(2022), + [aux_sym_cmd_identifier_token13] = ACTIONS(2022), + [aux_sym_cmd_identifier_token14] = ACTIONS(2022), + [aux_sym_cmd_identifier_token15] = ACTIONS(2022), + [aux_sym_cmd_identifier_token16] = ACTIONS(2022), + [aux_sym_cmd_identifier_token17] = ACTIONS(2022), + [aux_sym_cmd_identifier_token18] = ACTIONS(2022), + [aux_sym_cmd_identifier_token19] = ACTIONS(2022), + [aux_sym_cmd_identifier_token20] = ACTIONS(2022), + [aux_sym_cmd_identifier_token21] = ACTIONS(2022), + [aux_sym_cmd_identifier_token22] = ACTIONS(2022), + [aux_sym_cmd_identifier_token23] = ACTIONS(2022), + [aux_sym_cmd_identifier_token24] = ACTIONS(2022), + [aux_sym_cmd_identifier_token25] = ACTIONS(2022), + [aux_sym_cmd_identifier_token26] = ACTIONS(2022), + [aux_sym_cmd_identifier_token27] = ACTIONS(2022), + [aux_sym_cmd_identifier_token28] = ACTIONS(2022), + [aux_sym_cmd_identifier_token29] = ACTIONS(2022), + [aux_sym_cmd_identifier_token30] = ACTIONS(2022), + [aux_sym_cmd_identifier_token31] = ACTIONS(2022), + [aux_sym_cmd_identifier_token32] = ACTIONS(2022), + [aux_sym_cmd_identifier_token33] = ACTIONS(2022), + [aux_sym_cmd_identifier_token34] = ACTIONS(2022), + [aux_sym_cmd_identifier_token35] = ACTIONS(2022), + [aux_sym_cmd_identifier_token36] = ACTIONS(2022), + [aux_sym_cmd_identifier_token37] = ACTIONS(2022), + [aux_sym_cmd_identifier_token38] = ACTIONS(2022), + [aux_sym_cmd_identifier_token39] = ACTIONS(2022), + [aux_sym_cmd_identifier_token40] = ACTIONS(2022), + [anon_sym_def] = ACTIONS(2022), + [anon_sym_export_DASHenv] = ACTIONS(2022), + [anon_sym_extern] = ACTIONS(2022), + [anon_sym_module] = ACTIONS(2022), + [anon_sym_use] = ACTIONS(2022), + [anon_sym_LPAREN] = ACTIONS(2022), + [anon_sym_COMMA] = ACTIONS(2022), + [anon_sym_DOLLAR] = ACTIONS(2022), + [anon_sym_error] = ACTIONS(2022), + [anon_sym_DASH2] = ACTIONS(2022), + [anon_sym_break] = ACTIONS(2022), + [anon_sym_continue] = ACTIONS(2022), + [anon_sym_for] = ACTIONS(2022), + [anon_sym_in2] = ACTIONS(2022), + [anon_sym_loop] = ACTIONS(2022), + [anon_sym_make] = ACTIONS(2022), + [anon_sym_while] = ACTIONS(2022), + [anon_sym_do] = ACTIONS(2022), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_else] = ACTIONS(2022), + [anon_sym_match] = ACTIONS(2022), + [anon_sym_RBRACE] = ACTIONS(2022), + [anon_sym_try] = ACTIONS(2022), + [anon_sym_catch] = ACTIONS(2022), + [anon_sym_return] = ACTIONS(2022), + [anon_sym_source] = ACTIONS(2022), + [anon_sym_source_DASHenv] = ACTIONS(2022), + [anon_sym_hide] = ACTIONS(2022), + [anon_sym_hide_DASHenv] = ACTIONS(2022), + [anon_sym_overlay] = ACTIONS(2022), + [anon_sym_as] = ACTIONS(2022), + [anon_sym_PLUS2] = ACTIONS(2022), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2022), + [anon_sym_DOT_DOT2] = ACTIONS(2022), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2024), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2024), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2022), + [aux_sym__val_number_decimal_token1] = ACTIONS(2022), + [aux_sym__val_number_decimal_token2] = ACTIONS(2022), + [aux_sym__val_number_decimal_token3] = ACTIONS(2022), + [aux_sym__val_number_decimal_token4] = ACTIONS(2022), + [aux_sym__val_number_token1] = ACTIONS(2022), + [aux_sym__val_number_token2] = ACTIONS(2022), + [aux_sym__val_number_token3] = ACTIONS(2022), + [aux_sym__val_number_token4] = ACTIONS(2022), + [aux_sym__val_number_token5] = ACTIONS(2022), + [aux_sym__val_number_token6] = ACTIONS(2022), + [anon_sym_DQUOTE] = ACTIONS(2022), + [sym__str_single_quotes] = ACTIONS(2022), + [sym__str_back_ticks] = ACTIONS(2022), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2022), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2022), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2022), + [sym__entry_separator] = ACTIONS(2024), + [anon_sym_register] = ACTIONS(2022), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2041), + [sym_raw_string_begin] = ACTIONS(2024), }, [480] = { - [sym_cell_path] = STATE(748), - [sym_path] = STATE(587), [sym_comment] = STATE(480), - [aux_sym_cell_path_repeat1] = STATE(446), - [anon_sym_export] = ACTIONS(1921), - [anon_sym_alias] = ACTIONS(1921), - [anon_sym_let] = ACTIONS(1921), - [anon_sym_let_DASHenv] = ACTIONS(1921), - [anon_sym_mut] = ACTIONS(1921), - [anon_sym_const] = ACTIONS(1921), - [aux_sym_cmd_identifier_token1] = ACTIONS(1921), - [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(1921), - [aux_sym_cmd_identifier_token9] = ACTIONS(1921), - [aux_sym_cmd_identifier_token10] = ACTIONS(1923), - [aux_sym_cmd_identifier_token11] = ACTIONS(1923), - [aux_sym_cmd_identifier_token12] = ACTIONS(1921), - [aux_sym_cmd_identifier_token13] = ACTIONS(1921), - [aux_sym_cmd_identifier_token14] = ACTIONS(1921), - [aux_sym_cmd_identifier_token15] = ACTIONS(1921), - [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(1921), - [aux_sym_cmd_identifier_token35] = ACTIONS(1923), - [aux_sym_cmd_identifier_token36] = ACTIONS(1923), - [aux_sym_cmd_identifier_token37] = ACTIONS(1923), - [aux_sym_cmd_identifier_token38] = ACTIONS(1921), - [aux_sym_cmd_identifier_token39] = ACTIONS(1923), - [aux_sym_cmd_identifier_token40] = ACTIONS(1923), - [anon_sym_def] = ACTIONS(1921), - [anon_sym_export_DASHenv] = ACTIONS(1921), - [anon_sym_extern] = ACTIONS(1921), - [anon_sym_module] = ACTIONS(1921), - [anon_sym_use] = ACTIONS(1921), - [anon_sym_LPAREN] = ACTIONS(1923), - [anon_sym_COMMA] = ACTIONS(1923), - [anon_sym_DOLLAR] = ACTIONS(1921), - [anon_sym_error] = ACTIONS(1921), - [anon_sym_DASH2] = ACTIONS(1921), - [anon_sym_break] = ACTIONS(1921), - [anon_sym_continue] = ACTIONS(1921), - [anon_sym_for] = ACTIONS(1921), - [anon_sym_in2] = ACTIONS(1921), - [anon_sym_loop] = ACTIONS(1921), - [anon_sym_make] = ACTIONS(1921), - [anon_sym_while] = ACTIONS(1921), - [anon_sym_do] = ACTIONS(1921), - [anon_sym_if] = ACTIONS(1921), - [anon_sym_else] = ACTIONS(1921), - [anon_sym_match] = ACTIONS(1921), - [anon_sym_RBRACE] = ACTIONS(1923), - [anon_sym_try] = ACTIONS(1921), - [anon_sym_catch] = ACTIONS(1921), - [anon_sym_return] = ACTIONS(1921), - [anon_sym_source] = ACTIONS(1921), - [anon_sym_source_DASHenv] = ACTIONS(1921), - [anon_sym_register] = ACTIONS(1921), - [anon_sym_hide] = ACTIONS(1921), - [anon_sym_hide_DASHenv] = ACTIONS(1921), - [anon_sym_overlay] = ACTIONS(1921), - [anon_sym_as] = ACTIONS(1921), - [anon_sym_PLUS2] = ACTIONS(1921), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1923), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1923), - [aux_sym__val_number_decimal_token1] = ACTIONS(1921), - [aux_sym__val_number_decimal_token2] = ACTIONS(1923), - [aux_sym__val_number_decimal_token3] = ACTIONS(1923), - [aux_sym__val_number_decimal_token4] = ACTIONS(1923), - [aux_sym__val_number_token1] = ACTIONS(1923), - [aux_sym__val_number_token2] = ACTIONS(1923), - [aux_sym__val_number_token3] = ACTIONS(1923), - [aux_sym__val_number_token4] = ACTIONS(1921), - [aux_sym__val_number_token5] = ACTIONS(1921), - [aux_sym__val_number_token6] = ACTIONS(1921), - [anon_sym_DQUOTE] = ACTIONS(1923), - [sym__str_single_quotes] = ACTIONS(1923), - [sym__str_back_ticks] = ACTIONS(1923), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1923), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1923), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1923), - [anon_sym_DOT2] = ACTIONS(1973), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1923), + [anon_sym_export] = ACTIONS(2026), + [anon_sym_alias] = ACTIONS(2026), + [anon_sym_let] = ACTIONS(2026), + [anon_sym_let_DASHenv] = ACTIONS(2026), + [anon_sym_mut] = ACTIONS(2026), + [anon_sym_const] = ACTIONS(2026), + [aux_sym_cmd_identifier_token1] = ACTIONS(2026), + [aux_sym_cmd_identifier_token2] = ACTIONS(2026), + [aux_sym_cmd_identifier_token3] = ACTIONS(2026), + [aux_sym_cmd_identifier_token4] = ACTIONS(2026), + [aux_sym_cmd_identifier_token5] = ACTIONS(2026), + [aux_sym_cmd_identifier_token6] = ACTIONS(2026), + [aux_sym_cmd_identifier_token7] = ACTIONS(2026), + [aux_sym_cmd_identifier_token8] = ACTIONS(2026), + [aux_sym_cmd_identifier_token9] = ACTIONS(2026), + [aux_sym_cmd_identifier_token10] = ACTIONS(2026), + [aux_sym_cmd_identifier_token11] = ACTIONS(2026), + [aux_sym_cmd_identifier_token12] = ACTIONS(2026), + [aux_sym_cmd_identifier_token13] = ACTIONS(2026), + [aux_sym_cmd_identifier_token14] = ACTIONS(2026), + [aux_sym_cmd_identifier_token15] = ACTIONS(2026), + [aux_sym_cmd_identifier_token16] = ACTIONS(2026), + [aux_sym_cmd_identifier_token17] = ACTIONS(2026), + [aux_sym_cmd_identifier_token18] = ACTIONS(2026), + [aux_sym_cmd_identifier_token19] = ACTIONS(2026), + [aux_sym_cmd_identifier_token20] = ACTIONS(2026), + [aux_sym_cmd_identifier_token21] = ACTIONS(2026), + [aux_sym_cmd_identifier_token22] = ACTIONS(2026), + [aux_sym_cmd_identifier_token23] = ACTIONS(2026), + [aux_sym_cmd_identifier_token24] = ACTIONS(2026), + [aux_sym_cmd_identifier_token25] = ACTIONS(2026), + [aux_sym_cmd_identifier_token26] = ACTIONS(2026), + [aux_sym_cmd_identifier_token27] = ACTIONS(2026), + [aux_sym_cmd_identifier_token28] = ACTIONS(2026), + [aux_sym_cmd_identifier_token29] = ACTIONS(2026), + [aux_sym_cmd_identifier_token30] = ACTIONS(2026), + [aux_sym_cmd_identifier_token31] = ACTIONS(2026), + [aux_sym_cmd_identifier_token32] = ACTIONS(2026), + [aux_sym_cmd_identifier_token33] = ACTIONS(2026), + [aux_sym_cmd_identifier_token34] = ACTIONS(2026), + [aux_sym_cmd_identifier_token35] = ACTIONS(2026), + [aux_sym_cmd_identifier_token36] = ACTIONS(2026), + [aux_sym_cmd_identifier_token37] = ACTIONS(2026), + [aux_sym_cmd_identifier_token38] = ACTIONS(2026), + [aux_sym_cmd_identifier_token39] = ACTIONS(2026), + [aux_sym_cmd_identifier_token40] = ACTIONS(2026), + [anon_sym_def] = ACTIONS(2026), + [anon_sym_export_DASHenv] = ACTIONS(2026), + [anon_sym_extern] = ACTIONS(2026), + [anon_sym_module] = ACTIONS(2026), + [anon_sym_use] = ACTIONS(2026), + [anon_sym_LPAREN] = ACTIONS(2026), + [anon_sym_COMMA] = ACTIONS(2026), + [anon_sym_DOLLAR] = ACTIONS(2026), + [anon_sym_error] = ACTIONS(2026), + [anon_sym_DASH2] = ACTIONS(2026), + [anon_sym_break] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(2026), + [anon_sym_for] = ACTIONS(2026), + [anon_sym_in2] = ACTIONS(2026), + [anon_sym_loop] = ACTIONS(2026), + [anon_sym_make] = ACTIONS(2026), + [anon_sym_while] = ACTIONS(2026), + [anon_sym_do] = ACTIONS(2026), + [anon_sym_if] = ACTIONS(2026), + [anon_sym_else] = ACTIONS(2026), + [anon_sym_match] = ACTIONS(2026), + [anon_sym_RBRACE] = ACTIONS(2026), + [anon_sym_try] = ACTIONS(2026), + [anon_sym_catch] = ACTIONS(2026), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_source] = ACTIONS(2026), + [anon_sym_source_DASHenv] = ACTIONS(2026), + [anon_sym_hide] = ACTIONS(2026), + [anon_sym_hide_DASHenv] = ACTIONS(2026), + [anon_sym_overlay] = ACTIONS(2026), + [anon_sym_as] = ACTIONS(2026), + [anon_sym_PLUS2] = ACTIONS(2026), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2026), + [anon_sym_DOT_DOT2] = ACTIONS(2026), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2028), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2028), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2026), + [aux_sym__val_number_decimal_token1] = ACTIONS(2026), + [aux_sym__val_number_decimal_token2] = ACTIONS(2026), + [aux_sym__val_number_decimal_token3] = ACTIONS(2026), + [aux_sym__val_number_decimal_token4] = ACTIONS(2026), + [aux_sym__val_number_token1] = ACTIONS(2026), + [aux_sym__val_number_token2] = ACTIONS(2026), + [aux_sym__val_number_token3] = ACTIONS(2026), + [aux_sym__val_number_token4] = ACTIONS(2026), + [aux_sym__val_number_token5] = ACTIONS(2026), + [aux_sym__val_number_token6] = ACTIONS(2026), + [anon_sym_DQUOTE] = ACTIONS(2026), + [sym__str_single_quotes] = ACTIONS(2026), + [sym__str_back_ticks] = ACTIONS(2026), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2026), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2026), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2026), + [sym__entry_separator] = ACTIONS(2028), + [anon_sym_register] = ACTIONS(2026), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2028), }, [481] = { + [sym_cell_path] = STATE(722), + [sym_path] = STATE(565), [sym_comment] = STATE(481), - [anon_sym_export] = ACTIONS(2043), - [anon_sym_alias] = ACTIONS(2043), - [anon_sym_let] = ACTIONS(2043), - [anon_sym_let_DASHenv] = ACTIONS(2043), - [anon_sym_mut] = ACTIONS(2043), - [anon_sym_const] = ACTIONS(2043), - [aux_sym_cmd_identifier_token1] = ACTIONS(2043), - [aux_sym_cmd_identifier_token2] = ACTIONS(2043), - [aux_sym_cmd_identifier_token3] = ACTIONS(2043), - [aux_sym_cmd_identifier_token4] = ACTIONS(2043), - [aux_sym_cmd_identifier_token5] = ACTIONS(2043), - [aux_sym_cmd_identifier_token6] = ACTIONS(2043), - [aux_sym_cmd_identifier_token7] = ACTIONS(2043), - [aux_sym_cmd_identifier_token8] = ACTIONS(2043), - [aux_sym_cmd_identifier_token9] = ACTIONS(2043), - [aux_sym_cmd_identifier_token10] = ACTIONS(2043), - [aux_sym_cmd_identifier_token11] = ACTIONS(2043), - [aux_sym_cmd_identifier_token12] = ACTIONS(2043), - [aux_sym_cmd_identifier_token13] = ACTIONS(2043), - [aux_sym_cmd_identifier_token14] = ACTIONS(2043), - [aux_sym_cmd_identifier_token15] = ACTIONS(2043), - [aux_sym_cmd_identifier_token16] = ACTIONS(2043), - [aux_sym_cmd_identifier_token17] = ACTIONS(2043), - [aux_sym_cmd_identifier_token18] = ACTIONS(2043), - [aux_sym_cmd_identifier_token19] = ACTIONS(2043), - [aux_sym_cmd_identifier_token20] = ACTIONS(2043), - [aux_sym_cmd_identifier_token21] = ACTIONS(2043), - [aux_sym_cmd_identifier_token22] = ACTIONS(2043), - [aux_sym_cmd_identifier_token23] = ACTIONS(2043), - [aux_sym_cmd_identifier_token24] = ACTIONS(2043), - [aux_sym_cmd_identifier_token25] = ACTIONS(2043), - [aux_sym_cmd_identifier_token26] = ACTIONS(2043), - [aux_sym_cmd_identifier_token27] = ACTIONS(2043), - [aux_sym_cmd_identifier_token28] = ACTIONS(2043), - [aux_sym_cmd_identifier_token29] = ACTIONS(2043), - [aux_sym_cmd_identifier_token30] = ACTIONS(2043), - [aux_sym_cmd_identifier_token31] = ACTIONS(2043), - [aux_sym_cmd_identifier_token32] = ACTIONS(2043), - [aux_sym_cmd_identifier_token33] = ACTIONS(2043), - [aux_sym_cmd_identifier_token34] = ACTIONS(2043), - [aux_sym_cmd_identifier_token35] = ACTIONS(2043), - [aux_sym_cmd_identifier_token36] = ACTIONS(2043), - [aux_sym_cmd_identifier_token37] = ACTIONS(2043), - [aux_sym_cmd_identifier_token38] = ACTIONS(2043), - [aux_sym_cmd_identifier_token39] = ACTIONS(2043), - [aux_sym_cmd_identifier_token40] = ACTIONS(2043), - [anon_sym_def] = ACTIONS(2043), - [anon_sym_export_DASHenv] = ACTIONS(2043), - [anon_sym_extern] = ACTIONS(2043), - [anon_sym_module] = ACTIONS(2043), - [anon_sym_use] = ACTIONS(2043), - [anon_sym_LPAREN] = ACTIONS(2043), - [anon_sym_COMMA] = ACTIONS(2043), - [anon_sym_DOLLAR] = ACTIONS(2043), - [anon_sym_error] = ACTIONS(2043), - [anon_sym_DASH2] = ACTIONS(2043), - [anon_sym_break] = ACTIONS(2043), - [anon_sym_continue] = ACTIONS(2043), - [anon_sym_for] = ACTIONS(2043), - [anon_sym_in2] = ACTIONS(2043), - [anon_sym_loop] = ACTIONS(2043), - [anon_sym_make] = ACTIONS(2043), - [anon_sym_while] = ACTIONS(2043), - [anon_sym_do] = ACTIONS(2043), - [anon_sym_if] = ACTIONS(2043), - [anon_sym_else] = ACTIONS(2043), - [anon_sym_match] = ACTIONS(2043), - [anon_sym_RBRACE] = ACTIONS(2043), - [anon_sym_try] = ACTIONS(2043), - [anon_sym_catch] = ACTIONS(2043), - [anon_sym_return] = ACTIONS(2043), - [anon_sym_source] = ACTIONS(2043), - [anon_sym_source_DASHenv] = ACTIONS(2043), - [anon_sym_register] = ACTIONS(2043), - [anon_sym_hide] = ACTIONS(2043), - [anon_sym_hide_DASHenv] = ACTIONS(2043), - [anon_sym_overlay] = ACTIONS(2043), - [anon_sym_as] = ACTIONS(2043), - [anon_sym_PLUS2] = ACTIONS(2043), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2043), - [anon_sym_DOT_DOT2] = ACTIONS(2045), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2047), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2047), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2043), - [aux_sym__val_number_decimal_token1] = ACTIONS(2043), - [aux_sym__val_number_decimal_token2] = ACTIONS(2043), - [aux_sym__val_number_decimal_token3] = ACTIONS(2043), - [aux_sym__val_number_decimal_token4] = ACTIONS(2043), - [aux_sym__val_number_token1] = ACTIONS(2043), - [aux_sym__val_number_token2] = ACTIONS(2043), - [aux_sym__val_number_token3] = ACTIONS(2043), - [aux_sym__val_number_token4] = ACTIONS(2043), - [aux_sym__val_number_token5] = ACTIONS(2043), - [aux_sym__val_number_token6] = ACTIONS(2043), - [anon_sym_DQUOTE] = ACTIONS(2043), - [sym__str_single_quotes] = ACTIONS(2043), - [sym__str_back_ticks] = ACTIONS(2043), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2043), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2043), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2043), - [sym__entry_separator] = ACTIONS(2049), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2049), - }, - [482] = { - [sym_cell_path] = STATE(677), - [sym_path] = STATE(587), - [sym_comment] = STATE(482), - [aux_sym_cell_path_repeat1] = STATE(446), - [anon_sym_export] = ACTIONS(1941), - [anon_sym_alias] = ACTIONS(1941), - [anon_sym_let] = ACTIONS(1941), - [anon_sym_let_DASHenv] = ACTIONS(1941), - [anon_sym_mut] = ACTIONS(1941), - [anon_sym_const] = ACTIONS(1941), - [aux_sym_cmd_identifier_token1] = ACTIONS(1941), - [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(1941), - [aux_sym_cmd_identifier_token9] = ACTIONS(1941), - [aux_sym_cmd_identifier_token10] = ACTIONS(1943), - [aux_sym_cmd_identifier_token11] = ACTIONS(1943), - [aux_sym_cmd_identifier_token12] = ACTIONS(1941), - [aux_sym_cmd_identifier_token13] = ACTIONS(1941), - [aux_sym_cmd_identifier_token14] = ACTIONS(1941), - [aux_sym_cmd_identifier_token15] = ACTIONS(1941), - [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(1941), - [aux_sym_cmd_identifier_token35] = ACTIONS(1943), - [aux_sym_cmd_identifier_token36] = ACTIONS(1943), - [aux_sym_cmd_identifier_token37] = ACTIONS(1943), - [aux_sym_cmd_identifier_token38] = ACTIONS(1941), - [aux_sym_cmd_identifier_token39] = ACTIONS(1943), - [aux_sym_cmd_identifier_token40] = ACTIONS(1943), - [anon_sym_def] = ACTIONS(1941), - [anon_sym_export_DASHenv] = ACTIONS(1941), - [anon_sym_extern] = ACTIONS(1941), - [anon_sym_module] = ACTIONS(1941), - [anon_sym_use] = ACTIONS(1941), - [anon_sym_LPAREN] = ACTIONS(1943), - [anon_sym_COMMA] = ACTIONS(1943), - [anon_sym_DOLLAR] = ACTIONS(1941), - [anon_sym_error] = ACTIONS(1941), - [anon_sym_DASH2] = ACTIONS(1941), - [anon_sym_break] = ACTIONS(1941), - [anon_sym_continue] = ACTIONS(1941), - [anon_sym_for] = ACTIONS(1941), - [anon_sym_in2] = ACTIONS(1941), - [anon_sym_loop] = ACTIONS(1941), - [anon_sym_make] = ACTIONS(1941), - [anon_sym_while] = ACTIONS(1941), - [anon_sym_do] = ACTIONS(1941), - [anon_sym_if] = ACTIONS(1941), - [anon_sym_else] = ACTIONS(1941), - [anon_sym_match] = ACTIONS(1941), - [anon_sym_RBRACE] = ACTIONS(1943), - [anon_sym_try] = ACTIONS(1941), - [anon_sym_catch] = ACTIONS(1941), - [anon_sym_return] = ACTIONS(1941), - [anon_sym_source] = ACTIONS(1941), - [anon_sym_source_DASHenv] = ACTIONS(1941), - [anon_sym_register] = ACTIONS(1941), - [anon_sym_hide] = ACTIONS(1941), - [anon_sym_hide_DASHenv] = ACTIONS(1941), - [anon_sym_overlay] = ACTIONS(1941), - [anon_sym_as] = ACTIONS(1941), - [anon_sym_PLUS2] = ACTIONS(1941), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1943), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1943), - [aux_sym__val_number_decimal_token1] = ACTIONS(1941), - [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), - [aux_sym__val_number_token4] = ACTIONS(1941), - [aux_sym__val_number_token5] = ACTIONS(1941), - [aux_sym__val_number_token6] = ACTIONS(1941), - [anon_sym_DQUOTE] = ACTIONS(1943), - [sym__str_single_quotes] = ACTIONS(1943), - [sym__str_back_ticks] = ACTIONS(1943), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1943), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1943), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1943), - [anon_sym_DOT2] = ACTIONS(1973), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1943), - }, - [483] = { - [sym_cell_path] = STATE(695), - [sym_path] = STATE(587), - [sym_comment] = STATE(483), - [aux_sym_cell_path_repeat1] = STATE(446), - [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(1897), - [aux_sym_cmd_identifier_token3] = ACTIONS(1897), - [aux_sym_cmd_identifier_token4] = ACTIONS(1897), - [aux_sym_cmd_identifier_token5] = ACTIONS(1897), - [aux_sym_cmd_identifier_token6] = ACTIONS(1897), - [aux_sym_cmd_identifier_token7] = ACTIONS(1897), - [aux_sym_cmd_identifier_token8] = ACTIONS(1895), - [aux_sym_cmd_identifier_token9] = ACTIONS(1895), - [aux_sym_cmd_identifier_token10] = ACTIONS(1897), - [aux_sym_cmd_identifier_token11] = ACTIONS(1897), - [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(1897), - [aux_sym_cmd_identifier_token17] = ACTIONS(1897), - [aux_sym_cmd_identifier_token18] = ACTIONS(1897), - [aux_sym_cmd_identifier_token19] = ACTIONS(1897), - [aux_sym_cmd_identifier_token20] = ACTIONS(1897), - [aux_sym_cmd_identifier_token21] = ACTIONS(1897), - [aux_sym_cmd_identifier_token22] = ACTIONS(1897), - [aux_sym_cmd_identifier_token23] = ACTIONS(1897), - [aux_sym_cmd_identifier_token24] = ACTIONS(1897), - [aux_sym_cmd_identifier_token25] = ACTIONS(1897), - [aux_sym_cmd_identifier_token26] = ACTIONS(1897), - [aux_sym_cmd_identifier_token27] = ACTIONS(1897), - [aux_sym_cmd_identifier_token28] = ACTIONS(1897), - [aux_sym_cmd_identifier_token29] = ACTIONS(1897), - [aux_sym_cmd_identifier_token30] = ACTIONS(1897), - [aux_sym_cmd_identifier_token31] = ACTIONS(1897), - [aux_sym_cmd_identifier_token32] = ACTIONS(1897), - [aux_sym_cmd_identifier_token33] = ACTIONS(1897), - [aux_sym_cmd_identifier_token34] = ACTIONS(1895), - [aux_sym_cmd_identifier_token35] = ACTIONS(1897), - [aux_sym_cmd_identifier_token36] = ACTIONS(1897), - [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1897), - [anon_sym_DOLLAR] = ACTIONS(1895), - [anon_sym_error] = ACTIONS(1895), - [anon_sym_DASH2] = ACTIONS(1895), - [anon_sym_break] = ACTIONS(1895), - [anon_sym_continue] = ACTIONS(1895), - [anon_sym_for] = ACTIONS(1895), - [anon_sym_in2] = 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_as] = ACTIONS(1895), - [anon_sym_PLUS2] = ACTIONS(1895), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1897), - [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), - [aux_sym__val_number_token4] = ACTIONS(1895), - [aux_sym__val_number_token5] = ACTIONS(1895), - [aux_sym__val_number_token6] = ACTIONS(1895), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1897), - [anon_sym_DOT2] = ACTIONS(1973), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1897), + [aux_sym_cell_path_repeat1] = STATE(484), + [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(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1951), + [aux_sym_cmd_identifier_token4] = ACTIONS(1951), + [aux_sym_cmd_identifier_token5] = ACTIONS(1951), + [aux_sym_cmd_identifier_token6] = ACTIONS(1951), + [aux_sym_cmd_identifier_token7] = ACTIONS(1951), + [aux_sym_cmd_identifier_token8] = ACTIONS(1949), + [aux_sym_cmd_identifier_token9] = ACTIONS(1949), + [aux_sym_cmd_identifier_token10] = ACTIONS(1951), + [aux_sym_cmd_identifier_token11] = ACTIONS(1951), + [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(1951), + [aux_sym_cmd_identifier_token17] = ACTIONS(1951), + [aux_sym_cmd_identifier_token18] = ACTIONS(1951), + [aux_sym_cmd_identifier_token19] = ACTIONS(1951), + [aux_sym_cmd_identifier_token20] = ACTIONS(1951), + [aux_sym_cmd_identifier_token21] = ACTIONS(1951), + [aux_sym_cmd_identifier_token22] = ACTIONS(1951), + [aux_sym_cmd_identifier_token23] = ACTIONS(1951), + [aux_sym_cmd_identifier_token24] = ACTIONS(1951), + [aux_sym_cmd_identifier_token25] = ACTIONS(1951), + [aux_sym_cmd_identifier_token26] = ACTIONS(1951), + [aux_sym_cmd_identifier_token27] = ACTIONS(1951), + [aux_sym_cmd_identifier_token28] = ACTIONS(1951), + [aux_sym_cmd_identifier_token29] = ACTIONS(1951), + [aux_sym_cmd_identifier_token30] = ACTIONS(1951), + [aux_sym_cmd_identifier_token31] = ACTIONS(1951), + [aux_sym_cmd_identifier_token32] = ACTIONS(1951), + [aux_sym_cmd_identifier_token33] = ACTIONS(1951), + [aux_sym_cmd_identifier_token34] = ACTIONS(1949), + [aux_sym_cmd_identifier_token35] = ACTIONS(1951), + [aux_sym_cmd_identifier_token36] = ACTIONS(1951), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1951), + [anon_sym_DOLLAR] = ACTIONS(1949), + [anon_sym_error] = ACTIONS(1949), + [anon_sym_DASH2] = ACTIONS(1949), + [anon_sym_break] = ACTIONS(1949), + [anon_sym_continue] = ACTIONS(1949), + [anon_sym_for] = ACTIONS(1949), + [anon_sym_in2] = 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_hide] = ACTIONS(1949), + [anon_sym_hide_DASHenv] = ACTIONS(1949), + [anon_sym_overlay] = ACTIONS(1949), + [anon_sym_as] = ACTIONS(1949), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(1949), + [aux_sym__val_number_token5] = ACTIONS(1949), + [aux_sym__val_number_token6] = ACTIONS(1949), + [anon_sym_DQUOTE] = ACTIONS(1951), + [sym__str_single_quotes] = ACTIONS(1951), + [sym__str_back_ticks] = ACTIONS(1951), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1951), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1951), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1951), + [anon_sym_register] = ACTIONS(1949), + [anon_sym_DOT2] = ACTIONS(1921), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1951), + }, + [482] = { + [sym_cell_path] = STATE(723), + [sym_path] = STATE(565), + [sym_comment] = STATE(482), + [aux_sym_cell_path_repeat1] = STATE(484), + [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(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(1953), + [aux_sym_cmd_identifier_token9] = ACTIONS(1953), + [aux_sym_cmd_identifier_token10] = ACTIONS(1955), + [aux_sym_cmd_identifier_token11] = ACTIONS(1955), + [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(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(1953), + [aux_sym_cmd_identifier_token35] = ACTIONS(1955), + [aux_sym_cmd_identifier_token36] = ACTIONS(1955), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1955), + [anon_sym_DOLLAR] = ACTIONS(1953), + [anon_sym_error] = ACTIONS(1953), + [anon_sym_DASH2] = ACTIONS(1953), + [anon_sym_break] = ACTIONS(1953), + [anon_sym_continue] = ACTIONS(1953), + [anon_sym_for] = ACTIONS(1953), + [anon_sym_in2] = 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_hide] = ACTIONS(1953), + [anon_sym_hide_DASHenv] = ACTIONS(1953), + [anon_sym_overlay] = ACTIONS(1953), + [anon_sym_as] = ACTIONS(1953), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(1953), + [aux_sym__val_number_token5] = ACTIONS(1953), + [aux_sym__val_number_token6] = ACTIONS(1953), + [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1955), + [anon_sym_register] = ACTIONS(1953), + [anon_sym_DOT2] = ACTIONS(1921), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1955), + }, + [483] = { + [sym_comment] = STATE(483), + [anon_sym_export] = ACTIONS(2030), + [anon_sym_alias] = ACTIONS(2030), + [anon_sym_let] = ACTIONS(2030), + [anon_sym_let_DASHenv] = ACTIONS(2030), + [anon_sym_mut] = ACTIONS(2030), + [anon_sym_const] = ACTIONS(2030), + [aux_sym_cmd_identifier_token1] = ACTIONS(2030), + [aux_sym_cmd_identifier_token2] = ACTIONS(2030), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [aux_sym_cmd_identifier_token6] = ACTIONS(2030), + [aux_sym_cmd_identifier_token7] = ACTIONS(2030), + [aux_sym_cmd_identifier_token8] = ACTIONS(2030), + [aux_sym_cmd_identifier_token9] = ACTIONS(2030), + [aux_sym_cmd_identifier_token10] = ACTIONS(2030), + [aux_sym_cmd_identifier_token11] = ACTIONS(2030), + [aux_sym_cmd_identifier_token12] = ACTIONS(2030), + [aux_sym_cmd_identifier_token13] = ACTIONS(2030), + [aux_sym_cmd_identifier_token14] = ACTIONS(2030), + [aux_sym_cmd_identifier_token15] = ACTIONS(2030), + [aux_sym_cmd_identifier_token16] = ACTIONS(2030), + [aux_sym_cmd_identifier_token17] = ACTIONS(2030), + [aux_sym_cmd_identifier_token18] = ACTIONS(2030), + [aux_sym_cmd_identifier_token19] = ACTIONS(2030), + [aux_sym_cmd_identifier_token20] = ACTIONS(2030), + [aux_sym_cmd_identifier_token21] = ACTIONS(2030), + [aux_sym_cmd_identifier_token22] = ACTIONS(2030), + [aux_sym_cmd_identifier_token23] = ACTIONS(2030), + [aux_sym_cmd_identifier_token24] = ACTIONS(2030), + [aux_sym_cmd_identifier_token25] = ACTIONS(2030), + [aux_sym_cmd_identifier_token26] = ACTIONS(2030), + [aux_sym_cmd_identifier_token27] = ACTIONS(2030), + [aux_sym_cmd_identifier_token28] = ACTIONS(2030), + [aux_sym_cmd_identifier_token29] = ACTIONS(2030), + [aux_sym_cmd_identifier_token30] = ACTIONS(2030), + [aux_sym_cmd_identifier_token31] = ACTIONS(2030), + [aux_sym_cmd_identifier_token32] = ACTIONS(2030), + [aux_sym_cmd_identifier_token33] = ACTIONS(2030), + [aux_sym_cmd_identifier_token34] = ACTIONS(2030), + [aux_sym_cmd_identifier_token35] = ACTIONS(2030), + [aux_sym_cmd_identifier_token36] = ACTIONS(2030), + [aux_sym_cmd_identifier_token37] = ACTIONS(2030), + [aux_sym_cmd_identifier_token38] = ACTIONS(2030), + [aux_sym_cmd_identifier_token39] = ACTIONS(2030), + [aux_sym_cmd_identifier_token40] = ACTIONS(2030), + [anon_sym_def] = ACTIONS(2030), + [anon_sym_export_DASHenv] = ACTIONS(2030), + [anon_sym_extern] = ACTIONS(2030), + [anon_sym_module] = ACTIONS(2030), + [anon_sym_use] = ACTIONS(2030), + [anon_sym_LPAREN] = ACTIONS(2030), + [anon_sym_COMMA] = ACTIONS(2030), + [anon_sym_DOLLAR] = ACTIONS(2030), + [anon_sym_error] = ACTIONS(2030), + [anon_sym_DASH2] = ACTIONS(2030), + [anon_sym_break] = ACTIONS(2030), + [anon_sym_continue] = ACTIONS(2030), + [anon_sym_for] = ACTIONS(2030), + [anon_sym_in2] = ACTIONS(2030), + [anon_sym_loop] = ACTIONS(2030), + [anon_sym_make] = ACTIONS(2030), + [anon_sym_while] = ACTIONS(2030), + [anon_sym_do] = ACTIONS(2030), + [anon_sym_if] = ACTIONS(2030), + [anon_sym_else] = ACTIONS(2030), + [anon_sym_match] = ACTIONS(2030), + [anon_sym_RBRACE] = ACTIONS(2030), + [anon_sym_try] = ACTIONS(2030), + [anon_sym_catch] = ACTIONS(2030), + [anon_sym_return] = ACTIONS(2030), + [anon_sym_source] = ACTIONS(2030), + [anon_sym_source_DASHenv] = ACTIONS(2030), + [anon_sym_hide] = ACTIONS(2030), + [anon_sym_hide_DASHenv] = ACTIONS(2030), + [anon_sym_overlay] = ACTIONS(2030), + [anon_sym_as] = ACTIONS(2030), + [anon_sym_PLUS2] = ACTIONS(2030), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2030), + [anon_sym_DOT_DOT2] = ACTIONS(2032), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2034), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2030), + [aux_sym__val_number_decimal_token1] = ACTIONS(2030), + [aux_sym__val_number_decimal_token2] = ACTIONS(2030), + [aux_sym__val_number_decimal_token3] = ACTIONS(2030), + [aux_sym__val_number_decimal_token4] = ACTIONS(2030), + [aux_sym__val_number_token1] = ACTIONS(2030), + [aux_sym__val_number_token2] = ACTIONS(2030), + [aux_sym__val_number_token3] = ACTIONS(2030), + [aux_sym__val_number_token4] = ACTIONS(2030), + [aux_sym__val_number_token5] = ACTIONS(2030), + [aux_sym__val_number_token6] = ACTIONS(2030), + [anon_sym_DQUOTE] = ACTIONS(2030), + [sym__str_single_quotes] = ACTIONS(2030), + [sym__str_back_ticks] = ACTIONS(2030), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2030), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2030), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2030), + [sym__entry_separator] = ACTIONS(2036), + [anon_sym_register] = ACTIONS(2030), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2036), }, [484] = { + [sym_path] = STATE(565), [sym_comment] = STATE(484), - [anon_sym_export] = ACTIONS(1711), - [anon_sym_alias] = ACTIONS(1711), - [anon_sym_let] = ACTIONS(1711), - [anon_sym_let_DASHenv] = ACTIONS(1711), - [anon_sym_mut] = ACTIONS(1711), - [anon_sym_const] = ACTIONS(1711), - [aux_sym_cmd_identifier_token1] = ACTIONS(1711), - [aux_sym_cmd_identifier_token2] = ACTIONS(1713), - [aux_sym_cmd_identifier_token3] = ACTIONS(1713), - [aux_sym_cmd_identifier_token4] = ACTIONS(1713), - [aux_sym_cmd_identifier_token5] = ACTIONS(1713), - [aux_sym_cmd_identifier_token6] = ACTIONS(1713), - [aux_sym_cmd_identifier_token7] = ACTIONS(1713), - [aux_sym_cmd_identifier_token8] = ACTIONS(1711), - [aux_sym_cmd_identifier_token9] = ACTIONS(1711), - [aux_sym_cmd_identifier_token10] = ACTIONS(1713), - [aux_sym_cmd_identifier_token11] = ACTIONS(1713), - [aux_sym_cmd_identifier_token12] = ACTIONS(1711), - [aux_sym_cmd_identifier_token13] = ACTIONS(1711), - [aux_sym_cmd_identifier_token14] = ACTIONS(1711), - [aux_sym_cmd_identifier_token15] = ACTIONS(1711), - [aux_sym_cmd_identifier_token16] = ACTIONS(1713), - [aux_sym_cmd_identifier_token17] = ACTIONS(1713), - [aux_sym_cmd_identifier_token18] = ACTIONS(1713), - [aux_sym_cmd_identifier_token19] = ACTIONS(1713), - [aux_sym_cmd_identifier_token20] = ACTIONS(1713), - [aux_sym_cmd_identifier_token21] = ACTIONS(1713), - [aux_sym_cmd_identifier_token22] = ACTIONS(1713), - [aux_sym_cmd_identifier_token23] = ACTIONS(1713), - [aux_sym_cmd_identifier_token24] = ACTIONS(1713), - [aux_sym_cmd_identifier_token25] = ACTIONS(1713), - [aux_sym_cmd_identifier_token26] = ACTIONS(1713), - [aux_sym_cmd_identifier_token27] = ACTIONS(1713), - [aux_sym_cmd_identifier_token28] = ACTIONS(1713), - [aux_sym_cmd_identifier_token29] = ACTIONS(1713), - [aux_sym_cmd_identifier_token30] = ACTIONS(1713), - [aux_sym_cmd_identifier_token31] = ACTIONS(1713), - [aux_sym_cmd_identifier_token32] = ACTIONS(1713), - [aux_sym_cmd_identifier_token33] = ACTIONS(1713), - [aux_sym_cmd_identifier_token34] = ACTIONS(1711), - [aux_sym_cmd_identifier_token35] = ACTIONS(1713), - [aux_sym_cmd_identifier_token36] = ACTIONS(1713), - [aux_sym_cmd_identifier_token37] = ACTIONS(1713), - [aux_sym_cmd_identifier_token38] = ACTIONS(1711), - [aux_sym_cmd_identifier_token39] = ACTIONS(1713), - [aux_sym_cmd_identifier_token40] = ACTIONS(1713), - [anon_sym_def] = ACTIONS(1711), - [anon_sym_export_DASHenv] = ACTIONS(1711), - [anon_sym_extern] = ACTIONS(1711), - [anon_sym_module] = ACTIONS(1711), - [anon_sym_use] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_COMMA] = ACTIONS(1713), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_error] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_break] = ACTIONS(1711), - [anon_sym_continue] = ACTIONS(1711), - [anon_sym_for] = ACTIONS(1711), - [anon_sym_in2] = ACTIONS(1711), - [anon_sym_loop] = ACTIONS(1711), - [anon_sym_make] = ACTIONS(1711), - [anon_sym_while] = ACTIONS(1711), - [anon_sym_do] = ACTIONS(1711), - [anon_sym_if] = ACTIONS(1711), - [anon_sym_else] = ACTIONS(1711), - [anon_sym_match] = ACTIONS(1711), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_try] = ACTIONS(1711), - [anon_sym_catch] = ACTIONS(1711), - [anon_sym_return] = ACTIONS(1711), - [anon_sym_source] = ACTIONS(1711), - [anon_sym_source_DASHenv] = ACTIONS(1711), - [anon_sym_register] = ACTIONS(1711), - [anon_sym_hide] = ACTIONS(1711), - [anon_sym_hide_DASHenv] = ACTIONS(1711), - [anon_sym_overlay] = ACTIONS(1711), - [anon_sym_as] = ACTIONS(1711), - [anon_sym_LPAREN2] = ACTIONS(1713), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1713), - [aux_sym__immediate_decimal_token1] = ACTIONS(2051), - [aux_sym__immediate_decimal_token2] = ACTIONS(2053), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1713), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1713), - [aux_sym__val_number_decimal_token3] = ACTIONS(1713), - [aux_sym__val_number_decimal_token4] = ACTIONS(1713), - [aux_sym__val_number_token1] = ACTIONS(1713), - [aux_sym__val_number_token2] = ACTIONS(1713), - [aux_sym__val_number_token3] = ACTIONS(1713), - [aux_sym__val_number_token4] = ACTIONS(1711), - [aux_sym__val_number_token5] = ACTIONS(1711), - [aux_sym__val_number_token6] = ACTIONS(1711), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym__str_single_quotes] = ACTIONS(1713), - [sym__str_back_ticks] = ACTIONS(1713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1713), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1713), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1713), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1713), + [aux_sym_cell_path_repeat1] = STATE(486), + [anon_sym_export] = ACTIONS(942), + [anon_sym_alias] = ACTIONS(942), + [anon_sym_let] = ACTIONS(942), + [anon_sym_let_DASHenv] = ACTIONS(942), + [anon_sym_mut] = ACTIONS(942), + [anon_sym_const] = ACTIONS(942), + [aux_sym_cmd_identifier_token1] = ACTIONS(942), + [aux_sym_cmd_identifier_token2] = ACTIONS(944), + [aux_sym_cmd_identifier_token3] = ACTIONS(944), + [aux_sym_cmd_identifier_token4] = ACTIONS(944), + [aux_sym_cmd_identifier_token5] = ACTIONS(944), + [aux_sym_cmd_identifier_token6] = ACTIONS(944), + [aux_sym_cmd_identifier_token7] = ACTIONS(944), + [aux_sym_cmd_identifier_token8] = ACTIONS(942), + [aux_sym_cmd_identifier_token9] = ACTIONS(942), + [aux_sym_cmd_identifier_token10] = ACTIONS(944), + [aux_sym_cmd_identifier_token11] = ACTIONS(944), + [aux_sym_cmd_identifier_token12] = ACTIONS(942), + [aux_sym_cmd_identifier_token13] = ACTIONS(942), + [aux_sym_cmd_identifier_token14] = ACTIONS(942), + [aux_sym_cmd_identifier_token15] = ACTIONS(942), + [aux_sym_cmd_identifier_token16] = ACTIONS(944), + [aux_sym_cmd_identifier_token17] = ACTIONS(944), + [aux_sym_cmd_identifier_token18] = ACTIONS(944), + [aux_sym_cmd_identifier_token19] = ACTIONS(944), + [aux_sym_cmd_identifier_token20] = ACTIONS(944), + [aux_sym_cmd_identifier_token21] = ACTIONS(944), + [aux_sym_cmd_identifier_token22] = ACTIONS(944), + [aux_sym_cmd_identifier_token23] = ACTIONS(944), + [aux_sym_cmd_identifier_token24] = ACTIONS(944), + [aux_sym_cmd_identifier_token25] = ACTIONS(944), + [aux_sym_cmd_identifier_token26] = ACTIONS(944), + [aux_sym_cmd_identifier_token27] = ACTIONS(944), + [aux_sym_cmd_identifier_token28] = ACTIONS(944), + [aux_sym_cmd_identifier_token29] = ACTIONS(944), + [aux_sym_cmd_identifier_token30] = ACTIONS(944), + [aux_sym_cmd_identifier_token31] = ACTIONS(944), + [aux_sym_cmd_identifier_token32] = ACTIONS(944), + [aux_sym_cmd_identifier_token33] = ACTIONS(944), + [aux_sym_cmd_identifier_token34] = ACTIONS(942), + [aux_sym_cmd_identifier_token35] = ACTIONS(944), + [aux_sym_cmd_identifier_token36] = ACTIONS(944), + [aux_sym_cmd_identifier_token37] = ACTIONS(944), + [aux_sym_cmd_identifier_token38] = ACTIONS(942), + [aux_sym_cmd_identifier_token39] = ACTIONS(944), + [aux_sym_cmd_identifier_token40] = ACTIONS(944), + [anon_sym_def] = ACTIONS(942), + [anon_sym_export_DASHenv] = ACTIONS(942), + [anon_sym_extern] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [anon_sym_use] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(944), + [anon_sym_COMMA] = ACTIONS(944), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_error] = ACTIONS(942), + [anon_sym_DASH2] = ACTIONS(942), + [anon_sym_break] = ACTIONS(942), + [anon_sym_continue] = ACTIONS(942), + [anon_sym_for] = ACTIONS(942), + [anon_sym_in2] = ACTIONS(942), + [anon_sym_loop] = ACTIONS(942), + [anon_sym_make] = ACTIONS(942), + [anon_sym_while] = ACTIONS(942), + [anon_sym_do] = ACTIONS(942), + [anon_sym_if] = ACTIONS(942), + [anon_sym_else] = ACTIONS(942), + [anon_sym_match] = ACTIONS(942), + [anon_sym_RBRACE] = ACTIONS(944), + [anon_sym_try] = ACTIONS(942), + [anon_sym_catch] = ACTIONS(942), + [anon_sym_return] = ACTIONS(942), + [anon_sym_source] = ACTIONS(942), + [anon_sym_source_DASHenv] = ACTIONS(942), + [anon_sym_hide] = ACTIONS(942), + [anon_sym_hide_DASHenv] = ACTIONS(942), + [anon_sym_overlay] = ACTIONS(942), + [anon_sym_as] = ACTIONS(942), + [anon_sym_PLUS2] = ACTIONS(942), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(944), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(944), + [aux_sym__val_number_decimal_token1] = ACTIONS(942), + [aux_sym__val_number_decimal_token2] = ACTIONS(944), + [aux_sym__val_number_decimal_token3] = ACTIONS(944), + [aux_sym__val_number_decimal_token4] = ACTIONS(944), + [aux_sym__val_number_token1] = ACTIONS(944), + [aux_sym__val_number_token2] = ACTIONS(944), + [aux_sym__val_number_token3] = ACTIONS(944), + [aux_sym__val_number_token4] = ACTIONS(942), + [aux_sym__val_number_token5] = ACTIONS(942), + [aux_sym__val_number_token6] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(944), + [sym__str_single_quotes] = ACTIONS(944), + [sym__str_back_ticks] = ACTIONS(944), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(944), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(944), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(944), + [anon_sym_register] = ACTIONS(942), + [anon_sym_COLON2] = ACTIONS(944), + [anon_sym_DOT2] = ACTIONS(1921), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(944), }, [485] = { [sym_comment] = STATE(485), - [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(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(1755), - [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(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(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(1757), - [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(1755), - [aux_sym_cmd_identifier_token35] = ACTIONS(1757), - [aux_sym_cmd_identifier_token36] = ACTIONS(1757), - [aux_sym_cmd_identifier_token37] = ACTIONS(1757), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1757), - [aux_sym_cmd_identifier_token40] = ACTIONS(1757), - [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_COMMA] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in2] = 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_RBRACE] = ACTIONS(1757), - [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_as] = ACTIONS(1755), - [anon_sym_PLUS2] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1757), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(1885), - [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), - [aux_sym__val_number_token4] = ACTIONS(1755), - [aux_sym__val_number_token5] = ACTIONS(1755), - [aux_sym__val_number_token6] = ACTIONS(1755), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1757), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1757), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1701), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_error] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_in2] = 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_hide] = ACTIONS(1701), + [anon_sym_hide_DASHenv] = ACTIONS(1701), + [anon_sym_overlay] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1701), + [aux_sym__immediate_decimal_token2] = ACTIONS(1867), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1701), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1701), + [aux_sym__val_number_decimal_token3] = ACTIONS(1701), + [aux_sym__val_number_decimal_token4] = ACTIONS(1701), + [aux_sym__val_number_token1] = ACTIONS(1701), + [aux_sym__val_number_token2] = ACTIONS(1701), + [aux_sym__val_number_token3] = ACTIONS(1701), + [aux_sym__val_number_token4] = ACTIONS(1701), + [aux_sym__val_number_token5] = ACTIONS(1701), + [aux_sym__val_number_token6] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1701), + [sym__str_single_quotes] = ACTIONS(1701), + [sym__str_back_ticks] = ACTIONS(1701), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1701), + [sym__entry_separator] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1701), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1703), }, [486] = { + [sym_path] = STATE(565), [sym_comment] = STATE(486), - [anon_sym_export] = ACTIONS(1783), - [anon_sym_alias] = ACTIONS(1783), - [anon_sym_let] = ACTIONS(1783), - [anon_sym_let_DASHenv] = ACTIONS(1783), - [anon_sym_mut] = ACTIONS(1783), - [anon_sym_const] = ACTIONS(1783), - [aux_sym_cmd_identifier_token1] = ACTIONS(1783), - [aux_sym_cmd_identifier_token2] = ACTIONS(1785), - [aux_sym_cmd_identifier_token3] = ACTIONS(1785), - [aux_sym_cmd_identifier_token4] = ACTIONS(1785), - [aux_sym_cmd_identifier_token5] = ACTIONS(1785), - [aux_sym_cmd_identifier_token6] = ACTIONS(1785), - [aux_sym_cmd_identifier_token7] = ACTIONS(1785), - [aux_sym_cmd_identifier_token8] = ACTIONS(1783), - [aux_sym_cmd_identifier_token9] = ACTIONS(1783), - [aux_sym_cmd_identifier_token10] = ACTIONS(1785), - [aux_sym_cmd_identifier_token11] = ACTIONS(1785), - [aux_sym_cmd_identifier_token12] = ACTIONS(1783), - [aux_sym_cmd_identifier_token13] = ACTIONS(1783), - [aux_sym_cmd_identifier_token14] = ACTIONS(1783), - [aux_sym_cmd_identifier_token15] = ACTIONS(1783), - [aux_sym_cmd_identifier_token16] = ACTIONS(1785), - [aux_sym_cmd_identifier_token17] = ACTIONS(1785), - [aux_sym_cmd_identifier_token18] = ACTIONS(1785), - [aux_sym_cmd_identifier_token19] = ACTIONS(1785), - [aux_sym_cmd_identifier_token20] = ACTIONS(1785), - [aux_sym_cmd_identifier_token21] = ACTIONS(1785), - [aux_sym_cmd_identifier_token22] = ACTIONS(1785), - [aux_sym_cmd_identifier_token23] = ACTIONS(1785), - [aux_sym_cmd_identifier_token24] = ACTIONS(1785), - [aux_sym_cmd_identifier_token25] = ACTIONS(1785), - [aux_sym_cmd_identifier_token26] = ACTIONS(1785), - [aux_sym_cmd_identifier_token27] = ACTIONS(1785), - [aux_sym_cmd_identifier_token28] = ACTIONS(1785), - [aux_sym_cmd_identifier_token29] = ACTIONS(1785), - [aux_sym_cmd_identifier_token30] = ACTIONS(1785), - [aux_sym_cmd_identifier_token31] = ACTIONS(1785), - [aux_sym_cmd_identifier_token32] = ACTIONS(1785), - [aux_sym_cmd_identifier_token33] = ACTIONS(1785), - [aux_sym_cmd_identifier_token34] = ACTIONS(1783), - [aux_sym_cmd_identifier_token35] = ACTIONS(1785), - [aux_sym_cmd_identifier_token36] = ACTIONS(1785), - [aux_sym_cmd_identifier_token37] = ACTIONS(1785), - [aux_sym_cmd_identifier_token38] = ACTIONS(1783), - [aux_sym_cmd_identifier_token39] = ACTIONS(1785), - [aux_sym_cmd_identifier_token40] = ACTIONS(1785), - [anon_sym_def] = ACTIONS(1783), - [anon_sym_export_DASHenv] = ACTIONS(1783), - [anon_sym_extern] = ACTIONS(1783), - [anon_sym_module] = ACTIONS(1783), - [anon_sym_use] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_COMMA] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_error] = ACTIONS(1783), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_break] = ACTIONS(1783), - [anon_sym_continue] = ACTIONS(1783), - [anon_sym_for] = ACTIONS(1783), - [anon_sym_in2] = ACTIONS(1783), - [anon_sym_loop] = ACTIONS(1783), - [anon_sym_make] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1783), - [anon_sym_do] = ACTIONS(1783), - [anon_sym_if] = ACTIONS(1783), - [anon_sym_else] = ACTIONS(1783), - [anon_sym_match] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_try] = ACTIONS(1783), - [anon_sym_catch] = ACTIONS(1783), - [anon_sym_return] = ACTIONS(1783), - [anon_sym_source] = ACTIONS(1783), - [anon_sym_source_DASHenv] = ACTIONS(1783), - [anon_sym_register] = ACTIONS(1783), - [anon_sym_hide] = ACTIONS(1783), - [anon_sym_hide_DASHenv] = ACTIONS(1783), - [anon_sym_overlay] = ACTIONS(1783), - [anon_sym_as] = ACTIONS(1783), - [anon_sym_PLUS2] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1785), - [anon_sym_DOT_DOT2] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1785), - [aux_sym__immediate_decimal_token2] = ACTIONS(2055), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(1785), - [aux_sym__val_number_token2] = ACTIONS(1785), - [aux_sym__val_number_token3] = ACTIONS(1785), - [aux_sym__val_number_token4] = ACTIONS(1783), - [aux_sym__val_number_token5] = ACTIONS(1783), - [aux_sym__val_number_token6] = ACTIONS(1783), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1785), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1785), + [aux_sym_cell_path_repeat1] = STATE(486), + [anon_sym_export] = ACTIONS(935), + [anon_sym_alias] = ACTIONS(935), + [anon_sym_let] = ACTIONS(935), + [anon_sym_let_DASHenv] = ACTIONS(935), + [anon_sym_mut] = ACTIONS(935), + [anon_sym_const] = ACTIONS(935), + [aux_sym_cmd_identifier_token1] = ACTIONS(935), + [aux_sym_cmd_identifier_token2] = ACTIONS(937), + [aux_sym_cmd_identifier_token3] = ACTIONS(937), + [aux_sym_cmd_identifier_token4] = ACTIONS(937), + [aux_sym_cmd_identifier_token5] = ACTIONS(937), + [aux_sym_cmd_identifier_token6] = ACTIONS(937), + [aux_sym_cmd_identifier_token7] = ACTIONS(937), + [aux_sym_cmd_identifier_token8] = ACTIONS(935), + [aux_sym_cmd_identifier_token9] = ACTIONS(935), + [aux_sym_cmd_identifier_token10] = ACTIONS(937), + [aux_sym_cmd_identifier_token11] = ACTIONS(937), + [aux_sym_cmd_identifier_token12] = ACTIONS(935), + [aux_sym_cmd_identifier_token13] = ACTIONS(935), + [aux_sym_cmd_identifier_token14] = ACTIONS(935), + [aux_sym_cmd_identifier_token15] = ACTIONS(935), + [aux_sym_cmd_identifier_token16] = ACTIONS(937), + [aux_sym_cmd_identifier_token17] = ACTIONS(937), + [aux_sym_cmd_identifier_token18] = ACTIONS(937), + [aux_sym_cmd_identifier_token19] = ACTIONS(937), + [aux_sym_cmd_identifier_token20] = ACTIONS(937), + [aux_sym_cmd_identifier_token21] = ACTIONS(937), + [aux_sym_cmd_identifier_token22] = ACTIONS(937), + [aux_sym_cmd_identifier_token23] = ACTIONS(937), + [aux_sym_cmd_identifier_token24] = ACTIONS(937), + [aux_sym_cmd_identifier_token25] = ACTIONS(937), + [aux_sym_cmd_identifier_token26] = ACTIONS(937), + [aux_sym_cmd_identifier_token27] = ACTIONS(937), + [aux_sym_cmd_identifier_token28] = ACTIONS(937), + [aux_sym_cmd_identifier_token29] = ACTIONS(937), + [aux_sym_cmd_identifier_token30] = ACTIONS(937), + [aux_sym_cmd_identifier_token31] = ACTIONS(937), + [aux_sym_cmd_identifier_token32] = ACTIONS(937), + [aux_sym_cmd_identifier_token33] = ACTIONS(937), + [aux_sym_cmd_identifier_token34] = ACTIONS(935), + [aux_sym_cmd_identifier_token35] = ACTIONS(937), + [aux_sym_cmd_identifier_token36] = ACTIONS(937), + [aux_sym_cmd_identifier_token37] = ACTIONS(937), + [aux_sym_cmd_identifier_token38] = ACTIONS(935), + [aux_sym_cmd_identifier_token39] = ACTIONS(937), + [aux_sym_cmd_identifier_token40] = ACTIONS(937), + [anon_sym_def] = ACTIONS(935), + [anon_sym_export_DASHenv] = ACTIONS(935), + [anon_sym_extern] = ACTIONS(935), + [anon_sym_module] = ACTIONS(935), + [anon_sym_use] = ACTIONS(935), + [anon_sym_LPAREN] = ACTIONS(937), + [anon_sym_COMMA] = ACTIONS(937), + [anon_sym_DOLLAR] = ACTIONS(935), + [anon_sym_error] = ACTIONS(935), + [anon_sym_DASH2] = ACTIONS(935), + [anon_sym_break] = ACTIONS(935), + [anon_sym_continue] = ACTIONS(935), + [anon_sym_for] = ACTIONS(935), + [anon_sym_in2] = ACTIONS(935), + [anon_sym_loop] = ACTIONS(935), + [anon_sym_make] = ACTIONS(935), + [anon_sym_while] = ACTIONS(935), + [anon_sym_do] = ACTIONS(935), + [anon_sym_if] = ACTIONS(935), + [anon_sym_else] = ACTIONS(935), + [anon_sym_match] = ACTIONS(935), + [anon_sym_RBRACE] = ACTIONS(937), + [anon_sym_try] = ACTIONS(935), + [anon_sym_catch] = ACTIONS(935), + [anon_sym_return] = ACTIONS(935), + [anon_sym_source] = ACTIONS(935), + [anon_sym_source_DASHenv] = ACTIONS(935), + [anon_sym_hide] = ACTIONS(935), + [anon_sym_hide_DASHenv] = ACTIONS(935), + [anon_sym_overlay] = ACTIONS(935), + [anon_sym_as] = ACTIONS(935), + [anon_sym_PLUS2] = ACTIONS(935), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(937), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(937), + [aux_sym__val_number_decimal_token1] = ACTIONS(935), + [aux_sym__val_number_decimal_token2] = ACTIONS(937), + [aux_sym__val_number_decimal_token3] = ACTIONS(937), + [aux_sym__val_number_decimal_token4] = ACTIONS(937), + [aux_sym__val_number_token1] = ACTIONS(937), + [aux_sym__val_number_token2] = ACTIONS(937), + [aux_sym__val_number_token3] = ACTIONS(937), + [aux_sym__val_number_token4] = ACTIONS(935), + [aux_sym__val_number_token5] = ACTIONS(935), + [aux_sym__val_number_token6] = ACTIONS(935), + [anon_sym_DQUOTE] = ACTIONS(937), + [sym__str_single_quotes] = ACTIONS(937), + [sym__str_back_ticks] = ACTIONS(937), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(937), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(937), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(937), + [anon_sym_register] = ACTIONS(935), + [anon_sym_COLON2] = ACTIONS(937), + [anon_sym_DOT2] = ACTIONS(2038), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(937), }, [487] = { - [sym_cell_path] = STATE(699), - [sym_path] = STATE(587), [sym_comment] = STATE(487), - [aux_sym_cell_path_repeat1] = STATE(446), - [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(1857), - [aux_sym_cmd_identifier_token3] = ACTIONS(1857), - [aux_sym_cmd_identifier_token4] = ACTIONS(1857), - [aux_sym_cmd_identifier_token5] = ACTIONS(1857), - [aux_sym_cmd_identifier_token6] = ACTIONS(1857), - [aux_sym_cmd_identifier_token7] = ACTIONS(1857), - [aux_sym_cmd_identifier_token8] = ACTIONS(1855), - [aux_sym_cmd_identifier_token9] = ACTIONS(1855), - [aux_sym_cmd_identifier_token10] = ACTIONS(1857), - [aux_sym_cmd_identifier_token11] = ACTIONS(1857), - [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(1857), - [aux_sym_cmd_identifier_token17] = ACTIONS(1857), - [aux_sym_cmd_identifier_token18] = ACTIONS(1857), - [aux_sym_cmd_identifier_token19] = ACTIONS(1857), - [aux_sym_cmd_identifier_token20] = ACTIONS(1857), - [aux_sym_cmd_identifier_token21] = ACTIONS(1857), - [aux_sym_cmd_identifier_token22] = ACTIONS(1857), - [aux_sym_cmd_identifier_token23] = ACTIONS(1857), - [aux_sym_cmd_identifier_token24] = ACTIONS(1857), - [aux_sym_cmd_identifier_token25] = ACTIONS(1857), - [aux_sym_cmd_identifier_token26] = ACTIONS(1857), - [aux_sym_cmd_identifier_token27] = ACTIONS(1857), - [aux_sym_cmd_identifier_token28] = ACTIONS(1857), - [aux_sym_cmd_identifier_token29] = ACTIONS(1857), - [aux_sym_cmd_identifier_token30] = ACTIONS(1857), - [aux_sym_cmd_identifier_token31] = ACTIONS(1857), - [aux_sym_cmd_identifier_token32] = ACTIONS(1857), - [aux_sym_cmd_identifier_token33] = ACTIONS(1857), - [aux_sym_cmd_identifier_token34] = ACTIONS(1855), - [aux_sym_cmd_identifier_token35] = ACTIONS(1857), - [aux_sym_cmd_identifier_token36] = ACTIONS(1857), - [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1857), - [anon_sym_DOLLAR] = ACTIONS(1855), - [anon_sym_error] = ACTIONS(1855), - [anon_sym_DASH2] = ACTIONS(1855), - [anon_sym_break] = ACTIONS(1855), - [anon_sym_continue] = ACTIONS(1855), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_in2] = 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_as] = ACTIONS(1855), - [anon_sym_PLUS2] = 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), - [aux_sym__val_number_token4] = ACTIONS(1855), - [aux_sym__val_number_token5] = ACTIONS(1855), - [aux_sym__val_number_token6] = ACTIONS(1855), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1857), - [anon_sym_DOT2] = ACTIONS(1973), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1857), + [anon_sym_export] = ACTIONS(1766), + [anon_sym_alias] = ACTIONS(1766), + [anon_sym_let] = ACTIONS(1766), + [anon_sym_let_DASHenv] = ACTIONS(1766), + [anon_sym_mut] = ACTIONS(1766), + [anon_sym_const] = ACTIONS(1766), + [aux_sym_cmd_identifier_token1] = ACTIONS(1766), + [aux_sym_cmd_identifier_token2] = ACTIONS(1766), + [aux_sym_cmd_identifier_token3] = ACTIONS(1766), + [aux_sym_cmd_identifier_token4] = ACTIONS(1766), + [aux_sym_cmd_identifier_token5] = ACTIONS(1766), + [aux_sym_cmd_identifier_token6] = ACTIONS(1766), + [aux_sym_cmd_identifier_token7] = ACTIONS(1766), + [aux_sym_cmd_identifier_token8] = ACTIONS(1766), + [aux_sym_cmd_identifier_token9] = ACTIONS(1766), + [aux_sym_cmd_identifier_token10] = ACTIONS(1766), + [aux_sym_cmd_identifier_token11] = ACTIONS(1766), + [aux_sym_cmd_identifier_token12] = ACTIONS(1766), + [aux_sym_cmd_identifier_token13] = ACTIONS(1766), + [aux_sym_cmd_identifier_token14] = ACTIONS(1766), + [aux_sym_cmd_identifier_token15] = ACTIONS(1766), + [aux_sym_cmd_identifier_token16] = ACTIONS(1766), + [aux_sym_cmd_identifier_token17] = ACTIONS(1766), + [aux_sym_cmd_identifier_token18] = ACTIONS(1766), + [aux_sym_cmd_identifier_token19] = ACTIONS(1766), + [aux_sym_cmd_identifier_token20] = ACTIONS(1766), + [aux_sym_cmd_identifier_token21] = ACTIONS(1766), + [aux_sym_cmd_identifier_token22] = ACTIONS(1766), + [aux_sym_cmd_identifier_token23] = ACTIONS(1766), + [aux_sym_cmd_identifier_token24] = ACTIONS(1766), + [aux_sym_cmd_identifier_token25] = ACTIONS(1766), + [aux_sym_cmd_identifier_token26] = ACTIONS(1766), + [aux_sym_cmd_identifier_token27] = ACTIONS(1766), + [aux_sym_cmd_identifier_token28] = ACTIONS(1766), + [aux_sym_cmd_identifier_token29] = ACTIONS(1766), + [aux_sym_cmd_identifier_token30] = ACTIONS(1766), + [aux_sym_cmd_identifier_token31] = ACTIONS(1766), + [aux_sym_cmd_identifier_token32] = ACTIONS(1766), + [aux_sym_cmd_identifier_token33] = ACTIONS(1766), + [aux_sym_cmd_identifier_token34] = ACTIONS(1766), + [aux_sym_cmd_identifier_token35] = ACTIONS(1766), + [aux_sym_cmd_identifier_token36] = ACTIONS(1766), + [aux_sym_cmd_identifier_token37] = ACTIONS(1766), + [aux_sym_cmd_identifier_token38] = ACTIONS(1766), + [aux_sym_cmd_identifier_token39] = ACTIONS(1766), + [aux_sym_cmd_identifier_token40] = ACTIONS(1766), + [anon_sym_def] = ACTIONS(1766), + [anon_sym_export_DASHenv] = ACTIONS(1766), + [anon_sym_extern] = ACTIONS(1766), + [anon_sym_module] = ACTIONS(1766), + [anon_sym_use] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1766), + [anon_sym_COMMA] = ACTIONS(1766), + [anon_sym_DOLLAR] = ACTIONS(1766), + [anon_sym_error] = ACTIONS(1766), + [anon_sym_DASH2] = ACTIONS(1766), + [anon_sym_break] = ACTIONS(1766), + [anon_sym_continue] = ACTIONS(1766), + [anon_sym_for] = ACTIONS(1766), + [anon_sym_in2] = ACTIONS(1766), + [anon_sym_loop] = ACTIONS(1766), + [anon_sym_make] = ACTIONS(1766), + [anon_sym_while] = ACTIONS(1766), + [anon_sym_do] = ACTIONS(1766), + [anon_sym_if] = ACTIONS(1766), + [anon_sym_else] = ACTIONS(1766), + [anon_sym_match] = ACTIONS(1766), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_try] = ACTIONS(1766), + [anon_sym_catch] = ACTIONS(1766), + [anon_sym_return] = ACTIONS(1766), + [anon_sym_source] = ACTIONS(1766), + [anon_sym_source_DASHenv] = ACTIONS(1766), + [anon_sym_hide] = ACTIONS(1766), + [anon_sym_hide_DASHenv] = ACTIONS(1766), + [anon_sym_overlay] = ACTIONS(1766), + [anon_sym_as] = ACTIONS(1766), + [anon_sym_LPAREN2] = ACTIONS(1768), + [anon_sym_PLUS2] = ACTIONS(1766), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1766), + [aux_sym__immediate_decimal_token2] = ACTIONS(2041), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1766), + [aux_sym__val_number_decimal_token1] = ACTIONS(1766), + [aux_sym__val_number_decimal_token2] = ACTIONS(1766), + [aux_sym__val_number_decimal_token3] = ACTIONS(1766), + [aux_sym__val_number_decimal_token4] = ACTIONS(1766), + [aux_sym__val_number_token1] = ACTIONS(1766), + [aux_sym__val_number_token2] = ACTIONS(1766), + [aux_sym__val_number_token3] = ACTIONS(1766), + [aux_sym__val_number_token4] = ACTIONS(1766), + [aux_sym__val_number_token5] = ACTIONS(1766), + [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(1766), + [sym__entry_separator] = ACTIONS(1768), + [anon_sym_register] = ACTIONS(1766), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1766), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1768), }, [488] = { - [sym_cell_path] = STATE(743), - [sym_path] = STATE(587), [sym_comment] = STATE(488), - [aux_sym_cell_path_repeat1] = STATE(446), - [anon_sym_export] = ACTIONS(1975), - [anon_sym_alias] = ACTIONS(1975), - [anon_sym_let] = ACTIONS(1975), - [anon_sym_let_DASHenv] = ACTIONS(1975), - [anon_sym_mut] = ACTIONS(1975), - [anon_sym_const] = ACTIONS(1975), - [aux_sym_cmd_identifier_token1] = ACTIONS(1975), - [aux_sym_cmd_identifier_token2] = ACTIONS(1977), - [aux_sym_cmd_identifier_token3] = ACTIONS(1977), - [aux_sym_cmd_identifier_token4] = ACTIONS(1977), - [aux_sym_cmd_identifier_token5] = ACTIONS(1977), - [aux_sym_cmd_identifier_token6] = ACTIONS(1977), - [aux_sym_cmd_identifier_token7] = ACTIONS(1977), - [aux_sym_cmd_identifier_token8] = ACTIONS(1975), - [aux_sym_cmd_identifier_token9] = ACTIONS(1975), - [aux_sym_cmd_identifier_token10] = ACTIONS(1977), - [aux_sym_cmd_identifier_token11] = ACTIONS(1977), - [aux_sym_cmd_identifier_token12] = ACTIONS(1975), - [aux_sym_cmd_identifier_token13] = ACTIONS(1975), - [aux_sym_cmd_identifier_token14] = ACTIONS(1975), - [aux_sym_cmd_identifier_token15] = ACTIONS(1975), - [aux_sym_cmd_identifier_token16] = ACTIONS(1977), - [aux_sym_cmd_identifier_token17] = ACTIONS(1977), - [aux_sym_cmd_identifier_token18] = ACTIONS(1977), - [aux_sym_cmd_identifier_token19] = ACTIONS(1977), - [aux_sym_cmd_identifier_token20] = ACTIONS(1977), - [aux_sym_cmd_identifier_token21] = ACTIONS(1977), - [aux_sym_cmd_identifier_token22] = ACTIONS(1977), - [aux_sym_cmd_identifier_token23] = ACTIONS(1977), - [aux_sym_cmd_identifier_token24] = ACTIONS(1977), - [aux_sym_cmd_identifier_token25] = ACTIONS(1977), - [aux_sym_cmd_identifier_token26] = ACTIONS(1977), - [aux_sym_cmd_identifier_token27] = ACTIONS(1977), - [aux_sym_cmd_identifier_token28] = ACTIONS(1977), - [aux_sym_cmd_identifier_token29] = ACTIONS(1977), - [aux_sym_cmd_identifier_token30] = ACTIONS(1977), - [aux_sym_cmd_identifier_token31] = ACTIONS(1977), - [aux_sym_cmd_identifier_token32] = ACTIONS(1977), - [aux_sym_cmd_identifier_token33] = ACTIONS(1977), - [aux_sym_cmd_identifier_token34] = ACTIONS(1975), - [aux_sym_cmd_identifier_token35] = ACTIONS(1977), - [aux_sym_cmd_identifier_token36] = ACTIONS(1977), - [aux_sym_cmd_identifier_token37] = ACTIONS(1977), - [aux_sym_cmd_identifier_token38] = ACTIONS(1975), - [aux_sym_cmd_identifier_token39] = ACTIONS(1977), - [aux_sym_cmd_identifier_token40] = ACTIONS(1977), - [anon_sym_def] = ACTIONS(1975), - [anon_sym_export_DASHenv] = ACTIONS(1975), - [anon_sym_extern] = ACTIONS(1975), - [anon_sym_module] = ACTIONS(1975), - [anon_sym_use] = ACTIONS(1975), - [anon_sym_LPAREN] = ACTIONS(1977), - [anon_sym_COMMA] = ACTIONS(1977), - [anon_sym_DOLLAR] = ACTIONS(1975), - [anon_sym_error] = ACTIONS(1975), - [anon_sym_DASH2] = ACTIONS(1975), - [anon_sym_break] = ACTIONS(1975), - [anon_sym_continue] = ACTIONS(1975), - [anon_sym_for] = ACTIONS(1975), - [anon_sym_in2] = ACTIONS(1975), - [anon_sym_loop] = ACTIONS(1975), - [anon_sym_make] = ACTIONS(1975), - [anon_sym_while] = ACTIONS(1975), - [anon_sym_do] = ACTIONS(1975), - [anon_sym_if] = ACTIONS(1975), - [anon_sym_else] = ACTIONS(1975), - [anon_sym_match] = ACTIONS(1975), - [anon_sym_RBRACE] = ACTIONS(1977), - [anon_sym_try] = ACTIONS(1975), - [anon_sym_catch] = ACTIONS(1975), - [anon_sym_return] = ACTIONS(1975), - [anon_sym_source] = ACTIONS(1975), - [anon_sym_source_DASHenv] = ACTIONS(1975), - [anon_sym_register] = ACTIONS(1975), - [anon_sym_hide] = ACTIONS(1975), - [anon_sym_hide_DASHenv] = ACTIONS(1975), - [anon_sym_overlay] = ACTIONS(1975), - [anon_sym_as] = ACTIONS(1975), - [anon_sym_PLUS2] = ACTIONS(1975), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1977), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1977), - [aux_sym__val_number_decimal_token1] = ACTIONS(1975), - [aux_sym__val_number_decimal_token2] = ACTIONS(1977), - [aux_sym__val_number_decimal_token3] = ACTIONS(1977), - [aux_sym__val_number_decimal_token4] = ACTIONS(1977), - [aux_sym__val_number_token1] = ACTIONS(1977), - [aux_sym__val_number_token2] = ACTIONS(1977), - [aux_sym__val_number_token3] = ACTIONS(1977), - [aux_sym__val_number_token4] = ACTIONS(1975), - [aux_sym__val_number_token5] = ACTIONS(1975), - [aux_sym__val_number_token6] = ACTIONS(1975), - [anon_sym_DQUOTE] = ACTIONS(1977), - [sym__str_single_quotes] = ACTIONS(1977), - [sym__str_back_ticks] = ACTIONS(1977), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1977), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1977), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1977), - [anon_sym_DOT2] = ACTIONS(1973), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1977), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1701), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_error] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_in2] = 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_hide] = ACTIONS(1701), + [anon_sym_hide_DASHenv] = ACTIONS(1701), + [anon_sym_overlay] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1701), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1701), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = 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), + [aux_sym__val_number_decimal_token3] = ACTIONS(1701), + [aux_sym__val_number_decimal_token4] = ACTIONS(1701), + [aux_sym__val_number_token1] = ACTIONS(1701), + [aux_sym__val_number_token2] = ACTIONS(1701), + [aux_sym__val_number_token3] = ACTIONS(1701), + [aux_sym__val_number_token4] = ACTIONS(1701), + [aux_sym__val_number_token5] = ACTIONS(1701), + [aux_sym__val_number_token6] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1701), + [sym__str_single_quotes] = ACTIONS(1701), + [sym__str_back_ticks] = ACTIONS(1701), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1701), + [sym__entry_separator] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1703), }, [489] = { + [sym_cell_path] = STATE(707), + [sym_path] = STATE(565), [sym_comment] = STATE(489), - [anon_sym_export] = ACTIONS(2057), - [anon_sym_alias] = ACTIONS(2057), - [anon_sym_let] = ACTIONS(2057), - [anon_sym_let_DASHenv] = ACTIONS(2057), - [anon_sym_mut] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [aux_sym_cmd_identifier_token1] = ACTIONS(2057), - [aux_sym_cmd_identifier_token2] = ACTIONS(2057), - [aux_sym_cmd_identifier_token3] = ACTIONS(2057), - [aux_sym_cmd_identifier_token4] = ACTIONS(2057), - [aux_sym_cmd_identifier_token5] = ACTIONS(2057), - [aux_sym_cmd_identifier_token6] = ACTIONS(2057), - [aux_sym_cmd_identifier_token7] = ACTIONS(2057), - [aux_sym_cmd_identifier_token8] = ACTIONS(2057), - [aux_sym_cmd_identifier_token9] = ACTIONS(2057), - [aux_sym_cmd_identifier_token10] = ACTIONS(2057), - [aux_sym_cmd_identifier_token11] = ACTIONS(2057), - [aux_sym_cmd_identifier_token12] = ACTIONS(2057), - [aux_sym_cmd_identifier_token13] = ACTIONS(2057), - [aux_sym_cmd_identifier_token14] = ACTIONS(2057), - [aux_sym_cmd_identifier_token15] = ACTIONS(2057), - [aux_sym_cmd_identifier_token16] = ACTIONS(2057), - [aux_sym_cmd_identifier_token17] = ACTIONS(2057), - [aux_sym_cmd_identifier_token18] = ACTIONS(2057), - [aux_sym_cmd_identifier_token19] = ACTIONS(2057), - [aux_sym_cmd_identifier_token20] = ACTIONS(2057), - [aux_sym_cmd_identifier_token21] = ACTIONS(2057), - [aux_sym_cmd_identifier_token22] = ACTIONS(2057), - [aux_sym_cmd_identifier_token23] = ACTIONS(2057), - [aux_sym_cmd_identifier_token24] = ACTIONS(2057), - [aux_sym_cmd_identifier_token25] = ACTIONS(2057), - [aux_sym_cmd_identifier_token26] = ACTIONS(2057), - [aux_sym_cmd_identifier_token27] = ACTIONS(2057), - [aux_sym_cmd_identifier_token28] = ACTIONS(2057), - [aux_sym_cmd_identifier_token29] = ACTIONS(2057), - [aux_sym_cmd_identifier_token30] = ACTIONS(2057), - [aux_sym_cmd_identifier_token31] = ACTIONS(2057), - [aux_sym_cmd_identifier_token32] = ACTIONS(2057), - [aux_sym_cmd_identifier_token33] = ACTIONS(2057), - [aux_sym_cmd_identifier_token34] = ACTIONS(2057), - [aux_sym_cmd_identifier_token35] = ACTIONS(2057), - [aux_sym_cmd_identifier_token36] = ACTIONS(2057), - [aux_sym_cmd_identifier_token37] = ACTIONS(2057), - [aux_sym_cmd_identifier_token38] = ACTIONS(2057), - [aux_sym_cmd_identifier_token39] = ACTIONS(2057), - [aux_sym_cmd_identifier_token40] = ACTIONS(2057), - [anon_sym_def] = ACTIONS(2057), - [anon_sym_export_DASHenv] = ACTIONS(2057), - [anon_sym_extern] = ACTIONS(2057), - [anon_sym_module] = ACTIONS(2057), - [anon_sym_use] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_COMMA] = ACTIONS(2057), - [anon_sym_DOLLAR] = ACTIONS(2057), - [anon_sym_error] = ACTIONS(2057), - [anon_sym_DASH2] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_in2] = ACTIONS(2057), - [anon_sym_loop] = ACTIONS(2057), - [anon_sym_make] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_else] = ACTIONS(2057), - [anon_sym_match] = ACTIONS(2057), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_catch] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_source] = ACTIONS(2057), - [anon_sym_source_DASHenv] = ACTIONS(2057), - [anon_sym_register] = ACTIONS(2057), - [anon_sym_hide] = ACTIONS(2057), - [anon_sym_hide_DASHenv] = ACTIONS(2057), - [anon_sym_overlay] = ACTIONS(2057), - [anon_sym_as] = ACTIONS(2057), - [anon_sym_PLUS2] = ACTIONS(2057), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2057), - [anon_sym_DOT_DOT2] = ACTIONS(2009), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2011), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2011), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2057), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2057), - [aux_sym__val_number_decimal_token3] = ACTIONS(2057), - [aux_sym__val_number_decimal_token4] = ACTIONS(2057), - [aux_sym__val_number_token1] = ACTIONS(2057), - [aux_sym__val_number_token2] = ACTIONS(2057), - [aux_sym__val_number_token3] = ACTIONS(2057), - [aux_sym__val_number_token4] = ACTIONS(2057), - [aux_sym__val_number_token5] = ACTIONS(2057), - [aux_sym__val_number_token6] = ACTIONS(2057), - [anon_sym_DQUOTE] = ACTIONS(2057), - [sym__str_single_quotes] = ACTIONS(2057), - [sym__str_back_ticks] = ACTIONS(2057), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2057), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2057), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2057), - [sym__entry_separator] = ACTIONS(2059), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2059), + [aux_sym_cell_path_repeat1] = STATE(484), + [anon_sym_export] = ACTIONS(1873), + [anon_sym_alias] = ACTIONS(1873), + [anon_sym_let] = ACTIONS(1873), + [anon_sym_let_DASHenv] = ACTIONS(1873), + [anon_sym_mut] = ACTIONS(1873), + [anon_sym_const] = ACTIONS(1873), + [aux_sym_cmd_identifier_token1] = ACTIONS(1873), + [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(1873), + [aux_sym_cmd_identifier_token9] = ACTIONS(1873), + [aux_sym_cmd_identifier_token10] = ACTIONS(1875), + [aux_sym_cmd_identifier_token11] = ACTIONS(1875), + [aux_sym_cmd_identifier_token12] = ACTIONS(1873), + [aux_sym_cmd_identifier_token13] = ACTIONS(1873), + [aux_sym_cmd_identifier_token14] = ACTIONS(1873), + [aux_sym_cmd_identifier_token15] = ACTIONS(1873), + [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(1873), + [aux_sym_cmd_identifier_token35] = ACTIONS(1875), + [aux_sym_cmd_identifier_token36] = ACTIONS(1875), + [aux_sym_cmd_identifier_token37] = ACTIONS(1875), + [aux_sym_cmd_identifier_token38] = ACTIONS(1873), + [aux_sym_cmd_identifier_token39] = ACTIONS(1875), + [aux_sym_cmd_identifier_token40] = ACTIONS(1875), + [anon_sym_def] = ACTIONS(1873), + [anon_sym_export_DASHenv] = ACTIONS(1873), + [anon_sym_extern] = ACTIONS(1873), + [anon_sym_module] = ACTIONS(1873), + [anon_sym_use] = ACTIONS(1873), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_COMMA] = ACTIONS(1875), + [anon_sym_DOLLAR] = ACTIONS(1873), + [anon_sym_error] = ACTIONS(1873), + [anon_sym_DASH2] = ACTIONS(1873), + [anon_sym_break] = ACTIONS(1873), + [anon_sym_continue] = ACTIONS(1873), + [anon_sym_for] = ACTIONS(1873), + [anon_sym_in2] = ACTIONS(1873), + [anon_sym_loop] = ACTIONS(1873), + [anon_sym_make] = ACTIONS(1873), + [anon_sym_while] = ACTIONS(1873), + [anon_sym_do] = ACTIONS(1873), + [anon_sym_if] = ACTIONS(1873), + [anon_sym_else] = ACTIONS(1873), + [anon_sym_match] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(1875), + [anon_sym_try] = ACTIONS(1873), + [anon_sym_catch] = ACTIONS(1873), + [anon_sym_return] = ACTIONS(1873), + [anon_sym_source] = ACTIONS(1873), + [anon_sym_source_DASHenv] = ACTIONS(1873), + [anon_sym_hide] = ACTIONS(1873), + [anon_sym_hide_DASHenv] = ACTIONS(1873), + [anon_sym_overlay] = ACTIONS(1873), + [anon_sym_as] = ACTIONS(1873), + [anon_sym_PLUS2] = ACTIONS(1873), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1875), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1875), + [aux_sym__val_number_decimal_token1] = ACTIONS(1873), + [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), + [aux_sym__val_number_token4] = ACTIONS(1873), + [aux_sym__val_number_token5] = ACTIONS(1873), + [aux_sym__val_number_token6] = ACTIONS(1873), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym__str_single_quotes] = ACTIONS(1875), + [sym__str_back_ticks] = ACTIONS(1875), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1875), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1875), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1875), + [anon_sym_register] = ACTIONS(1873), + [anon_sym_DOT2] = ACTIONS(1921), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1875), }, [490] = { - [sym_cell_path] = STATE(745), - [sym_path] = STATE(587), [sym_comment] = STATE(490), - [aux_sym_cell_path_repeat1] = STATE(446), - [anon_sym_export] = ACTIONS(1851), - [anon_sym_alias] = ACTIONS(1851), - [anon_sym_let] = ACTIONS(1851), - [anon_sym_let_DASHenv] = ACTIONS(1851), - [anon_sym_mut] = ACTIONS(1851), - [anon_sym_const] = ACTIONS(1851), - [aux_sym_cmd_identifier_token1] = ACTIONS(1851), - [aux_sym_cmd_identifier_token2] = ACTIONS(1853), - [aux_sym_cmd_identifier_token3] = ACTIONS(1853), - [aux_sym_cmd_identifier_token4] = ACTIONS(1853), - [aux_sym_cmd_identifier_token5] = ACTIONS(1853), - [aux_sym_cmd_identifier_token6] = ACTIONS(1853), - [aux_sym_cmd_identifier_token7] = ACTIONS(1853), - [aux_sym_cmd_identifier_token8] = ACTIONS(1851), - [aux_sym_cmd_identifier_token9] = ACTIONS(1851), - [aux_sym_cmd_identifier_token10] = ACTIONS(1853), - [aux_sym_cmd_identifier_token11] = ACTIONS(1853), - [aux_sym_cmd_identifier_token12] = ACTIONS(1851), - [aux_sym_cmd_identifier_token13] = ACTIONS(1851), - [aux_sym_cmd_identifier_token14] = ACTIONS(1851), - [aux_sym_cmd_identifier_token15] = ACTIONS(1851), - [aux_sym_cmd_identifier_token16] = ACTIONS(1853), - [aux_sym_cmd_identifier_token17] = ACTIONS(1853), - [aux_sym_cmd_identifier_token18] = ACTIONS(1853), - [aux_sym_cmd_identifier_token19] = ACTIONS(1853), - [aux_sym_cmd_identifier_token20] = ACTIONS(1853), - [aux_sym_cmd_identifier_token21] = ACTIONS(1853), - [aux_sym_cmd_identifier_token22] = ACTIONS(1853), - [aux_sym_cmd_identifier_token23] = ACTIONS(1853), - [aux_sym_cmd_identifier_token24] = ACTIONS(1853), - [aux_sym_cmd_identifier_token25] = ACTIONS(1853), - [aux_sym_cmd_identifier_token26] = ACTIONS(1853), - [aux_sym_cmd_identifier_token27] = ACTIONS(1853), - [aux_sym_cmd_identifier_token28] = ACTIONS(1853), - [aux_sym_cmd_identifier_token29] = ACTIONS(1853), - [aux_sym_cmd_identifier_token30] = ACTIONS(1853), - [aux_sym_cmd_identifier_token31] = ACTIONS(1853), - [aux_sym_cmd_identifier_token32] = ACTIONS(1853), - [aux_sym_cmd_identifier_token33] = ACTIONS(1853), - [aux_sym_cmd_identifier_token34] = ACTIONS(1851), - [aux_sym_cmd_identifier_token35] = ACTIONS(1853), - [aux_sym_cmd_identifier_token36] = ACTIONS(1853), - [aux_sym_cmd_identifier_token37] = ACTIONS(1853), - [aux_sym_cmd_identifier_token38] = ACTIONS(1851), - [aux_sym_cmd_identifier_token39] = ACTIONS(1853), - [aux_sym_cmd_identifier_token40] = ACTIONS(1853), - [anon_sym_def] = ACTIONS(1851), - [anon_sym_export_DASHenv] = ACTIONS(1851), - [anon_sym_extern] = ACTIONS(1851), - [anon_sym_module] = ACTIONS(1851), - [anon_sym_use] = ACTIONS(1851), - [anon_sym_LPAREN] = ACTIONS(1853), - [anon_sym_COMMA] = ACTIONS(1853), - [anon_sym_DOLLAR] = ACTIONS(1851), - [anon_sym_error] = ACTIONS(1851), - [anon_sym_DASH2] = ACTIONS(1851), - [anon_sym_break] = ACTIONS(1851), - [anon_sym_continue] = ACTIONS(1851), - [anon_sym_for] = ACTIONS(1851), - [anon_sym_in2] = ACTIONS(1851), - [anon_sym_loop] = ACTIONS(1851), - [anon_sym_make] = ACTIONS(1851), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1851), - [anon_sym_if] = ACTIONS(1851), - [anon_sym_else] = ACTIONS(1851), - [anon_sym_match] = ACTIONS(1851), - [anon_sym_RBRACE] = ACTIONS(1853), - [anon_sym_try] = ACTIONS(1851), - [anon_sym_catch] = ACTIONS(1851), - [anon_sym_return] = ACTIONS(1851), - [anon_sym_source] = ACTIONS(1851), - [anon_sym_source_DASHenv] = ACTIONS(1851), - [anon_sym_register] = ACTIONS(1851), - [anon_sym_hide] = ACTIONS(1851), - [anon_sym_hide_DASHenv] = ACTIONS(1851), - [anon_sym_overlay] = ACTIONS(1851), - [anon_sym_as] = ACTIONS(1851), - [anon_sym_PLUS2] = ACTIONS(1851), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1853), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1853), - [aux_sym__val_number_decimal_token1] = ACTIONS(1851), - [aux_sym__val_number_decimal_token2] = ACTIONS(1853), - [aux_sym__val_number_decimal_token3] = ACTIONS(1853), - [aux_sym__val_number_decimal_token4] = ACTIONS(1853), - [aux_sym__val_number_token1] = ACTIONS(1853), - [aux_sym__val_number_token2] = ACTIONS(1853), - [aux_sym__val_number_token3] = ACTIONS(1853), - [aux_sym__val_number_token4] = ACTIONS(1851), - [aux_sym__val_number_token5] = ACTIONS(1851), - [aux_sym__val_number_token6] = ACTIONS(1851), - [anon_sym_DQUOTE] = ACTIONS(1853), - [sym__str_single_quotes] = ACTIONS(1853), - [sym__str_back_ticks] = ACTIONS(1853), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1853), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1853), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1853), - [anon_sym_DOT2] = ACTIONS(1973), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(2043), + [anon_sym_alias] = ACTIONS(2043), + [anon_sym_let] = ACTIONS(2043), + [anon_sym_let_DASHenv] = ACTIONS(2043), + [anon_sym_mut] = ACTIONS(2043), + [anon_sym_const] = ACTIONS(2043), + [aux_sym_cmd_identifier_token1] = ACTIONS(2043), + [aux_sym_cmd_identifier_token2] = ACTIONS(2043), + [aux_sym_cmd_identifier_token3] = ACTIONS(2043), + [aux_sym_cmd_identifier_token4] = ACTIONS(2043), + [aux_sym_cmd_identifier_token5] = ACTIONS(2043), + [aux_sym_cmd_identifier_token6] = ACTIONS(2043), + [aux_sym_cmd_identifier_token7] = ACTIONS(2043), + [aux_sym_cmd_identifier_token8] = ACTIONS(2043), + [aux_sym_cmd_identifier_token9] = ACTIONS(2043), + [aux_sym_cmd_identifier_token10] = ACTIONS(2043), + [aux_sym_cmd_identifier_token11] = ACTIONS(2043), + [aux_sym_cmd_identifier_token12] = ACTIONS(2043), + [aux_sym_cmd_identifier_token13] = ACTIONS(2043), + [aux_sym_cmd_identifier_token14] = ACTIONS(2043), + [aux_sym_cmd_identifier_token15] = ACTIONS(2043), + [aux_sym_cmd_identifier_token16] = ACTIONS(2043), + [aux_sym_cmd_identifier_token17] = ACTIONS(2043), + [aux_sym_cmd_identifier_token18] = ACTIONS(2043), + [aux_sym_cmd_identifier_token19] = ACTIONS(2043), + [aux_sym_cmd_identifier_token20] = ACTIONS(2043), + [aux_sym_cmd_identifier_token21] = ACTIONS(2043), + [aux_sym_cmd_identifier_token22] = ACTIONS(2043), + [aux_sym_cmd_identifier_token23] = ACTIONS(2043), + [aux_sym_cmd_identifier_token24] = ACTIONS(2043), + [aux_sym_cmd_identifier_token25] = ACTIONS(2043), + [aux_sym_cmd_identifier_token26] = ACTIONS(2043), + [aux_sym_cmd_identifier_token27] = ACTIONS(2043), + [aux_sym_cmd_identifier_token28] = ACTIONS(2043), + [aux_sym_cmd_identifier_token29] = ACTIONS(2043), + [aux_sym_cmd_identifier_token30] = ACTIONS(2043), + [aux_sym_cmd_identifier_token31] = ACTIONS(2043), + [aux_sym_cmd_identifier_token32] = ACTIONS(2043), + [aux_sym_cmd_identifier_token33] = ACTIONS(2043), + [aux_sym_cmd_identifier_token34] = ACTIONS(2043), + [aux_sym_cmd_identifier_token35] = ACTIONS(2043), + [aux_sym_cmd_identifier_token36] = ACTIONS(2043), + [aux_sym_cmd_identifier_token37] = ACTIONS(2043), + [aux_sym_cmd_identifier_token38] = ACTIONS(2043), + [aux_sym_cmd_identifier_token39] = ACTIONS(2043), + [aux_sym_cmd_identifier_token40] = ACTIONS(2043), + [anon_sym_def] = ACTIONS(2043), + [anon_sym_export_DASHenv] = ACTIONS(2043), + [anon_sym_extern] = ACTIONS(2043), + [anon_sym_module] = ACTIONS(2043), + [anon_sym_use] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_COMMA] = ACTIONS(2043), + [anon_sym_DOLLAR] = ACTIONS(2043), + [anon_sym_error] = ACTIONS(2043), + [anon_sym_DASH2] = ACTIONS(2043), + [anon_sym_break] = ACTIONS(2043), + [anon_sym_continue] = ACTIONS(2043), + [anon_sym_for] = ACTIONS(2043), + [anon_sym_in2] = ACTIONS(2043), + [anon_sym_loop] = ACTIONS(2043), + [anon_sym_make] = ACTIONS(2043), + [anon_sym_while] = ACTIONS(2043), + [anon_sym_do] = ACTIONS(2043), + [anon_sym_if] = ACTIONS(2043), + [anon_sym_else] = ACTIONS(2043), + [anon_sym_match] = ACTIONS(2043), + [anon_sym_RBRACE] = ACTIONS(2043), + [anon_sym_try] = ACTIONS(2043), + [anon_sym_catch] = ACTIONS(2043), + [anon_sym_return] = ACTIONS(2043), + [anon_sym_source] = ACTIONS(2043), + [anon_sym_source_DASHenv] = ACTIONS(2043), + [anon_sym_hide] = ACTIONS(2043), + [anon_sym_hide_DASHenv] = ACTIONS(2043), + [anon_sym_overlay] = ACTIONS(2043), + [anon_sym_as] = ACTIONS(2043), + [anon_sym_PLUS2] = ACTIONS(2043), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2043), + [anon_sym_DOT_DOT2] = ACTIONS(2045), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2047), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2047), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2043), + [aux_sym__val_number_decimal_token1] = ACTIONS(2043), + [aux_sym__val_number_decimal_token2] = ACTIONS(2043), + [aux_sym__val_number_decimal_token3] = ACTIONS(2043), + [aux_sym__val_number_decimal_token4] = ACTIONS(2043), + [aux_sym__val_number_token1] = ACTIONS(2043), + [aux_sym__val_number_token2] = ACTIONS(2043), + [aux_sym__val_number_token3] = ACTIONS(2043), + [aux_sym__val_number_token4] = ACTIONS(2043), + [aux_sym__val_number_token5] = ACTIONS(2043), + [aux_sym__val_number_token6] = ACTIONS(2043), + [anon_sym_DQUOTE] = ACTIONS(2043), + [sym__str_single_quotes] = ACTIONS(2043), + [sym__str_back_ticks] = ACTIONS(2043), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2043), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2043), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2043), + [sym__entry_separator] = ACTIONS(2049), + [anon_sym_register] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2049), }, [491] = { [sym_comment] = STATE(491), - [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), - [aux_sym_cmd_identifier_token37] = ACTIONS(1755), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1755), - [aux_sym_cmd_identifier_token40] = ACTIONS(1755), - [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(1755), - [anon_sym_COMMA] = ACTIONS(1755), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in2] = 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_RBRACE] = 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_as] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_PLUS2] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1755), - [aux_sym__immediate_decimal_token2] = ACTIONS(1889), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1755), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1755), - [aux_sym__val_number_decimal_token3] = ACTIONS(1755), - [aux_sym__val_number_decimal_token4] = ACTIONS(1755), - [aux_sym__val_number_token1] = ACTIONS(1755), - [aux_sym__val_number_token2] = ACTIONS(1755), - [aux_sym__val_number_token3] = ACTIONS(1755), - [aux_sym__val_number_token4] = ACTIONS(1755), - [aux_sym__val_number_token5] = ACTIONS(1755), - [aux_sym__val_number_token6] = ACTIONS(1755), - [anon_sym_DQUOTE] = ACTIONS(1755), - [sym__str_single_quotes] = ACTIONS(1755), - [sym__str_back_ticks] = ACTIONS(1755), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1755), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1755), - [sym__entry_separator] = ACTIONS(1757), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1757), - }, - [492] = { - [sym_comment] = STATE(492), - [anon_sym_export] = ACTIONS(2061), - [anon_sym_alias] = ACTIONS(2061), - [anon_sym_let] = ACTIONS(2061), - [anon_sym_let_DASHenv] = ACTIONS(2061), - [anon_sym_mut] = ACTIONS(2061), - [anon_sym_const] = ACTIONS(2061), - [aux_sym_cmd_identifier_token1] = ACTIONS(2061), - [aux_sym_cmd_identifier_token2] = ACTIONS(2061), - [aux_sym_cmd_identifier_token3] = ACTIONS(2061), - [aux_sym_cmd_identifier_token4] = ACTIONS(2061), - [aux_sym_cmd_identifier_token5] = ACTIONS(2061), - [aux_sym_cmd_identifier_token6] = ACTIONS(2061), - [aux_sym_cmd_identifier_token7] = ACTIONS(2061), - [aux_sym_cmd_identifier_token8] = ACTIONS(2061), - [aux_sym_cmd_identifier_token9] = ACTIONS(2061), - [aux_sym_cmd_identifier_token10] = ACTIONS(2061), - [aux_sym_cmd_identifier_token11] = ACTIONS(2061), - [aux_sym_cmd_identifier_token12] = ACTIONS(2061), - [aux_sym_cmd_identifier_token13] = ACTIONS(2061), - [aux_sym_cmd_identifier_token14] = ACTIONS(2061), - [aux_sym_cmd_identifier_token15] = ACTIONS(2061), - [aux_sym_cmd_identifier_token16] = ACTIONS(2061), - [aux_sym_cmd_identifier_token17] = ACTIONS(2061), - [aux_sym_cmd_identifier_token18] = ACTIONS(2061), - [aux_sym_cmd_identifier_token19] = ACTIONS(2061), - [aux_sym_cmd_identifier_token20] = ACTIONS(2061), - [aux_sym_cmd_identifier_token21] = ACTIONS(2061), - [aux_sym_cmd_identifier_token22] = ACTIONS(2061), - [aux_sym_cmd_identifier_token23] = ACTIONS(2061), - [aux_sym_cmd_identifier_token24] = ACTIONS(2061), - [aux_sym_cmd_identifier_token25] = ACTIONS(2061), - [aux_sym_cmd_identifier_token26] = ACTIONS(2061), - [aux_sym_cmd_identifier_token27] = ACTIONS(2061), - [aux_sym_cmd_identifier_token28] = ACTIONS(2061), - [aux_sym_cmd_identifier_token29] = ACTIONS(2061), - [aux_sym_cmd_identifier_token30] = ACTIONS(2061), - [aux_sym_cmd_identifier_token31] = ACTIONS(2061), - [aux_sym_cmd_identifier_token32] = ACTIONS(2061), - [aux_sym_cmd_identifier_token33] = ACTIONS(2061), - [aux_sym_cmd_identifier_token34] = ACTIONS(2061), - [aux_sym_cmd_identifier_token35] = ACTIONS(2061), - [aux_sym_cmd_identifier_token36] = ACTIONS(2061), - [aux_sym_cmd_identifier_token37] = ACTIONS(2061), - [aux_sym_cmd_identifier_token38] = ACTIONS(2061), - [aux_sym_cmd_identifier_token39] = ACTIONS(2061), - [aux_sym_cmd_identifier_token40] = ACTIONS(2061), - [anon_sym_def] = ACTIONS(2061), - [anon_sym_export_DASHenv] = ACTIONS(2061), - [anon_sym_extern] = ACTIONS(2061), - [anon_sym_module] = ACTIONS(2061), - [anon_sym_use] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(2061), - [anon_sym_COMMA] = ACTIONS(2061), - [anon_sym_DOLLAR] = ACTIONS(2061), - [anon_sym_error] = ACTIONS(2061), - [anon_sym_DASH2] = ACTIONS(2061), - [anon_sym_break] = ACTIONS(2061), - [anon_sym_continue] = ACTIONS(2061), - [anon_sym_for] = ACTIONS(2061), - [anon_sym_in2] = ACTIONS(2061), - [anon_sym_loop] = ACTIONS(2061), - [anon_sym_make] = ACTIONS(2061), - [anon_sym_while] = ACTIONS(2061), - [anon_sym_do] = ACTIONS(2061), - [anon_sym_if] = ACTIONS(2061), - [anon_sym_else] = ACTIONS(2061), - [anon_sym_match] = ACTIONS(2061), - [anon_sym_RBRACE] = ACTIONS(2061), - [anon_sym_try] = ACTIONS(2061), - [anon_sym_catch] = ACTIONS(2061), - [anon_sym_return] = ACTIONS(2061), - [anon_sym_source] = ACTIONS(2061), - [anon_sym_source_DASHenv] = ACTIONS(2061), - [anon_sym_register] = ACTIONS(2061), - [anon_sym_hide] = ACTIONS(2061), - [anon_sym_hide_DASHenv] = ACTIONS(2061), - [anon_sym_overlay] = ACTIONS(2061), - [anon_sym_as] = ACTIONS(2061), - [anon_sym_PLUS2] = ACTIONS(2061), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2061), - [anon_sym_DOT_DOT2] = ACTIONS(2009), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2011), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2011), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2061), - [aux_sym__val_number_decimal_token1] = ACTIONS(2061), - [aux_sym__val_number_decimal_token2] = ACTIONS(2061), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(2061), - [aux_sym__val_number_token2] = ACTIONS(2061), - [aux_sym__val_number_token3] = ACTIONS(2061), - [aux_sym__val_number_token4] = ACTIONS(2061), - [aux_sym__val_number_token5] = ACTIONS(2061), - [aux_sym__val_number_token6] = ACTIONS(2061), - [anon_sym_DQUOTE] = ACTIONS(2061), - [sym__str_single_quotes] = ACTIONS(2061), - [sym__str_back_ticks] = ACTIONS(2061), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2061), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2061), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2061), - [sym__entry_separator] = ACTIONS(2063), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2063), - }, - [493] = { - [sym_cell_path] = STATE(734), - [sym_path] = STATE(587), - [sym_comment] = STATE(493), - [aux_sym_cell_path_repeat1] = STATE(446), - [anon_sym_export] = ACTIONS(1957), - [anon_sym_alias] = ACTIONS(1957), - [anon_sym_let] = ACTIONS(1957), - [anon_sym_let_DASHenv] = ACTIONS(1957), - [anon_sym_mut] = ACTIONS(1957), - [anon_sym_const] = ACTIONS(1957), - [aux_sym_cmd_identifier_token1] = ACTIONS(1957), - [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(1957), - [aux_sym_cmd_identifier_token9] = ACTIONS(1957), - [aux_sym_cmd_identifier_token10] = ACTIONS(1959), - [aux_sym_cmd_identifier_token11] = ACTIONS(1959), - [aux_sym_cmd_identifier_token12] = ACTIONS(1957), - [aux_sym_cmd_identifier_token13] = ACTIONS(1957), - [aux_sym_cmd_identifier_token14] = ACTIONS(1957), - [aux_sym_cmd_identifier_token15] = ACTIONS(1957), - [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(1957), - [aux_sym_cmd_identifier_token35] = ACTIONS(1959), - [aux_sym_cmd_identifier_token36] = ACTIONS(1959), - [aux_sym_cmd_identifier_token37] = ACTIONS(1959), - [aux_sym_cmd_identifier_token38] = ACTIONS(1957), - [aux_sym_cmd_identifier_token39] = ACTIONS(1959), - [aux_sym_cmd_identifier_token40] = ACTIONS(1959), - [anon_sym_def] = ACTIONS(1957), - [anon_sym_export_DASHenv] = ACTIONS(1957), - [anon_sym_extern] = ACTIONS(1957), - [anon_sym_module] = ACTIONS(1957), - [anon_sym_use] = ACTIONS(1957), - [anon_sym_LPAREN] = ACTIONS(1959), - [anon_sym_COMMA] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1957), - [anon_sym_error] = ACTIONS(1957), - [anon_sym_DASH2] = ACTIONS(1957), - [anon_sym_break] = ACTIONS(1957), - [anon_sym_continue] = ACTIONS(1957), - [anon_sym_for] = ACTIONS(1957), - [anon_sym_in2] = ACTIONS(1957), - [anon_sym_loop] = ACTIONS(1957), - [anon_sym_make] = ACTIONS(1957), - [anon_sym_while] = ACTIONS(1957), - [anon_sym_do] = ACTIONS(1957), - [anon_sym_if] = ACTIONS(1957), - [anon_sym_else] = ACTIONS(1957), - [anon_sym_match] = ACTIONS(1957), - [anon_sym_RBRACE] = ACTIONS(1959), - [anon_sym_try] = ACTIONS(1957), - [anon_sym_catch] = ACTIONS(1957), - [anon_sym_return] = ACTIONS(1957), - [anon_sym_source] = ACTIONS(1957), - [anon_sym_source_DASHenv] = ACTIONS(1957), - [anon_sym_register] = ACTIONS(1957), - [anon_sym_hide] = ACTIONS(1957), - [anon_sym_hide_DASHenv] = ACTIONS(1957), - [anon_sym_overlay] = ACTIONS(1957), - [anon_sym_as] = ACTIONS(1957), - [anon_sym_PLUS2] = ACTIONS(1957), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1959), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1957), - [aux_sym__val_number_decimal_token2] = ACTIONS(1959), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), - [aux_sym__val_number_token1] = ACTIONS(1959), - [aux_sym__val_number_token2] = ACTIONS(1959), - [aux_sym__val_number_token3] = ACTIONS(1959), - [aux_sym__val_number_token4] = ACTIONS(1957), - [aux_sym__val_number_token5] = ACTIONS(1957), - [aux_sym__val_number_token6] = ACTIONS(1957), - [anon_sym_DQUOTE] = ACTIONS(1959), - [sym__str_single_quotes] = ACTIONS(1959), - [sym__str_back_ticks] = ACTIONS(1959), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1959), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1959), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1959), - [anon_sym_DOT2] = ACTIONS(1973), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1959), - }, - [494] = { - [sym_comment] = STATE(494), - [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), - [aux_sym_cmd_identifier_token37] = ACTIONS(1755), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1755), - [aux_sym_cmd_identifier_token40] = ACTIONS(1755), - [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(1755), - [anon_sym_COMMA] = ACTIONS(1755), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in2] = 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_RBRACE] = 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_as] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_PLUS2] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1755), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1755), - [aux_sym__val_number_decimal_token3] = ACTIONS(1755), - [aux_sym__val_number_decimal_token4] = ACTIONS(1755), - [aux_sym__val_number_token1] = ACTIONS(1755), - [aux_sym__val_number_token2] = ACTIONS(1755), - [aux_sym__val_number_token3] = ACTIONS(1755), - [aux_sym__val_number_token4] = ACTIONS(1755), - [aux_sym__val_number_token5] = ACTIONS(1755), - [aux_sym__val_number_token6] = ACTIONS(1755), - [anon_sym_DQUOTE] = ACTIONS(1755), - [sym__str_single_quotes] = ACTIONS(1755), - [sym__str_back_ticks] = ACTIONS(1755), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1755), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1755), - [sym__entry_separator] = ACTIONS(1757), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1757), - }, - [495] = { - [sym_expr_parenthesized] = STATE(4228), - [sym__spread_parenthesized] = STATE(4655), - [sym_val_range] = STATE(4656), - [sym__val_range] = STATE(7471), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(4656), - [sym_val_nothing] = STATE(4585), - [sym_val_bool] = STATE(4452), - [sym__spread_variable] = STATE(4660), - [sym_val_variable] = STATE(4244), - [sym_val_number] = STATE(4585), - [sym__val_number_decimal] = STATE(3953), - [sym__val_number] = STATE(4586), - [sym_val_duration] = STATE(4585), - [sym_val_filesize] = STATE(4585), - [sym_val_binary] = STATE(4585), - [sym_val_string] = STATE(4585), - [sym__raw_str] = STATE(4058), - [sym__str_double_quotes] = STATE(4058), - [sym_val_interpolated] = STATE(4585), - [sym__inter_single_quotes] = STATE(4587), - [sym__inter_double_quotes] = STATE(4588), - [sym_val_list] = STATE(4585), - [sym__spread_list] = STATE(4655), - [sym_val_record] = STATE(4585), - [sym_val_table] = STATE(4585), - [sym_val_closure] = STATE(4585), - [sym__cmd_arg] = STATE(4661), - [sym_redirection] = STATE(4662), - [sym__flag] = STATE(4663), - [sym_short_flag] = STATE(4582), - [sym_long_flag] = STATE(4582), - [sym_unquoted] = STATE(4380), - [sym__unquoted_with_expr] = STATE(4664), - [sym__unquoted_anonymous_prefix] = STATE(6988), - [sym_comment] = STATE(495), - [sym__newline] = ACTIONS(2065), - [sym__space] = ACTIONS(2065), - [anon_sym_SEMI] = ACTIONS(2068), - [anon_sym_PIPE] = ACTIONS(2068), - [anon_sym_err_GT_PIPE] = ACTIONS(2068), - [anon_sym_out_GT_PIPE] = ACTIONS(2068), - [anon_sym_e_GT_PIPE] = ACTIONS(2068), - [anon_sym_o_GT_PIPE] = ACTIONS(2068), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2068), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2068), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2068), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2068), - [anon_sym_LBRACK] = ACTIONS(2070), - [anon_sym_LPAREN] = ACTIONS(2072), - [anon_sym_DOLLAR] = ACTIONS(2074), - [anon_sym_DASH_DASH] = ACTIONS(2076), - [anon_sym_DASH2] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_RBRACE] = ACTIONS(2068), - [anon_sym_DOT_DOT] = ACTIONS(2082), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2084), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2086), - [anon_sym_DOT_DOT_LT] = ACTIONS(2086), - [anon_sym_null] = ACTIONS(2088), - [anon_sym_true] = ACTIONS(2090), - [anon_sym_false] = ACTIONS(2090), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2092), - [aux_sym__val_number_decimal_token1] = ACTIONS(2094), - [aux_sym__val_number_decimal_token2] = ACTIONS(2094), - [aux_sym__val_number_decimal_token3] = ACTIONS(2096), - [aux_sym__val_number_decimal_token4] = ACTIONS(2098), - [aux_sym__val_number_token1] = ACTIONS(2100), - [aux_sym__val_number_token2] = ACTIONS(2100), - [aux_sym__val_number_token3] = ACTIONS(2100), - [aux_sym__val_number_token4] = ACTIONS(2102), - [aux_sym__val_number_token5] = ACTIONS(2102), - [aux_sym__val_number_token6] = ACTIONS(2102), - [anon_sym_0b] = ACTIONS(2104), - [anon_sym_0o] = ACTIONS(2106), - [anon_sym_0x] = ACTIONS(2106), - [sym_val_date] = ACTIONS(2108), - [anon_sym_DQUOTE] = ACTIONS(2110), - [sym__str_single_quotes] = ACTIONS(2112), - [sym__str_back_ticks] = ACTIONS(2112), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2114), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2116), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2118), - [anon_sym_COLON2] = ACTIONS(2120), - [anon_sym_err_GT] = ACTIONS(2122), - [anon_sym_out_GT] = ACTIONS(2122), - [anon_sym_e_GT] = ACTIONS(2122), - [anon_sym_o_GT] = ACTIONS(2122), - [anon_sym_err_PLUSout_GT] = ACTIONS(2122), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2122), - [anon_sym_o_PLUSe_GT] = ACTIONS(2122), - [anon_sym_e_PLUSo_GT] = ACTIONS(2122), - [anon_sym_err_GT_GT] = ACTIONS(2122), - [anon_sym_out_GT_GT] = ACTIONS(2122), - [anon_sym_e_GT_GT] = ACTIONS(2122), - [anon_sym_o_GT_GT] = ACTIONS(2122), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2122), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2122), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2122), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2122), - [aux_sym_unquoted_token1] = ACTIONS(2124), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2126), - }, - [496] = { - [sym_comment] = STATE(496), - [anon_sym_export] = ACTIONS(972), - [anon_sym_alias] = ACTIONS(972), - [anon_sym_let] = ACTIONS(972), - [anon_sym_let_DASHenv] = ACTIONS(972), - [anon_sym_mut] = ACTIONS(972), - [anon_sym_const] = ACTIONS(972), - [aux_sym_cmd_identifier_token1] = ACTIONS(972), - [aux_sym_cmd_identifier_token2] = ACTIONS(974), - [aux_sym_cmd_identifier_token3] = ACTIONS(974), - [aux_sym_cmd_identifier_token4] = ACTIONS(974), - [aux_sym_cmd_identifier_token5] = ACTIONS(974), - [aux_sym_cmd_identifier_token6] = ACTIONS(974), - [aux_sym_cmd_identifier_token7] = ACTIONS(974), - [aux_sym_cmd_identifier_token8] = ACTIONS(972), - [aux_sym_cmd_identifier_token9] = ACTIONS(972), - [aux_sym_cmd_identifier_token10] = ACTIONS(974), - [aux_sym_cmd_identifier_token11] = ACTIONS(974), - [aux_sym_cmd_identifier_token12] = ACTIONS(972), - [aux_sym_cmd_identifier_token13] = ACTIONS(972), - [aux_sym_cmd_identifier_token14] = ACTIONS(972), - [aux_sym_cmd_identifier_token15] = ACTIONS(972), - [aux_sym_cmd_identifier_token16] = ACTIONS(974), - [aux_sym_cmd_identifier_token17] = ACTIONS(974), - [aux_sym_cmd_identifier_token18] = ACTIONS(974), - [aux_sym_cmd_identifier_token19] = ACTIONS(974), - [aux_sym_cmd_identifier_token20] = ACTIONS(974), - [aux_sym_cmd_identifier_token21] = ACTIONS(974), - [aux_sym_cmd_identifier_token22] = ACTIONS(974), - [aux_sym_cmd_identifier_token23] = ACTIONS(974), - [aux_sym_cmd_identifier_token24] = ACTIONS(974), - [aux_sym_cmd_identifier_token25] = ACTIONS(974), - [aux_sym_cmd_identifier_token26] = ACTIONS(974), - [aux_sym_cmd_identifier_token27] = ACTIONS(974), - [aux_sym_cmd_identifier_token28] = ACTIONS(974), - [aux_sym_cmd_identifier_token29] = ACTIONS(974), - [aux_sym_cmd_identifier_token30] = ACTIONS(974), - [aux_sym_cmd_identifier_token31] = ACTIONS(974), - [aux_sym_cmd_identifier_token32] = ACTIONS(974), - [aux_sym_cmd_identifier_token33] = ACTIONS(974), - [aux_sym_cmd_identifier_token34] = ACTIONS(972), - [aux_sym_cmd_identifier_token35] = ACTIONS(974), - [aux_sym_cmd_identifier_token36] = ACTIONS(974), - [aux_sym_cmd_identifier_token37] = ACTIONS(974), - [aux_sym_cmd_identifier_token38] = ACTIONS(972), - [aux_sym_cmd_identifier_token39] = ACTIONS(974), - [aux_sym_cmd_identifier_token40] = ACTIONS(974), - [anon_sym_def] = ACTIONS(972), - [anon_sym_export_DASHenv] = ACTIONS(972), - [anon_sym_extern] = ACTIONS(972), - [anon_sym_module] = ACTIONS(972), - [anon_sym_use] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_COMMA] = ACTIONS(974), - [anon_sym_DOLLAR] = ACTIONS(972), - [anon_sym_error] = ACTIONS(972), - [anon_sym_DASH2] = ACTIONS(972), - [anon_sym_break] = ACTIONS(972), - [anon_sym_continue] = ACTIONS(972), - [anon_sym_for] = ACTIONS(972), - [anon_sym_in2] = ACTIONS(972), - [anon_sym_loop] = ACTIONS(972), - [anon_sym_make] = ACTIONS(972), - [anon_sym_while] = ACTIONS(972), - [anon_sym_do] = ACTIONS(972), - [anon_sym_if] = ACTIONS(972), - [anon_sym_else] = ACTIONS(972), - [anon_sym_match] = ACTIONS(972), - [anon_sym_RBRACE] = ACTIONS(974), - [anon_sym_try] = ACTIONS(972), - [anon_sym_catch] = ACTIONS(972), - [anon_sym_return] = ACTIONS(972), - [anon_sym_source] = ACTIONS(972), - [anon_sym_source_DASHenv] = ACTIONS(972), - [anon_sym_register] = ACTIONS(972), - [anon_sym_hide] = ACTIONS(972), - [anon_sym_hide_DASHenv] = ACTIONS(972), - [anon_sym_overlay] = ACTIONS(972), - [anon_sym_as] = ACTIONS(972), - [anon_sym_QMARK2] = ACTIONS(974), - [anon_sym_PLUS2] = ACTIONS(972), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(974), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(974), - [aux_sym__val_number_decimal_token1] = ACTIONS(972), - [aux_sym__val_number_decimal_token2] = ACTIONS(974), - [aux_sym__val_number_decimal_token3] = ACTIONS(974), - [aux_sym__val_number_decimal_token4] = ACTIONS(974), - [aux_sym__val_number_token1] = ACTIONS(974), - [aux_sym__val_number_token2] = ACTIONS(974), - [aux_sym__val_number_token3] = ACTIONS(974), - [aux_sym__val_number_token4] = ACTIONS(972), - [aux_sym__val_number_token5] = ACTIONS(972), - [aux_sym__val_number_token6] = ACTIONS(972), - [anon_sym_DQUOTE] = ACTIONS(974), - [sym__str_single_quotes] = ACTIONS(974), - [sym__str_back_ticks] = ACTIONS(974), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(974), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(974), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(974), - [anon_sym_COLON2] = ACTIONS(974), - [anon_sym_DOT2] = ACTIONS(972), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(974), - }, - [497] = { - [sym_comment] = STATE(497), - [anon_sym_export] = ACTIONS(2128), - [anon_sym_alias] = ACTIONS(2128), - [anon_sym_let] = ACTIONS(2128), - [anon_sym_let_DASHenv] = ACTIONS(2128), - [anon_sym_mut] = ACTIONS(2128), - [anon_sym_const] = ACTIONS(2128), - [aux_sym_cmd_identifier_token1] = ACTIONS(2128), - [aux_sym_cmd_identifier_token2] = ACTIONS(2128), - [aux_sym_cmd_identifier_token3] = ACTIONS(2128), - [aux_sym_cmd_identifier_token4] = ACTIONS(2128), - [aux_sym_cmd_identifier_token5] = ACTIONS(2128), - [aux_sym_cmd_identifier_token6] = ACTIONS(2128), - [aux_sym_cmd_identifier_token7] = ACTIONS(2128), - [aux_sym_cmd_identifier_token8] = ACTIONS(2128), - [aux_sym_cmd_identifier_token9] = ACTIONS(2128), - [aux_sym_cmd_identifier_token10] = ACTIONS(2128), - [aux_sym_cmd_identifier_token11] = ACTIONS(2128), - [aux_sym_cmd_identifier_token12] = ACTIONS(2128), - [aux_sym_cmd_identifier_token13] = ACTIONS(2128), - [aux_sym_cmd_identifier_token14] = ACTIONS(2128), - [aux_sym_cmd_identifier_token15] = ACTIONS(2128), - [aux_sym_cmd_identifier_token16] = ACTIONS(2128), - [aux_sym_cmd_identifier_token17] = ACTIONS(2128), - [aux_sym_cmd_identifier_token18] = ACTIONS(2128), - [aux_sym_cmd_identifier_token19] = ACTIONS(2128), - [aux_sym_cmd_identifier_token20] = ACTIONS(2128), - [aux_sym_cmd_identifier_token21] = ACTIONS(2128), - [aux_sym_cmd_identifier_token22] = ACTIONS(2128), - [aux_sym_cmd_identifier_token23] = ACTIONS(2128), - [aux_sym_cmd_identifier_token24] = ACTIONS(2128), - [aux_sym_cmd_identifier_token25] = ACTIONS(2128), - [aux_sym_cmd_identifier_token26] = ACTIONS(2128), - [aux_sym_cmd_identifier_token27] = ACTIONS(2128), - [aux_sym_cmd_identifier_token28] = ACTIONS(2128), - [aux_sym_cmd_identifier_token29] = ACTIONS(2128), - [aux_sym_cmd_identifier_token30] = ACTIONS(2128), - [aux_sym_cmd_identifier_token31] = ACTIONS(2128), - [aux_sym_cmd_identifier_token32] = ACTIONS(2128), - [aux_sym_cmd_identifier_token33] = ACTIONS(2128), - [aux_sym_cmd_identifier_token34] = ACTIONS(2128), - [aux_sym_cmd_identifier_token35] = ACTIONS(2128), - [aux_sym_cmd_identifier_token36] = ACTIONS(2128), - [aux_sym_cmd_identifier_token37] = ACTIONS(2128), - [aux_sym_cmd_identifier_token38] = ACTIONS(2128), - [aux_sym_cmd_identifier_token39] = ACTIONS(2128), - [aux_sym_cmd_identifier_token40] = ACTIONS(2128), - [anon_sym_def] = ACTIONS(2128), - [anon_sym_export_DASHenv] = ACTIONS(2128), - [anon_sym_extern] = ACTIONS(2128), - [anon_sym_module] = ACTIONS(2128), - [anon_sym_use] = ACTIONS(2128), - [anon_sym_LPAREN] = ACTIONS(2128), - [anon_sym_COMMA] = ACTIONS(2128), - [anon_sym_DOLLAR] = ACTIONS(2128), - [anon_sym_error] = ACTIONS(2128), - [anon_sym_DASH2] = ACTIONS(2128), - [anon_sym_break] = ACTIONS(2128), - [anon_sym_continue] = ACTIONS(2128), - [anon_sym_for] = ACTIONS(2128), - [anon_sym_in2] = ACTIONS(2128), - [anon_sym_loop] = ACTIONS(2128), - [anon_sym_make] = ACTIONS(2128), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_do] = ACTIONS(2128), - [anon_sym_if] = ACTIONS(2128), - [anon_sym_else] = ACTIONS(2128), - [anon_sym_match] = ACTIONS(2128), - [anon_sym_RBRACE] = ACTIONS(2128), - [anon_sym_try] = ACTIONS(2128), - [anon_sym_catch] = ACTIONS(2128), - [anon_sym_return] = ACTIONS(2128), - [anon_sym_source] = ACTIONS(2128), - [anon_sym_source_DASHenv] = ACTIONS(2128), - [anon_sym_register] = ACTIONS(2128), - [anon_sym_hide] = ACTIONS(2128), - [anon_sym_hide_DASHenv] = ACTIONS(2128), - [anon_sym_overlay] = ACTIONS(2128), - [anon_sym_as] = ACTIONS(2128), - [anon_sym_LPAREN2] = ACTIONS(2130), - [anon_sym_PLUS2] = ACTIONS(2128), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2128), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2128), - [aux_sym__val_number_decimal_token1] = ACTIONS(2128), - [aux_sym__val_number_decimal_token2] = ACTIONS(2128), - [aux_sym__val_number_decimal_token3] = ACTIONS(2128), - [aux_sym__val_number_decimal_token4] = ACTIONS(2128), - [aux_sym__val_number_token1] = ACTIONS(2128), - [aux_sym__val_number_token2] = ACTIONS(2128), - [aux_sym__val_number_token3] = ACTIONS(2128), - [aux_sym__val_number_token4] = ACTIONS(2128), - [aux_sym__val_number_token5] = ACTIONS(2128), - [aux_sym__val_number_token6] = ACTIONS(2128), - [anon_sym_DQUOTE] = ACTIONS(2128), - [sym__str_single_quotes] = ACTIONS(2128), - [sym__str_back_ticks] = ACTIONS(2128), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2128), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2128), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2128), - [sym__entry_separator] = ACTIONS(2132), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2134), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2132), - }, - [498] = { - [sym_comment] = STATE(498), - [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(978), - [aux_sym_cmd_identifier_token3] = ACTIONS(978), - [aux_sym_cmd_identifier_token4] = ACTIONS(978), - [aux_sym_cmd_identifier_token5] = ACTIONS(978), - [aux_sym_cmd_identifier_token6] = ACTIONS(978), - [aux_sym_cmd_identifier_token7] = ACTIONS(978), - [aux_sym_cmd_identifier_token8] = ACTIONS(976), - [aux_sym_cmd_identifier_token9] = ACTIONS(976), - [aux_sym_cmd_identifier_token10] = ACTIONS(978), - [aux_sym_cmd_identifier_token11] = ACTIONS(978), - [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(978), - [aux_sym_cmd_identifier_token17] = ACTIONS(978), - [aux_sym_cmd_identifier_token18] = ACTIONS(978), - [aux_sym_cmd_identifier_token19] = ACTIONS(978), - [aux_sym_cmd_identifier_token20] = ACTIONS(978), - [aux_sym_cmd_identifier_token21] = ACTIONS(978), - [aux_sym_cmd_identifier_token22] = ACTIONS(978), - [aux_sym_cmd_identifier_token23] = ACTIONS(978), - [aux_sym_cmd_identifier_token24] = ACTIONS(978), - [aux_sym_cmd_identifier_token25] = ACTIONS(978), - [aux_sym_cmd_identifier_token26] = ACTIONS(978), - [aux_sym_cmd_identifier_token27] = ACTIONS(978), - [aux_sym_cmd_identifier_token28] = ACTIONS(978), - [aux_sym_cmd_identifier_token29] = ACTIONS(978), - [aux_sym_cmd_identifier_token30] = ACTIONS(978), - [aux_sym_cmd_identifier_token31] = ACTIONS(978), - [aux_sym_cmd_identifier_token32] = ACTIONS(978), - [aux_sym_cmd_identifier_token33] = ACTIONS(978), - [aux_sym_cmd_identifier_token34] = ACTIONS(976), - [aux_sym_cmd_identifier_token35] = ACTIONS(978), - [aux_sym_cmd_identifier_token36] = ACTIONS(978), - [aux_sym_cmd_identifier_token37] = 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(976), - [anon_sym_error] = ACTIONS(976), - [anon_sym_DASH2] = ACTIONS(976), - [anon_sym_break] = ACTIONS(976), - [anon_sym_continue] = ACTIONS(976), - [anon_sym_for] = ACTIONS(976), - [anon_sym_in2] = 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_as] = ACTIONS(976), - [anon_sym_QMARK2] = ACTIONS(978), - [anon_sym_PLUS2] = 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), - [aux_sym__val_number_token4] = ACTIONS(976), - [aux_sym__val_number_token5] = ACTIONS(976), - [aux_sym__val_number_token6] = ACTIONS(976), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(978), - [anon_sym_COLON2] = ACTIONS(978), - [anon_sym_DOT2] = ACTIONS(976), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(978), - }, - [499] = { - [sym_comment] = STATE(499), - [anon_sym_export] = ACTIONS(984), - [anon_sym_alias] = ACTIONS(984), - [anon_sym_let] = ACTIONS(984), - [anon_sym_let_DASHenv] = ACTIONS(984), - [anon_sym_mut] = ACTIONS(984), - [anon_sym_const] = ACTIONS(984), - [aux_sym_cmd_identifier_token1] = ACTIONS(984), - [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(984), - [aux_sym_cmd_identifier_token9] = ACTIONS(984), - [aux_sym_cmd_identifier_token10] = ACTIONS(986), - [aux_sym_cmd_identifier_token11] = ACTIONS(986), - [aux_sym_cmd_identifier_token12] = ACTIONS(984), - [aux_sym_cmd_identifier_token13] = ACTIONS(984), - [aux_sym_cmd_identifier_token14] = ACTIONS(984), - [aux_sym_cmd_identifier_token15] = ACTIONS(984), - [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(984), - [aux_sym_cmd_identifier_token35] = ACTIONS(986), - [aux_sym_cmd_identifier_token36] = ACTIONS(986), - [aux_sym_cmd_identifier_token37] = ACTIONS(986), - [aux_sym_cmd_identifier_token38] = ACTIONS(984), - [aux_sym_cmd_identifier_token39] = ACTIONS(986), - [aux_sym_cmd_identifier_token40] = ACTIONS(986), - [anon_sym_def] = ACTIONS(984), - [anon_sym_export_DASHenv] = ACTIONS(984), - [anon_sym_extern] = ACTIONS(984), - [anon_sym_module] = ACTIONS(984), - [anon_sym_use] = ACTIONS(984), - [anon_sym_LPAREN] = ACTIONS(986), - [anon_sym_COMMA] = ACTIONS(986), - [anon_sym_DOLLAR] = ACTIONS(984), - [anon_sym_error] = ACTIONS(984), - [anon_sym_DASH2] = ACTIONS(984), - [anon_sym_break] = ACTIONS(984), - [anon_sym_continue] = ACTIONS(984), - [anon_sym_for] = ACTIONS(984), - [anon_sym_in2] = ACTIONS(984), - [anon_sym_loop] = ACTIONS(984), - [anon_sym_make] = ACTIONS(984), - [anon_sym_while] = ACTIONS(984), - [anon_sym_do] = ACTIONS(984), - [anon_sym_if] = ACTIONS(984), - [anon_sym_else] = ACTIONS(984), - [anon_sym_match] = ACTIONS(984), - [anon_sym_RBRACE] = ACTIONS(986), - [anon_sym_try] = ACTIONS(984), - [anon_sym_catch] = ACTIONS(984), - [anon_sym_return] = ACTIONS(984), - [anon_sym_source] = ACTIONS(984), - [anon_sym_source_DASHenv] = ACTIONS(984), - [anon_sym_register] = ACTIONS(984), - [anon_sym_hide] = ACTIONS(984), - [anon_sym_hide_DASHenv] = ACTIONS(984), - [anon_sym_overlay] = ACTIONS(984), - [anon_sym_as] = ACTIONS(984), - [anon_sym_QMARK2] = ACTIONS(986), - [anon_sym_PLUS2] = ACTIONS(984), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(986), - [aux_sym__val_number_decimal_token1] = ACTIONS(984), - [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), - [aux_sym__val_number_token4] = ACTIONS(984), - [aux_sym__val_number_token5] = ACTIONS(984), - [aux_sym__val_number_token6] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym__str_single_quotes] = ACTIONS(986), - [sym__str_back_ticks] = ACTIONS(986), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(986), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(986), - [anon_sym_COLON2] = ACTIONS(986), - [anon_sym_DOT2] = ACTIONS(984), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(986), - }, - [500] = { - [sym_comment] = STATE(500), - [anon_sym_export] = ACTIONS(2136), - [anon_sym_alias] = ACTIONS(2136), - [anon_sym_let] = ACTIONS(2136), - [anon_sym_let_DASHenv] = ACTIONS(2136), - [anon_sym_mut] = ACTIONS(2136), - [anon_sym_const] = ACTIONS(2136), - [aux_sym_cmd_identifier_token1] = ACTIONS(2136), - [aux_sym_cmd_identifier_token2] = ACTIONS(2136), - [aux_sym_cmd_identifier_token3] = ACTIONS(2136), - [aux_sym_cmd_identifier_token4] = ACTIONS(2136), - [aux_sym_cmd_identifier_token5] = ACTIONS(2136), - [aux_sym_cmd_identifier_token6] = ACTIONS(2136), - [aux_sym_cmd_identifier_token7] = ACTIONS(2136), - [aux_sym_cmd_identifier_token8] = ACTIONS(2136), - [aux_sym_cmd_identifier_token9] = ACTIONS(2136), - [aux_sym_cmd_identifier_token10] = ACTIONS(2136), - [aux_sym_cmd_identifier_token11] = ACTIONS(2136), - [aux_sym_cmd_identifier_token12] = ACTIONS(2136), - [aux_sym_cmd_identifier_token13] = ACTIONS(2136), - [aux_sym_cmd_identifier_token14] = ACTIONS(2136), - [aux_sym_cmd_identifier_token15] = ACTIONS(2136), - [aux_sym_cmd_identifier_token16] = ACTIONS(2136), - [aux_sym_cmd_identifier_token17] = ACTIONS(2136), - [aux_sym_cmd_identifier_token18] = ACTIONS(2136), - [aux_sym_cmd_identifier_token19] = ACTIONS(2136), - [aux_sym_cmd_identifier_token20] = ACTIONS(2136), - [aux_sym_cmd_identifier_token21] = ACTIONS(2136), - [aux_sym_cmd_identifier_token22] = ACTIONS(2136), - [aux_sym_cmd_identifier_token23] = ACTIONS(2136), - [aux_sym_cmd_identifier_token24] = ACTIONS(2136), - [aux_sym_cmd_identifier_token25] = ACTIONS(2136), - [aux_sym_cmd_identifier_token26] = ACTIONS(2136), - [aux_sym_cmd_identifier_token27] = ACTIONS(2136), - [aux_sym_cmd_identifier_token28] = ACTIONS(2136), - [aux_sym_cmd_identifier_token29] = ACTIONS(2136), - [aux_sym_cmd_identifier_token30] = ACTIONS(2136), - [aux_sym_cmd_identifier_token31] = ACTIONS(2136), - [aux_sym_cmd_identifier_token32] = ACTIONS(2136), - [aux_sym_cmd_identifier_token33] = ACTIONS(2136), - [aux_sym_cmd_identifier_token34] = ACTIONS(2136), - [aux_sym_cmd_identifier_token35] = ACTIONS(2136), - [aux_sym_cmd_identifier_token36] = ACTIONS(2136), - [aux_sym_cmd_identifier_token37] = ACTIONS(2136), - [aux_sym_cmd_identifier_token38] = ACTIONS(2136), - [aux_sym_cmd_identifier_token39] = ACTIONS(2136), - [aux_sym_cmd_identifier_token40] = ACTIONS(2136), - [anon_sym_def] = ACTIONS(2136), - [anon_sym_export_DASHenv] = ACTIONS(2136), - [anon_sym_extern] = ACTIONS(2136), - [anon_sym_module] = ACTIONS(2136), - [anon_sym_use] = ACTIONS(2136), - [anon_sym_LPAREN] = ACTIONS(2136), - [anon_sym_COMMA] = ACTIONS(2136), - [anon_sym_DOLLAR] = ACTIONS(2136), - [anon_sym_error] = ACTIONS(2136), - [anon_sym_DASH2] = ACTIONS(2136), - [anon_sym_break] = ACTIONS(2136), - [anon_sym_continue] = ACTIONS(2136), - [anon_sym_for] = ACTIONS(2136), - [anon_sym_in2] = ACTIONS(2136), - [anon_sym_loop] = ACTIONS(2136), - [anon_sym_make] = ACTIONS(2136), - [anon_sym_while] = ACTIONS(2136), - [anon_sym_do] = ACTIONS(2136), - [anon_sym_if] = ACTIONS(2136), - [anon_sym_else] = ACTIONS(2136), - [anon_sym_match] = ACTIONS(2136), - [anon_sym_RBRACE] = ACTIONS(2136), - [anon_sym_try] = ACTIONS(2136), - [anon_sym_catch] = ACTIONS(2136), - [anon_sym_return] = ACTIONS(2136), - [anon_sym_source] = ACTIONS(2136), - [anon_sym_source_DASHenv] = ACTIONS(2136), - [anon_sym_register] = ACTIONS(2136), - [anon_sym_hide] = ACTIONS(2136), - [anon_sym_hide_DASHenv] = ACTIONS(2136), - [anon_sym_overlay] = ACTIONS(2136), - [anon_sym_as] = ACTIONS(2136), - [anon_sym_LPAREN2] = ACTIONS(2138), - [anon_sym_PLUS2] = ACTIONS(2136), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2136), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2136), - [aux_sym__val_number_decimal_token1] = ACTIONS(2136), - [aux_sym__val_number_decimal_token2] = ACTIONS(2136), - [aux_sym__val_number_decimal_token3] = ACTIONS(2136), - [aux_sym__val_number_decimal_token4] = ACTIONS(2136), - [aux_sym__val_number_token1] = ACTIONS(2136), - [aux_sym__val_number_token2] = ACTIONS(2136), - [aux_sym__val_number_token3] = ACTIONS(2136), - [aux_sym__val_number_token4] = ACTIONS(2136), - [aux_sym__val_number_token5] = ACTIONS(2136), - [aux_sym__val_number_token6] = ACTIONS(2136), - [anon_sym_DQUOTE] = ACTIONS(2136), - [sym__str_single_quotes] = ACTIONS(2136), - [sym__str_back_ticks] = ACTIONS(2136), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2136), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2136), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2136), - [sym__entry_separator] = ACTIONS(2140), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2142), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2140), - }, - [501] = { - [sym_comment] = STATE(501), - [anon_sym_export] = ACTIONS(2144), - [anon_sym_alias] = ACTIONS(2144), - [anon_sym_let] = ACTIONS(2144), - [anon_sym_let_DASHenv] = ACTIONS(2144), - [anon_sym_mut] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [aux_sym_cmd_identifier_token1] = ACTIONS(2144), - [aux_sym_cmd_identifier_token2] = ACTIONS(2144), - [aux_sym_cmd_identifier_token3] = ACTIONS(2144), - [aux_sym_cmd_identifier_token4] = ACTIONS(2144), - [aux_sym_cmd_identifier_token5] = ACTIONS(2144), - [aux_sym_cmd_identifier_token6] = ACTIONS(2144), - [aux_sym_cmd_identifier_token7] = ACTIONS(2144), - [aux_sym_cmd_identifier_token8] = ACTIONS(2144), - [aux_sym_cmd_identifier_token9] = ACTIONS(2144), - [aux_sym_cmd_identifier_token10] = ACTIONS(2144), - [aux_sym_cmd_identifier_token11] = ACTIONS(2144), - [aux_sym_cmd_identifier_token12] = ACTIONS(2144), - [aux_sym_cmd_identifier_token13] = ACTIONS(2144), - [aux_sym_cmd_identifier_token14] = ACTIONS(2144), - [aux_sym_cmd_identifier_token15] = ACTIONS(2144), - [aux_sym_cmd_identifier_token16] = ACTIONS(2144), - [aux_sym_cmd_identifier_token17] = ACTIONS(2144), - [aux_sym_cmd_identifier_token18] = ACTIONS(2144), - [aux_sym_cmd_identifier_token19] = ACTIONS(2144), - [aux_sym_cmd_identifier_token20] = ACTIONS(2144), - [aux_sym_cmd_identifier_token21] = ACTIONS(2144), - [aux_sym_cmd_identifier_token22] = ACTIONS(2144), - [aux_sym_cmd_identifier_token23] = ACTIONS(2144), - [aux_sym_cmd_identifier_token24] = ACTIONS(2144), - [aux_sym_cmd_identifier_token25] = ACTIONS(2144), - [aux_sym_cmd_identifier_token26] = ACTIONS(2144), - [aux_sym_cmd_identifier_token27] = ACTIONS(2144), - [aux_sym_cmd_identifier_token28] = ACTIONS(2144), - [aux_sym_cmd_identifier_token29] = ACTIONS(2144), - [aux_sym_cmd_identifier_token30] = ACTIONS(2144), - [aux_sym_cmd_identifier_token31] = ACTIONS(2144), - [aux_sym_cmd_identifier_token32] = ACTIONS(2144), - [aux_sym_cmd_identifier_token33] = ACTIONS(2144), - [aux_sym_cmd_identifier_token34] = ACTIONS(2144), - [aux_sym_cmd_identifier_token35] = ACTIONS(2144), - [aux_sym_cmd_identifier_token36] = ACTIONS(2144), - [aux_sym_cmd_identifier_token37] = ACTIONS(2144), - [aux_sym_cmd_identifier_token38] = ACTIONS(2144), - [aux_sym_cmd_identifier_token39] = ACTIONS(2144), - [aux_sym_cmd_identifier_token40] = ACTIONS(2144), - [anon_sym_def] = ACTIONS(2144), - [anon_sym_export_DASHenv] = ACTIONS(2144), - [anon_sym_extern] = ACTIONS(2144), - [anon_sym_module] = ACTIONS(2144), - [anon_sym_use] = ACTIONS(2144), - [anon_sym_LPAREN] = ACTIONS(2144), - [anon_sym_COMMA] = ACTIONS(2144), - [anon_sym_DOLLAR] = ACTIONS(2144), - [anon_sym_error] = ACTIONS(2144), - [anon_sym_DASH2] = ACTIONS(2144), - [anon_sym_break] = ACTIONS(2144), - [anon_sym_continue] = ACTIONS(2144), - [anon_sym_for] = ACTIONS(2144), - [anon_sym_in2] = ACTIONS(2144), - [anon_sym_loop] = ACTIONS(2144), - [anon_sym_make] = ACTIONS(2144), - [anon_sym_while] = ACTIONS(2144), - [anon_sym_do] = ACTIONS(2144), - [anon_sym_if] = ACTIONS(2144), - [anon_sym_else] = ACTIONS(2144), - [anon_sym_match] = ACTIONS(2144), - [anon_sym_RBRACE] = ACTIONS(2144), - [anon_sym_try] = ACTIONS(2144), - [anon_sym_catch] = ACTIONS(2144), - [anon_sym_return] = ACTIONS(2144), - [anon_sym_source] = ACTIONS(2144), - [anon_sym_source_DASHenv] = ACTIONS(2144), - [anon_sym_register] = ACTIONS(2144), - [anon_sym_hide] = ACTIONS(2144), - [anon_sym_hide_DASHenv] = ACTIONS(2144), - [anon_sym_overlay] = ACTIONS(2144), - [anon_sym_as] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(2138), - [anon_sym_PLUS2] = ACTIONS(2144), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2144), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2144), - [aux_sym__val_number_decimal_token1] = ACTIONS(2144), - [aux_sym__val_number_decimal_token2] = ACTIONS(2144), - [aux_sym__val_number_decimal_token3] = ACTIONS(2144), - [aux_sym__val_number_decimal_token4] = ACTIONS(2144), - [aux_sym__val_number_token1] = ACTIONS(2144), - [aux_sym__val_number_token2] = ACTIONS(2144), - [aux_sym__val_number_token3] = ACTIONS(2144), - [aux_sym__val_number_token4] = ACTIONS(2144), - [aux_sym__val_number_token5] = ACTIONS(2144), - [aux_sym__val_number_token6] = ACTIONS(2144), - [anon_sym_DQUOTE] = ACTIONS(2144), - [sym__str_single_quotes] = ACTIONS(2144), - [sym__str_back_ticks] = ACTIONS(2144), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2144), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2144), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2144), - [sym__entry_separator] = ACTIONS(2146), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2142), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2146), - }, - [502] = { - [sym_comment] = STATE(502), - [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(982), - [aux_sym_cmd_identifier_token3] = ACTIONS(982), - [aux_sym_cmd_identifier_token4] = ACTIONS(982), - [aux_sym_cmd_identifier_token5] = ACTIONS(982), - [aux_sym_cmd_identifier_token6] = ACTIONS(982), - [aux_sym_cmd_identifier_token7] = ACTIONS(982), - [aux_sym_cmd_identifier_token8] = ACTIONS(980), - [aux_sym_cmd_identifier_token9] = ACTIONS(980), - [aux_sym_cmd_identifier_token10] = ACTIONS(982), - [aux_sym_cmd_identifier_token11] = ACTIONS(982), - [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(982), - [aux_sym_cmd_identifier_token17] = ACTIONS(982), - [aux_sym_cmd_identifier_token18] = ACTIONS(982), - [aux_sym_cmd_identifier_token19] = ACTIONS(982), - [aux_sym_cmd_identifier_token20] = ACTIONS(982), - [aux_sym_cmd_identifier_token21] = ACTIONS(982), - [aux_sym_cmd_identifier_token22] = ACTIONS(982), - [aux_sym_cmd_identifier_token23] = ACTIONS(982), - [aux_sym_cmd_identifier_token24] = ACTIONS(982), - [aux_sym_cmd_identifier_token25] = ACTIONS(982), - [aux_sym_cmd_identifier_token26] = ACTIONS(982), - [aux_sym_cmd_identifier_token27] = ACTIONS(982), - [aux_sym_cmd_identifier_token28] = ACTIONS(982), - [aux_sym_cmd_identifier_token29] = ACTIONS(982), - [aux_sym_cmd_identifier_token30] = ACTIONS(982), - [aux_sym_cmd_identifier_token31] = ACTIONS(982), - [aux_sym_cmd_identifier_token32] = ACTIONS(982), - [aux_sym_cmd_identifier_token33] = ACTIONS(982), - [aux_sym_cmd_identifier_token34] = ACTIONS(980), - [aux_sym_cmd_identifier_token35] = ACTIONS(982), - [aux_sym_cmd_identifier_token36] = ACTIONS(982), - [aux_sym_cmd_identifier_token37] = 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(980), - [anon_sym_error] = ACTIONS(980), - [anon_sym_DASH2] = ACTIONS(980), - [anon_sym_break] = ACTIONS(980), - [anon_sym_continue] = ACTIONS(980), - [anon_sym_for] = ACTIONS(980), - [anon_sym_in2] = 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_as] = ACTIONS(980), - [anon_sym_QMARK2] = ACTIONS(982), - [anon_sym_PLUS2] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT_LPAREN] = 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), - [aux_sym__val_number_token4] = ACTIONS(980), - [aux_sym__val_number_token5] = ACTIONS(980), - [aux_sym__val_number_token6] = ACTIONS(980), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(982), - [anon_sym_COLON2] = ACTIONS(982), - [anon_sym_DOT2] = ACTIONS(980), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(982), - }, - [503] = { - [sym_comment] = STATE(503), - [anon_sym_export] = ACTIONS(2148), - [anon_sym_alias] = ACTIONS(2148), - [anon_sym_let] = ACTIONS(2148), - [anon_sym_let_DASHenv] = ACTIONS(2148), - [anon_sym_mut] = ACTIONS(2148), - [anon_sym_const] = ACTIONS(2148), - [aux_sym_cmd_identifier_token1] = ACTIONS(2148), - [aux_sym_cmd_identifier_token2] = ACTIONS(2148), - [aux_sym_cmd_identifier_token3] = ACTIONS(2148), - [aux_sym_cmd_identifier_token4] = ACTIONS(2148), - [aux_sym_cmd_identifier_token5] = ACTIONS(2148), - [aux_sym_cmd_identifier_token6] = ACTIONS(2148), - [aux_sym_cmd_identifier_token7] = ACTIONS(2148), - [aux_sym_cmd_identifier_token8] = ACTIONS(2148), - [aux_sym_cmd_identifier_token9] = ACTIONS(2148), - [aux_sym_cmd_identifier_token10] = ACTIONS(2148), - [aux_sym_cmd_identifier_token11] = ACTIONS(2148), - [aux_sym_cmd_identifier_token12] = ACTIONS(2148), - [aux_sym_cmd_identifier_token13] = ACTIONS(2148), - [aux_sym_cmd_identifier_token14] = ACTIONS(2148), - [aux_sym_cmd_identifier_token15] = ACTIONS(2148), - [aux_sym_cmd_identifier_token16] = ACTIONS(2148), - [aux_sym_cmd_identifier_token17] = ACTIONS(2148), - [aux_sym_cmd_identifier_token18] = ACTIONS(2148), - [aux_sym_cmd_identifier_token19] = ACTIONS(2148), - [aux_sym_cmd_identifier_token20] = ACTIONS(2148), - [aux_sym_cmd_identifier_token21] = ACTIONS(2148), - [aux_sym_cmd_identifier_token22] = ACTIONS(2148), - [aux_sym_cmd_identifier_token23] = ACTIONS(2148), - [aux_sym_cmd_identifier_token24] = ACTIONS(2148), - [aux_sym_cmd_identifier_token25] = ACTIONS(2148), - [aux_sym_cmd_identifier_token26] = ACTIONS(2148), - [aux_sym_cmd_identifier_token27] = ACTIONS(2148), - [aux_sym_cmd_identifier_token28] = ACTIONS(2148), - [aux_sym_cmd_identifier_token29] = ACTIONS(2148), - [aux_sym_cmd_identifier_token30] = ACTIONS(2148), - [aux_sym_cmd_identifier_token31] = ACTIONS(2148), - [aux_sym_cmd_identifier_token32] = ACTIONS(2148), - [aux_sym_cmd_identifier_token33] = ACTIONS(2148), - [aux_sym_cmd_identifier_token34] = ACTIONS(2148), - [aux_sym_cmd_identifier_token35] = ACTIONS(2148), - [aux_sym_cmd_identifier_token36] = ACTIONS(2148), - [aux_sym_cmd_identifier_token37] = ACTIONS(2148), - [aux_sym_cmd_identifier_token38] = ACTIONS(2148), - [aux_sym_cmd_identifier_token39] = ACTIONS(2148), - [aux_sym_cmd_identifier_token40] = ACTIONS(2148), - [anon_sym_def] = ACTIONS(2148), - [anon_sym_export_DASHenv] = ACTIONS(2148), - [anon_sym_extern] = ACTIONS(2148), - [anon_sym_module] = ACTIONS(2148), - [anon_sym_use] = ACTIONS(2148), - [anon_sym_LPAREN] = ACTIONS(2148), - [anon_sym_COMMA] = ACTIONS(2148), - [anon_sym_DOLLAR] = ACTIONS(2148), - [anon_sym_error] = ACTIONS(2148), - [anon_sym_DASH2] = ACTIONS(2148), - [anon_sym_break] = ACTIONS(2148), - [anon_sym_continue] = ACTIONS(2148), - [anon_sym_for] = ACTIONS(2148), - [anon_sym_in2] = ACTIONS(2148), - [anon_sym_loop] = ACTIONS(2148), - [anon_sym_make] = ACTIONS(2148), - [anon_sym_while] = ACTIONS(2148), - [anon_sym_do] = ACTIONS(2148), - [anon_sym_if] = ACTIONS(2148), - [anon_sym_else] = ACTIONS(2148), - [anon_sym_match] = ACTIONS(2148), - [anon_sym_RBRACE] = ACTIONS(2148), - [anon_sym_try] = ACTIONS(2148), - [anon_sym_catch] = ACTIONS(2148), - [anon_sym_return] = ACTIONS(2148), - [anon_sym_source] = ACTIONS(2148), - [anon_sym_source_DASHenv] = ACTIONS(2148), - [anon_sym_register] = ACTIONS(2148), - [anon_sym_hide] = ACTIONS(2148), - [anon_sym_hide_DASHenv] = ACTIONS(2148), - [anon_sym_overlay] = ACTIONS(2148), - [anon_sym_as] = ACTIONS(2148), - [anon_sym_LPAREN2] = ACTIONS(2150), - [anon_sym_PLUS2] = ACTIONS(2148), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2148), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2148), - [aux_sym__val_number_decimal_token1] = ACTIONS(2148), - [aux_sym__val_number_decimal_token2] = ACTIONS(2148), - [aux_sym__val_number_decimal_token3] = ACTIONS(2148), - [aux_sym__val_number_decimal_token4] = ACTIONS(2148), - [aux_sym__val_number_token1] = ACTIONS(2148), - [aux_sym__val_number_token2] = ACTIONS(2148), - [aux_sym__val_number_token3] = ACTIONS(2148), - [aux_sym__val_number_token4] = ACTIONS(2148), - [aux_sym__val_number_token5] = ACTIONS(2148), - [aux_sym__val_number_token6] = ACTIONS(2148), - [anon_sym_DQUOTE] = ACTIONS(2148), - [sym__str_single_quotes] = ACTIONS(2148), - [sym__str_back_ticks] = ACTIONS(2148), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2148), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2148), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2148), - [sym__entry_separator] = ACTIONS(2150), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2148), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2150), - }, - [504] = { - [sym_comment] = STATE(504), - [anon_sym_export] = ACTIONS(1000), - [anon_sym_alias] = ACTIONS(1000), - [anon_sym_let] = ACTIONS(1000), - [anon_sym_let_DASHenv] = ACTIONS(1000), - [anon_sym_mut] = ACTIONS(1000), - [anon_sym_const] = ACTIONS(1000), - [aux_sym_cmd_identifier_token1] = ACTIONS(1000), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [aux_sym_cmd_identifier_token1] = ACTIONS(1002), [aux_sym_cmd_identifier_token2] = ACTIONS(1002), [aux_sym_cmd_identifier_token3] = ACTIONS(1002), [aux_sym_cmd_identifier_token4] = ACTIONS(1002), [aux_sym_cmd_identifier_token5] = ACTIONS(1002), [aux_sym_cmd_identifier_token6] = ACTIONS(1002), [aux_sym_cmd_identifier_token7] = ACTIONS(1002), - [aux_sym_cmd_identifier_token8] = ACTIONS(1000), - [aux_sym_cmd_identifier_token9] = ACTIONS(1000), + [aux_sym_cmd_identifier_token8] = ACTIONS(1002), + [aux_sym_cmd_identifier_token9] = ACTIONS(1002), [aux_sym_cmd_identifier_token10] = ACTIONS(1002), [aux_sym_cmd_identifier_token11] = ACTIONS(1002), - [aux_sym_cmd_identifier_token12] = ACTIONS(1000), - [aux_sym_cmd_identifier_token13] = ACTIONS(1000), - [aux_sym_cmd_identifier_token14] = ACTIONS(1000), - [aux_sym_cmd_identifier_token15] = ACTIONS(1000), + [aux_sym_cmd_identifier_token12] = ACTIONS(1002), + [aux_sym_cmd_identifier_token13] = ACTIONS(1002), + [aux_sym_cmd_identifier_token14] = ACTIONS(1002), + [aux_sym_cmd_identifier_token15] = ACTIONS(1002), [aux_sym_cmd_identifier_token16] = ACTIONS(1002), [aux_sym_cmd_identifier_token17] = ACTIONS(1002), [aux_sym_cmd_identifier_token18] = ACTIONS(1002), @@ -136891,513 +135460,1251 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(1002), [aux_sym_cmd_identifier_token32] = ACTIONS(1002), [aux_sym_cmd_identifier_token33] = ACTIONS(1002), - [aux_sym_cmd_identifier_token34] = ACTIONS(1000), + [aux_sym_cmd_identifier_token34] = ACTIONS(1002), [aux_sym_cmd_identifier_token35] = ACTIONS(1002), [aux_sym_cmd_identifier_token36] = ACTIONS(1002), [aux_sym_cmd_identifier_token37] = ACTIONS(1002), - [aux_sym_cmd_identifier_token38] = ACTIONS(1000), + [aux_sym_cmd_identifier_token38] = ACTIONS(1002), [aux_sym_cmd_identifier_token39] = ACTIONS(1002), [aux_sym_cmd_identifier_token40] = ACTIONS(1002), - [anon_sym_def] = ACTIONS(1000), - [anon_sym_export_DASHenv] = ACTIONS(1000), - [anon_sym_extern] = ACTIONS(1000), - [anon_sym_module] = ACTIONS(1000), - [anon_sym_use] = ACTIONS(1000), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), [anon_sym_LPAREN] = ACTIONS(1002), [anon_sym_COMMA] = ACTIONS(1002), - [anon_sym_DOLLAR] = ACTIONS(1000), - [anon_sym_error] = ACTIONS(1000), - [anon_sym_DASH2] = ACTIONS(1000), - [anon_sym_break] = ACTIONS(1000), - [anon_sym_continue] = ACTIONS(1000), - [anon_sym_for] = ACTIONS(1000), - [anon_sym_in2] = ACTIONS(1000), - [anon_sym_loop] = ACTIONS(1000), - [anon_sym_make] = ACTIONS(1000), - [anon_sym_while] = ACTIONS(1000), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_if] = ACTIONS(1000), - [anon_sym_else] = ACTIONS(1000), - [anon_sym_match] = ACTIONS(1000), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in2] = ACTIONS(1002), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_make] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_else] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), [anon_sym_RBRACE] = ACTIONS(1002), - [anon_sym_try] = ACTIONS(1000), - [anon_sym_catch] = ACTIONS(1000), - [anon_sym_return] = ACTIONS(1000), - [anon_sym_source] = ACTIONS(1000), - [anon_sym_source_DASHenv] = ACTIONS(1000), - [anon_sym_register] = ACTIONS(1000), - [anon_sym_hide] = ACTIONS(1000), - [anon_sym_hide_DASHenv] = ACTIONS(1000), - [anon_sym_overlay] = ACTIONS(1000), - [anon_sym_as] = ACTIONS(1000), - [anon_sym_PLUS2] = ACTIONS(1000), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_catch] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_as] = ACTIONS(1002), + [anon_sym_PLUS2] = ACTIONS(1002), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1002), - [anon_sym_DOT_DOT2] = ACTIONS(1000), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1002), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1002), + [anon_sym_DOT_DOT2] = ACTIONS(2002), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2004), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1002), - [aux_sym__val_number_decimal_token1] = ACTIONS(1000), + [aux_sym__val_number_decimal_token1] = ACTIONS(1002), [aux_sym__val_number_decimal_token2] = ACTIONS(1002), [aux_sym__val_number_decimal_token3] = ACTIONS(1002), [aux_sym__val_number_decimal_token4] = ACTIONS(1002), [aux_sym__val_number_token1] = ACTIONS(1002), [aux_sym__val_number_token2] = ACTIONS(1002), [aux_sym__val_number_token3] = ACTIONS(1002), - [aux_sym__val_number_token4] = ACTIONS(1000), - [aux_sym__val_number_token5] = ACTIONS(1000), - [aux_sym__val_number_token6] = ACTIONS(1000), + [aux_sym__val_number_token4] = ACTIONS(1002), + [aux_sym__val_number_token5] = ACTIONS(1002), + [aux_sym__val_number_token6] = ACTIONS(1002), [anon_sym_DQUOTE] = ACTIONS(1002), [sym__str_single_quotes] = ACTIONS(1002), [sym__str_back_ticks] = ACTIONS(1002), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1002), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1002), - }, - [505] = { - [sym_comment] = STATE(505), - [anon_sym_export] = ACTIONS(972), - [anon_sym_alias] = ACTIONS(972), - [anon_sym_let] = ACTIONS(972), - [anon_sym_let_DASHenv] = ACTIONS(972), - [anon_sym_mut] = ACTIONS(972), - [anon_sym_const] = ACTIONS(972), - [aux_sym_cmd_identifier_token1] = ACTIONS(972), - [aux_sym_cmd_identifier_token2] = ACTIONS(972), - [aux_sym_cmd_identifier_token3] = ACTIONS(972), - [aux_sym_cmd_identifier_token4] = ACTIONS(972), - [aux_sym_cmd_identifier_token5] = ACTIONS(972), - [aux_sym_cmd_identifier_token6] = ACTIONS(972), - [aux_sym_cmd_identifier_token7] = ACTIONS(972), - [aux_sym_cmd_identifier_token8] = ACTIONS(972), - [aux_sym_cmd_identifier_token9] = ACTIONS(972), - [aux_sym_cmd_identifier_token10] = ACTIONS(972), - [aux_sym_cmd_identifier_token11] = ACTIONS(972), - [aux_sym_cmd_identifier_token12] = ACTIONS(972), - [aux_sym_cmd_identifier_token13] = ACTIONS(972), - [aux_sym_cmd_identifier_token14] = ACTIONS(972), - [aux_sym_cmd_identifier_token15] = ACTIONS(972), - [aux_sym_cmd_identifier_token16] = ACTIONS(972), - [aux_sym_cmd_identifier_token17] = ACTIONS(972), - [aux_sym_cmd_identifier_token18] = ACTIONS(972), - [aux_sym_cmd_identifier_token19] = ACTIONS(972), - [aux_sym_cmd_identifier_token20] = ACTIONS(972), - [aux_sym_cmd_identifier_token21] = ACTIONS(972), - [aux_sym_cmd_identifier_token22] = ACTIONS(972), - [aux_sym_cmd_identifier_token23] = ACTIONS(972), - [aux_sym_cmd_identifier_token24] = ACTIONS(972), - [aux_sym_cmd_identifier_token25] = ACTIONS(972), - [aux_sym_cmd_identifier_token26] = ACTIONS(972), - [aux_sym_cmd_identifier_token27] = ACTIONS(972), - [aux_sym_cmd_identifier_token28] = ACTIONS(972), - [aux_sym_cmd_identifier_token29] = ACTIONS(972), - [aux_sym_cmd_identifier_token30] = ACTIONS(972), - [aux_sym_cmd_identifier_token31] = ACTIONS(972), - [aux_sym_cmd_identifier_token32] = ACTIONS(972), - [aux_sym_cmd_identifier_token33] = ACTIONS(972), - [aux_sym_cmd_identifier_token34] = ACTIONS(972), - [aux_sym_cmd_identifier_token35] = ACTIONS(972), - [aux_sym_cmd_identifier_token36] = ACTIONS(972), - [aux_sym_cmd_identifier_token37] = ACTIONS(972), - [aux_sym_cmd_identifier_token38] = ACTIONS(972), - [aux_sym_cmd_identifier_token39] = ACTIONS(972), - [aux_sym_cmd_identifier_token40] = ACTIONS(972), - [anon_sym_def] = ACTIONS(972), - [anon_sym_export_DASHenv] = ACTIONS(972), - [anon_sym_extern] = ACTIONS(972), - [anon_sym_module] = ACTIONS(972), - [anon_sym_use] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(972), - [anon_sym_COMMA] = ACTIONS(972), - [anon_sym_DOLLAR] = ACTIONS(972), - [anon_sym_error] = ACTIONS(972), - [anon_sym_DASH2] = ACTIONS(972), - [anon_sym_break] = ACTIONS(972), - [anon_sym_continue] = ACTIONS(972), - [anon_sym_for] = ACTIONS(972), - [anon_sym_in2] = ACTIONS(972), - [anon_sym_loop] = ACTIONS(972), - [anon_sym_make] = ACTIONS(972), - [anon_sym_while] = ACTIONS(972), - [anon_sym_do] = ACTIONS(972), - [anon_sym_if] = ACTIONS(972), - [anon_sym_else] = ACTIONS(972), - [anon_sym_match] = ACTIONS(972), - [anon_sym_RBRACE] = ACTIONS(972), - [anon_sym_try] = ACTIONS(972), - [anon_sym_catch] = ACTIONS(972), - [anon_sym_return] = ACTIONS(972), - [anon_sym_source] = ACTIONS(972), - [anon_sym_source_DASHenv] = ACTIONS(972), - [anon_sym_register] = ACTIONS(972), - [anon_sym_hide] = ACTIONS(972), - [anon_sym_hide_DASHenv] = ACTIONS(972), - [anon_sym_overlay] = ACTIONS(972), - [anon_sym_as] = ACTIONS(972), - [anon_sym_QMARK2] = ACTIONS(972), - [anon_sym_PLUS2] = ACTIONS(972), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(972), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(972), - [aux_sym__val_number_decimal_token1] = ACTIONS(972), - [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), - [aux_sym__val_number_token4] = ACTIONS(972), - [aux_sym__val_number_token5] = ACTIONS(972), - [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(972), - [sym__entry_separator] = ACTIONS(974), - [anon_sym_DOT2] = ACTIONS(972), + [sym__entry_separator] = ACTIONS(998), + [anon_sym_register] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(974), + [sym_raw_string_begin] = ACTIONS(998), }, - [506] = { - [sym_comment] = STATE(506), - [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), - [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(976), - [anon_sym_DOLLAR] = ACTIONS(976), - [anon_sym_error] = ACTIONS(976), - [anon_sym_DASH2] = ACTIONS(976), - [anon_sym_break] = ACTIONS(976), - [anon_sym_continue] = ACTIONS(976), - [anon_sym_for] = ACTIONS(976), - [anon_sym_in2] = 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_as] = ACTIONS(976), - [anon_sym_QMARK2] = ACTIONS(976), - [anon_sym_PLUS2] = 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), - [aux_sym__val_number_token4] = ACTIONS(976), - [aux_sym__val_number_token5] = ACTIONS(976), - [aux_sym__val_number_token6] = ACTIONS(976), - [anon_sym_DQUOTE] = ACTIONS(976), - [sym__str_single_quotes] = ACTIONS(976), - [sym__str_back_ticks] = ACTIONS(976), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(976), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(976), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(976), - [sym__entry_separator] = ACTIONS(978), - [anon_sym_DOT2] = ACTIONS(976), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(978), + [492] = { + [sym_cell_path] = STATE(726), + [sym_path] = STATE(565), + [sym_comment] = STATE(492), + [aux_sym_cell_path_repeat1] = STATE(484), + [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(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1933), + [aux_sym_cmd_identifier_token4] = ACTIONS(1933), + [aux_sym_cmd_identifier_token5] = ACTIONS(1933), + [aux_sym_cmd_identifier_token6] = ACTIONS(1933), + [aux_sym_cmd_identifier_token7] = ACTIONS(1933), + [aux_sym_cmd_identifier_token8] = ACTIONS(1931), + [aux_sym_cmd_identifier_token9] = ACTIONS(1931), + [aux_sym_cmd_identifier_token10] = ACTIONS(1933), + [aux_sym_cmd_identifier_token11] = ACTIONS(1933), + [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(1933), + [aux_sym_cmd_identifier_token17] = ACTIONS(1933), + [aux_sym_cmd_identifier_token18] = ACTIONS(1933), + [aux_sym_cmd_identifier_token19] = ACTIONS(1933), + [aux_sym_cmd_identifier_token20] = ACTIONS(1933), + [aux_sym_cmd_identifier_token21] = ACTIONS(1933), + [aux_sym_cmd_identifier_token22] = ACTIONS(1933), + [aux_sym_cmd_identifier_token23] = ACTIONS(1933), + [aux_sym_cmd_identifier_token24] = ACTIONS(1933), + [aux_sym_cmd_identifier_token25] = ACTIONS(1933), + [aux_sym_cmd_identifier_token26] = ACTIONS(1933), + [aux_sym_cmd_identifier_token27] = ACTIONS(1933), + [aux_sym_cmd_identifier_token28] = ACTIONS(1933), + [aux_sym_cmd_identifier_token29] = ACTIONS(1933), + [aux_sym_cmd_identifier_token30] = ACTIONS(1933), + [aux_sym_cmd_identifier_token31] = ACTIONS(1933), + [aux_sym_cmd_identifier_token32] = ACTIONS(1933), + [aux_sym_cmd_identifier_token33] = ACTIONS(1933), + [aux_sym_cmd_identifier_token34] = ACTIONS(1931), + [aux_sym_cmd_identifier_token35] = ACTIONS(1933), + [aux_sym_cmd_identifier_token36] = ACTIONS(1933), + [aux_sym_cmd_identifier_token37] = ACTIONS(1933), + [aux_sym_cmd_identifier_token38] = ACTIONS(1931), + [aux_sym_cmd_identifier_token39] = ACTIONS(1933), + [aux_sym_cmd_identifier_token40] = ACTIONS(1933), + [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(1933), + [anon_sym_COMMA] = ACTIONS(1933), + [anon_sym_DOLLAR] = ACTIONS(1931), + [anon_sym_error] = ACTIONS(1931), + [anon_sym_DASH2] = ACTIONS(1931), + [anon_sym_break] = ACTIONS(1931), + [anon_sym_continue] = ACTIONS(1931), + [anon_sym_for] = ACTIONS(1931), + [anon_sym_in2] = 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(1933), + [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_hide] = ACTIONS(1931), + [anon_sym_hide_DASHenv] = ACTIONS(1931), + [anon_sym_overlay] = ACTIONS(1931), + [anon_sym_as] = ACTIONS(1931), + [anon_sym_PLUS2] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1933), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1931), + [aux_sym__val_number_decimal_token2] = ACTIONS(1933), + [aux_sym__val_number_decimal_token3] = ACTIONS(1933), + [aux_sym__val_number_decimal_token4] = ACTIONS(1933), + [aux_sym__val_number_token1] = ACTIONS(1933), + [aux_sym__val_number_token2] = ACTIONS(1933), + [aux_sym__val_number_token3] = ACTIONS(1933), + [aux_sym__val_number_token4] = ACTIONS(1931), + [aux_sym__val_number_token5] = ACTIONS(1931), + [aux_sym__val_number_token6] = ACTIONS(1931), + [anon_sym_DQUOTE] = ACTIONS(1933), + [sym__str_single_quotes] = ACTIONS(1933), + [sym__str_back_ticks] = ACTIONS(1933), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1933), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1933), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1933), + [anon_sym_register] = ACTIONS(1931), + [anon_sym_DOT2] = ACTIONS(1921), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1933), }, - [507] = { - [sym_comment] = STATE(507), - [anon_sym_export] = ACTIONS(984), - [anon_sym_alias] = ACTIONS(984), - [anon_sym_let] = ACTIONS(984), - [anon_sym_let_DASHenv] = ACTIONS(984), - [anon_sym_mut] = ACTIONS(984), - [anon_sym_const] = ACTIONS(984), - [aux_sym_cmd_identifier_token1] = ACTIONS(984), - [aux_sym_cmd_identifier_token2] = ACTIONS(984), - [aux_sym_cmd_identifier_token3] = ACTIONS(984), - [aux_sym_cmd_identifier_token4] = ACTIONS(984), - [aux_sym_cmd_identifier_token5] = ACTIONS(984), - [aux_sym_cmd_identifier_token6] = ACTIONS(984), - [aux_sym_cmd_identifier_token7] = ACTIONS(984), - [aux_sym_cmd_identifier_token8] = ACTIONS(984), - [aux_sym_cmd_identifier_token9] = ACTIONS(984), - [aux_sym_cmd_identifier_token10] = ACTIONS(984), - [aux_sym_cmd_identifier_token11] = ACTIONS(984), - [aux_sym_cmd_identifier_token12] = ACTIONS(984), - [aux_sym_cmd_identifier_token13] = ACTIONS(984), - [aux_sym_cmd_identifier_token14] = ACTIONS(984), - [aux_sym_cmd_identifier_token15] = ACTIONS(984), - [aux_sym_cmd_identifier_token16] = ACTIONS(984), - [aux_sym_cmd_identifier_token17] = ACTIONS(984), - [aux_sym_cmd_identifier_token18] = ACTIONS(984), - [aux_sym_cmd_identifier_token19] = ACTIONS(984), - [aux_sym_cmd_identifier_token20] = ACTIONS(984), - [aux_sym_cmd_identifier_token21] = ACTIONS(984), - [aux_sym_cmd_identifier_token22] = ACTIONS(984), - [aux_sym_cmd_identifier_token23] = ACTIONS(984), - [aux_sym_cmd_identifier_token24] = ACTIONS(984), - [aux_sym_cmd_identifier_token25] = ACTIONS(984), - [aux_sym_cmd_identifier_token26] = ACTIONS(984), - [aux_sym_cmd_identifier_token27] = ACTIONS(984), - [aux_sym_cmd_identifier_token28] = ACTIONS(984), - [aux_sym_cmd_identifier_token29] = ACTIONS(984), - [aux_sym_cmd_identifier_token30] = ACTIONS(984), - [aux_sym_cmd_identifier_token31] = ACTIONS(984), - [aux_sym_cmd_identifier_token32] = ACTIONS(984), - [aux_sym_cmd_identifier_token33] = ACTIONS(984), - [aux_sym_cmd_identifier_token34] = ACTIONS(984), - [aux_sym_cmd_identifier_token35] = ACTIONS(984), - [aux_sym_cmd_identifier_token36] = ACTIONS(984), - [aux_sym_cmd_identifier_token37] = ACTIONS(984), - [aux_sym_cmd_identifier_token38] = ACTIONS(984), - [aux_sym_cmd_identifier_token39] = ACTIONS(984), - [aux_sym_cmd_identifier_token40] = ACTIONS(984), - [anon_sym_def] = ACTIONS(984), - [anon_sym_export_DASHenv] = ACTIONS(984), - [anon_sym_extern] = ACTIONS(984), - [anon_sym_module] = ACTIONS(984), - [anon_sym_use] = ACTIONS(984), - [anon_sym_LPAREN] = ACTIONS(984), - [anon_sym_COMMA] = ACTIONS(984), - [anon_sym_DOLLAR] = ACTIONS(984), - [anon_sym_error] = ACTIONS(984), - [anon_sym_DASH2] = ACTIONS(984), - [anon_sym_break] = ACTIONS(984), - [anon_sym_continue] = ACTIONS(984), - [anon_sym_for] = ACTIONS(984), - [anon_sym_in2] = ACTIONS(984), - [anon_sym_loop] = ACTIONS(984), - [anon_sym_make] = ACTIONS(984), - [anon_sym_while] = ACTIONS(984), - [anon_sym_do] = ACTIONS(984), - [anon_sym_if] = ACTIONS(984), - [anon_sym_else] = ACTIONS(984), - [anon_sym_match] = ACTIONS(984), - [anon_sym_RBRACE] = ACTIONS(984), - [anon_sym_try] = ACTIONS(984), - [anon_sym_catch] = ACTIONS(984), - [anon_sym_return] = ACTIONS(984), - [anon_sym_source] = ACTIONS(984), - [anon_sym_source_DASHenv] = ACTIONS(984), - [anon_sym_register] = ACTIONS(984), - [anon_sym_hide] = ACTIONS(984), - [anon_sym_hide_DASHenv] = ACTIONS(984), - [anon_sym_overlay] = ACTIONS(984), - [anon_sym_as] = ACTIONS(984), - [anon_sym_QMARK2] = ACTIONS(984), - [anon_sym_PLUS2] = ACTIONS(984), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(984), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(984), - [aux_sym__val_number_decimal_token1] = ACTIONS(984), - [aux_sym__val_number_decimal_token2] = ACTIONS(984), - [aux_sym__val_number_decimal_token3] = ACTIONS(984), - [aux_sym__val_number_decimal_token4] = ACTIONS(984), - [aux_sym__val_number_token1] = ACTIONS(984), - [aux_sym__val_number_token2] = ACTIONS(984), - [aux_sym__val_number_token3] = ACTIONS(984), - [aux_sym__val_number_token4] = ACTIONS(984), - [aux_sym__val_number_token5] = ACTIONS(984), - [aux_sym__val_number_token6] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(984), - [sym__str_single_quotes] = ACTIONS(984), - [sym__str_back_ticks] = ACTIONS(984), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(984), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(984), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(984), - [sym__entry_separator] = ACTIONS(986), - [anon_sym_DOT2] = ACTIONS(984), + [493] = { + [sym_cell_path] = STATE(749), + [sym_path] = STATE(565), + [sym_comment] = STATE(493), + [aux_sym_cell_path_repeat1] = STATE(484), + [anon_sym_export] = ACTIONS(1869), + [anon_sym_alias] = ACTIONS(1869), + [anon_sym_let] = ACTIONS(1869), + [anon_sym_let_DASHenv] = ACTIONS(1869), + [anon_sym_mut] = ACTIONS(1869), + [anon_sym_const] = ACTIONS(1869), + [aux_sym_cmd_identifier_token1] = ACTIONS(1869), + [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(1869), + [aux_sym_cmd_identifier_token9] = ACTIONS(1869), + [aux_sym_cmd_identifier_token10] = ACTIONS(1871), + [aux_sym_cmd_identifier_token11] = ACTIONS(1871), + [aux_sym_cmd_identifier_token12] = ACTIONS(1869), + [aux_sym_cmd_identifier_token13] = ACTIONS(1869), + [aux_sym_cmd_identifier_token14] = ACTIONS(1869), + [aux_sym_cmd_identifier_token15] = ACTIONS(1869), + [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(1869), + [aux_sym_cmd_identifier_token35] = ACTIONS(1871), + [aux_sym_cmd_identifier_token36] = ACTIONS(1871), + [aux_sym_cmd_identifier_token37] = ACTIONS(1871), + [aux_sym_cmd_identifier_token38] = ACTIONS(1869), + [aux_sym_cmd_identifier_token39] = ACTIONS(1871), + [aux_sym_cmd_identifier_token40] = ACTIONS(1871), + [anon_sym_def] = ACTIONS(1869), + [anon_sym_export_DASHenv] = ACTIONS(1869), + [anon_sym_extern] = ACTIONS(1869), + [anon_sym_module] = ACTIONS(1869), + [anon_sym_use] = ACTIONS(1869), + [anon_sym_LPAREN] = ACTIONS(1871), + [anon_sym_COMMA] = ACTIONS(1871), + [anon_sym_DOLLAR] = ACTIONS(1869), + [anon_sym_error] = ACTIONS(1869), + [anon_sym_DASH2] = ACTIONS(1869), + [anon_sym_break] = ACTIONS(1869), + [anon_sym_continue] = ACTIONS(1869), + [anon_sym_for] = ACTIONS(1869), + [anon_sym_in2] = ACTIONS(1869), + [anon_sym_loop] = ACTIONS(1869), + [anon_sym_make] = ACTIONS(1869), + [anon_sym_while] = ACTIONS(1869), + [anon_sym_do] = ACTIONS(1869), + [anon_sym_if] = ACTIONS(1869), + [anon_sym_else] = ACTIONS(1869), + [anon_sym_match] = ACTIONS(1869), + [anon_sym_RBRACE] = ACTIONS(1871), + [anon_sym_try] = ACTIONS(1869), + [anon_sym_catch] = ACTIONS(1869), + [anon_sym_return] = ACTIONS(1869), + [anon_sym_source] = ACTIONS(1869), + [anon_sym_source_DASHenv] = ACTIONS(1869), + [anon_sym_hide] = ACTIONS(1869), + [anon_sym_hide_DASHenv] = ACTIONS(1869), + [anon_sym_overlay] = ACTIONS(1869), + [anon_sym_as] = ACTIONS(1869), + [anon_sym_PLUS2] = ACTIONS(1869), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1871), + [aux_sym__val_number_decimal_token1] = ACTIONS(1869), + [aux_sym__val_number_decimal_token2] = 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), + [aux_sym__val_number_token4] = ACTIONS(1869), + [aux_sym__val_number_token5] = ACTIONS(1869), + [aux_sym__val_number_token6] = ACTIONS(1869), + [anon_sym_DQUOTE] = ACTIONS(1871), + [sym__str_single_quotes] = ACTIONS(1871), + [sym__str_back_ticks] = ACTIONS(1871), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1871), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1871), + [anon_sym_register] = ACTIONS(1869), + [anon_sym_DOT2] = ACTIONS(1921), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1871), + }, + [494] = { + [sym_comment] = STATE(494), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [aux_sym_cmd_identifier_token1] = ACTIONS(1002), + [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(1002), + [aux_sym_cmd_identifier_token9] = ACTIONS(1002), + [aux_sym_cmd_identifier_token10] = ACTIONS(998), + [aux_sym_cmd_identifier_token11] = ACTIONS(998), + [aux_sym_cmd_identifier_token12] = ACTIONS(1002), + [aux_sym_cmd_identifier_token13] = ACTIONS(1002), + [aux_sym_cmd_identifier_token14] = ACTIONS(1002), + [aux_sym_cmd_identifier_token15] = ACTIONS(1002), + [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(1002), + [aux_sym_cmd_identifier_token35] = ACTIONS(998), + [aux_sym_cmd_identifier_token36] = ACTIONS(998), + [aux_sym_cmd_identifier_token37] = ACTIONS(998), + [aux_sym_cmd_identifier_token38] = ACTIONS(1002), + [aux_sym_cmd_identifier_token39] = ACTIONS(998), + [aux_sym_cmd_identifier_token40] = ACTIONS(998), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_COMMA] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in2] = ACTIONS(1002), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_make] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_else] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(998), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_catch] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_as] = ACTIONS(1002), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(998), + [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(998), + [aux_sym__val_number_decimal_token1] = ACTIONS(1002), + [aux_sym__val_number_decimal_token2] = ACTIONS(998), + [aux_sym__val_number_decimal_token3] = ACTIONS(998), + [aux_sym__val_number_decimal_token4] = ACTIONS(998), + [aux_sym__val_number_token1] = ACTIONS(998), + [aux_sym__val_number_token2] = ACTIONS(998), + [aux_sym__val_number_token3] = ACTIONS(998), + [aux_sym__val_number_token4] = ACTIONS(1002), + [aux_sym__val_number_token5] = ACTIONS(1002), + [aux_sym__val_number_token6] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym__str_single_quotes] = ACTIONS(998), + [sym__str_back_ticks] = ACTIONS(998), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(998), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(998), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(998), + }, + [495] = { + [sym_comment] = STATE(495), + [anon_sym_export] = ACTIONS(950), + [anon_sym_alias] = ACTIONS(950), + [anon_sym_let] = ACTIONS(950), + [anon_sym_let_DASHenv] = ACTIONS(950), + [anon_sym_mut] = ACTIONS(950), + [anon_sym_const] = ACTIONS(950), + [aux_sym_cmd_identifier_token1] = ACTIONS(950), + [aux_sym_cmd_identifier_token2] = ACTIONS(952), + [aux_sym_cmd_identifier_token3] = ACTIONS(952), + [aux_sym_cmd_identifier_token4] = ACTIONS(952), + [aux_sym_cmd_identifier_token5] = ACTIONS(952), + [aux_sym_cmd_identifier_token6] = ACTIONS(952), + [aux_sym_cmd_identifier_token7] = ACTIONS(952), + [aux_sym_cmd_identifier_token8] = ACTIONS(950), + [aux_sym_cmd_identifier_token9] = ACTIONS(950), + [aux_sym_cmd_identifier_token10] = ACTIONS(952), + [aux_sym_cmd_identifier_token11] = ACTIONS(952), + [aux_sym_cmd_identifier_token12] = ACTIONS(950), + [aux_sym_cmd_identifier_token13] = ACTIONS(950), + [aux_sym_cmd_identifier_token14] = ACTIONS(950), + [aux_sym_cmd_identifier_token15] = ACTIONS(950), + [aux_sym_cmd_identifier_token16] = ACTIONS(952), + [aux_sym_cmd_identifier_token17] = ACTIONS(952), + [aux_sym_cmd_identifier_token18] = ACTIONS(952), + [aux_sym_cmd_identifier_token19] = ACTIONS(952), + [aux_sym_cmd_identifier_token20] = ACTIONS(952), + [aux_sym_cmd_identifier_token21] = ACTIONS(952), + [aux_sym_cmd_identifier_token22] = ACTIONS(952), + [aux_sym_cmd_identifier_token23] = ACTIONS(952), + [aux_sym_cmd_identifier_token24] = ACTIONS(952), + [aux_sym_cmd_identifier_token25] = ACTIONS(952), + [aux_sym_cmd_identifier_token26] = ACTIONS(952), + [aux_sym_cmd_identifier_token27] = ACTIONS(952), + [aux_sym_cmd_identifier_token28] = ACTIONS(952), + [aux_sym_cmd_identifier_token29] = ACTIONS(952), + [aux_sym_cmd_identifier_token30] = ACTIONS(952), + [aux_sym_cmd_identifier_token31] = ACTIONS(952), + [aux_sym_cmd_identifier_token32] = ACTIONS(952), + [aux_sym_cmd_identifier_token33] = ACTIONS(952), + [aux_sym_cmd_identifier_token34] = ACTIONS(950), + [aux_sym_cmd_identifier_token35] = ACTIONS(952), + [aux_sym_cmd_identifier_token36] = ACTIONS(952), + [aux_sym_cmd_identifier_token37] = ACTIONS(952), + [aux_sym_cmd_identifier_token38] = ACTIONS(950), + [aux_sym_cmd_identifier_token39] = ACTIONS(952), + [aux_sym_cmd_identifier_token40] = ACTIONS(952), + [anon_sym_def] = ACTIONS(950), + [anon_sym_export_DASHenv] = ACTIONS(950), + [anon_sym_extern] = ACTIONS(950), + [anon_sym_module] = ACTIONS(950), + [anon_sym_use] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(952), + [anon_sym_COMMA] = ACTIONS(952), + [anon_sym_DOLLAR] = ACTIONS(950), + [anon_sym_error] = ACTIONS(950), + [anon_sym_DASH2] = ACTIONS(950), + [anon_sym_break] = ACTIONS(950), + [anon_sym_continue] = ACTIONS(950), + [anon_sym_for] = ACTIONS(950), + [anon_sym_in2] = ACTIONS(950), + [anon_sym_loop] = ACTIONS(950), + [anon_sym_make] = ACTIONS(950), + [anon_sym_while] = ACTIONS(950), + [anon_sym_do] = ACTIONS(950), + [anon_sym_if] = ACTIONS(950), + [anon_sym_else] = ACTIONS(950), + [anon_sym_match] = ACTIONS(950), + [anon_sym_RBRACE] = ACTIONS(952), + [anon_sym_try] = ACTIONS(950), + [anon_sym_catch] = ACTIONS(950), + [anon_sym_return] = ACTIONS(950), + [anon_sym_source] = ACTIONS(950), + [anon_sym_source_DASHenv] = ACTIONS(950), + [anon_sym_hide] = ACTIONS(950), + [anon_sym_hide_DASHenv] = ACTIONS(950), + [anon_sym_overlay] = ACTIONS(950), + [anon_sym_as] = ACTIONS(950), + [anon_sym_QMARK2] = ACTIONS(2055), + [anon_sym_PLUS2] = ACTIONS(950), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(952), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(952), + [aux_sym__val_number_decimal_token1] = ACTIONS(950), + [aux_sym__val_number_decimal_token2] = ACTIONS(952), + [aux_sym__val_number_decimal_token3] = ACTIONS(952), + [aux_sym__val_number_decimal_token4] = ACTIONS(952), + [aux_sym__val_number_token1] = ACTIONS(952), + [aux_sym__val_number_token2] = ACTIONS(952), + [aux_sym__val_number_token3] = ACTIONS(952), + [aux_sym__val_number_token4] = ACTIONS(950), + [aux_sym__val_number_token5] = ACTIONS(950), + [aux_sym__val_number_token6] = ACTIONS(950), + [anon_sym_DQUOTE] = ACTIONS(952), + [sym__str_single_quotes] = ACTIONS(952), + [sym__str_back_ticks] = ACTIONS(952), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(952), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(952), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(952), + [anon_sym_register] = ACTIONS(950), + [anon_sym_COLON2] = ACTIONS(952), + [anon_sym_DOT2] = ACTIONS(950), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(952), + }, + [496] = { + [sym_comment] = STATE(496), + [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(988), + [aux_sym_cmd_identifier_token3] = ACTIONS(988), + [aux_sym_cmd_identifier_token4] = ACTIONS(988), + [aux_sym_cmd_identifier_token5] = ACTIONS(988), + [aux_sym_cmd_identifier_token6] = ACTIONS(988), + [aux_sym_cmd_identifier_token7] = ACTIONS(988), + [aux_sym_cmd_identifier_token8] = ACTIONS(986), + [aux_sym_cmd_identifier_token9] = ACTIONS(986), + [aux_sym_cmd_identifier_token10] = ACTIONS(988), + [aux_sym_cmd_identifier_token11] = ACTIONS(988), + [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(988), + [aux_sym_cmd_identifier_token17] = ACTIONS(988), + [aux_sym_cmd_identifier_token18] = ACTIONS(988), + [aux_sym_cmd_identifier_token19] = ACTIONS(988), + [aux_sym_cmd_identifier_token20] = ACTIONS(988), + [aux_sym_cmd_identifier_token21] = ACTIONS(988), + [aux_sym_cmd_identifier_token22] = ACTIONS(988), + [aux_sym_cmd_identifier_token23] = ACTIONS(988), + [aux_sym_cmd_identifier_token24] = ACTIONS(988), + [aux_sym_cmd_identifier_token25] = ACTIONS(988), + [aux_sym_cmd_identifier_token26] = ACTIONS(988), + [aux_sym_cmd_identifier_token27] = ACTIONS(988), + [aux_sym_cmd_identifier_token28] = ACTIONS(988), + [aux_sym_cmd_identifier_token29] = ACTIONS(988), + [aux_sym_cmd_identifier_token30] = ACTIONS(988), + [aux_sym_cmd_identifier_token31] = ACTIONS(988), + [aux_sym_cmd_identifier_token32] = ACTIONS(988), + [aux_sym_cmd_identifier_token33] = ACTIONS(988), + [aux_sym_cmd_identifier_token34] = ACTIONS(986), + [aux_sym_cmd_identifier_token35] = ACTIONS(988), + [aux_sym_cmd_identifier_token36] = ACTIONS(988), + [aux_sym_cmd_identifier_token37] = 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(986), + [anon_sym_error] = ACTIONS(986), + [anon_sym_DASH2] = ACTIONS(986), + [anon_sym_break] = ACTIONS(986), + [anon_sym_continue] = ACTIONS(986), + [anon_sym_for] = ACTIONS(986), + [anon_sym_in2] = 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_hide] = ACTIONS(986), + [anon_sym_hide_DASHenv] = ACTIONS(986), + [anon_sym_overlay] = ACTIONS(986), + [anon_sym_as] = ACTIONS(986), + [anon_sym_PLUS2] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(988), + [anon_sym_DOT_DOT2] = 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), + [aux_sym__val_number_token4] = ACTIONS(986), + [aux_sym__val_number_token5] = ACTIONS(986), + [aux_sym__val_number_token6] = ACTIONS(986), + [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_DOT_DOT_DOT_LBRACE] = ACTIONS(988), + [anon_sym_register] = ACTIONS(986), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(988), + }, + [497] = { + [sym_comment] = STATE(497), + [anon_sym_export] = ACTIONS(950), + [anon_sym_alias] = ACTIONS(950), + [anon_sym_let] = ACTIONS(950), + [anon_sym_let_DASHenv] = ACTIONS(950), + [anon_sym_mut] = ACTIONS(950), + [anon_sym_const] = ACTIONS(950), + [aux_sym_cmd_identifier_token1] = ACTIONS(950), + [aux_sym_cmd_identifier_token2] = ACTIONS(950), + [aux_sym_cmd_identifier_token3] = ACTIONS(950), + [aux_sym_cmd_identifier_token4] = ACTIONS(950), + [aux_sym_cmd_identifier_token5] = ACTIONS(950), + [aux_sym_cmd_identifier_token6] = ACTIONS(950), + [aux_sym_cmd_identifier_token7] = ACTIONS(950), + [aux_sym_cmd_identifier_token8] = ACTIONS(950), + [aux_sym_cmd_identifier_token9] = ACTIONS(950), + [aux_sym_cmd_identifier_token10] = ACTIONS(950), + [aux_sym_cmd_identifier_token11] = ACTIONS(950), + [aux_sym_cmd_identifier_token12] = ACTIONS(950), + [aux_sym_cmd_identifier_token13] = ACTIONS(950), + [aux_sym_cmd_identifier_token14] = ACTIONS(950), + [aux_sym_cmd_identifier_token15] = ACTIONS(950), + [aux_sym_cmd_identifier_token16] = ACTIONS(950), + [aux_sym_cmd_identifier_token17] = ACTIONS(950), + [aux_sym_cmd_identifier_token18] = ACTIONS(950), + [aux_sym_cmd_identifier_token19] = ACTIONS(950), + [aux_sym_cmd_identifier_token20] = ACTIONS(950), + [aux_sym_cmd_identifier_token21] = ACTIONS(950), + [aux_sym_cmd_identifier_token22] = ACTIONS(950), + [aux_sym_cmd_identifier_token23] = ACTIONS(950), + [aux_sym_cmd_identifier_token24] = ACTIONS(950), + [aux_sym_cmd_identifier_token25] = ACTIONS(950), + [aux_sym_cmd_identifier_token26] = ACTIONS(950), + [aux_sym_cmd_identifier_token27] = ACTIONS(950), + [aux_sym_cmd_identifier_token28] = ACTIONS(950), + [aux_sym_cmd_identifier_token29] = ACTIONS(950), + [aux_sym_cmd_identifier_token30] = ACTIONS(950), + [aux_sym_cmd_identifier_token31] = ACTIONS(950), + [aux_sym_cmd_identifier_token32] = ACTIONS(950), + [aux_sym_cmd_identifier_token33] = ACTIONS(950), + [aux_sym_cmd_identifier_token34] = ACTIONS(950), + [aux_sym_cmd_identifier_token35] = ACTIONS(950), + [aux_sym_cmd_identifier_token36] = ACTIONS(950), + [aux_sym_cmd_identifier_token37] = ACTIONS(950), + [aux_sym_cmd_identifier_token38] = ACTIONS(950), + [aux_sym_cmd_identifier_token39] = ACTIONS(950), + [aux_sym_cmd_identifier_token40] = ACTIONS(950), + [anon_sym_def] = ACTIONS(950), + [anon_sym_export_DASHenv] = ACTIONS(950), + [anon_sym_extern] = ACTIONS(950), + [anon_sym_module] = ACTIONS(950), + [anon_sym_use] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(950), + [anon_sym_COMMA] = ACTIONS(950), + [anon_sym_DOLLAR] = ACTIONS(950), + [anon_sym_error] = ACTIONS(950), + [anon_sym_DASH2] = ACTIONS(950), + [anon_sym_break] = ACTIONS(950), + [anon_sym_continue] = ACTIONS(950), + [anon_sym_for] = ACTIONS(950), + [anon_sym_in2] = ACTIONS(950), + [anon_sym_loop] = ACTIONS(950), + [anon_sym_make] = ACTIONS(950), + [anon_sym_while] = ACTIONS(950), + [anon_sym_do] = ACTIONS(950), + [anon_sym_if] = ACTIONS(950), + [anon_sym_else] = ACTIONS(950), + [anon_sym_match] = ACTIONS(950), + [anon_sym_RBRACE] = ACTIONS(950), + [anon_sym_try] = ACTIONS(950), + [anon_sym_catch] = ACTIONS(950), + [anon_sym_return] = ACTIONS(950), + [anon_sym_source] = ACTIONS(950), + [anon_sym_source_DASHenv] = ACTIONS(950), + [anon_sym_hide] = ACTIONS(950), + [anon_sym_hide_DASHenv] = ACTIONS(950), + [anon_sym_overlay] = ACTIONS(950), + [anon_sym_as] = ACTIONS(950), + [anon_sym_QMARK2] = ACTIONS(2057), + [anon_sym_PLUS2] = ACTIONS(950), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(950), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(950), + [aux_sym__val_number_decimal_token1] = ACTIONS(950), + [aux_sym__val_number_decimal_token2] = ACTIONS(950), + [aux_sym__val_number_decimal_token3] = ACTIONS(950), + [aux_sym__val_number_decimal_token4] = ACTIONS(950), + [aux_sym__val_number_token1] = ACTIONS(950), + [aux_sym__val_number_token2] = ACTIONS(950), + [aux_sym__val_number_token3] = ACTIONS(950), + [aux_sym__val_number_token4] = ACTIONS(950), + [aux_sym__val_number_token5] = ACTIONS(950), + [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(950), + [sym__entry_separator] = ACTIONS(952), + [anon_sym_register] = ACTIONS(950), + [anon_sym_DOT2] = ACTIONS(950), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(986), + [sym_raw_string_begin] = ACTIONS(952), }, - [508] = { - [sym_comment] = STATE(508), - [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), - [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(980), - [anon_sym_DOLLAR] = ACTIONS(980), - [anon_sym_error] = ACTIONS(980), - [anon_sym_DASH2] = ACTIONS(980), - [anon_sym_break] = ACTIONS(980), - [anon_sym_continue] = ACTIONS(980), - [anon_sym_for] = ACTIONS(980), - [anon_sym_in2] = 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_as] = ACTIONS(980), - [anon_sym_QMARK2] = ACTIONS(980), - [anon_sym_PLUS2] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT_LPAREN] = 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), - [aux_sym__val_number_token4] = ACTIONS(980), - [aux_sym__val_number_token5] = ACTIONS(980), - [aux_sym__val_number_token6] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(980), - [sym__str_single_quotes] = ACTIONS(980), - [sym__str_back_ticks] = ACTIONS(980), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(980), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(980), - [sym__entry_separator] = ACTIONS(982), - [anon_sym_DOT2] = ACTIONS(980), + [498] = { + [sym_comment] = STATE(498), + [anon_sym_export] = ACTIONS(968), + [anon_sym_alias] = ACTIONS(968), + [anon_sym_let] = ACTIONS(968), + [anon_sym_let_DASHenv] = ACTIONS(968), + [anon_sym_mut] = ACTIONS(968), + [anon_sym_const] = ACTIONS(968), + [aux_sym_cmd_identifier_token1] = ACTIONS(968), + [aux_sym_cmd_identifier_token2] = ACTIONS(968), + [aux_sym_cmd_identifier_token3] = ACTIONS(968), + [aux_sym_cmd_identifier_token4] = ACTIONS(968), + [aux_sym_cmd_identifier_token5] = ACTIONS(968), + [aux_sym_cmd_identifier_token6] = ACTIONS(968), + [aux_sym_cmd_identifier_token7] = ACTIONS(968), + [aux_sym_cmd_identifier_token8] = ACTIONS(968), + [aux_sym_cmd_identifier_token9] = ACTIONS(968), + [aux_sym_cmd_identifier_token10] = ACTIONS(968), + [aux_sym_cmd_identifier_token11] = ACTIONS(968), + [aux_sym_cmd_identifier_token12] = ACTIONS(968), + [aux_sym_cmd_identifier_token13] = ACTIONS(968), + [aux_sym_cmd_identifier_token14] = ACTIONS(968), + [aux_sym_cmd_identifier_token15] = ACTIONS(968), + [aux_sym_cmd_identifier_token16] = ACTIONS(968), + [aux_sym_cmd_identifier_token17] = ACTIONS(968), + [aux_sym_cmd_identifier_token18] = ACTIONS(968), + [aux_sym_cmd_identifier_token19] = ACTIONS(968), + [aux_sym_cmd_identifier_token20] = ACTIONS(968), + [aux_sym_cmd_identifier_token21] = ACTIONS(968), + [aux_sym_cmd_identifier_token22] = ACTIONS(968), + [aux_sym_cmd_identifier_token23] = ACTIONS(968), + [aux_sym_cmd_identifier_token24] = ACTIONS(968), + [aux_sym_cmd_identifier_token25] = ACTIONS(968), + [aux_sym_cmd_identifier_token26] = ACTIONS(968), + [aux_sym_cmd_identifier_token27] = ACTIONS(968), + [aux_sym_cmd_identifier_token28] = ACTIONS(968), + [aux_sym_cmd_identifier_token29] = ACTIONS(968), + [aux_sym_cmd_identifier_token30] = ACTIONS(968), + [aux_sym_cmd_identifier_token31] = ACTIONS(968), + [aux_sym_cmd_identifier_token32] = ACTIONS(968), + [aux_sym_cmd_identifier_token33] = ACTIONS(968), + [aux_sym_cmd_identifier_token34] = ACTIONS(968), + [aux_sym_cmd_identifier_token35] = ACTIONS(968), + [aux_sym_cmd_identifier_token36] = ACTIONS(968), + [aux_sym_cmd_identifier_token37] = ACTIONS(968), + [aux_sym_cmd_identifier_token38] = ACTIONS(968), + [aux_sym_cmd_identifier_token39] = ACTIONS(968), + [aux_sym_cmd_identifier_token40] = ACTIONS(968), + [anon_sym_def] = ACTIONS(968), + [anon_sym_export_DASHenv] = ACTIONS(968), + [anon_sym_extern] = ACTIONS(968), + [anon_sym_module] = ACTIONS(968), + [anon_sym_use] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(968), + [anon_sym_COMMA] = ACTIONS(968), + [anon_sym_DOLLAR] = ACTIONS(968), + [anon_sym_error] = ACTIONS(968), + [anon_sym_DASH2] = ACTIONS(968), + [anon_sym_break] = ACTIONS(968), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_for] = ACTIONS(968), + [anon_sym_in2] = ACTIONS(968), + [anon_sym_loop] = ACTIONS(968), + [anon_sym_make] = ACTIONS(968), + [anon_sym_while] = ACTIONS(968), + [anon_sym_do] = ACTIONS(968), + [anon_sym_if] = ACTIONS(968), + [anon_sym_else] = ACTIONS(968), + [anon_sym_match] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym_try] = ACTIONS(968), + [anon_sym_catch] = ACTIONS(968), + [anon_sym_return] = ACTIONS(968), + [anon_sym_source] = ACTIONS(968), + [anon_sym_source_DASHenv] = ACTIONS(968), + [anon_sym_hide] = ACTIONS(968), + [anon_sym_hide_DASHenv] = ACTIONS(968), + [anon_sym_overlay] = ACTIONS(968), + [anon_sym_as] = ACTIONS(968), + [anon_sym_QMARK2] = ACTIONS(2059), + [anon_sym_PLUS2] = ACTIONS(968), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(968), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(968), + [aux_sym__val_number_decimal_token1] = ACTIONS(968), + [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), + [aux_sym__val_number_token4] = ACTIONS(968), + [aux_sym__val_number_token5] = ACTIONS(968), + [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(968), + [sym__entry_separator] = ACTIONS(970), + [anon_sym_register] = ACTIONS(968), + [anon_sym_DOT2] = ACTIONS(968), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(982), + [sym_raw_string_begin] = ACTIONS(970), }, - [509] = { - [sym_comment] = STATE(509), - [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), + [499] = { + [sym_comment] = STATE(499), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [aux_sym_cmd_identifier_token1] = ACTIONS(1002), + [aux_sym_cmd_identifier_token2] = ACTIONS(1002), + [aux_sym_cmd_identifier_token3] = ACTIONS(1002), + [aux_sym_cmd_identifier_token4] = ACTIONS(1002), + [aux_sym_cmd_identifier_token5] = ACTIONS(1002), + [aux_sym_cmd_identifier_token6] = ACTIONS(1002), + [aux_sym_cmd_identifier_token7] = ACTIONS(1002), + [aux_sym_cmd_identifier_token8] = ACTIONS(1002), + [aux_sym_cmd_identifier_token9] = ACTIONS(1002), + [aux_sym_cmd_identifier_token10] = ACTIONS(1002), + [aux_sym_cmd_identifier_token11] = ACTIONS(1002), + [aux_sym_cmd_identifier_token12] = ACTIONS(1002), + [aux_sym_cmd_identifier_token13] = ACTIONS(1002), + [aux_sym_cmd_identifier_token14] = ACTIONS(1002), + [aux_sym_cmd_identifier_token15] = ACTIONS(1002), + [aux_sym_cmd_identifier_token16] = ACTIONS(1002), + [aux_sym_cmd_identifier_token17] = ACTIONS(1002), + [aux_sym_cmd_identifier_token18] = ACTIONS(1002), + [aux_sym_cmd_identifier_token19] = ACTIONS(1002), + [aux_sym_cmd_identifier_token20] = ACTIONS(1002), + [aux_sym_cmd_identifier_token21] = ACTIONS(1002), + [aux_sym_cmd_identifier_token22] = ACTIONS(1002), + [aux_sym_cmd_identifier_token23] = ACTIONS(1002), + [aux_sym_cmd_identifier_token24] = ACTIONS(1002), + [aux_sym_cmd_identifier_token25] = ACTIONS(1002), + [aux_sym_cmd_identifier_token26] = ACTIONS(1002), + [aux_sym_cmd_identifier_token27] = ACTIONS(1002), + [aux_sym_cmd_identifier_token28] = ACTIONS(1002), + [aux_sym_cmd_identifier_token29] = ACTIONS(1002), + [aux_sym_cmd_identifier_token30] = ACTIONS(1002), + [aux_sym_cmd_identifier_token31] = ACTIONS(1002), + [aux_sym_cmd_identifier_token32] = ACTIONS(1002), + [aux_sym_cmd_identifier_token33] = ACTIONS(1002), + [aux_sym_cmd_identifier_token34] = ACTIONS(1002), + [aux_sym_cmd_identifier_token35] = ACTIONS(1002), + [aux_sym_cmd_identifier_token36] = ACTIONS(1002), + [aux_sym_cmd_identifier_token37] = ACTIONS(1002), + [aux_sym_cmd_identifier_token38] = ACTIONS(1002), + [aux_sym_cmd_identifier_token39] = ACTIONS(1002), + [aux_sym_cmd_identifier_token40] = ACTIONS(1002), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in2] = ACTIONS(1002), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_make] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_else] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_catch] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_as] = ACTIONS(1002), + [anon_sym_LPAREN2] = ACTIONS(2061), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1002), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1002), + [aux_sym__val_number_decimal_token1] = ACTIONS(1002), + [aux_sym__val_number_decimal_token2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = ACTIONS(1002), + [aux_sym__val_number_decimal_token4] = ACTIONS(1002), + [aux_sym__val_number_token1] = ACTIONS(1002), + [aux_sym__val_number_token2] = ACTIONS(1002), + [aux_sym__val_number_token3] = ACTIONS(1002), + [aux_sym__val_number_token4] = ACTIONS(1002), + [aux_sym__val_number_token5] = ACTIONS(1002), + [aux_sym__val_number_token6] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1002), + [sym__entry_separator] = ACTIONS(998), + [anon_sym_register] = ACTIONS(1002), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2063), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(998), + }, + [500] = { + [sym_comment] = STATE(500), + [anon_sym_export] = ACTIONS(956), + [anon_sym_alias] = ACTIONS(956), + [anon_sym_let] = ACTIONS(956), + [anon_sym_let_DASHenv] = ACTIONS(956), + [anon_sym_mut] = ACTIONS(956), + [anon_sym_const] = ACTIONS(956), + [aux_sym_cmd_identifier_token1] = ACTIONS(956), + [aux_sym_cmd_identifier_token2] = ACTIONS(958), + [aux_sym_cmd_identifier_token3] = ACTIONS(958), + [aux_sym_cmd_identifier_token4] = ACTIONS(958), + [aux_sym_cmd_identifier_token5] = ACTIONS(958), + [aux_sym_cmd_identifier_token6] = ACTIONS(958), + [aux_sym_cmd_identifier_token7] = ACTIONS(958), + [aux_sym_cmd_identifier_token8] = ACTIONS(956), + [aux_sym_cmd_identifier_token9] = ACTIONS(956), + [aux_sym_cmd_identifier_token10] = ACTIONS(958), + [aux_sym_cmd_identifier_token11] = ACTIONS(958), + [aux_sym_cmd_identifier_token12] = ACTIONS(956), + [aux_sym_cmd_identifier_token13] = ACTIONS(956), + [aux_sym_cmd_identifier_token14] = ACTIONS(956), + [aux_sym_cmd_identifier_token15] = ACTIONS(956), + [aux_sym_cmd_identifier_token16] = ACTIONS(958), + [aux_sym_cmd_identifier_token17] = ACTIONS(958), + [aux_sym_cmd_identifier_token18] = ACTIONS(958), + [aux_sym_cmd_identifier_token19] = ACTIONS(958), + [aux_sym_cmd_identifier_token20] = ACTIONS(958), + [aux_sym_cmd_identifier_token21] = ACTIONS(958), + [aux_sym_cmd_identifier_token22] = ACTIONS(958), + [aux_sym_cmd_identifier_token23] = ACTIONS(958), + [aux_sym_cmd_identifier_token24] = ACTIONS(958), + [aux_sym_cmd_identifier_token25] = ACTIONS(958), + [aux_sym_cmd_identifier_token26] = ACTIONS(958), + [aux_sym_cmd_identifier_token27] = ACTIONS(958), + [aux_sym_cmd_identifier_token28] = ACTIONS(958), + [aux_sym_cmd_identifier_token29] = ACTIONS(958), + [aux_sym_cmd_identifier_token30] = ACTIONS(958), + [aux_sym_cmd_identifier_token31] = ACTIONS(958), + [aux_sym_cmd_identifier_token32] = ACTIONS(958), + [aux_sym_cmd_identifier_token33] = ACTIONS(958), + [aux_sym_cmd_identifier_token34] = ACTIONS(956), + [aux_sym_cmd_identifier_token35] = ACTIONS(958), + [aux_sym_cmd_identifier_token36] = ACTIONS(958), + [aux_sym_cmd_identifier_token37] = ACTIONS(958), + [aux_sym_cmd_identifier_token38] = ACTIONS(956), + [aux_sym_cmd_identifier_token39] = ACTIONS(958), + [aux_sym_cmd_identifier_token40] = ACTIONS(958), + [anon_sym_def] = ACTIONS(956), + [anon_sym_export_DASHenv] = ACTIONS(956), + [anon_sym_extern] = ACTIONS(956), + [anon_sym_module] = ACTIONS(956), + [anon_sym_use] = ACTIONS(956), + [anon_sym_LPAREN] = ACTIONS(958), + [anon_sym_COMMA] = ACTIONS(958), + [anon_sym_DOLLAR] = ACTIONS(956), + [anon_sym_error] = ACTIONS(956), + [anon_sym_DASH2] = ACTIONS(956), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(956), + [anon_sym_for] = ACTIONS(956), + [anon_sym_in2] = ACTIONS(956), + [anon_sym_loop] = ACTIONS(956), + [anon_sym_make] = ACTIONS(956), + [anon_sym_while] = ACTIONS(956), + [anon_sym_do] = ACTIONS(956), + [anon_sym_if] = ACTIONS(956), + [anon_sym_else] = ACTIONS(956), + [anon_sym_match] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(958), + [anon_sym_try] = ACTIONS(956), + [anon_sym_catch] = ACTIONS(956), + [anon_sym_return] = ACTIONS(956), + [anon_sym_source] = ACTIONS(956), + [anon_sym_source_DASHenv] = ACTIONS(956), + [anon_sym_hide] = ACTIONS(956), + [anon_sym_hide_DASHenv] = ACTIONS(956), + [anon_sym_overlay] = ACTIONS(956), + [anon_sym_as] = ACTIONS(956), + [anon_sym_QMARK2] = ACTIONS(958), + [anon_sym_PLUS2] = ACTIONS(956), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(958), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(958), + [aux_sym__val_number_decimal_token1] = ACTIONS(956), + [aux_sym__val_number_decimal_token2] = ACTIONS(958), + [aux_sym__val_number_decimal_token3] = ACTIONS(958), + [aux_sym__val_number_decimal_token4] = ACTIONS(958), + [aux_sym__val_number_token1] = ACTIONS(958), + [aux_sym__val_number_token2] = ACTIONS(958), + [aux_sym__val_number_token3] = ACTIONS(958), + [aux_sym__val_number_token4] = ACTIONS(956), + [aux_sym__val_number_token5] = ACTIONS(956), + [aux_sym__val_number_token6] = ACTIONS(956), + [anon_sym_DQUOTE] = ACTIONS(958), + [sym__str_single_quotes] = ACTIONS(958), + [sym__str_back_ticks] = ACTIONS(958), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(958), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(958), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(958), + [anon_sym_register] = ACTIONS(956), + [anon_sym_COLON2] = ACTIONS(958), + [anon_sym_DOT2] = ACTIONS(956), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(958), + }, + [501] = { + [sym_comment] = STATE(501), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(2065), + [anon_sym_DOLLAR] = ACTIONS(2065), + [anon_sym_error] = ACTIONS(2065), + [anon_sym_DASH2] = ACTIONS(2065), + [anon_sym_break] = ACTIONS(2065), + [anon_sym_continue] = ACTIONS(2065), + [anon_sym_for] = ACTIONS(2065), + [anon_sym_in2] = 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_hide] = ACTIONS(2065), + [anon_sym_hide_DASHenv] = ACTIONS(2065), + [anon_sym_overlay] = ACTIONS(2065), + [anon_sym_as] = ACTIONS(2065), + [anon_sym_LPAREN2] = ACTIONS(2067), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_decimal_token3] = ACTIONS(2065), + [aux_sym__val_number_decimal_token4] = ACTIONS(2065), + [aux_sym__val_number_token1] = ACTIONS(2065), + [aux_sym__val_number_token2] = ACTIONS(2065), + [aux_sym__val_number_token3] = ACTIONS(2065), + [aux_sym__val_number_token4] = ACTIONS(2065), + [aux_sym__val_number_token5] = ACTIONS(2065), + [aux_sym__val_number_token6] = ACTIONS(2065), + [anon_sym_DQUOTE] = ACTIONS(2065), + [sym__str_single_quotes] = ACTIONS(2065), + [sym__str_back_ticks] = ACTIONS(2065), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2065), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2065), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2065), + [sym__entry_separator] = ACTIONS(2069), + [anon_sym_register] = ACTIONS(2065), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2071), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2069), + }, + [502] = { + [sym_comment] = STATE(502), + [anon_sym_export] = ACTIONS(960), + [anon_sym_alias] = ACTIONS(960), + [anon_sym_let] = ACTIONS(960), + [anon_sym_let_DASHenv] = ACTIONS(960), + [anon_sym_mut] = ACTIONS(960), + [anon_sym_const] = ACTIONS(960), + [aux_sym_cmd_identifier_token1] = ACTIONS(960), + [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(960), + [aux_sym_cmd_identifier_token9] = ACTIONS(960), + [aux_sym_cmd_identifier_token10] = ACTIONS(962), + [aux_sym_cmd_identifier_token11] = ACTIONS(962), + [aux_sym_cmd_identifier_token12] = ACTIONS(960), + [aux_sym_cmd_identifier_token13] = ACTIONS(960), + [aux_sym_cmd_identifier_token14] = ACTIONS(960), + [aux_sym_cmd_identifier_token15] = ACTIONS(960), + [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(960), + [aux_sym_cmd_identifier_token35] = ACTIONS(962), + [aux_sym_cmd_identifier_token36] = ACTIONS(962), + [aux_sym_cmd_identifier_token37] = ACTIONS(962), + [aux_sym_cmd_identifier_token38] = ACTIONS(960), + [aux_sym_cmd_identifier_token39] = ACTIONS(962), + [aux_sym_cmd_identifier_token40] = ACTIONS(962), + [anon_sym_def] = ACTIONS(960), + [anon_sym_export_DASHenv] = ACTIONS(960), + [anon_sym_extern] = ACTIONS(960), + [anon_sym_module] = ACTIONS(960), + [anon_sym_use] = ACTIONS(960), + [anon_sym_LPAREN] = ACTIONS(962), + [anon_sym_COMMA] = ACTIONS(962), + [anon_sym_DOLLAR] = ACTIONS(960), + [anon_sym_error] = ACTIONS(960), + [anon_sym_DASH2] = ACTIONS(960), + [anon_sym_break] = ACTIONS(960), + [anon_sym_continue] = ACTIONS(960), + [anon_sym_for] = ACTIONS(960), + [anon_sym_in2] = ACTIONS(960), + [anon_sym_loop] = ACTIONS(960), + [anon_sym_make] = ACTIONS(960), + [anon_sym_while] = ACTIONS(960), + [anon_sym_do] = ACTIONS(960), + [anon_sym_if] = ACTIONS(960), + [anon_sym_else] = ACTIONS(960), + [anon_sym_match] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(962), + [anon_sym_try] = ACTIONS(960), + [anon_sym_catch] = ACTIONS(960), + [anon_sym_return] = ACTIONS(960), + [anon_sym_source] = ACTIONS(960), + [anon_sym_source_DASHenv] = ACTIONS(960), + [anon_sym_hide] = ACTIONS(960), + [anon_sym_hide_DASHenv] = ACTIONS(960), + [anon_sym_overlay] = ACTIONS(960), + [anon_sym_as] = ACTIONS(960), + [anon_sym_QMARK2] = ACTIONS(962), + [anon_sym_PLUS2] = ACTIONS(960), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(962), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(962), + [aux_sym__val_number_decimal_token1] = ACTIONS(960), + [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), + [aux_sym__val_number_token4] = ACTIONS(960), + [aux_sym__val_number_token5] = ACTIONS(960), + [aux_sym__val_number_token6] = ACTIONS(960), + [anon_sym_DQUOTE] = ACTIONS(962), + [sym__str_single_quotes] = ACTIONS(962), + [sym__str_back_ticks] = ACTIONS(962), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(962), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(962), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(962), + [anon_sym_register] = ACTIONS(960), + [anon_sym_COLON2] = ACTIONS(962), + [anon_sym_DOT2] = ACTIONS(960), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(962), + }, + [503] = { + [sym_comment] = STATE(503), + [anon_sym_export] = ACTIONS(964), + [anon_sym_alias] = ACTIONS(964), + [anon_sym_let] = ACTIONS(964), + [anon_sym_let_DASHenv] = ACTIONS(964), + [anon_sym_mut] = ACTIONS(964), + [anon_sym_const] = ACTIONS(964), + [aux_sym_cmd_identifier_token1] = ACTIONS(964), [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_token8] = ACTIONS(964), + [aux_sym_cmd_identifier_token9] = ACTIONS(964), [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_token12] = ACTIONS(964), + [aux_sym_cmd_identifier_token13] = ACTIONS(964), + [aux_sym_cmd_identifier_token14] = ACTIONS(964), + [aux_sym_cmd_identifier_token15] = ACTIONS(964), [aux_sym_cmd_identifier_token16] = ACTIONS(966), [aux_sym_cmd_identifier_token17] = ACTIONS(966), [aux_sym_cmd_identifier_token18] = ACTIONS(966), @@ -137416,72 +136723,597 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_token34] = ACTIONS(964), [aux_sym_cmd_identifier_token35] = ACTIONS(966), [aux_sym_cmd_identifier_token36] = ACTIONS(966), [aux_sym_cmd_identifier_token37] = ACTIONS(966), - [aux_sym_cmd_identifier_token38] = ACTIONS(966), + [aux_sym_cmd_identifier_token38] = ACTIONS(964), [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_def] = ACTIONS(964), + [anon_sym_export_DASHenv] = ACTIONS(964), + [anon_sym_extern] = ACTIONS(964), + [anon_sym_module] = ACTIONS(964), + [anon_sym_use] = ACTIONS(964), [anon_sym_LPAREN] = ACTIONS(966), [anon_sym_COMMA] = ACTIONS(966), - [anon_sym_DOLLAR] = ACTIONS(966), - [anon_sym_error] = ACTIONS(966), - [anon_sym_DASH2] = ACTIONS(966), - [anon_sym_break] = ACTIONS(966), - [anon_sym_continue] = ACTIONS(966), - [anon_sym_for] = ACTIONS(966), - [anon_sym_in2] = 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_DOLLAR] = ACTIONS(964), + [anon_sym_error] = ACTIONS(964), + [anon_sym_DASH2] = ACTIONS(964), + [anon_sym_break] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_in2] = ACTIONS(964), + [anon_sym_loop] = ACTIONS(964), + [anon_sym_make] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [anon_sym_do] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_else] = ACTIONS(964), + [anon_sym_match] = ACTIONS(964), [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_as] = ACTIONS(966), - [anon_sym_QMARK2] = ACTIONS(2152), - [anon_sym_PLUS2] = ACTIONS(966), + [anon_sym_try] = ACTIONS(964), + [anon_sym_catch] = ACTIONS(964), + [anon_sym_return] = ACTIONS(964), + [anon_sym_source] = ACTIONS(964), + [anon_sym_source_DASHenv] = ACTIONS(964), + [anon_sym_hide] = ACTIONS(964), + [anon_sym_hide_DASHenv] = ACTIONS(964), + [anon_sym_overlay] = ACTIONS(964), + [anon_sym_as] = ACTIONS(964), + [anon_sym_QMARK2] = ACTIONS(966), + [anon_sym_PLUS2] = ACTIONS(964), [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_token1] = ACTIONS(964), [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), - [aux_sym__val_number_token4] = ACTIONS(966), - [aux_sym__val_number_token5] = ACTIONS(966), - [aux_sym__val_number_token6] = ACTIONS(966), + [aux_sym__val_number_token4] = ACTIONS(964), + [aux_sym__val_number_token5] = ACTIONS(964), + [aux_sym__val_number_token6] = ACTIONS(964), [anon_sym_DQUOTE] = ACTIONS(966), [sym__str_single_quotes] = ACTIONS(966), [sym__str_back_ticks] = ACTIONS(966), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(966), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(966), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(966), - [sym__entry_separator] = ACTIONS(968), - [anon_sym_DOT2] = ACTIONS(966), + [anon_sym_register] = ACTIONS(964), + [anon_sym_COLON2] = ACTIONS(966), + [anon_sym_DOT2] = ACTIONS(964), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(966), + }, + [504] = { + [sym_comment] = STATE(504), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(2073), + [anon_sym_DOLLAR] = ACTIONS(2073), + [anon_sym_error] = ACTIONS(2073), + [anon_sym_DASH2] = ACTIONS(2073), + [anon_sym_break] = ACTIONS(2073), + [anon_sym_continue] = ACTIONS(2073), + [anon_sym_for] = ACTIONS(2073), + [anon_sym_in2] = 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_hide] = ACTIONS(2073), + [anon_sym_hide_DASHenv] = ACTIONS(2073), + [anon_sym_overlay] = ACTIONS(2073), + [anon_sym_as] = ACTIONS(2073), + [anon_sym_LPAREN2] = ACTIONS(2075), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_decimal_token3] = ACTIONS(2073), + [aux_sym__val_number_decimal_token4] = ACTIONS(2073), + [aux_sym__val_number_token1] = ACTIONS(2073), + [aux_sym__val_number_token2] = ACTIONS(2073), + [aux_sym__val_number_token3] = ACTIONS(2073), + [aux_sym__val_number_token4] = ACTIONS(2073), + [aux_sym__val_number_token5] = ACTIONS(2073), + [aux_sym__val_number_token6] = ACTIONS(2073), + [anon_sym_DQUOTE] = ACTIONS(2073), + [sym__str_single_quotes] = ACTIONS(2073), + [sym__str_back_ticks] = ACTIONS(2073), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2073), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2073), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2073), + [sym__entry_separator] = ACTIONS(2077), + [anon_sym_register] = ACTIONS(2073), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2079), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(968), + [sym_raw_string_begin] = ACTIONS(2077), }, - [510] = { - [sym_comment] = STATE(510), + [505] = { + [sym_comment] = STATE(505), + [anon_sym_export] = ACTIONS(2081), + [anon_sym_alias] = ACTIONS(2081), + [anon_sym_let] = ACTIONS(2081), + [anon_sym_let_DASHenv] = ACTIONS(2081), + [anon_sym_mut] = ACTIONS(2081), + [anon_sym_const] = ACTIONS(2081), + [aux_sym_cmd_identifier_token1] = ACTIONS(2081), + [aux_sym_cmd_identifier_token2] = ACTIONS(2081), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [aux_sym_cmd_identifier_token6] = ACTIONS(2081), + [aux_sym_cmd_identifier_token7] = ACTIONS(2081), + [aux_sym_cmd_identifier_token8] = ACTIONS(2081), + [aux_sym_cmd_identifier_token9] = ACTIONS(2081), + [aux_sym_cmd_identifier_token10] = ACTIONS(2081), + [aux_sym_cmd_identifier_token11] = ACTIONS(2081), + [aux_sym_cmd_identifier_token12] = ACTIONS(2081), + [aux_sym_cmd_identifier_token13] = ACTIONS(2081), + [aux_sym_cmd_identifier_token14] = ACTIONS(2081), + [aux_sym_cmd_identifier_token15] = ACTIONS(2081), + [aux_sym_cmd_identifier_token16] = ACTIONS(2081), + [aux_sym_cmd_identifier_token17] = ACTIONS(2081), + [aux_sym_cmd_identifier_token18] = ACTIONS(2081), + [aux_sym_cmd_identifier_token19] = ACTIONS(2081), + [aux_sym_cmd_identifier_token20] = ACTIONS(2081), + [aux_sym_cmd_identifier_token21] = ACTIONS(2081), + [aux_sym_cmd_identifier_token22] = ACTIONS(2081), + [aux_sym_cmd_identifier_token23] = ACTIONS(2081), + [aux_sym_cmd_identifier_token24] = ACTIONS(2081), + [aux_sym_cmd_identifier_token25] = ACTIONS(2081), + [aux_sym_cmd_identifier_token26] = ACTIONS(2081), + [aux_sym_cmd_identifier_token27] = ACTIONS(2081), + [aux_sym_cmd_identifier_token28] = ACTIONS(2081), + [aux_sym_cmd_identifier_token29] = ACTIONS(2081), + [aux_sym_cmd_identifier_token30] = ACTIONS(2081), + [aux_sym_cmd_identifier_token31] = ACTIONS(2081), + [aux_sym_cmd_identifier_token32] = ACTIONS(2081), + [aux_sym_cmd_identifier_token33] = ACTIONS(2081), + [aux_sym_cmd_identifier_token34] = ACTIONS(2081), + [aux_sym_cmd_identifier_token35] = ACTIONS(2081), + [aux_sym_cmd_identifier_token36] = ACTIONS(2081), + [aux_sym_cmd_identifier_token37] = ACTIONS(2081), + [aux_sym_cmd_identifier_token38] = ACTIONS(2081), + [aux_sym_cmd_identifier_token39] = ACTIONS(2081), + [aux_sym_cmd_identifier_token40] = ACTIONS(2081), + [anon_sym_def] = ACTIONS(2081), + [anon_sym_export_DASHenv] = ACTIONS(2081), + [anon_sym_extern] = ACTIONS(2081), + [anon_sym_module] = ACTIONS(2081), + [anon_sym_use] = ACTIONS(2081), + [anon_sym_LPAREN] = ACTIONS(2081), + [anon_sym_COMMA] = ACTIONS(2081), + [anon_sym_DOLLAR] = ACTIONS(2081), + [anon_sym_error] = ACTIONS(2081), + [anon_sym_DASH2] = ACTIONS(2081), + [anon_sym_break] = ACTIONS(2081), + [anon_sym_continue] = ACTIONS(2081), + [anon_sym_for] = ACTIONS(2081), + [anon_sym_in2] = ACTIONS(2081), + [anon_sym_loop] = ACTIONS(2081), + [anon_sym_make] = ACTIONS(2081), + [anon_sym_while] = ACTIONS(2081), + [anon_sym_do] = ACTIONS(2081), + [anon_sym_if] = ACTIONS(2081), + [anon_sym_else] = ACTIONS(2081), + [anon_sym_match] = ACTIONS(2081), + [anon_sym_RBRACE] = ACTIONS(2081), + [anon_sym_try] = ACTIONS(2081), + [anon_sym_catch] = ACTIONS(2081), + [anon_sym_return] = ACTIONS(2081), + [anon_sym_source] = ACTIONS(2081), + [anon_sym_source_DASHenv] = ACTIONS(2081), + [anon_sym_hide] = ACTIONS(2081), + [anon_sym_hide_DASHenv] = ACTIONS(2081), + [anon_sym_overlay] = ACTIONS(2081), + [anon_sym_as] = ACTIONS(2081), + [anon_sym_LPAREN2] = ACTIONS(2075), + [anon_sym_PLUS2] = ACTIONS(2081), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2081), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2081), + [aux_sym__val_number_decimal_token1] = ACTIONS(2081), + [aux_sym__val_number_decimal_token2] = ACTIONS(2081), + [aux_sym__val_number_decimal_token3] = ACTIONS(2081), + [aux_sym__val_number_decimal_token4] = ACTIONS(2081), + [aux_sym__val_number_token1] = ACTIONS(2081), + [aux_sym__val_number_token2] = ACTIONS(2081), + [aux_sym__val_number_token3] = ACTIONS(2081), + [aux_sym__val_number_token4] = ACTIONS(2081), + [aux_sym__val_number_token5] = ACTIONS(2081), + [aux_sym__val_number_token6] = ACTIONS(2081), + [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_DOT_DOT_DOT_LBRACE] = ACTIONS(2081), + [sym__entry_separator] = ACTIONS(2083), + [anon_sym_register] = ACTIONS(2081), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2079), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2083), + }, + [506] = { + [sym_comment] = STATE(506), + [anon_sym_export] = ACTIONS(946), + [anon_sym_alias] = ACTIONS(946), + [anon_sym_let] = ACTIONS(946), + [anon_sym_let_DASHenv] = ACTIONS(946), + [anon_sym_mut] = ACTIONS(946), + [anon_sym_const] = ACTIONS(946), + [aux_sym_cmd_identifier_token1] = ACTIONS(946), + [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(946), + [aux_sym_cmd_identifier_token9] = ACTIONS(946), + [aux_sym_cmd_identifier_token10] = ACTIONS(948), + [aux_sym_cmd_identifier_token11] = ACTIONS(948), + [aux_sym_cmd_identifier_token12] = ACTIONS(946), + [aux_sym_cmd_identifier_token13] = ACTIONS(946), + [aux_sym_cmd_identifier_token14] = ACTIONS(946), + [aux_sym_cmd_identifier_token15] = ACTIONS(946), + [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(946), + [aux_sym_cmd_identifier_token35] = ACTIONS(948), + [aux_sym_cmd_identifier_token36] = ACTIONS(948), + [aux_sym_cmd_identifier_token37] = ACTIONS(948), + [aux_sym_cmd_identifier_token38] = ACTIONS(946), + [aux_sym_cmd_identifier_token39] = ACTIONS(948), + [aux_sym_cmd_identifier_token40] = ACTIONS(948), + [anon_sym_def] = ACTIONS(946), + [anon_sym_export_DASHenv] = ACTIONS(946), + [anon_sym_extern] = ACTIONS(946), + [anon_sym_module] = ACTIONS(946), + [anon_sym_use] = ACTIONS(946), + [anon_sym_LPAREN] = ACTIONS(948), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_DOLLAR] = ACTIONS(946), + [anon_sym_error] = ACTIONS(946), + [anon_sym_DASH2] = ACTIONS(946), + [anon_sym_break] = ACTIONS(946), + [anon_sym_continue] = ACTIONS(946), + [anon_sym_for] = ACTIONS(946), + [anon_sym_in2] = ACTIONS(946), + [anon_sym_loop] = ACTIONS(946), + [anon_sym_make] = ACTIONS(946), + [anon_sym_while] = ACTIONS(946), + [anon_sym_do] = ACTIONS(946), + [anon_sym_if] = ACTIONS(946), + [anon_sym_else] = ACTIONS(946), + [anon_sym_match] = ACTIONS(946), + [anon_sym_RBRACE] = ACTIONS(948), + [anon_sym_try] = ACTIONS(946), + [anon_sym_catch] = ACTIONS(946), + [anon_sym_return] = ACTIONS(946), + [anon_sym_source] = ACTIONS(946), + [anon_sym_source_DASHenv] = ACTIONS(946), + [anon_sym_hide] = ACTIONS(946), + [anon_sym_hide_DASHenv] = ACTIONS(946), + [anon_sym_overlay] = ACTIONS(946), + [anon_sym_as] = ACTIONS(946), + [anon_sym_QMARK2] = ACTIONS(948), + [anon_sym_PLUS2] = ACTIONS(946), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(948), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(948), + [aux_sym__val_number_decimal_token1] = ACTIONS(946), + [aux_sym__val_number_decimal_token2] = ACTIONS(948), + [aux_sym__val_number_decimal_token3] = ACTIONS(948), + [aux_sym__val_number_decimal_token4] = ACTIONS(948), + [aux_sym__val_number_token1] = ACTIONS(948), + [aux_sym__val_number_token2] = ACTIONS(948), + [aux_sym__val_number_token3] = ACTIONS(948), + [aux_sym__val_number_token4] = ACTIONS(946), + [aux_sym__val_number_token5] = ACTIONS(946), + [aux_sym__val_number_token6] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(948), + [sym__str_single_quotes] = ACTIONS(948), + [sym__str_back_ticks] = ACTIONS(948), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(948), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(948), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(948), + [anon_sym_register] = ACTIONS(946), + [anon_sym_COLON2] = ACTIONS(948), + [anon_sym_DOT2] = ACTIONS(946), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(948), + }, + [507] = { + [sym_comment] = STATE(507), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(2085), + [anon_sym_DOLLAR] = ACTIONS(2085), + [anon_sym_error] = ACTIONS(2085), + [anon_sym_DASH2] = ACTIONS(2085), + [anon_sym_break] = ACTIONS(2085), + [anon_sym_continue] = ACTIONS(2085), + [anon_sym_for] = ACTIONS(2085), + [anon_sym_in2] = 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_hide] = ACTIONS(2085), + [anon_sym_hide_DASHenv] = ACTIONS(2085), + [anon_sym_overlay] = ACTIONS(2085), + [anon_sym_as] = ACTIONS(2085), + [anon_sym_LPAREN2] = ACTIONS(2087), + [anon_sym_PLUS2] = ACTIONS(2085), + [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), + [aux_sym__val_number_token4] = ACTIONS(2085), + [aux_sym__val_number_token5] = ACTIONS(2085), + [aux_sym__val_number_token6] = ACTIONS(2085), + [anon_sym_DQUOTE] = ACTIONS(2085), + [sym__str_single_quotes] = ACTIONS(2085), + [sym__str_back_ticks] = ACTIONS(2085), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2085), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2085), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2085), + [sym__entry_separator] = ACTIONS(2087), + [anon_sym_register] = ACTIONS(2085), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2085), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2087), + }, + [508] = { + [sym_comment] = STATE(508), + [anon_sym_export] = ACTIONS(956), + [anon_sym_alias] = ACTIONS(956), + [anon_sym_let] = ACTIONS(956), + [anon_sym_let_DASHenv] = ACTIONS(956), + [anon_sym_mut] = ACTIONS(956), + [anon_sym_const] = ACTIONS(956), + [aux_sym_cmd_identifier_token1] = ACTIONS(956), + [aux_sym_cmd_identifier_token2] = ACTIONS(956), + [aux_sym_cmd_identifier_token3] = ACTIONS(956), + [aux_sym_cmd_identifier_token4] = ACTIONS(956), + [aux_sym_cmd_identifier_token5] = ACTIONS(956), + [aux_sym_cmd_identifier_token6] = ACTIONS(956), + [aux_sym_cmd_identifier_token7] = ACTIONS(956), + [aux_sym_cmd_identifier_token8] = ACTIONS(956), + [aux_sym_cmd_identifier_token9] = ACTIONS(956), + [aux_sym_cmd_identifier_token10] = ACTIONS(956), + [aux_sym_cmd_identifier_token11] = ACTIONS(956), + [aux_sym_cmd_identifier_token12] = ACTIONS(956), + [aux_sym_cmd_identifier_token13] = ACTIONS(956), + [aux_sym_cmd_identifier_token14] = ACTIONS(956), + [aux_sym_cmd_identifier_token15] = ACTIONS(956), + [aux_sym_cmd_identifier_token16] = ACTIONS(956), + [aux_sym_cmd_identifier_token17] = ACTIONS(956), + [aux_sym_cmd_identifier_token18] = ACTIONS(956), + [aux_sym_cmd_identifier_token19] = ACTIONS(956), + [aux_sym_cmd_identifier_token20] = ACTIONS(956), + [aux_sym_cmd_identifier_token21] = ACTIONS(956), + [aux_sym_cmd_identifier_token22] = ACTIONS(956), + [aux_sym_cmd_identifier_token23] = ACTIONS(956), + [aux_sym_cmd_identifier_token24] = ACTIONS(956), + [aux_sym_cmd_identifier_token25] = ACTIONS(956), + [aux_sym_cmd_identifier_token26] = ACTIONS(956), + [aux_sym_cmd_identifier_token27] = ACTIONS(956), + [aux_sym_cmd_identifier_token28] = ACTIONS(956), + [aux_sym_cmd_identifier_token29] = ACTIONS(956), + [aux_sym_cmd_identifier_token30] = ACTIONS(956), + [aux_sym_cmd_identifier_token31] = ACTIONS(956), + [aux_sym_cmd_identifier_token32] = ACTIONS(956), + [aux_sym_cmd_identifier_token33] = ACTIONS(956), + [aux_sym_cmd_identifier_token34] = ACTIONS(956), + [aux_sym_cmd_identifier_token35] = ACTIONS(956), + [aux_sym_cmd_identifier_token36] = ACTIONS(956), + [aux_sym_cmd_identifier_token37] = ACTIONS(956), + [aux_sym_cmd_identifier_token38] = ACTIONS(956), + [aux_sym_cmd_identifier_token39] = ACTIONS(956), + [aux_sym_cmd_identifier_token40] = ACTIONS(956), + [anon_sym_def] = ACTIONS(956), + [anon_sym_export_DASHenv] = ACTIONS(956), + [anon_sym_extern] = ACTIONS(956), + [anon_sym_module] = ACTIONS(956), + [anon_sym_use] = ACTIONS(956), + [anon_sym_LPAREN] = ACTIONS(956), + [anon_sym_COMMA] = ACTIONS(956), + [anon_sym_DOLLAR] = ACTIONS(956), + [anon_sym_error] = ACTIONS(956), + [anon_sym_DASH2] = ACTIONS(956), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(956), + [anon_sym_for] = ACTIONS(956), + [anon_sym_in2] = ACTIONS(956), + [anon_sym_loop] = ACTIONS(956), + [anon_sym_make] = ACTIONS(956), + [anon_sym_while] = ACTIONS(956), + [anon_sym_do] = ACTIONS(956), + [anon_sym_if] = ACTIONS(956), + [anon_sym_else] = ACTIONS(956), + [anon_sym_match] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(956), + [anon_sym_try] = ACTIONS(956), + [anon_sym_catch] = ACTIONS(956), + [anon_sym_return] = ACTIONS(956), + [anon_sym_source] = ACTIONS(956), + [anon_sym_source_DASHenv] = ACTIONS(956), + [anon_sym_hide] = ACTIONS(956), + [anon_sym_hide_DASHenv] = ACTIONS(956), + [anon_sym_overlay] = ACTIONS(956), + [anon_sym_as] = ACTIONS(956), + [anon_sym_QMARK2] = ACTIONS(956), + [anon_sym_PLUS2] = ACTIONS(956), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(956), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(956), + [aux_sym__val_number_decimal_token1] = ACTIONS(956), + [aux_sym__val_number_decimal_token2] = ACTIONS(956), + [aux_sym__val_number_decimal_token3] = ACTIONS(956), + [aux_sym__val_number_decimal_token4] = ACTIONS(956), + [aux_sym__val_number_token1] = ACTIONS(956), + [aux_sym__val_number_token2] = ACTIONS(956), + [aux_sym__val_number_token3] = ACTIONS(956), + [aux_sym__val_number_token4] = ACTIONS(956), + [aux_sym__val_number_token5] = ACTIONS(956), + [aux_sym__val_number_token6] = ACTIONS(956), + [anon_sym_DQUOTE] = ACTIONS(956), + [sym__str_single_quotes] = ACTIONS(956), + [sym__str_back_ticks] = ACTIONS(956), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(956), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(956), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(956), + [sym__entry_separator] = ACTIONS(958), + [anon_sym_register] = ACTIONS(956), + [anon_sym_DOT2] = ACTIONS(956), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(958), + }, + [509] = { + [sym_comment] = STATE(509), [anon_sym_export] = ACTIONS(960), [anon_sym_alias] = ACTIONS(960), [anon_sym_let] = ACTIONS(960), @@ -137555,12 +137387,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(960), [anon_sym_source] = ACTIONS(960), [anon_sym_source_DASHenv] = ACTIONS(960), - [anon_sym_register] = ACTIONS(960), [anon_sym_hide] = ACTIONS(960), [anon_sym_hide_DASHenv] = ACTIONS(960), [anon_sym_overlay] = ACTIONS(960), [anon_sym_as] = ACTIONS(960), - [anon_sym_QMARK2] = ACTIONS(2154), + [anon_sym_QMARK2] = ACTIONS(960), [anon_sym_PLUS2] = ACTIONS(960), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(960), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(960), @@ -137581,432 +137412,4003 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE] = ACTIONS(960), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(960), [sym__entry_separator] = ACTIONS(962), + [anon_sym_register] = ACTIONS(960), [anon_sym_DOT2] = ACTIONS(960), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(962), }, + [510] = { + [sym_comment] = STATE(510), + [anon_sym_export] = ACTIONS(964), + [anon_sym_alias] = ACTIONS(964), + [anon_sym_let] = ACTIONS(964), + [anon_sym_let_DASHenv] = ACTIONS(964), + [anon_sym_mut] = ACTIONS(964), + [anon_sym_const] = ACTIONS(964), + [aux_sym_cmd_identifier_token1] = ACTIONS(964), + [aux_sym_cmd_identifier_token2] = ACTIONS(964), + [aux_sym_cmd_identifier_token3] = ACTIONS(964), + [aux_sym_cmd_identifier_token4] = ACTIONS(964), + [aux_sym_cmd_identifier_token5] = ACTIONS(964), + [aux_sym_cmd_identifier_token6] = ACTIONS(964), + [aux_sym_cmd_identifier_token7] = ACTIONS(964), + [aux_sym_cmd_identifier_token8] = ACTIONS(964), + [aux_sym_cmd_identifier_token9] = ACTIONS(964), + [aux_sym_cmd_identifier_token10] = ACTIONS(964), + [aux_sym_cmd_identifier_token11] = ACTIONS(964), + [aux_sym_cmd_identifier_token12] = ACTIONS(964), + [aux_sym_cmd_identifier_token13] = ACTIONS(964), + [aux_sym_cmd_identifier_token14] = ACTIONS(964), + [aux_sym_cmd_identifier_token15] = ACTIONS(964), + [aux_sym_cmd_identifier_token16] = ACTIONS(964), + [aux_sym_cmd_identifier_token17] = ACTIONS(964), + [aux_sym_cmd_identifier_token18] = ACTIONS(964), + [aux_sym_cmd_identifier_token19] = ACTIONS(964), + [aux_sym_cmd_identifier_token20] = ACTIONS(964), + [aux_sym_cmd_identifier_token21] = ACTIONS(964), + [aux_sym_cmd_identifier_token22] = ACTIONS(964), + [aux_sym_cmd_identifier_token23] = ACTIONS(964), + [aux_sym_cmd_identifier_token24] = ACTIONS(964), + [aux_sym_cmd_identifier_token25] = ACTIONS(964), + [aux_sym_cmd_identifier_token26] = ACTIONS(964), + [aux_sym_cmd_identifier_token27] = ACTIONS(964), + [aux_sym_cmd_identifier_token28] = ACTIONS(964), + [aux_sym_cmd_identifier_token29] = ACTIONS(964), + [aux_sym_cmd_identifier_token30] = ACTIONS(964), + [aux_sym_cmd_identifier_token31] = ACTIONS(964), + [aux_sym_cmd_identifier_token32] = ACTIONS(964), + [aux_sym_cmd_identifier_token33] = ACTIONS(964), + [aux_sym_cmd_identifier_token34] = ACTIONS(964), + [aux_sym_cmd_identifier_token35] = ACTIONS(964), + [aux_sym_cmd_identifier_token36] = ACTIONS(964), + [aux_sym_cmd_identifier_token37] = ACTIONS(964), + [aux_sym_cmd_identifier_token38] = ACTIONS(964), + [aux_sym_cmd_identifier_token39] = ACTIONS(964), + [aux_sym_cmd_identifier_token40] = ACTIONS(964), + [anon_sym_def] = ACTIONS(964), + [anon_sym_export_DASHenv] = ACTIONS(964), + [anon_sym_extern] = ACTIONS(964), + [anon_sym_module] = ACTIONS(964), + [anon_sym_use] = ACTIONS(964), + [anon_sym_LPAREN] = ACTIONS(964), + [anon_sym_COMMA] = ACTIONS(964), + [anon_sym_DOLLAR] = ACTIONS(964), + [anon_sym_error] = ACTIONS(964), + [anon_sym_DASH2] = ACTIONS(964), + [anon_sym_break] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_in2] = ACTIONS(964), + [anon_sym_loop] = ACTIONS(964), + [anon_sym_make] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [anon_sym_do] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_else] = ACTIONS(964), + [anon_sym_match] = ACTIONS(964), + [anon_sym_RBRACE] = ACTIONS(964), + [anon_sym_try] = ACTIONS(964), + [anon_sym_catch] = ACTIONS(964), + [anon_sym_return] = ACTIONS(964), + [anon_sym_source] = ACTIONS(964), + [anon_sym_source_DASHenv] = ACTIONS(964), + [anon_sym_hide] = ACTIONS(964), + [anon_sym_hide_DASHenv] = ACTIONS(964), + [anon_sym_overlay] = ACTIONS(964), + [anon_sym_as] = ACTIONS(964), + [anon_sym_QMARK2] = ACTIONS(964), + [anon_sym_PLUS2] = ACTIONS(964), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(964), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(964), + [aux_sym__val_number_decimal_token1] = ACTIONS(964), + [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), + [aux_sym__val_number_token4] = ACTIONS(964), + [aux_sym__val_number_token5] = ACTIONS(964), + [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(964), + [sym__entry_separator] = ACTIONS(966), + [anon_sym_register] = ACTIONS(964), + [anon_sym_DOT2] = ACTIONS(964), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(966), + }, [511] = { [sym_comment] = STATE(511), - [anon_sym_export] = ACTIONS(2015), - [anon_sym_alias] = ACTIONS(2015), - [anon_sym_let] = ACTIONS(2015), - [anon_sym_let_DASHenv] = ACTIONS(2015), - [anon_sym_mut] = ACTIONS(2015), - [anon_sym_const] = ACTIONS(2015), - [aux_sym_cmd_identifier_token1] = ACTIONS(2015), - [aux_sym_cmd_identifier_token2] = ACTIONS(2017), - [aux_sym_cmd_identifier_token3] = ACTIONS(2017), - [aux_sym_cmd_identifier_token4] = ACTIONS(2017), - [aux_sym_cmd_identifier_token5] = ACTIONS(2017), - [aux_sym_cmd_identifier_token6] = ACTIONS(2017), - [aux_sym_cmd_identifier_token7] = ACTIONS(2017), - [aux_sym_cmd_identifier_token8] = ACTIONS(2015), - [aux_sym_cmd_identifier_token9] = ACTIONS(2015), - [aux_sym_cmd_identifier_token10] = ACTIONS(2017), - [aux_sym_cmd_identifier_token11] = ACTIONS(2017), - [aux_sym_cmd_identifier_token12] = ACTIONS(2015), - [aux_sym_cmd_identifier_token13] = ACTIONS(2015), - [aux_sym_cmd_identifier_token14] = ACTIONS(2015), - [aux_sym_cmd_identifier_token15] = ACTIONS(2015), - [aux_sym_cmd_identifier_token16] = ACTIONS(2017), - [aux_sym_cmd_identifier_token17] = ACTIONS(2017), - [aux_sym_cmd_identifier_token18] = ACTIONS(2017), - [aux_sym_cmd_identifier_token19] = ACTIONS(2017), - [aux_sym_cmd_identifier_token20] = ACTIONS(2017), - [aux_sym_cmd_identifier_token21] = ACTIONS(2017), - [aux_sym_cmd_identifier_token22] = ACTIONS(2017), - [aux_sym_cmd_identifier_token23] = ACTIONS(2017), - [aux_sym_cmd_identifier_token24] = ACTIONS(2017), - [aux_sym_cmd_identifier_token25] = ACTIONS(2017), - [aux_sym_cmd_identifier_token26] = ACTIONS(2017), - [aux_sym_cmd_identifier_token27] = ACTIONS(2017), - [aux_sym_cmd_identifier_token28] = ACTIONS(2017), - [aux_sym_cmd_identifier_token29] = ACTIONS(2017), - [aux_sym_cmd_identifier_token30] = ACTIONS(2017), - [aux_sym_cmd_identifier_token31] = ACTIONS(2017), - [aux_sym_cmd_identifier_token32] = ACTIONS(2017), - [aux_sym_cmd_identifier_token33] = ACTIONS(2017), - [aux_sym_cmd_identifier_token34] = ACTIONS(2015), - [aux_sym_cmd_identifier_token35] = ACTIONS(2017), - [aux_sym_cmd_identifier_token36] = ACTIONS(2017), - [aux_sym_cmd_identifier_token37] = ACTIONS(2017), - [aux_sym_cmd_identifier_token38] = ACTIONS(2015), - [aux_sym_cmd_identifier_token39] = ACTIONS(2017), - [aux_sym_cmd_identifier_token40] = ACTIONS(2017), - [anon_sym_def] = ACTIONS(2015), - [anon_sym_export_DASHenv] = ACTIONS(2015), - [anon_sym_extern] = ACTIONS(2015), - [anon_sym_module] = ACTIONS(2015), - [anon_sym_use] = ACTIONS(2015), - [anon_sym_LPAREN] = ACTIONS(2017), - [anon_sym_COMMA] = ACTIONS(2017), - [anon_sym_DOLLAR] = ACTIONS(2015), - [anon_sym_error] = ACTIONS(2015), - [anon_sym_DASH2] = ACTIONS(2015), - [anon_sym_break] = ACTIONS(2015), - [anon_sym_continue] = ACTIONS(2015), - [anon_sym_for] = ACTIONS(2015), - [anon_sym_in2] = ACTIONS(2015), - [anon_sym_loop] = ACTIONS(2015), - [anon_sym_make] = ACTIONS(2015), - [anon_sym_while] = ACTIONS(2015), - [anon_sym_do] = ACTIONS(2015), - [anon_sym_if] = ACTIONS(2015), - [anon_sym_else] = ACTIONS(2015), - [anon_sym_match] = ACTIONS(2015), - [anon_sym_RBRACE] = ACTIONS(2017), - [anon_sym_try] = ACTIONS(2015), - [anon_sym_catch] = ACTIONS(2015), - [anon_sym_return] = ACTIONS(2015), - [anon_sym_source] = ACTIONS(2015), - [anon_sym_source_DASHenv] = ACTIONS(2015), - [anon_sym_register] = ACTIONS(2015), - [anon_sym_hide] = ACTIONS(2015), - [anon_sym_hide_DASHenv] = ACTIONS(2015), - [anon_sym_overlay] = ACTIONS(2015), - [anon_sym_as] = ACTIONS(2015), - [anon_sym_PLUS2] = ACTIONS(2015), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2017), - [anon_sym_DOT_DOT2] = ACTIONS(2015), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2017), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2017), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2017), - [aux_sym__val_number_decimal_token1] = ACTIONS(2015), - [aux_sym__val_number_decimal_token2] = ACTIONS(2017), - [aux_sym__val_number_decimal_token3] = ACTIONS(2017), - [aux_sym__val_number_decimal_token4] = ACTIONS(2017), - [aux_sym__val_number_token1] = ACTIONS(2017), - [aux_sym__val_number_token2] = ACTIONS(2017), - [aux_sym__val_number_token3] = ACTIONS(2017), - [aux_sym__val_number_token4] = ACTIONS(2015), - [aux_sym__val_number_token5] = ACTIONS(2015), - [aux_sym__val_number_token6] = ACTIONS(2015), - [anon_sym_DQUOTE] = ACTIONS(2017), - [sym__str_single_quotes] = ACTIONS(2017), - [sym__str_back_ticks] = ACTIONS(2017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2017), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2017), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2017), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2017), + [anon_sym_export] = ACTIONS(946), + [anon_sym_alias] = ACTIONS(946), + [anon_sym_let] = ACTIONS(946), + [anon_sym_let_DASHenv] = ACTIONS(946), + [anon_sym_mut] = ACTIONS(946), + [anon_sym_const] = ACTIONS(946), + [aux_sym_cmd_identifier_token1] = ACTIONS(946), + [aux_sym_cmd_identifier_token2] = ACTIONS(946), + [aux_sym_cmd_identifier_token3] = ACTIONS(946), + [aux_sym_cmd_identifier_token4] = ACTIONS(946), + [aux_sym_cmd_identifier_token5] = ACTIONS(946), + [aux_sym_cmd_identifier_token6] = ACTIONS(946), + [aux_sym_cmd_identifier_token7] = ACTIONS(946), + [aux_sym_cmd_identifier_token8] = ACTIONS(946), + [aux_sym_cmd_identifier_token9] = ACTIONS(946), + [aux_sym_cmd_identifier_token10] = ACTIONS(946), + [aux_sym_cmd_identifier_token11] = ACTIONS(946), + [aux_sym_cmd_identifier_token12] = ACTIONS(946), + [aux_sym_cmd_identifier_token13] = ACTIONS(946), + [aux_sym_cmd_identifier_token14] = ACTIONS(946), + [aux_sym_cmd_identifier_token15] = ACTIONS(946), + [aux_sym_cmd_identifier_token16] = ACTIONS(946), + [aux_sym_cmd_identifier_token17] = ACTIONS(946), + [aux_sym_cmd_identifier_token18] = ACTIONS(946), + [aux_sym_cmd_identifier_token19] = ACTIONS(946), + [aux_sym_cmd_identifier_token20] = ACTIONS(946), + [aux_sym_cmd_identifier_token21] = ACTIONS(946), + [aux_sym_cmd_identifier_token22] = ACTIONS(946), + [aux_sym_cmd_identifier_token23] = ACTIONS(946), + [aux_sym_cmd_identifier_token24] = ACTIONS(946), + [aux_sym_cmd_identifier_token25] = ACTIONS(946), + [aux_sym_cmd_identifier_token26] = ACTIONS(946), + [aux_sym_cmd_identifier_token27] = ACTIONS(946), + [aux_sym_cmd_identifier_token28] = ACTIONS(946), + [aux_sym_cmd_identifier_token29] = ACTIONS(946), + [aux_sym_cmd_identifier_token30] = ACTIONS(946), + [aux_sym_cmd_identifier_token31] = ACTIONS(946), + [aux_sym_cmd_identifier_token32] = ACTIONS(946), + [aux_sym_cmd_identifier_token33] = ACTIONS(946), + [aux_sym_cmd_identifier_token34] = ACTIONS(946), + [aux_sym_cmd_identifier_token35] = ACTIONS(946), + [aux_sym_cmd_identifier_token36] = ACTIONS(946), + [aux_sym_cmd_identifier_token37] = ACTIONS(946), + [aux_sym_cmd_identifier_token38] = ACTIONS(946), + [aux_sym_cmd_identifier_token39] = ACTIONS(946), + [aux_sym_cmd_identifier_token40] = ACTIONS(946), + [anon_sym_def] = ACTIONS(946), + [anon_sym_export_DASHenv] = ACTIONS(946), + [anon_sym_extern] = ACTIONS(946), + [anon_sym_module] = ACTIONS(946), + [anon_sym_use] = ACTIONS(946), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_COMMA] = ACTIONS(946), + [anon_sym_DOLLAR] = ACTIONS(946), + [anon_sym_error] = ACTIONS(946), + [anon_sym_DASH2] = ACTIONS(946), + [anon_sym_break] = ACTIONS(946), + [anon_sym_continue] = ACTIONS(946), + [anon_sym_for] = ACTIONS(946), + [anon_sym_in2] = ACTIONS(946), + [anon_sym_loop] = ACTIONS(946), + [anon_sym_make] = ACTIONS(946), + [anon_sym_while] = ACTIONS(946), + [anon_sym_do] = ACTIONS(946), + [anon_sym_if] = ACTIONS(946), + [anon_sym_else] = ACTIONS(946), + [anon_sym_match] = ACTIONS(946), + [anon_sym_RBRACE] = ACTIONS(946), + [anon_sym_try] = ACTIONS(946), + [anon_sym_catch] = ACTIONS(946), + [anon_sym_return] = ACTIONS(946), + [anon_sym_source] = ACTIONS(946), + [anon_sym_source_DASHenv] = ACTIONS(946), + [anon_sym_hide] = ACTIONS(946), + [anon_sym_hide_DASHenv] = ACTIONS(946), + [anon_sym_overlay] = ACTIONS(946), + [anon_sym_as] = ACTIONS(946), + [anon_sym_QMARK2] = ACTIONS(946), + [anon_sym_PLUS2] = ACTIONS(946), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(946), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(946), + [aux_sym__val_number_decimal_token1] = ACTIONS(946), + [aux_sym__val_number_decimal_token2] = ACTIONS(946), + [aux_sym__val_number_decimal_token3] = ACTIONS(946), + [aux_sym__val_number_decimal_token4] = ACTIONS(946), + [aux_sym__val_number_token1] = ACTIONS(946), + [aux_sym__val_number_token2] = ACTIONS(946), + [aux_sym__val_number_token3] = ACTIONS(946), + [aux_sym__val_number_token4] = ACTIONS(946), + [aux_sym__val_number_token5] = ACTIONS(946), + [aux_sym__val_number_token6] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(946), + [sym__str_single_quotes] = ACTIONS(946), + [sym__str_back_ticks] = ACTIONS(946), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(946), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(946), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(946), + [sym__entry_separator] = ACTIONS(948), + [anon_sym_register] = ACTIONS(946), + [anon_sym_DOT2] = ACTIONS(946), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(948), }, [512] = { [sym_comment] = STATE(512), - [anon_sym_export] = ACTIONS(2019), - [anon_sym_alias] = ACTIONS(2019), - [anon_sym_let] = ACTIONS(2019), - [anon_sym_let_DASHenv] = ACTIONS(2019), - [anon_sym_mut] = ACTIONS(2019), - [anon_sym_const] = ACTIONS(2019), - [aux_sym_cmd_identifier_token1] = ACTIONS(2019), - [aux_sym_cmd_identifier_token2] = ACTIONS(2025), - [aux_sym_cmd_identifier_token3] = ACTIONS(2025), - [aux_sym_cmd_identifier_token4] = ACTIONS(2025), - [aux_sym_cmd_identifier_token5] = ACTIONS(2025), - [aux_sym_cmd_identifier_token6] = ACTIONS(2025), - [aux_sym_cmd_identifier_token7] = ACTIONS(2025), - [aux_sym_cmd_identifier_token8] = ACTIONS(2019), - [aux_sym_cmd_identifier_token9] = ACTIONS(2019), - [aux_sym_cmd_identifier_token10] = ACTIONS(2025), - [aux_sym_cmd_identifier_token11] = ACTIONS(2025), - [aux_sym_cmd_identifier_token12] = ACTIONS(2019), - [aux_sym_cmd_identifier_token13] = ACTIONS(2019), - [aux_sym_cmd_identifier_token14] = ACTIONS(2019), - [aux_sym_cmd_identifier_token15] = ACTIONS(2019), - [aux_sym_cmd_identifier_token16] = ACTIONS(2025), - [aux_sym_cmd_identifier_token17] = ACTIONS(2025), - [aux_sym_cmd_identifier_token18] = ACTIONS(2025), - [aux_sym_cmd_identifier_token19] = ACTIONS(2025), - [aux_sym_cmd_identifier_token20] = ACTIONS(2025), - [aux_sym_cmd_identifier_token21] = ACTIONS(2025), - [aux_sym_cmd_identifier_token22] = ACTIONS(2025), - [aux_sym_cmd_identifier_token23] = ACTIONS(2025), - [aux_sym_cmd_identifier_token24] = ACTIONS(2025), - [aux_sym_cmd_identifier_token25] = ACTIONS(2025), - [aux_sym_cmd_identifier_token26] = ACTIONS(2025), - [aux_sym_cmd_identifier_token27] = ACTIONS(2025), - [aux_sym_cmd_identifier_token28] = ACTIONS(2025), - [aux_sym_cmd_identifier_token29] = ACTIONS(2025), - [aux_sym_cmd_identifier_token30] = ACTIONS(2025), - [aux_sym_cmd_identifier_token31] = ACTIONS(2025), - [aux_sym_cmd_identifier_token32] = ACTIONS(2025), - [aux_sym_cmd_identifier_token33] = ACTIONS(2025), - [aux_sym_cmd_identifier_token34] = ACTIONS(2019), - [aux_sym_cmd_identifier_token35] = ACTIONS(2025), - [aux_sym_cmd_identifier_token36] = ACTIONS(2025), - [aux_sym_cmd_identifier_token37] = ACTIONS(2025), - [aux_sym_cmd_identifier_token38] = ACTIONS(2019), - [aux_sym_cmd_identifier_token39] = ACTIONS(2025), - [aux_sym_cmd_identifier_token40] = ACTIONS(2025), - [anon_sym_def] = ACTIONS(2019), - [anon_sym_export_DASHenv] = ACTIONS(2019), - [anon_sym_extern] = ACTIONS(2019), - [anon_sym_module] = ACTIONS(2019), - [anon_sym_use] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2025), - [anon_sym_COMMA] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2019), - [anon_sym_error] = ACTIONS(2019), - [anon_sym_DASH2] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2019), - [anon_sym_continue] = ACTIONS(2019), - [anon_sym_for] = ACTIONS(2019), - [anon_sym_in2] = ACTIONS(2019), - [anon_sym_loop] = ACTIONS(2019), - [anon_sym_make] = ACTIONS(2019), - [anon_sym_while] = ACTIONS(2019), - [anon_sym_do] = ACTIONS(2019), - [anon_sym_if] = ACTIONS(2019), - [anon_sym_else] = ACTIONS(2019), - [anon_sym_match] = ACTIONS(2019), - [anon_sym_RBRACE] = ACTIONS(2025), - [anon_sym_try] = ACTIONS(2019), - [anon_sym_catch] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_source] = ACTIONS(2019), - [anon_sym_source_DASHenv] = ACTIONS(2019), - [anon_sym_register] = ACTIONS(2019), - [anon_sym_hide] = ACTIONS(2019), - [anon_sym_hide_DASHenv] = ACTIONS(2019), - [anon_sym_overlay] = ACTIONS(2019), - [anon_sym_as] = ACTIONS(2019), - [anon_sym_PLUS2] = ACTIONS(2019), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2025), - [anon_sym_DOT_DOT2] = ACTIONS(2156), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2158), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2158), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2025), - [aux_sym__val_number_decimal_token1] = ACTIONS(2019), - [aux_sym__val_number_decimal_token2] = ACTIONS(2025), - [aux_sym__val_number_decimal_token3] = ACTIONS(2025), - [aux_sym__val_number_decimal_token4] = ACTIONS(2025), - [aux_sym__val_number_token1] = ACTIONS(2025), - [aux_sym__val_number_token2] = ACTIONS(2025), - [aux_sym__val_number_token3] = ACTIONS(2025), - [aux_sym__val_number_token4] = ACTIONS(2019), - [aux_sym__val_number_token5] = ACTIONS(2019), - [aux_sym__val_number_token6] = ACTIONS(2019), - [anon_sym_DQUOTE] = ACTIONS(2025), - [sym__str_single_quotes] = ACTIONS(2025), - [sym__str_back_ticks] = ACTIONS(2025), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2025), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2025), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2025), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2025), + [anon_sym_export] = ACTIONS(1676), + [anon_sym_alias] = ACTIONS(1676), + [anon_sym_let] = ACTIONS(1676), + [anon_sym_let_DASHenv] = ACTIONS(1676), + [anon_sym_mut] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [aux_sym_cmd_identifier_token1] = ACTIONS(1676), + [aux_sym_cmd_identifier_token2] = ACTIONS(1678), + [aux_sym_cmd_identifier_token3] = ACTIONS(1678), + [aux_sym_cmd_identifier_token4] = ACTIONS(1678), + [aux_sym_cmd_identifier_token5] = ACTIONS(1678), + [aux_sym_cmd_identifier_token6] = ACTIONS(1678), + [aux_sym_cmd_identifier_token7] = ACTIONS(1678), + [aux_sym_cmd_identifier_token8] = ACTIONS(1676), + [aux_sym_cmd_identifier_token9] = ACTIONS(1676), + [aux_sym_cmd_identifier_token10] = ACTIONS(1678), + [aux_sym_cmd_identifier_token11] = ACTIONS(1678), + [aux_sym_cmd_identifier_token12] = ACTIONS(1676), + [aux_sym_cmd_identifier_token13] = ACTIONS(1676), + [aux_sym_cmd_identifier_token14] = ACTIONS(1676), + [aux_sym_cmd_identifier_token15] = ACTIONS(1676), + [aux_sym_cmd_identifier_token16] = ACTIONS(1678), + [aux_sym_cmd_identifier_token17] = ACTIONS(1678), + [aux_sym_cmd_identifier_token18] = ACTIONS(1678), + [aux_sym_cmd_identifier_token19] = ACTIONS(1678), + [aux_sym_cmd_identifier_token20] = ACTIONS(1678), + [aux_sym_cmd_identifier_token21] = ACTIONS(1678), + [aux_sym_cmd_identifier_token22] = ACTIONS(1678), + [aux_sym_cmd_identifier_token23] = ACTIONS(1678), + [aux_sym_cmd_identifier_token24] = ACTIONS(1678), + [aux_sym_cmd_identifier_token25] = ACTIONS(1678), + [aux_sym_cmd_identifier_token26] = ACTIONS(1678), + [aux_sym_cmd_identifier_token27] = ACTIONS(1678), + [aux_sym_cmd_identifier_token28] = ACTIONS(1678), + [aux_sym_cmd_identifier_token29] = ACTIONS(1678), + [aux_sym_cmd_identifier_token30] = ACTIONS(1678), + [aux_sym_cmd_identifier_token31] = ACTIONS(1678), + [aux_sym_cmd_identifier_token32] = ACTIONS(1678), + [aux_sym_cmd_identifier_token33] = ACTIONS(1678), + [aux_sym_cmd_identifier_token34] = ACTIONS(1676), + [aux_sym_cmd_identifier_token35] = ACTIONS(1678), + [aux_sym_cmd_identifier_token36] = ACTIONS(1678), + [aux_sym_cmd_identifier_token37] = ACTIONS(1678), + [aux_sym_cmd_identifier_token38] = ACTIONS(1676), + [aux_sym_cmd_identifier_token39] = ACTIONS(1678), + [aux_sym_cmd_identifier_token40] = ACTIONS(1678), + [anon_sym_def] = ACTIONS(1676), + [anon_sym_export_DASHenv] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym_module] = ACTIONS(1676), + [anon_sym_use] = ACTIONS(1676), + [anon_sym_LPAREN] = ACTIONS(1678), + [anon_sym_COMMA] = ACTIONS(1678), + [anon_sym_DOLLAR] = ACTIONS(1676), + [anon_sym_error] = ACTIONS(1676), + [anon_sym_DASH2] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_in2] = ACTIONS(1676), + [anon_sym_loop] = ACTIONS(1676), + [anon_sym_make] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_else] = ACTIONS(1676), + [anon_sym_match] = ACTIONS(1676), + [anon_sym_RBRACE] = ACTIONS(1678), + [anon_sym_try] = ACTIONS(1676), + [anon_sym_catch] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_source] = ACTIONS(1676), + [anon_sym_source_DASHenv] = ACTIONS(1676), + [anon_sym_hide] = ACTIONS(1676), + [anon_sym_hide_DASHenv] = ACTIONS(1676), + [anon_sym_overlay] = ACTIONS(1676), + [anon_sym_as] = ACTIONS(1676), + [anon_sym_PLUS2] = ACTIONS(1676), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1678), + [anon_sym_DOT_DOT2] = ACTIONS(1676), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1678), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1678), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1678), + [aux_sym__val_number_decimal_token1] = ACTIONS(1676), + [aux_sym__val_number_decimal_token2] = ACTIONS(1678), + [aux_sym__val_number_decimal_token3] = ACTIONS(1678), + [aux_sym__val_number_decimal_token4] = ACTIONS(1678), + [aux_sym__val_number_token1] = ACTIONS(1678), + [aux_sym__val_number_token2] = ACTIONS(1678), + [aux_sym__val_number_token3] = ACTIONS(1678), + [aux_sym__val_number_token4] = ACTIONS(1676), + [aux_sym__val_number_token5] = ACTIONS(1676), + [aux_sym__val_number_token6] = ACTIONS(1676), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym__str_single_quotes] = ACTIONS(1678), + [sym__str_back_ticks] = ACTIONS(1678), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1678), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1678), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1678), + [anon_sym_register] = ACTIONS(1676), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1678), }, [513] = { [sym_comment] = STATE(513), - [anon_sym_export] = ACTIONS(2027), - [anon_sym_alias] = ACTIONS(2027), - [anon_sym_let] = ACTIONS(2027), - [anon_sym_let_DASHenv] = ACTIONS(2027), - [anon_sym_mut] = ACTIONS(2027), - [anon_sym_const] = ACTIONS(2027), - [aux_sym_cmd_identifier_token1] = ACTIONS(2027), - [aux_sym_cmd_identifier_token2] = ACTIONS(2033), - [aux_sym_cmd_identifier_token3] = ACTIONS(2033), - [aux_sym_cmd_identifier_token4] = ACTIONS(2033), - [aux_sym_cmd_identifier_token5] = ACTIONS(2033), - [aux_sym_cmd_identifier_token6] = ACTIONS(2033), - [aux_sym_cmd_identifier_token7] = ACTIONS(2033), - [aux_sym_cmd_identifier_token8] = ACTIONS(2027), - [aux_sym_cmd_identifier_token9] = ACTIONS(2027), - [aux_sym_cmd_identifier_token10] = ACTIONS(2033), - [aux_sym_cmd_identifier_token11] = ACTIONS(2033), - [aux_sym_cmd_identifier_token12] = ACTIONS(2027), - [aux_sym_cmd_identifier_token13] = ACTIONS(2027), - [aux_sym_cmd_identifier_token14] = ACTIONS(2027), - [aux_sym_cmd_identifier_token15] = ACTIONS(2027), - [aux_sym_cmd_identifier_token16] = ACTIONS(2033), - [aux_sym_cmd_identifier_token17] = ACTIONS(2033), - [aux_sym_cmd_identifier_token18] = ACTIONS(2033), - [aux_sym_cmd_identifier_token19] = ACTIONS(2033), - [aux_sym_cmd_identifier_token20] = ACTIONS(2033), - [aux_sym_cmd_identifier_token21] = ACTIONS(2033), - [aux_sym_cmd_identifier_token22] = ACTIONS(2033), - [aux_sym_cmd_identifier_token23] = ACTIONS(2033), - [aux_sym_cmd_identifier_token24] = ACTIONS(2033), - [aux_sym_cmd_identifier_token25] = ACTIONS(2033), - [aux_sym_cmd_identifier_token26] = ACTIONS(2033), - [aux_sym_cmd_identifier_token27] = ACTIONS(2033), - [aux_sym_cmd_identifier_token28] = ACTIONS(2033), - [aux_sym_cmd_identifier_token29] = ACTIONS(2033), - [aux_sym_cmd_identifier_token30] = ACTIONS(2033), - [aux_sym_cmd_identifier_token31] = ACTIONS(2033), - [aux_sym_cmd_identifier_token32] = ACTIONS(2033), - [aux_sym_cmd_identifier_token33] = ACTIONS(2033), - [aux_sym_cmd_identifier_token34] = ACTIONS(2027), - [aux_sym_cmd_identifier_token35] = ACTIONS(2033), - [aux_sym_cmd_identifier_token36] = ACTIONS(2033), - [aux_sym_cmd_identifier_token37] = ACTIONS(2033), - [aux_sym_cmd_identifier_token38] = ACTIONS(2027), - [aux_sym_cmd_identifier_token39] = ACTIONS(2033), - [aux_sym_cmd_identifier_token40] = ACTIONS(2033), - [anon_sym_def] = ACTIONS(2027), - [anon_sym_export_DASHenv] = ACTIONS(2027), - [anon_sym_extern] = ACTIONS(2027), - [anon_sym_module] = ACTIONS(2027), - [anon_sym_use] = ACTIONS(2027), - [anon_sym_LPAREN] = ACTIONS(2033), - [anon_sym_COMMA] = ACTIONS(2033), - [anon_sym_DOLLAR] = ACTIONS(2027), - [anon_sym_error] = ACTIONS(2027), - [anon_sym_DASH2] = ACTIONS(2027), - [anon_sym_break] = ACTIONS(2027), - [anon_sym_continue] = ACTIONS(2027), - [anon_sym_for] = ACTIONS(2027), - [anon_sym_in2] = ACTIONS(2027), - [anon_sym_loop] = ACTIONS(2027), - [anon_sym_make] = ACTIONS(2027), - [anon_sym_while] = ACTIONS(2027), - [anon_sym_do] = ACTIONS(2027), - [anon_sym_if] = ACTIONS(2027), - [anon_sym_else] = ACTIONS(2027), - [anon_sym_match] = ACTIONS(2027), - [anon_sym_RBRACE] = ACTIONS(2033), - [anon_sym_try] = ACTIONS(2027), - [anon_sym_catch] = ACTIONS(2027), - [anon_sym_return] = ACTIONS(2027), - [anon_sym_source] = ACTIONS(2027), - [anon_sym_source_DASHenv] = ACTIONS(2027), - [anon_sym_register] = ACTIONS(2027), - [anon_sym_hide] = ACTIONS(2027), - [anon_sym_hide_DASHenv] = ACTIONS(2027), - [anon_sym_overlay] = ACTIONS(2027), - [anon_sym_as] = ACTIONS(2027), - [anon_sym_PLUS2] = ACTIONS(2027), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2033), - [anon_sym_DOT_DOT2] = ACTIONS(2160), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2162), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2162), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2033), - [aux_sym__val_number_decimal_token1] = ACTIONS(2027), - [aux_sym__val_number_decimal_token2] = ACTIONS(2033), - [aux_sym__val_number_decimal_token3] = ACTIONS(2033), - [aux_sym__val_number_decimal_token4] = ACTIONS(2033), - [aux_sym__val_number_token1] = ACTIONS(2033), - [aux_sym__val_number_token2] = ACTIONS(2033), - [aux_sym__val_number_token3] = ACTIONS(2033), - [aux_sym__val_number_token4] = ACTIONS(2027), - [aux_sym__val_number_token5] = ACTIONS(2027), - [aux_sym__val_number_token6] = ACTIONS(2027), - [anon_sym_DQUOTE] = ACTIONS(2033), - [sym__str_single_quotes] = ACTIONS(2033), - [sym__str_back_ticks] = ACTIONS(2033), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2033), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2033), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2033), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2033), + [anon_sym_export] = ACTIONS(2010), + [anon_sym_alias] = ACTIONS(2010), + [anon_sym_let] = ACTIONS(2010), + [anon_sym_let_DASHenv] = ACTIONS(2010), + [anon_sym_mut] = ACTIONS(2010), + [anon_sym_const] = ACTIONS(2010), + [aux_sym_cmd_identifier_token1] = ACTIONS(2010), + [aux_sym_cmd_identifier_token2] = ACTIONS(2012), + [aux_sym_cmd_identifier_token3] = ACTIONS(2012), + [aux_sym_cmd_identifier_token4] = ACTIONS(2012), + [aux_sym_cmd_identifier_token5] = ACTIONS(2012), + [aux_sym_cmd_identifier_token6] = ACTIONS(2012), + [aux_sym_cmd_identifier_token7] = ACTIONS(2012), + [aux_sym_cmd_identifier_token8] = ACTIONS(2010), + [aux_sym_cmd_identifier_token9] = ACTIONS(2010), + [aux_sym_cmd_identifier_token10] = ACTIONS(2012), + [aux_sym_cmd_identifier_token11] = ACTIONS(2012), + [aux_sym_cmd_identifier_token12] = ACTIONS(2010), + [aux_sym_cmd_identifier_token13] = ACTIONS(2010), + [aux_sym_cmd_identifier_token14] = ACTIONS(2010), + [aux_sym_cmd_identifier_token15] = ACTIONS(2010), + [aux_sym_cmd_identifier_token16] = ACTIONS(2012), + [aux_sym_cmd_identifier_token17] = ACTIONS(2012), + [aux_sym_cmd_identifier_token18] = ACTIONS(2012), + [aux_sym_cmd_identifier_token19] = ACTIONS(2012), + [aux_sym_cmd_identifier_token20] = ACTIONS(2012), + [aux_sym_cmd_identifier_token21] = ACTIONS(2012), + [aux_sym_cmd_identifier_token22] = ACTIONS(2012), + [aux_sym_cmd_identifier_token23] = ACTIONS(2012), + [aux_sym_cmd_identifier_token24] = ACTIONS(2012), + [aux_sym_cmd_identifier_token25] = ACTIONS(2012), + [aux_sym_cmd_identifier_token26] = ACTIONS(2012), + [aux_sym_cmd_identifier_token27] = ACTIONS(2012), + [aux_sym_cmd_identifier_token28] = ACTIONS(2012), + [aux_sym_cmd_identifier_token29] = ACTIONS(2012), + [aux_sym_cmd_identifier_token30] = ACTIONS(2012), + [aux_sym_cmd_identifier_token31] = ACTIONS(2012), + [aux_sym_cmd_identifier_token32] = ACTIONS(2012), + [aux_sym_cmd_identifier_token33] = ACTIONS(2012), + [aux_sym_cmd_identifier_token34] = ACTIONS(2010), + [aux_sym_cmd_identifier_token35] = ACTIONS(2012), + [aux_sym_cmd_identifier_token36] = ACTIONS(2012), + [aux_sym_cmd_identifier_token37] = ACTIONS(2012), + [aux_sym_cmd_identifier_token38] = ACTIONS(2010), + [aux_sym_cmd_identifier_token39] = ACTIONS(2012), + [aux_sym_cmd_identifier_token40] = ACTIONS(2012), + [anon_sym_def] = ACTIONS(2010), + [anon_sym_export_DASHenv] = ACTIONS(2010), + [anon_sym_extern] = ACTIONS(2010), + [anon_sym_module] = ACTIONS(2010), + [anon_sym_use] = ACTIONS(2010), + [anon_sym_LPAREN] = ACTIONS(2012), + [anon_sym_COMMA] = ACTIONS(2012), + [anon_sym_DOLLAR] = ACTIONS(2010), + [anon_sym_error] = ACTIONS(2010), + [anon_sym_DASH2] = ACTIONS(2010), + [anon_sym_break] = ACTIONS(2010), + [anon_sym_continue] = ACTIONS(2010), + [anon_sym_for] = ACTIONS(2010), + [anon_sym_in2] = ACTIONS(2010), + [anon_sym_loop] = ACTIONS(2010), + [anon_sym_make] = ACTIONS(2010), + [anon_sym_while] = ACTIONS(2010), + [anon_sym_do] = ACTIONS(2010), + [anon_sym_if] = ACTIONS(2010), + [anon_sym_else] = ACTIONS(2010), + [anon_sym_match] = ACTIONS(2010), + [anon_sym_RBRACE] = ACTIONS(2012), + [anon_sym_try] = ACTIONS(2010), + [anon_sym_catch] = ACTIONS(2010), + [anon_sym_return] = ACTIONS(2010), + [anon_sym_source] = ACTIONS(2010), + [anon_sym_source_DASHenv] = ACTIONS(2010), + [anon_sym_hide] = ACTIONS(2010), + [anon_sym_hide_DASHenv] = ACTIONS(2010), + [anon_sym_overlay] = ACTIONS(2010), + [anon_sym_as] = ACTIONS(2010), + [anon_sym_PLUS2] = ACTIONS(2010), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2012), + [anon_sym_DOT_DOT2] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2012), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2012), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2012), + [aux_sym__val_number_decimal_token1] = ACTIONS(2010), + [aux_sym__val_number_decimal_token2] = ACTIONS(2012), + [aux_sym__val_number_decimal_token3] = ACTIONS(2012), + [aux_sym__val_number_decimal_token4] = ACTIONS(2012), + [aux_sym__val_number_token1] = ACTIONS(2012), + [aux_sym__val_number_token2] = ACTIONS(2012), + [aux_sym__val_number_token3] = ACTIONS(2012), + [aux_sym__val_number_token4] = ACTIONS(2010), + [aux_sym__val_number_token5] = ACTIONS(2010), + [aux_sym__val_number_token6] = ACTIONS(2010), + [anon_sym_DQUOTE] = ACTIONS(2012), + [sym__str_single_quotes] = ACTIONS(2012), + [sym__str_back_ticks] = ACTIONS(2012), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2012), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2012), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2012), + [anon_sym_register] = ACTIONS(2010), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2012), }, [514] = { [sym_comment] = STATE(514), - [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(2041), - [aux_sym_cmd_identifier_token3] = ACTIONS(2041), - [aux_sym_cmd_identifier_token4] = ACTIONS(2041), - [aux_sym_cmd_identifier_token5] = ACTIONS(2041), - [aux_sym_cmd_identifier_token6] = ACTIONS(2041), - [aux_sym_cmd_identifier_token7] = ACTIONS(2041), - [aux_sym_cmd_identifier_token8] = ACTIONS(2035), - [aux_sym_cmd_identifier_token9] = ACTIONS(2035), - [aux_sym_cmd_identifier_token10] = ACTIONS(2041), - [aux_sym_cmd_identifier_token11] = ACTIONS(2041), - [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(2041), - [aux_sym_cmd_identifier_token17] = ACTIONS(2041), - [aux_sym_cmd_identifier_token18] = ACTIONS(2041), - [aux_sym_cmd_identifier_token19] = ACTIONS(2041), - [aux_sym_cmd_identifier_token20] = ACTIONS(2041), - [aux_sym_cmd_identifier_token21] = ACTIONS(2041), - [aux_sym_cmd_identifier_token22] = ACTIONS(2041), - [aux_sym_cmd_identifier_token23] = ACTIONS(2041), - [aux_sym_cmd_identifier_token24] = ACTIONS(2041), - [aux_sym_cmd_identifier_token25] = ACTIONS(2041), - [aux_sym_cmd_identifier_token26] = ACTIONS(2041), - [aux_sym_cmd_identifier_token27] = ACTIONS(2041), - [aux_sym_cmd_identifier_token28] = ACTIONS(2041), - [aux_sym_cmd_identifier_token29] = ACTIONS(2041), - [aux_sym_cmd_identifier_token30] = ACTIONS(2041), - [aux_sym_cmd_identifier_token31] = ACTIONS(2041), - [aux_sym_cmd_identifier_token32] = ACTIONS(2041), - [aux_sym_cmd_identifier_token33] = ACTIONS(2041), - [aux_sym_cmd_identifier_token34] = ACTIONS(2035), - [aux_sym_cmd_identifier_token35] = ACTIONS(2041), - [aux_sym_cmd_identifier_token36] = ACTIONS(2041), - [aux_sym_cmd_identifier_token37] = ACTIONS(2041), - [aux_sym_cmd_identifier_token38] = ACTIONS(2035), - [aux_sym_cmd_identifier_token39] = ACTIONS(2041), - [aux_sym_cmd_identifier_token40] = ACTIONS(2041), - [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(2041), - [anon_sym_COMMA] = ACTIONS(2041), - [anon_sym_DOLLAR] = ACTIONS(2035), - [anon_sym_error] = ACTIONS(2035), - [anon_sym_DASH2] = ACTIONS(2035), - [anon_sym_break] = ACTIONS(2035), - [anon_sym_continue] = ACTIONS(2035), - [anon_sym_for] = ACTIONS(2035), - [anon_sym_in2] = 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(2041), - [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_as] = ACTIONS(2035), - [anon_sym_PLUS2] = ACTIONS(2035), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2041), - [anon_sym_DOT_DOT2] = ACTIONS(2164), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2166), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2166), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2041), - [aux_sym__val_number_decimal_token1] = ACTIONS(2035), - [aux_sym__val_number_decimal_token2] = ACTIONS(2041), - [aux_sym__val_number_decimal_token3] = ACTIONS(2041), - [aux_sym__val_number_decimal_token4] = ACTIONS(2041), - [aux_sym__val_number_token1] = ACTIONS(2041), - [aux_sym__val_number_token2] = ACTIONS(2041), - [aux_sym__val_number_token3] = ACTIONS(2041), - [aux_sym__val_number_token4] = ACTIONS(2035), - [aux_sym__val_number_token5] = ACTIONS(2035), - [aux_sym__val_number_token6] = ACTIONS(2035), - [anon_sym_DQUOTE] = ACTIONS(2041), - [sym__str_single_quotes] = ACTIONS(2041), - [sym__str_back_ticks] = ACTIONS(2041), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2041), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2041), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2041), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2041), + [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(1703), + [aux_sym_cmd_identifier_token3] = ACTIONS(1703), + [aux_sym_cmd_identifier_token4] = ACTIONS(1703), + [aux_sym_cmd_identifier_token5] = ACTIONS(1703), + [aux_sym_cmd_identifier_token6] = ACTIONS(1703), + [aux_sym_cmd_identifier_token7] = ACTIONS(1703), + [aux_sym_cmd_identifier_token8] = ACTIONS(1701), + [aux_sym_cmd_identifier_token9] = ACTIONS(1701), + [aux_sym_cmd_identifier_token10] = ACTIONS(1703), + [aux_sym_cmd_identifier_token11] = ACTIONS(1703), + [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(1703), + [aux_sym_cmd_identifier_token17] = ACTIONS(1703), + [aux_sym_cmd_identifier_token18] = ACTIONS(1703), + [aux_sym_cmd_identifier_token19] = ACTIONS(1703), + [aux_sym_cmd_identifier_token20] = ACTIONS(1703), + [aux_sym_cmd_identifier_token21] = ACTIONS(1703), + [aux_sym_cmd_identifier_token22] = ACTIONS(1703), + [aux_sym_cmd_identifier_token23] = ACTIONS(1703), + [aux_sym_cmd_identifier_token24] = ACTIONS(1703), + [aux_sym_cmd_identifier_token25] = ACTIONS(1703), + [aux_sym_cmd_identifier_token26] = ACTIONS(1703), + [aux_sym_cmd_identifier_token27] = ACTIONS(1703), + [aux_sym_cmd_identifier_token28] = ACTIONS(1703), + [aux_sym_cmd_identifier_token29] = ACTIONS(1703), + [aux_sym_cmd_identifier_token30] = ACTIONS(1703), + [aux_sym_cmd_identifier_token31] = ACTIONS(1703), + [aux_sym_cmd_identifier_token32] = ACTIONS(1703), + [aux_sym_cmd_identifier_token33] = ACTIONS(1703), + [aux_sym_cmd_identifier_token34] = ACTIONS(1701), + [aux_sym_cmd_identifier_token35] = ACTIONS(1703), + [aux_sym_cmd_identifier_token36] = ACTIONS(1703), + [aux_sym_cmd_identifier_token37] = ACTIONS(1703), + [aux_sym_cmd_identifier_token38] = ACTIONS(1701), + [aux_sym_cmd_identifier_token39] = ACTIONS(1703), + [aux_sym_cmd_identifier_token40] = ACTIONS(1703), + [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_COMMA] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_error] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_in2] = 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(1703), + [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_hide] = ACTIONS(1701), + [anon_sym_hide_DASHenv] = ACTIONS(1701), + [anon_sym_overlay] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(1975), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1701), + [aux_sym__val_number_token5] = ACTIONS(1701), + [aux_sym__val_number_token6] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1701), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1703), }, [515] = { [sym_comment] = STATE(515), + [anon_sym_export] = ACTIONS(1766), + [anon_sym_alias] = ACTIONS(1766), + [anon_sym_let] = ACTIONS(1766), + [anon_sym_let_DASHenv] = ACTIONS(1766), + [anon_sym_mut] = ACTIONS(1766), + [anon_sym_const] = ACTIONS(1766), + [aux_sym_cmd_identifier_token1] = ACTIONS(1766), + [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(1766), + [aux_sym_cmd_identifier_token9] = ACTIONS(1766), + [aux_sym_cmd_identifier_token10] = ACTIONS(1768), + [aux_sym_cmd_identifier_token11] = ACTIONS(1768), + [aux_sym_cmd_identifier_token12] = ACTIONS(1766), + [aux_sym_cmd_identifier_token13] = ACTIONS(1766), + [aux_sym_cmd_identifier_token14] = ACTIONS(1766), + [aux_sym_cmd_identifier_token15] = ACTIONS(1766), + [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(1766), + [aux_sym_cmd_identifier_token35] = ACTIONS(1768), + [aux_sym_cmd_identifier_token36] = ACTIONS(1768), + [aux_sym_cmd_identifier_token37] = ACTIONS(1768), + [aux_sym_cmd_identifier_token38] = ACTIONS(1766), + [aux_sym_cmd_identifier_token39] = ACTIONS(1768), + [aux_sym_cmd_identifier_token40] = ACTIONS(1768), + [anon_sym_def] = ACTIONS(1766), + [anon_sym_export_DASHenv] = ACTIONS(1766), + [anon_sym_extern] = ACTIONS(1766), + [anon_sym_module] = ACTIONS(1766), + [anon_sym_use] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1766), + [anon_sym_COMMA] = ACTIONS(1768), + [anon_sym_DOLLAR] = ACTIONS(1766), + [anon_sym_error] = ACTIONS(1766), + [anon_sym_DASH2] = ACTIONS(1766), + [anon_sym_break] = ACTIONS(1766), + [anon_sym_continue] = ACTIONS(1766), + [anon_sym_for] = ACTIONS(1766), + [anon_sym_in2] = ACTIONS(1766), + [anon_sym_loop] = ACTIONS(1766), + [anon_sym_make] = ACTIONS(1766), + [anon_sym_while] = ACTIONS(1766), + [anon_sym_do] = ACTIONS(1766), + [anon_sym_if] = ACTIONS(1766), + [anon_sym_else] = ACTIONS(1766), + [anon_sym_match] = ACTIONS(1766), + [anon_sym_RBRACE] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1766), + [anon_sym_catch] = ACTIONS(1766), + [anon_sym_return] = ACTIONS(1766), + [anon_sym_source] = ACTIONS(1766), + [anon_sym_source_DASHenv] = ACTIONS(1766), + [anon_sym_hide] = ACTIONS(1766), + [anon_sym_hide_DASHenv] = ACTIONS(1766), + [anon_sym_overlay] = ACTIONS(1766), + [anon_sym_as] = ACTIONS(1766), + [anon_sym_LPAREN2] = ACTIONS(1768), + [anon_sym_PLUS2] = ACTIONS(1766), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1768), + [aux_sym__immediate_decimal_token2] = ACTIONS(2089), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1768), + [aux_sym__val_number_decimal_token1] = ACTIONS(1766), + [aux_sym__val_number_decimal_token2] = ACTIONS(1768), + [aux_sym__val_number_decimal_token3] = ACTIONS(1768), + [aux_sym__val_number_decimal_token4] = ACTIONS(1768), + [aux_sym__val_number_token1] = ACTIONS(1768), + [aux_sym__val_number_token2] = ACTIONS(1768), + [aux_sym__val_number_token3] = ACTIONS(1768), + [aux_sym__val_number_token4] = ACTIONS(1766), + [aux_sym__val_number_token5] = ACTIONS(1766), + [aux_sym__val_number_token6] = ACTIONS(1766), + [anon_sym_DQUOTE] = ACTIONS(1768), + [sym__str_single_quotes] = ACTIONS(1768), + [sym__str_back_ticks] = ACTIONS(1768), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1768), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1768), + [anon_sym_register] = ACTIONS(1766), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1766), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1768), + }, + [516] = { + [sym_comment] = STATE(516), + [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(1703), + [aux_sym_cmd_identifier_token3] = ACTIONS(1703), + [aux_sym_cmd_identifier_token4] = ACTIONS(1703), + [aux_sym_cmd_identifier_token5] = ACTIONS(1703), + [aux_sym_cmd_identifier_token6] = ACTIONS(1703), + [aux_sym_cmd_identifier_token7] = ACTIONS(1703), + [aux_sym_cmd_identifier_token8] = ACTIONS(1701), + [aux_sym_cmd_identifier_token9] = ACTIONS(1701), + [aux_sym_cmd_identifier_token10] = ACTIONS(1703), + [aux_sym_cmd_identifier_token11] = ACTIONS(1703), + [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(1703), + [aux_sym_cmd_identifier_token17] = ACTIONS(1703), + [aux_sym_cmd_identifier_token18] = ACTIONS(1703), + [aux_sym_cmd_identifier_token19] = ACTIONS(1703), + [aux_sym_cmd_identifier_token20] = ACTIONS(1703), + [aux_sym_cmd_identifier_token21] = ACTIONS(1703), + [aux_sym_cmd_identifier_token22] = ACTIONS(1703), + [aux_sym_cmd_identifier_token23] = ACTIONS(1703), + [aux_sym_cmd_identifier_token24] = ACTIONS(1703), + [aux_sym_cmd_identifier_token25] = ACTIONS(1703), + [aux_sym_cmd_identifier_token26] = ACTIONS(1703), + [aux_sym_cmd_identifier_token27] = ACTIONS(1703), + [aux_sym_cmd_identifier_token28] = ACTIONS(1703), + [aux_sym_cmd_identifier_token29] = ACTIONS(1703), + [aux_sym_cmd_identifier_token30] = ACTIONS(1703), + [aux_sym_cmd_identifier_token31] = ACTIONS(1703), + [aux_sym_cmd_identifier_token32] = ACTIONS(1703), + [aux_sym_cmd_identifier_token33] = ACTIONS(1703), + [aux_sym_cmd_identifier_token34] = ACTIONS(1701), + [aux_sym_cmd_identifier_token35] = ACTIONS(1703), + [aux_sym_cmd_identifier_token36] = ACTIONS(1703), + [aux_sym_cmd_identifier_token37] = ACTIONS(1703), + [aux_sym_cmd_identifier_token38] = ACTIONS(1701), + [aux_sym_cmd_identifier_token39] = ACTIONS(1703), + [aux_sym_cmd_identifier_token40] = ACTIONS(1703), + [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(1703), + [anon_sym_COMMA] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_error] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_in2] = 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(1703), + [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_hide] = ACTIONS(1701), + [anon_sym_hide_DASHenv] = ACTIONS(1701), + [anon_sym_overlay] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1701), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1703), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1701), + [aux_sym__val_number_token5] = ACTIONS(1701), + [aux_sym__val_number_token6] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1703), + }, + [517] = { + [sym_comment] = STATE(517), + [anon_sym_export] = ACTIONS(1693), + [anon_sym_alias] = ACTIONS(1693), + [anon_sym_let] = ACTIONS(1693), + [anon_sym_let_DASHenv] = ACTIONS(1693), + [anon_sym_mut] = ACTIONS(1693), + [anon_sym_const] = ACTIONS(1693), + [aux_sym_cmd_identifier_token1] = ACTIONS(1693), + [aux_sym_cmd_identifier_token2] = ACTIONS(1695), + [aux_sym_cmd_identifier_token3] = ACTIONS(1695), + [aux_sym_cmd_identifier_token4] = ACTIONS(1695), + [aux_sym_cmd_identifier_token5] = ACTIONS(1695), + [aux_sym_cmd_identifier_token6] = ACTIONS(1695), + [aux_sym_cmd_identifier_token7] = ACTIONS(1695), + [aux_sym_cmd_identifier_token8] = ACTIONS(1693), + [aux_sym_cmd_identifier_token9] = ACTIONS(1693), + [aux_sym_cmd_identifier_token10] = ACTIONS(1695), + [aux_sym_cmd_identifier_token11] = ACTIONS(1695), + [aux_sym_cmd_identifier_token12] = ACTIONS(1693), + [aux_sym_cmd_identifier_token13] = ACTIONS(1693), + [aux_sym_cmd_identifier_token14] = ACTIONS(1693), + [aux_sym_cmd_identifier_token15] = ACTIONS(1693), + [aux_sym_cmd_identifier_token16] = ACTIONS(1695), + [aux_sym_cmd_identifier_token17] = ACTIONS(1695), + [aux_sym_cmd_identifier_token18] = ACTIONS(1695), + [aux_sym_cmd_identifier_token19] = ACTIONS(1695), + [aux_sym_cmd_identifier_token20] = ACTIONS(1695), + [aux_sym_cmd_identifier_token21] = ACTIONS(1695), + [aux_sym_cmd_identifier_token22] = ACTIONS(1695), + [aux_sym_cmd_identifier_token23] = ACTIONS(1695), + [aux_sym_cmd_identifier_token24] = ACTIONS(1695), + [aux_sym_cmd_identifier_token25] = ACTIONS(1695), + [aux_sym_cmd_identifier_token26] = ACTIONS(1695), + [aux_sym_cmd_identifier_token27] = ACTIONS(1695), + [aux_sym_cmd_identifier_token28] = ACTIONS(1695), + [aux_sym_cmd_identifier_token29] = ACTIONS(1695), + [aux_sym_cmd_identifier_token30] = ACTIONS(1695), + [aux_sym_cmd_identifier_token31] = ACTIONS(1695), + [aux_sym_cmd_identifier_token32] = ACTIONS(1695), + [aux_sym_cmd_identifier_token33] = ACTIONS(1695), + [aux_sym_cmd_identifier_token34] = ACTIONS(1693), + [aux_sym_cmd_identifier_token35] = ACTIONS(1695), + [aux_sym_cmd_identifier_token36] = ACTIONS(1695), + [aux_sym_cmd_identifier_token37] = ACTIONS(1695), + [aux_sym_cmd_identifier_token38] = ACTIONS(1693), + [aux_sym_cmd_identifier_token39] = ACTIONS(1695), + [aux_sym_cmd_identifier_token40] = ACTIONS(1695), + [anon_sym_def] = ACTIONS(1693), + [anon_sym_export_DASHenv] = ACTIONS(1693), + [anon_sym_extern] = ACTIONS(1693), + [anon_sym_module] = ACTIONS(1693), + [anon_sym_use] = ACTIONS(1693), + [anon_sym_LPAREN] = ACTIONS(1695), + [anon_sym_COMMA] = ACTIONS(1695), + [anon_sym_DOLLAR] = ACTIONS(1693), + [anon_sym_error] = ACTIONS(1693), + [anon_sym_DASH2] = ACTIONS(1693), + [anon_sym_break] = ACTIONS(1693), + [anon_sym_continue] = ACTIONS(1693), + [anon_sym_for] = ACTIONS(1693), + [anon_sym_in2] = ACTIONS(1693), + [anon_sym_loop] = ACTIONS(1693), + [anon_sym_make] = ACTIONS(1693), + [anon_sym_while] = ACTIONS(1693), + [anon_sym_do] = ACTIONS(1693), + [anon_sym_if] = ACTIONS(1693), + [anon_sym_else] = ACTIONS(1693), + [anon_sym_match] = ACTIONS(1693), + [anon_sym_RBRACE] = ACTIONS(1695), + [anon_sym_try] = ACTIONS(1693), + [anon_sym_catch] = ACTIONS(1693), + [anon_sym_return] = ACTIONS(1693), + [anon_sym_source] = ACTIONS(1693), + [anon_sym_source_DASHenv] = ACTIONS(1693), + [anon_sym_hide] = ACTIONS(1693), + [anon_sym_hide_DASHenv] = ACTIONS(1693), + [anon_sym_overlay] = ACTIONS(1693), + [anon_sym_as] = ACTIONS(1693), + [anon_sym_PLUS2] = ACTIONS(1693), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1695), + [anon_sym_DOT_DOT2] = ACTIONS(1693), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1695), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1695), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1695), + [aux_sym__val_number_decimal_token1] = ACTIONS(1693), + [aux_sym__val_number_decimal_token2] = ACTIONS(1695), + [aux_sym__val_number_decimal_token3] = ACTIONS(1695), + [aux_sym__val_number_decimal_token4] = ACTIONS(1695), + [aux_sym__val_number_token1] = ACTIONS(1695), + [aux_sym__val_number_token2] = ACTIONS(1695), + [aux_sym__val_number_token3] = ACTIONS(1695), + [aux_sym__val_number_token4] = ACTIONS(1693), + [aux_sym__val_number_token5] = ACTIONS(1693), + [aux_sym__val_number_token6] = ACTIONS(1693), + [anon_sym_DQUOTE] = ACTIONS(1695), + [sym__str_single_quotes] = ACTIONS(1695), + [sym__str_back_ticks] = ACTIONS(1695), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1695), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1695), + [anon_sym_register] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1695), + }, + [518] = { + [sym_comment] = STATE(518), + [anon_sym_export] = ACTIONS(1766), + [anon_sym_alias] = ACTIONS(1766), + [anon_sym_let] = ACTIONS(1766), + [anon_sym_let_DASHenv] = ACTIONS(1766), + [anon_sym_mut] = ACTIONS(1766), + [anon_sym_const] = ACTIONS(1766), + [aux_sym_cmd_identifier_token1] = ACTIONS(1766), + [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(1766), + [aux_sym_cmd_identifier_token9] = ACTIONS(1766), + [aux_sym_cmd_identifier_token10] = ACTIONS(1768), + [aux_sym_cmd_identifier_token11] = ACTIONS(1768), + [aux_sym_cmd_identifier_token12] = ACTIONS(1766), + [aux_sym_cmd_identifier_token13] = ACTIONS(1766), + [aux_sym_cmd_identifier_token14] = ACTIONS(1766), + [aux_sym_cmd_identifier_token15] = ACTIONS(1766), + [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(1766), + [aux_sym_cmd_identifier_token35] = ACTIONS(1768), + [aux_sym_cmd_identifier_token36] = ACTIONS(1768), + [aux_sym_cmd_identifier_token37] = ACTIONS(1768), + [aux_sym_cmd_identifier_token38] = ACTIONS(1766), + [aux_sym_cmd_identifier_token39] = ACTIONS(1768), + [aux_sym_cmd_identifier_token40] = ACTIONS(1768), + [anon_sym_def] = ACTIONS(1766), + [anon_sym_export_DASHenv] = ACTIONS(1766), + [anon_sym_extern] = ACTIONS(1766), + [anon_sym_module] = ACTIONS(1766), + [anon_sym_use] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_COMMA] = ACTIONS(1768), + [anon_sym_DOLLAR] = ACTIONS(1766), + [anon_sym_error] = ACTIONS(1766), + [anon_sym_DASH2] = ACTIONS(1766), + [anon_sym_break] = ACTIONS(1766), + [anon_sym_continue] = ACTIONS(1766), + [anon_sym_for] = ACTIONS(1766), + [anon_sym_in2] = ACTIONS(1766), + [anon_sym_loop] = ACTIONS(1766), + [anon_sym_make] = ACTIONS(1766), + [anon_sym_while] = ACTIONS(1766), + [anon_sym_do] = ACTIONS(1766), + [anon_sym_if] = ACTIONS(1766), + [anon_sym_else] = ACTIONS(1766), + [anon_sym_match] = ACTIONS(1766), + [anon_sym_RBRACE] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1766), + [anon_sym_catch] = ACTIONS(1766), + [anon_sym_return] = ACTIONS(1766), + [anon_sym_source] = ACTIONS(1766), + [anon_sym_source_DASHenv] = ACTIONS(1766), + [anon_sym_hide] = ACTIONS(1766), + [anon_sym_hide_DASHenv] = ACTIONS(1766), + [anon_sym_overlay] = ACTIONS(1766), + [anon_sym_as] = ACTIONS(1766), + [anon_sym_PLUS2] = ACTIONS(1766), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1768), + [anon_sym_DOT_DOT2] = ACTIONS(1766), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1768), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1768), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1768), + [aux_sym__val_number_decimal_token1] = ACTIONS(1766), + [aux_sym__val_number_decimal_token2] = ACTIONS(1768), + [aux_sym__val_number_decimal_token3] = ACTIONS(1768), + [aux_sym__val_number_decimal_token4] = ACTIONS(1768), + [aux_sym__val_number_token1] = ACTIONS(1768), + [aux_sym__val_number_token2] = ACTIONS(1768), + [aux_sym__val_number_token3] = ACTIONS(1768), + [aux_sym__val_number_token4] = ACTIONS(1766), + [aux_sym__val_number_token5] = ACTIONS(1766), + [aux_sym__val_number_token6] = ACTIONS(1766), + [anon_sym_DQUOTE] = ACTIONS(1768), + [sym__str_single_quotes] = ACTIONS(1768), + [sym__str_back_ticks] = ACTIONS(1768), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1768), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1768), + [anon_sym_register] = ACTIONS(1766), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1768), + }, + [519] = { + [sym_comment] = STATE(519), + [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(1794), + [aux_sym_cmd_identifier_token3] = ACTIONS(1794), + [aux_sym_cmd_identifier_token4] = ACTIONS(1794), + [aux_sym_cmd_identifier_token5] = ACTIONS(1794), + [aux_sym_cmd_identifier_token6] = ACTIONS(1794), + [aux_sym_cmd_identifier_token7] = ACTIONS(1794), + [aux_sym_cmd_identifier_token8] = ACTIONS(1792), + [aux_sym_cmd_identifier_token9] = ACTIONS(1792), + [aux_sym_cmd_identifier_token10] = ACTIONS(1794), + [aux_sym_cmd_identifier_token11] = ACTIONS(1794), + [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(1794), + [aux_sym_cmd_identifier_token17] = ACTIONS(1794), + [aux_sym_cmd_identifier_token18] = ACTIONS(1794), + [aux_sym_cmd_identifier_token19] = ACTIONS(1794), + [aux_sym_cmd_identifier_token20] = ACTIONS(1794), + [aux_sym_cmd_identifier_token21] = ACTIONS(1794), + [aux_sym_cmd_identifier_token22] = ACTIONS(1794), + [aux_sym_cmd_identifier_token23] = ACTIONS(1794), + [aux_sym_cmd_identifier_token24] = ACTIONS(1794), + [aux_sym_cmd_identifier_token25] = ACTIONS(1794), + [aux_sym_cmd_identifier_token26] = ACTIONS(1794), + [aux_sym_cmd_identifier_token27] = ACTIONS(1794), + [aux_sym_cmd_identifier_token28] = ACTIONS(1794), + [aux_sym_cmd_identifier_token29] = ACTIONS(1794), + [aux_sym_cmd_identifier_token30] = ACTIONS(1794), + [aux_sym_cmd_identifier_token31] = ACTIONS(1794), + [aux_sym_cmd_identifier_token32] = ACTIONS(1794), + [aux_sym_cmd_identifier_token33] = ACTIONS(1794), + [aux_sym_cmd_identifier_token34] = ACTIONS(1792), + [aux_sym_cmd_identifier_token35] = ACTIONS(1794), + [aux_sym_cmd_identifier_token36] = ACTIONS(1794), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1794), + [anon_sym_DOLLAR] = ACTIONS(1792), + [anon_sym_error] = ACTIONS(1792), + [anon_sym_DASH2] = ACTIONS(1792), + [anon_sym_break] = ACTIONS(1792), + [anon_sym_continue] = ACTIONS(1792), + [anon_sym_for] = ACTIONS(1792), + [anon_sym_in2] = 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_hide] = ACTIONS(1792), + [anon_sym_hide_DASHenv] = ACTIONS(1792), + [anon_sym_overlay] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1792), + [anon_sym_PLUS2] = ACTIONS(1792), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1794), + [anon_sym_DOT_DOT2] = ACTIONS(1792), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1794), + [anon_sym_DOT_DOT_LT2] = 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), + [aux_sym__val_number_decimal_token3] = ACTIONS(1794), + [aux_sym__val_number_decimal_token4] = ACTIONS(1794), + [aux_sym__val_number_token1] = ACTIONS(1794), + [aux_sym__val_number_token2] = ACTIONS(1794), + [aux_sym__val_number_token3] = ACTIONS(1794), + [aux_sym__val_number_token4] = ACTIONS(1792), + [aux_sym__val_number_token5] = ACTIONS(1792), + [aux_sym__val_number_token6] = ACTIONS(1792), + [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1794), + [anon_sym_register] = ACTIONS(1792), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1794), + }, + [520] = { + [sym_comment] = STATE(520), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1701), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_error] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_in2] = 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_hide] = ACTIONS(1701), + [anon_sym_hide_DASHenv] = ACTIONS(1701), + [anon_sym_overlay] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1701), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1701), + [aux_sym__val_number_decimal_token3] = ACTIONS(1701), + [aux_sym__val_number_decimal_token4] = ACTIONS(1701), + [aux_sym__val_number_token1] = ACTIONS(1701), + [aux_sym__val_number_token2] = ACTIONS(1701), + [aux_sym__val_number_token3] = ACTIONS(1701), + [aux_sym__val_number_token4] = ACTIONS(1701), + [aux_sym__val_number_token5] = ACTIONS(1701), + [aux_sym__val_number_token6] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1701), + [sym__str_single_quotes] = ACTIONS(1701), + [sym__str_back_ticks] = ACTIONS(1701), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1701), + [sym__entry_separator] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1701), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1703), + }, + [521] = { + [sym_comment] = STATE(521), + [anon_sym_export] = ACTIONS(1693), + [anon_sym_alias] = ACTIONS(1693), + [anon_sym_let] = ACTIONS(1693), + [anon_sym_let_DASHenv] = ACTIONS(1693), + [anon_sym_mut] = ACTIONS(1693), + [anon_sym_const] = ACTIONS(1693), + [aux_sym_cmd_identifier_token1] = ACTIONS(1693), + [aux_sym_cmd_identifier_token2] = ACTIONS(1693), + [aux_sym_cmd_identifier_token3] = ACTIONS(1693), + [aux_sym_cmd_identifier_token4] = ACTIONS(1693), + [aux_sym_cmd_identifier_token5] = ACTIONS(1693), + [aux_sym_cmd_identifier_token6] = ACTIONS(1693), + [aux_sym_cmd_identifier_token7] = ACTIONS(1693), + [aux_sym_cmd_identifier_token8] = ACTIONS(1693), + [aux_sym_cmd_identifier_token9] = ACTIONS(1693), + [aux_sym_cmd_identifier_token10] = ACTIONS(1693), + [aux_sym_cmd_identifier_token11] = ACTIONS(1693), + [aux_sym_cmd_identifier_token12] = ACTIONS(1693), + [aux_sym_cmd_identifier_token13] = ACTIONS(1693), + [aux_sym_cmd_identifier_token14] = ACTIONS(1693), + [aux_sym_cmd_identifier_token15] = ACTIONS(1693), + [aux_sym_cmd_identifier_token16] = ACTIONS(1693), + [aux_sym_cmd_identifier_token17] = ACTIONS(1693), + [aux_sym_cmd_identifier_token18] = ACTIONS(1693), + [aux_sym_cmd_identifier_token19] = ACTIONS(1693), + [aux_sym_cmd_identifier_token20] = ACTIONS(1693), + [aux_sym_cmd_identifier_token21] = ACTIONS(1693), + [aux_sym_cmd_identifier_token22] = ACTIONS(1693), + [aux_sym_cmd_identifier_token23] = ACTIONS(1693), + [aux_sym_cmd_identifier_token24] = ACTIONS(1693), + [aux_sym_cmd_identifier_token25] = ACTIONS(1693), + [aux_sym_cmd_identifier_token26] = ACTIONS(1693), + [aux_sym_cmd_identifier_token27] = ACTIONS(1693), + [aux_sym_cmd_identifier_token28] = ACTIONS(1693), + [aux_sym_cmd_identifier_token29] = ACTIONS(1693), + [aux_sym_cmd_identifier_token30] = ACTIONS(1693), + [aux_sym_cmd_identifier_token31] = ACTIONS(1693), + [aux_sym_cmd_identifier_token32] = ACTIONS(1693), + [aux_sym_cmd_identifier_token33] = ACTIONS(1693), + [aux_sym_cmd_identifier_token34] = ACTIONS(1693), + [aux_sym_cmd_identifier_token35] = ACTIONS(1693), + [aux_sym_cmd_identifier_token36] = ACTIONS(1693), + [aux_sym_cmd_identifier_token37] = ACTIONS(1693), + [aux_sym_cmd_identifier_token38] = ACTIONS(1693), + [aux_sym_cmd_identifier_token39] = ACTIONS(1693), + [aux_sym_cmd_identifier_token40] = ACTIONS(1693), + [anon_sym_def] = ACTIONS(1693), + [anon_sym_export_DASHenv] = ACTIONS(1693), + [anon_sym_extern] = ACTIONS(1693), + [anon_sym_module] = ACTIONS(1693), + [anon_sym_use] = ACTIONS(1693), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_COMMA] = ACTIONS(1693), + [anon_sym_DOLLAR] = ACTIONS(1693), + [anon_sym_error] = ACTIONS(1693), + [anon_sym_DASH2] = ACTIONS(1693), + [anon_sym_break] = ACTIONS(1693), + [anon_sym_continue] = ACTIONS(1693), + [anon_sym_for] = ACTIONS(1693), + [anon_sym_in2] = ACTIONS(1693), + [anon_sym_loop] = ACTIONS(1693), + [anon_sym_make] = ACTIONS(1693), + [anon_sym_while] = ACTIONS(1693), + [anon_sym_do] = ACTIONS(1693), + [anon_sym_if] = ACTIONS(1693), + [anon_sym_else] = ACTIONS(1693), + [anon_sym_match] = ACTIONS(1693), + [anon_sym_RBRACE] = ACTIONS(1693), + [anon_sym_try] = ACTIONS(1693), + [anon_sym_catch] = ACTIONS(1693), + [anon_sym_return] = ACTIONS(1693), + [anon_sym_source] = ACTIONS(1693), + [anon_sym_source_DASHenv] = ACTIONS(1693), + [anon_sym_hide] = ACTIONS(1693), + [anon_sym_hide_DASHenv] = ACTIONS(1693), + [anon_sym_overlay] = ACTIONS(1693), + [anon_sym_as] = ACTIONS(1693), + [anon_sym_LPAREN2] = ACTIONS(1695), + [anon_sym_PLUS2] = ACTIONS(1693), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1693), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1693), + [aux_sym__val_number_decimal_token1] = ACTIONS(1693), + [aux_sym__val_number_decimal_token2] = ACTIONS(1693), + [aux_sym__val_number_decimal_token3] = ACTIONS(1693), + [aux_sym__val_number_decimal_token4] = ACTIONS(1693), + [aux_sym__val_number_token1] = ACTIONS(1693), + [aux_sym__val_number_token2] = ACTIONS(1693), + [aux_sym__val_number_token3] = ACTIONS(1693), + [aux_sym__val_number_token4] = ACTIONS(1693), + [aux_sym__val_number_token5] = ACTIONS(1693), + [aux_sym__val_number_token6] = ACTIONS(1693), + [anon_sym_DQUOTE] = ACTIONS(1693), + [sym__str_single_quotes] = ACTIONS(1693), + [sym__str_back_ticks] = ACTIONS(1693), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1693), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1693), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1693), + [sym__entry_separator] = ACTIONS(1695), + [anon_sym_register] = ACTIONS(1693), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1695), + }, + [522] = { + [sym_comment] = STATE(522), + [anon_sym_export] = ACTIONS(1766), + [anon_sym_alias] = ACTIONS(1766), + [anon_sym_let] = ACTIONS(1766), + [anon_sym_let_DASHenv] = ACTIONS(1766), + [anon_sym_mut] = ACTIONS(1766), + [anon_sym_const] = ACTIONS(1766), + [aux_sym_cmd_identifier_token1] = ACTIONS(1766), + [aux_sym_cmd_identifier_token2] = ACTIONS(1766), + [aux_sym_cmd_identifier_token3] = ACTIONS(1766), + [aux_sym_cmd_identifier_token4] = ACTIONS(1766), + [aux_sym_cmd_identifier_token5] = ACTIONS(1766), + [aux_sym_cmd_identifier_token6] = ACTIONS(1766), + [aux_sym_cmd_identifier_token7] = ACTIONS(1766), + [aux_sym_cmd_identifier_token8] = ACTIONS(1766), + [aux_sym_cmd_identifier_token9] = ACTIONS(1766), + [aux_sym_cmd_identifier_token10] = ACTIONS(1766), + [aux_sym_cmd_identifier_token11] = ACTIONS(1766), + [aux_sym_cmd_identifier_token12] = ACTIONS(1766), + [aux_sym_cmd_identifier_token13] = ACTIONS(1766), + [aux_sym_cmd_identifier_token14] = ACTIONS(1766), + [aux_sym_cmd_identifier_token15] = ACTIONS(1766), + [aux_sym_cmd_identifier_token16] = ACTIONS(1766), + [aux_sym_cmd_identifier_token17] = ACTIONS(1766), + [aux_sym_cmd_identifier_token18] = ACTIONS(1766), + [aux_sym_cmd_identifier_token19] = ACTIONS(1766), + [aux_sym_cmd_identifier_token20] = ACTIONS(1766), + [aux_sym_cmd_identifier_token21] = ACTIONS(1766), + [aux_sym_cmd_identifier_token22] = ACTIONS(1766), + [aux_sym_cmd_identifier_token23] = ACTIONS(1766), + [aux_sym_cmd_identifier_token24] = ACTIONS(1766), + [aux_sym_cmd_identifier_token25] = ACTIONS(1766), + [aux_sym_cmd_identifier_token26] = ACTIONS(1766), + [aux_sym_cmd_identifier_token27] = ACTIONS(1766), + [aux_sym_cmd_identifier_token28] = ACTIONS(1766), + [aux_sym_cmd_identifier_token29] = ACTIONS(1766), + [aux_sym_cmd_identifier_token30] = ACTIONS(1766), + [aux_sym_cmd_identifier_token31] = ACTIONS(1766), + [aux_sym_cmd_identifier_token32] = ACTIONS(1766), + [aux_sym_cmd_identifier_token33] = ACTIONS(1766), + [aux_sym_cmd_identifier_token34] = ACTIONS(1766), + [aux_sym_cmd_identifier_token35] = ACTIONS(1766), + [aux_sym_cmd_identifier_token36] = ACTIONS(1766), + [aux_sym_cmd_identifier_token37] = ACTIONS(1766), + [aux_sym_cmd_identifier_token38] = ACTIONS(1766), + [aux_sym_cmd_identifier_token39] = ACTIONS(1766), + [aux_sym_cmd_identifier_token40] = ACTIONS(1766), + [anon_sym_def] = ACTIONS(1766), + [anon_sym_export_DASHenv] = ACTIONS(1766), + [anon_sym_extern] = ACTIONS(1766), + [anon_sym_module] = ACTIONS(1766), + [anon_sym_use] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1766), + [anon_sym_COMMA] = ACTIONS(1766), + [anon_sym_DOLLAR] = ACTIONS(1766), + [anon_sym_error] = ACTIONS(1766), + [anon_sym_DASH2] = ACTIONS(1766), + [anon_sym_break] = ACTIONS(1766), + [anon_sym_continue] = ACTIONS(1766), + [anon_sym_for] = ACTIONS(1766), + [anon_sym_in2] = ACTIONS(1766), + [anon_sym_loop] = ACTIONS(1766), + [anon_sym_make] = ACTIONS(1766), + [anon_sym_while] = ACTIONS(1766), + [anon_sym_do] = ACTIONS(1766), + [anon_sym_if] = ACTIONS(1766), + [anon_sym_else] = ACTIONS(1766), + [anon_sym_match] = ACTIONS(1766), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_try] = ACTIONS(1766), + [anon_sym_catch] = ACTIONS(1766), + [anon_sym_return] = ACTIONS(1766), + [anon_sym_source] = ACTIONS(1766), + [anon_sym_source_DASHenv] = ACTIONS(1766), + [anon_sym_hide] = ACTIONS(1766), + [anon_sym_hide_DASHenv] = ACTIONS(1766), + [anon_sym_overlay] = ACTIONS(1766), + [anon_sym_as] = ACTIONS(1766), + [anon_sym_LPAREN2] = ACTIONS(1768), + [anon_sym_PLUS2] = ACTIONS(1766), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1766), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1766), + [aux_sym__val_number_decimal_token1] = ACTIONS(1766), + [aux_sym__val_number_decimal_token2] = ACTIONS(1766), + [aux_sym__val_number_decimal_token3] = ACTIONS(1766), + [aux_sym__val_number_decimal_token4] = ACTIONS(1766), + [aux_sym__val_number_token1] = ACTIONS(1766), + [aux_sym__val_number_token2] = ACTIONS(1766), + [aux_sym__val_number_token3] = ACTIONS(1766), + [aux_sym__val_number_token4] = ACTIONS(1766), + [aux_sym__val_number_token5] = ACTIONS(1766), + [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(1766), + [sym__entry_separator] = ACTIONS(1768), + [anon_sym_register] = ACTIONS(1766), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1766), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1768), + }, + [523] = { + [sym_comment] = STATE(523), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1792), + [anon_sym_DOLLAR] = ACTIONS(1792), + [anon_sym_error] = ACTIONS(1792), + [anon_sym_DASH2] = ACTIONS(1792), + [anon_sym_break] = ACTIONS(1792), + [anon_sym_continue] = ACTIONS(1792), + [anon_sym_for] = ACTIONS(1792), + [anon_sym_in2] = 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_hide] = ACTIONS(1792), + [anon_sym_hide_DASHenv] = ACTIONS(1792), + [anon_sym_overlay] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1792), + [anon_sym_LPAREN2] = ACTIONS(1794), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_decimal_token3] = ACTIONS(1792), + [aux_sym__val_number_decimal_token4] = ACTIONS(1792), + [aux_sym__val_number_token1] = ACTIONS(1792), + [aux_sym__val_number_token2] = ACTIONS(1792), + [aux_sym__val_number_token3] = ACTIONS(1792), + [aux_sym__val_number_token4] = ACTIONS(1792), + [aux_sym__val_number_token5] = ACTIONS(1792), + [aux_sym__val_number_token6] = ACTIONS(1792), + [anon_sym_DQUOTE] = ACTIONS(1792), + [sym__str_single_quotes] = ACTIONS(1792), + [sym__str_back_ticks] = ACTIONS(1792), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1792), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1792), + [sym__entry_separator] = ACTIONS(1794), + [anon_sym_register] = ACTIONS(1792), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1792), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1794), + }, + [524] = { + [sym_comment] = STATE(524), + [anon_sym_export] = ACTIONS(1693), + [anon_sym_alias] = ACTIONS(1693), + [anon_sym_let] = ACTIONS(1693), + [anon_sym_let_DASHenv] = ACTIONS(1693), + [anon_sym_mut] = ACTIONS(1693), + [anon_sym_const] = ACTIONS(1693), + [aux_sym_cmd_identifier_token1] = ACTIONS(1693), + [aux_sym_cmd_identifier_token2] = ACTIONS(1693), + [aux_sym_cmd_identifier_token3] = ACTIONS(1693), + [aux_sym_cmd_identifier_token4] = ACTIONS(1693), + [aux_sym_cmd_identifier_token5] = ACTIONS(1693), + [aux_sym_cmd_identifier_token6] = ACTIONS(1693), + [aux_sym_cmd_identifier_token7] = ACTIONS(1693), + [aux_sym_cmd_identifier_token8] = ACTIONS(1693), + [aux_sym_cmd_identifier_token9] = ACTIONS(1693), + [aux_sym_cmd_identifier_token10] = ACTIONS(1693), + [aux_sym_cmd_identifier_token11] = ACTIONS(1693), + [aux_sym_cmd_identifier_token12] = ACTIONS(1693), + [aux_sym_cmd_identifier_token13] = ACTIONS(1693), + [aux_sym_cmd_identifier_token14] = ACTIONS(1693), + [aux_sym_cmd_identifier_token15] = ACTIONS(1693), + [aux_sym_cmd_identifier_token16] = ACTIONS(1693), + [aux_sym_cmd_identifier_token17] = ACTIONS(1693), + [aux_sym_cmd_identifier_token18] = ACTIONS(1693), + [aux_sym_cmd_identifier_token19] = ACTIONS(1693), + [aux_sym_cmd_identifier_token20] = ACTIONS(1693), + [aux_sym_cmd_identifier_token21] = ACTIONS(1693), + [aux_sym_cmd_identifier_token22] = ACTIONS(1693), + [aux_sym_cmd_identifier_token23] = ACTIONS(1693), + [aux_sym_cmd_identifier_token24] = ACTIONS(1693), + [aux_sym_cmd_identifier_token25] = ACTIONS(1693), + [aux_sym_cmd_identifier_token26] = ACTIONS(1693), + [aux_sym_cmd_identifier_token27] = ACTIONS(1693), + [aux_sym_cmd_identifier_token28] = ACTIONS(1693), + [aux_sym_cmd_identifier_token29] = ACTIONS(1693), + [aux_sym_cmd_identifier_token30] = ACTIONS(1693), + [aux_sym_cmd_identifier_token31] = ACTIONS(1693), + [aux_sym_cmd_identifier_token32] = ACTIONS(1693), + [aux_sym_cmd_identifier_token33] = ACTIONS(1693), + [aux_sym_cmd_identifier_token34] = ACTIONS(1693), + [aux_sym_cmd_identifier_token35] = ACTIONS(1693), + [aux_sym_cmd_identifier_token36] = ACTIONS(1693), + [aux_sym_cmd_identifier_token37] = ACTIONS(1693), + [aux_sym_cmd_identifier_token38] = ACTIONS(1693), + [aux_sym_cmd_identifier_token39] = ACTIONS(1693), + [aux_sym_cmd_identifier_token40] = ACTIONS(1693), + [anon_sym_def] = ACTIONS(1693), + [anon_sym_export_DASHenv] = ACTIONS(1693), + [anon_sym_extern] = ACTIONS(1693), + [anon_sym_module] = ACTIONS(1693), + [anon_sym_use] = ACTIONS(1693), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_COMMA] = ACTIONS(1693), + [anon_sym_DOLLAR] = ACTIONS(1693), + [anon_sym_error] = ACTIONS(1693), + [anon_sym_DASH2] = ACTIONS(1693), + [anon_sym_break] = ACTIONS(1693), + [anon_sym_continue] = ACTIONS(1693), + [anon_sym_for] = ACTIONS(1693), + [anon_sym_in2] = ACTIONS(1693), + [anon_sym_loop] = ACTIONS(1693), + [anon_sym_make] = ACTIONS(1693), + [anon_sym_while] = ACTIONS(1693), + [anon_sym_do] = ACTIONS(1693), + [anon_sym_if] = ACTIONS(1693), + [anon_sym_else] = ACTIONS(1693), + [anon_sym_match] = ACTIONS(1693), + [anon_sym_RBRACE] = ACTIONS(1693), + [anon_sym_try] = ACTIONS(1693), + [anon_sym_catch] = ACTIONS(1693), + [anon_sym_return] = ACTIONS(1693), + [anon_sym_source] = ACTIONS(1693), + [anon_sym_source_DASHenv] = ACTIONS(1693), + [anon_sym_hide] = ACTIONS(1693), + [anon_sym_hide_DASHenv] = ACTIONS(1693), + [anon_sym_overlay] = ACTIONS(1693), + [anon_sym_as] = ACTIONS(1693), + [anon_sym_PLUS2] = ACTIONS(1693), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1693), + [aux_sym__immediate_decimal_token1] = ACTIONS(2091), + [aux_sym__immediate_decimal_token2] = ACTIONS(2093), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1693), + [aux_sym__val_number_decimal_token1] = ACTIONS(1693), + [aux_sym__val_number_decimal_token2] = ACTIONS(1693), + [aux_sym__val_number_decimal_token3] = ACTIONS(1693), + [aux_sym__val_number_decimal_token4] = ACTIONS(1693), + [aux_sym__val_number_token1] = ACTIONS(1693), + [aux_sym__val_number_token2] = ACTIONS(1693), + [aux_sym__val_number_token3] = ACTIONS(1693), + [aux_sym__val_number_token4] = ACTIONS(1693), + [aux_sym__val_number_token5] = ACTIONS(1693), + [aux_sym__val_number_token6] = ACTIONS(1693), + [anon_sym_DQUOTE] = ACTIONS(1693), + [sym__str_single_quotes] = ACTIONS(1693), + [sym__str_back_ticks] = ACTIONS(1693), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1693), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1693), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1693), + [sym__entry_separator] = ACTIONS(1695), + [anon_sym_register] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1695), + }, + [525] = { + [sym_comment] = STATE(525), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1701), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_error] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_in2] = 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_hide] = ACTIONS(1701), + [anon_sym_hide_DASHenv] = ACTIONS(1701), + [anon_sym_overlay] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1701), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1701), + [anon_sym_DOT] = ACTIONS(2095), + [aux_sym__immediate_decimal_token2] = ACTIONS(2097), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1701), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1701), + [aux_sym__val_number_decimal_token3] = ACTIONS(1701), + [aux_sym__val_number_decimal_token4] = ACTIONS(1701), + [aux_sym__val_number_token1] = ACTIONS(1701), + [aux_sym__val_number_token2] = ACTIONS(1701), + [aux_sym__val_number_token3] = ACTIONS(1701), + [aux_sym__val_number_token4] = ACTIONS(1701), + [aux_sym__val_number_token5] = ACTIONS(1701), + [aux_sym__val_number_token6] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1701), + [sym__str_single_quotes] = ACTIONS(1701), + [sym__str_back_ticks] = ACTIONS(1701), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1701), + [sym__entry_separator] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1703), + }, + [526] = { + [sym_expr_parenthesized] = STATE(4174), + [sym__spread_parenthesized] = STATE(4559), + [sym_val_range] = STATE(4561), + [sym__val_range] = STATE(7769), + [sym__val_range_with_end] = STATE(7386), + [sym__value] = STATE(4561), + [sym_val_nothing] = STATE(4602), + [sym_val_bool] = STATE(4397), + [sym__spread_variable] = STATE(4563), + [sym_val_variable] = STATE(4185), + [sym_val_number] = STATE(4602), + [sym__val_number_decimal] = STATE(3953), + [sym__val_number] = STATE(4604), + [sym_val_duration] = STATE(4602), + [sym_val_filesize] = STATE(4602), + [sym_val_binary] = STATE(4602), + [sym_val_string] = STATE(4602), + [sym__raw_str] = STATE(4059), + [sym__str_double_quotes] = STATE(4059), + [sym_val_interpolated] = STATE(4602), + [sym__inter_single_quotes] = STATE(4555), + [sym__inter_double_quotes] = STATE(4607), + [sym_val_list] = STATE(4602), + [sym__spread_list] = STATE(4559), + [sym_val_record] = STATE(4602), + [sym_val_table] = STATE(4602), + [sym_val_closure] = STATE(4602), + [sym__cmd_arg] = STATE(4564), + [sym_redirection] = STATE(4565), + [sym__flag] = STATE(4566), + [sym_short_flag] = STATE(4680), + [sym_long_flag] = STATE(4680), + [sym_unquoted] = STATE(4394), + [sym__unquoted_with_expr] = STATE(4622), + [sym__unquoted_anonymous_prefix] = STATE(6997), + [sym_comment] = STATE(526), + [sym__newline] = ACTIONS(2099), + [sym__space] = ACTIONS(2099), + [anon_sym_SEMI] = ACTIONS(2102), + [anon_sym_PIPE] = ACTIONS(2102), + [anon_sym_err_GT_PIPE] = ACTIONS(2102), + [anon_sym_out_GT_PIPE] = ACTIONS(2102), + [anon_sym_e_GT_PIPE] = ACTIONS(2102), + [anon_sym_o_GT_PIPE] = ACTIONS(2102), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2102), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2102), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2102), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2102), + [anon_sym_LBRACK] = ACTIONS(2104), + [anon_sym_LPAREN] = ACTIONS(2106), + [anon_sym_DOLLAR] = ACTIONS(2108), + [anon_sym_DASH_DASH] = ACTIONS(2110), + [anon_sym_DASH2] = ACTIONS(2112), + [anon_sym_LBRACE] = ACTIONS(2114), + [anon_sym_RBRACE] = ACTIONS(2102), + [anon_sym_DOT_DOT] = ACTIONS(2116), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2118), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2120), + [anon_sym_DOT_DOT_LT] = ACTIONS(2120), + [anon_sym_null] = ACTIONS(2122), + [anon_sym_true] = ACTIONS(2124), + [anon_sym_false] = ACTIONS(2124), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2126), + [aux_sym__val_number_decimal_token1] = ACTIONS(2128), + [aux_sym__val_number_decimal_token2] = ACTIONS(2128), + [aux_sym__val_number_decimal_token3] = ACTIONS(2130), + [aux_sym__val_number_decimal_token4] = ACTIONS(2132), + [aux_sym__val_number_token1] = ACTIONS(2134), + [aux_sym__val_number_token2] = ACTIONS(2134), + [aux_sym__val_number_token3] = ACTIONS(2134), + [aux_sym__val_number_token4] = ACTIONS(2136), + [aux_sym__val_number_token5] = ACTIONS(2136), + [aux_sym__val_number_token6] = ACTIONS(2136), + [anon_sym_0b] = ACTIONS(2138), + [anon_sym_0o] = ACTIONS(2140), + [anon_sym_0x] = ACTIONS(2140), + [sym_val_date] = ACTIONS(2142), + [anon_sym_DQUOTE] = ACTIONS(2144), + [sym__str_single_quotes] = ACTIONS(2146), + [sym__str_back_ticks] = ACTIONS(2146), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2148), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2150), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2152), + [anon_sym_COLON2] = ACTIONS(2154), + [anon_sym_err_GT] = ACTIONS(2156), + [anon_sym_out_GT] = ACTIONS(2156), + [anon_sym_e_GT] = ACTIONS(2156), + [anon_sym_o_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT] = ACTIONS(2156), + [anon_sym_err_GT_GT] = ACTIONS(2156), + [anon_sym_out_GT_GT] = ACTIONS(2156), + [anon_sym_e_GT_GT] = ACTIONS(2156), + [anon_sym_o_GT_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2156), + [aux_sym_unquoted_token1] = ACTIONS(2158), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2160), + }, + [527] = { + [sym_expr_parenthesized] = STATE(4174), + [sym__spread_parenthesized] = STATE(4559), + [sym_val_range] = STATE(4561), + [sym__val_range] = STATE(7769), + [sym__val_range_with_end] = STATE(7386), + [sym__value] = STATE(4561), + [sym_val_nothing] = STATE(4602), + [sym_val_bool] = STATE(4397), + [sym__spread_variable] = STATE(4563), + [sym_val_variable] = STATE(4185), + [sym_val_number] = STATE(4602), + [sym__val_number_decimal] = STATE(3953), + [sym__val_number] = STATE(4604), + [sym_val_duration] = STATE(4602), + [sym_val_filesize] = STATE(4602), + [sym_val_binary] = STATE(4602), + [sym_val_string] = STATE(4602), + [sym__raw_str] = STATE(4059), + [sym__str_double_quotes] = STATE(4059), + [sym_val_interpolated] = STATE(4602), + [sym__inter_single_quotes] = STATE(4555), + [sym__inter_double_quotes] = STATE(4607), + [sym_val_list] = STATE(4602), + [sym__spread_list] = STATE(4559), + [sym_val_record] = STATE(4602), + [sym_val_table] = STATE(4602), + [sym_val_closure] = STATE(4602), + [sym__cmd_arg] = STATE(4564), + [sym_redirection] = STATE(4565), + [sym__flag] = STATE(4566), + [sym_short_flag] = STATE(4680), + [sym_long_flag] = STATE(4680), + [sym_unquoted] = STATE(4394), + [sym__unquoted_with_expr] = STATE(4622), + [sym__unquoted_anonymous_prefix] = STATE(6997), + [sym_comment] = STATE(527), + [sym__newline] = ACTIONS(2102), + [sym__space] = ACTIONS(2162), + [anon_sym_SEMI] = ACTIONS(2102), + [anon_sym_PIPE] = ACTIONS(2102), + [anon_sym_err_GT_PIPE] = ACTIONS(2102), + [anon_sym_out_GT_PIPE] = ACTIONS(2102), + [anon_sym_e_GT_PIPE] = ACTIONS(2102), + [anon_sym_o_GT_PIPE] = ACTIONS(2102), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2102), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2102), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2102), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2102), + [anon_sym_LBRACK] = ACTIONS(2104), + [anon_sym_LPAREN] = ACTIONS(2106), + [anon_sym_RPAREN] = ACTIONS(2102), + [anon_sym_DOLLAR] = ACTIONS(2108), + [anon_sym_DASH_DASH] = ACTIONS(2110), + [anon_sym_DASH2] = ACTIONS(2112), + [anon_sym_LBRACE] = ACTIONS(2114), + [anon_sym_RBRACE] = ACTIONS(2102), + [anon_sym_DOT_DOT] = ACTIONS(2116), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2118), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2120), + [anon_sym_DOT_DOT_LT] = ACTIONS(2120), + [anon_sym_null] = ACTIONS(2122), + [anon_sym_true] = ACTIONS(2124), + [anon_sym_false] = ACTIONS(2124), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2126), + [aux_sym__val_number_decimal_token1] = ACTIONS(2128), + [aux_sym__val_number_decimal_token2] = ACTIONS(2128), + [aux_sym__val_number_decimal_token3] = ACTIONS(2130), + [aux_sym__val_number_decimal_token4] = ACTIONS(2132), + [aux_sym__val_number_token1] = ACTIONS(2134), + [aux_sym__val_number_token2] = ACTIONS(2134), + [aux_sym__val_number_token3] = ACTIONS(2134), + [aux_sym__val_number_token4] = ACTIONS(2136), + [aux_sym__val_number_token5] = ACTIONS(2136), + [aux_sym__val_number_token6] = ACTIONS(2136), + [anon_sym_0b] = ACTIONS(2138), + [anon_sym_0o] = ACTIONS(2140), + [anon_sym_0x] = ACTIONS(2140), + [sym_val_date] = ACTIONS(2142), + [anon_sym_DQUOTE] = ACTIONS(2144), + [sym__str_single_quotes] = ACTIONS(2146), + [sym__str_back_ticks] = ACTIONS(2146), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2148), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2150), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2152), + [anon_sym_err_GT] = ACTIONS(2156), + [anon_sym_out_GT] = ACTIONS(2156), + [anon_sym_e_GT] = ACTIONS(2156), + [anon_sym_o_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT] = ACTIONS(2156), + [anon_sym_err_GT_GT] = ACTIONS(2156), + [anon_sym_out_GT_GT] = ACTIONS(2156), + [anon_sym_e_GT_GT] = ACTIONS(2156), + [anon_sym_o_GT_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2156), + [aux_sym_unquoted_token1] = ACTIONS(2158), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2160), + }, + [528] = { + [sym_comment] = STATE(528), + [anon_sym_export] = ACTIONS(2000), + [anon_sym_alias] = ACTIONS(2000), + [anon_sym_let] = ACTIONS(2000), + [anon_sym_let_DASHenv] = ACTIONS(2000), + [anon_sym_mut] = ACTIONS(2000), + [anon_sym_const] = ACTIONS(2000), + [aux_sym_cmd_identifier_token1] = ACTIONS(2000), + [aux_sym_cmd_identifier_token2] = ACTIONS(2006), + [aux_sym_cmd_identifier_token3] = ACTIONS(2006), + [aux_sym_cmd_identifier_token4] = ACTIONS(2006), + [aux_sym_cmd_identifier_token5] = ACTIONS(2006), + [aux_sym_cmd_identifier_token6] = ACTIONS(2006), + [aux_sym_cmd_identifier_token7] = ACTIONS(2006), + [aux_sym_cmd_identifier_token8] = ACTIONS(2000), + [aux_sym_cmd_identifier_token9] = ACTIONS(2000), + [aux_sym_cmd_identifier_token10] = ACTIONS(2006), + [aux_sym_cmd_identifier_token11] = ACTIONS(2006), + [aux_sym_cmd_identifier_token12] = ACTIONS(2000), + [aux_sym_cmd_identifier_token13] = ACTIONS(2000), + [aux_sym_cmd_identifier_token14] = ACTIONS(2000), + [aux_sym_cmd_identifier_token15] = ACTIONS(2000), + [aux_sym_cmd_identifier_token16] = ACTIONS(2006), + [aux_sym_cmd_identifier_token17] = ACTIONS(2006), + [aux_sym_cmd_identifier_token18] = ACTIONS(2006), + [aux_sym_cmd_identifier_token19] = ACTIONS(2006), + [aux_sym_cmd_identifier_token20] = ACTIONS(2006), + [aux_sym_cmd_identifier_token21] = ACTIONS(2006), + [aux_sym_cmd_identifier_token22] = ACTIONS(2006), + [aux_sym_cmd_identifier_token23] = ACTIONS(2006), + [aux_sym_cmd_identifier_token24] = ACTIONS(2006), + [aux_sym_cmd_identifier_token25] = ACTIONS(2006), + [aux_sym_cmd_identifier_token26] = ACTIONS(2006), + [aux_sym_cmd_identifier_token27] = ACTIONS(2006), + [aux_sym_cmd_identifier_token28] = ACTIONS(2006), + [aux_sym_cmd_identifier_token29] = ACTIONS(2006), + [aux_sym_cmd_identifier_token30] = ACTIONS(2006), + [aux_sym_cmd_identifier_token31] = ACTIONS(2006), + [aux_sym_cmd_identifier_token32] = ACTIONS(2006), + [aux_sym_cmd_identifier_token33] = ACTIONS(2006), + [aux_sym_cmd_identifier_token34] = ACTIONS(2000), + [aux_sym_cmd_identifier_token35] = ACTIONS(2006), + [aux_sym_cmd_identifier_token36] = ACTIONS(2006), + [aux_sym_cmd_identifier_token37] = ACTIONS(2006), + [aux_sym_cmd_identifier_token38] = ACTIONS(2000), + [aux_sym_cmd_identifier_token39] = ACTIONS(2006), + [aux_sym_cmd_identifier_token40] = ACTIONS(2006), + [anon_sym_def] = ACTIONS(2000), + [anon_sym_export_DASHenv] = ACTIONS(2000), + [anon_sym_extern] = ACTIONS(2000), + [anon_sym_module] = ACTIONS(2000), + [anon_sym_use] = ACTIONS(2000), + [anon_sym_LPAREN] = ACTIONS(2006), + [anon_sym_COMMA] = ACTIONS(2006), + [anon_sym_DOLLAR] = ACTIONS(2000), + [anon_sym_error] = ACTIONS(2000), + [anon_sym_DASH2] = ACTIONS(2000), + [anon_sym_break] = ACTIONS(2000), + [anon_sym_continue] = ACTIONS(2000), + [anon_sym_for] = ACTIONS(2000), + [anon_sym_in2] = ACTIONS(2000), + [anon_sym_loop] = ACTIONS(2000), + [anon_sym_make] = ACTIONS(2000), + [anon_sym_while] = ACTIONS(2000), + [anon_sym_do] = ACTIONS(2000), + [anon_sym_if] = ACTIONS(2000), + [anon_sym_else] = ACTIONS(2000), + [anon_sym_match] = ACTIONS(2000), + [anon_sym_RBRACE] = ACTIONS(2006), + [anon_sym_try] = ACTIONS(2000), + [anon_sym_catch] = ACTIONS(2000), + [anon_sym_return] = ACTIONS(2000), + [anon_sym_source] = ACTIONS(2000), + [anon_sym_source_DASHenv] = ACTIONS(2000), + [anon_sym_hide] = ACTIONS(2000), + [anon_sym_hide_DASHenv] = ACTIONS(2000), + [anon_sym_overlay] = ACTIONS(2000), + [anon_sym_as] = ACTIONS(2000), + [anon_sym_PLUS2] = ACTIONS(2000), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2006), + [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(2006), + [aux_sym__val_number_decimal_token1] = ACTIONS(2000), + [aux_sym__val_number_decimal_token2] = ACTIONS(2006), + [aux_sym__val_number_decimal_token3] = ACTIONS(2006), + [aux_sym__val_number_decimal_token4] = ACTIONS(2006), + [aux_sym__val_number_token1] = ACTIONS(2006), + [aux_sym__val_number_token2] = ACTIONS(2006), + [aux_sym__val_number_token3] = ACTIONS(2006), + [aux_sym__val_number_token4] = ACTIONS(2000), + [aux_sym__val_number_token5] = ACTIONS(2000), + [aux_sym__val_number_token6] = ACTIONS(2000), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym__str_single_quotes] = ACTIONS(2006), + [sym__str_back_ticks] = ACTIONS(2006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2006), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2006), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2006), + [anon_sym_register] = ACTIONS(2000), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2006), + }, + [529] = { + [sym_comment] = STATE(529), + [anon_sym_export] = ACTIONS(2014), + [anon_sym_alias] = ACTIONS(2014), + [anon_sym_let] = ACTIONS(2014), + [anon_sym_let_DASHenv] = ACTIONS(2014), + [anon_sym_mut] = ACTIONS(2014), + [anon_sym_const] = ACTIONS(2014), + [aux_sym_cmd_identifier_token1] = ACTIONS(2014), + [aux_sym_cmd_identifier_token2] = ACTIONS(2016), + [aux_sym_cmd_identifier_token3] = ACTIONS(2016), + [aux_sym_cmd_identifier_token4] = ACTIONS(2016), + [aux_sym_cmd_identifier_token5] = ACTIONS(2016), + [aux_sym_cmd_identifier_token6] = ACTIONS(2016), + [aux_sym_cmd_identifier_token7] = ACTIONS(2016), + [aux_sym_cmd_identifier_token8] = ACTIONS(2014), + [aux_sym_cmd_identifier_token9] = ACTIONS(2014), + [aux_sym_cmd_identifier_token10] = ACTIONS(2016), + [aux_sym_cmd_identifier_token11] = ACTIONS(2016), + [aux_sym_cmd_identifier_token12] = ACTIONS(2014), + [aux_sym_cmd_identifier_token13] = ACTIONS(2014), + [aux_sym_cmd_identifier_token14] = ACTIONS(2014), + [aux_sym_cmd_identifier_token15] = ACTIONS(2014), + [aux_sym_cmd_identifier_token16] = ACTIONS(2016), + [aux_sym_cmd_identifier_token17] = ACTIONS(2016), + [aux_sym_cmd_identifier_token18] = ACTIONS(2016), + [aux_sym_cmd_identifier_token19] = ACTIONS(2016), + [aux_sym_cmd_identifier_token20] = ACTIONS(2016), + [aux_sym_cmd_identifier_token21] = ACTIONS(2016), + [aux_sym_cmd_identifier_token22] = ACTIONS(2016), + [aux_sym_cmd_identifier_token23] = ACTIONS(2016), + [aux_sym_cmd_identifier_token24] = ACTIONS(2016), + [aux_sym_cmd_identifier_token25] = ACTIONS(2016), + [aux_sym_cmd_identifier_token26] = ACTIONS(2016), + [aux_sym_cmd_identifier_token27] = ACTIONS(2016), + [aux_sym_cmd_identifier_token28] = ACTIONS(2016), + [aux_sym_cmd_identifier_token29] = ACTIONS(2016), + [aux_sym_cmd_identifier_token30] = ACTIONS(2016), + [aux_sym_cmd_identifier_token31] = ACTIONS(2016), + [aux_sym_cmd_identifier_token32] = ACTIONS(2016), + [aux_sym_cmd_identifier_token33] = ACTIONS(2016), + [aux_sym_cmd_identifier_token34] = ACTIONS(2014), + [aux_sym_cmd_identifier_token35] = ACTIONS(2016), + [aux_sym_cmd_identifier_token36] = ACTIONS(2016), + [aux_sym_cmd_identifier_token37] = ACTIONS(2016), + [aux_sym_cmd_identifier_token38] = ACTIONS(2014), + [aux_sym_cmd_identifier_token39] = ACTIONS(2016), + [aux_sym_cmd_identifier_token40] = ACTIONS(2016), + [anon_sym_def] = ACTIONS(2014), + [anon_sym_export_DASHenv] = ACTIONS(2014), + [anon_sym_extern] = ACTIONS(2014), + [anon_sym_module] = ACTIONS(2014), + [anon_sym_use] = ACTIONS(2014), + [anon_sym_LPAREN] = ACTIONS(2016), + [anon_sym_COMMA] = ACTIONS(2016), + [anon_sym_DOLLAR] = ACTIONS(2014), + [anon_sym_error] = ACTIONS(2014), + [anon_sym_DASH2] = ACTIONS(2014), + [anon_sym_break] = ACTIONS(2014), + [anon_sym_continue] = ACTIONS(2014), + [anon_sym_for] = ACTIONS(2014), + [anon_sym_in2] = ACTIONS(2014), + [anon_sym_loop] = ACTIONS(2014), + [anon_sym_make] = ACTIONS(2014), + [anon_sym_while] = ACTIONS(2014), + [anon_sym_do] = ACTIONS(2014), + [anon_sym_if] = ACTIONS(2014), + [anon_sym_else] = ACTIONS(2014), + [anon_sym_match] = ACTIONS(2014), + [anon_sym_RBRACE] = ACTIONS(2016), + [anon_sym_try] = ACTIONS(2014), + [anon_sym_catch] = ACTIONS(2014), + [anon_sym_return] = ACTIONS(2014), + [anon_sym_source] = ACTIONS(2014), + [anon_sym_source_DASHenv] = ACTIONS(2014), + [anon_sym_hide] = ACTIONS(2014), + [anon_sym_hide_DASHenv] = ACTIONS(2014), + [anon_sym_overlay] = ACTIONS(2014), + [anon_sym_as] = ACTIONS(2014), + [anon_sym_PLUS2] = ACTIONS(2014), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2016), + [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(2016), + [aux_sym__val_number_decimal_token1] = ACTIONS(2014), + [aux_sym__val_number_decimal_token2] = ACTIONS(2016), + [aux_sym__val_number_decimal_token3] = ACTIONS(2016), + [aux_sym__val_number_decimal_token4] = ACTIONS(2016), + [aux_sym__val_number_token1] = ACTIONS(2016), + [aux_sym__val_number_token2] = ACTIONS(2016), + [aux_sym__val_number_token3] = ACTIONS(2016), + [aux_sym__val_number_token4] = ACTIONS(2014), + [aux_sym__val_number_token5] = ACTIONS(2014), + [aux_sym__val_number_token6] = ACTIONS(2014), + [anon_sym_DQUOTE] = ACTIONS(2016), + [sym__str_single_quotes] = ACTIONS(2016), + [sym__str_back_ticks] = ACTIONS(2016), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2016), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2016), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2016), + [anon_sym_register] = ACTIONS(2014), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2016), + }, + [530] = { + [sym_comment] = STATE(530), + [anon_sym_export] = ACTIONS(2018), + [anon_sym_alias] = ACTIONS(2018), + [anon_sym_let] = ACTIONS(2018), + [anon_sym_let_DASHenv] = ACTIONS(2018), + [anon_sym_mut] = ACTIONS(2018), + [anon_sym_const] = ACTIONS(2018), + [aux_sym_cmd_identifier_token1] = ACTIONS(2018), + [aux_sym_cmd_identifier_token2] = ACTIONS(2020), + [aux_sym_cmd_identifier_token3] = ACTIONS(2020), + [aux_sym_cmd_identifier_token4] = ACTIONS(2020), + [aux_sym_cmd_identifier_token5] = ACTIONS(2020), + [aux_sym_cmd_identifier_token6] = ACTIONS(2020), + [aux_sym_cmd_identifier_token7] = ACTIONS(2020), + [aux_sym_cmd_identifier_token8] = ACTIONS(2018), + [aux_sym_cmd_identifier_token9] = ACTIONS(2018), + [aux_sym_cmd_identifier_token10] = ACTIONS(2020), + [aux_sym_cmd_identifier_token11] = ACTIONS(2020), + [aux_sym_cmd_identifier_token12] = ACTIONS(2018), + [aux_sym_cmd_identifier_token13] = ACTIONS(2018), + [aux_sym_cmd_identifier_token14] = ACTIONS(2018), + [aux_sym_cmd_identifier_token15] = ACTIONS(2018), + [aux_sym_cmd_identifier_token16] = ACTIONS(2020), + [aux_sym_cmd_identifier_token17] = ACTIONS(2020), + [aux_sym_cmd_identifier_token18] = ACTIONS(2020), + [aux_sym_cmd_identifier_token19] = ACTIONS(2020), + [aux_sym_cmd_identifier_token20] = ACTIONS(2020), + [aux_sym_cmd_identifier_token21] = ACTIONS(2020), + [aux_sym_cmd_identifier_token22] = ACTIONS(2020), + [aux_sym_cmd_identifier_token23] = ACTIONS(2020), + [aux_sym_cmd_identifier_token24] = ACTIONS(2020), + [aux_sym_cmd_identifier_token25] = ACTIONS(2020), + [aux_sym_cmd_identifier_token26] = ACTIONS(2020), + [aux_sym_cmd_identifier_token27] = ACTIONS(2020), + [aux_sym_cmd_identifier_token28] = ACTIONS(2020), + [aux_sym_cmd_identifier_token29] = ACTIONS(2020), + [aux_sym_cmd_identifier_token30] = ACTIONS(2020), + [aux_sym_cmd_identifier_token31] = ACTIONS(2020), + [aux_sym_cmd_identifier_token32] = ACTIONS(2020), + [aux_sym_cmd_identifier_token33] = ACTIONS(2020), + [aux_sym_cmd_identifier_token34] = ACTIONS(2018), + [aux_sym_cmd_identifier_token35] = ACTIONS(2020), + [aux_sym_cmd_identifier_token36] = ACTIONS(2020), + [aux_sym_cmd_identifier_token37] = ACTIONS(2020), + [aux_sym_cmd_identifier_token38] = ACTIONS(2018), + [aux_sym_cmd_identifier_token39] = ACTIONS(2020), + [aux_sym_cmd_identifier_token40] = ACTIONS(2020), + [anon_sym_def] = ACTIONS(2018), + [anon_sym_export_DASHenv] = ACTIONS(2018), + [anon_sym_extern] = ACTIONS(2018), + [anon_sym_module] = ACTIONS(2018), + [anon_sym_use] = ACTIONS(2018), + [anon_sym_LPAREN] = ACTIONS(2020), + [anon_sym_COMMA] = ACTIONS(2020), + [anon_sym_DOLLAR] = ACTIONS(2018), + [anon_sym_error] = ACTIONS(2018), + [anon_sym_DASH2] = ACTIONS(2018), + [anon_sym_break] = ACTIONS(2018), + [anon_sym_continue] = ACTIONS(2018), + [anon_sym_for] = ACTIONS(2018), + [anon_sym_in2] = ACTIONS(2018), + [anon_sym_loop] = ACTIONS(2018), + [anon_sym_make] = ACTIONS(2018), + [anon_sym_while] = ACTIONS(2018), + [anon_sym_do] = ACTIONS(2018), + [anon_sym_if] = ACTIONS(2018), + [anon_sym_else] = ACTIONS(2018), + [anon_sym_match] = ACTIONS(2018), + [anon_sym_RBRACE] = ACTIONS(2020), + [anon_sym_try] = ACTIONS(2018), + [anon_sym_catch] = ACTIONS(2018), + [anon_sym_return] = ACTIONS(2018), + [anon_sym_source] = ACTIONS(2018), + [anon_sym_source_DASHenv] = ACTIONS(2018), + [anon_sym_hide] = ACTIONS(2018), + [anon_sym_hide_DASHenv] = ACTIONS(2018), + [anon_sym_overlay] = ACTIONS(2018), + [anon_sym_as] = ACTIONS(2018), + [anon_sym_PLUS2] = ACTIONS(2018), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2020), + [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(2020), + [aux_sym__val_number_decimal_token1] = ACTIONS(2018), + [aux_sym__val_number_decimal_token2] = ACTIONS(2020), + [aux_sym__val_number_decimal_token3] = ACTIONS(2020), + [aux_sym__val_number_decimal_token4] = ACTIONS(2020), + [aux_sym__val_number_token1] = ACTIONS(2020), + [aux_sym__val_number_token2] = ACTIONS(2020), + [aux_sym__val_number_token3] = ACTIONS(2020), + [aux_sym__val_number_token4] = ACTIONS(2018), + [aux_sym__val_number_token5] = ACTIONS(2018), + [aux_sym__val_number_token6] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2020), + [sym__str_single_quotes] = ACTIONS(2020), + [sym__str_back_ticks] = ACTIONS(2020), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2020), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2020), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2020), + [anon_sym_register] = ACTIONS(2018), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2020), + }, + [531] = { + [sym__expr_parenthesized_immediate] = STATE(7304), + [sym_comment] = STATE(531), + [anon_sym_export] = ACTIONS(2000), + [anon_sym_alias] = ACTIONS(2000), + [anon_sym_let] = ACTIONS(2000), + [anon_sym_let_DASHenv] = ACTIONS(2000), + [anon_sym_mut] = ACTIONS(2000), + [anon_sym_const] = ACTIONS(2000), + [aux_sym_cmd_identifier_token1] = ACTIONS(2000), + [aux_sym_cmd_identifier_token2] = ACTIONS(2000), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [aux_sym_cmd_identifier_token6] = ACTIONS(2000), + [aux_sym_cmd_identifier_token7] = ACTIONS(2000), + [aux_sym_cmd_identifier_token8] = ACTIONS(2000), + [aux_sym_cmd_identifier_token9] = ACTIONS(2000), + [aux_sym_cmd_identifier_token10] = ACTIONS(2000), + [aux_sym_cmd_identifier_token11] = ACTIONS(2000), + [aux_sym_cmd_identifier_token12] = ACTIONS(2000), + [aux_sym_cmd_identifier_token13] = ACTIONS(2000), + [aux_sym_cmd_identifier_token14] = ACTIONS(2000), + [aux_sym_cmd_identifier_token15] = ACTIONS(2000), + [aux_sym_cmd_identifier_token16] = ACTIONS(2000), + [aux_sym_cmd_identifier_token17] = ACTIONS(2000), + [aux_sym_cmd_identifier_token18] = ACTIONS(2000), + [aux_sym_cmd_identifier_token19] = ACTIONS(2000), + [aux_sym_cmd_identifier_token20] = ACTIONS(2000), + [aux_sym_cmd_identifier_token21] = ACTIONS(2000), + [aux_sym_cmd_identifier_token22] = ACTIONS(2000), + [aux_sym_cmd_identifier_token23] = ACTIONS(2000), + [aux_sym_cmd_identifier_token24] = ACTIONS(2000), + [aux_sym_cmd_identifier_token25] = ACTIONS(2000), + [aux_sym_cmd_identifier_token26] = ACTIONS(2000), + [aux_sym_cmd_identifier_token27] = ACTIONS(2000), + [aux_sym_cmd_identifier_token28] = ACTIONS(2000), + [aux_sym_cmd_identifier_token29] = ACTIONS(2000), + [aux_sym_cmd_identifier_token30] = ACTIONS(2000), + [aux_sym_cmd_identifier_token31] = ACTIONS(2000), + [aux_sym_cmd_identifier_token32] = ACTIONS(2000), + [aux_sym_cmd_identifier_token33] = ACTIONS(2000), + [aux_sym_cmd_identifier_token34] = ACTIONS(2000), + [aux_sym_cmd_identifier_token35] = ACTIONS(2000), + [aux_sym_cmd_identifier_token36] = ACTIONS(2000), + [aux_sym_cmd_identifier_token37] = ACTIONS(2000), + [aux_sym_cmd_identifier_token38] = ACTIONS(2000), + [aux_sym_cmd_identifier_token39] = ACTIONS(2000), + [aux_sym_cmd_identifier_token40] = ACTIONS(2000), + [anon_sym_def] = ACTIONS(2000), + [anon_sym_export_DASHenv] = ACTIONS(2000), + [anon_sym_extern] = ACTIONS(2000), + [anon_sym_module] = ACTIONS(2000), + [anon_sym_use] = ACTIONS(2000), + [anon_sym_LPAREN] = ACTIONS(2000), + [anon_sym_COMMA] = ACTIONS(2000), + [anon_sym_DOLLAR] = ACTIONS(2000), + [anon_sym_error] = ACTIONS(2000), + [anon_sym_DASH2] = ACTIONS(2000), + [anon_sym_break] = ACTIONS(2000), + [anon_sym_continue] = ACTIONS(2000), + [anon_sym_for] = ACTIONS(2000), + [anon_sym_in2] = ACTIONS(2000), + [anon_sym_loop] = ACTIONS(2000), + [anon_sym_make] = ACTIONS(2000), + [anon_sym_while] = ACTIONS(2000), + [anon_sym_do] = ACTIONS(2000), + [anon_sym_if] = ACTIONS(2000), + [anon_sym_else] = ACTIONS(2000), + [anon_sym_match] = ACTIONS(2000), + [anon_sym_RBRACE] = ACTIONS(2000), + [anon_sym_try] = ACTIONS(2000), + [anon_sym_catch] = ACTIONS(2000), + [anon_sym_return] = ACTIONS(2000), + [anon_sym_source] = ACTIONS(2000), + [anon_sym_source_DASHenv] = ACTIONS(2000), + [anon_sym_hide] = ACTIONS(2000), + [anon_sym_hide_DASHenv] = ACTIONS(2000), + [anon_sym_overlay] = ACTIONS(2000), + [anon_sym_as] = ACTIONS(2000), + [anon_sym_LPAREN2] = ACTIONS(1641), + [anon_sym_PLUS2] = ACTIONS(2000), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2000), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2000), + [aux_sym__val_number_decimal_token1] = ACTIONS(2000), + [aux_sym__val_number_decimal_token2] = ACTIONS(2000), + [aux_sym__val_number_decimal_token3] = ACTIONS(2000), + [aux_sym__val_number_decimal_token4] = ACTIONS(2000), + [aux_sym__val_number_token1] = ACTIONS(2000), + [aux_sym__val_number_token2] = ACTIONS(2000), + [aux_sym__val_number_token3] = ACTIONS(2000), + [aux_sym__val_number_token4] = ACTIONS(2000), + [aux_sym__val_number_token5] = ACTIONS(2000), + [aux_sym__val_number_token6] = ACTIONS(2000), + [anon_sym_DQUOTE] = ACTIONS(2000), + [sym__str_single_quotes] = ACTIONS(2000), + [sym__str_back_ticks] = ACTIONS(2000), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2000), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2000), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2000), + [sym__entry_separator] = ACTIONS(2006), + [anon_sym_register] = ACTIONS(2000), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2006), + }, + [532] = { + [sym_comment] = STATE(532), + [anon_sym_export] = ACTIONS(1806), + [anon_sym_alias] = ACTIONS(1806), + [anon_sym_let] = ACTIONS(1806), + [anon_sym_let_DASHenv] = ACTIONS(1806), + [anon_sym_mut] = ACTIONS(1806), + [anon_sym_const] = ACTIONS(1806), + [aux_sym_cmd_identifier_token1] = ACTIONS(1806), + [aux_sym_cmd_identifier_token2] = ACTIONS(1806), + [aux_sym_cmd_identifier_token3] = ACTIONS(1806), + [aux_sym_cmd_identifier_token4] = ACTIONS(1806), + [aux_sym_cmd_identifier_token5] = ACTIONS(1806), + [aux_sym_cmd_identifier_token6] = ACTIONS(1806), + [aux_sym_cmd_identifier_token7] = ACTIONS(1806), + [aux_sym_cmd_identifier_token8] = ACTIONS(1806), + [aux_sym_cmd_identifier_token9] = ACTIONS(1806), + [aux_sym_cmd_identifier_token10] = ACTIONS(1806), + [aux_sym_cmd_identifier_token11] = ACTIONS(1806), + [aux_sym_cmd_identifier_token12] = ACTIONS(1806), + [aux_sym_cmd_identifier_token13] = ACTIONS(1806), + [aux_sym_cmd_identifier_token14] = ACTIONS(1806), + [aux_sym_cmd_identifier_token15] = ACTIONS(1806), + [aux_sym_cmd_identifier_token16] = ACTIONS(1806), + [aux_sym_cmd_identifier_token17] = ACTIONS(1806), + [aux_sym_cmd_identifier_token18] = ACTIONS(1806), + [aux_sym_cmd_identifier_token19] = ACTIONS(1806), + [aux_sym_cmd_identifier_token20] = ACTIONS(1806), + [aux_sym_cmd_identifier_token21] = ACTIONS(1806), + [aux_sym_cmd_identifier_token22] = ACTIONS(1806), + [aux_sym_cmd_identifier_token23] = ACTIONS(1806), + [aux_sym_cmd_identifier_token24] = ACTIONS(1806), + [aux_sym_cmd_identifier_token25] = ACTIONS(1806), + [aux_sym_cmd_identifier_token26] = ACTIONS(1806), + [aux_sym_cmd_identifier_token27] = ACTIONS(1806), + [aux_sym_cmd_identifier_token28] = ACTIONS(1806), + [aux_sym_cmd_identifier_token29] = ACTIONS(1806), + [aux_sym_cmd_identifier_token30] = ACTIONS(1806), + [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(1806), + [aux_sym_cmd_identifier_token37] = ACTIONS(1806), + [aux_sym_cmd_identifier_token38] = ACTIONS(1806), + [aux_sym_cmd_identifier_token39] = ACTIONS(1806), + [aux_sym_cmd_identifier_token40] = ACTIONS(1806), + [anon_sym_def] = ACTIONS(1806), + [anon_sym_export_DASHenv] = ACTIONS(1806), + [anon_sym_extern] = ACTIONS(1806), + [anon_sym_module] = ACTIONS(1806), + [anon_sym_use] = ACTIONS(1806), + [anon_sym_LPAREN] = ACTIONS(1806), + [anon_sym_COMMA] = ACTIONS(1806), + [anon_sym_DOLLAR] = ACTIONS(1806), + [anon_sym_error] = ACTIONS(1806), + [anon_sym_DASH2] = ACTIONS(1806), + [anon_sym_break] = ACTIONS(1806), + [anon_sym_continue] = ACTIONS(1806), + [anon_sym_for] = ACTIONS(1806), + [anon_sym_in2] = ACTIONS(1806), + [anon_sym_loop] = ACTIONS(1806), + [anon_sym_make] = ACTIONS(1806), + [anon_sym_while] = ACTIONS(1806), + [anon_sym_do] = ACTIONS(1806), + [anon_sym_if] = ACTIONS(1806), + [anon_sym_else] = ACTIONS(1806), + [anon_sym_match] = ACTIONS(1806), + [anon_sym_RBRACE] = ACTIONS(1806), + [anon_sym_try] = ACTIONS(1806), + [anon_sym_catch] = ACTIONS(1806), + [anon_sym_return] = ACTIONS(1806), + [anon_sym_source] = ACTIONS(1806), + [anon_sym_source_DASHenv] = ACTIONS(1806), + [anon_sym_hide] = ACTIONS(1806), + [anon_sym_hide_DASHenv] = ACTIONS(1806), + [anon_sym_overlay] = ACTIONS(1806), + [anon_sym_as] = ACTIONS(1806), + [anon_sym_LPAREN2] = ACTIONS(1808), + [anon_sym_PLUS2] = ACTIONS(1806), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1806), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1806), + [aux_sym__val_number_decimal_token1] = ACTIONS(1806), + [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), + [aux_sym__val_number_token4] = ACTIONS(1806), + [aux_sym__val_number_token5] = ACTIONS(1806), + [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(1806), + [sym__entry_separator] = ACTIONS(1814), + [anon_sym_register] = ACTIONS(1806), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1457), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1814), + }, + [533] = { + [sym__expr_parenthesized_immediate] = STATE(7304), + [sym_comment] = STATE(533), + [anon_sym_export] = ACTIONS(2014), + [anon_sym_alias] = ACTIONS(2014), + [anon_sym_let] = ACTIONS(2014), + [anon_sym_let_DASHenv] = ACTIONS(2014), + [anon_sym_mut] = ACTIONS(2014), + [anon_sym_const] = ACTIONS(2014), + [aux_sym_cmd_identifier_token1] = ACTIONS(2014), + [aux_sym_cmd_identifier_token2] = ACTIONS(2014), + [aux_sym_cmd_identifier_token3] = ACTIONS(2014), + [aux_sym_cmd_identifier_token4] = ACTIONS(2014), + [aux_sym_cmd_identifier_token5] = ACTIONS(2014), + [aux_sym_cmd_identifier_token6] = ACTIONS(2014), + [aux_sym_cmd_identifier_token7] = ACTIONS(2014), + [aux_sym_cmd_identifier_token8] = ACTIONS(2014), + [aux_sym_cmd_identifier_token9] = ACTIONS(2014), + [aux_sym_cmd_identifier_token10] = ACTIONS(2014), + [aux_sym_cmd_identifier_token11] = ACTIONS(2014), + [aux_sym_cmd_identifier_token12] = ACTIONS(2014), + [aux_sym_cmd_identifier_token13] = ACTIONS(2014), + [aux_sym_cmd_identifier_token14] = ACTIONS(2014), + [aux_sym_cmd_identifier_token15] = ACTIONS(2014), + [aux_sym_cmd_identifier_token16] = ACTIONS(2014), + [aux_sym_cmd_identifier_token17] = ACTIONS(2014), + [aux_sym_cmd_identifier_token18] = ACTIONS(2014), + [aux_sym_cmd_identifier_token19] = ACTIONS(2014), + [aux_sym_cmd_identifier_token20] = ACTIONS(2014), + [aux_sym_cmd_identifier_token21] = ACTIONS(2014), + [aux_sym_cmd_identifier_token22] = ACTIONS(2014), + [aux_sym_cmd_identifier_token23] = ACTIONS(2014), + [aux_sym_cmd_identifier_token24] = ACTIONS(2014), + [aux_sym_cmd_identifier_token25] = ACTIONS(2014), + [aux_sym_cmd_identifier_token26] = ACTIONS(2014), + [aux_sym_cmd_identifier_token27] = ACTIONS(2014), + [aux_sym_cmd_identifier_token28] = ACTIONS(2014), + [aux_sym_cmd_identifier_token29] = ACTIONS(2014), + [aux_sym_cmd_identifier_token30] = ACTIONS(2014), + [aux_sym_cmd_identifier_token31] = ACTIONS(2014), + [aux_sym_cmd_identifier_token32] = ACTIONS(2014), + [aux_sym_cmd_identifier_token33] = ACTIONS(2014), + [aux_sym_cmd_identifier_token34] = ACTIONS(2014), + [aux_sym_cmd_identifier_token35] = ACTIONS(2014), + [aux_sym_cmd_identifier_token36] = ACTIONS(2014), + [aux_sym_cmd_identifier_token37] = ACTIONS(2014), + [aux_sym_cmd_identifier_token38] = ACTIONS(2014), + [aux_sym_cmd_identifier_token39] = ACTIONS(2014), + [aux_sym_cmd_identifier_token40] = ACTIONS(2014), + [anon_sym_def] = ACTIONS(2014), + [anon_sym_export_DASHenv] = ACTIONS(2014), + [anon_sym_extern] = ACTIONS(2014), + [anon_sym_module] = ACTIONS(2014), + [anon_sym_use] = ACTIONS(2014), + [anon_sym_LPAREN] = ACTIONS(2014), + [anon_sym_COMMA] = ACTIONS(2014), + [anon_sym_DOLLAR] = ACTIONS(2014), + [anon_sym_error] = ACTIONS(2014), + [anon_sym_DASH2] = ACTIONS(2014), + [anon_sym_break] = ACTIONS(2014), + [anon_sym_continue] = ACTIONS(2014), + [anon_sym_for] = ACTIONS(2014), + [anon_sym_in2] = ACTIONS(2014), + [anon_sym_loop] = ACTIONS(2014), + [anon_sym_make] = ACTIONS(2014), + [anon_sym_while] = ACTIONS(2014), + [anon_sym_do] = ACTIONS(2014), + [anon_sym_if] = ACTIONS(2014), + [anon_sym_else] = ACTIONS(2014), + [anon_sym_match] = ACTIONS(2014), + [anon_sym_RBRACE] = ACTIONS(2014), + [anon_sym_try] = ACTIONS(2014), + [anon_sym_catch] = ACTIONS(2014), + [anon_sym_return] = ACTIONS(2014), + [anon_sym_source] = ACTIONS(2014), + [anon_sym_source_DASHenv] = ACTIONS(2014), + [anon_sym_hide] = ACTIONS(2014), + [anon_sym_hide_DASHenv] = ACTIONS(2014), + [anon_sym_overlay] = ACTIONS(2014), + [anon_sym_as] = ACTIONS(2014), + [anon_sym_LPAREN2] = ACTIONS(1641), + [anon_sym_PLUS2] = ACTIONS(2014), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2014), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2014), + [aux_sym__val_number_decimal_token1] = ACTIONS(2014), + [aux_sym__val_number_decimal_token2] = ACTIONS(2014), + [aux_sym__val_number_decimal_token3] = ACTIONS(2014), + [aux_sym__val_number_decimal_token4] = ACTIONS(2014), + [aux_sym__val_number_token1] = ACTIONS(2014), + [aux_sym__val_number_token2] = ACTIONS(2014), + [aux_sym__val_number_token3] = ACTIONS(2014), + [aux_sym__val_number_token4] = ACTIONS(2014), + [aux_sym__val_number_token5] = ACTIONS(2014), + [aux_sym__val_number_token6] = ACTIONS(2014), + [anon_sym_DQUOTE] = ACTIONS(2014), + [sym__str_single_quotes] = ACTIONS(2014), + [sym__str_back_ticks] = ACTIONS(2014), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2014), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2014), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2014), + [sym__entry_separator] = ACTIONS(2016), + [anon_sym_register] = ACTIONS(2014), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2016), + }, + [534] = { + [sym__expr_parenthesized_immediate] = STATE(7304), + [sym_comment] = STATE(534), + [anon_sym_export] = ACTIONS(2018), + [anon_sym_alias] = ACTIONS(2018), + [anon_sym_let] = ACTIONS(2018), + [anon_sym_let_DASHenv] = ACTIONS(2018), + [anon_sym_mut] = ACTIONS(2018), + [anon_sym_const] = ACTIONS(2018), + [aux_sym_cmd_identifier_token1] = ACTIONS(2018), + [aux_sym_cmd_identifier_token2] = ACTIONS(2018), + [aux_sym_cmd_identifier_token3] = ACTIONS(2018), + [aux_sym_cmd_identifier_token4] = ACTIONS(2018), + [aux_sym_cmd_identifier_token5] = ACTIONS(2018), + [aux_sym_cmd_identifier_token6] = ACTIONS(2018), + [aux_sym_cmd_identifier_token7] = ACTIONS(2018), + [aux_sym_cmd_identifier_token8] = ACTIONS(2018), + [aux_sym_cmd_identifier_token9] = ACTIONS(2018), + [aux_sym_cmd_identifier_token10] = ACTIONS(2018), + [aux_sym_cmd_identifier_token11] = ACTIONS(2018), + [aux_sym_cmd_identifier_token12] = ACTIONS(2018), + [aux_sym_cmd_identifier_token13] = ACTIONS(2018), + [aux_sym_cmd_identifier_token14] = ACTIONS(2018), + [aux_sym_cmd_identifier_token15] = ACTIONS(2018), + [aux_sym_cmd_identifier_token16] = ACTIONS(2018), + [aux_sym_cmd_identifier_token17] = ACTIONS(2018), + [aux_sym_cmd_identifier_token18] = ACTIONS(2018), + [aux_sym_cmd_identifier_token19] = ACTIONS(2018), + [aux_sym_cmd_identifier_token20] = ACTIONS(2018), + [aux_sym_cmd_identifier_token21] = ACTIONS(2018), + [aux_sym_cmd_identifier_token22] = ACTIONS(2018), + [aux_sym_cmd_identifier_token23] = ACTIONS(2018), + [aux_sym_cmd_identifier_token24] = ACTIONS(2018), + [aux_sym_cmd_identifier_token25] = ACTIONS(2018), + [aux_sym_cmd_identifier_token26] = ACTIONS(2018), + [aux_sym_cmd_identifier_token27] = ACTIONS(2018), + [aux_sym_cmd_identifier_token28] = ACTIONS(2018), + [aux_sym_cmd_identifier_token29] = ACTIONS(2018), + [aux_sym_cmd_identifier_token30] = ACTIONS(2018), + [aux_sym_cmd_identifier_token31] = ACTIONS(2018), + [aux_sym_cmd_identifier_token32] = ACTIONS(2018), + [aux_sym_cmd_identifier_token33] = ACTIONS(2018), + [aux_sym_cmd_identifier_token34] = ACTIONS(2018), + [aux_sym_cmd_identifier_token35] = ACTIONS(2018), + [aux_sym_cmd_identifier_token36] = ACTIONS(2018), + [aux_sym_cmd_identifier_token37] = ACTIONS(2018), + [aux_sym_cmd_identifier_token38] = ACTIONS(2018), + [aux_sym_cmd_identifier_token39] = ACTIONS(2018), + [aux_sym_cmd_identifier_token40] = ACTIONS(2018), + [anon_sym_def] = ACTIONS(2018), + [anon_sym_export_DASHenv] = ACTIONS(2018), + [anon_sym_extern] = ACTIONS(2018), + [anon_sym_module] = ACTIONS(2018), + [anon_sym_use] = ACTIONS(2018), + [anon_sym_LPAREN] = ACTIONS(2018), + [anon_sym_COMMA] = ACTIONS(2018), + [anon_sym_DOLLAR] = ACTIONS(2018), + [anon_sym_error] = ACTIONS(2018), + [anon_sym_DASH2] = ACTIONS(2018), + [anon_sym_break] = ACTIONS(2018), + [anon_sym_continue] = ACTIONS(2018), + [anon_sym_for] = ACTIONS(2018), + [anon_sym_in2] = ACTIONS(2018), + [anon_sym_loop] = ACTIONS(2018), + [anon_sym_make] = ACTIONS(2018), + [anon_sym_while] = ACTIONS(2018), + [anon_sym_do] = ACTIONS(2018), + [anon_sym_if] = ACTIONS(2018), + [anon_sym_else] = ACTIONS(2018), + [anon_sym_match] = ACTIONS(2018), + [anon_sym_RBRACE] = ACTIONS(2018), + [anon_sym_try] = ACTIONS(2018), + [anon_sym_catch] = ACTIONS(2018), + [anon_sym_return] = ACTIONS(2018), + [anon_sym_source] = ACTIONS(2018), + [anon_sym_source_DASHenv] = ACTIONS(2018), + [anon_sym_hide] = ACTIONS(2018), + [anon_sym_hide_DASHenv] = ACTIONS(2018), + [anon_sym_overlay] = ACTIONS(2018), + [anon_sym_as] = ACTIONS(2018), + [anon_sym_LPAREN2] = ACTIONS(1641), + [anon_sym_PLUS2] = ACTIONS(2018), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2018), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2018), + [aux_sym__val_number_decimal_token1] = ACTIONS(2018), + [aux_sym__val_number_decimal_token2] = ACTIONS(2018), + [aux_sym__val_number_decimal_token3] = ACTIONS(2018), + [aux_sym__val_number_decimal_token4] = ACTIONS(2018), + [aux_sym__val_number_token1] = ACTIONS(2018), + [aux_sym__val_number_token2] = ACTIONS(2018), + [aux_sym__val_number_token3] = ACTIONS(2018), + [aux_sym__val_number_token4] = ACTIONS(2018), + [aux_sym__val_number_token5] = ACTIONS(2018), + [aux_sym__val_number_token6] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2018), + [sym__str_single_quotes] = ACTIONS(2018), + [sym__str_back_ticks] = ACTIONS(2018), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2018), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2018), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2018), + [sym__entry_separator] = ACTIONS(2020), + [anon_sym_register] = ACTIONS(2018), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2020), + }, + [535] = { + [sym_comment] = STATE(535), + [anon_sym_export] = ACTIONS(2022), + [anon_sym_alias] = ACTIONS(2022), + [anon_sym_let] = ACTIONS(2022), + [anon_sym_let_DASHenv] = ACTIONS(2022), + [anon_sym_mut] = ACTIONS(2022), + [anon_sym_const] = ACTIONS(2022), + [aux_sym_cmd_identifier_token1] = ACTIONS(2022), + [aux_sym_cmd_identifier_token2] = ACTIONS(2024), + [aux_sym_cmd_identifier_token3] = ACTIONS(2024), + [aux_sym_cmd_identifier_token4] = ACTIONS(2024), + [aux_sym_cmd_identifier_token5] = ACTIONS(2024), + [aux_sym_cmd_identifier_token6] = ACTIONS(2024), + [aux_sym_cmd_identifier_token7] = ACTIONS(2024), + [aux_sym_cmd_identifier_token8] = ACTIONS(2022), + [aux_sym_cmd_identifier_token9] = ACTIONS(2022), + [aux_sym_cmd_identifier_token10] = ACTIONS(2024), + [aux_sym_cmd_identifier_token11] = ACTIONS(2024), + [aux_sym_cmd_identifier_token12] = ACTIONS(2022), + [aux_sym_cmd_identifier_token13] = ACTIONS(2022), + [aux_sym_cmd_identifier_token14] = ACTIONS(2022), + [aux_sym_cmd_identifier_token15] = ACTIONS(2022), + [aux_sym_cmd_identifier_token16] = ACTIONS(2024), + [aux_sym_cmd_identifier_token17] = ACTIONS(2024), + [aux_sym_cmd_identifier_token18] = ACTIONS(2024), + [aux_sym_cmd_identifier_token19] = ACTIONS(2024), + [aux_sym_cmd_identifier_token20] = ACTIONS(2024), + [aux_sym_cmd_identifier_token21] = ACTIONS(2024), + [aux_sym_cmd_identifier_token22] = ACTIONS(2024), + [aux_sym_cmd_identifier_token23] = ACTIONS(2024), + [aux_sym_cmd_identifier_token24] = ACTIONS(2024), + [aux_sym_cmd_identifier_token25] = ACTIONS(2024), + [aux_sym_cmd_identifier_token26] = ACTIONS(2024), + [aux_sym_cmd_identifier_token27] = ACTIONS(2024), + [aux_sym_cmd_identifier_token28] = ACTIONS(2024), + [aux_sym_cmd_identifier_token29] = ACTIONS(2024), + [aux_sym_cmd_identifier_token30] = ACTIONS(2024), + [aux_sym_cmd_identifier_token31] = ACTIONS(2024), + [aux_sym_cmd_identifier_token32] = ACTIONS(2024), + [aux_sym_cmd_identifier_token33] = ACTIONS(2024), + [aux_sym_cmd_identifier_token34] = ACTIONS(2022), + [aux_sym_cmd_identifier_token35] = ACTIONS(2024), + [aux_sym_cmd_identifier_token36] = ACTIONS(2024), + [aux_sym_cmd_identifier_token37] = ACTIONS(2024), + [aux_sym_cmd_identifier_token38] = ACTIONS(2022), + [aux_sym_cmd_identifier_token39] = ACTIONS(2024), + [aux_sym_cmd_identifier_token40] = ACTIONS(2024), + [anon_sym_def] = ACTIONS(2022), + [anon_sym_export_DASHenv] = ACTIONS(2022), + [anon_sym_extern] = ACTIONS(2022), + [anon_sym_module] = ACTIONS(2022), + [anon_sym_use] = ACTIONS(2022), + [anon_sym_LPAREN] = ACTIONS(2024), + [anon_sym_COMMA] = ACTIONS(2024), + [anon_sym_DOLLAR] = ACTIONS(2022), + [anon_sym_error] = ACTIONS(2022), + [anon_sym_DASH2] = ACTIONS(2022), + [anon_sym_break] = ACTIONS(2022), + [anon_sym_continue] = ACTIONS(2022), + [anon_sym_for] = ACTIONS(2022), + [anon_sym_in2] = ACTIONS(2022), + [anon_sym_loop] = ACTIONS(2022), + [anon_sym_make] = ACTIONS(2022), + [anon_sym_while] = ACTIONS(2022), + [anon_sym_do] = ACTIONS(2022), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_else] = ACTIONS(2022), + [anon_sym_match] = ACTIONS(2022), + [anon_sym_RBRACE] = ACTIONS(2024), + [anon_sym_try] = ACTIONS(2022), + [anon_sym_catch] = ACTIONS(2022), + [anon_sym_return] = ACTIONS(2022), + [anon_sym_source] = ACTIONS(2022), + [anon_sym_source_DASHenv] = ACTIONS(2022), + [anon_sym_hide] = ACTIONS(2022), + [anon_sym_hide_DASHenv] = ACTIONS(2022), + [anon_sym_overlay] = ACTIONS(2022), + [anon_sym_as] = ACTIONS(2022), + [anon_sym_PLUS2] = ACTIONS(2022), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2024), + [anon_sym_DOT_DOT2] = ACTIONS(2022), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2024), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2024), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2024), + [aux_sym__val_number_decimal_token1] = ACTIONS(2022), + [aux_sym__val_number_decimal_token2] = ACTIONS(2024), + [aux_sym__val_number_decimal_token3] = ACTIONS(2024), + [aux_sym__val_number_decimal_token4] = ACTIONS(2024), + [aux_sym__val_number_token1] = ACTIONS(2024), + [aux_sym__val_number_token2] = ACTIONS(2024), + [aux_sym__val_number_token3] = ACTIONS(2024), + [aux_sym__val_number_token4] = ACTIONS(2022), + [aux_sym__val_number_token5] = ACTIONS(2022), + [aux_sym__val_number_token6] = ACTIONS(2022), + [anon_sym_DQUOTE] = ACTIONS(2024), + [sym__str_single_quotes] = ACTIONS(2024), + [sym__str_back_ticks] = ACTIONS(2024), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2024), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2024), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2024), + [anon_sym_register] = ACTIONS(2022), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2024), + }, + [536] = { + [sym_comment] = STATE(536), + [anon_sym_export] = ACTIONS(2164), + [anon_sym_alias] = ACTIONS(2164), + [anon_sym_let] = ACTIONS(2164), + [anon_sym_let_DASHenv] = ACTIONS(2164), + [anon_sym_mut] = ACTIONS(2164), + [anon_sym_const] = ACTIONS(2164), + [aux_sym_cmd_identifier_token1] = ACTIONS(2164), + [aux_sym_cmd_identifier_token2] = ACTIONS(2164), + [aux_sym_cmd_identifier_token3] = ACTIONS(2164), + [aux_sym_cmd_identifier_token4] = ACTIONS(2164), + [aux_sym_cmd_identifier_token5] = ACTIONS(2164), + [aux_sym_cmd_identifier_token6] = ACTIONS(2164), + [aux_sym_cmd_identifier_token7] = ACTIONS(2164), + [aux_sym_cmd_identifier_token8] = ACTIONS(2164), + [aux_sym_cmd_identifier_token9] = ACTIONS(2164), + [aux_sym_cmd_identifier_token10] = ACTIONS(2164), + [aux_sym_cmd_identifier_token11] = ACTIONS(2164), + [aux_sym_cmd_identifier_token12] = ACTIONS(2164), + [aux_sym_cmd_identifier_token13] = ACTIONS(2164), + [aux_sym_cmd_identifier_token14] = ACTIONS(2164), + [aux_sym_cmd_identifier_token15] = ACTIONS(2164), + [aux_sym_cmd_identifier_token16] = ACTIONS(2164), + [aux_sym_cmd_identifier_token17] = ACTIONS(2164), + [aux_sym_cmd_identifier_token18] = ACTIONS(2164), + [aux_sym_cmd_identifier_token19] = ACTIONS(2164), + [aux_sym_cmd_identifier_token20] = ACTIONS(2164), + [aux_sym_cmd_identifier_token21] = ACTIONS(2164), + [aux_sym_cmd_identifier_token22] = ACTIONS(2164), + [aux_sym_cmd_identifier_token23] = ACTIONS(2164), + [aux_sym_cmd_identifier_token24] = ACTIONS(2164), + [aux_sym_cmd_identifier_token25] = ACTIONS(2164), + [aux_sym_cmd_identifier_token26] = ACTIONS(2164), + [aux_sym_cmd_identifier_token27] = ACTIONS(2164), + [aux_sym_cmd_identifier_token28] = ACTIONS(2164), + [aux_sym_cmd_identifier_token29] = ACTIONS(2164), + [aux_sym_cmd_identifier_token30] = ACTIONS(2164), + [aux_sym_cmd_identifier_token31] = ACTIONS(2164), + [aux_sym_cmd_identifier_token32] = ACTIONS(2164), + [aux_sym_cmd_identifier_token33] = ACTIONS(2164), + [aux_sym_cmd_identifier_token34] = ACTIONS(2164), + [aux_sym_cmd_identifier_token35] = ACTIONS(2164), + [aux_sym_cmd_identifier_token36] = ACTIONS(2164), + [aux_sym_cmd_identifier_token37] = ACTIONS(2164), + [aux_sym_cmd_identifier_token38] = ACTIONS(2164), + [aux_sym_cmd_identifier_token39] = ACTIONS(2164), + [aux_sym_cmd_identifier_token40] = ACTIONS(2164), + [anon_sym_def] = ACTIONS(2164), + [anon_sym_export_DASHenv] = ACTIONS(2164), + [anon_sym_extern] = ACTIONS(2164), + [anon_sym_module] = ACTIONS(2164), + [anon_sym_use] = ACTIONS(2164), + [anon_sym_LPAREN] = ACTIONS(2164), + [anon_sym_COMMA] = ACTIONS(2164), + [anon_sym_DOLLAR] = ACTIONS(2164), + [anon_sym_error] = ACTIONS(2164), + [anon_sym_DASH2] = ACTIONS(2164), + [anon_sym_break] = ACTIONS(2164), + [anon_sym_continue] = ACTIONS(2164), + [anon_sym_for] = ACTIONS(2164), + [anon_sym_in2] = ACTIONS(2164), + [anon_sym_loop] = ACTIONS(2164), + [anon_sym_make] = ACTIONS(2164), + [anon_sym_while] = ACTIONS(2164), + [anon_sym_do] = ACTIONS(2164), + [anon_sym_if] = ACTIONS(2164), + [anon_sym_else] = ACTIONS(2164), + [anon_sym_match] = ACTIONS(2164), + [anon_sym_RBRACE] = ACTIONS(2164), + [anon_sym_try] = ACTIONS(2164), + [anon_sym_catch] = ACTIONS(2164), + [anon_sym_return] = ACTIONS(2164), + [anon_sym_source] = ACTIONS(2164), + [anon_sym_source_DASHenv] = ACTIONS(2164), + [anon_sym_hide] = ACTIONS(2164), + [anon_sym_hide_DASHenv] = ACTIONS(2164), + [anon_sym_overlay] = ACTIONS(2164), + [anon_sym_as] = ACTIONS(2164), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_PLUS2] = ACTIONS(2164), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2164), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2164), + [aux_sym__val_number_decimal_token1] = ACTIONS(2164), + [aux_sym__val_number_decimal_token2] = ACTIONS(2164), + [aux_sym__val_number_decimal_token3] = ACTIONS(2164), + [aux_sym__val_number_decimal_token4] = ACTIONS(2164), + [aux_sym__val_number_token1] = ACTIONS(2164), + [aux_sym__val_number_token2] = ACTIONS(2164), + [aux_sym__val_number_token3] = ACTIONS(2164), + [aux_sym__val_number_token4] = ACTIONS(2164), + [aux_sym__val_number_token5] = ACTIONS(2164), + [aux_sym__val_number_token6] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2164), + [sym__str_single_quotes] = ACTIONS(2164), + [sym__str_back_ticks] = ACTIONS(2164), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2164), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2164), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2164), + [sym__entry_separator] = ACTIONS(2166), + [anon_sym_register] = ACTIONS(2164), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1826), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2166), + }, + [537] = { + [sym_comment] = STATE(537), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1816), + [anon_sym_DOLLAR] = ACTIONS(1816), + [anon_sym_error] = ACTIONS(1816), + [anon_sym_DASH2] = ACTIONS(1816), + [anon_sym_break] = ACTIONS(1816), + [anon_sym_continue] = ACTIONS(1816), + [anon_sym_for] = ACTIONS(1816), + [anon_sym_in2] = 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_hide] = ACTIONS(1816), + [anon_sym_hide_DASHenv] = ACTIONS(1816), + [anon_sym_overlay] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1816), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_PLUS2] = 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), + [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), + [aux_sym__val_number_token4] = ACTIONS(1816), + [aux_sym__val_number_token5] = ACTIONS(1816), + [aux_sym__val_number_token6] = ACTIONS(1816), + [anon_sym_DQUOTE] = ACTIONS(1816), + [sym__str_single_quotes] = ACTIONS(1816), + [sym__str_back_ticks] = ACTIONS(1816), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1816), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1816), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1816), + [sym__entry_separator] = ACTIONS(1824), + [anon_sym_register] = ACTIONS(1816), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1826), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1824), + }, + [538] = { + [sym_comment] = STATE(538), + [anon_sym_export] = ACTIONS(2026), + [anon_sym_alias] = ACTIONS(2026), + [anon_sym_let] = ACTIONS(2026), + [anon_sym_let_DASHenv] = ACTIONS(2026), + [anon_sym_mut] = ACTIONS(2026), + [anon_sym_const] = ACTIONS(2026), + [aux_sym_cmd_identifier_token1] = ACTIONS(2026), + [aux_sym_cmd_identifier_token2] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2028), + [aux_sym_cmd_identifier_token4] = ACTIONS(2028), + [aux_sym_cmd_identifier_token5] = ACTIONS(2028), + [aux_sym_cmd_identifier_token6] = ACTIONS(2028), + [aux_sym_cmd_identifier_token7] = ACTIONS(2028), + [aux_sym_cmd_identifier_token8] = ACTIONS(2026), + [aux_sym_cmd_identifier_token9] = ACTIONS(2026), + [aux_sym_cmd_identifier_token10] = ACTIONS(2028), + [aux_sym_cmd_identifier_token11] = ACTIONS(2028), + [aux_sym_cmd_identifier_token12] = ACTIONS(2026), + [aux_sym_cmd_identifier_token13] = ACTIONS(2026), + [aux_sym_cmd_identifier_token14] = ACTIONS(2026), + [aux_sym_cmd_identifier_token15] = ACTIONS(2026), + [aux_sym_cmd_identifier_token16] = ACTIONS(2028), + [aux_sym_cmd_identifier_token17] = ACTIONS(2028), + [aux_sym_cmd_identifier_token18] = ACTIONS(2028), + [aux_sym_cmd_identifier_token19] = ACTIONS(2028), + [aux_sym_cmd_identifier_token20] = ACTIONS(2028), + [aux_sym_cmd_identifier_token21] = ACTIONS(2028), + [aux_sym_cmd_identifier_token22] = ACTIONS(2028), + [aux_sym_cmd_identifier_token23] = ACTIONS(2028), + [aux_sym_cmd_identifier_token24] = ACTIONS(2028), + [aux_sym_cmd_identifier_token25] = ACTIONS(2028), + [aux_sym_cmd_identifier_token26] = ACTIONS(2028), + [aux_sym_cmd_identifier_token27] = ACTIONS(2028), + [aux_sym_cmd_identifier_token28] = ACTIONS(2028), + [aux_sym_cmd_identifier_token29] = ACTIONS(2028), + [aux_sym_cmd_identifier_token30] = ACTIONS(2028), + [aux_sym_cmd_identifier_token31] = ACTIONS(2028), + [aux_sym_cmd_identifier_token32] = ACTIONS(2028), + [aux_sym_cmd_identifier_token33] = ACTIONS(2028), + [aux_sym_cmd_identifier_token34] = ACTIONS(2026), + [aux_sym_cmd_identifier_token35] = ACTIONS(2028), + [aux_sym_cmd_identifier_token36] = ACTIONS(2028), + [aux_sym_cmd_identifier_token37] = ACTIONS(2028), + [aux_sym_cmd_identifier_token38] = ACTIONS(2026), + [aux_sym_cmd_identifier_token39] = ACTIONS(2028), + [aux_sym_cmd_identifier_token40] = ACTIONS(2028), + [anon_sym_def] = ACTIONS(2026), + [anon_sym_export_DASHenv] = ACTIONS(2026), + [anon_sym_extern] = ACTIONS(2026), + [anon_sym_module] = ACTIONS(2026), + [anon_sym_use] = ACTIONS(2026), + [anon_sym_LPAREN] = ACTIONS(2028), + [anon_sym_COMMA] = ACTIONS(2028), + [anon_sym_DOLLAR] = ACTIONS(2026), + [anon_sym_error] = ACTIONS(2026), + [anon_sym_DASH2] = ACTIONS(2026), + [anon_sym_break] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(2026), + [anon_sym_for] = ACTIONS(2026), + [anon_sym_in2] = ACTIONS(2026), + [anon_sym_loop] = ACTIONS(2026), + [anon_sym_make] = ACTIONS(2026), + [anon_sym_while] = ACTIONS(2026), + [anon_sym_do] = ACTIONS(2026), + [anon_sym_if] = ACTIONS(2026), + [anon_sym_else] = ACTIONS(2026), + [anon_sym_match] = ACTIONS(2026), + [anon_sym_RBRACE] = ACTIONS(2028), + [anon_sym_try] = ACTIONS(2026), + [anon_sym_catch] = ACTIONS(2026), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_source] = ACTIONS(2026), + [anon_sym_source_DASHenv] = ACTIONS(2026), + [anon_sym_hide] = ACTIONS(2026), + [anon_sym_hide_DASHenv] = ACTIONS(2026), + [anon_sym_overlay] = ACTIONS(2026), + [anon_sym_as] = ACTIONS(2026), + [anon_sym_PLUS2] = ACTIONS(2026), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2028), + [anon_sym_DOT_DOT2] = ACTIONS(2026), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2028), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2028), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2028), + [aux_sym__val_number_decimal_token1] = ACTIONS(2026), + [aux_sym__val_number_decimal_token2] = ACTIONS(2028), + [aux_sym__val_number_decimal_token3] = ACTIONS(2028), + [aux_sym__val_number_decimal_token4] = ACTIONS(2028), + [aux_sym__val_number_token1] = ACTIONS(2028), + [aux_sym__val_number_token2] = ACTIONS(2028), + [aux_sym__val_number_token3] = ACTIONS(2028), + [aux_sym__val_number_token4] = ACTIONS(2026), + [aux_sym__val_number_token5] = ACTIONS(2026), + [aux_sym__val_number_token6] = ACTIONS(2026), + [anon_sym_DQUOTE] = ACTIONS(2028), + [sym__str_single_quotes] = ACTIONS(2028), + [sym__str_back_ticks] = ACTIONS(2028), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2028), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2028), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2028), + [anon_sym_register] = ACTIONS(2026), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2028), + }, + [539] = { + [sym_comment] = STATE(539), + [anon_sym_export] = ACTIONS(2168), + [anon_sym_alias] = ACTIONS(2168), + [anon_sym_let] = ACTIONS(2168), + [anon_sym_let_DASHenv] = ACTIONS(2168), + [anon_sym_mut] = ACTIONS(2168), + [anon_sym_const] = ACTIONS(2168), + [aux_sym_cmd_identifier_token1] = ACTIONS(2168), + [aux_sym_cmd_identifier_token2] = ACTIONS(2168), + [aux_sym_cmd_identifier_token3] = ACTIONS(2168), + [aux_sym_cmd_identifier_token4] = ACTIONS(2168), + [aux_sym_cmd_identifier_token5] = ACTIONS(2168), + [aux_sym_cmd_identifier_token6] = ACTIONS(2168), + [aux_sym_cmd_identifier_token7] = ACTIONS(2168), + [aux_sym_cmd_identifier_token8] = ACTIONS(2168), + [aux_sym_cmd_identifier_token9] = ACTIONS(2168), + [aux_sym_cmd_identifier_token10] = ACTIONS(2168), + [aux_sym_cmd_identifier_token11] = ACTIONS(2168), + [aux_sym_cmd_identifier_token12] = ACTIONS(2168), + [aux_sym_cmd_identifier_token13] = ACTIONS(2168), + [aux_sym_cmd_identifier_token14] = ACTIONS(2168), + [aux_sym_cmd_identifier_token15] = ACTIONS(2168), + [aux_sym_cmd_identifier_token16] = ACTIONS(2168), + [aux_sym_cmd_identifier_token17] = ACTIONS(2168), + [aux_sym_cmd_identifier_token18] = ACTIONS(2168), + [aux_sym_cmd_identifier_token19] = ACTIONS(2168), + [aux_sym_cmd_identifier_token20] = ACTIONS(2168), + [aux_sym_cmd_identifier_token21] = ACTIONS(2168), + [aux_sym_cmd_identifier_token22] = ACTIONS(2168), + [aux_sym_cmd_identifier_token23] = ACTIONS(2168), + [aux_sym_cmd_identifier_token24] = ACTIONS(2168), + [aux_sym_cmd_identifier_token25] = ACTIONS(2168), + [aux_sym_cmd_identifier_token26] = ACTIONS(2168), + [aux_sym_cmd_identifier_token27] = ACTIONS(2168), + [aux_sym_cmd_identifier_token28] = ACTIONS(2168), + [aux_sym_cmd_identifier_token29] = ACTIONS(2168), + [aux_sym_cmd_identifier_token30] = ACTIONS(2168), + [aux_sym_cmd_identifier_token31] = ACTIONS(2168), + [aux_sym_cmd_identifier_token32] = ACTIONS(2168), + [aux_sym_cmd_identifier_token33] = ACTIONS(2168), + [aux_sym_cmd_identifier_token34] = ACTIONS(2168), + [aux_sym_cmd_identifier_token35] = ACTIONS(2168), + [aux_sym_cmd_identifier_token36] = ACTIONS(2168), + [aux_sym_cmd_identifier_token37] = ACTIONS(2168), + [aux_sym_cmd_identifier_token38] = ACTIONS(2168), + [aux_sym_cmd_identifier_token39] = ACTIONS(2168), + [aux_sym_cmd_identifier_token40] = ACTIONS(2168), + [anon_sym_def] = ACTIONS(2168), + [anon_sym_export_DASHenv] = ACTIONS(2168), + [anon_sym_extern] = ACTIONS(2168), + [anon_sym_module] = ACTIONS(2168), + [anon_sym_use] = ACTIONS(2168), + [anon_sym_LPAREN] = ACTIONS(2168), + [anon_sym_COMMA] = ACTIONS(2168), + [anon_sym_DOLLAR] = ACTIONS(2168), + [anon_sym_error] = ACTIONS(2168), + [anon_sym_DASH2] = ACTIONS(2168), + [anon_sym_break] = ACTIONS(2168), + [anon_sym_continue] = ACTIONS(2168), + [anon_sym_for] = ACTIONS(2168), + [anon_sym_in2] = ACTIONS(2168), + [anon_sym_loop] = ACTIONS(2168), + [anon_sym_make] = ACTIONS(2168), + [anon_sym_while] = ACTIONS(2168), + [anon_sym_do] = ACTIONS(2168), + [anon_sym_if] = ACTIONS(2168), + [anon_sym_else] = ACTIONS(2168), + [anon_sym_match] = ACTIONS(2168), + [anon_sym_RBRACE] = ACTIONS(2168), + [anon_sym_try] = ACTIONS(2168), + [anon_sym_catch] = ACTIONS(2168), + [anon_sym_return] = ACTIONS(2168), + [anon_sym_source] = ACTIONS(2168), + [anon_sym_source_DASHenv] = ACTIONS(2168), + [anon_sym_hide] = ACTIONS(2168), + [anon_sym_hide_DASHenv] = ACTIONS(2168), + [anon_sym_overlay] = ACTIONS(2168), + [anon_sym_as] = ACTIONS(2168), + [anon_sym_LPAREN2] = ACTIONS(2170), + [anon_sym_PLUS2] = ACTIONS(2168), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2168), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2168), + [aux_sym__val_number_decimal_token1] = ACTIONS(2168), + [aux_sym__val_number_decimal_token2] = ACTIONS(2168), + [aux_sym__val_number_decimal_token3] = ACTIONS(2168), + [aux_sym__val_number_decimal_token4] = ACTIONS(2168), + [aux_sym__val_number_token1] = ACTIONS(2168), + [aux_sym__val_number_token2] = ACTIONS(2168), + [aux_sym__val_number_token3] = ACTIONS(2168), + [aux_sym__val_number_token4] = ACTIONS(2168), + [aux_sym__val_number_token5] = ACTIONS(2168), + [aux_sym__val_number_token6] = ACTIONS(2168), + [anon_sym_DQUOTE] = ACTIONS(2168), + [sym__str_single_quotes] = ACTIONS(2168), + [sym__str_back_ticks] = ACTIONS(2168), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2168), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2168), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2168), + [sym__entry_separator] = ACTIONS(2172), + [anon_sym_register] = ACTIONS(2168), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1562), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2172), + }, + [540] = { + [sym__expr_parenthesized_immediate] = STATE(7668), + [sym_comment] = STATE(540), + [anon_sym_export] = ACTIONS(2174), + [anon_sym_alias] = ACTIONS(2174), + [anon_sym_let] = ACTIONS(2174), + [anon_sym_let_DASHenv] = ACTIONS(2174), + [anon_sym_mut] = ACTIONS(2174), + [anon_sym_const] = ACTIONS(2174), + [aux_sym_cmd_identifier_token1] = ACTIONS(2174), + [aux_sym_cmd_identifier_token2] = ACTIONS(2174), + [aux_sym_cmd_identifier_token3] = ACTIONS(2174), + [aux_sym_cmd_identifier_token4] = ACTIONS(2174), + [aux_sym_cmd_identifier_token5] = ACTIONS(2174), + [aux_sym_cmd_identifier_token6] = ACTIONS(2174), + [aux_sym_cmd_identifier_token7] = ACTIONS(2174), + [aux_sym_cmd_identifier_token8] = ACTIONS(2174), + [aux_sym_cmd_identifier_token9] = ACTIONS(2174), + [aux_sym_cmd_identifier_token10] = ACTIONS(2174), + [aux_sym_cmd_identifier_token11] = ACTIONS(2174), + [aux_sym_cmd_identifier_token12] = ACTIONS(2174), + [aux_sym_cmd_identifier_token13] = ACTIONS(2174), + [aux_sym_cmd_identifier_token14] = ACTIONS(2174), + [aux_sym_cmd_identifier_token15] = ACTIONS(2174), + [aux_sym_cmd_identifier_token16] = ACTIONS(2174), + [aux_sym_cmd_identifier_token17] = ACTIONS(2174), + [aux_sym_cmd_identifier_token18] = ACTIONS(2174), + [aux_sym_cmd_identifier_token19] = ACTIONS(2174), + [aux_sym_cmd_identifier_token20] = ACTIONS(2174), + [aux_sym_cmd_identifier_token21] = ACTIONS(2174), + [aux_sym_cmd_identifier_token22] = ACTIONS(2174), + [aux_sym_cmd_identifier_token23] = ACTIONS(2174), + [aux_sym_cmd_identifier_token24] = ACTIONS(2174), + [aux_sym_cmd_identifier_token25] = ACTIONS(2174), + [aux_sym_cmd_identifier_token26] = ACTIONS(2174), + [aux_sym_cmd_identifier_token27] = ACTIONS(2174), + [aux_sym_cmd_identifier_token28] = ACTIONS(2174), + [aux_sym_cmd_identifier_token29] = ACTIONS(2174), + [aux_sym_cmd_identifier_token30] = ACTIONS(2174), + [aux_sym_cmd_identifier_token31] = ACTIONS(2174), + [aux_sym_cmd_identifier_token32] = ACTIONS(2174), + [aux_sym_cmd_identifier_token33] = ACTIONS(2174), + [aux_sym_cmd_identifier_token34] = ACTIONS(2174), + [aux_sym_cmd_identifier_token35] = ACTIONS(2174), + [aux_sym_cmd_identifier_token36] = ACTIONS(2174), + [aux_sym_cmd_identifier_token37] = ACTIONS(2174), + [aux_sym_cmd_identifier_token38] = ACTIONS(2174), + [aux_sym_cmd_identifier_token39] = ACTIONS(2174), + [aux_sym_cmd_identifier_token40] = ACTIONS(2174), + [anon_sym_def] = ACTIONS(2174), + [anon_sym_export_DASHenv] = ACTIONS(2174), + [anon_sym_extern] = ACTIONS(2174), + [anon_sym_module] = ACTIONS(2174), + [anon_sym_use] = ACTIONS(2174), + [anon_sym_LPAREN] = ACTIONS(2174), + [anon_sym_COMMA] = ACTIONS(2174), + [anon_sym_DOLLAR] = ACTIONS(2174), + [anon_sym_error] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2174), + [anon_sym_break] = ACTIONS(2174), + [anon_sym_continue] = ACTIONS(2174), + [anon_sym_for] = ACTIONS(2174), + [anon_sym_in2] = ACTIONS(2174), + [anon_sym_loop] = ACTIONS(2174), + [anon_sym_make] = ACTIONS(2174), + [anon_sym_while] = ACTIONS(2174), + [anon_sym_do] = ACTIONS(2174), + [anon_sym_if] = ACTIONS(2174), + [anon_sym_else] = ACTIONS(2174), + [anon_sym_match] = ACTIONS(2174), + [anon_sym_RBRACE] = ACTIONS(2174), + [anon_sym_try] = ACTIONS(2174), + [anon_sym_catch] = ACTIONS(2174), + [anon_sym_return] = ACTIONS(2174), + [anon_sym_source] = ACTIONS(2174), + [anon_sym_source_DASHenv] = ACTIONS(2174), + [anon_sym_hide] = ACTIONS(2174), + [anon_sym_hide_DASHenv] = ACTIONS(2174), + [anon_sym_overlay] = ACTIONS(2174), + [anon_sym_as] = ACTIONS(2174), + [anon_sym_LPAREN2] = ACTIONS(1641), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2174), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2174), + [aux_sym__val_number_decimal_token1] = ACTIONS(2174), + [aux_sym__val_number_decimal_token2] = ACTIONS(2174), + [aux_sym__val_number_decimal_token3] = ACTIONS(2174), + [aux_sym__val_number_decimal_token4] = ACTIONS(2174), + [aux_sym__val_number_token1] = ACTIONS(2174), + [aux_sym__val_number_token2] = ACTIONS(2174), + [aux_sym__val_number_token3] = ACTIONS(2174), + [aux_sym__val_number_token4] = ACTIONS(2174), + [aux_sym__val_number_token5] = ACTIONS(2174), + [aux_sym__val_number_token6] = ACTIONS(2174), + [anon_sym_DQUOTE] = ACTIONS(2174), + [sym__str_single_quotes] = ACTIONS(2174), + [sym__str_back_ticks] = ACTIONS(2174), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2174), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2174), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2174), + [sym__entry_separator] = ACTIONS(2176), + [anon_sym_register] = ACTIONS(2174), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2176), + }, + [541] = { + [sym__expr_parenthesized_immediate] = STATE(7668), + [sym_comment] = STATE(541), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(2178), + [anon_sym_DOLLAR] = ACTIONS(2178), + [anon_sym_error] = ACTIONS(2178), + [anon_sym_DASH2] = ACTIONS(2178), + [anon_sym_break] = ACTIONS(2178), + [anon_sym_continue] = ACTIONS(2178), + [anon_sym_for] = ACTIONS(2178), + [anon_sym_in2] = 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_hide] = ACTIONS(2178), + [anon_sym_hide_DASHenv] = ACTIONS(2178), + [anon_sym_overlay] = ACTIONS(2178), + [anon_sym_as] = ACTIONS(2178), + [anon_sym_LPAREN2] = ACTIONS(1641), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_decimal_token3] = ACTIONS(2178), + [aux_sym__val_number_decimal_token4] = ACTIONS(2178), + [aux_sym__val_number_token1] = ACTIONS(2178), + [aux_sym__val_number_token2] = ACTIONS(2178), + [aux_sym__val_number_token3] = ACTIONS(2178), + [aux_sym__val_number_token4] = ACTIONS(2178), + [aux_sym__val_number_token5] = ACTIONS(2178), + [aux_sym__val_number_token6] = ACTIONS(2178), + [anon_sym_DQUOTE] = ACTIONS(2178), + [sym__str_single_quotes] = ACTIONS(2178), + [sym__str_back_ticks] = ACTIONS(2178), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2178), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2178), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2178), + [sym__entry_separator] = ACTIONS(2180), + [anon_sym_register] = ACTIONS(2178), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2180), + }, + [542] = { + [sym__expr_parenthesized_immediate] = STATE(7668), + [sym_comment] = STATE(542), + [anon_sym_export] = ACTIONS(2182), + [anon_sym_alias] = ACTIONS(2182), + [anon_sym_let] = ACTIONS(2182), + [anon_sym_let_DASHenv] = ACTIONS(2182), + [anon_sym_mut] = ACTIONS(2182), + [anon_sym_const] = ACTIONS(2182), + [aux_sym_cmd_identifier_token1] = ACTIONS(2182), + [aux_sym_cmd_identifier_token2] = ACTIONS(2182), + [aux_sym_cmd_identifier_token3] = ACTIONS(2182), + [aux_sym_cmd_identifier_token4] = ACTIONS(2182), + [aux_sym_cmd_identifier_token5] = ACTIONS(2182), + [aux_sym_cmd_identifier_token6] = ACTIONS(2182), + [aux_sym_cmd_identifier_token7] = ACTIONS(2182), + [aux_sym_cmd_identifier_token8] = ACTIONS(2182), + [aux_sym_cmd_identifier_token9] = ACTIONS(2182), + [aux_sym_cmd_identifier_token10] = ACTIONS(2182), + [aux_sym_cmd_identifier_token11] = ACTIONS(2182), + [aux_sym_cmd_identifier_token12] = ACTIONS(2182), + [aux_sym_cmd_identifier_token13] = ACTIONS(2182), + [aux_sym_cmd_identifier_token14] = ACTIONS(2182), + [aux_sym_cmd_identifier_token15] = ACTIONS(2182), + [aux_sym_cmd_identifier_token16] = ACTIONS(2182), + [aux_sym_cmd_identifier_token17] = ACTIONS(2182), + [aux_sym_cmd_identifier_token18] = ACTIONS(2182), + [aux_sym_cmd_identifier_token19] = ACTIONS(2182), + [aux_sym_cmd_identifier_token20] = ACTIONS(2182), + [aux_sym_cmd_identifier_token21] = ACTIONS(2182), + [aux_sym_cmd_identifier_token22] = ACTIONS(2182), + [aux_sym_cmd_identifier_token23] = ACTIONS(2182), + [aux_sym_cmd_identifier_token24] = ACTIONS(2182), + [aux_sym_cmd_identifier_token25] = ACTIONS(2182), + [aux_sym_cmd_identifier_token26] = ACTIONS(2182), + [aux_sym_cmd_identifier_token27] = ACTIONS(2182), + [aux_sym_cmd_identifier_token28] = ACTIONS(2182), + [aux_sym_cmd_identifier_token29] = ACTIONS(2182), + [aux_sym_cmd_identifier_token30] = ACTIONS(2182), + [aux_sym_cmd_identifier_token31] = ACTIONS(2182), + [aux_sym_cmd_identifier_token32] = ACTIONS(2182), + [aux_sym_cmd_identifier_token33] = ACTIONS(2182), + [aux_sym_cmd_identifier_token34] = ACTIONS(2182), + [aux_sym_cmd_identifier_token35] = ACTIONS(2182), + [aux_sym_cmd_identifier_token36] = ACTIONS(2182), + [aux_sym_cmd_identifier_token37] = ACTIONS(2182), + [aux_sym_cmd_identifier_token38] = ACTIONS(2182), + [aux_sym_cmd_identifier_token39] = ACTIONS(2182), + [aux_sym_cmd_identifier_token40] = ACTIONS(2182), + [anon_sym_def] = ACTIONS(2182), + [anon_sym_export_DASHenv] = ACTIONS(2182), + [anon_sym_extern] = ACTIONS(2182), + [anon_sym_module] = ACTIONS(2182), + [anon_sym_use] = ACTIONS(2182), + [anon_sym_LPAREN] = ACTIONS(2182), + [anon_sym_COMMA] = ACTIONS(2182), + [anon_sym_DOLLAR] = ACTIONS(2182), + [anon_sym_error] = ACTIONS(2182), + [anon_sym_DASH2] = ACTIONS(2182), + [anon_sym_break] = ACTIONS(2182), + [anon_sym_continue] = ACTIONS(2182), + [anon_sym_for] = ACTIONS(2182), + [anon_sym_in2] = ACTIONS(2182), + [anon_sym_loop] = ACTIONS(2182), + [anon_sym_make] = ACTIONS(2182), + [anon_sym_while] = ACTIONS(2182), + [anon_sym_do] = ACTIONS(2182), + [anon_sym_if] = ACTIONS(2182), + [anon_sym_else] = ACTIONS(2182), + [anon_sym_match] = ACTIONS(2182), + [anon_sym_RBRACE] = ACTIONS(2182), + [anon_sym_try] = ACTIONS(2182), + [anon_sym_catch] = ACTIONS(2182), + [anon_sym_return] = ACTIONS(2182), + [anon_sym_source] = ACTIONS(2182), + [anon_sym_source_DASHenv] = ACTIONS(2182), + [anon_sym_hide] = ACTIONS(2182), + [anon_sym_hide_DASHenv] = ACTIONS(2182), + [anon_sym_overlay] = ACTIONS(2182), + [anon_sym_as] = ACTIONS(2182), + [anon_sym_LPAREN2] = ACTIONS(1641), + [anon_sym_PLUS2] = ACTIONS(2182), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2182), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2182), + [aux_sym__val_number_decimal_token1] = ACTIONS(2182), + [aux_sym__val_number_decimal_token2] = ACTIONS(2182), + [aux_sym__val_number_decimal_token3] = ACTIONS(2182), + [aux_sym__val_number_decimal_token4] = ACTIONS(2182), + [aux_sym__val_number_token1] = ACTIONS(2182), + [aux_sym__val_number_token2] = ACTIONS(2182), + [aux_sym__val_number_token3] = ACTIONS(2182), + [aux_sym__val_number_token4] = ACTIONS(2182), + [aux_sym__val_number_token5] = ACTIONS(2182), + [aux_sym__val_number_token6] = ACTIONS(2182), + [anon_sym_DQUOTE] = ACTIONS(2182), + [sym__str_single_quotes] = ACTIONS(2182), + [sym__str_back_ticks] = ACTIONS(2182), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2182), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2182), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2182), + [sym__entry_separator] = ACTIONS(2184), + [anon_sym_register] = ACTIONS(2182), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2184), + }, + [543] = { + [sym__expr_parenthesized_immediate] = STATE(7668), + [sym_comment] = STATE(543), + [anon_sym_export] = ACTIONS(2186), + [anon_sym_alias] = ACTIONS(2186), + [anon_sym_let] = ACTIONS(2186), + [anon_sym_let_DASHenv] = ACTIONS(2186), + [anon_sym_mut] = ACTIONS(2186), + [anon_sym_const] = ACTIONS(2186), + [aux_sym_cmd_identifier_token1] = ACTIONS(2186), + [aux_sym_cmd_identifier_token2] = ACTIONS(2186), + [aux_sym_cmd_identifier_token3] = ACTIONS(2186), + [aux_sym_cmd_identifier_token4] = ACTIONS(2186), + [aux_sym_cmd_identifier_token5] = ACTIONS(2186), + [aux_sym_cmd_identifier_token6] = ACTIONS(2186), + [aux_sym_cmd_identifier_token7] = ACTIONS(2186), + [aux_sym_cmd_identifier_token8] = ACTIONS(2186), + [aux_sym_cmd_identifier_token9] = ACTIONS(2186), + [aux_sym_cmd_identifier_token10] = ACTIONS(2186), + [aux_sym_cmd_identifier_token11] = ACTIONS(2186), + [aux_sym_cmd_identifier_token12] = ACTIONS(2186), + [aux_sym_cmd_identifier_token13] = ACTIONS(2186), + [aux_sym_cmd_identifier_token14] = ACTIONS(2186), + [aux_sym_cmd_identifier_token15] = ACTIONS(2186), + [aux_sym_cmd_identifier_token16] = ACTIONS(2186), + [aux_sym_cmd_identifier_token17] = ACTIONS(2186), + [aux_sym_cmd_identifier_token18] = ACTIONS(2186), + [aux_sym_cmd_identifier_token19] = ACTIONS(2186), + [aux_sym_cmd_identifier_token20] = ACTIONS(2186), + [aux_sym_cmd_identifier_token21] = ACTIONS(2186), + [aux_sym_cmd_identifier_token22] = ACTIONS(2186), + [aux_sym_cmd_identifier_token23] = ACTIONS(2186), + [aux_sym_cmd_identifier_token24] = ACTIONS(2186), + [aux_sym_cmd_identifier_token25] = ACTIONS(2186), + [aux_sym_cmd_identifier_token26] = ACTIONS(2186), + [aux_sym_cmd_identifier_token27] = ACTIONS(2186), + [aux_sym_cmd_identifier_token28] = ACTIONS(2186), + [aux_sym_cmd_identifier_token29] = ACTIONS(2186), + [aux_sym_cmd_identifier_token30] = ACTIONS(2186), + [aux_sym_cmd_identifier_token31] = ACTIONS(2186), + [aux_sym_cmd_identifier_token32] = ACTIONS(2186), + [aux_sym_cmd_identifier_token33] = ACTIONS(2186), + [aux_sym_cmd_identifier_token34] = ACTIONS(2186), + [aux_sym_cmd_identifier_token35] = ACTIONS(2186), + [aux_sym_cmd_identifier_token36] = ACTIONS(2186), + [aux_sym_cmd_identifier_token37] = ACTIONS(2186), + [aux_sym_cmd_identifier_token38] = ACTIONS(2186), + [aux_sym_cmd_identifier_token39] = ACTIONS(2186), + [aux_sym_cmd_identifier_token40] = ACTIONS(2186), + [anon_sym_def] = ACTIONS(2186), + [anon_sym_export_DASHenv] = ACTIONS(2186), + [anon_sym_extern] = ACTIONS(2186), + [anon_sym_module] = ACTIONS(2186), + [anon_sym_use] = ACTIONS(2186), + [anon_sym_LPAREN] = ACTIONS(2186), + [anon_sym_COMMA] = ACTIONS(2186), + [anon_sym_DOLLAR] = ACTIONS(2186), + [anon_sym_error] = ACTIONS(2186), + [anon_sym_DASH2] = ACTIONS(2186), + [anon_sym_break] = ACTIONS(2186), + [anon_sym_continue] = ACTIONS(2186), + [anon_sym_for] = ACTIONS(2186), + [anon_sym_in2] = ACTIONS(2186), + [anon_sym_loop] = ACTIONS(2186), + [anon_sym_make] = ACTIONS(2186), + [anon_sym_while] = ACTIONS(2186), + [anon_sym_do] = ACTIONS(2186), + [anon_sym_if] = ACTIONS(2186), + [anon_sym_else] = ACTIONS(2186), + [anon_sym_match] = ACTIONS(2186), + [anon_sym_RBRACE] = ACTIONS(2186), + [anon_sym_try] = ACTIONS(2186), + [anon_sym_catch] = ACTIONS(2186), + [anon_sym_return] = ACTIONS(2186), + [anon_sym_source] = ACTIONS(2186), + [anon_sym_source_DASHenv] = ACTIONS(2186), + [anon_sym_hide] = ACTIONS(2186), + [anon_sym_hide_DASHenv] = ACTIONS(2186), + [anon_sym_overlay] = ACTIONS(2186), + [anon_sym_as] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(1641), + [anon_sym_PLUS2] = ACTIONS(2186), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2186), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2186), + [aux_sym__val_number_decimal_token1] = ACTIONS(2186), + [aux_sym__val_number_decimal_token2] = ACTIONS(2186), + [aux_sym__val_number_decimal_token3] = ACTIONS(2186), + [aux_sym__val_number_decimal_token4] = ACTIONS(2186), + [aux_sym__val_number_token1] = ACTIONS(2186), + [aux_sym__val_number_token2] = ACTIONS(2186), + [aux_sym__val_number_token3] = ACTIONS(2186), + [aux_sym__val_number_token4] = ACTIONS(2186), + [aux_sym__val_number_token5] = ACTIONS(2186), + [aux_sym__val_number_token6] = ACTIONS(2186), + [anon_sym_DQUOTE] = ACTIONS(2186), + [sym__str_single_quotes] = ACTIONS(2186), + [sym__str_back_ticks] = ACTIONS(2186), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2186), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2186), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2186), + [sym__entry_separator] = ACTIONS(2188), + [anon_sym_register] = ACTIONS(2186), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2188), + }, + [544] = { + [sym_comment] = STATE(544), + [anon_sym_export] = ACTIONS(2190), + [anon_sym_alias] = ACTIONS(2190), + [anon_sym_let] = ACTIONS(2190), + [anon_sym_let_DASHenv] = ACTIONS(2190), + [anon_sym_mut] = ACTIONS(2190), + [anon_sym_const] = ACTIONS(2190), + [aux_sym_cmd_identifier_token1] = ACTIONS(2190), + [aux_sym_cmd_identifier_token2] = ACTIONS(2190), + [aux_sym_cmd_identifier_token3] = ACTIONS(2190), + [aux_sym_cmd_identifier_token4] = ACTIONS(2190), + [aux_sym_cmd_identifier_token5] = ACTIONS(2190), + [aux_sym_cmd_identifier_token6] = ACTIONS(2190), + [aux_sym_cmd_identifier_token7] = ACTIONS(2190), + [aux_sym_cmd_identifier_token8] = ACTIONS(2190), + [aux_sym_cmd_identifier_token9] = ACTIONS(2190), + [aux_sym_cmd_identifier_token10] = ACTIONS(2190), + [aux_sym_cmd_identifier_token11] = ACTIONS(2190), + [aux_sym_cmd_identifier_token12] = ACTIONS(2190), + [aux_sym_cmd_identifier_token13] = ACTIONS(2190), + [aux_sym_cmd_identifier_token14] = ACTIONS(2190), + [aux_sym_cmd_identifier_token15] = ACTIONS(2190), + [aux_sym_cmd_identifier_token16] = ACTIONS(2190), + [aux_sym_cmd_identifier_token17] = ACTIONS(2190), + [aux_sym_cmd_identifier_token18] = ACTIONS(2190), + [aux_sym_cmd_identifier_token19] = ACTIONS(2190), + [aux_sym_cmd_identifier_token20] = ACTIONS(2190), + [aux_sym_cmd_identifier_token21] = ACTIONS(2190), + [aux_sym_cmd_identifier_token22] = ACTIONS(2190), + [aux_sym_cmd_identifier_token23] = ACTIONS(2190), + [aux_sym_cmd_identifier_token24] = ACTIONS(2190), + [aux_sym_cmd_identifier_token25] = ACTIONS(2190), + [aux_sym_cmd_identifier_token26] = ACTIONS(2190), + [aux_sym_cmd_identifier_token27] = ACTIONS(2190), + [aux_sym_cmd_identifier_token28] = ACTIONS(2190), + [aux_sym_cmd_identifier_token29] = ACTIONS(2190), + [aux_sym_cmd_identifier_token30] = ACTIONS(2190), + [aux_sym_cmd_identifier_token31] = ACTIONS(2190), + [aux_sym_cmd_identifier_token32] = ACTIONS(2190), + [aux_sym_cmd_identifier_token33] = ACTIONS(2190), + [aux_sym_cmd_identifier_token34] = ACTIONS(2190), + [aux_sym_cmd_identifier_token35] = ACTIONS(2190), + [aux_sym_cmd_identifier_token36] = ACTIONS(2190), + [aux_sym_cmd_identifier_token37] = ACTIONS(2190), + [aux_sym_cmd_identifier_token38] = ACTIONS(2190), + [aux_sym_cmd_identifier_token39] = ACTIONS(2190), + [aux_sym_cmd_identifier_token40] = ACTIONS(2190), + [anon_sym_def] = ACTIONS(2190), + [anon_sym_export_DASHenv] = ACTIONS(2190), + [anon_sym_extern] = ACTIONS(2190), + [anon_sym_module] = ACTIONS(2190), + [anon_sym_use] = ACTIONS(2190), + [anon_sym_LPAREN] = ACTIONS(2190), + [anon_sym_COMMA] = ACTIONS(2190), + [anon_sym_DOLLAR] = ACTIONS(2190), + [anon_sym_error] = ACTIONS(2190), + [anon_sym_DASH2] = ACTIONS(2190), + [anon_sym_break] = ACTIONS(2190), + [anon_sym_continue] = ACTIONS(2190), + [anon_sym_for] = ACTIONS(2190), + [anon_sym_in2] = ACTIONS(2190), + [anon_sym_loop] = ACTIONS(2190), + [anon_sym_make] = ACTIONS(2190), + [anon_sym_while] = ACTIONS(2190), + [anon_sym_do] = ACTIONS(2190), + [anon_sym_if] = ACTIONS(2190), + [anon_sym_else] = ACTIONS(2190), + [anon_sym_match] = ACTIONS(2190), + [anon_sym_RBRACE] = ACTIONS(2190), + [anon_sym_try] = ACTIONS(2190), + [anon_sym_catch] = ACTIONS(2190), + [anon_sym_return] = ACTIONS(2190), + [anon_sym_source] = ACTIONS(2190), + [anon_sym_source_DASHenv] = ACTIONS(2190), + [anon_sym_hide] = ACTIONS(2190), + [anon_sym_hide_DASHenv] = ACTIONS(2190), + [anon_sym_overlay] = ACTIONS(2190), + [anon_sym_as] = ACTIONS(2190), + [anon_sym_LPAREN2] = ACTIONS(2192), + [anon_sym_PLUS2] = ACTIONS(2190), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2190), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2190), + [aux_sym__val_number_decimal_token1] = ACTIONS(2190), + [aux_sym__val_number_decimal_token2] = ACTIONS(2190), + [aux_sym__val_number_decimal_token3] = ACTIONS(2190), + [aux_sym__val_number_decimal_token4] = ACTIONS(2190), + [aux_sym__val_number_token1] = ACTIONS(2190), + [aux_sym__val_number_token2] = ACTIONS(2190), + [aux_sym__val_number_token3] = ACTIONS(2190), + [aux_sym__val_number_token4] = ACTIONS(2190), + [aux_sym__val_number_token5] = ACTIONS(2190), + [aux_sym__val_number_token6] = ACTIONS(2190), + [anon_sym_DQUOTE] = ACTIONS(2190), + [sym__str_single_quotes] = ACTIONS(2190), + [sym__str_back_ticks] = ACTIONS(2190), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2190), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2190), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2190), + [sym__entry_separator] = ACTIONS(2194), + [anon_sym_register] = ACTIONS(2190), + [aux_sym__unquoted_in_record_token2] = ACTIONS(2196), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2194), + }, + [545] = { + [sym_comment] = STATE(545), + [anon_sym_export] = ACTIONS(2030), + [anon_sym_alias] = ACTIONS(2030), + [anon_sym_let] = ACTIONS(2030), + [anon_sym_let_DASHenv] = ACTIONS(2030), + [anon_sym_mut] = ACTIONS(2030), + [anon_sym_const] = ACTIONS(2030), + [aux_sym_cmd_identifier_token1] = ACTIONS(2030), + [aux_sym_cmd_identifier_token2] = ACTIONS(2036), + [aux_sym_cmd_identifier_token3] = ACTIONS(2036), + [aux_sym_cmd_identifier_token4] = ACTIONS(2036), + [aux_sym_cmd_identifier_token5] = ACTIONS(2036), + [aux_sym_cmd_identifier_token6] = ACTIONS(2036), + [aux_sym_cmd_identifier_token7] = ACTIONS(2036), + [aux_sym_cmd_identifier_token8] = ACTIONS(2030), + [aux_sym_cmd_identifier_token9] = ACTIONS(2030), + [aux_sym_cmd_identifier_token10] = ACTIONS(2036), + [aux_sym_cmd_identifier_token11] = ACTIONS(2036), + [aux_sym_cmd_identifier_token12] = ACTIONS(2030), + [aux_sym_cmd_identifier_token13] = ACTIONS(2030), + [aux_sym_cmd_identifier_token14] = ACTIONS(2030), + [aux_sym_cmd_identifier_token15] = ACTIONS(2030), + [aux_sym_cmd_identifier_token16] = ACTIONS(2036), + [aux_sym_cmd_identifier_token17] = ACTIONS(2036), + [aux_sym_cmd_identifier_token18] = ACTIONS(2036), + [aux_sym_cmd_identifier_token19] = ACTIONS(2036), + [aux_sym_cmd_identifier_token20] = ACTIONS(2036), + [aux_sym_cmd_identifier_token21] = ACTIONS(2036), + [aux_sym_cmd_identifier_token22] = ACTIONS(2036), + [aux_sym_cmd_identifier_token23] = ACTIONS(2036), + [aux_sym_cmd_identifier_token24] = ACTIONS(2036), + [aux_sym_cmd_identifier_token25] = ACTIONS(2036), + [aux_sym_cmd_identifier_token26] = ACTIONS(2036), + [aux_sym_cmd_identifier_token27] = ACTIONS(2036), + [aux_sym_cmd_identifier_token28] = ACTIONS(2036), + [aux_sym_cmd_identifier_token29] = ACTIONS(2036), + [aux_sym_cmd_identifier_token30] = ACTIONS(2036), + [aux_sym_cmd_identifier_token31] = ACTIONS(2036), + [aux_sym_cmd_identifier_token32] = ACTIONS(2036), + [aux_sym_cmd_identifier_token33] = ACTIONS(2036), + [aux_sym_cmd_identifier_token34] = ACTIONS(2030), + [aux_sym_cmd_identifier_token35] = ACTIONS(2036), + [aux_sym_cmd_identifier_token36] = ACTIONS(2036), + [aux_sym_cmd_identifier_token37] = ACTIONS(2036), + [aux_sym_cmd_identifier_token38] = ACTIONS(2030), + [aux_sym_cmd_identifier_token39] = ACTIONS(2036), + [aux_sym_cmd_identifier_token40] = ACTIONS(2036), + [anon_sym_def] = ACTIONS(2030), + [anon_sym_export_DASHenv] = ACTIONS(2030), + [anon_sym_extern] = ACTIONS(2030), + [anon_sym_module] = ACTIONS(2030), + [anon_sym_use] = ACTIONS(2030), + [anon_sym_LPAREN] = ACTIONS(2036), + [anon_sym_COMMA] = ACTIONS(2036), + [anon_sym_DOLLAR] = ACTIONS(2030), + [anon_sym_error] = ACTIONS(2030), + [anon_sym_DASH2] = ACTIONS(2030), + [anon_sym_break] = ACTIONS(2030), + [anon_sym_continue] = ACTIONS(2030), + [anon_sym_for] = ACTIONS(2030), + [anon_sym_in2] = ACTIONS(2030), + [anon_sym_loop] = ACTIONS(2030), + [anon_sym_make] = ACTIONS(2030), + [anon_sym_while] = ACTIONS(2030), + [anon_sym_do] = ACTIONS(2030), + [anon_sym_if] = ACTIONS(2030), + [anon_sym_else] = ACTIONS(2030), + [anon_sym_match] = ACTIONS(2030), + [anon_sym_RBRACE] = ACTIONS(2036), + [anon_sym_try] = ACTIONS(2030), + [anon_sym_catch] = ACTIONS(2030), + [anon_sym_return] = ACTIONS(2030), + [anon_sym_source] = ACTIONS(2030), + [anon_sym_source_DASHenv] = ACTIONS(2030), + [anon_sym_hide] = ACTIONS(2030), + [anon_sym_hide_DASHenv] = ACTIONS(2030), + [anon_sym_overlay] = ACTIONS(2030), + [anon_sym_as] = ACTIONS(2030), + [anon_sym_PLUS2] = ACTIONS(2030), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2036), + [anon_sym_DOT_DOT2] = ACTIONS(2198), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2200), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2200), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2036), + [aux_sym__val_number_decimal_token1] = ACTIONS(2030), + [aux_sym__val_number_decimal_token2] = ACTIONS(2036), + [aux_sym__val_number_decimal_token3] = ACTIONS(2036), + [aux_sym__val_number_decimal_token4] = ACTIONS(2036), + [aux_sym__val_number_token1] = ACTIONS(2036), + [aux_sym__val_number_token2] = ACTIONS(2036), + [aux_sym__val_number_token3] = ACTIONS(2036), + [aux_sym__val_number_token4] = ACTIONS(2030), + [aux_sym__val_number_token5] = ACTIONS(2030), + [aux_sym__val_number_token6] = ACTIONS(2030), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym__str_single_quotes] = ACTIONS(2036), + [sym__str_back_ticks] = ACTIONS(2036), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2036), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2036), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2036), + [anon_sym_register] = ACTIONS(2030), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2036), + }, + [546] = { + [sym_comment] = STATE(546), + [anon_sym_export] = ACTIONS(1977), + [anon_sym_alias] = ACTIONS(1977), + [anon_sym_let] = ACTIONS(1977), + [anon_sym_let_DASHenv] = ACTIONS(1977), + [anon_sym_mut] = ACTIONS(1977), + [anon_sym_const] = ACTIONS(1977), + [aux_sym_cmd_identifier_token1] = ACTIONS(1977), + [aux_sym_cmd_identifier_token2] = ACTIONS(1983), + [aux_sym_cmd_identifier_token3] = ACTIONS(1983), + [aux_sym_cmd_identifier_token4] = ACTIONS(1983), + [aux_sym_cmd_identifier_token5] = ACTIONS(1983), + [aux_sym_cmd_identifier_token6] = ACTIONS(1983), + [aux_sym_cmd_identifier_token7] = ACTIONS(1983), + [aux_sym_cmd_identifier_token8] = ACTIONS(1977), + [aux_sym_cmd_identifier_token9] = ACTIONS(1977), + [aux_sym_cmd_identifier_token10] = ACTIONS(1983), + [aux_sym_cmd_identifier_token11] = ACTIONS(1983), + [aux_sym_cmd_identifier_token12] = ACTIONS(1977), + [aux_sym_cmd_identifier_token13] = ACTIONS(1977), + [aux_sym_cmd_identifier_token14] = ACTIONS(1977), + [aux_sym_cmd_identifier_token15] = ACTIONS(1977), + [aux_sym_cmd_identifier_token16] = ACTIONS(1983), + [aux_sym_cmd_identifier_token17] = ACTIONS(1983), + [aux_sym_cmd_identifier_token18] = ACTIONS(1983), + [aux_sym_cmd_identifier_token19] = ACTIONS(1983), + [aux_sym_cmd_identifier_token20] = ACTIONS(1983), + [aux_sym_cmd_identifier_token21] = ACTIONS(1983), + [aux_sym_cmd_identifier_token22] = ACTIONS(1983), + [aux_sym_cmd_identifier_token23] = ACTIONS(1983), + [aux_sym_cmd_identifier_token24] = ACTIONS(1983), + [aux_sym_cmd_identifier_token25] = ACTIONS(1983), + [aux_sym_cmd_identifier_token26] = ACTIONS(1983), + [aux_sym_cmd_identifier_token27] = ACTIONS(1983), + [aux_sym_cmd_identifier_token28] = ACTIONS(1983), + [aux_sym_cmd_identifier_token29] = ACTIONS(1983), + [aux_sym_cmd_identifier_token30] = ACTIONS(1983), + [aux_sym_cmd_identifier_token31] = ACTIONS(1983), + [aux_sym_cmd_identifier_token32] = ACTIONS(1983), + [aux_sym_cmd_identifier_token33] = ACTIONS(1983), + [aux_sym_cmd_identifier_token34] = ACTIONS(1977), + [aux_sym_cmd_identifier_token35] = ACTIONS(1983), + [aux_sym_cmd_identifier_token36] = ACTIONS(1983), + [aux_sym_cmd_identifier_token37] = ACTIONS(1983), + [aux_sym_cmd_identifier_token38] = ACTIONS(1977), + [aux_sym_cmd_identifier_token39] = ACTIONS(1983), + [aux_sym_cmd_identifier_token40] = ACTIONS(1983), + [anon_sym_def] = ACTIONS(1977), + [anon_sym_export_DASHenv] = ACTIONS(1977), + [anon_sym_extern] = ACTIONS(1977), + [anon_sym_module] = ACTIONS(1977), + [anon_sym_use] = ACTIONS(1977), + [anon_sym_LPAREN] = ACTIONS(1983), + [anon_sym_COMMA] = ACTIONS(1983), + [anon_sym_DOLLAR] = ACTIONS(1977), + [anon_sym_error] = ACTIONS(1977), + [anon_sym_DASH2] = ACTIONS(1977), + [anon_sym_break] = ACTIONS(1977), + [anon_sym_continue] = ACTIONS(1977), + [anon_sym_for] = ACTIONS(1977), + [anon_sym_in2] = ACTIONS(1977), + [anon_sym_loop] = ACTIONS(1977), + [anon_sym_make] = ACTIONS(1977), + [anon_sym_while] = ACTIONS(1977), + [anon_sym_do] = ACTIONS(1977), + [anon_sym_if] = ACTIONS(1977), + [anon_sym_else] = ACTIONS(1977), + [anon_sym_match] = ACTIONS(1977), + [anon_sym_RBRACE] = ACTIONS(1983), + [anon_sym_try] = ACTIONS(1977), + [anon_sym_catch] = ACTIONS(1977), + [anon_sym_return] = ACTIONS(1977), + [anon_sym_source] = ACTIONS(1977), + [anon_sym_source_DASHenv] = ACTIONS(1977), + [anon_sym_hide] = ACTIONS(1977), + [anon_sym_hide_DASHenv] = ACTIONS(1977), + [anon_sym_overlay] = ACTIONS(1977), + [anon_sym_as] = ACTIONS(1977), + [anon_sym_PLUS2] = ACTIONS(1977), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1983), + [anon_sym_DOT_DOT2] = ACTIONS(2202), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2204), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2204), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1977), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1983), + [aux_sym__val_number_decimal_token4] = ACTIONS(1983), + [aux_sym__val_number_token1] = ACTIONS(1983), + [aux_sym__val_number_token2] = ACTIONS(1983), + [aux_sym__val_number_token3] = ACTIONS(1983), + [aux_sym__val_number_token4] = ACTIONS(1977), + [aux_sym__val_number_token5] = ACTIONS(1977), + [aux_sym__val_number_token6] = ACTIONS(1977), + [anon_sym_DQUOTE] = ACTIONS(1983), + [sym__str_single_quotes] = ACTIONS(1983), + [sym__str_back_ticks] = ACTIONS(1983), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1983), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1983), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1983), + [anon_sym_register] = ACTIONS(1977), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1983), + }, + [547] = { + [sym_comment] = STATE(547), + [anon_sym_export] = ACTIONS(1985), + [anon_sym_alias] = ACTIONS(1985), + [anon_sym_let] = ACTIONS(1985), + [anon_sym_let_DASHenv] = ACTIONS(1985), + [anon_sym_mut] = ACTIONS(1985), + [anon_sym_const] = ACTIONS(1985), + [aux_sym_cmd_identifier_token1] = ACTIONS(1985), + [aux_sym_cmd_identifier_token2] = ACTIONS(1991), + [aux_sym_cmd_identifier_token3] = ACTIONS(1991), + [aux_sym_cmd_identifier_token4] = ACTIONS(1991), + [aux_sym_cmd_identifier_token5] = ACTIONS(1991), + [aux_sym_cmd_identifier_token6] = ACTIONS(1991), + [aux_sym_cmd_identifier_token7] = ACTIONS(1991), + [aux_sym_cmd_identifier_token8] = ACTIONS(1985), + [aux_sym_cmd_identifier_token9] = ACTIONS(1985), + [aux_sym_cmd_identifier_token10] = ACTIONS(1991), + [aux_sym_cmd_identifier_token11] = ACTIONS(1991), + [aux_sym_cmd_identifier_token12] = ACTIONS(1985), + [aux_sym_cmd_identifier_token13] = ACTIONS(1985), + [aux_sym_cmd_identifier_token14] = ACTIONS(1985), + [aux_sym_cmd_identifier_token15] = ACTIONS(1985), + [aux_sym_cmd_identifier_token16] = ACTIONS(1991), + [aux_sym_cmd_identifier_token17] = ACTIONS(1991), + [aux_sym_cmd_identifier_token18] = ACTIONS(1991), + [aux_sym_cmd_identifier_token19] = ACTIONS(1991), + [aux_sym_cmd_identifier_token20] = ACTIONS(1991), + [aux_sym_cmd_identifier_token21] = ACTIONS(1991), + [aux_sym_cmd_identifier_token22] = ACTIONS(1991), + [aux_sym_cmd_identifier_token23] = ACTIONS(1991), + [aux_sym_cmd_identifier_token24] = ACTIONS(1991), + [aux_sym_cmd_identifier_token25] = ACTIONS(1991), + [aux_sym_cmd_identifier_token26] = ACTIONS(1991), + [aux_sym_cmd_identifier_token27] = ACTIONS(1991), + [aux_sym_cmd_identifier_token28] = ACTIONS(1991), + [aux_sym_cmd_identifier_token29] = ACTIONS(1991), + [aux_sym_cmd_identifier_token30] = ACTIONS(1991), + [aux_sym_cmd_identifier_token31] = ACTIONS(1991), + [aux_sym_cmd_identifier_token32] = ACTIONS(1991), + [aux_sym_cmd_identifier_token33] = ACTIONS(1991), + [aux_sym_cmd_identifier_token34] = ACTIONS(1985), + [aux_sym_cmd_identifier_token35] = ACTIONS(1991), + [aux_sym_cmd_identifier_token36] = ACTIONS(1991), + [aux_sym_cmd_identifier_token37] = ACTIONS(1991), + [aux_sym_cmd_identifier_token38] = ACTIONS(1985), + [aux_sym_cmd_identifier_token39] = ACTIONS(1991), + [aux_sym_cmd_identifier_token40] = ACTIONS(1991), + [anon_sym_def] = ACTIONS(1985), + [anon_sym_export_DASHenv] = ACTIONS(1985), + [anon_sym_extern] = ACTIONS(1985), + [anon_sym_module] = ACTIONS(1985), + [anon_sym_use] = ACTIONS(1985), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_COMMA] = ACTIONS(1991), + [anon_sym_DOLLAR] = ACTIONS(1985), + [anon_sym_error] = ACTIONS(1985), + [anon_sym_DASH2] = ACTIONS(1985), + [anon_sym_break] = ACTIONS(1985), + [anon_sym_continue] = ACTIONS(1985), + [anon_sym_for] = ACTIONS(1985), + [anon_sym_in2] = ACTIONS(1985), + [anon_sym_loop] = ACTIONS(1985), + [anon_sym_make] = ACTIONS(1985), + [anon_sym_while] = ACTIONS(1985), + [anon_sym_do] = ACTIONS(1985), + [anon_sym_if] = ACTIONS(1985), + [anon_sym_else] = ACTIONS(1985), + [anon_sym_match] = ACTIONS(1985), + [anon_sym_RBRACE] = ACTIONS(1991), + [anon_sym_try] = ACTIONS(1985), + [anon_sym_catch] = ACTIONS(1985), + [anon_sym_return] = ACTIONS(1985), + [anon_sym_source] = ACTIONS(1985), + [anon_sym_source_DASHenv] = ACTIONS(1985), + [anon_sym_hide] = ACTIONS(1985), + [anon_sym_hide_DASHenv] = ACTIONS(1985), + [anon_sym_overlay] = ACTIONS(1985), + [anon_sym_as] = ACTIONS(1985), + [anon_sym_PLUS2] = ACTIONS(1985), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1991), + [anon_sym_DOT_DOT2] = ACTIONS(2206), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2208), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2208), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1991), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1991), + [aux_sym__val_number_decimal_token3] = ACTIONS(1991), + [aux_sym__val_number_decimal_token4] = ACTIONS(1991), + [aux_sym__val_number_token1] = ACTIONS(1991), + [aux_sym__val_number_token2] = ACTIONS(1991), + [aux_sym__val_number_token3] = ACTIONS(1991), + [aux_sym__val_number_token4] = ACTIONS(1985), + [aux_sym__val_number_token5] = ACTIONS(1985), + [aux_sym__val_number_token6] = ACTIONS(1985), + [anon_sym_DQUOTE] = ACTIONS(1991), + [sym__str_single_quotes] = ACTIONS(1991), + [sym__str_back_ticks] = ACTIONS(1991), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1991), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1991), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1991), + [anon_sym_register] = ACTIONS(1985), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1991), + }, + [548] = { + [sym_comment] = STATE(548), [anon_sym_export] = ACTIONS(2043), [anon_sym_alias] = ACTIONS(2043), [anon_sym_let] = ACTIONS(2043), @@ -138080,16 +141482,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(2043), [anon_sym_source] = ACTIONS(2043), [anon_sym_source_DASHenv] = ACTIONS(2043), - [anon_sym_register] = ACTIONS(2043), [anon_sym_hide] = ACTIONS(2043), [anon_sym_hide_DASHenv] = ACTIONS(2043), [anon_sym_overlay] = ACTIONS(2043), [anon_sym_as] = ACTIONS(2043), [anon_sym_PLUS2] = ACTIONS(2043), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2049), - [anon_sym_DOT_DOT2] = ACTIONS(2168), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2170), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2170), + [anon_sym_DOT_DOT2] = ACTIONS(2210), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2212), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2212), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2049), [aux_sym__val_number_decimal_token1] = ACTIONS(2043), [aux_sym__val_number_decimal_token2] = ACTIONS(2049), @@ -138107,4123 +141508,2426 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2049), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2049), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2049), - [anon_sym_POUND] = ACTIONS(251), + [anon_sym_register] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(2049), }, - [516] = { - [sym_comment] = STATE(516), - [anon_sym_export] = ACTIONS(1997), - [anon_sym_alias] = ACTIONS(1997), - [anon_sym_let] = ACTIONS(1997), - [anon_sym_let_DASHenv] = ACTIONS(1997), - [anon_sym_mut] = ACTIONS(1997), - [anon_sym_const] = ACTIONS(1997), - [aux_sym_cmd_identifier_token1] = ACTIONS(1997), - [aux_sym_cmd_identifier_token2] = ACTIONS(1999), - [aux_sym_cmd_identifier_token3] = ACTIONS(1999), - [aux_sym_cmd_identifier_token4] = ACTIONS(1999), - [aux_sym_cmd_identifier_token5] = ACTIONS(1999), - [aux_sym_cmd_identifier_token6] = ACTIONS(1999), - [aux_sym_cmd_identifier_token7] = ACTIONS(1999), - [aux_sym_cmd_identifier_token8] = ACTIONS(1997), - [aux_sym_cmd_identifier_token9] = ACTIONS(1997), - [aux_sym_cmd_identifier_token10] = ACTIONS(1999), - [aux_sym_cmd_identifier_token11] = ACTIONS(1999), - [aux_sym_cmd_identifier_token12] = ACTIONS(1997), - [aux_sym_cmd_identifier_token13] = ACTIONS(1997), - [aux_sym_cmd_identifier_token14] = ACTIONS(1997), - [aux_sym_cmd_identifier_token15] = ACTIONS(1997), - [aux_sym_cmd_identifier_token16] = ACTIONS(1999), - [aux_sym_cmd_identifier_token17] = ACTIONS(1999), - [aux_sym_cmd_identifier_token18] = ACTIONS(1999), - [aux_sym_cmd_identifier_token19] = ACTIONS(1999), - [aux_sym_cmd_identifier_token20] = ACTIONS(1999), - [aux_sym_cmd_identifier_token21] = ACTIONS(1999), - [aux_sym_cmd_identifier_token22] = ACTIONS(1999), - [aux_sym_cmd_identifier_token23] = ACTIONS(1999), - [aux_sym_cmd_identifier_token24] = ACTIONS(1999), - [aux_sym_cmd_identifier_token25] = ACTIONS(1999), - [aux_sym_cmd_identifier_token26] = ACTIONS(1999), - [aux_sym_cmd_identifier_token27] = ACTIONS(1999), - [aux_sym_cmd_identifier_token28] = ACTIONS(1999), - [aux_sym_cmd_identifier_token29] = ACTIONS(1999), - [aux_sym_cmd_identifier_token30] = ACTIONS(1999), - [aux_sym_cmd_identifier_token31] = ACTIONS(1999), - [aux_sym_cmd_identifier_token32] = ACTIONS(1999), - [aux_sym_cmd_identifier_token33] = ACTIONS(1999), - [aux_sym_cmd_identifier_token34] = ACTIONS(1997), - [aux_sym_cmd_identifier_token35] = ACTIONS(1999), - [aux_sym_cmd_identifier_token36] = ACTIONS(1999), - [aux_sym_cmd_identifier_token37] = ACTIONS(1999), - [aux_sym_cmd_identifier_token38] = ACTIONS(1997), - [aux_sym_cmd_identifier_token39] = ACTIONS(1999), - [aux_sym_cmd_identifier_token40] = ACTIONS(1999), - [anon_sym_def] = ACTIONS(1997), - [anon_sym_export_DASHenv] = ACTIONS(1997), - [anon_sym_extern] = ACTIONS(1997), - [anon_sym_module] = ACTIONS(1997), - [anon_sym_use] = ACTIONS(1997), - [anon_sym_LPAREN] = ACTIONS(1999), - [anon_sym_COMMA] = ACTIONS(1999), - [anon_sym_DOLLAR] = ACTIONS(1997), - [anon_sym_error] = ACTIONS(1997), - [anon_sym_DASH2] = ACTIONS(1997), - [anon_sym_break] = ACTIONS(1997), - [anon_sym_continue] = ACTIONS(1997), - [anon_sym_for] = ACTIONS(1997), - [anon_sym_in2] = ACTIONS(1997), - [anon_sym_loop] = ACTIONS(1997), - [anon_sym_make] = ACTIONS(1997), - [anon_sym_while] = ACTIONS(1997), - [anon_sym_do] = ACTIONS(1997), - [anon_sym_if] = ACTIONS(1997), - [anon_sym_else] = ACTIONS(1997), - [anon_sym_match] = ACTIONS(1997), - [anon_sym_RBRACE] = ACTIONS(1999), - [anon_sym_try] = ACTIONS(1997), - [anon_sym_catch] = ACTIONS(1997), - [anon_sym_return] = ACTIONS(1997), - [anon_sym_source] = ACTIONS(1997), - [anon_sym_source_DASHenv] = ACTIONS(1997), - [anon_sym_register] = ACTIONS(1997), - [anon_sym_hide] = ACTIONS(1997), - [anon_sym_hide_DASHenv] = ACTIONS(1997), - [anon_sym_overlay] = ACTIONS(1997), - [anon_sym_as] = ACTIONS(1997), - [anon_sym_PLUS2] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1999), - [anon_sym_DOT_DOT2] = ACTIONS(1997), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1999), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1999), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1999), - [aux_sym__val_number_decimal_token1] = ACTIONS(1997), - [aux_sym__val_number_decimal_token2] = ACTIONS(1999), - [aux_sym__val_number_decimal_token3] = ACTIONS(1999), - [aux_sym__val_number_decimal_token4] = ACTIONS(1999), - [aux_sym__val_number_token1] = ACTIONS(1999), - [aux_sym__val_number_token2] = ACTIONS(1999), - [aux_sym__val_number_token3] = ACTIONS(1999), - [aux_sym__val_number_token4] = ACTIONS(1997), - [aux_sym__val_number_token5] = ACTIONS(1997), - [aux_sym__val_number_token6] = ACTIONS(1997), - [anon_sym_DQUOTE] = ACTIONS(1999), - [sym__str_single_quotes] = ACTIONS(1999), - [sym__str_back_ticks] = ACTIONS(1999), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1999), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1999), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1999), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1999), - }, - [517] = { - [sym_comment] = STATE(517), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_alias] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_let_DASHenv] = ACTIONS(1719), - [anon_sym_mut] = ACTIONS(1719), - [anon_sym_const] = ACTIONS(1719), - [aux_sym_cmd_identifier_token1] = ACTIONS(1719), - [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(1719), - [aux_sym_cmd_identifier_token9] = ACTIONS(1719), - [aux_sym_cmd_identifier_token10] = ACTIONS(1721), - [aux_sym_cmd_identifier_token11] = ACTIONS(1721), - [aux_sym_cmd_identifier_token12] = ACTIONS(1719), - [aux_sym_cmd_identifier_token13] = ACTIONS(1719), - [aux_sym_cmd_identifier_token14] = ACTIONS(1719), - [aux_sym_cmd_identifier_token15] = ACTIONS(1719), - [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(1719), - [aux_sym_cmd_identifier_token35] = ACTIONS(1721), - [aux_sym_cmd_identifier_token36] = ACTIONS(1721), - [aux_sym_cmd_identifier_token37] = ACTIONS(1721), - [aux_sym_cmd_identifier_token38] = ACTIONS(1719), - [aux_sym_cmd_identifier_token39] = ACTIONS(1721), - [aux_sym_cmd_identifier_token40] = ACTIONS(1721), - [anon_sym_def] = ACTIONS(1719), - [anon_sym_export_DASHenv] = ACTIONS(1719), - [anon_sym_extern] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(1719), - [anon_sym_use] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_COMMA] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1719), - [anon_sym_error] = ACTIONS(1719), - [anon_sym_DASH2] = ACTIONS(1719), - [anon_sym_break] = ACTIONS(1719), - [anon_sym_continue] = ACTIONS(1719), - [anon_sym_for] = ACTIONS(1719), - [anon_sym_in2] = ACTIONS(1719), - [anon_sym_loop] = ACTIONS(1719), - [anon_sym_make] = ACTIONS(1719), - [anon_sym_while] = ACTIONS(1719), - [anon_sym_do] = ACTIONS(1719), - [anon_sym_if] = ACTIONS(1719), - [anon_sym_else] = ACTIONS(1719), - [anon_sym_match] = ACTIONS(1719), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_try] = ACTIONS(1719), - [anon_sym_catch] = ACTIONS(1719), - [anon_sym_return] = ACTIONS(1719), - [anon_sym_source] = ACTIONS(1719), - [anon_sym_source_DASHenv] = ACTIONS(1719), - [anon_sym_register] = ACTIONS(1719), - [anon_sym_hide] = ACTIONS(1719), - [anon_sym_hide_DASHenv] = ACTIONS(1719), - [anon_sym_overlay] = ACTIONS(1719), - [anon_sym_as] = ACTIONS(1719), - [anon_sym_PLUS2] = ACTIONS(1719), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1721), - [anon_sym_DOT_DOT2] = ACTIONS(1719), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1721), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1721), - [aux_sym__val_number_decimal_token1] = ACTIONS(1719), - [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), - [aux_sym__val_number_token4] = ACTIONS(1719), - [aux_sym__val_number_token5] = ACTIONS(1719), - [aux_sym__val_number_token6] = ACTIONS(1719), - [anon_sym_DQUOTE] = ACTIONS(1721), - [sym__str_single_quotes] = ACTIONS(1721), - [sym__str_back_ticks] = ACTIONS(1721), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1721), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1721), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1721), + [549] = { + [sym_comment] = STATE(549), + [anon_sym_export] = ACTIONS(968), + [anon_sym_alias] = ACTIONS(968), + [anon_sym_let] = ACTIONS(968), + [anon_sym_let_DASHenv] = ACTIONS(968), + [anon_sym_mut] = ACTIONS(968), + [anon_sym_const] = ACTIONS(968), + [aux_sym_cmd_identifier_token1] = ACTIONS(968), + [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(968), + [aux_sym_cmd_identifier_token9] = ACTIONS(968), + [aux_sym_cmd_identifier_token10] = ACTIONS(970), + [aux_sym_cmd_identifier_token11] = ACTIONS(970), + [aux_sym_cmd_identifier_token12] = ACTIONS(968), + [aux_sym_cmd_identifier_token13] = ACTIONS(968), + [aux_sym_cmd_identifier_token14] = ACTIONS(968), + [aux_sym_cmd_identifier_token15] = ACTIONS(968), + [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(968), + [aux_sym_cmd_identifier_token35] = ACTIONS(970), + [aux_sym_cmd_identifier_token36] = ACTIONS(970), + [aux_sym_cmd_identifier_token37] = ACTIONS(970), + [aux_sym_cmd_identifier_token38] = ACTIONS(968), + [aux_sym_cmd_identifier_token39] = ACTIONS(970), + [aux_sym_cmd_identifier_token40] = ACTIONS(970), + [anon_sym_def] = ACTIONS(968), + [anon_sym_export_DASHenv] = ACTIONS(968), + [anon_sym_extern] = ACTIONS(968), + [anon_sym_module] = ACTIONS(968), + [anon_sym_use] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(970), + [anon_sym_COMMA] = ACTIONS(970), + [anon_sym_DOLLAR] = ACTIONS(968), + [anon_sym_error] = ACTIONS(968), + [anon_sym_DASH2] = ACTIONS(968), + [anon_sym_break] = ACTIONS(968), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_for] = ACTIONS(968), + [anon_sym_in2] = ACTIONS(968), + [anon_sym_loop] = ACTIONS(968), + [anon_sym_make] = ACTIONS(968), + [anon_sym_while] = ACTIONS(968), + [anon_sym_do] = ACTIONS(968), + [anon_sym_if] = ACTIONS(968), + [anon_sym_else] = ACTIONS(968), + [anon_sym_match] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(970), + [anon_sym_try] = ACTIONS(968), + [anon_sym_catch] = ACTIONS(968), + [anon_sym_return] = ACTIONS(968), + [anon_sym_source] = ACTIONS(968), + [anon_sym_source_DASHenv] = ACTIONS(968), + [anon_sym_hide] = ACTIONS(968), + [anon_sym_hide_DASHenv] = ACTIONS(968), + [anon_sym_overlay] = ACTIONS(968), + [anon_sym_as] = ACTIONS(968), + [anon_sym_QMARK2] = ACTIONS(2214), + [anon_sym_PLUS2] = ACTIONS(968), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(970), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(970), + [aux_sym__val_number_decimal_token1] = ACTIONS(968), + [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), + [aux_sym__val_number_token4] = ACTIONS(968), + [aux_sym__val_number_token5] = ACTIONS(968), + [aux_sym__val_number_token6] = ACTIONS(968), + [anon_sym_DQUOTE] = ACTIONS(970), + [sym__str_single_quotes] = ACTIONS(970), + [sym__str_back_ticks] = ACTIONS(970), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(970), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(970), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(970), + [anon_sym_register] = ACTIONS(968), + [anon_sym_COLON2] = ACTIONS(970), + [anon_sym_DOT2] = ACTIONS(968), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(970), }, - [518] = { - [sym_comment] = STATE(518), - [anon_sym_export] = ACTIONS(2172), - [anon_sym_alias] = ACTIONS(2172), - [anon_sym_let] = ACTIONS(2172), - [anon_sym_let_DASHenv] = ACTIONS(2172), - [anon_sym_mut] = ACTIONS(2172), - [anon_sym_const] = ACTIONS(2172), - [aux_sym_cmd_identifier_token1] = ACTIONS(2172), - [aux_sym_cmd_identifier_token2] = ACTIONS(2172), - [aux_sym_cmd_identifier_token3] = ACTIONS(2172), - [aux_sym_cmd_identifier_token4] = ACTIONS(2172), - [aux_sym_cmd_identifier_token5] = ACTIONS(2172), - [aux_sym_cmd_identifier_token6] = ACTIONS(2172), - [aux_sym_cmd_identifier_token7] = ACTIONS(2172), - [aux_sym_cmd_identifier_token8] = ACTIONS(2172), - [aux_sym_cmd_identifier_token9] = ACTIONS(2172), - [aux_sym_cmd_identifier_token10] = ACTIONS(2172), - [aux_sym_cmd_identifier_token11] = ACTIONS(2172), - [aux_sym_cmd_identifier_token12] = ACTIONS(2172), - [aux_sym_cmd_identifier_token13] = ACTIONS(2172), - [aux_sym_cmd_identifier_token14] = ACTIONS(2172), - [aux_sym_cmd_identifier_token15] = ACTIONS(2172), - [aux_sym_cmd_identifier_token16] = ACTIONS(2172), - [aux_sym_cmd_identifier_token17] = ACTIONS(2172), - [aux_sym_cmd_identifier_token18] = ACTIONS(2172), - [aux_sym_cmd_identifier_token19] = ACTIONS(2172), - [aux_sym_cmd_identifier_token20] = ACTIONS(2172), - [aux_sym_cmd_identifier_token21] = ACTIONS(2172), - [aux_sym_cmd_identifier_token22] = ACTIONS(2172), - [aux_sym_cmd_identifier_token23] = ACTIONS(2172), - [aux_sym_cmd_identifier_token24] = ACTIONS(2172), - [aux_sym_cmd_identifier_token25] = ACTIONS(2172), - [aux_sym_cmd_identifier_token26] = ACTIONS(2172), - [aux_sym_cmd_identifier_token27] = ACTIONS(2172), - [aux_sym_cmd_identifier_token28] = ACTIONS(2172), - [aux_sym_cmd_identifier_token29] = ACTIONS(2172), - [aux_sym_cmd_identifier_token30] = ACTIONS(2172), - [aux_sym_cmd_identifier_token31] = ACTIONS(2172), - [aux_sym_cmd_identifier_token32] = ACTIONS(2172), - [aux_sym_cmd_identifier_token33] = ACTIONS(2172), - [aux_sym_cmd_identifier_token34] = ACTIONS(2172), - [aux_sym_cmd_identifier_token35] = ACTIONS(2172), - [aux_sym_cmd_identifier_token36] = ACTIONS(2172), - [aux_sym_cmd_identifier_token37] = ACTIONS(2172), - [aux_sym_cmd_identifier_token38] = ACTIONS(2172), - [aux_sym_cmd_identifier_token39] = ACTIONS(2172), - [aux_sym_cmd_identifier_token40] = ACTIONS(2172), - [anon_sym_def] = ACTIONS(2172), - [anon_sym_export_DASHenv] = ACTIONS(2172), - [anon_sym_extern] = ACTIONS(2172), - [anon_sym_module] = ACTIONS(2172), - [anon_sym_use] = ACTIONS(2172), - [anon_sym_LPAREN] = ACTIONS(2172), - [anon_sym_COMMA] = ACTIONS(2172), - [anon_sym_DOLLAR] = ACTIONS(2172), - [anon_sym_error] = ACTIONS(2172), - [anon_sym_DASH2] = ACTIONS(2172), - [anon_sym_break] = ACTIONS(2172), - [anon_sym_continue] = ACTIONS(2172), - [anon_sym_for] = ACTIONS(2172), - [anon_sym_in2] = ACTIONS(2172), - [anon_sym_loop] = ACTIONS(2172), - [anon_sym_make] = ACTIONS(2172), - [anon_sym_while] = ACTIONS(2172), - [anon_sym_do] = ACTIONS(2172), - [anon_sym_if] = ACTIONS(2172), - [anon_sym_else] = ACTIONS(2172), - [anon_sym_match] = ACTIONS(2172), - [anon_sym_RBRACE] = ACTIONS(2172), - [anon_sym_try] = ACTIONS(2172), - [anon_sym_catch] = ACTIONS(2172), - [anon_sym_return] = ACTIONS(2172), - [anon_sym_source] = ACTIONS(2172), - [anon_sym_source_DASHenv] = ACTIONS(2172), - [anon_sym_register] = ACTIONS(2172), - [anon_sym_hide] = ACTIONS(2172), - [anon_sym_hide_DASHenv] = ACTIONS(2172), - [anon_sym_overlay] = ACTIONS(2172), - [anon_sym_as] = ACTIONS(2172), - [anon_sym_LPAREN2] = ACTIONS(2174), - [anon_sym_PLUS2] = ACTIONS(2172), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2172), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2172), - [aux_sym__val_number_decimal_token1] = ACTIONS(2172), - [aux_sym__val_number_decimal_token2] = ACTIONS(2172), - [aux_sym__val_number_decimal_token3] = ACTIONS(2172), - [aux_sym__val_number_decimal_token4] = ACTIONS(2172), - [aux_sym__val_number_token1] = ACTIONS(2172), - [aux_sym__val_number_token2] = ACTIONS(2172), - [aux_sym__val_number_token3] = ACTIONS(2172), - [aux_sym__val_number_token4] = ACTIONS(2172), - [aux_sym__val_number_token5] = ACTIONS(2172), - [aux_sym__val_number_token6] = ACTIONS(2172), - [anon_sym_DQUOTE] = ACTIONS(2172), - [sym__str_single_quotes] = ACTIONS(2172), - [sym__str_back_ticks] = ACTIONS(2172), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2172), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2172), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2172), - [sym__entry_separator] = ACTIONS(2176), - [aux_sym__unquoted_in_record_token2] = ACTIONS(2178), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2176), + [550] = { + [sym_comment] = STATE(550), + [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(1703), + [aux_sym_cmd_identifier_token3] = ACTIONS(1703), + [aux_sym_cmd_identifier_token4] = ACTIONS(1703), + [aux_sym_cmd_identifier_token5] = ACTIONS(1703), + [aux_sym_cmd_identifier_token6] = ACTIONS(1703), + [aux_sym_cmd_identifier_token7] = ACTIONS(1703), + [aux_sym_cmd_identifier_token8] = ACTIONS(1701), + [aux_sym_cmd_identifier_token9] = ACTIONS(1701), + [aux_sym_cmd_identifier_token10] = ACTIONS(1703), + [aux_sym_cmd_identifier_token11] = ACTIONS(1703), + [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(1703), + [aux_sym_cmd_identifier_token17] = ACTIONS(1703), + [aux_sym_cmd_identifier_token18] = ACTIONS(1703), + [aux_sym_cmd_identifier_token19] = ACTIONS(1703), + [aux_sym_cmd_identifier_token20] = ACTIONS(1703), + [aux_sym_cmd_identifier_token21] = ACTIONS(1703), + [aux_sym_cmd_identifier_token22] = ACTIONS(1703), + [aux_sym_cmd_identifier_token23] = ACTIONS(1703), + [aux_sym_cmd_identifier_token24] = ACTIONS(1703), + [aux_sym_cmd_identifier_token25] = ACTIONS(1703), + [aux_sym_cmd_identifier_token26] = ACTIONS(1703), + [aux_sym_cmd_identifier_token27] = ACTIONS(1703), + [aux_sym_cmd_identifier_token28] = ACTIONS(1703), + [aux_sym_cmd_identifier_token29] = ACTIONS(1703), + [aux_sym_cmd_identifier_token30] = ACTIONS(1703), + [aux_sym_cmd_identifier_token31] = ACTIONS(1703), + [aux_sym_cmd_identifier_token32] = ACTIONS(1703), + [aux_sym_cmd_identifier_token33] = ACTIONS(1703), + [aux_sym_cmd_identifier_token34] = ACTIONS(1701), + [aux_sym_cmd_identifier_token35] = ACTIONS(1703), + [aux_sym_cmd_identifier_token36] = ACTIONS(1703), + [aux_sym_cmd_identifier_token37] = ACTIONS(1703), + [aux_sym_cmd_identifier_token38] = ACTIONS(1701), + [aux_sym_cmd_identifier_token39] = ACTIONS(1703), + [aux_sym_cmd_identifier_token40] = ACTIONS(1703), + [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(1703), + [anon_sym_COMMA] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_error] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_in2] = 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(1703), + [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_hide] = ACTIONS(1701), + [anon_sym_hide_DASHenv] = ACTIONS(1701), + [anon_sym_overlay] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1701), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1703), + [anon_sym_DOT] = ACTIONS(2216), + [aux_sym__immediate_decimal_token2] = ACTIONS(2218), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1701), + [aux_sym__val_number_token5] = ACTIONS(1701), + [aux_sym__val_number_token6] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1703), }, - [519] = { - [sym_comment] = STATE(519), - [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), - [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1812), - [anon_sym_error] = ACTIONS(1812), - [anon_sym_DASH2] = ACTIONS(1812), - [anon_sym_break] = ACTIONS(1812), - [anon_sym_continue] = ACTIONS(1812), - [anon_sym_for] = ACTIONS(1812), - [anon_sym_in2] = 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_as] = ACTIONS(1812), - [anon_sym_LPAREN2] = ACTIONS(1814), - [anon_sym_PLUS2] = ACTIONS(1812), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1812), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1812), - [aux_sym__val_number_decimal_token1] = ACTIONS(1812), - [aux_sym__val_number_decimal_token2] = ACTIONS(1812), - [aux_sym__val_number_decimal_token3] = ACTIONS(1812), - [aux_sym__val_number_decimal_token4] = ACTIONS(1812), - [aux_sym__val_number_token1] = ACTIONS(1812), - [aux_sym__val_number_token2] = ACTIONS(1812), - [aux_sym__val_number_token3] = ACTIONS(1812), - [aux_sym__val_number_token4] = ACTIONS(1812), - [aux_sym__val_number_token5] = ACTIONS(1812), - [aux_sym__val_number_token6] = ACTIONS(1812), - [anon_sym_DQUOTE] = ACTIONS(1812), - [sym__str_single_quotes] = ACTIONS(1812), - [sym__str_back_ticks] = ACTIONS(1812), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1812), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1812), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1812), - [sym__entry_separator] = ACTIONS(1820), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1822), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1820), - }, - [520] = { - [sym_comment] = STATE(520), - [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), - [aux_sym_cmd_identifier_token37] = ACTIONS(1755), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1755), - [aux_sym_cmd_identifier_token40] = ACTIONS(1755), - [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(1755), - [anon_sym_COMMA] = ACTIONS(1755), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in2] = 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_RBRACE] = 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_as] = ACTIONS(1755), - [anon_sym_PLUS2] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1755), - [anon_sym_DOT] = ACTIONS(2180), - [aux_sym__immediate_decimal_token2] = ACTIONS(2182), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1755), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1755), - [aux_sym__val_number_decimal_token3] = ACTIONS(1755), - [aux_sym__val_number_decimal_token4] = ACTIONS(1755), - [aux_sym__val_number_token1] = ACTIONS(1755), - [aux_sym__val_number_token2] = ACTIONS(1755), - [aux_sym__val_number_token3] = ACTIONS(1755), - [aux_sym__val_number_token4] = ACTIONS(1755), - [aux_sym__val_number_token5] = ACTIONS(1755), - [aux_sym__val_number_token6] = ACTIONS(1755), - [anon_sym_DQUOTE] = ACTIONS(1755), - [sym__str_single_quotes] = ACTIONS(1755), - [sym__str_back_ticks] = ACTIONS(1755), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1755), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1755), - [sym__entry_separator] = ACTIONS(1757), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1757), - }, - [521] = { - [sym__expr_parenthesized_immediate] = STATE(7495), - [sym_comment] = STATE(521), - [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), - [aux_sym_cmd_identifier_token37] = 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_LPAREN] = ACTIONS(2184), - [anon_sym_COMMA] = ACTIONS(2184), - [anon_sym_DOLLAR] = ACTIONS(2184), - [anon_sym_error] = ACTIONS(2184), - [anon_sym_DASH2] = ACTIONS(2184), - [anon_sym_break] = ACTIONS(2184), - [anon_sym_continue] = ACTIONS(2184), - [anon_sym_for] = ACTIONS(2184), - [anon_sym_in2] = 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_as] = ACTIONS(2184), - [anon_sym_LPAREN2] = ACTIONS(1640), - [anon_sym_PLUS2] = 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), - [aux_sym__val_number_decimal_token3] = ACTIONS(2184), - [aux_sym__val_number_decimal_token4] = ACTIONS(2184), - [aux_sym__val_number_token1] = ACTIONS(2184), - [aux_sym__val_number_token2] = ACTIONS(2184), - [aux_sym__val_number_token3] = ACTIONS(2184), - [aux_sym__val_number_token4] = ACTIONS(2184), - [aux_sym__val_number_token5] = ACTIONS(2184), - [aux_sym__val_number_token6] = ACTIONS(2184), - [anon_sym_DQUOTE] = ACTIONS(2184), - [sym__str_single_quotes] = ACTIONS(2184), - [sym__str_back_ticks] = ACTIONS(2184), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2184), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2184), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2184), - [sym__entry_separator] = ACTIONS(2186), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2186), - }, - [522] = { - [sym_comment] = STATE(522), - [anon_sym_export] = ACTIONS(1016), - [anon_sym_alias] = ACTIONS(1016), - [anon_sym_let] = ACTIONS(1016), - [anon_sym_let_DASHenv] = ACTIONS(1016), - [anon_sym_mut] = ACTIONS(1016), - [anon_sym_const] = ACTIONS(1016), - [aux_sym_cmd_identifier_token1] = ACTIONS(1016), - [aux_sym_cmd_identifier_token2] = ACTIONS(1012), - [aux_sym_cmd_identifier_token3] = ACTIONS(1012), - [aux_sym_cmd_identifier_token4] = ACTIONS(1012), - [aux_sym_cmd_identifier_token5] = ACTIONS(1012), - [aux_sym_cmd_identifier_token6] = ACTIONS(1012), - [aux_sym_cmd_identifier_token7] = ACTIONS(1012), - [aux_sym_cmd_identifier_token8] = ACTIONS(1016), - [aux_sym_cmd_identifier_token9] = ACTIONS(1016), - [aux_sym_cmd_identifier_token10] = ACTIONS(1012), - [aux_sym_cmd_identifier_token11] = ACTIONS(1012), - [aux_sym_cmd_identifier_token12] = ACTIONS(1016), - [aux_sym_cmd_identifier_token13] = ACTIONS(1016), - [aux_sym_cmd_identifier_token14] = ACTIONS(1016), - [aux_sym_cmd_identifier_token15] = ACTIONS(1016), - [aux_sym_cmd_identifier_token16] = ACTIONS(1012), - [aux_sym_cmd_identifier_token17] = ACTIONS(1012), - [aux_sym_cmd_identifier_token18] = ACTIONS(1012), - [aux_sym_cmd_identifier_token19] = ACTIONS(1012), - [aux_sym_cmd_identifier_token20] = ACTIONS(1012), - [aux_sym_cmd_identifier_token21] = ACTIONS(1012), - [aux_sym_cmd_identifier_token22] = ACTIONS(1012), - [aux_sym_cmd_identifier_token23] = ACTIONS(1012), - [aux_sym_cmd_identifier_token24] = ACTIONS(1012), - [aux_sym_cmd_identifier_token25] = ACTIONS(1012), - [aux_sym_cmd_identifier_token26] = ACTIONS(1012), - [aux_sym_cmd_identifier_token27] = ACTIONS(1012), - [aux_sym_cmd_identifier_token28] = ACTIONS(1012), - [aux_sym_cmd_identifier_token29] = ACTIONS(1012), - [aux_sym_cmd_identifier_token30] = ACTIONS(1012), - [aux_sym_cmd_identifier_token31] = ACTIONS(1012), - [aux_sym_cmd_identifier_token32] = ACTIONS(1012), - [aux_sym_cmd_identifier_token33] = ACTIONS(1012), - [aux_sym_cmd_identifier_token34] = ACTIONS(1016), - [aux_sym_cmd_identifier_token35] = ACTIONS(1012), - [aux_sym_cmd_identifier_token36] = ACTIONS(1012), - [aux_sym_cmd_identifier_token37] = ACTIONS(1012), - [aux_sym_cmd_identifier_token38] = ACTIONS(1016), - [aux_sym_cmd_identifier_token39] = ACTIONS(1012), - [aux_sym_cmd_identifier_token40] = ACTIONS(1012), - [anon_sym_def] = ACTIONS(1016), - [anon_sym_export_DASHenv] = ACTIONS(1016), - [anon_sym_extern] = ACTIONS(1016), - [anon_sym_module] = ACTIONS(1016), - [anon_sym_use] = ACTIONS(1016), - [anon_sym_LPAREN] = ACTIONS(1012), - [anon_sym_COMMA] = ACTIONS(1012), - [anon_sym_DOLLAR] = ACTIONS(1016), - [anon_sym_error] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_break] = ACTIONS(1016), - [anon_sym_continue] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1016), - [anon_sym_in2] = ACTIONS(1016), - [anon_sym_loop] = ACTIONS(1016), - [anon_sym_make] = ACTIONS(1016), - [anon_sym_while] = ACTIONS(1016), - [anon_sym_do] = ACTIONS(1016), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_else] = ACTIONS(1016), - [anon_sym_match] = ACTIONS(1016), - [anon_sym_RBRACE] = ACTIONS(1012), - [anon_sym_try] = ACTIONS(1016), - [anon_sym_catch] = ACTIONS(1016), - [anon_sym_return] = ACTIONS(1016), - [anon_sym_source] = ACTIONS(1016), - [anon_sym_source_DASHenv] = ACTIONS(1016), - [anon_sym_register] = ACTIONS(1016), - [anon_sym_hide] = ACTIONS(1016), - [anon_sym_hide_DASHenv] = ACTIONS(1016), - [anon_sym_overlay] = ACTIONS(1016), - [anon_sym_as] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1012), - [anon_sym_DOT_DOT2] = ACTIONS(2188), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2190), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2190), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1012), - [aux_sym__val_number_decimal_token1] = ACTIONS(1016), - [aux_sym__val_number_decimal_token2] = ACTIONS(1012), - [aux_sym__val_number_decimal_token3] = ACTIONS(1012), - [aux_sym__val_number_decimal_token4] = ACTIONS(1012), - [aux_sym__val_number_token1] = ACTIONS(1012), - [aux_sym__val_number_token2] = ACTIONS(1012), - [aux_sym__val_number_token3] = ACTIONS(1012), - [aux_sym__val_number_token4] = ACTIONS(1016), - [aux_sym__val_number_token5] = ACTIONS(1016), - [aux_sym__val_number_token6] = ACTIONS(1016), - [anon_sym_DQUOTE] = ACTIONS(1012), - [sym__str_single_quotes] = ACTIONS(1012), - [sym__str_back_ticks] = ACTIONS(1012), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1012), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1012), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1012), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1012), - }, - [523] = { - [sym__expr_parenthesized_immediate] = STATE(7495), - [sym_comment] = STATE(523), - [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), - [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(2192), - [anon_sym_DOLLAR] = ACTIONS(2192), - [anon_sym_error] = ACTIONS(2192), - [anon_sym_DASH2] = ACTIONS(2192), - [anon_sym_break] = ACTIONS(2192), - [anon_sym_continue] = ACTIONS(2192), - [anon_sym_for] = ACTIONS(2192), - [anon_sym_in2] = 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(2192), - [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_as] = ACTIONS(2192), - [anon_sym_LPAREN2] = ACTIONS(1640), - [anon_sym_PLUS2] = 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), - [aux_sym__val_number_decimal_token3] = ACTIONS(2192), - [aux_sym__val_number_decimal_token4] = ACTIONS(2192), - [aux_sym__val_number_token1] = ACTIONS(2192), - [aux_sym__val_number_token2] = ACTIONS(2192), - [aux_sym__val_number_token3] = ACTIONS(2192), - [aux_sym__val_number_token4] = ACTIONS(2192), - [aux_sym__val_number_token5] = ACTIONS(2192), - [aux_sym__val_number_token6] = ACTIONS(2192), - [anon_sym_DQUOTE] = ACTIONS(2192), - [sym__str_single_quotes] = ACTIONS(2192), - [sym__str_back_ticks] = ACTIONS(2192), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2192), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2192), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2192), - [sym__entry_separator] = ACTIONS(2194), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2194), - }, - [524] = { - [sym__expr_parenthesized_immediate] = STATE(7495), - [sym_comment] = STATE(524), - [anon_sym_export] = ACTIONS(2196), - [anon_sym_alias] = ACTIONS(2196), - [anon_sym_let] = ACTIONS(2196), - [anon_sym_let_DASHenv] = ACTIONS(2196), - [anon_sym_mut] = ACTIONS(2196), - [anon_sym_const] = ACTIONS(2196), - [aux_sym_cmd_identifier_token1] = ACTIONS(2196), - [aux_sym_cmd_identifier_token2] = ACTIONS(2196), - [aux_sym_cmd_identifier_token3] = ACTIONS(2196), - [aux_sym_cmd_identifier_token4] = ACTIONS(2196), - [aux_sym_cmd_identifier_token5] = ACTIONS(2196), - [aux_sym_cmd_identifier_token6] = ACTIONS(2196), - [aux_sym_cmd_identifier_token7] = ACTIONS(2196), - [aux_sym_cmd_identifier_token8] = ACTIONS(2196), - [aux_sym_cmd_identifier_token9] = ACTIONS(2196), - [aux_sym_cmd_identifier_token10] = ACTIONS(2196), - [aux_sym_cmd_identifier_token11] = ACTIONS(2196), - [aux_sym_cmd_identifier_token12] = ACTIONS(2196), - [aux_sym_cmd_identifier_token13] = ACTIONS(2196), - [aux_sym_cmd_identifier_token14] = ACTIONS(2196), - [aux_sym_cmd_identifier_token15] = ACTIONS(2196), - [aux_sym_cmd_identifier_token16] = ACTIONS(2196), - [aux_sym_cmd_identifier_token17] = ACTIONS(2196), - [aux_sym_cmd_identifier_token18] = ACTIONS(2196), - [aux_sym_cmd_identifier_token19] = ACTIONS(2196), - [aux_sym_cmd_identifier_token20] = ACTIONS(2196), - [aux_sym_cmd_identifier_token21] = ACTIONS(2196), - [aux_sym_cmd_identifier_token22] = ACTIONS(2196), - [aux_sym_cmd_identifier_token23] = ACTIONS(2196), - [aux_sym_cmd_identifier_token24] = ACTIONS(2196), - [aux_sym_cmd_identifier_token25] = ACTIONS(2196), - [aux_sym_cmd_identifier_token26] = ACTIONS(2196), - [aux_sym_cmd_identifier_token27] = ACTIONS(2196), - [aux_sym_cmd_identifier_token28] = ACTIONS(2196), - [aux_sym_cmd_identifier_token29] = ACTIONS(2196), - [aux_sym_cmd_identifier_token30] = ACTIONS(2196), - [aux_sym_cmd_identifier_token31] = ACTIONS(2196), - [aux_sym_cmd_identifier_token32] = ACTIONS(2196), - [aux_sym_cmd_identifier_token33] = ACTIONS(2196), - [aux_sym_cmd_identifier_token34] = ACTIONS(2196), - [aux_sym_cmd_identifier_token35] = ACTIONS(2196), - [aux_sym_cmd_identifier_token36] = ACTIONS(2196), - [aux_sym_cmd_identifier_token37] = ACTIONS(2196), - [aux_sym_cmd_identifier_token38] = ACTIONS(2196), - [aux_sym_cmd_identifier_token39] = ACTIONS(2196), - [aux_sym_cmd_identifier_token40] = ACTIONS(2196), - [anon_sym_def] = ACTIONS(2196), - [anon_sym_export_DASHenv] = ACTIONS(2196), - [anon_sym_extern] = ACTIONS(2196), - [anon_sym_module] = ACTIONS(2196), - [anon_sym_use] = ACTIONS(2196), - [anon_sym_LPAREN] = ACTIONS(2196), - [anon_sym_COMMA] = ACTIONS(2196), - [anon_sym_DOLLAR] = ACTIONS(2196), - [anon_sym_error] = ACTIONS(2196), - [anon_sym_DASH2] = ACTIONS(2196), - [anon_sym_break] = ACTIONS(2196), - [anon_sym_continue] = ACTIONS(2196), - [anon_sym_for] = ACTIONS(2196), - [anon_sym_in2] = ACTIONS(2196), - [anon_sym_loop] = ACTIONS(2196), - [anon_sym_make] = ACTIONS(2196), - [anon_sym_while] = ACTIONS(2196), - [anon_sym_do] = ACTIONS(2196), - [anon_sym_if] = ACTIONS(2196), - [anon_sym_else] = ACTIONS(2196), - [anon_sym_match] = ACTIONS(2196), - [anon_sym_RBRACE] = ACTIONS(2196), - [anon_sym_try] = ACTIONS(2196), - [anon_sym_catch] = ACTIONS(2196), - [anon_sym_return] = ACTIONS(2196), - [anon_sym_source] = ACTIONS(2196), - [anon_sym_source_DASHenv] = ACTIONS(2196), - [anon_sym_register] = ACTIONS(2196), - [anon_sym_hide] = ACTIONS(2196), - [anon_sym_hide_DASHenv] = ACTIONS(2196), - [anon_sym_overlay] = ACTIONS(2196), - [anon_sym_as] = ACTIONS(2196), - [anon_sym_LPAREN2] = ACTIONS(1640), - [anon_sym_PLUS2] = ACTIONS(2196), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2196), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2196), - [aux_sym__val_number_decimal_token1] = ACTIONS(2196), - [aux_sym__val_number_decimal_token2] = ACTIONS(2196), - [aux_sym__val_number_decimal_token3] = ACTIONS(2196), - [aux_sym__val_number_decimal_token4] = ACTIONS(2196), - [aux_sym__val_number_token1] = ACTIONS(2196), - [aux_sym__val_number_token2] = ACTIONS(2196), - [aux_sym__val_number_token3] = ACTIONS(2196), - [aux_sym__val_number_token4] = ACTIONS(2196), - [aux_sym__val_number_token5] = ACTIONS(2196), - [aux_sym__val_number_token6] = ACTIONS(2196), - [anon_sym_DQUOTE] = ACTIONS(2196), - [sym__str_single_quotes] = ACTIONS(2196), - [sym__str_back_ticks] = ACTIONS(2196), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2196), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2196), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2196), - [sym__entry_separator] = ACTIONS(2198), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2198), - }, - [525] = { - [sym__expr_parenthesized_immediate] = STATE(7495), - [sym_comment] = STATE(525), - [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), - [aux_sym_cmd_identifier_token37] = 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_LPAREN] = ACTIONS(2200), - [anon_sym_COMMA] = ACTIONS(2200), - [anon_sym_DOLLAR] = ACTIONS(2200), - [anon_sym_error] = ACTIONS(2200), - [anon_sym_DASH2] = ACTIONS(2200), - [anon_sym_break] = ACTIONS(2200), - [anon_sym_continue] = ACTIONS(2200), - [anon_sym_for] = ACTIONS(2200), - [anon_sym_in2] = 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_as] = ACTIONS(2200), - [anon_sym_LPAREN2] = ACTIONS(1640), - [anon_sym_PLUS2] = 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), - [aux_sym__val_number_decimal_token3] = ACTIONS(2200), - [aux_sym__val_number_decimal_token4] = ACTIONS(2200), - [aux_sym__val_number_token1] = ACTIONS(2200), - [aux_sym__val_number_token2] = ACTIONS(2200), - [aux_sym__val_number_token3] = ACTIONS(2200), - [aux_sym__val_number_token4] = ACTIONS(2200), - [aux_sym__val_number_token5] = ACTIONS(2200), - [aux_sym__val_number_token6] = ACTIONS(2200), - [anon_sym_DQUOTE] = ACTIONS(2200), - [sym__str_single_quotes] = ACTIONS(2200), - [sym__str_back_ticks] = ACTIONS(2200), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2200), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2200), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2200), - [sym__entry_separator] = ACTIONS(2202), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2202), - }, - [526] = { - [sym_comment] = STATE(526), - [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(968), - [aux_sym_cmd_identifier_token3] = ACTIONS(968), - [aux_sym_cmd_identifier_token4] = ACTIONS(968), - [aux_sym_cmd_identifier_token5] = ACTIONS(968), - [aux_sym_cmd_identifier_token6] = ACTIONS(968), - [aux_sym_cmd_identifier_token7] = ACTIONS(968), - [aux_sym_cmd_identifier_token8] = ACTIONS(966), - [aux_sym_cmd_identifier_token9] = ACTIONS(966), - [aux_sym_cmd_identifier_token10] = ACTIONS(968), - [aux_sym_cmd_identifier_token11] = ACTIONS(968), - [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(968), - [aux_sym_cmd_identifier_token17] = ACTIONS(968), - [aux_sym_cmd_identifier_token18] = ACTIONS(968), - [aux_sym_cmd_identifier_token19] = ACTIONS(968), - [aux_sym_cmd_identifier_token20] = ACTIONS(968), - [aux_sym_cmd_identifier_token21] = ACTIONS(968), - [aux_sym_cmd_identifier_token22] = ACTIONS(968), - [aux_sym_cmd_identifier_token23] = ACTIONS(968), - [aux_sym_cmd_identifier_token24] = ACTIONS(968), - [aux_sym_cmd_identifier_token25] = ACTIONS(968), - [aux_sym_cmd_identifier_token26] = ACTIONS(968), - [aux_sym_cmd_identifier_token27] = ACTIONS(968), - [aux_sym_cmd_identifier_token28] = ACTIONS(968), - [aux_sym_cmd_identifier_token29] = ACTIONS(968), - [aux_sym_cmd_identifier_token30] = ACTIONS(968), - [aux_sym_cmd_identifier_token31] = ACTIONS(968), - [aux_sym_cmd_identifier_token32] = ACTIONS(968), - [aux_sym_cmd_identifier_token33] = ACTIONS(968), - [aux_sym_cmd_identifier_token34] = ACTIONS(966), - [aux_sym_cmd_identifier_token35] = ACTIONS(968), - [aux_sym_cmd_identifier_token36] = ACTIONS(968), - [aux_sym_cmd_identifier_token37] = 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(966), - [anon_sym_error] = ACTIONS(966), - [anon_sym_DASH2] = ACTIONS(966), - [anon_sym_break] = ACTIONS(966), - [anon_sym_continue] = ACTIONS(966), - [anon_sym_for] = ACTIONS(966), - [anon_sym_in2] = 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_as] = ACTIONS(966), - [anon_sym_QMARK2] = ACTIONS(2204), - [anon_sym_PLUS2] = 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), - [aux_sym__val_number_token4] = ACTIONS(966), - [aux_sym__val_number_token5] = ACTIONS(966), - [aux_sym__val_number_token6] = ACTIONS(966), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(968), - [anon_sym_COLON2] = ACTIONS(968), - [anon_sym_DOT2] = ACTIONS(966), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(968), - }, - [527] = { - [sym_comment] = STATE(527), - [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(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(1755), - [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(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(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(1757), - [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(1755), - [aux_sym_cmd_identifier_token35] = ACTIONS(1757), - [aux_sym_cmd_identifier_token36] = ACTIONS(1757), - [aux_sym_cmd_identifier_token37] = ACTIONS(1757), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1757), - [aux_sym_cmd_identifier_token40] = ACTIONS(1757), - [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(1755), - [anon_sym_COMMA] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in2] = 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_RBRACE] = ACTIONS(1757), - [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_as] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_PLUS2] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(1991), - [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), - [aux_sym__val_number_token4] = ACTIONS(1755), - [aux_sym__val_number_token5] = ACTIONS(1755), - [aux_sym__val_number_token6] = ACTIONS(1755), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1757), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1757), + [551] = { + [sym_comment] = STATE(551), + [anon_sym_export] = ACTIONS(1693), + [anon_sym_alias] = ACTIONS(1693), + [anon_sym_let] = ACTIONS(1693), + [anon_sym_let_DASHenv] = ACTIONS(1693), + [anon_sym_mut] = ACTIONS(1693), + [anon_sym_const] = ACTIONS(1693), + [aux_sym_cmd_identifier_token1] = ACTIONS(1693), + [aux_sym_cmd_identifier_token2] = ACTIONS(1695), + [aux_sym_cmd_identifier_token3] = ACTIONS(1695), + [aux_sym_cmd_identifier_token4] = ACTIONS(1695), + [aux_sym_cmd_identifier_token5] = ACTIONS(1695), + [aux_sym_cmd_identifier_token6] = ACTIONS(1695), + [aux_sym_cmd_identifier_token7] = ACTIONS(1695), + [aux_sym_cmd_identifier_token8] = ACTIONS(1693), + [aux_sym_cmd_identifier_token9] = ACTIONS(1693), + [aux_sym_cmd_identifier_token10] = ACTIONS(1695), + [aux_sym_cmd_identifier_token11] = ACTIONS(1695), + [aux_sym_cmd_identifier_token12] = ACTIONS(1693), + [aux_sym_cmd_identifier_token13] = ACTIONS(1693), + [aux_sym_cmd_identifier_token14] = ACTIONS(1693), + [aux_sym_cmd_identifier_token15] = ACTIONS(1693), + [aux_sym_cmd_identifier_token16] = ACTIONS(1695), + [aux_sym_cmd_identifier_token17] = ACTIONS(1695), + [aux_sym_cmd_identifier_token18] = ACTIONS(1695), + [aux_sym_cmd_identifier_token19] = ACTIONS(1695), + [aux_sym_cmd_identifier_token20] = ACTIONS(1695), + [aux_sym_cmd_identifier_token21] = ACTIONS(1695), + [aux_sym_cmd_identifier_token22] = ACTIONS(1695), + [aux_sym_cmd_identifier_token23] = ACTIONS(1695), + [aux_sym_cmd_identifier_token24] = ACTIONS(1695), + [aux_sym_cmd_identifier_token25] = ACTIONS(1695), + [aux_sym_cmd_identifier_token26] = ACTIONS(1695), + [aux_sym_cmd_identifier_token27] = ACTIONS(1695), + [aux_sym_cmd_identifier_token28] = ACTIONS(1695), + [aux_sym_cmd_identifier_token29] = ACTIONS(1695), + [aux_sym_cmd_identifier_token30] = ACTIONS(1695), + [aux_sym_cmd_identifier_token31] = ACTIONS(1695), + [aux_sym_cmd_identifier_token32] = ACTIONS(1695), + [aux_sym_cmd_identifier_token33] = ACTIONS(1695), + [aux_sym_cmd_identifier_token34] = ACTIONS(1693), + [aux_sym_cmd_identifier_token35] = ACTIONS(1695), + [aux_sym_cmd_identifier_token36] = ACTIONS(1695), + [aux_sym_cmd_identifier_token37] = ACTIONS(1695), + [aux_sym_cmd_identifier_token38] = ACTIONS(1693), + [aux_sym_cmd_identifier_token39] = ACTIONS(1695), + [aux_sym_cmd_identifier_token40] = ACTIONS(1695), + [anon_sym_def] = ACTIONS(1693), + [anon_sym_export_DASHenv] = ACTIONS(1693), + [anon_sym_extern] = ACTIONS(1693), + [anon_sym_module] = ACTIONS(1693), + [anon_sym_use] = ACTIONS(1693), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_COMMA] = ACTIONS(1695), + [anon_sym_DOLLAR] = ACTIONS(1693), + [anon_sym_error] = ACTIONS(1693), + [anon_sym_DASH2] = ACTIONS(1693), + [anon_sym_break] = ACTIONS(1693), + [anon_sym_continue] = ACTIONS(1693), + [anon_sym_for] = ACTIONS(1693), + [anon_sym_in2] = ACTIONS(1693), + [anon_sym_loop] = ACTIONS(1693), + [anon_sym_make] = ACTIONS(1693), + [anon_sym_while] = ACTIONS(1693), + [anon_sym_do] = ACTIONS(1693), + [anon_sym_if] = ACTIONS(1693), + [anon_sym_else] = ACTIONS(1693), + [anon_sym_match] = ACTIONS(1693), + [anon_sym_RBRACE] = ACTIONS(1695), + [anon_sym_try] = ACTIONS(1693), + [anon_sym_catch] = ACTIONS(1693), + [anon_sym_return] = ACTIONS(1693), + [anon_sym_source] = ACTIONS(1693), + [anon_sym_source_DASHenv] = ACTIONS(1693), + [anon_sym_hide] = ACTIONS(1693), + [anon_sym_hide_DASHenv] = ACTIONS(1693), + [anon_sym_overlay] = ACTIONS(1693), + [anon_sym_as] = ACTIONS(1693), + [anon_sym_LPAREN2] = ACTIONS(1695), + [anon_sym_PLUS2] = ACTIONS(1693), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1695), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1695), + [aux_sym__val_number_decimal_token1] = ACTIONS(1693), + [aux_sym__val_number_decimal_token2] = ACTIONS(1695), + [aux_sym__val_number_decimal_token3] = ACTIONS(1695), + [aux_sym__val_number_decimal_token4] = ACTIONS(1695), + [aux_sym__val_number_token1] = ACTIONS(1695), + [aux_sym__val_number_token2] = ACTIONS(1695), + [aux_sym__val_number_token3] = ACTIONS(1695), + [aux_sym__val_number_token4] = ACTIONS(1693), + [aux_sym__val_number_token5] = ACTIONS(1693), + [aux_sym__val_number_token6] = ACTIONS(1693), + [anon_sym_DQUOTE] = ACTIONS(1695), + [sym__str_single_quotes] = ACTIONS(1695), + [sym__str_back_ticks] = ACTIONS(1695), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1695), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1695), + [anon_sym_register] = ACTIONS(1693), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1695), }, - [528] = { - [sym_comment] = STATE(528), - [anon_sym_export] = ACTIONS(1016), - [anon_sym_alias] = ACTIONS(1016), - [anon_sym_let] = ACTIONS(1016), - [anon_sym_let_DASHenv] = ACTIONS(1016), - [anon_sym_mut] = ACTIONS(1016), - [anon_sym_const] = ACTIONS(1016), - [aux_sym_cmd_identifier_token1] = ACTIONS(1016), - [aux_sym_cmd_identifier_token2] = ACTIONS(1016), - [aux_sym_cmd_identifier_token3] = ACTIONS(1016), - [aux_sym_cmd_identifier_token4] = ACTIONS(1016), - [aux_sym_cmd_identifier_token5] = ACTIONS(1016), - [aux_sym_cmd_identifier_token6] = ACTIONS(1016), - [aux_sym_cmd_identifier_token7] = ACTIONS(1016), - [aux_sym_cmd_identifier_token8] = ACTIONS(1016), - [aux_sym_cmd_identifier_token9] = ACTIONS(1016), - [aux_sym_cmd_identifier_token10] = ACTIONS(1016), - [aux_sym_cmd_identifier_token11] = ACTIONS(1016), - [aux_sym_cmd_identifier_token12] = ACTIONS(1016), - [aux_sym_cmd_identifier_token13] = ACTIONS(1016), - [aux_sym_cmd_identifier_token14] = ACTIONS(1016), - [aux_sym_cmd_identifier_token15] = ACTIONS(1016), - [aux_sym_cmd_identifier_token16] = ACTIONS(1016), - [aux_sym_cmd_identifier_token17] = ACTIONS(1016), - [aux_sym_cmd_identifier_token18] = ACTIONS(1016), - [aux_sym_cmd_identifier_token19] = ACTIONS(1016), - [aux_sym_cmd_identifier_token20] = ACTIONS(1016), - [aux_sym_cmd_identifier_token21] = ACTIONS(1016), - [aux_sym_cmd_identifier_token22] = ACTIONS(1016), - [aux_sym_cmd_identifier_token23] = ACTIONS(1016), - [aux_sym_cmd_identifier_token24] = ACTIONS(1016), - [aux_sym_cmd_identifier_token25] = ACTIONS(1016), - [aux_sym_cmd_identifier_token26] = ACTIONS(1016), - [aux_sym_cmd_identifier_token27] = ACTIONS(1016), - [aux_sym_cmd_identifier_token28] = ACTIONS(1016), - [aux_sym_cmd_identifier_token29] = ACTIONS(1016), - [aux_sym_cmd_identifier_token30] = ACTIONS(1016), - [aux_sym_cmd_identifier_token31] = ACTIONS(1016), - [aux_sym_cmd_identifier_token32] = ACTIONS(1016), - [aux_sym_cmd_identifier_token33] = ACTIONS(1016), - [aux_sym_cmd_identifier_token34] = ACTIONS(1016), - [aux_sym_cmd_identifier_token35] = ACTIONS(1016), - [aux_sym_cmd_identifier_token36] = ACTIONS(1016), - [aux_sym_cmd_identifier_token37] = ACTIONS(1016), - [aux_sym_cmd_identifier_token38] = ACTIONS(1016), - [aux_sym_cmd_identifier_token39] = ACTIONS(1016), - [aux_sym_cmd_identifier_token40] = ACTIONS(1016), - [anon_sym_def] = ACTIONS(1016), - [anon_sym_export_DASHenv] = ACTIONS(1016), - [anon_sym_extern] = ACTIONS(1016), - [anon_sym_module] = ACTIONS(1016), - [anon_sym_use] = ACTIONS(1016), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_COMMA] = ACTIONS(1016), - [anon_sym_DOLLAR] = ACTIONS(1016), - [anon_sym_error] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_break] = ACTIONS(1016), - [anon_sym_continue] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1016), - [anon_sym_in2] = ACTIONS(1016), - [anon_sym_loop] = ACTIONS(1016), - [anon_sym_make] = ACTIONS(1016), - [anon_sym_while] = ACTIONS(1016), - [anon_sym_do] = ACTIONS(1016), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_else] = ACTIONS(1016), - [anon_sym_match] = ACTIONS(1016), - [anon_sym_RBRACE] = ACTIONS(1016), - [anon_sym_try] = ACTIONS(1016), - [anon_sym_catch] = ACTIONS(1016), - [anon_sym_return] = ACTIONS(1016), - [anon_sym_source] = ACTIONS(1016), - [anon_sym_source_DASHenv] = ACTIONS(1016), - [anon_sym_register] = ACTIONS(1016), - [anon_sym_hide] = ACTIONS(1016), - [anon_sym_hide_DASHenv] = ACTIONS(1016), - [anon_sym_overlay] = ACTIONS(1016), - [anon_sym_as] = ACTIONS(1016), - [anon_sym_LPAREN2] = ACTIONS(2206), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1016), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1016), - [aux_sym__val_number_decimal_token1] = ACTIONS(1016), - [aux_sym__val_number_decimal_token2] = ACTIONS(1016), - [aux_sym__val_number_decimal_token3] = ACTIONS(1016), - [aux_sym__val_number_decimal_token4] = ACTIONS(1016), - [aux_sym__val_number_token1] = ACTIONS(1016), - [aux_sym__val_number_token2] = ACTIONS(1016), - [aux_sym__val_number_token3] = ACTIONS(1016), - [aux_sym__val_number_token4] = ACTIONS(1016), - [aux_sym__val_number_token5] = ACTIONS(1016), - [aux_sym__val_number_token6] = ACTIONS(1016), - [anon_sym_DQUOTE] = ACTIONS(1016), - [sym__str_single_quotes] = ACTIONS(1016), - [sym__str_back_ticks] = ACTIONS(1016), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1016), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1016), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1016), - [sym__entry_separator] = ACTIONS(1012), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2208), + [552] = { + [sym_comment] = STATE(552), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(2069), + [anon_sym_DOLLAR] = ACTIONS(2065), + [anon_sym_error] = ACTIONS(2065), + [anon_sym_DASH2] = ACTIONS(2065), + [anon_sym_break] = ACTIONS(2065), + [anon_sym_continue] = ACTIONS(2065), + [anon_sym_for] = ACTIONS(2065), + [anon_sym_in2] = 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(2069), + [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_hide] = ACTIONS(2065), + [anon_sym_hide_DASHenv] = ACTIONS(2065), + [anon_sym_overlay] = ACTIONS(2065), + [anon_sym_as] = ACTIONS(2065), + [anon_sym_LPAREN2] = ACTIONS(2067), + [anon_sym_PLUS2] = ACTIONS(2065), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2069), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2065), + [aux_sym__val_number_decimal_token1] = ACTIONS(2065), + [aux_sym__val_number_decimal_token2] = ACTIONS(2065), + [aux_sym__val_number_decimal_token3] = ACTIONS(2065), + [aux_sym__val_number_decimal_token4] = ACTIONS(2065), + [aux_sym__val_number_token1] = ACTIONS(2065), + [aux_sym__val_number_token2] = ACTIONS(2065), + [aux_sym__val_number_token3] = ACTIONS(2065), + [aux_sym__val_number_token4] = ACTIONS(2065), + [aux_sym__val_number_token5] = ACTIONS(2065), + [aux_sym__val_number_token6] = ACTIONS(2065), + [anon_sym_DQUOTE] = ACTIONS(2069), + [sym__str_single_quotes] = ACTIONS(2069), + [sym__str_back_ticks] = ACTIONS(2069), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2069), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2069), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2069), + [anon_sym_register] = ACTIONS(2065), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2071), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1012), - }, - [529] = { - [sym_comment] = STATE(529), - [anon_sym_export] = ACTIONS(1783), - [anon_sym_alias] = ACTIONS(1783), - [anon_sym_let] = ACTIONS(1783), - [anon_sym_let_DASHenv] = ACTIONS(1783), - [anon_sym_mut] = ACTIONS(1783), - [anon_sym_const] = ACTIONS(1783), - [aux_sym_cmd_identifier_token1] = ACTIONS(1783), - [aux_sym_cmd_identifier_token2] = ACTIONS(1785), - [aux_sym_cmd_identifier_token3] = ACTIONS(1785), - [aux_sym_cmd_identifier_token4] = ACTIONS(1785), - [aux_sym_cmd_identifier_token5] = ACTIONS(1785), - [aux_sym_cmd_identifier_token6] = ACTIONS(1785), - [aux_sym_cmd_identifier_token7] = ACTIONS(1785), - [aux_sym_cmd_identifier_token8] = ACTIONS(1783), - [aux_sym_cmd_identifier_token9] = ACTIONS(1783), - [aux_sym_cmd_identifier_token10] = ACTIONS(1785), - [aux_sym_cmd_identifier_token11] = ACTIONS(1785), - [aux_sym_cmd_identifier_token12] = ACTIONS(1783), - [aux_sym_cmd_identifier_token13] = ACTIONS(1783), - [aux_sym_cmd_identifier_token14] = ACTIONS(1783), - [aux_sym_cmd_identifier_token15] = ACTIONS(1783), - [aux_sym_cmd_identifier_token16] = ACTIONS(1785), - [aux_sym_cmd_identifier_token17] = ACTIONS(1785), - [aux_sym_cmd_identifier_token18] = ACTIONS(1785), - [aux_sym_cmd_identifier_token19] = ACTIONS(1785), - [aux_sym_cmd_identifier_token20] = ACTIONS(1785), - [aux_sym_cmd_identifier_token21] = ACTIONS(1785), - [aux_sym_cmd_identifier_token22] = ACTIONS(1785), - [aux_sym_cmd_identifier_token23] = ACTIONS(1785), - [aux_sym_cmd_identifier_token24] = ACTIONS(1785), - [aux_sym_cmd_identifier_token25] = ACTIONS(1785), - [aux_sym_cmd_identifier_token26] = ACTIONS(1785), - [aux_sym_cmd_identifier_token27] = ACTIONS(1785), - [aux_sym_cmd_identifier_token28] = ACTIONS(1785), - [aux_sym_cmd_identifier_token29] = ACTIONS(1785), - [aux_sym_cmd_identifier_token30] = ACTIONS(1785), - [aux_sym_cmd_identifier_token31] = ACTIONS(1785), - [aux_sym_cmd_identifier_token32] = ACTIONS(1785), - [aux_sym_cmd_identifier_token33] = ACTIONS(1785), - [aux_sym_cmd_identifier_token34] = ACTIONS(1783), - [aux_sym_cmd_identifier_token35] = ACTIONS(1785), - [aux_sym_cmd_identifier_token36] = ACTIONS(1785), - [aux_sym_cmd_identifier_token37] = ACTIONS(1785), - [aux_sym_cmd_identifier_token38] = ACTIONS(1783), - [aux_sym_cmd_identifier_token39] = ACTIONS(1785), - [aux_sym_cmd_identifier_token40] = ACTIONS(1785), - [anon_sym_def] = ACTIONS(1783), - [anon_sym_export_DASHenv] = ACTIONS(1783), - [anon_sym_extern] = ACTIONS(1783), - [anon_sym_module] = ACTIONS(1783), - [anon_sym_use] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_COMMA] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_error] = ACTIONS(1783), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_break] = ACTIONS(1783), - [anon_sym_continue] = ACTIONS(1783), - [anon_sym_for] = ACTIONS(1783), - [anon_sym_in2] = ACTIONS(1783), - [anon_sym_loop] = ACTIONS(1783), - [anon_sym_make] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1783), - [anon_sym_do] = ACTIONS(1783), - [anon_sym_if] = ACTIONS(1783), - [anon_sym_else] = ACTIONS(1783), - [anon_sym_match] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_try] = ACTIONS(1783), - [anon_sym_catch] = ACTIONS(1783), - [anon_sym_return] = ACTIONS(1783), - [anon_sym_source] = ACTIONS(1783), - [anon_sym_source_DASHenv] = ACTIONS(1783), - [anon_sym_register] = ACTIONS(1783), - [anon_sym_hide] = ACTIONS(1783), - [anon_sym_hide_DASHenv] = ACTIONS(1783), - [anon_sym_overlay] = ACTIONS(1783), - [anon_sym_as] = ACTIONS(1783), - [anon_sym_LPAREN2] = ACTIONS(1785), - [anon_sym_PLUS2] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1785), - [aux_sym__immediate_decimal_token2] = ACTIONS(2210), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(1785), - [aux_sym__val_number_token2] = ACTIONS(1785), - [aux_sym__val_number_token3] = ACTIONS(1785), - [aux_sym__val_number_token4] = ACTIONS(1783), - [aux_sym__val_number_token5] = ACTIONS(1783), - [aux_sym__val_number_token6] = ACTIONS(1783), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1785), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1785), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1783), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1785), - }, - [530] = { - [sym_comment] = STATE(530), - [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(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(1755), - [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(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(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(1757), - [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(1755), - [aux_sym_cmd_identifier_token35] = ACTIONS(1757), - [aux_sym_cmd_identifier_token36] = ACTIONS(1757), - [aux_sym_cmd_identifier_token37] = ACTIONS(1757), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1757), - [aux_sym_cmd_identifier_token40] = ACTIONS(1757), - [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_COMMA] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in2] = 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_RBRACE] = ACTIONS(1757), - [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_as] = ACTIONS(1755), - [anon_sym_PLUS2] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1757), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = 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), - [aux_sym__val_number_token4] = ACTIONS(1755), - [aux_sym__val_number_token5] = ACTIONS(1755), - [aux_sym__val_number_token6] = ACTIONS(1755), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1757), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1757), - }, - [531] = { - [sym_comment] = STATE(531), - [anon_sym_export] = ACTIONS(1711), - [anon_sym_alias] = ACTIONS(1711), - [anon_sym_let] = ACTIONS(1711), - [anon_sym_let_DASHenv] = ACTIONS(1711), - [anon_sym_mut] = ACTIONS(1711), - [anon_sym_const] = ACTIONS(1711), - [aux_sym_cmd_identifier_token1] = ACTIONS(1711), - [aux_sym_cmd_identifier_token2] = ACTIONS(1713), - [aux_sym_cmd_identifier_token3] = ACTIONS(1713), - [aux_sym_cmd_identifier_token4] = ACTIONS(1713), - [aux_sym_cmd_identifier_token5] = ACTIONS(1713), - [aux_sym_cmd_identifier_token6] = ACTIONS(1713), - [aux_sym_cmd_identifier_token7] = ACTIONS(1713), - [aux_sym_cmd_identifier_token8] = ACTIONS(1711), - [aux_sym_cmd_identifier_token9] = ACTIONS(1711), - [aux_sym_cmd_identifier_token10] = ACTIONS(1713), - [aux_sym_cmd_identifier_token11] = ACTIONS(1713), - [aux_sym_cmd_identifier_token12] = ACTIONS(1711), - [aux_sym_cmd_identifier_token13] = ACTIONS(1711), - [aux_sym_cmd_identifier_token14] = ACTIONS(1711), - [aux_sym_cmd_identifier_token15] = ACTIONS(1711), - [aux_sym_cmd_identifier_token16] = ACTIONS(1713), - [aux_sym_cmd_identifier_token17] = ACTIONS(1713), - [aux_sym_cmd_identifier_token18] = ACTIONS(1713), - [aux_sym_cmd_identifier_token19] = ACTIONS(1713), - [aux_sym_cmd_identifier_token20] = ACTIONS(1713), - [aux_sym_cmd_identifier_token21] = ACTIONS(1713), - [aux_sym_cmd_identifier_token22] = ACTIONS(1713), - [aux_sym_cmd_identifier_token23] = ACTIONS(1713), - [aux_sym_cmd_identifier_token24] = ACTIONS(1713), - [aux_sym_cmd_identifier_token25] = ACTIONS(1713), - [aux_sym_cmd_identifier_token26] = ACTIONS(1713), - [aux_sym_cmd_identifier_token27] = ACTIONS(1713), - [aux_sym_cmd_identifier_token28] = ACTIONS(1713), - [aux_sym_cmd_identifier_token29] = ACTIONS(1713), - [aux_sym_cmd_identifier_token30] = ACTIONS(1713), - [aux_sym_cmd_identifier_token31] = ACTIONS(1713), - [aux_sym_cmd_identifier_token32] = ACTIONS(1713), - [aux_sym_cmd_identifier_token33] = ACTIONS(1713), - [aux_sym_cmd_identifier_token34] = ACTIONS(1711), - [aux_sym_cmd_identifier_token35] = ACTIONS(1713), - [aux_sym_cmd_identifier_token36] = ACTIONS(1713), - [aux_sym_cmd_identifier_token37] = ACTIONS(1713), - [aux_sym_cmd_identifier_token38] = ACTIONS(1711), - [aux_sym_cmd_identifier_token39] = ACTIONS(1713), - [aux_sym_cmd_identifier_token40] = ACTIONS(1713), - [anon_sym_def] = ACTIONS(1711), - [anon_sym_export_DASHenv] = ACTIONS(1711), - [anon_sym_extern] = ACTIONS(1711), - [anon_sym_module] = ACTIONS(1711), - [anon_sym_use] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_COMMA] = ACTIONS(1713), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_error] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_break] = ACTIONS(1711), - [anon_sym_continue] = ACTIONS(1711), - [anon_sym_for] = ACTIONS(1711), - [anon_sym_in2] = ACTIONS(1711), - [anon_sym_loop] = ACTIONS(1711), - [anon_sym_make] = ACTIONS(1711), - [anon_sym_while] = ACTIONS(1711), - [anon_sym_do] = ACTIONS(1711), - [anon_sym_if] = ACTIONS(1711), - [anon_sym_else] = ACTIONS(1711), - [anon_sym_match] = ACTIONS(1711), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_try] = ACTIONS(1711), - [anon_sym_catch] = ACTIONS(1711), - [anon_sym_return] = ACTIONS(1711), - [anon_sym_source] = ACTIONS(1711), - [anon_sym_source_DASHenv] = ACTIONS(1711), - [anon_sym_register] = ACTIONS(1711), - [anon_sym_hide] = ACTIONS(1711), - [anon_sym_hide_DASHenv] = ACTIONS(1711), - [anon_sym_overlay] = ACTIONS(1711), - [anon_sym_as] = ACTIONS(1711), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1713), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1713), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1713), - [aux_sym__val_number_decimal_token3] = ACTIONS(1713), - [aux_sym__val_number_decimal_token4] = ACTIONS(1713), - [aux_sym__val_number_token1] = ACTIONS(1713), - [aux_sym__val_number_token2] = ACTIONS(1713), - [aux_sym__val_number_token3] = ACTIONS(1713), - [aux_sym__val_number_token4] = ACTIONS(1711), - [aux_sym__val_number_token5] = ACTIONS(1711), - [aux_sym__val_number_token6] = ACTIONS(1711), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym__str_single_quotes] = ACTIONS(1713), - [sym__str_back_ticks] = ACTIONS(1713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1713), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1713), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1713), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1713), - }, - [532] = { - [sym_comment] = STATE(532), - [anon_sym_export] = ACTIONS(960), - [anon_sym_alias] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_let_DASHenv] = ACTIONS(960), - [anon_sym_mut] = ACTIONS(960), - [anon_sym_const] = ACTIONS(960), - [aux_sym_cmd_identifier_token1] = ACTIONS(960), - [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(960), - [aux_sym_cmd_identifier_token9] = ACTIONS(960), - [aux_sym_cmd_identifier_token10] = ACTIONS(962), - [aux_sym_cmd_identifier_token11] = ACTIONS(962), - [aux_sym_cmd_identifier_token12] = ACTIONS(960), - [aux_sym_cmd_identifier_token13] = ACTIONS(960), - [aux_sym_cmd_identifier_token14] = ACTIONS(960), - [aux_sym_cmd_identifier_token15] = ACTIONS(960), - [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(960), - [aux_sym_cmd_identifier_token35] = ACTIONS(962), - [aux_sym_cmd_identifier_token36] = ACTIONS(962), - [aux_sym_cmd_identifier_token37] = ACTIONS(962), - [aux_sym_cmd_identifier_token38] = ACTIONS(960), - [aux_sym_cmd_identifier_token39] = ACTIONS(962), - [aux_sym_cmd_identifier_token40] = ACTIONS(962), - [anon_sym_def] = ACTIONS(960), - [anon_sym_export_DASHenv] = ACTIONS(960), - [anon_sym_extern] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), - [anon_sym_use] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(962), - [anon_sym_COMMA] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(960), - [anon_sym_error] = ACTIONS(960), - [anon_sym_DASH2] = ACTIONS(960), - [anon_sym_break] = ACTIONS(960), - [anon_sym_continue] = ACTIONS(960), - [anon_sym_for] = ACTIONS(960), - [anon_sym_in2] = ACTIONS(960), - [anon_sym_loop] = ACTIONS(960), - [anon_sym_make] = ACTIONS(960), - [anon_sym_while] = ACTIONS(960), - [anon_sym_do] = ACTIONS(960), - [anon_sym_if] = ACTIONS(960), - [anon_sym_else] = ACTIONS(960), - [anon_sym_match] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(962), - [anon_sym_try] = ACTIONS(960), - [anon_sym_catch] = ACTIONS(960), - [anon_sym_return] = ACTIONS(960), - [anon_sym_source] = ACTIONS(960), - [anon_sym_source_DASHenv] = ACTIONS(960), - [anon_sym_register] = ACTIONS(960), - [anon_sym_hide] = ACTIONS(960), - [anon_sym_hide_DASHenv] = ACTIONS(960), - [anon_sym_overlay] = ACTIONS(960), - [anon_sym_as] = ACTIONS(960), - [anon_sym_QMARK2] = ACTIONS(2212), - [anon_sym_PLUS2] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(962), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(962), - [aux_sym__val_number_decimal_token1] = ACTIONS(960), - [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), - [aux_sym__val_number_token4] = ACTIONS(960), - [aux_sym__val_number_token5] = ACTIONS(960), - [aux_sym__val_number_token6] = ACTIONS(960), - [anon_sym_DQUOTE] = ACTIONS(962), - [sym__str_single_quotes] = ACTIONS(962), - [sym__str_back_ticks] = ACTIONS(962), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(962), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(962), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(962), - [anon_sym_COLON2] = ACTIONS(962), - [anon_sym_DOT2] = ACTIONS(960), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(962), + [sym_raw_string_begin] = ACTIONS(2069), }, - [533] = { - [sym_comment] = STATE(533), - [anon_sym_export] = ACTIONS(1783), - [anon_sym_alias] = ACTIONS(1783), - [anon_sym_let] = ACTIONS(1783), - [anon_sym_let_DASHenv] = ACTIONS(1783), - [anon_sym_mut] = ACTIONS(1783), - [anon_sym_const] = ACTIONS(1783), - [aux_sym_cmd_identifier_token1] = ACTIONS(1783), - [aux_sym_cmd_identifier_token2] = ACTIONS(1785), - [aux_sym_cmd_identifier_token3] = ACTIONS(1785), - [aux_sym_cmd_identifier_token4] = ACTIONS(1785), - [aux_sym_cmd_identifier_token5] = ACTIONS(1785), - [aux_sym_cmd_identifier_token6] = ACTIONS(1785), - [aux_sym_cmd_identifier_token7] = ACTIONS(1785), - [aux_sym_cmd_identifier_token8] = ACTIONS(1783), - [aux_sym_cmd_identifier_token9] = ACTIONS(1783), - [aux_sym_cmd_identifier_token10] = ACTIONS(1785), - [aux_sym_cmd_identifier_token11] = ACTIONS(1785), - [aux_sym_cmd_identifier_token12] = ACTIONS(1783), - [aux_sym_cmd_identifier_token13] = ACTIONS(1783), - [aux_sym_cmd_identifier_token14] = ACTIONS(1783), - [aux_sym_cmd_identifier_token15] = ACTIONS(1783), - [aux_sym_cmd_identifier_token16] = ACTIONS(1785), - [aux_sym_cmd_identifier_token17] = ACTIONS(1785), - [aux_sym_cmd_identifier_token18] = ACTIONS(1785), - [aux_sym_cmd_identifier_token19] = ACTIONS(1785), - [aux_sym_cmd_identifier_token20] = ACTIONS(1785), - [aux_sym_cmd_identifier_token21] = ACTIONS(1785), - [aux_sym_cmd_identifier_token22] = ACTIONS(1785), - [aux_sym_cmd_identifier_token23] = ACTIONS(1785), - [aux_sym_cmd_identifier_token24] = ACTIONS(1785), - [aux_sym_cmd_identifier_token25] = ACTIONS(1785), - [aux_sym_cmd_identifier_token26] = ACTIONS(1785), - [aux_sym_cmd_identifier_token27] = ACTIONS(1785), - [aux_sym_cmd_identifier_token28] = ACTIONS(1785), - [aux_sym_cmd_identifier_token29] = ACTIONS(1785), - [aux_sym_cmd_identifier_token30] = ACTIONS(1785), - [aux_sym_cmd_identifier_token31] = ACTIONS(1785), - [aux_sym_cmd_identifier_token32] = ACTIONS(1785), - [aux_sym_cmd_identifier_token33] = ACTIONS(1785), - [aux_sym_cmd_identifier_token34] = ACTIONS(1783), - [aux_sym_cmd_identifier_token35] = ACTIONS(1785), - [aux_sym_cmd_identifier_token36] = ACTIONS(1785), - [aux_sym_cmd_identifier_token37] = ACTIONS(1785), - [aux_sym_cmd_identifier_token38] = ACTIONS(1783), - [aux_sym_cmd_identifier_token39] = ACTIONS(1785), - [aux_sym_cmd_identifier_token40] = ACTIONS(1785), - [anon_sym_def] = ACTIONS(1783), - [anon_sym_export_DASHenv] = ACTIONS(1783), - [anon_sym_extern] = ACTIONS(1783), - [anon_sym_module] = ACTIONS(1783), - [anon_sym_use] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_COMMA] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_error] = ACTIONS(1783), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_break] = ACTIONS(1783), - [anon_sym_continue] = ACTIONS(1783), - [anon_sym_for] = ACTIONS(1783), - [anon_sym_in2] = ACTIONS(1783), - [anon_sym_loop] = ACTIONS(1783), - [anon_sym_make] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1783), - [anon_sym_do] = ACTIONS(1783), - [anon_sym_if] = ACTIONS(1783), - [anon_sym_else] = ACTIONS(1783), - [anon_sym_match] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_try] = ACTIONS(1783), - [anon_sym_catch] = ACTIONS(1783), - [anon_sym_return] = ACTIONS(1783), - [anon_sym_source] = ACTIONS(1783), - [anon_sym_source_DASHenv] = ACTIONS(1783), - [anon_sym_register] = ACTIONS(1783), - [anon_sym_hide] = ACTIONS(1783), - [anon_sym_hide_DASHenv] = ACTIONS(1783), - [anon_sym_overlay] = ACTIONS(1783), - [anon_sym_as] = ACTIONS(1783), - [anon_sym_PLUS2] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1785), - [anon_sym_DOT_DOT2] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(1785), - [aux_sym__val_number_token2] = ACTIONS(1785), - [aux_sym__val_number_token3] = ACTIONS(1785), - [aux_sym__val_number_token4] = ACTIONS(1783), - [aux_sym__val_number_token5] = ACTIONS(1783), - [aux_sym__val_number_token6] = ACTIONS(1783), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1785), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1785), + [553] = { + [sym_comment] = STATE(553), + [anon_sym_export] = ACTIONS(1766), + [anon_sym_alias] = ACTIONS(1766), + [anon_sym_let] = ACTIONS(1766), + [anon_sym_let_DASHenv] = ACTIONS(1766), + [anon_sym_mut] = ACTIONS(1766), + [anon_sym_const] = ACTIONS(1766), + [aux_sym_cmd_identifier_token1] = ACTIONS(1766), + [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(1766), + [aux_sym_cmd_identifier_token9] = ACTIONS(1766), + [aux_sym_cmd_identifier_token10] = ACTIONS(1768), + [aux_sym_cmd_identifier_token11] = ACTIONS(1768), + [aux_sym_cmd_identifier_token12] = ACTIONS(1766), + [aux_sym_cmd_identifier_token13] = ACTIONS(1766), + [aux_sym_cmd_identifier_token14] = ACTIONS(1766), + [aux_sym_cmd_identifier_token15] = ACTIONS(1766), + [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(1766), + [aux_sym_cmd_identifier_token35] = ACTIONS(1768), + [aux_sym_cmd_identifier_token36] = ACTIONS(1768), + [aux_sym_cmd_identifier_token37] = ACTIONS(1768), + [aux_sym_cmd_identifier_token38] = ACTIONS(1766), + [aux_sym_cmd_identifier_token39] = ACTIONS(1768), + [aux_sym_cmd_identifier_token40] = ACTIONS(1768), + [anon_sym_def] = ACTIONS(1766), + [anon_sym_export_DASHenv] = ACTIONS(1766), + [anon_sym_extern] = ACTIONS(1766), + [anon_sym_module] = ACTIONS(1766), + [anon_sym_use] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1766), + [anon_sym_COMMA] = ACTIONS(1768), + [anon_sym_DOLLAR] = ACTIONS(1766), + [anon_sym_error] = ACTIONS(1766), + [anon_sym_DASH2] = ACTIONS(1766), + [anon_sym_break] = ACTIONS(1766), + [anon_sym_continue] = ACTIONS(1766), + [anon_sym_for] = ACTIONS(1766), + [anon_sym_in2] = ACTIONS(1766), + [anon_sym_loop] = ACTIONS(1766), + [anon_sym_make] = ACTIONS(1766), + [anon_sym_while] = ACTIONS(1766), + [anon_sym_do] = ACTIONS(1766), + [anon_sym_if] = ACTIONS(1766), + [anon_sym_else] = ACTIONS(1766), + [anon_sym_match] = ACTIONS(1766), + [anon_sym_RBRACE] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1766), + [anon_sym_catch] = ACTIONS(1766), + [anon_sym_return] = ACTIONS(1766), + [anon_sym_source] = ACTIONS(1766), + [anon_sym_source_DASHenv] = ACTIONS(1766), + [anon_sym_hide] = ACTIONS(1766), + [anon_sym_hide_DASHenv] = ACTIONS(1766), + [anon_sym_overlay] = ACTIONS(1766), + [anon_sym_as] = ACTIONS(1766), + [anon_sym_LPAREN2] = ACTIONS(1768), + [anon_sym_PLUS2] = ACTIONS(1766), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1768), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1768), + [aux_sym__val_number_decimal_token1] = ACTIONS(1766), + [aux_sym__val_number_decimal_token2] = ACTIONS(1768), + [aux_sym__val_number_decimal_token3] = ACTIONS(1768), + [aux_sym__val_number_decimal_token4] = ACTIONS(1768), + [aux_sym__val_number_token1] = ACTIONS(1768), + [aux_sym__val_number_token2] = ACTIONS(1768), + [aux_sym__val_number_token3] = ACTIONS(1768), + [aux_sym__val_number_token4] = ACTIONS(1766), + [aux_sym__val_number_token5] = ACTIONS(1766), + [aux_sym__val_number_token6] = ACTIONS(1766), + [anon_sym_DQUOTE] = ACTIONS(1768), + [sym__str_single_quotes] = ACTIONS(1768), + [sym__str_back_ticks] = ACTIONS(1768), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1768), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1768), + [anon_sym_register] = ACTIONS(1766), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1766), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1768), }, - [534] = { - [sym_comment] = STATE(534), - [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(1837), - [aux_sym_cmd_identifier_token3] = ACTIONS(1837), - [aux_sym_cmd_identifier_token4] = ACTIONS(1837), - [aux_sym_cmd_identifier_token5] = ACTIONS(1837), - [aux_sym_cmd_identifier_token6] = ACTIONS(1837), - [aux_sym_cmd_identifier_token7] = ACTIONS(1837), - [aux_sym_cmd_identifier_token8] = ACTIONS(1835), - [aux_sym_cmd_identifier_token9] = ACTIONS(1835), - [aux_sym_cmd_identifier_token10] = ACTIONS(1837), - [aux_sym_cmd_identifier_token11] = ACTIONS(1837), - [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(1837), - [aux_sym_cmd_identifier_token17] = ACTIONS(1837), - [aux_sym_cmd_identifier_token18] = ACTIONS(1837), - [aux_sym_cmd_identifier_token19] = ACTIONS(1837), - [aux_sym_cmd_identifier_token20] = ACTIONS(1837), - [aux_sym_cmd_identifier_token21] = ACTIONS(1837), - [aux_sym_cmd_identifier_token22] = ACTIONS(1837), - [aux_sym_cmd_identifier_token23] = ACTIONS(1837), - [aux_sym_cmd_identifier_token24] = ACTIONS(1837), - [aux_sym_cmd_identifier_token25] = ACTIONS(1837), - [aux_sym_cmd_identifier_token26] = ACTIONS(1837), - [aux_sym_cmd_identifier_token27] = ACTIONS(1837), - [aux_sym_cmd_identifier_token28] = ACTIONS(1837), - [aux_sym_cmd_identifier_token29] = ACTIONS(1837), - [aux_sym_cmd_identifier_token30] = ACTIONS(1837), - [aux_sym_cmd_identifier_token31] = ACTIONS(1837), - [aux_sym_cmd_identifier_token32] = ACTIONS(1837), - [aux_sym_cmd_identifier_token33] = ACTIONS(1837), - [aux_sym_cmd_identifier_token34] = ACTIONS(1835), - [aux_sym_cmd_identifier_token35] = ACTIONS(1837), - [aux_sym_cmd_identifier_token36] = ACTIONS(1837), - [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1835), - [anon_sym_error] = ACTIONS(1835), - [anon_sym_DASH2] = ACTIONS(1835), - [anon_sym_break] = ACTIONS(1835), - [anon_sym_continue] = ACTIONS(1835), - [anon_sym_for] = ACTIONS(1835), - [anon_sym_in2] = 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_as] = ACTIONS(1835), - [anon_sym_PLUS2] = ACTIONS(1835), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1837), - [anon_sym_DOT_DOT2] = ACTIONS(1835), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1837), - [anon_sym_DOT_DOT_LT2] = 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), - [aux_sym__val_number_token4] = ACTIONS(1835), - [aux_sym__val_number_token5] = ACTIONS(1835), - [aux_sym__val_number_token6] = ACTIONS(1835), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1837), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1837), + [554] = { + [sym_comment] = STATE(554), + [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(1794), + [aux_sym_cmd_identifier_token3] = ACTIONS(1794), + [aux_sym_cmd_identifier_token4] = ACTIONS(1794), + [aux_sym_cmd_identifier_token5] = ACTIONS(1794), + [aux_sym_cmd_identifier_token6] = ACTIONS(1794), + [aux_sym_cmd_identifier_token7] = ACTIONS(1794), + [aux_sym_cmd_identifier_token8] = ACTIONS(1792), + [aux_sym_cmd_identifier_token9] = ACTIONS(1792), + [aux_sym_cmd_identifier_token10] = ACTIONS(1794), + [aux_sym_cmd_identifier_token11] = ACTIONS(1794), + [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(1794), + [aux_sym_cmd_identifier_token17] = ACTIONS(1794), + [aux_sym_cmd_identifier_token18] = ACTIONS(1794), + [aux_sym_cmd_identifier_token19] = ACTIONS(1794), + [aux_sym_cmd_identifier_token20] = ACTIONS(1794), + [aux_sym_cmd_identifier_token21] = ACTIONS(1794), + [aux_sym_cmd_identifier_token22] = ACTIONS(1794), + [aux_sym_cmd_identifier_token23] = ACTIONS(1794), + [aux_sym_cmd_identifier_token24] = ACTIONS(1794), + [aux_sym_cmd_identifier_token25] = ACTIONS(1794), + [aux_sym_cmd_identifier_token26] = ACTIONS(1794), + [aux_sym_cmd_identifier_token27] = ACTIONS(1794), + [aux_sym_cmd_identifier_token28] = ACTIONS(1794), + [aux_sym_cmd_identifier_token29] = ACTIONS(1794), + [aux_sym_cmd_identifier_token30] = ACTIONS(1794), + [aux_sym_cmd_identifier_token31] = ACTIONS(1794), + [aux_sym_cmd_identifier_token32] = ACTIONS(1794), + [aux_sym_cmd_identifier_token33] = ACTIONS(1794), + [aux_sym_cmd_identifier_token34] = ACTIONS(1792), + [aux_sym_cmd_identifier_token35] = ACTIONS(1794), + [aux_sym_cmd_identifier_token36] = ACTIONS(1794), + [aux_sym_cmd_identifier_token37] = 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(1792), + [anon_sym_COMMA] = ACTIONS(1794), + [anon_sym_DOLLAR] = ACTIONS(1792), + [anon_sym_error] = ACTIONS(1792), + [anon_sym_DASH2] = ACTIONS(1792), + [anon_sym_break] = ACTIONS(1792), + [anon_sym_continue] = ACTIONS(1792), + [anon_sym_for] = ACTIONS(1792), + [anon_sym_in2] = 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_hide] = ACTIONS(1792), + [anon_sym_hide_DASHenv] = ACTIONS(1792), + [anon_sym_overlay] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1792), + [anon_sym_LPAREN2] = ACTIONS(1794), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_decimal_token3] = ACTIONS(1794), + [aux_sym__val_number_decimal_token4] = ACTIONS(1794), + [aux_sym__val_number_token1] = ACTIONS(1794), + [aux_sym__val_number_token2] = ACTIONS(1794), + [aux_sym__val_number_token3] = ACTIONS(1794), + [aux_sym__val_number_token4] = ACTIONS(1792), + [aux_sym__val_number_token5] = ACTIONS(1792), + [aux_sym__val_number_token6] = ACTIONS(1792), + [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1794), + [anon_sym_register] = ACTIONS(1792), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1792), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1794), }, - [535] = { - [sym_expr_parenthesized] = STATE(4228), - [sym__spread_parenthesized] = STATE(4655), - [sym_val_range] = STATE(4656), - [sym__val_range] = STATE(7471), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(4656), - [sym_val_nothing] = STATE(4585), - [sym_val_bool] = STATE(4452), - [sym__spread_variable] = STATE(4660), - [sym_val_variable] = STATE(4244), - [sym_val_number] = STATE(4585), - [sym__val_number_decimal] = STATE(3953), - [sym__val_number] = STATE(4586), - [sym_val_duration] = STATE(4585), - [sym_val_filesize] = STATE(4585), - [sym_val_binary] = STATE(4585), - [sym_val_string] = STATE(4585), - [sym__raw_str] = STATE(4058), - [sym__str_double_quotes] = STATE(4058), - [sym_val_interpolated] = STATE(4585), - [sym__inter_single_quotes] = STATE(4587), - [sym__inter_double_quotes] = STATE(4588), - [sym_val_list] = STATE(4585), - [sym__spread_list] = STATE(4655), - [sym_val_record] = STATE(4585), - [sym_val_table] = STATE(4585), - [sym_val_closure] = STATE(4585), - [sym__cmd_arg] = STATE(4661), - [sym_redirection] = STATE(4662), - [sym__flag] = STATE(4663), - [sym_short_flag] = STATE(4582), - [sym_long_flag] = STATE(4582), - [sym_unquoted] = STATE(4380), - [sym__unquoted_with_expr] = STATE(4664), - [sym__unquoted_anonymous_prefix] = STATE(6988), - [sym_comment] = STATE(535), - [sym__newline] = ACTIONS(2068), - [sym__space] = ACTIONS(2214), - [anon_sym_SEMI] = ACTIONS(2068), - [anon_sym_PIPE] = ACTIONS(2068), - [anon_sym_err_GT_PIPE] = ACTIONS(2068), - [anon_sym_out_GT_PIPE] = ACTIONS(2068), - [anon_sym_e_GT_PIPE] = ACTIONS(2068), - [anon_sym_o_GT_PIPE] = ACTIONS(2068), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2068), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2068), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2068), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2068), - [anon_sym_LBRACK] = ACTIONS(2070), - [anon_sym_LPAREN] = ACTIONS(2072), - [anon_sym_RPAREN] = ACTIONS(2068), - [anon_sym_DOLLAR] = ACTIONS(2074), - [anon_sym_DASH_DASH] = ACTIONS(2076), - [anon_sym_DASH2] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_RBRACE] = ACTIONS(2068), - [anon_sym_DOT_DOT] = ACTIONS(2082), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2084), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2086), - [anon_sym_DOT_DOT_LT] = ACTIONS(2086), - [anon_sym_null] = ACTIONS(2088), - [anon_sym_true] = ACTIONS(2090), - [anon_sym_false] = ACTIONS(2090), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2092), - [aux_sym__val_number_decimal_token1] = ACTIONS(2094), - [aux_sym__val_number_decimal_token2] = ACTIONS(2094), - [aux_sym__val_number_decimal_token3] = ACTIONS(2096), - [aux_sym__val_number_decimal_token4] = ACTIONS(2098), - [aux_sym__val_number_token1] = ACTIONS(2100), - [aux_sym__val_number_token2] = ACTIONS(2100), - [aux_sym__val_number_token3] = ACTIONS(2100), - [aux_sym__val_number_token4] = ACTIONS(2102), - [aux_sym__val_number_token5] = ACTIONS(2102), - [aux_sym__val_number_token6] = ACTIONS(2102), - [anon_sym_0b] = ACTIONS(2104), - [anon_sym_0o] = ACTIONS(2106), - [anon_sym_0x] = ACTIONS(2106), - [sym_val_date] = ACTIONS(2108), - [anon_sym_DQUOTE] = ACTIONS(2110), - [sym__str_single_quotes] = ACTIONS(2112), - [sym__str_back_ticks] = ACTIONS(2112), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2114), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2116), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2118), - [anon_sym_err_GT] = ACTIONS(2122), - [anon_sym_out_GT] = ACTIONS(2122), - [anon_sym_e_GT] = ACTIONS(2122), - [anon_sym_o_GT] = ACTIONS(2122), - [anon_sym_err_PLUSout_GT] = ACTIONS(2122), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2122), - [anon_sym_o_PLUSe_GT] = ACTIONS(2122), - [anon_sym_e_PLUSo_GT] = ACTIONS(2122), - [anon_sym_err_GT_GT] = ACTIONS(2122), - [anon_sym_out_GT_GT] = ACTIONS(2122), - [anon_sym_e_GT_GT] = ACTIONS(2122), - [anon_sym_o_GT_GT] = ACTIONS(2122), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2122), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2122), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2122), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2122), - [aux_sym_unquoted_token1] = ACTIONS(2124), + [555] = { + [sym_comment] = STATE(555), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(2077), + [anon_sym_DOLLAR] = ACTIONS(2073), + [anon_sym_error] = ACTIONS(2073), + [anon_sym_DASH2] = ACTIONS(2073), + [anon_sym_break] = ACTIONS(2073), + [anon_sym_continue] = ACTIONS(2073), + [anon_sym_for] = ACTIONS(2073), + [anon_sym_in2] = 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(2077), + [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_hide] = ACTIONS(2073), + [anon_sym_hide_DASHenv] = ACTIONS(2073), + [anon_sym_overlay] = ACTIONS(2073), + [anon_sym_as] = ACTIONS(2073), + [anon_sym_LPAREN2] = ACTIONS(2075), + [anon_sym_PLUS2] = ACTIONS(2073), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2077), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2073), + [aux_sym__val_number_decimal_token3] = ACTIONS(2073), + [aux_sym__val_number_decimal_token4] = ACTIONS(2073), + [aux_sym__val_number_token1] = ACTIONS(2073), + [aux_sym__val_number_token2] = ACTIONS(2073), + [aux_sym__val_number_token3] = ACTIONS(2073), + [aux_sym__val_number_token4] = ACTIONS(2073), + [aux_sym__val_number_token5] = ACTIONS(2073), + [aux_sym__val_number_token6] = ACTIONS(2073), + [anon_sym_DQUOTE] = ACTIONS(2077), + [sym__str_single_quotes] = ACTIONS(2077), + [sym__str_back_ticks] = ACTIONS(2077), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2077), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2077), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2077), + [anon_sym_register] = ACTIONS(2073), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2079), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2126), + [sym_raw_string_begin] = ACTIONS(2077), }, - [536] = { - [sym_comment] = STATE(536), - [anon_sym_export] = ACTIONS(1802), - [anon_sym_alias] = ACTIONS(1802), - [anon_sym_let] = ACTIONS(1802), - [anon_sym_let_DASHenv] = ACTIONS(1802), - [anon_sym_mut] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [aux_sym_cmd_identifier_token1] = ACTIONS(1802), - [aux_sym_cmd_identifier_token2] = ACTIONS(1802), - [aux_sym_cmd_identifier_token3] = ACTIONS(1802), - [aux_sym_cmd_identifier_token4] = ACTIONS(1802), - [aux_sym_cmd_identifier_token5] = ACTIONS(1802), - [aux_sym_cmd_identifier_token6] = ACTIONS(1802), - [aux_sym_cmd_identifier_token7] = ACTIONS(1802), - [aux_sym_cmd_identifier_token8] = ACTIONS(1802), - [aux_sym_cmd_identifier_token9] = ACTIONS(1802), - [aux_sym_cmd_identifier_token10] = ACTIONS(1802), - [aux_sym_cmd_identifier_token11] = ACTIONS(1802), - [aux_sym_cmd_identifier_token12] = ACTIONS(1802), - [aux_sym_cmd_identifier_token13] = ACTIONS(1802), - [aux_sym_cmd_identifier_token14] = ACTIONS(1802), - [aux_sym_cmd_identifier_token15] = ACTIONS(1802), - [aux_sym_cmd_identifier_token16] = ACTIONS(1802), - [aux_sym_cmd_identifier_token17] = ACTIONS(1802), - [aux_sym_cmd_identifier_token18] = ACTIONS(1802), - [aux_sym_cmd_identifier_token19] = ACTIONS(1802), - [aux_sym_cmd_identifier_token20] = ACTIONS(1802), - [aux_sym_cmd_identifier_token21] = ACTIONS(1802), - [aux_sym_cmd_identifier_token22] = ACTIONS(1802), - [aux_sym_cmd_identifier_token23] = ACTIONS(1802), - [aux_sym_cmd_identifier_token24] = ACTIONS(1802), - [aux_sym_cmd_identifier_token25] = ACTIONS(1802), - [aux_sym_cmd_identifier_token26] = ACTIONS(1802), - [aux_sym_cmd_identifier_token27] = ACTIONS(1802), - [aux_sym_cmd_identifier_token28] = ACTIONS(1802), - [aux_sym_cmd_identifier_token29] = ACTIONS(1802), - [aux_sym_cmd_identifier_token30] = ACTIONS(1802), - [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(1802), - [aux_sym_cmd_identifier_token37] = ACTIONS(1802), - [aux_sym_cmd_identifier_token38] = ACTIONS(1802), - [aux_sym_cmd_identifier_token39] = ACTIONS(1802), - [aux_sym_cmd_identifier_token40] = ACTIONS(1802), - [anon_sym_def] = ACTIONS(1802), - [anon_sym_export_DASHenv] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym_module] = ACTIONS(1802), - [anon_sym_use] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_COMMA] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1802), - [anon_sym_error] = ACTIONS(1802), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_in2] = ACTIONS(1802), - [anon_sym_loop] = ACTIONS(1802), - [anon_sym_make] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_else] = ACTIONS(1802), - [anon_sym_match] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_try] = ACTIONS(1802), - [anon_sym_catch] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_source] = ACTIONS(1802), - [anon_sym_source_DASHenv] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_hide] = ACTIONS(1802), - [anon_sym_hide_DASHenv] = ACTIONS(1802), - [anon_sym_overlay] = ACTIONS(1802), - [anon_sym_as] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_PLUS2] = ACTIONS(1802), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1802), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1802), - [aux_sym__val_number_decimal_token1] = ACTIONS(1802), - [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), - [aux_sym__val_number_token4] = ACTIONS(1802), - [aux_sym__val_number_token5] = ACTIONS(1802), - [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(1802), - [sym__entry_separator] = ACTIONS(1810), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1477), + [556] = { + [sym_comment] = STATE(556), + [anon_sym_export] = ACTIONS(2081), + [anon_sym_alias] = ACTIONS(2081), + [anon_sym_let] = ACTIONS(2081), + [anon_sym_let_DASHenv] = ACTIONS(2081), + [anon_sym_mut] = ACTIONS(2081), + [anon_sym_const] = ACTIONS(2081), + [aux_sym_cmd_identifier_token1] = ACTIONS(2081), + [aux_sym_cmd_identifier_token2] = ACTIONS(2081), + [aux_sym_cmd_identifier_token3] = ACTIONS(2081), + [aux_sym_cmd_identifier_token4] = ACTIONS(2081), + [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [aux_sym_cmd_identifier_token6] = ACTIONS(2081), + [aux_sym_cmd_identifier_token7] = ACTIONS(2081), + [aux_sym_cmd_identifier_token8] = ACTIONS(2081), + [aux_sym_cmd_identifier_token9] = ACTIONS(2081), + [aux_sym_cmd_identifier_token10] = ACTIONS(2081), + [aux_sym_cmd_identifier_token11] = ACTIONS(2081), + [aux_sym_cmd_identifier_token12] = ACTIONS(2081), + [aux_sym_cmd_identifier_token13] = ACTIONS(2081), + [aux_sym_cmd_identifier_token14] = ACTIONS(2081), + [aux_sym_cmd_identifier_token15] = ACTIONS(2081), + [aux_sym_cmd_identifier_token16] = ACTIONS(2081), + [aux_sym_cmd_identifier_token17] = ACTIONS(2081), + [aux_sym_cmd_identifier_token18] = ACTIONS(2081), + [aux_sym_cmd_identifier_token19] = ACTIONS(2081), + [aux_sym_cmd_identifier_token20] = ACTIONS(2081), + [aux_sym_cmd_identifier_token21] = ACTIONS(2081), + [aux_sym_cmd_identifier_token22] = ACTIONS(2081), + [aux_sym_cmd_identifier_token23] = ACTIONS(2081), + [aux_sym_cmd_identifier_token24] = ACTIONS(2081), + [aux_sym_cmd_identifier_token25] = ACTIONS(2081), + [aux_sym_cmd_identifier_token26] = ACTIONS(2081), + [aux_sym_cmd_identifier_token27] = ACTIONS(2081), + [aux_sym_cmd_identifier_token28] = ACTIONS(2081), + [aux_sym_cmd_identifier_token29] = ACTIONS(2081), + [aux_sym_cmd_identifier_token30] = ACTIONS(2081), + [aux_sym_cmd_identifier_token31] = ACTIONS(2081), + [aux_sym_cmd_identifier_token32] = ACTIONS(2081), + [aux_sym_cmd_identifier_token33] = ACTIONS(2081), + [aux_sym_cmd_identifier_token34] = ACTIONS(2081), + [aux_sym_cmd_identifier_token35] = ACTIONS(2081), + [aux_sym_cmd_identifier_token36] = ACTIONS(2081), + [aux_sym_cmd_identifier_token37] = ACTIONS(2081), + [aux_sym_cmd_identifier_token38] = ACTIONS(2081), + [aux_sym_cmd_identifier_token39] = ACTIONS(2081), + [aux_sym_cmd_identifier_token40] = ACTIONS(2081), + [anon_sym_def] = ACTIONS(2081), + [anon_sym_export_DASHenv] = ACTIONS(2081), + [anon_sym_extern] = ACTIONS(2081), + [anon_sym_module] = ACTIONS(2081), + [anon_sym_use] = ACTIONS(2081), + [anon_sym_LPAREN] = ACTIONS(2081), + [anon_sym_COMMA] = ACTIONS(2083), + [anon_sym_DOLLAR] = ACTIONS(2081), + [anon_sym_error] = ACTIONS(2081), + [anon_sym_DASH2] = ACTIONS(2081), + [anon_sym_break] = ACTIONS(2081), + [anon_sym_continue] = ACTIONS(2081), + [anon_sym_for] = ACTIONS(2081), + [anon_sym_in2] = ACTIONS(2081), + [anon_sym_loop] = ACTIONS(2081), + [anon_sym_make] = ACTIONS(2081), + [anon_sym_while] = ACTIONS(2081), + [anon_sym_do] = ACTIONS(2081), + [anon_sym_if] = ACTIONS(2081), + [anon_sym_else] = ACTIONS(2081), + [anon_sym_match] = ACTIONS(2081), + [anon_sym_RBRACE] = ACTIONS(2083), + [anon_sym_try] = ACTIONS(2081), + [anon_sym_catch] = ACTIONS(2081), + [anon_sym_return] = ACTIONS(2081), + [anon_sym_source] = ACTIONS(2081), + [anon_sym_source_DASHenv] = ACTIONS(2081), + [anon_sym_hide] = ACTIONS(2081), + [anon_sym_hide_DASHenv] = ACTIONS(2081), + [anon_sym_overlay] = ACTIONS(2081), + [anon_sym_as] = ACTIONS(2081), + [anon_sym_LPAREN2] = ACTIONS(2075), + [anon_sym_PLUS2] = ACTIONS(2081), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2083), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2081), + [aux_sym__val_number_decimal_token1] = ACTIONS(2081), + [aux_sym__val_number_decimal_token2] = ACTIONS(2081), + [aux_sym__val_number_decimal_token3] = ACTIONS(2081), + [aux_sym__val_number_decimal_token4] = ACTIONS(2081), + [aux_sym__val_number_token1] = ACTIONS(2081), + [aux_sym__val_number_token2] = ACTIONS(2081), + [aux_sym__val_number_token3] = ACTIONS(2081), + [aux_sym__val_number_token4] = ACTIONS(2081), + [aux_sym__val_number_token5] = ACTIONS(2081), + [aux_sym__val_number_token6] = ACTIONS(2081), + [anon_sym_DQUOTE] = ACTIONS(2083), + [sym__str_single_quotes] = ACTIONS(2083), + [sym__str_back_ticks] = ACTIONS(2083), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2083), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2083), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2083), + [anon_sym_register] = ACTIONS(2081), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2079), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1810), + [sym_raw_string_begin] = ACTIONS(2083), }, - [537] = { - [sym__expr_parenthesized_immediate] = STATE(7307), - [sym_comment] = STATE(537), - [anon_sym_export] = ACTIONS(2057), - [anon_sym_alias] = ACTIONS(2057), - [anon_sym_let] = ACTIONS(2057), - [anon_sym_let_DASHenv] = ACTIONS(2057), - [anon_sym_mut] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [aux_sym_cmd_identifier_token1] = ACTIONS(2057), - [aux_sym_cmd_identifier_token2] = ACTIONS(2057), - [aux_sym_cmd_identifier_token3] = ACTIONS(2057), - [aux_sym_cmd_identifier_token4] = ACTIONS(2057), - [aux_sym_cmd_identifier_token5] = ACTIONS(2057), - [aux_sym_cmd_identifier_token6] = ACTIONS(2057), - [aux_sym_cmd_identifier_token7] = ACTIONS(2057), - [aux_sym_cmd_identifier_token8] = ACTIONS(2057), - [aux_sym_cmd_identifier_token9] = ACTIONS(2057), - [aux_sym_cmd_identifier_token10] = ACTIONS(2057), - [aux_sym_cmd_identifier_token11] = ACTIONS(2057), - [aux_sym_cmd_identifier_token12] = ACTIONS(2057), - [aux_sym_cmd_identifier_token13] = ACTIONS(2057), - [aux_sym_cmd_identifier_token14] = ACTIONS(2057), - [aux_sym_cmd_identifier_token15] = ACTIONS(2057), - [aux_sym_cmd_identifier_token16] = ACTIONS(2057), - [aux_sym_cmd_identifier_token17] = ACTIONS(2057), - [aux_sym_cmd_identifier_token18] = ACTIONS(2057), - [aux_sym_cmd_identifier_token19] = ACTIONS(2057), - [aux_sym_cmd_identifier_token20] = ACTIONS(2057), - [aux_sym_cmd_identifier_token21] = ACTIONS(2057), - [aux_sym_cmd_identifier_token22] = ACTIONS(2057), - [aux_sym_cmd_identifier_token23] = ACTIONS(2057), - [aux_sym_cmd_identifier_token24] = ACTIONS(2057), - [aux_sym_cmd_identifier_token25] = ACTIONS(2057), - [aux_sym_cmd_identifier_token26] = ACTIONS(2057), - [aux_sym_cmd_identifier_token27] = ACTIONS(2057), - [aux_sym_cmd_identifier_token28] = ACTIONS(2057), - [aux_sym_cmd_identifier_token29] = ACTIONS(2057), - [aux_sym_cmd_identifier_token30] = ACTIONS(2057), - [aux_sym_cmd_identifier_token31] = ACTIONS(2057), - [aux_sym_cmd_identifier_token32] = ACTIONS(2057), - [aux_sym_cmd_identifier_token33] = ACTIONS(2057), - [aux_sym_cmd_identifier_token34] = ACTIONS(2057), - [aux_sym_cmd_identifier_token35] = ACTIONS(2057), - [aux_sym_cmd_identifier_token36] = ACTIONS(2057), - [aux_sym_cmd_identifier_token37] = ACTIONS(2057), - [aux_sym_cmd_identifier_token38] = ACTIONS(2057), - [aux_sym_cmd_identifier_token39] = ACTIONS(2057), - [aux_sym_cmd_identifier_token40] = ACTIONS(2057), - [anon_sym_def] = ACTIONS(2057), - [anon_sym_export_DASHenv] = ACTIONS(2057), - [anon_sym_extern] = ACTIONS(2057), - [anon_sym_module] = ACTIONS(2057), - [anon_sym_use] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_COMMA] = ACTIONS(2057), - [anon_sym_DOLLAR] = ACTIONS(2057), - [anon_sym_error] = ACTIONS(2057), - [anon_sym_DASH2] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_in2] = ACTIONS(2057), - [anon_sym_loop] = ACTIONS(2057), - [anon_sym_make] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_else] = ACTIONS(2057), - [anon_sym_match] = ACTIONS(2057), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_catch] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_source] = ACTIONS(2057), - [anon_sym_source_DASHenv] = ACTIONS(2057), - [anon_sym_register] = ACTIONS(2057), - [anon_sym_hide] = ACTIONS(2057), - [anon_sym_hide_DASHenv] = ACTIONS(2057), - [anon_sym_overlay] = ACTIONS(2057), - [anon_sym_as] = ACTIONS(2057), - [anon_sym_LPAREN2] = ACTIONS(1640), - [anon_sym_PLUS2] = ACTIONS(2057), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2057), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2057), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2057), - [aux_sym__val_number_decimal_token3] = ACTIONS(2057), - [aux_sym__val_number_decimal_token4] = ACTIONS(2057), - [aux_sym__val_number_token1] = ACTIONS(2057), - [aux_sym__val_number_token2] = ACTIONS(2057), - [aux_sym__val_number_token3] = ACTIONS(2057), - [aux_sym__val_number_token4] = ACTIONS(2057), - [aux_sym__val_number_token5] = ACTIONS(2057), - [aux_sym__val_number_token6] = ACTIONS(2057), - [anon_sym_DQUOTE] = ACTIONS(2057), - [sym__str_single_quotes] = ACTIONS(2057), - [sym__str_back_ticks] = ACTIONS(2057), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2057), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2057), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2057), - [sym__entry_separator] = ACTIONS(2059), + [557] = { + [sym_comment] = STATE(557), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [aux_sym_cmd_identifier_token1] = ACTIONS(1002), + [aux_sym_cmd_identifier_token2] = ACTIONS(1002), + [aux_sym_cmd_identifier_token3] = ACTIONS(1002), + [aux_sym_cmd_identifier_token4] = ACTIONS(1002), + [aux_sym_cmd_identifier_token5] = ACTIONS(1002), + [aux_sym_cmd_identifier_token6] = ACTIONS(1002), + [aux_sym_cmd_identifier_token7] = ACTIONS(1002), + [aux_sym_cmd_identifier_token8] = ACTIONS(1002), + [aux_sym_cmd_identifier_token9] = ACTIONS(1002), + [aux_sym_cmd_identifier_token10] = ACTIONS(1002), + [aux_sym_cmd_identifier_token11] = ACTIONS(1002), + [aux_sym_cmd_identifier_token12] = ACTIONS(1002), + [aux_sym_cmd_identifier_token13] = ACTIONS(1002), + [aux_sym_cmd_identifier_token14] = ACTIONS(1002), + [aux_sym_cmd_identifier_token15] = ACTIONS(1002), + [aux_sym_cmd_identifier_token16] = ACTIONS(1002), + [aux_sym_cmd_identifier_token17] = ACTIONS(1002), + [aux_sym_cmd_identifier_token18] = ACTIONS(1002), + [aux_sym_cmd_identifier_token19] = ACTIONS(1002), + [aux_sym_cmd_identifier_token20] = ACTIONS(1002), + [aux_sym_cmd_identifier_token21] = ACTIONS(1002), + [aux_sym_cmd_identifier_token22] = ACTIONS(1002), + [aux_sym_cmd_identifier_token23] = ACTIONS(1002), + [aux_sym_cmd_identifier_token24] = ACTIONS(1002), + [aux_sym_cmd_identifier_token25] = ACTIONS(1002), + [aux_sym_cmd_identifier_token26] = ACTIONS(1002), + [aux_sym_cmd_identifier_token27] = ACTIONS(1002), + [aux_sym_cmd_identifier_token28] = ACTIONS(1002), + [aux_sym_cmd_identifier_token29] = ACTIONS(1002), + [aux_sym_cmd_identifier_token30] = ACTIONS(1002), + [aux_sym_cmd_identifier_token31] = ACTIONS(1002), + [aux_sym_cmd_identifier_token32] = ACTIONS(1002), + [aux_sym_cmd_identifier_token33] = ACTIONS(1002), + [aux_sym_cmd_identifier_token34] = ACTIONS(1002), + [aux_sym_cmd_identifier_token35] = ACTIONS(1002), + [aux_sym_cmd_identifier_token36] = ACTIONS(1002), + [aux_sym_cmd_identifier_token37] = ACTIONS(1002), + [aux_sym_cmd_identifier_token38] = ACTIONS(1002), + [aux_sym_cmd_identifier_token39] = ACTIONS(1002), + [aux_sym_cmd_identifier_token40] = ACTIONS(1002), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_COMMA] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in2] = ACTIONS(1002), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_make] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_else] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(998), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_catch] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_as] = ACTIONS(1002), + [anon_sym_LPAREN2] = ACTIONS(2061), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1002), + [aux_sym__val_number_decimal_token1] = ACTIONS(1002), + [aux_sym__val_number_decimal_token2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = ACTIONS(1002), + [aux_sym__val_number_decimal_token4] = ACTIONS(1002), + [aux_sym__val_number_token1] = ACTIONS(1002), + [aux_sym__val_number_token2] = ACTIONS(1002), + [aux_sym__val_number_token3] = ACTIONS(1002), + [aux_sym__val_number_token4] = ACTIONS(1002), + [aux_sym__val_number_token5] = ACTIONS(1002), + [aux_sym__val_number_token6] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym__str_single_quotes] = ACTIONS(998), + [sym__str_back_ticks] = ACTIONS(998), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(998), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(998), + [anon_sym_register] = ACTIONS(1002), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2063), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2059), - }, - [538] = { - [sym_comment] = STATE(538), - [anon_sym_export] = ACTIONS(1993), - [anon_sym_alias] = ACTIONS(1993), - [anon_sym_let] = ACTIONS(1993), - [anon_sym_let_DASHenv] = ACTIONS(1993), - [anon_sym_mut] = ACTIONS(1993), - [anon_sym_const] = ACTIONS(1993), - [aux_sym_cmd_identifier_token1] = ACTIONS(1993), - [aux_sym_cmd_identifier_token2] = ACTIONS(1995), - [aux_sym_cmd_identifier_token3] = ACTIONS(1995), - [aux_sym_cmd_identifier_token4] = ACTIONS(1995), - [aux_sym_cmd_identifier_token5] = ACTIONS(1995), - [aux_sym_cmd_identifier_token6] = ACTIONS(1995), - [aux_sym_cmd_identifier_token7] = ACTIONS(1995), - [aux_sym_cmd_identifier_token8] = ACTIONS(1993), - [aux_sym_cmd_identifier_token9] = ACTIONS(1993), - [aux_sym_cmd_identifier_token10] = ACTIONS(1995), - [aux_sym_cmd_identifier_token11] = ACTIONS(1995), - [aux_sym_cmd_identifier_token12] = ACTIONS(1993), - [aux_sym_cmd_identifier_token13] = ACTIONS(1993), - [aux_sym_cmd_identifier_token14] = ACTIONS(1993), - [aux_sym_cmd_identifier_token15] = ACTIONS(1993), - [aux_sym_cmd_identifier_token16] = ACTIONS(1995), - [aux_sym_cmd_identifier_token17] = ACTIONS(1995), - [aux_sym_cmd_identifier_token18] = ACTIONS(1995), - [aux_sym_cmd_identifier_token19] = ACTIONS(1995), - [aux_sym_cmd_identifier_token20] = ACTIONS(1995), - [aux_sym_cmd_identifier_token21] = ACTIONS(1995), - [aux_sym_cmd_identifier_token22] = ACTIONS(1995), - [aux_sym_cmd_identifier_token23] = ACTIONS(1995), - [aux_sym_cmd_identifier_token24] = ACTIONS(1995), - [aux_sym_cmd_identifier_token25] = ACTIONS(1995), - [aux_sym_cmd_identifier_token26] = ACTIONS(1995), - [aux_sym_cmd_identifier_token27] = ACTIONS(1995), - [aux_sym_cmd_identifier_token28] = ACTIONS(1995), - [aux_sym_cmd_identifier_token29] = ACTIONS(1995), - [aux_sym_cmd_identifier_token30] = ACTIONS(1995), - [aux_sym_cmd_identifier_token31] = ACTIONS(1995), - [aux_sym_cmd_identifier_token32] = ACTIONS(1995), - [aux_sym_cmd_identifier_token33] = ACTIONS(1995), - [aux_sym_cmd_identifier_token34] = ACTIONS(1993), - [aux_sym_cmd_identifier_token35] = ACTIONS(1995), - [aux_sym_cmd_identifier_token36] = ACTIONS(1995), - [aux_sym_cmd_identifier_token37] = ACTIONS(1995), - [aux_sym_cmd_identifier_token38] = ACTIONS(1993), - [aux_sym_cmd_identifier_token39] = ACTIONS(1995), - [aux_sym_cmd_identifier_token40] = ACTIONS(1995), - [anon_sym_def] = ACTIONS(1993), - [anon_sym_export_DASHenv] = ACTIONS(1993), - [anon_sym_extern] = ACTIONS(1993), - [anon_sym_module] = ACTIONS(1993), - [anon_sym_use] = ACTIONS(1993), - [anon_sym_LPAREN] = ACTIONS(1995), - [anon_sym_COMMA] = ACTIONS(1995), - [anon_sym_DOLLAR] = ACTIONS(1993), - [anon_sym_error] = ACTIONS(1993), - [anon_sym_DASH2] = ACTIONS(1993), - [anon_sym_break] = ACTIONS(1993), - [anon_sym_continue] = ACTIONS(1993), - [anon_sym_for] = ACTIONS(1993), - [anon_sym_in2] = ACTIONS(1993), - [anon_sym_loop] = ACTIONS(1993), - [anon_sym_make] = ACTIONS(1993), - [anon_sym_while] = ACTIONS(1993), - [anon_sym_do] = ACTIONS(1993), - [anon_sym_if] = ACTIONS(1993), - [anon_sym_else] = ACTIONS(1993), - [anon_sym_match] = ACTIONS(1993), - [anon_sym_RBRACE] = ACTIONS(1995), - [anon_sym_try] = ACTIONS(1993), - [anon_sym_catch] = ACTIONS(1993), - [anon_sym_return] = ACTIONS(1993), - [anon_sym_source] = ACTIONS(1993), - [anon_sym_source_DASHenv] = ACTIONS(1993), - [anon_sym_register] = ACTIONS(1993), - [anon_sym_hide] = ACTIONS(1993), - [anon_sym_hide_DASHenv] = ACTIONS(1993), - [anon_sym_overlay] = ACTIONS(1993), - [anon_sym_as] = ACTIONS(1993), - [anon_sym_PLUS2] = ACTIONS(1993), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1995), - [anon_sym_DOT_DOT2] = ACTIONS(1993), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1995), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1995), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1995), - [aux_sym__val_number_decimal_token1] = ACTIONS(1993), - [aux_sym__val_number_decimal_token2] = ACTIONS(1995), - [aux_sym__val_number_decimal_token3] = ACTIONS(1995), - [aux_sym__val_number_decimal_token4] = ACTIONS(1995), - [aux_sym__val_number_token1] = ACTIONS(1995), - [aux_sym__val_number_token2] = ACTIONS(1995), - [aux_sym__val_number_token3] = ACTIONS(1995), - [aux_sym__val_number_token4] = ACTIONS(1993), - [aux_sym__val_number_token5] = ACTIONS(1993), - [aux_sym__val_number_token6] = ACTIONS(1993), - [anon_sym_DQUOTE] = ACTIONS(1995), - [sym__str_single_quotes] = ACTIONS(1995), - [sym__str_back_ticks] = ACTIONS(1995), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1995), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1995), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1995), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1995), + [sym_raw_string_begin] = ACTIONS(998), }, - [539] = { - [sym_comment] = STATE(539), - [anon_sym_export] = ACTIONS(2061), - [anon_sym_alias] = ACTIONS(2061), - [anon_sym_let] = ACTIONS(2061), - [anon_sym_let_DASHenv] = ACTIONS(2061), - [anon_sym_mut] = ACTIONS(2061), - [anon_sym_const] = ACTIONS(2061), - [aux_sym_cmd_identifier_token1] = ACTIONS(2061), - [aux_sym_cmd_identifier_token2] = ACTIONS(2063), - [aux_sym_cmd_identifier_token3] = ACTIONS(2063), - [aux_sym_cmd_identifier_token4] = ACTIONS(2063), - [aux_sym_cmd_identifier_token5] = ACTIONS(2063), - [aux_sym_cmd_identifier_token6] = ACTIONS(2063), - [aux_sym_cmd_identifier_token7] = ACTIONS(2063), - [aux_sym_cmd_identifier_token8] = ACTIONS(2061), - [aux_sym_cmd_identifier_token9] = ACTIONS(2061), - [aux_sym_cmd_identifier_token10] = ACTIONS(2063), - [aux_sym_cmd_identifier_token11] = ACTIONS(2063), - [aux_sym_cmd_identifier_token12] = ACTIONS(2061), - [aux_sym_cmd_identifier_token13] = ACTIONS(2061), - [aux_sym_cmd_identifier_token14] = ACTIONS(2061), - [aux_sym_cmd_identifier_token15] = ACTIONS(2061), - [aux_sym_cmd_identifier_token16] = ACTIONS(2063), - [aux_sym_cmd_identifier_token17] = ACTIONS(2063), - [aux_sym_cmd_identifier_token18] = ACTIONS(2063), - [aux_sym_cmd_identifier_token19] = ACTIONS(2063), - [aux_sym_cmd_identifier_token20] = ACTIONS(2063), - [aux_sym_cmd_identifier_token21] = ACTIONS(2063), - [aux_sym_cmd_identifier_token22] = ACTIONS(2063), - [aux_sym_cmd_identifier_token23] = ACTIONS(2063), - [aux_sym_cmd_identifier_token24] = ACTIONS(2063), - [aux_sym_cmd_identifier_token25] = ACTIONS(2063), - [aux_sym_cmd_identifier_token26] = ACTIONS(2063), - [aux_sym_cmd_identifier_token27] = ACTIONS(2063), - [aux_sym_cmd_identifier_token28] = ACTIONS(2063), - [aux_sym_cmd_identifier_token29] = ACTIONS(2063), - [aux_sym_cmd_identifier_token30] = ACTIONS(2063), - [aux_sym_cmd_identifier_token31] = ACTIONS(2063), - [aux_sym_cmd_identifier_token32] = ACTIONS(2063), - [aux_sym_cmd_identifier_token33] = ACTIONS(2063), - [aux_sym_cmd_identifier_token34] = ACTIONS(2061), - [aux_sym_cmd_identifier_token35] = ACTIONS(2063), - [aux_sym_cmd_identifier_token36] = ACTIONS(2063), - [aux_sym_cmd_identifier_token37] = ACTIONS(2063), - [aux_sym_cmd_identifier_token38] = ACTIONS(2061), - [aux_sym_cmd_identifier_token39] = ACTIONS(2063), - [aux_sym_cmd_identifier_token40] = ACTIONS(2063), - [anon_sym_def] = ACTIONS(2061), - [anon_sym_export_DASHenv] = ACTIONS(2061), - [anon_sym_extern] = ACTIONS(2061), - [anon_sym_module] = ACTIONS(2061), - [anon_sym_use] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(2063), - [anon_sym_COMMA] = ACTIONS(2063), - [anon_sym_DOLLAR] = ACTIONS(2061), - [anon_sym_error] = ACTIONS(2061), - [anon_sym_DASH2] = ACTIONS(2061), - [anon_sym_break] = ACTIONS(2061), - [anon_sym_continue] = ACTIONS(2061), - [anon_sym_for] = ACTIONS(2061), - [anon_sym_in2] = ACTIONS(2061), - [anon_sym_loop] = ACTIONS(2061), - [anon_sym_make] = ACTIONS(2061), - [anon_sym_while] = ACTIONS(2061), - [anon_sym_do] = ACTIONS(2061), - [anon_sym_if] = ACTIONS(2061), - [anon_sym_else] = ACTIONS(2061), - [anon_sym_match] = ACTIONS(2061), - [anon_sym_RBRACE] = ACTIONS(2063), - [anon_sym_try] = ACTIONS(2061), - [anon_sym_catch] = ACTIONS(2061), - [anon_sym_return] = ACTIONS(2061), - [anon_sym_source] = ACTIONS(2061), - [anon_sym_source_DASHenv] = ACTIONS(2061), - [anon_sym_register] = ACTIONS(2061), - [anon_sym_hide] = ACTIONS(2061), - [anon_sym_hide_DASHenv] = ACTIONS(2061), - [anon_sym_overlay] = ACTIONS(2061), - [anon_sym_as] = ACTIONS(2061), - [anon_sym_PLUS2] = ACTIONS(2061), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2063), - [anon_sym_DOT_DOT2] = ACTIONS(2188), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2190), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2190), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2063), - [aux_sym__val_number_decimal_token1] = ACTIONS(2061), - [aux_sym__val_number_decimal_token2] = ACTIONS(2063), - [aux_sym__val_number_decimal_token3] = ACTIONS(2063), - [aux_sym__val_number_decimal_token4] = ACTIONS(2063), - [aux_sym__val_number_token1] = ACTIONS(2063), - [aux_sym__val_number_token2] = ACTIONS(2063), - [aux_sym__val_number_token3] = ACTIONS(2063), - [aux_sym__val_number_token4] = ACTIONS(2061), - [aux_sym__val_number_token5] = ACTIONS(2061), - [aux_sym__val_number_token6] = ACTIONS(2061), - [anon_sym_DQUOTE] = ACTIONS(2063), - [sym__str_single_quotes] = ACTIONS(2063), - [sym__str_back_ticks] = ACTIONS(2063), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2063), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2063), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2063), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2063), + [558] = { + [sym_comment] = STATE(558), + [anon_sym_export] = ACTIONS(1693), + [anon_sym_alias] = ACTIONS(1693), + [anon_sym_let] = ACTIONS(1693), + [anon_sym_let_DASHenv] = ACTIONS(1693), + [anon_sym_mut] = ACTIONS(1693), + [anon_sym_const] = ACTIONS(1693), + [aux_sym_cmd_identifier_token1] = ACTIONS(1693), + [aux_sym_cmd_identifier_token2] = ACTIONS(1695), + [aux_sym_cmd_identifier_token3] = ACTIONS(1695), + [aux_sym_cmd_identifier_token4] = ACTIONS(1695), + [aux_sym_cmd_identifier_token5] = ACTIONS(1695), + [aux_sym_cmd_identifier_token6] = ACTIONS(1695), + [aux_sym_cmd_identifier_token7] = ACTIONS(1695), + [aux_sym_cmd_identifier_token8] = ACTIONS(1693), + [aux_sym_cmd_identifier_token9] = ACTIONS(1693), + [aux_sym_cmd_identifier_token10] = ACTIONS(1695), + [aux_sym_cmd_identifier_token11] = ACTIONS(1695), + [aux_sym_cmd_identifier_token12] = ACTIONS(1693), + [aux_sym_cmd_identifier_token13] = ACTIONS(1693), + [aux_sym_cmd_identifier_token14] = ACTIONS(1693), + [aux_sym_cmd_identifier_token15] = ACTIONS(1693), + [aux_sym_cmd_identifier_token16] = ACTIONS(1695), + [aux_sym_cmd_identifier_token17] = ACTIONS(1695), + [aux_sym_cmd_identifier_token18] = ACTIONS(1695), + [aux_sym_cmd_identifier_token19] = ACTIONS(1695), + [aux_sym_cmd_identifier_token20] = ACTIONS(1695), + [aux_sym_cmd_identifier_token21] = ACTIONS(1695), + [aux_sym_cmd_identifier_token22] = ACTIONS(1695), + [aux_sym_cmd_identifier_token23] = ACTIONS(1695), + [aux_sym_cmd_identifier_token24] = ACTIONS(1695), + [aux_sym_cmd_identifier_token25] = ACTIONS(1695), + [aux_sym_cmd_identifier_token26] = ACTIONS(1695), + [aux_sym_cmd_identifier_token27] = ACTIONS(1695), + [aux_sym_cmd_identifier_token28] = ACTIONS(1695), + [aux_sym_cmd_identifier_token29] = ACTIONS(1695), + [aux_sym_cmd_identifier_token30] = ACTIONS(1695), + [aux_sym_cmd_identifier_token31] = ACTIONS(1695), + [aux_sym_cmd_identifier_token32] = ACTIONS(1695), + [aux_sym_cmd_identifier_token33] = ACTIONS(1695), + [aux_sym_cmd_identifier_token34] = ACTIONS(1693), + [aux_sym_cmd_identifier_token35] = ACTIONS(1695), + [aux_sym_cmd_identifier_token36] = ACTIONS(1695), + [aux_sym_cmd_identifier_token37] = ACTIONS(1695), + [aux_sym_cmd_identifier_token38] = ACTIONS(1693), + [aux_sym_cmd_identifier_token39] = ACTIONS(1695), + [aux_sym_cmd_identifier_token40] = ACTIONS(1695), + [anon_sym_def] = ACTIONS(1693), + [anon_sym_export_DASHenv] = ACTIONS(1693), + [anon_sym_extern] = ACTIONS(1693), + [anon_sym_module] = ACTIONS(1693), + [anon_sym_use] = ACTIONS(1693), + [anon_sym_LPAREN] = ACTIONS(1695), + [anon_sym_COMMA] = ACTIONS(1695), + [anon_sym_DOLLAR] = ACTIONS(1693), + [anon_sym_error] = ACTIONS(1693), + [anon_sym_DASH2] = ACTIONS(1693), + [anon_sym_break] = ACTIONS(1693), + [anon_sym_continue] = ACTIONS(1693), + [anon_sym_for] = ACTIONS(1693), + [anon_sym_in2] = ACTIONS(1693), + [anon_sym_loop] = ACTIONS(1693), + [anon_sym_make] = ACTIONS(1693), + [anon_sym_while] = ACTIONS(1693), + [anon_sym_do] = ACTIONS(1693), + [anon_sym_if] = ACTIONS(1693), + [anon_sym_else] = ACTIONS(1693), + [anon_sym_match] = ACTIONS(1693), + [anon_sym_RBRACE] = ACTIONS(1695), + [anon_sym_try] = ACTIONS(1693), + [anon_sym_catch] = ACTIONS(1693), + [anon_sym_return] = ACTIONS(1693), + [anon_sym_source] = ACTIONS(1693), + [anon_sym_source_DASHenv] = ACTIONS(1693), + [anon_sym_hide] = ACTIONS(1693), + [anon_sym_hide_DASHenv] = ACTIONS(1693), + [anon_sym_overlay] = ACTIONS(1693), + [anon_sym_as] = ACTIONS(1693), + [anon_sym_PLUS2] = ACTIONS(1693), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1695), + [aux_sym__immediate_decimal_token1] = ACTIONS(2220), + [aux_sym__immediate_decimal_token2] = ACTIONS(2222), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1695), + [aux_sym__val_number_decimal_token1] = ACTIONS(1693), + [aux_sym__val_number_decimal_token2] = ACTIONS(1695), + [aux_sym__val_number_decimal_token3] = ACTIONS(1695), + [aux_sym__val_number_decimal_token4] = ACTIONS(1695), + [aux_sym__val_number_token1] = ACTIONS(1695), + [aux_sym__val_number_token2] = ACTIONS(1695), + [aux_sym__val_number_token3] = ACTIONS(1695), + [aux_sym__val_number_token4] = ACTIONS(1693), + [aux_sym__val_number_token5] = ACTIONS(1693), + [aux_sym__val_number_token6] = ACTIONS(1693), + [anon_sym_DQUOTE] = ACTIONS(1695), + [sym__str_single_quotes] = ACTIONS(1695), + [sym__str_back_ticks] = ACTIONS(1695), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1695), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1695), + [anon_sym_register] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1695), }, - [540] = { - [sym_comment] = STATE(540), - [anon_sym_export] = ACTIONS(1711), - [anon_sym_alias] = ACTIONS(1711), - [anon_sym_let] = ACTIONS(1711), - [anon_sym_let_DASHenv] = ACTIONS(1711), - [anon_sym_mut] = ACTIONS(1711), - [anon_sym_const] = ACTIONS(1711), - [aux_sym_cmd_identifier_token1] = ACTIONS(1711), - [aux_sym_cmd_identifier_token2] = ACTIONS(1711), - [aux_sym_cmd_identifier_token3] = ACTIONS(1711), - [aux_sym_cmd_identifier_token4] = ACTIONS(1711), - [aux_sym_cmd_identifier_token5] = ACTIONS(1711), - [aux_sym_cmd_identifier_token6] = ACTIONS(1711), - [aux_sym_cmd_identifier_token7] = ACTIONS(1711), - [aux_sym_cmd_identifier_token8] = ACTIONS(1711), - [aux_sym_cmd_identifier_token9] = ACTIONS(1711), - [aux_sym_cmd_identifier_token10] = ACTIONS(1711), - [aux_sym_cmd_identifier_token11] = ACTIONS(1711), - [aux_sym_cmd_identifier_token12] = ACTIONS(1711), - [aux_sym_cmd_identifier_token13] = ACTIONS(1711), - [aux_sym_cmd_identifier_token14] = ACTIONS(1711), - [aux_sym_cmd_identifier_token15] = ACTIONS(1711), - [aux_sym_cmd_identifier_token16] = ACTIONS(1711), - [aux_sym_cmd_identifier_token17] = ACTIONS(1711), - [aux_sym_cmd_identifier_token18] = ACTIONS(1711), - [aux_sym_cmd_identifier_token19] = ACTIONS(1711), - [aux_sym_cmd_identifier_token20] = ACTIONS(1711), - [aux_sym_cmd_identifier_token21] = ACTIONS(1711), - [aux_sym_cmd_identifier_token22] = ACTIONS(1711), - [aux_sym_cmd_identifier_token23] = ACTIONS(1711), - [aux_sym_cmd_identifier_token24] = ACTIONS(1711), - [aux_sym_cmd_identifier_token25] = ACTIONS(1711), - [aux_sym_cmd_identifier_token26] = ACTIONS(1711), - [aux_sym_cmd_identifier_token27] = ACTIONS(1711), - [aux_sym_cmd_identifier_token28] = ACTIONS(1711), - [aux_sym_cmd_identifier_token29] = ACTIONS(1711), - [aux_sym_cmd_identifier_token30] = ACTIONS(1711), - [aux_sym_cmd_identifier_token31] = ACTIONS(1711), - [aux_sym_cmd_identifier_token32] = ACTIONS(1711), - [aux_sym_cmd_identifier_token33] = ACTIONS(1711), - [aux_sym_cmd_identifier_token34] = ACTIONS(1711), - [aux_sym_cmd_identifier_token35] = ACTIONS(1711), - [aux_sym_cmd_identifier_token36] = ACTIONS(1711), - [aux_sym_cmd_identifier_token37] = ACTIONS(1711), - [aux_sym_cmd_identifier_token38] = ACTIONS(1711), - [aux_sym_cmd_identifier_token39] = ACTIONS(1711), - [aux_sym_cmd_identifier_token40] = ACTIONS(1711), - [anon_sym_def] = ACTIONS(1711), - [anon_sym_export_DASHenv] = ACTIONS(1711), - [anon_sym_extern] = ACTIONS(1711), - [anon_sym_module] = ACTIONS(1711), - [anon_sym_use] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_COMMA] = ACTIONS(1711), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_error] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_break] = ACTIONS(1711), - [anon_sym_continue] = ACTIONS(1711), - [anon_sym_for] = ACTIONS(1711), - [anon_sym_in2] = ACTIONS(1711), - [anon_sym_loop] = ACTIONS(1711), - [anon_sym_make] = ACTIONS(1711), - [anon_sym_while] = ACTIONS(1711), - [anon_sym_do] = ACTIONS(1711), - [anon_sym_if] = ACTIONS(1711), - [anon_sym_else] = ACTIONS(1711), - [anon_sym_match] = ACTIONS(1711), - [anon_sym_RBRACE] = ACTIONS(1711), - [anon_sym_try] = ACTIONS(1711), - [anon_sym_catch] = ACTIONS(1711), - [anon_sym_return] = ACTIONS(1711), - [anon_sym_source] = ACTIONS(1711), - [anon_sym_source_DASHenv] = ACTIONS(1711), - [anon_sym_register] = ACTIONS(1711), - [anon_sym_hide] = ACTIONS(1711), - [anon_sym_hide_DASHenv] = ACTIONS(1711), - [anon_sym_overlay] = ACTIONS(1711), - [anon_sym_as] = ACTIONS(1711), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1711), - [aux_sym__immediate_decimal_token1] = ACTIONS(2216), - [aux_sym__immediate_decimal_token2] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1711), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1711), - [aux_sym__val_number_decimal_token3] = ACTIONS(1711), - [aux_sym__val_number_decimal_token4] = ACTIONS(1711), - [aux_sym__val_number_token1] = ACTIONS(1711), - [aux_sym__val_number_token2] = ACTIONS(1711), - [aux_sym__val_number_token3] = ACTIONS(1711), - [aux_sym__val_number_token4] = ACTIONS(1711), - [aux_sym__val_number_token5] = ACTIONS(1711), - [aux_sym__val_number_token6] = ACTIONS(1711), - [anon_sym_DQUOTE] = ACTIONS(1711), - [sym__str_single_quotes] = ACTIONS(1711), - [sym__str_back_ticks] = ACTIONS(1711), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1711), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1711), - [sym__entry_separator] = ACTIONS(1713), + [559] = { + [sym_comment] = STATE(559), + [anon_sym_export] = ACTIONS(982), + [anon_sym_alias] = ACTIONS(982), + [anon_sym_let] = ACTIONS(982), + [anon_sym_let_DASHenv] = ACTIONS(982), + [anon_sym_mut] = ACTIONS(982), + [anon_sym_const] = ACTIONS(982), + [aux_sym_cmd_identifier_token1] = ACTIONS(982), + [aux_sym_cmd_identifier_token2] = ACTIONS(982), + [aux_sym_cmd_identifier_token3] = ACTIONS(982), + [aux_sym_cmd_identifier_token4] = ACTIONS(982), + [aux_sym_cmd_identifier_token5] = ACTIONS(982), + [aux_sym_cmd_identifier_token6] = ACTIONS(982), + [aux_sym_cmd_identifier_token7] = ACTIONS(982), + [aux_sym_cmd_identifier_token8] = ACTIONS(982), + [aux_sym_cmd_identifier_token9] = ACTIONS(982), + [aux_sym_cmd_identifier_token10] = ACTIONS(982), + [aux_sym_cmd_identifier_token11] = ACTIONS(982), + [aux_sym_cmd_identifier_token12] = ACTIONS(982), + [aux_sym_cmd_identifier_token13] = ACTIONS(982), + [aux_sym_cmd_identifier_token14] = ACTIONS(982), + [aux_sym_cmd_identifier_token15] = ACTIONS(982), + [aux_sym_cmd_identifier_token16] = ACTIONS(982), + [aux_sym_cmd_identifier_token17] = ACTIONS(982), + [aux_sym_cmd_identifier_token18] = ACTIONS(982), + [aux_sym_cmd_identifier_token19] = ACTIONS(982), + [aux_sym_cmd_identifier_token20] = ACTIONS(982), + [aux_sym_cmd_identifier_token21] = ACTIONS(982), + [aux_sym_cmd_identifier_token22] = ACTIONS(982), + [aux_sym_cmd_identifier_token23] = ACTIONS(982), + [aux_sym_cmd_identifier_token24] = ACTIONS(982), + [aux_sym_cmd_identifier_token25] = ACTIONS(982), + [aux_sym_cmd_identifier_token26] = ACTIONS(982), + [aux_sym_cmd_identifier_token27] = ACTIONS(982), + [aux_sym_cmd_identifier_token28] = ACTIONS(982), + [aux_sym_cmd_identifier_token29] = ACTIONS(982), + [aux_sym_cmd_identifier_token30] = ACTIONS(982), + [aux_sym_cmd_identifier_token31] = ACTIONS(982), + [aux_sym_cmd_identifier_token32] = ACTIONS(982), + [aux_sym_cmd_identifier_token33] = ACTIONS(982), + [aux_sym_cmd_identifier_token34] = ACTIONS(982), + [aux_sym_cmd_identifier_token35] = ACTIONS(982), + [aux_sym_cmd_identifier_token36] = ACTIONS(982), + [aux_sym_cmd_identifier_token37] = ACTIONS(982), + [aux_sym_cmd_identifier_token38] = ACTIONS(982), + [aux_sym_cmd_identifier_token39] = ACTIONS(982), + [aux_sym_cmd_identifier_token40] = ACTIONS(982), + [anon_sym_def] = ACTIONS(982), + [anon_sym_export_DASHenv] = ACTIONS(982), + [anon_sym_extern] = ACTIONS(982), + [anon_sym_module] = ACTIONS(982), + [anon_sym_use] = ACTIONS(982), + [anon_sym_LPAREN] = ACTIONS(982), + [anon_sym_COMMA] = ACTIONS(982), + [anon_sym_DOLLAR] = ACTIONS(982), + [anon_sym_error] = ACTIONS(982), + [anon_sym_DASH2] = ACTIONS(982), + [anon_sym_break] = ACTIONS(982), + [anon_sym_continue] = ACTIONS(982), + [anon_sym_for] = ACTIONS(982), + [anon_sym_in2] = ACTIONS(982), + [anon_sym_loop] = ACTIONS(982), + [anon_sym_make] = ACTIONS(982), + [anon_sym_while] = ACTIONS(982), + [anon_sym_do] = ACTIONS(982), + [anon_sym_if] = ACTIONS(982), + [anon_sym_else] = ACTIONS(982), + [anon_sym_match] = ACTIONS(982), + [anon_sym_RBRACE] = ACTIONS(982), + [anon_sym_try] = ACTIONS(982), + [anon_sym_catch] = ACTIONS(982), + [anon_sym_return] = ACTIONS(982), + [anon_sym_source] = ACTIONS(982), + [anon_sym_source_DASHenv] = ACTIONS(982), + [anon_sym_hide] = ACTIONS(982), + [anon_sym_hide_DASHenv] = ACTIONS(982), + [anon_sym_overlay] = ACTIONS(982), + [anon_sym_as] = ACTIONS(982), + [anon_sym_PLUS2] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(982), + [aux_sym__val_number_decimal_token1] = ACTIONS(982), + [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), + [aux_sym__val_number_token4] = ACTIONS(982), + [aux_sym__val_number_token5] = ACTIONS(982), + [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(982), + [sym__entry_separator] = ACTIONS(984), + [anon_sym_register] = ACTIONS(982), + [anon_sym_DOT2] = ACTIONS(982), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1713), + [sym_raw_string_begin] = ACTIONS(984), }, - [541] = { - [sym_comment] = STATE(541), - [anon_sym_export] = ACTIONS(2007), - [anon_sym_alias] = ACTIONS(2007), - [anon_sym_let] = ACTIONS(2007), - [anon_sym_let_DASHenv] = ACTIONS(2007), - [anon_sym_mut] = ACTIONS(2007), - [anon_sym_const] = ACTIONS(2007), - [aux_sym_cmd_identifier_token1] = ACTIONS(2007), - [aux_sym_cmd_identifier_token2] = ACTIONS(2013), - [aux_sym_cmd_identifier_token3] = ACTIONS(2013), - [aux_sym_cmd_identifier_token4] = ACTIONS(2013), - [aux_sym_cmd_identifier_token5] = ACTIONS(2013), - [aux_sym_cmd_identifier_token6] = ACTIONS(2013), - [aux_sym_cmd_identifier_token7] = ACTIONS(2013), - [aux_sym_cmd_identifier_token8] = ACTIONS(2007), - [aux_sym_cmd_identifier_token9] = ACTIONS(2007), - [aux_sym_cmd_identifier_token10] = ACTIONS(2013), - [aux_sym_cmd_identifier_token11] = ACTIONS(2013), - [aux_sym_cmd_identifier_token12] = ACTIONS(2007), - [aux_sym_cmd_identifier_token13] = ACTIONS(2007), - [aux_sym_cmd_identifier_token14] = ACTIONS(2007), - [aux_sym_cmd_identifier_token15] = ACTIONS(2007), - [aux_sym_cmd_identifier_token16] = ACTIONS(2013), - [aux_sym_cmd_identifier_token17] = ACTIONS(2013), - [aux_sym_cmd_identifier_token18] = ACTIONS(2013), - [aux_sym_cmd_identifier_token19] = ACTIONS(2013), - [aux_sym_cmd_identifier_token20] = ACTIONS(2013), - [aux_sym_cmd_identifier_token21] = ACTIONS(2013), - [aux_sym_cmd_identifier_token22] = ACTIONS(2013), - [aux_sym_cmd_identifier_token23] = ACTIONS(2013), - [aux_sym_cmd_identifier_token24] = ACTIONS(2013), - [aux_sym_cmd_identifier_token25] = ACTIONS(2013), - [aux_sym_cmd_identifier_token26] = ACTIONS(2013), - [aux_sym_cmd_identifier_token27] = ACTIONS(2013), - [aux_sym_cmd_identifier_token28] = ACTIONS(2013), - [aux_sym_cmd_identifier_token29] = ACTIONS(2013), - [aux_sym_cmd_identifier_token30] = ACTIONS(2013), - [aux_sym_cmd_identifier_token31] = ACTIONS(2013), - [aux_sym_cmd_identifier_token32] = ACTIONS(2013), - [aux_sym_cmd_identifier_token33] = ACTIONS(2013), - [aux_sym_cmd_identifier_token34] = ACTIONS(2007), - [aux_sym_cmd_identifier_token35] = ACTIONS(2013), - [aux_sym_cmd_identifier_token36] = ACTIONS(2013), - [aux_sym_cmd_identifier_token37] = ACTIONS(2013), - [aux_sym_cmd_identifier_token38] = ACTIONS(2007), - [aux_sym_cmd_identifier_token39] = ACTIONS(2013), - [aux_sym_cmd_identifier_token40] = ACTIONS(2013), - [anon_sym_def] = ACTIONS(2007), - [anon_sym_export_DASHenv] = ACTIONS(2007), - [anon_sym_extern] = ACTIONS(2007), - [anon_sym_module] = ACTIONS(2007), - [anon_sym_use] = ACTIONS(2007), - [anon_sym_LPAREN] = ACTIONS(2013), - [anon_sym_COMMA] = ACTIONS(2013), - [anon_sym_DOLLAR] = ACTIONS(2007), - [anon_sym_error] = ACTIONS(2007), - [anon_sym_DASH2] = ACTIONS(2007), - [anon_sym_break] = ACTIONS(2007), - [anon_sym_continue] = ACTIONS(2007), - [anon_sym_for] = ACTIONS(2007), - [anon_sym_in2] = ACTIONS(2007), - [anon_sym_loop] = ACTIONS(2007), - [anon_sym_make] = ACTIONS(2007), - [anon_sym_while] = ACTIONS(2007), - [anon_sym_do] = ACTIONS(2007), - [anon_sym_if] = ACTIONS(2007), - [anon_sym_else] = ACTIONS(2007), - [anon_sym_match] = ACTIONS(2007), - [anon_sym_RBRACE] = ACTIONS(2013), - [anon_sym_try] = ACTIONS(2007), - [anon_sym_catch] = ACTIONS(2007), - [anon_sym_return] = ACTIONS(2007), - [anon_sym_source] = ACTIONS(2007), - [anon_sym_source_DASHenv] = ACTIONS(2007), - [anon_sym_register] = ACTIONS(2007), - [anon_sym_hide] = ACTIONS(2007), - [anon_sym_hide_DASHenv] = ACTIONS(2007), - [anon_sym_overlay] = ACTIONS(2007), - [anon_sym_as] = ACTIONS(2007), - [anon_sym_PLUS2] = ACTIONS(2007), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2013), - [anon_sym_DOT_DOT2] = ACTIONS(2188), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2190), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2190), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2013), - [aux_sym__val_number_decimal_token1] = ACTIONS(2007), - [aux_sym__val_number_decimal_token2] = ACTIONS(2013), - [aux_sym__val_number_decimal_token3] = ACTIONS(2013), - [aux_sym__val_number_decimal_token4] = ACTIONS(2013), - [aux_sym__val_number_token1] = ACTIONS(2013), - [aux_sym__val_number_token2] = ACTIONS(2013), - [aux_sym__val_number_token3] = ACTIONS(2013), - [aux_sym__val_number_token4] = ACTIONS(2007), - [aux_sym__val_number_token5] = ACTIONS(2007), - [aux_sym__val_number_token6] = ACTIONS(2007), - [anon_sym_DQUOTE] = ACTIONS(2013), - [sym__str_single_quotes] = ACTIONS(2013), - [sym__str_back_ticks] = ACTIONS(2013), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2013), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2013), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2013), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2013), - }, - [542] = { - [sym_comment] = STATE(542), - [anon_sym_export] = ACTIONS(2057), - [anon_sym_alias] = ACTIONS(2057), - [anon_sym_let] = ACTIONS(2057), - [anon_sym_let_DASHenv] = ACTIONS(2057), - [anon_sym_mut] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [aux_sym_cmd_identifier_token1] = ACTIONS(2057), - [aux_sym_cmd_identifier_token2] = ACTIONS(2059), - [aux_sym_cmd_identifier_token3] = ACTIONS(2059), - [aux_sym_cmd_identifier_token4] = ACTIONS(2059), - [aux_sym_cmd_identifier_token5] = ACTIONS(2059), - [aux_sym_cmd_identifier_token6] = ACTIONS(2059), - [aux_sym_cmd_identifier_token7] = ACTIONS(2059), - [aux_sym_cmd_identifier_token8] = ACTIONS(2057), - [aux_sym_cmd_identifier_token9] = ACTIONS(2057), - [aux_sym_cmd_identifier_token10] = ACTIONS(2059), - [aux_sym_cmd_identifier_token11] = ACTIONS(2059), - [aux_sym_cmd_identifier_token12] = ACTIONS(2057), - [aux_sym_cmd_identifier_token13] = ACTIONS(2057), - [aux_sym_cmd_identifier_token14] = ACTIONS(2057), - [aux_sym_cmd_identifier_token15] = ACTIONS(2057), - [aux_sym_cmd_identifier_token16] = ACTIONS(2059), - [aux_sym_cmd_identifier_token17] = ACTIONS(2059), - [aux_sym_cmd_identifier_token18] = ACTIONS(2059), - [aux_sym_cmd_identifier_token19] = ACTIONS(2059), - [aux_sym_cmd_identifier_token20] = ACTIONS(2059), - [aux_sym_cmd_identifier_token21] = ACTIONS(2059), - [aux_sym_cmd_identifier_token22] = ACTIONS(2059), - [aux_sym_cmd_identifier_token23] = ACTIONS(2059), - [aux_sym_cmd_identifier_token24] = ACTIONS(2059), - [aux_sym_cmd_identifier_token25] = ACTIONS(2059), - [aux_sym_cmd_identifier_token26] = ACTIONS(2059), - [aux_sym_cmd_identifier_token27] = ACTIONS(2059), - [aux_sym_cmd_identifier_token28] = ACTIONS(2059), - [aux_sym_cmd_identifier_token29] = ACTIONS(2059), - [aux_sym_cmd_identifier_token30] = ACTIONS(2059), - [aux_sym_cmd_identifier_token31] = ACTIONS(2059), - [aux_sym_cmd_identifier_token32] = ACTIONS(2059), - [aux_sym_cmd_identifier_token33] = ACTIONS(2059), - [aux_sym_cmd_identifier_token34] = ACTIONS(2057), - [aux_sym_cmd_identifier_token35] = ACTIONS(2059), - [aux_sym_cmd_identifier_token36] = ACTIONS(2059), - [aux_sym_cmd_identifier_token37] = ACTIONS(2059), - [aux_sym_cmd_identifier_token38] = ACTIONS(2057), - [aux_sym_cmd_identifier_token39] = ACTIONS(2059), - [aux_sym_cmd_identifier_token40] = ACTIONS(2059), - [anon_sym_def] = ACTIONS(2057), - [anon_sym_export_DASHenv] = ACTIONS(2057), - [anon_sym_extern] = ACTIONS(2057), - [anon_sym_module] = ACTIONS(2057), - [anon_sym_use] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2059), - [anon_sym_COMMA] = ACTIONS(2059), - [anon_sym_DOLLAR] = ACTIONS(2057), - [anon_sym_error] = ACTIONS(2057), - [anon_sym_DASH2] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_in2] = ACTIONS(2057), - [anon_sym_loop] = ACTIONS(2057), - [anon_sym_make] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_else] = ACTIONS(2057), - [anon_sym_match] = ACTIONS(2057), - [anon_sym_RBRACE] = ACTIONS(2059), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_catch] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_source] = ACTIONS(2057), - [anon_sym_source_DASHenv] = ACTIONS(2057), - [anon_sym_register] = ACTIONS(2057), - [anon_sym_hide] = ACTIONS(2057), - [anon_sym_hide_DASHenv] = ACTIONS(2057), - [anon_sym_overlay] = ACTIONS(2057), - [anon_sym_as] = ACTIONS(2057), - [anon_sym_PLUS2] = ACTIONS(2057), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2059), - [anon_sym_DOT_DOT2] = ACTIONS(2188), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2190), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2190), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2059), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2059), - [aux_sym__val_number_decimal_token4] = ACTIONS(2059), - [aux_sym__val_number_token1] = ACTIONS(2059), - [aux_sym__val_number_token2] = ACTIONS(2059), - [aux_sym__val_number_token3] = ACTIONS(2059), - [aux_sym__val_number_token4] = ACTIONS(2057), - [aux_sym__val_number_token5] = ACTIONS(2057), - [aux_sym__val_number_token6] = ACTIONS(2057), - [anon_sym_DQUOTE] = ACTIONS(2059), - [sym__str_single_quotes] = ACTIONS(2059), - [sym__str_back_ticks] = ACTIONS(2059), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2059), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2059), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2059), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2059), + [560] = { + [sym_comment] = STATE(560), + [anon_sym_export] = ACTIONS(974), + [anon_sym_alias] = ACTIONS(974), + [anon_sym_let] = ACTIONS(974), + [anon_sym_let_DASHenv] = ACTIONS(974), + [anon_sym_mut] = ACTIONS(974), + [anon_sym_const] = ACTIONS(974), + [aux_sym_cmd_identifier_token1] = ACTIONS(974), + [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(974), + [aux_sym_cmd_identifier_token9] = ACTIONS(974), + [aux_sym_cmd_identifier_token10] = ACTIONS(976), + [aux_sym_cmd_identifier_token11] = ACTIONS(976), + [aux_sym_cmd_identifier_token12] = ACTIONS(974), + [aux_sym_cmd_identifier_token13] = ACTIONS(974), + [aux_sym_cmd_identifier_token14] = ACTIONS(974), + [aux_sym_cmd_identifier_token15] = ACTIONS(974), + [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(974), + [aux_sym_cmd_identifier_token35] = ACTIONS(976), + [aux_sym_cmd_identifier_token36] = ACTIONS(976), + [aux_sym_cmd_identifier_token37] = ACTIONS(976), + [aux_sym_cmd_identifier_token38] = ACTIONS(974), + [aux_sym_cmd_identifier_token39] = ACTIONS(976), + [aux_sym_cmd_identifier_token40] = ACTIONS(976), + [anon_sym_def] = ACTIONS(974), + [anon_sym_export_DASHenv] = ACTIONS(974), + [anon_sym_extern] = ACTIONS(974), + [anon_sym_module] = ACTIONS(974), + [anon_sym_use] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(976), + [anon_sym_COMMA] = ACTIONS(976), + [anon_sym_DOLLAR] = ACTIONS(974), + [anon_sym_error] = ACTIONS(974), + [anon_sym_DASH2] = ACTIONS(974), + [anon_sym_break] = ACTIONS(974), + [anon_sym_continue] = ACTIONS(974), + [anon_sym_for] = ACTIONS(974), + [anon_sym_in2] = ACTIONS(974), + [anon_sym_loop] = ACTIONS(974), + [anon_sym_make] = ACTIONS(974), + [anon_sym_while] = ACTIONS(974), + [anon_sym_do] = ACTIONS(974), + [anon_sym_if] = ACTIONS(974), + [anon_sym_else] = ACTIONS(974), + [anon_sym_match] = ACTIONS(974), + [anon_sym_RBRACE] = ACTIONS(976), + [anon_sym_try] = ACTIONS(974), + [anon_sym_catch] = ACTIONS(974), + [anon_sym_return] = ACTIONS(974), + [anon_sym_source] = ACTIONS(974), + [anon_sym_source_DASHenv] = ACTIONS(974), + [anon_sym_hide] = ACTIONS(974), + [anon_sym_hide_DASHenv] = ACTIONS(974), + [anon_sym_overlay] = ACTIONS(974), + [anon_sym_as] = ACTIONS(974), + [anon_sym_PLUS2] = ACTIONS(974), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(976), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(976), + [aux_sym__val_number_decimal_token1] = ACTIONS(974), + [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), + [aux_sym__val_number_token4] = ACTIONS(974), + [aux_sym__val_number_token5] = ACTIONS(974), + [aux_sym__val_number_token6] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(976), + [sym__str_single_quotes] = ACTIONS(976), + [sym__str_back_ticks] = ACTIONS(976), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(976), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(976), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(976), + [anon_sym_register] = ACTIONS(974), + [anon_sym_COLON2] = ACTIONS(976), + [anon_sym_DOT2] = ACTIONS(974), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(976), }, - [543] = { - [sym_comment] = STATE(543), - [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), - [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(2220), - [anon_sym_DOLLAR] = ACTIONS(2220), - [anon_sym_error] = ACTIONS(2220), - [anon_sym_DASH2] = ACTIONS(2220), - [anon_sym_break] = ACTIONS(2220), - [anon_sym_continue] = ACTIONS(2220), - [anon_sym_for] = ACTIONS(2220), - [anon_sym_in2] = 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(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_as] = ACTIONS(2220), - [anon_sym_LPAREN2] = ACTIONS(1814), - [anon_sym_PLUS2] = 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), - [aux_sym__val_number_decimal_token3] = ACTIONS(2220), - [aux_sym__val_number_decimal_token4] = ACTIONS(2220), - [aux_sym__val_number_token1] = ACTIONS(2220), - [aux_sym__val_number_token2] = ACTIONS(2220), - [aux_sym__val_number_token3] = ACTIONS(2220), - [aux_sym__val_number_token4] = ACTIONS(2220), - [aux_sym__val_number_token5] = ACTIONS(2220), - [aux_sym__val_number_token6] = ACTIONS(2220), - [anon_sym_DQUOTE] = ACTIONS(2220), - [sym__str_single_quotes] = ACTIONS(2220), - [sym__str_back_ticks] = ACTIONS(2220), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2220), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2220), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2220), - [sym__entry_separator] = ACTIONS(2222), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1822), + [561] = { + [sym_comment] = STATE(561), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1701), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_error] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_in2] = 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_hide] = ACTIONS(1701), + [anon_sym_hide_DASHenv] = ACTIONS(1701), + [anon_sym_overlay] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1701), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1701), + [aux_sym__immediate_decimal_token2] = ACTIONS(2097), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1701), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1701), + [aux_sym__val_number_decimal_token3] = ACTIONS(1701), + [aux_sym__val_number_decimal_token4] = ACTIONS(1701), + [aux_sym__val_number_token1] = ACTIONS(1701), + [aux_sym__val_number_token2] = ACTIONS(1701), + [aux_sym__val_number_token3] = ACTIONS(1701), + [aux_sym__val_number_token4] = ACTIONS(1701), + [aux_sym__val_number_token5] = ACTIONS(1701), + [aux_sym__val_number_token6] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1701), + [sym__str_single_quotes] = ACTIONS(1701), + [sym__str_back_ticks] = ACTIONS(1701), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1701), + [sym__entry_separator] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1701), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2222), + [sym_raw_string_begin] = ACTIONS(1703), }, - [544] = { - [sym_comment] = STATE(544), - [anon_sym_export] = ACTIONS(2224), - [anon_sym_alias] = ACTIONS(2224), - [anon_sym_let] = ACTIONS(2224), - [anon_sym_let_DASHenv] = ACTIONS(2224), - [anon_sym_mut] = ACTIONS(2224), - [anon_sym_const] = ACTIONS(2224), - [aux_sym_cmd_identifier_token1] = ACTIONS(2224), - [aux_sym_cmd_identifier_token2] = ACTIONS(2224), - [aux_sym_cmd_identifier_token3] = ACTIONS(2224), - [aux_sym_cmd_identifier_token4] = ACTIONS(2224), - [aux_sym_cmd_identifier_token5] = ACTIONS(2224), - [aux_sym_cmd_identifier_token6] = ACTIONS(2224), - [aux_sym_cmd_identifier_token7] = ACTIONS(2224), - [aux_sym_cmd_identifier_token8] = ACTIONS(2224), - [aux_sym_cmd_identifier_token9] = ACTIONS(2224), - [aux_sym_cmd_identifier_token10] = ACTIONS(2224), - [aux_sym_cmd_identifier_token11] = ACTIONS(2224), - [aux_sym_cmd_identifier_token12] = ACTIONS(2224), - [aux_sym_cmd_identifier_token13] = ACTIONS(2224), - [aux_sym_cmd_identifier_token14] = ACTIONS(2224), - [aux_sym_cmd_identifier_token15] = ACTIONS(2224), - [aux_sym_cmd_identifier_token16] = ACTIONS(2224), - [aux_sym_cmd_identifier_token17] = ACTIONS(2224), - [aux_sym_cmd_identifier_token18] = ACTIONS(2224), - [aux_sym_cmd_identifier_token19] = ACTIONS(2224), - [aux_sym_cmd_identifier_token20] = ACTIONS(2224), - [aux_sym_cmd_identifier_token21] = ACTIONS(2224), - [aux_sym_cmd_identifier_token22] = ACTIONS(2224), - [aux_sym_cmd_identifier_token23] = ACTIONS(2224), - [aux_sym_cmd_identifier_token24] = ACTIONS(2224), - [aux_sym_cmd_identifier_token25] = ACTIONS(2224), - [aux_sym_cmd_identifier_token26] = ACTIONS(2224), - [aux_sym_cmd_identifier_token27] = ACTIONS(2224), - [aux_sym_cmd_identifier_token28] = ACTIONS(2224), - [aux_sym_cmd_identifier_token29] = ACTIONS(2224), - [aux_sym_cmd_identifier_token30] = ACTIONS(2224), - [aux_sym_cmd_identifier_token31] = ACTIONS(2224), - [aux_sym_cmd_identifier_token32] = ACTIONS(2224), - [aux_sym_cmd_identifier_token33] = ACTIONS(2224), - [aux_sym_cmd_identifier_token34] = ACTIONS(2224), - [aux_sym_cmd_identifier_token35] = ACTIONS(2224), - [aux_sym_cmd_identifier_token36] = ACTIONS(2224), - [aux_sym_cmd_identifier_token37] = ACTIONS(2224), - [aux_sym_cmd_identifier_token38] = ACTIONS(2224), - [aux_sym_cmd_identifier_token39] = ACTIONS(2224), - [aux_sym_cmd_identifier_token40] = ACTIONS(2224), - [anon_sym_def] = ACTIONS(2224), - [anon_sym_export_DASHenv] = ACTIONS(2224), - [anon_sym_extern] = ACTIONS(2224), - [anon_sym_module] = ACTIONS(2224), - [anon_sym_use] = ACTIONS(2224), - [anon_sym_LPAREN] = ACTIONS(2224), - [anon_sym_COMMA] = ACTIONS(2224), - [anon_sym_DOLLAR] = ACTIONS(2224), - [anon_sym_error] = ACTIONS(2224), - [anon_sym_DASH2] = ACTIONS(2224), - [anon_sym_break] = ACTIONS(2224), - [anon_sym_continue] = ACTIONS(2224), - [anon_sym_for] = ACTIONS(2224), - [anon_sym_in2] = ACTIONS(2224), - [anon_sym_loop] = ACTIONS(2224), - [anon_sym_make] = ACTIONS(2224), - [anon_sym_while] = ACTIONS(2224), - [anon_sym_do] = ACTIONS(2224), - [anon_sym_if] = ACTIONS(2224), - [anon_sym_else] = ACTIONS(2224), - [anon_sym_match] = ACTIONS(2224), - [anon_sym_RBRACE] = ACTIONS(2224), - [anon_sym_try] = ACTIONS(2224), - [anon_sym_catch] = ACTIONS(2224), - [anon_sym_return] = ACTIONS(2224), - [anon_sym_source] = ACTIONS(2224), - [anon_sym_source_DASHenv] = ACTIONS(2224), - [anon_sym_register] = ACTIONS(2224), - [anon_sym_hide] = ACTIONS(2224), - [anon_sym_hide_DASHenv] = ACTIONS(2224), - [anon_sym_overlay] = ACTIONS(2224), - [anon_sym_as] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2226), - [anon_sym_PLUS2] = ACTIONS(2224), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2224), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2224), - [aux_sym__val_number_decimal_token1] = ACTIONS(2224), - [aux_sym__val_number_decimal_token2] = ACTIONS(2224), - [aux_sym__val_number_decimal_token3] = ACTIONS(2224), - [aux_sym__val_number_decimal_token4] = ACTIONS(2224), - [aux_sym__val_number_token1] = ACTIONS(2224), - [aux_sym__val_number_token2] = ACTIONS(2224), - [aux_sym__val_number_token3] = ACTIONS(2224), - [aux_sym__val_number_token4] = ACTIONS(2224), - [aux_sym__val_number_token5] = ACTIONS(2224), - [aux_sym__val_number_token6] = ACTIONS(2224), - [anon_sym_DQUOTE] = ACTIONS(2224), - [sym__str_single_quotes] = ACTIONS(2224), - [sym__str_back_ticks] = ACTIONS(2224), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2224), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2224), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2224), - [sym__entry_separator] = ACTIONS(2228), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1540), + [562] = { + [sym_comment] = STATE(562), + [anon_sym_export] = ACTIONS(978), + [anon_sym_alias] = ACTIONS(978), + [anon_sym_let] = ACTIONS(978), + [anon_sym_let_DASHenv] = ACTIONS(978), + [anon_sym_mut] = ACTIONS(978), + [anon_sym_const] = ACTIONS(978), + [aux_sym_cmd_identifier_token1] = ACTIONS(978), + [aux_sym_cmd_identifier_token2] = ACTIONS(978), + [aux_sym_cmd_identifier_token3] = ACTIONS(978), + [aux_sym_cmd_identifier_token4] = ACTIONS(978), + [aux_sym_cmd_identifier_token5] = ACTIONS(978), + [aux_sym_cmd_identifier_token6] = ACTIONS(978), + [aux_sym_cmd_identifier_token7] = ACTIONS(978), + [aux_sym_cmd_identifier_token8] = ACTIONS(978), + [aux_sym_cmd_identifier_token9] = ACTIONS(978), + [aux_sym_cmd_identifier_token10] = ACTIONS(978), + [aux_sym_cmd_identifier_token11] = ACTIONS(978), + [aux_sym_cmd_identifier_token12] = ACTIONS(978), + [aux_sym_cmd_identifier_token13] = ACTIONS(978), + [aux_sym_cmd_identifier_token14] = ACTIONS(978), + [aux_sym_cmd_identifier_token15] = ACTIONS(978), + [aux_sym_cmd_identifier_token16] = ACTIONS(978), + [aux_sym_cmd_identifier_token17] = ACTIONS(978), + [aux_sym_cmd_identifier_token18] = ACTIONS(978), + [aux_sym_cmd_identifier_token19] = ACTIONS(978), + [aux_sym_cmd_identifier_token20] = ACTIONS(978), + [aux_sym_cmd_identifier_token21] = ACTIONS(978), + [aux_sym_cmd_identifier_token22] = ACTIONS(978), + [aux_sym_cmd_identifier_token23] = ACTIONS(978), + [aux_sym_cmd_identifier_token24] = ACTIONS(978), + [aux_sym_cmd_identifier_token25] = ACTIONS(978), + [aux_sym_cmd_identifier_token26] = ACTIONS(978), + [aux_sym_cmd_identifier_token27] = ACTIONS(978), + [aux_sym_cmd_identifier_token28] = ACTIONS(978), + [aux_sym_cmd_identifier_token29] = ACTIONS(978), + [aux_sym_cmd_identifier_token30] = ACTIONS(978), + [aux_sym_cmd_identifier_token31] = ACTIONS(978), + [aux_sym_cmd_identifier_token32] = ACTIONS(978), + [aux_sym_cmd_identifier_token33] = ACTIONS(978), + [aux_sym_cmd_identifier_token34] = ACTIONS(978), + [aux_sym_cmd_identifier_token35] = ACTIONS(978), + [aux_sym_cmd_identifier_token36] = ACTIONS(978), + [aux_sym_cmd_identifier_token37] = ACTIONS(978), + [aux_sym_cmd_identifier_token38] = ACTIONS(978), + [aux_sym_cmd_identifier_token39] = ACTIONS(978), + [aux_sym_cmd_identifier_token40] = ACTIONS(978), + [anon_sym_def] = ACTIONS(978), + [anon_sym_export_DASHenv] = ACTIONS(978), + [anon_sym_extern] = ACTIONS(978), + [anon_sym_module] = ACTIONS(978), + [anon_sym_use] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(978), + [anon_sym_COMMA] = ACTIONS(978), + [anon_sym_DOLLAR] = ACTIONS(978), + [anon_sym_error] = ACTIONS(978), + [anon_sym_DASH2] = ACTIONS(978), + [anon_sym_break] = ACTIONS(978), + [anon_sym_continue] = ACTIONS(978), + [anon_sym_for] = ACTIONS(978), + [anon_sym_in2] = ACTIONS(978), + [anon_sym_loop] = ACTIONS(978), + [anon_sym_make] = ACTIONS(978), + [anon_sym_while] = ACTIONS(978), + [anon_sym_do] = ACTIONS(978), + [anon_sym_if] = ACTIONS(978), + [anon_sym_else] = ACTIONS(978), + [anon_sym_match] = ACTIONS(978), + [anon_sym_RBRACE] = ACTIONS(978), + [anon_sym_try] = ACTIONS(978), + [anon_sym_catch] = ACTIONS(978), + [anon_sym_return] = ACTIONS(978), + [anon_sym_source] = ACTIONS(978), + [anon_sym_source_DASHenv] = ACTIONS(978), + [anon_sym_hide] = ACTIONS(978), + [anon_sym_hide_DASHenv] = ACTIONS(978), + [anon_sym_overlay] = ACTIONS(978), + [anon_sym_as] = ACTIONS(978), + [anon_sym_PLUS2] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(978), + [aux_sym__val_number_decimal_token1] = ACTIONS(978), + [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), + [aux_sym__val_number_token4] = ACTIONS(978), + [aux_sym__val_number_token5] = ACTIONS(978), + [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(978), + [sym__entry_separator] = ACTIONS(980), + [anon_sym_register] = ACTIONS(978), + [anon_sym_DOT2] = ACTIONS(978), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2228), + [sym_raw_string_begin] = ACTIONS(980), }, - [545] = { - [sym_comment] = STATE(545), - [anon_sym_export] = ACTIONS(1711), - [anon_sym_alias] = ACTIONS(1711), - [anon_sym_let] = ACTIONS(1711), - [anon_sym_let_DASHenv] = ACTIONS(1711), - [anon_sym_mut] = ACTIONS(1711), - [anon_sym_const] = ACTIONS(1711), - [aux_sym_cmd_identifier_token1] = ACTIONS(1711), - [aux_sym_cmd_identifier_token2] = ACTIONS(1711), - [aux_sym_cmd_identifier_token3] = ACTIONS(1711), - [aux_sym_cmd_identifier_token4] = ACTIONS(1711), - [aux_sym_cmd_identifier_token5] = ACTIONS(1711), - [aux_sym_cmd_identifier_token6] = ACTIONS(1711), - [aux_sym_cmd_identifier_token7] = ACTIONS(1711), - [aux_sym_cmd_identifier_token8] = ACTIONS(1711), - [aux_sym_cmd_identifier_token9] = ACTIONS(1711), - [aux_sym_cmd_identifier_token10] = ACTIONS(1711), - [aux_sym_cmd_identifier_token11] = ACTIONS(1711), - [aux_sym_cmd_identifier_token12] = ACTIONS(1711), - [aux_sym_cmd_identifier_token13] = ACTIONS(1711), - [aux_sym_cmd_identifier_token14] = ACTIONS(1711), - [aux_sym_cmd_identifier_token15] = ACTIONS(1711), - [aux_sym_cmd_identifier_token16] = ACTIONS(1711), - [aux_sym_cmd_identifier_token17] = ACTIONS(1711), - [aux_sym_cmd_identifier_token18] = ACTIONS(1711), - [aux_sym_cmd_identifier_token19] = ACTIONS(1711), - [aux_sym_cmd_identifier_token20] = ACTIONS(1711), - [aux_sym_cmd_identifier_token21] = ACTIONS(1711), - [aux_sym_cmd_identifier_token22] = ACTIONS(1711), - [aux_sym_cmd_identifier_token23] = ACTIONS(1711), - [aux_sym_cmd_identifier_token24] = ACTIONS(1711), - [aux_sym_cmd_identifier_token25] = ACTIONS(1711), - [aux_sym_cmd_identifier_token26] = ACTIONS(1711), - [aux_sym_cmd_identifier_token27] = ACTIONS(1711), - [aux_sym_cmd_identifier_token28] = ACTIONS(1711), - [aux_sym_cmd_identifier_token29] = ACTIONS(1711), - [aux_sym_cmd_identifier_token30] = ACTIONS(1711), - [aux_sym_cmd_identifier_token31] = ACTIONS(1711), - [aux_sym_cmd_identifier_token32] = ACTIONS(1711), - [aux_sym_cmd_identifier_token33] = ACTIONS(1711), - [aux_sym_cmd_identifier_token34] = ACTIONS(1711), - [aux_sym_cmd_identifier_token35] = ACTIONS(1711), - [aux_sym_cmd_identifier_token36] = ACTIONS(1711), - [aux_sym_cmd_identifier_token37] = ACTIONS(1711), - [aux_sym_cmd_identifier_token38] = ACTIONS(1711), - [aux_sym_cmd_identifier_token39] = ACTIONS(1711), - [aux_sym_cmd_identifier_token40] = ACTIONS(1711), - [anon_sym_def] = ACTIONS(1711), - [anon_sym_export_DASHenv] = ACTIONS(1711), - [anon_sym_extern] = ACTIONS(1711), - [anon_sym_module] = ACTIONS(1711), - [anon_sym_use] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_COMMA] = ACTIONS(1711), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_error] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_break] = ACTIONS(1711), - [anon_sym_continue] = ACTIONS(1711), - [anon_sym_for] = ACTIONS(1711), - [anon_sym_in2] = ACTIONS(1711), - [anon_sym_loop] = ACTIONS(1711), - [anon_sym_make] = ACTIONS(1711), - [anon_sym_while] = ACTIONS(1711), - [anon_sym_do] = ACTIONS(1711), - [anon_sym_if] = ACTIONS(1711), - [anon_sym_else] = ACTIONS(1711), - [anon_sym_match] = ACTIONS(1711), - [anon_sym_RBRACE] = ACTIONS(1711), - [anon_sym_try] = ACTIONS(1711), - [anon_sym_catch] = ACTIONS(1711), - [anon_sym_return] = ACTIONS(1711), - [anon_sym_source] = ACTIONS(1711), - [anon_sym_source_DASHenv] = ACTIONS(1711), - [anon_sym_register] = ACTIONS(1711), - [anon_sym_hide] = ACTIONS(1711), - [anon_sym_hide_DASHenv] = ACTIONS(1711), - [anon_sym_overlay] = ACTIONS(1711), - [anon_sym_as] = ACTIONS(1711), - [anon_sym_LPAREN2] = ACTIONS(1713), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1711), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1711), - [aux_sym__val_number_decimal_token3] = ACTIONS(1711), - [aux_sym__val_number_decimal_token4] = ACTIONS(1711), - [aux_sym__val_number_token1] = ACTIONS(1711), - [aux_sym__val_number_token2] = ACTIONS(1711), - [aux_sym__val_number_token3] = ACTIONS(1711), - [aux_sym__val_number_token4] = ACTIONS(1711), - [aux_sym__val_number_token5] = ACTIONS(1711), - [aux_sym__val_number_token6] = ACTIONS(1711), - [anon_sym_DQUOTE] = ACTIONS(1711), - [sym__str_single_quotes] = ACTIONS(1711), - [sym__str_back_ticks] = ACTIONS(1711), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1711), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1711), - [sym__entry_separator] = ACTIONS(1713), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1711), + [563] = { + [sym_comment] = STATE(563), + [anon_sym_export] = ACTIONS(1766), + [anon_sym_alias] = ACTIONS(1766), + [anon_sym_let] = ACTIONS(1766), + [anon_sym_let_DASHenv] = ACTIONS(1766), + [anon_sym_mut] = ACTIONS(1766), + [anon_sym_const] = ACTIONS(1766), + [aux_sym_cmd_identifier_token1] = ACTIONS(1766), + [aux_sym_cmd_identifier_token2] = ACTIONS(1766), + [aux_sym_cmd_identifier_token3] = ACTIONS(1766), + [aux_sym_cmd_identifier_token4] = ACTIONS(1766), + [aux_sym_cmd_identifier_token5] = ACTIONS(1766), + [aux_sym_cmd_identifier_token6] = ACTIONS(1766), + [aux_sym_cmd_identifier_token7] = ACTIONS(1766), + [aux_sym_cmd_identifier_token8] = ACTIONS(1766), + [aux_sym_cmd_identifier_token9] = ACTIONS(1766), + [aux_sym_cmd_identifier_token10] = ACTIONS(1766), + [aux_sym_cmd_identifier_token11] = ACTIONS(1766), + [aux_sym_cmd_identifier_token12] = ACTIONS(1766), + [aux_sym_cmd_identifier_token13] = ACTIONS(1766), + [aux_sym_cmd_identifier_token14] = ACTIONS(1766), + [aux_sym_cmd_identifier_token15] = ACTIONS(1766), + [aux_sym_cmd_identifier_token16] = ACTIONS(1766), + [aux_sym_cmd_identifier_token17] = ACTIONS(1766), + [aux_sym_cmd_identifier_token18] = ACTIONS(1766), + [aux_sym_cmd_identifier_token19] = ACTIONS(1766), + [aux_sym_cmd_identifier_token20] = ACTIONS(1766), + [aux_sym_cmd_identifier_token21] = ACTIONS(1766), + [aux_sym_cmd_identifier_token22] = ACTIONS(1766), + [aux_sym_cmd_identifier_token23] = ACTIONS(1766), + [aux_sym_cmd_identifier_token24] = ACTIONS(1766), + [aux_sym_cmd_identifier_token25] = ACTIONS(1766), + [aux_sym_cmd_identifier_token26] = ACTIONS(1766), + [aux_sym_cmd_identifier_token27] = ACTIONS(1766), + [aux_sym_cmd_identifier_token28] = ACTIONS(1766), + [aux_sym_cmd_identifier_token29] = ACTIONS(1766), + [aux_sym_cmd_identifier_token30] = ACTIONS(1766), + [aux_sym_cmd_identifier_token31] = ACTIONS(1766), + [aux_sym_cmd_identifier_token32] = ACTIONS(1766), + [aux_sym_cmd_identifier_token33] = ACTIONS(1766), + [aux_sym_cmd_identifier_token34] = ACTIONS(1766), + [aux_sym_cmd_identifier_token35] = ACTIONS(1766), + [aux_sym_cmd_identifier_token36] = ACTIONS(1766), + [aux_sym_cmd_identifier_token37] = ACTIONS(1766), + [aux_sym_cmd_identifier_token38] = ACTIONS(1766), + [aux_sym_cmd_identifier_token39] = ACTIONS(1766), + [aux_sym_cmd_identifier_token40] = ACTIONS(1766), + [anon_sym_def] = ACTIONS(1766), + [anon_sym_export_DASHenv] = ACTIONS(1766), + [anon_sym_extern] = ACTIONS(1766), + [anon_sym_module] = ACTIONS(1766), + [anon_sym_use] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1766), + [anon_sym_COMMA] = ACTIONS(1766), + [anon_sym_DOLLAR] = ACTIONS(1766), + [anon_sym_error] = ACTIONS(1766), + [anon_sym_DASH2] = ACTIONS(1766), + [anon_sym_break] = ACTIONS(1766), + [anon_sym_continue] = ACTIONS(1766), + [anon_sym_for] = ACTIONS(1766), + [anon_sym_in2] = ACTIONS(1766), + [anon_sym_loop] = ACTIONS(1766), + [anon_sym_make] = ACTIONS(1766), + [anon_sym_while] = ACTIONS(1766), + [anon_sym_do] = ACTIONS(1766), + [anon_sym_if] = ACTIONS(1766), + [anon_sym_else] = ACTIONS(1766), + [anon_sym_match] = ACTIONS(1766), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_try] = ACTIONS(1766), + [anon_sym_catch] = ACTIONS(1766), + [anon_sym_return] = ACTIONS(1766), + [anon_sym_source] = ACTIONS(1766), + [anon_sym_source_DASHenv] = ACTIONS(1766), + [anon_sym_hide] = ACTIONS(1766), + [anon_sym_hide_DASHenv] = ACTIONS(1766), + [anon_sym_overlay] = ACTIONS(1766), + [anon_sym_as] = ACTIONS(1766), + [anon_sym_PLUS2] = ACTIONS(1766), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1766), + [aux_sym__immediate_decimal_token2] = ACTIONS(2224), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1766), + [aux_sym__val_number_decimal_token1] = ACTIONS(1766), + [aux_sym__val_number_decimal_token2] = ACTIONS(1766), + [aux_sym__val_number_decimal_token3] = ACTIONS(1766), + [aux_sym__val_number_decimal_token4] = ACTIONS(1766), + [aux_sym__val_number_token1] = ACTIONS(1766), + [aux_sym__val_number_token2] = ACTIONS(1766), + [aux_sym__val_number_token3] = ACTIONS(1766), + [aux_sym__val_number_token4] = ACTIONS(1766), + [aux_sym__val_number_token5] = ACTIONS(1766), + [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(1766), + [sym__entry_separator] = ACTIONS(1768), + [anon_sym_register] = ACTIONS(1766), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1713), + [sym_raw_string_begin] = ACTIONS(1768), }, - [546] = { - [sym__expr_parenthesized_immediate] = STATE(7307), - [sym_comment] = STATE(546), - [anon_sym_export] = ACTIONS(2061), - [anon_sym_alias] = ACTIONS(2061), - [anon_sym_let] = ACTIONS(2061), - [anon_sym_let_DASHenv] = ACTIONS(2061), - [anon_sym_mut] = ACTIONS(2061), - [anon_sym_const] = ACTIONS(2061), - [aux_sym_cmd_identifier_token1] = ACTIONS(2061), - [aux_sym_cmd_identifier_token2] = ACTIONS(2061), - [aux_sym_cmd_identifier_token3] = ACTIONS(2061), - [aux_sym_cmd_identifier_token4] = ACTIONS(2061), - [aux_sym_cmd_identifier_token5] = ACTIONS(2061), - [aux_sym_cmd_identifier_token6] = ACTIONS(2061), - [aux_sym_cmd_identifier_token7] = ACTIONS(2061), - [aux_sym_cmd_identifier_token8] = ACTIONS(2061), - [aux_sym_cmd_identifier_token9] = ACTIONS(2061), - [aux_sym_cmd_identifier_token10] = ACTIONS(2061), - [aux_sym_cmd_identifier_token11] = ACTIONS(2061), - [aux_sym_cmd_identifier_token12] = ACTIONS(2061), - [aux_sym_cmd_identifier_token13] = ACTIONS(2061), - [aux_sym_cmd_identifier_token14] = ACTIONS(2061), - [aux_sym_cmd_identifier_token15] = ACTIONS(2061), - [aux_sym_cmd_identifier_token16] = ACTIONS(2061), - [aux_sym_cmd_identifier_token17] = ACTIONS(2061), - [aux_sym_cmd_identifier_token18] = ACTIONS(2061), - [aux_sym_cmd_identifier_token19] = ACTIONS(2061), - [aux_sym_cmd_identifier_token20] = ACTIONS(2061), - [aux_sym_cmd_identifier_token21] = ACTIONS(2061), - [aux_sym_cmd_identifier_token22] = ACTIONS(2061), - [aux_sym_cmd_identifier_token23] = ACTIONS(2061), - [aux_sym_cmd_identifier_token24] = ACTIONS(2061), - [aux_sym_cmd_identifier_token25] = ACTIONS(2061), - [aux_sym_cmd_identifier_token26] = ACTIONS(2061), - [aux_sym_cmd_identifier_token27] = ACTIONS(2061), - [aux_sym_cmd_identifier_token28] = ACTIONS(2061), - [aux_sym_cmd_identifier_token29] = ACTIONS(2061), - [aux_sym_cmd_identifier_token30] = ACTIONS(2061), - [aux_sym_cmd_identifier_token31] = ACTIONS(2061), - [aux_sym_cmd_identifier_token32] = ACTIONS(2061), - [aux_sym_cmd_identifier_token33] = ACTIONS(2061), - [aux_sym_cmd_identifier_token34] = ACTIONS(2061), - [aux_sym_cmd_identifier_token35] = ACTIONS(2061), - [aux_sym_cmd_identifier_token36] = ACTIONS(2061), - [aux_sym_cmd_identifier_token37] = ACTIONS(2061), - [aux_sym_cmd_identifier_token38] = ACTIONS(2061), - [aux_sym_cmd_identifier_token39] = ACTIONS(2061), - [aux_sym_cmd_identifier_token40] = ACTIONS(2061), - [anon_sym_def] = ACTIONS(2061), - [anon_sym_export_DASHenv] = ACTIONS(2061), - [anon_sym_extern] = ACTIONS(2061), - [anon_sym_module] = ACTIONS(2061), - [anon_sym_use] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(2061), - [anon_sym_COMMA] = ACTIONS(2061), - [anon_sym_DOLLAR] = ACTIONS(2061), - [anon_sym_error] = ACTIONS(2061), - [anon_sym_DASH2] = ACTIONS(2061), - [anon_sym_break] = ACTIONS(2061), - [anon_sym_continue] = ACTIONS(2061), - [anon_sym_for] = ACTIONS(2061), - [anon_sym_in2] = ACTIONS(2061), - [anon_sym_loop] = ACTIONS(2061), - [anon_sym_make] = ACTIONS(2061), - [anon_sym_while] = ACTIONS(2061), - [anon_sym_do] = ACTIONS(2061), - [anon_sym_if] = ACTIONS(2061), - [anon_sym_else] = ACTIONS(2061), - [anon_sym_match] = ACTIONS(2061), - [anon_sym_RBRACE] = ACTIONS(2061), - [anon_sym_try] = ACTIONS(2061), - [anon_sym_catch] = ACTIONS(2061), - [anon_sym_return] = ACTIONS(2061), - [anon_sym_source] = ACTIONS(2061), - [anon_sym_source_DASHenv] = ACTIONS(2061), - [anon_sym_register] = ACTIONS(2061), - [anon_sym_hide] = ACTIONS(2061), - [anon_sym_hide_DASHenv] = ACTIONS(2061), - [anon_sym_overlay] = ACTIONS(2061), - [anon_sym_as] = ACTIONS(2061), - [anon_sym_LPAREN2] = ACTIONS(1640), - [anon_sym_PLUS2] = ACTIONS(2061), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2061), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2061), - [aux_sym__val_number_decimal_token1] = ACTIONS(2061), - [aux_sym__val_number_decimal_token2] = ACTIONS(2061), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(2061), - [aux_sym__val_number_token2] = ACTIONS(2061), - [aux_sym__val_number_token3] = ACTIONS(2061), - [aux_sym__val_number_token4] = ACTIONS(2061), - [aux_sym__val_number_token5] = ACTIONS(2061), - [aux_sym__val_number_token6] = ACTIONS(2061), - [anon_sym_DQUOTE] = ACTIONS(2061), - [sym__str_single_quotes] = ACTIONS(2061), - [sym__str_back_ticks] = ACTIONS(2061), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2061), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2061), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2061), - [sym__entry_separator] = ACTIONS(2063), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2063), + [564] = { + [sym_comment] = STATE(564), + [anon_sym_export] = ACTIONS(1806), + [anon_sym_alias] = ACTIONS(1806), + [anon_sym_let] = ACTIONS(1806), + [anon_sym_let_DASHenv] = ACTIONS(1806), + [anon_sym_mut] = ACTIONS(1806), + [anon_sym_const] = ACTIONS(1806), + [aux_sym_cmd_identifier_token1] = ACTIONS(1806), + [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(1806), + [aux_sym_cmd_identifier_token9] = ACTIONS(1806), + [aux_sym_cmd_identifier_token10] = ACTIONS(1814), + [aux_sym_cmd_identifier_token11] = ACTIONS(1814), + [aux_sym_cmd_identifier_token12] = ACTIONS(1806), + [aux_sym_cmd_identifier_token13] = ACTIONS(1806), + [aux_sym_cmd_identifier_token14] = ACTIONS(1806), + [aux_sym_cmd_identifier_token15] = ACTIONS(1806), + [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(1814), + [aux_sym_cmd_identifier_token25] = ACTIONS(1814), + [aux_sym_cmd_identifier_token26] = ACTIONS(1814), + [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(1814), + [aux_sym_cmd_identifier_token32] = ACTIONS(1814), + [aux_sym_cmd_identifier_token33] = ACTIONS(1814), + [aux_sym_cmd_identifier_token34] = ACTIONS(1806), + [aux_sym_cmd_identifier_token35] = ACTIONS(1814), + [aux_sym_cmd_identifier_token36] = ACTIONS(1814), + [aux_sym_cmd_identifier_token37] = ACTIONS(1814), + [aux_sym_cmd_identifier_token38] = ACTIONS(1806), + [aux_sym_cmd_identifier_token39] = ACTIONS(1814), + [aux_sym_cmd_identifier_token40] = ACTIONS(1814), + [anon_sym_def] = ACTIONS(1806), + [anon_sym_export_DASHenv] = ACTIONS(1806), + [anon_sym_extern] = ACTIONS(1806), + [anon_sym_module] = ACTIONS(1806), + [anon_sym_use] = ACTIONS(1806), + [anon_sym_LPAREN] = ACTIONS(1806), + [anon_sym_COMMA] = ACTIONS(1814), + [anon_sym_DOLLAR] = ACTIONS(1806), + [anon_sym_error] = ACTIONS(1806), + [anon_sym_DASH2] = ACTIONS(1806), + [anon_sym_break] = ACTIONS(1806), + [anon_sym_continue] = ACTIONS(1806), + [anon_sym_for] = ACTIONS(1806), + [anon_sym_in2] = ACTIONS(1806), + [anon_sym_loop] = ACTIONS(1806), + [anon_sym_make] = ACTIONS(1806), + [anon_sym_while] = ACTIONS(1806), + [anon_sym_do] = ACTIONS(1806), + [anon_sym_if] = ACTIONS(1806), + [anon_sym_else] = ACTIONS(1806), + [anon_sym_match] = ACTIONS(1806), + [anon_sym_RBRACE] = ACTIONS(1814), + [anon_sym_try] = ACTIONS(1806), + [anon_sym_catch] = ACTIONS(1806), + [anon_sym_return] = ACTIONS(1806), + [anon_sym_source] = ACTIONS(1806), + [anon_sym_source_DASHenv] = ACTIONS(1806), + [anon_sym_hide] = ACTIONS(1806), + [anon_sym_hide_DASHenv] = ACTIONS(1806), + [anon_sym_overlay] = ACTIONS(1806), + [anon_sym_as] = ACTIONS(1806), + [anon_sym_LPAREN2] = ACTIONS(1808), + [anon_sym_PLUS2] = ACTIONS(1806), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1814), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1814), + [aux_sym__val_number_decimal_token1] = ACTIONS(1806), + [aux_sym__val_number_decimal_token2] = ACTIONS(1814), + [aux_sym__val_number_decimal_token3] = ACTIONS(1814), + [aux_sym__val_number_decimal_token4] = ACTIONS(1814), + [aux_sym__val_number_token1] = ACTIONS(1814), + [aux_sym__val_number_token2] = ACTIONS(1814), + [aux_sym__val_number_token3] = ACTIONS(1814), + [aux_sym__val_number_token4] = ACTIONS(1806), + [aux_sym__val_number_token5] = ACTIONS(1806), + [aux_sym__val_number_token6] = ACTIONS(1806), + [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1814), + [anon_sym_register] = ACTIONS(1806), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1457), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1814), }, - [547] = { - [sym__expr_parenthesized_immediate] = STATE(7307), - [sym_comment] = STATE(547), - [anon_sym_export] = ACTIONS(2007), - [anon_sym_alias] = ACTIONS(2007), - [anon_sym_let] = ACTIONS(2007), - [anon_sym_let_DASHenv] = ACTIONS(2007), - [anon_sym_mut] = ACTIONS(2007), - [anon_sym_const] = ACTIONS(2007), - [aux_sym_cmd_identifier_token1] = ACTIONS(2007), - [aux_sym_cmd_identifier_token2] = ACTIONS(2007), - [aux_sym_cmd_identifier_token3] = ACTIONS(2007), - [aux_sym_cmd_identifier_token4] = ACTIONS(2007), - [aux_sym_cmd_identifier_token5] = ACTIONS(2007), - [aux_sym_cmd_identifier_token6] = ACTIONS(2007), - [aux_sym_cmd_identifier_token7] = ACTIONS(2007), - [aux_sym_cmd_identifier_token8] = ACTIONS(2007), - [aux_sym_cmd_identifier_token9] = ACTIONS(2007), - [aux_sym_cmd_identifier_token10] = ACTIONS(2007), - [aux_sym_cmd_identifier_token11] = ACTIONS(2007), - [aux_sym_cmd_identifier_token12] = ACTIONS(2007), - [aux_sym_cmd_identifier_token13] = ACTIONS(2007), - [aux_sym_cmd_identifier_token14] = ACTIONS(2007), - [aux_sym_cmd_identifier_token15] = ACTIONS(2007), - [aux_sym_cmd_identifier_token16] = ACTIONS(2007), - [aux_sym_cmd_identifier_token17] = ACTIONS(2007), - [aux_sym_cmd_identifier_token18] = ACTIONS(2007), - [aux_sym_cmd_identifier_token19] = ACTIONS(2007), - [aux_sym_cmd_identifier_token20] = ACTIONS(2007), - [aux_sym_cmd_identifier_token21] = ACTIONS(2007), - [aux_sym_cmd_identifier_token22] = ACTIONS(2007), - [aux_sym_cmd_identifier_token23] = ACTIONS(2007), - [aux_sym_cmd_identifier_token24] = ACTIONS(2007), - [aux_sym_cmd_identifier_token25] = ACTIONS(2007), - [aux_sym_cmd_identifier_token26] = ACTIONS(2007), - [aux_sym_cmd_identifier_token27] = ACTIONS(2007), - [aux_sym_cmd_identifier_token28] = ACTIONS(2007), - [aux_sym_cmd_identifier_token29] = ACTIONS(2007), - [aux_sym_cmd_identifier_token30] = ACTIONS(2007), - [aux_sym_cmd_identifier_token31] = ACTIONS(2007), - [aux_sym_cmd_identifier_token32] = ACTIONS(2007), - [aux_sym_cmd_identifier_token33] = ACTIONS(2007), - [aux_sym_cmd_identifier_token34] = ACTIONS(2007), - [aux_sym_cmd_identifier_token35] = ACTIONS(2007), - [aux_sym_cmd_identifier_token36] = ACTIONS(2007), - [aux_sym_cmd_identifier_token37] = ACTIONS(2007), - [aux_sym_cmd_identifier_token38] = ACTIONS(2007), - [aux_sym_cmd_identifier_token39] = ACTIONS(2007), - [aux_sym_cmd_identifier_token40] = ACTIONS(2007), - [anon_sym_def] = ACTIONS(2007), - [anon_sym_export_DASHenv] = ACTIONS(2007), - [anon_sym_extern] = ACTIONS(2007), - [anon_sym_module] = ACTIONS(2007), - [anon_sym_use] = ACTIONS(2007), - [anon_sym_LPAREN] = ACTIONS(2007), - [anon_sym_COMMA] = ACTIONS(2007), - [anon_sym_DOLLAR] = ACTIONS(2007), - [anon_sym_error] = ACTIONS(2007), - [anon_sym_DASH2] = ACTIONS(2007), - [anon_sym_break] = ACTIONS(2007), - [anon_sym_continue] = ACTIONS(2007), - [anon_sym_for] = ACTIONS(2007), - [anon_sym_in2] = ACTIONS(2007), - [anon_sym_loop] = ACTIONS(2007), - [anon_sym_make] = ACTIONS(2007), - [anon_sym_while] = ACTIONS(2007), - [anon_sym_do] = ACTIONS(2007), - [anon_sym_if] = ACTIONS(2007), - [anon_sym_else] = ACTIONS(2007), - [anon_sym_match] = ACTIONS(2007), - [anon_sym_RBRACE] = ACTIONS(2007), - [anon_sym_try] = ACTIONS(2007), - [anon_sym_catch] = ACTIONS(2007), - [anon_sym_return] = ACTIONS(2007), - [anon_sym_source] = ACTIONS(2007), - [anon_sym_source_DASHenv] = ACTIONS(2007), - [anon_sym_register] = ACTIONS(2007), - [anon_sym_hide] = ACTIONS(2007), - [anon_sym_hide_DASHenv] = ACTIONS(2007), - [anon_sym_overlay] = ACTIONS(2007), - [anon_sym_as] = ACTIONS(2007), - [anon_sym_LPAREN2] = ACTIONS(1640), - [anon_sym_PLUS2] = ACTIONS(2007), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2007), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2007), - [aux_sym__val_number_decimal_token1] = ACTIONS(2007), - [aux_sym__val_number_decimal_token2] = ACTIONS(2007), - [aux_sym__val_number_decimal_token3] = ACTIONS(2007), - [aux_sym__val_number_decimal_token4] = ACTIONS(2007), - [aux_sym__val_number_token1] = ACTIONS(2007), - [aux_sym__val_number_token2] = ACTIONS(2007), - [aux_sym__val_number_token3] = ACTIONS(2007), - [aux_sym__val_number_token4] = ACTIONS(2007), - [aux_sym__val_number_token5] = ACTIONS(2007), - [aux_sym__val_number_token6] = ACTIONS(2007), - [anon_sym_DQUOTE] = ACTIONS(2007), - [sym__str_single_quotes] = ACTIONS(2007), - [sym__str_back_ticks] = ACTIONS(2007), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2007), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2007), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2007), - [sym__entry_separator] = ACTIONS(2013), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2013), + [565] = { + [sym_comment] = STATE(565), + [anon_sym_export] = ACTIONS(982), + [anon_sym_alias] = ACTIONS(982), + [anon_sym_let] = ACTIONS(982), + [anon_sym_let_DASHenv] = ACTIONS(982), + [anon_sym_mut] = ACTIONS(982), + [anon_sym_const] = ACTIONS(982), + [aux_sym_cmd_identifier_token1] = ACTIONS(982), + [aux_sym_cmd_identifier_token2] = ACTIONS(984), + [aux_sym_cmd_identifier_token3] = ACTIONS(984), + [aux_sym_cmd_identifier_token4] = ACTIONS(984), + [aux_sym_cmd_identifier_token5] = ACTIONS(984), + [aux_sym_cmd_identifier_token6] = ACTIONS(984), + [aux_sym_cmd_identifier_token7] = ACTIONS(984), + [aux_sym_cmd_identifier_token8] = ACTIONS(982), + [aux_sym_cmd_identifier_token9] = ACTIONS(982), + [aux_sym_cmd_identifier_token10] = ACTIONS(984), + [aux_sym_cmd_identifier_token11] = ACTIONS(984), + [aux_sym_cmd_identifier_token12] = ACTIONS(982), + [aux_sym_cmd_identifier_token13] = ACTIONS(982), + [aux_sym_cmd_identifier_token14] = ACTIONS(982), + [aux_sym_cmd_identifier_token15] = ACTIONS(982), + [aux_sym_cmd_identifier_token16] = ACTIONS(984), + [aux_sym_cmd_identifier_token17] = ACTIONS(984), + [aux_sym_cmd_identifier_token18] = ACTIONS(984), + [aux_sym_cmd_identifier_token19] = ACTIONS(984), + [aux_sym_cmd_identifier_token20] = ACTIONS(984), + [aux_sym_cmd_identifier_token21] = ACTIONS(984), + [aux_sym_cmd_identifier_token22] = ACTIONS(984), + [aux_sym_cmd_identifier_token23] = ACTIONS(984), + [aux_sym_cmd_identifier_token24] = ACTIONS(984), + [aux_sym_cmd_identifier_token25] = ACTIONS(984), + [aux_sym_cmd_identifier_token26] = ACTIONS(984), + [aux_sym_cmd_identifier_token27] = ACTIONS(984), + [aux_sym_cmd_identifier_token28] = ACTIONS(984), + [aux_sym_cmd_identifier_token29] = ACTIONS(984), + [aux_sym_cmd_identifier_token30] = ACTIONS(984), + [aux_sym_cmd_identifier_token31] = ACTIONS(984), + [aux_sym_cmd_identifier_token32] = ACTIONS(984), + [aux_sym_cmd_identifier_token33] = ACTIONS(984), + [aux_sym_cmd_identifier_token34] = ACTIONS(982), + [aux_sym_cmd_identifier_token35] = ACTIONS(984), + [aux_sym_cmd_identifier_token36] = ACTIONS(984), + [aux_sym_cmd_identifier_token37] = ACTIONS(984), + [aux_sym_cmd_identifier_token38] = ACTIONS(982), + [aux_sym_cmd_identifier_token39] = ACTIONS(984), + [aux_sym_cmd_identifier_token40] = ACTIONS(984), + [anon_sym_def] = ACTIONS(982), + [anon_sym_export_DASHenv] = ACTIONS(982), + [anon_sym_extern] = ACTIONS(982), + [anon_sym_module] = ACTIONS(982), + [anon_sym_use] = ACTIONS(982), + [anon_sym_LPAREN] = ACTIONS(984), + [anon_sym_COMMA] = ACTIONS(984), + [anon_sym_DOLLAR] = ACTIONS(982), + [anon_sym_error] = ACTIONS(982), + [anon_sym_DASH2] = ACTIONS(982), + [anon_sym_break] = ACTIONS(982), + [anon_sym_continue] = ACTIONS(982), + [anon_sym_for] = ACTIONS(982), + [anon_sym_in2] = ACTIONS(982), + [anon_sym_loop] = ACTIONS(982), + [anon_sym_make] = ACTIONS(982), + [anon_sym_while] = ACTIONS(982), + [anon_sym_do] = ACTIONS(982), + [anon_sym_if] = ACTIONS(982), + [anon_sym_else] = ACTIONS(982), + [anon_sym_match] = ACTIONS(982), + [anon_sym_RBRACE] = ACTIONS(984), + [anon_sym_try] = ACTIONS(982), + [anon_sym_catch] = ACTIONS(982), + [anon_sym_return] = ACTIONS(982), + [anon_sym_source] = ACTIONS(982), + [anon_sym_source_DASHenv] = ACTIONS(982), + [anon_sym_hide] = ACTIONS(982), + [anon_sym_hide_DASHenv] = ACTIONS(982), + [anon_sym_overlay] = ACTIONS(982), + [anon_sym_as] = ACTIONS(982), + [anon_sym_PLUS2] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(984), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(984), + [aux_sym__val_number_decimal_token1] = ACTIONS(982), + [aux_sym__val_number_decimal_token2] = ACTIONS(984), + [aux_sym__val_number_decimal_token3] = ACTIONS(984), + [aux_sym__val_number_decimal_token4] = ACTIONS(984), + [aux_sym__val_number_token1] = ACTIONS(984), + [aux_sym__val_number_token2] = ACTIONS(984), + [aux_sym__val_number_token3] = ACTIONS(984), + [aux_sym__val_number_token4] = ACTIONS(982), + [aux_sym__val_number_token5] = ACTIONS(982), + [aux_sym__val_number_token6] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(984), + [sym__str_single_quotes] = ACTIONS(984), + [sym__str_back_ticks] = ACTIONS(984), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(984), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(984), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(984), + [anon_sym_register] = ACTIONS(982), + [anon_sym_COLON2] = ACTIONS(984), + [anon_sym_DOT2] = ACTIONS(982), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(984), }, - [548] = { - [sym_comment] = STATE(548), - [anon_sym_export] = ACTIONS(1783), - [anon_sym_alias] = ACTIONS(1783), - [anon_sym_let] = ACTIONS(1783), - [anon_sym_let_DASHenv] = ACTIONS(1783), - [anon_sym_mut] = ACTIONS(1783), - [anon_sym_const] = ACTIONS(1783), - [aux_sym_cmd_identifier_token1] = ACTIONS(1783), - [aux_sym_cmd_identifier_token2] = ACTIONS(1783), - [aux_sym_cmd_identifier_token3] = ACTIONS(1783), - [aux_sym_cmd_identifier_token4] = ACTIONS(1783), - [aux_sym_cmd_identifier_token5] = ACTIONS(1783), - [aux_sym_cmd_identifier_token6] = ACTIONS(1783), - [aux_sym_cmd_identifier_token7] = ACTIONS(1783), - [aux_sym_cmd_identifier_token8] = ACTIONS(1783), - [aux_sym_cmd_identifier_token9] = ACTIONS(1783), - [aux_sym_cmd_identifier_token10] = ACTIONS(1783), - [aux_sym_cmd_identifier_token11] = ACTIONS(1783), - [aux_sym_cmd_identifier_token12] = ACTIONS(1783), - [aux_sym_cmd_identifier_token13] = ACTIONS(1783), - [aux_sym_cmd_identifier_token14] = ACTIONS(1783), - [aux_sym_cmd_identifier_token15] = ACTIONS(1783), - [aux_sym_cmd_identifier_token16] = ACTIONS(1783), - [aux_sym_cmd_identifier_token17] = ACTIONS(1783), - [aux_sym_cmd_identifier_token18] = ACTIONS(1783), - [aux_sym_cmd_identifier_token19] = ACTIONS(1783), - [aux_sym_cmd_identifier_token20] = ACTIONS(1783), - [aux_sym_cmd_identifier_token21] = ACTIONS(1783), - [aux_sym_cmd_identifier_token22] = ACTIONS(1783), - [aux_sym_cmd_identifier_token23] = ACTIONS(1783), - [aux_sym_cmd_identifier_token24] = ACTIONS(1783), - [aux_sym_cmd_identifier_token25] = ACTIONS(1783), - [aux_sym_cmd_identifier_token26] = ACTIONS(1783), - [aux_sym_cmd_identifier_token27] = ACTIONS(1783), - [aux_sym_cmd_identifier_token28] = ACTIONS(1783), - [aux_sym_cmd_identifier_token29] = ACTIONS(1783), - [aux_sym_cmd_identifier_token30] = ACTIONS(1783), - [aux_sym_cmd_identifier_token31] = ACTIONS(1783), - [aux_sym_cmd_identifier_token32] = ACTIONS(1783), - [aux_sym_cmd_identifier_token33] = ACTIONS(1783), - [aux_sym_cmd_identifier_token34] = ACTIONS(1783), - [aux_sym_cmd_identifier_token35] = ACTIONS(1783), - [aux_sym_cmd_identifier_token36] = ACTIONS(1783), - [aux_sym_cmd_identifier_token37] = ACTIONS(1783), - [aux_sym_cmd_identifier_token38] = ACTIONS(1783), - [aux_sym_cmd_identifier_token39] = ACTIONS(1783), - [aux_sym_cmd_identifier_token40] = ACTIONS(1783), - [anon_sym_def] = ACTIONS(1783), - [anon_sym_export_DASHenv] = ACTIONS(1783), - [anon_sym_extern] = ACTIONS(1783), - [anon_sym_module] = ACTIONS(1783), - [anon_sym_use] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_COMMA] = ACTIONS(1783), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_error] = ACTIONS(1783), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_break] = ACTIONS(1783), - [anon_sym_continue] = ACTIONS(1783), - [anon_sym_for] = ACTIONS(1783), - [anon_sym_in2] = ACTIONS(1783), - [anon_sym_loop] = ACTIONS(1783), - [anon_sym_make] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1783), - [anon_sym_do] = ACTIONS(1783), - [anon_sym_if] = ACTIONS(1783), - [anon_sym_else] = ACTIONS(1783), - [anon_sym_match] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(1783), - [anon_sym_try] = ACTIONS(1783), - [anon_sym_catch] = ACTIONS(1783), - [anon_sym_return] = ACTIONS(1783), - [anon_sym_source] = ACTIONS(1783), - [anon_sym_source_DASHenv] = ACTIONS(1783), - [anon_sym_register] = ACTIONS(1783), - [anon_sym_hide] = ACTIONS(1783), - [anon_sym_hide_DASHenv] = ACTIONS(1783), - [anon_sym_overlay] = ACTIONS(1783), - [anon_sym_as] = ACTIONS(1783), - [anon_sym_LPAREN2] = ACTIONS(1785), - [anon_sym_PLUS2] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1783), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1783), - [aux_sym__val_number_decimal_token3] = ACTIONS(1783), - [aux_sym__val_number_decimal_token4] = ACTIONS(1783), - [aux_sym__val_number_token1] = ACTIONS(1783), - [aux_sym__val_number_token2] = ACTIONS(1783), - [aux_sym__val_number_token3] = ACTIONS(1783), - [aux_sym__val_number_token4] = ACTIONS(1783), - [aux_sym__val_number_token5] = ACTIONS(1783), - [aux_sym__val_number_token6] = ACTIONS(1783), - [anon_sym_DQUOTE] = ACTIONS(1783), - [sym__str_single_quotes] = ACTIONS(1783), - [sym__str_back_ticks] = ACTIONS(1783), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1783), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1783), - [sym__entry_separator] = ACTIONS(1785), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1783), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1785), + [566] = { + [sym_comment] = STATE(566), + [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(1703), + [aux_sym_cmd_identifier_token3] = ACTIONS(1703), + [aux_sym_cmd_identifier_token4] = ACTIONS(1703), + [aux_sym_cmd_identifier_token5] = ACTIONS(1703), + [aux_sym_cmd_identifier_token6] = ACTIONS(1703), + [aux_sym_cmd_identifier_token7] = ACTIONS(1703), + [aux_sym_cmd_identifier_token8] = ACTIONS(1701), + [aux_sym_cmd_identifier_token9] = ACTIONS(1701), + [aux_sym_cmd_identifier_token10] = ACTIONS(1703), + [aux_sym_cmd_identifier_token11] = ACTIONS(1703), + [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(1703), + [aux_sym_cmd_identifier_token17] = ACTIONS(1703), + [aux_sym_cmd_identifier_token18] = ACTIONS(1703), + [aux_sym_cmd_identifier_token19] = ACTIONS(1703), + [aux_sym_cmd_identifier_token20] = ACTIONS(1703), + [aux_sym_cmd_identifier_token21] = ACTIONS(1703), + [aux_sym_cmd_identifier_token22] = ACTIONS(1703), + [aux_sym_cmd_identifier_token23] = ACTIONS(1703), + [aux_sym_cmd_identifier_token24] = ACTIONS(1703), + [aux_sym_cmd_identifier_token25] = ACTIONS(1703), + [aux_sym_cmd_identifier_token26] = ACTIONS(1703), + [aux_sym_cmd_identifier_token27] = ACTIONS(1703), + [aux_sym_cmd_identifier_token28] = ACTIONS(1703), + [aux_sym_cmd_identifier_token29] = ACTIONS(1703), + [aux_sym_cmd_identifier_token30] = ACTIONS(1703), + [aux_sym_cmd_identifier_token31] = ACTIONS(1703), + [aux_sym_cmd_identifier_token32] = ACTIONS(1703), + [aux_sym_cmd_identifier_token33] = ACTIONS(1703), + [aux_sym_cmd_identifier_token34] = ACTIONS(1701), + [aux_sym_cmd_identifier_token35] = ACTIONS(1703), + [aux_sym_cmd_identifier_token36] = ACTIONS(1703), + [aux_sym_cmd_identifier_token37] = ACTIONS(1703), + [aux_sym_cmd_identifier_token38] = ACTIONS(1701), + [aux_sym_cmd_identifier_token39] = ACTIONS(1703), + [aux_sym_cmd_identifier_token40] = ACTIONS(1703), + [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_COMMA] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_error] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_in2] = 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(1703), + [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_hide] = ACTIONS(1701), + [anon_sym_hide_DASHenv] = ACTIONS(1701), + [anon_sym_overlay] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1701), + [aux_sym__val_number_token5] = ACTIONS(1701), + [aux_sym__val_number_token6] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1701), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1703), }, - [549] = { - [sym_comment] = STATE(549), - [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), - [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1835), - [anon_sym_DOLLAR] = ACTIONS(1835), - [anon_sym_error] = ACTIONS(1835), - [anon_sym_DASH2] = ACTIONS(1835), - [anon_sym_break] = ACTIONS(1835), - [anon_sym_continue] = ACTIONS(1835), - [anon_sym_for] = ACTIONS(1835), - [anon_sym_in2] = 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_as] = ACTIONS(1835), - [anon_sym_LPAREN2] = ACTIONS(1837), - [anon_sym_PLUS2] = 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), - [aux_sym__val_number_token4] = ACTIONS(1835), - [aux_sym__val_number_token5] = ACTIONS(1835), - [aux_sym__val_number_token6] = ACTIONS(1835), - [anon_sym_DQUOTE] = ACTIONS(1835), - [sym__str_single_quotes] = ACTIONS(1835), - [sym__str_back_ticks] = ACTIONS(1835), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1835), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1835), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1835), - [sym__entry_separator] = ACTIONS(1837), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1835), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1837), + [567] = { + [sym_comment] = STATE(567), + [anon_sym_export] = ACTIONS(2164), + [anon_sym_alias] = ACTIONS(2164), + [anon_sym_let] = ACTIONS(2164), + [anon_sym_let_DASHenv] = ACTIONS(2164), + [anon_sym_mut] = ACTIONS(2164), + [anon_sym_const] = ACTIONS(2164), + [aux_sym_cmd_identifier_token1] = ACTIONS(2164), + [aux_sym_cmd_identifier_token2] = ACTIONS(2166), + [aux_sym_cmd_identifier_token3] = ACTIONS(2166), + [aux_sym_cmd_identifier_token4] = ACTIONS(2166), + [aux_sym_cmd_identifier_token5] = ACTIONS(2166), + [aux_sym_cmd_identifier_token6] = ACTIONS(2166), + [aux_sym_cmd_identifier_token7] = ACTIONS(2166), + [aux_sym_cmd_identifier_token8] = ACTIONS(2164), + [aux_sym_cmd_identifier_token9] = ACTIONS(2164), + [aux_sym_cmd_identifier_token10] = ACTIONS(2166), + [aux_sym_cmd_identifier_token11] = ACTIONS(2166), + [aux_sym_cmd_identifier_token12] = ACTIONS(2164), + [aux_sym_cmd_identifier_token13] = ACTIONS(2164), + [aux_sym_cmd_identifier_token14] = ACTIONS(2164), + [aux_sym_cmd_identifier_token15] = ACTIONS(2164), + [aux_sym_cmd_identifier_token16] = ACTIONS(2166), + [aux_sym_cmd_identifier_token17] = ACTIONS(2166), + [aux_sym_cmd_identifier_token18] = ACTIONS(2166), + [aux_sym_cmd_identifier_token19] = ACTIONS(2166), + [aux_sym_cmd_identifier_token20] = ACTIONS(2166), + [aux_sym_cmd_identifier_token21] = ACTIONS(2166), + [aux_sym_cmd_identifier_token22] = ACTIONS(2166), + [aux_sym_cmd_identifier_token23] = ACTIONS(2166), + [aux_sym_cmd_identifier_token24] = ACTIONS(2166), + [aux_sym_cmd_identifier_token25] = ACTIONS(2166), + [aux_sym_cmd_identifier_token26] = ACTIONS(2166), + [aux_sym_cmd_identifier_token27] = ACTIONS(2166), + [aux_sym_cmd_identifier_token28] = ACTIONS(2166), + [aux_sym_cmd_identifier_token29] = ACTIONS(2166), + [aux_sym_cmd_identifier_token30] = ACTIONS(2166), + [aux_sym_cmd_identifier_token31] = ACTIONS(2166), + [aux_sym_cmd_identifier_token32] = ACTIONS(2166), + [aux_sym_cmd_identifier_token33] = ACTIONS(2166), + [aux_sym_cmd_identifier_token34] = ACTIONS(2164), + [aux_sym_cmd_identifier_token35] = ACTIONS(2166), + [aux_sym_cmd_identifier_token36] = ACTIONS(2166), + [aux_sym_cmd_identifier_token37] = ACTIONS(2166), + [aux_sym_cmd_identifier_token38] = ACTIONS(2164), + [aux_sym_cmd_identifier_token39] = ACTIONS(2166), + [aux_sym_cmd_identifier_token40] = ACTIONS(2166), + [anon_sym_def] = ACTIONS(2164), + [anon_sym_export_DASHenv] = ACTIONS(2164), + [anon_sym_extern] = ACTIONS(2164), + [anon_sym_module] = ACTIONS(2164), + [anon_sym_use] = ACTIONS(2164), + [anon_sym_LPAREN] = ACTIONS(2164), + [anon_sym_COMMA] = ACTIONS(2166), + [anon_sym_DOLLAR] = ACTIONS(2164), + [anon_sym_error] = ACTIONS(2164), + [anon_sym_DASH2] = ACTIONS(2164), + [anon_sym_break] = ACTIONS(2164), + [anon_sym_continue] = ACTIONS(2164), + [anon_sym_for] = ACTIONS(2164), + [anon_sym_in2] = ACTIONS(2164), + [anon_sym_loop] = ACTIONS(2164), + [anon_sym_make] = ACTIONS(2164), + [anon_sym_while] = ACTIONS(2164), + [anon_sym_do] = ACTIONS(2164), + [anon_sym_if] = ACTIONS(2164), + [anon_sym_else] = ACTIONS(2164), + [anon_sym_match] = ACTIONS(2164), + [anon_sym_RBRACE] = ACTIONS(2166), + [anon_sym_try] = ACTIONS(2164), + [anon_sym_catch] = ACTIONS(2164), + [anon_sym_return] = ACTIONS(2164), + [anon_sym_source] = ACTIONS(2164), + [anon_sym_source_DASHenv] = ACTIONS(2164), + [anon_sym_hide] = ACTIONS(2164), + [anon_sym_hide_DASHenv] = ACTIONS(2164), + [anon_sym_overlay] = ACTIONS(2164), + [anon_sym_as] = ACTIONS(2164), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_PLUS2] = ACTIONS(2164), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2166), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2166), + [aux_sym__val_number_decimal_token1] = ACTIONS(2164), + [aux_sym__val_number_decimal_token2] = ACTIONS(2166), + [aux_sym__val_number_decimal_token3] = ACTIONS(2166), + [aux_sym__val_number_decimal_token4] = ACTIONS(2166), + [aux_sym__val_number_token1] = ACTIONS(2166), + [aux_sym__val_number_token2] = ACTIONS(2166), + [aux_sym__val_number_token3] = ACTIONS(2166), + [aux_sym__val_number_token4] = ACTIONS(2164), + [aux_sym__val_number_token5] = ACTIONS(2164), + [aux_sym__val_number_token6] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2166), + [sym__str_single_quotes] = ACTIONS(2166), + [sym__str_back_ticks] = ACTIONS(2166), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2166), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2166), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2166), + [anon_sym_register] = ACTIONS(2164), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1826), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2166), }, - [550] = { - [sym_comment] = STATE(550), - [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), - [aux_sym_cmd_identifier_token37] = 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_LPAREN] = ACTIONS(2230), - [anon_sym_COMMA] = ACTIONS(2230), - [anon_sym_DOLLAR] = ACTIONS(2230), - [anon_sym_error] = ACTIONS(2230), - [anon_sym_DASH2] = ACTIONS(2230), - [anon_sym_break] = ACTIONS(2230), - [anon_sym_continue] = ACTIONS(2230), - [anon_sym_for] = ACTIONS(2230), - [anon_sym_in2] = 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_as] = ACTIONS(2230), - [anon_sym_PLUS2] = 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), - [aux_sym__val_number_decimal_token3] = ACTIONS(2230), - [aux_sym__val_number_decimal_token4] = ACTIONS(2230), - [aux_sym__val_number_token1] = ACTIONS(2230), - [aux_sym__val_number_token2] = ACTIONS(2230), - [aux_sym__val_number_token3] = ACTIONS(2230), - [aux_sym__val_number_token4] = ACTIONS(2230), - [aux_sym__val_number_token5] = ACTIONS(2230), - [aux_sym__val_number_token6] = ACTIONS(2230), - [anon_sym_LBRACK2] = ACTIONS(2232), - [anon_sym_DQUOTE] = ACTIONS(2230), - [sym__str_single_quotes] = ACTIONS(2230), - [sym__str_back_ticks] = ACTIONS(2230), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2230), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2230), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2230), - [sym__entry_separator] = ACTIONS(2234), + [568] = { + [sym_comment] = STATE(568), + [aux_sym__multiple_types_repeat1] = STATE(606), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(2226), + [anon_sym_DOLLAR] = ACTIONS(990), + [anon_sym_error] = ACTIONS(990), + [anon_sym_DASH2] = ACTIONS(990), + [anon_sym_break] = ACTIONS(990), + [anon_sym_continue] = ACTIONS(990), + [anon_sym_for] = ACTIONS(990), + [anon_sym_in2] = 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(2228), + [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_hide] = ACTIONS(990), + [anon_sym_hide_DASHenv] = ACTIONS(990), + [anon_sym_overlay] = ACTIONS(990), + [anon_sym_as] = ACTIONS(990), + [anon_sym_PLUS2] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_LPAREN] = 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), + [aux_sym__val_number_token4] = ACTIONS(990), + [aux_sym__val_number_token5] = ACTIONS(990), + [aux_sym__val_number_token6] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(990), + [sym__str_single_quotes] = ACTIONS(990), + [sym__str_back_ticks] = ACTIONS(990), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(990), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(990), + [sym__entry_separator] = ACTIONS(2230), + [anon_sym_register] = ACTIONS(990), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2234), - }, - [551] = { - [sym_comment] = STATE(551), - [anon_sym_export] = ACTIONS(1783), - [anon_sym_alias] = ACTIONS(1783), - [anon_sym_let] = ACTIONS(1783), - [anon_sym_let_DASHenv] = ACTIONS(1783), - [anon_sym_mut] = ACTIONS(1783), - [anon_sym_const] = ACTIONS(1783), - [aux_sym_cmd_identifier_token1] = ACTIONS(1783), - [aux_sym_cmd_identifier_token2] = ACTIONS(1785), - [aux_sym_cmd_identifier_token3] = ACTIONS(1785), - [aux_sym_cmd_identifier_token4] = ACTIONS(1785), - [aux_sym_cmd_identifier_token5] = ACTIONS(1785), - [aux_sym_cmd_identifier_token6] = ACTIONS(1785), - [aux_sym_cmd_identifier_token7] = ACTIONS(1785), - [aux_sym_cmd_identifier_token8] = ACTIONS(1783), - [aux_sym_cmd_identifier_token9] = ACTIONS(1783), - [aux_sym_cmd_identifier_token10] = ACTIONS(1785), - [aux_sym_cmd_identifier_token11] = ACTIONS(1785), - [aux_sym_cmd_identifier_token12] = ACTIONS(1783), - [aux_sym_cmd_identifier_token13] = ACTIONS(1783), - [aux_sym_cmd_identifier_token14] = ACTIONS(1783), - [aux_sym_cmd_identifier_token15] = ACTIONS(1783), - [aux_sym_cmd_identifier_token16] = ACTIONS(1785), - [aux_sym_cmd_identifier_token17] = ACTIONS(1785), - [aux_sym_cmd_identifier_token18] = ACTIONS(1785), - [aux_sym_cmd_identifier_token19] = ACTIONS(1785), - [aux_sym_cmd_identifier_token20] = ACTIONS(1785), - [aux_sym_cmd_identifier_token21] = ACTIONS(1785), - [aux_sym_cmd_identifier_token22] = ACTIONS(1785), - [aux_sym_cmd_identifier_token23] = ACTIONS(1785), - [aux_sym_cmd_identifier_token24] = ACTIONS(1785), - [aux_sym_cmd_identifier_token25] = ACTIONS(1785), - [aux_sym_cmd_identifier_token26] = ACTIONS(1785), - [aux_sym_cmd_identifier_token27] = ACTIONS(1785), - [aux_sym_cmd_identifier_token28] = ACTIONS(1785), - [aux_sym_cmd_identifier_token29] = ACTIONS(1785), - [aux_sym_cmd_identifier_token30] = ACTIONS(1785), - [aux_sym_cmd_identifier_token31] = ACTIONS(1785), - [aux_sym_cmd_identifier_token32] = ACTIONS(1785), - [aux_sym_cmd_identifier_token33] = ACTIONS(1785), - [aux_sym_cmd_identifier_token34] = ACTIONS(1783), - [aux_sym_cmd_identifier_token35] = ACTIONS(1785), - [aux_sym_cmd_identifier_token36] = ACTIONS(1785), - [aux_sym_cmd_identifier_token37] = ACTIONS(1785), - [aux_sym_cmd_identifier_token38] = ACTIONS(1783), - [aux_sym_cmd_identifier_token39] = ACTIONS(1785), - [aux_sym_cmd_identifier_token40] = ACTIONS(1785), - [anon_sym_def] = ACTIONS(1783), - [anon_sym_export_DASHenv] = ACTIONS(1783), - [anon_sym_extern] = ACTIONS(1783), - [anon_sym_module] = ACTIONS(1783), - [anon_sym_use] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_COMMA] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_error] = ACTIONS(1783), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_break] = ACTIONS(1783), - [anon_sym_continue] = ACTIONS(1783), - [anon_sym_for] = ACTIONS(1783), - [anon_sym_in2] = ACTIONS(1783), - [anon_sym_loop] = ACTIONS(1783), - [anon_sym_make] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1783), - [anon_sym_do] = ACTIONS(1783), - [anon_sym_if] = ACTIONS(1783), - [anon_sym_else] = ACTIONS(1783), - [anon_sym_match] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_try] = ACTIONS(1783), - [anon_sym_catch] = ACTIONS(1783), - [anon_sym_return] = ACTIONS(1783), - [anon_sym_source] = ACTIONS(1783), - [anon_sym_source_DASHenv] = ACTIONS(1783), - [anon_sym_register] = ACTIONS(1783), - [anon_sym_hide] = ACTIONS(1783), - [anon_sym_hide_DASHenv] = ACTIONS(1783), - [anon_sym_overlay] = ACTIONS(1783), - [anon_sym_as] = ACTIONS(1783), - [anon_sym_LPAREN2] = ACTIONS(1785), - [anon_sym_PLUS2] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(1785), - [aux_sym__val_number_token2] = ACTIONS(1785), - [aux_sym__val_number_token3] = ACTIONS(1785), - [aux_sym__val_number_token4] = ACTIONS(1783), - [aux_sym__val_number_token5] = ACTIONS(1783), - [aux_sym__val_number_token6] = ACTIONS(1783), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1785), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1785), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1783), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1785), - }, - [552] = { - [sym_comment] = STATE(552), - [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(1837), - [aux_sym_cmd_identifier_token3] = ACTIONS(1837), - [aux_sym_cmd_identifier_token4] = ACTIONS(1837), - [aux_sym_cmd_identifier_token5] = ACTIONS(1837), - [aux_sym_cmd_identifier_token6] = ACTIONS(1837), - [aux_sym_cmd_identifier_token7] = ACTIONS(1837), - [aux_sym_cmd_identifier_token8] = ACTIONS(1835), - [aux_sym_cmd_identifier_token9] = ACTIONS(1835), - [aux_sym_cmd_identifier_token10] = ACTIONS(1837), - [aux_sym_cmd_identifier_token11] = ACTIONS(1837), - [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(1837), - [aux_sym_cmd_identifier_token17] = ACTIONS(1837), - [aux_sym_cmd_identifier_token18] = ACTIONS(1837), - [aux_sym_cmd_identifier_token19] = ACTIONS(1837), - [aux_sym_cmd_identifier_token20] = ACTIONS(1837), - [aux_sym_cmd_identifier_token21] = ACTIONS(1837), - [aux_sym_cmd_identifier_token22] = ACTIONS(1837), - [aux_sym_cmd_identifier_token23] = ACTIONS(1837), - [aux_sym_cmd_identifier_token24] = ACTIONS(1837), - [aux_sym_cmd_identifier_token25] = ACTIONS(1837), - [aux_sym_cmd_identifier_token26] = ACTIONS(1837), - [aux_sym_cmd_identifier_token27] = ACTIONS(1837), - [aux_sym_cmd_identifier_token28] = ACTIONS(1837), - [aux_sym_cmd_identifier_token29] = ACTIONS(1837), - [aux_sym_cmd_identifier_token30] = ACTIONS(1837), - [aux_sym_cmd_identifier_token31] = ACTIONS(1837), - [aux_sym_cmd_identifier_token32] = ACTIONS(1837), - [aux_sym_cmd_identifier_token33] = ACTIONS(1837), - [aux_sym_cmd_identifier_token34] = ACTIONS(1835), - [aux_sym_cmd_identifier_token35] = ACTIONS(1837), - [aux_sym_cmd_identifier_token36] = ACTIONS(1837), - [aux_sym_cmd_identifier_token37] = 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(1835), - [anon_sym_COMMA] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1835), - [anon_sym_error] = ACTIONS(1835), - [anon_sym_DASH2] = ACTIONS(1835), - [anon_sym_break] = ACTIONS(1835), - [anon_sym_continue] = ACTIONS(1835), - [anon_sym_for] = ACTIONS(1835), - [anon_sym_in2] = 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_as] = ACTIONS(1835), - [anon_sym_LPAREN2] = ACTIONS(1837), - [anon_sym_PLUS2] = 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), - [aux_sym__val_number_token4] = ACTIONS(1835), - [aux_sym__val_number_token5] = ACTIONS(1835), - [aux_sym__val_number_token6] = ACTIONS(1835), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1837), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1835), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1837), - }, - [553] = { - [sym_comment] = STATE(553), - [anon_sym_export] = ACTIONS(1802), - [anon_sym_alias] = ACTIONS(1802), - [anon_sym_let] = ACTIONS(1802), - [anon_sym_let_DASHenv] = ACTIONS(1802), - [anon_sym_mut] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [aux_sym_cmd_identifier_token1] = ACTIONS(1802), - [aux_sym_cmd_identifier_token2] = ACTIONS(1810), - [aux_sym_cmd_identifier_token3] = ACTIONS(1810), - [aux_sym_cmd_identifier_token4] = ACTIONS(1810), - [aux_sym_cmd_identifier_token5] = ACTIONS(1810), - [aux_sym_cmd_identifier_token6] = ACTIONS(1810), - [aux_sym_cmd_identifier_token7] = ACTIONS(1810), - [aux_sym_cmd_identifier_token8] = ACTIONS(1802), - [aux_sym_cmd_identifier_token9] = ACTIONS(1802), - [aux_sym_cmd_identifier_token10] = ACTIONS(1810), - [aux_sym_cmd_identifier_token11] = ACTIONS(1810), - [aux_sym_cmd_identifier_token12] = ACTIONS(1802), - [aux_sym_cmd_identifier_token13] = ACTIONS(1802), - [aux_sym_cmd_identifier_token14] = ACTIONS(1802), - [aux_sym_cmd_identifier_token15] = ACTIONS(1802), - [aux_sym_cmd_identifier_token16] = ACTIONS(1810), - [aux_sym_cmd_identifier_token17] = ACTIONS(1810), - [aux_sym_cmd_identifier_token18] = ACTIONS(1810), - [aux_sym_cmd_identifier_token19] = ACTIONS(1810), - [aux_sym_cmd_identifier_token20] = ACTIONS(1810), - [aux_sym_cmd_identifier_token21] = ACTIONS(1810), - [aux_sym_cmd_identifier_token22] = ACTIONS(1810), - [aux_sym_cmd_identifier_token23] = ACTIONS(1810), - [aux_sym_cmd_identifier_token24] = ACTIONS(1810), - [aux_sym_cmd_identifier_token25] = ACTIONS(1810), - [aux_sym_cmd_identifier_token26] = ACTIONS(1810), - [aux_sym_cmd_identifier_token27] = ACTIONS(1810), - [aux_sym_cmd_identifier_token28] = ACTIONS(1810), - [aux_sym_cmd_identifier_token29] = ACTIONS(1810), - [aux_sym_cmd_identifier_token30] = ACTIONS(1810), - [aux_sym_cmd_identifier_token31] = ACTIONS(1810), - [aux_sym_cmd_identifier_token32] = ACTIONS(1810), - [aux_sym_cmd_identifier_token33] = ACTIONS(1810), - [aux_sym_cmd_identifier_token34] = ACTIONS(1802), - [aux_sym_cmd_identifier_token35] = ACTIONS(1810), - [aux_sym_cmd_identifier_token36] = ACTIONS(1810), - [aux_sym_cmd_identifier_token37] = ACTIONS(1810), - [aux_sym_cmd_identifier_token38] = ACTIONS(1802), - [aux_sym_cmd_identifier_token39] = ACTIONS(1810), - [aux_sym_cmd_identifier_token40] = ACTIONS(1810), - [anon_sym_def] = ACTIONS(1802), - [anon_sym_export_DASHenv] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym_module] = ACTIONS(1802), - [anon_sym_use] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_DOLLAR] = ACTIONS(1802), - [anon_sym_error] = ACTIONS(1802), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_in2] = ACTIONS(1802), - [anon_sym_loop] = ACTIONS(1802), - [anon_sym_make] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_else] = ACTIONS(1802), - [anon_sym_match] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_try] = ACTIONS(1802), - [anon_sym_catch] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_source] = ACTIONS(1802), - [anon_sym_source_DASHenv] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_hide] = ACTIONS(1802), - [anon_sym_hide_DASHenv] = ACTIONS(1802), - [anon_sym_overlay] = ACTIONS(1802), - [anon_sym_as] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_PLUS2] = ACTIONS(1802), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1810), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1810), - [aux_sym__val_number_decimal_token1] = ACTIONS(1802), - [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), - [aux_sym__val_number_token4] = ACTIONS(1802), - [aux_sym__val_number_token5] = ACTIONS(1802), - [aux_sym__val_number_token6] = ACTIONS(1802), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1810), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1477), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1810), + [sym_raw_string_begin] = ACTIONS(996), }, - [554] = { - [sym_expr_parenthesized] = STATE(4301), - [sym__spread_parenthesized] = STATE(4813), - [sym_val_range] = STATE(4817), - [sym__val_range] = STATE(7832), - [sym__val_range_with_end] = STATE(7330), - [sym__value] = STATE(4817), - [sym_val_nothing] = STATE(4789), - [sym_val_bool] = STATE(4479), - [sym__spread_variable] = STATE(4818), - [sym_val_variable] = STATE(4339), - [sym_val_number] = STATE(4789), - [sym__val_number_decimal] = STATE(3967), - [sym__val_number] = STATE(4790), - [sym_val_duration] = STATE(4789), - [sym_val_filesize] = STATE(4789), - [sym_val_binary] = STATE(4789), - [sym_val_string] = STATE(4789), + [569] = { + [sym_expr_parenthesized] = STATE(4281), + [sym__spread_parenthesized] = STATE(4901), + [sym_val_range] = STATE(4937), + [sym__val_range] = STATE(7818), + [sym__val_range_with_end] = STATE(7318), + [sym__value] = STATE(4937), + [sym_val_nothing] = STATE(4824), + [sym_val_bool] = STATE(4513), + [sym__spread_variable] = STATE(4953), + [sym_val_variable] = STATE(4250), + [sym_val_number] = STATE(4824), + [sym__val_number_decimal] = STATE(4002), + [sym__val_number] = STATE(4829), + [sym_val_duration] = STATE(4824), + [sym_val_filesize] = STATE(4824), + [sym_val_binary] = STATE(4824), + [sym_val_string] = STATE(4824), [sym__raw_str] = STATE(4153), [sym__str_double_quotes] = STATE(4153), - [sym_val_interpolated] = STATE(4789), - [sym__inter_single_quotes] = STATE(4791), - [sym__inter_double_quotes] = STATE(4792), - [sym_val_list] = STATE(4789), - [sym__spread_list] = STATE(4813), - [sym_val_record] = STATE(4789), - [sym_val_table] = STATE(4789), - [sym_val_closure] = STATE(4789), - [sym__cmd_arg] = STATE(4819), - [sym_redirection] = STATE(4820), - [sym__flag] = STATE(4821), - [sym_short_flag] = STATE(4754), - [sym_long_flag] = STATE(4754), - [sym_unquoted] = STATE(4527), - [sym__unquoted_with_expr] = STATE(4823), - [sym__unquoted_anonymous_prefix] = STATE(6841), - [sym_comment] = STATE(554), - [ts_builtin_sym_end] = ACTIONS(2214), - [sym__newline] = ACTIONS(2068), - [sym__space] = ACTIONS(2214), - [anon_sym_SEMI] = ACTIONS(2068), - [anon_sym_PIPE] = ACTIONS(2068), - [anon_sym_err_GT_PIPE] = ACTIONS(2068), - [anon_sym_out_GT_PIPE] = ACTIONS(2068), - [anon_sym_e_GT_PIPE] = ACTIONS(2068), - [anon_sym_o_GT_PIPE] = ACTIONS(2068), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2068), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2068), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2068), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2068), - [anon_sym_LBRACK] = ACTIONS(2236), - [anon_sym_LPAREN] = ACTIONS(2238), - [anon_sym_DOLLAR] = ACTIONS(2240), - [anon_sym_DASH_DASH] = ACTIONS(2242), - [anon_sym_DASH2] = ACTIONS(2244), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_DOT_DOT] = ACTIONS(2248), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2250), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2252), - [anon_sym_DOT_DOT_LT] = ACTIONS(2252), - [anon_sym_null] = ACTIONS(2254), - [anon_sym_true] = ACTIONS(2256), - [anon_sym_false] = ACTIONS(2256), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2258), - [aux_sym__val_number_decimal_token1] = ACTIONS(2260), - [aux_sym__val_number_decimal_token2] = ACTIONS(2260), - [aux_sym__val_number_decimal_token3] = ACTIONS(2262), - [aux_sym__val_number_decimal_token4] = ACTIONS(2264), - [aux_sym__val_number_token1] = ACTIONS(2266), - [aux_sym__val_number_token2] = ACTIONS(2266), - [aux_sym__val_number_token3] = ACTIONS(2266), - [aux_sym__val_number_token4] = ACTIONS(2268), - [aux_sym__val_number_token5] = ACTIONS(2268), - [aux_sym__val_number_token6] = ACTIONS(2268), - [anon_sym_0b] = ACTIONS(2270), - [anon_sym_0o] = ACTIONS(2272), - [anon_sym_0x] = ACTIONS(2272), - [sym_val_date] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2276), - [sym__str_single_quotes] = ACTIONS(2278), - [sym__str_back_ticks] = ACTIONS(2278), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2280), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2282), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2284), - [anon_sym_err_GT] = ACTIONS(2286), - [anon_sym_out_GT] = ACTIONS(2286), - [anon_sym_e_GT] = ACTIONS(2286), - [anon_sym_o_GT] = ACTIONS(2286), - [anon_sym_err_PLUSout_GT] = ACTIONS(2286), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2286), - [anon_sym_o_PLUSe_GT] = ACTIONS(2286), - [anon_sym_e_PLUSo_GT] = ACTIONS(2286), - [anon_sym_err_GT_GT] = ACTIONS(2286), - [anon_sym_out_GT_GT] = ACTIONS(2286), - [anon_sym_e_GT_GT] = ACTIONS(2286), - [anon_sym_o_GT_GT] = ACTIONS(2286), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2286), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2286), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2286), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2286), - [aux_sym_unquoted_token1] = ACTIONS(2288), + [sym_val_interpolated] = STATE(4824), + [sym__inter_single_quotes] = STATE(4830), + [sym__inter_double_quotes] = STATE(4848), + [sym_val_list] = STATE(4824), + [sym__spread_list] = STATE(4901), + [sym_val_record] = STATE(4824), + [sym_val_table] = STATE(4824), + [sym_val_closure] = STATE(4824), + [sym__cmd_arg] = STATE(4851), + [sym_redirection] = STATE(4761), + [sym__flag] = STATE(4801), + [sym_short_flag] = STATE(4909), + [sym_long_flag] = STATE(4909), + [sym_unquoted] = STATE(4490), + [sym__unquoted_with_expr] = STATE(4821), + [sym__unquoted_anonymous_prefix] = STATE(6892), + [sym_comment] = STATE(569), + [ts_builtin_sym_end] = ACTIONS(2162), + [sym__newline] = ACTIONS(2102), + [sym__space] = ACTIONS(2162), + [anon_sym_SEMI] = ACTIONS(2102), + [anon_sym_PIPE] = ACTIONS(2102), + [anon_sym_err_GT_PIPE] = ACTIONS(2102), + [anon_sym_out_GT_PIPE] = ACTIONS(2102), + [anon_sym_e_GT_PIPE] = ACTIONS(2102), + [anon_sym_o_GT_PIPE] = ACTIONS(2102), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2102), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2102), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2102), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2102), + [anon_sym_LBRACK] = ACTIONS(2232), + [anon_sym_LPAREN] = ACTIONS(2234), + [anon_sym_DOLLAR] = ACTIONS(2236), + [anon_sym_DASH_DASH] = ACTIONS(2238), + [anon_sym_DASH2] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(2242), + [anon_sym_DOT_DOT] = ACTIONS(2244), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2246), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2248), + [anon_sym_DOT_DOT_LT] = ACTIONS(2248), + [anon_sym_null] = ACTIONS(2250), + [anon_sym_true] = ACTIONS(2252), + [anon_sym_false] = ACTIONS(2252), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2254), + [aux_sym__val_number_decimal_token1] = ACTIONS(2256), + [aux_sym__val_number_decimal_token2] = ACTIONS(2256), + [aux_sym__val_number_decimal_token3] = ACTIONS(2258), + [aux_sym__val_number_decimal_token4] = ACTIONS(2260), + [aux_sym__val_number_token1] = ACTIONS(2262), + [aux_sym__val_number_token2] = ACTIONS(2262), + [aux_sym__val_number_token3] = ACTIONS(2262), + [aux_sym__val_number_token4] = ACTIONS(2264), + [aux_sym__val_number_token5] = ACTIONS(2264), + [aux_sym__val_number_token6] = ACTIONS(2264), + [anon_sym_0b] = ACTIONS(2266), + [anon_sym_0o] = ACTIONS(2268), + [anon_sym_0x] = ACTIONS(2268), + [sym_val_date] = ACTIONS(2270), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym__str_single_quotes] = ACTIONS(2274), + [sym__str_back_ticks] = ACTIONS(2274), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2276), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2278), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2280), + [anon_sym_err_GT] = ACTIONS(2282), + [anon_sym_out_GT] = ACTIONS(2282), + [anon_sym_e_GT] = ACTIONS(2282), + [anon_sym_o_GT] = ACTIONS(2282), + [anon_sym_err_PLUSout_GT] = ACTIONS(2282), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), + [anon_sym_o_PLUSe_GT] = ACTIONS(2282), + [anon_sym_e_PLUSo_GT] = ACTIONS(2282), + [anon_sym_err_GT_GT] = ACTIONS(2282), + [anon_sym_out_GT_GT] = ACTIONS(2282), + [anon_sym_e_GT_GT] = ACTIONS(2282), + [anon_sym_o_GT_GT] = ACTIONS(2282), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2282), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2282), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2282), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2282), + [aux_sym_unquoted_token1] = ACTIONS(2284), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2290), + [sym_raw_string_begin] = ACTIONS(2286), }, - [555] = { - [sym__expr_parenthesized_immediate] = STATE(7495), - [sym_comment] = STATE(555), - [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), + [570] = { + [sym_comment] = STATE(570), + [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(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(1816), + [aux_sym_cmd_identifier_token9] = ACTIONS(1816), + [aux_sym_cmd_identifier_token10] = ACTIONS(1824), + [aux_sym_cmd_identifier_token11] = ACTIONS(1824), + [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(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(1816), + [aux_sym_cmd_identifier_token35] = ACTIONS(1824), + [aux_sym_cmd_identifier_token36] = ACTIONS(1824), + [aux_sym_cmd_identifier_token37] = ACTIONS(1824), + [aux_sym_cmd_identifier_token38] = ACTIONS(1816), + [aux_sym_cmd_identifier_token39] = ACTIONS(1824), + [aux_sym_cmd_identifier_token40] = ACTIONS(1824), + [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_COMMA] = ACTIONS(1824), + [anon_sym_DOLLAR] = ACTIONS(1816), + [anon_sym_error] = ACTIONS(1816), + [anon_sym_DASH2] = ACTIONS(1816), + [anon_sym_break] = ACTIONS(1816), + [anon_sym_continue] = ACTIONS(1816), + [anon_sym_for] = ACTIONS(1816), + [anon_sym_in2] = 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(1824), + [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_hide] = ACTIONS(1816), + [anon_sym_hide_DASHenv] = ACTIONS(1816), + [anon_sym_overlay] = ACTIONS(1816), + [anon_sym_as] = ACTIONS(1816), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_PLUS2] = ACTIONS(1816), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1824), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1824), + [aux_sym__val_number_decimal_token1] = ACTIONS(1816), + [aux_sym__val_number_decimal_token2] = ACTIONS(1824), + [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), + [aux_sym__val_number_token4] = ACTIONS(1816), + [aux_sym__val_number_token5] = ACTIONS(1816), + [aux_sym__val_number_token6] = ACTIONS(1816), + [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1824), + [anon_sym_register] = ACTIONS(1816), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1826), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1824), + }, + [571] = { + [sym_comment] = STATE(571), + [anon_sym_export] = ACTIONS(2168), + [anon_sym_alias] = ACTIONS(2168), + [anon_sym_let] = ACTIONS(2168), + [anon_sym_let_DASHenv] = ACTIONS(2168), + [anon_sym_mut] = ACTIONS(2168), + [anon_sym_const] = ACTIONS(2168), + [aux_sym_cmd_identifier_token1] = ACTIONS(2168), + [aux_sym_cmd_identifier_token2] = ACTIONS(2172), + [aux_sym_cmd_identifier_token3] = ACTIONS(2172), + [aux_sym_cmd_identifier_token4] = ACTIONS(2172), + [aux_sym_cmd_identifier_token5] = ACTIONS(2172), + [aux_sym_cmd_identifier_token6] = ACTIONS(2172), + [aux_sym_cmd_identifier_token7] = ACTIONS(2172), + [aux_sym_cmd_identifier_token8] = ACTIONS(2168), + [aux_sym_cmd_identifier_token9] = ACTIONS(2168), + [aux_sym_cmd_identifier_token10] = ACTIONS(2172), + [aux_sym_cmd_identifier_token11] = ACTIONS(2172), + [aux_sym_cmd_identifier_token12] = ACTIONS(2168), + [aux_sym_cmd_identifier_token13] = ACTIONS(2168), + [aux_sym_cmd_identifier_token14] = ACTIONS(2168), + [aux_sym_cmd_identifier_token15] = ACTIONS(2168), + [aux_sym_cmd_identifier_token16] = ACTIONS(2172), + [aux_sym_cmd_identifier_token17] = ACTIONS(2172), + [aux_sym_cmd_identifier_token18] = ACTIONS(2172), + [aux_sym_cmd_identifier_token19] = ACTIONS(2172), + [aux_sym_cmd_identifier_token20] = ACTIONS(2172), + [aux_sym_cmd_identifier_token21] = ACTIONS(2172), + [aux_sym_cmd_identifier_token22] = ACTIONS(2172), + [aux_sym_cmd_identifier_token23] = ACTIONS(2172), + [aux_sym_cmd_identifier_token24] = ACTIONS(2172), + [aux_sym_cmd_identifier_token25] = ACTIONS(2172), + [aux_sym_cmd_identifier_token26] = ACTIONS(2172), + [aux_sym_cmd_identifier_token27] = ACTIONS(2172), + [aux_sym_cmd_identifier_token28] = ACTIONS(2172), + [aux_sym_cmd_identifier_token29] = ACTIONS(2172), + [aux_sym_cmd_identifier_token30] = ACTIONS(2172), + [aux_sym_cmd_identifier_token31] = ACTIONS(2172), + [aux_sym_cmd_identifier_token32] = ACTIONS(2172), + [aux_sym_cmd_identifier_token33] = ACTIONS(2172), + [aux_sym_cmd_identifier_token34] = ACTIONS(2168), + [aux_sym_cmd_identifier_token35] = ACTIONS(2172), + [aux_sym_cmd_identifier_token36] = ACTIONS(2172), + [aux_sym_cmd_identifier_token37] = ACTIONS(2172), + [aux_sym_cmd_identifier_token38] = ACTIONS(2168), + [aux_sym_cmd_identifier_token39] = ACTIONS(2172), + [aux_sym_cmd_identifier_token40] = ACTIONS(2172), + [anon_sym_def] = ACTIONS(2168), + [anon_sym_export_DASHenv] = ACTIONS(2168), + [anon_sym_extern] = ACTIONS(2168), + [anon_sym_module] = ACTIONS(2168), + [anon_sym_use] = ACTIONS(2168), + [anon_sym_LPAREN] = ACTIONS(2168), + [anon_sym_COMMA] = ACTIONS(2172), + [anon_sym_DOLLAR] = ACTIONS(2168), + [anon_sym_error] = ACTIONS(2168), + [anon_sym_DASH2] = ACTIONS(2168), + [anon_sym_break] = ACTIONS(2168), + [anon_sym_continue] = ACTIONS(2168), + [anon_sym_for] = ACTIONS(2168), + [anon_sym_in2] = ACTIONS(2168), + [anon_sym_loop] = ACTIONS(2168), + [anon_sym_make] = ACTIONS(2168), + [anon_sym_while] = ACTIONS(2168), + [anon_sym_do] = ACTIONS(2168), + [anon_sym_if] = ACTIONS(2168), + [anon_sym_else] = ACTIONS(2168), + [anon_sym_match] = ACTIONS(2168), + [anon_sym_RBRACE] = ACTIONS(2172), + [anon_sym_try] = ACTIONS(2168), + [anon_sym_catch] = ACTIONS(2168), + [anon_sym_return] = ACTIONS(2168), + [anon_sym_source] = ACTIONS(2168), + [anon_sym_source_DASHenv] = ACTIONS(2168), + [anon_sym_hide] = ACTIONS(2168), + [anon_sym_hide_DASHenv] = ACTIONS(2168), + [anon_sym_overlay] = ACTIONS(2168), + [anon_sym_as] = ACTIONS(2168), + [anon_sym_LPAREN2] = ACTIONS(2170), + [anon_sym_PLUS2] = ACTIONS(2168), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2172), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2172), + [aux_sym__val_number_decimal_token1] = ACTIONS(2168), + [aux_sym__val_number_decimal_token2] = ACTIONS(2172), + [aux_sym__val_number_decimal_token3] = ACTIONS(2172), + [aux_sym__val_number_decimal_token4] = ACTIONS(2172), + [aux_sym__val_number_token1] = ACTIONS(2172), + [aux_sym__val_number_token2] = ACTIONS(2172), + [aux_sym__val_number_token3] = ACTIONS(2172), + [aux_sym__val_number_token4] = ACTIONS(2168), + [aux_sym__val_number_token5] = ACTIONS(2168), + [aux_sym__val_number_token6] = ACTIONS(2168), + [anon_sym_DQUOTE] = ACTIONS(2172), + [sym__str_single_quotes] = ACTIONS(2172), + [sym__str_back_ticks] = ACTIONS(2172), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2172), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2172), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2172), + [anon_sym_register] = ACTIONS(2168), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1562), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2172), + }, + [572] = { + [sym_comment] = STATE(572), + [anon_sym_export] = ACTIONS(2190), + [anon_sym_alias] = ACTIONS(2190), + [anon_sym_let] = ACTIONS(2190), + [anon_sym_let_DASHenv] = ACTIONS(2190), + [anon_sym_mut] = ACTIONS(2190), + [anon_sym_const] = ACTIONS(2190), + [aux_sym_cmd_identifier_token1] = ACTIONS(2190), [aux_sym_cmd_identifier_token2] = ACTIONS(2194), [aux_sym_cmd_identifier_token3] = ACTIONS(2194), [aux_sym_cmd_identifier_token4] = ACTIONS(2194), [aux_sym_cmd_identifier_token5] = ACTIONS(2194), [aux_sym_cmd_identifier_token6] = ACTIONS(2194), [aux_sym_cmd_identifier_token7] = ACTIONS(2194), - [aux_sym_cmd_identifier_token8] = ACTIONS(2192), - [aux_sym_cmd_identifier_token9] = ACTIONS(2192), + [aux_sym_cmd_identifier_token8] = ACTIONS(2190), + [aux_sym_cmd_identifier_token9] = ACTIONS(2190), [aux_sym_cmd_identifier_token10] = ACTIONS(2194), [aux_sym_cmd_identifier_token11] = ACTIONS(2194), - [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_token12] = ACTIONS(2190), + [aux_sym_cmd_identifier_token13] = ACTIONS(2190), + [aux_sym_cmd_identifier_token14] = ACTIONS(2190), + [aux_sym_cmd_identifier_token15] = ACTIONS(2190), [aux_sym_cmd_identifier_token16] = ACTIONS(2194), [aux_sym_cmd_identifier_token17] = ACTIONS(2194), [aux_sym_cmd_identifier_token18] = ACTIONS(2194), @@ -142242,382 +143946,799 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(2194), [aux_sym_cmd_identifier_token32] = ACTIONS(2194), [aux_sym_cmd_identifier_token33] = ACTIONS(2194), - [aux_sym_cmd_identifier_token34] = ACTIONS(2192), + [aux_sym_cmd_identifier_token34] = ACTIONS(2190), [aux_sym_cmd_identifier_token35] = ACTIONS(2194), [aux_sym_cmd_identifier_token36] = ACTIONS(2194), [aux_sym_cmd_identifier_token37] = ACTIONS(2194), - [aux_sym_cmd_identifier_token38] = ACTIONS(2192), + [aux_sym_cmd_identifier_token38] = ACTIONS(2190), [aux_sym_cmd_identifier_token39] = ACTIONS(2194), [aux_sym_cmd_identifier_token40] = ACTIONS(2194), - [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_def] = ACTIONS(2190), + [anon_sym_export_DASHenv] = ACTIONS(2190), + [anon_sym_extern] = ACTIONS(2190), + [anon_sym_module] = ACTIONS(2190), + [anon_sym_use] = ACTIONS(2190), + [anon_sym_LPAREN] = ACTIONS(2190), [anon_sym_COMMA] = ACTIONS(2194), - [anon_sym_DOLLAR] = ACTIONS(2192), - [anon_sym_error] = ACTIONS(2192), - [anon_sym_DASH2] = ACTIONS(2192), - [anon_sym_break] = ACTIONS(2192), - [anon_sym_continue] = ACTIONS(2192), - [anon_sym_for] = ACTIONS(2192), - [anon_sym_in2] = 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_DOLLAR] = ACTIONS(2190), + [anon_sym_error] = ACTIONS(2190), + [anon_sym_DASH2] = ACTIONS(2190), + [anon_sym_break] = ACTIONS(2190), + [anon_sym_continue] = ACTIONS(2190), + [anon_sym_for] = ACTIONS(2190), + [anon_sym_in2] = ACTIONS(2190), + [anon_sym_loop] = ACTIONS(2190), + [anon_sym_make] = ACTIONS(2190), + [anon_sym_while] = ACTIONS(2190), + [anon_sym_do] = ACTIONS(2190), + [anon_sym_if] = ACTIONS(2190), + [anon_sym_else] = ACTIONS(2190), + [anon_sym_match] = ACTIONS(2190), [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_as] = ACTIONS(2192), - [anon_sym_LPAREN2] = ACTIONS(1640), - [anon_sym_PLUS2] = ACTIONS(2192), + [anon_sym_try] = ACTIONS(2190), + [anon_sym_catch] = ACTIONS(2190), + [anon_sym_return] = ACTIONS(2190), + [anon_sym_source] = ACTIONS(2190), + [anon_sym_source_DASHenv] = ACTIONS(2190), + [anon_sym_hide] = ACTIONS(2190), + [anon_sym_hide_DASHenv] = ACTIONS(2190), + [anon_sym_overlay] = ACTIONS(2190), + [anon_sym_as] = ACTIONS(2190), + [anon_sym_LPAREN2] = ACTIONS(2192), + [anon_sym_PLUS2] = ACTIONS(2190), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2194), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2194), - [aux_sym__val_number_decimal_token1] = ACTIONS(2192), + [aux_sym__val_number_decimal_token1] = ACTIONS(2190), [aux_sym__val_number_decimal_token2] = ACTIONS(2194), [aux_sym__val_number_decimal_token3] = ACTIONS(2194), [aux_sym__val_number_decimal_token4] = ACTIONS(2194), [aux_sym__val_number_token1] = ACTIONS(2194), [aux_sym__val_number_token2] = ACTIONS(2194), [aux_sym__val_number_token3] = ACTIONS(2194), - [aux_sym__val_number_token4] = ACTIONS(2192), - [aux_sym__val_number_token5] = ACTIONS(2192), - [aux_sym__val_number_token6] = ACTIONS(2192), + [aux_sym__val_number_token4] = ACTIONS(2190), + [aux_sym__val_number_token5] = ACTIONS(2190), + [aux_sym__val_number_token6] = ACTIONS(2190), [anon_sym_DQUOTE] = ACTIONS(2194), [sym__str_single_quotes] = ACTIONS(2194), [sym__str_back_ticks] = ACTIONS(2194), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2194), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2194), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2194), - [anon_sym_POUND] = ACTIONS(251), + [anon_sym_register] = ACTIONS(2190), + [aux_sym__unquoted_in_record_token2] = ACTIONS(2196), + [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(2194), }, - [556] = { - [sym_comment] = STATE(556), - [anon_sym_export] = ACTIONS(2144), - [anon_sym_alias] = ACTIONS(2144), - [anon_sym_let] = ACTIONS(2144), - [anon_sym_let_DASHenv] = ACTIONS(2144), - [anon_sym_mut] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [aux_sym_cmd_identifier_token1] = ACTIONS(2144), - [aux_sym_cmd_identifier_token2] = ACTIONS(2144), - [aux_sym_cmd_identifier_token3] = ACTIONS(2144), - [aux_sym_cmd_identifier_token4] = ACTIONS(2144), - [aux_sym_cmd_identifier_token5] = ACTIONS(2144), - [aux_sym_cmd_identifier_token6] = ACTIONS(2144), - [aux_sym_cmd_identifier_token7] = ACTIONS(2144), - [aux_sym_cmd_identifier_token8] = ACTIONS(2144), - [aux_sym_cmd_identifier_token9] = ACTIONS(2144), - [aux_sym_cmd_identifier_token10] = ACTIONS(2144), - [aux_sym_cmd_identifier_token11] = ACTIONS(2144), - [aux_sym_cmd_identifier_token12] = ACTIONS(2144), - [aux_sym_cmd_identifier_token13] = ACTIONS(2144), - [aux_sym_cmd_identifier_token14] = ACTIONS(2144), - [aux_sym_cmd_identifier_token15] = ACTIONS(2144), - [aux_sym_cmd_identifier_token16] = ACTIONS(2144), - [aux_sym_cmd_identifier_token17] = ACTIONS(2144), - [aux_sym_cmd_identifier_token18] = ACTIONS(2144), - [aux_sym_cmd_identifier_token19] = ACTIONS(2144), - [aux_sym_cmd_identifier_token20] = ACTIONS(2144), - [aux_sym_cmd_identifier_token21] = ACTIONS(2144), - [aux_sym_cmd_identifier_token22] = ACTIONS(2144), - [aux_sym_cmd_identifier_token23] = ACTIONS(2144), - [aux_sym_cmd_identifier_token24] = ACTIONS(2144), - [aux_sym_cmd_identifier_token25] = ACTIONS(2144), - [aux_sym_cmd_identifier_token26] = ACTIONS(2144), - [aux_sym_cmd_identifier_token27] = ACTIONS(2144), - [aux_sym_cmd_identifier_token28] = ACTIONS(2144), - [aux_sym_cmd_identifier_token29] = ACTIONS(2144), - [aux_sym_cmd_identifier_token30] = ACTIONS(2144), - [aux_sym_cmd_identifier_token31] = ACTIONS(2144), - [aux_sym_cmd_identifier_token32] = ACTIONS(2144), - [aux_sym_cmd_identifier_token33] = ACTIONS(2144), - [aux_sym_cmd_identifier_token34] = ACTIONS(2144), - [aux_sym_cmd_identifier_token35] = ACTIONS(2144), - [aux_sym_cmd_identifier_token36] = ACTIONS(2144), - [aux_sym_cmd_identifier_token37] = ACTIONS(2144), - [aux_sym_cmd_identifier_token38] = ACTIONS(2144), - [aux_sym_cmd_identifier_token39] = ACTIONS(2144), - [aux_sym_cmd_identifier_token40] = ACTIONS(2144), - [anon_sym_def] = ACTIONS(2144), - [anon_sym_export_DASHenv] = ACTIONS(2144), - [anon_sym_extern] = ACTIONS(2144), - [anon_sym_module] = ACTIONS(2144), - [anon_sym_use] = ACTIONS(2144), - [anon_sym_LPAREN] = ACTIONS(2144), - [anon_sym_COMMA] = ACTIONS(2146), - [anon_sym_DOLLAR] = ACTIONS(2144), - [anon_sym_error] = ACTIONS(2144), - [anon_sym_DASH2] = ACTIONS(2144), - [anon_sym_break] = ACTIONS(2144), - [anon_sym_continue] = ACTIONS(2144), - [anon_sym_for] = ACTIONS(2144), - [anon_sym_in2] = ACTIONS(2144), - [anon_sym_loop] = ACTIONS(2144), - [anon_sym_make] = ACTIONS(2144), - [anon_sym_while] = ACTIONS(2144), - [anon_sym_do] = ACTIONS(2144), - [anon_sym_if] = ACTIONS(2144), - [anon_sym_else] = ACTIONS(2144), - [anon_sym_match] = ACTIONS(2144), - [anon_sym_RBRACE] = ACTIONS(2146), - [anon_sym_try] = ACTIONS(2144), - [anon_sym_catch] = ACTIONS(2144), - [anon_sym_return] = ACTIONS(2144), - [anon_sym_source] = ACTIONS(2144), - [anon_sym_source_DASHenv] = ACTIONS(2144), - [anon_sym_register] = ACTIONS(2144), - [anon_sym_hide] = ACTIONS(2144), - [anon_sym_hide_DASHenv] = ACTIONS(2144), - [anon_sym_overlay] = ACTIONS(2144), - [anon_sym_as] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(2138), - [anon_sym_PLUS2] = ACTIONS(2144), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2146), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2144), - [aux_sym__val_number_decimal_token1] = ACTIONS(2144), - [aux_sym__val_number_decimal_token2] = ACTIONS(2144), - [aux_sym__val_number_decimal_token3] = ACTIONS(2144), - [aux_sym__val_number_decimal_token4] = ACTIONS(2144), - [aux_sym__val_number_token1] = ACTIONS(2144), - [aux_sym__val_number_token2] = ACTIONS(2144), - [aux_sym__val_number_token3] = ACTIONS(2144), - [aux_sym__val_number_token4] = ACTIONS(2144), - [aux_sym__val_number_token5] = ACTIONS(2144), - [aux_sym__val_number_token6] = ACTIONS(2144), - [anon_sym_DQUOTE] = ACTIONS(2146), - [sym__str_single_quotes] = ACTIONS(2146), - [sym__str_back_ticks] = ACTIONS(2146), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2146), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2146), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2146), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2142), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2146), + [573] = { + [sym__expr_parenthesized_immediate] = STATE(7403), + [sym_comment] = STATE(573), + [anon_sym_export] = ACTIONS(2000), + [anon_sym_alias] = ACTIONS(2000), + [anon_sym_let] = ACTIONS(2000), + [anon_sym_let_DASHenv] = ACTIONS(2000), + [anon_sym_mut] = ACTIONS(2000), + [anon_sym_const] = ACTIONS(2000), + [aux_sym_cmd_identifier_token1] = ACTIONS(2000), + [aux_sym_cmd_identifier_token2] = ACTIONS(2006), + [aux_sym_cmd_identifier_token3] = ACTIONS(2006), + [aux_sym_cmd_identifier_token4] = ACTIONS(2006), + [aux_sym_cmd_identifier_token5] = ACTIONS(2006), + [aux_sym_cmd_identifier_token6] = ACTIONS(2006), + [aux_sym_cmd_identifier_token7] = ACTIONS(2006), + [aux_sym_cmd_identifier_token8] = ACTIONS(2000), + [aux_sym_cmd_identifier_token9] = ACTIONS(2000), + [aux_sym_cmd_identifier_token10] = ACTIONS(2006), + [aux_sym_cmd_identifier_token11] = ACTIONS(2006), + [aux_sym_cmd_identifier_token12] = ACTIONS(2000), + [aux_sym_cmd_identifier_token13] = ACTIONS(2000), + [aux_sym_cmd_identifier_token14] = ACTIONS(2000), + [aux_sym_cmd_identifier_token15] = ACTIONS(2000), + [aux_sym_cmd_identifier_token16] = ACTIONS(2006), + [aux_sym_cmd_identifier_token17] = ACTIONS(2006), + [aux_sym_cmd_identifier_token18] = ACTIONS(2006), + [aux_sym_cmd_identifier_token19] = ACTIONS(2006), + [aux_sym_cmd_identifier_token20] = ACTIONS(2006), + [aux_sym_cmd_identifier_token21] = ACTIONS(2006), + [aux_sym_cmd_identifier_token22] = ACTIONS(2006), + [aux_sym_cmd_identifier_token23] = ACTIONS(2006), + [aux_sym_cmd_identifier_token24] = ACTIONS(2006), + [aux_sym_cmd_identifier_token25] = ACTIONS(2006), + [aux_sym_cmd_identifier_token26] = ACTIONS(2006), + [aux_sym_cmd_identifier_token27] = ACTIONS(2006), + [aux_sym_cmd_identifier_token28] = ACTIONS(2006), + [aux_sym_cmd_identifier_token29] = ACTIONS(2006), + [aux_sym_cmd_identifier_token30] = ACTIONS(2006), + [aux_sym_cmd_identifier_token31] = ACTIONS(2006), + [aux_sym_cmd_identifier_token32] = ACTIONS(2006), + [aux_sym_cmd_identifier_token33] = ACTIONS(2006), + [aux_sym_cmd_identifier_token34] = ACTIONS(2000), + [aux_sym_cmd_identifier_token35] = ACTIONS(2006), + [aux_sym_cmd_identifier_token36] = ACTIONS(2006), + [aux_sym_cmd_identifier_token37] = ACTIONS(2006), + [aux_sym_cmd_identifier_token38] = ACTIONS(2000), + [aux_sym_cmd_identifier_token39] = ACTIONS(2006), + [aux_sym_cmd_identifier_token40] = ACTIONS(2006), + [anon_sym_def] = ACTIONS(2000), + [anon_sym_export_DASHenv] = ACTIONS(2000), + [anon_sym_extern] = ACTIONS(2000), + [anon_sym_module] = ACTIONS(2000), + [anon_sym_use] = ACTIONS(2000), + [anon_sym_LPAREN] = ACTIONS(2000), + [anon_sym_COMMA] = ACTIONS(2006), + [anon_sym_DOLLAR] = ACTIONS(2000), + [anon_sym_error] = ACTIONS(2000), + [anon_sym_DASH2] = ACTIONS(2000), + [anon_sym_break] = ACTIONS(2000), + [anon_sym_continue] = ACTIONS(2000), + [anon_sym_for] = ACTIONS(2000), + [anon_sym_in2] = ACTIONS(2000), + [anon_sym_loop] = ACTIONS(2000), + [anon_sym_make] = ACTIONS(2000), + [anon_sym_while] = ACTIONS(2000), + [anon_sym_do] = ACTIONS(2000), + [anon_sym_if] = ACTIONS(2000), + [anon_sym_else] = ACTIONS(2000), + [anon_sym_match] = ACTIONS(2000), + [anon_sym_RBRACE] = ACTIONS(2006), + [anon_sym_try] = ACTIONS(2000), + [anon_sym_catch] = ACTIONS(2000), + [anon_sym_return] = ACTIONS(2000), + [anon_sym_source] = ACTIONS(2000), + [anon_sym_source_DASHenv] = ACTIONS(2000), + [anon_sym_hide] = ACTIONS(2000), + [anon_sym_hide_DASHenv] = ACTIONS(2000), + [anon_sym_overlay] = ACTIONS(2000), + [anon_sym_as] = ACTIONS(2000), + [anon_sym_LPAREN2] = ACTIONS(1641), + [anon_sym_PLUS2] = ACTIONS(2000), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2006), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2006), + [aux_sym__val_number_decimal_token1] = ACTIONS(2000), + [aux_sym__val_number_decimal_token2] = ACTIONS(2006), + [aux_sym__val_number_decimal_token3] = ACTIONS(2006), + [aux_sym__val_number_decimal_token4] = ACTIONS(2006), + [aux_sym__val_number_token1] = ACTIONS(2006), + [aux_sym__val_number_token2] = ACTIONS(2006), + [aux_sym__val_number_token3] = ACTIONS(2006), + [aux_sym__val_number_token4] = ACTIONS(2000), + [aux_sym__val_number_token5] = ACTIONS(2000), + [aux_sym__val_number_token6] = ACTIONS(2000), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym__str_single_quotes] = ACTIONS(2006), + [sym__str_back_ticks] = ACTIONS(2006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2006), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2006), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2006), + [anon_sym_register] = ACTIONS(2000), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2006), }, - [557] = { - [sym_comment] = STATE(557), - [anon_sym_export] = ACTIONS(2172), - [anon_sym_alias] = ACTIONS(2172), - [anon_sym_let] = ACTIONS(2172), - [anon_sym_let_DASHenv] = ACTIONS(2172), - [anon_sym_mut] = ACTIONS(2172), - [anon_sym_const] = ACTIONS(2172), - [aux_sym_cmd_identifier_token1] = ACTIONS(2172), - [aux_sym_cmd_identifier_token2] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2176), - [aux_sym_cmd_identifier_token4] = ACTIONS(2176), - [aux_sym_cmd_identifier_token5] = ACTIONS(2176), - [aux_sym_cmd_identifier_token6] = ACTIONS(2176), - [aux_sym_cmd_identifier_token7] = ACTIONS(2176), - [aux_sym_cmd_identifier_token8] = ACTIONS(2172), - [aux_sym_cmd_identifier_token9] = ACTIONS(2172), - [aux_sym_cmd_identifier_token10] = ACTIONS(2176), - [aux_sym_cmd_identifier_token11] = ACTIONS(2176), - [aux_sym_cmd_identifier_token12] = ACTIONS(2172), - [aux_sym_cmd_identifier_token13] = ACTIONS(2172), - [aux_sym_cmd_identifier_token14] = ACTIONS(2172), - [aux_sym_cmd_identifier_token15] = ACTIONS(2172), - [aux_sym_cmd_identifier_token16] = ACTIONS(2176), - [aux_sym_cmd_identifier_token17] = ACTIONS(2176), - [aux_sym_cmd_identifier_token18] = ACTIONS(2176), - [aux_sym_cmd_identifier_token19] = ACTIONS(2176), - [aux_sym_cmd_identifier_token20] = ACTIONS(2176), - [aux_sym_cmd_identifier_token21] = ACTIONS(2176), - [aux_sym_cmd_identifier_token22] = ACTIONS(2176), - [aux_sym_cmd_identifier_token23] = ACTIONS(2176), - [aux_sym_cmd_identifier_token24] = ACTIONS(2176), - [aux_sym_cmd_identifier_token25] = ACTIONS(2176), - [aux_sym_cmd_identifier_token26] = ACTIONS(2176), - [aux_sym_cmd_identifier_token27] = ACTIONS(2176), - [aux_sym_cmd_identifier_token28] = ACTIONS(2176), - [aux_sym_cmd_identifier_token29] = ACTIONS(2176), - [aux_sym_cmd_identifier_token30] = ACTIONS(2176), - [aux_sym_cmd_identifier_token31] = ACTIONS(2176), - [aux_sym_cmd_identifier_token32] = ACTIONS(2176), - [aux_sym_cmd_identifier_token33] = ACTIONS(2176), - [aux_sym_cmd_identifier_token34] = ACTIONS(2172), - [aux_sym_cmd_identifier_token35] = ACTIONS(2176), - [aux_sym_cmd_identifier_token36] = ACTIONS(2176), - [aux_sym_cmd_identifier_token37] = ACTIONS(2176), - [aux_sym_cmd_identifier_token38] = ACTIONS(2172), - [aux_sym_cmd_identifier_token39] = ACTIONS(2176), - [aux_sym_cmd_identifier_token40] = ACTIONS(2176), - [anon_sym_def] = ACTIONS(2172), - [anon_sym_export_DASHenv] = ACTIONS(2172), - [anon_sym_extern] = ACTIONS(2172), - [anon_sym_module] = ACTIONS(2172), - [anon_sym_use] = ACTIONS(2172), - [anon_sym_LPAREN] = ACTIONS(2172), - [anon_sym_COMMA] = ACTIONS(2176), - [anon_sym_DOLLAR] = ACTIONS(2172), - [anon_sym_error] = ACTIONS(2172), - [anon_sym_DASH2] = ACTIONS(2172), - [anon_sym_break] = ACTIONS(2172), - [anon_sym_continue] = ACTIONS(2172), - [anon_sym_for] = ACTIONS(2172), - [anon_sym_in2] = ACTIONS(2172), - [anon_sym_loop] = ACTIONS(2172), - [anon_sym_make] = ACTIONS(2172), - [anon_sym_while] = ACTIONS(2172), - [anon_sym_do] = ACTIONS(2172), - [anon_sym_if] = ACTIONS(2172), - [anon_sym_else] = ACTIONS(2172), - [anon_sym_match] = ACTIONS(2172), - [anon_sym_RBRACE] = ACTIONS(2176), - [anon_sym_try] = ACTIONS(2172), - [anon_sym_catch] = ACTIONS(2172), - [anon_sym_return] = ACTIONS(2172), - [anon_sym_source] = ACTIONS(2172), - [anon_sym_source_DASHenv] = ACTIONS(2172), - [anon_sym_register] = ACTIONS(2172), - [anon_sym_hide] = ACTIONS(2172), - [anon_sym_hide_DASHenv] = ACTIONS(2172), - [anon_sym_overlay] = ACTIONS(2172), - [anon_sym_as] = ACTIONS(2172), - [anon_sym_LPAREN2] = ACTIONS(2174), - [anon_sym_PLUS2] = ACTIONS(2172), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2176), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2176), - [aux_sym__val_number_decimal_token1] = ACTIONS(2172), - [aux_sym__val_number_decimal_token2] = ACTIONS(2176), - [aux_sym__val_number_decimal_token3] = ACTIONS(2176), - [aux_sym__val_number_decimal_token4] = ACTIONS(2176), - [aux_sym__val_number_token1] = ACTIONS(2176), - [aux_sym__val_number_token2] = ACTIONS(2176), - [aux_sym__val_number_token3] = ACTIONS(2176), - [aux_sym__val_number_token4] = ACTIONS(2172), - [aux_sym__val_number_token5] = ACTIONS(2172), - [aux_sym__val_number_token6] = ACTIONS(2172), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym__str_single_quotes] = ACTIONS(2176), - [sym__str_back_ticks] = ACTIONS(2176), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2176), + [574] = { + [sym__expr_parenthesized_immediate] = STATE(7403), + [sym_comment] = STATE(574), + [anon_sym_export] = ACTIONS(2014), + [anon_sym_alias] = ACTIONS(2014), + [anon_sym_let] = ACTIONS(2014), + [anon_sym_let_DASHenv] = ACTIONS(2014), + [anon_sym_mut] = ACTIONS(2014), + [anon_sym_const] = ACTIONS(2014), + [aux_sym_cmd_identifier_token1] = ACTIONS(2014), + [aux_sym_cmd_identifier_token2] = ACTIONS(2016), + [aux_sym_cmd_identifier_token3] = ACTIONS(2016), + [aux_sym_cmd_identifier_token4] = ACTIONS(2016), + [aux_sym_cmd_identifier_token5] = ACTIONS(2016), + [aux_sym_cmd_identifier_token6] = ACTIONS(2016), + [aux_sym_cmd_identifier_token7] = ACTIONS(2016), + [aux_sym_cmd_identifier_token8] = ACTIONS(2014), + [aux_sym_cmd_identifier_token9] = ACTIONS(2014), + [aux_sym_cmd_identifier_token10] = ACTIONS(2016), + [aux_sym_cmd_identifier_token11] = ACTIONS(2016), + [aux_sym_cmd_identifier_token12] = ACTIONS(2014), + [aux_sym_cmd_identifier_token13] = ACTIONS(2014), + [aux_sym_cmd_identifier_token14] = ACTIONS(2014), + [aux_sym_cmd_identifier_token15] = ACTIONS(2014), + [aux_sym_cmd_identifier_token16] = ACTIONS(2016), + [aux_sym_cmd_identifier_token17] = ACTIONS(2016), + [aux_sym_cmd_identifier_token18] = ACTIONS(2016), + [aux_sym_cmd_identifier_token19] = ACTIONS(2016), + [aux_sym_cmd_identifier_token20] = ACTIONS(2016), + [aux_sym_cmd_identifier_token21] = ACTIONS(2016), + [aux_sym_cmd_identifier_token22] = ACTIONS(2016), + [aux_sym_cmd_identifier_token23] = ACTIONS(2016), + [aux_sym_cmd_identifier_token24] = ACTIONS(2016), + [aux_sym_cmd_identifier_token25] = ACTIONS(2016), + [aux_sym_cmd_identifier_token26] = ACTIONS(2016), + [aux_sym_cmd_identifier_token27] = ACTIONS(2016), + [aux_sym_cmd_identifier_token28] = ACTIONS(2016), + [aux_sym_cmd_identifier_token29] = ACTIONS(2016), + [aux_sym_cmd_identifier_token30] = ACTIONS(2016), + [aux_sym_cmd_identifier_token31] = ACTIONS(2016), + [aux_sym_cmd_identifier_token32] = ACTIONS(2016), + [aux_sym_cmd_identifier_token33] = ACTIONS(2016), + [aux_sym_cmd_identifier_token34] = ACTIONS(2014), + [aux_sym_cmd_identifier_token35] = ACTIONS(2016), + [aux_sym_cmd_identifier_token36] = ACTIONS(2016), + [aux_sym_cmd_identifier_token37] = ACTIONS(2016), + [aux_sym_cmd_identifier_token38] = ACTIONS(2014), + [aux_sym_cmd_identifier_token39] = ACTIONS(2016), + [aux_sym_cmd_identifier_token40] = ACTIONS(2016), + [anon_sym_def] = ACTIONS(2014), + [anon_sym_export_DASHenv] = ACTIONS(2014), + [anon_sym_extern] = ACTIONS(2014), + [anon_sym_module] = ACTIONS(2014), + [anon_sym_use] = ACTIONS(2014), + [anon_sym_LPAREN] = ACTIONS(2014), + [anon_sym_COMMA] = ACTIONS(2016), + [anon_sym_DOLLAR] = ACTIONS(2014), + [anon_sym_error] = ACTIONS(2014), + [anon_sym_DASH2] = ACTIONS(2014), + [anon_sym_break] = ACTIONS(2014), + [anon_sym_continue] = ACTIONS(2014), + [anon_sym_for] = ACTIONS(2014), + [anon_sym_in2] = ACTIONS(2014), + [anon_sym_loop] = ACTIONS(2014), + [anon_sym_make] = ACTIONS(2014), + [anon_sym_while] = ACTIONS(2014), + [anon_sym_do] = ACTIONS(2014), + [anon_sym_if] = ACTIONS(2014), + [anon_sym_else] = ACTIONS(2014), + [anon_sym_match] = ACTIONS(2014), + [anon_sym_RBRACE] = ACTIONS(2016), + [anon_sym_try] = ACTIONS(2014), + [anon_sym_catch] = ACTIONS(2014), + [anon_sym_return] = ACTIONS(2014), + [anon_sym_source] = ACTIONS(2014), + [anon_sym_source_DASHenv] = ACTIONS(2014), + [anon_sym_hide] = ACTIONS(2014), + [anon_sym_hide_DASHenv] = ACTIONS(2014), + [anon_sym_overlay] = ACTIONS(2014), + [anon_sym_as] = ACTIONS(2014), + [anon_sym_LPAREN2] = ACTIONS(1641), + [anon_sym_PLUS2] = ACTIONS(2014), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2016), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2016), + [aux_sym__val_number_decimal_token1] = ACTIONS(2014), + [aux_sym__val_number_decimal_token2] = ACTIONS(2016), + [aux_sym__val_number_decimal_token3] = ACTIONS(2016), + [aux_sym__val_number_decimal_token4] = ACTIONS(2016), + [aux_sym__val_number_token1] = ACTIONS(2016), + [aux_sym__val_number_token2] = ACTIONS(2016), + [aux_sym__val_number_token3] = ACTIONS(2016), + [aux_sym__val_number_token4] = ACTIONS(2014), + [aux_sym__val_number_token5] = ACTIONS(2014), + [aux_sym__val_number_token6] = ACTIONS(2014), + [anon_sym_DQUOTE] = ACTIONS(2016), + [sym__str_single_quotes] = ACTIONS(2016), + [sym__str_back_ticks] = ACTIONS(2016), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2016), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2016), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2016), + [anon_sym_register] = ACTIONS(2014), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2016), + }, + [575] = { + [sym_comment] = STATE(575), + [anon_sym_export] = ACTIONS(974), + [anon_sym_alias] = ACTIONS(974), + [anon_sym_let] = ACTIONS(974), + [anon_sym_let_DASHenv] = ACTIONS(974), + [anon_sym_mut] = ACTIONS(974), + [anon_sym_const] = ACTIONS(974), + [aux_sym_cmd_identifier_token1] = ACTIONS(974), + [aux_sym_cmd_identifier_token2] = ACTIONS(974), + [aux_sym_cmd_identifier_token3] = ACTIONS(974), + [aux_sym_cmd_identifier_token4] = ACTIONS(974), + [aux_sym_cmd_identifier_token5] = ACTIONS(974), + [aux_sym_cmd_identifier_token6] = ACTIONS(974), + [aux_sym_cmd_identifier_token7] = ACTIONS(974), + [aux_sym_cmd_identifier_token8] = ACTIONS(974), + [aux_sym_cmd_identifier_token9] = ACTIONS(974), + [aux_sym_cmd_identifier_token10] = ACTIONS(974), + [aux_sym_cmd_identifier_token11] = ACTIONS(974), + [aux_sym_cmd_identifier_token12] = ACTIONS(974), + [aux_sym_cmd_identifier_token13] = ACTIONS(974), + [aux_sym_cmd_identifier_token14] = ACTIONS(974), + [aux_sym_cmd_identifier_token15] = ACTIONS(974), + [aux_sym_cmd_identifier_token16] = ACTIONS(974), + [aux_sym_cmd_identifier_token17] = ACTIONS(974), + [aux_sym_cmd_identifier_token18] = ACTIONS(974), + [aux_sym_cmd_identifier_token19] = ACTIONS(974), + [aux_sym_cmd_identifier_token20] = ACTIONS(974), + [aux_sym_cmd_identifier_token21] = ACTIONS(974), + [aux_sym_cmd_identifier_token22] = ACTIONS(974), + [aux_sym_cmd_identifier_token23] = ACTIONS(974), + [aux_sym_cmd_identifier_token24] = ACTIONS(974), + [aux_sym_cmd_identifier_token25] = ACTIONS(974), + [aux_sym_cmd_identifier_token26] = ACTIONS(974), + [aux_sym_cmd_identifier_token27] = ACTIONS(974), + [aux_sym_cmd_identifier_token28] = ACTIONS(974), + [aux_sym_cmd_identifier_token29] = ACTIONS(974), + [aux_sym_cmd_identifier_token30] = ACTIONS(974), + [aux_sym_cmd_identifier_token31] = ACTIONS(974), + [aux_sym_cmd_identifier_token32] = ACTIONS(974), + [aux_sym_cmd_identifier_token33] = ACTIONS(974), + [aux_sym_cmd_identifier_token34] = ACTIONS(974), + [aux_sym_cmd_identifier_token35] = ACTIONS(974), + [aux_sym_cmd_identifier_token36] = ACTIONS(974), + [aux_sym_cmd_identifier_token37] = ACTIONS(974), + [aux_sym_cmd_identifier_token38] = ACTIONS(974), + [aux_sym_cmd_identifier_token39] = ACTIONS(974), + [aux_sym_cmd_identifier_token40] = ACTIONS(974), + [anon_sym_def] = ACTIONS(974), + [anon_sym_export_DASHenv] = ACTIONS(974), + [anon_sym_extern] = ACTIONS(974), + [anon_sym_module] = ACTIONS(974), + [anon_sym_use] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(974), + [anon_sym_COMMA] = ACTIONS(974), + [anon_sym_DOLLAR] = ACTIONS(974), + [anon_sym_error] = ACTIONS(974), + [anon_sym_DASH2] = ACTIONS(974), + [anon_sym_break] = ACTIONS(974), + [anon_sym_continue] = ACTIONS(974), + [anon_sym_for] = ACTIONS(974), + [anon_sym_in2] = ACTIONS(974), + [anon_sym_loop] = ACTIONS(974), + [anon_sym_make] = ACTIONS(974), + [anon_sym_while] = ACTIONS(974), + [anon_sym_do] = ACTIONS(974), + [anon_sym_if] = ACTIONS(974), + [anon_sym_else] = ACTIONS(974), + [anon_sym_match] = ACTIONS(974), + [anon_sym_RBRACE] = ACTIONS(974), + [anon_sym_try] = ACTIONS(974), + [anon_sym_catch] = ACTIONS(974), + [anon_sym_return] = ACTIONS(974), + [anon_sym_source] = ACTIONS(974), + [anon_sym_source_DASHenv] = ACTIONS(974), + [anon_sym_hide] = ACTIONS(974), + [anon_sym_hide_DASHenv] = ACTIONS(974), + [anon_sym_overlay] = ACTIONS(974), + [anon_sym_as] = ACTIONS(974), + [anon_sym_PLUS2] = ACTIONS(974), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(974), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(974), + [aux_sym__val_number_decimal_token1] = ACTIONS(974), + [aux_sym__val_number_decimal_token2] = ACTIONS(974), + [aux_sym__val_number_decimal_token3] = ACTIONS(974), + [aux_sym__val_number_decimal_token4] = ACTIONS(974), + [aux_sym__val_number_token1] = ACTIONS(974), + [aux_sym__val_number_token2] = ACTIONS(974), + [aux_sym__val_number_token3] = ACTIONS(974), + [aux_sym__val_number_token4] = ACTIONS(974), + [aux_sym__val_number_token5] = ACTIONS(974), + [aux_sym__val_number_token6] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(974), + [sym__str_single_quotes] = ACTIONS(974), + [sym__str_back_ticks] = ACTIONS(974), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(974), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(974), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(974), + [sym__entry_separator] = ACTIONS(976), + [anon_sym_register] = ACTIONS(974), + [anon_sym_DOT2] = ACTIONS(974), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(976), + }, + [576] = { + [sym__expr_parenthesized_immediate] = STATE(7403), + [sym_comment] = STATE(576), + [anon_sym_export] = ACTIONS(2018), + [anon_sym_alias] = ACTIONS(2018), + [anon_sym_let] = ACTIONS(2018), + [anon_sym_let_DASHenv] = ACTIONS(2018), + [anon_sym_mut] = ACTIONS(2018), + [anon_sym_const] = ACTIONS(2018), + [aux_sym_cmd_identifier_token1] = ACTIONS(2018), + [aux_sym_cmd_identifier_token2] = ACTIONS(2020), + [aux_sym_cmd_identifier_token3] = ACTIONS(2020), + [aux_sym_cmd_identifier_token4] = ACTIONS(2020), + [aux_sym_cmd_identifier_token5] = ACTIONS(2020), + [aux_sym_cmd_identifier_token6] = ACTIONS(2020), + [aux_sym_cmd_identifier_token7] = ACTIONS(2020), + [aux_sym_cmd_identifier_token8] = ACTIONS(2018), + [aux_sym_cmd_identifier_token9] = ACTIONS(2018), + [aux_sym_cmd_identifier_token10] = ACTIONS(2020), + [aux_sym_cmd_identifier_token11] = ACTIONS(2020), + [aux_sym_cmd_identifier_token12] = ACTIONS(2018), + [aux_sym_cmd_identifier_token13] = ACTIONS(2018), + [aux_sym_cmd_identifier_token14] = ACTIONS(2018), + [aux_sym_cmd_identifier_token15] = ACTIONS(2018), + [aux_sym_cmd_identifier_token16] = ACTIONS(2020), + [aux_sym_cmd_identifier_token17] = ACTIONS(2020), + [aux_sym_cmd_identifier_token18] = ACTIONS(2020), + [aux_sym_cmd_identifier_token19] = ACTIONS(2020), + [aux_sym_cmd_identifier_token20] = ACTIONS(2020), + [aux_sym_cmd_identifier_token21] = ACTIONS(2020), + [aux_sym_cmd_identifier_token22] = ACTIONS(2020), + [aux_sym_cmd_identifier_token23] = ACTIONS(2020), + [aux_sym_cmd_identifier_token24] = ACTIONS(2020), + [aux_sym_cmd_identifier_token25] = ACTIONS(2020), + [aux_sym_cmd_identifier_token26] = ACTIONS(2020), + [aux_sym_cmd_identifier_token27] = ACTIONS(2020), + [aux_sym_cmd_identifier_token28] = ACTIONS(2020), + [aux_sym_cmd_identifier_token29] = ACTIONS(2020), + [aux_sym_cmd_identifier_token30] = ACTIONS(2020), + [aux_sym_cmd_identifier_token31] = ACTIONS(2020), + [aux_sym_cmd_identifier_token32] = ACTIONS(2020), + [aux_sym_cmd_identifier_token33] = ACTIONS(2020), + [aux_sym_cmd_identifier_token34] = ACTIONS(2018), + [aux_sym_cmd_identifier_token35] = ACTIONS(2020), + [aux_sym_cmd_identifier_token36] = ACTIONS(2020), + [aux_sym_cmd_identifier_token37] = ACTIONS(2020), + [aux_sym_cmd_identifier_token38] = ACTIONS(2018), + [aux_sym_cmd_identifier_token39] = ACTIONS(2020), + [aux_sym_cmd_identifier_token40] = ACTIONS(2020), + [anon_sym_def] = ACTIONS(2018), + [anon_sym_export_DASHenv] = ACTIONS(2018), + [anon_sym_extern] = ACTIONS(2018), + [anon_sym_module] = ACTIONS(2018), + [anon_sym_use] = ACTIONS(2018), + [anon_sym_LPAREN] = ACTIONS(2018), + [anon_sym_COMMA] = ACTIONS(2020), + [anon_sym_DOLLAR] = ACTIONS(2018), + [anon_sym_error] = ACTIONS(2018), + [anon_sym_DASH2] = ACTIONS(2018), + [anon_sym_break] = ACTIONS(2018), + [anon_sym_continue] = ACTIONS(2018), + [anon_sym_for] = ACTIONS(2018), + [anon_sym_in2] = ACTIONS(2018), + [anon_sym_loop] = ACTIONS(2018), + [anon_sym_make] = ACTIONS(2018), + [anon_sym_while] = ACTIONS(2018), + [anon_sym_do] = ACTIONS(2018), + [anon_sym_if] = ACTIONS(2018), + [anon_sym_else] = ACTIONS(2018), + [anon_sym_match] = ACTIONS(2018), + [anon_sym_RBRACE] = ACTIONS(2020), + [anon_sym_try] = ACTIONS(2018), + [anon_sym_catch] = ACTIONS(2018), + [anon_sym_return] = ACTIONS(2018), + [anon_sym_source] = ACTIONS(2018), + [anon_sym_source_DASHenv] = ACTIONS(2018), + [anon_sym_hide] = ACTIONS(2018), + [anon_sym_hide_DASHenv] = ACTIONS(2018), + [anon_sym_overlay] = ACTIONS(2018), + [anon_sym_as] = ACTIONS(2018), + [anon_sym_LPAREN2] = ACTIONS(1641), + [anon_sym_PLUS2] = ACTIONS(2018), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2020), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2020), + [aux_sym__val_number_decimal_token1] = ACTIONS(2018), + [aux_sym__val_number_decimal_token2] = ACTIONS(2020), + [aux_sym__val_number_decimal_token3] = ACTIONS(2020), + [aux_sym__val_number_decimal_token4] = ACTIONS(2020), + [aux_sym__val_number_token1] = ACTIONS(2020), + [aux_sym__val_number_token2] = ACTIONS(2020), + [aux_sym__val_number_token3] = ACTIONS(2020), + [aux_sym__val_number_token4] = ACTIONS(2018), + [aux_sym__val_number_token5] = ACTIONS(2018), + [aux_sym__val_number_token6] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2020), + [sym__str_single_quotes] = ACTIONS(2020), + [sym__str_back_ticks] = ACTIONS(2020), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2020), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2020), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2020), + [anon_sym_register] = ACTIONS(2018), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2020), + }, + [577] = { + [sym_expr_parenthesized] = STATE(4174), + [sym__spread_parenthesized] = STATE(4559), + [sym_val_range] = STATE(4561), + [sym__val_range] = STATE(7769), + [sym__val_range_with_end] = STATE(7386), + [sym__value] = STATE(4561), + [sym_val_nothing] = STATE(4602), + [sym_val_bool] = STATE(4397), + [sym__spread_variable] = STATE(4563), + [sym_val_variable] = STATE(4185), + [sym_val_number] = STATE(4602), + [sym__val_number_decimal] = STATE(3953), + [sym__val_number] = STATE(4604), + [sym_val_duration] = STATE(4602), + [sym_val_filesize] = STATE(4602), + [sym_val_binary] = STATE(4602), + [sym_val_string] = STATE(4602), + [sym__raw_str] = STATE(4059), + [sym__str_double_quotes] = STATE(4059), + [sym_val_interpolated] = STATE(4602), + [sym__inter_single_quotes] = STATE(4555), + [sym__inter_double_quotes] = STATE(4607), + [sym_val_list] = STATE(4602), + [sym__spread_list] = STATE(4559), + [sym_val_record] = STATE(4602), + [sym_val_table] = STATE(4602), + [sym_val_closure] = STATE(4602), + [sym__cmd_arg] = STATE(4960), + [sym_redirection] = STATE(4565), + [sym__flag] = STATE(4566), + [sym_short_flag] = STATE(4680), + [sym_long_flag] = STATE(4680), + [sym_unquoted] = STATE(4394), + [sym__unquoted_with_expr] = STATE(4622), + [sym__unquoted_anonymous_prefix] = STATE(6997), + [sym_comment] = STATE(577), + [sym__newline] = ACTIONS(2288), + [sym__space] = ACTIONS(2290), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_PIPE] = ACTIONS(2288), + [anon_sym_err_GT_PIPE] = ACTIONS(2288), + [anon_sym_out_GT_PIPE] = ACTIONS(2288), + [anon_sym_e_GT_PIPE] = ACTIONS(2288), + [anon_sym_o_GT_PIPE] = ACTIONS(2288), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2288), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2288), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2288), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2104), + [anon_sym_LPAREN] = ACTIONS(2106), + [anon_sym_RPAREN] = ACTIONS(2288), + [anon_sym_DOLLAR] = ACTIONS(2108), + [anon_sym_DASH_DASH] = ACTIONS(2110), + [anon_sym_DASH2] = ACTIONS(2112), + [anon_sym_LBRACE] = ACTIONS(2114), + [anon_sym_DOT_DOT] = ACTIONS(2116), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2118), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2120), + [anon_sym_DOT_DOT_LT] = ACTIONS(2120), + [anon_sym_null] = ACTIONS(2122), + [anon_sym_true] = ACTIONS(2124), + [anon_sym_false] = ACTIONS(2124), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2126), + [aux_sym__val_number_decimal_token1] = ACTIONS(2128), + [aux_sym__val_number_decimal_token2] = ACTIONS(2128), + [aux_sym__val_number_decimal_token3] = ACTIONS(2130), + [aux_sym__val_number_decimal_token4] = ACTIONS(2132), + [aux_sym__val_number_token1] = ACTIONS(2134), + [aux_sym__val_number_token2] = ACTIONS(2134), + [aux_sym__val_number_token3] = ACTIONS(2134), + [aux_sym__val_number_token4] = ACTIONS(2136), + [aux_sym__val_number_token5] = ACTIONS(2136), + [aux_sym__val_number_token6] = ACTIONS(2136), + [anon_sym_0b] = ACTIONS(2138), + [anon_sym_0o] = ACTIONS(2140), + [anon_sym_0x] = ACTIONS(2140), + [sym_val_date] = ACTIONS(2142), + [anon_sym_DQUOTE] = ACTIONS(2144), + [sym__str_single_quotes] = ACTIONS(2146), + [sym__str_back_ticks] = ACTIONS(2146), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2148), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2150), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2152), + [anon_sym_err_GT] = ACTIONS(2156), + [anon_sym_out_GT] = ACTIONS(2156), + [anon_sym_e_GT] = ACTIONS(2156), + [anon_sym_o_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT] = ACTIONS(2156), + [anon_sym_err_GT_GT] = ACTIONS(2156), + [anon_sym_out_GT_GT] = ACTIONS(2156), + [anon_sym_e_GT_GT] = ACTIONS(2156), + [anon_sym_o_GT_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2156), + [aux_sym_unquoted_token1] = ACTIONS(2158), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2160), + }, + [578] = { + [sym__expr_parenthesized_immediate] = STATE(7668), + [sym_comment] = STATE(578), + [anon_sym_export] = ACTIONS(2174), + [anon_sym_alias] = ACTIONS(2174), + [anon_sym_let] = ACTIONS(2174), + [anon_sym_let_DASHenv] = ACTIONS(2174), + [anon_sym_mut] = ACTIONS(2174), + [anon_sym_const] = ACTIONS(2174), + [aux_sym_cmd_identifier_token1] = ACTIONS(2174), + [aux_sym_cmd_identifier_token2] = ACTIONS(2176), + [aux_sym_cmd_identifier_token3] = ACTIONS(2176), + [aux_sym_cmd_identifier_token4] = ACTIONS(2176), + [aux_sym_cmd_identifier_token5] = ACTIONS(2176), + [aux_sym_cmd_identifier_token6] = ACTIONS(2176), + [aux_sym_cmd_identifier_token7] = ACTIONS(2176), + [aux_sym_cmd_identifier_token8] = ACTIONS(2174), + [aux_sym_cmd_identifier_token9] = ACTIONS(2174), + [aux_sym_cmd_identifier_token10] = ACTIONS(2176), + [aux_sym_cmd_identifier_token11] = ACTIONS(2176), + [aux_sym_cmd_identifier_token12] = ACTIONS(2174), + [aux_sym_cmd_identifier_token13] = ACTIONS(2174), + [aux_sym_cmd_identifier_token14] = ACTIONS(2174), + [aux_sym_cmd_identifier_token15] = ACTIONS(2174), + [aux_sym_cmd_identifier_token16] = ACTIONS(2176), + [aux_sym_cmd_identifier_token17] = ACTIONS(2176), + [aux_sym_cmd_identifier_token18] = ACTIONS(2176), + [aux_sym_cmd_identifier_token19] = ACTIONS(2176), + [aux_sym_cmd_identifier_token20] = ACTIONS(2176), + [aux_sym_cmd_identifier_token21] = ACTIONS(2176), + [aux_sym_cmd_identifier_token22] = ACTIONS(2176), + [aux_sym_cmd_identifier_token23] = ACTIONS(2176), + [aux_sym_cmd_identifier_token24] = ACTIONS(2176), + [aux_sym_cmd_identifier_token25] = ACTIONS(2176), + [aux_sym_cmd_identifier_token26] = ACTIONS(2176), + [aux_sym_cmd_identifier_token27] = ACTIONS(2176), + [aux_sym_cmd_identifier_token28] = ACTIONS(2176), + [aux_sym_cmd_identifier_token29] = ACTIONS(2176), + [aux_sym_cmd_identifier_token30] = ACTIONS(2176), + [aux_sym_cmd_identifier_token31] = ACTIONS(2176), + [aux_sym_cmd_identifier_token32] = ACTIONS(2176), + [aux_sym_cmd_identifier_token33] = ACTIONS(2176), + [aux_sym_cmd_identifier_token34] = ACTIONS(2174), + [aux_sym_cmd_identifier_token35] = ACTIONS(2176), + [aux_sym_cmd_identifier_token36] = ACTIONS(2176), + [aux_sym_cmd_identifier_token37] = ACTIONS(2176), + [aux_sym_cmd_identifier_token38] = ACTIONS(2174), + [aux_sym_cmd_identifier_token39] = ACTIONS(2176), + [aux_sym_cmd_identifier_token40] = ACTIONS(2176), + [anon_sym_def] = ACTIONS(2174), + [anon_sym_export_DASHenv] = ACTIONS(2174), + [anon_sym_extern] = ACTIONS(2174), + [anon_sym_module] = ACTIONS(2174), + [anon_sym_use] = ACTIONS(2174), + [anon_sym_LPAREN] = ACTIONS(2174), + [anon_sym_COMMA] = ACTIONS(2176), + [anon_sym_DOLLAR] = ACTIONS(2174), + [anon_sym_error] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2174), + [anon_sym_break] = ACTIONS(2174), + [anon_sym_continue] = ACTIONS(2174), + [anon_sym_for] = ACTIONS(2174), + [anon_sym_in2] = ACTIONS(2174), + [anon_sym_loop] = ACTIONS(2174), + [anon_sym_make] = ACTIONS(2174), + [anon_sym_while] = ACTIONS(2174), + [anon_sym_do] = ACTIONS(2174), + [anon_sym_if] = ACTIONS(2174), + [anon_sym_else] = ACTIONS(2174), + [anon_sym_match] = ACTIONS(2174), + [anon_sym_RBRACE] = ACTIONS(2176), + [anon_sym_try] = ACTIONS(2174), + [anon_sym_catch] = ACTIONS(2174), + [anon_sym_return] = ACTIONS(2174), + [anon_sym_source] = ACTIONS(2174), + [anon_sym_source_DASHenv] = ACTIONS(2174), + [anon_sym_hide] = ACTIONS(2174), + [anon_sym_hide_DASHenv] = ACTIONS(2174), + [anon_sym_overlay] = ACTIONS(2174), + [anon_sym_as] = ACTIONS(2174), + [anon_sym_LPAREN2] = ACTIONS(1641), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2176), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2176), + [aux_sym__val_number_decimal_token1] = ACTIONS(2174), + [aux_sym__val_number_decimal_token2] = ACTIONS(2176), + [aux_sym__val_number_decimal_token3] = ACTIONS(2176), + [aux_sym__val_number_decimal_token4] = ACTIONS(2176), + [aux_sym__val_number_token1] = ACTIONS(2176), + [aux_sym__val_number_token2] = ACTIONS(2176), + [aux_sym__val_number_token3] = ACTIONS(2176), + [aux_sym__val_number_token4] = ACTIONS(2174), + [aux_sym__val_number_token5] = ACTIONS(2174), + [aux_sym__val_number_token6] = ACTIONS(2174), + [anon_sym_DQUOTE] = ACTIONS(2176), + [sym__str_single_quotes] = ACTIONS(2176), + [sym__str_back_ticks] = ACTIONS(2176), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2176), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2176), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2176), - [aux_sym__unquoted_in_record_token2] = ACTIONS(2178), - [anon_sym_POUND] = ACTIONS(251), + [anon_sym_register] = ACTIONS(2174), + [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(2176), }, - [558] = { - [sym_comment] = STATE(558), - [anon_sym_export] = ACTIONS(1638), - [anon_sym_alias] = ACTIONS(1638), - [anon_sym_let] = ACTIONS(1638), - [anon_sym_let_DASHenv] = ACTIONS(1638), - [anon_sym_mut] = ACTIONS(1638), - [anon_sym_const] = ACTIONS(1638), - [aux_sym_cmd_identifier_token1] = ACTIONS(1638), - [aux_sym_cmd_identifier_token2] = ACTIONS(1638), - [aux_sym_cmd_identifier_token3] = ACTIONS(1638), - [aux_sym_cmd_identifier_token4] = ACTIONS(1638), - [aux_sym_cmd_identifier_token5] = ACTIONS(1638), - [aux_sym_cmd_identifier_token6] = ACTIONS(1638), - [aux_sym_cmd_identifier_token7] = ACTIONS(1638), - [aux_sym_cmd_identifier_token8] = ACTIONS(1638), - [aux_sym_cmd_identifier_token9] = ACTIONS(1638), - [aux_sym_cmd_identifier_token10] = ACTIONS(1638), - [aux_sym_cmd_identifier_token11] = ACTIONS(1638), - [aux_sym_cmd_identifier_token12] = ACTIONS(1638), - [aux_sym_cmd_identifier_token13] = ACTIONS(1638), - [aux_sym_cmd_identifier_token14] = ACTIONS(1638), - [aux_sym_cmd_identifier_token15] = ACTIONS(1638), - [aux_sym_cmd_identifier_token16] = ACTIONS(1638), - [aux_sym_cmd_identifier_token17] = ACTIONS(1638), - [aux_sym_cmd_identifier_token18] = ACTIONS(1638), - [aux_sym_cmd_identifier_token19] = ACTIONS(1638), - [aux_sym_cmd_identifier_token20] = ACTIONS(1638), - [aux_sym_cmd_identifier_token21] = ACTIONS(1638), - [aux_sym_cmd_identifier_token22] = ACTIONS(1638), - [aux_sym_cmd_identifier_token23] = ACTIONS(1638), - [aux_sym_cmd_identifier_token24] = ACTIONS(1638), - [aux_sym_cmd_identifier_token25] = ACTIONS(1638), - [aux_sym_cmd_identifier_token26] = ACTIONS(1638), - [aux_sym_cmd_identifier_token27] = ACTIONS(1638), - [aux_sym_cmd_identifier_token28] = ACTIONS(1638), - [aux_sym_cmd_identifier_token29] = ACTIONS(1638), - [aux_sym_cmd_identifier_token30] = ACTIONS(1638), - [aux_sym_cmd_identifier_token31] = ACTIONS(1638), - [aux_sym_cmd_identifier_token32] = ACTIONS(1638), - [aux_sym_cmd_identifier_token33] = ACTIONS(1638), - [aux_sym_cmd_identifier_token34] = ACTIONS(1638), - [aux_sym_cmd_identifier_token35] = ACTIONS(1638), - [aux_sym_cmd_identifier_token36] = ACTIONS(1638), - [aux_sym_cmd_identifier_token37] = ACTIONS(1638), - [aux_sym_cmd_identifier_token38] = ACTIONS(1638), - [aux_sym_cmd_identifier_token39] = ACTIONS(1638), - [aux_sym_cmd_identifier_token40] = ACTIONS(1638), - [anon_sym_def] = ACTIONS(1638), - [anon_sym_export_DASHenv] = ACTIONS(1638), - [anon_sym_extern] = ACTIONS(1638), - [anon_sym_module] = ACTIONS(1638), - [anon_sym_use] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1638), - [anon_sym_COMMA] = ACTIONS(1638), - [anon_sym_DOLLAR] = ACTIONS(1638), - [anon_sym_error] = ACTIONS(1638), - [anon_sym_DASH2] = ACTIONS(1638), - [anon_sym_break] = ACTIONS(1638), - [anon_sym_continue] = ACTIONS(1638), - [anon_sym_for] = ACTIONS(1638), - [anon_sym_in2] = ACTIONS(1638), - [anon_sym_loop] = ACTIONS(1638), - [anon_sym_make] = ACTIONS(1638), - [anon_sym_while] = ACTIONS(1638), - [anon_sym_do] = ACTIONS(1638), - [anon_sym_if] = ACTIONS(1638), - [anon_sym_else] = ACTIONS(1638), - [anon_sym_match] = ACTIONS(1638), - [anon_sym_RBRACE] = ACTIONS(1638), - [anon_sym_try] = ACTIONS(1638), - [anon_sym_catch] = ACTIONS(1638), - [anon_sym_return] = ACTIONS(1638), - [anon_sym_source] = ACTIONS(1638), - [anon_sym_source_DASHenv] = ACTIONS(1638), - [anon_sym_register] = ACTIONS(1638), - [anon_sym_hide] = ACTIONS(1638), - [anon_sym_hide_DASHenv] = ACTIONS(1638), - [anon_sym_overlay] = ACTIONS(1638), - [anon_sym_as] = ACTIONS(1638), - [anon_sym_PLUS2] = ACTIONS(1638), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1638), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1638), - [aux_sym__val_number_decimal_token1] = ACTIONS(1638), - [aux_sym__val_number_decimal_token2] = ACTIONS(1638), - [aux_sym__val_number_decimal_token3] = ACTIONS(1638), - [aux_sym__val_number_decimal_token4] = ACTIONS(1638), - [aux_sym__val_number_token1] = ACTIONS(1638), - [aux_sym__val_number_token2] = ACTIONS(1638), - [aux_sym__val_number_token3] = ACTIONS(1638), - [aux_sym__val_number_token4] = ACTIONS(1638), - [aux_sym__val_number_token5] = ACTIONS(1638), - [aux_sym__val_number_token6] = ACTIONS(1638), - [anon_sym_DQUOTE] = ACTIONS(1638), - [sym__str_single_quotes] = ACTIONS(1638), - [sym__str_back_ticks] = ACTIONS(1638), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1638), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1638), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1638), - [sym__entry_separator] = ACTIONS(1650), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1652), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1650), + [579] = { + [sym__expr_parenthesized_immediate] = STATE(7668), + [sym_comment] = STATE(579), + [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(2180), + [aux_sym_cmd_identifier_token3] = ACTIONS(2180), + [aux_sym_cmd_identifier_token4] = ACTIONS(2180), + [aux_sym_cmd_identifier_token5] = ACTIONS(2180), + [aux_sym_cmd_identifier_token6] = ACTIONS(2180), + [aux_sym_cmd_identifier_token7] = ACTIONS(2180), + [aux_sym_cmd_identifier_token8] = ACTIONS(2178), + [aux_sym_cmd_identifier_token9] = ACTIONS(2178), + [aux_sym_cmd_identifier_token10] = ACTIONS(2180), + [aux_sym_cmd_identifier_token11] = ACTIONS(2180), + [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(2180), + [aux_sym_cmd_identifier_token17] = ACTIONS(2180), + [aux_sym_cmd_identifier_token18] = ACTIONS(2180), + [aux_sym_cmd_identifier_token19] = ACTIONS(2180), + [aux_sym_cmd_identifier_token20] = ACTIONS(2180), + [aux_sym_cmd_identifier_token21] = ACTIONS(2180), + [aux_sym_cmd_identifier_token22] = ACTIONS(2180), + [aux_sym_cmd_identifier_token23] = ACTIONS(2180), + [aux_sym_cmd_identifier_token24] = ACTIONS(2180), + [aux_sym_cmd_identifier_token25] = ACTIONS(2180), + [aux_sym_cmd_identifier_token26] = ACTIONS(2180), + [aux_sym_cmd_identifier_token27] = ACTIONS(2180), + [aux_sym_cmd_identifier_token28] = ACTIONS(2180), + [aux_sym_cmd_identifier_token29] = ACTIONS(2180), + [aux_sym_cmd_identifier_token30] = ACTIONS(2180), + [aux_sym_cmd_identifier_token31] = ACTIONS(2180), + [aux_sym_cmd_identifier_token32] = ACTIONS(2180), + [aux_sym_cmd_identifier_token33] = ACTIONS(2180), + [aux_sym_cmd_identifier_token34] = ACTIONS(2178), + [aux_sym_cmd_identifier_token35] = ACTIONS(2180), + [aux_sym_cmd_identifier_token36] = ACTIONS(2180), + [aux_sym_cmd_identifier_token37] = ACTIONS(2180), + [aux_sym_cmd_identifier_token38] = ACTIONS(2178), + [aux_sym_cmd_identifier_token39] = ACTIONS(2180), + [aux_sym_cmd_identifier_token40] = ACTIONS(2180), + [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_COMMA] = ACTIONS(2180), + [anon_sym_DOLLAR] = ACTIONS(2178), + [anon_sym_error] = ACTIONS(2178), + [anon_sym_DASH2] = ACTIONS(2178), + [anon_sym_break] = ACTIONS(2178), + [anon_sym_continue] = ACTIONS(2178), + [anon_sym_for] = ACTIONS(2178), + [anon_sym_in2] = 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(2180), + [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_hide] = ACTIONS(2178), + [anon_sym_hide_DASHenv] = ACTIONS(2178), + [anon_sym_overlay] = ACTIONS(2178), + [anon_sym_as] = ACTIONS(2178), + [anon_sym_LPAREN2] = ACTIONS(1641), + [anon_sym_PLUS2] = ACTIONS(2178), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2180), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2180), + [aux_sym__val_number_decimal_token1] = ACTIONS(2178), + [aux_sym__val_number_decimal_token2] = ACTIONS(2180), + [aux_sym__val_number_decimal_token3] = ACTIONS(2180), + [aux_sym__val_number_decimal_token4] = ACTIONS(2180), + [aux_sym__val_number_token1] = ACTIONS(2180), + [aux_sym__val_number_token2] = ACTIONS(2180), + [aux_sym__val_number_token3] = ACTIONS(2180), + [aux_sym__val_number_token4] = ACTIONS(2178), + [aux_sym__val_number_token5] = ACTIONS(2178), + [aux_sym__val_number_token6] = ACTIONS(2178), + [anon_sym_DQUOTE] = ACTIONS(2180), + [sym__str_single_quotes] = ACTIONS(2180), + [sym__str_back_ticks] = ACTIONS(2180), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2180), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2180), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2180), + [anon_sym_register] = ACTIONS(2178), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2180), }, - [559] = { - [sym_comment] = STATE(559), + [580] = { + [sym_comment] = STATE(580), [anon_sym_export] = ACTIONS(2292), [anon_sym_alias] = ACTIONS(2292), [anon_sym_let] = ACTIONS(2292), @@ -142691,12 +144812,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(2292), [anon_sym_source] = ACTIONS(2292), [anon_sym_source_DASHenv] = ACTIONS(2292), - [anon_sym_register] = ACTIONS(2292), [anon_sym_hide] = ACTIONS(2292), [anon_sym_hide_DASHenv] = ACTIONS(2292), [anon_sym_overlay] = ACTIONS(2292), [anon_sym_as] = ACTIONS(2292), - [anon_sym_LPAREN2] = ACTIONS(2294), [anon_sym_PLUS2] = ACTIONS(2292), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2292), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2292), @@ -142710,975 +144829,2211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token4] = ACTIONS(2292), [aux_sym__val_number_token5] = ACTIONS(2292), [aux_sym__val_number_token6] = ACTIONS(2292), + [anon_sym_LBRACK2] = ACTIONS(2294), [anon_sym_DQUOTE] = ACTIONS(2292), [sym__str_single_quotes] = ACTIONS(2292), [sym__str_back_ticks] = ACTIONS(2292), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2292), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2292), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2292), - [sym__entry_separator] = ACTIONS(2294), + [sym__entry_separator] = ACTIONS(2296), + [anon_sym_register] = ACTIONS(2292), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2294), + [sym_raw_string_begin] = ACTIONS(2296), }, - [560] = { - [sym_comment] = STATE(560), - [anon_sym_export] = ACTIONS(1711), - [anon_sym_alias] = ACTIONS(1711), - [anon_sym_let] = ACTIONS(1711), - [anon_sym_let_DASHenv] = ACTIONS(1711), - [anon_sym_mut] = ACTIONS(1711), - [anon_sym_const] = ACTIONS(1711), - [aux_sym_cmd_identifier_token1] = ACTIONS(1711), - [aux_sym_cmd_identifier_token2] = ACTIONS(1713), - [aux_sym_cmd_identifier_token3] = ACTIONS(1713), - [aux_sym_cmd_identifier_token4] = ACTIONS(1713), - [aux_sym_cmd_identifier_token5] = ACTIONS(1713), - [aux_sym_cmd_identifier_token6] = ACTIONS(1713), - [aux_sym_cmd_identifier_token7] = ACTIONS(1713), - [aux_sym_cmd_identifier_token8] = ACTIONS(1711), - [aux_sym_cmd_identifier_token9] = ACTIONS(1711), - [aux_sym_cmd_identifier_token10] = ACTIONS(1713), - [aux_sym_cmd_identifier_token11] = ACTIONS(1713), - [aux_sym_cmd_identifier_token12] = ACTIONS(1711), - [aux_sym_cmd_identifier_token13] = ACTIONS(1711), - [aux_sym_cmd_identifier_token14] = ACTIONS(1711), - [aux_sym_cmd_identifier_token15] = ACTIONS(1711), - [aux_sym_cmd_identifier_token16] = ACTIONS(1713), - [aux_sym_cmd_identifier_token17] = ACTIONS(1713), - [aux_sym_cmd_identifier_token18] = ACTIONS(1713), - [aux_sym_cmd_identifier_token19] = ACTIONS(1713), - [aux_sym_cmd_identifier_token20] = ACTIONS(1713), - [aux_sym_cmd_identifier_token21] = ACTIONS(1713), - [aux_sym_cmd_identifier_token22] = ACTIONS(1713), - [aux_sym_cmd_identifier_token23] = ACTIONS(1713), - [aux_sym_cmd_identifier_token24] = ACTIONS(1713), - [aux_sym_cmd_identifier_token25] = ACTIONS(1713), - [aux_sym_cmd_identifier_token26] = ACTIONS(1713), - [aux_sym_cmd_identifier_token27] = ACTIONS(1713), - [aux_sym_cmd_identifier_token28] = ACTIONS(1713), - [aux_sym_cmd_identifier_token29] = ACTIONS(1713), - [aux_sym_cmd_identifier_token30] = ACTIONS(1713), - [aux_sym_cmd_identifier_token31] = ACTIONS(1713), - [aux_sym_cmd_identifier_token32] = ACTIONS(1713), - [aux_sym_cmd_identifier_token33] = ACTIONS(1713), - [aux_sym_cmd_identifier_token34] = ACTIONS(1711), - [aux_sym_cmd_identifier_token35] = ACTIONS(1713), - [aux_sym_cmd_identifier_token36] = ACTIONS(1713), - [aux_sym_cmd_identifier_token37] = ACTIONS(1713), - [aux_sym_cmd_identifier_token38] = ACTIONS(1711), - [aux_sym_cmd_identifier_token39] = ACTIONS(1713), - [aux_sym_cmd_identifier_token40] = ACTIONS(1713), - [anon_sym_def] = ACTIONS(1711), - [anon_sym_export_DASHenv] = ACTIONS(1711), - [anon_sym_extern] = ACTIONS(1711), - [anon_sym_module] = ACTIONS(1711), - [anon_sym_use] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_COMMA] = ACTIONS(1713), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_error] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_break] = ACTIONS(1711), - [anon_sym_continue] = ACTIONS(1711), - [anon_sym_for] = ACTIONS(1711), - [anon_sym_in2] = ACTIONS(1711), - [anon_sym_loop] = ACTIONS(1711), - [anon_sym_make] = ACTIONS(1711), - [anon_sym_while] = ACTIONS(1711), - [anon_sym_do] = ACTIONS(1711), - [anon_sym_if] = ACTIONS(1711), - [anon_sym_else] = ACTIONS(1711), - [anon_sym_match] = ACTIONS(1711), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_try] = ACTIONS(1711), - [anon_sym_catch] = ACTIONS(1711), - [anon_sym_return] = ACTIONS(1711), - [anon_sym_source] = ACTIONS(1711), - [anon_sym_source_DASHenv] = ACTIONS(1711), - [anon_sym_register] = ACTIONS(1711), - [anon_sym_hide] = ACTIONS(1711), - [anon_sym_hide_DASHenv] = ACTIONS(1711), - [anon_sym_overlay] = ACTIONS(1711), - [anon_sym_as] = ACTIONS(1711), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1713), - [aux_sym__immediate_decimal_token1] = ACTIONS(2296), - [aux_sym__immediate_decimal_token2] = ACTIONS(2298), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1713), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1713), - [aux_sym__val_number_decimal_token3] = ACTIONS(1713), - [aux_sym__val_number_decimal_token4] = ACTIONS(1713), - [aux_sym__val_number_token1] = ACTIONS(1713), - [aux_sym__val_number_token2] = ACTIONS(1713), - [aux_sym__val_number_token3] = ACTIONS(1713), - [aux_sym__val_number_token4] = ACTIONS(1711), - [aux_sym__val_number_token5] = ACTIONS(1711), - [aux_sym__val_number_token6] = ACTIONS(1711), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym__str_single_quotes] = ACTIONS(1713), - [sym__str_back_ticks] = ACTIONS(1713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1713), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1713), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1713), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1713), + [581] = { + [sym__expr_parenthesized_immediate] = STATE(7668), + [sym_comment] = STATE(581), + [anon_sym_export] = ACTIONS(2182), + [anon_sym_alias] = ACTIONS(2182), + [anon_sym_let] = ACTIONS(2182), + [anon_sym_let_DASHenv] = ACTIONS(2182), + [anon_sym_mut] = ACTIONS(2182), + [anon_sym_const] = ACTIONS(2182), + [aux_sym_cmd_identifier_token1] = ACTIONS(2182), + [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(2182), + [aux_sym_cmd_identifier_token9] = ACTIONS(2182), + [aux_sym_cmd_identifier_token10] = ACTIONS(2184), + [aux_sym_cmd_identifier_token11] = ACTIONS(2184), + [aux_sym_cmd_identifier_token12] = ACTIONS(2182), + [aux_sym_cmd_identifier_token13] = ACTIONS(2182), + [aux_sym_cmd_identifier_token14] = ACTIONS(2182), + [aux_sym_cmd_identifier_token15] = ACTIONS(2182), + [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(2182), + [aux_sym_cmd_identifier_token35] = ACTIONS(2184), + [aux_sym_cmd_identifier_token36] = ACTIONS(2184), + [aux_sym_cmd_identifier_token37] = ACTIONS(2184), + [aux_sym_cmd_identifier_token38] = ACTIONS(2182), + [aux_sym_cmd_identifier_token39] = ACTIONS(2184), + [aux_sym_cmd_identifier_token40] = ACTIONS(2184), + [anon_sym_def] = ACTIONS(2182), + [anon_sym_export_DASHenv] = ACTIONS(2182), + [anon_sym_extern] = ACTIONS(2182), + [anon_sym_module] = ACTIONS(2182), + [anon_sym_use] = ACTIONS(2182), + [anon_sym_LPAREN] = ACTIONS(2182), + [anon_sym_COMMA] = ACTIONS(2184), + [anon_sym_DOLLAR] = ACTIONS(2182), + [anon_sym_error] = ACTIONS(2182), + [anon_sym_DASH2] = ACTIONS(2182), + [anon_sym_break] = ACTIONS(2182), + [anon_sym_continue] = ACTIONS(2182), + [anon_sym_for] = ACTIONS(2182), + [anon_sym_in2] = ACTIONS(2182), + [anon_sym_loop] = ACTIONS(2182), + [anon_sym_make] = ACTIONS(2182), + [anon_sym_while] = ACTIONS(2182), + [anon_sym_do] = ACTIONS(2182), + [anon_sym_if] = ACTIONS(2182), + [anon_sym_else] = ACTIONS(2182), + [anon_sym_match] = ACTIONS(2182), + [anon_sym_RBRACE] = ACTIONS(2184), + [anon_sym_try] = ACTIONS(2182), + [anon_sym_catch] = ACTIONS(2182), + [anon_sym_return] = ACTIONS(2182), + [anon_sym_source] = ACTIONS(2182), + [anon_sym_source_DASHenv] = ACTIONS(2182), + [anon_sym_hide] = ACTIONS(2182), + [anon_sym_hide_DASHenv] = ACTIONS(2182), + [anon_sym_overlay] = ACTIONS(2182), + [anon_sym_as] = ACTIONS(2182), + [anon_sym_LPAREN2] = ACTIONS(1641), + [anon_sym_PLUS2] = ACTIONS(2182), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2184), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2184), + [aux_sym__val_number_decimal_token1] = ACTIONS(2182), + [aux_sym__val_number_decimal_token2] = ACTIONS(2184), + [aux_sym__val_number_decimal_token3] = ACTIONS(2184), + [aux_sym__val_number_decimal_token4] = ACTIONS(2184), + [aux_sym__val_number_token1] = ACTIONS(2184), + [aux_sym__val_number_token2] = ACTIONS(2184), + [aux_sym__val_number_token3] = ACTIONS(2184), + [aux_sym__val_number_token4] = ACTIONS(2182), + [aux_sym__val_number_token5] = ACTIONS(2182), + [aux_sym__val_number_token6] = ACTIONS(2182), + [anon_sym_DQUOTE] = ACTIONS(2184), + [sym__str_single_quotes] = ACTIONS(2184), + [sym__str_back_ticks] = ACTIONS(2184), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2184), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2184), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2184), + [anon_sym_register] = ACTIONS(2182), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2184), }, - [561] = { - [sym_comment] = STATE(561), - [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), - [aux_sym_cmd_identifier_token37] = ACTIONS(1755), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1755), - [aux_sym_cmd_identifier_token40] = ACTIONS(1755), - [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(1755), - [anon_sym_COMMA] = ACTIONS(1755), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in2] = 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_RBRACE] = 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_as] = ACTIONS(1755), - [anon_sym_PLUS2] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1755), - [aux_sym__immediate_decimal_token2] = ACTIONS(2182), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1755), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1755), - [aux_sym__val_number_decimal_token3] = ACTIONS(1755), - [aux_sym__val_number_decimal_token4] = ACTIONS(1755), - [aux_sym__val_number_token1] = ACTIONS(1755), - [aux_sym__val_number_token2] = ACTIONS(1755), - [aux_sym__val_number_token3] = ACTIONS(1755), - [aux_sym__val_number_token4] = ACTIONS(1755), - [aux_sym__val_number_token5] = ACTIONS(1755), - [aux_sym__val_number_token6] = ACTIONS(1755), - [anon_sym_DQUOTE] = ACTIONS(1755), - [sym__str_single_quotes] = ACTIONS(1755), - [sym__str_back_ticks] = ACTIONS(1755), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1755), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1755), - [sym__entry_separator] = ACTIONS(1757), + [582] = { + [sym__expr_parenthesized_immediate] = STATE(7668), + [sym_comment] = STATE(582), + [anon_sym_export] = ACTIONS(2186), + [anon_sym_alias] = ACTIONS(2186), + [anon_sym_let] = ACTIONS(2186), + [anon_sym_let_DASHenv] = ACTIONS(2186), + [anon_sym_mut] = ACTIONS(2186), + [anon_sym_const] = ACTIONS(2186), + [aux_sym_cmd_identifier_token1] = ACTIONS(2186), + [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(2186), + [aux_sym_cmd_identifier_token9] = ACTIONS(2186), + [aux_sym_cmd_identifier_token10] = ACTIONS(2188), + [aux_sym_cmd_identifier_token11] = ACTIONS(2188), + [aux_sym_cmd_identifier_token12] = ACTIONS(2186), + [aux_sym_cmd_identifier_token13] = ACTIONS(2186), + [aux_sym_cmd_identifier_token14] = ACTIONS(2186), + [aux_sym_cmd_identifier_token15] = ACTIONS(2186), + [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(2186), + [aux_sym_cmd_identifier_token35] = ACTIONS(2188), + [aux_sym_cmd_identifier_token36] = ACTIONS(2188), + [aux_sym_cmd_identifier_token37] = ACTIONS(2188), + [aux_sym_cmd_identifier_token38] = ACTIONS(2186), + [aux_sym_cmd_identifier_token39] = ACTIONS(2188), + [aux_sym_cmd_identifier_token40] = ACTIONS(2188), + [anon_sym_def] = ACTIONS(2186), + [anon_sym_export_DASHenv] = ACTIONS(2186), + [anon_sym_extern] = ACTIONS(2186), + [anon_sym_module] = ACTIONS(2186), + [anon_sym_use] = ACTIONS(2186), + [anon_sym_LPAREN] = ACTIONS(2186), + [anon_sym_COMMA] = ACTIONS(2188), + [anon_sym_DOLLAR] = ACTIONS(2186), + [anon_sym_error] = ACTIONS(2186), + [anon_sym_DASH2] = ACTIONS(2186), + [anon_sym_break] = ACTIONS(2186), + [anon_sym_continue] = ACTIONS(2186), + [anon_sym_for] = ACTIONS(2186), + [anon_sym_in2] = ACTIONS(2186), + [anon_sym_loop] = ACTIONS(2186), + [anon_sym_make] = ACTIONS(2186), + [anon_sym_while] = ACTIONS(2186), + [anon_sym_do] = ACTIONS(2186), + [anon_sym_if] = ACTIONS(2186), + [anon_sym_else] = ACTIONS(2186), + [anon_sym_match] = ACTIONS(2186), + [anon_sym_RBRACE] = ACTIONS(2188), + [anon_sym_try] = ACTIONS(2186), + [anon_sym_catch] = ACTIONS(2186), + [anon_sym_return] = ACTIONS(2186), + [anon_sym_source] = ACTIONS(2186), + [anon_sym_source_DASHenv] = ACTIONS(2186), + [anon_sym_hide] = ACTIONS(2186), + [anon_sym_hide_DASHenv] = ACTIONS(2186), + [anon_sym_overlay] = ACTIONS(2186), + [anon_sym_as] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(1641), + [anon_sym_PLUS2] = ACTIONS(2186), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2188), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2188), + [aux_sym__val_number_decimal_token1] = ACTIONS(2186), + [aux_sym__val_number_decimal_token2] = ACTIONS(2188), + [aux_sym__val_number_decimal_token3] = ACTIONS(2188), + [aux_sym__val_number_decimal_token4] = ACTIONS(2188), + [aux_sym__val_number_token1] = ACTIONS(2188), + [aux_sym__val_number_token2] = ACTIONS(2188), + [aux_sym__val_number_token3] = ACTIONS(2188), + [aux_sym__val_number_token4] = ACTIONS(2186), + [aux_sym__val_number_token5] = ACTIONS(2186), + [aux_sym__val_number_token6] = ACTIONS(2186), + [anon_sym_DQUOTE] = ACTIONS(2188), + [sym__str_single_quotes] = ACTIONS(2188), + [sym__str_back_ticks] = ACTIONS(2188), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2188), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2188), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2188), + [anon_sym_register] = ACTIONS(2186), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2188), + }, + [583] = { + [sym_comment] = STATE(583), + [anon_sym_export] = ACTIONS(1639), + [anon_sym_alias] = ACTIONS(1639), + [anon_sym_let] = ACTIONS(1639), + [anon_sym_let_DASHenv] = ACTIONS(1639), + [anon_sym_mut] = ACTIONS(1639), + [anon_sym_const] = ACTIONS(1639), + [aux_sym_cmd_identifier_token1] = ACTIONS(1639), + [aux_sym_cmd_identifier_token2] = ACTIONS(1639), + [aux_sym_cmd_identifier_token3] = ACTIONS(1639), + [aux_sym_cmd_identifier_token4] = ACTIONS(1639), + [aux_sym_cmd_identifier_token5] = ACTIONS(1639), + [aux_sym_cmd_identifier_token6] = ACTIONS(1639), + [aux_sym_cmd_identifier_token7] = ACTIONS(1639), + [aux_sym_cmd_identifier_token8] = ACTIONS(1639), + [aux_sym_cmd_identifier_token9] = ACTIONS(1639), + [aux_sym_cmd_identifier_token10] = ACTIONS(1639), + [aux_sym_cmd_identifier_token11] = ACTIONS(1639), + [aux_sym_cmd_identifier_token12] = ACTIONS(1639), + [aux_sym_cmd_identifier_token13] = ACTIONS(1639), + [aux_sym_cmd_identifier_token14] = ACTIONS(1639), + [aux_sym_cmd_identifier_token15] = ACTIONS(1639), + [aux_sym_cmd_identifier_token16] = ACTIONS(1639), + [aux_sym_cmd_identifier_token17] = ACTIONS(1639), + [aux_sym_cmd_identifier_token18] = ACTIONS(1639), + [aux_sym_cmd_identifier_token19] = ACTIONS(1639), + [aux_sym_cmd_identifier_token20] = ACTIONS(1639), + [aux_sym_cmd_identifier_token21] = ACTIONS(1639), + [aux_sym_cmd_identifier_token22] = ACTIONS(1639), + [aux_sym_cmd_identifier_token23] = ACTIONS(1639), + [aux_sym_cmd_identifier_token24] = ACTIONS(1639), + [aux_sym_cmd_identifier_token25] = ACTIONS(1639), + [aux_sym_cmd_identifier_token26] = ACTIONS(1639), + [aux_sym_cmd_identifier_token27] = ACTIONS(1639), + [aux_sym_cmd_identifier_token28] = ACTIONS(1639), + [aux_sym_cmd_identifier_token29] = ACTIONS(1639), + [aux_sym_cmd_identifier_token30] = ACTIONS(1639), + [aux_sym_cmd_identifier_token31] = ACTIONS(1639), + [aux_sym_cmd_identifier_token32] = ACTIONS(1639), + [aux_sym_cmd_identifier_token33] = ACTIONS(1639), + [aux_sym_cmd_identifier_token34] = ACTIONS(1639), + [aux_sym_cmd_identifier_token35] = ACTIONS(1639), + [aux_sym_cmd_identifier_token36] = ACTIONS(1639), + [aux_sym_cmd_identifier_token37] = ACTIONS(1639), + [aux_sym_cmd_identifier_token38] = ACTIONS(1639), + [aux_sym_cmd_identifier_token39] = ACTIONS(1639), + [aux_sym_cmd_identifier_token40] = ACTIONS(1639), + [anon_sym_def] = ACTIONS(1639), + [anon_sym_export_DASHenv] = ACTIONS(1639), + [anon_sym_extern] = ACTIONS(1639), + [anon_sym_module] = ACTIONS(1639), + [anon_sym_use] = ACTIONS(1639), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_COMMA] = ACTIONS(1639), + [anon_sym_DOLLAR] = ACTIONS(1639), + [anon_sym_error] = ACTIONS(1639), + [anon_sym_DASH2] = ACTIONS(1639), + [anon_sym_break] = ACTIONS(1639), + [anon_sym_continue] = ACTIONS(1639), + [anon_sym_for] = ACTIONS(1639), + [anon_sym_in2] = ACTIONS(1639), + [anon_sym_loop] = ACTIONS(1639), + [anon_sym_make] = ACTIONS(1639), + [anon_sym_while] = ACTIONS(1639), + [anon_sym_do] = ACTIONS(1639), + [anon_sym_if] = ACTIONS(1639), + [anon_sym_else] = ACTIONS(1639), + [anon_sym_match] = ACTIONS(1639), + [anon_sym_RBRACE] = ACTIONS(1639), + [anon_sym_try] = ACTIONS(1639), + [anon_sym_catch] = ACTIONS(1639), + [anon_sym_return] = ACTIONS(1639), + [anon_sym_source] = ACTIONS(1639), + [anon_sym_source_DASHenv] = ACTIONS(1639), + [anon_sym_hide] = ACTIONS(1639), + [anon_sym_hide_DASHenv] = ACTIONS(1639), + [anon_sym_overlay] = ACTIONS(1639), + [anon_sym_as] = ACTIONS(1639), + [anon_sym_PLUS2] = ACTIONS(1639), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1639), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1639), + [aux_sym__val_number_decimal_token1] = ACTIONS(1639), + [aux_sym__val_number_decimal_token2] = ACTIONS(1639), + [aux_sym__val_number_decimal_token3] = ACTIONS(1639), + [aux_sym__val_number_decimal_token4] = ACTIONS(1639), + [aux_sym__val_number_token1] = ACTIONS(1639), + [aux_sym__val_number_token2] = ACTIONS(1639), + [aux_sym__val_number_token3] = ACTIONS(1639), + [aux_sym__val_number_token4] = ACTIONS(1639), + [aux_sym__val_number_token5] = ACTIONS(1639), + [aux_sym__val_number_token6] = ACTIONS(1639), + [anon_sym_DQUOTE] = ACTIONS(1639), + [sym__str_single_quotes] = ACTIONS(1639), + [sym__str_back_ticks] = ACTIONS(1639), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1639), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1639), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1639), + [sym__entry_separator] = ACTIONS(1651), + [anon_sym_register] = ACTIONS(1639), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1653), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1757), + [sym_raw_string_begin] = ACTIONS(1651), }, - [562] = { - [sym__expr_parenthesized_immediate] = STATE(7495), - [sym_comment] = STATE(562), - [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(2186), - [aux_sym_cmd_identifier_token3] = ACTIONS(2186), - [aux_sym_cmd_identifier_token4] = ACTIONS(2186), - [aux_sym_cmd_identifier_token5] = ACTIONS(2186), - [aux_sym_cmd_identifier_token6] = ACTIONS(2186), - [aux_sym_cmd_identifier_token7] = ACTIONS(2186), - [aux_sym_cmd_identifier_token8] = ACTIONS(2184), - [aux_sym_cmd_identifier_token9] = ACTIONS(2184), - [aux_sym_cmd_identifier_token10] = ACTIONS(2186), - [aux_sym_cmd_identifier_token11] = ACTIONS(2186), - [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(2186), - [aux_sym_cmd_identifier_token17] = ACTIONS(2186), - [aux_sym_cmd_identifier_token18] = ACTIONS(2186), - [aux_sym_cmd_identifier_token19] = ACTIONS(2186), - [aux_sym_cmd_identifier_token20] = ACTIONS(2186), - [aux_sym_cmd_identifier_token21] = ACTIONS(2186), - [aux_sym_cmd_identifier_token22] = ACTIONS(2186), - [aux_sym_cmd_identifier_token23] = ACTIONS(2186), - [aux_sym_cmd_identifier_token24] = ACTIONS(2186), - [aux_sym_cmd_identifier_token25] = ACTIONS(2186), - [aux_sym_cmd_identifier_token26] = ACTIONS(2186), - [aux_sym_cmd_identifier_token27] = ACTIONS(2186), - [aux_sym_cmd_identifier_token28] = ACTIONS(2186), - [aux_sym_cmd_identifier_token29] = ACTIONS(2186), - [aux_sym_cmd_identifier_token30] = ACTIONS(2186), - [aux_sym_cmd_identifier_token31] = ACTIONS(2186), - [aux_sym_cmd_identifier_token32] = ACTIONS(2186), - [aux_sym_cmd_identifier_token33] = ACTIONS(2186), - [aux_sym_cmd_identifier_token34] = ACTIONS(2184), - [aux_sym_cmd_identifier_token35] = ACTIONS(2186), - [aux_sym_cmd_identifier_token36] = ACTIONS(2186), - [aux_sym_cmd_identifier_token37] = 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(2184), - [anon_sym_COMMA] = ACTIONS(2186), - [anon_sym_DOLLAR] = ACTIONS(2184), - [anon_sym_error] = ACTIONS(2184), - [anon_sym_DASH2] = ACTIONS(2184), - [anon_sym_break] = ACTIONS(2184), - [anon_sym_continue] = ACTIONS(2184), - [anon_sym_for] = ACTIONS(2184), - [anon_sym_in2] = 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_as] = ACTIONS(2184), - [anon_sym_LPAREN2] = ACTIONS(1640), - [anon_sym_PLUS2] = 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), - [aux_sym__val_number_decimal_token3] = ACTIONS(2186), - [aux_sym__val_number_decimal_token4] = ACTIONS(2186), - [aux_sym__val_number_token1] = ACTIONS(2186), - [aux_sym__val_number_token2] = ACTIONS(2186), - [aux_sym__val_number_token3] = ACTIONS(2186), - [aux_sym__val_number_token4] = ACTIONS(2184), - [aux_sym__val_number_token5] = ACTIONS(2184), - [aux_sym__val_number_token6] = ACTIONS(2184), - [anon_sym_DQUOTE] = ACTIONS(2186), - [sym__str_single_quotes] = ACTIONS(2186), - [sym__str_back_ticks] = ACTIONS(2186), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2186), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2186), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2186), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2186), + [584] = { + [sym_comment] = STATE(584), + [anon_sym_export] = ACTIONS(2298), + [anon_sym_alias] = ACTIONS(2298), + [anon_sym_let] = ACTIONS(2298), + [anon_sym_let_DASHenv] = ACTIONS(2298), + [anon_sym_mut] = ACTIONS(2298), + [anon_sym_const] = ACTIONS(2298), + [aux_sym_cmd_identifier_token1] = ACTIONS(2298), + [aux_sym_cmd_identifier_token2] = ACTIONS(2298), + [aux_sym_cmd_identifier_token3] = ACTIONS(2298), + [aux_sym_cmd_identifier_token4] = ACTIONS(2298), + [aux_sym_cmd_identifier_token5] = ACTIONS(2298), + [aux_sym_cmd_identifier_token6] = ACTIONS(2298), + [aux_sym_cmd_identifier_token7] = ACTIONS(2298), + [aux_sym_cmd_identifier_token8] = ACTIONS(2298), + [aux_sym_cmd_identifier_token9] = ACTIONS(2298), + [aux_sym_cmd_identifier_token10] = ACTIONS(2298), + [aux_sym_cmd_identifier_token11] = ACTIONS(2298), + [aux_sym_cmd_identifier_token12] = ACTIONS(2298), + [aux_sym_cmd_identifier_token13] = ACTIONS(2298), + [aux_sym_cmd_identifier_token14] = ACTIONS(2298), + [aux_sym_cmd_identifier_token15] = ACTIONS(2298), + [aux_sym_cmd_identifier_token16] = ACTIONS(2298), + [aux_sym_cmd_identifier_token17] = ACTIONS(2298), + [aux_sym_cmd_identifier_token18] = ACTIONS(2298), + [aux_sym_cmd_identifier_token19] = ACTIONS(2298), + [aux_sym_cmd_identifier_token20] = ACTIONS(2298), + [aux_sym_cmd_identifier_token21] = ACTIONS(2298), + [aux_sym_cmd_identifier_token22] = ACTIONS(2298), + [aux_sym_cmd_identifier_token23] = ACTIONS(2298), + [aux_sym_cmd_identifier_token24] = ACTIONS(2298), + [aux_sym_cmd_identifier_token25] = ACTIONS(2298), + [aux_sym_cmd_identifier_token26] = ACTIONS(2298), + [aux_sym_cmd_identifier_token27] = ACTIONS(2298), + [aux_sym_cmd_identifier_token28] = ACTIONS(2298), + [aux_sym_cmd_identifier_token29] = ACTIONS(2298), + [aux_sym_cmd_identifier_token30] = ACTIONS(2298), + [aux_sym_cmd_identifier_token31] = ACTIONS(2298), + [aux_sym_cmd_identifier_token32] = ACTIONS(2298), + [aux_sym_cmd_identifier_token33] = ACTIONS(2298), + [aux_sym_cmd_identifier_token34] = ACTIONS(2298), + [aux_sym_cmd_identifier_token35] = ACTIONS(2298), + [aux_sym_cmd_identifier_token36] = ACTIONS(2298), + [aux_sym_cmd_identifier_token37] = ACTIONS(2298), + [aux_sym_cmd_identifier_token38] = ACTIONS(2298), + [aux_sym_cmd_identifier_token39] = ACTIONS(2298), + [aux_sym_cmd_identifier_token40] = ACTIONS(2298), + [anon_sym_def] = ACTIONS(2298), + [anon_sym_export_DASHenv] = ACTIONS(2298), + [anon_sym_extern] = ACTIONS(2298), + [anon_sym_module] = ACTIONS(2298), + [anon_sym_use] = ACTIONS(2298), + [anon_sym_LPAREN] = ACTIONS(2298), + [anon_sym_COMMA] = ACTIONS(2298), + [anon_sym_DOLLAR] = ACTIONS(2298), + [anon_sym_error] = ACTIONS(2298), + [anon_sym_DASH2] = ACTIONS(2298), + [anon_sym_break] = ACTIONS(2298), + [anon_sym_continue] = ACTIONS(2298), + [anon_sym_for] = ACTIONS(2298), + [anon_sym_in2] = ACTIONS(2298), + [anon_sym_loop] = ACTIONS(2298), + [anon_sym_make] = ACTIONS(2298), + [anon_sym_while] = ACTIONS(2298), + [anon_sym_do] = ACTIONS(2298), + [anon_sym_if] = ACTIONS(2298), + [anon_sym_else] = ACTIONS(2298), + [anon_sym_match] = ACTIONS(2298), + [anon_sym_RBRACE] = ACTIONS(2298), + [anon_sym_try] = ACTIONS(2298), + [anon_sym_catch] = ACTIONS(2298), + [anon_sym_return] = ACTIONS(2298), + [anon_sym_source] = ACTIONS(2298), + [anon_sym_source_DASHenv] = ACTIONS(2298), + [anon_sym_hide] = ACTIONS(2298), + [anon_sym_hide_DASHenv] = ACTIONS(2298), + [anon_sym_overlay] = ACTIONS(2298), + [anon_sym_as] = ACTIONS(2298), + [anon_sym_LPAREN2] = ACTIONS(2300), + [anon_sym_PLUS2] = ACTIONS(2298), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2298), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2298), + [aux_sym__val_number_decimal_token1] = ACTIONS(2298), + [aux_sym__val_number_decimal_token2] = ACTIONS(2298), + [aux_sym__val_number_decimal_token3] = ACTIONS(2298), + [aux_sym__val_number_decimal_token4] = ACTIONS(2298), + [aux_sym__val_number_token1] = ACTIONS(2298), + [aux_sym__val_number_token2] = ACTIONS(2298), + [aux_sym__val_number_token3] = ACTIONS(2298), + [aux_sym__val_number_token4] = ACTIONS(2298), + [aux_sym__val_number_token5] = ACTIONS(2298), + [aux_sym__val_number_token6] = ACTIONS(2298), + [anon_sym_DQUOTE] = ACTIONS(2298), + [sym__str_single_quotes] = ACTIONS(2298), + [sym__str_back_ticks] = ACTIONS(2298), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2298), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2298), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2298), + [sym__entry_separator] = ACTIONS(2300), + [anon_sym_register] = ACTIONS(2298), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2300), }, - [563] = { - [sym__expr_parenthesized_immediate] = STATE(7495), - [sym_comment] = STATE(563), - [anon_sym_export] = ACTIONS(2196), - [anon_sym_alias] = ACTIONS(2196), - [anon_sym_let] = ACTIONS(2196), - [anon_sym_let_DASHenv] = ACTIONS(2196), - [anon_sym_mut] = ACTIONS(2196), - [anon_sym_const] = ACTIONS(2196), - [aux_sym_cmd_identifier_token1] = ACTIONS(2196), - [aux_sym_cmd_identifier_token2] = ACTIONS(2198), - [aux_sym_cmd_identifier_token3] = ACTIONS(2198), - [aux_sym_cmd_identifier_token4] = ACTIONS(2198), - [aux_sym_cmd_identifier_token5] = ACTIONS(2198), - [aux_sym_cmd_identifier_token6] = ACTIONS(2198), - [aux_sym_cmd_identifier_token7] = ACTIONS(2198), - [aux_sym_cmd_identifier_token8] = ACTIONS(2196), - [aux_sym_cmd_identifier_token9] = ACTIONS(2196), - [aux_sym_cmd_identifier_token10] = ACTIONS(2198), - [aux_sym_cmd_identifier_token11] = ACTIONS(2198), - [aux_sym_cmd_identifier_token12] = ACTIONS(2196), - [aux_sym_cmd_identifier_token13] = ACTIONS(2196), - [aux_sym_cmd_identifier_token14] = ACTIONS(2196), - [aux_sym_cmd_identifier_token15] = ACTIONS(2196), - [aux_sym_cmd_identifier_token16] = ACTIONS(2198), - [aux_sym_cmd_identifier_token17] = ACTIONS(2198), - [aux_sym_cmd_identifier_token18] = ACTIONS(2198), - [aux_sym_cmd_identifier_token19] = ACTIONS(2198), - [aux_sym_cmd_identifier_token20] = ACTIONS(2198), - [aux_sym_cmd_identifier_token21] = ACTIONS(2198), - [aux_sym_cmd_identifier_token22] = ACTIONS(2198), - [aux_sym_cmd_identifier_token23] = ACTIONS(2198), - [aux_sym_cmd_identifier_token24] = ACTIONS(2198), - [aux_sym_cmd_identifier_token25] = ACTIONS(2198), - [aux_sym_cmd_identifier_token26] = ACTIONS(2198), - [aux_sym_cmd_identifier_token27] = ACTIONS(2198), - [aux_sym_cmd_identifier_token28] = ACTIONS(2198), - [aux_sym_cmd_identifier_token29] = ACTIONS(2198), - [aux_sym_cmd_identifier_token30] = ACTIONS(2198), - [aux_sym_cmd_identifier_token31] = ACTIONS(2198), - [aux_sym_cmd_identifier_token32] = ACTIONS(2198), - [aux_sym_cmd_identifier_token33] = ACTIONS(2198), - [aux_sym_cmd_identifier_token34] = ACTIONS(2196), - [aux_sym_cmd_identifier_token35] = ACTIONS(2198), - [aux_sym_cmd_identifier_token36] = ACTIONS(2198), - [aux_sym_cmd_identifier_token37] = ACTIONS(2198), - [aux_sym_cmd_identifier_token38] = ACTIONS(2196), - [aux_sym_cmd_identifier_token39] = ACTIONS(2198), - [aux_sym_cmd_identifier_token40] = ACTIONS(2198), - [anon_sym_def] = ACTIONS(2196), - [anon_sym_export_DASHenv] = ACTIONS(2196), - [anon_sym_extern] = ACTIONS(2196), - [anon_sym_module] = ACTIONS(2196), - [anon_sym_use] = ACTIONS(2196), - [anon_sym_LPAREN] = ACTIONS(2196), - [anon_sym_COMMA] = ACTIONS(2198), - [anon_sym_DOLLAR] = ACTIONS(2196), - [anon_sym_error] = ACTIONS(2196), - [anon_sym_DASH2] = ACTIONS(2196), - [anon_sym_break] = ACTIONS(2196), - [anon_sym_continue] = ACTIONS(2196), - [anon_sym_for] = ACTIONS(2196), - [anon_sym_in2] = ACTIONS(2196), - [anon_sym_loop] = ACTIONS(2196), - [anon_sym_make] = ACTIONS(2196), - [anon_sym_while] = ACTIONS(2196), - [anon_sym_do] = ACTIONS(2196), - [anon_sym_if] = ACTIONS(2196), - [anon_sym_else] = ACTIONS(2196), - [anon_sym_match] = ACTIONS(2196), - [anon_sym_RBRACE] = ACTIONS(2198), - [anon_sym_try] = ACTIONS(2196), - [anon_sym_catch] = ACTIONS(2196), - [anon_sym_return] = ACTIONS(2196), - [anon_sym_source] = ACTIONS(2196), - [anon_sym_source_DASHenv] = ACTIONS(2196), - [anon_sym_register] = ACTIONS(2196), - [anon_sym_hide] = ACTIONS(2196), - [anon_sym_hide_DASHenv] = ACTIONS(2196), - [anon_sym_overlay] = ACTIONS(2196), - [anon_sym_as] = ACTIONS(2196), - [anon_sym_LPAREN2] = ACTIONS(1640), - [anon_sym_PLUS2] = ACTIONS(2196), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2198), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2198), - [aux_sym__val_number_decimal_token1] = ACTIONS(2196), - [aux_sym__val_number_decimal_token2] = ACTIONS(2198), - [aux_sym__val_number_decimal_token3] = ACTIONS(2198), - [aux_sym__val_number_decimal_token4] = ACTIONS(2198), - [aux_sym__val_number_token1] = ACTIONS(2198), - [aux_sym__val_number_token2] = ACTIONS(2198), - [aux_sym__val_number_token3] = ACTIONS(2198), - [aux_sym__val_number_token4] = ACTIONS(2196), - [aux_sym__val_number_token5] = ACTIONS(2196), - [aux_sym__val_number_token6] = ACTIONS(2196), - [anon_sym_DQUOTE] = ACTIONS(2198), - [sym__str_single_quotes] = ACTIONS(2198), - [sym__str_back_ticks] = ACTIONS(2198), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2198), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2198), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2198), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2198), + [585] = { + [sym_comment] = STATE(585), + [anon_sym_export] = ACTIONS(2302), + [anon_sym_alias] = ACTIONS(2302), + [anon_sym_let] = ACTIONS(2302), + [anon_sym_let_DASHenv] = ACTIONS(2302), + [anon_sym_mut] = ACTIONS(2302), + [anon_sym_const] = ACTIONS(2302), + [aux_sym_cmd_identifier_token1] = ACTIONS(2302), + [aux_sym_cmd_identifier_token2] = ACTIONS(2302), + [aux_sym_cmd_identifier_token3] = ACTIONS(2302), + [aux_sym_cmd_identifier_token4] = ACTIONS(2302), + [aux_sym_cmd_identifier_token5] = ACTIONS(2302), + [aux_sym_cmd_identifier_token6] = ACTIONS(2302), + [aux_sym_cmd_identifier_token7] = ACTIONS(2302), + [aux_sym_cmd_identifier_token8] = ACTIONS(2302), + [aux_sym_cmd_identifier_token9] = ACTIONS(2302), + [aux_sym_cmd_identifier_token10] = ACTIONS(2302), + [aux_sym_cmd_identifier_token11] = ACTIONS(2302), + [aux_sym_cmd_identifier_token12] = ACTIONS(2302), + [aux_sym_cmd_identifier_token13] = ACTIONS(2302), + [aux_sym_cmd_identifier_token14] = ACTIONS(2302), + [aux_sym_cmd_identifier_token15] = ACTIONS(2302), + [aux_sym_cmd_identifier_token16] = ACTIONS(2302), + [aux_sym_cmd_identifier_token17] = ACTIONS(2302), + [aux_sym_cmd_identifier_token18] = ACTIONS(2302), + [aux_sym_cmd_identifier_token19] = ACTIONS(2302), + [aux_sym_cmd_identifier_token20] = ACTIONS(2302), + [aux_sym_cmd_identifier_token21] = ACTIONS(2302), + [aux_sym_cmd_identifier_token22] = ACTIONS(2302), + [aux_sym_cmd_identifier_token23] = ACTIONS(2302), + [aux_sym_cmd_identifier_token24] = ACTIONS(2302), + [aux_sym_cmd_identifier_token25] = ACTIONS(2302), + [aux_sym_cmd_identifier_token26] = ACTIONS(2302), + [aux_sym_cmd_identifier_token27] = ACTIONS(2302), + [aux_sym_cmd_identifier_token28] = ACTIONS(2302), + [aux_sym_cmd_identifier_token29] = ACTIONS(2302), + [aux_sym_cmd_identifier_token30] = ACTIONS(2302), + [aux_sym_cmd_identifier_token31] = ACTIONS(2302), + [aux_sym_cmd_identifier_token32] = ACTIONS(2302), + [aux_sym_cmd_identifier_token33] = ACTIONS(2302), + [aux_sym_cmd_identifier_token34] = ACTIONS(2302), + [aux_sym_cmd_identifier_token35] = ACTIONS(2302), + [aux_sym_cmd_identifier_token36] = ACTIONS(2302), + [aux_sym_cmd_identifier_token37] = ACTIONS(2302), + [aux_sym_cmd_identifier_token38] = ACTIONS(2302), + [aux_sym_cmd_identifier_token39] = ACTIONS(2302), + [aux_sym_cmd_identifier_token40] = ACTIONS(2302), + [anon_sym_def] = ACTIONS(2302), + [anon_sym_export_DASHenv] = ACTIONS(2302), + [anon_sym_extern] = ACTIONS(2302), + [anon_sym_module] = ACTIONS(2302), + [anon_sym_use] = ACTIONS(2302), + [anon_sym_LPAREN] = ACTIONS(2302), + [anon_sym_COMMA] = ACTIONS(2302), + [anon_sym_DOLLAR] = ACTIONS(2302), + [anon_sym_error] = ACTIONS(2302), + [anon_sym_DASH2] = ACTIONS(2302), + [anon_sym_break] = ACTIONS(2302), + [anon_sym_continue] = ACTIONS(2302), + [anon_sym_for] = ACTIONS(2302), + [anon_sym_in2] = ACTIONS(2302), + [anon_sym_loop] = ACTIONS(2302), + [anon_sym_make] = ACTIONS(2302), + [anon_sym_while] = ACTIONS(2302), + [anon_sym_do] = ACTIONS(2302), + [anon_sym_if] = ACTIONS(2302), + [anon_sym_else] = ACTIONS(2302), + [anon_sym_match] = ACTIONS(2302), + [anon_sym_RBRACE] = ACTIONS(2302), + [anon_sym_try] = ACTIONS(2302), + [anon_sym_catch] = ACTIONS(2302), + [anon_sym_return] = ACTIONS(2302), + [anon_sym_source] = ACTIONS(2302), + [anon_sym_source_DASHenv] = ACTIONS(2302), + [anon_sym_hide] = ACTIONS(2302), + [anon_sym_hide_DASHenv] = ACTIONS(2302), + [anon_sym_overlay] = ACTIONS(2302), + [anon_sym_as] = ACTIONS(2302), + [anon_sym_LPAREN2] = ACTIONS(2304), + [anon_sym_PLUS2] = ACTIONS(2302), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2302), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2302), + [aux_sym__val_number_decimal_token1] = ACTIONS(2302), + [aux_sym__val_number_decimal_token2] = ACTIONS(2302), + [aux_sym__val_number_decimal_token3] = ACTIONS(2302), + [aux_sym__val_number_decimal_token4] = ACTIONS(2302), + [aux_sym__val_number_token1] = ACTIONS(2302), + [aux_sym__val_number_token2] = ACTIONS(2302), + [aux_sym__val_number_token3] = ACTIONS(2302), + [aux_sym__val_number_token4] = ACTIONS(2302), + [aux_sym__val_number_token5] = ACTIONS(2302), + [aux_sym__val_number_token6] = ACTIONS(2302), + [anon_sym_DQUOTE] = ACTIONS(2302), + [sym__str_single_quotes] = ACTIONS(2302), + [sym__str_back_ticks] = ACTIONS(2302), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2302), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2302), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2302), + [sym__entry_separator] = ACTIONS(2304), + [anon_sym_register] = ACTIONS(2302), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2304), }, - [564] = { - [sym_expr_parenthesized] = STATE(4228), - [sym__spread_parenthesized] = STATE(4655), - [sym_val_range] = STATE(4656), - [sym__val_range] = STATE(7471), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(4656), - [sym_val_nothing] = STATE(4585), - [sym_val_bool] = STATE(4452), - [sym__spread_variable] = STATE(4660), - [sym_val_variable] = STATE(4244), - [sym_val_number] = STATE(4585), - [sym__val_number_decimal] = STATE(3953), - [sym__val_number] = STATE(4586), - [sym_val_duration] = STATE(4585), - [sym_val_filesize] = STATE(4585), - [sym_val_binary] = STATE(4585), - [sym_val_string] = STATE(4585), - [sym__raw_str] = STATE(4058), - [sym__str_double_quotes] = STATE(4058), - [sym_val_interpolated] = STATE(4585), - [sym__inter_single_quotes] = STATE(4587), - [sym__inter_double_quotes] = STATE(4588), - [sym_val_list] = STATE(4585), - [sym__spread_list] = STATE(4655), - [sym_val_record] = STATE(4585), - [sym_val_table] = STATE(4585), - [sym_val_closure] = STATE(4585), - [sym__cmd_arg] = STATE(4740), - [sym_redirection] = STATE(4662), - [sym__flag] = STATE(4663), - [sym_short_flag] = STATE(4582), - [sym_long_flag] = STATE(4582), - [sym_unquoted] = STATE(4380), - [sym__unquoted_with_expr] = STATE(4664), - [sym__unquoted_anonymous_prefix] = STATE(6988), - [sym_comment] = STATE(564), - [sym__newline] = ACTIONS(2300), - [sym__space] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2300), - [anon_sym_PIPE] = ACTIONS(2300), - [anon_sym_err_GT_PIPE] = ACTIONS(2300), - [anon_sym_out_GT_PIPE] = ACTIONS(2300), - [anon_sym_e_GT_PIPE] = ACTIONS(2300), - [anon_sym_o_GT_PIPE] = ACTIONS(2300), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2300), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2300), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2300), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2300), - [anon_sym_LBRACK] = ACTIONS(2070), - [anon_sym_LPAREN] = ACTIONS(2072), - [anon_sym_RPAREN] = ACTIONS(2300), - [anon_sym_DOLLAR] = ACTIONS(2074), - [anon_sym_DASH_DASH] = ACTIONS(2076), - [anon_sym_DASH2] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_DOT_DOT] = ACTIONS(2082), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2084), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2086), - [anon_sym_DOT_DOT_LT] = ACTIONS(2086), - [anon_sym_null] = ACTIONS(2088), - [anon_sym_true] = ACTIONS(2090), - [anon_sym_false] = ACTIONS(2090), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2092), - [aux_sym__val_number_decimal_token1] = ACTIONS(2094), - [aux_sym__val_number_decimal_token2] = ACTIONS(2094), - [aux_sym__val_number_decimal_token3] = ACTIONS(2096), - [aux_sym__val_number_decimal_token4] = ACTIONS(2098), - [aux_sym__val_number_token1] = ACTIONS(2100), - [aux_sym__val_number_token2] = ACTIONS(2100), - [aux_sym__val_number_token3] = ACTIONS(2100), - [aux_sym__val_number_token4] = ACTIONS(2102), - [aux_sym__val_number_token5] = ACTIONS(2102), - [aux_sym__val_number_token6] = ACTIONS(2102), - [anon_sym_0b] = ACTIONS(2104), - [anon_sym_0o] = ACTIONS(2106), - [anon_sym_0x] = ACTIONS(2106), - [sym_val_date] = ACTIONS(2108), - [anon_sym_DQUOTE] = ACTIONS(2110), - [sym__str_single_quotes] = ACTIONS(2112), - [sym__str_back_ticks] = ACTIONS(2112), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2114), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2116), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2118), - [anon_sym_err_GT] = ACTIONS(2122), - [anon_sym_out_GT] = ACTIONS(2122), - [anon_sym_e_GT] = ACTIONS(2122), - [anon_sym_o_GT] = ACTIONS(2122), - [anon_sym_err_PLUSout_GT] = ACTIONS(2122), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2122), - [anon_sym_o_PLUSe_GT] = ACTIONS(2122), - [anon_sym_e_PLUSo_GT] = ACTIONS(2122), - [anon_sym_err_GT_GT] = ACTIONS(2122), - [anon_sym_out_GT_GT] = ACTIONS(2122), - [anon_sym_e_GT_GT] = ACTIONS(2122), - [anon_sym_o_GT_GT] = ACTIONS(2122), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2122), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2122), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2122), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2122), - [aux_sym_unquoted_token1] = ACTIONS(2124), + [586] = { + [sym_comment] = STATE(586), + [anon_sym_export] = ACTIONS(978), + [anon_sym_alias] = ACTIONS(978), + [anon_sym_let] = ACTIONS(978), + [anon_sym_let_DASHenv] = ACTIONS(978), + [anon_sym_mut] = ACTIONS(978), + [anon_sym_const] = ACTIONS(978), + [aux_sym_cmd_identifier_token1] = ACTIONS(978), + [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(978), + [aux_sym_cmd_identifier_token9] = ACTIONS(978), + [aux_sym_cmd_identifier_token10] = ACTIONS(980), + [aux_sym_cmd_identifier_token11] = ACTIONS(980), + [aux_sym_cmd_identifier_token12] = ACTIONS(978), + [aux_sym_cmd_identifier_token13] = ACTIONS(978), + [aux_sym_cmd_identifier_token14] = ACTIONS(978), + [aux_sym_cmd_identifier_token15] = ACTIONS(978), + [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(978), + [aux_sym_cmd_identifier_token35] = ACTIONS(980), + [aux_sym_cmd_identifier_token36] = ACTIONS(980), + [aux_sym_cmd_identifier_token37] = ACTIONS(980), + [aux_sym_cmd_identifier_token38] = ACTIONS(978), + [aux_sym_cmd_identifier_token39] = ACTIONS(980), + [aux_sym_cmd_identifier_token40] = ACTIONS(980), + [anon_sym_def] = ACTIONS(978), + [anon_sym_export_DASHenv] = ACTIONS(978), + [anon_sym_extern] = ACTIONS(978), + [anon_sym_module] = ACTIONS(978), + [anon_sym_use] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(980), + [anon_sym_COMMA] = ACTIONS(980), + [anon_sym_DOLLAR] = ACTIONS(978), + [anon_sym_error] = ACTIONS(978), + [anon_sym_DASH2] = ACTIONS(978), + [anon_sym_break] = ACTIONS(978), + [anon_sym_continue] = ACTIONS(978), + [anon_sym_for] = ACTIONS(978), + [anon_sym_in2] = ACTIONS(978), + [anon_sym_loop] = ACTIONS(978), + [anon_sym_make] = ACTIONS(978), + [anon_sym_while] = ACTIONS(978), + [anon_sym_do] = ACTIONS(978), + [anon_sym_if] = ACTIONS(978), + [anon_sym_else] = ACTIONS(978), + [anon_sym_match] = ACTIONS(978), + [anon_sym_RBRACE] = ACTIONS(980), + [anon_sym_try] = ACTIONS(978), + [anon_sym_catch] = ACTIONS(978), + [anon_sym_return] = ACTIONS(978), + [anon_sym_source] = ACTIONS(978), + [anon_sym_source_DASHenv] = ACTIONS(978), + [anon_sym_hide] = ACTIONS(978), + [anon_sym_hide_DASHenv] = ACTIONS(978), + [anon_sym_overlay] = ACTIONS(978), + [anon_sym_as] = ACTIONS(978), + [anon_sym_PLUS2] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(980), + [aux_sym__val_number_decimal_token1] = ACTIONS(978), + [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), + [aux_sym__val_number_token4] = ACTIONS(978), + [aux_sym__val_number_token5] = ACTIONS(978), + [aux_sym__val_number_token6] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(980), + [sym__str_single_quotes] = ACTIONS(980), + [sym__str_back_ticks] = ACTIONS(980), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(980), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(980), + [anon_sym_register] = ACTIONS(978), + [anon_sym_COLON2] = ACTIONS(980), + [anon_sym_DOT2] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(980), + }, + [587] = { + [sym_comment] = STATE(587), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(2087), + [anon_sym_DOLLAR] = ACTIONS(2085), + [anon_sym_error] = ACTIONS(2085), + [anon_sym_DASH2] = ACTIONS(2085), + [anon_sym_break] = ACTIONS(2085), + [anon_sym_continue] = ACTIONS(2085), + [anon_sym_for] = ACTIONS(2085), + [anon_sym_in2] = 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_hide] = ACTIONS(2085), + [anon_sym_hide_DASHenv] = ACTIONS(2085), + [anon_sym_overlay] = ACTIONS(2085), + [anon_sym_as] = ACTIONS(2085), + [anon_sym_LPAREN2] = ACTIONS(2087), + [anon_sym_PLUS2] = ACTIONS(2085), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2087), + [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), + [aux_sym__val_number_token4] = ACTIONS(2085), + [aux_sym__val_number_token5] = ACTIONS(2085), + [aux_sym__val_number_token6] = ACTIONS(2085), + [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_DOT_DOT_DOT_LBRACE] = ACTIONS(2087), + [anon_sym_register] = ACTIONS(2085), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2085), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2126), + [sym_raw_string_begin] = ACTIONS(2087), }, - [565] = { - [sym_comment] = STATE(565), - [anon_sym_export] = ACTIONS(1016), - [anon_sym_alias] = ACTIONS(1016), - [anon_sym_let] = ACTIONS(1016), - [anon_sym_let_DASHenv] = ACTIONS(1016), - [anon_sym_mut] = ACTIONS(1016), - [anon_sym_const] = ACTIONS(1016), - [aux_sym_cmd_identifier_token1] = ACTIONS(1016), - [aux_sym_cmd_identifier_token2] = ACTIONS(1016), - [aux_sym_cmd_identifier_token3] = ACTIONS(1016), - [aux_sym_cmd_identifier_token4] = ACTIONS(1016), - [aux_sym_cmd_identifier_token5] = ACTIONS(1016), - [aux_sym_cmd_identifier_token6] = ACTIONS(1016), - [aux_sym_cmd_identifier_token7] = ACTIONS(1016), - [aux_sym_cmd_identifier_token8] = ACTIONS(1016), - [aux_sym_cmd_identifier_token9] = ACTIONS(1016), - [aux_sym_cmd_identifier_token10] = ACTIONS(1016), - [aux_sym_cmd_identifier_token11] = ACTIONS(1016), - [aux_sym_cmd_identifier_token12] = ACTIONS(1016), - [aux_sym_cmd_identifier_token13] = ACTIONS(1016), - [aux_sym_cmd_identifier_token14] = ACTIONS(1016), - [aux_sym_cmd_identifier_token15] = ACTIONS(1016), - [aux_sym_cmd_identifier_token16] = ACTIONS(1016), - [aux_sym_cmd_identifier_token17] = ACTIONS(1016), - [aux_sym_cmd_identifier_token18] = ACTIONS(1016), - [aux_sym_cmd_identifier_token19] = ACTIONS(1016), - [aux_sym_cmd_identifier_token20] = ACTIONS(1016), - [aux_sym_cmd_identifier_token21] = ACTIONS(1016), - [aux_sym_cmd_identifier_token22] = ACTIONS(1016), - [aux_sym_cmd_identifier_token23] = ACTIONS(1016), - [aux_sym_cmd_identifier_token24] = ACTIONS(1016), - [aux_sym_cmd_identifier_token25] = ACTIONS(1016), - [aux_sym_cmd_identifier_token26] = ACTIONS(1016), - [aux_sym_cmd_identifier_token27] = ACTIONS(1016), - [aux_sym_cmd_identifier_token28] = ACTIONS(1016), - [aux_sym_cmd_identifier_token29] = ACTIONS(1016), - [aux_sym_cmd_identifier_token30] = ACTIONS(1016), - [aux_sym_cmd_identifier_token31] = ACTIONS(1016), - [aux_sym_cmd_identifier_token32] = ACTIONS(1016), - [aux_sym_cmd_identifier_token33] = ACTIONS(1016), - [aux_sym_cmd_identifier_token34] = ACTIONS(1016), - [aux_sym_cmd_identifier_token35] = ACTIONS(1016), - [aux_sym_cmd_identifier_token36] = ACTIONS(1016), - [aux_sym_cmd_identifier_token37] = ACTIONS(1016), - [aux_sym_cmd_identifier_token38] = ACTIONS(1016), - [aux_sym_cmd_identifier_token39] = ACTIONS(1016), - [aux_sym_cmd_identifier_token40] = ACTIONS(1016), - [anon_sym_def] = ACTIONS(1016), - [anon_sym_export_DASHenv] = ACTIONS(1016), - [anon_sym_extern] = ACTIONS(1016), - [anon_sym_module] = ACTIONS(1016), - [anon_sym_use] = ACTIONS(1016), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_COMMA] = ACTIONS(1012), - [anon_sym_DOLLAR] = ACTIONS(1016), - [anon_sym_error] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_break] = ACTIONS(1016), - [anon_sym_continue] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1016), - [anon_sym_in2] = ACTIONS(1016), - [anon_sym_loop] = ACTIONS(1016), - [anon_sym_make] = ACTIONS(1016), - [anon_sym_while] = ACTIONS(1016), - [anon_sym_do] = ACTIONS(1016), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_else] = ACTIONS(1016), - [anon_sym_match] = ACTIONS(1016), - [anon_sym_RBRACE] = ACTIONS(1012), - [anon_sym_try] = ACTIONS(1016), - [anon_sym_catch] = ACTIONS(1016), - [anon_sym_return] = ACTIONS(1016), - [anon_sym_source] = ACTIONS(1016), - [anon_sym_source_DASHenv] = ACTIONS(1016), - [anon_sym_register] = ACTIONS(1016), - [anon_sym_hide] = ACTIONS(1016), - [anon_sym_hide_DASHenv] = ACTIONS(1016), - [anon_sym_overlay] = ACTIONS(1016), - [anon_sym_as] = ACTIONS(1016), - [anon_sym_LPAREN2] = ACTIONS(2206), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1012), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1016), - [aux_sym__val_number_decimal_token1] = ACTIONS(1016), - [aux_sym__val_number_decimal_token2] = ACTIONS(1016), - [aux_sym__val_number_decimal_token3] = ACTIONS(1016), - [aux_sym__val_number_decimal_token4] = ACTIONS(1016), - [aux_sym__val_number_token1] = ACTIONS(1016), - [aux_sym__val_number_token2] = ACTIONS(1016), - [aux_sym__val_number_token3] = ACTIONS(1016), - [aux_sym__val_number_token4] = ACTIONS(1016), - [aux_sym__val_number_token5] = ACTIONS(1016), - [aux_sym__val_number_token6] = ACTIONS(1016), - [anon_sym_DQUOTE] = ACTIONS(1012), - [sym__str_single_quotes] = ACTIONS(1012), - [sym__str_back_ticks] = ACTIONS(1012), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1012), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1012), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1012), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2208), + [588] = { + [sym_comment] = STATE(588), + [anon_sym_export] = ACTIONS(2306), + [anon_sym_alias] = ACTIONS(2306), + [anon_sym_let] = ACTIONS(2306), + [anon_sym_let_DASHenv] = ACTIONS(2306), + [anon_sym_mut] = ACTIONS(2306), + [anon_sym_const] = ACTIONS(2306), + [aux_sym_cmd_identifier_token1] = ACTIONS(2306), + [aux_sym_cmd_identifier_token2] = ACTIONS(2306), + [aux_sym_cmd_identifier_token3] = ACTIONS(2306), + [aux_sym_cmd_identifier_token4] = ACTIONS(2306), + [aux_sym_cmd_identifier_token5] = ACTIONS(2306), + [aux_sym_cmd_identifier_token6] = ACTIONS(2306), + [aux_sym_cmd_identifier_token7] = ACTIONS(2306), + [aux_sym_cmd_identifier_token8] = ACTIONS(2306), + [aux_sym_cmd_identifier_token9] = ACTIONS(2306), + [aux_sym_cmd_identifier_token10] = ACTIONS(2306), + [aux_sym_cmd_identifier_token11] = ACTIONS(2306), + [aux_sym_cmd_identifier_token12] = ACTIONS(2306), + [aux_sym_cmd_identifier_token13] = ACTIONS(2306), + [aux_sym_cmd_identifier_token14] = ACTIONS(2306), + [aux_sym_cmd_identifier_token15] = ACTIONS(2306), + [aux_sym_cmd_identifier_token16] = ACTIONS(2306), + [aux_sym_cmd_identifier_token17] = ACTIONS(2306), + [aux_sym_cmd_identifier_token18] = ACTIONS(2306), + [aux_sym_cmd_identifier_token19] = ACTIONS(2306), + [aux_sym_cmd_identifier_token20] = ACTIONS(2306), + [aux_sym_cmd_identifier_token21] = ACTIONS(2306), + [aux_sym_cmd_identifier_token22] = ACTIONS(2306), + [aux_sym_cmd_identifier_token23] = ACTIONS(2306), + [aux_sym_cmd_identifier_token24] = ACTIONS(2306), + [aux_sym_cmd_identifier_token25] = ACTIONS(2306), + [aux_sym_cmd_identifier_token26] = ACTIONS(2306), + [aux_sym_cmd_identifier_token27] = ACTIONS(2306), + [aux_sym_cmd_identifier_token28] = ACTIONS(2306), + [aux_sym_cmd_identifier_token29] = ACTIONS(2306), + [aux_sym_cmd_identifier_token30] = ACTIONS(2306), + [aux_sym_cmd_identifier_token31] = ACTIONS(2306), + [aux_sym_cmd_identifier_token32] = ACTIONS(2306), + [aux_sym_cmd_identifier_token33] = ACTIONS(2306), + [aux_sym_cmd_identifier_token34] = ACTIONS(2306), + [aux_sym_cmd_identifier_token35] = ACTIONS(2306), + [aux_sym_cmd_identifier_token36] = ACTIONS(2306), + [aux_sym_cmd_identifier_token37] = ACTIONS(2306), + [aux_sym_cmd_identifier_token38] = ACTIONS(2306), + [aux_sym_cmd_identifier_token39] = ACTIONS(2306), + [aux_sym_cmd_identifier_token40] = ACTIONS(2306), + [anon_sym_def] = ACTIONS(2306), + [anon_sym_export_DASHenv] = ACTIONS(2306), + [anon_sym_extern] = ACTIONS(2306), + [anon_sym_module] = ACTIONS(2306), + [anon_sym_use] = ACTIONS(2306), + [anon_sym_LPAREN] = ACTIONS(2306), + [anon_sym_COMMA] = ACTIONS(2306), + [anon_sym_DOLLAR] = ACTIONS(2306), + [anon_sym_error] = ACTIONS(2306), + [anon_sym_DASH2] = ACTIONS(2306), + [anon_sym_break] = ACTIONS(2306), + [anon_sym_continue] = ACTIONS(2306), + [anon_sym_for] = ACTIONS(2306), + [anon_sym_in2] = ACTIONS(2306), + [anon_sym_loop] = ACTIONS(2306), + [anon_sym_make] = ACTIONS(2306), + [anon_sym_while] = ACTIONS(2306), + [anon_sym_do] = ACTIONS(2306), + [anon_sym_if] = ACTIONS(2306), + [anon_sym_else] = ACTIONS(2306), + [anon_sym_match] = ACTIONS(2306), + [anon_sym_RBRACE] = ACTIONS(2306), + [anon_sym_try] = ACTIONS(2306), + [anon_sym_catch] = ACTIONS(2306), + [anon_sym_return] = ACTIONS(2306), + [anon_sym_source] = ACTIONS(2306), + [anon_sym_source_DASHenv] = ACTIONS(2306), + [anon_sym_hide] = ACTIONS(2306), + [anon_sym_hide_DASHenv] = ACTIONS(2306), + [anon_sym_overlay] = ACTIONS(2306), + [anon_sym_as] = ACTIONS(2306), + [anon_sym_PLUS2] = ACTIONS(2306), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2306), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2306), + [aux_sym__val_number_decimal_token1] = ACTIONS(2306), + [aux_sym__val_number_decimal_token2] = ACTIONS(2306), + [aux_sym__val_number_decimal_token3] = ACTIONS(2306), + [aux_sym__val_number_decimal_token4] = ACTIONS(2306), + [aux_sym__val_number_token1] = ACTIONS(2306), + [aux_sym__val_number_token2] = ACTIONS(2306), + [aux_sym__val_number_token3] = ACTIONS(2306), + [aux_sym__val_number_token4] = ACTIONS(2306), + [aux_sym__val_number_token5] = ACTIONS(2306), + [aux_sym__val_number_token6] = ACTIONS(2306), + [anon_sym_DQUOTE] = ACTIONS(2306), + [sym__str_single_quotes] = ACTIONS(2306), + [sym__str_back_ticks] = ACTIONS(2306), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2306), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2306), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2306), + [sym__entry_separator] = ACTIONS(2308), + [anon_sym_register] = ACTIONS(2306), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1012), + [sym_raw_string_begin] = ACTIONS(2308), }, - [566] = { - [sym_comment] = STATE(566), - [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(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(1755), - [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(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(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(1757), - [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(1755), - [aux_sym_cmd_identifier_token35] = ACTIONS(1757), - [aux_sym_cmd_identifier_token36] = ACTIONS(1757), - [aux_sym_cmd_identifier_token37] = ACTIONS(1757), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1757), - [aux_sym_cmd_identifier_token40] = ACTIONS(1757), - [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_COMMA] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in2] = 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_RBRACE] = ACTIONS(1757), - [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_as] = ACTIONS(1755), - [anon_sym_PLUS2] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1757), - [anon_sym_DOT] = ACTIONS(2304), - [aux_sym__immediate_decimal_token2] = ACTIONS(2306), - [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), - [aux_sym__val_number_token4] = ACTIONS(1755), - [aux_sym__val_number_token5] = ACTIONS(1755), - [aux_sym__val_number_token6] = ACTIONS(1755), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1757), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1757), + [589] = { + [sym_comment] = STATE(589), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1701), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_error] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_in2] = 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_hide] = ACTIONS(1701), + [anon_sym_hide_DASHenv] = ACTIONS(1701), + [anon_sym_overlay] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1701), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1701), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1701), + [aux_sym__val_number_decimal_token3] = ACTIONS(1701), + [aux_sym__val_number_decimal_token4] = ACTIONS(1701), + [aux_sym__val_number_token1] = ACTIONS(1701), + [aux_sym__val_number_token2] = ACTIONS(1701), + [aux_sym__val_number_token3] = ACTIONS(1701), + [aux_sym__val_number_token4] = ACTIONS(1701), + [aux_sym__val_number_token5] = ACTIONS(1701), + [aux_sym__val_number_token6] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1701), + [sym__str_single_quotes] = ACTIONS(1701), + [sym__str_back_ticks] = ACTIONS(1701), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1701), + [sym__entry_separator] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1703), }, - [567] = { - [sym__expr_parenthesized_immediate] = STATE(7495), - [sym_comment] = STATE(567), - [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(2202), - [aux_sym_cmd_identifier_token3] = ACTIONS(2202), - [aux_sym_cmd_identifier_token4] = ACTIONS(2202), - [aux_sym_cmd_identifier_token5] = ACTIONS(2202), - [aux_sym_cmd_identifier_token6] = ACTIONS(2202), - [aux_sym_cmd_identifier_token7] = ACTIONS(2202), - [aux_sym_cmd_identifier_token8] = ACTIONS(2200), - [aux_sym_cmd_identifier_token9] = ACTIONS(2200), - [aux_sym_cmd_identifier_token10] = ACTIONS(2202), - [aux_sym_cmd_identifier_token11] = ACTIONS(2202), - [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(2202), - [aux_sym_cmd_identifier_token17] = ACTIONS(2202), - [aux_sym_cmd_identifier_token18] = ACTIONS(2202), - [aux_sym_cmd_identifier_token19] = ACTIONS(2202), - [aux_sym_cmd_identifier_token20] = ACTIONS(2202), - [aux_sym_cmd_identifier_token21] = ACTIONS(2202), - [aux_sym_cmd_identifier_token22] = ACTIONS(2202), - [aux_sym_cmd_identifier_token23] = ACTIONS(2202), - [aux_sym_cmd_identifier_token24] = ACTIONS(2202), - [aux_sym_cmd_identifier_token25] = ACTIONS(2202), - [aux_sym_cmd_identifier_token26] = ACTIONS(2202), - [aux_sym_cmd_identifier_token27] = ACTIONS(2202), - [aux_sym_cmd_identifier_token28] = ACTIONS(2202), - [aux_sym_cmd_identifier_token29] = ACTIONS(2202), - [aux_sym_cmd_identifier_token30] = ACTIONS(2202), - [aux_sym_cmd_identifier_token31] = ACTIONS(2202), - [aux_sym_cmd_identifier_token32] = ACTIONS(2202), - [aux_sym_cmd_identifier_token33] = ACTIONS(2202), - [aux_sym_cmd_identifier_token34] = ACTIONS(2200), - [aux_sym_cmd_identifier_token35] = ACTIONS(2202), - [aux_sym_cmd_identifier_token36] = ACTIONS(2202), - [aux_sym_cmd_identifier_token37] = 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(2200), - [anon_sym_COMMA] = ACTIONS(2202), - [anon_sym_DOLLAR] = ACTIONS(2200), - [anon_sym_error] = ACTIONS(2200), - [anon_sym_DASH2] = ACTIONS(2200), - [anon_sym_break] = ACTIONS(2200), - [anon_sym_continue] = ACTIONS(2200), - [anon_sym_for] = ACTIONS(2200), - [anon_sym_in2] = 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_as] = ACTIONS(2200), - [anon_sym_LPAREN2] = ACTIONS(1640), - [anon_sym_PLUS2] = 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), - [aux_sym__val_number_decimal_token3] = ACTIONS(2202), - [aux_sym__val_number_decimal_token4] = ACTIONS(2202), - [aux_sym__val_number_token1] = ACTIONS(2202), - [aux_sym__val_number_token2] = ACTIONS(2202), - [aux_sym__val_number_token3] = ACTIONS(2202), - [aux_sym__val_number_token4] = ACTIONS(2200), - [aux_sym__val_number_token5] = ACTIONS(2200), - [aux_sym__val_number_token6] = ACTIONS(2200), - [anon_sym_DQUOTE] = ACTIONS(2202), - [sym__str_single_quotes] = ACTIONS(2202), - [sym__str_back_ticks] = ACTIONS(2202), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2202), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2202), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2202), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2202), + [590] = { + [sym_comment] = STATE(590), + [anon_sym_export] = ACTIONS(2310), + [anon_sym_alias] = ACTIONS(2310), + [anon_sym_let] = ACTIONS(2310), + [anon_sym_let_DASHenv] = ACTIONS(2310), + [anon_sym_mut] = ACTIONS(2310), + [anon_sym_const] = ACTIONS(2310), + [aux_sym_cmd_identifier_token1] = ACTIONS(2310), + [aux_sym_cmd_identifier_token2] = ACTIONS(2310), + [aux_sym_cmd_identifier_token3] = ACTIONS(2310), + [aux_sym_cmd_identifier_token4] = ACTIONS(2310), + [aux_sym_cmd_identifier_token5] = ACTIONS(2310), + [aux_sym_cmd_identifier_token6] = ACTIONS(2310), + [aux_sym_cmd_identifier_token7] = ACTIONS(2310), + [aux_sym_cmd_identifier_token8] = ACTIONS(2310), + [aux_sym_cmd_identifier_token9] = ACTIONS(2310), + [aux_sym_cmd_identifier_token10] = ACTIONS(2310), + [aux_sym_cmd_identifier_token11] = ACTIONS(2310), + [aux_sym_cmd_identifier_token12] = ACTIONS(2310), + [aux_sym_cmd_identifier_token13] = ACTIONS(2310), + [aux_sym_cmd_identifier_token14] = ACTIONS(2310), + [aux_sym_cmd_identifier_token15] = ACTIONS(2310), + [aux_sym_cmd_identifier_token16] = ACTIONS(2310), + [aux_sym_cmd_identifier_token17] = ACTIONS(2310), + [aux_sym_cmd_identifier_token18] = ACTIONS(2310), + [aux_sym_cmd_identifier_token19] = ACTIONS(2310), + [aux_sym_cmd_identifier_token20] = ACTIONS(2310), + [aux_sym_cmd_identifier_token21] = ACTIONS(2310), + [aux_sym_cmd_identifier_token22] = ACTIONS(2310), + [aux_sym_cmd_identifier_token23] = ACTIONS(2310), + [aux_sym_cmd_identifier_token24] = ACTIONS(2310), + [aux_sym_cmd_identifier_token25] = ACTIONS(2310), + [aux_sym_cmd_identifier_token26] = ACTIONS(2310), + [aux_sym_cmd_identifier_token27] = ACTIONS(2310), + [aux_sym_cmd_identifier_token28] = ACTIONS(2310), + [aux_sym_cmd_identifier_token29] = ACTIONS(2310), + [aux_sym_cmd_identifier_token30] = ACTIONS(2310), + [aux_sym_cmd_identifier_token31] = ACTIONS(2310), + [aux_sym_cmd_identifier_token32] = ACTIONS(2310), + [aux_sym_cmd_identifier_token33] = ACTIONS(2310), + [aux_sym_cmd_identifier_token34] = ACTIONS(2310), + [aux_sym_cmd_identifier_token35] = ACTIONS(2310), + [aux_sym_cmd_identifier_token36] = ACTIONS(2310), + [aux_sym_cmd_identifier_token37] = ACTIONS(2310), + [aux_sym_cmd_identifier_token38] = ACTIONS(2310), + [aux_sym_cmd_identifier_token39] = ACTIONS(2310), + [aux_sym_cmd_identifier_token40] = ACTIONS(2310), + [anon_sym_def] = ACTIONS(2310), + [anon_sym_export_DASHenv] = ACTIONS(2310), + [anon_sym_extern] = ACTIONS(2310), + [anon_sym_module] = ACTIONS(2310), + [anon_sym_use] = ACTIONS(2310), + [anon_sym_LPAREN] = ACTIONS(2310), + [anon_sym_COMMA] = ACTIONS(2310), + [anon_sym_DOLLAR] = ACTIONS(2310), + [anon_sym_error] = ACTIONS(2310), + [anon_sym_DASH2] = ACTIONS(2310), + [anon_sym_break] = ACTIONS(2310), + [anon_sym_continue] = ACTIONS(2310), + [anon_sym_for] = ACTIONS(2310), + [anon_sym_in2] = ACTIONS(2310), + [anon_sym_loop] = ACTIONS(2310), + [anon_sym_make] = ACTIONS(2310), + [anon_sym_while] = ACTIONS(2310), + [anon_sym_do] = ACTIONS(2310), + [anon_sym_if] = ACTIONS(2310), + [anon_sym_else] = ACTIONS(2310), + [anon_sym_match] = ACTIONS(2310), + [anon_sym_RBRACE] = ACTIONS(2310), + [anon_sym_try] = ACTIONS(2310), + [anon_sym_catch] = ACTIONS(2310), + [anon_sym_return] = ACTIONS(2310), + [anon_sym_source] = ACTIONS(2310), + [anon_sym_source_DASHenv] = ACTIONS(2310), + [anon_sym_hide] = ACTIONS(2310), + [anon_sym_hide_DASHenv] = ACTIONS(2310), + [anon_sym_overlay] = ACTIONS(2310), + [anon_sym_as] = ACTIONS(2310), + [anon_sym_PLUS2] = ACTIONS(2310), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2310), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2310), + [aux_sym__val_number_decimal_token1] = ACTIONS(2310), + [aux_sym__val_number_decimal_token2] = ACTIONS(2310), + [aux_sym__val_number_decimal_token3] = ACTIONS(2310), + [aux_sym__val_number_decimal_token4] = ACTIONS(2310), + [aux_sym__val_number_token1] = ACTIONS(2310), + [aux_sym__val_number_token2] = ACTIONS(2310), + [aux_sym__val_number_token3] = ACTIONS(2310), + [aux_sym__val_number_token4] = ACTIONS(2310), + [aux_sym__val_number_token5] = ACTIONS(2310), + [aux_sym__val_number_token6] = ACTIONS(2310), + [anon_sym_DQUOTE] = ACTIONS(2310), + [sym__str_single_quotes] = ACTIONS(2310), + [sym__str_back_ticks] = ACTIONS(2310), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2310), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2310), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2310), + [sym__entry_separator] = ACTIONS(2312), + [anon_sym_register] = ACTIONS(2310), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2312), }, - [568] = { - [sym_comment] = STATE(568), - [anon_sym_export] = ACTIONS(992), - [anon_sym_alias] = ACTIONS(992), - [anon_sym_let] = ACTIONS(992), - [anon_sym_let_DASHenv] = ACTIONS(992), - [anon_sym_mut] = ACTIONS(992), - [anon_sym_const] = ACTIONS(992), - [aux_sym_cmd_identifier_token1] = ACTIONS(992), - [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(992), - [aux_sym_cmd_identifier_token9] = ACTIONS(992), - [aux_sym_cmd_identifier_token10] = ACTIONS(994), - [aux_sym_cmd_identifier_token11] = ACTIONS(994), - [aux_sym_cmd_identifier_token12] = ACTIONS(992), - [aux_sym_cmd_identifier_token13] = ACTIONS(992), - [aux_sym_cmd_identifier_token14] = ACTIONS(992), - [aux_sym_cmd_identifier_token15] = ACTIONS(992), - [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(992), - [aux_sym_cmd_identifier_token35] = ACTIONS(994), - [aux_sym_cmd_identifier_token36] = ACTIONS(994), - [aux_sym_cmd_identifier_token37] = ACTIONS(994), - [aux_sym_cmd_identifier_token38] = ACTIONS(992), - [aux_sym_cmd_identifier_token39] = ACTIONS(994), - [aux_sym_cmd_identifier_token40] = ACTIONS(994), - [anon_sym_def] = ACTIONS(992), - [anon_sym_export_DASHenv] = ACTIONS(992), - [anon_sym_extern] = ACTIONS(992), - [anon_sym_module] = ACTIONS(992), - [anon_sym_use] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(994), - [anon_sym_COMMA] = ACTIONS(994), - [anon_sym_DOLLAR] = ACTIONS(992), - [anon_sym_error] = ACTIONS(992), - [anon_sym_DASH2] = ACTIONS(992), - [anon_sym_break] = ACTIONS(992), - [anon_sym_continue] = ACTIONS(992), - [anon_sym_for] = ACTIONS(992), - [anon_sym_in2] = ACTIONS(992), - [anon_sym_loop] = ACTIONS(992), - [anon_sym_make] = ACTIONS(992), - [anon_sym_while] = ACTIONS(992), - [anon_sym_do] = ACTIONS(992), - [anon_sym_if] = ACTIONS(992), - [anon_sym_else] = ACTIONS(992), - [anon_sym_match] = ACTIONS(992), - [anon_sym_RBRACE] = ACTIONS(994), - [anon_sym_try] = ACTIONS(992), - [anon_sym_catch] = ACTIONS(992), - [anon_sym_return] = ACTIONS(992), - [anon_sym_source] = ACTIONS(992), - [anon_sym_source_DASHenv] = ACTIONS(992), - [anon_sym_register] = ACTIONS(992), - [anon_sym_hide] = ACTIONS(992), - [anon_sym_hide_DASHenv] = ACTIONS(992), - [anon_sym_overlay] = ACTIONS(992), - [anon_sym_as] = ACTIONS(992), - [anon_sym_PLUS2] = ACTIONS(992), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(994), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(994), - [aux_sym__val_number_decimal_token1] = ACTIONS(992), - [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), - [aux_sym__val_number_token4] = ACTIONS(992), - [aux_sym__val_number_token5] = ACTIONS(992), - [aux_sym__val_number_token6] = ACTIONS(992), - [anon_sym_DQUOTE] = ACTIONS(994), - [sym__str_single_quotes] = ACTIONS(994), - [sym__str_back_ticks] = ACTIONS(994), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(994), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(994), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(994), - [anon_sym_COLON2] = ACTIONS(994), - [anon_sym_DOT2] = ACTIONS(992), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(994), + [591] = { + [sym_comment] = STATE(591), + [anon_sym_export] = ACTIONS(1877), + [anon_sym_alias] = ACTIONS(1877), + [anon_sym_let] = ACTIONS(1877), + [anon_sym_let_DASHenv] = ACTIONS(1877), + [anon_sym_mut] = ACTIONS(1877), + [anon_sym_const] = ACTIONS(1877), + [aux_sym_cmd_identifier_token1] = ACTIONS(1877), + [aux_sym_cmd_identifier_token2] = ACTIONS(1877), + [aux_sym_cmd_identifier_token3] = ACTIONS(1877), + [aux_sym_cmd_identifier_token4] = ACTIONS(1877), + [aux_sym_cmd_identifier_token5] = ACTIONS(1877), + [aux_sym_cmd_identifier_token6] = ACTIONS(1877), + [aux_sym_cmd_identifier_token7] = ACTIONS(1877), + [aux_sym_cmd_identifier_token8] = ACTIONS(1877), + [aux_sym_cmd_identifier_token9] = ACTIONS(1877), + [aux_sym_cmd_identifier_token10] = ACTIONS(1877), + [aux_sym_cmd_identifier_token11] = ACTIONS(1877), + [aux_sym_cmd_identifier_token12] = ACTIONS(1877), + [aux_sym_cmd_identifier_token13] = ACTIONS(1877), + [aux_sym_cmd_identifier_token14] = ACTIONS(1877), + [aux_sym_cmd_identifier_token15] = ACTIONS(1877), + [aux_sym_cmd_identifier_token16] = ACTIONS(1877), + [aux_sym_cmd_identifier_token17] = ACTIONS(1877), + [aux_sym_cmd_identifier_token18] = ACTIONS(1877), + [aux_sym_cmd_identifier_token19] = ACTIONS(1877), + [aux_sym_cmd_identifier_token20] = ACTIONS(1877), + [aux_sym_cmd_identifier_token21] = ACTIONS(1877), + [aux_sym_cmd_identifier_token22] = ACTIONS(1877), + [aux_sym_cmd_identifier_token23] = ACTIONS(1877), + [aux_sym_cmd_identifier_token24] = ACTIONS(1877), + [aux_sym_cmd_identifier_token25] = ACTIONS(1877), + [aux_sym_cmd_identifier_token26] = ACTIONS(1877), + [aux_sym_cmd_identifier_token27] = ACTIONS(1877), + [aux_sym_cmd_identifier_token28] = ACTIONS(1877), + [aux_sym_cmd_identifier_token29] = ACTIONS(1877), + [aux_sym_cmd_identifier_token30] = ACTIONS(1877), + [aux_sym_cmd_identifier_token31] = ACTIONS(1877), + [aux_sym_cmd_identifier_token32] = ACTIONS(1877), + [aux_sym_cmd_identifier_token33] = ACTIONS(1877), + [aux_sym_cmd_identifier_token34] = ACTIONS(1877), + [aux_sym_cmd_identifier_token35] = ACTIONS(1877), + [aux_sym_cmd_identifier_token36] = ACTIONS(1877), + [aux_sym_cmd_identifier_token37] = ACTIONS(1877), + [aux_sym_cmd_identifier_token38] = ACTIONS(1877), + [aux_sym_cmd_identifier_token39] = ACTIONS(1877), + [aux_sym_cmd_identifier_token40] = ACTIONS(1877), + [anon_sym_def] = ACTIONS(1877), + [anon_sym_export_DASHenv] = ACTIONS(1877), + [anon_sym_extern] = ACTIONS(1877), + [anon_sym_module] = ACTIONS(1877), + [anon_sym_use] = ACTIONS(1877), + [anon_sym_LPAREN] = ACTIONS(1877), + [anon_sym_COMMA] = ACTIONS(1877), + [anon_sym_DOLLAR] = ACTIONS(1877), + [anon_sym_error] = ACTIONS(1877), + [anon_sym_DASH2] = ACTIONS(1877), + [anon_sym_break] = ACTIONS(1877), + [anon_sym_continue] = ACTIONS(1877), + [anon_sym_for] = ACTIONS(1877), + [anon_sym_in2] = ACTIONS(1877), + [anon_sym_loop] = ACTIONS(1877), + [anon_sym_make] = ACTIONS(1877), + [anon_sym_while] = ACTIONS(1877), + [anon_sym_do] = ACTIONS(1877), + [anon_sym_if] = ACTIONS(1877), + [anon_sym_else] = ACTIONS(1877), + [anon_sym_match] = ACTIONS(1877), + [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym_try] = ACTIONS(1877), + [anon_sym_catch] = ACTIONS(1877), + [anon_sym_return] = ACTIONS(1877), + [anon_sym_source] = ACTIONS(1877), + [anon_sym_source_DASHenv] = ACTIONS(1877), + [anon_sym_hide] = ACTIONS(1877), + [anon_sym_hide_DASHenv] = ACTIONS(1877), + [anon_sym_overlay] = ACTIONS(1877), + [anon_sym_as] = ACTIONS(1877), + [anon_sym_PLUS2] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1877), + [aux_sym__val_number_decimal_token1] = ACTIONS(1877), + [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), + [aux_sym__val_number_token4] = ACTIONS(1877), + [aux_sym__val_number_token5] = ACTIONS(1877), + [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(1877), + [sym__entry_separator] = ACTIONS(1879), + [anon_sym_register] = ACTIONS(1877), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1879), }, - [569] = { - [sym_comment] = STATE(569), - [anon_sym_export] = ACTIONS(996), - [anon_sym_alias] = ACTIONS(996), - [anon_sym_let] = ACTIONS(996), - [anon_sym_let_DASHenv] = ACTIONS(996), - [anon_sym_mut] = ACTIONS(996), - [anon_sym_const] = ACTIONS(996), - [aux_sym_cmd_identifier_token1] = ACTIONS(996), + [592] = { + [sym_comment] = STATE(592), + [anon_sym_export] = ACTIONS(1693), + [anon_sym_alias] = ACTIONS(1693), + [anon_sym_let] = ACTIONS(1693), + [anon_sym_let_DASHenv] = ACTIONS(1693), + [anon_sym_mut] = ACTIONS(1693), + [anon_sym_const] = ACTIONS(1693), + [aux_sym_cmd_identifier_token1] = ACTIONS(1693), + [aux_sym_cmd_identifier_token2] = ACTIONS(1693), + [aux_sym_cmd_identifier_token3] = ACTIONS(1693), + [aux_sym_cmd_identifier_token4] = ACTIONS(1693), + [aux_sym_cmd_identifier_token5] = ACTIONS(1693), + [aux_sym_cmd_identifier_token6] = ACTIONS(1693), + [aux_sym_cmd_identifier_token7] = ACTIONS(1693), + [aux_sym_cmd_identifier_token8] = ACTIONS(1693), + [aux_sym_cmd_identifier_token9] = ACTIONS(1693), + [aux_sym_cmd_identifier_token10] = ACTIONS(1693), + [aux_sym_cmd_identifier_token11] = ACTIONS(1693), + [aux_sym_cmd_identifier_token12] = ACTIONS(1693), + [aux_sym_cmd_identifier_token13] = ACTIONS(1693), + [aux_sym_cmd_identifier_token14] = ACTIONS(1693), + [aux_sym_cmd_identifier_token15] = ACTIONS(1693), + [aux_sym_cmd_identifier_token16] = ACTIONS(1693), + [aux_sym_cmd_identifier_token17] = ACTIONS(1693), + [aux_sym_cmd_identifier_token18] = ACTIONS(1693), + [aux_sym_cmd_identifier_token19] = ACTIONS(1693), + [aux_sym_cmd_identifier_token20] = ACTIONS(1693), + [aux_sym_cmd_identifier_token21] = ACTIONS(1693), + [aux_sym_cmd_identifier_token22] = ACTIONS(1693), + [aux_sym_cmd_identifier_token23] = ACTIONS(1693), + [aux_sym_cmd_identifier_token24] = ACTIONS(1693), + [aux_sym_cmd_identifier_token25] = ACTIONS(1693), + [aux_sym_cmd_identifier_token26] = ACTIONS(1693), + [aux_sym_cmd_identifier_token27] = ACTIONS(1693), + [aux_sym_cmd_identifier_token28] = ACTIONS(1693), + [aux_sym_cmd_identifier_token29] = ACTIONS(1693), + [aux_sym_cmd_identifier_token30] = ACTIONS(1693), + [aux_sym_cmd_identifier_token31] = ACTIONS(1693), + [aux_sym_cmd_identifier_token32] = ACTIONS(1693), + [aux_sym_cmd_identifier_token33] = ACTIONS(1693), + [aux_sym_cmd_identifier_token34] = ACTIONS(1693), + [aux_sym_cmd_identifier_token35] = ACTIONS(1693), + [aux_sym_cmd_identifier_token36] = ACTIONS(1693), + [aux_sym_cmd_identifier_token37] = ACTIONS(1693), + [aux_sym_cmd_identifier_token38] = ACTIONS(1693), + [aux_sym_cmd_identifier_token39] = ACTIONS(1693), + [aux_sym_cmd_identifier_token40] = ACTIONS(1693), + [anon_sym_def] = ACTIONS(1693), + [anon_sym_export_DASHenv] = ACTIONS(1693), + [anon_sym_extern] = ACTIONS(1693), + [anon_sym_module] = ACTIONS(1693), + [anon_sym_use] = ACTIONS(1693), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_COMMA] = ACTIONS(1693), + [anon_sym_DOLLAR] = ACTIONS(1693), + [anon_sym_error] = ACTIONS(1693), + [anon_sym_DASH2] = ACTIONS(1693), + [anon_sym_break] = ACTIONS(1693), + [anon_sym_continue] = ACTIONS(1693), + [anon_sym_for] = ACTIONS(1693), + [anon_sym_in2] = ACTIONS(1693), + [anon_sym_loop] = ACTIONS(1693), + [anon_sym_make] = ACTIONS(1693), + [anon_sym_while] = ACTIONS(1693), + [anon_sym_do] = ACTIONS(1693), + [anon_sym_if] = ACTIONS(1693), + [anon_sym_else] = ACTIONS(1693), + [anon_sym_match] = ACTIONS(1693), + [anon_sym_RBRACE] = ACTIONS(1693), + [anon_sym_try] = ACTIONS(1693), + [anon_sym_catch] = ACTIONS(1693), + [anon_sym_return] = ACTIONS(1693), + [anon_sym_source] = ACTIONS(1693), + [anon_sym_source_DASHenv] = ACTIONS(1693), + [anon_sym_hide] = ACTIONS(1693), + [anon_sym_hide_DASHenv] = ACTIONS(1693), + [anon_sym_overlay] = ACTIONS(1693), + [anon_sym_as] = ACTIONS(1693), + [anon_sym_PLUS2] = ACTIONS(1693), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1693), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1693), + [aux_sym__val_number_decimal_token1] = ACTIONS(1693), + [aux_sym__val_number_decimal_token2] = ACTIONS(1693), + [aux_sym__val_number_decimal_token3] = ACTIONS(1693), + [aux_sym__val_number_decimal_token4] = ACTIONS(1693), + [aux_sym__val_number_token1] = ACTIONS(1693), + [aux_sym__val_number_token2] = ACTIONS(1693), + [aux_sym__val_number_token3] = ACTIONS(1693), + [aux_sym__val_number_token4] = ACTIONS(1693), + [aux_sym__val_number_token5] = ACTIONS(1693), + [aux_sym__val_number_token6] = ACTIONS(1693), + [anon_sym_DQUOTE] = ACTIONS(1693), + [sym__str_single_quotes] = ACTIONS(1693), + [sym__str_back_ticks] = ACTIONS(1693), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1693), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1693), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1693), + [sym__entry_separator] = ACTIONS(1695), + [anon_sym_register] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1695), + }, + [593] = { + [sym_comment] = STATE(593), + [anon_sym_export] = ACTIONS(2314), + [anon_sym_alias] = ACTIONS(2314), + [anon_sym_let] = ACTIONS(2314), + [anon_sym_let_DASHenv] = ACTIONS(2314), + [anon_sym_mut] = ACTIONS(2314), + [anon_sym_const] = ACTIONS(2314), + [aux_sym_cmd_identifier_token1] = ACTIONS(2314), + [aux_sym_cmd_identifier_token2] = ACTIONS(2314), + [aux_sym_cmd_identifier_token3] = ACTIONS(2314), + [aux_sym_cmd_identifier_token4] = ACTIONS(2314), + [aux_sym_cmd_identifier_token5] = ACTIONS(2314), + [aux_sym_cmd_identifier_token6] = ACTIONS(2314), + [aux_sym_cmd_identifier_token7] = ACTIONS(2314), + [aux_sym_cmd_identifier_token8] = ACTIONS(2314), + [aux_sym_cmd_identifier_token9] = ACTIONS(2314), + [aux_sym_cmd_identifier_token10] = ACTIONS(2314), + [aux_sym_cmd_identifier_token11] = ACTIONS(2314), + [aux_sym_cmd_identifier_token12] = ACTIONS(2314), + [aux_sym_cmd_identifier_token13] = ACTIONS(2314), + [aux_sym_cmd_identifier_token14] = ACTIONS(2314), + [aux_sym_cmd_identifier_token15] = ACTIONS(2314), + [aux_sym_cmd_identifier_token16] = ACTIONS(2314), + [aux_sym_cmd_identifier_token17] = ACTIONS(2314), + [aux_sym_cmd_identifier_token18] = ACTIONS(2314), + [aux_sym_cmd_identifier_token19] = ACTIONS(2314), + [aux_sym_cmd_identifier_token20] = ACTIONS(2314), + [aux_sym_cmd_identifier_token21] = ACTIONS(2314), + [aux_sym_cmd_identifier_token22] = ACTIONS(2314), + [aux_sym_cmd_identifier_token23] = ACTIONS(2314), + [aux_sym_cmd_identifier_token24] = ACTIONS(2314), + [aux_sym_cmd_identifier_token25] = ACTIONS(2314), + [aux_sym_cmd_identifier_token26] = ACTIONS(2314), + [aux_sym_cmd_identifier_token27] = ACTIONS(2314), + [aux_sym_cmd_identifier_token28] = ACTIONS(2314), + [aux_sym_cmd_identifier_token29] = ACTIONS(2314), + [aux_sym_cmd_identifier_token30] = ACTIONS(2314), + [aux_sym_cmd_identifier_token31] = ACTIONS(2314), + [aux_sym_cmd_identifier_token32] = ACTIONS(2314), + [aux_sym_cmd_identifier_token33] = ACTIONS(2314), + [aux_sym_cmd_identifier_token34] = ACTIONS(2314), + [aux_sym_cmd_identifier_token35] = ACTIONS(2314), + [aux_sym_cmd_identifier_token36] = ACTIONS(2314), + [aux_sym_cmd_identifier_token37] = ACTIONS(2314), + [aux_sym_cmd_identifier_token38] = ACTIONS(2314), + [aux_sym_cmd_identifier_token39] = ACTIONS(2314), + [aux_sym_cmd_identifier_token40] = ACTIONS(2314), + [anon_sym_def] = ACTIONS(2314), + [anon_sym_export_DASHenv] = ACTIONS(2314), + [anon_sym_extern] = ACTIONS(2314), + [anon_sym_module] = ACTIONS(2314), + [anon_sym_use] = ACTIONS(2314), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(2314), + [anon_sym_DOLLAR] = ACTIONS(2314), + [anon_sym_error] = ACTIONS(2314), + [anon_sym_DASH2] = ACTIONS(2314), + [anon_sym_break] = ACTIONS(2314), + [anon_sym_continue] = ACTIONS(2314), + [anon_sym_for] = ACTIONS(2314), + [anon_sym_in2] = ACTIONS(2314), + [anon_sym_loop] = ACTIONS(2314), + [anon_sym_make] = ACTIONS(2314), + [anon_sym_while] = ACTIONS(2314), + [anon_sym_do] = ACTIONS(2314), + [anon_sym_if] = ACTIONS(2314), + [anon_sym_else] = ACTIONS(2314), + [anon_sym_match] = ACTIONS(2314), + [anon_sym_RBRACE] = ACTIONS(2314), + [anon_sym_try] = ACTIONS(2314), + [anon_sym_catch] = ACTIONS(2314), + [anon_sym_return] = ACTIONS(2314), + [anon_sym_source] = ACTIONS(2314), + [anon_sym_source_DASHenv] = ACTIONS(2314), + [anon_sym_hide] = ACTIONS(2314), + [anon_sym_hide_DASHenv] = ACTIONS(2314), + [anon_sym_overlay] = ACTIONS(2314), + [anon_sym_as] = ACTIONS(2314), + [anon_sym_PLUS2] = ACTIONS(2314), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2314), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2314), + [aux_sym__val_number_decimal_token1] = ACTIONS(2314), + [aux_sym__val_number_decimal_token2] = ACTIONS(2314), + [aux_sym__val_number_decimal_token3] = ACTIONS(2314), + [aux_sym__val_number_decimal_token4] = ACTIONS(2314), + [aux_sym__val_number_token1] = ACTIONS(2314), + [aux_sym__val_number_token2] = ACTIONS(2314), + [aux_sym__val_number_token3] = ACTIONS(2314), + [aux_sym__val_number_token4] = ACTIONS(2314), + [aux_sym__val_number_token5] = ACTIONS(2314), + [aux_sym__val_number_token6] = ACTIONS(2314), + [anon_sym_DQUOTE] = ACTIONS(2314), + [sym__str_single_quotes] = ACTIONS(2314), + [sym__str_back_ticks] = ACTIONS(2314), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2314), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2314), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2314), + [sym__entry_separator] = ACTIONS(2316), + [anon_sym_register] = ACTIONS(2314), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2316), + }, + [594] = { + [sym_comment] = STATE(594), + [anon_sym_export] = ACTIONS(1766), + [anon_sym_alias] = ACTIONS(1766), + [anon_sym_let] = ACTIONS(1766), + [anon_sym_let_DASHenv] = ACTIONS(1766), + [anon_sym_mut] = ACTIONS(1766), + [anon_sym_const] = ACTIONS(1766), + [aux_sym_cmd_identifier_token1] = ACTIONS(1766), + [aux_sym_cmd_identifier_token2] = ACTIONS(1766), + [aux_sym_cmd_identifier_token3] = ACTIONS(1766), + [aux_sym_cmd_identifier_token4] = ACTIONS(1766), + [aux_sym_cmd_identifier_token5] = ACTIONS(1766), + [aux_sym_cmd_identifier_token6] = ACTIONS(1766), + [aux_sym_cmd_identifier_token7] = ACTIONS(1766), + [aux_sym_cmd_identifier_token8] = ACTIONS(1766), + [aux_sym_cmd_identifier_token9] = ACTIONS(1766), + [aux_sym_cmd_identifier_token10] = ACTIONS(1766), + [aux_sym_cmd_identifier_token11] = ACTIONS(1766), + [aux_sym_cmd_identifier_token12] = ACTIONS(1766), + [aux_sym_cmd_identifier_token13] = ACTIONS(1766), + [aux_sym_cmd_identifier_token14] = ACTIONS(1766), + [aux_sym_cmd_identifier_token15] = ACTIONS(1766), + [aux_sym_cmd_identifier_token16] = ACTIONS(1766), + [aux_sym_cmd_identifier_token17] = ACTIONS(1766), + [aux_sym_cmd_identifier_token18] = ACTIONS(1766), + [aux_sym_cmd_identifier_token19] = ACTIONS(1766), + [aux_sym_cmd_identifier_token20] = ACTIONS(1766), + [aux_sym_cmd_identifier_token21] = ACTIONS(1766), + [aux_sym_cmd_identifier_token22] = ACTIONS(1766), + [aux_sym_cmd_identifier_token23] = ACTIONS(1766), + [aux_sym_cmd_identifier_token24] = ACTIONS(1766), + [aux_sym_cmd_identifier_token25] = ACTIONS(1766), + [aux_sym_cmd_identifier_token26] = ACTIONS(1766), + [aux_sym_cmd_identifier_token27] = ACTIONS(1766), + [aux_sym_cmd_identifier_token28] = ACTIONS(1766), + [aux_sym_cmd_identifier_token29] = ACTIONS(1766), + [aux_sym_cmd_identifier_token30] = ACTIONS(1766), + [aux_sym_cmd_identifier_token31] = ACTIONS(1766), + [aux_sym_cmd_identifier_token32] = ACTIONS(1766), + [aux_sym_cmd_identifier_token33] = ACTIONS(1766), + [aux_sym_cmd_identifier_token34] = ACTIONS(1766), + [aux_sym_cmd_identifier_token35] = ACTIONS(1766), + [aux_sym_cmd_identifier_token36] = ACTIONS(1766), + [aux_sym_cmd_identifier_token37] = ACTIONS(1766), + [aux_sym_cmd_identifier_token38] = ACTIONS(1766), + [aux_sym_cmd_identifier_token39] = ACTIONS(1766), + [aux_sym_cmd_identifier_token40] = ACTIONS(1766), + [anon_sym_def] = ACTIONS(1766), + [anon_sym_export_DASHenv] = ACTIONS(1766), + [anon_sym_extern] = ACTIONS(1766), + [anon_sym_module] = ACTIONS(1766), + [anon_sym_use] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1766), + [anon_sym_COMMA] = ACTIONS(1766), + [anon_sym_DOLLAR] = ACTIONS(1766), + [anon_sym_error] = ACTIONS(1766), + [anon_sym_DASH2] = ACTIONS(1766), + [anon_sym_break] = ACTIONS(1766), + [anon_sym_continue] = ACTIONS(1766), + [anon_sym_for] = ACTIONS(1766), + [anon_sym_in2] = ACTIONS(1766), + [anon_sym_loop] = ACTIONS(1766), + [anon_sym_make] = ACTIONS(1766), + [anon_sym_while] = ACTIONS(1766), + [anon_sym_do] = ACTIONS(1766), + [anon_sym_if] = ACTIONS(1766), + [anon_sym_else] = ACTIONS(1766), + [anon_sym_match] = ACTIONS(1766), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_try] = ACTIONS(1766), + [anon_sym_catch] = ACTIONS(1766), + [anon_sym_return] = ACTIONS(1766), + [anon_sym_source] = ACTIONS(1766), + [anon_sym_source_DASHenv] = ACTIONS(1766), + [anon_sym_hide] = ACTIONS(1766), + [anon_sym_hide_DASHenv] = ACTIONS(1766), + [anon_sym_overlay] = ACTIONS(1766), + [anon_sym_as] = ACTIONS(1766), + [anon_sym_PLUS2] = ACTIONS(1766), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1766), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1766), + [aux_sym__val_number_decimal_token1] = ACTIONS(1766), + [aux_sym__val_number_decimal_token2] = ACTIONS(1766), + [aux_sym__val_number_decimal_token3] = ACTIONS(1766), + [aux_sym__val_number_decimal_token4] = ACTIONS(1766), + [aux_sym__val_number_token1] = ACTIONS(1766), + [aux_sym__val_number_token2] = ACTIONS(1766), + [aux_sym__val_number_token3] = ACTIONS(1766), + [aux_sym__val_number_token4] = ACTIONS(1766), + [aux_sym__val_number_token5] = ACTIONS(1766), + [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(1766), + [sym__entry_separator] = ACTIONS(1768), + [anon_sym_register] = ACTIONS(1766), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1768), + }, + [595] = { + [sym_comment] = STATE(595), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1792), + [anon_sym_DOLLAR] = ACTIONS(1792), + [anon_sym_error] = ACTIONS(1792), + [anon_sym_DASH2] = ACTIONS(1792), + [anon_sym_break] = ACTIONS(1792), + [anon_sym_continue] = ACTIONS(1792), + [anon_sym_for] = ACTIONS(1792), + [anon_sym_in2] = 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_hide] = ACTIONS(1792), + [anon_sym_hide_DASHenv] = ACTIONS(1792), + [anon_sym_overlay] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1792), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_decimal_token3] = ACTIONS(1792), + [aux_sym__val_number_decimal_token4] = ACTIONS(1792), + [aux_sym__val_number_token1] = ACTIONS(1792), + [aux_sym__val_number_token2] = ACTIONS(1792), + [aux_sym__val_number_token3] = ACTIONS(1792), + [aux_sym__val_number_token4] = ACTIONS(1792), + [aux_sym__val_number_token5] = ACTIONS(1792), + [aux_sym__val_number_token6] = ACTIONS(1792), + [anon_sym_DQUOTE] = ACTIONS(1792), + [sym__str_single_quotes] = ACTIONS(1792), + [sym__str_back_ticks] = ACTIONS(1792), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1792), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1792), + [sym__entry_separator] = ACTIONS(1794), + [anon_sym_register] = ACTIONS(1792), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1794), + }, + [596] = { + [sym_comment] = STATE(596), + [anon_sym_export] = ACTIONS(2318), + [anon_sym_alias] = ACTIONS(2318), + [anon_sym_let] = ACTIONS(2318), + [anon_sym_let_DASHenv] = ACTIONS(2318), + [anon_sym_mut] = ACTIONS(2318), + [anon_sym_const] = ACTIONS(2318), + [aux_sym_cmd_identifier_token1] = ACTIONS(2318), + [aux_sym_cmd_identifier_token2] = ACTIONS(2318), + [aux_sym_cmd_identifier_token3] = ACTIONS(2318), + [aux_sym_cmd_identifier_token4] = ACTIONS(2318), + [aux_sym_cmd_identifier_token5] = ACTIONS(2318), + [aux_sym_cmd_identifier_token6] = ACTIONS(2318), + [aux_sym_cmd_identifier_token7] = ACTIONS(2318), + [aux_sym_cmd_identifier_token8] = ACTIONS(2318), + [aux_sym_cmd_identifier_token9] = ACTIONS(2318), + [aux_sym_cmd_identifier_token10] = ACTIONS(2318), + [aux_sym_cmd_identifier_token11] = ACTIONS(2318), + [aux_sym_cmd_identifier_token12] = ACTIONS(2318), + [aux_sym_cmd_identifier_token13] = ACTIONS(2318), + [aux_sym_cmd_identifier_token14] = ACTIONS(2318), + [aux_sym_cmd_identifier_token15] = ACTIONS(2318), + [aux_sym_cmd_identifier_token16] = ACTIONS(2318), + [aux_sym_cmd_identifier_token17] = ACTIONS(2318), + [aux_sym_cmd_identifier_token18] = ACTIONS(2318), + [aux_sym_cmd_identifier_token19] = ACTIONS(2318), + [aux_sym_cmd_identifier_token20] = ACTIONS(2318), + [aux_sym_cmd_identifier_token21] = ACTIONS(2318), + [aux_sym_cmd_identifier_token22] = ACTIONS(2318), + [aux_sym_cmd_identifier_token23] = ACTIONS(2318), + [aux_sym_cmd_identifier_token24] = ACTIONS(2318), + [aux_sym_cmd_identifier_token25] = ACTIONS(2318), + [aux_sym_cmd_identifier_token26] = ACTIONS(2318), + [aux_sym_cmd_identifier_token27] = ACTIONS(2318), + [aux_sym_cmd_identifier_token28] = ACTIONS(2318), + [aux_sym_cmd_identifier_token29] = ACTIONS(2318), + [aux_sym_cmd_identifier_token30] = ACTIONS(2318), + [aux_sym_cmd_identifier_token31] = ACTIONS(2318), + [aux_sym_cmd_identifier_token32] = ACTIONS(2318), + [aux_sym_cmd_identifier_token33] = ACTIONS(2318), + [aux_sym_cmd_identifier_token34] = ACTIONS(2318), + [aux_sym_cmd_identifier_token35] = ACTIONS(2318), + [aux_sym_cmd_identifier_token36] = ACTIONS(2318), + [aux_sym_cmd_identifier_token37] = ACTIONS(2318), + [aux_sym_cmd_identifier_token38] = ACTIONS(2318), + [aux_sym_cmd_identifier_token39] = ACTIONS(2318), + [aux_sym_cmd_identifier_token40] = ACTIONS(2318), + [anon_sym_def] = ACTIONS(2318), + [anon_sym_export_DASHenv] = ACTIONS(2318), + [anon_sym_extern] = ACTIONS(2318), + [anon_sym_module] = ACTIONS(2318), + [anon_sym_use] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2318), + [anon_sym_COMMA] = ACTIONS(2318), + [anon_sym_DOLLAR] = ACTIONS(2318), + [anon_sym_error] = ACTIONS(2318), + [anon_sym_DASH2] = ACTIONS(2318), + [anon_sym_break] = ACTIONS(2318), + [anon_sym_continue] = ACTIONS(2318), + [anon_sym_for] = ACTIONS(2318), + [anon_sym_in2] = ACTIONS(2318), + [anon_sym_loop] = ACTIONS(2318), + [anon_sym_make] = ACTIONS(2318), + [anon_sym_while] = ACTIONS(2318), + [anon_sym_do] = ACTIONS(2318), + [anon_sym_if] = ACTIONS(2318), + [anon_sym_else] = ACTIONS(2318), + [anon_sym_match] = ACTIONS(2318), + [anon_sym_RBRACE] = ACTIONS(2318), + [anon_sym_try] = ACTIONS(2318), + [anon_sym_catch] = ACTIONS(2318), + [anon_sym_return] = ACTIONS(2318), + [anon_sym_source] = ACTIONS(2318), + [anon_sym_source_DASHenv] = ACTIONS(2318), + [anon_sym_hide] = ACTIONS(2318), + [anon_sym_hide_DASHenv] = ACTIONS(2318), + [anon_sym_overlay] = ACTIONS(2318), + [anon_sym_as] = ACTIONS(2318), + [anon_sym_PLUS2] = ACTIONS(2318), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2318), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2318), + [aux_sym__val_number_decimal_token1] = ACTIONS(2318), + [aux_sym__val_number_decimal_token2] = ACTIONS(2318), + [aux_sym__val_number_decimal_token3] = ACTIONS(2318), + [aux_sym__val_number_decimal_token4] = ACTIONS(2318), + [aux_sym__val_number_token1] = ACTIONS(2318), + [aux_sym__val_number_token2] = ACTIONS(2318), + [aux_sym__val_number_token3] = ACTIONS(2318), + [aux_sym__val_number_token4] = ACTIONS(2318), + [aux_sym__val_number_token5] = ACTIONS(2318), + [aux_sym__val_number_token6] = ACTIONS(2318), + [anon_sym_DQUOTE] = ACTIONS(2318), + [sym__str_single_quotes] = ACTIONS(2318), + [sym__str_back_ticks] = ACTIONS(2318), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2318), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2318), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2318), + [sym__entry_separator] = ACTIONS(2320), + [anon_sym_register] = ACTIONS(2318), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2320), + }, + [597] = { + [sym_comment] = STATE(597), + [anon_sym_export] = ACTIONS(2322), + [anon_sym_alias] = ACTIONS(2322), + [anon_sym_let] = ACTIONS(2322), + [anon_sym_let_DASHenv] = ACTIONS(2322), + [anon_sym_mut] = ACTIONS(2322), + [anon_sym_const] = ACTIONS(2322), + [aux_sym_cmd_identifier_token1] = ACTIONS(2322), + [aux_sym_cmd_identifier_token2] = ACTIONS(2322), + [aux_sym_cmd_identifier_token3] = ACTIONS(2322), + [aux_sym_cmd_identifier_token4] = ACTIONS(2322), + [aux_sym_cmd_identifier_token5] = ACTIONS(2322), + [aux_sym_cmd_identifier_token6] = ACTIONS(2322), + [aux_sym_cmd_identifier_token7] = ACTIONS(2322), + [aux_sym_cmd_identifier_token8] = ACTIONS(2322), + [aux_sym_cmd_identifier_token9] = ACTIONS(2322), + [aux_sym_cmd_identifier_token10] = ACTIONS(2322), + [aux_sym_cmd_identifier_token11] = ACTIONS(2322), + [aux_sym_cmd_identifier_token12] = ACTIONS(2322), + [aux_sym_cmd_identifier_token13] = ACTIONS(2322), + [aux_sym_cmd_identifier_token14] = ACTIONS(2322), + [aux_sym_cmd_identifier_token15] = ACTIONS(2322), + [aux_sym_cmd_identifier_token16] = ACTIONS(2322), + [aux_sym_cmd_identifier_token17] = ACTIONS(2322), + [aux_sym_cmd_identifier_token18] = ACTIONS(2322), + [aux_sym_cmd_identifier_token19] = ACTIONS(2322), + [aux_sym_cmd_identifier_token20] = ACTIONS(2322), + [aux_sym_cmd_identifier_token21] = ACTIONS(2322), + [aux_sym_cmd_identifier_token22] = ACTIONS(2322), + [aux_sym_cmd_identifier_token23] = ACTIONS(2322), + [aux_sym_cmd_identifier_token24] = ACTIONS(2322), + [aux_sym_cmd_identifier_token25] = ACTIONS(2322), + [aux_sym_cmd_identifier_token26] = ACTIONS(2322), + [aux_sym_cmd_identifier_token27] = ACTIONS(2322), + [aux_sym_cmd_identifier_token28] = ACTIONS(2322), + [aux_sym_cmd_identifier_token29] = ACTIONS(2322), + [aux_sym_cmd_identifier_token30] = ACTIONS(2322), + [aux_sym_cmd_identifier_token31] = ACTIONS(2322), + [aux_sym_cmd_identifier_token32] = ACTIONS(2322), + [aux_sym_cmd_identifier_token33] = ACTIONS(2322), + [aux_sym_cmd_identifier_token34] = ACTIONS(2322), + [aux_sym_cmd_identifier_token35] = ACTIONS(2322), + [aux_sym_cmd_identifier_token36] = ACTIONS(2322), + [aux_sym_cmd_identifier_token37] = ACTIONS(2322), + [aux_sym_cmd_identifier_token38] = ACTIONS(2322), + [aux_sym_cmd_identifier_token39] = ACTIONS(2322), + [aux_sym_cmd_identifier_token40] = ACTIONS(2322), + [anon_sym_def] = ACTIONS(2322), + [anon_sym_export_DASHenv] = ACTIONS(2322), + [anon_sym_extern] = ACTIONS(2322), + [anon_sym_module] = ACTIONS(2322), + [anon_sym_use] = ACTIONS(2322), + [anon_sym_LPAREN] = ACTIONS(2322), + [anon_sym_COMMA] = ACTIONS(2322), + [anon_sym_DOLLAR] = ACTIONS(2322), + [anon_sym_error] = ACTIONS(2322), + [anon_sym_DASH2] = ACTIONS(2322), + [anon_sym_break] = ACTIONS(2322), + [anon_sym_continue] = ACTIONS(2322), + [anon_sym_for] = ACTIONS(2322), + [anon_sym_in2] = ACTIONS(2322), + [anon_sym_loop] = ACTIONS(2322), + [anon_sym_make] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2322), + [anon_sym_do] = ACTIONS(2322), + [anon_sym_if] = ACTIONS(2322), + [anon_sym_else] = ACTIONS(2322), + [anon_sym_match] = ACTIONS(2322), + [anon_sym_RBRACE] = ACTIONS(2322), + [anon_sym_try] = ACTIONS(2322), + [anon_sym_catch] = ACTIONS(2322), + [anon_sym_return] = ACTIONS(2322), + [anon_sym_source] = ACTIONS(2322), + [anon_sym_source_DASHenv] = ACTIONS(2322), + [anon_sym_hide] = ACTIONS(2322), + [anon_sym_hide_DASHenv] = ACTIONS(2322), + [anon_sym_overlay] = ACTIONS(2322), + [anon_sym_as] = ACTIONS(2322), + [anon_sym_PLUS2] = ACTIONS(2322), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2322), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2322), + [aux_sym__val_number_decimal_token1] = ACTIONS(2322), + [aux_sym__val_number_decimal_token2] = ACTIONS(2322), + [aux_sym__val_number_decimal_token3] = ACTIONS(2322), + [aux_sym__val_number_decimal_token4] = ACTIONS(2322), + [aux_sym__val_number_token1] = ACTIONS(2322), + [aux_sym__val_number_token2] = ACTIONS(2322), + [aux_sym__val_number_token3] = ACTIONS(2322), + [aux_sym__val_number_token4] = ACTIONS(2322), + [aux_sym__val_number_token5] = ACTIONS(2322), + [aux_sym__val_number_token6] = ACTIONS(2322), + [anon_sym_DQUOTE] = ACTIONS(2322), + [sym__str_single_quotes] = ACTIONS(2322), + [sym__str_back_ticks] = ACTIONS(2322), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2322), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2322), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2322), + [sym__entry_separator] = ACTIONS(2324), + [anon_sym_register] = ACTIONS(2322), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2324), + }, + [598] = { + [sym_comment] = STATE(598), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(2326), + [anon_sym_DOLLAR] = ACTIONS(2326), + [anon_sym_error] = ACTIONS(2326), + [anon_sym_DASH2] = ACTIONS(2326), + [anon_sym_break] = ACTIONS(2326), + [anon_sym_continue] = ACTIONS(2326), + [anon_sym_for] = ACTIONS(2326), + [anon_sym_in2] = 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_hide] = ACTIONS(2326), + [anon_sym_hide_DASHenv] = ACTIONS(2326), + [anon_sym_overlay] = ACTIONS(2326), + [anon_sym_as] = ACTIONS(2326), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2326), + [aux_sym__val_number_token5] = ACTIONS(2326), + [aux_sym__val_number_token6] = ACTIONS(2326), + [anon_sym_DQUOTE] = ACTIONS(2326), + [sym__str_single_quotes] = ACTIONS(2326), + [sym__str_back_ticks] = ACTIONS(2326), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2326), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2326), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2326), + [sym__entry_separator] = ACTIONS(2328), + [anon_sym_register] = ACTIONS(2326), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2328), + }, + [599] = { + [sym_comment] = STATE(599), + [anon_sym_export] = ACTIONS(2330), + [anon_sym_alias] = ACTIONS(2330), + [anon_sym_let] = ACTIONS(2330), + [anon_sym_let_DASHenv] = ACTIONS(2330), + [anon_sym_mut] = ACTIONS(2330), + [anon_sym_const] = ACTIONS(2330), + [aux_sym_cmd_identifier_token1] = ACTIONS(2330), + [aux_sym_cmd_identifier_token2] = ACTIONS(2330), + [aux_sym_cmd_identifier_token3] = ACTIONS(2330), + [aux_sym_cmd_identifier_token4] = ACTIONS(2330), + [aux_sym_cmd_identifier_token5] = ACTIONS(2330), + [aux_sym_cmd_identifier_token6] = ACTIONS(2330), + [aux_sym_cmd_identifier_token7] = ACTIONS(2330), + [aux_sym_cmd_identifier_token8] = ACTIONS(2330), + [aux_sym_cmd_identifier_token9] = ACTIONS(2330), + [aux_sym_cmd_identifier_token10] = ACTIONS(2330), + [aux_sym_cmd_identifier_token11] = ACTIONS(2330), + [aux_sym_cmd_identifier_token12] = ACTIONS(2330), + [aux_sym_cmd_identifier_token13] = ACTIONS(2330), + [aux_sym_cmd_identifier_token14] = ACTIONS(2330), + [aux_sym_cmd_identifier_token15] = ACTIONS(2330), + [aux_sym_cmd_identifier_token16] = ACTIONS(2330), + [aux_sym_cmd_identifier_token17] = ACTIONS(2330), + [aux_sym_cmd_identifier_token18] = ACTIONS(2330), + [aux_sym_cmd_identifier_token19] = ACTIONS(2330), + [aux_sym_cmd_identifier_token20] = ACTIONS(2330), + [aux_sym_cmd_identifier_token21] = ACTIONS(2330), + [aux_sym_cmd_identifier_token22] = ACTIONS(2330), + [aux_sym_cmd_identifier_token23] = ACTIONS(2330), + [aux_sym_cmd_identifier_token24] = ACTIONS(2330), + [aux_sym_cmd_identifier_token25] = ACTIONS(2330), + [aux_sym_cmd_identifier_token26] = ACTIONS(2330), + [aux_sym_cmd_identifier_token27] = ACTIONS(2330), + [aux_sym_cmd_identifier_token28] = ACTIONS(2330), + [aux_sym_cmd_identifier_token29] = ACTIONS(2330), + [aux_sym_cmd_identifier_token30] = ACTIONS(2330), + [aux_sym_cmd_identifier_token31] = ACTIONS(2330), + [aux_sym_cmd_identifier_token32] = ACTIONS(2330), + [aux_sym_cmd_identifier_token33] = ACTIONS(2330), + [aux_sym_cmd_identifier_token34] = ACTIONS(2330), + [aux_sym_cmd_identifier_token35] = ACTIONS(2330), + [aux_sym_cmd_identifier_token36] = ACTIONS(2330), + [aux_sym_cmd_identifier_token37] = ACTIONS(2330), + [aux_sym_cmd_identifier_token38] = ACTIONS(2330), + [aux_sym_cmd_identifier_token39] = ACTIONS(2330), + [aux_sym_cmd_identifier_token40] = ACTIONS(2330), + [anon_sym_def] = ACTIONS(2330), + [anon_sym_export_DASHenv] = ACTIONS(2330), + [anon_sym_extern] = ACTIONS(2330), + [anon_sym_module] = ACTIONS(2330), + [anon_sym_use] = ACTIONS(2330), + [anon_sym_LPAREN] = ACTIONS(2330), + [anon_sym_COMMA] = ACTIONS(2330), + [anon_sym_DOLLAR] = ACTIONS(2330), + [anon_sym_error] = ACTIONS(2330), + [anon_sym_DASH2] = ACTIONS(2330), + [anon_sym_break] = ACTIONS(2330), + [anon_sym_continue] = ACTIONS(2330), + [anon_sym_for] = ACTIONS(2330), + [anon_sym_in2] = ACTIONS(2330), + [anon_sym_loop] = ACTIONS(2330), + [anon_sym_make] = ACTIONS(2330), + [anon_sym_while] = ACTIONS(2330), + [anon_sym_do] = ACTIONS(2330), + [anon_sym_if] = ACTIONS(2330), + [anon_sym_else] = ACTIONS(2330), + [anon_sym_match] = ACTIONS(2330), + [anon_sym_RBRACE] = ACTIONS(2330), + [anon_sym_try] = ACTIONS(2330), + [anon_sym_catch] = ACTIONS(2330), + [anon_sym_return] = ACTIONS(2330), + [anon_sym_source] = ACTIONS(2330), + [anon_sym_source_DASHenv] = ACTIONS(2330), + [anon_sym_hide] = ACTIONS(2330), + [anon_sym_hide_DASHenv] = ACTIONS(2330), + [anon_sym_overlay] = ACTIONS(2330), + [anon_sym_as] = ACTIONS(2330), + [anon_sym_PLUS2] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2330), + [aux_sym__val_number_decimal_token1] = ACTIONS(2330), + [aux_sym__val_number_decimal_token2] = ACTIONS(2330), + [aux_sym__val_number_decimal_token3] = ACTIONS(2330), + [aux_sym__val_number_decimal_token4] = ACTIONS(2330), + [aux_sym__val_number_token1] = ACTIONS(2330), + [aux_sym__val_number_token2] = ACTIONS(2330), + [aux_sym__val_number_token3] = ACTIONS(2330), + [aux_sym__val_number_token4] = ACTIONS(2330), + [aux_sym__val_number_token5] = ACTIONS(2330), + [aux_sym__val_number_token6] = ACTIONS(2330), + [anon_sym_DQUOTE] = ACTIONS(2330), + [sym__str_single_quotes] = ACTIONS(2330), + [sym__str_back_ticks] = ACTIONS(2330), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2330), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2330), + [sym__entry_separator] = ACTIONS(2332), + [anon_sym_register] = ACTIONS(2330), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2332), + }, + [600] = { + [sym_comment] = STATE(600), + [anon_sym_export] = ACTIONS(2334), + [anon_sym_alias] = ACTIONS(2334), + [anon_sym_let] = ACTIONS(2334), + [anon_sym_let_DASHenv] = ACTIONS(2334), + [anon_sym_mut] = ACTIONS(2334), + [anon_sym_const] = ACTIONS(2334), + [aux_sym_cmd_identifier_token1] = ACTIONS(2334), + [aux_sym_cmd_identifier_token2] = ACTIONS(2334), + [aux_sym_cmd_identifier_token3] = ACTIONS(2334), + [aux_sym_cmd_identifier_token4] = ACTIONS(2334), + [aux_sym_cmd_identifier_token5] = ACTIONS(2334), + [aux_sym_cmd_identifier_token6] = ACTIONS(2334), + [aux_sym_cmd_identifier_token7] = ACTIONS(2334), + [aux_sym_cmd_identifier_token8] = ACTIONS(2334), + [aux_sym_cmd_identifier_token9] = ACTIONS(2334), + [aux_sym_cmd_identifier_token10] = ACTIONS(2334), + [aux_sym_cmd_identifier_token11] = ACTIONS(2334), + [aux_sym_cmd_identifier_token12] = ACTIONS(2334), + [aux_sym_cmd_identifier_token13] = ACTIONS(2334), + [aux_sym_cmd_identifier_token14] = ACTIONS(2334), + [aux_sym_cmd_identifier_token15] = ACTIONS(2334), + [aux_sym_cmd_identifier_token16] = ACTIONS(2334), + [aux_sym_cmd_identifier_token17] = ACTIONS(2334), + [aux_sym_cmd_identifier_token18] = ACTIONS(2334), + [aux_sym_cmd_identifier_token19] = ACTIONS(2334), + [aux_sym_cmd_identifier_token20] = ACTIONS(2334), + [aux_sym_cmd_identifier_token21] = ACTIONS(2334), + [aux_sym_cmd_identifier_token22] = ACTIONS(2334), + [aux_sym_cmd_identifier_token23] = ACTIONS(2334), + [aux_sym_cmd_identifier_token24] = ACTIONS(2334), + [aux_sym_cmd_identifier_token25] = ACTIONS(2334), + [aux_sym_cmd_identifier_token26] = ACTIONS(2334), + [aux_sym_cmd_identifier_token27] = ACTIONS(2334), + [aux_sym_cmd_identifier_token28] = ACTIONS(2334), + [aux_sym_cmd_identifier_token29] = ACTIONS(2334), + [aux_sym_cmd_identifier_token30] = ACTIONS(2334), + [aux_sym_cmd_identifier_token31] = ACTIONS(2334), + [aux_sym_cmd_identifier_token32] = ACTIONS(2334), + [aux_sym_cmd_identifier_token33] = ACTIONS(2334), + [aux_sym_cmd_identifier_token34] = ACTIONS(2334), + [aux_sym_cmd_identifier_token35] = ACTIONS(2334), + [aux_sym_cmd_identifier_token36] = ACTIONS(2334), + [aux_sym_cmd_identifier_token37] = ACTIONS(2334), + [aux_sym_cmd_identifier_token38] = ACTIONS(2334), + [aux_sym_cmd_identifier_token39] = ACTIONS(2334), + [aux_sym_cmd_identifier_token40] = ACTIONS(2334), + [anon_sym_def] = ACTIONS(2334), + [anon_sym_export_DASHenv] = ACTIONS(2334), + [anon_sym_extern] = ACTIONS(2334), + [anon_sym_module] = ACTIONS(2334), + [anon_sym_use] = ACTIONS(2334), + [anon_sym_LPAREN] = ACTIONS(2334), + [anon_sym_COMMA] = ACTIONS(2334), + [anon_sym_DOLLAR] = ACTIONS(2334), + [anon_sym_error] = ACTIONS(2334), + [anon_sym_DASH2] = ACTIONS(2334), + [anon_sym_break] = ACTIONS(2334), + [anon_sym_continue] = ACTIONS(2334), + [anon_sym_for] = ACTIONS(2334), + [anon_sym_in2] = ACTIONS(2334), + [anon_sym_loop] = ACTIONS(2334), + [anon_sym_make] = ACTIONS(2334), + [anon_sym_while] = ACTIONS(2334), + [anon_sym_do] = ACTIONS(2334), + [anon_sym_if] = ACTIONS(2334), + [anon_sym_else] = ACTIONS(2334), + [anon_sym_match] = ACTIONS(2334), + [anon_sym_RBRACE] = ACTIONS(2334), + [anon_sym_try] = ACTIONS(2334), + [anon_sym_catch] = ACTIONS(2334), + [anon_sym_return] = ACTIONS(2334), + [anon_sym_source] = ACTIONS(2334), + [anon_sym_source_DASHenv] = ACTIONS(2334), + [anon_sym_hide] = ACTIONS(2334), + [anon_sym_hide_DASHenv] = ACTIONS(2334), + [anon_sym_overlay] = ACTIONS(2334), + [anon_sym_as] = ACTIONS(2334), + [anon_sym_PLUS2] = ACTIONS(2334), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2334), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2334), + [aux_sym__val_number_decimal_token1] = ACTIONS(2334), + [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), + [aux_sym__val_number_token4] = ACTIONS(2334), + [aux_sym__val_number_token5] = ACTIONS(2334), + [aux_sym__val_number_token6] = ACTIONS(2334), + [anon_sym_DQUOTE] = ACTIONS(2334), + [sym__str_single_quotes] = ACTIONS(2334), + [sym__str_back_ticks] = ACTIONS(2334), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2334), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2334), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2334), + [sym__entry_separator] = ACTIONS(2336), + [anon_sym_register] = ACTIONS(2334), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2336), + }, + [601] = { + [sym_comment] = STATE(601), + [anon_sym_export] = ACTIONS(2338), + [anon_sym_alias] = ACTIONS(2338), + [anon_sym_let] = ACTIONS(2338), + [anon_sym_let_DASHenv] = ACTIONS(2338), + [anon_sym_mut] = ACTIONS(2338), + [anon_sym_const] = ACTIONS(2338), + [aux_sym_cmd_identifier_token1] = ACTIONS(2338), + [aux_sym_cmd_identifier_token2] = ACTIONS(2338), + [aux_sym_cmd_identifier_token3] = ACTIONS(2338), + [aux_sym_cmd_identifier_token4] = ACTIONS(2338), + [aux_sym_cmd_identifier_token5] = ACTIONS(2338), + [aux_sym_cmd_identifier_token6] = ACTIONS(2338), + [aux_sym_cmd_identifier_token7] = ACTIONS(2338), + [aux_sym_cmd_identifier_token8] = ACTIONS(2338), + [aux_sym_cmd_identifier_token9] = ACTIONS(2338), + [aux_sym_cmd_identifier_token10] = ACTIONS(2338), + [aux_sym_cmd_identifier_token11] = ACTIONS(2338), + [aux_sym_cmd_identifier_token12] = ACTIONS(2338), + [aux_sym_cmd_identifier_token13] = ACTIONS(2338), + [aux_sym_cmd_identifier_token14] = ACTIONS(2338), + [aux_sym_cmd_identifier_token15] = ACTIONS(2338), + [aux_sym_cmd_identifier_token16] = ACTIONS(2338), + [aux_sym_cmd_identifier_token17] = ACTIONS(2338), + [aux_sym_cmd_identifier_token18] = ACTIONS(2338), + [aux_sym_cmd_identifier_token19] = ACTIONS(2338), + [aux_sym_cmd_identifier_token20] = ACTIONS(2338), + [aux_sym_cmd_identifier_token21] = ACTIONS(2338), + [aux_sym_cmd_identifier_token22] = ACTIONS(2338), + [aux_sym_cmd_identifier_token23] = ACTIONS(2338), + [aux_sym_cmd_identifier_token24] = ACTIONS(2338), + [aux_sym_cmd_identifier_token25] = ACTIONS(2338), + [aux_sym_cmd_identifier_token26] = ACTIONS(2338), + [aux_sym_cmd_identifier_token27] = ACTIONS(2338), + [aux_sym_cmd_identifier_token28] = ACTIONS(2338), + [aux_sym_cmd_identifier_token29] = ACTIONS(2338), + [aux_sym_cmd_identifier_token30] = ACTIONS(2338), + [aux_sym_cmd_identifier_token31] = ACTIONS(2338), + [aux_sym_cmd_identifier_token32] = ACTIONS(2338), + [aux_sym_cmd_identifier_token33] = ACTIONS(2338), + [aux_sym_cmd_identifier_token34] = ACTIONS(2338), + [aux_sym_cmd_identifier_token35] = ACTIONS(2338), + [aux_sym_cmd_identifier_token36] = ACTIONS(2338), + [aux_sym_cmd_identifier_token37] = ACTIONS(2338), + [aux_sym_cmd_identifier_token38] = ACTIONS(2338), + [aux_sym_cmd_identifier_token39] = ACTIONS(2338), + [aux_sym_cmd_identifier_token40] = ACTIONS(2338), + [anon_sym_def] = ACTIONS(2338), + [anon_sym_export_DASHenv] = ACTIONS(2338), + [anon_sym_extern] = ACTIONS(2338), + [anon_sym_module] = ACTIONS(2338), + [anon_sym_use] = ACTIONS(2338), + [anon_sym_LPAREN] = ACTIONS(2338), + [anon_sym_COMMA] = ACTIONS(2338), + [anon_sym_DOLLAR] = ACTIONS(2338), + [anon_sym_error] = ACTIONS(2338), + [anon_sym_DASH2] = ACTIONS(2338), + [anon_sym_break] = ACTIONS(2338), + [anon_sym_continue] = ACTIONS(2338), + [anon_sym_for] = ACTIONS(2338), + [anon_sym_in2] = ACTIONS(2338), + [anon_sym_loop] = ACTIONS(2338), + [anon_sym_make] = ACTIONS(2338), + [anon_sym_while] = ACTIONS(2338), + [anon_sym_do] = ACTIONS(2338), + [anon_sym_if] = ACTIONS(2338), + [anon_sym_else] = ACTIONS(2338), + [anon_sym_match] = ACTIONS(2338), + [anon_sym_RBRACE] = ACTIONS(2338), + [anon_sym_try] = ACTIONS(2338), + [anon_sym_catch] = ACTIONS(2338), + [anon_sym_return] = ACTIONS(2338), + [anon_sym_source] = ACTIONS(2338), + [anon_sym_source_DASHenv] = ACTIONS(2338), + [anon_sym_hide] = ACTIONS(2338), + [anon_sym_hide_DASHenv] = ACTIONS(2338), + [anon_sym_overlay] = ACTIONS(2338), + [anon_sym_as] = ACTIONS(2338), + [anon_sym_PLUS2] = ACTIONS(2338), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2338), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2338), + [aux_sym__val_number_decimal_token1] = ACTIONS(2338), + [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), + [aux_sym__val_number_token4] = ACTIONS(2338), + [aux_sym__val_number_token5] = ACTIONS(2338), + [aux_sym__val_number_token6] = ACTIONS(2338), + [anon_sym_DQUOTE] = ACTIONS(2338), + [sym__str_single_quotes] = ACTIONS(2338), + [sym__str_back_ticks] = ACTIONS(2338), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2338), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2338), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2338), + [sym__entry_separator] = ACTIONS(2340), + [anon_sym_register] = ACTIONS(2338), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2340), + }, + [602] = { + [sym_comment] = STATE(602), + [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(996), [aux_sym_cmd_identifier_token3] = ACTIONS(996), [aux_sym_cmd_identifier_token4] = ACTIONS(996), [aux_sym_cmd_identifier_token5] = ACTIONS(996), [aux_sym_cmd_identifier_token6] = ACTIONS(996), [aux_sym_cmd_identifier_token7] = ACTIONS(996), - [aux_sym_cmd_identifier_token8] = ACTIONS(996), - [aux_sym_cmd_identifier_token9] = ACTIONS(996), + [aux_sym_cmd_identifier_token8] = ACTIONS(990), + [aux_sym_cmd_identifier_token9] = ACTIONS(990), [aux_sym_cmd_identifier_token10] = ACTIONS(996), [aux_sym_cmd_identifier_token11] = ACTIONS(996), - [aux_sym_cmd_identifier_token12] = ACTIONS(996), - [aux_sym_cmd_identifier_token13] = ACTIONS(996), - [aux_sym_cmd_identifier_token14] = ACTIONS(996), - [aux_sym_cmd_identifier_token15] = ACTIONS(996), + [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(996), [aux_sym_cmd_identifier_token17] = ACTIONS(996), [aux_sym_cmd_identifier_token18] = ACTIONS(996), @@ -143697,2252 +147052,1306 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(996), [aux_sym_cmd_identifier_token32] = ACTIONS(996), [aux_sym_cmd_identifier_token33] = ACTIONS(996), - [aux_sym_cmd_identifier_token34] = ACTIONS(996), + [aux_sym_cmd_identifier_token34] = ACTIONS(990), [aux_sym_cmd_identifier_token35] = ACTIONS(996), [aux_sym_cmd_identifier_token36] = ACTIONS(996), [aux_sym_cmd_identifier_token37] = ACTIONS(996), - [aux_sym_cmd_identifier_token38] = ACTIONS(996), + [aux_sym_cmd_identifier_token38] = ACTIONS(990), [aux_sym_cmd_identifier_token39] = ACTIONS(996), [aux_sym_cmd_identifier_token40] = ACTIONS(996), - [anon_sym_def] = ACTIONS(996), - [anon_sym_export_DASHenv] = ACTIONS(996), - [anon_sym_extern] = ACTIONS(996), - [anon_sym_module] = ACTIONS(996), - [anon_sym_use] = ACTIONS(996), + [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(996), - [anon_sym_COMMA] = ACTIONS(996), - [anon_sym_DOLLAR] = ACTIONS(996), - [anon_sym_error] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_break] = ACTIONS(996), - [anon_sym_continue] = ACTIONS(996), - [anon_sym_for] = ACTIONS(996), - [anon_sym_in2] = ACTIONS(996), - [anon_sym_loop] = ACTIONS(996), - [anon_sym_make] = ACTIONS(996), - [anon_sym_while] = ACTIONS(996), - [anon_sym_do] = ACTIONS(996), - [anon_sym_if] = ACTIONS(996), - [anon_sym_else] = ACTIONS(996), - [anon_sym_match] = ACTIONS(996), + [anon_sym_COMMA] = ACTIONS(1000), + [anon_sym_DOLLAR] = ACTIONS(990), + [anon_sym_error] = ACTIONS(990), + [anon_sym_DASH2] = ACTIONS(990), + [anon_sym_break] = ACTIONS(990), + [anon_sym_continue] = ACTIONS(990), + [anon_sym_for] = ACTIONS(990), + [anon_sym_in2] = 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(996), - [anon_sym_try] = ACTIONS(996), - [anon_sym_catch] = ACTIONS(996), - [anon_sym_return] = ACTIONS(996), - [anon_sym_source] = ACTIONS(996), - [anon_sym_source_DASHenv] = ACTIONS(996), - [anon_sym_register] = ACTIONS(996), - [anon_sym_hide] = ACTIONS(996), - [anon_sym_hide_DASHenv] = ACTIONS(996), - [anon_sym_overlay] = ACTIONS(996), - [anon_sym_as] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), + [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_hide] = ACTIONS(990), + [anon_sym_hide_DASHenv] = ACTIONS(990), + [anon_sym_overlay] = ACTIONS(990), + [anon_sym_as] = ACTIONS(990), + [anon_sym_PLUS2] = ACTIONS(990), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(996), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(996), - [aux_sym__val_number_decimal_token1] = ACTIONS(996), + [aux_sym__val_number_decimal_token1] = ACTIONS(990), [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), - [aux_sym__val_number_token4] = ACTIONS(996), - [aux_sym__val_number_token5] = ACTIONS(996), - [aux_sym__val_number_token6] = ACTIONS(996), + [aux_sym__val_number_token4] = ACTIONS(990), + [aux_sym__val_number_token5] = ACTIONS(990), + [aux_sym__val_number_token6] = ACTIONS(990), [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_DOT_DOT_DOT_LBRACE] = ACTIONS(996), - [sym__entry_separator] = ACTIONS(998), - [anon_sym_DOT2] = ACTIONS(996), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(998), + [anon_sym_register] = ACTIONS(990), + [anon_sym_COLON2] = ACTIONS(2342), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(996), }, - [570] = { - [sym_comment] = STATE(570), - [anon_sym_export] = ACTIONS(2308), - [anon_sym_alias] = ACTIONS(2308), - [anon_sym_let] = ACTIONS(2308), - [anon_sym_let_DASHenv] = ACTIONS(2308), - [anon_sym_mut] = ACTIONS(2308), - [anon_sym_const] = ACTIONS(2308), - [aux_sym_cmd_identifier_token1] = ACTIONS(2308), - [aux_sym_cmd_identifier_token2] = ACTIONS(2308), - [aux_sym_cmd_identifier_token3] = ACTIONS(2308), - [aux_sym_cmd_identifier_token4] = ACTIONS(2308), - [aux_sym_cmd_identifier_token5] = ACTIONS(2308), - [aux_sym_cmd_identifier_token6] = ACTIONS(2308), - [aux_sym_cmd_identifier_token7] = ACTIONS(2308), - [aux_sym_cmd_identifier_token8] = ACTIONS(2308), - [aux_sym_cmd_identifier_token9] = ACTIONS(2308), - [aux_sym_cmd_identifier_token10] = ACTIONS(2308), - [aux_sym_cmd_identifier_token11] = ACTIONS(2308), - [aux_sym_cmd_identifier_token12] = ACTIONS(2308), - [aux_sym_cmd_identifier_token13] = ACTIONS(2308), - [aux_sym_cmd_identifier_token14] = ACTIONS(2308), - [aux_sym_cmd_identifier_token15] = ACTIONS(2308), - [aux_sym_cmd_identifier_token16] = ACTIONS(2308), - [aux_sym_cmd_identifier_token17] = ACTIONS(2308), - [aux_sym_cmd_identifier_token18] = ACTIONS(2308), - [aux_sym_cmd_identifier_token19] = ACTIONS(2308), - [aux_sym_cmd_identifier_token20] = ACTIONS(2308), - [aux_sym_cmd_identifier_token21] = ACTIONS(2308), - [aux_sym_cmd_identifier_token22] = ACTIONS(2308), - [aux_sym_cmd_identifier_token23] = ACTIONS(2308), - [aux_sym_cmd_identifier_token24] = ACTIONS(2308), - [aux_sym_cmd_identifier_token25] = ACTIONS(2308), - [aux_sym_cmd_identifier_token26] = ACTIONS(2308), - [aux_sym_cmd_identifier_token27] = ACTIONS(2308), - [aux_sym_cmd_identifier_token28] = ACTIONS(2308), - [aux_sym_cmd_identifier_token29] = ACTIONS(2308), - [aux_sym_cmd_identifier_token30] = ACTIONS(2308), - [aux_sym_cmd_identifier_token31] = ACTIONS(2308), - [aux_sym_cmd_identifier_token32] = ACTIONS(2308), - [aux_sym_cmd_identifier_token33] = ACTIONS(2308), - [aux_sym_cmd_identifier_token34] = ACTIONS(2308), - [aux_sym_cmd_identifier_token35] = ACTIONS(2308), - [aux_sym_cmd_identifier_token36] = ACTIONS(2308), - [aux_sym_cmd_identifier_token37] = ACTIONS(2308), - [aux_sym_cmd_identifier_token38] = ACTIONS(2308), - [aux_sym_cmd_identifier_token39] = ACTIONS(2308), - [aux_sym_cmd_identifier_token40] = ACTIONS(2308), - [anon_sym_def] = ACTIONS(2308), - [anon_sym_export_DASHenv] = ACTIONS(2308), - [anon_sym_extern] = ACTIONS(2308), - [anon_sym_module] = ACTIONS(2308), - [anon_sym_use] = ACTIONS(2308), - [anon_sym_LPAREN] = ACTIONS(2308), - [anon_sym_COMMA] = ACTIONS(2308), - [anon_sym_DOLLAR] = ACTIONS(2308), - [anon_sym_error] = ACTIONS(2308), - [anon_sym_DASH2] = ACTIONS(2308), - [anon_sym_break] = ACTIONS(2308), - [anon_sym_continue] = ACTIONS(2308), - [anon_sym_for] = ACTIONS(2308), - [anon_sym_in2] = ACTIONS(2308), - [anon_sym_loop] = ACTIONS(2308), - [anon_sym_make] = ACTIONS(2308), - [anon_sym_while] = ACTIONS(2308), - [anon_sym_do] = ACTIONS(2308), - [anon_sym_if] = ACTIONS(2308), - [anon_sym_else] = ACTIONS(2308), - [anon_sym_match] = ACTIONS(2308), - [anon_sym_RBRACE] = ACTIONS(2308), - [anon_sym_try] = ACTIONS(2308), - [anon_sym_catch] = ACTIONS(2308), - [anon_sym_return] = ACTIONS(2308), - [anon_sym_source] = ACTIONS(2308), - [anon_sym_source_DASHenv] = ACTIONS(2308), - [anon_sym_register] = ACTIONS(2308), - [anon_sym_hide] = ACTIONS(2308), - [anon_sym_hide_DASHenv] = ACTIONS(2308), - [anon_sym_overlay] = ACTIONS(2308), - [anon_sym_as] = ACTIONS(2308), - [anon_sym_LPAREN2] = ACTIONS(2310), - [anon_sym_PLUS2] = ACTIONS(2308), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2308), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2308), - [aux_sym__val_number_decimal_token1] = ACTIONS(2308), - [aux_sym__val_number_decimal_token2] = ACTIONS(2308), - [aux_sym__val_number_decimal_token3] = ACTIONS(2308), - [aux_sym__val_number_decimal_token4] = ACTIONS(2308), - [aux_sym__val_number_token1] = ACTIONS(2308), - [aux_sym__val_number_token2] = ACTIONS(2308), - [aux_sym__val_number_token3] = ACTIONS(2308), - [aux_sym__val_number_token4] = ACTIONS(2308), - [aux_sym__val_number_token5] = ACTIONS(2308), - [aux_sym__val_number_token6] = ACTIONS(2308), - [anon_sym_DQUOTE] = ACTIONS(2308), - [sym__str_single_quotes] = ACTIONS(2308), - [sym__str_back_ticks] = ACTIONS(2308), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2308), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2308), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2308), - [sym__entry_separator] = ACTIONS(2310), + [603] = { + [sym_comment] = STATE(603), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(2344), + [anon_sym_DOLLAR] = ACTIONS(2344), + [anon_sym_error] = ACTIONS(2344), + [anon_sym_DASH2] = ACTIONS(2344), + [anon_sym_break] = ACTIONS(2344), + [anon_sym_continue] = ACTIONS(2344), + [anon_sym_for] = ACTIONS(2344), + [anon_sym_in2] = 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_hide] = ACTIONS(2344), + [anon_sym_hide_DASHenv] = ACTIONS(2344), + [anon_sym_overlay] = ACTIONS(2344), + [anon_sym_as] = ACTIONS(2344), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2344), + [aux_sym__val_number_token5] = ACTIONS(2344), + [aux_sym__val_number_token6] = ACTIONS(2344), + [anon_sym_DQUOTE] = ACTIONS(2344), + [sym__str_single_quotes] = ACTIONS(2344), + [sym__str_back_ticks] = ACTIONS(2344), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2344), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2344), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2344), + [sym__entry_separator] = ACTIONS(2346), + [anon_sym_register] = ACTIONS(2344), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2310), - }, - [571] = { - [sym_comment] = STATE(571), - [anon_sym_export] = ACTIONS(988), - [anon_sym_alias] = ACTIONS(988), - [anon_sym_let] = ACTIONS(988), - [anon_sym_let_DASHenv] = ACTIONS(988), - [anon_sym_mut] = ACTIONS(988), - [anon_sym_const] = ACTIONS(988), - [aux_sym_cmd_identifier_token1] = ACTIONS(988), - [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(988), - [aux_sym_cmd_identifier_token9] = ACTIONS(988), - [aux_sym_cmd_identifier_token10] = ACTIONS(990), - [aux_sym_cmd_identifier_token11] = ACTIONS(990), - [aux_sym_cmd_identifier_token12] = ACTIONS(988), - [aux_sym_cmd_identifier_token13] = ACTIONS(988), - [aux_sym_cmd_identifier_token14] = ACTIONS(988), - [aux_sym_cmd_identifier_token15] = ACTIONS(988), - [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(988), - [aux_sym_cmd_identifier_token35] = ACTIONS(990), - [aux_sym_cmd_identifier_token36] = ACTIONS(990), - [aux_sym_cmd_identifier_token37] = ACTIONS(990), - [aux_sym_cmd_identifier_token38] = ACTIONS(988), - [aux_sym_cmd_identifier_token39] = ACTIONS(990), - [aux_sym_cmd_identifier_token40] = ACTIONS(990), - [anon_sym_def] = ACTIONS(988), - [anon_sym_export_DASHenv] = ACTIONS(988), - [anon_sym_extern] = ACTIONS(988), - [anon_sym_module] = ACTIONS(988), - [anon_sym_use] = ACTIONS(988), - [anon_sym_LPAREN] = ACTIONS(990), - [anon_sym_COMMA] = ACTIONS(990), - [anon_sym_DOLLAR] = ACTIONS(988), - [anon_sym_error] = ACTIONS(988), - [anon_sym_DASH2] = ACTIONS(988), - [anon_sym_break] = ACTIONS(988), - [anon_sym_continue] = ACTIONS(988), - [anon_sym_for] = ACTIONS(988), - [anon_sym_in2] = ACTIONS(988), - [anon_sym_loop] = ACTIONS(988), - [anon_sym_make] = ACTIONS(988), - [anon_sym_while] = ACTIONS(988), - [anon_sym_do] = ACTIONS(988), - [anon_sym_if] = ACTIONS(988), - [anon_sym_else] = ACTIONS(988), - [anon_sym_match] = ACTIONS(988), - [anon_sym_RBRACE] = ACTIONS(990), - [anon_sym_try] = ACTIONS(988), - [anon_sym_catch] = ACTIONS(988), - [anon_sym_return] = ACTIONS(988), - [anon_sym_source] = ACTIONS(988), - [anon_sym_source_DASHenv] = ACTIONS(988), - [anon_sym_register] = ACTIONS(988), - [anon_sym_hide] = ACTIONS(988), - [anon_sym_hide_DASHenv] = ACTIONS(988), - [anon_sym_overlay] = ACTIONS(988), - [anon_sym_as] = ACTIONS(988), - [anon_sym_PLUS2] = ACTIONS(988), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(990), - [aux_sym__val_number_decimal_token1] = ACTIONS(988), - [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), - [aux_sym__val_number_token4] = ACTIONS(988), - [aux_sym__val_number_token5] = ACTIONS(988), - [aux_sym__val_number_token6] = ACTIONS(988), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym__str_single_quotes] = ACTIONS(990), - [sym__str_back_ticks] = ACTIONS(990), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(990), - [anon_sym_COLON2] = ACTIONS(990), - [anon_sym_DOT2] = ACTIONS(988), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(990), + [sym_raw_string_begin] = ACTIONS(2346), }, - [572] = { - [sym_comment] = STATE(572), - [anon_sym_export] = ACTIONS(992), - [anon_sym_alias] = ACTIONS(992), - [anon_sym_let] = ACTIONS(992), - [anon_sym_let_DASHenv] = ACTIONS(992), - [anon_sym_mut] = ACTIONS(992), - [anon_sym_const] = ACTIONS(992), - [aux_sym_cmd_identifier_token1] = ACTIONS(992), - [aux_sym_cmd_identifier_token2] = ACTIONS(992), - [aux_sym_cmd_identifier_token3] = ACTIONS(992), - [aux_sym_cmd_identifier_token4] = ACTIONS(992), - [aux_sym_cmd_identifier_token5] = ACTIONS(992), - [aux_sym_cmd_identifier_token6] = ACTIONS(992), - [aux_sym_cmd_identifier_token7] = ACTIONS(992), - [aux_sym_cmd_identifier_token8] = ACTIONS(992), - [aux_sym_cmd_identifier_token9] = ACTIONS(992), - [aux_sym_cmd_identifier_token10] = ACTIONS(992), - [aux_sym_cmd_identifier_token11] = ACTIONS(992), - [aux_sym_cmd_identifier_token12] = ACTIONS(992), - [aux_sym_cmd_identifier_token13] = ACTIONS(992), - [aux_sym_cmd_identifier_token14] = ACTIONS(992), - [aux_sym_cmd_identifier_token15] = ACTIONS(992), - [aux_sym_cmd_identifier_token16] = ACTIONS(992), - [aux_sym_cmd_identifier_token17] = ACTIONS(992), - [aux_sym_cmd_identifier_token18] = ACTIONS(992), - [aux_sym_cmd_identifier_token19] = ACTIONS(992), - [aux_sym_cmd_identifier_token20] = ACTIONS(992), - [aux_sym_cmd_identifier_token21] = ACTIONS(992), - [aux_sym_cmd_identifier_token22] = ACTIONS(992), - [aux_sym_cmd_identifier_token23] = ACTIONS(992), - [aux_sym_cmd_identifier_token24] = ACTIONS(992), - [aux_sym_cmd_identifier_token25] = ACTIONS(992), - [aux_sym_cmd_identifier_token26] = ACTIONS(992), - [aux_sym_cmd_identifier_token27] = ACTIONS(992), - [aux_sym_cmd_identifier_token28] = ACTIONS(992), - [aux_sym_cmd_identifier_token29] = ACTIONS(992), - [aux_sym_cmd_identifier_token30] = ACTIONS(992), - [aux_sym_cmd_identifier_token31] = ACTIONS(992), - [aux_sym_cmd_identifier_token32] = ACTIONS(992), - [aux_sym_cmd_identifier_token33] = ACTIONS(992), - [aux_sym_cmd_identifier_token34] = ACTIONS(992), - [aux_sym_cmd_identifier_token35] = ACTIONS(992), - [aux_sym_cmd_identifier_token36] = ACTIONS(992), - [aux_sym_cmd_identifier_token37] = ACTIONS(992), - [aux_sym_cmd_identifier_token38] = ACTIONS(992), - [aux_sym_cmd_identifier_token39] = ACTIONS(992), - [aux_sym_cmd_identifier_token40] = ACTIONS(992), - [anon_sym_def] = ACTIONS(992), - [anon_sym_export_DASHenv] = ACTIONS(992), - [anon_sym_extern] = ACTIONS(992), - [anon_sym_module] = ACTIONS(992), - [anon_sym_use] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_COMMA] = ACTIONS(992), - [anon_sym_DOLLAR] = ACTIONS(992), - [anon_sym_error] = ACTIONS(992), - [anon_sym_DASH2] = ACTIONS(992), - [anon_sym_break] = ACTIONS(992), - [anon_sym_continue] = ACTIONS(992), - [anon_sym_for] = ACTIONS(992), - [anon_sym_in2] = ACTIONS(992), - [anon_sym_loop] = ACTIONS(992), - [anon_sym_make] = ACTIONS(992), - [anon_sym_while] = ACTIONS(992), - [anon_sym_do] = ACTIONS(992), - [anon_sym_if] = ACTIONS(992), - [anon_sym_else] = ACTIONS(992), - [anon_sym_match] = ACTIONS(992), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_try] = ACTIONS(992), - [anon_sym_catch] = ACTIONS(992), - [anon_sym_return] = ACTIONS(992), - [anon_sym_source] = ACTIONS(992), - [anon_sym_source_DASHenv] = ACTIONS(992), - [anon_sym_register] = ACTIONS(992), - [anon_sym_hide] = ACTIONS(992), - [anon_sym_hide_DASHenv] = ACTIONS(992), - [anon_sym_overlay] = ACTIONS(992), - [anon_sym_as] = ACTIONS(992), - [anon_sym_PLUS2] = ACTIONS(992), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(992), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(992), - [aux_sym__val_number_decimal_token1] = ACTIONS(992), - [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), - [aux_sym__val_number_token4] = ACTIONS(992), - [aux_sym__val_number_token5] = ACTIONS(992), - [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(992), - [sym__entry_separator] = ACTIONS(994), - [anon_sym_DOT2] = ACTIONS(992), + [604] = { + [sym_comment] = STATE(604), + [anon_sym_export] = ACTIONS(1885), + [anon_sym_alias] = ACTIONS(1885), + [anon_sym_let] = ACTIONS(1885), + [anon_sym_let_DASHenv] = ACTIONS(1885), + [anon_sym_mut] = ACTIONS(1885), + [anon_sym_const] = ACTIONS(1885), + [aux_sym_cmd_identifier_token1] = ACTIONS(1885), + [aux_sym_cmd_identifier_token2] = ACTIONS(1885), + [aux_sym_cmd_identifier_token3] = ACTIONS(1885), + [aux_sym_cmd_identifier_token4] = ACTIONS(1885), + [aux_sym_cmd_identifier_token5] = ACTIONS(1885), + [aux_sym_cmd_identifier_token6] = ACTIONS(1885), + [aux_sym_cmd_identifier_token7] = ACTIONS(1885), + [aux_sym_cmd_identifier_token8] = ACTIONS(1885), + [aux_sym_cmd_identifier_token9] = ACTIONS(1885), + [aux_sym_cmd_identifier_token10] = ACTIONS(1885), + [aux_sym_cmd_identifier_token11] = ACTIONS(1885), + [aux_sym_cmd_identifier_token12] = ACTIONS(1885), + [aux_sym_cmd_identifier_token13] = ACTIONS(1885), + [aux_sym_cmd_identifier_token14] = ACTIONS(1885), + [aux_sym_cmd_identifier_token15] = ACTIONS(1885), + [aux_sym_cmd_identifier_token16] = ACTIONS(1885), + [aux_sym_cmd_identifier_token17] = ACTIONS(1885), + [aux_sym_cmd_identifier_token18] = ACTIONS(1885), + [aux_sym_cmd_identifier_token19] = ACTIONS(1885), + [aux_sym_cmd_identifier_token20] = ACTIONS(1885), + [aux_sym_cmd_identifier_token21] = ACTIONS(1885), + [aux_sym_cmd_identifier_token22] = ACTIONS(1885), + [aux_sym_cmd_identifier_token23] = ACTIONS(1885), + [aux_sym_cmd_identifier_token24] = ACTIONS(1885), + [aux_sym_cmd_identifier_token25] = ACTIONS(1885), + [aux_sym_cmd_identifier_token26] = ACTIONS(1885), + [aux_sym_cmd_identifier_token27] = ACTIONS(1885), + [aux_sym_cmd_identifier_token28] = ACTIONS(1885), + [aux_sym_cmd_identifier_token29] = ACTIONS(1885), + [aux_sym_cmd_identifier_token30] = ACTIONS(1885), + [aux_sym_cmd_identifier_token31] = ACTIONS(1885), + [aux_sym_cmd_identifier_token32] = ACTIONS(1885), + [aux_sym_cmd_identifier_token33] = ACTIONS(1885), + [aux_sym_cmd_identifier_token34] = ACTIONS(1885), + [aux_sym_cmd_identifier_token35] = ACTIONS(1885), + [aux_sym_cmd_identifier_token36] = ACTIONS(1885), + [aux_sym_cmd_identifier_token37] = ACTIONS(1885), + [aux_sym_cmd_identifier_token38] = ACTIONS(1885), + [aux_sym_cmd_identifier_token39] = ACTIONS(1885), + [aux_sym_cmd_identifier_token40] = ACTIONS(1885), + [anon_sym_def] = ACTIONS(1885), + [anon_sym_export_DASHenv] = ACTIONS(1885), + [anon_sym_extern] = ACTIONS(1885), + [anon_sym_module] = ACTIONS(1885), + [anon_sym_use] = ACTIONS(1885), + [anon_sym_LPAREN] = ACTIONS(1885), + [anon_sym_COMMA] = ACTIONS(1885), + [anon_sym_DOLLAR] = ACTIONS(1885), + [anon_sym_error] = ACTIONS(1885), + [anon_sym_DASH2] = ACTIONS(1885), + [anon_sym_break] = ACTIONS(1885), + [anon_sym_continue] = ACTIONS(1885), + [anon_sym_for] = ACTIONS(1885), + [anon_sym_in2] = ACTIONS(1885), + [anon_sym_loop] = ACTIONS(1885), + [anon_sym_make] = ACTIONS(1885), + [anon_sym_while] = ACTIONS(1885), + [anon_sym_do] = ACTIONS(1885), + [anon_sym_if] = ACTIONS(1885), + [anon_sym_else] = ACTIONS(1885), + [anon_sym_match] = ACTIONS(1885), + [anon_sym_RBRACE] = ACTIONS(1885), + [anon_sym_try] = ACTIONS(1885), + [anon_sym_catch] = ACTIONS(1885), + [anon_sym_return] = ACTIONS(1885), + [anon_sym_source] = ACTIONS(1885), + [anon_sym_source_DASHenv] = ACTIONS(1885), + [anon_sym_hide] = ACTIONS(1885), + [anon_sym_hide_DASHenv] = ACTIONS(1885), + [anon_sym_overlay] = ACTIONS(1885), + [anon_sym_as] = ACTIONS(1885), + [anon_sym_PLUS2] = ACTIONS(1885), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1885), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1885), + [aux_sym__val_number_decimal_token1] = ACTIONS(1885), + [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), + [aux_sym__val_number_token4] = ACTIONS(1885), + [aux_sym__val_number_token5] = ACTIONS(1885), + [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(1885), + [sym__entry_separator] = ACTIONS(1887), + [anon_sym_register] = ACTIONS(1885), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(994), - }, - [573] = { - [sym__expr_parenthesized_immediate] = STATE(7345), - [sym_comment] = STATE(573), - [anon_sym_export] = ACTIONS(2061), - [anon_sym_alias] = ACTIONS(2061), - [anon_sym_let] = ACTIONS(2061), - [anon_sym_let_DASHenv] = ACTIONS(2061), - [anon_sym_mut] = ACTIONS(2061), - [anon_sym_const] = ACTIONS(2061), - [aux_sym_cmd_identifier_token1] = ACTIONS(2061), - [aux_sym_cmd_identifier_token2] = ACTIONS(2063), - [aux_sym_cmd_identifier_token3] = ACTIONS(2063), - [aux_sym_cmd_identifier_token4] = ACTIONS(2063), - [aux_sym_cmd_identifier_token5] = ACTIONS(2063), - [aux_sym_cmd_identifier_token6] = ACTIONS(2063), - [aux_sym_cmd_identifier_token7] = ACTIONS(2063), - [aux_sym_cmd_identifier_token8] = ACTIONS(2061), - [aux_sym_cmd_identifier_token9] = ACTIONS(2061), - [aux_sym_cmd_identifier_token10] = ACTIONS(2063), - [aux_sym_cmd_identifier_token11] = ACTIONS(2063), - [aux_sym_cmd_identifier_token12] = ACTIONS(2061), - [aux_sym_cmd_identifier_token13] = ACTIONS(2061), - [aux_sym_cmd_identifier_token14] = ACTIONS(2061), - [aux_sym_cmd_identifier_token15] = ACTIONS(2061), - [aux_sym_cmd_identifier_token16] = ACTIONS(2063), - [aux_sym_cmd_identifier_token17] = ACTIONS(2063), - [aux_sym_cmd_identifier_token18] = ACTIONS(2063), - [aux_sym_cmd_identifier_token19] = ACTIONS(2063), - [aux_sym_cmd_identifier_token20] = ACTIONS(2063), - [aux_sym_cmd_identifier_token21] = ACTIONS(2063), - [aux_sym_cmd_identifier_token22] = ACTIONS(2063), - [aux_sym_cmd_identifier_token23] = ACTIONS(2063), - [aux_sym_cmd_identifier_token24] = ACTIONS(2063), - [aux_sym_cmd_identifier_token25] = ACTIONS(2063), - [aux_sym_cmd_identifier_token26] = ACTIONS(2063), - [aux_sym_cmd_identifier_token27] = ACTIONS(2063), - [aux_sym_cmd_identifier_token28] = ACTIONS(2063), - [aux_sym_cmd_identifier_token29] = ACTIONS(2063), - [aux_sym_cmd_identifier_token30] = ACTIONS(2063), - [aux_sym_cmd_identifier_token31] = ACTIONS(2063), - [aux_sym_cmd_identifier_token32] = ACTIONS(2063), - [aux_sym_cmd_identifier_token33] = ACTIONS(2063), - [aux_sym_cmd_identifier_token34] = ACTIONS(2061), - [aux_sym_cmd_identifier_token35] = ACTIONS(2063), - [aux_sym_cmd_identifier_token36] = ACTIONS(2063), - [aux_sym_cmd_identifier_token37] = ACTIONS(2063), - [aux_sym_cmd_identifier_token38] = ACTIONS(2061), - [aux_sym_cmd_identifier_token39] = ACTIONS(2063), - [aux_sym_cmd_identifier_token40] = ACTIONS(2063), - [anon_sym_def] = ACTIONS(2061), - [anon_sym_export_DASHenv] = ACTIONS(2061), - [anon_sym_extern] = ACTIONS(2061), - [anon_sym_module] = ACTIONS(2061), - [anon_sym_use] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(2061), - [anon_sym_COMMA] = ACTIONS(2063), - [anon_sym_DOLLAR] = ACTIONS(2061), - [anon_sym_error] = ACTIONS(2061), - [anon_sym_DASH2] = ACTIONS(2061), - [anon_sym_break] = ACTIONS(2061), - [anon_sym_continue] = ACTIONS(2061), - [anon_sym_for] = ACTIONS(2061), - [anon_sym_in2] = ACTIONS(2061), - [anon_sym_loop] = ACTIONS(2061), - [anon_sym_make] = ACTIONS(2061), - [anon_sym_while] = ACTIONS(2061), - [anon_sym_do] = ACTIONS(2061), - [anon_sym_if] = ACTIONS(2061), - [anon_sym_else] = ACTIONS(2061), - [anon_sym_match] = ACTIONS(2061), - [anon_sym_RBRACE] = ACTIONS(2063), - [anon_sym_try] = ACTIONS(2061), - [anon_sym_catch] = ACTIONS(2061), - [anon_sym_return] = ACTIONS(2061), - [anon_sym_source] = ACTIONS(2061), - [anon_sym_source_DASHenv] = ACTIONS(2061), - [anon_sym_register] = ACTIONS(2061), - [anon_sym_hide] = ACTIONS(2061), - [anon_sym_hide_DASHenv] = ACTIONS(2061), - [anon_sym_overlay] = ACTIONS(2061), - [anon_sym_as] = ACTIONS(2061), - [anon_sym_LPAREN2] = ACTIONS(1640), - [anon_sym_PLUS2] = ACTIONS(2061), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2063), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2063), - [aux_sym__val_number_decimal_token1] = ACTIONS(2061), - [aux_sym__val_number_decimal_token2] = ACTIONS(2063), - [aux_sym__val_number_decimal_token3] = ACTIONS(2063), - [aux_sym__val_number_decimal_token4] = ACTIONS(2063), - [aux_sym__val_number_token1] = ACTIONS(2063), - [aux_sym__val_number_token2] = ACTIONS(2063), - [aux_sym__val_number_token3] = ACTIONS(2063), - [aux_sym__val_number_token4] = ACTIONS(2061), - [aux_sym__val_number_token5] = ACTIONS(2061), - [aux_sym__val_number_token6] = ACTIONS(2061), - [anon_sym_DQUOTE] = ACTIONS(2063), - [sym__str_single_quotes] = ACTIONS(2063), - [sym__str_back_ticks] = ACTIONS(2063), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2063), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2063), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2063), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2063), + [sym_raw_string_begin] = ACTIONS(1887), }, - [574] = { - [sym_comment] = STATE(574), - [anon_sym_export] = ACTIONS(2128), - [anon_sym_alias] = ACTIONS(2128), - [anon_sym_let] = ACTIONS(2128), - [anon_sym_let_DASHenv] = ACTIONS(2128), - [anon_sym_mut] = ACTIONS(2128), - [anon_sym_const] = ACTIONS(2128), - [aux_sym_cmd_identifier_token1] = ACTIONS(2128), - [aux_sym_cmd_identifier_token2] = ACTIONS(2128), - [aux_sym_cmd_identifier_token3] = ACTIONS(2128), - [aux_sym_cmd_identifier_token4] = ACTIONS(2128), - [aux_sym_cmd_identifier_token5] = ACTIONS(2128), - [aux_sym_cmd_identifier_token6] = ACTIONS(2128), - [aux_sym_cmd_identifier_token7] = ACTIONS(2128), - [aux_sym_cmd_identifier_token8] = ACTIONS(2128), - [aux_sym_cmd_identifier_token9] = ACTIONS(2128), - [aux_sym_cmd_identifier_token10] = ACTIONS(2128), - [aux_sym_cmd_identifier_token11] = ACTIONS(2128), - [aux_sym_cmd_identifier_token12] = ACTIONS(2128), - [aux_sym_cmd_identifier_token13] = ACTIONS(2128), - [aux_sym_cmd_identifier_token14] = ACTIONS(2128), - [aux_sym_cmd_identifier_token15] = ACTIONS(2128), - [aux_sym_cmd_identifier_token16] = ACTIONS(2128), - [aux_sym_cmd_identifier_token17] = ACTIONS(2128), - [aux_sym_cmd_identifier_token18] = ACTIONS(2128), - [aux_sym_cmd_identifier_token19] = ACTIONS(2128), - [aux_sym_cmd_identifier_token20] = ACTIONS(2128), - [aux_sym_cmd_identifier_token21] = ACTIONS(2128), - [aux_sym_cmd_identifier_token22] = ACTIONS(2128), - [aux_sym_cmd_identifier_token23] = ACTIONS(2128), - [aux_sym_cmd_identifier_token24] = ACTIONS(2128), - [aux_sym_cmd_identifier_token25] = ACTIONS(2128), - [aux_sym_cmd_identifier_token26] = ACTIONS(2128), - [aux_sym_cmd_identifier_token27] = ACTIONS(2128), - [aux_sym_cmd_identifier_token28] = ACTIONS(2128), - [aux_sym_cmd_identifier_token29] = ACTIONS(2128), - [aux_sym_cmd_identifier_token30] = ACTIONS(2128), - [aux_sym_cmd_identifier_token31] = ACTIONS(2128), - [aux_sym_cmd_identifier_token32] = ACTIONS(2128), - [aux_sym_cmd_identifier_token33] = ACTIONS(2128), - [aux_sym_cmd_identifier_token34] = ACTIONS(2128), - [aux_sym_cmd_identifier_token35] = ACTIONS(2128), - [aux_sym_cmd_identifier_token36] = ACTIONS(2128), - [aux_sym_cmd_identifier_token37] = ACTIONS(2128), - [aux_sym_cmd_identifier_token38] = ACTIONS(2128), - [aux_sym_cmd_identifier_token39] = ACTIONS(2128), - [aux_sym_cmd_identifier_token40] = ACTIONS(2128), - [anon_sym_def] = ACTIONS(2128), - [anon_sym_export_DASHenv] = ACTIONS(2128), - [anon_sym_extern] = ACTIONS(2128), - [anon_sym_module] = ACTIONS(2128), - [anon_sym_use] = ACTIONS(2128), - [anon_sym_LPAREN] = ACTIONS(2128), - [anon_sym_COMMA] = ACTIONS(2132), - [anon_sym_DOLLAR] = ACTIONS(2128), - [anon_sym_error] = ACTIONS(2128), - [anon_sym_DASH2] = ACTIONS(2128), - [anon_sym_break] = ACTIONS(2128), - [anon_sym_continue] = ACTIONS(2128), - [anon_sym_for] = ACTIONS(2128), - [anon_sym_in2] = ACTIONS(2128), - [anon_sym_loop] = ACTIONS(2128), - [anon_sym_make] = ACTIONS(2128), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_do] = ACTIONS(2128), - [anon_sym_if] = ACTIONS(2128), - [anon_sym_else] = ACTIONS(2128), - [anon_sym_match] = ACTIONS(2128), - [anon_sym_RBRACE] = ACTIONS(2132), - [anon_sym_try] = ACTIONS(2128), - [anon_sym_catch] = ACTIONS(2128), - [anon_sym_return] = ACTIONS(2128), - [anon_sym_source] = ACTIONS(2128), - [anon_sym_source_DASHenv] = ACTIONS(2128), - [anon_sym_register] = ACTIONS(2128), - [anon_sym_hide] = ACTIONS(2128), - [anon_sym_hide_DASHenv] = ACTIONS(2128), - [anon_sym_overlay] = ACTIONS(2128), - [anon_sym_as] = ACTIONS(2128), - [anon_sym_LPAREN2] = ACTIONS(2130), - [anon_sym_PLUS2] = ACTIONS(2128), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2132), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2128), - [aux_sym__val_number_decimal_token1] = ACTIONS(2128), - [aux_sym__val_number_decimal_token2] = ACTIONS(2128), - [aux_sym__val_number_decimal_token3] = ACTIONS(2128), - [aux_sym__val_number_decimal_token4] = ACTIONS(2128), - [aux_sym__val_number_token1] = ACTIONS(2128), - [aux_sym__val_number_token2] = ACTIONS(2128), - [aux_sym__val_number_token3] = ACTIONS(2128), - [aux_sym__val_number_token4] = ACTIONS(2128), - [aux_sym__val_number_token5] = ACTIONS(2128), - [aux_sym__val_number_token6] = ACTIONS(2128), - [anon_sym_DQUOTE] = ACTIONS(2132), - [sym__str_single_quotes] = ACTIONS(2132), - [sym__str_back_ticks] = ACTIONS(2132), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2132), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2132), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2132), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2134), + [605] = { + [sym_comment] = STATE(605), + [anon_sym_export] = ACTIONS(956), + [anon_sym_alias] = ACTIONS(956), + [anon_sym_let] = ACTIONS(956), + [anon_sym_let_DASHenv] = ACTIONS(956), + [anon_sym_mut] = ACTIONS(956), + [anon_sym_const] = ACTIONS(956), + [aux_sym_cmd_identifier_token1] = ACTIONS(956), + [aux_sym_cmd_identifier_token2] = ACTIONS(956), + [aux_sym_cmd_identifier_token3] = ACTIONS(956), + [aux_sym_cmd_identifier_token4] = ACTIONS(956), + [aux_sym_cmd_identifier_token5] = ACTIONS(956), + [aux_sym_cmd_identifier_token6] = ACTIONS(956), + [aux_sym_cmd_identifier_token7] = ACTIONS(956), + [aux_sym_cmd_identifier_token8] = ACTIONS(956), + [aux_sym_cmd_identifier_token9] = ACTIONS(956), + [aux_sym_cmd_identifier_token10] = ACTIONS(956), + [aux_sym_cmd_identifier_token11] = ACTIONS(956), + [aux_sym_cmd_identifier_token12] = ACTIONS(956), + [aux_sym_cmd_identifier_token13] = ACTIONS(956), + [aux_sym_cmd_identifier_token14] = ACTIONS(956), + [aux_sym_cmd_identifier_token15] = ACTIONS(956), + [aux_sym_cmd_identifier_token16] = ACTIONS(956), + [aux_sym_cmd_identifier_token17] = ACTIONS(956), + [aux_sym_cmd_identifier_token18] = ACTIONS(956), + [aux_sym_cmd_identifier_token19] = ACTIONS(956), + [aux_sym_cmd_identifier_token20] = ACTIONS(956), + [aux_sym_cmd_identifier_token21] = ACTIONS(956), + [aux_sym_cmd_identifier_token22] = ACTIONS(956), + [aux_sym_cmd_identifier_token23] = ACTIONS(956), + [aux_sym_cmd_identifier_token24] = ACTIONS(956), + [aux_sym_cmd_identifier_token25] = ACTIONS(956), + [aux_sym_cmd_identifier_token26] = ACTIONS(956), + [aux_sym_cmd_identifier_token27] = ACTIONS(956), + [aux_sym_cmd_identifier_token28] = ACTIONS(956), + [aux_sym_cmd_identifier_token29] = ACTIONS(956), + [aux_sym_cmd_identifier_token30] = ACTIONS(956), + [aux_sym_cmd_identifier_token31] = ACTIONS(956), + [aux_sym_cmd_identifier_token32] = ACTIONS(956), + [aux_sym_cmd_identifier_token33] = ACTIONS(956), + [aux_sym_cmd_identifier_token34] = ACTIONS(956), + [aux_sym_cmd_identifier_token35] = ACTIONS(956), + [aux_sym_cmd_identifier_token36] = ACTIONS(956), + [aux_sym_cmd_identifier_token37] = ACTIONS(956), + [aux_sym_cmd_identifier_token38] = ACTIONS(956), + [aux_sym_cmd_identifier_token39] = ACTIONS(956), + [aux_sym_cmd_identifier_token40] = ACTIONS(956), + [anon_sym_def] = ACTIONS(956), + [anon_sym_export_DASHenv] = ACTIONS(956), + [anon_sym_extern] = ACTIONS(956), + [anon_sym_module] = ACTIONS(956), + [anon_sym_use] = ACTIONS(956), + [anon_sym_LPAREN] = ACTIONS(956), + [anon_sym_COMMA] = ACTIONS(956), + [anon_sym_DOLLAR] = ACTIONS(956), + [anon_sym_error] = ACTIONS(956), + [anon_sym_DASH2] = ACTIONS(956), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(956), + [anon_sym_for] = ACTIONS(956), + [anon_sym_in2] = ACTIONS(956), + [anon_sym_loop] = ACTIONS(956), + [anon_sym_make] = ACTIONS(956), + [anon_sym_while] = ACTIONS(956), + [anon_sym_do] = ACTIONS(956), + [anon_sym_if] = ACTIONS(956), + [anon_sym_else] = ACTIONS(956), + [anon_sym_match] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(956), + [anon_sym_try] = ACTIONS(956), + [anon_sym_catch] = ACTIONS(956), + [anon_sym_return] = ACTIONS(956), + [anon_sym_source] = ACTIONS(956), + [anon_sym_source_DASHenv] = ACTIONS(956), + [anon_sym_hide] = ACTIONS(956), + [anon_sym_hide_DASHenv] = ACTIONS(956), + [anon_sym_overlay] = ACTIONS(956), + [anon_sym_as] = ACTIONS(956), + [anon_sym_PLUS2] = ACTIONS(956), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(956), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(956), + [aux_sym__val_number_decimal_token1] = ACTIONS(956), + [aux_sym__val_number_decimal_token2] = ACTIONS(956), + [aux_sym__val_number_decimal_token3] = ACTIONS(956), + [aux_sym__val_number_decimal_token4] = ACTIONS(956), + [aux_sym__val_number_token1] = ACTIONS(956), + [aux_sym__val_number_token2] = ACTIONS(956), + [aux_sym__val_number_token3] = ACTIONS(956), + [aux_sym__val_number_token4] = ACTIONS(956), + [aux_sym__val_number_token5] = ACTIONS(956), + [aux_sym__val_number_token6] = ACTIONS(956), + [anon_sym_DQUOTE] = ACTIONS(956), + [sym__str_single_quotes] = ACTIONS(956), + [sym__str_back_ticks] = ACTIONS(956), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(956), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(956), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(956), + [sym__entry_separator] = ACTIONS(958), + [anon_sym_register] = ACTIONS(956), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2132), + [sym_raw_string_begin] = ACTIONS(958), }, - [575] = { - [sym_comment] = STATE(575), - [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(2222), - [aux_sym_cmd_identifier_token3] = ACTIONS(2222), - [aux_sym_cmd_identifier_token4] = ACTIONS(2222), - [aux_sym_cmd_identifier_token5] = ACTIONS(2222), - [aux_sym_cmd_identifier_token6] = ACTIONS(2222), - [aux_sym_cmd_identifier_token7] = ACTIONS(2222), - [aux_sym_cmd_identifier_token8] = ACTIONS(2220), - [aux_sym_cmd_identifier_token9] = ACTIONS(2220), - [aux_sym_cmd_identifier_token10] = ACTIONS(2222), - [aux_sym_cmd_identifier_token11] = ACTIONS(2222), - [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(2222), - [aux_sym_cmd_identifier_token17] = ACTIONS(2222), - [aux_sym_cmd_identifier_token18] = ACTIONS(2222), - [aux_sym_cmd_identifier_token19] = ACTIONS(2222), - [aux_sym_cmd_identifier_token20] = ACTIONS(2222), - [aux_sym_cmd_identifier_token21] = ACTIONS(2222), - [aux_sym_cmd_identifier_token22] = ACTIONS(2222), - [aux_sym_cmd_identifier_token23] = ACTIONS(2222), - [aux_sym_cmd_identifier_token24] = ACTIONS(2222), - [aux_sym_cmd_identifier_token25] = ACTIONS(2222), - [aux_sym_cmd_identifier_token26] = ACTIONS(2222), - [aux_sym_cmd_identifier_token27] = ACTIONS(2222), - [aux_sym_cmd_identifier_token28] = ACTIONS(2222), - [aux_sym_cmd_identifier_token29] = ACTIONS(2222), - [aux_sym_cmd_identifier_token30] = ACTIONS(2222), - [aux_sym_cmd_identifier_token31] = ACTIONS(2222), - [aux_sym_cmd_identifier_token32] = ACTIONS(2222), - [aux_sym_cmd_identifier_token33] = ACTIONS(2222), - [aux_sym_cmd_identifier_token34] = ACTIONS(2220), - [aux_sym_cmd_identifier_token35] = ACTIONS(2222), - [aux_sym_cmd_identifier_token36] = ACTIONS(2222), - [aux_sym_cmd_identifier_token37] = ACTIONS(2222), - [aux_sym_cmd_identifier_token38] = ACTIONS(2220), - [aux_sym_cmd_identifier_token39] = ACTIONS(2222), - [aux_sym_cmd_identifier_token40] = ACTIONS(2222), - [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_COMMA] = ACTIONS(2222), - [anon_sym_DOLLAR] = ACTIONS(2220), - [anon_sym_error] = ACTIONS(2220), - [anon_sym_DASH2] = ACTIONS(2220), - [anon_sym_break] = ACTIONS(2220), - [anon_sym_continue] = ACTIONS(2220), - [anon_sym_for] = ACTIONS(2220), - [anon_sym_in2] = 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_as] = ACTIONS(2220), - [anon_sym_LPAREN2] = ACTIONS(1814), - [anon_sym_PLUS2] = ACTIONS(2220), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2222), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2222), - [aux_sym__val_number_decimal_token1] = ACTIONS(2220), - [aux_sym__val_number_decimal_token2] = ACTIONS(2222), - [aux_sym__val_number_decimal_token3] = ACTIONS(2222), - [aux_sym__val_number_decimal_token4] = ACTIONS(2222), - [aux_sym__val_number_token1] = ACTIONS(2222), - [aux_sym__val_number_token2] = ACTIONS(2222), - [aux_sym__val_number_token3] = ACTIONS(2222), - [aux_sym__val_number_token4] = ACTIONS(2220), - [aux_sym__val_number_token5] = ACTIONS(2220), - [aux_sym__val_number_token6] = ACTIONS(2220), - [anon_sym_DQUOTE] = ACTIONS(2222), - [sym__str_single_quotes] = ACTIONS(2222), - [sym__str_back_ticks] = ACTIONS(2222), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2222), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2222), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2222), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1822), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2222), - }, - [576] = { - [sym__expr_parenthesized_immediate] = STATE(7345), - [sym_comment] = STATE(576), - [anon_sym_export] = ACTIONS(2007), - [anon_sym_alias] = ACTIONS(2007), - [anon_sym_let] = ACTIONS(2007), - [anon_sym_let_DASHenv] = ACTIONS(2007), - [anon_sym_mut] = ACTIONS(2007), - [anon_sym_const] = ACTIONS(2007), - [aux_sym_cmd_identifier_token1] = ACTIONS(2007), - [aux_sym_cmd_identifier_token2] = ACTIONS(2013), - [aux_sym_cmd_identifier_token3] = ACTIONS(2013), - [aux_sym_cmd_identifier_token4] = ACTIONS(2013), - [aux_sym_cmd_identifier_token5] = ACTIONS(2013), - [aux_sym_cmd_identifier_token6] = ACTIONS(2013), - [aux_sym_cmd_identifier_token7] = ACTIONS(2013), - [aux_sym_cmd_identifier_token8] = ACTIONS(2007), - [aux_sym_cmd_identifier_token9] = ACTIONS(2007), - [aux_sym_cmd_identifier_token10] = ACTIONS(2013), - [aux_sym_cmd_identifier_token11] = ACTIONS(2013), - [aux_sym_cmd_identifier_token12] = ACTIONS(2007), - [aux_sym_cmd_identifier_token13] = ACTIONS(2007), - [aux_sym_cmd_identifier_token14] = ACTIONS(2007), - [aux_sym_cmd_identifier_token15] = ACTIONS(2007), - [aux_sym_cmd_identifier_token16] = ACTIONS(2013), - [aux_sym_cmd_identifier_token17] = ACTIONS(2013), - [aux_sym_cmd_identifier_token18] = ACTIONS(2013), - [aux_sym_cmd_identifier_token19] = ACTIONS(2013), - [aux_sym_cmd_identifier_token20] = ACTIONS(2013), - [aux_sym_cmd_identifier_token21] = ACTIONS(2013), - [aux_sym_cmd_identifier_token22] = ACTIONS(2013), - [aux_sym_cmd_identifier_token23] = ACTIONS(2013), - [aux_sym_cmd_identifier_token24] = ACTIONS(2013), - [aux_sym_cmd_identifier_token25] = ACTIONS(2013), - [aux_sym_cmd_identifier_token26] = ACTIONS(2013), - [aux_sym_cmd_identifier_token27] = ACTIONS(2013), - [aux_sym_cmd_identifier_token28] = ACTIONS(2013), - [aux_sym_cmd_identifier_token29] = ACTIONS(2013), - [aux_sym_cmd_identifier_token30] = ACTIONS(2013), - [aux_sym_cmd_identifier_token31] = ACTIONS(2013), - [aux_sym_cmd_identifier_token32] = ACTIONS(2013), - [aux_sym_cmd_identifier_token33] = ACTIONS(2013), - [aux_sym_cmd_identifier_token34] = ACTIONS(2007), - [aux_sym_cmd_identifier_token35] = ACTIONS(2013), - [aux_sym_cmd_identifier_token36] = ACTIONS(2013), - [aux_sym_cmd_identifier_token37] = ACTIONS(2013), - [aux_sym_cmd_identifier_token38] = ACTIONS(2007), - [aux_sym_cmd_identifier_token39] = ACTIONS(2013), - [aux_sym_cmd_identifier_token40] = ACTIONS(2013), - [anon_sym_def] = ACTIONS(2007), - [anon_sym_export_DASHenv] = ACTIONS(2007), - [anon_sym_extern] = ACTIONS(2007), - [anon_sym_module] = ACTIONS(2007), - [anon_sym_use] = ACTIONS(2007), - [anon_sym_LPAREN] = ACTIONS(2007), - [anon_sym_COMMA] = ACTIONS(2013), - [anon_sym_DOLLAR] = ACTIONS(2007), - [anon_sym_error] = ACTIONS(2007), - [anon_sym_DASH2] = ACTIONS(2007), - [anon_sym_break] = ACTIONS(2007), - [anon_sym_continue] = ACTIONS(2007), - [anon_sym_for] = ACTIONS(2007), - [anon_sym_in2] = ACTIONS(2007), - [anon_sym_loop] = ACTIONS(2007), - [anon_sym_make] = ACTIONS(2007), - [anon_sym_while] = ACTIONS(2007), - [anon_sym_do] = ACTIONS(2007), - [anon_sym_if] = ACTIONS(2007), - [anon_sym_else] = ACTIONS(2007), - [anon_sym_match] = ACTIONS(2007), - [anon_sym_RBRACE] = ACTIONS(2013), - [anon_sym_try] = ACTIONS(2007), - [anon_sym_catch] = ACTIONS(2007), - [anon_sym_return] = ACTIONS(2007), - [anon_sym_source] = ACTIONS(2007), - [anon_sym_source_DASHenv] = ACTIONS(2007), - [anon_sym_register] = ACTIONS(2007), - [anon_sym_hide] = ACTIONS(2007), - [anon_sym_hide_DASHenv] = ACTIONS(2007), - [anon_sym_overlay] = ACTIONS(2007), - [anon_sym_as] = ACTIONS(2007), - [anon_sym_LPAREN2] = ACTIONS(1640), - [anon_sym_PLUS2] = ACTIONS(2007), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2013), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2013), - [aux_sym__val_number_decimal_token1] = ACTIONS(2007), - [aux_sym__val_number_decimal_token2] = ACTIONS(2013), - [aux_sym__val_number_decimal_token3] = ACTIONS(2013), - [aux_sym__val_number_decimal_token4] = ACTIONS(2013), - [aux_sym__val_number_token1] = ACTIONS(2013), - [aux_sym__val_number_token2] = ACTIONS(2013), - [aux_sym__val_number_token3] = ACTIONS(2013), - [aux_sym__val_number_token4] = ACTIONS(2007), - [aux_sym__val_number_token5] = ACTIONS(2007), - [aux_sym__val_number_token6] = ACTIONS(2007), - [anon_sym_DQUOTE] = ACTIONS(2013), - [sym__str_single_quotes] = ACTIONS(2013), - [sym__str_back_ticks] = ACTIONS(2013), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2013), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2013), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2013), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2013), - }, - [577] = { - [sym_comment] = STATE(577), - [anon_sym_export] = ACTIONS(1783), - [anon_sym_alias] = ACTIONS(1783), - [anon_sym_let] = ACTIONS(1783), - [anon_sym_let_DASHenv] = ACTIONS(1783), - [anon_sym_mut] = ACTIONS(1783), - [anon_sym_const] = ACTIONS(1783), - [aux_sym_cmd_identifier_token1] = ACTIONS(1783), - [aux_sym_cmd_identifier_token2] = ACTIONS(1783), - [aux_sym_cmd_identifier_token3] = ACTIONS(1783), - [aux_sym_cmd_identifier_token4] = ACTIONS(1783), - [aux_sym_cmd_identifier_token5] = ACTIONS(1783), - [aux_sym_cmd_identifier_token6] = ACTIONS(1783), - [aux_sym_cmd_identifier_token7] = ACTIONS(1783), - [aux_sym_cmd_identifier_token8] = ACTIONS(1783), - [aux_sym_cmd_identifier_token9] = ACTIONS(1783), - [aux_sym_cmd_identifier_token10] = ACTIONS(1783), - [aux_sym_cmd_identifier_token11] = ACTIONS(1783), - [aux_sym_cmd_identifier_token12] = ACTIONS(1783), - [aux_sym_cmd_identifier_token13] = ACTIONS(1783), - [aux_sym_cmd_identifier_token14] = ACTIONS(1783), - [aux_sym_cmd_identifier_token15] = ACTIONS(1783), - [aux_sym_cmd_identifier_token16] = ACTIONS(1783), - [aux_sym_cmd_identifier_token17] = ACTIONS(1783), - [aux_sym_cmd_identifier_token18] = ACTIONS(1783), - [aux_sym_cmd_identifier_token19] = ACTIONS(1783), - [aux_sym_cmd_identifier_token20] = ACTIONS(1783), - [aux_sym_cmd_identifier_token21] = ACTIONS(1783), - [aux_sym_cmd_identifier_token22] = ACTIONS(1783), - [aux_sym_cmd_identifier_token23] = ACTIONS(1783), - [aux_sym_cmd_identifier_token24] = ACTIONS(1783), - [aux_sym_cmd_identifier_token25] = ACTIONS(1783), - [aux_sym_cmd_identifier_token26] = ACTIONS(1783), - [aux_sym_cmd_identifier_token27] = ACTIONS(1783), - [aux_sym_cmd_identifier_token28] = ACTIONS(1783), - [aux_sym_cmd_identifier_token29] = ACTIONS(1783), - [aux_sym_cmd_identifier_token30] = ACTIONS(1783), - [aux_sym_cmd_identifier_token31] = ACTIONS(1783), - [aux_sym_cmd_identifier_token32] = ACTIONS(1783), - [aux_sym_cmd_identifier_token33] = ACTIONS(1783), - [aux_sym_cmd_identifier_token34] = ACTIONS(1783), - [aux_sym_cmd_identifier_token35] = ACTIONS(1783), - [aux_sym_cmd_identifier_token36] = ACTIONS(1783), - [aux_sym_cmd_identifier_token37] = ACTIONS(1783), - [aux_sym_cmd_identifier_token38] = ACTIONS(1783), - [aux_sym_cmd_identifier_token39] = ACTIONS(1783), - [aux_sym_cmd_identifier_token40] = ACTIONS(1783), - [anon_sym_def] = ACTIONS(1783), - [anon_sym_export_DASHenv] = ACTIONS(1783), - [anon_sym_extern] = ACTIONS(1783), - [anon_sym_module] = ACTIONS(1783), - [anon_sym_use] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_COMMA] = ACTIONS(1783), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_error] = ACTIONS(1783), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_break] = ACTIONS(1783), - [anon_sym_continue] = ACTIONS(1783), - [anon_sym_for] = ACTIONS(1783), - [anon_sym_in2] = ACTIONS(1783), - [anon_sym_loop] = ACTIONS(1783), - [anon_sym_make] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1783), - [anon_sym_do] = ACTIONS(1783), - [anon_sym_if] = ACTIONS(1783), - [anon_sym_else] = ACTIONS(1783), - [anon_sym_match] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(1783), - [anon_sym_try] = ACTIONS(1783), - [anon_sym_catch] = ACTIONS(1783), - [anon_sym_return] = ACTIONS(1783), - [anon_sym_source] = ACTIONS(1783), - [anon_sym_source_DASHenv] = ACTIONS(1783), - [anon_sym_register] = ACTIONS(1783), - [anon_sym_hide] = ACTIONS(1783), - [anon_sym_hide_DASHenv] = ACTIONS(1783), - [anon_sym_overlay] = ACTIONS(1783), - [anon_sym_as] = ACTIONS(1783), - [anon_sym_PLUS2] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1783), - [aux_sym__immediate_decimal_token2] = ACTIONS(2312), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1783), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1783), - [aux_sym__val_number_decimal_token3] = ACTIONS(1783), - [aux_sym__val_number_decimal_token4] = ACTIONS(1783), - [aux_sym__val_number_token1] = ACTIONS(1783), - [aux_sym__val_number_token2] = ACTIONS(1783), - [aux_sym__val_number_token3] = ACTIONS(1783), - [aux_sym__val_number_token4] = ACTIONS(1783), - [aux_sym__val_number_token5] = ACTIONS(1783), - [aux_sym__val_number_token6] = ACTIONS(1783), - [anon_sym_DQUOTE] = ACTIONS(1783), - [sym__str_single_quotes] = ACTIONS(1783), - [sym__str_back_ticks] = ACTIONS(1783), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1783), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1783), - [sym__entry_separator] = ACTIONS(1785), + [606] = { + [sym_comment] = STATE(606), + [aux_sym__multiple_types_repeat1] = STATE(619), + [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), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(2348), + [anon_sym_break] = ACTIONS(2348), + [anon_sym_continue] = ACTIONS(2348), + [anon_sym_for] = ACTIONS(2348), + [anon_sym_in2] = 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_hide] = ACTIONS(2348), + [anon_sym_hide_DASHenv] = ACTIONS(2348), + [anon_sym_overlay] = ACTIONS(2348), + [anon_sym_as] = ACTIONS(2348), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2348), + [aux_sym__val_number_token5] = ACTIONS(2348), + [aux_sym__val_number_token6] = ACTIONS(2348), + [anon_sym_DQUOTE] = ACTIONS(2348), + [sym__str_single_quotes] = ACTIONS(2348), + [sym__str_back_ticks] = ACTIONS(2348), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2348), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2348), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2348), + [sym__entry_separator] = ACTIONS(2230), + [anon_sym_register] = ACTIONS(2348), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1785), + [sym_raw_string_begin] = ACTIONS(2352), }, - [578] = { - [sym_comment] = STATE(578), - [anon_sym_export] = ACTIONS(988), - [anon_sym_alias] = ACTIONS(988), - [anon_sym_let] = ACTIONS(988), - [anon_sym_let_DASHenv] = ACTIONS(988), - [anon_sym_mut] = ACTIONS(988), - [anon_sym_const] = ACTIONS(988), - [aux_sym_cmd_identifier_token1] = ACTIONS(988), - [aux_sym_cmd_identifier_token2] = ACTIONS(988), - [aux_sym_cmd_identifier_token3] = ACTIONS(988), - [aux_sym_cmd_identifier_token4] = ACTIONS(988), - [aux_sym_cmd_identifier_token5] = ACTIONS(988), - [aux_sym_cmd_identifier_token6] = ACTIONS(988), - [aux_sym_cmd_identifier_token7] = ACTIONS(988), - [aux_sym_cmd_identifier_token8] = ACTIONS(988), - [aux_sym_cmd_identifier_token9] = ACTIONS(988), - [aux_sym_cmd_identifier_token10] = ACTIONS(988), - [aux_sym_cmd_identifier_token11] = ACTIONS(988), - [aux_sym_cmd_identifier_token12] = ACTIONS(988), - [aux_sym_cmd_identifier_token13] = ACTIONS(988), - [aux_sym_cmd_identifier_token14] = ACTIONS(988), - [aux_sym_cmd_identifier_token15] = ACTIONS(988), - [aux_sym_cmd_identifier_token16] = ACTIONS(988), - [aux_sym_cmd_identifier_token17] = ACTIONS(988), - [aux_sym_cmd_identifier_token18] = ACTIONS(988), - [aux_sym_cmd_identifier_token19] = ACTIONS(988), - [aux_sym_cmd_identifier_token20] = ACTIONS(988), - [aux_sym_cmd_identifier_token21] = ACTIONS(988), - [aux_sym_cmd_identifier_token22] = ACTIONS(988), - [aux_sym_cmd_identifier_token23] = ACTIONS(988), - [aux_sym_cmd_identifier_token24] = ACTIONS(988), - [aux_sym_cmd_identifier_token25] = ACTIONS(988), - [aux_sym_cmd_identifier_token26] = ACTIONS(988), - [aux_sym_cmd_identifier_token27] = ACTIONS(988), - [aux_sym_cmd_identifier_token28] = ACTIONS(988), - [aux_sym_cmd_identifier_token29] = ACTIONS(988), - [aux_sym_cmd_identifier_token30] = ACTIONS(988), - [aux_sym_cmd_identifier_token31] = ACTIONS(988), - [aux_sym_cmd_identifier_token32] = ACTIONS(988), - [aux_sym_cmd_identifier_token33] = ACTIONS(988), - [aux_sym_cmd_identifier_token34] = ACTIONS(988), - [aux_sym_cmd_identifier_token35] = ACTIONS(988), - [aux_sym_cmd_identifier_token36] = ACTIONS(988), - [aux_sym_cmd_identifier_token37] = ACTIONS(988), - [aux_sym_cmd_identifier_token38] = ACTIONS(988), - [aux_sym_cmd_identifier_token39] = ACTIONS(988), - [aux_sym_cmd_identifier_token40] = ACTIONS(988), - [anon_sym_def] = ACTIONS(988), - [anon_sym_export_DASHenv] = ACTIONS(988), - [anon_sym_extern] = ACTIONS(988), - [anon_sym_module] = ACTIONS(988), - [anon_sym_use] = ACTIONS(988), - [anon_sym_LPAREN] = ACTIONS(988), - [anon_sym_COMMA] = ACTIONS(988), - [anon_sym_DOLLAR] = ACTIONS(988), - [anon_sym_error] = ACTIONS(988), - [anon_sym_DASH2] = ACTIONS(988), - [anon_sym_break] = ACTIONS(988), - [anon_sym_continue] = ACTIONS(988), - [anon_sym_for] = ACTIONS(988), - [anon_sym_in2] = ACTIONS(988), - [anon_sym_loop] = ACTIONS(988), - [anon_sym_make] = ACTIONS(988), - [anon_sym_while] = ACTIONS(988), - [anon_sym_do] = ACTIONS(988), - [anon_sym_if] = ACTIONS(988), - [anon_sym_else] = ACTIONS(988), - [anon_sym_match] = ACTIONS(988), - [anon_sym_RBRACE] = ACTIONS(988), - [anon_sym_try] = ACTIONS(988), - [anon_sym_catch] = ACTIONS(988), - [anon_sym_return] = ACTIONS(988), - [anon_sym_source] = ACTIONS(988), - [anon_sym_source_DASHenv] = ACTIONS(988), - [anon_sym_register] = ACTIONS(988), - [anon_sym_hide] = ACTIONS(988), - [anon_sym_hide_DASHenv] = ACTIONS(988), - [anon_sym_overlay] = ACTIONS(988), - [anon_sym_as] = ACTIONS(988), - [anon_sym_PLUS2] = ACTIONS(988), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(988), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(988), - [aux_sym__val_number_decimal_token1] = ACTIONS(988), - [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), - [aux_sym__val_number_token4] = ACTIONS(988), - [aux_sym__val_number_token5] = ACTIONS(988), - [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(988), - [sym__entry_separator] = ACTIONS(990), - [anon_sym_DOT2] = ACTIONS(988), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(990), - }, - [579] = { - [sym__expr_parenthesized_immediate] = STATE(7345), - [sym_comment] = STATE(579), - [anon_sym_export] = ACTIONS(2057), - [anon_sym_alias] = ACTIONS(2057), - [anon_sym_let] = ACTIONS(2057), - [anon_sym_let_DASHenv] = ACTIONS(2057), - [anon_sym_mut] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [aux_sym_cmd_identifier_token1] = ACTIONS(2057), - [aux_sym_cmd_identifier_token2] = ACTIONS(2059), - [aux_sym_cmd_identifier_token3] = ACTIONS(2059), - [aux_sym_cmd_identifier_token4] = ACTIONS(2059), - [aux_sym_cmd_identifier_token5] = ACTIONS(2059), - [aux_sym_cmd_identifier_token6] = ACTIONS(2059), - [aux_sym_cmd_identifier_token7] = ACTIONS(2059), - [aux_sym_cmd_identifier_token8] = ACTIONS(2057), - [aux_sym_cmd_identifier_token9] = ACTIONS(2057), - [aux_sym_cmd_identifier_token10] = ACTIONS(2059), - [aux_sym_cmd_identifier_token11] = ACTIONS(2059), - [aux_sym_cmd_identifier_token12] = ACTIONS(2057), - [aux_sym_cmd_identifier_token13] = ACTIONS(2057), - [aux_sym_cmd_identifier_token14] = ACTIONS(2057), - [aux_sym_cmd_identifier_token15] = ACTIONS(2057), - [aux_sym_cmd_identifier_token16] = ACTIONS(2059), - [aux_sym_cmd_identifier_token17] = ACTIONS(2059), - [aux_sym_cmd_identifier_token18] = ACTIONS(2059), - [aux_sym_cmd_identifier_token19] = ACTIONS(2059), - [aux_sym_cmd_identifier_token20] = ACTIONS(2059), - [aux_sym_cmd_identifier_token21] = ACTIONS(2059), - [aux_sym_cmd_identifier_token22] = ACTIONS(2059), - [aux_sym_cmd_identifier_token23] = ACTIONS(2059), - [aux_sym_cmd_identifier_token24] = ACTIONS(2059), - [aux_sym_cmd_identifier_token25] = ACTIONS(2059), - [aux_sym_cmd_identifier_token26] = ACTIONS(2059), - [aux_sym_cmd_identifier_token27] = ACTIONS(2059), - [aux_sym_cmd_identifier_token28] = ACTIONS(2059), - [aux_sym_cmd_identifier_token29] = ACTIONS(2059), - [aux_sym_cmd_identifier_token30] = ACTIONS(2059), - [aux_sym_cmd_identifier_token31] = ACTIONS(2059), - [aux_sym_cmd_identifier_token32] = ACTIONS(2059), - [aux_sym_cmd_identifier_token33] = ACTIONS(2059), - [aux_sym_cmd_identifier_token34] = ACTIONS(2057), - [aux_sym_cmd_identifier_token35] = ACTIONS(2059), - [aux_sym_cmd_identifier_token36] = ACTIONS(2059), - [aux_sym_cmd_identifier_token37] = ACTIONS(2059), - [aux_sym_cmd_identifier_token38] = ACTIONS(2057), - [aux_sym_cmd_identifier_token39] = ACTIONS(2059), - [aux_sym_cmd_identifier_token40] = ACTIONS(2059), - [anon_sym_def] = ACTIONS(2057), - [anon_sym_export_DASHenv] = ACTIONS(2057), - [anon_sym_extern] = ACTIONS(2057), - [anon_sym_module] = ACTIONS(2057), - [anon_sym_use] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_COMMA] = ACTIONS(2059), - [anon_sym_DOLLAR] = ACTIONS(2057), - [anon_sym_error] = ACTIONS(2057), - [anon_sym_DASH2] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_in2] = ACTIONS(2057), - [anon_sym_loop] = ACTIONS(2057), - [anon_sym_make] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_else] = ACTIONS(2057), - [anon_sym_match] = ACTIONS(2057), - [anon_sym_RBRACE] = ACTIONS(2059), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_catch] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_source] = ACTIONS(2057), - [anon_sym_source_DASHenv] = ACTIONS(2057), - [anon_sym_register] = ACTIONS(2057), - [anon_sym_hide] = ACTIONS(2057), - [anon_sym_hide_DASHenv] = ACTIONS(2057), - [anon_sym_overlay] = ACTIONS(2057), - [anon_sym_as] = ACTIONS(2057), - [anon_sym_LPAREN2] = ACTIONS(1640), - [anon_sym_PLUS2] = ACTIONS(2057), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2059), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2059), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2059), - [aux_sym__val_number_decimal_token4] = ACTIONS(2059), - [aux_sym__val_number_token1] = ACTIONS(2059), - [aux_sym__val_number_token2] = ACTIONS(2059), - [aux_sym__val_number_token3] = ACTIONS(2059), - [aux_sym__val_number_token4] = ACTIONS(2057), - [aux_sym__val_number_token5] = ACTIONS(2057), - [aux_sym__val_number_token6] = ACTIONS(2057), - [anon_sym_DQUOTE] = ACTIONS(2059), - [sym__str_single_quotes] = ACTIONS(2059), - [sym__str_back_ticks] = ACTIONS(2059), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2059), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2059), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2059), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2059), - }, - [580] = { - [sym_comment] = STATE(580), - [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(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(1812), - [aux_sym_cmd_identifier_token9] = ACTIONS(1812), - [aux_sym_cmd_identifier_token10] = ACTIONS(1820), - [aux_sym_cmd_identifier_token11] = ACTIONS(1820), - [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(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(1812), - [aux_sym_cmd_identifier_token35] = ACTIONS(1820), - [aux_sym_cmd_identifier_token36] = ACTIONS(1820), - [aux_sym_cmd_identifier_token37] = ACTIONS(1820), - [aux_sym_cmd_identifier_token38] = ACTIONS(1812), - [aux_sym_cmd_identifier_token39] = ACTIONS(1820), - [aux_sym_cmd_identifier_token40] = ACTIONS(1820), - [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_COMMA] = ACTIONS(1820), - [anon_sym_DOLLAR] = ACTIONS(1812), - [anon_sym_error] = ACTIONS(1812), - [anon_sym_DASH2] = ACTIONS(1812), - [anon_sym_break] = ACTIONS(1812), - [anon_sym_continue] = ACTIONS(1812), - [anon_sym_for] = ACTIONS(1812), - [anon_sym_in2] = 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(1820), - [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_as] = ACTIONS(1812), - [anon_sym_LPAREN2] = ACTIONS(1814), - [anon_sym_PLUS2] = ACTIONS(1812), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1820), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1820), - [aux_sym__val_number_decimal_token1] = ACTIONS(1812), - [aux_sym__val_number_decimal_token2] = 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), - [aux_sym__val_number_token4] = ACTIONS(1812), - [aux_sym__val_number_token5] = ACTIONS(1812), - [aux_sym__val_number_token6] = ACTIONS(1812), - [anon_sym_DQUOTE] = ACTIONS(1820), - [sym__str_single_quotes] = ACTIONS(1820), - [sym__str_back_ticks] = ACTIONS(1820), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1820), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1820), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1820), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1822), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1820), + [607] = { + [sym_comment] = STATE(607), + [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(1703), + [aux_sym_cmd_identifier_token3] = ACTIONS(1703), + [aux_sym_cmd_identifier_token4] = ACTIONS(1703), + [aux_sym_cmd_identifier_token5] = ACTIONS(1703), + [aux_sym_cmd_identifier_token6] = ACTIONS(1703), + [aux_sym_cmd_identifier_token7] = ACTIONS(1703), + [aux_sym_cmd_identifier_token8] = ACTIONS(1701), + [aux_sym_cmd_identifier_token9] = ACTIONS(1701), + [aux_sym_cmd_identifier_token10] = ACTIONS(1703), + [aux_sym_cmd_identifier_token11] = ACTIONS(1703), + [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(1703), + [aux_sym_cmd_identifier_token17] = ACTIONS(1703), + [aux_sym_cmd_identifier_token18] = ACTIONS(1703), + [aux_sym_cmd_identifier_token19] = ACTIONS(1703), + [aux_sym_cmd_identifier_token20] = ACTIONS(1703), + [aux_sym_cmd_identifier_token21] = ACTIONS(1703), + [aux_sym_cmd_identifier_token22] = ACTIONS(1703), + [aux_sym_cmd_identifier_token23] = ACTIONS(1703), + [aux_sym_cmd_identifier_token24] = ACTIONS(1703), + [aux_sym_cmd_identifier_token25] = ACTIONS(1703), + [aux_sym_cmd_identifier_token26] = ACTIONS(1703), + [aux_sym_cmd_identifier_token27] = ACTIONS(1703), + [aux_sym_cmd_identifier_token28] = ACTIONS(1703), + [aux_sym_cmd_identifier_token29] = ACTIONS(1703), + [aux_sym_cmd_identifier_token30] = ACTIONS(1703), + [aux_sym_cmd_identifier_token31] = ACTIONS(1703), + [aux_sym_cmd_identifier_token32] = ACTIONS(1703), + [aux_sym_cmd_identifier_token33] = ACTIONS(1703), + [aux_sym_cmd_identifier_token34] = ACTIONS(1701), + [aux_sym_cmd_identifier_token35] = ACTIONS(1703), + [aux_sym_cmd_identifier_token36] = ACTIONS(1703), + [aux_sym_cmd_identifier_token37] = ACTIONS(1703), + [aux_sym_cmd_identifier_token38] = ACTIONS(1701), + [aux_sym_cmd_identifier_token39] = ACTIONS(1703), + [aux_sym_cmd_identifier_token40] = ACTIONS(1703), + [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(1703), + [anon_sym_COMMA] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_error] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_in2] = 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(1703), + [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_hide] = ACTIONS(1701), + [anon_sym_hide_DASHenv] = ACTIONS(1701), + [anon_sym_overlay] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1701), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(2218), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1701), + [aux_sym__val_number_token5] = ACTIONS(1701), + [aux_sym__val_number_token6] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1703), }, - [581] = { - [sym_comment] = STATE(581), - [anon_sym_export] = ACTIONS(2136), - [anon_sym_alias] = ACTIONS(2136), - [anon_sym_let] = ACTIONS(2136), - [anon_sym_let_DASHenv] = ACTIONS(2136), - [anon_sym_mut] = ACTIONS(2136), - [anon_sym_const] = ACTIONS(2136), - [aux_sym_cmd_identifier_token1] = ACTIONS(2136), - [aux_sym_cmd_identifier_token2] = ACTIONS(2136), - [aux_sym_cmd_identifier_token3] = ACTIONS(2136), - [aux_sym_cmd_identifier_token4] = ACTIONS(2136), - [aux_sym_cmd_identifier_token5] = ACTIONS(2136), - [aux_sym_cmd_identifier_token6] = ACTIONS(2136), - [aux_sym_cmd_identifier_token7] = ACTIONS(2136), - [aux_sym_cmd_identifier_token8] = ACTIONS(2136), - [aux_sym_cmd_identifier_token9] = ACTIONS(2136), - [aux_sym_cmd_identifier_token10] = ACTIONS(2136), - [aux_sym_cmd_identifier_token11] = ACTIONS(2136), - [aux_sym_cmd_identifier_token12] = ACTIONS(2136), - [aux_sym_cmd_identifier_token13] = ACTIONS(2136), - [aux_sym_cmd_identifier_token14] = ACTIONS(2136), - [aux_sym_cmd_identifier_token15] = ACTIONS(2136), - [aux_sym_cmd_identifier_token16] = ACTIONS(2136), - [aux_sym_cmd_identifier_token17] = ACTIONS(2136), - [aux_sym_cmd_identifier_token18] = ACTIONS(2136), - [aux_sym_cmd_identifier_token19] = ACTIONS(2136), - [aux_sym_cmd_identifier_token20] = ACTIONS(2136), - [aux_sym_cmd_identifier_token21] = ACTIONS(2136), - [aux_sym_cmd_identifier_token22] = ACTIONS(2136), - [aux_sym_cmd_identifier_token23] = ACTIONS(2136), - [aux_sym_cmd_identifier_token24] = ACTIONS(2136), - [aux_sym_cmd_identifier_token25] = ACTIONS(2136), - [aux_sym_cmd_identifier_token26] = ACTIONS(2136), - [aux_sym_cmd_identifier_token27] = ACTIONS(2136), - [aux_sym_cmd_identifier_token28] = ACTIONS(2136), - [aux_sym_cmd_identifier_token29] = ACTIONS(2136), - [aux_sym_cmd_identifier_token30] = ACTIONS(2136), - [aux_sym_cmd_identifier_token31] = ACTIONS(2136), - [aux_sym_cmd_identifier_token32] = ACTIONS(2136), - [aux_sym_cmd_identifier_token33] = ACTIONS(2136), - [aux_sym_cmd_identifier_token34] = ACTIONS(2136), - [aux_sym_cmd_identifier_token35] = ACTIONS(2136), - [aux_sym_cmd_identifier_token36] = ACTIONS(2136), - [aux_sym_cmd_identifier_token37] = ACTIONS(2136), - [aux_sym_cmd_identifier_token38] = ACTIONS(2136), - [aux_sym_cmd_identifier_token39] = ACTIONS(2136), - [aux_sym_cmd_identifier_token40] = ACTIONS(2136), - [anon_sym_def] = ACTIONS(2136), - [anon_sym_export_DASHenv] = ACTIONS(2136), - [anon_sym_extern] = ACTIONS(2136), - [anon_sym_module] = ACTIONS(2136), - [anon_sym_use] = ACTIONS(2136), - [anon_sym_LPAREN] = ACTIONS(2136), - [anon_sym_COMMA] = ACTIONS(2140), - [anon_sym_DOLLAR] = ACTIONS(2136), - [anon_sym_error] = ACTIONS(2136), - [anon_sym_DASH2] = ACTIONS(2136), - [anon_sym_break] = ACTIONS(2136), - [anon_sym_continue] = ACTIONS(2136), - [anon_sym_for] = ACTIONS(2136), - [anon_sym_in2] = ACTIONS(2136), - [anon_sym_loop] = ACTIONS(2136), - [anon_sym_make] = ACTIONS(2136), - [anon_sym_while] = ACTIONS(2136), - [anon_sym_do] = ACTIONS(2136), - [anon_sym_if] = ACTIONS(2136), - [anon_sym_else] = ACTIONS(2136), - [anon_sym_match] = ACTIONS(2136), - [anon_sym_RBRACE] = ACTIONS(2140), - [anon_sym_try] = ACTIONS(2136), - [anon_sym_catch] = ACTIONS(2136), - [anon_sym_return] = ACTIONS(2136), - [anon_sym_source] = ACTIONS(2136), - [anon_sym_source_DASHenv] = ACTIONS(2136), - [anon_sym_register] = ACTIONS(2136), - [anon_sym_hide] = ACTIONS(2136), - [anon_sym_hide_DASHenv] = ACTIONS(2136), - [anon_sym_overlay] = ACTIONS(2136), - [anon_sym_as] = ACTIONS(2136), - [anon_sym_LPAREN2] = ACTIONS(2138), - [anon_sym_PLUS2] = ACTIONS(2136), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2140), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2136), - [aux_sym__val_number_decimal_token1] = ACTIONS(2136), - [aux_sym__val_number_decimal_token2] = ACTIONS(2136), - [aux_sym__val_number_decimal_token3] = ACTIONS(2136), - [aux_sym__val_number_decimal_token4] = ACTIONS(2136), - [aux_sym__val_number_token1] = ACTIONS(2136), - [aux_sym__val_number_token2] = ACTIONS(2136), - [aux_sym__val_number_token3] = ACTIONS(2136), - [aux_sym__val_number_token4] = ACTIONS(2136), - [aux_sym__val_number_token5] = ACTIONS(2136), - [aux_sym__val_number_token6] = ACTIONS(2136), - [anon_sym_DQUOTE] = ACTIONS(2140), - [sym__str_single_quotes] = ACTIONS(2140), - [sym__str_back_ticks] = ACTIONS(2140), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2140), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2140), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2140), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2142), + [608] = { + [sym_comment] = STATE(608), + [anon_sym_export] = ACTIONS(1985), + [anon_sym_alias] = ACTIONS(1985), + [anon_sym_let] = ACTIONS(1985), + [anon_sym_let_DASHenv] = ACTIONS(1985), + [anon_sym_mut] = ACTIONS(1985), + [anon_sym_const] = ACTIONS(1985), + [aux_sym_cmd_identifier_token1] = ACTIONS(1985), + [aux_sym_cmd_identifier_token2] = ACTIONS(1985), + [aux_sym_cmd_identifier_token3] = ACTIONS(1985), + [aux_sym_cmd_identifier_token4] = ACTIONS(1985), + [aux_sym_cmd_identifier_token5] = ACTIONS(1985), + [aux_sym_cmd_identifier_token6] = ACTIONS(1985), + [aux_sym_cmd_identifier_token7] = ACTIONS(1985), + [aux_sym_cmd_identifier_token8] = ACTIONS(1985), + [aux_sym_cmd_identifier_token9] = ACTIONS(1985), + [aux_sym_cmd_identifier_token10] = ACTIONS(1985), + [aux_sym_cmd_identifier_token11] = ACTIONS(1985), + [aux_sym_cmd_identifier_token12] = ACTIONS(1985), + [aux_sym_cmd_identifier_token13] = ACTIONS(1985), + [aux_sym_cmd_identifier_token14] = ACTIONS(1985), + [aux_sym_cmd_identifier_token15] = ACTIONS(1985), + [aux_sym_cmd_identifier_token16] = ACTIONS(1985), + [aux_sym_cmd_identifier_token17] = ACTIONS(1985), + [aux_sym_cmd_identifier_token18] = ACTIONS(1985), + [aux_sym_cmd_identifier_token19] = ACTIONS(1985), + [aux_sym_cmd_identifier_token20] = ACTIONS(1985), + [aux_sym_cmd_identifier_token21] = ACTIONS(1985), + [aux_sym_cmd_identifier_token22] = ACTIONS(1985), + [aux_sym_cmd_identifier_token23] = ACTIONS(1985), + [aux_sym_cmd_identifier_token24] = ACTIONS(1985), + [aux_sym_cmd_identifier_token25] = ACTIONS(1985), + [aux_sym_cmd_identifier_token26] = ACTIONS(1985), + [aux_sym_cmd_identifier_token27] = ACTIONS(1985), + [aux_sym_cmd_identifier_token28] = ACTIONS(1985), + [aux_sym_cmd_identifier_token29] = ACTIONS(1985), + [aux_sym_cmd_identifier_token30] = ACTIONS(1985), + [aux_sym_cmd_identifier_token31] = ACTIONS(1985), + [aux_sym_cmd_identifier_token32] = ACTIONS(1985), + [aux_sym_cmd_identifier_token33] = ACTIONS(1985), + [aux_sym_cmd_identifier_token34] = ACTIONS(1985), + [aux_sym_cmd_identifier_token35] = ACTIONS(1985), + [aux_sym_cmd_identifier_token36] = ACTIONS(1985), + [aux_sym_cmd_identifier_token37] = ACTIONS(1985), + [aux_sym_cmd_identifier_token38] = ACTIONS(1985), + [aux_sym_cmd_identifier_token39] = ACTIONS(1985), + [aux_sym_cmd_identifier_token40] = ACTIONS(1985), + [anon_sym_def] = ACTIONS(1985), + [anon_sym_export_DASHenv] = ACTIONS(1985), + [anon_sym_extern] = ACTIONS(1985), + [anon_sym_module] = ACTIONS(1985), + [anon_sym_use] = ACTIONS(1985), + [anon_sym_LPAREN] = ACTIONS(1985), + [anon_sym_COMMA] = ACTIONS(1985), + [anon_sym_DOLLAR] = ACTIONS(1985), + [anon_sym_error] = ACTIONS(1985), + [anon_sym_DASH2] = ACTIONS(1985), + [anon_sym_break] = ACTIONS(1985), + [anon_sym_continue] = ACTIONS(1985), + [anon_sym_for] = ACTIONS(1985), + [anon_sym_in2] = ACTIONS(1985), + [anon_sym_loop] = ACTIONS(1985), + [anon_sym_make] = ACTIONS(1985), + [anon_sym_while] = ACTIONS(1985), + [anon_sym_do] = ACTIONS(1985), + [anon_sym_if] = ACTIONS(1985), + [anon_sym_else] = ACTIONS(1985), + [anon_sym_match] = ACTIONS(1985), + [anon_sym_RBRACE] = ACTIONS(1985), + [anon_sym_try] = ACTIONS(1985), + [anon_sym_catch] = ACTIONS(1985), + [anon_sym_return] = ACTIONS(1985), + [anon_sym_source] = ACTIONS(1985), + [anon_sym_source_DASHenv] = ACTIONS(1985), + [anon_sym_hide] = ACTIONS(1985), + [anon_sym_hide_DASHenv] = ACTIONS(1985), + [anon_sym_overlay] = ACTIONS(1985), + [anon_sym_as] = ACTIONS(1985), + [anon_sym_PLUS2] = ACTIONS(1985), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1985), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1985), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1985), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(1985), + [aux_sym__val_number_token2] = ACTIONS(1985), + [aux_sym__val_number_token3] = ACTIONS(1985), + [aux_sym__val_number_token4] = ACTIONS(1985), + [aux_sym__val_number_token5] = ACTIONS(1985), + [aux_sym__val_number_token6] = ACTIONS(1985), + [anon_sym_DQUOTE] = ACTIONS(1985), + [sym__str_single_quotes] = ACTIONS(1985), + [sym__str_back_ticks] = ACTIONS(1985), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1985), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1985), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1985), + [sym__entry_separator] = ACTIONS(1991), + [anon_sym_register] = ACTIONS(1985), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2140), + [sym_raw_string_begin] = ACTIONS(1991), }, - [582] = { - [sym_comment] = STATE(582), - [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(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(1755), - [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(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(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(1757), - [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(1755), - [aux_sym_cmd_identifier_token35] = ACTIONS(1757), - [aux_sym_cmd_identifier_token36] = ACTIONS(1757), - [aux_sym_cmd_identifier_token37] = ACTIONS(1757), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1757), - [aux_sym_cmd_identifier_token40] = ACTIONS(1757), - [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(1755), - [anon_sym_COMMA] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in2] = 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_RBRACE] = ACTIONS(1757), - [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_as] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_PLUS2] = 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), - [aux_sym__val_number_token4] = ACTIONS(1755), - [aux_sym__val_number_token5] = ACTIONS(1755), - [aux_sym__val_number_token6] = ACTIONS(1755), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1757), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1757), + [609] = { + [sym_comment] = STATE(609), + [anon_sym_export] = ACTIONS(1766), + [anon_sym_alias] = ACTIONS(1766), + [anon_sym_let] = ACTIONS(1766), + [anon_sym_let_DASHenv] = ACTIONS(1766), + [anon_sym_mut] = ACTIONS(1766), + [anon_sym_const] = ACTIONS(1766), + [aux_sym_cmd_identifier_token1] = ACTIONS(1766), + [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(1766), + [aux_sym_cmd_identifier_token9] = ACTIONS(1766), + [aux_sym_cmd_identifier_token10] = ACTIONS(1768), + [aux_sym_cmd_identifier_token11] = ACTIONS(1768), + [aux_sym_cmd_identifier_token12] = ACTIONS(1766), + [aux_sym_cmd_identifier_token13] = ACTIONS(1766), + [aux_sym_cmd_identifier_token14] = ACTIONS(1766), + [aux_sym_cmd_identifier_token15] = ACTIONS(1766), + [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(1766), + [aux_sym_cmd_identifier_token35] = ACTIONS(1768), + [aux_sym_cmd_identifier_token36] = ACTIONS(1768), + [aux_sym_cmd_identifier_token37] = ACTIONS(1768), + [aux_sym_cmd_identifier_token38] = ACTIONS(1766), + [aux_sym_cmd_identifier_token39] = ACTIONS(1768), + [aux_sym_cmd_identifier_token40] = ACTIONS(1768), + [anon_sym_def] = ACTIONS(1766), + [anon_sym_export_DASHenv] = ACTIONS(1766), + [anon_sym_extern] = ACTIONS(1766), + [anon_sym_module] = ACTIONS(1766), + [anon_sym_use] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_COMMA] = ACTIONS(1768), + [anon_sym_DOLLAR] = ACTIONS(1766), + [anon_sym_error] = ACTIONS(1766), + [anon_sym_DASH2] = ACTIONS(1766), + [anon_sym_break] = ACTIONS(1766), + [anon_sym_continue] = ACTIONS(1766), + [anon_sym_for] = ACTIONS(1766), + [anon_sym_in2] = ACTIONS(1766), + [anon_sym_loop] = ACTIONS(1766), + [anon_sym_make] = ACTIONS(1766), + [anon_sym_while] = ACTIONS(1766), + [anon_sym_do] = ACTIONS(1766), + [anon_sym_if] = ACTIONS(1766), + [anon_sym_else] = ACTIONS(1766), + [anon_sym_match] = ACTIONS(1766), + [anon_sym_RBRACE] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1766), + [anon_sym_catch] = ACTIONS(1766), + [anon_sym_return] = ACTIONS(1766), + [anon_sym_source] = ACTIONS(1766), + [anon_sym_source_DASHenv] = ACTIONS(1766), + [anon_sym_hide] = ACTIONS(1766), + [anon_sym_hide_DASHenv] = ACTIONS(1766), + [anon_sym_overlay] = ACTIONS(1766), + [anon_sym_as] = ACTIONS(1766), + [anon_sym_PLUS2] = ACTIONS(1766), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1768), + [aux_sym__immediate_decimal_token2] = ACTIONS(2354), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1768), + [aux_sym__val_number_decimal_token1] = ACTIONS(1766), + [aux_sym__val_number_decimal_token2] = ACTIONS(1768), + [aux_sym__val_number_decimal_token3] = ACTIONS(1768), + [aux_sym__val_number_decimal_token4] = ACTIONS(1768), + [aux_sym__val_number_token1] = ACTIONS(1768), + [aux_sym__val_number_token2] = ACTIONS(1768), + [aux_sym__val_number_token3] = ACTIONS(1768), + [aux_sym__val_number_token4] = ACTIONS(1766), + [aux_sym__val_number_token5] = ACTIONS(1766), + [aux_sym__val_number_token6] = ACTIONS(1766), + [anon_sym_DQUOTE] = ACTIONS(1768), + [sym__str_single_quotes] = ACTIONS(1768), + [sym__str_back_ticks] = ACTIONS(1768), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1768), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1768), + [anon_sym_register] = ACTIONS(1766), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1768), }, - [583] = { - [sym_comment] = STATE(583), - [anon_sym_export] = ACTIONS(2148), - [anon_sym_alias] = ACTIONS(2148), - [anon_sym_let] = ACTIONS(2148), - [anon_sym_let_DASHenv] = ACTIONS(2148), - [anon_sym_mut] = ACTIONS(2148), - [anon_sym_const] = ACTIONS(2148), - [aux_sym_cmd_identifier_token1] = ACTIONS(2148), - [aux_sym_cmd_identifier_token2] = ACTIONS(2148), - [aux_sym_cmd_identifier_token3] = ACTIONS(2148), - [aux_sym_cmd_identifier_token4] = ACTIONS(2148), - [aux_sym_cmd_identifier_token5] = ACTIONS(2148), - [aux_sym_cmd_identifier_token6] = ACTIONS(2148), - [aux_sym_cmd_identifier_token7] = ACTIONS(2148), - [aux_sym_cmd_identifier_token8] = ACTIONS(2148), - [aux_sym_cmd_identifier_token9] = ACTIONS(2148), - [aux_sym_cmd_identifier_token10] = ACTIONS(2148), - [aux_sym_cmd_identifier_token11] = ACTIONS(2148), - [aux_sym_cmd_identifier_token12] = ACTIONS(2148), - [aux_sym_cmd_identifier_token13] = ACTIONS(2148), - [aux_sym_cmd_identifier_token14] = ACTIONS(2148), - [aux_sym_cmd_identifier_token15] = ACTIONS(2148), - [aux_sym_cmd_identifier_token16] = ACTIONS(2148), - [aux_sym_cmd_identifier_token17] = ACTIONS(2148), - [aux_sym_cmd_identifier_token18] = ACTIONS(2148), - [aux_sym_cmd_identifier_token19] = ACTIONS(2148), - [aux_sym_cmd_identifier_token20] = ACTIONS(2148), - [aux_sym_cmd_identifier_token21] = ACTIONS(2148), - [aux_sym_cmd_identifier_token22] = ACTIONS(2148), - [aux_sym_cmd_identifier_token23] = ACTIONS(2148), - [aux_sym_cmd_identifier_token24] = ACTIONS(2148), - [aux_sym_cmd_identifier_token25] = ACTIONS(2148), - [aux_sym_cmd_identifier_token26] = ACTIONS(2148), - [aux_sym_cmd_identifier_token27] = ACTIONS(2148), - [aux_sym_cmd_identifier_token28] = ACTIONS(2148), - [aux_sym_cmd_identifier_token29] = ACTIONS(2148), - [aux_sym_cmd_identifier_token30] = ACTIONS(2148), - [aux_sym_cmd_identifier_token31] = ACTIONS(2148), - [aux_sym_cmd_identifier_token32] = ACTIONS(2148), - [aux_sym_cmd_identifier_token33] = ACTIONS(2148), - [aux_sym_cmd_identifier_token34] = ACTIONS(2148), - [aux_sym_cmd_identifier_token35] = ACTIONS(2148), - [aux_sym_cmd_identifier_token36] = ACTIONS(2148), - [aux_sym_cmd_identifier_token37] = ACTIONS(2148), - [aux_sym_cmd_identifier_token38] = ACTIONS(2148), - [aux_sym_cmd_identifier_token39] = ACTIONS(2148), - [aux_sym_cmd_identifier_token40] = ACTIONS(2148), - [anon_sym_def] = ACTIONS(2148), - [anon_sym_export_DASHenv] = ACTIONS(2148), - [anon_sym_extern] = ACTIONS(2148), - [anon_sym_module] = ACTIONS(2148), - [anon_sym_use] = ACTIONS(2148), - [anon_sym_LPAREN] = ACTIONS(2148), - [anon_sym_COMMA] = ACTIONS(2150), - [anon_sym_DOLLAR] = ACTIONS(2148), - [anon_sym_error] = ACTIONS(2148), - [anon_sym_DASH2] = ACTIONS(2148), - [anon_sym_break] = ACTIONS(2148), - [anon_sym_continue] = ACTIONS(2148), - [anon_sym_for] = ACTIONS(2148), - [anon_sym_in2] = ACTIONS(2148), - [anon_sym_loop] = ACTIONS(2148), - [anon_sym_make] = ACTIONS(2148), - [anon_sym_while] = ACTIONS(2148), - [anon_sym_do] = ACTIONS(2148), - [anon_sym_if] = ACTIONS(2148), - [anon_sym_else] = ACTIONS(2148), - [anon_sym_match] = ACTIONS(2148), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_try] = ACTIONS(2148), - [anon_sym_catch] = ACTIONS(2148), - [anon_sym_return] = ACTIONS(2148), - [anon_sym_source] = ACTIONS(2148), - [anon_sym_source_DASHenv] = ACTIONS(2148), - [anon_sym_register] = ACTIONS(2148), - [anon_sym_hide] = ACTIONS(2148), - [anon_sym_hide_DASHenv] = ACTIONS(2148), - [anon_sym_overlay] = ACTIONS(2148), - [anon_sym_as] = ACTIONS(2148), - [anon_sym_LPAREN2] = ACTIONS(2150), - [anon_sym_PLUS2] = ACTIONS(2148), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2150), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2148), - [aux_sym__val_number_decimal_token1] = ACTIONS(2148), - [aux_sym__val_number_decimal_token2] = ACTIONS(2148), - [aux_sym__val_number_decimal_token3] = ACTIONS(2148), - [aux_sym__val_number_decimal_token4] = ACTIONS(2148), - [aux_sym__val_number_token1] = ACTIONS(2148), - [aux_sym__val_number_token2] = ACTIONS(2148), - [aux_sym__val_number_token3] = ACTIONS(2148), - [aux_sym__val_number_token4] = ACTIONS(2148), - [aux_sym__val_number_token5] = ACTIONS(2148), - [aux_sym__val_number_token6] = ACTIONS(2148), - [anon_sym_DQUOTE] = ACTIONS(2150), - [sym__str_single_quotes] = ACTIONS(2150), - [sym__str_back_ticks] = ACTIONS(2150), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2150), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2150), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2150), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2148), + [610] = { + [sym_comment] = STATE(610), + [anon_sym_export] = ACTIONS(2356), + [anon_sym_alias] = ACTIONS(2356), + [anon_sym_let] = ACTIONS(2356), + [anon_sym_let_DASHenv] = ACTIONS(2356), + [anon_sym_mut] = ACTIONS(2356), + [anon_sym_const] = ACTIONS(2356), + [aux_sym_cmd_identifier_token1] = ACTIONS(2356), + [aux_sym_cmd_identifier_token2] = ACTIONS(2356), + [aux_sym_cmd_identifier_token3] = ACTIONS(2356), + [aux_sym_cmd_identifier_token4] = ACTIONS(2356), + [aux_sym_cmd_identifier_token5] = ACTIONS(2356), + [aux_sym_cmd_identifier_token6] = ACTIONS(2356), + [aux_sym_cmd_identifier_token7] = ACTIONS(2356), + [aux_sym_cmd_identifier_token8] = ACTIONS(2356), + [aux_sym_cmd_identifier_token9] = ACTIONS(2356), + [aux_sym_cmd_identifier_token10] = ACTIONS(2356), + [aux_sym_cmd_identifier_token11] = ACTIONS(2356), + [aux_sym_cmd_identifier_token12] = ACTIONS(2356), + [aux_sym_cmd_identifier_token13] = ACTIONS(2356), + [aux_sym_cmd_identifier_token14] = ACTIONS(2356), + [aux_sym_cmd_identifier_token15] = ACTIONS(2356), + [aux_sym_cmd_identifier_token16] = ACTIONS(2356), + [aux_sym_cmd_identifier_token17] = ACTIONS(2356), + [aux_sym_cmd_identifier_token18] = ACTIONS(2356), + [aux_sym_cmd_identifier_token19] = ACTIONS(2356), + [aux_sym_cmd_identifier_token20] = ACTIONS(2356), + [aux_sym_cmd_identifier_token21] = ACTIONS(2356), + [aux_sym_cmd_identifier_token22] = ACTIONS(2356), + [aux_sym_cmd_identifier_token23] = ACTIONS(2356), + [aux_sym_cmd_identifier_token24] = ACTIONS(2356), + [aux_sym_cmd_identifier_token25] = ACTIONS(2356), + [aux_sym_cmd_identifier_token26] = ACTIONS(2356), + [aux_sym_cmd_identifier_token27] = ACTIONS(2356), + [aux_sym_cmd_identifier_token28] = ACTIONS(2356), + [aux_sym_cmd_identifier_token29] = ACTIONS(2356), + [aux_sym_cmd_identifier_token30] = ACTIONS(2356), + [aux_sym_cmd_identifier_token31] = ACTIONS(2356), + [aux_sym_cmd_identifier_token32] = ACTIONS(2356), + [aux_sym_cmd_identifier_token33] = ACTIONS(2356), + [aux_sym_cmd_identifier_token34] = ACTIONS(2356), + [aux_sym_cmd_identifier_token35] = ACTIONS(2356), + [aux_sym_cmd_identifier_token36] = ACTIONS(2356), + [aux_sym_cmd_identifier_token37] = ACTIONS(2356), + [aux_sym_cmd_identifier_token38] = ACTIONS(2356), + [aux_sym_cmd_identifier_token39] = ACTIONS(2356), + [aux_sym_cmd_identifier_token40] = ACTIONS(2356), + [anon_sym_def] = ACTIONS(2356), + [anon_sym_export_DASHenv] = ACTIONS(2356), + [anon_sym_extern] = ACTIONS(2356), + [anon_sym_module] = ACTIONS(2356), + [anon_sym_use] = ACTIONS(2356), + [anon_sym_LPAREN] = ACTIONS(2356), + [anon_sym_COMMA] = ACTIONS(2356), + [anon_sym_DOLLAR] = ACTIONS(2356), + [anon_sym_error] = ACTIONS(2356), + [anon_sym_DASH2] = ACTIONS(2356), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_for] = ACTIONS(2356), + [anon_sym_in2] = ACTIONS(2356), + [anon_sym_loop] = ACTIONS(2356), + [anon_sym_make] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_do] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_else] = ACTIONS(2356), + [anon_sym_match] = ACTIONS(2356), + [anon_sym_RBRACE] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2356), + [anon_sym_catch] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2356), + [anon_sym_source] = ACTIONS(2356), + [anon_sym_source_DASHenv] = ACTIONS(2356), + [anon_sym_hide] = ACTIONS(2356), + [anon_sym_hide_DASHenv] = ACTIONS(2356), + [anon_sym_overlay] = ACTIONS(2356), + [anon_sym_as] = ACTIONS(2356), + [anon_sym_PLUS2] = ACTIONS(2356), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2356), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2356), + [aux_sym__val_number_decimal_token1] = ACTIONS(2356), + [aux_sym__val_number_decimal_token2] = ACTIONS(2356), + [aux_sym__val_number_decimal_token3] = ACTIONS(2356), + [aux_sym__val_number_decimal_token4] = ACTIONS(2356), + [aux_sym__val_number_token1] = ACTIONS(2356), + [aux_sym__val_number_token2] = ACTIONS(2356), + [aux_sym__val_number_token3] = ACTIONS(2356), + [aux_sym__val_number_token4] = ACTIONS(2356), + [aux_sym__val_number_token5] = ACTIONS(2356), + [aux_sym__val_number_token6] = ACTIONS(2356), + [anon_sym_DQUOTE] = ACTIONS(2356), + [sym__str_single_quotes] = ACTIONS(2356), + [sym__str_back_ticks] = ACTIONS(2356), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2356), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2356), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2356), + [sym__entry_separator] = ACTIONS(2358), + [anon_sym_register] = ACTIONS(2356), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2150), + [sym_raw_string_begin] = ACTIONS(2358), }, - [584] = { - [sym_comment] = STATE(584), - [aux_sym__multiple_types_repeat1] = STATE(646), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_alias] = ACTIONS(1004), - [anon_sym_let] = ACTIONS(1004), - [anon_sym_let_DASHenv] = ACTIONS(1004), - [anon_sym_mut] = ACTIONS(1004), - [anon_sym_const] = ACTIONS(1004), - [aux_sym_cmd_identifier_token1] = ACTIONS(1004), - [aux_sym_cmd_identifier_token2] = ACTIONS(1004), - [aux_sym_cmd_identifier_token3] = ACTIONS(1004), - [aux_sym_cmd_identifier_token4] = ACTIONS(1004), - [aux_sym_cmd_identifier_token5] = ACTIONS(1004), - [aux_sym_cmd_identifier_token6] = ACTIONS(1004), - [aux_sym_cmd_identifier_token7] = ACTIONS(1004), - [aux_sym_cmd_identifier_token8] = ACTIONS(1004), - [aux_sym_cmd_identifier_token9] = ACTIONS(1004), - [aux_sym_cmd_identifier_token10] = ACTIONS(1004), - [aux_sym_cmd_identifier_token11] = ACTIONS(1004), - [aux_sym_cmd_identifier_token12] = ACTIONS(1004), - [aux_sym_cmd_identifier_token13] = ACTIONS(1004), - [aux_sym_cmd_identifier_token14] = ACTIONS(1004), - [aux_sym_cmd_identifier_token15] = ACTIONS(1004), - [aux_sym_cmd_identifier_token16] = ACTIONS(1004), - [aux_sym_cmd_identifier_token17] = ACTIONS(1004), - [aux_sym_cmd_identifier_token18] = ACTIONS(1004), - [aux_sym_cmd_identifier_token19] = ACTIONS(1004), - [aux_sym_cmd_identifier_token20] = ACTIONS(1004), - [aux_sym_cmd_identifier_token21] = ACTIONS(1004), - [aux_sym_cmd_identifier_token22] = ACTIONS(1004), - [aux_sym_cmd_identifier_token23] = ACTIONS(1004), - [aux_sym_cmd_identifier_token24] = ACTIONS(1004), - [aux_sym_cmd_identifier_token25] = ACTIONS(1004), - [aux_sym_cmd_identifier_token26] = ACTIONS(1004), - [aux_sym_cmd_identifier_token27] = ACTIONS(1004), - [aux_sym_cmd_identifier_token28] = ACTIONS(1004), - [aux_sym_cmd_identifier_token29] = ACTIONS(1004), - [aux_sym_cmd_identifier_token30] = ACTIONS(1004), - [aux_sym_cmd_identifier_token31] = ACTIONS(1004), - [aux_sym_cmd_identifier_token32] = ACTIONS(1004), - [aux_sym_cmd_identifier_token33] = ACTIONS(1004), - [aux_sym_cmd_identifier_token34] = ACTIONS(1004), - [aux_sym_cmd_identifier_token35] = ACTIONS(1004), - [aux_sym_cmd_identifier_token36] = ACTIONS(1004), - [aux_sym_cmd_identifier_token37] = ACTIONS(1004), - [aux_sym_cmd_identifier_token38] = ACTIONS(1004), - [aux_sym_cmd_identifier_token39] = ACTIONS(1004), - [aux_sym_cmd_identifier_token40] = ACTIONS(1004), - [anon_sym_def] = ACTIONS(1004), - [anon_sym_export_DASHenv] = ACTIONS(1004), - [anon_sym_extern] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_use] = ACTIONS(1004), - [anon_sym_LPAREN] = ACTIONS(1004), - [anon_sym_COMMA] = ACTIONS(2314), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_error] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(1004), - [anon_sym_break] = ACTIONS(1004), - [anon_sym_continue] = ACTIONS(1004), - [anon_sym_for] = ACTIONS(1004), - [anon_sym_in2] = ACTIONS(1004), - [anon_sym_loop] = ACTIONS(1004), - [anon_sym_make] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1004), - [anon_sym_do] = ACTIONS(1004), - [anon_sym_if] = ACTIONS(1004), - [anon_sym_else] = ACTIONS(1004), - [anon_sym_match] = ACTIONS(1004), - [anon_sym_RBRACE] = ACTIONS(2316), - [anon_sym_try] = ACTIONS(1004), - [anon_sym_catch] = ACTIONS(1004), - [anon_sym_return] = ACTIONS(1004), - [anon_sym_source] = ACTIONS(1004), - [anon_sym_source_DASHenv] = ACTIONS(1004), - [anon_sym_register] = ACTIONS(1004), - [anon_sym_hide] = ACTIONS(1004), - [anon_sym_hide_DASHenv] = ACTIONS(1004), - [anon_sym_overlay] = ACTIONS(1004), - [anon_sym_as] = ACTIONS(1004), - [anon_sym_PLUS2] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1004), - [aux_sym__val_number_decimal_token1] = ACTIONS(1004), - [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), - [aux_sym__val_number_token4] = ACTIONS(1004), - [aux_sym__val_number_token5] = ACTIONS(1004), - [aux_sym__val_number_token6] = ACTIONS(1004), - [anon_sym_DQUOTE] = ACTIONS(1004), - [sym__str_single_quotes] = ACTIONS(1004), - [sym__str_back_ticks] = ACTIONS(1004), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1004), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1004), - [sym__entry_separator] = ACTIONS(2318), + [611] = { + [sym_comment] = STATE(611), + [anon_sym_export] = ACTIONS(2360), + [anon_sym_alias] = ACTIONS(2360), + [anon_sym_let] = ACTIONS(2360), + [anon_sym_let_DASHenv] = ACTIONS(2360), + [anon_sym_mut] = ACTIONS(2360), + [anon_sym_const] = ACTIONS(2360), + [aux_sym_cmd_identifier_token1] = ACTIONS(2360), + [aux_sym_cmd_identifier_token2] = ACTIONS(2360), + [aux_sym_cmd_identifier_token3] = ACTIONS(2360), + [aux_sym_cmd_identifier_token4] = ACTIONS(2360), + [aux_sym_cmd_identifier_token5] = ACTIONS(2360), + [aux_sym_cmd_identifier_token6] = ACTIONS(2360), + [aux_sym_cmd_identifier_token7] = ACTIONS(2360), + [aux_sym_cmd_identifier_token8] = ACTIONS(2360), + [aux_sym_cmd_identifier_token9] = ACTIONS(2360), + [aux_sym_cmd_identifier_token10] = ACTIONS(2360), + [aux_sym_cmd_identifier_token11] = ACTIONS(2360), + [aux_sym_cmd_identifier_token12] = ACTIONS(2360), + [aux_sym_cmd_identifier_token13] = ACTIONS(2360), + [aux_sym_cmd_identifier_token14] = ACTIONS(2360), + [aux_sym_cmd_identifier_token15] = ACTIONS(2360), + [aux_sym_cmd_identifier_token16] = ACTIONS(2360), + [aux_sym_cmd_identifier_token17] = ACTIONS(2360), + [aux_sym_cmd_identifier_token18] = ACTIONS(2360), + [aux_sym_cmd_identifier_token19] = ACTIONS(2360), + [aux_sym_cmd_identifier_token20] = ACTIONS(2360), + [aux_sym_cmd_identifier_token21] = ACTIONS(2360), + [aux_sym_cmd_identifier_token22] = ACTIONS(2360), + [aux_sym_cmd_identifier_token23] = ACTIONS(2360), + [aux_sym_cmd_identifier_token24] = ACTIONS(2360), + [aux_sym_cmd_identifier_token25] = ACTIONS(2360), + [aux_sym_cmd_identifier_token26] = ACTIONS(2360), + [aux_sym_cmd_identifier_token27] = ACTIONS(2360), + [aux_sym_cmd_identifier_token28] = ACTIONS(2360), + [aux_sym_cmd_identifier_token29] = ACTIONS(2360), + [aux_sym_cmd_identifier_token30] = ACTIONS(2360), + [aux_sym_cmd_identifier_token31] = ACTIONS(2360), + [aux_sym_cmd_identifier_token32] = ACTIONS(2360), + [aux_sym_cmd_identifier_token33] = ACTIONS(2360), + [aux_sym_cmd_identifier_token34] = ACTIONS(2360), + [aux_sym_cmd_identifier_token35] = ACTIONS(2360), + [aux_sym_cmd_identifier_token36] = ACTIONS(2360), + [aux_sym_cmd_identifier_token37] = ACTIONS(2360), + [aux_sym_cmd_identifier_token38] = ACTIONS(2360), + [aux_sym_cmd_identifier_token39] = ACTIONS(2360), + [aux_sym_cmd_identifier_token40] = ACTIONS(2360), + [anon_sym_def] = ACTIONS(2360), + [anon_sym_export_DASHenv] = ACTIONS(2360), + [anon_sym_extern] = ACTIONS(2360), + [anon_sym_module] = ACTIONS(2360), + [anon_sym_use] = ACTIONS(2360), + [anon_sym_LPAREN] = ACTIONS(2360), + [anon_sym_COMMA] = ACTIONS(2360), + [anon_sym_DOLLAR] = ACTIONS(2360), + [anon_sym_error] = ACTIONS(2360), + [anon_sym_DASH2] = ACTIONS(2360), + [anon_sym_break] = ACTIONS(2360), + [anon_sym_continue] = ACTIONS(2360), + [anon_sym_for] = ACTIONS(2360), + [anon_sym_in2] = ACTIONS(2360), + [anon_sym_loop] = ACTIONS(2360), + [anon_sym_make] = ACTIONS(2360), + [anon_sym_while] = ACTIONS(2360), + [anon_sym_do] = ACTIONS(2360), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_else] = ACTIONS(2360), + [anon_sym_match] = ACTIONS(2360), + [anon_sym_RBRACE] = ACTIONS(2360), + [anon_sym_try] = ACTIONS(2360), + [anon_sym_catch] = ACTIONS(2360), + [anon_sym_return] = ACTIONS(2360), + [anon_sym_source] = ACTIONS(2360), + [anon_sym_source_DASHenv] = ACTIONS(2360), + [anon_sym_hide] = ACTIONS(2360), + [anon_sym_hide_DASHenv] = ACTIONS(2360), + [anon_sym_overlay] = ACTIONS(2360), + [anon_sym_as] = ACTIONS(2360), + [anon_sym_PLUS2] = ACTIONS(2360), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2360), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2360), + [aux_sym__val_number_decimal_token1] = ACTIONS(2360), + [aux_sym__val_number_decimal_token2] = ACTIONS(2360), + [aux_sym__val_number_decimal_token3] = ACTIONS(2360), + [aux_sym__val_number_decimal_token4] = ACTIONS(2360), + [aux_sym__val_number_token1] = ACTIONS(2360), + [aux_sym__val_number_token2] = ACTIONS(2360), + [aux_sym__val_number_token3] = ACTIONS(2360), + [aux_sym__val_number_token4] = ACTIONS(2360), + [aux_sym__val_number_token5] = ACTIONS(2360), + [aux_sym__val_number_token6] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym__str_single_quotes] = ACTIONS(2360), + [sym__str_back_ticks] = ACTIONS(2360), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2360), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2360), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2360), + [sym__entry_separator] = ACTIONS(2362), + [anon_sym_register] = ACTIONS(2360), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1010), - }, - [585] = { - [sym_comment] = STATE(585), - [anon_sym_export] = ACTIONS(2224), - [anon_sym_alias] = ACTIONS(2224), - [anon_sym_let] = ACTIONS(2224), - [anon_sym_let_DASHenv] = ACTIONS(2224), - [anon_sym_mut] = ACTIONS(2224), - [anon_sym_const] = ACTIONS(2224), - [aux_sym_cmd_identifier_token1] = ACTIONS(2224), - [aux_sym_cmd_identifier_token2] = ACTIONS(2228), - [aux_sym_cmd_identifier_token3] = ACTIONS(2228), - [aux_sym_cmd_identifier_token4] = ACTIONS(2228), - [aux_sym_cmd_identifier_token5] = ACTIONS(2228), - [aux_sym_cmd_identifier_token6] = ACTIONS(2228), - [aux_sym_cmd_identifier_token7] = ACTIONS(2228), - [aux_sym_cmd_identifier_token8] = ACTIONS(2224), - [aux_sym_cmd_identifier_token9] = ACTIONS(2224), - [aux_sym_cmd_identifier_token10] = ACTIONS(2228), - [aux_sym_cmd_identifier_token11] = ACTIONS(2228), - [aux_sym_cmd_identifier_token12] = ACTIONS(2224), - [aux_sym_cmd_identifier_token13] = ACTIONS(2224), - [aux_sym_cmd_identifier_token14] = ACTIONS(2224), - [aux_sym_cmd_identifier_token15] = ACTIONS(2224), - [aux_sym_cmd_identifier_token16] = ACTIONS(2228), - [aux_sym_cmd_identifier_token17] = ACTIONS(2228), - [aux_sym_cmd_identifier_token18] = ACTIONS(2228), - [aux_sym_cmd_identifier_token19] = ACTIONS(2228), - [aux_sym_cmd_identifier_token20] = ACTIONS(2228), - [aux_sym_cmd_identifier_token21] = ACTIONS(2228), - [aux_sym_cmd_identifier_token22] = ACTIONS(2228), - [aux_sym_cmd_identifier_token23] = ACTIONS(2228), - [aux_sym_cmd_identifier_token24] = ACTIONS(2228), - [aux_sym_cmd_identifier_token25] = ACTIONS(2228), - [aux_sym_cmd_identifier_token26] = ACTIONS(2228), - [aux_sym_cmd_identifier_token27] = ACTIONS(2228), - [aux_sym_cmd_identifier_token28] = ACTIONS(2228), - [aux_sym_cmd_identifier_token29] = ACTIONS(2228), - [aux_sym_cmd_identifier_token30] = ACTIONS(2228), - [aux_sym_cmd_identifier_token31] = ACTIONS(2228), - [aux_sym_cmd_identifier_token32] = ACTIONS(2228), - [aux_sym_cmd_identifier_token33] = ACTIONS(2228), - [aux_sym_cmd_identifier_token34] = ACTIONS(2224), - [aux_sym_cmd_identifier_token35] = ACTIONS(2228), - [aux_sym_cmd_identifier_token36] = ACTIONS(2228), - [aux_sym_cmd_identifier_token37] = ACTIONS(2228), - [aux_sym_cmd_identifier_token38] = ACTIONS(2224), - [aux_sym_cmd_identifier_token39] = ACTIONS(2228), - [aux_sym_cmd_identifier_token40] = ACTIONS(2228), - [anon_sym_def] = ACTIONS(2224), - [anon_sym_export_DASHenv] = ACTIONS(2224), - [anon_sym_extern] = ACTIONS(2224), - [anon_sym_module] = ACTIONS(2224), - [anon_sym_use] = ACTIONS(2224), - [anon_sym_LPAREN] = ACTIONS(2224), - [anon_sym_COMMA] = ACTIONS(2228), - [anon_sym_DOLLAR] = ACTIONS(2224), - [anon_sym_error] = ACTIONS(2224), - [anon_sym_DASH2] = ACTIONS(2224), - [anon_sym_break] = ACTIONS(2224), - [anon_sym_continue] = ACTIONS(2224), - [anon_sym_for] = ACTIONS(2224), - [anon_sym_in2] = ACTIONS(2224), - [anon_sym_loop] = ACTIONS(2224), - [anon_sym_make] = ACTIONS(2224), - [anon_sym_while] = ACTIONS(2224), - [anon_sym_do] = ACTIONS(2224), - [anon_sym_if] = ACTIONS(2224), - [anon_sym_else] = ACTIONS(2224), - [anon_sym_match] = ACTIONS(2224), - [anon_sym_RBRACE] = ACTIONS(2228), - [anon_sym_try] = ACTIONS(2224), - [anon_sym_catch] = ACTIONS(2224), - [anon_sym_return] = ACTIONS(2224), - [anon_sym_source] = ACTIONS(2224), - [anon_sym_source_DASHenv] = ACTIONS(2224), - [anon_sym_register] = ACTIONS(2224), - [anon_sym_hide] = ACTIONS(2224), - [anon_sym_hide_DASHenv] = ACTIONS(2224), - [anon_sym_overlay] = ACTIONS(2224), - [anon_sym_as] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2226), - [anon_sym_PLUS2] = ACTIONS(2224), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2228), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2228), - [aux_sym__val_number_decimal_token1] = ACTIONS(2224), - [aux_sym__val_number_decimal_token2] = ACTIONS(2228), - [aux_sym__val_number_decimal_token3] = ACTIONS(2228), - [aux_sym__val_number_decimal_token4] = ACTIONS(2228), - [aux_sym__val_number_token1] = ACTIONS(2228), - [aux_sym__val_number_token2] = ACTIONS(2228), - [aux_sym__val_number_token3] = ACTIONS(2228), - [aux_sym__val_number_token4] = ACTIONS(2224), - [aux_sym__val_number_token5] = ACTIONS(2224), - [aux_sym__val_number_token6] = ACTIONS(2224), - [anon_sym_DQUOTE] = ACTIONS(2228), - [sym__str_single_quotes] = ACTIONS(2228), - [sym__str_back_ticks] = ACTIONS(2228), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2228), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2228), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2228), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1540), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2228), - }, - [586] = { - [sym_comment] = STATE(586), - [anon_sym_export] = ACTIONS(1711), - [anon_sym_alias] = ACTIONS(1711), - [anon_sym_let] = ACTIONS(1711), - [anon_sym_let_DASHenv] = ACTIONS(1711), - [anon_sym_mut] = ACTIONS(1711), - [anon_sym_const] = ACTIONS(1711), - [aux_sym_cmd_identifier_token1] = ACTIONS(1711), - [aux_sym_cmd_identifier_token2] = ACTIONS(1713), - [aux_sym_cmd_identifier_token3] = ACTIONS(1713), - [aux_sym_cmd_identifier_token4] = ACTIONS(1713), - [aux_sym_cmd_identifier_token5] = ACTIONS(1713), - [aux_sym_cmd_identifier_token6] = ACTIONS(1713), - [aux_sym_cmd_identifier_token7] = ACTIONS(1713), - [aux_sym_cmd_identifier_token8] = ACTIONS(1711), - [aux_sym_cmd_identifier_token9] = ACTIONS(1711), - [aux_sym_cmd_identifier_token10] = ACTIONS(1713), - [aux_sym_cmd_identifier_token11] = ACTIONS(1713), - [aux_sym_cmd_identifier_token12] = ACTIONS(1711), - [aux_sym_cmd_identifier_token13] = ACTIONS(1711), - [aux_sym_cmd_identifier_token14] = ACTIONS(1711), - [aux_sym_cmd_identifier_token15] = ACTIONS(1711), - [aux_sym_cmd_identifier_token16] = ACTIONS(1713), - [aux_sym_cmd_identifier_token17] = ACTIONS(1713), - [aux_sym_cmd_identifier_token18] = ACTIONS(1713), - [aux_sym_cmd_identifier_token19] = ACTIONS(1713), - [aux_sym_cmd_identifier_token20] = ACTIONS(1713), - [aux_sym_cmd_identifier_token21] = ACTIONS(1713), - [aux_sym_cmd_identifier_token22] = ACTIONS(1713), - [aux_sym_cmd_identifier_token23] = ACTIONS(1713), - [aux_sym_cmd_identifier_token24] = ACTIONS(1713), - [aux_sym_cmd_identifier_token25] = ACTIONS(1713), - [aux_sym_cmd_identifier_token26] = ACTIONS(1713), - [aux_sym_cmd_identifier_token27] = ACTIONS(1713), - [aux_sym_cmd_identifier_token28] = ACTIONS(1713), - [aux_sym_cmd_identifier_token29] = ACTIONS(1713), - [aux_sym_cmd_identifier_token30] = ACTIONS(1713), - [aux_sym_cmd_identifier_token31] = ACTIONS(1713), - [aux_sym_cmd_identifier_token32] = ACTIONS(1713), - [aux_sym_cmd_identifier_token33] = ACTIONS(1713), - [aux_sym_cmd_identifier_token34] = ACTIONS(1711), - [aux_sym_cmd_identifier_token35] = ACTIONS(1713), - [aux_sym_cmd_identifier_token36] = ACTIONS(1713), - [aux_sym_cmd_identifier_token37] = ACTIONS(1713), - [aux_sym_cmd_identifier_token38] = ACTIONS(1711), - [aux_sym_cmd_identifier_token39] = ACTIONS(1713), - [aux_sym_cmd_identifier_token40] = ACTIONS(1713), - [anon_sym_def] = ACTIONS(1711), - [anon_sym_export_DASHenv] = ACTIONS(1711), - [anon_sym_extern] = ACTIONS(1711), - [anon_sym_module] = ACTIONS(1711), - [anon_sym_use] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_COMMA] = ACTIONS(1713), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_error] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_break] = ACTIONS(1711), - [anon_sym_continue] = ACTIONS(1711), - [anon_sym_for] = ACTIONS(1711), - [anon_sym_in2] = ACTIONS(1711), - [anon_sym_loop] = ACTIONS(1711), - [anon_sym_make] = ACTIONS(1711), - [anon_sym_while] = ACTIONS(1711), - [anon_sym_do] = ACTIONS(1711), - [anon_sym_if] = ACTIONS(1711), - [anon_sym_else] = ACTIONS(1711), - [anon_sym_match] = ACTIONS(1711), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_try] = ACTIONS(1711), - [anon_sym_catch] = ACTIONS(1711), - [anon_sym_return] = ACTIONS(1711), - [anon_sym_source] = ACTIONS(1711), - [anon_sym_source_DASHenv] = ACTIONS(1711), - [anon_sym_register] = ACTIONS(1711), - [anon_sym_hide] = ACTIONS(1711), - [anon_sym_hide_DASHenv] = ACTIONS(1711), - [anon_sym_overlay] = ACTIONS(1711), - [anon_sym_as] = ACTIONS(1711), - [anon_sym_LPAREN2] = ACTIONS(1713), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1713), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1713), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1713), - [aux_sym__val_number_decimal_token3] = ACTIONS(1713), - [aux_sym__val_number_decimal_token4] = ACTIONS(1713), - [aux_sym__val_number_token1] = ACTIONS(1713), - [aux_sym__val_number_token2] = ACTIONS(1713), - [aux_sym__val_number_token3] = ACTIONS(1713), - [aux_sym__val_number_token4] = ACTIONS(1711), - [aux_sym__val_number_token5] = ACTIONS(1711), - [aux_sym__val_number_token6] = ACTIONS(1711), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym__str_single_quotes] = ACTIONS(1713), - [sym__str_back_ticks] = ACTIONS(1713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1713), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1713), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1713), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1713), - }, - [587] = { - [sym_comment] = STATE(587), - [anon_sym_export] = ACTIONS(996), - [anon_sym_alias] = ACTIONS(996), - [anon_sym_let] = ACTIONS(996), - [anon_sym_let_DASHenv] = ACTIONS(996), - [anon_sym_mut] = ACTIONS(996), - [anon_sym_const] = ACTIONS(996), - [aux_sym_cmd_identifier_token1] = ACTIONS(996), - [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(996), - [aux_sym_cmd_identifier_token9] = ACTIONS(996), - [aux_sym_cmd_identifier_token10] = ACTIONS(998), - [aux_sym_cmd_identifier_token11] = ACTIONS(998), - [aux_sym_cmd_identifier_token12] = ACTIONS(996), - [aux_sym_cmd_identifier_token13] = ACTIONS(996), - [aux_sym_cmd_identifier_token14] = ACTIONS(996), - [aux_sym_cmd_identifier_token15] = ACTIONS(996), - [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(996), - [aux_sym_cmd_identifier_token35] = ACTIONS(998), - [aux_sym_cmd_identifier_token36] = ACTIONS(998), - [aux_sym_cmd_identifier_token37] = ACTIONS(998), - [aux_sym_cmd_identifier_token38] = ACTIONS(996), - [aux_sym_cmd_identifier_token39] = ACTIONS(998), - [aux_sym_cmd_identifier_token40] = ACTIONS(998), - [anon_sym_def] = ACTIONS(996), - [anon_sym_export_DASHenv] = ACTIONS(996), - [anon_sym_extern] = ACTIONS(996), - [anon_sym_module] = ACTIONS(996), - [anon_sym_use] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(998), - [anon_sym_COMMA] = ACTIONS(998), - [anon_sym_DOLLAR] = ACTIONS(996), - [anon_sym_error] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_break] = ACTIONS(996), - [anon_sym_continue] = ACTIONS(996), - [anon_sym_for] = ACTIONS(996), - [anon_sym_in2] = ACTIONS(996), - [anon_sym_loop] = ACTIONS(996), - [anon_sym_make] = ACTIONS(996), - [anon_sym_while] = ACTIONS(996), - [anon_sym_do] = ACTIONS(996), - [anon_sym_if] = ACTIONS(996), - [anon_sym_else] = ACTIONS(996), - [anon_sym_match] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(998), - [anon_sym_try] = ACTIONS(996), - [anon_sym_catch] = ACTIONS(996), - [anon_sym_return] = ACTIONS(996), - [anon_sym_source] = ACTIONS(996), - [anon_sym_source_DASHenv] = ACTIONS(996), - [anon_sym_register] = ACTIONS(996), - [anon_sym_hide] = ACTIONS(996), - [anon_sym_hide_DASHenv] = ACTIONS(996), - [anon_sym_overlay] = ACTIONS(996), - [anon_sym_as] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(998), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(998), - [aux_sym__val_number_decimal_token1] = ACTIONS(996), - [aux_sym__val_number_decimal_token2] = ACTIONS(998), - [aux_sym__val_number_decimal_token3] = ACTIONS(998), - [aux_sym__val_number_decimal_token4] = ACTIONS(998), - [aux_sym__val_number_token1] = ACTIONS(998), - [aux_sym__val_number_token2] = ACTIONS(998), - [aux_sym__val_number_token3] = ACTIONS(998), - [aux_sym__val_number_token4] = ACTIONS(996), - [aux_sym__val_number_token5] = ACTIONS(996), - [aux_sym__val_number_token6] = ACTIONS(996), - [anon_sym_DQUOTE] = ACTIONS(998), - [sym__str_single_quotes] = ACTIONS(998), - [sym__str_back_ticks] = ACTIONS(998), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(998), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(998), - [anon_sym_COLON2] = ACTIONS(998), - [anon_sym_DOT2] = ACTIONS(996), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(998), + [sym_raw_string_begin] = ACTIONS(2362), }, - [588] = { - [sym_comment] = STATE(588), - [anon_sym_export] = ACTIONS(1851), - [anon_sym_alias] = ACTIONS(1851), - [anon_sym_let] = ACTIONS(1851), - [anon_sym_let_DASHenv] = ACTIONS(1851), - [anon_sym_mut] = ACTIONS(1851), - [anon_sym_const] = ACTIONS(1851), - [aux_sym_cmd_identifier_token1] = ACTIONS(1851), - [aux_sym_cmd_identifier_token2] = ACTIONS(1851), - [aux_sym_cmd_identifier_token3] = ACTIONS(1851), - [aux_sym_cmd_identifier_token4] = ACTIONS(1851), - [aux_sym_cmd_identifier_token5] = ACTIONS(1851), - [aux_sym_cmd_identifier_token6] = ACTIONS(1851), - [aux_sym_cmd_identifier_token7] = ACTIONS(1851), - [aux_sym_cmd_identifier_token8] = ACTIONS(1851), - [aux_sym_cmd_identifier_token9] = ACTIONS(1851), - [aux_sym_cmd_identifier_token10] = ACTIONS(1851), - [aux_sym_cmd_identifier_token11] = ACTIONS(1851), - [aux_sym_cmd_identifier_token12] = ACTIONS(1851), - [aux_sym_cmd_identifier_token13] = ACTIONS(1851), - [aux_sym_cmd_identifier_token14] = ACTIONS(1851), - [aux_sym_cmd_identifier_token15] = ACTIONS(1851), - [aux_sym_cmd_identifier_token16] = ACTIONS(1851), - [aux_sym_cmd_identifier_token17] = ACTIONS(1851), - [aux_sym_cmd_identifier_token18] = ACTIONS(1851), - [aux_sym_cmd_identifier_token19] = ACTIONS(1851), - [aux_sym_cmd_identifier_token20] = ACTIONS(1851), - [aux_sym_cmd_identifier_token21] = ACTIONS(1851), - [aux_sym_cmd_identifier_token22] = ACTIONS(1851), - [aux_sym_cmd_identifier_token23] = ACTIONS(1851), - [aux_sym_cmd_identifier_token24] = ACTIONS(1851), - [aux_sym_cmd_identifier_token25] = ACTIONS(1851), - [aux_sym_cmd_identifier_token26] = ACTIONS(1851), - [aux_sym_cmd_identifier_token27] = ACTIONS(1851), - [aux_sym_cmd_identifier_token28] = ACTIONS(1851), - [aux_sym_cmd_identifier_token29] = ACTIONS(1851), - [aux_sym_cmd_identifier_token30] = ACTIONS(1851), - [aux_sym_cmd_identifier_token31] = ACTIONS(1851), - [aux_sym_cmd_identifier_token32] = ACTIONS(1851), - [aux_sym_cmd_identifier_token33] = ACTIONS(1851), - [aux_sym_cmd_identifier_token34] = ACTIONS(1851), - [aux_sym_cmd_identifier_token35] = ACTIONS(1851), - [aux_sym_cmd_identifier_token36] = ACTIONS(1851), - [aux_sym_cmd_identifier_token37] = ACTIONS(1851), - [aux_sym_cmd_identifier_token38] = ACTIONS(1851), - [aux_sym_cmd_identifier_token39] = ACTIONS(1851), - [aux_sym_cmd_identifier_token40] = ACTIONS(1851), - [anon_sym_def] = ACTIONS(1851), - [anon_sym_export_DASHenv] = ACTIONS(1851), - [anon_sym_extern] = ACTIONS(1851), - [anon_sym_module] = ACTIONS(1851), - [anon_sym_use] = ACTIONS(1851), - [anon_sym_LPAREN] = ACTIONS(1851), - [anon_sym_COMMA] = ACTIONS(1851), - [anon_sym_DOLLAR] = ACTIONS(1851), - [anon_sym_error] = ACTIONS(1851), - [anon_sym_DASH2] = ACTIONS(1851), - [anon_sym_break] = ACTIONS(1851), - [anon_sym_continue] = ACTIONS(1851), - [anon_sym_for] = ACTIONS(1851), - [anon_sym_in2] = ACTIONS(1851), - [anon_sym_loop] = ACTIONS(1851), - [anon_sym_make] = ACTIONS(1851), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1851), - [anon_sym_if] = ACTIONS(1851), - [anon_sym_else] = ACTIONS(1851), - [anon_sym_match] = ACTIONS(1851), - [anon_sym_RBRACE] = ACTIONS(1851), - [anon_sym_try] = ACTIONS(1851), - [anon_sym_catch] = ACTIONS(1851), - [anon_sym_return] = ACTIONS(1851), - [anon_sym_source] = ACTIONS(1851), - [anon_sym_source_DASHenv] = ACTIONS(1851), - [anon_sym_register] = ACTIONS(1851), - [anon_sym_hide] = ACTIONS(1851), - [anon_sym_hide_DASHenv] = ACTIONS(1851), - [anon_sym_overlay] = ACTIONS(1851), - [anon_sym_as] = ACTIONS(1851), - [anon_sym_PLUS2] = ACTIONS(1851), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1851), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1851), - [aux_sym__val_number_decimal_token1] = ACTIONS(1851), - [aux_sym__val_number_decimal_token2] = ACTIONS(1851), - [aux_sym__val_number_decimal_token3] = ACTIONS(1851), - [aux_sym__val_number_decimal_token4] = ACTIONS(1851), - [aux_sym__val_number_token1] = ACTIONS(1851), - [aux_sym__val_number_token2] = ACTIONS(1851), - [aux_sym__val_number_token3] = ACTIONS(1851), - [aux_sym__val_number_token4] = ACTIONS(1851), - [aux_sym__val_number_token5] = ACTIONS(1851), - [aux_sym__val_number_token6] = ACTIONS(1851), - [anon_sym_DQUOTE] = ACTIONS(1851), - [sym__str_single_quotes] = ACTIONS(1851), - [sym__str_back_ticks] = ACTIONS(1851), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1851), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1851), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1851), - [sym__entry_separator] = ACTIONS(1853), + [612] = { + [sym_comment] = STATE(612), + [anon_sym_export] = ACTIONS(1889), + [anon_sym_alias] = ACTIONS(1889), + [anon_sym_let] = ACTIONS(1889), + [anon_sym_let_DASHenv] = ACTIONS(1889), + [anon_sym_mut] = ACTIONS(1889), + [anon_sym_const] = ACTIONS(1889), + [aux_sym_cmd_identifier_token1] = ACTIONS(1889), + [aux_sym_cmd_identifier_token2] = ACTIONS(1889), + [aux_sym_cmd_identifier_token3] = ACTIONS(1889), + [aux_sym_cmd_identifier_token4] = ACTIONS(1889), + [aux_sym_cmd_identifier_token5] = ACTIONS(1889), + [aux_sym_cmd_identifier_token6] = ACTIONS(1889), + [aux_sym_cmd_identifier_token7] = ACTIONS(1889), + [aux_sym_cmd_identifier_token8] = ACTIONS(1889), + [aux_sym_cmd_identifier_token9] = ACTIONS(1889), + [aux_sym_cmd_identifier_token10] = ACTIONS(1889), + [aux_sym_cmd_identifier_token11] = ACTIONS(1889), + [aux_sym_cmd_identifier_token12] = ACTIONS(1889), + [aux_sym_cmd_identifier_token13] = ACTIONS(1889), + [aux_sym_cmd_identifier_token14] = ACTIONS(1889), + [aux_sym_cmd_identifier_token15] = ACTIONS(1889), + [aux_sym_cmd_identifier_token16] = ACTIONS(1889), + [aux_sym_cmd_identifier_token17] = ACTIONS(1889), + [aux_sym_cmd_identifier_token18] = ACTIONS(1889), + [aux_sym_cmd_identifier_token19] = ACTIONS(1889), + [aux_sym_cmd_identifier_token20] = ACTIONS(1889), + [aux_sym_cmd_identifier_token21] = ACTIONS(1889), + [aux_sym_cmd_identifier_token22] = ACTIONS(1889), + [aux_sym_cmd_identifier_token23] = ACTIONS(1889), + [aux_sym_cmd_identifier_token24] = ACTIONS(1889), + [aux_sym_cmd_identifier_token25] = ACTIONS(1889), + [aux_sym_cmd_identifier_token26] = ACTIONS(1889), + [aux_sym_cmd_identifier_token27] = ACTIONS(1889), + [aux_sym_cmd_identifier_token28] = ACTIONS(1889), + [aux_sym_cmd_identifier_token29] = ACTIONS(1889), + [aux_sym_cmd_identifier_token30] = ACTIONS(1889), + [aux_sym_cmd_identifier_token31] = ACTIONS(1889), + [aux_sym_cmd_identifier_token32] = ACTIONS(1889), + [aux_sym_cmd_identifier_token33] = ACTIONS(1889), + [aux_sym_cmd_identifier_token34] = ACTIONS(1889), + [aux_sym_cmd_identifier_token35] = ACTIONS(1889), + [aux_sym_cmd_identifier_token36] = ACTIONS(1889), + [aux_sym_cmd_identifier_token37] = ACTIONS(1889), + [aux_sym_cmd_identifier_token38] = ACTIONS(1889), + [aux_sym_cmd_identifier_token39] = ACTIONS(1889), + [aux_sym_cmd_identifier_token40] = ACTIONS(1889), + [anon_sym_def] = ACTIONS(1889), + [anon_sym_export_DASHenv] = ACTIONS(1889), + [anon_sym_extern] = ACTIONS(1889), + [anon_sym_module] = ACTIONS(1889), + [anon_sym_use] = ACTIONS(1889), + [anon_sym_LPAREN] = ACTIONS(1889), + [anon_sym_COMMA] = ACTIONS(1889), + [anon_sym_DOLLAR] = ACTIONS(1889), + [anon_sym_error] = ACTIONS(1889), + [anon_sym_DASH2] = ACTIONS(1889), + [anon_sym_break] = ACTIONS(1889), + [anon_sym_continue] = ACTIONS(1889), + [anon_sym_for] = ACTIONS(1889), + [anon_sym_in2] = ACTIONS(1889), + [anon_sym_loop] = ACTIONS(1889), + [anon_sym_make] = ACTIONS(1889), + [anon_sym_while] = ACTIONS(1889), + [anon_sym_do] = ACTIONS(1889), + [anon_sym_if] = ACTIONS(1889), + [anon_sym_else] = ACTIONS(1889), + [anon_sym_match] = ACTIONS(1889), + [anon_sym_RBRACE] = ACTIONS(1889), + [anon_sym_try] = ACTIONS(1889), + [anon_sym_catch] = ACTIONS(1889), + [anon_sym_return] = ACTIONS(1889), + [anon_sym_source] = ACTIONS(1889), + [anon_sym_source_DASHenv] = ACTIONS(1889), + [anon_sym_hide] = ACTIONS(1889), + [anon_sym_hide_DASHenv] = ACTIONS(1889), + [anon_sym_overlay] = ACTIONS(1889), + [anon_sym_as] = ACTIONS(1889), + [anon_sym_PLUS2] = ACTIONS(1889), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1889), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1889), + [aux_sym__val_number_decimal_token1] = ACTIONS(1889), + [aux_sym__val_number_decimal_token2] = ACTIONS(1889), + [aux_sym__val_number_decimal_token3] = ACTIONS(1889), + [aux_sym__val_number_decimal_token4] = ACTIONS(1889), + [aux_sym__val_number_token1] = ACTIONS(1889), + [aux_sym__val_number_token2] = ACTIONS(1889), + [aux_sym__val_number_token3] = ACTIONS(1889), + [aux_sym__val_number_token4] = ACTIONS(1889), + [aux_sym__val_number_token5] = ACTIONS(1889), + [aux_sym__val_number_token6] = ACTIONS(1889), + [anon_sym_DQUOTE] = ACTIONS(1889), + [sym__str_single_quotes] = ACTIONS(1889), + [sym__str_back_ticks] = ACTIONS(1889), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1889), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1889), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1889), + [sym__entry_separator] = ACTIONS(1891), + [anon_sym_register] = ACTIONS(1889), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1853), + [sym_raw_string_begin] = ACTIONS(1891), }, - [589] = { - [sym_comment] = STATE(589), - [anon_sym_export] = ACTIONS(2320), - [anon_sym_alias] = ACTIONS(2320), - [anon_sym_let] = ACTIONS(2320), - [anon_sym_let_DASHenv] = ACTIONS(2320), - [anon_sym_mut] = ACTIONS(2320), - [anon_sym_const] = ACTIONS(2320), - [aux_sym_cmd_identifier_token1] = ACTIONS(2320), - [aux_sym_cmd_identifier_token2] = ACTIONS(2320), - [aux_sym_cmd_identifier_token3] = ACTIONS(2320), - [aux_sym_cmd_identifier_token4] = ACTIONS(2320), - [aux_sym_cmd_identifier_token5] = ACTIONS(2320), - [aux_sym_cmd_identifier_token6] = ACTIONS(2320), - [aux_sym_cmd_identifier_token7] = ACTIONS(2320), - [aux_sym_cmd_identifier_token8] = ACTIONS(2320), - [aux_sym_cmd_identifier_token9] = ACTIONS(2320), - [aux_sym_cmd_identifier_token10] = ACTIONS(2320), - [aux_sym_cmd_identifier_token11] = ACTIONS(2320), - [aux_sym_cmd_identifier_token12] = ACTIONS(2320), - [aux_sym_cmd_identifier_token13] = ACTIONS(2320), - [aux_sym_cmd_identifier_token14] = ACTIONS(2320), - [aux_sym_cmd_identifier_token15] = ACTIONS(2320), - [aux_sym_cmd_identifier_token16] = ACTIONS(2320), - [aux_sym_cmd_identifier_token17] = ACTIONS(2320), - [aux_sym_cmd_identifier_token18] = ACTIONS(2320), - [aux_sym_cmd_identifier_token19] = ACTIONS(2320), - [aux_sym_cmd_identifier_token20] = ACTIONS(2320), - [aux_sym_cmd_identifier_token21] = ACTIONS(2320), - [aux_sym_cmd_identifier_token22] = ACTIONS(2320), - [aux_sym_cmd_identifier_token23] = ACTIONS(2320), - [aux_sym_cmd_identifier_token24] = ACTIONS(2320), - [aux_sym_cmd_identifier_token25] = ACTIONS(2320), - [aux_sym_cmd_identifier_token26] = ACTIONS(2320), - [aux_sym_cmd_identifier_token27] = ACTIONS(2320), - [aux_sym_cmd_identifier_token28] = ACTIONS(2320), - [aux_sym_cmd_identifier_token29] = ACTIONS(2320), - [aux_sym_cmd_identifier_token30] = ACTIONS(2320), - [aux_sym_cmd_identifier_token31] = ACTIONS(2320), - [aux_sym_cmd_identifier_token32] = ACTIONS(2320), - [aux_sym_cmd_identifier_token33] = ACTIONS(2320), - [aux_sym_cmd_identifier_token34] = ACTIONS(2320), - [aux_sym_cmd_identifier_token35] = ACTIONS(2320), - [aux_sym_cmd_identifier_token36] = ACTIONS(2320), - [aux_sym_cmd_identifier_token37] = ACTIONS(2320), - [aux_sym_cmd_identifier_token38] = ACTIONS(2320), - [aux_sym_cmd_identifier_token39] = ACTIONS(2320), - [aux_sym_cmd_identifier_token40] = ACTIONS(2320), - [anon_sym_def] = ACTIONS(2320), - [anon_sym_export_DASHenv] = ACTIONS(2320), - [anon_sym_extern] = ACTIONS(2320), - [anon_sym_module] = ACTIONS(2320), - [anon_sym_use] = ACTIONS(2320), - [anon_sym_LPAREN] = ACTIONS(2320), - [anon_sym_COMMA] = ACTIONS(2320), - [anon_sym_DOLLAR] = ACTIONS(2320), - [anon_sym_error] = ACTIONS(2320), - [anon_sym_DASH2] = ACTIONS(2320), - [anon_sym_break] = ACTIONS(2320), - [anon_sym_continue] = ACTIONS(2320), - [anon_sym_for] = ACTIONS(2320), - [anon_sym_in2] = ACTIONS(2320), - [anon_sym_loop] = ACTIONS(2320), - [anon_sym_make] = ACTIONS(2320), - [anon_sym_while] = ACTIONS(2320), - [anon_sym_do] = ACTIONS(2320), - [anon_sym_if] = ACTIONS(2320), - [anon_sym_else] = ACTIONS(2320), - [anon_sym_match] = ACTIONS(2320), - [anon_sym_RBRACE] = ACTIONS(2320), - [anon_sym_try] = ACTIONS(2320), - [anon_sym_catch] = ACTIONS(2320), - [anon_sym_return] = ACTIONS(2320), - [anon_sym_source] = ACTIONS(2320), - [anon_sym_source_DASHenv] = ACTIONS(2320), - [anon_sym_register] = ACTIONS(2320), - [anon_sym_hide] = ACTIONS(2320), - [anon_sym_hide_DASHenv] = ACTIONS(2320), - [anon_sym_overlay] = ACTIONS(2320), - [anon_sym_as] = ACTIONS(2320), - [anon_sym_PLUS2] = ACTIONS(2320), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2320), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2320), - [aux_sym__val_number_decimal_token1] = ACTIONS(2320), - [aux_sym__val_number_decimal_token2] = ACTIONS(2320), - [aux_sym__val_number_decimal_token3] = ACTIONS(2320), - [aux_sym__val_number_decimal_token4] = ACTIONS(2320), - [aux_sym__val_number_token1] = ACTIONS(2320), - [aux_sym__val_number_token2] = ACTIONS(2320), - [aux_sym__val_number_token3] = ACTIONS(2320), - [aux_sym__val_number_token4] = ACTIONS(2320), - [aux_sym__val_number_token5] = ACTIONS(2320), - [aux_sym__val_number_token6] = ACTIONS(2320), - [anon_sym_DQUOTE] = ACTIONS(2320), - [sym__str_single_quotes] = ACTIONS(2320), - [sym__str_back_ticks] = ACTIONS(2320), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2320), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2320), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2320), - [sym__entry_separator] = ACTIONS(2322), + [613] = { + [sym_comment] = STATE(613), + [anon_sym_export] = ACTIONS(2364), + [anon_sym_alias] = ACTIONS(2364), + [anon_sym_let] = ACTIONS(2364), + [anon_sym_let_DASHenv] = ACTIONS(2364), + [anon_sym_mut] = ACTIONS(2364), + [anon_sym_const] = ACTIONS(2364), + [aux_sym_cmd_identifier_token1] = ACTIONS(2364), + [aux_sym_cmd_identifier_token2] = ACTIONS(2364), + [aux_sym_cmd_identifier_token3] = ACTIONS(2364), + [aux_sym_cmd_identifier_token4] = ACTIONS(2364), + [aux_sym_cmd_identifier_token5] = ACTIONS(2364), + [aux_sym_cmd_identifier_token6] = ACTIONS(2364), + [aux_sym_cmd_identifier_token7] = ACTIONS(2364), + [aux_sym_cmd_identifier_token8] = ACTIONS(2364), + [aux_sym_cmd_identifier_token9] = ACTIONS(2364), + [aux_sym_cmd_identifier_token10] = ACTIONS(2364), + [aux_sym_cmd_identifier_token11] = ACTIONS(2364), + [aux_sym_cmd_identifier_token12] = ACTIONS(2364), + [aux_sym_cmd_identifier_token13] = ACTIONS(2364), + [aux_sym_cmd_identifier_token14] = ACTIONS(2364), + [aux_sym_cmd_identifier_token15] = ACTIONS(2364), + [aux_sym_cmd_identifier_token16] = ACTIONS(2364), + [aux_sym_cmd_identifier_token17] = ACTIONS(2364), + [aux_sym_cmd_identifier_token18] = ACTIONS(2364), + [aux_sym_cmd_identifier_token19] = ACTIONS(2364), + [aux_sym_cmd_identifier_token20] = ACTIONS(2364), + [aux_sym_cmd_identifier_token21] = ACTIONS(2364), + [aux_sym_cmd_identifier_token22] = ACTIONS(2364), + [aux_sym_cmd_identifier_token23] = ACTIONS(2364), + [aux_sym_cmd_identifier_token24] = ACTIONS(2364), + [aux_sym_cmd_identifier_token25] = ACTIONS(2364), + [aux_sym_cmd_identifier_token26] = ACTIONS(2364), + [aux_sym_cmd_identifier_token27] = ACTIONS(2364), + [aux_sym_cmd_identifier_token28] = ACTIONS(2364), + [aux_sym_cmd_identifier_token29] = ACTIONS(2364), + [aux_sym_cmd_identifier_token30] = ACTIONS(2364), + [aux_sym_cmd_identifier_token31] = ACTIONS(2364), + [aux_sym_cmd_identifier_token32] = ACTIONS(2364), + [aux_sym_cmd_identifier_token33] = ACTIONS(2364), + [aux_sym_cmd_identifier_token34] = ACTIONS(2364), + [aux_sym_cmd_identifier_token35] = ACTIONS(2364), + [aux_sym_cmd_identifier_token36] = ACTIONS(2364), + [aux_sym_cmd_identifier_token37] = ACTIONS(2364), + [aux_sym_cmd_identifier_token38] = ACTIONS(2364), + [aux_sym_cmd_identifier_token39] = ACTIONS(2364), + [aux_sym_cmd_identifier_token40] = ACTIONS(2364), + [anon_sym_def] = ACTIONS(2364), + [anon_sym_export_DASHenv] = ACTIONS(2364), + [anon_sym_extern] = ACTIONS(2364), + [anon_sym_module] = ACTIONS(2364), + [anon_sym_use] = ACTIONS(2364), + [anon_sym_LPAREN] = ACTIONS(2364), + [anon_sym_COMMA] = ACTIONS(2364), + [anon_sym_DOLLAR] = ACTIONS(2364), + [anon_sym_error] = ACTIONS(2364), + [anon_sym_DASH2] = ACTIONS(2364), + [anon_sym_break] = ACTIONS(2364), + [anon_sym_continue] = ACTIONS(2364), + [anon_sym_for] = ACTIONS(2364), + [anon_sym_in2] = ACTIONS(2364), + [anon_sym_loop] = ACTIONS(2364), + [anon_sym_make] = ACTIONS(2364), + [anon_sym_while] = ACTIONS(2364), + [anon_sym_do] = ACTIONS(2364), + [anon_sym_if] = ACTIONS(2364), + [anon_sym_else] = ACTIONS(2364), + [anon_sym_match] = ACTIONS(2364), + [anon_sym_RBRACE] = ACTIONS(2364), + [anon_sym_try] = ACTIONS(2364), + [anon_sym_catch] = ACTIONS(2364), + [anon_sym_return] = ACTIONS(2364), + [anon_sym_source] = ACTIONS(2364), + [anon_sym_source_DASHenv] = ACTIONS(2364), + [anon_sym_hide] = ACTIONS(2364), + [anon_sym_hide_DASHenv] = ACTIONS(2364), + [anon_sym_overlay] = ACTIONS(2364), + [anon_sym_as] = ACTIONS(2364), + [anon_sym_PLUS2] = ACTIONS(2364), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2364), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2364), + [aux_sym__val_number_decimal_token1] = ACTIONS(2364), + [aux_sym__val_number_decimal_token2] = ACTIONS(2364), + [aux_sym__val_number_decimal_token3] = ACTIONS(2364), + [aux_sym__val_number_decimal_token4] = ACTIONS(2364), + [aux_sym__val_number_token1] = ACTIONS(2364), + [aux_sym__val_number_token2] = ACTIONS(2364), + [aux_sym__val_number_token3] = ACTIONS(2364), + [aux_sym__val_number_token4] = ACTIONS(2364), + [aux_sym__val_number_token5] = ACTIONS(2364), + [aux_sym__val_number_token6] = ACTIONS(2364), + [anon_sym_DQUOTE] = ACTIONS(2364), + [sym__str_single_quotes] = ACTIONS(2364), + [sym__str_back_ticks] = ACTIONS(2364), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2364), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2364), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2364), + [sym__entry_separator] = ACTIONS(2366), + [anon_sym_register] = ACTIONS(2364), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2322), + [sym_raw_string_begin] = ACTIONS(2366), }, - [590] = { - [sym_comment] = STATE(590), - [anon_sym_export] = ACTIONS(2324), - [anon_sym_alias] = ACTIONS(2324), - [anon_sym_let] = ACTIONS(2324), - [anon_sym_let_DASHenv] = ACTIONS(2324), - [anon_sym_mut] = ACTIONS(2324), - [anon_sym_const] = ACTIONS(2324), - [aux_sym_cmd_identifier_token1] = ACTIONS(2324), - [aux_sym_cmd_identifier_token2] = ACTIONS(2324), - [aux_sym_cmd_identifier_token3] = ACTIONS(2324), - [aux_sym_cmd_identifier_token4] = ACTIONS(2324), - [aux_sym_cmd_identifier_token5] = ACTIONS(2324), - [aux_sym_cmd_identifier_token6] = ACTIONS(2324), - [aux_sym_cmd_identifier_token7] = ACTIONS(2324), - [aux_sym_cmd_identifier_token8] = ACTIONS(2324), - [aux_sym_cmd_identifier_token9] = ACTIONS(2324), - [aux_sym_cmd_identifier_token10] = ACTIONS(2324), - [aux_sym_cmd_identifier_token11] = ACTIONS(2324), - [aux_sym_cmd_identifier_token12] = ACTIONS(2324), - [aux_sym_cmd_identifier_token13] = ACTIONS(2324), - [aux_sym_cmd_identifier_token14] = ACTIONS(2324), - [aux_sym_cmd_identifier_token15] = ACTIONS(2324), - [aux_sym_cmd_identifier_token16] = ACTIONS(2324), - [aux_sym_cmd_identifier_token17] = ACTIONS(2324), - [aux_sym_cmd_identifier_token18] = ACTIONS(2324), - [aux_sym_cmd_identifier_token19] = ACTIONS(2324), - [aux_sym_cmd_identifier_token20] = ACTIONS(2324), - [aux_sym_cmd_identifier_token21] = ACTIONS(2324), - [aux_sym_cmd_identifier_token22] = ACTIONS(2324), - [aux_sym_cmd_identifier_token23] = ACTIONS(2324), - [aux_sym_cmd_identifier_token24] = ACTIONS(2324), - [aux_sym_cmd_identifier_token25] = ACTIONS(2324), - [aux_sym_cmd_identifier_token26] = ACTIONS(2324), - [aux_sym_cmd_identifier_token27] = ACTIONS(2324), - [aux_sym_cmd_identifier_token28] = ACTIONS(2324), - [aux_sym_cmd_identifier_token29] = ACTIONS(2324), - [aux_sym_cmd_identifier_token30] = ACTIONS(2324), - [aux_sym_cmd_identifier_token31] = ACTIONS(2324), - [aux_sym_cmd_identifier_token32] = ACTIONS(2324), - [aux_sym_cmd_identifier_token33] = ACTIONS(2324), - [aux_sym_cmd_identifier_token34] = ACTIONS(2324), - [aux_sym_cmd_identifier_token35] = ACTIONS(2324), - [aux_sym_cmd_identifier_token36] = ACTIONS(2324), - [aux_sym_cmd_identifier_token37] = ACTIONS(2324), - [aux_sym_cmd_identifier_token38] = ACTIONS(2324), - [aux_sym_cmd_identifier_token39] = ACTIONS(2324), - [aux_sym_cmd_identifier_token40] = ACTIONS(2324), - [anon_sym_def] = ACTIONS(2324), - [anon_sym_export_DASHenv] = ACTIONS(2324), - [anon_sym_extern] = ACTIONS(2324), - [anon_sym_module] = ACTIONS(2324), - [anon_sym_use] = ACTIONS(2324), - [anon_sym_LPAREN] = ACTIONS(2324), - [anon_sym_COMMA] = ACTIONS(2324), - [anon_sym_DOLLAR] = ACTIONS(2324), - [anon_sym_error] = ACTIONS(2324), - [anon_sym_DASH2] = ACTIONS(2324), - [anon_sym_break] = ACTIONS(2324), - [anon_sym_continue] = ACTIONS(2324), - [anon_sym_for] = ACTIONS(2324), - [anon_sym_in2] = ACTIONS(2324), - [anon_sym_loop] = ACTIONS(2324), - [anon_sym_make] = ACTIONS(2324), - [anon_sym_while] = ACTIONS(2324), - [anon_sym_do] = ACTIONS(2324), - [anon_sym_if] = ACTIONS(2324), - [anon_sym_else] = ACTIONS(2324), - [anon_sym_match] = ACTIONS(2324), - [anon_sym_RBRACE] = ACTIONS(2324), - [anon_sym_try] = ACTIONS(2324), - [anon_sym_catch] = ACTIONS(2324), - [anon_sym_return] = ACTIONS(2324), - [anon_sym_source] = ACTIONS(2324), - [anon_sym_source_DASHenv] = ACTIONS(2324), - [anon_sym_register] = ACTIONS(2324), - [anon_sym_hide] = ACTIONS(2324), - [anon_sym_hide_DASHenv] = ACTIONS(2324), - [anon_sym_overlay] = ACTIONS(2324), - [anon_sym_as] = ACTIONS(2324), - [anon_sym_PLUS2] = ACTIONS(2324), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2324), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2324), - [aux_sym__val_number_decimal_token1] = ACTIONS(2324), - [aux_sym__val_number_decimal_token2] = ACTIONS(2324), - [aux_sym__val_number_decimal_token3] = ACTIONS(2324), - [aux_sym__val_number_decimal_token4] = ACTIONS(2324), - [aux_sym__val_number_token1] = ACTIONS(2324), - [aux_sym__val_number_token2] = ACTIONS(2324), - [aux_sym__val_number_token3] = ACTIONS(2324), - [aux_sym__val_number_token4] = ACTIONS(2324), - [aux_sym__val_number_token5] = ACTIONS(2324), - [aux_sym__val_number_token6] = ACTIONS(2324), - [anon_sym_DQUOTE] = ACTIONS(2324), - [sym__str_single_quotes] = ACTIONS(2324), - [sym__str_back_ticks] = ACTIONS(2324), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2324), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2324), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2324), - [sym__entry_separator] = ACTIONS(2326), + [614] = { + [sym_comment] = STATE(614), + [anon_sym_export] = ACTIONS(960), + [anon_sym_alias] = ACTIONS(960), + [anon_sym_let] = ACTIONS(960), + [anon_sym_let_DASHenv] = ACTIONS(960), + [anon_sym_mut] = ACTIONS(960), + [anon_sym_const] = ACTIONS(960), + [aux_sym_cmd_identifier_token1] = ACTIONS(960), + [aux_sym_cmd_identifier_token2] = ACTIONS(960), + [aux_sym_cmd_identifier_token3] = ACTIONS(960), + [aux_sym_cmd_identifier_token4] = ACTIONS(960), + [aux_sym_cmd_identifier_token5] = ACTIONS(960), + [aux_sym_cmd_identifier_token6] = ACTIONS(960), + [aux_sym_cmd_identifier_token7] = ACTIONS(960), + [aux_sym_cmd_identifier_token8] = ACTIONS(960), + [aux_sym_cmd_identifier_token9] = ACTIONS(960), + [aux_sym_cmd_identifier_token10] = ACTIONS(960), + [aux_sym_cmd_identifier_token11] = ACTIONS(960), + [aux_sym_cmd_identifier_token12] = ACTIONS(960), + [aux_sym_cmd_identifier_token13] = ACTIONS(960), + [aux_sym_cmd_identifier_token14] = ACTIONS(960), + [aux_sym_cmd_identifier_token15] = ACTIONS(960), + [aux_sym_cmd_identifier_token16] = ACTIONS(960), + [aux_sym_cmd_identifier_token17] = ACTIONS(960), + [aux_sym_cmd_identifier_token18] = ACTIONS(960), + [aux_sym_cmd_identifier_token19] = ACTIONS(960), + [aux_sym_cmd_identifier_token20] = ACTIONS(960), + [aux_sym_cmd_identifier_token21] = ACTIONS(960), + [aux_sym_cmd_identifier_token22] = ACTIONS(960), + [aux_sym_cmd_identifier_token23] = ACTIONS(960), + [aux_sym_cmd_identifier_token24] = ACTIONS(960), + [aux_sym_cmd_identifier_token25] = ACTIONS(960), + [aux_sym_cmd_identifier_token26] = ACTIONS(960), + [aux_sym_cmd_identifier_token27] = ACTIONS(960), + [aux_sym_cmd_identifier_token28] = ACTIONS(960), + [aux_sym_cmd_identifier_token29] = ACTIONS(960), + [aux_sym_cmd_identifier_token30] = ACTIONS(960), + [aux_sym_cmd_identifier_token31] = ACTIONS(960), + [aux_sym_cmd_identifier_token32] = ACTIONS(960), + [aux_sym_cmd_identifier_token33] = ACTIONS(960), + [aux_sym_cmd_identifier_token34] = ACTIONS(960), + [aux_sym_cmd_identifier_token35] = ACTIONS(960), + [aux_sym_cmd_identifier_token36] = ACTIONS(960), + [aux_sym_cmd_identifier_token37] = ACTIONS(960), + [aux_sym_cmd_identifier_token38] = ACTIONS(960), + [aux_sym_cmd_identifier_token39] = ACTIONS(960), + [aux_sym_cmd_identifier_token40] = ACTIONS(960), + [anon_sym_def] = ACTIONS(960), + [anon_sym_export_DASHenv] = ACTIONS(960), + [anon_sym_extern] = ACTIONS(960), + [anon_sym_module] = ACTIONS(960), + [anon_sym_use] = ACTIONS(960), + [anon_sym_LPAREN] = ACTIONS(960), + [anon_sym_COMMA] = ACTIONS(960), + [anon_sym_DOLLAR] = ACTIONS(960), + [anon_sym_error] = ACTIONS(960), + [anon_sym_DASH2] = ACTIONS(960), + [anon_sym_break] = ACTIONS(960), + [anon_sym_continue] = ACTIONS(960), + [anon_sym_for] = ACTIONS(960), + [anon_sym_in2] = ACTIONS(960), + [anon_sym_loop] = ACTIONS(960), + [anon_sym_make] = ACTIONS(960), + [anon_sym_while] = ACTIONS(960), + [anon_sym_do] = ACTIONS(960), + [anon_sym_if] = ACTIONS(960), + [anon_sym_else] = ACTIONS(960), + [anon_sym_match] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(960), + [anon_sym_try] = ACTIONS(960), + [anon_sym_catch] = ACTIONS(960), + [anon_sym_return] = ACTIONS(960), + [anon_sym_source] = ACTIONS(960), + [anon_sym_source_DASHenv] = ACTIONS(960), + [anon_sym_hide] = ACTIONS(960), + [anon_sym_hide_DASHenv] = ACTIONS(960), + [anon_sym_overlay] = ACTIONS(960), + [anon_sym_as] = ACTIONS(960), + [anon_sym_PLUS2] = ACTIONS(960), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(960), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(960), + [aux_sym__val_number_decimal_token1] = ACTIONS(960), + [aux_sym__val_number_decimal_token2] = ACTIONS(960), + [aux_sym__val_number_decimal_token3] = ACTIONS(960), + [aux_sym__val_number_decimal_token4] = ACTIONS(960), + [aux_sym__val_number_token1] = ACTIONS(960), + [aux_sym__val_number_token2] = ACTIONS(960), + [aux_sym__val_number_token3] = ACTIONS(960), + [aux_sym__val_number_token4] = ACTIONS(960), + [aux_sym__val_number_token5] = ACTIONS(960), + [aux_sym__val_number_token6] = ACTIONS(960), + [anon_sym_DQUOTE] = ACTIONS(960), + [sym__str_single_quotes] = ACTIONS(960), + [sym__str_back_ticks] = ACTIONS(960), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(960), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(960), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(960), + [sym__entry_separator] = ACTIONS(962), + [anon_sym_register] = ACTIONS(960), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2326), + [sym_raw_string_begin] = ACTIONS(962), }, - [591] = { - [sym_comment] = STATE(591), + [615] = { + [sym_comment] = STATE(615), [anon_sym_export] = ACTIONS(1917), [anon_sym_alias] = ACTIONS(1917), [anon_sym_let] = ACTIONS(1917), @@ -146016,7 +148425,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(1917), [anon_sym_source] = ACTIONS(1917), [anon_sym_source_DASHenv] = ACTIONS(1917), - [anon_sym_register] = ACTIONS(1917), [anon_sym_hide] = ACTIONS(1917), [anon_sym_hide_DASHenv] = ACTIONS(1917), [anon_sym_overlay] = ACTIONS(1917), @@ -146041,1247 +148449,2999 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1917), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1917), [sym__entry_separator] = ACTIONS(1919), + [anon_sym_register] = ACTIONS(1917), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1919), }, - [592] = { - [sym_comment] = STATE(592), - [anon_sym_export] = ACTIONS(2328), - [anon_sym_alias] = ACTIONS(2328), - [anon_sym_let] = ACTIONS(2328), - [anon_sym_let_DASHenv] = ACTIONS(2328), - [anon_sym_mut] = ACTIONS(2328), - [anon_sym_const] = ACTIONS(2328), - [aux_sym_cmd_identifier_token1] = ACTIONS(2328), - [aux_sym_cmd_identifier_token2] = ACTIONS(2328), - [aux_sym_cmd_identifier_token3] = ACTIONS(2328), - [aux_sym_cmd_identifier_token4] = ACTIONS(2328), - [aux_sym_cmd_identifier_token5] = ACTIONS(2328), - [aux_sym_cmd_identifier_token6] = ACTIONS(2328), - [aux_sym_cmd_identifier_token7] = ACTIONS(2328), - [aux_sym_cmd_identifier_token8] = ACTIONS(2328), - [aux_sym_cmd_identifier_token9] = ACTIONS(2328), - [aux_sym_cmd_identifier_token10] = ACTIONS(2328), - [aux_sym_cmd_identifier_token11] = ACTIONS(2328), - [aux_sym_cmd_identifier_token12] = ACTIONS(2328), - [aux_sym_cmd_identifier_token13] = ACTIONS(2328), - [aux_sym_cmd_identifier_token14] = ACTIONS(2328), - [aux_sym_cmd_identifier_token15] = ACTIONS(2328), - [aux_sym_cmd_identifier_token16] = ACTIONS(2328), - [aux_sym_cmd_identifier_token17] = ACTIONS(2328), - [aux_sym_cmd_identifier_token18] = ACTIONS(2328), - [aux_sym_cmd_identifier_token19] = ACTIONS(2328), - [aux_sym_cmd_identifier_token20] = ACTIONS(2328), - [aux_sym_cmd_identifier_token21] = ACTIONS(2328), - [aux_sym_cmd_identifier_token22] = ACTIONS(2328), - [aux_sym_cmd_identifier_token23] = ACTIONS(2328), - [aux_sym_cmd_identifier_token24] = ACTIONS(2328), - [aux_sym_cmd_identifier_token25] = ACTIONS(2328), - [aux_sym_cmd_identifier_token26] = ACTIONS(2328), - [aux_sym_cmd_identifier_token27] = ACTIONS(2328), - [aux_sym_cmd_identifier_token28] = ACTIONS(2328), - [aux_sym_cmd_identifier_token29] = ACTIONS(2328), - [aux_sym_cmd_identifier_token30] = ACTIONS(2328), - [aux_sym_cmd_identifier_token31] = ACTIONS(2328), - [aux_sym_cmd_identifier_token32] = ACTIONS(2328), - [aux_sym_cmd_identifier_token33] = ACTIONS(2328), - [aux_sym_cmd_identifier_token34] = ACTIONS(2328), - [aux_sym_cmd_identifier_token35] = ACTIONS(2328), - [aux_sym_cmd_identifier_token36] = ACTIONS(2328), - [aux_sym_cmd_identifier_token37] = ACTIONS(2328), - [aux_sym_cmd_identifier_token38] = ACTIONS(2328), - [aux_sym_cmd_identifier_token39] = ACTIONS(2328), - [aux_sym_cmd_identifier_token40] = ACTIONS(2328), - [anon_sym_def] = ACTIONS(2328), - [anon_sym_export_DASHenv] = ACTIONS(2328), - [anon_sym_extern] = ACTIONS(2328), - [anon_sym_module] = ACTIONS(2328), - [anon_sym_use] = ACTIONS(2328), - [anon_sym_LPAREN] = ACTIONS(2328), - [anon_sym_COMMA] = ACTIONS(2328), - [anon_sym_DOLLAR] = ACTIONS(2328), - [anon_sym_error] = ACTIONS(2328), - [anon_sym_DASH2] = ACTIONS(2328), - [anon_sym_break] = ACTIONS(2328), - [anon_sym_continue] = ACTIONS(2328), - [anon_sym_for] = ACTIONS(2328), - [anon_sym_in2] = ACTIONS(2328), - [anon_sym_loop] = ACTIONS(2328), - [anon_sym_make] = ACTIONS(2328), - [anon_sym_while] = ACTIONS(2328), - [anon_sym_do] = ACTIONS(2328), - [anon_sym_if] = ACTIONS(2328), - [anon_sym_else] = ACTIONS(2328), - [anon_sym_match] = ACTIONS(2328), - [anon_sym_RBRACE] = ACTIONS(2328), - [anon_sym_try] = ACTIONS(2328), - [anon_sym_catch] = ACTIONS(2328), - [anon_sym_return] = ACTIONS(2328), - [anon_sym_source] = ACTIONS(2328), - [anon_sym_source_DASHenv] = ACTIONS(2328), - [anon_sym_register] = ACTIONS(2328), - [anon_sym_hide] = ACTIONS(2328), - [anon_sym_hide_DASHenv] = ACTIONS(2328), - [anon_sym_overlay] = ACTIONS(2328), - [anon_sym_as] = ACTIONS(2328), - [anon_sym_PLUS2] = ACTIONS(2328), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2328), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2328), - [aux_sym__val_number_decimal_token1] = ACTIONS(2328), - [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), - [aux_sym__val_number_token4] = ACTIONS(2328), - [aux_sym__val_number_token5] = ACTIONS(2328), - [aux_sym__val_number_token6] = ACTIONS(2328), - [anon_sym_DQUOTE] = ACTIONS(2328), - [sym__str_single_quotes] = ACTIONS(2328), - [sym__str_back_ticks] = ACTIONS(2328), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2328), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2328), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2328), - [sym__entry_separator] = ACTIONS(2330), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2330), + [616] = { + [sym_comment] = STATE(616), + [anon_sym_export] = ACTIONS(2292), + [anon_sym_alias] = ACTIONS(2292), + [anon_sym_let] = ACTIONS(2292), + [anon_sym_let_DASHenv] = ACTIONS(2292), + [anon_sym_mut] = ACTIONS(2292), + [anon_sym_const] = ACTIONS(2292), + [aux_sym_cmd_identifier_token1] = ACTIONS(2292), + [aux_sym_cmd_identifier_token2] = ACTIONS(2296), + [aux_sym_cmd_identifier_token3] = ACTIONS(2296), + [aux_sym_cmd_identifier_token4] = ACTIONS(2296), + [aux_sym_cmd_identifier_token5] = ACTIONS(2296), + [aux_sym_cmd_identifier_token6] = ACTIONS(2296), + [aux_sym_cmd_identifier_token7] = ACTIONS(2296), + [aux_sym_cmd_identifier_token8] = ACTIONS(2292), + [aux_sym_cmd_identifier_token9] = ACTIONS(2292), + [aux_sym_cmd_identifier_token10] = ACTIONS(2296), + [aux_sym_cmd_identifier_token11] = ACTIONS(2296), + [aux_sym_cmd_identifier_token12] = ACTIONS(2292), + [aux_sym_cmd_identifier_token13] = ACTIONS(2292), + [aux_sym_cmd_identifier_token14] = ACTIONS(2292), + [aux_sym_cmd_identifier_token15] = ACTIONS(2292), + [aux_sym_cmd_identifier_token16] = ACTIONS(2296), + [aux_sym_cmd_identifier_token17] = ACTIONS(2296), + [aux_sym_cmd_identifier_token18] = ACTIONS(2296), + [aux_sym_cmd_identifier_token19] = ACTIONS(2296), + [aux_sym_cmd_identifier_token20] = ACTIONS(2296), + [aux_sym_cmd_identifier_token21] = ACTIONS(2296), + [aux_sym_cmd_identifier_token22] = ACTIONS(2296), + [aux_sym_cmd_identifier_token23] = ACTIONS(2296), + [aux_sym_cmd_identifier_token24] = ACTIONS(2296), + [aux_sym_cmd_identifier_token25] = ACTIONS(2296), + [aux_sym_cmd_identifier_token26] = ACTIONS(2296), + [aux_sym_cmd_identifier_token27] = ACTIONS(2296), + [aux_sym_cmd_identifier_token28] = ACTIONS(2296), + [aux_sym_cmd_identifier_token29] = ACTIONS(2296), + [aux_sym_cmd_identifier_token30] = ACTIONS(2296), + [aux_sym_cmd_identifier_token31] = ACTIONS(2296), + [aux_sym_cmd_identifier_token32] = ACTIONS(2296), + [aux_sym_cmd_identifier_token33] = ACTIONS(2296), + [aux_sym_cmd_identifier_token34] = ACTIONS(2292), + [aux_sym_cmd_identifier_token35] = ACTIONS(2296), + [aux_sym_cmd_identifier_token36] = ACTIONS(2296), + [aux_sym_cmd_identifier_token37] = ACTIONS(2296), + [aux_sym_cmd_identifier_token38] = ACTIONS(2292), + [aux_sym_cmd_identifier_token39] = ACTIONS(2296), + [aux_sym_cmd_identifier_token40] = ACTIONS(2296), + [anon_sym_def] = ACTIONS(2292), + [anon_sym_export_DASHenv] = ACTIONS(2292), + [anon_sym_extern] = ACTIONS(2292), + [anon_sym_module] = ACTIONS(2292), + [anon_sym_use] = ACTIONS(2292), + [anon_sym_LPAREN] = ACTIONS(2296), + [anon_sym_COMMA] = ACTIONS(2296), + [anon_sym_DOLLAR] = ACTIONS(2292), + [anon_sym_error] = ACTIONS(2292), + [anon_sym_DASH2] = ACTIONS(2292), + [anon_sym_break] = ACTIONS(2292), + [anon_sym_continue] = ACTIONS(2292), + [anon_sym_for] = ACTIONS(2292), + [anon_sym_in2] = ACTIONS(2292), + [anon_sym_loop] = ACTIONS(2292), + [anon_sym_make] = ACTIONS(2292), + [anon_sym_while] = ACTIONS(2292), + [anon_sym_do] = ACTIONS(2292), + [anon_sym_if] = ACTIONS(2292), + [anon_sym_else] = ACTIONS(2292), + [anon_sym_match] = ACTIONS(2292), + [anon_sym_RBRACE] = ACTIONS(2296), + [anon_sym_try] = ACTIONS(2292), + [anon_sym_catch] = ACTIONS(2292), + [anon_sym_return] = ACTIONS(2292), + [anon_sym_source] = ACTIONS(2292), + [anon_sym_source_DASHenv] = ACTIONS(2292), + [anon_sym_hide] = ACTIONS(2292), + [anon_sym_hide_DASHenv] = ACTIONS(2292), + [anon_sym_overlay] = ACTIONS(2292), + [anon_sym_as] = ACTIONS(2292), + [anon_sym_PLUS2] = ACTIONS(2292), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2296), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2296), + [aux_sym__val_number_decimal_token1] = ACTIONS(2292), + [aux_sym__val_number_decimal_token2] = ACTIONS(2296), + [aux_sym__val_number_decimal_token3] = ACTIONS(2296), + [aux_sym__val_number_decimal_token4] = ACTIONS(2296), + [aux_sym__val_number_token1] = ACTIONS(2296), + [aux_sym__val_number_token2] = ACTIONS(2296), + [aux_sym__val_number_token3] = ACTIONS(2296), + [aux_sym__val_number_token4] = ACTIONS(2292), + [aux_sym__val_number_token5] = ACTIONS(2292), + [aux_sym__val_number_token6] = ACTIONS(2292), + [anon_sym_LBRACK2] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2296), + [sym__str_single_quotes] = ACTIONS(2296), + [sym__str_back_ticks] = ACTIONS(2296), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2296), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2296), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2296), + [anon_sym_register] = ACTIONS(2292), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2296), }, - [593] = { - [sym_comment] = STATE(593), - [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), - [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(2332), - [anon_sym_DOLLAR] = ACTIONS(2332), - [anon_sym_error] = ACTIONS(2332), - [anon_sym_DASH2] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_for] = ACTIONS(2332), - [anon_sym_in2] = 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_as] = ACTIONS(2332), - [anon_sym_PLUS2] = 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), - [aux_sym__val_number_token4] = ACTIONS(2332), - [aux_sym__val_number_token5] = ACTIONS(2332), - [aux_sym__val_number_token6] = ACTIONS(2332), - [anon_sym_DQUOTE] = ACTIONS(2332), - [sym__str_single_quotes] = ACTIONS(2332), - [sym__str_back_ticks] = ACTIONS(2332), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2332), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2332), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2332), - [sym__entry_separator] = ACTIONS(2334), + [617] = { + [sym_comment] = STATE(617), + [anon_sym_export] = ACTIONS(2370), + [anon_sym_alias] = ACTIONS(2370), + [anon_sym_let] = ACTIONS(2370), + [anon_sym_let_DASHenv] = ACTIONS(2370), + [anon_sym_mut] = ACTIONS(2370), + [anon_sym_const] = ACTIONS(2370), + [aux_sym_cmd_identifier_token1] = ACTIONS(2370), + [aux_sym_cmd_identifier_token2] = ACTIONS(2370), + [aux_sym_cmd_identifier_token3] = ACTIONS(2370), + [aux_sym_cmd_identifier_token4] = ACTIONS(2370), + [aux_sym_cmd_identifier_token5] = ACTIONS(2370), + [aux_sym_cmd_identifier_token6] = ACTIONS(2370), + [aux_sym_cmd_identifier_token7] = ACTIONS(2370), + [aux_sym_cmd_identifier_token8] = ACTIONS(2370), + [aux_sym_cmd_identifier_token9] = ACTIONS(2370), + [aux_sym_cmd_identifier_token10] = ACTIONS(2370), + [aux_sym_cmd_identifier_token11] = ACTIONS(2370), + [aux_sym_cmd_identifier_token12] = ACTIONS(2370), + [aux_sym_cmd_identifier_token13] = ACTIONS(2370), + [aux_sym_cmd_identifier_token14] = ACTIONS(2370), + [aux_sym_cmd_identifier_token15] = ACTIONS(2370), + [aux_sym_cmd_identifier_token16] = ACTIONS(2370), + [aux_sym_cmd_identifier_token17] = ACTIONS(2370), + [aux_sym_cmd_identifier_token18] = ACTIONS(2370), + [aux_sym_cmd_identifier_token19] = ACTIONS(2370), + [aux_sym_cmd_identifier_token20] = ACTIONS(2370), + [aux_sym_cmd_identifier_token21] = ACTIONS(2370), + [aux_sym_cmd_identifier_token22] = ACTIONS(2370), + [aux_sym_cmd_identifier_token23] = ACTIONS(2370), + [aux_sym_cmd_identifier_token24] = ACTIONS(2370), + [aux_sym_cmd_identifier_token25] = ACTIONS(2370), + [aux_sym_cmd_identifier_token26] = ACTIONS(2370), + [aux_sym_cmd_identifier_token27] = ACTIONS(2370), + [aux_sym_cmd_identifier_token28] = ACTIONS(2370), + [aux_sym_cmd_identifier_token29] = ACTIONS(2370), + [aux_sym_cmd_identifier_token30] = ACTIONS(2370), + [aux_sym_cmd_identifier_token31] = ACTIONS(2370), + [aux_sym_cmd_identifier_token32] = ACTIONS(2370), + [aux_sym_cmd_identifier_token33] = ACTIONS(2370), + [aux_sym_cmd_identifier_token34] = ACTIONS(2370), + [aux_sym_cmd_identifier_token35] = ACTIONS(2370), + [aux_sym_cmd_identifier_token36] = ACTIONS(2370), + [aux_sym_cmd_identifier_token37] = ACTIONS(2370), + [aux_sym_cmd_identifier_token38] = ACTIONS(2370), + [aux_sym_cmd_identifier_token39] = ACTIONS(2370), + [aux_sym_cmd_identifier_token40] = ACTIONS(2370), + [anon_sym_def] = ACTIONS(2370), + [anon_sym_export_DASHenv] = ACTIONS(2370), + [anon_sym_extern] = ACTIONS(2370), + [anon_sym_module] = ACTIONS(2370), + [anon_sym_use] = ACTIONS(2370), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_COMMA] = ACTIONS(2370), + [anon_sym_DOLLAR] = ACTIONS(2370), + [anon_sym_error] = ACTIONS(2370), + [anon_sym_DASH2] = ACTIONS(2370), + [anon_sym_break] = ACTIONS(2370), + [anon_sym_continue] = ACTIONS(2370), + [anon_sym_for] = ACTIONS(2370), + [anon_sym_in2] = ACTIONS(2370), + [anon_sym_loop] = ACTIONS(2370), + [anon_sym_make] = ACTIONS(2370), + [anon_sym_while] = ACTIONS(2370), + [anon_sym_do] = ACTIONS(2370), + [anon_sym_if] = ACTIONS(2370), + [anon_sym_else] = ACTIONS(2370), + [anon_sym_match] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_try] = ACTIONS(2370), + [anon_sym_catch] = ACTIONS(2370), + [anon_sym_return] = ACTIONS(2370), + [anon_sym_source] = ACTIONS(2370), + [anon_sym_source_DASHenv] = ACTIONS(2370), + [anon_sym_hide] = ACTIONS(2370), + [anon_sym_hide_DASHenv] = ACTIONS(2370), + [anon_sym_overlay] = ACTIONS(2370), + [anon_sym_as] = ACTIONS(2370), + [anon_sym_PLUS2] = ACTIONS(2370), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2370), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2370), + [aux_sym__val_number_decimal_token1] = ACTIONS(2370), + [aux_sym__val_number_decimal_token2] = ACTIONS(2370), + [aux_sym__val_number_decimal_token3] = ACTIONS(2370), + [aux_sym__val_number_decimal_token4] = ACTIONS(2370), + [aux_sym__val_number_token1] = ACTIONS(2370), + [aux_sym__val_number_token2] = ACTIONS(2370), + [aux_sym__val_number_token3] = ACTIONS(2370), + [aux_sym__val_number_token4] = ACTIONS(2370), + [aux_sym__val_number_token5] = ACTIONS(2370), + [aux_sym__val_number_token6] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [sym__str_single_quotes] = ACTIONS(2370), + [sym__str_back_ticks] = ACTIONS(2370), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2370), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2370), + [sym__entry_separator] = ACTIONS(2372), + [anon_sym_register] = ACTIONS(2370), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2334), + [sym_raw_string_begin] = ACTIONS(2372), }, - [594] = { - [sym_comment] = STATE(594), - [anon_sym_export] = ACTIONS(1937), - [anon_sym_alias] = ACTIONS(1937), - [anon_sym_let] = ACTIONS(1937), - [anon_sym_let_DASHenv] = ACTIONS(1937), - [anon_sym_mut] = ACTIONS(1937), - [anon_sym_const] = ACTIONS(1937), - [aux_sym_cmd_identifier_token1] = ACTIONS(1937), - [aux_sym_cmd_identifier_token2] = ACTIONS(1937), - [aux_sym_cmd_identifier_token3] = ACTIONS(1937), - [aux_sym_cmd_identifier_token4] = ACTIONS(1937), - [aux_sym_cmd_identifier_token5] = ACTIONS(1937), - [aux_sym_cmd_identifier_token6] = ACTIONS(1937), - [aux_sym_cmd_identifier_token7] = ACTIONS(1937), - [aux_sym_cmd_identifier_token8] = ACTIONS(1937), - [aux_sym_cmd_identifier_token9] = ACTIONS(1937), - [aux_sym_cmd_identifier_token10] = ACTIONS(1937), - [aux_sym_cmd_identifier_token11] = ACTIONS(1937), - [aux_sym_cmd_identifier_token12] = ACTIONS(1937), - [aux_sym_cmd_identifier_token13] = ACTIONS(1937), - [aux_sym_cmd_identifier_token14] = ACTIONS(1937), - [aux_sym_cmd_identifier_token15] = ACTIONS(1937), - [aux_sym_cmd_identifier_token16] = ACTIONS(1937), - [aux_sym_cmd_identifier_token17] = ACTIONS(1937), - [aux_sym_cmd_identifier_token18] = ACTIONS(1937), - [aux_sym_cmd_identifier_token19] = ACTIONS(1937), - [aux_sym_cmd_identifier_token20] = ACTIONS(1937), - [aux_sym_cmd_identifier_token21] = ACTIONS(1937), - [aux_sym_cmd_identifier_token22] = ACTIONS(1937), - [aux_sym_cmd_identifier_token23] = ACTIONS(1937), - [aux_sym_cmd_identifier_token24] = ACTIONS(1937), - [aux_sym_cmd_identifier_token25] = ACTIONS(1937), - [aux_sym_cmd_identifier_token26] = ACTIONS(1937), - [aux_sym_cmd_identifier_token27] = ACTIONS(1937), - [aux_sym_cmd_identifier_token28] = ACTIONS(1937), - [aux_sym_cmd_identifier_token29] = ACTIONS(1937), - [aux_sym_cmd_identifier_token30] = ACTIONS(1937), - [aux_sym_cmd_identifier_token31] = ACTIONS(1937), - [aux_sym_cmd_identifier_token32] = ACTIONS(1937), - [aux_sym_cmd_identifier_token33] = ACTIONS(1937), - [aux_sym_cmd_identifier_token34] = ACTIONS(1937), - [aux_sym_cmd_identifier_token35] = ACTIONS(1937), - [aux_sym_cmd_identifier_token36] = ACTIONS(1937), - [aux_sym_cmd_identifier_token37] = ACTIONS(1937), - [aux_sym_cmd_identifier_token38] = ACTIONS(1937), - [aux_sym_cmd_identifier_token39] = ACTIONS(1937), - [aux_sym_cmd_identifier_token40] = ACTIONS(1937), - [anon_sym_def] = ACTIONS(1937), - [anon_sym_export_DASHenv] = ACTIONS(1937), - [anon_sym_extern] = ACTIONS(1937), - [anon_sym_module] = ACTIONS(1937), - [anon_sym_use] = ACTIONS(1937), - [anon_sym_LPAREN] = ACTIONS(1937), - [anon_sym_COMMA] = ACTIONS(1937), - [anon_sym_DOLLAR] = ACTIONS(1937), - [anon_sym_error] = ACTIONS(1937), - [anon_sym_DASH2] = ACTIONS(1937), - [anon_sym_break] = ACTIONS(1937), - [anon_sym_continue] = ACTIONS(1937), - [anon_sym_for] = ACTIONS(1937), - [anon_sym_in2] = ACTIONS(1937), - [anon_sym_loop] = ACTIONS(1937), - [anon_sym_make] = ACTIONS(1937), - [anon_sym_while] = ACTIONS(1937), - [anon_sym_do] = ACTIONS(1937), - [anon_sym_if] = ACTIONS(1937), - [anon_sym_else] = ACTIONS(1937), - [anon_sym_match] = ACTIONS(1937), - [anon_sym_RBRACE] = ACTIONS(1937), - [anon_sym_try] = ACTIONS(1937), - [anon_sym_catch] = ACTIONS(1937), - [anon_sym_return] = ACTIONS(1937), - [anon_sym_source] = ACTIONS(1937), - [anon_sym_source_DASHenv] = ACTIONS(1937), - [anon_sym_register] = ACTIONS(1937), - [anon_sym_hide] = ACTIONS(1937), - [anon_sym_hide_DASHenv] = ACTIONS(1937), - [anon_sym_overlay] = ACTIONS(1937), - [anon_sym_as] = ACTIONS(1937), - [anon_sym_PLUS2] = ACTIONS(1937), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1937), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1937), - [aux_sym__val_number_decimal_token1] = ACTIONS(1937), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1937), - [aux_sym__val_number_decimal_token4] = ACTIONS(1937), - [aux_sym__val_number_token1] = ACTIONS(1937), - [aux_sym__val_number_token2] = ACTIONS(1937), - [aux_sym__val_number_token3] = ACTIONS(1937), - [aux_sym__val_number_token4] = ACTIONS(1937), - [aux_sym__val_number_token5] = ACTIONS(1937), - [aux_sym__val_number_token6] = ACTIONS(1937), - [anon_sym_DQUOTE] = ACTIONS(1937), - [sym__str_single_quotes] = ACTIONS(1937), - [sym__str_back_ticks] = ACTIONS(1937), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1937), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1937), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1937), - [sym__entry_separator] = ACTIONS(1939), + [618] = { + [sym_comment] = STATE(618), + [anon_sym_export] = ACTIONS(2374), + [anon_sym_alias] = ACTIONS(2374), + [anon_sym_let] = ACTIONS(2374), + [anon_sym_let_DASHenv] = ACTIONS(2374), + [anon_sym_mut] = ACTIONS(2374), + [anon_sym_const] = ACTIONS(2374), + [aux_sym_cmd_identifier_token1] = ACTIONS(2374), + [aux_sym_cmd_identifier_token2] = ACTIONS(2374), + [aux_sym_cmd_identifier_token3] = ACTIONS(2374), + [aux_sym_cmd_identifier_token4] = ACTIONS(2374), + [aux_sym_cmd_identifier_token5] = ACTIONS(2374), + [aux_sym_cmd_identifier_token6] = ACTIONS(2374), + [aux_sym_cmd_identifier_token7] = ACTIONS(2374), + [aux_sym_cmd_identifier_token8] = ACTIONS(2374), + [aux_sym_cmd_identifier_token9] = ACTIONS(2374), + [aux_sym_cmd_identifier_token10] = ACTIONS(2374), + [aux_sym_cmd_identifier_token11] = ACTIONS(2374), + [aux_sym_cmd_identifier_token12] = ACTIONS(2374), + [aux_sym_cmd_identifier_token13] = ACTIONS(2374), + [aux_sym_cmd_identifier_token14] = ACTIONS(2374), + [aux_sym_cmd_identifier_token15] = ACTIONS(2374), + [aux_sym_cmd_identifier_token16] = ACTIONS(2374), + [aux_sym_cmd_identifier_token17] = ACTIONS(2374), + [aux_sym_cmd_identifier_token18] = ACTIONS(2374), + [aux_sym_cmd_identifier_token19] = ACTIONS(2374), + [aux_sym_cmd_identifier_token20] = ACTIONS(2374), + [aux_sym_cmd_identifier_token21] = ACTIONS(2374), + [aux_sym_cmd_identifier_token22] = ACTIONS(2374), + [aux_sym_cmd_identifier_token23] = ACTIONS(2374), + [aux_sym_cmd_identifier_token24] = ACTIONS(2374), + [aux_sym_cmd_identifier_token25] = ACTIONS(2374), + [aux_sym_cmd_identifier_token26] = ACTIONS(2374), + [aux_sym_cmd_identifier_token27] = ACTIONS(2374), + [aux_sym_cmd_identifier_token28] = ACTIONS(2374), + [aux_sym_cmd_identifier_token29] = ACTIONS(2374), + [aux_sym_cmd_identifier_token30] = ACTIONS(2374), + [aux_sym_cmd_identifier_token31] = ACTIONS(2374), + [aux_sym_cmd_identifier_token32] = ACTIONS(2374), + [aux_sym_cmd_identifier_token33] = ACTIONS(2374), + [aux_sym_cmd_identifier_token34] = ACTIONS(2374), + [aux_sym_cmd_identifier_token35] = ACTIONS(2374), + [aux_sym_cmd_identifier_token36] = ACTIONS(2374), + [aux_sym_cmd_identifier_token37] = ACTIONS(2374), + [aux_sym_cmd_identifier_token38] = ACTIONS(2374), + [aux_sym_cmd_identifier_token39] = ACTIONS(2374), + [aux_sym_cmd_identifier_token40] = ACTIONS(2374), + [anon_sym_def] = ACTIONS(2374), + [anon_sym_export_DASHenv] = ACTIONS(2374), + [anon_sym_extern] = ACTIONS(2374), + [anon_sym_module] = ACTIONS(2374), + [anon_sym_use] = ACTIONS(2374), + [anon_sym_LPAREN] = ACTIONS(2374), + [anon_sym_COMMA] = ACTIONS(2374), + [anon_sym_DOLLAR] = ACTIONS(2374), + [anon_sym_error] = ACTIONS(2374), + [anon_sym_DASH2] = ACTIONS(2374), + [anon_sym_break] = ACTIONS(2374), + [anon_sym_continue] = ACTIONS(2374), + [anon_sym_for] = ACTIONS(2374), + [anon_sym_in2] = ACTIONS(2374), + [anon_sym_loop] = ACTIONS(2374), + [anon_sym_make] = ACTIONS(2374), + [anon_sym_while] = ACTIONS(2374), + [anon_sym_do] = ACTIONS(2374), + [anon_sym_if] = ACTIONS(2374), + [anon_sym_else] = ACTIONS(2374), + [anon_sym_match] = ACTIONS(2374), + [anon_sym_RBRACE] = ACTIONS(2374), + [anon_sym_try] = ACTIONS(2374), + [anon_sym_catch] = ACTIONS(2374), + [anon_sym_return] = ACTIONS(2374), + [anon_sym_source] = ACTIONS(2374), + [anon_sym_source_DASHenv] = ACTIONS(2374), + [anon_sym_hide] = ACTIONS(2374), + [anon_sym_hide_DASHenv] = ACTIONS(2374), + [anon_sym_overlay] = ACTIONS(2374), + [anon_sym_as] = ACTIONS(2374), + [anon_sym_PLUS2] = ACTIONS(2374), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2374), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2374), + [aux_sym__val_number_decimal_token1] = ACTIONS(2374), + [aux_sym__val_number_decimal_token2] = ACTIONS(2374), + [aux_sym__val_number_decimal_token3] = ACTIONS(2374), + [aux_sym__val_number_decimal_token4] = ACTIONS(2374), + [aux_sym__val_number_token1] = ACTIONS(2374), + [aux_sym__val_number_token2] = ACTIONS(2374), + [aux_sym__val_number_token3] = ACTIONS(2374), + [aux_sym__val_number_token4] = ACTIONS(2374), + [aux_sym__val_number_token5] = ACTIONS(2374), + [aux_sym__val_number_token6] = ACTIONS(2374), + [anon_sym_DQUOTE] = ACTIONS(2374), + [sym__str_single_quotes] = ACTIONS(2374), + [sym__str_back_ticks] = ACTIONS(2374), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2374), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2374), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2374), + [sym__entry_separator] = ACTIONS(2376), + [anon_sym_register] = ACTIONS(2374), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1939), + [sym_raw_string_begin] = ACTIONS(2376), }, - [595] = { - [sym_comment] = STATE(595), - [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), - [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1949), - [anon_sym_DOLLAR] = ACTIONS(1949), - [anon_sym_error] = ACTIONS(1949), - [anon_sym_DASH2] = ACTIONS(1949), - [anon_sym_break] = ACTIONS(1949), - [anon_sym_continue] = ACTIONS(1949), - [anon_sym_for] = ACTIONS(1949), - [anon_sym_in2] = 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_as] = ACTIONS(1949), - [anon_sym_PLUS2] = 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), - [aux_sym__val_number_token4] = ACTIONS(1949), - [aux_sym__val_number_token5] = ACTIONS(1949), - [aux_sym__val_number_token6] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(1949), - [sym__str_single_quotes] = ACTIONS(1949), - [sym__str_back_ticks] = ACTIONS(1949), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1949), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1949), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1949), - [sym__entry_separator] = ACTIONS(1951), + [619] = { + [sym_comment] = STATE(619), + [aux_sym__multiple_types_repeat1] = STATE(619), + [anon_sym_export] = ACTIONS(2378), + [anon_sym_alias] = ACTIONS(2378), + [anon_sym_let] = ACTIONS(2378), + [anon_sym_let_DASHenv] = ACTIONS(2378), + [anon_sym_mut] = ACTIONS(2378), + [anon_sym_const] = ACTIONS(2378), + [aux_sym_cmd_identifier_token1] = ACTIONS(2378), + [aux_sym_cmd_identifier_token2] = ACTIONS(2378), + [aux_sym_cmd_identifier_token3] = ACTIONS(2378), + [aux_sym_cmd_identifier_token4] = ACTIONS(2378), + [aux_sym_cmd_identifier_token5] = ACTIONS(2378), + [aux_sym_cmd_identifier_token6] = ACTIONS(2378), + [aux_sym_cmd_identifier_token7] = ACTIONS(2378), + [aux_sym_cmd_identifier_token8] = ACTIONS(2378), + [aux_sym_cmd_identifier_token9] = ACTIONS(2378), + [aux_sym_cmd_identifier_token10] = ACTIONS(2378), + [aux_sym_cmd_identifier_token11] = ACTIONS(2378), + [aux_sym_cmd_identifier_token12] = ACTIONS(2378), + [aux_sym_cmd_identifier_token13] = ACTIONS(2378), + [aux_sym_cmd_identifier_token14] = ACTIONS(2378), + [aux_sym_cmd_identifier_token15] = ACTIONS(2378), + [aux_sym_cmd_identifier_token16] = ACTIONS(2378), + [aux_sym_cmd_identifier_token17] = ACTIONS(2378), + [aux_sym_cmd_identifier_token18] = ACTIONS(2378), + [aux_sym_cmd_identifier_token19] = ACTIONS(2378), + [aux_sym_cmd_identifier_token20] = ACTIONS(2378), + [aux_sym_cmd_identifier_token21] = ACTIONS(2378), + [aux_sym_cmd_identifier_token22] = ACTIONS(2378), + [aux_sym_cmd_identifier_token23] = ACTIONS(2378), + [aux_sym_cmd_identifier_token24] = ACTIONS(2378), + [aux_sym_cmd_identifier_token25] = ACTIONS(2378), + [aux_sym_cmd_identifier_token26] = ACTIONS(2378), + [aux_sym_cmd_identifier_token27] = ACTIONS(2378), + [aux_sym_cmd_identifier_token28] = ACTIONS(2378), + [aux_sym_cmd_identifier_token29] = ACTIONS(2378), + [aux_sym_cmd_identifier_token30] = ACTIONS(2378), + [aux_sym_cmd_identifier_token31] = ACTIONS(2378), + [aux_sym_cmd_identifier_token32] = ACTIONS(2378), + [aux_sym_cmd_identifier_token33] = ACTIONS(2378), + [aux_sym_cmd_identifier_token34] = ACTIONS(2378), + [aux_sym_cmd_identifier_token35] = ACTIONS(2378), + [aux_sym_cmd_identifier_token36] = ACTIONS(2378), + [aux_sym_cmd_identifier_token37] = ACTIONS(2378), + [aux_sym_cmd_identifier_token38] = ACTIONS(2378), + [aux_sym_cmd_identifier_token39] = ACTIONS(2378), + [aux_sym_cmd_identifier_token40] = ACTIONS(2378), + [anon_sym_def] = ACTIONS(2378), + [anon_sym_export_DASHenv] = ACTIONS(2378), + [anon_sym_extern] = ACTIONS(2378), + [anon_sym_module] = ACTIONS(2378), + [anon_sym_use] = ACTIONS(2378), + [anon_sym_LPAREN] = ACTIONS(2378), + [anon_sym_DOLLAR] = ACTIONS(2378), + [anon_sym_error] = ACTIONS(2378), + [anon_sym_DASH2] = ACTIONS(2378), + [anon_sym_break] = ACTIONS(2378), + [anon_sym_continue] = ACTIONS(2378), + [anon_sym_for] = ACTIONS(2378), + [anon_sym_in2] = ACTIONS(2378), + [anon_sym_loop] = ACTIONS(2378), + [anon_sym_make] = ACTIONS(2378), + [anon_sym_while] = ACTIONS(2378), + [anon_sym_do] = ACTIONS(2378), + [anon_sym_if] = ACTIONS(2378), + [anon_sym_else] = ACTIONS(2378), + [anon_sym_match] = ACTIONS(2378), + [anon_sym_RBRACE] = ACTIONS(2378), + [anon_sym_try] = ACTIONS(2378), + [anon_sym_catch] = ACTIONS(2378), + [anon_sym_return] = ACTIONS(2378), + [anon_sym_source] = ACTIONS(2378), + [anon_sym_source_DASHenv] = ACTIONS(2378), + [anon_sym_hide] = ACTIONS(2378), + [anon_sym_hide_DASHenv] = ACTIONS(2378), + [anon_sym_overlay] = ACTIONS(2378), + [anon_sym_as] = ACTIONS(2378), + [anon_sym_PLUS2] = ACTIONS(2378), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2378), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2378), + [aux_sym__val_number_decimal_token1] = ACTIONS(2378), + [aux_sym__val_number_decimal_token2] = ACTIONS(2378), + [aux_sym__val_number_decimal_token3] = ACTIONS(2378), + [aux_sym__val_number_decimal_token4] = ACTIONS(2378), + [aux_sym__val_number_token1] = ACTIONS(2378), + [aux_sym__val_number_token2] = ACTIONS(2378), + [aux_sym__val_number_token3] = ACTIONS(2378), + [aux_sym__val_number_token4] = ACTIONS(2378), + [aux_sym__val_number_token5] = ACTIONS(2378), + [aux_sym__val_number_token6] = ACTIONS(2378), + [anon_sym_DQUOTE] = ACTIONS(2378), + [sym__str_single_quotes] = ACTIONS(2378), + [sym__str_back_ticks] = ACTIONS(2378), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2378), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2378), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2378), + [sym__entry_separator] = ACTIONS(2380), + [anon_sym_register] = ACTIONS(2378), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1951), + [sym_raw_string_begin] = ACTIONS(2383), }, - [596] = { - [sym_comment] = STATE(596), - [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), - [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1953), - [anon_sym_DOLLAR] = ACTIONS(1953), - [anon_sym_error] = ACTIONS(1953), - [anon_sym_DASH2] = ACTIONS(1953), - [anon_sym_break] = ACTIONS(1953), - [anon_sym_continue] = ACTIONS(1953), - [anon_sym_for] = ACTIONS(1953), - [anon_sym_in2] = 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_as] = ACTIONS(1953), - [anon_sym_PLUS2] = 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), - [aux_sym__val_number_token4] = ACTIONS(1953), - [aux_sym__val_number_token5] = ACTIONS(1953), - [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(1953), - [sym__entry_separator] = ACTIONS(1955), + [620] = { + [sym_comment] = STATE(620), + [anon_sym_export] = ACTIONS(964), + [anon_sym_alias] = ACTIONS(964), + [anon_sym_let] = ACTIONS(964), + [anon_sym_let_DASHenv] = ACTIONS(964), + [anon_sym_mut] = ACTIONS(964), + [anon_sym_const] = ACTIONS(964), + [aux_sym_cmd_identifier_token1] = ACTIONS(964), + [aux_sym_cmd_identifier_token2] = ACTIONS(964), + [aux_sym_cmd_identifier_token3] = ACTIONS(964), + [aux_sym_cmd_identifier_token4] = ACTIONS(964), + [aux_sym_cmd_identifier_token5] = ACTIONS(964), + [aux_sym_cmd_identifier_token6] = ACTIONS(964), + [aux_sym_cmd_identifier_token7] = ACTIONS(964), + [aux_sym_cmd_identifier_token8] = ACTIONS(964), + [aux_sym_cmd_identifier_token9] = ACTIONS(964), + [aux_sym_cmd_identifier_token10] = ACTIONS(964), + [aux_sym_cmd_identifier_token11] = ACTIONS(964), + [aux_sym_cmd_identifier_token12] = ACTIONS(964), + [aux_sym_cmd_identifier_token13] = ACTIONS(964), + [aux_sym_cmd_identifier_token14] = ACTIONS(964), + [aux_sym_cmd_identifier_token15] = ACTIONS(964), + [aux_sym_cmd_identifier_token16] = ACTIONS(964), + [aux_sym_cmd_identifier_token17] = ACTIONS(964), + [aux_sym_cmd_identifier_token18] = ACTIONS(964), + [aux_sym_cmd_identifier_token19] = ACTIONS(964), + [aux_sym_cmd_identifier_token20] = ACTIONS(964), + [aux_sym_cmd_identifier_token21] = ACTIONS(964), + [aux_sym_cmd_identifier_token22] = ACTIONS(964), + [aux_sym_cmd_identifier_token23] = ACTIONS(964), + [aux_sym_cmd_identifier_token24] = ACTIONS(964), + [aux_sym_cmd_identifier_token25] = ACTIONS(964), + [aux_sym_cmd_identifier_token26] = ACTIONS(964), + [aux_sym_cmd_identifier_token27] = ACTIONS(964), + [aux_sym_cmd_identifier_token28] = ACTIONS(964), + [aux_sym_cmd_identifier_token29] = ACTIONS(964), + [aux_sym_cmd_identifier_token30] = ACTIONS(964), + [aux_sym_cmd_identifier_token31] = ACTIONS(964), + [aux_sym_cmd_identifier_token32] = ACTIONS(964), + [aux_sym_cmd_identifier_token33] = ACTIONS(964), + [aux_sym_cmd_identifier_token34] = ACTIONS(964), + [aux_sym_cmd_identifier_token35] = ACTIONS(964), + [aux_sym_cmd_identifier_token36] = ACTIONS(964), + [aux_sym_cmd_identifier_token37] = ACTIONS(964), + [aux_sym_cmd_identifier_token38] = ACTIONS(964), + [aux_sym_cmd_identifier_token39] = ACTIONS(964), + [aux_sym_cmd_identifier_token40] = ACTIONS(964), + [anon_sym_def] = ACTIONS(964), + [anon_sym_export_DASHenv] = ACTIONS(964), + [anon_sym_extern] = ACTIONS(964), + [anon_sym_module] = ACTIONS(964), + [anon_sym_use] = ACTIONS(964), + [anon_sym_LPAREN] = ACTIONS(964), + [anon_sym_COMMA] = ACTIONS(964), + [anon_sym_DOLLAR] = ACTIONS(964), + [anon_sym_error] = ACTIONS(964), + [anon_sym_DASH2] = ACTIONS(964), + [anon_sym_break] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_in2] = ACTIONS(964), + [anon_sym_loop] = ACTIONS(964), + [anon_sym_make] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [anon_sym_do] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_else] = ACTIONS(964), + [anon_sym_match] = ACTIONS(964), + [anon_sym_RBRACE] = ACTIONS(964), + [anon_sym_try] = ACTIONS(964), + [anon_sym_catch] = ACTIONS(964), + [anon_sym_return] = ACTIONS(964), + [anon_sym_source] = ACTIONS(964), + [anon_sym_source_DASHenv] = ACTIONS(964), + [anon_sym_hide] = ACTIONS(964), + [anon_sym_hide_DASHenv] = ACTIONS(964), + [anon_sym_overlay] = ACTIONS(964), + [anon_sym_as] = ACTIONS(964), + [anon_sym_PLUS2] = ACTIONS(964), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(964), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(964), + [aux_sym__val_number_decimal_token1] = ACTIONS(964), + [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), + [aux_sym__val_number_token4] = ACTIONS(964), + [aux_sym__val_number_token5] = ACTIONS(964), + [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(964), + [sym__entry_separator] = ACTIONS(966), + [anon_sym_register] = ACTIONS(964), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1955), + [sym_raw_string_begin] = ACTIONS(966), }, - [597] = { - [sym_comment] = STATE(597), - [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), - [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(2336), - [anon_sym_DOLLAR] = ACTIONS(2336), - [anon_sym_error] = ACTIONS(2336), - [anon_sym_DASH2] = ACTIONS(2336), - [anon_sym_break] = ACTIONS(2336), - [anon_sym_continue] = ACTIONS(2336), - [anon_sym_for] = ACTIONS(2336), - [anon_sym_in2] = 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_as] = ACTIONS(2336), - [anon_sym_PLUS2] = 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), - [aux_sym__val_number_token4] = ACTIONS(2336), - [aux_sym__val_number_token5] = ACTIONS(2336), - [aux_sym__val_number_token6] = ACTIONS(2336), - [anon_sym_DQUOTE] = ACTIONS(2336), - [sym__str_single_quotes] = ACTIONS(2336), - [sym__str_back_ticks] = ACTIONS(2336), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2336), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2336), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2336), - [sym__entry_separator] = ACTIONS(2338), + [621] = { + [sym_comment] = STATE(621), + [anon_sym_export] = ACTIONS(2385), + [anon_sym_alias] = ACTIONS(2385), + [anon_sym_let] = ACTIONS(2385), + [anon_sym_let_DASHenv] = ACTIONS(2385), + [anon_sym_mut] = ACTIONS(2385), + [anon_sym_const] = ACTIONS(2385), + [aux_sym_cmd_identifier_token1] = ACTIONS(2385), + [aux_sym_cmd_identifier_token2] = ACTIONS(2385), + [aux_sym_cmd_identifier_token3] = ACTIONS(2385), + [aux_sym_cmd_identifier_token4] = ACTIONS(2385), + [aux_sym_cmd_identifier_token5] = ACTIONS(2385), + [aux_sym_cmd_identifier_token6] = ACTIONS(2385), + [aux_sym_cmd_identifier_token7] = ACTIONS(2385), + [aux_sym_cmd_identifier_token8] = ACTIONS(2385), + [aux_sym_cmd_identifier_token9] = ACTIONS(2385), + [aux_sym_cmd_identifier_token10] = ACTIONS(2385), + [aux_sym_cmd_identifier_token11] = ACTIONS(2385), + [aux_sym_cmd_identifier_token12] = ACTIONS(2385), + [aux_sym_cmd_identifier_token13] = ACTIONS(2385), + [aux_sym_cmd_identifier_token14] = ACTIONS(2385), + [aux_sym_cmd_identifier_token15] = ACTIONS(2385), + [aux_sym_cmd_identifier_token16] = ACTIONS(2385), + [aux_sym_cmd_identifier_token17] = ACTIONS(2385), + [aux_sym_cmd_identifier_token18] = ACTIONS(2385), + [aux_sym_cmd_identifier_token19] = ACTIONS(2385), + [aux_sym_cmd_identifier_token20] = ACTIONS(2385), + [aux_sym_cmd_identifier_token21] = ACTIONS(2385), + [aux_sym_cmd_identifier_token22] = ACTIONS(2385), + [aux_sym_cmd_identifier_token23] = ACTIONS(2385), + [aux_sym_cmd_identifier_token24] = ACTIONS(2385), + [aux_sym_cmd_identifier_token25] = ACTIONS(2385), + [aux_sym_cmd_identifier_token26] = ACTIONS(2385), + [aux_sym_cmd_identifier_token27] = ACTIONS(2385), + [aux_sym_cmd_identifier_token28] = ACTIONS(2385), + [aux_sym_cmd_identifier_token29] = ACTIONS(2385), + [aux_sym_cmd_identifier_token30] = ACTIONS(2385), + [aux_sym_cmd_identifier_token31] = ACTIONS(2385), + [aux_sym_cmd_identifier_token32] = ACTIONS(2385), + [aux_sym_cmd_identifier_token33] = ACTIONS(2385), + [aux_sym_cmd_identifier_token34] = ACTIONS(2385), + [aux_sym_cmd_identifier_token35] = ACTIONS(2385), + [aux_sym_cmd_identifier_token36] = ACTIONS(2385), + [aux_sym_cmd_identifier_token37] = ACTIONS(2385), + [aux_sym_cmd_identifier_token38] = ACTIONS(2385), + [aux_sym_cmd_identifier_token39] = ACTIONS(2385), + [aux_sym_cmd_identifier_token40] = ACTIONS(2385), + [anon_sym_def] = ACTIONS(2385), + [anon_sym_export_DASHenv] = ACTIONS(2385), + [anon_sym_extern] = ACTIONS(2385), + [anon_sym_module] = ACTIONS(2385), + [anon_sym_use] = ACTIONS(2385), + [anon_sym_LPAREN] = ACTIONS(2385), + [anon_sym_COMMA] = ACTIONS(2385), + [anon_sym_DOLLAR] = ACTIONS(2385), + [anon_sym_error] = ACTIONS(2385), + [anon_sym_DASH2] = ACTIONS(2385), + [anon_sym_break] = ACTIONS(2385), + [anon_sym_continue] = ACTIONS(2385), + [anon_sym_for] = ACTIONS(2385), + [anon_sym_in2] = ACTIONS(2385), + [anon_sym_loop] = ACTIONS(2385), + [anon_sym_make] = ACTIONS(2385), + [anon_sym_while] = ACTIONS(2385), + [anon_sym_do] = ACTIONS(2385), + [anon_sym_if] = ACTIONS(2385), + [anon_sym_else] = ACTIONS(2385), + [anon_sym_match] = ACTIONS(2385), + [anon_sym_RBRACE] = ACTIONS(2385), + [anon_sym_try] = ACTIONS(2385), + [anon_sym_catch] = ACTIONS(2385), + [anon_sym_return] = ACTIONS(2385), + [anon_sym_source] = ACTIONS(2385), + [anon_sym_source_DASHenv] = ACTIONS(2385), + [anon_sym_hide] = ACTIONS(2385), + [anon_sym_hide_DASHenv] = ACTIONS(2385), + [anon_sym_overlay] = ACTIONS(2385), + [anon_sym_as] = ACTIONS(2385), + [anon_sym_PLUS2] = ACTIONS(2385), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2385), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2385), + [aux_sym__val_number_decimal_token1] = ACTIONS(2385), + [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), + [aux_sym__val_number_token4] = ACTIONS(2385), + [aux_sym__val_number_token5] = ACTIONS(2385), + [aux_sym__val_number_token6] = ACTIONS(2385), + [anon_sym_DQUOTE] = ACTIONS(2385), + [sym__str_single_quotes] = ACTIONS(2385), + [sym__str_back_ticks] = ACTIONS(2385), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2385), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2385), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2385), + [sym__entry_separator] = ACTIONS(2387), + [anon_sym_register] = ACTIONS(2385), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2338), + [sym_raw_string_begin] = ACTIONS(2387), }, - [598] = { - [sym_comment] = STATE(598), - [anon_sym_export] = ACTIONS(1965), - [anon_sym_alias] = ACTIONS(1965), - [anon_sym_let] = ACTIONS(1965), - [anon_sym_let_DASHenv] = ACTIONS(1965), - [anon_sym_mut] = ACTIONS(1965), - [anon_sym_const] = ACTIONS(1965), - [aux_sym_cmd_identifier_token1] = ACTIONS(1965), - [aux_sym_cmd_identifier_token2] = ACTIONS(1965), - [aux_sym_cmd_identifier_token3] = ACTIONS(1965), - [aux_sym_cmd_identifier_token4] = ACTIONS(1965), - [aux_sym_cmd_identifier_token5] = ACTIONS(1965), - [aux_sym_cmd_identifier_token6] = ACTIONS(1965), - [aux_sym_cmd_identifier_token7] = ACTIONS(1965), - [aux_sym_cmd_identifier_token8] = ACTIONS(1965), - [aux_sym_cmd_identifier_token9] = ACTIONS(1965), - [aux_sym_cmd_identifier_token10] = ACTIONS(1965), - [aux_sym_cmd_identifier_token11] = ACTIONS(1965), - [aux_sym_cmd_identifier_token12] = ACTIONS(1965), - [aux_sym_cmd_identifier_token13] = ACTIONS(1965), - [aux_sym_cmd_identifier_token14] = ACTIONS(1965), - [aux_sym_cmd_identifier_token15] = ACTIONS(1965), - [aux_sym_cmd_identifier_token16] = ACTIONS(1965), - [aux_sym_cmd_identifier_token17] = ACTIONS(1965), - [aux_sym_cmd_identifier_token18] = ACTIONS(1965), - [aux_sym_cmd_identifier_token19] = ACTIONS(1965), - [aux_sym_cmd_identifier_token20] = ACTIONS(1965), - [aux_sym_cmd_identifier_token21] = ACTIONS(1965), - [aux_sym_cmd_identifier_token22] = ACTIONS(1965), - [aux_sym_cmd_identifier_token23] = ACTIONS(1965), - [aux_sym_cmd_identifier_token24] = ACTIONS(1965), - [aux_sym_cmd_identifier_token25] = ACTIONS(1965), - [aux_sym_cmd_identifier_token26] = ACTIONS(1965), - [aux_sym_cmd_identifier_token27] = ACTIONS(1965), - [aux_sym_cmd_identifier_token28] = ACTIONS(1965), - [aux_sym_cmd_identifier_token29] = ACTIONS(1965), - [aux_sym_cmd_identifier_token30] = ACTIONS(1965), - [aux_sym_cmd_identifier_token31] = ACTIONS(1965), - [aux_sym_cmd_identifier_token32] = ACTIONS(1965), - [aux_sym_cmd_identifier_token33] = ACTIONS(1965), - [aux_sym_cmd_identifier_token34] = ACTIONS(1965), - [aux_sym_cmd_identifier_token35] = ACTIONS(1965), - [aux_sym_cmd_identifier_token36] = ACTIONS(1965), - [aux_sym_cmd_identifier_token37] = ACTIONS(1965), - [aux_sym_cmd_identifier_token38] = ACTIONS(1965), - [aux_sym_cmd_identifier_token39] = ACTIONS(1965), - [aux_sym_cmd_identifier_token40] = ACTIONS(1965), - [anon_sym_def] = ACTIONS(1965), - [anon_sym_export_DASHenv] = ACTIONS(1965), - [anon_sym_extern] = ACTIONS(1965), - [anon_sym_module] = ACTIONS(1965), - [anon_sym_use] = ACTIONS(1965), - [anon_sym_LPAREN] = ACTIONS(1965), - [anon_sym_COMMA] = ACTIONS(1965), - [anon_sym_DOLLAR] = ACTIONS(1965), - [anon_sym_error] = ACTIONS(1965), - [anon_sym_DASH2] = ACTIONS(1965), - [anon_sym_break] = ACTIONS(1965), - [anon_sym_continue] = ACTIONS(1965), - [anon_sym_for] = ACTIONS(1965), - [anon_sym_in2] = ACTIONS(1965), - [anon_sym_loop] = ACTIONS(1965), - [anon_sym_make] = ACTIONS(1965), - [anon_sym_while] = ACTIONS(1965), - [anon_sym_do] = ACTIONS(1965), - [anon_sym_if] = ACTIONS(1965), - [anon_sym_else] = ACTIONS(1965), - [anon_sym_match] = ACTIONS(1965), - [anon_sym_RBRACE] = ACTIONS(1965), - [anon_sym_try] = ACTIONS(1965), - [anon_sym_catch] = ACTIONS(1965), - [anon_sym_return] = ACTIONS(1965), - [anon_sym_source] = ACTIONS(1965), - [anon_sym_source_DASHenv] = ACTIONS(1965), - [anon_sym_register] = ACTIONS(1965), - [anon_sym_hide] = ACTIONS(1965), - [anon_sym_hide_DASHenv] = ACTIONS(1965), - [anon_sym_overlay] = ACTIONS(1965), - [anon_sym_as] = ACTIONS(1965), - [anon_sym_PLUS2] = ACTIONS(1965), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1965), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1965), - [aux_sym__val_number_decimal_token1] = ACTIONS(1965), - [aux_sym__val_number_decimal_token2] = ACTIONS(1965), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), - [aux_sym__val_number_token1] = ACTIONS(1965), - [aux_sym__val_number_token2] = ACTIONS(1965), - [aux_sym__val_number_token3] = ACTIONS(1965), - [aux_sym__val_number_token4] = ACTIONS(1965), - [aux_sym__val_number_token5] = ACTIONS(1965), - [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(1965), - [sym__entry_separator] = ACTIONS(1967), + [622] = { + [sym_comment] = STATE(622), + [anon_sym_export] = ACTIONS(1961), + [anon_sym_alias] = ACTIONS(1961), + [anon_sym_let] = ACTIONS(1961), + [anon_sym_let_DASHenv] = ACTIONS(1961), + [anon_sym_mut] = ACTIONS(1961), + [anon_sym_const] = ACTIONS(1961), + [aux_sym_cmd_identifier_token1] = ACTIONS(1961), + [aux_sym_cmd_identifier_token2] = ACTIONS(1961), + [aux_sym_cmd_identifier_token3] = ACTIONS(1961), + [aux_sym_cmd_identifier_token4] = ACTIONS(1961), + [aux_sym_cmd_identifier_token5] = ACTIONS(1961), + [aux_sym_cmd_identifier_token6] = ACTIONS(1961), + [aux_sym_cmd_identifier_token7] = ACTIONS(1961), + [aux_sym_cmd_identifier_token8] = ACTIONS(1961), + [aux_sym_cmd_identifier_token9] = ACTIONS(1961), + [aux_sym_cmd_identifier_token10] = ACTIONS(1961), + [aux_sym_cmd_identifier_token11] = ACTIONS(1961), + [aux_sym_cmd_identifier_token12] = ACTIONS(1961), + [aux_sym_cmd_identifier_token13] = ACTIONS(1961), + [aux_sym_cmd_identifier_token14] = ACTIONS(1961), + [aux_sym_cmd_identifier_token15] = ACTIONS(1961), + [aux_sym_cmd_identifier_token16] = ACTIONS(1961), + [aux_sym_cmd_identifier_token17] = ACTIONS(1961), + [aux_sym_cmd_identifier_token18] = ACTIONS(1961), + [aux_sym_cmd_identifier_token19] = ACTIONS(1961), + [aux_sym_cmd_identifier_token20] = ACTIONS(1961), + [aux_sym_cmd_identifier_token21] = ACTIONS(1961), + [aux_sym_cmd_identifier_token22] = ACTIONS(1961), + [aux_sym_cmd_identifier_token23] = ACTIONS(1961), + [aux_sym_cmd_identifier_token24] = ACTIONS(1961), + [aux_sym_cmd_identifier_token25] = ACTIONS(1961), + [aux_sym_cmd_identifier_token26] = ACTIONS(1961), + [aux_sym_cmd_identifier_token27] = ACTIONS(1961), + [aux_sym_cmd_identifier_token28] = ACTIONS(1961), + [aux_sym_cmd_identifier_token29] = ACTIONS(1961), + [aux_sym_cmd_identifier_token30] = ACTIONS(1961), + [aux_sym_cmd_identifier_token31] = ACTIONS(1961), + [aux_sym_cmd_identifier_token32] = ACTIONS(1961), + [aux_sym_cmd_identifier_token33] = ACTIONS(1961), + [aux_sym_cmd_identifier_token34] = ACTIONS(1961), + [aux_sym_cmd_identifier_token35] = ACTIONS(1961), + [aux_sym_cmd_identifier_token36] = ACTIONS(1961), + [aux_sym_cmd_identifier_token37] = ACTIONS(1961), + [aux_sym_cmd_identifier_token38] = ACTIONS(1961), + [aux_sym_cmd_identifier_token39] = ACTIONS(1961), + [aux_sym_cmd_identifier_token40] = ACTIONS(1961), + [anon_sym_def] = ACTIONS(1961), + [anon_sym_export_DASHenv] = ACTIONS(1961), + [anon_sym_extern] = ACTIONS(1961), + [anon_sym_module] = ACTIONS(1961), + [anon_sym_use] = ACTIONS(1961), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_COMMA] = ACTIONS(1961), + [anon_sym_DOLLAR] = ACTIONS(1961), + [anon_sym_error] = ACTIONS(1961), + [anon_sym_DASH2] = ACTIONS(1961), + [anon_sym_break] = ACTIONS(1961), + [anon_sym_continue] = ACTIONS(1961), + [anon_sym_for] = ACTIONS(1961), + [anon_sym_in2] = ACTIONS(1961), + [anon_sym_loop] = ACTIONS(1961), + [anon_sym_make] = ACTIONS(1961), + [anon_sym_while] = ACTIONS(1961), + [anon_sym_do] = ACTIONS(1961), + [anon_sym_if] = ACTIONS(1961), + [anon_sym_else] = ACTIONS(1961), + [anon_sym_match] = ACTIONS(1961), + [anon_sym_RBRACE] = ACTIONS(1961), + [anon_sym_try] = ACTIONS(1961), + [anon_sym_catch] = ACTIONS(1961), + [anon_sym_return] = ACTIONS(1961), + [anon_sym_source] = ACTIONS(1961), + [anon_sym_source_DASHenv] = ACTIONS(1961), + [anon_sym_hide] = ACTIONS(1961), + [anon_sym_hide_DASHenv] = ACTIONS(1961), + [anon_sym_overlay] = ACTIONS(1961), + [anon_sym_as] = ACTIONS(1961), + [anon_sym_PLUS2] = ACTIONS(1961), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1961), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1961), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1961), + [aux_sym__val_number_decimal_token3] = ACTIONS(1961), + [aux_sym__val_number_decimal_token4] = ACTIONS(1961), + [aux_sym__val_number_token1] = ACTIONS(1961), + [aux_sym__val_number_token2] = ACTIONS(1961), + [aux_sym__val_number_token3] = ACTIONS(1961), + [aux_sym__val_number_token4] = ACTIONS(1961), + [aux_sym__val_number_token5] = ACTIONS(1961), + [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(1961), + [sym__entry_separator] = ACTIONS(1963), + [anon_sym_register] = ACTIONS(1961), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1967), + [sym_raw_string_begin] = ACTIONS(1963), }, - [599] = { - [sym_comment] = STATE(599), - [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(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(1755), - [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(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(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(1757), - [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(1755), - [aux_sym_cmd_identifier_token35] = ACTIONS(1757), - [aux_sym_cmd_identifier_token36] = ACTIONS(1757), - [aux_sym_cmd_identifier_token37] = ACTIONS(1757), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1757), - [aux_sym_cmd_identifier_token40] = ACTIONS(1757), - [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_COMMA] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in2] = 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_RBRACE] = ACTIONS(1757), - [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_as] = ACTIONS(1755), - [anon_sym_PLUS2] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(2306), - [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), - [aux_sym__val_number_token4] = ACTIONS(1755), - [aux_sym__val_number_token5] = ACTIONS(1755), - [aux_sym__val_number_token6] = ACTIONS(1755), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1757), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1757), + [623] = { + [sym_comment] = STATE(623), + [anon_sym_export] = ACTIONS(946), + [anon_sym_alias] = ACTIONS(946), + [anon_sym_let] = ACTIONS(946), + [anon_sym_let_DASHenv] = ACTIONS(946), + [anon_sym_mut] = ACTIONS(946), + [anon_sym_const] = ACTIONS(946), + [aux_sym_cmd_identifier_token1] = ACTIONS(946), + [aux_sym_cmd_identifier_token2] = ACTIONS(946), + [aux_sym_cmd_identifier_token3] = ACTIONS(946), + [aux_sym_cmd_identifier_token4] = ACTIONS(946), + [aux_sym_cmd_identifier_token5] = ACTIONS(946), + [aux_sym_cmd_identifier_token6] = ACTIONS(946), + [aux_sym_cmd_identifier_token7] = ACTIONS(946), + [aux_sym_cmd_identifier_token8] = ACTIONS(946), + [aux_sym_cmd_identifier_token9] = ACTIONS(946), + [aux_sym_cmd_identifier_token10] = ACTIONS(946), + [aux_sym_cmd_identifier_token11] = ACTIONS(946), + [aux_sym_cmd_identifier_token12] = ACTIONS(946), + [aux_sym_cmd_identifier_token13] = ACTIONS(946), + [aux_sym_cmd_identifier_token14] = ACTIONS(946), + [aux_sym_cmd_identifier_token15] = ACTIONS(946), + [aux_sym_cmd_identifier_token16] = ACTIONS(946), + [aux_sym_cmd_identifier_token17] = ACTIONS(946), + [aux_sym_cmd_identifier_token18] = ACTIONS(946), + [aux_sym_cmd_identifier_token19] = ACTIONS(946), + [aux_sym_cmd_identifier_token20] = ACTIONS(946), + [aux_sym_cmd_identifier_token21] = ACTIONS(946), + [aux_sym_cmd_identifier_token22] = ACTIONS(946), + [aux_sym_cmd_identifier_token23] = ACTIONS(946), + [aux_sym_cmd_identifier_token24] = ACTIONS(946), + [aux_sym_cmd_identifier_token25] = ACTIONS(946), + [aux_sym_cmd_identifier_token26] = ACTIONS(946), + [aux_sym_cmd_identifier_token27] = ACTIONS(946), + [aux_sym_cmd_identifier_token28] = ACTIONS(946), + [aux_sym_cmd_identifier_token29] = ACTIONS(946), + [aux_sym_cmd_identifier_token30] = ACTIONS(946), + [aux_sym_cmd_identifier_token31] = ACTIONS(946), + [aux_sym_cmd_identifier_token32] = ACTIONS(946), + [aux_sym_cmd_identifier_token33] = ACTIONS(946), + [aux_sym_cmd_identifier_token34] = ACTIONS(946), + [aux_sym_cmd_identifier_token35] = ACTIONS(946), + [aux_sym_cmd_identifier_token36] = ACTIONS(946), + [aux_sym_cmd_identifier_token37] = ACTIONS(946), + [aux_sym_cmd_identifier_token38] = ACTIONS(946), + [aux_sym_cmd_identifier_token39] = ACTIONS(946), + [aux_sym_cmd_identifier_token40] = ACTIONS(946), + [anon_sym_def] = ACTIONS(946), + [anon_sym_export_DASHenv] = ACTIONS(946), + [anon_sym_extern] = ACTIONS(946), + [anon_sym_module] = ACTIONS(946), + [anon_sym_use] = ACTIONS(946), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_COMMA] = ACTIONS(946), + [anon_sym_DOLLAR] = ACTIONS(946), + [anon_sym_error] = ACTIONS(946), + [anon_sym_DASH2] = ACTIONS(946), + [anon_sym_break] = ACTIONS(946), + [anon_sym_continue] = ACTIONS(946), + [anon_sym_for] = ACTIONS(946), + [anon_sym_in2] = ACTIONS(946), + [anon_sym_loop] = ACTIONS(946), + [anon_sym_make] = ACTIONS(946), + [anon_sym_while] = ACTIONS(946), + [anon_sym_do] = ACTIONS(946), + [anon_sym_if] = ACTIONS(946), + [anon_sym_else] = ACTIONS(946), + [anon_sym_match] = ACTIONS(946), + [anon_sym_RBRACE] = ACTIONS(946), + [anon_sym_try] = ACTIONS(946), + [anon_sym_catch] = ACTIONS(946), + [anon_sym_return] = ACTIONS(946), + [anon_sym_source] = ACTIONS(946), + [anon_sym_source_DASHenv] = ACTIONS(946), + [anon_sym_hide] = ACTIONS(946), + [anon_sym_hide_DASHenv] = ACTIONS(946), + [anon_sym_overlay] = ACTIONS(946), + [anon_sym_as] = ACTIONS(946), + [anon_sym_PLUS2] = ACTIONS(946), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(946), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(946), + [aux_sym__val_number_decimal_token1] = ACTIONS(946), + [aux_sym__val_number_decimal_token2] = ACTIONS(946), + [aux_sym__val_number_decimal_token3] = ACTIONS(946), + [aux_sym__val_number_decimal_token4] = ACTIONS(946), + [aux_sym__val_number_token1] = ACTIONS(946), + [aux_sym__val_number_token2] = ACTIONS(946), + [aux_sym__val_number_token3] = ACTIONS(946), + [aux_sym__val_number_token4] = ACTIONS(946), + [aux_sym__val_number_token5] = ACTIONS(946), + [aux_sym__val_number_token6] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(946), + [sym__str_single_quotes] = ACTIONS(946), + [sym__str_back_ticks] = ACTIONS(946), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(946), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(946), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(946), + [sym__entry_separator] = ACTIONS(948), + [anon_sym_register] = ACTIONS(946), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(948), }, - [600] = { - [sym_comment] = STATE(600), - [anon_sym_export] = ACTIONS(1783), - [anon_sym_alias] = ACTIONS(1783), - [anon_sym_let] = ACTIONS(1783), - [anon_sym_let_DASHenv] = ACTIONS(1783), - [anon_sym_mut] = ACTIONS(1783), - [anon_sym_const] = ACTIONS(1783), - [aux_sym_cmd_identifier_token1] = ACTIONS(1783), - [aux_sym_cmd_identifier_token2] = ACTIONS(1785), - [aux_sym_cmd_identifier_token3] = ACTIONS(1785), - [aux_sym_cmd_identifier_token4] = ACTIONS(1785), - [aux_sym_cmd_identifier_token5] = ACTIONS(1785), - [aux_sym_cmd_identifier_token6] = ACTIONS(1785), - [aux_sym_cmd_identifier_token7] = ACTIONS(1785), - [aux_sym_cmd_identifier_token8] = ACTIONS(1783), - [aux_sym_cmd_identifier_token9] = ACTIONS(1783), - [aux_sym_cmd_identifier_token10] = ACTIONS(1785), - [aux_sym_cmd_identifier_token11] = ACTIONS(1785), - [aux_sym_cmd_identifier_token12] = ACTIONS(1783), - [aux_sym_cmd_identifier_token13] = ACTIONS(1783), - [aux_sym_cmd_identifier_token14] = ACTIONS(1783), - [aux_sym_cmd_identifier_token15] = ACTIONS(1783), - [aux_sym_cmd_identifier_token16] = ACTIONS(1785), - [aux_sym_cmd_identifier_token17] = ACTIONS(1785), - [aux_sym_cmd_identifier_token18] = ACTIONS(1785), - [aux_sym_cmd_identifier_token19] = ACTIONS(1785), - [aux_sym_cmd_identifier_token20] = ACTIONS(1785), - [aux_sym_cmd_identifier_token21] = ACTIONS(1785), - [aux_sym_cmd_identifier_token22] = ACTIONS(1785), - [aux_sym_cmd_identifier_token23] = ACTIONS(1785), - [aux_sym_cmd_identifier_token24] = ACTIONS(1785), - [aux_sym_cmd_identifier_token25] = ACTIONS(1785), - [aux_sym_cmd_identifier_token26] = ACTIONS(1785), - [aux_sym_cmd_identifier_token27] = ACTIONS(1785), - [aux_sym_cmd_identifier_token28] = ACTIONS(1785), - [aux_sym_cmd_identifier_token29] = ACTIONS(1785), - [aux_sym_cmd_identifier_token30] = ACTIONS(1785), - [aux_sym_cmd_identifier_token31] = ACTIONS(1785), - [aux_sym_cmd_identifier_token32] = ACTIONS(1785), - [aux_sym_cmd_identifier_token33] = ACTIONS(1785), - [aux_sym_cmd_identifier_token34] = ACTIONS(1783), - [aux_sym_cmd_identifier_token35] = ACTIONS(1785), - [aux_sym_cmd_identifier_token36] = ACTIONS(1785), - [aux_sym_cmd_identifier_token37] = ACTIONS(1785), - [aux_sym_cmd_identifier_token38] = ACTIONS(1783), - [aux_sym_cmd_identifier_token39] = ACTIONS(1785), - [aux_sym_cmd_identifier_token40] = ACTIONS(1785), - [anon_sym_def] = ACTIONS(1783), - [anon_sym_export_DASHenv] = ACTIONS(1783), - [anon_sym_extern] = ACTIONS(1783), - [anon_sym_module] = ACTIONS(1783), - [anon_sym_use] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_COMMA] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_error] = ACTIONS(1783), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_break] = ACTIONS(1783), - [anon_sym_continue] = ACTIONS(1783), - [anon_sym_for] = ACTIONS(1783), - [anon_sym_in2] = ACTIONS(1783), - [anon_sym_loop] = ACTIONS(1783), - [anon_sym_make] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1783), - [anon_sym_do] = ACTIONS(1783), - [anon_sym_if] = ACTIONS(1783), - [anon_sym_else] = ACTIONS(1783), - [anon_sym_match] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_try] = ACTIONS(1783), - [anon_sym_catch] = ACTIONS(1783), - [anon_sym_return] = ACTIONS(1783), - [anon_sym_source] = ACTIONS(1783), - [anon_sym_source_DASHenv] = ACTIONS(1783), - [anon_sym_register] = ACTIONS(1783), - [anon_sym_hide] = ACTIONS(1783), - [anon_sym_hide_DASHenv] = ACTIONS(1783), - [anon_sym_overlay] = ACTIONS(1783), - [anon_sym_as] = ACTIONS(1783), - [anon_sym_PLUS2] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1785), - [aux_sym__immediate_decimal_token2] = ACTIONS(2340), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(1785), - [aux_sym__val_number_token2] = ACTIONS(1785), - [aux_sym__val_number_token3] = ACTIONS(1785), - [aux_sym__val_number_token4] = ACTIONS(1783), - [aux_sym__val_number_token5] = ACTIONS(1783), - [aux_sym__val_number_token6] = ACTIONS(1783), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1785), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1785), + [624] = { + [sym_comment] = STATE(624), + [anon_sym_export] = ACTIONS(1901), + [anon_sym_alias] = ACTIONS(1901), + [anon_sym_let] = ACTIONS(1901), + [anon_sym_let_DASHenv] = ACTIONS(1901), + [anon_sym_mut] = ACTIONS(1901), + [anon_sym_const] = ACTIONS(1901), + [aux_sym_cmd_identifier_token1] = ACTIONS(1901), + [aux_sym_cmd_identifier_token2] = ACTIONS(1901), + [aux_sym_cmd_identifier_token3] = ACTIONS(1901), + [aux_sym_cmd_identifier_token4] = ACTIONS(1901), + [aux_sym_cmd_identifier_token5] = ACTIONS(1901), + [aux_sym_cmd_identifier_token6] = ACTIONS(1901), + [aux_sym_cmd_identifier_token7] = ACTIONS(1901), + [aux_sym_cmd_identifier_token8] = ACTIONS(1901), + [aux_sym_cmd_identifier_token9] = ACTIONS(1901), + [aux_sym_cmd_identifier_token10] = ACTIONS(1901), + [aux_sym_cmd_identifier_token11] = ACTIONS(1901), + [aux_sym_cmd_identifier_token12] = ACTIONS(1901), + [aux_sym_cmd_identifier_token13] = ACTIONS(1901), + [aux_sym_cmd_identifier_token14] = ACTIONS(1901), + [aux_sym_cmd_identifier_token15] = ACTIONS(1901), + [aux_sym_cmd_identifier_token16] = ACTIONS(1901), + [aux_sym_cmd_identifier_token17] = ACTIONS(1901), + [aux_sym_cmd_identifier_token18] = ACTIONS(1901), + [aux_sym_cmd_identifier_token19] = ACTIONS(1901), + [aux_sym_cmd_identifier_token20] = ACTIONS(1901), + [aux_sym_cmd_identifier_token21] = ACTIONS(1901), + [aux_sym_cmd_identifier_token22] = ACTIONS(1901), + [aux_sym_cmd_identifier_token23] = ACTIONS(1901), + [aux_sym_cmd_identifier_token24] = ACTIONS(1901), + [aux_sym_cmd_identifier_token25] = ACTIONS(1901), + [aux_sym_cmd_identifier_token26] = ACTIONS(1901), + [aux_sym_cmd_identifier_token27] = ACTIONS(1901), + [aux_sym_cmd_identifier_token28] = ACTIONS(1901), + [aux_sym_cmd_identifier_token29] = ACTIONS(1901), + [aux_sym_cmd_identifier_token30] = ACTIONS(1901), + [aux_sym_cmd_identifier_token31] = ACTIONS(1901), + [aux_sym_cmd_identifier_token32] = ACTIONS(1901), + [aux_sym_cmd_identifier_token33] = ACTIONS(1901), + [aux_sym_cmd_identifier_token34] = ACTIONS(1901), + [aux_sym_cmd_identifier_token35] = ACTIONS(1901), + [aux_sym_cmd_identifier_token36] = ACTIONS(1901), + [aux_sym_cmd_identifier_token37] = ACTIONS(1901), + [aux_sym_cmd_identifier_token38] = ACTIONS(1901), + [aux_sym_cmd_identifier_token39] = ACTIONS(1901), + [aux_sym_cmd_identifier_token40] = ACTIONS(1901), + [anon_sym_def] = ACTIONS(1901), + [anon_sym_export_DASHenv] = ACTIONS(1901), + [anon_sym_extern] = ACTIONS(1901), + [anon_sym_module] = ACTIONS(1901), + [anon_sym_use] = ACTIONS(1901), + [anon_sym_LPAREN] = ACTIONS(1901), + [anon_sym_COMMA] = ACTIONS(1901), + [anon_sym_DOLLAR] = ACTIONS(1901), + [anon_sym_error] = ACTIONS(1901), + [anon_sym_DASH2] = ACTIONS(1901), + [anon_sym_break] = ACTIONS(1901), + [anon_sym_continue] = ACTIONS(1901), + [anon_sym_for] = ACTIONS(1901), + [anon_sym_in2] = ACTIONS(1901), + [anon_sym_loop] = ACTIONS(1901), + [anon_sym_make] = ACTIONS(1901), + [anon_sym_while] = ACTIONS(1901), + [anon_sym_do] = ACTIONS(1901), + [anon_sym_if] = ACTIONS(1901), + [anon_sym_else] = ACTIONS(1901), + [anon_sym_match] = ACTIONS(1901), + [anon_sym_RBRACE] = ACTIONS(1901), + [anon_sym_try] = ACTIONS(1901), + [anon_sym_catch] = ACTIONS(1901), + [anon_sym_return] = ACTIONS(1901), + [anon_sym_source] = ACTIONS(1901), + [anon_sym_source_DASHenv] = ACTIONS(1901), + [anon_sym_hide] = ACTIONS(1901), + [anon_sym_hide_DASHenv] = ACTIONS(1901), + [anon_sym_overlay] = ACTIONS(1901), + [anon_sym_as] = ACTIONS(1901), + [anon_sym_PLUS2] = ACTIONS(1901), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1901), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1901), + [aux_sym__val_number_decimal_token1] = ACTIONS(1901), + [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), + [aux_sym__val_number_token4] = ACTIONS(1901), + [aux_sym__val_number_token5] = ACTIONS(1901), + [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(1901), + [sym__entry_separator] = ACTIONS(1903), + [anon_sym_register] = ACTIONS(1901), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1903), }, - [601] = { - [sym_comment] = STATE(601), - [anon_sym_export] = ACTIONS(2342), - [anon_sym_alias] = ACTIONS(2342), - [anon_sym_let] = ACTIONS(2342), - [anon_sym_let_DASHenv] = ACTIONS(2342), - [anon_sym_mut] = ACTIONS(2342), - [anon_sym_const] = ACTIONS(2342), - [aux_sym_cmd_identifier_token1] = ACTIONS(2342), - [aux_sym_cmd_identifier_token2] = ACTIONS(2342), - [aux_sym_cmd_identifier_token3] = ACTIONS(2342), - [aux_sym_cmd_identifier_token4] = ACTIONS(2342), - [aux_sym_cmd_identifier_token5] = ACTIONS(2342), - [aux_sym_cmd_identifier_token6] = ACTIONS(2342), - [aux_sym_cmd_identifier_token7] = ACTIONS(2342), - [aux_sym_cmd_identifier_token8] = ACTIONS(2342), - [aux_sym_cmd_identifier_token9] = ACTIONS(2342), - [aux_sym_cmd_identifier_token10] = ACTIONS(2342), - [aux_sym_cmd_identifier_token11] = ACTIONS(2342), - [aux_sym_cmd_identifier_token12] = ACTIONS(2342), - [aux_sym_cmd_identifier_token13] = ACTIONS(2342), - [aux_sym_cmd_identifier_token14] = ACTIONS(2342), - [aux_sym_cmd_identifier_token15] = ACTIONS(2342), - [aux_sym_cmd_identifier_token16] = ACTIONS(2342), - [aux_sym_cmd_identifier_token17] = ACTIONS(2342), - [aux_sym_cmd_identifier_token18] = ACTIONS(2342), - [aux_sym_cmd_identifier_token19] = ACTIONS(2342), - [aux_sym_cmd_identifier_token20] = ACTIONS(2342), - [aux_sym_cmd_identifier_token21] = ACTIONS(2342), - [aux_sym_cmd_identifier_token22] = ACTIONS(2342), - [aux_sym_cmd_identifier_token23] = ACTIONS(2342), - [aux_sym_cmd_identifier_token24] = ACTIONS(2342), - [aux_sym_cmd_identifier_token25] = ACTIONS(2342), - [aux_sym_cmd_identifier_token26] = ACTIONS(2342), - [aux_sym_cmd_identifier_token27] = ACTIONS(2342), - [aux_sym_cmd_identifier_token28] = ACTIONS(2342), - [aux_sym_cmd_identifier_token29] = ACTIONS(2342), - [aux_sym_cmd_identifier_token30] = ACTIONS(2342), - [aux_sym_cmd_identifier_token31] = ACTIONS(2342), - [aux_sym_cmd_identifier_token32] = ACTIONS(2342), - [aux_sym_cmd_identifier_token33] = ACTIONS(2342), - [aux_sym_cmd_identifier_token34] = ACTIONS(2342), - [aux_sym_cmd_identifier_token35] = ACTIONS(2342), - [aux_sym_cmd_identifier_token36] = ACTIONS(2342), - [aux_sym_cmd_identifier_token37] = ACTIONS(2342), - [aux_sym_cmd_identifier_token38] = ACTIONS(2342), - [aux_sym_cmd_identifier_token39] = ACTIONS(2342), - [aux_sym_cmd_identifier_token40] = ACTIONS(2342), - [anon_sym_def] = ACTIONS(2342), - [anon_sym_export_DASHenv] = ACTIONS(2342), - [anon_sym_extern] = ACTIONS(2342), - [anon_sym_module] = ACTIONS(2342), - [anon_sym_use] = ACTIONS(2342), - [anon_sym_LPAREN] = ACTIONS(2342), - [anon_sym_COMMA] = ACTIONS(2342), - [anon_sym_DOLLAR] = ACTIONS(2342), - [anon_sym_error] = ACTIONS(2342), - [anon_sym_DASH2] = ACTIONS(2342), - [anon_sym_break] = ACTIONS(2342), - [anon_sym_continue] = ACTIONS(2342), - [anon_sym_for] = ACTIONS(2342), - [anon_sym_in2] = ACTIONS(2342), - [anon_sym_loop] = ACTIONS(2342), - [anon_sym_make] = ACTIONS(2342), - [anon_sym_while] = ACTIONS(2342), - [anon_sym_do] = ACTIONS(2342), - [anon_sym_if] = ACTIONS(2342), - [anon_sym_else] = ACTIONS(2342), - [anon_sym_match] = ACTIONS(2342), - [anon_sym_RBRACE] = ACTIONS(2342), - [anon_sym_try] = ACTIONS(2342), - [anon_sym_catch] = ACTIONS(2342), - [anon_sym_return] = ACTIONS(2342), - [anon_sym_source] = ACTIONS(2342), - [anon_sym_source_DASHenv] = ACTIONS(2342), - [anon_sym_register] = ACTIONS(2342), - [anon_sym_hide] = ACTIONS(2342), - [anon_sym_hide_DASHenv] = ACTIONS(2342), - [anon_sym_overlay] = ACTIONS(2342), - [anon_sym_as] = ACTIONS(2342), - [anon_sym_PLUS2] = ACTIONS(2342), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2342), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2342), - [aux_sym__val_number_decimal_token1] = ACTIONS(2342), - [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), - [aux_sym__val_number_token4] = ACTIONS(2342), - [aux_sym__val_number_token5] = ACTIONS(2342), - [aux_sym__val_number_token6] = ACTIONS(2342), - [anon_sym_DQUOTE] = ACTIONS(2342), - [sym__str_single_quotes] = ACTIONS(2342), - [sym__str_back_ticks] = ACTIONS(2342), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2342), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2342), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2342), - [sym__entry_separator] = ACTIONS(2344), + [625] = { + [sym_comment] = STATE(625), + [anon_sym_export] = ACTIONS(2030), + [anon_sym_alias] = ACTIONS(2030), + [anon_sym_let] = ACTIONS(2030), + [anon_sym_let_DASHenv] = ACTIONS(2030), + [anon_sym_mut] = ACTIONS(2030), + [anon_sym_const] = ACTIONS(2030), + [aux_sym_cmd_identifier_token1] = ACTIONS(2030), + [aux_sym_cmd_identifier_token2] = ACTIONS(2030), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [aux_sym_cmd_identifier_token6] = ACTIONS(2030), + [aux_sym_cmd_identifier_token7] = ACTIONS(2030), + [aux_sym_cmd_identifier_token8] = ACTIONS(2030), + [aux_sym_cmd_identifier_token9] = ACTIONS(2030), + [aux_sym_cmd_identifier_token10] = ACTIONS(2030), + [aux_sym_cmd_identifier_token11] = ACTIONS(2030), + [aux_sym_cmd_identifier_token12] = ACTIONS(2030), + [aux_sym_cmd_identifier_token13] = ACTIONS(2030), + [aux_sym_cmd_identifier_token14] = ACTIONS(2030), + [aux_sym_cmd_identifier_token15] = ACTIONS(2030), + [aux_sym_cmd_identifier_token16] = ACTIONS(2030), + [aux_sym_cmd_identifier_token17] = ACTIONS(2030), + [aux_sym_cmd_identifier_token18] = ACTIONS(2030), + [aux_sym_cmd_identifier_token19] = ACTIONS(2030), + [aux_sym_cmd_identifier_token20] = ACTIONS(2030), + [aux_sym_cmd_identifier_token21] = ACTIONS(2030), + [aux_sym_cmd_identifier_token22] = ACTIONS(2030), + [aux_sym_cmd_identifier_token23] = ACTIONS(2030), + [aux_sym_cmd_identifier_token24] = ACTIONS(2030), + [aux_sym_cmd_identifier_token25] = ACTIONS(2030), + [aux_sym_cmd_identifier_token26] = ACTIONS(2030), + [aux_sym_cmd_identifier_token27] = ACTIONS(2030), + [aux_sym_cmd_identifier_token28] = ACTIONS(2030), + [aux_sym_cmd_identifier_token29] = ACTIONS(2030), + [aux_sym_cmd_identifier_token30] = ACTIONS(2030), + [aux_sym_cmd_identifier_token31] = ACTIONS(2030), + [aux_sym_cmd_identifier_token32] = ACTIONS(2030), + [aux_sym_cmd_identifier_token33] = ACTIONS(2030), + [aux_sym_cmd_identifier_token34] = ACTIONS(2030), + [aux_sym_cmd_identifier_token35] = ACTIONS(2030), + [aux_sym_cmd_identifier_token36] = ACTIONS(2030), + [aux_sym_cmd_identifier_token37] = ACTIONS(2030), + [aux_sym_cmd_identifier_token38] = ACTIONS(2030), + [aux_sym_cmd_identifier_token39] = ACTIONS(2030), + [aux_sym_cmd_identifier_token40] = ACTIONS(2030), + [anon_sym_def] = ACTIONS(2030), + [anon_sym_export_DASHenv] = ACTIONS(2030), + [anon_sym_extern] = ACTIONS(2030), + [anon_sym_module] = ACTIONS(2030), + [anon_sym_use] = ACTIONS(2030), + [anon_sym_LPAREN] = ACTIONS(2030), + [anon_sym_COMMA] = ACTIONS(2030), + [anon_sym_DOLLAR] = ACTIONS(2030), + [anon_sym_error] = ACTIONS(2030), + [anon_sym_DASH2] = ACTIONS(2030), + [anon_sym_break] = ACTIONS(2030), + [anon_sym_continue] = ACTIONS(2030), + [anon_sym_for] = ACTIONS(2030), + [anon_sym_in2] = ACTIONS(2030), + [anon_sym_loop] = ACTIONS(2030), + [anon_sym_make] = ACTIONS(2030), + [anon_sym_while] = ACTIONS(2030), + [anon_sym_do] = ACTIONS(2030), + [anon_sym_if] = ACTIONS(2030), + [anon_sym_else] = ACTIONS(2030), + [anon_sym_match] = ACTIONS(2030), + [anon_sym_RBRACE] = ACTIONS(2030), + [anon_sym_try] = ACTIONS(2030), + [anon_sym_catch] = ACTIONS(2030), + [anon_sym_return] = ACTIONS(2030), + [anon_sym_source] = ACTIONS(2030), + [anon_sym_source_DASHenv] = ACTIONS(2030), + [anon_sym_hide] = ACTIONS(2030), + [anon_sym_hide_DASHenv] = ACTIONS(2030), + [anon_sym_overlay] = ACTIONS(2030), + [anon_sym_as] = ACTIONS(2030), + [anon_sym_PLUS2] = ACTIONS(2030), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2030), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2030), + [aux_sym__val_number_decimal_token1] = ACTIONS(2030), + [aux_sym__val_number_decimal_token2] = ACTIONS(2030), + [aux_sym__val_number_decimal_token3] = ACTIONS(2030), + [aux_sym__val_number_decimal_token4] = ACTIONS(2030), + [aux_sym__val_number_token1] = ACTIONS(2030), + [aux_sym__val_number_token2] = ACTIONS(2030), + [aux_sym__val_number_token3] = ACTIONS(2030), + [aux_sym__val_number_token4] = ACTIONS(2030), + [aux_sym__val_number_token5] = ACTIONS(2030), + [aux_sym__val_number_token6] = ACTIONS(2030), + [anon_sym_DQUOTE] = ACTIONS(2030), + [sym__str_single_quotes] = ACTIONS(2030), + [sym__str_back_ticks] = ACTIONS(2030), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2030), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2030), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2030), + [sym__entry_separator] = ACTIONS(2036), + [anon_sym_register] = ACTIONS(2030), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2344), + [sym_raw_string_begin] = ACTIONS(2036), }, - [602] = { - [sym_comment] = STATE(602), - [anon_sym_export] = ACTIONS(2346), - [anon_sym_alias] = ACTIONS(2346), - [anon_sym_let] = ACTIONS(2346), - [anon_sym_let_DASHenv] = ACTIONS(2346), - [anon_sym_mut] = ACTIONS(2346), - [anon_sym_const] = ACTIONS(2346), - [aux_sym_cmd_identifier_token1] = ACTIONS(2346), - [aux_sym_cmd_identifier_token2] = ACTIONS(2346), - [aux_sym_cmd_identifier_token3] = ACTIONS(2346), - [aux_sym_cmd_identifier_token4] = ACTIONS(2346), - [aux_sym_cmd_identifier_token5] = ACTIONS(2346), - [aux_sym_cmd_identifier_token6] = ACTIONS(2346), - [aux_sym_cmd_identifier_token7] = ACTIONS(2346), - [aux_sym_cmd_identifier_token8] = ACTIONS(2346), - [aux_sym_cmd_identifier_token9] = ACTIONS(2346), - [aux_sym_cmd_identifier_token10] = ACTIONS(2346), - [aux_sym_cmd_identifier_token11] = ACTIONS(2346), - [aux_sym_cmd_identifier_token12] = ACTIONS(2346), - [aux_sym_cmd_identifier_token13] = ACTIONS(2346), - [aux_sym_cmd_identifier_token14] = ACTIONS(2346), - [aux_sym_cmd_identifier_token15] = ACTIONS(2346), - [aux_sym_cmd_identifier_token16] = ACTIONS(2346), - [aux_sym_cmd_identifier_token17] = ACTIONS(2346), - [aux_sym_cmd_identifier_token18] = ACTIONS(2346), - [aux_sym_cmd_identifier_token19] = ACTIONS(2346), - [aux_sym_cmd_identifier_token20] = ACTIONS(2346), - [aux_sym_cmd_identifier_token21] = ACTIONS(2346), - [aux_sym_cmd_identifier_token22] = ACTIONS(2346), - [aux_sym_cmd_identifier_token23] = ACTIONS(2346), - [aux_sym_cmd_identifier_token24] = ACTIONS(2346), - [aux_sym_cmd_identifier_token25] = ACTIONS(2346), - [aux_sym_cmd_identifier_token26] = ACTIONS(2346), - [aux_sym_cmd_identifier_token27] = ACTIONS(2346), - [aux_sym_cmd_identifier_token28] = ACTIONS(2346), - [aux_sym_cmd_identifier_token29] = ACTIONS(2346), - [aux_sym_cmd_identifier_token30] = ACTIONS(2346), - [aux_sym_cmd_identifier_token31] = ACTIONS(2346), - [aux_sym_cmd_identifier_token32] = ACTIONS(2346), - [aux_sym_cmd_identifier_token33] = ACTIONS(2346), - [aux_sym_cmd_identifier_token34] = ACTIONS(2346), - [aux_sym_cmd_identifier_token35] = ACTIONS(2346), - [aux_sym_cmd_identifier_token36] = ACTIONS(2346), - [aux_sym_cmd_identifier_token37] = ACTIONS(2346), - [aux_sym_cmd_identifier_token38] = ACTIONS(2346), - [aux_sym_cmd_identifier_token39] = ACTIONS(2346), - [aux_sym_cmd_identifier_token40] = ACTIONS(2346), - [anon_sym_def] = ACTIONS(2346), - [anon_sym_export_DASHenv] = ACTIONS(2346), - [anon_sym_extern] = ACTIONS(2346), - [anon_sym_module] = ACTIONS(2346), - [anon_sym_use] = ACTIONS(2346), - [anon_sym_LPAREN] = ACTIONS(2346), - [anon_sym_COMMA] = ACTIONS(2346), - [anon_sym_DOLLAR] = ACTIONS(2346), - [anon_sym_error] = ACTIONS(2346), - [anon_sym_DASH2] = ACTIONS(2346), - [anon_sym_break] = ACTIONS(2346), - [anon_sym_continue] = ACTIONS(2346), - [anon_sym_for] = ACTIONS(2346), - [anon_sym_in2] = ACTIONS(2346), - [anon_sym_loop] = ACTIONS(2346), - [anon_sym_make] = ACTIONS(2346), - [anon_sym_while] = ACTIONS(2346), - [anon_sym_do] = ACTIONS(2346), - [anon_sym_if] = ACTIONS(2346), - [anon_sym_else] = ACTIONS(2346), - [anon_sym_match] = ACTIONS(2346), - [anon_sym_RBRACE] = ACTIONS(2346), - [anon_sym_try] = ACTIONS(2346), - [anon_sym_catch] = ACTIONS(2346), - [anon_sym_return] = ACTIONS(2346), - [anon_sym_source] = ACTIONS(2346), - [anon_sym_source_DASHenv] = ACTIONS(2346), - [anon_sym_register] = ACTIONS(2346), - [anon_sym_hide] = ACTIONS(2346), - [anon_sym_hide_DASHenv] = ACTIONS(2346), - [anon_sym_overlay] = ACTIONS(2346), - [anon_sym_as] = ACTIONS(2346), - [anon_sym_PLUS2] = ACTIONS(2346), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2346), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2346), - [aux_sym__val_number_decimal_token1] = ACTIONS(2346), - [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), - [aux_sym__val_number_token4] = ACTIONS(2346), - [aux_sym__val_number_token5] = ACTIONS(2346), - [aux_sym__val_number_token6] = ACTIONS(2346), - [anon_sym_DQUOTE] = ACTIONS(2346), - [sym__str_single_quotes] = ACTIONS(2346), - [sym__str_back_ticks] = ACTIONS(2346), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2346), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2346), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2346), - [sym__entry_separator] = ACTIONS(2348), + [626] = { + [sym_comment] = STATE(626), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(2389), + [anon_sym_DOLLAR] = ACTIONS(2389), + [anon_sym_error] = ACTIONS(2389), + [anon_sym_DASH2] = ACTIONS(2389), + [anon_sym_break] = ACTIONS(2389), + [anon_sym_continue] = ACTIONS(2389), + [anon_sym_for] = ACTIONS(2389), + [anon_sym_in2] = 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_hide] = ACTIONS(2389), + [anon_sym_hide_DASHenv] = ACTIONS(2389), + [anon_sym_overlay] = ACTIONS(2389), + [anon_sym_as] = ACTIONS(2389), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2389), + [aux_sym__val_number_token5] = ACTIONS(2389), + [aux_sym__val_number_token6] = ACTIONS(2389), + [anon_sym_DQUOTE] = ACTIONS(2389), + [sym__str_single_quotes] = ACTIONS(2389), + [sym__str_back_ticks] = ACTIONS(2389), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2389), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2389), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2389), + [sym__entry_separator] = ACTIONS(2391), + [anon_sym_register] = ACTIONS(2389), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2348), + [sym_raw_string_begin] = ACTIONS(2391), }, - [603] = { - [sym_comment] = STATE(603), - [anon_sym_export] = ACTIONS(1969), - [anon_sym_alias] = ACTIONS(1969), - [anon_sym_let] = ACTIONS(1969), - [anon_sym_let_DASHenv] = ACTIONS(1969), - [anon_sym_mut] = ACTIONS(1969), - [anon_sym_const] = ACTIONS(1969), - [aux_sym_cmd_identifier_token1] = ACTIONS(1969), - [aux_sym_cmd_identifier_token2] = ACTIONS(1969), - [aux_sym_cmd_identifier_token3] = ACTIONS(1969), - [aux_sym_cmd_identifier_token4] = ACTIONS(1969), - [aux_sym_cmd_identifier_token5] = ACTIONS(1969), - [aux_sym_cmd_identifier_token6] = ACTIONS(1969), - [aux_sym_cmd_identifier_token7] = ACTIONS(1969), - [aux_sym_cmd_identifier_token8] = ACTIONS(1969), - [aux_sym_cmd_identifier_token9] = ACTIONS(1969), - [aux_sym_cmd_identifier_token10] = ACTIONS(1969), - [aux_sym_cmd_identifier_token11] = ACTIONS(1969), - [aux_sym_cmd_identifier_token12] = ACTIONS(1969), - [aux_sym_cmd_identifier_token13] = ACTIONS(1969), - [aux_sym_cmd_identifier_token14] = ACTIONS(1969), - [aux_sym_cmd_identifier_token15] = ACTIONS(1969), - [aux_sym_cmd_identifier_token16] = ACTIONS(1969), - [aux_sym_cmd_identifier_token17] = ACTIONS(1969), - [aux_sym_cmd_identifier_token18] = ACTIONS(1969), - [aux_sym_cmd_identifier_token19] = ACTIONS(1969), - [aux_sym_cmd_identifier_token20] = ACTIONS(1969), - [aux_sym_cmd_identifier_token21] = ACTIONS(1969), - [aux_sym_cmd_identifier_token22] = ACTIONS(1969), - [aux_sym_cmd_identifier_token23] = ACTIONS(1969), - [aux_sym_cmd_identifier_token24] = ACTIONS(1969), - [aux_sym_cmd_identifier_token25] = ACTIONS(1969), - [aux_sym_cmd_identifier_token26] = ACTIONS(1969), - [aux_sym_cmd_identifier_token27] = ACTIONS(1969), - [aux_sym_cmd_identifier_token28] = ACTIONS(1969), - [aux_sym_cmd_identifier_token29] = ACTIONS(1969), - [aux_sym_cmd_identifier_token30] = ACTIONS(1969), - [aux_sym_cmd_identifier_token31] = ACTIONS(1969), - [aux_sym_cmd_identifier_token32] = ACTIONS(1969), - [aux_sym_cmd_identifier_token33] = ACTIONS(1969), - [aux_sym_cmd_identifier_token34] = ACTIONS(1969), - [aux_sym_cmd_identifier_token35] = ACTIONS(1969), - [aux_sym_cmd_identifier_token36] = ACTIONS(1969), - [aux_sym_cmd_identifier_token37] = ACTIONS(1969), - [aux_sym_cmd_identifier_token38] = ACTIONS(1969), - [aux_sym_cmd_identifier_token39] = ACTIONS(1969), - [aux_sym_cmd_identifier_token40] = ACTIONS(1969), - [anon_sym_def] = ACTIONS(1969), - [anon_sym_export_DASHenv] = ACTIONS(1969), - [anon_sym_extern] = ACTIONS(1969), - [anon_sym_module] = ACTIONS(1969), - [anon_sym_use] = ACTIONS(1969), - [anon_sym_LPAREN] = ACTIONS(1969), - [anon_sym_COMMA] = ACTIONS(1969), - [anon_sym_DOLLAR] = ACTIONS(1969), - [anon_sym_error] = ACTIONS(1969), - [anon_sym_DASH2] = ACTIONS(1969), - [anon_sym_break] = ACTIONS(1969), - [anon_sym_continue] = ACTIONS(1969), - [anon_sym_for] = ACTIONS(1969), - [anon_sym_in2] = ACTIONS(1969), - [anon_sym_loop] = ACTIONS(1969), - [anon_sym_make] = ACTIONS(1969), - [anon_sym_while] = ACTIONS(1969), - [anon_sym_do] = ACTIONS(1969), - [anon_sym_if] = ACTIONS(1969), - [anon_sym_else] = ACTIONS(1969), - [anon_sym_match] = ACTIONS(1969), - [anon_sym_RBRACE] = ACTIONS(1969), - [anon_sym_try] = ACTIONS(1969), - [anon_sym_catch] = ACTIONS(1969), - [anon_sym_return] = ACTIONS(1969), - [anon_sym_source] = ACTIONS(1969), - [anon_sym_source_DASHenv] = ACTIONS(1969), - [anon_sym_register] = ACTIONS(1969), - [anon_sym_hide] = ACTIONS(1969), - [anon_sym_hide_DASHenv] = ACTIONS(1969), - [anon_sym_overlay] = ACTIONS(1969), - [anon_sym_as] = ACTIONS(1969), - [anon_sym_PLUS2] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1969), - [aux_sym__val_number_decimal_token1] = ACTIONS(1969), - [aux_sym__val_number_decimal_token2] = ACTIONS(1969), - [aux_sym__val_number_decimal_token3] = ACTIONS(1969), - [aux_sym__val_number_decimal_token4] = ACTIONS(1969), - [aux_sym__val_number_token1] = ACTIONS(1969), - [aux_sym__val_number_token2] = ACTIONS(1969), - [aux_sym__val_number_token3] = ACTIONS(1969), - [aux_sym__val_number_token4] = ACTIONS(1969), - [aux_sym__val_number_token5] = ACTIONS(1969), - [aux_sym__val_number_token6] = ACTIONS(1969), - [anon_sym_DQUOTE] = ACTIONS(1969), - [sym__str_single_quotes] = ACTIONS(1969), - [sym__str_back_ticks] = ACTIONS(1969), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1969), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1969), - [sym__entry_separator] = ACTIONS(1971), + [627] = { + [sym_comment] = STATE(627), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(2393), + [anon_sym_DOLLAR] = ACTIONS(2393), + [anon_sym_error] = ACTIONS(2393), + [anon_sym_DASH2] = ACTIONS(2393), + [anon_sym_break] = ACTIONS(2393), + [anon_sym_continue] = ACTIONS(2393), + [anon_sym_for] = ACTIONS(2393), + [anon_sym_in2] = 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_hide] = ACTIONS(2393), + [anon_sym_hide_DASHenv] = ACTIONS(2393), + [anon_sym_overlay] = ACTIONS(2393), + [anon_sym_as] = ACTIONS(2393), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2393), + [aux_sym__val_number_token5] = ACTIONS(2393), + [aux_sym__val_number_token6] = ACTIONS(2393), + [anon_sym_DQUOTE] = ACTIONS(2393), + [sym__str_single_quotes] = ACTIONS(2393), + [sym__str_back_ticks] = ACTIONS(2393), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2393), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2393), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2393), + [sym__entry_separator] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2393), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1971), + [sym_raw_string_begin] = ACTIONS(2395), }, - [604] = { - [sym_comment] = STATE(604), + [628] = { + [sym_comment] = STATE(628), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(2397), + [anon_sym_DOLLAR] = ACTIONS(2397), + [anon_sym_error] = ACTIONS(2397), + [anon_sym_DASH2] = ACTIONS(2397), + [anon_sym_break] = ACTIONS(2397), + [anon_sym_continue] = ACTIONS(2397), + [anon_sym_for] = ACTIONS(2397), + [anon_sym_in2] = 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_hide] = ACTIONS(2397), + [anon_sym_hide_DASHenv] = ACTIONS(2397), + [anon_sym_overlay] = ACTIONS(2397), + [anon_sym_as] = ACTIONS(2397), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2397), + [aux_sym__val_number_token5] = ACTIONS(2397), + [aux_sym__val_number_token6] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym__str_single_quotes] = ACTIONS(2397), + [sym__str_back_ticks] = ACTIONS(2397), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2397), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2397), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2397), + [sym__entry_separator] = ACTIONS(2399), + [anon_sym_register] = ACTIONS(2397), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2399), + }, + [629] = { + [sym_comment] = STATE(629), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(2401), + [anon_sym_DOLLAR] = ACTIONS(2401), + [anon_sym_error] = ACTIONS(2401), + [anon_sym_DASH2] = ACTIONS(2401), + [anon_sym_break] = ACTIONS(2401), + [anon_sym_continue] = ACTIONS(2401), + [anon_sym_for] = ACTIONS(2401), + [anon_sym_in2] = 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_hide] = ACTIONS(2401), + [anon_sym_hide_DASHenv] = ACTIONS(2401), + [anon_sym_overlay] = ACTIONS(2401), + [anon_sym_as] = ACTIONS(2401), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2401), + [aux_sym__val_number_token5] = ACTIONS(2401), + [aux_sym__val_number_token6] = ACTIONS(2401), + [anon_sym_DQUOTE] = ACTIONS(2401), + [sym__str_single_quotes] = ACTIONS(2401), + [sym__str_back_ticks] = ACTIONS(2401), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2401), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2401), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2401), + [sym__entry_separator] = ACTIONS(2403), + [anon_sym_register] = ACTIONS(2401), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2403), + }, + [630] = { + [sym_comment] = STATE(630), + [aux_sym__multiple_types_repeat1] = STATE(619), + [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), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(2348), + [anon_sym_break] = ACTIONS(2348), + [anon_sym_continue] = ACTIONS(2348), + [anon_sym_for] = ACTIONS(2348), + [anon_sym_in2] = 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(2405), + [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_hide] = ACTIONS(2348), + [anon_sym_hide_DASHenv] = ACTIONS(2348), + [anon_sym_overlay] = ACTIONS(2348), + [anon_sym_as] = ACTIONS(2348), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2348), + [aux_sym__val_number_token5] = ACTIONS(2348), + [aux_sym__val_number_token6] = ACTIONS(2348), + [anon_sym_DQUOTE] = ACTIONS(2348), + [sym__str_single_quotes] = ACTIONS(2348), + [sym__str_back_ticks] = ACTIONS(2348), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2348), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2348), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2348), + [sym__entry_separator] = ACTIONS(2230), + [anon_sym_register] = ACTIONS(2348), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2352), + }, + [631] = { + [sym_comment] = STATE(631), + [anon_sym_export] = ACTIONS(1977), + [anon_sym_alias] = ACTIONS(1977), + [anon_sym_let] = ACTIONS(1977), + [anon_sym_let_DASHenv] = ACTIONS(1977), + [anon_sym_mut] = ACTIONS(1977), + [anon_sym_const] = ACTIONS(1977), + [aux_sym_cmd_identifier_token1] = ACTIONS(1977), + [aux_sym_cmd_identifier_token2] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1977), + [aux_sym_cmd_identifier_token4] = ACTIONS(1977), + [aux_sym_cmd_identifier_token5] = ACTIONS(1977), + [aux_sym_cmd_identifier_token6] = ACTIONS(1977), + [aux_sym_cmd_identifier_token7] = ACTIONS(1977), + [aux_sym_cmd_identifier_token8] = ACTIONS(1977), + [aux_sym_cmd_identifier_token9] = ACTIONS(1977), + [aux_sym_cmd_identifier_token10] = ACTIONS(1977), + [aux_sym_cmd_identifier_token11] = ACTIONS(1977), + [aux_sym_cmd_identifier_token12] = ACTIONS(1977), + [aux_sym_cmd_identifier_token13] = ACTIONS(1977), + [aux_sym_cmd_identifier_token14] = ACTIONS(1977), + [aux_sym_cmd_identifier_token15] = ACTIONS(1977), + [aux_sym_cmd_identifier_token16] = ACTIONS(1977), + [aux_sym_cmd_identifier_token17] = ACTIONS(1977), + [aux_sym_cmd_identifier_token18] = ACTIONS(1977), + [aux_sym_cmd_identifier_token19] = ACTIONS(1977), + [aux_sym_cmd_identifier_token20] = ACTIONS(1977), + [aux_sym_cmd_identifier_token21] = ACTIONS(1977), + [aux_sym_cmd_identifier_token22] = ACTIONS(1977), + [aux_sym_cmd_identifier_token23] = ACTIONS(1977), + [aux_sym_cmd_identifier_token24] = ACTIONS(1977), + [aux_sym_cmd_identifier_token25] = ACTIONS(1977), + [aux_sym_cmd_identifier_token26] = ACTIONS(1977), + [aux_sym_cmd_identifier_token27] = ACTIONS(1977), + [aux_sym_cmd_identifier_token28] = ACTIONS(1977), + [aux_sym_cmd_identifier_token29] = ACTIONS(1977), + [aux_sym_cmd_identifier_token30] = ACTIONS(1977), + [aux_sym_cmd_identifier_token31] = ACTIONS(1977), + [aux_sym_cmd_identifier_token32] = ACTIONS(1977), + [aux_sym_cmd_identifier_token33] = ACTIONS(1977), + [aux_sym_cmd_identifier_token34] = ACTIONS(1977), + [aux_sym_cmd_identifier_token35] = ACTIONS(1977), + [aux_sym_cmd_identifier_token36] = ACTIONS(1977), + [aux_sym_cmd_identifier_token37] = ACTIONS(1977), + [aux_sym_cmd_identifier_token38] = ACTIONS(1977), + [aux_sym_cmd_identifier_token39] = ACTIONS(1977), + [aux_sym_cmd_identifier_token40] = ACTIONS(1977), + [anon_sym_def] = ACTIONS(1977), + [anon_sym_export_DASHenv] = ACTIONS(1977), + [anon_sym_extern] = ACTIONS(1977), + [anon_sym_module] = ACTIONS(1977), + [anon_sym_use] = ACTIONS(1977), + [anon_sym_LPAREN] = ACTIONS(1977), + [anon_sym_COMMA] = ACTIONS(1977), + [anon_sym_DOLLAR] = ACTIONS(1977), + [anon_sym_error] = ACTIONS(1977), + [anon_sym_DASH2] = ACTIONS(1977), + [anon_sym_break] = ACTIONS(1977), + [anon_sym_continue] = ACTIONS(1977), + [anon_sym_for] = ACTIONS(1977), + [anon_sym_in2] = ACTIONS(1977), + [anon_sym_loop] = ACTIONS(1977), + [anon_sym_make] = ACTIONS(1977), + [anon_sym_while] = ACTIONS(1977), + [anon_sym_do] = ACTIONS(1977), + [anon_sym_if] = ACTIONS(1977), + [anon_sym_else] = ACTIONS(1977), + [anon_sym_match] = ACTIONS(1977), + [anon_sym_RBRACE] = ACTIONS(1977), + [anon_sym_try] = ACTIONS(1977), + [anon_sym_catch] = ACTIONS(1977), + [anon_sym_return] = ACTIONS(1977), + [anon_sym_source] = ACTIONS(1977), + [anon_sym_source_DASHenv] = ACTIONS(1977), + [anon_sym_hide] = ACTIONS(1977), + [anon_sym_hide_DASHenv] = ACTIONS(1977), + [anon_sym_overlay] = ACTIONS(1977), + [anon_sym_as] = ACTIONS(1977), + [anon_sym_PLUS2] = ACTIONS(1977), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1977), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1977), + [aux_sym__val_number_decimal_token1] = ACTIONS(1977), + [aux_sym__val_number_decimal_token2] = ACTIONS(1977), + [aux_sym__val_number_decimal_token3] = ACTIONS(1977), + [aux_sym__val_number_decimal_token4] = ACTIONS(1977), + [aux_sym__val_number_token1] = ACTIONS(1977), + [aux_sym__val_number_token2] = ACTIONS(1977), + [aux_sym__val_number_token3] = ACTIONS(1977), + [aux_sym__val_number_token4] = ACTIONS(1977), + [aux_sym__val_number_token5] = ACTIONS(1977), + [aux_sym__val_number_token6] = ACTIONS(1977), + [anon_sym_DQUOTE] = ACTIONS(1977), + [sym__str_single_quotes] = ACTIONS(1977), + [sym__str_back_ticks] = ACTIONS(1977), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1977), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1977), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1977), + [sym__entry_separator] = ACTIONS(1983), + [anon_sym_register] = ACTIONS(1977), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1983), + }, + [632] = { + [sym_comment] = STATE(632), + [anon_sym_export] = ACTIONS(2407), + [anon_sym_alias] = ACTIONS(2407), + [anon_sym_let] = ACTIONS(2407), + [anon_sym_let_DASHenv] = ACTIONS(2407), + [anon_sym_mut] = ACTIONS(2407), + [anon_sym_const] = ACTIONS(2407), + [aux_sym_cmd_identifier_token1] = ACTIONS(2407), + [aux_sym_cmd_identifier_token2] = ACTIONS(2407), + [aux_sym_cmd_identifier_token3] = ACTIONS(2407), + [aux_sym_cmd_identifier_token4] = ACTIONS(2407), + [aux_sym_cmd_identifier_token5] = ACTIONS(2407), + [aux_sym_cmd_identifier_token6] = ACTIONS(2407), + [aux_sym_cmd_identifier_token7] = ACTIONS(2407), + [aux_sym_cmd_identifier_token8] = ACTIONS(2407), + [aux_sym_cmd_identifier_token9] = ACTIONS(2407), + [aux_sym_cmd_identifier_token10] = ACTIONS(2407), + [aux_sym_cmd_identifier_token11] = ACTIONS(2407), + [aux_sym_cmd_identifier_token12] = ACTIONS(2407), + [aux_sym_cmd_identifier_token13] = ACTIONS(2407), + [aux_sym_cmd_identifier_token14] = ACTIONS(2407), + [aux_sym_cmd_identifier_token15] = ACTIONS(2407), + [aux_sym_cmd_identifier_token16] = ACTIONS(2407), + [aux_sym_cmd_identifier_token17] = ACTIONS(2407), + [aux_sym_cmd_identifier_token18] = ACTIONS(2407), + [aux_sym_cmd_identifier_token19] = ACTIONS(2407), + [aux_sym_cmd_identifier_token20] = ACTIONS(2407), + [aux_sym_cmd_identifier_token21] = ACTIONS(2407), + [aux_sym_cmd_identifier_token22] = ACTIONS(2407), + [aux_sym_cmd_identifier_token23] = ACTIONS(2407), + [aux_sym_cmd_identifier_token24] = ACTIONS(2407), + [aux_sym_cmd_identifier_token25] = ACTIONS(2407), + [aux_sym_cmd_identifier_token26] = ACTIONS(2407), + [aux_sym_cmd_identifier_token27] = ACTIONS(2407), + [aux_sym_cmd_identifier_token28] = ACTIONS(2407), + [aux_sym_cmd_identifier_token29] = ACTIONS(2407), + [aux_sym_cmd_identifier_token30] = ACTIONS(2407), + [aux_sym_cmd_identifier_token31] = ACTIONS(2407), + [aux_sym_cmd_identifier_token32] = ACTIONS(2407), + [aux_sym_cmd_identifier_token33] = ACTIONS(2407), + [aux_sym_cmd_identifier_token34] = ACTIONS(2407), + [aux_sym_cmd_identifier_token35] = ACTIONS(2407), + [aux_sym_cmd_identifier_token36] = ACTIONS(2407), + [aux_sym_cmd_identifier_token37] = ACTIONS(2407), + [aux_sym_cmd_identifier_token38] = ACTIONS(2407), + [aux_sym_cmd_identifier_token39] = ACTIONS(2407), + [aux_sym_cmd_identifier_token40] = ACTIONS(2407), + [anon_sym_def] = ACTIONS(2407), + [anon_sym_export_DASHenv] = ACTIONS(2407), + [anon_sym_extern] = ACTIONS(2407), + [anon_sym_module] = ACTIONS(2407), + [anon_sym_use] = ACTIONS(2407), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_COMMA] = ACTIONS(2407), + [anon_sym_DOLLAR] = ACTIONS(2407), + [anon_sym_error] = ACTIONS(2407), + [anon_sym_DASH2] = ACTIONS(2407), + [anon_sym_break] = ACTIONS(2407), + [anon_sym_continue] = ACTIONS(2407), + [anon_sym_for] = ACTIONS(2407), + [anon_sym_in2] = ACTIONS(2407), + [anon_sym_loop] = ACTIONS(2407), + [anon_sym_make] = ACTIONS(2407), + [anon_sym_while] = ACTIONS(2407), + [anon_sym_do] = ACTIONS(2407), + [anon_sym_if] = ACTIONS(2407), + [anon_sym_else] = ACTIONS(2407), + [anon_sym_match] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_try] = ACTIONS(2407), + [anon_sym_catch] = ACTIONS(2407), + [anon_sym_return] = ACTIONS(2407), + [anon_sym_source] = ACTIONS(2407), + [anon_sym_source_DASHenv] = ACTIONS(2407), + [anon_sym_hide] = ACTIONS(2407), + [anon_sym_hide_DASHenv] = ACTIONS(2407), + [anon_sym_overlay] = ACTIONS(2407), + [anon_sym_as] = ACTIONS(2407), + [anon_sym_PLUS2] = ACTIONS(2407), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2407), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2407), + [aux_sym__val_number_decimal_token1] = ACTIONS(2407), + [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), + [aux_sym__val_number_token4] = ACTIONS(2407), + [aux_sym__val_number_token5] = ACTIONS(2407), + [aux_sym__val_number_token6] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym__str_single_quotes] = ACTIONS(2407), + [sym__str_back_ticks] = ACTIONS(2407), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2407), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2407), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2407), + [sym__entry_separator] = ACTIONS(2409), + [anon_sym_register] = ACTIONS(2407), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2409), + }, + [633] = { + [sym_comment] = STATE(633), + [anon_sym_export] = ACTIONS(2298), + [anon_sym_alias] = ACTIONS(2298), + [anon_sym_let] = ACTIONS(2298), + [anon_sym_let_DASHenv] = ACTIONS(2298), + [anon_sym_mut] = ACTIONS(2298), + [anon_sym_const] = ACTIONS(2298), + [aux_sym_cmd_identifier_token1] = ACTIONS(2298), + [aux_sym_cmd_identifier_token2] = ACTIONS(2300), + [aux_sym_cmd_identifier_token3] = ACTIONS(2300), + [aux_sym_cmd_identifier_token4] = ACTIONS(2300), + [aux_sym_cmd_identifier_token5] = ACTIONS(2300), + [aux_sym_cmd_identifier_token6] = ACTIONS(2300), + [aux_sym_cmd_identifier_token7] = ACTIONS(2300), + [aux_sym_cmd_identifier_token8] = ACTIONS(2298), + [aux_sym_cmd_identifier_token9] = ACTIONS(2298), + [aux_sym_cmd_identifier_token10] = ACTIONS(2300), + [aux_sym_cmd_identifier_token11] = ACTIONS(2300), + [aux_sym_cmd_identifier_token12] = ACTIONS(2298), + [aux_sym_cmd_identifier_token13] = ACTIONS(2298), + [aux_sym_cmd_identifier_token14] = ACTIONS(2298), + [aux_sym_cmd_identifier_token15] = ACTIONS(2298), + [aux_sym_cmd_identifier_token16] = ACTIONS(2300), + [aux_sym_cmd_identifier_token17] = ACTIONS(2300), + [aux_sym_cmd_identifier_token18] = ACTIONS(2300), + [aux_sym_cmd_identifier_token19] = ACTIONS(2300), + [aux_sym_cmd_identifier_token20] = ACTIONS(2300), + [aux_sym_cmd_identifier_token21] = ACTIONS(2300), + [aux_sym_cmd_identifier_token22] = ACTIONS(2300), + [aux_sym_cmd_identifier_token23] = ACTIONS(2300), + [aux_sym_cmd_identifier_token24] = ACTIONS(2300), + [aux_sym_cmd_identifier_token25] = ACTIONS(2300), + [aux_sym_cmd_identifier_token26] = ACTIONS(2300), + [aux_sym_cmd_identifier_token27] = ACTIONS(2300), + [aux_sym_cmd_identifier_token28] = ACTIONS(2300), + [aux_sym_cmd_identifier_token29] = ACTIONS(2300), + [aux_sym_cmd_identifier_token30] = ACTIONS(2300), + [aux_sym_cmd_identifier_token31] = ACTIONS(2300), + [aux_sym_cmd_identifier_token32] = ACTIONS(2300), + [aux_sym_cmd_identifier_token33] = ACTIONS(2300), + [aux_sym_cmd_identifier_token34] = ACTIONS(2298), + [aux_sym_cmd_identifier_token35] = ACTIONS(2300), + [aux_sym_cmd_identifier_token36] = ACTIONS(2300), + [aux_sym_cmd_identifier_token37] = ACTIONS(2300), + [aux_sym_cmd_identifier_token38] = ACTIONS(2298), + [aux_sym_cmd_identifier_token39] = ACTIONS(2300), + [aux_sym_cmd_identifier_token40] = ACTIONS(2300), + [anon_sym_def] = ACTIONS(2298), + [anon_sym_export_DASHenv] = ACTIONS(2298), + [anon_sym_extern] = ACTIONS(2298), + [anon_sym_module] = ACTIONS(2298), + [anon_sym_use] = ACTIONS(2298), + [anon_sym_LPAREN] = ACTIONS(2298), + [anon_sym_COMMA] = ACTIONS(2300), + [anon_sym_DOLLAR] = ACTIONS(2298), + [anon_sym_error] = ACTIONS(2298), + [anon_sym_DASH2] = ACTIONS(2298), + [anon_sym_break] = ACTIONS(2298), + [anon_sym_continue] = ACTIONS(2298), + [anon_sym_for] = ACTIONS(2298), + [anon_sym_in2] = ACTIONS(2298), + [anon_sym_loop] = ACTIONS(2298), + [anon_sym_make] = ACTIONS(2298), + [anon_sym_while] = ACTIONS(2298), + [anon_sym_do] = ACTIONS(2298), + [anon_sym_if] = ACTIONS(2298), + [anon_sym_else] = ACTIONS(2298), + [anon_sym_match] = ACTIONS(2298), + [anon_sym_RBRACE] = ACTIONS(2300), + [anon_sym_try] = ACTIONS(2298), + [anon_sym_catch] = ACTIONS(2298), + [anon_sym_return] = ACTIONS(2298), + [anon_sym_source] = ACTIONS(2298), + [anon_sym_source_DASHenv] = ACTIONS(2298), + [anon_sym_hide] = ACTIONS(2298), + [anon_sym_hide_DASHenv] = ACTIONS(2298), + [anon_sym_overlay] = ACTIONS(2298), + [anon_sym_as] = ACTIONS(2298), + [anon_sym_LPAREN2] = ACTIONS(2300), + [anon_sym_PLUS2] = ACTIONS(2298), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2300), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2300), + [aux_sym__val_number_decimal_token1] = ACTIONS(2298), + [aux_sym__val_number_decimal_token2] = ACTIONS(2300), + [aux_sym__val_number_decimal_token3] = ACTIONS(2300), + [aux_sym__val_number_decimal_token4] = ACTIONS(2300), + [aux_sym__val_number_token1] = ACTIONS(2300), + [aux_sym__val_number_token2] = ACTIONS(2300), + [aux_sym__val_number_token3] = ACTIONS(2300), + [aux_sym__val_number_token4] = ACTIONS(2298), + [aux_sym__val_number_token5] = ACTIONS(2298), + [aux_sym__val_number_token6] = ACTIONS(2298), + [anon_sym_DQUOTE] = ACTIONS(2300), + [sym__str_single_quotes] = ACTIONS(2300), + [sym__str_back_ticks] = ACTIONS(2300), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2300), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2300), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2300), + [anon_sym_register] = ACTIONS(2298), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2300), + }, + [634] = { + [sym_comment] = STATE(634), + [anon_sym_export] = ACTIONS(2000), + [anon_sym_alias] = ACTIONS(2000), + [anon_sym_let] = ACTIONS(2000), + [anon_sym_let_DASHenv] = ACTIONS(2000), + [anon_sym_mut] = ACTIONS(2000), + [anon_sym_const] = ACTIONS(2000), + [aux_sym_cmd_identifier_token1] = ACTIONS(2000), + [aux_sym_cmd_identifier_token2] = ACTIONS(2000), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [aux_sym_cmd_identifier_token6] = ACTIONS(2000), + [aux_sym_cmd_identifier_token7] = ACTIONS(2000), + [aux_sym_cmd_identifier_token8] = ACTIONS(2000), + [aux_sym_cmd_identifier_token9] = ACTIONS(2000), + [aux_sym_cmd_identifier_token10] = ACTIONS(2000), + [aux_sym_cmd_identifier_token11] = ACTIONS(2000), + [aux_sym_cmd_identifier_token12] = ACTIONS(2000), + [aux_sym_cmd_identifier_token13] = ACTIONS(2000), + [aux_sym_cmd_identifier_token14] = ACTIONS(2000), + [aux_sym_cmd_identifier_token15] = ACTIONS(2000), + [aux_sym_cmd_identifier_token16] = ACTIONS(2000), + [aux_sym_cmd_identifier_token17] = ACTIONS(2000), + [aux_sym_cmd_identifier_token18] = ACTIONS(2000), + [aux_sym_cmd_identifier_token19] = ACTIONS(2000), + [aux_sym_cmd_identifier_token20] = ACTIONS(2000), + [aux_sym_cmd_identifier_token21] = ACTIONS(2000), + [aux_sym_cmd_identifier_token22] = ACTIONS(2000), + [aux_sym_cmd_identifier_token23] = ACTIONS(2000), + [aux_sym_cmd_identifier_token24] = ACTIONS(2000), + [aux_sym_cmd_identifier_token25] = ACTIONS(2000), + [aux_sym_cmd_identifier_token26] = ACTIONS(2000), + [aux_sym_cmd_identifier_token27] = ACTIONS(2000), + [aux_sym_cmd_identifier_token28] = ACTIONS(2000), + [aux_sym_cmd_identifier_token29] = ACTIONS(2000), + [aux_sym_cmd_identifier_token30] = ACTIONS(2000), + [aux_sym_cmd_identifier_token31] = ACTIONS(2000), + [aux_sym_cmd_identifier_token32] = ACTIONS(2000), + [aux_sym_cmd_identifier_token33] = ACTIONS(2000), + [aux_sym_cmd_identifier_token34] = ACTIONS(2000), + [aux_sym_cmd_identifier_token35] = ACTIONS(2000), + [aux_sym_cmd_identifier_token36] = ACTIONS(2000), + [aux_sym_cmd_identifier_token37] = ACTIONS(2000), + [aux_sym_cmd_identifier_token38] = ACTIONS(2000), + [aux_sym_cmd_identifier_token39] = ACTIONS(2000), + [aux_sym_cmd_identifier_token40] = ACTIONS(2000), + [anon_sym_def] = ACTIONS(2000), + [anon_sym_export_DASHenv] = ACTIONS(2000), + [anon_sym_extern] = ACTIONS(2000), + [anon_sym_module] = ACTIONS(2000), + [anon_sym_use] = ACTIONS(2000), + [anon_sym_LPAREN] = ACTIONS(2000), + [anon_sym_COMMA] = ACTIONS(2000), + [anon_sym_DOLLAR] = ACTIONS(2000), + [anon_sym_error] = ACTIONS(2000), + [anon_sym_DASH2] = ACTIONS(2000), + [anon_sym_break] = ACTIONS(2000), + [anon_sym_continue] = ACTIONS(2000), + [anon_sym_for] = ACTIONS(2000), + [anon_sym_in2] = ACTIONS(2000), + [anon_sym_loop] = ACTIONS(2000), + [anon_sym_make] = ACTIONS(2000), + [anon_sym_while] = ACTIONS(2000), + [anon_sym_do] = ACTIONS(2000), + [anon_sym_if] = ACTIONS(2000), + [anon_sym_else] = ACTIONS(2000), + [anon_sym_match] = ACTIONS(2000), + [anon_sym_RBRACE] = ACTIONS(2000), + [anon_sym_try] = ACTIONS(2000), + [anon_sym_catch] = ACTIONS(2000), + [anon_sym_return] = ACTIONS(2000), + [anon_sym_source] = ACTIONS(2000), + [anon_sym_source_DASHenv] = ACTIONS(2000), + [anon_sym_hide] = ACTIONS(2000), + [anon_sym_hide_DASHenv] = ACTIONS(2000), + [anon_sym_overlay] = ACTIONS(2000), + [anon_sym_as] = ACTIONS(2000), + [anon_sym_PLUS2] = ACTIONS(2000), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2000), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2000), + [aux_sym__val_number_decimal_token1] = ACTIONS(2000), + [aux_sym__val_number_decimal_token2] = ACTIONS(2000), + [aux_sym__val_number_decimal_token3] = ACTIONS(2000), + [aux_sym__val_number_decimal_token4] = ACTIONS(2000), + [aux_sym__val_number_token1] = ACTIONS(2000), + [aux_sym__val_number_token2] = ACTIONS(2000), + [aux_sym__val_number_token3] = ACTIONS(2000), + [aux_sym__val_number_token4] = ACTIONS(2000), + [aux_sym__val_number_token5] = ACTIONS(2000), + [aux_sym__val_number_token6] = ACTIONS(2000), + [anon_sym_DQUOTE] = ACTIONS(2000), + [sym__str_single_quotes] = ACTIONS(2000), + [sym__str_back_ticks] = ACTIONS(2000), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2000), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2000), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2000), + [sym__entry_separator] = ACTIONS(2006), + [anon_sym_register] = ACTIONS(2000), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2006), + }, + [635] = { + [sym_comment] = STATE(635), + [aux_sym__multiple_types_repeat1] = STATE(619), + [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), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(2348), + [anon_sym_break] = ACTIONS(2348), + [anon_sym_continue] = ACTIONS(2348), + [anon_sym_for] = ACTIONS(2348), + [anon_sym_in2] = 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(2411), + [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_hide] = ACTIONS(2348), + [anon_sym_hide_DASHenv] = ACTIONS(2348), + [anon_sym_overlay] = ACTIONS(2348), + [anon_sym_as] = ACTIONS(2348), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2348), + [aux_sym__val_number_token5] = ACTIONS(2348), + [aux_sym__val_number_token6] = ACTIONS(2348), + [anon_sym_DQUOTE] = ACTIONS(2348), + [sym__str_single_quotes] = ACTIONS(2348), + [sym__str_back_ticks] = ACTIONS(2348), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2348), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2348), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2348), + [sym__entry_separator] = ACTIONS(2230), + [anon_sym_register] = ACTIONS(2348), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2352), + }, + [636] = { + [sym_comment] = STATE(636), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1935), + [anon_sym_DOLLAR] = ACTIONS(1935), + [anon_sym_error] = ACTIONS(1935), + [anon_sym_DASH2] = ACTIONS(1935), + [anon_sym_break] = ACTIONS(1935), + [anon_sym_continue] = ACTIONS(1935), + [anon_sym_for] = ACTIONS(1935), + [anon_sym_in2] = 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_hide] = ACTIONS(1935), + [anon_sym_hide_DASHenv] = ACTIONS(1935), + [anon_sym_overlay] = ACTIONS(1935), + [anon_sym_as] = ACTIONS(1935), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(1935), + [aux_sym__val_number_token5] = ACTIONS(1935), + [aux_sym__val_number_token6] = ACTIONS(1935), + [anon_sym_DQUOTE] = ACTIONS(1935), + [sym__str_single_quotes] = ACTIONS(1935), + [sym__str_back_ticks] = ACTIONS(1935), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1935), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1935), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1935), + [sym__entry_separator] = ACTIONS(1937), + [anon_sym_register] = ACTIONS(1935), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1937), + }, + [637] = { + [sym_comment] = STATE(637), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(2413), + [anon_sym_DOLLAR] = ACTIONS(2413), + [anon_sym_error] = ACTIONS(2413), + [anon_sym_DASH2] = ACTIONS(2413), + [anon_sym_break] = ACTIONS(2413), + [anon_sym_continue] = ACTIONS(2413), + [anon_sym_for] = ACTIONS(2413), + [anon_sym_in2] = 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_hide] = ACTIONS(2413), + [anon_sym_hide_DASHenv] = ACTIONS(2413), + [anon_sym_overlay] = ACTIONS(2413), + [anon_sym_as] = ACTIONS(2413), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2413), + [aux_sym__val_number_token5] = ACTIONS(2413), + [aux_sym__val_number_token6] = ACTIONS(2413), + [anon_sym_DQUOTE] = ACTIONS(2413), + [sym__str_single_quotes] = ACTIONS(2413), + [sym__str_back_ticks] = ACTIONS(2413), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2413), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2413), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2413), + [sym__entry_separator] = ACTIONS(2415), + [anon_sym_register] = ACTIONS(2413), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2415), + }, + [638] = { + [sym_comment] = STATE(638), + [anon_sym_export] = ACTIONS(1833), + [anon_sym_alias] = ACTIONS(1833), + [anon_sym_let] = ACTIONS(1833), + [anon_sym_let_DASHenv] = ACTIONS(1833), + [anon_sym_mut] = ACTIONS(1833), + [anon_sym_const] = ACTIONS(1833), + [aux_sym_cmd_identifier_token1] = ACTIONS(1833), + [aux_sym_cmd_identifier_token2] = ACTIONS(1833), + [aux_sym_cmd_identifier_token3] = ACTIONS(1833), + [aux_sym_cmd_identifier_token4] = ACTIONS(1833), + [aux_sym_cmd_identifier_token5] = ACTIONS(1833), + [aux_sym_cmd_identifier_token6] = ACTIONS(1833), + [aux_sym_cmd_identifier_token7] = ACTIONS(1833), + [aux_sym_cmd_identifier_token8] = ACTIONS(1833), + [aux_sym_cmd_identifier_token9] = ACTIONS(1833), + [aux_sym_cmd_identifier_token10] = ACTIONS(1833), + [aux_sym_cmd_identifier_token11] = ACTIONS(1833), + [aux_sym_cmd_identifier_token12] = ACTIONS(1833), + [aux_sym_cmd_identifier_token13] = ACTIONS(1833), + [aux_sym_cmd_identifier_token14] = ACTIONS(1833), + [aux_sym_cmd_identifier_token15] = ACTIONS(1833), + [aux_sym_cmd_identifier_token16] = ACTIONS(1833), + [aux_sym_cmd_identifier_token17] = ACTIONS(1833), + [aux_sym_cmd_identifier_token18] = ACTIONS(1833), + [aux_sym_cmd_identifier_token19] = ACTIONS(1833), + [aux_sym_cmd_identifier_token20] = ACTIONS(1833), + [aux_sym_cmd_identifier_token21] = ACTIONS(1833), + [aux_sym_cmd_identifier_token22] = ACTIONS(1833), + [aux_sym_cmd_identifier_token23] = ACTIONS(1833), + [aux_sym_cmd_identifier_token24] = ACTIONS(1833), + [aux_sym_cmd_identifier_token25] = ACTIONS(1833), + [aux_sym_cmd_identifier_token26] = ACTIONS(1833), + [aux_sym_cmd_identifier_token27] = ACTIONS(1833), + [aux_sym_cmd_identifier_token28] = ACTIONS(1833), + [aux_sym_cmd_identifier_token29] = ACTIONS(1833), + [aux_sym_cmd_identifier_token30] = ACTIONS(1833), + [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(1833), + [aux_sym_cmd_identifier_token37] = ACTIONS(1833), + [aux_sym_cmd_identifier_token38] = ACTIONS(1833), + [aux_sym_cmd_identifier_token39] = ACTIONS(1833), + [aux_sym_cmd_identifier_token40] = ACTIONS(1833), + [anon_sym_def] = ACTIONS(1833), + [anon_sym_export_DASHenv] = ACTIONS(1833), + [anon_sym_extern] = ACTIONS(1833), + [anon_sym_module] = ACTIONS(1833), + [anon_sym_use] = ACTIONS(1833), + [anon_sym_LPAREN] = ACTIONS(1833), + [anon_sym_COMMA] = ACTIONS(1833), + [anon_sym_DOLLAR] = ACTIONS(1833), + [anon_sym_error] = ACTIONS(1833), + [anon_sym_DASH2] = ACTIONS(1833), + [anon_sym_break] = ACTIONS(1833), + [anon_sym_continue] = ACTIONS(1833), + [anon_sym_for] = ACTIONS(1833), + [anon_sym_in2] = ACTIONS(1833), + [anon_sym_loop] = ACTIONS(1833), + [anon_sym_make] = ACTIONS(1833), + [anon_sym_while] = ACTIONS(1833), + [anon_sym_do] = ACTIONS(1833), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_else] = ACTIONS(1833), + [anon_sym_match] = ACTIONS(1833), + [anon_sym_RBRACE] = ACTIONS(1833), + [anon_sym_try] = ACTIONS(1833), + [anon_sym_catch] = ACTIONS(1833), + [anon_sym_return] = ACTIONS(1833), + [anon_sym_source] = ACTIONS(1833), + [anon_sym_source_DASHenv] = ACTIONS(1833), + [anon_sym_hide] = ACTIONS(1833), + [anon_sym_hide_DASHenv] = ACTIONS(1833), + [anon_sym_overlay] = ACTIONS(1833), + [anon_sym_as] = ACTIONS(1833), + [anon_sym_PLUS2] = ACTIONS(1833), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1833), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1833), + [aux_sym__val_number_decimal_token1] = ACTIONS(1833), + [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), + [aux_sym__val_number_token4] = ACTIONS(1833), + [aux_sym__val_number_token5] = ACTIONS(1833), + [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(1833), + [sym__entry_separator] = ACTIONS(1835), + [anon_sym_register] = ACTIONS(1833), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1835), + }, + [639] = { + [sym_comment] = STATE(639), + [anon_sym_export] = ACTIONS(2014), + [anon_sym_alias] = ACTIONS(2014), + [anon_sym_let] = ACTIONS(2014), + [anon_sym_let_DASHenv] = ACTIONS(2014), + [anon_sym_mut] = ACTIONS(2014), + [anon_sym_const] = ACTIONS(2014), + [aux_sym_cmd_identifier_token1] = ACTIONS(2014), + [aux_sym_cmd_identifier_token2] = ACTIONS(2014), + [aux_sym_cmd_identifier_token3] = ACTIONS(2014), + [aux_sym_cmd_identifier_token4] = ACTIONS(2014), + [aux_sym_cmd_identifier_token5] = ACTIONS(2014), + [aux_sym_cmd_identifier_token6] = ACTIONS(2014), + [aux_sym_cmd_identifier_token7] = ACTIONS(2014), + [aux_sym_cmd_identifier_token8] = ACTIONS(2014), + [aux_sym_cmd_identifier_token9] = ACTIONS(2014), + [aux_sym_cmd_identifier_token10] = ACTIONS(2014), + [aux_sym_cmd_identifier_token11] = ACTIONS(2014), + [aux_sym_cmd_identifier_token12] = ACTIONS(2014), + [aux_sym_cmd_identifier_token13] = ACTIONS(2014), + [aux_sym_cmd_identifier_token14] = ACTIONS(2014), + [aux_sym_cmd_identifier_token15] = ACTIONS(2014), + [aux_sym_cmd_identifier_token16] = ACTIONS(2014), + [aux_sym_cmd_identifier_token17] = ACTIONS(2014), + [aux_sym_cmd_identifier_token18] = ACTIONS(2014), + [aux_sym_cmd_identifier_token19] = ACTIONS(2014), + [aux_sym_cmd_identifier_token20] = ACTIONS(2014), + [aux_sym_cmd_identifier_token21] = ACTIONS(2014), + [aux_sym_cmd_identifier_token22] = ACTIONS(2014), + [aux_sym_cmd_identifier_token23] = ACTIONS(2014), + [aux_sym_cmd_identifier_token24] = ACTIONS(2014), + [aux_sym_cmd_identifier_token25] = ACTIONS(2014), + [aux_sym_cmd_identifier_token26] = ACTIONS(2014), + [aux_sym_cmd_identifier_token27] = ACTIONS(2014), + [aux_sym_cmd_identifier_token28] = ACTIONS(2014), + [aux_sym_cmd_identifier_token29] = ACTIONS(2014), + [aux_sym_cmd_identifier_token30] = ACTIONS(2014), + [aux_sym_cmd_identifier_token31] = ACTIONS(2014), + [aux_sym_cmd_identifier_token32] = ACTIONS(2014), + [aux_sym_cmd_identifier_token33] = ACTIONS(2014), + [aux_sym_cmd_identifier_token34] = ACTIONS(2014), + [aux_sym_cmd_identifier_token35] = ACTIONS(2014), + [aux_sym_cmd_identifier_token36] = ACTIONS(2014), + [aux_sym_cmd_identifier_token37] = ACTIONS(2014), + [aux_sym_cmd_identifier_token38] = ACTIONS(2014), + [aux_sym_cmd_identifier_token39] = ACTIONS(2014), + [aux_sym_cmd_identifier_token40] = ACTIONS(2014), + [anon_sym_def] = ACTIONS(2014), + [anon_sym_export_DASHenv] = ACTIONS(2014), + [anon_sym_extern] = ACTIONS(2014), + [anon_sym_module] = ACTIONS(2014), + [anon_sym_use] = ACTIONS(2014), + [anon_sym_LPAREN] = ACTIONS(2014), + [anon_sym_COMMA] = ACTIONS(2014), + [anon_sym_DOLLAR] = ACTIONS(2014), + [anon_sym_error] = ACTIONS(2014), + [anon_sym_DASH2] = ACTIONS(2014), + [anon_sym_break] = ACTIONS(2014), + [anon_sym_continue] = ACTIONS(2014), + [anon_sym_for] = ACTIONS(2014), + [anon_sym_in2] = ACTIONS(2014), + [anon_sym_loop] = ACTIONS(2014), + [anon_sym_make] = ACTIONS(2014), + [anon_sym_while] = ACTIONS(2014), + [anon_sym_do] = ACTIONS(2014), + [anon_sym_if] = ACTIONS(2014), + [anon_sym_else] = ACTIONS(2014), + [anon_sym_match] = ACTIONS(2014), + [anon_sym_RBRACE] = ACTIONS(2014), + [anon_sym_try] = ACTIONS(2014), + [anon_sym_catch] = ACTIONS(2014), + [anon_sym_return] = ACTIONS(2014), + [anon_sym_source] = ACTIONS(2014), + [anon_sym_source_DASHenv] = ACTIONS(2014), + [anon_sym_hide] = ACTIONS(2014), + [anon_sym_hide_DASHenv] = ACTIONS(2014), + [anon_sym_overlay] = ACTIONS(2014), + [anon_sym_as] = ACTIONS(2014), + [anon_sym_PLUS2] = ACTIONS(2014), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2014), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2014), + [aux_sym__val_number_decimal_token1] = ACTIONS(2014), + [aux_sym__val_number_decimal_token2] = ACTIONS(2014), + [aux_sym__val_number_decimal_token3] = ACTIONS(2014), + [aux_sym__val_number_decimal_token4] = ACTIONS(2014), + [aux_sym__val_number_token1] = ACTIONS(2014), + [aux_sym__val_number_token2] = ACTIONS(2014), + [aux_sym__val_number_token3] = ACTIONS(2014), + [aux_sym__val_number_token4] = ACTIONS(2014), + [aux_sym__val_number_token5] = ACTIONS(2014), + [aux_sym__val_number_token6] = ACTIONS(2014), + [anon_sym_DQUOTE] = ACTIONS(2014), + [sym__str_single_quotes] = ACTIONS(2014), + [sym__str_back_ticks] = ACTIONS(2014), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2014), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2014), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2014), + [sym__entry_separator] = ACTIONS(2016), + [anon_sym_register] = ACTIONS(2014), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2016), + }, + [640] = { + [sym_comment] = STATE(640), + [anon_sym_export] = ACTIONS(1639), + [anon_sym_alias] = ACTIONS(1639), + [anon_sym_let] = ACTIONS(1639), + [anon_sym_let_DASHenv] = ACTIONS(1639), + [anon_sym_mut] = ACTIONS(1639), + [anon_sym_const] = ACTIONS(1639), + [aux_sym_cmd_identifier_token1] = ACTIONS(1639), + [aux_sym_cmd_identifier_token2] = ACTIONS(1639), + [aux_sym_cmd_identifier_token3] = ACTIONS(1639), + [aux_sym_cmd_identifier_token4] = ACTIONS(1639), + [aux_sym_cmd_identifier_token5] = ACTIONS(1639), + [aux_sym_cmd_identifier_token6] = ACTIONS(1639), + [aux_sym_cmd_identifier_token7] = ACTIONS(1639), + [aux_sym_cmd_identifier_token8] = ACTIONS(1639), + [aux_sym_cmd_identifier_token9] = ACTIONS(1639), + [aux_sym_cmd_identifier_token10] = ACTIONS(1639), + [aux_sym_cmd_identifier_token11] = ACTIONS(1639), + [aux_sym_cmd_identifier_token12] = ACTIONS(1639), + [aux_sym_cmd_identifier_token13] = ACTIONS(1639), + [aux_sym_cmd_identifier_token14] = ACTIONS(1639), + [aux_sym_cmd_identifier_token15] = ACTIONS(1639), + [aux_sym_cmd_identifier_token16] = ACTIONS(1639), + [aux_sym_cmd_identifier_token17] = ACTIONS(1639), + [aux_sym_cmd_identifier_token18] = ACTIONS(1639), + [aux_sym_cmd_identifier_token19] = ACTIONS(1639), + [aux_sym_cmd_identifier_token20] = ACTIONS(1639), + [aux_sym_cmd_identifier_token21] = ACTIONS(1639), + [aux_sym_cmd_identifier_token22] = ACTIONS(1639), + [aux_sym_cmd_identifier_token23] = ACTIONS(1639), + [aux_sym_cmd_identifier_token24] = ACTIONS(1639), + [aux_sym_cmd_identifier_token25] = ACTIONS(1639), + [aux_sym_cmd_identifier_token26] = ACTIONS(1639), + [aux_sym_cmd_identifier_token27] = ACTIONS(1639), + [aux_sym_cmd_identifier_token28] = ACTIONS(1639), + [aux_sym_cmd_identifier_token29] = ACTIONS(1639), + [aux_sym_cmd_identifier_token30] = ACTIONS(1639), + [aux_sym_cmd_identifier_token31] = ACTIONS(1639), + [aux_sym_cmd_identifier_token32] = ACTIONS(1639), + [aux_sym_cmd_identifier_token33] = ACTIONS(1639), + [aux_sym_cmd_identifier_token34] = ACTIONS(1639), + [aux_sym_cmd_identifier_token35] = ACTIONS(1639), + [aux_sym_cmd_identifier_token36] = ACTIONS(1639), + [aux_sym_cmd_identifier_token37] = ACTIONS(1639), + [aux_sym_cmd_identifier_token38] = ACTIONS(1639), + [aux_sym_cmd_identifier_token39] = ACTIONS(1639), + [aux_sym_cmd_identifier_token40] = ACTIONS(1639), + [anon_sym_def] = ACTIONS(1639), + [anon_sym_export_DASHenv] = ACTIONS(1639), + [anon_sym_extern] = ACTIONS(1639), + [anon_sym_module] = ACTIONS(1639), + [anon_sym_use] = ACTIONS(1639), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_COMMA] = ACTIONS(1639), + [anon_sym_DOLLAR] = ACTIONS(1639), + [anon_sym_error] = ACTIONS(1639), + [anon_sym_DASH2] = ACTIONS(1639), + [anon_sym_break] = ACTIONS(1639), + [anon_sym_continue] = ACTIONS(1639), + [anon_sym_for] = ACTIONS(1639), + [anon_sym_in2] = ACTIONS(1639), + [anon_sym_loop] = ACTIONS(1639), + [anon_sym_make] = ACTIONS(1639), + [anon_sym_while] = ACTIONS(1639), + [anon_sym_do] = ACTIONS(1639), + [anon_sym_if] = ACTIONS(1639), + [anon_sym_else] = ACTIONS(1639), + [anon_sym_match] = ACTIONS(1639), + [anon_sym_RBRACE] = ACTIONS(1639), + [anon_sym_try] = ACTIONS(1639), + [anon_sym_catch] = ACTIONS(1639), + [anon_sym_return] = ACTIONS(1639), + [anon_sym_source] = ACTIONS(1639), + [anon_sym_source_DASHenv] = ACTIONS(1639), + [anon_sym_hide] = ACTIONS(1639), + [anon_sym_hide_DASHenv] = ACTIONS(1639), + [anon_sym_overlay] = ACTIONS(1639), + [anon_sym_as] = ACTIONS(1639), + [anon_sym_PLUS2] = ACTIONS(1639), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1639), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1639), + [aux_sym__val_number_decimal_token1] = ACTIONS(1639), + [aux_sym__val_number_decimal_token2] = ACTIONS(1639), + [aux_sym__val_number_decimal_token3] = ACTIONS(1639), + [aux_sym__val_number_decimal_token4] = ACTIONS(1639), + [aux_sym__val_number_token1] = ACTIONS(1639), + [aux_sym__val_number_token2] = ACTIONS(1639), + [aux_sym__val_number_token3] = ACTIONS(1639), + [aux_sym__val_number_token4] = ACTIONS(1639), + [aux_sym__val_number_token5] = ACTIONS(1639), + [aux_sym__val_number_token6] = ACTIONS(1639), + [anon_sym_DQUOTE] = ACTIONS(1639), + [sym__str_single_quotes] = ACTIONS(1639), + [sym__str_back_ticks] = ACTIONS(1639), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1639), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1639), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1639), + [sym__entry_separator] = ACTIONS(1651), + [anon_sym_register] = ACTIONS(1639), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1651), + }, + [641] = { + [sym_comment] = STATE(641), + [anon_sym_export] = ACTIONS(2302), + [anon_sym_alias] = ACTIONS(2302), + [anon_sym_let] = ACTIONS(2302), + [anon_sym_let_DASHenv] = ACTIONS(2302), + [anon_sym_mut] = ACTIONS(2302), + [anon_sym_const] = ACTIONS(2302), + [aux_sym_cmd_identifier_token1] = ACTIONS(2302), + [aux_sym_cmd_identifier_token2] = ACTIONS(2304), + [aux_sym_cmd_identifier_token3] = ACTIONS(2304), + [aux_sym_cmd_identifier_token4] = ACTIONS(2304), + [aux_sym_cmd_identifier_token5] = ACTIONS(2304), + [aux_sym_cmd_identifier_token6] = ACTIONS(2304), + [aux_sym_cmd_identifier_token7] = ACTIONS(2304), + [aux_sym_cmd_identifier_token8] = ACTIONS(2302), + [aux_sym_cmd_identifier_token9] = ACTIONS(2302), + [aux_sym_cmd_identifier_token10] = ACTIONS(2304), + [aux_sym_cmd_identifier_token11] = ACTIONS(2304), + [aux_sym_cmd_identifier_token12] = ACTIONS(2302), + [aux_sym_cmd_identifier_token13] = ACTIONS(2302), + [aux_sym_cmd_identifier_token14] = ACTIONS(2302), + [aux_sym_cmd_identifier_token15] = ACTIONS(2302), + [aux_sym_cmd_identifier_token16] = ACTIONS(2304), + [aux_sym_cmd_identifier_token17] = ACTIONS(2304), + [aux_sym_cmd_identifier_token18] = ACTIONS(2304), + [aux_sym_cmd_identifier_token19] = ACTIONS(2304), + [aux_sym_cmd_identifier_token20] = ACTIONS(2304), + [aux_sym_cmd_identifier_token21] = ACTIONS(2304), + [aux_sym_cmd_identifier_token22] = ACTIONS(2304), + [aux_sym_cmd_identifier_token23] = ACTIONS(2304), + [aux_sym_cmd_identifier_token24] = ACTIONS(2304), + [aux_sym_cmd_identifier_token25] = ACTIONS(2304), + [aux_sym_cmd_identifier_token26] = ACTIONS(2304), + [aux_sym_cmd_identifier_token27] = ACTIONS(2304), + [aux_sym_cmd_identifier_token28] = ACTIONS(2304), + [aux_sym_cmd_identifier_token29] = ACTIONS(2304), + [aux_sym_cmd_identifier_token30] = ACTIONS(2304), + [aux_sym_cmd_identifier_token31] = ACTIONS(2304), + [aux_sym_cmd_identifier_token32] = ACTIONS(2304), + [aux_sym_cmd_identifier_token33] = ACTIONS(2304), + [aux_sym_cmd_identifier_token34] = ACTIONS(2302), + [aux_sym_cmd_identifier_token35] = ACTIONS(2304), + [aux_sym_cmd_identifier_token36] = ACTIONS(2304), + [aux_sym_cmd_identifier_token37] = ACTIONS(2304), + [aux_sym_cmd_identifier_token38] = ACTIONS(2302), + [aux_sym_cmd_identifier_token39] = ACTIONS(2304), + [aux_sym_cmd_identifier_token40] = ACTIONS(2304), + [anon_sym_def] = ACTIONS(2302), + [anon_sym_export_DASHenv] = ACTIONS(2302), + [anon_sym_extern] = ACTIONS(2302), + [anon_sym_module] = ACTIONS(2302), + [anon_sym_use] = ACTIONS(2302), + [anon_sym_LPAREN] = ACTIONS(2302), + [anon_sym_COMMA] = ACTIONS(2304), + [anon_sym_DOLLAR] = ACTIONS(2302), + [anon_sym_error] = ACTIONS(2302), + [anon_sym_DASH2] = ACTIONS(2302), + [anon_sym_break] = ACTIONS(2302), + [anon_sym_continue] = ACTIONS(2302), + [anon_sym_for] = ACTIONS(2302), + [anon_sym_in2] = ACTIONS(2302), + [anon_sym_loop] = ACTIONS(2302), + [anon_sym_make] = ACTIONS(2302), + [anon_sym_while] = ACTIONS(2302), + [anon_sym_do] = ACTIONS(2302), + [anon_sym_if] = ACTIONS(2302), + [anon_sym_else] = ACTIONS(2302), + [anon_sym_match] = ACTIONS(2302), + [anon_sym_RBRACE] = ACTIONS(2304), + [anon_sym_try] = ACTIONS(2302), + [anon_sym_catch] = ACTIONS(2302), + [anon_sym_return] = ACTIONS(2302), + [anon_sym_source] = ACTIONS(2302), + [anon_sym_source_DASHenv] = ACTIONS(2302), + [anon_sym_hide] = ACTIONS(2302), + [anon_sym_hide_DASHenv] = ACTIONS(2302), + [anon_sym_overlay] = ACTIONS(2302), + [anon_sym_as] = ACTIONS(2302), + [anon_sym_LPAREN2] = ACTIONS(2304), + [anon_sym_PLUS2] = ACTIONS(2302), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2304), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2304), + [aux_sym__val_number_decimal_token1] = ACTIONS(2302), + [aux_sym__val_number_decimal_token2] = ACTIONS(2304), + [aux_sym__val_number_decimal_token3] = ACTIONS(2304), + [aux_sym__val_number_decimal_token4] = ACTIONS(2304), + [aux_sym__val_number_token1] = ACTIONS(2304), + [aux_sym__val_number_token2] = ACTIONS(2304), + [aux_sym__val_number_token3] = ACTIONS(2304), + [aux_sym__val_number_token4] = ACTIONS(2302), + [aux_sym__val_number_token5] = ACTIONS(2302), + [aux_sym__val_number_token6] = ACTIONS(2302), + [anon_sym_DQUOTE] = ACTIONS(2304), + [sym__str_single_quotes] = ACTIONS(2304), + [sym__str_back_ticks] = ACTIONS(2304), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2304), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2304), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2304), + [anon_sym_register] = ACTIONS(2302), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2304), + }, + [642] = { + [sym_comment] = STATE(642), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(2417), + [anon_sym_DOLLAR] = ACTIONS(2417), + [anon_sym_error] = ACTIONS(2417), + [anon_sym_DASH2] = ACTIONS(2417), + [anon_sym_break] = ACTIONS(2417), + [anon_sym_continue] = ACTIONS(2417), + [anon_sym_for] = ACTIONS(2417), + [anon_sym_in2] = 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_hide] = ACTIONS(2417), + [anon_sym_hide_DASHenv] = ACTIONS(2417), + [anon_sym_overlay] = ACTIONS(2417), + [anon_sym_as] = ACTIONS(2417), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2417), + [aux_sym__val_number_token5] = ACTIONS(2417), + [aux_sym__val_number_token6] = ACTIONS(2417), + [anon_sym_DQUOTE] = ACTIONS(2417), + [sym__str_single_quotes] = ACTIONS(2417), + [sym__str_back_ticks] = ACTIONS(2417), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2417), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2417), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2417), + [sym__entry_separator] = ACTIONS(2419), + [anon_sym_register] = ACTIONS(2417), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2419), + }, + [643] = { + [sym_comment] = STATE(643), + [anon_sym_export] = ACTIONS(2018), + [anon_sym_alias] = ACTIONS(2018), + [anon_sym_let] = ACTIONS(2018), + [anon_sym_let_DASHenv] = ACTIONS(2018), + [anon_sym_mut] = ACTIONS(2018), + [anon_sym_const] = ACTIONS(2018), + [aux_sym_cmd_identifier_token1] = ACTIONS(2018), + [aux_sym_cmd_identifier_token2] = ACTIONS(2018), + [aux_sym_cmd_identifier_token3] = ACTIONS(2018), + [aux_sym_cmd_identifier_token4] = ACTIONS(2018), + [aux_sym_cmd_identifier_token5] = ACTIONS(2018), + [aux_sym_cmd_identifier_token6] = ACTIONS(2018), + [aux_sym_cmd_identifier_token7] = ACTIONS(2018), + [aux_sym_cmd_identifier_token8] = ACTIONS(2018), + [aux_sym_cmd_identifier_token9] = ACTIONS(2018), + [aux_sym_cmd_identifier_token10] = ACTIONS(2018), + [aux_sym_cmd_identifier_token11] = ACTIONS(2018), + [aux_sym_cmd_identifier_token12] = ACTIONS(2018), + [aux_sym_cmd_identifier_token13] = ACTIONS(2018), + [aux_sym_cmd_identifier_token14] = ACTIONS(2018), + [aux_sym_cmd_identifier_token15] = ACTIONS(2018), + [aux_sym_cmd_identifier_token16] = ACTIONS(2018), + [aux_sym_cmd_identifier_token17] = ACTIONS(2018), + [aux_sym_cmd_identifier_token18] = ACTIONS(2018), + [aux_sym_cmd_identifier_token19] = ACTIONS(2018), + [aux_sym_cmd_identifier_token20] = ACTIONS(2018), + [aux_sym_cmd_identifier_token21] = ACTIONS(2018), + [aux_sym_cmd_identifier_token22] = ACTIONS(2018), + [aux_sym_cmd_identifier_token23] = ACTIONS(2018), + [aux_sym_cmd_identifier_token24] = ACTIONS(2018), + [aux_sym_cmd_identifier_token25] = ACTIONS(2018), + [aux_sym_cmd_identifier_token26] = ACTIONS(2018), + [aux_sym_cmd_identifier_token27] = ACTIONS(2018), + [aux_sym_cmd_identifier_token28] = ACTIONS(2018), + [aux_sym_cmd_identifier_token29] = ACTIONS(2018), + [aux_sym_cmd_identifier_token30] = ACTIONS(2018), + [aux_sym_cmd_identifier_token31] = ACTIONS(2018), + [aux_sym_cmd_identifier_token32] = ACTIONS(2018), + [aux_sym_cmd_identifier_token33] = ACTIONS(2018), + [aux_sym_cmd_identifier_token34] = ACTIONS(2018), + [aux_sym_cmd_identifier_token35] = ACTIONS(2018), + [aux_sym_cmd_identifier_token36] = ACTIONS(2018), + [aux_sym_cmd_identifier_token37] = ACTIONS(2018), + [aux_sym_cmd_identifier_token38] = ACTIONS(2018), + [aux_sym_cmd_identifier_token39] = ACTIONS(2018), + [aux_sym_cmd_identifier_token40] = ACTIONS(2018), + [anon_sym_def] = ACTIONS(2018), + [anon_sym_export_DASHenv] = ACTIONS(2018), + [anon_sym_extern] = ACTIONS(2018), + [anon_sym_module] = ACTIONS(2018), + [anon_sym_use] = ACTIONS(2018), + [anon_sym_LPAREN] = ACTIONS(2018), + [anon_sym_COMMA] = ACTIONS(2018), + [anon_sym_DOLLAR] = ACTIONS(2018), + [anon_sym_error] = ACTIONS(2018), + [anon_sym_DASH2] = ACTIONS(2018), + [anon_sym_break] = ACTIONS(2018), + [anon_sym_continue] = ACTIONS(2018), + [anon_sym_for] = ACTIONS(2018), + [anon_sym_in2] = ACTIONS(2018), + [anon_sym_loop] = ACTIONS(2018), + [anon_sym_make] = ACTIONS(2018), + [anon_sym_while] = ACTIONS(2018), + [anon_sym_do] = ACTIONS(2018), + [anon_sym_if] = ACTIONS(2018), + [anon_sym_else] = ACTIONS(2018), + [anon_sym_match] = ACTIONS(2018), + [anon_sym_RBRACE] = ACTIONS(2018), + [anon_sym_try] = ACTIONS(2018), + [anon_sym_catch] = ACTIONS(2018), + [anon_sym_return] = ACTIONS(2018), + [anon_sym_source] = ACTIONS(2018), + [anon_sym_source_DASHenv] = ACTIONS(2018), + [anon_sym_hide] = ACTIONS(2018), + [anon_sym_hide_DASHenv] = ACTIONS(2018), + [anon_sym_overlay] = ACTIONS(2018), + [anon_sym_as] = ACTIONS(2018), + [anon_sym_PLUS2] = ACTIONS(2018), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2018), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2018), + [aux_sym__val_number_decimal_token1] = ACTIONS(2018), + [aux_sym__val_number_decimal_token2] = ACTIONS(2018), + [aux_sym__val_number_decimal_token3] = ACTIONS(2018), + [aux_sym__val_number_decimal_token4] = ACTIONS(2018), + [aux_sym__val_number_token1] = ACTIONS(2018), + [aux_sym__val_number_token2] = ACTIONS(2018), + [aux_sym__val_number_token3] = ACTIONS(2018), + [aux_sym__val_number_token4] = ACTIONS(2018), + [aux_sym__val_number_token5] = ACTIONS(2018), + [aux_sym__val_number_token6] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2018), + [sym__str_single_quotes] = ACTIONS(2018), + [sym__str_back_ticks] = ACTIONS(2018), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2018), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2018), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2018), + [sym__entry_separator] = ACTIONS(2020), + [anon_sym_register] = ACTIONS(2018), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2020), + }, + [644] = { + [sym_comment] = STATE(644), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(986), + [anon_sym_DOLLAR] = ACTIONS(986), + [anon_sym_error] = ACTIONS(986), + [anon_sym_DASH2] = ACTIONS(986), + [anon_sym_break] = ACTIONS(986), + [anon_sym_continue] = ACTIONS(986), + [anon_sym_for] = ACTIONS(986), + [anon_sym_in2] = 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_hide] = ACTIONS(986), + [anon_sym_hide_DASHenv] = ACTIONS(986), + [anon_sym_overlay] = ACTIONS(986), + [anon_sym_as] = ACTIONS(986), + [anon_sym_PLUS2] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_LPAREN] = 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), + [aux_sym__val_number_token4] = ACTIONS(986), + [aux_sym__val_number_token5] = ACTIONS(986), + [aux_sym__val_number_token6] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym__str_single_quotes] = ACTIONS(986), + [sym__str_back_ticks] = ACTIONS(986), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(986), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(986), + [sym__entry_separator] = ACTIONS(988), + [anon_sym_register] = ACTIONS(986), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(988), + }, + [645] = { + [sym_comment] = STATE(645), [anon_sym_export] = ACTIONS(1905), [anon_sym_alias] = ACTIONS(1905), [anon_sym_let] = ACTIONS(1905), @@ -147355,7 +151515,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -147380,1556 +151539,2587 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1905), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1905), [sym__entry_separator] = ACTIONS(1907), + [anon_sym_register] = ACTIONS(1905), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1907), }, - [605] = { - [sym_comment] = STATE(605), - [anon_sym_export] = ACTIONS(2350), - [anon_sym_alias] = ACTIONS(2350), - [anon_sym_let] = ACTIONS(2350), - [anon_sym_let_DASHenv] = ACTIONS(2350), - [anon_sym_mut] = ACTIONS(2350), - [anon_sym_const] = ACTIONS(2350), - [aux_sym_cmd_identifier_token1] = ACTIONS(2350), - [aux_sym_cmd_identifier_token2] = ACTIONS(2350), - [aux_sym_cmd_identifier_token3] = ACTIONS(2350), - [aux_sym_cmd_identifier_token4] = ACTIONS(2350), - [aux_sym_cmd_identifier_token5] = ACTIONS(2350), - [aux_sym_cmd_identifier_token6] = ACTIONS(2350), - [aux_sym_cmd_identifier_token7] = ACTIONS(2350), - [aux_sym_cmd_identifier_token8] = ACTIONS(2350), - [aux_sym_cmd_identifier_token9] = ACTIONS(2350), - [aux_sym_cmd_identifier_token10] = ACTIONS(2350), - [aux_sym_cmd_identifier_token11] = ACTIONS(2350), - [aux_sym_cmd_identifier_token12] = ACTIONS(2350), - [aux_sym_cmd_identifier_token13] = ACTIONS(2350), - [aux_sym_cmd_identifier_token14] = ACTIONS(2350), - [aux_sym_cmd_identifier_token15] = ACTIONS(2350), - [aux_sym_cmd_identifier_token16] = ACTIONS(2350), - [aux_sym_cmd_identifier_token17] = ACTIONS(2350), - [aux_sym_cmd_identifier_token18] = ACTIONS(2350), - [aux_sym_cmd_identifier_token19] = ACTIONS(2350), - [aux_sym_cmd_identifier_token20] = ACTIONS(2350), - [aux_sym_cmd_identifier_token21] = ACTIONS(2350), - [aux_sym_cmd_identifier_token22] = ACTIONS(2350), - [aux_sym_cmd_identifier_token23] = ACTIONS(2350), - [aux_sym_cmd_identifier_token24] = ACTIONS(2350), - [aux_sym_cmd_identifier_token25] = ACTIONS(2350), - [aux_sym_cmd_identifier_token26] = ACTIONS(2350), - [aux_sym_cmd_identifier_token27] = ACTIONS(2350), - [aux_sym_cmd_identifier_token28] = ACTIONS(2350), - [aux_sym_cmd_identifier_token29] = ACTIONS(2350), - [aux_sym_cmd_identifier_token30] = ACTIONS(2350), - [aux_sym_cmd_identifier_token31] = ACTIONS(2350), - [aux_sym_cmd_identifier_token32] = ACTIONS(2350), - [aux_sym_cmd_identifier_token33] = ACTIONS(2350), - [aux_sym_cmd_identifier_token34] = ACTIONS(2350), - [aux_sym_cmd_identifier_token35] = ACTIONS(2350), - [aux_sym_cmd_identifier_token36] = ACTIONS(2350), - [aux_sym_cmd_identifier_token37] = ACTIONS(2350), - [aux_sym_cmd_identifier_token38] = ACTIONS(2350), - [aux_sym_cmd_identifier_token39] = ACTIONS(2350), - [aux_sym_cmd_identifier_token40] = ACTIONS(2350), - [anon_sym_def] = ACTIONS(2350), - [anon_sym_export_DASHenv] = ACTIONS(2350), - [anon_sym_extern] = ACTIONS(2350), - [anon_sym_module] = ACTIONS(2350), - [anon_sym_use] = ACTIONS(2350), - [anon_sym_LPAREN] = ACTIONS(2350), - [anon_sym_COMMA] = ACTIONS(2350), - [anon_sym_DOLLAR] = ACTIONS(2350), - [anon_sym_error] = ACTIONS(2350), - [anon_sym_DASH2] = ACTIONS(2350), - [anon_sym_break] = ACTIONS(2350), - [anon_sym_continue] = ACTIONS(2350), - [anon_sym_for] = ACTIONS(2350), - [anon_sym_in2] = ACTIONS(2350), - [anon_sym_loop] = ACTIONS(2350), - [anon_sym_make] = ACTIONS(2350), - [anon_sym_while] = ACTIONS(2350), - [anon_sym_do] = ACTIONS(2350), - [anon_sym_if] = ACTIONS(2350), - [anon_sym_else] = ACTIONS(2350), - [anon_sym_match] = ACTIONS(2350), - [anon_sym_RBRACE] = ACTIONS(2350), - [anon_sym_try] = ACTIONS(2350), - [anon_sym_catch] = ACTIONS(2350), - [anon_sym_return] = ACTIONS(2350), - [anon_sym_source] = ACTIONS(2350), - [anon_sym_source_DASHenv] = ACTIONS(2350), - [anon_sym_register] = ACTIONS(2350), - [anon_sym_hide] = ACTIONS(2350), - [anon_sym_hide_DASHenv] = ACTIONS(2350), - [anon_sym_overlay] = ACTIONS(2350), - [anon_sym_as] = ACTIONS(2350), - [anon_sym_PLUS2] = ACTIONS(2350), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2350), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2350), - [aux_sym__val_number_decimal_token1] = ACTIONS(2350), - [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), - [aux_sym__val_number_token4] = ACTIONS(2350), - [aux_sym__val_number_token5] = ACTIONS(2350), - [aux_sym__val_number_token6] = ACTIONS(2350), - [anon_sym_DQUOTE] = ACTIONS(2350), - [sym__str_single_quotes] = ACTIONS(2350), - [sym__str_back_ticks] = ACTIONS(2350), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2350), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2350), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2350), - [sym__entry_separator] = ACTIONS(2352), + [646] = { + [sym_comment] = STATE(646), + [anon_sym_export] = ACTIONS(1861), + [anon_sym_alias] = ACTIONS(1861), + [anon_sym_let] = ACTIONS(1861), + [anon_sym_let_DASHenv] = ACTIONS(1861), + [anon_sym_mut] = ACTIONS(1861), + [anon_sym_const] = ACTIONS(1861), + [aux_sym_cmd_identifier_token1] = ACTIONS(1861), + [aux_sym_cmd_identifier_token2] = ACTIONS(1861), + [aux_sym_cmd_identifier_token3] = ACTIONS(1861), + [aux_sym_cmd_identifier_token4] = ACTIONS(1861), + [aux_sym_cmd_identifier_token5] = ACTIONS(1861), + [aux_sym_cmd_identifier_token6] = ACTIONS(1861), + [aux_sym_cmd_identifier_token7] = ACTIONS(1861), + [aux_sym_cmd_identifier_token8] = ACTIONS(1861), + [aux_sym_cmd_identifier_token9] = ACTIONS(1861), + [aux_sym_cmd_identifier_token10] = ACTIONS(1861), + [aux_sym_cmd_identifier_token11] = ACTIONS(1861), + [aux_sym_cmd_identifier_token12] = ACTIONS(1861), + [aux_sym_cmd_identifier_token13] = ACTIONS(1861), + [aux_sym_cmd_identifier_token14] = ACTIONS(1861), + [aux_sym_cmd_identifier_token15] = ACTIONS(1861), + [aux_sym_cmd_identifier_token16] = ACTIONS(1861), + [aux_sym_cmd_identifier_token17] = ACTIONS(1861), + [aux_sym_cmd_identifier_token18] = ACTIONS(1861), + [aux_sym_cmd_identifier_token19] = ACTIONS(1861), + [aux_sym_cmd_identifier_token20] = ACTIONS(1861), + [aux_sym_cmd_identifier_token21] = ACTIONS(1861), + [aux_sym_cmd_identifier_token22] = ACTIONS(1861), + [aux_sym_cmd_identifier_token23] = ACTIONS(1861), + [aux_sym_cmd_identifier_token24] = ACTIONS(1861), + [aux_sym_cmd_identifier_token25] = ACTIONS(1861), + [aux_sym_cmd_identifier_token26] = ACTIONS(1861), + [aux_sym_cmd_identifier_token27] = ACTIONS(1861), + [aux_sym_cmd_identifier_token28] = ACTIONS(1861), + [aux_sym_cmd_identifier_token29] = ACTIONS(1861), + [aux_sym_cmd_identifier_token30] = ACTIONS(1861), + [aux_sym_cmd_identifier_token31] = ACTIONS(1861), + [aux_sym_cmd_identifier_token32] = ACTIONS(1861), + [aux_sym_cmd_identifier_token33] = ACTIONS(1861), + [aux_sym_cmd_identifier_token34] = ACTIONS(1861), + [aux_sym_cmd_identifier_token35] = ACTIONS(1861), + [aux_sym_cmd_identifier_token36] = ACTIONS(1861), + [aux_sym_cmd_identifier_token37] = ACTIONS(1861), + [aux_sym_cmd_identifier_token38] = ACTIONS(1861), + [aux_sym_cmd_identifier_token39] = ACTIONS(1861), + [aux_sym_cmd_identifier_token40] = ACTIONS(1861), + [anon_sym_def] = ACTIONS(1861), + [anon_sym_export_DASHenv] = ACTIONS(1861), + [anon_sym_extern] = ACTIONS(1861), + [anon_sym_module] = ACTIONS(1861), + [anon_sym_use] = ACTIONS(1861), + [anon_sym_LPAREN] = ACTIONS(1861), + [anon_sym_COMMA] = ACTIONS(1861), + [anon_sym_DOLLAR] = ACTIONS(1861), + [anon_sym_error] = ACTIONS(1861), + [anon_sym_DASH2] = ACTIONS(1861), + [anon_sym_break] = ACTIONS(1861), + [anon_sym_continue] = ACTIONS(1861), + [anon_sym_for] = ACTIONS(1861), + [anon_sym_in2] = ACTIONS(1861), + [anon_sym_loop] = ACTIONS(1861), + [anon_sym_make] = ACTIONS(1861), + [anon_sym_while] = ACTIONS(1861), + [anon_sym_do] = ACTIONS(1861), + [anon_sym_if] = ACTIONS(1861), + [anon_sym_else] = ACTIONS(1861), + [anon_sym_match] = ACTIONS(1861), + [anon_sym_RBRACE] = ACTIONS(1861), + [anon_sym_try] = ACTIONS(1861), + [anon_sym_catch] = ACTIONS(1861), + [anon_sym_return] = ACTIONS(1861), + [anon_sym_source] = ACTIONS(1861), + [anon_sym_source_DASHenv] = ACTIONS(1861), + [anon_sym_hide] = ACTIONS(1861), + [anon_sym_hide_DASHenv] = ACTIONS(1861), + [anon_sym_overlay] = ACTIONS(1861), + [anon_sym_as] = ACTIONS(1861), + [anon_sym_PLUS2] = ACTIONS(1861), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1861), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1861), + [aux_sym__val_number_decimal_token1] = ACTIONS(1861), + [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), + [aux_sym__val_number_token4] = ACTIONS(1861), + [aux_sym__val_number_token5] = ACTIONS(1861), + [aux_sym__val_number_token6] = ACTIONS(1861), + [anon_sym_DQUOTE] = ACTIONS(1861), + [sym__str_single_quotes] = ACTIONS(1861), + [sym__str_back_ticks] = ACTIONS(1861), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1861), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1861), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1861), + [sym__entry_separator] = ACTIONS(1863), + [anon_sym_register] = ACTIONS(1861), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2352), + [sym_raw_string_begin] = ACTIONS(1863), }, - [606] = { - [sym_comment] = STATE(606), - [anon_sym_export] = ACTIONS(2354), - [anon_sym_alias] = ACTIONS(2354), - [anon_sym_let] = ACTIONS(2354), - [anon_sym_let_DASHenv] = ACTIONS(2354), - [anon_sym_mut] = ACTIONS(2354), - [anon_sym_const] = ACTIONS(2354), - [aux_sym_cmd_identifier_token1] = ACTIONS(2354), - [aux_sym_cmd_identifier_token2] = ACTIONS(2354), - [aux_sym_cmd_identifier_token3] = ACTIONS(2354), - [aux_sym_cmd_identifier_token4] = ACTIONS(2354), - [aux_sym_cmd_identifier_token5] = ACTIONS(2354), - [aux_sym_cmd_identifier_token6] = ACTIONS(2354), - [aux_sym_cmd_identifier_token7] = ACTIONS(2354), - [aux_sym_cmd_identifier_token8] = ACTIONS(2354), - [aux_sym_cmd_identifier_token9] = ACTIONS(2354), - [aux_sym_cmd_identifier_token10] = ACTIONS(2354), - [aux_sym_cmd_identifier_token11] = ACTIONS(2354), - [aux_sym_cmd_identifier_token12] = ACTIONS(2354), - [aux_sym_cmd_identifier_token13] = ACTIONS(2354), - [aux_sym_cmd_identifier_token14] = ACTIONS(2354), - [aux_sym_cmd_identifier_token15] = ACTIONS(2354), - [aux_sym_cmd_identifier_token16] = ACTIONS(2354), - [aux_sym_cmd_identifier_token17] = ACTIONS(2354), - [aux_sym_cmd_identifier_token18] = ACTIONS(2354), - [aux_sym_cmd_identifier_token19] = ACTIONS(2354), - [aux_sym_cmd_identifier_token20] = ACTIONS(2354), - [aux_sym_cmd_identifier_token21] = ACTIONS(2354), - [aux_sym_cmd_identifier_token22] = ACTIONS(2354), - [aux_sym_cmd_identifier_token23] = ACTIONS(2354), - [aux_sym_cmd_identifier_token24] = ACTIONS(2354), - [aux_sym_cmd_identifier_token25] = ACTIONS(2354), - [aux_sym_cmd_identifier_token26] = ACTIONS(2354), - [aux_sym_cmd_identifier_token27] = ACTIONS(2354), - [aux_sym_cmd_identifier_token28] = ACTIONS(2354), - [aux_sym_cmd_identifier_token29] = ACTIONS(2354), - [aux_sym_cmd_identifier_token30] = ACTIONS(2354), - [aux_sym_cmd_identifier_token31] = ACTIONS(2354), - [aux_sym_cmd_identifier_token32] = ACTIONS(2354), - [aux_sym_cmd_identifier_token33] = ACTIONS(2354), - [aux_sym_cmd_identifier_token34] = ACTIONS(2354), - [aux_sym_cmd_identifier_token35] = ACTIONS(2354), - [aux_sym_cmd_identifier_token36] = ACTIONS(2354), - [aux_sym_cmd_identifier_token37] = ACTIONS(2354), - [aux_sym_cmd_identifier_token38] = ACTIONS(2354), - [aux_sym_cmd_identifier_token39] = ACTIONS(2354), - [aux_sym_cmd_identifier_token40] = ACTIONS(2354), - [anon_sym_def] = ACTIONS(2354), - [anon_sym_export_DASHenv] = ACTIONS(2354), - [anon_sym_extern] = ACTIONS(2354), - [anon_sym_module] = ACTIONS(2354), - [anon_sym_use] = ACTIONS(2354), - [anon_sym_LPAREN] = ACTIONS(2354), - [anon_sym_COMMA] = ACTIONS(2354), - [anon_sym_DOLLAR] = ACTIONS(2354), - [anon_sym_error] = ACTIONS(2354), - [anon_sym_DASH2] = ACTIONS(2354), - [anon_sym_break] = ACTIONS(2354), - [anon_sym_continue] = ACTIONS(2354), - [anon_sym_for] = ACTIONS(2354), - [anon_sym_in2] = ACTIONS(2354), - [anon_sym_loop] = ACTIONS(2354), - [anon_sym_make] = ACTIONS(2354), - [anon_sym_while] = ACTIONS(2354), - [anon_sym_do] = ACTIONS(2354), - [anon_sym_if] = ACTIONS(2354), - [anon_sym_else] = ACTIONS(2354), - [anon_sym_match] = ACTIONS(2354), - [anon_sym_RBRACE] = ACTIONS(2354), - [anon_sym_try] = ACTIONS(2354), - [anon_sym_catch] = ACTIONS(2354), - [anon_sym_return] = ACTIONS(2354), - [anon_sym_source] = ACTIONS(2354), - [anon_sym_source_DASHenv] = ACTIONS(2354), - [anon_sym_register] = ACTIONS(2354), - [anon_sym_hide] = ACTIONS(2354), - [anon_sym_hide_DASHenv] = ACTIONS(2354), - [anon_sym_overlay] = ACTIONS(2354), - [anon_sym_as] = ACTIONS(2354), - [anon_sym_PLUS2] = ACTIONS(2354), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2354), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2354), - [aux_sym__val_number_decimal_token1] = ACTIONS(2354), - [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), - [aux_sym__val_number_token4] = ACTIONS(2354), - [aux_sym__val_number_token5] = ACTIONS(2354), - [aux_sym__val_number_token6] = ACTIONS(2354), - [anon_sym_DQUOTE] = ACTIONS(2354), - [sym__str_single_quotes] = ACTIONS(2354), - [sym__str_back_ticks] = ACTIONS(2354), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2354), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2354), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2354), - [sym__entry_separator] = ACTIONS(2356), + [647] = { + [sym_comment] = STATE(647), + [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(988), + [aux_sym_cmd_identifier_token3] = ACTIONS(988), + [aux_sym_cmd_identifier_token4] = ACTIONS(988), + [aux_sym_cmd_identifier_token5] = ACTIONS(988), + [aux_sym_cmd_identifier_token6] = ACTIONS(988), + [aux_sym_cmd_identifier_token7] = ACTIONS(988), + [aux_sym_cmd_identifier_token8] = ACTIONS(986), + [aux_sym_cmd_identifier_token9] = ACTIONS(986), + [aux_sym_cmd_identifier_token10] = ACTIONS(988), + [aux_sym_cmd_identifier_token11] = ACTIONS(988), + [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(988), + [aux_sym_cmd_identifier_token17] = ACTIONS(988), + [aux_sym_cmd_identifier_token18] = ACTIONS(988), + [aux_sym_cmd_identifier_token19] = ACTIONS(988), + [aux_sym_cmd_identifier_token20] = ACTIONS(988), + [aux_sym_cmd_identifier_token21] = ACTIONS(988), + [aux_sym_cmd_identifier_token22] = ACTIONS(988), + [aux_sym_cmd_identifier_token23] = ACTIONS(988), + [aux_sym_cmd_identifier_token24] = ACTIONS(988), + [aux_sym_cmd_identifier_token25] = ACTIONS(988), + [aux_sym_cmd_identifier_token26] = ACTIONS(988), + [aux_sym_cmd_identifier_token27] = ACTIONS(988), + [aux_sym_cmd_identifier_token28] = ACTIONS(988), + [aux_sym_cmd_identifier_token29] = ACTIONS(988), + [aux_sym_cmd_identifier_token30] = ACTIONS(988), + [aux_sym_cmd_identifier_token31] = ACTIONS(988), + [aux_sym_cmd_identifier_token32] = ACTIONS(988), + [aux_sym_cmd_identifier_token33] = ACTIONS(988), + [aux_sym_cmd_identifier_token34] = ACTIONS(986), + [aux_sym_cmd_identifier_token35] = ACTIONS(988), + [aux_sym_cmd_identifier_token36] = ACTIONS(988), + [aux_sym_cmd_identifier_token37] = 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(986), + [anon_sym_error] = ACTIONS(986), + [anon_sym_DASH2] = ACTIONS(986), + [anon_sym_break] = ACTIONS(986), + [anon_sym_continue] = ACTIONS(986), + [anon_sym_for] = ACTIONS(986), + [anon_sym_in2] = 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_hide] = ACTIONS(986), + [anon_sym_hide_DASHenv] = ACTIONS(986), + [anon_sym_overlay] = ACTIONS(986), + [anon_sym_as] = ACTIONS(986), + [anon_sym_PLUS2] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_LPAREN] = 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), + [aux_sym__val_number_token4] = ACTIONS(986), + [aux_sym__val_number_token5] = ACTIONS(986), + [aux_sym__val_number_token6] = ACTIONS(986), + [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_DOT_DOT_DOT_LBRACE] = ACTIONS(988), + [anon_sym_register] = ACTIONS(986), + [anon_sym_COLON2] = ACTIONS(988), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(988), + }, + [648] = { + [sym_comment] = STATE(648), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(2421), + [anon_sym_DOLLAR] = ACTIONS(2421), + [anon_sym_error] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(2421), + [anon_sym_continue] = ACTIONS(2421), + [anon_sym_for] = ACTIONS(2421), + [anon_sym_in2] = 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_hide] = ACTIONS(2421), + [anon_sym_hide_DASHenv] = ACTIONS(2421), + [anon_sym_overlay] = ACTIONS(2421), + [anon_sym_as] = ACTIONS(2421), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2421), + [aux_sym__val_number_token5] = ACTIONS(2421), + [aux_sym__val_number_token6] = ACTIONS(2421), + [anon_sym_DQUOTE] = ACTIONS(2421), + [sym__str_single_quotes] = ACTIONS(2421), + [sym__str_back_ticks] = ACTIONS(2421), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2421), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2421), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2421), + [sym__entry_separator] = ACTIONS(2423), + [anon_sym_register] = ACTIONS(2421), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2356), + [sym_raw_string_begin] = ACTIONS(2423), }, - [607] = { - [sym_comment] = STATE(607), - [anon_sym_export] = ACTIONS(1983), - [anon_sym_alias] = ACTIONS(1983), - [anon_sym_let] = ACTIONS(1983), - [anon_sym_let_DASHenv] = ACTIONS(1983), - [anon_sym_mut] = ACTIONS(1983), - [anon_sym_const] = ACTIONS(1983), - [aux_sym_cmd_identifier_token1] = ACTIONS(1983), - [aux_sym_cmd_identifier_token2] = ACTIONS(1983), - [aux_sym_cmd_identifier_token3] = ACTIONS(1983), - [aux_sym_cmd_identifier_token4] = ACTIONS(1983), - [aux_sym_cmd_identifier_token5] = ACTIONS(1983), - [aux_sym_cmd_identifier_token6] = ACTIONS(1983), - [aux_sym_cmd_identifier_token7] = ACTIONS(1983), - [aux_sym_cmd_identifier_token8] = ACTIONS(1983), - [aux_sym_cmd_identifier_token9] = ACTIONS(1983), - [aux_sym_cmd_identifier_token10] = ACTIONS(1983), - [aux_sym_cmd_identifier_token11] = ACTIONS(1983), - [aux_sym_cmd_identifier_token12] = ACTIONS(1983), - [aux_sym_cmd_identifier_token13] = ACTIONS(1983), - [aux_sym_cmd_identifier_token14] = ACTIONS(1983), - [aux_sym_cmd_identifier_token15] = ACTIONS(1983), - [aux_sym_cmd_identifier_token16] = ACTIONS(1983), - [aux_sym_cmd_identifier_token17] = ACTIONS(1983), - [aux_sym_cmd_identifier_token18] = ACTIONS(1983), - [aux_sym_cmd_identifier_token19] = ACTIONS(1983), - [aux_sym_cmd_identifier_token20] = ACTIONS(1983), - [aux_sym_cmd_identifier_token21] = ACTIONS(1983), - [aux_sym_cmd_identifier_token22] = ACTIONS(1983), - [aux_sym_cmd_identifier_token23] = ACTIONS(1983), - [aux_sym_cmd_identifier_token24] = ACTIONS(1983), - [aux_sym_cmd_identifier_token25] = ACTIONS(1983), - [aux_sym_cmd_identifier_token26] = ACTIONS(1983), - [aux_sym_cmd_identifier_token27] = ACTIONS(1983), - [aux_sym_cmd_identifier_token28] = ACTIONS(1983), - [aux_sym_cmd_identifier_token29] = ACTIONS(1983), - [aux_sym_cmd_identifier_token30] = ACTIONS(1983), - [aux_sym_cmd_identifier_token31] = ACTIONS(1983), - [aux_sym_cmd_identifier_token32] = ACTIONS(1983), - [aux_sym_cmd_identifier_token33] = ACTIONS(1983), - [aux_sym_cmd_identifier_token34] = ACTIONS(1983), - [aux_sym_cmd_identifier_token35] = ACTIONS(1983), - [aux_sym_cmd_identifier_token36] = ACTIONS(1983), - [aux_sym_cmd_identifier_token37] = ACTIONS(1983), - [aux_sym_cmd_identifier_token38] = ACTIONS(1983), - [aux_sym_cmd_identifier_token39] = ACTIONS(1983), - [aux_sym_cmd_identifier_token40] = ACTIONS(1983), - [anon_sym_def] = ACTIONS(1983), - [anon_sym_export_DASHenv] = ACTIONS(1983), - [anon_sym_extern] = ACTIONS(1983), - [anon_sym_module] = ACTIONS(1983), - [anon_sym_use] = ACTIONS(1983), - [anon_sym_LPAREN] = ACTIONS(1983), - [anon_sym_COMMA] = ACTIONS(1983), - [anon_sym_DOLLAR] = ACTIONS(1983), - [anon_sym_error] = ACTIONS(1983), - [anon_sym_DASH2] = ACTIONS(1983), - [anon_sym_break] = ACTIONS(1983), - [anon_sym_continue] = ACTIONS(1983), - [anon_sym_for] = ACTIONS(1983), - [anon_sym_in2] = ACTIONS(1983), - [anon_sym_loop] = ACTIONS(1983), - [anon_sym_make] = ACTIONS(1983), - [anon_sym_while] = ACTIONS(1983), - [anon_sym_do] = ACTIONS(1983), - [anon_sym_if] = ACTIONS(1983), - [anon_sym_else] = ACTIONS(1983), - [anon_sym_match] = ACTIONS(1983), - [anon_sym_RBRACE] = ACTIONS(1983), - [anon_sym_try] = ACTIONS(1983), - [anon_sym_catch] = ACTIONS(1983), - [anon_sym_return] = ACTIONS(1983), - [anon_sym_source] = ACTIONS(1983), - [anon_sym_source_DASHenv] = ACTIONS(1983), - [anon_sym_register] = ACTIONS(1983), - [anon_sym_hide] = ACTIONS(1983), - [anon_sym_hide_DASHenv] = ACTIONS(1983), - [anon_sym_overlay] = ACTIONS(1983), - [anon_sym_as] = ACTIONS(1983), - [anon_sym_PLUS2] = ACTIONS(1983), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1983), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1983), - [aux_sym__val_number_decimal_token1] = ACTIONS(1983), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1983), - [aux_sym__val_number_decimal_token4] = ACTIONS(1983), - [aux_sym__val_number_token1] = ACTIONS(1983), - [aux_sym__val_number_token2] = ACTIONS(1983), - [aux_sym__val_number_token3] = ACTIONS(1983), - [aux_sym__val_number_token4] = ACTIONS(1983), - [aux_sym__val_number_token5] = ACTIONS(1983), - [aux_sym__val_number_token6] = ACTIONS(1983), - [anon_sym_DQUOTE] = ACTIONS(1983), - [sym__str_single_quotes] = ACTIONS(1983), - [sym__str_back_ticks] = ACTIONS(1983), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1983), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1983), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1983), - [sym__entry_separator] = ACTIONS(1985), + [649] = { + [sym_comment] = STATE(649), + [anon_sym_export] = ACTIONS(2022), + [anon_sym_alias] = ACTIONS(2022), + [anon_sym_let] = ACTIONS(2022), + [anon_sym_let_DASHenv] = ACTIONS(2022), + [anon_sym_mut] = ACTIONS(2022), + [anon_sym_const] = ACTIONS(2022), + [aux_sym_cmd_identifier_token1] = ACTIONS(2022), + [aux_sym_cmd_identifier_token2] = ACTIONS(2022), + [aux_sym_cmd_identifier_token3] = ACTIONS(2022), + [aux_sym_cmd_identifier_token4] = ACTIONS(2022), + [aux_sym_cmd_identifier_token5] = ACTIONS(2022), + [aux_sym_cmd_identifier_token6] = ACTIONS(2022), + [aux_sym_cmd_identifier_token7] = ACTIONS(2022), + [aux_sym_cmd_identifier_token8] = ACTIONS(2022), + [aux_sym_cmd_identifier_token9] = ACTIONS(2022), + [aux_sym_cmd_identifier_token10] = ACTIONS(2022), + [aux_sym_cmd_identifier_token11] = ACTIONS(2022), + [aux_sym_cmd_identifier_token12] = ACTIONS(2022), + [aux_sym_cmd_identifier_token13] = ACTIONS(2022), + [aux_sym_cmd_identifier_token14] = ACTIONS(2022), + [aux_sym_cmd_identifier_token15] = ACTIONS(2022), + [aux_sym_cmd_identifier_token16] = ACTIONS(2022), + [aux_sym_cmd_identifier_token17] = ACTIONS(2022), + [aux_sym_cmd_identifier_token18] = ACTIONS(2022), + [aux_sym_cmd_identifier_token19] = ACTIONS(2022), + [aux_sym_cmd_identifier_token20] = ACTIONS(2022), + [aux_sym_cmd_identifier_token21] = ACTIONS(2022), + [aux_sym_cmd_identifier_token22] = ACTIONS(2022), + [aux_sym_cmd_identifier_token23] = ACTIONS(2022), + [aux_sym_cmd_identifier_token24] = ACTIONS(2022), + [aux_sym_cmd_identifier_token25] = ACTIONS(2022), + [aux_sym_cmd_identifier_token26] = ACTIONS(2022), + [aux_sym_cmd_identifier_token27] = ACTIONS(2022), + [aux_sym_cmd_identifier_token28] = ACTIONS(2022), + [aux_sym_cmd_identifier_token29] = ACTIONS(2022), + [aux_sym_cmd_identifier_token30] = ACTIONS(2022), + [aux_sym_cmd_identifier_token31] = ACTIONS(2022), + [aux_sym_cmd_identifier_token32] = ACTIONS(2022), + [aux_sym_cmd_identifier_token33] = ACTIONS(2022), + [aux_sym_cmd_identifier_token34] = ACTIONS(2022), + [aux_sym_cmd_identifier_token35] = ACTIONS(2022), + [aux_sym_cmd_identifier_token36] = ACTIONS(2022), + [aux_sym_cmd_identifier_token37] = ACTIONS(2022), + [aux_sym_cmd_identifier_token38] = ACTIONS(2022), + [aux_sym_cmd_identifier_token39] = ACTIONS(2022), + [aux_sym_cmd_identifier_token40] = ACTIONS(2022), + [anon_sym_def] = ACTIONS(2022), + [anon_sym_export_DASHenv] = ACTIONS(2022), + [anon_sym_extern] = ACTIONS(2022), + [anon_sym_module] = ACTIONS(2022), + [anon_sym_use] = ACTIONS(2022), + [anon_sym_LPAREN] = ACTIONS(2022), + [anon_sym_COMMA] = ACTIONS(2022), + [anon_sym_DOLLAR] = ACTIONS(2022), + [anon_sym_error] = ACTIONS(2022), + [anon_sym_DASH2] = ACTIONS(2022), + [anon_sym_break] = ACTIONS(2022), + [anon_sym_continue] = ACTIONS(2022), + [anon_sym_for] = ACTIONS(2022), + [anon_sym_in2] = ACTIONS(2022), + [anon_sym_loop] = ACTIONS(2022), + [anon_sym_make] = ACTIONS(2022), + [anon_sym_while] = ACTIONS(2022), + [anon_sym_do] = ACTIONS(2022), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_else] = ACTIONS(2022), + [anon_sym_match] = ACTIONS(2022), + [anon_sym_RBRACE] = ACTIONS(2022), + [anon_sym_try] = ACTIONS(2022), + [anon_sym_catch] = ACTIONS(2022), + [anon_sym_return] = ACTIONS(2022), + [anon_sym_source] = ACTIONS(2022), + [anon_sym_source_DASHenv] = ACTIONS(2022), + [anon_sym_hide] = ACTIONS(2022), + [anon_sym_hide_DASHenv] = ACTIONS(2022), + [anon_sym_overlay] = ACTIONS(2022), + [anon_sym_as] = ACTIONS(2022), + [anon_sym_PLUS2] = ACTIONS(2022), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2022), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2022), + [aux_sym__val_number_decimal_token1] = ACTIONS(2022), + [aux_sym__val_number_decimal_token2] = ACTIONS(2022), + [aux_sym__val_number_decimal_token3] = ACTIONS(2022), + [aux_sym__val_number_decimal_token4] = ACTIONS(2022), + [aux_sym__val_number_token1] = ACTIONS(2022), + [aux_sym__val_number_token2] = ACTIONS(2022), + [aux_sym__val_number_token3] = ACTIONS(2022), + [aux_sym__val_number_token4] = ACTIONS(2022), + [aux_sym__val_number_token5] = ACTIONS(2022), + [aux_sym__val_number_token6] = ACTIONS(2022), + [anon_sym_DQUOTE] = ACTIONS(2022), + [sym__str_single_quotes] = ACTIONS(2022), + [sym__str_back_ticks] = ACTIONS(2022), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2022), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2022), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2022), + [sym__entry_separator] = ACTIONS(2024), + [anon_sym_register] = ACTIONS(2022), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1985), + [sym_raw_string_begin] = ACTIONS(2024), }, - [608] = { - [sym_comment] = STATE(608), - [anon_sym_export] = ACTIONS(2358), - [anon_sym_alias] = ACTIONS(2358), - [anon_sym_let] = ACTIONS(2358), - [anon_sym_let_DASHenv] = ACTIONS(2358), - [anon_sym_mut] = ACTIONS(2358), - [anon_sym_const] = ACTIONS(2358), - [aux_sym_cmd_identifier_token1] = ACTIONS(2358), - [aux_sym_cmd_identifier_token2] = ACTIONS(2358), - [aux_sym_cmd_identifier_token3] = ACTIONS(2358), - [aux_sym_cmd_identifier_token4] = ACTIONS(2358), - [aux_sym_cmd_identifier_token5] = ACTIONS(2358), - [aux_sym_cmd_identifier_token6] = ACTIONS(2358), - [aux_sym_cmd_identifier_token7] = ACTIONS(2358), - [aux_sym_cmd_identifier_token8] = ACTIONS(2358), - [aux_sym_cmd_identifier_token9] = ACTIONS(2358), - [aux_sym_cmd_identifier_token10] = ACTIONS(2358), - [aux_sym_cmd_identifier_token11] = ACTIONS(2358), - [aux_sym_cmd_identifier_token12] = ACTIONS(2358), - [aux_sym_cmd_identifier_token13] = ACTIONS(2358), - [aux_sym_cmd_identifier_token14] = ACTIONS(2358), - [aux_sym_cmd_identifier_token15] = ACTIONS(2358), - [aux_sym_cmd_identifier_token16] = ACTIONS(2358), - [aux_sym_cmd_identifier_token17] = ACTIONS(2358), - [aux_sym_cmd_identifier_token18] = ACTIONS(2358), - [aux_sym_cmd_identifier_token19] = ACTIONS(2358), - [aux_sym_cmd_identifier_token20] = ACTIONS(2358), - [aux_sym_cmd_identifier_token21] = ACTIONS(2358), - [aux_sym_cmd_identifier_token22] = ACTIONS(2358), - [aux_sym_cmd_identifier_token23] = ACTIONS(2358), - [aux_sym_cmd_identifier_token24] = ACTIONS(2358), - [aux_sym_cmd_identifier_token25] = ACTIONS(2358), - [aux_sym_cmd_identifier_token26] = ACTIONS(2358), - [aux_sym_cmd_identifier_token27] = ACTIONS(2358), - [aux_sym_cmd_identifier_token28] = ACTIONS(2358), - [aux_sym_cmd_identifier_token29] = ACTIONS(2358), - [aux_sym_cmd_identifier_token30] = ACTIONS(2358), - [aux_sym_cmd_identifier_token31] = ACTIONS(2358), - [aux_sym_cmd_identifier_token32] = ACTIONS(2358), - [aux_sym_cmd_identifier_token33] = ACTIONS(2358), - [aux_sym_cmd_identifier_token34] = ACTIONS(2358), - [aux_sym_cmd_identifier_token35] = ACTIONS(2358), - [aux_sym_cmd_identifier_token36] = ACTIONS(2358), - [aux_sym_cmd_identifier_token37] = ACTIONS(2358), - [aux_sym_cmd_identifier_token38] = ACTIONS(2358), - [aux_sym_cmd_identifier_token39] = ACTIONS(2358), - [aux_sym_cmd_identifier_token40] = ACTIONS(2358), - [anon_sym_def] = ACTIONS(2358), - [anon_sym_export_DASHenv] = ACTIONS(2358), - [anon_sym_extern] = ACTIONS(2358), - [anon_sym_module] = ACTIONS(2358), - [anon_sym_use] = ACTIONS(2358), - [anon_sym_LPAREN] = ACTIONS(2358), - [anon_sym_COMMA] = ACTIONS(2358), - [anon_sym_DOLLAR] = ACTIONS(2358), - [anon_sym_error] = ACTIONS(2358), - [anon_sym_DASH2] = ACTIONS(2358), - [anon_sym_break] = ACTIONS(2358), - [anon_sym_continue] = ACTIONS(2358), - [anon_sym_for] = ACTIONS(2358), - [anon_sym_in2] = ACTIONS(2358), - [anon_sym_loop] = ACTIONS(2358), - [anon_sym_make] = ACTIONS(2358), - [anon_sym_while] = ACTIONS(2358), - [anon_sym_do] = ACTIONS(2358), - [anon_sym_if] = ACTIONS(2358), - [anon_sym_else] = ACTIONS(2358), - [anon_sym_match] = ACTIONS(2358), - [anon_sym_RBRACE] = ACTIONS(2358), - [anon_sym_try] = ACTIONS(2358), - [anon_sym_catch] = ACTIONS(2358), - [anon_sym_return] = ACTIONS(2358), - [anon_sym_source] = ACTIONS(2358), - [anon_sym_source_DASHenv] = ACTIONS(2358), - [anon_sym_register] = ACTIONS(2358), - [anon_sym_hide] = ACTIONS(2358), - [anon_sym_hide_DASHenv] = ACTIONS(2358), - [anon_sym_overlay] = ACTIONS(2358), - [anon_sym_as] = ACTIONS(2358), - [anon_sym_PLUS2] = ACTIONS(2358), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2358), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2358), - [aux_sym__val_number_decimal_token1] = ACTIONS(2358), - [aux_sym__val_number_decimal_token2] = ACTIONS(2358), - [aux_sym__val_number_decimal_token3] = ACTIONS(2358), - [aux_sym__val_number_decimal_token4] = ACTIONS(2358), - [aux_sym__val_number_token1] = ACTIONS(2358), - [aux_sym__val_number_token2] = ACTIONS(2358), - [aux_sym__val_number_token3] = ACTIONS(2358), - [aux_sym__val_number_token4] = ACTIONS(2358), - [aux_sym__val_number_token5] = ACTIONS(2358), - [aux_sym__val_number_token6] = ACTIONS(2358), - [anon_sym_DQUOTE] = ACTIONS(2358), - [sym__str_single_quotes] = ACTIONS(2358), - [sym__str_back_ticks] = ACTIONS(2358), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2358), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2358), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2358), - [sym__entry_separator] = ACTIONS(2360), + [650] = { + [sym_comment] = STATE(650), + [anon_sym_export] = ACTIONS(2026), + [anon_sym_alias] = ACTIONS(2026), + [anon_sym_let] = ACTIONS(2026), + [anon_sym_let_DASHenv] = ACTIONS(2026), + [anon_sym_mut] = ACTIONS(2026), + [anon_sym_const] = ACTIONS(2026), + [aux_sym_cmd_identifier_token1] = ACTIONS(2026), + [aux_sym_cmd_identifier_token2] = ACTIONS(2026), + [aux_sym_cmd_identifier_token3] = ACTIONS(2026), + [aux_sym_cmd_identifier_token4] = ACTIONS(2026), + [aux_sym_cmd_identifier_token5] = ACTIONS(2026), + [aux_sym_cmd_identifier_token6] = ACTIONS(2026), + [aux_sym_cmd_identifier_token7] = ACTIONS(2026), + [aux_sym_cmd_identifier_token8] = ACTIONS(2026), + [aux_sym_cmd_identifier_token9] = ACTIONS(2026), + [aux_sym_cmd_identifier_token10] = ACTIONS(2026), + [aux_sym_cmd_identifier_token11] = ACTIONS(2026), + [aux_sym_cmd_identifier_token12] = ACTIONS(2026), + [aux_sym_cmd_identifier_token13] = ACTIONS(2026), + [aux_sym_cmd_identifier_token14] = ACTIONS(2026), + [aux_sym_cmd_identifier_token15] = ACTIONS(2026), + [aux_sym_cmd_identifier_token16] = ACTIONS(2026), + [aux_sym_cmd_identifier_token17] = ACTIONS(2026), + [aux_sym_cmd_identifier_token18] = ACTIONS(2026), + [aux_sym_cmd_identifier_token19] = ACTIONS(2026), + [aux_sym_cmd_identifier_token20] = ACTIONS(2026), + [aux_sym_cmd_identifier_token21] = ACTIONS(2026), + [aux_sym_cmd_identifier_token22] = ACTIONS(2026), + [aux_sym_cmd_identifier_token23] = ACTIONS(2026), + [aux_sym_cmd_identifier_token24] = ACTIONS(2026), + [aux_sym_cmd_identifier_token25] = ACTIONS(2026), + [aux_sym_cmd_identifier_token26] = ACTIONS(2026), + [aux_sym_cmd_identifier_token27] = ACTIONS(2026), + [aux_sym_cmd_identifier_token28] = ACTIONS(2026), + [aux_sym_cmd_identifier_token29] = ACTIONS(2026), + [aux_sym_cmd_identifier_token30] = ACTIONS(2026), + [aux_sym_cmd_identifier_token31] = ACTIONS(2026), + [aux_sym_cmd_identifier_token32] = ACTIONS(2026), + [aux_sym_cmd_identifier_token33] = ACTIONS(2026), + [aux_sym_cmd_identifier_token34] = ACTIONS(2026), + [aux_sym_cmd_identifier_token35] = ACTIONS(2026), + [aux_sym_cmd_identifier_token36] = ACTIONS(2026), + [aux_sym_cmd_identifier_token37] = ACTIONS(2026), + [aux_sym_cmd_identifier_token38] = ACTIONS(2026), + [aux_sym_cmd_identifier_token39] = ACTIONS(2026), + [aux_sym_cmd_identifier_token40] = ACTIONS(2026), + [anon_sym_def] = ACTIONS(2026), + [anon_sym_export_DASHenv] = ACTIONS(2026), + [anon_sym_extern] = ACTIONS(2026), + [anon_sym_module] = ACTIONS(2026), + [anon_sym_use] = ACTIONS(2026), + [anon_sym_LPAREN] = ACTIONS(2026), + [anon_sym_COMMA] = ACTIONS(2026), + [anon_sym_DOLLAR] = ACTIONS(2026), + [anon_sym_error] = ACTIONS(2026), + [anon_sym_DASH2] = ACTIONS(2026), + [anon_sym_break] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(2026), + [anon_sym_for] = ACTIONS(2026), + [anon_sym_in2] = ACTIONS(2026), + [anon_sym_loop] = ACTIONS(2026), + [anon_sym_make] = ACTIONS(2026), + [anon_sym_while] = ACTIONS(2026), + [anon_sym_do] = ACTIONS(2026), + [anon_sym_if] = ACTIONS(2026), + [anon_sym_else] = ACTIONS(2026), + [anon_sym_match] = ACTIONS(2026), + [anon_sym_RBRACE] = ACTIONS(2026), + [anon_sym_try] = ACTIONS(2026), + [anon_sym_catch] = ACTIONS(2026), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_source] = ACTIONS(2026), + [anon_sym_source_DASHenv] = ACTIONS(2026), + [anon_sym_hide] = ACTIONS(2026), + [anon_sym_hide_DASHenv] = ACTIONS(2026), + [anon_sym_overlay] = ACTIONS(2026), + [anon_sym_as] = ACTIONS(2026), + [anon_sym_PLUS2] = ACTIONS(2026), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2026), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2026), + [aux_sym__val_number_decimal_token1] = ACTIONS(2026), + [aux_sym__val_number_decimal_token2] = ACTIONS(2026), + [aux_sym__val_number_decimal_token3] = ACTIONS(2026), + [aux_sym__val_number_decimal_token4] = ACTIONS(2026), + [aux_sym__val_number_token1] = ACTIONS(2026), + [aux_sym__val_number_token2] = ACTIONS(2026), + [aux_sym__val_number_token3] = ACTIONS(2026), + [aux_sym__val_number_token4] = ACTIONS(2026), + [aux_sym__val_number_token5] = ACTIONS(2026), + [aux_sym__val_number_token6] = ACTIONS(2026), + [anon_sym_DQUOTE] = ACTIONS(2026), + [sym__str_single_quotes] = ACTIONS(2026), + [sym__str_back_ticks] = ACTIONS(2026), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2026), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2026), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2026), + [sym__entry_separator] = ACTIONS(2028), + [anon_sym_register] = ACTIONS(2026), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2360), + [sym_raw_string_begin] = ACTIONS(2028), }, - [609] = { - [sym_comment] = STATE(609), - [anon_sym_export] = ACTIONS(2362), - [anon_sym_alias] = ACTIONS(2362), - [anon_sym_let] = ACTIONS(2362), - [anon_sym_let_DASHenv] = ACTIONS(2362), - [anon_sym_mut] = ACTIONS(2362), - [anon_sym_const] = ACTIONS(2362), - [aux_sym_cmd_identifier_token1] = ACTIONS(2362), - [aux_sym_cmd_identifier_token2] = ACTIONS(2362), - [aux_sym_cmd_identifier_token3] = ACTIONS(2362), - [aux_sym_cmd_identifier_token4] = ACTIONS(2362), - [aux_sym_cmd_identifier_token5] = ACTIONS(2362), - [aux_sym_cmd_identifier_token6] = ACTIONS(2362), - [aux_sym_cmd_identifier_token7] = ACTIONS(2362), - [aux_sym_cmd_identifier_token8] = ACTIONS(2362), - [aux_sym_cmd_identifier_token9] = ACTIONS(2362), - [aux_sym_cmd_identifier_token10] = ACTIONS(2362), - [aux_sym_cmd_identifier_token11] = ACTIONS(2362), - [aux_sym_cmd_identifier_token12] = ACTIONS(2362), - [aux_sym_cmd_identifier_token13] = ACTIONS(2362), - [aux_sym_cmd_identifier_token14] = ACTIONS(2362), - [aux_sym_cmd_identifier_token15] = ACTIONS(2362), - [aux_sym_cmd_identifier_token16] = ACTIONS(2362), - [aux_sym_cmd_identifier_token17] = ACTIONS(2362), - [aux_sym_cmd_identifier_token18] = ACTIONS(2362), - [aux_sym_cmd_identifier_token19] = ACTIONS(2362), - [aux_sym_cmd_identifier_token20] = ACTIONS(2362), - [aux_sym_cmd_identifier_token21] = ACTIONS(2362), - [aux_sym_cmd_identifier_token22] = ACTIONS(2362), - [aux_sym_cmd_identifier_token23] = ACTIONS(2362), - [aux_sym_cmd_identifier_token24] = ACTIONS(2362), - [aux_sym_cmd_identifier_token25] = ACTIONS(2362), - [aux_sym_cmd_identifier_token26] = ACTIONS(2362), - [aux_sym_cmd_identifier_token27] = ACTIONS(2362), - [aux_sym_cmd_identifier_token28] = ACTIONS(2362), - [aux_sym_cmd_identifier_token29] = ACTIONS(2362), - [aux_sym_cmd_identifier_token30] = ACTIONS(2362), - [aux_sym_cmd_identifier_token31] = ACTIONS(2362), - [aux_sym_cmd_identifier_token32] = ACTIONS(2362), - [aux_sym_cmd_identifier_token33] = ACTIONS(2362), - [aux_sym_cmd_identifier_token34] = ACTIONS(2362), - [aux_sym_cmd_identifier_token35] = ACTIONS(2362), - [aux_sym_cmd_identifier_token36] = ACTIONS(2362), - [aux_sym_cmd_identifier_token37] = ACTIONS(2362), - [aux_sym_cmd_identifier_token38] = ACTIONS(2362), - [aux_sym_cmd_identifier_token39] = ACTIONS(2362), - [aux_sym_cmd_identifier_token40] = ACTIONS(2362), - [anon_sym_def] = ACTIONS(2362), - [anon_sym_export_DASHenv] = ACTIONS(2362), - [anon_sym_extern] = ACTIONS(2362), - [anon_sym_module] = ACTIONS(2362), - [anon_sym_use] = ACTIONS(2362), - [anon_sym_LPAREN] = ACTIONS(2362), - [anon_sym_COMMA] = ACTIONS(2362), - [anon_sym_DOLLAR] = ACTIONS(2362), - [anon_sym_error] = ACTIONS(2362), - [anon_sym_DASH2] = ACTIONS(2362), - [anon_sym_break] = ACTIONS(2362), - [anon_sym_continue] = ACTIONS(2362), - [anon_sym_for] = ACTIONS(2362), - [anon_sym_in2] = ACTIONS(2362), - [anon_sym_loop] = ACTIONS(2362), - [anon_sym_make] = ACTIONS(2362), - [anon_sym_while] = ACTIONS(2362), - [anon_sym_do] = ACTIONS(2362), - [anon_sym_if] = ACTIONS(2362), - [anon_sym_else] = ACTIONS(2362), - [anon_sym_match] = ACTIONS(2362), - [anon_sym_RBRACE] = ACTIONS(2362), - [anon_sym_try] = ACTIONS(2362), - [anon_sym_catch] = ACTIONS(2362), - [anon_sym_return] = ACTIONS(2362), - [anon_sym_source] = ACTIONS(2362), - [anon_sym_source_DASHenv] = ACTIONS(2362), - [anon_sym_register] = ACTIONS(2362), - [anon_sym_hide] = ACTIONS(2362), - [anon_sym_hide_DASHenv] = ACTIONS(2362), - [anon_sym_overlay] = ACTIONS(2362), - [anon_sym_as] = ACTIONS(2362), - [anon_sym_PLUS2] = ACTIONS(2362), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2362), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2362), - [aux_sym__val_number_decimal_token1] = ACTIONS(2362), - [aux_sym__val_number_decimal_token2] = ACTIONS(2362), - [aux_sym__val_number_decimal_token3] = ACTIONS(2362), - [aux_sym__val_number_decimal_token4] = ACTIONS(2362), - [aux_sym__val_number_token1] = ACTIONS(2362), - [aux_sym__val_number_token2] = ACTIONS(2362), - [aux_sym__val_number_token3] = ACTIONS(2362), - [aux_sym__val_number_token4] = ACTIONS(2362), - [aux_sym__val_number_token5] = ACTIONS(2362), - [aux_sym__val_number_token6] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym__str_single_quotes] = ACTIONS(2362), - [sym__str_back_ticks] = ACTIONS(2362), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2362), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2362), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2362), - [sym__entry_separator] = ACTIONS(2364), + [651] = { + [sym_comment] = STATE(651), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(2425), + [anon_sym_DOLLAR] = ACTIONS(2425), + [anon_sym_error] = ACTIONS(2425), + [anon_sym_DASH2] = ACTIONS(2425), + [anon_sym_break] = ACTIONS(2425), + [anon_sym_continue] = ACTIONS(2425), + [anon_sym_for] = ACTIONS(2425), + [anon_sym_in2] = 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_hide] = ACTIONS(2425), + [anon_sym_hide_DASHenv] = ACTIONS(2425), + [anon_sym_overlay] = ACTIONS(2425), + [anon_sym_as] = ACTIONS(2425), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2425), + [aux_sym__val_number_token5] = ACTIONS(2425), + [aux_sym__val_number_token6] = ACTIONS(2425), + [anon_sym_DQUOTE] = ACTIONS(2425), + [sym__str_single_quotes] = ACTIONS(2425), + [sym__str_back_ticks] = ACTIONS(2425), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2425), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2425), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2425), + [sym__entry_separator] = ACTIONS(2427), + [anon_sym_register] = ACTIONS(2425), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2364), + [sym_raw_string_begin] = ACTIONS(2427), }, - [610] = { - [sym_comment] = STATE(610), - [anon_sym_export] = ACTIONS(2366), - [anon_sym_alias] = ACTIONS(2366), - [anon_sym_let] = ACTIONS(2366), - [anon_sym_let_DASHenv] = ACTIONS(2366), - [anon_sym_mut] = ACTIONS(2366), - [anon_sym_const] = ACTIONS(2366), - [aux_sym_cmd_identifier_token1] = ACTIONS(2366), - [aux_sym_cmd_identifier_token2] = ACTIONS(2366), - [aux_sym_cmd_identifier_token3] = ACTIONS(2366), - [aux_sym_cmd_identifier_token4] = ACTIONS(2366), - [aux_sym_cmd_identifier_token5] = ACTIONS(2366), - [aux_sym_cmd_identifier_token6] = ACTIONS(2366), - [aux_sym_cmd_identifier_token7] = ACTIONS(2366), - [aux_sym_cmd_identifier_token8] = ACTIONS(2366), - [aux_sym_cmd_identifier_token9] = ACTIONS(2366), - [aux_sym_cmd_identifier_token10] = ACTIONS(2366), - [aux_sym_cmd_identifier_token11] = ACTIONS(2366), - [aux_sym_cmd_identifier_token12] = ACTIONS(2366), - [aux_sym_cmd_identifier_token13] = ACTIONS(2366), - [aux_sym_cmd_identifier_token14] = ACTIONS(2366), - [aux_sym_cmd_identifier_token15] = ACTIONS(2366), - [aux_sym_cmd_identifier_token16] = ACTIONS(2366), - [aux_sym_cmd_identifier_token17] = ACTIONS(2366), - [aux_sym_cmd_identifier_token18] = ACTIONS(2366), - [aux_sym_cmd_identifier_token19] = ACTIONS(2366), - [aux_sym_cmd_identifier_token20] = ACTIONS(2366), - [aux_sym_cmd_identifier_token21] = ACTIONS(2366), - [aux_sym_cmd_identifier_token22] = ACTIONS(2366), - [aux_sym_cmd_identifier_token23] = ACTIONS(2366), - [aux_sym_cmd_identifier_token24] = ACTIONS(2366), - [aux_sym_cmd_identifier_token25] = ACTIONS(2366), - [aux_sym_cmd_identifier_token26] = ACTIONS(2366), - [aux_sym_cmd_identifier_token27] = ACTIONS(2366), - [aux_sym_cmd_identifier_token28] = ACTIONS(2366), - [aux_sym_cmd_identifier_token29] = ACTIONS(2366), - [aux_sym_cmd_identifier_token30] = ACTIONS(2366), - [aux_sym_cmd_identifier_token31] = ACTIONS(2366), - [aux_sym_cmd_identifier_token32] = ACTIONS(2366), - [aux_sym_cmd_identifier_token33] = ACTIONS(2366), - [aux_sym_cmd_identifier_token34] = ACTIONS(2366), - [aux_sym_cmd_identifier_token35] = ACTIONS(2366), - [aux_sym_cmd_identifier_token36] = ACTIONS(2366), - [aux_sym_cmd_identifier_token37] = ACTIONS(2366), - [aux_sym_cmd_identifier_token38] = ACTIONS(2366), - [aux_sym_cmd_identifier_token39] = ACTIONS(2366), - [aux_sym_cmd_identifier_token40] = ACTIONS(2366), - [anon_sym_def] = ACTIONS(2366), - [anon_sym_export_DASHenv] = ACTIONS(2366), - [anon_sym_extern] = ACTIONS(2366), - [anon_sym_module] = ACTIONS(2366), - [anon_sym_use] = ACTIONS(2366), - [anon_sym_LPAREN] = ACTIONS(2366), - [anon_sym_COMMA] = ACTIONS(2366), - [anon_sym_DOLLAR] = ACTIONS(2366), - [anon_sym_error] = ACTIONS(2366), - [anon_sym_DASH2] = ACTIONS(2366), - [anon_sym_break] = ACTIONS(2366), - [anon_sym_continue] = ACTIONS(2366), - [anon_sym_for] = ACTIONS(2366), - [anon_sym_in2] = ACTIONS(2366), - [anon_sym_loop] = ACTIONS(2366), - [anon_sym_make] = ACTIONS(2366), - [anon_sym_while] = ACTIONS(2366), - [anon_sym_do] = ACTIONS(2366), - [anon_sym_if] = ACTIONS(2366), - [anon_sym_else] = ACTIONS(2366), - [anon_sym_match] = ACTIONS(2366), - [anon_sym_RBRACE] = ACTIONS(2366), - [anon_sym_try] = ACTIONS(2366), - [anon_sym_catch] = ACTIONS(2366), - [anon_sym_return] = ACTIONS(2366), - [anon_sym_source] = ACTIONS(2366), - [anon_sym_source_DASHenv] = ACTIONS(2366), - [anon_sym_register] = ACTIONS(2366), - [anon_sym_hide] = ACTIONS(2366), - [anon_sym_hide_DASHenv] = ACTIONS(2366), - [anon_sym_overlay] = ACTIONS(2366), - [anon_sym_as] = ACTIONS(2366), - [anon_sym_PLUS2] = ACTIONS(2366), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2366), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2366), - [aux_sym__val_number_decimal_token1] = ACTIONS(2366), - [aux_sym__val_number_decimal_token2] = ACTIONS(2366), - [aux_sym__val_number_decimal_token3] = ACTIONS(2366), - [aux_sym__val_number_decimal_token4] = ACTIONS(2366), - [aux_sym__val_number_token1] = ACTIONS(2366), - [aux_sym__val_number_token2] = ACTIONS(2366), - [aux_sym__val_number_token3] = ACTIONS(2366), - [aux_sym__val_number_token4] = ACTIONS(2366), - [aux_sym__val_number_token5] = ACTIONS(2366), - [aux_sym__val_number_token6] = ACTIONS(2366), - [anon_sym_DQUOTE] = ACTIONS(2366), - [sym__str_single_quotes] = ACTIONS(2366), - [sym__str_back_ticks] = ACTIONS(2366), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2366), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2366), - [sym__entry_separator] = ACTIONS(2368), + [652] = { + [sym_comment] = STATE(652), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(2429), + [anon_sym_DOLLAR] = ACTIONS(2429), + [anon_sym_error] = ACTIONS(2429), + [anon_sym_DASH2] = ACTIONS(2429), + [anon_sym_break] = ACTIONS(2429), + [anon_sym_continue] = ACTIONS(2429), + [anon_sym_for] = ACTIONS(2429), + [anon_sym_in2] = 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_hide] = ACTIONS(2429), + [anon_sym_hide_DASHenv] = ACTIONS(2429), + [anon_sym_overlay] = ACTIONS(2429), + [anon_sym_as] = ACTIONS(2429), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2429), + [aux_sym__val_number_token5] = ACTIONS(2429), + [aux_sym__val_number_token6] = ACTIONS(2429), + [anon_sym_DQUOTE] = ACTIONS(2429), + [sym__str_single_quotes] = ACTIONS(2429), + [sym__str_back_ticks] = ACTIONS(2429), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2429), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2429), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2429), + [sym__entry_separator] = ACTIONS(2431), + [anon_sym_register] = ACTIONS(2429), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2368), + [sym_raw_string_begin] = ACTIONS(2431), }, - [611] = { - [sym_comment] = STATE(611), - [anon_sym_export] = ACTIONS(2366), - [anon_sym_alias] = ACTIONS(2366), - [anon_sym_let] = ACTIONS(2366), - [anon_sym_let_DASHenv] = ACTIONS(2366), - [anon_sym_mut] = ACTIONS(2366), - [anon_sym_const] = ACTIONS(2366), - [aux_sym_cmd_identifier_token1] = ACTIONS(2366), - [aux_sym_cmd_identifier_token2] = ACTIONS(2366), - [aux_sym_cmd_identifier_token3] = ACTIONS(2366), - [aux_sym_cmd_identifier_token4] = ACTIONS(2366), - [aux_sym_cmd_identifier_token5] = ACTIONS(2366), - [aux_sym_cmd_identifier_token6] = ACTIONS(2366), - [aux_sym_cmd_identifier_token7] = ACTIONS(2366), - [aux_sym_cmd_identifier_token8] = ACTIONS(2366), - [aux_sym_cmd_identifier_token9] = ACTIONS(2366), - [aux_sym_cmd_identifier_token10] = ACTIONS(2366), - [aux_sym_cmd_identifier_token11] = ACTIONS(2366), - [aux_sym_cmd_identifier_token12] = ACTIONS(2366), - [aux_sym_cmd_identifier_token13] = ACTIONS(2366), - [aux_sym_cmd_identifier_token14] = ACTIONS(2366), - [aux_sym_cmd_identifier_token15] = ACTIONS(2366), - [aux_sym_cmd_identifier_token16] = ACTIONS(2366), - [aux_sym_cmd_identifier_token17] = ACTIONS(2366), - [aux_sym_cmd_identifier_token18] = ACTIONS(2366), - [aux_sym_cmd_identifier_token19] = ACTIONS(2366), - [aux_sym_cmd_identifier_token20] = ACTIONS(2366), - [aux_sym_cmd_identifier_token21] = ACTIONS(2366), - [aux_sym_cmd_identifier_token22] = ACTIONS(2366), - [aux_sym_cmd_identifier_token23] = ACTIONS(2366), - [aux_sym_cmd_identifier_token24] = ACTIONS(2366), - [aux_sym_cmd_identifier_token25] = ACTIONS(2366), - [aux_sym_cmd_identifier_token26] = ACTIONS(2366), - [aux_sym_cmd_identifier_token27] = ACTIONS(2366), - [aux_sym_cmd_identifier_token28] = ACTIONS(2366), - [aux_sym_cmd_identifier_token29] = ACTIONS(2366), - [aux_sym_cmd_identifier_token30] = ACTIONS(2366), - [aux_sym_cmd_identifier_token31] = ACTIONS(2366), - [aux_sym_cmd_identifier_token32] = ACTIONS(2366), - [aux_sym_cmd_identifier_token33] = ACTIONS(2366), - [aux_sym_cmd_identifier_token34] = ACTIONS(2366), - [aux_sym_cmd_identifier_token35] = ACTIONS(2366), - [aux_sym_cmd_identifier_token36] = ACTIONS(2366), - [aux_sym_cmd_identifier_token37] = ACTIONS(2366), - [aux_sym_cmd_identifier_token38] = ACTIONS(2366), - [aux_sym_cmd_identifier_token39] = ACTIONS(2366), - [aux_sym_cmd_identifier_token40] = ACTIONS(2366), - [anon_sym_def] = ACTIONS(2366), - [anon_sym_export_DASHenv] = ACTIONS(2366), - [anon_sym_extern] = ACTIONS(2366), - [anon_sym_module] = ACTIONS(2366), - [anon_sym_use] = ACTIONS(2366), - [anon_sym_LPAREN] = ACTIONS(2366), - [anon_sym_COMMA] = ACTIONS(2366), - [anon_sym_DOLLAR] = ACTIONS(2366), - [anon_sym_error] = ACTIONS(2366), - [anon_sym_DASH2] = ACTIONS(2366), - [anon_sym_break] = ACTIONS(2366), - [anon_sym_continue] = ACTIONS(2366), - [anon_sym_for] = ACTIONS(2366), - [anon_sym_in2] = ACTIONS(2366), - [anon_sym_loop] = ACTIONS(2366), - [anon_sym_make] = ACTIONS(2366), - [anon_sym_while] = ACTIONS(2366), - [anon_sym_do] = ACTIONS(2366), - [anon_sym_if] = ACTIONS(2366), - [anon_sym_else] = ACTIONS(2366), - [anon_sym_match] = ACTIONS(2366), - [anon_sym_RBRACE] = ACTIONS(2366), - [anon_sym_try] = ACTIONS(2366), - [anon_sym_catch] = ACTIONS(2366), - [anon_sym_return] = ACTIONS(2366), - [anon_sym_source] = ACTIONS(2366), - [anon_sym_source_DASHenv] = ACTIONS(2366), - [anon_sym_register] = ACTIONS(2366), - [anon_sym_hide] = ACTIONS(2366), - [anon_sym_hide_DASHenv] = ACTIONS(2366), - [anon_sym_overlay] = ACTIONS(2366), - [anon_sym_as] = ACTIONS(2366), - [anon_sym_PLUS2] = ACTIONS(2366), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2366), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2366), - [aux_sym__val_number_decimal_token1] = ACTIONS(2366), - [aux_sym__val_number_decimal_token2] = ACTIONS(2366), - [aux_sym__val_number_decimal_token3] = ACTIONS(2366), - [aux_sym__val_number_decimal_token4] = ACTIONS(2366), - [aux_sym__val_number_token1] = ACTIONS(2366), - [aux_sym__val_number_token2] = ACTIONS(2366), - [aux_sym__val_number_token3] = ACTIONS(2366), - [aux_sym__val_number_token4] = ACTIONS(2366), - [aux_sym__val_number_token5] = ACTIONS(2366), - [aux_sym__val_number_token6] = ACTIONS(2366), - [anon_sym_DQUOTE] = ACTIONS(2366), - [sym__str_single_quotes] = ACTIONS(2366), - [sym__str_back_ticks] = ACTIONS(2366), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2366), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2366), - [sym__entry_separator] = ACTIONS(2368), + [653] = { + [sym_comment] = STATE(653), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(2433), + [anon_sym_DOLLAR] = ACTIONS(2433), + [anon_sym_error] = ACTIONS(2433), + [anon_sym_DASH2] = ACTIONS(2433), + [anon_sym_break] = ACTIONS(2433), + [anon_sym_continue] = ACTIONS(2433), + [anon_sym_for] = ACTIONS(2433), + [anon_sym_in2] = 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_hide] = ACTIONS(2433), + [anon_sym_hide_DASHenv] = ACTIONS(2433), + [anon_sym_overlay] = ACTIONS(2433), + [anon_sym_as] = ACTIONS(2433), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2433), + [aux_sym__val_number_token5] = ACTIONS(2433), + [aux_sym__val_number_token6] = ACTIONS(2433), + [anon_sym_DQUOTE] = ACTIONS(2433), + [sym__str_single_quotes] = ACTIONS(2433), + [sym__str_back_ticks] = ACTIONS(2433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2433), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2433), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2433), + [sym__entry_separator] = ACTIONS(2435), + [anon_sym_register] = ACTIONS(2433), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2368), + [sym_raw_string_begin] = ACTIONS(2435), }, - [612] = { - [sym_comment] = STATE(612), - [anon_sym_export] = ACTIONS(2370), - [anon_sym_alias] = ACTIONS(2370), - [anon_sym_let] = ACTIONS(2370), - [anon_sym_let_DASHenv] = ACTIONS(2370), - [anon_sym_mut] = ACTIONS(2370), - [anon_sym_const] = ACTIONS(2370), - [aux_sym_cmd_identifier_token1] = ACTIONS(2370), - [aux_sym_cmd_identifier_token2] = ACTIONS(2370), - [aux_sym_cmd_identifier_token3] = ACTIONS(2370), - [aux_sym_cmd_identifier_token4] = ACTIONS(2370), - [aux_sym_cmd_identifier_token5] = ACTIONS(2370), - [aux_sym_cmd_identifier_token6] = ACTIONS(2370), - [aux_sym_cmd_identifier_token7] = ACTIONS(2370), - [aux_sym_cmd_identifier_token8] = ACTIONS(2370), - [aux_sym_cmd_identifier_token9] = ACTIONS(2370), - [aux_sym_cmd_identifier_token10] = ACTIONS(2370), - [aux_sym_cmd_identifier_token11] = ACTIONS(2370), - [aux_sym_cmd_identifier_token12] = ACTIONS(2370), - [aux_sym_cmd_identifier_token13] = ACTIONS(2370), - [aux_sym_cmd_identifier_token14] = ACTIONS(2370), - [aux_sym_cmd_identifier_token15] = ACTIONS(2370), - [aux_sym_cmd_identifier_token16] = ACTIONS(2370), - [aux_sym_cmd_identifier_token17] = ACTIONS(2370), - [aux_sym_cmd_identifier_token18] = ACTIONS(2370), - [aux_sym_cmd_identifier_token19] = ACTIONS(2370), - [aux_sym_cmd_identifier_token20] = ACTIONS(2370), - [aux_sym_cmd_identifier_token21] = ACTIONS(2370), - [aux_sym_cmd_identifier_token22] = ACTIONS(2370), - [aux_sym_cmd_identifier_token23] = ACTIONS(2370), - [aux_sym_cmd_identifier_token24] = ACTIONS(2370), - [aux_sym_cmd_identifier_token25] = ACTIONS(2370), - [aux_sym_cmd_identifier_token26] = ACTIONS(2370), - [aux_sym_cmd_identifier_token27] = ACTIONS(2370), - [aux_sym_cmd_identifier_token28] = ACTIONS(2370), - [aux_sym_cmd_identifier_token29] = ACTIONS(2370), - [aux_sym_cmd_identifier_token30] = ACTIONS(2370), - [aux_sym_cmd_identifier_token31] = ACTIONS(2370), - [aux_sym_cmd_identifier_token32] = ACTIONS(2370), - [aux_sym_cmd_identifier_token33] = ACTIONS(2370), - [aux_sym_cmd_identifier_token34] = ACTIONS(2370), - [aux_sym_cmd_identifier_token35] = ACTIONS(2370), - [aux_sym_cmd_identifier_token36] = ACTIONS(2370), - [aux_sym_cmd_identifier_token37] = ACTIONS(2370), - [aux_sym_cmd_identifier_token38] = ACTIONS(2370), - [aux_sym_cmd_identifier_token39] = ACTIONS(2370), - [aux_sym_cmd_identifier_token40] = ACTIONS(2370), - [anon_sym_def] = ACTIONS(2370), - [anon_sym_export_DASHenv] = ACTIONS(2370), - [anon_sym_extern] = ACTIONS(2370), - [anon_sym_module] = ACTIONS(2370), - [anon_sym_use] = ACTIONS(2370), - [anon_sym_LPAREN] = ACTIONS(2370), - [anon_sym_COMMA] = ACTIONS(2370), - [anon_sym_DOLLAR] = ACTIONS(2370), - [anon_sym_error] = ACTIONS(2370), - [anon_sym_DASH2] = ACTIONS(2370), - [anon_sym_break] = ACTIONS(2370), - [anon_sym_continue] = ACTIONS(2370), - [anon_sym_for] = ACTIONS(2370), - [anon_sym_in2] = ACTIONS(2370), - [anon_sym_loop] = ACTIONS(2370), - [anon_sym_make] = ACTIONS(2370), - [anon_sym_while] = ACTIONS(2370), - [anon_sym_do] = ACTIONS(2370), - [anon_sym_if] = ACTIONS(2370), - [anon_sym_else] = ACTIONS(2370), - [anon_sym_match] = ACTIONS(2370), - [anon_sym_RBRACE] = ACTIONS(2370), - [anon_sym_try] = ACTIONS(2370), - [anon_sym_catch] = ACTIONS(2370), - [anon_sym_return] = ACTIONS(2370), - [anon_sym_source] = ACTIONS(2370), - [anon_sym_source_DASHenv] = ACTIONS(2370), - [anon_sym_register] = ACTIONS(2370), - [anon_sym_hide] = ACTIONS(2370), - [anon_sym_hide_DASHenv] = ACTIONS(2370), - [anon_sym_overlay] = ACTIONS(2370), - [anon_sym_as] = ACTIONS(2370), - [anon_sym_PLUS2] = ACTIONS(2370), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2370), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2370), - [aux_sym__val_number_decimal_token1] = ACTIONS(2370), - [aux_sym__val_number_decimal_token2] = ACTIONS(2370), - [aux_sym__val_number_decimal_token3] = ACTIONS(2370), - [aux_sym__val_number_decimal_token4] = ACTIONS(2370), - [aux_sym__val_number_token1] = ACTIONS(2370), - [aux_sym__val_number_token2] = ACTIONS(2370), - [aux_sym__val_number_token3] = ACTIONS(2370), - [aux_sym__val_number_token4] = ACTIONS(2370), - [aux_sym__val_number_token5] = ACTIONS(2370), - [aux_sym__val_number_token6] = ACTIONS(2370), - [anon_sym_DQUOTE] = ACTIONS(2370), - [sym__str_single_quotes] = ACTIONS(2370), - [sym__str_back_ticks] = ACTIONS(2370), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2370), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2370), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2370), - [sym__entry_separator] = ACTIONS(2372), + [654] = { + [sym_comment] = STATE(654), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(2437), + [anon_sym_DOLLAR] = ACTIONS(2437), + [anon_sym_error] = ACTIONS(2437), + [anon_sym_DASH2] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(2437), + [anon_sym_continue] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_in2] = 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_hide] = ACTIONS(2437), + [anon_sym_hide_DASHenv] = ACTIONS(2437), + [anon_sym_overlay] = ACTIONS(2437), + [anon_sym_as] = ACTIONS(2437), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2437), + [aux_sym__val_number_token5] = ACTIONS(2437), + [aux_sym__val_number_token6] = ACTIONS(2437), + [anon_sym_DQUOTE] = ACTIONS(2437), + [sym__str_single_quotes] = ACTIONS(2437), + [sym__str_back_ticks] = ACTIONS(2437), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2437), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2437), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2437), + [sym__entry_separator] = ACTIONS(2439), + [anon_sym_register] = ACTIONS(2437), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2372), + [sym_raw_string_begin] = ACTIONS(2439), }, - [613] = { - [sym_comment] = STATE(613), - [anon_sym_export] = ACTIONS(2374), - [anon_sym_alias] = ACTIONS(2374), - [anon_sym_let] = ACTIONS(2374), - [anon_sym_let_DASHenv] = ACTIONS(2374), - [anon_sym_mut] = ACTIONS(2374), - [anon_sym_const] = ACTIONS(2374), - [aux_sym_cmd_identifier_token1] = ACTIONS(2374), - [aux_sym_cmd_identifier_token2] = ACTIONS(2374), - [aux_sym_cmd_identifier_token3] = ACTIONS(2374), - [aux_sym_cmd_identifier_token4] = ACTIONS(2374), - [aux_sym_cmd_identifier_token5] = ACTIONS(2374), - [aux_sym_cmd_identifier_token6] = ACTIONS(2374), - [aux_sym_cmd_identifier_token7] = ACTIONS(2374), - [aux_sym_cmd_identifier_token8] = ACTIONS(2374), - [aux_sym_cmd_identifier_token9] = ACTIONS(2374), - [aux_sym_cmd_identifier_token10] = ACTIONS(2374), - [aux_sym_cmd_identifier_token11] = ACTIONS(2374), - [aux_sym_cmd_identifier_token12] = ACTIONS(2374), - [aux_sym_cmd_identifier_token13] = ACTIONS(2374), - [aux_sym_cmd_identifier_token14] = ACTIONS(2374), - [aux_sym_cmd_identifier_token15] = ACTIONS(2374), - [aux_sym_cmd_identifier_token16] = ACTIONS(2374), - [aux_sym_cmd_identifier_token17] = ACTIONS(2374), - [aux_sym_cmd_identifier_token18] = ACTIONS(2374), - [aux_sym_cmd_identifier_token19] = ACTIONS(2374), - [aux_sym_cmd_identifier_token20] = ACTIONS(2374), - [aux_sym_cmd_identifier_token21] = ACTIONS(2374), - [aux_sym_cmd_identifier_token22] = ACTIONS(2374), - [aux_sym_cmd_identifier_token23] = ACTIONS(2374), - [aux_sym_cmd_identifier_token24] = ACTIONS(2374), - [aux_sym_cmd_identifier_token25] = ACTIONS(2374), - [aux_sym_cmd_identifier_token26] = ACTIONS(2374), - [aux_sym_cmd_identifier_token27] = ACTIONS(2374), - [aux_sym_cmd_identifier_token28] = ACTIONS(2374), - [aux_sym_cmd_identifier_token29] = ACTIONS(2374), - [aux_sym_cmd_identifier_token30] = ACTIONS(2374), - [aux_sym_cmd_identifier_token31] = ACTIONS(2374), - [aux_sym_cmd_identifier_token32] = ACTIONS(2374), - [aux_sym_cmd_identifier_token33] = ACTIONS(2374), - [aux_sym_cmd_identifier_token34] = ACTIONS(2374), - [aux_sym_cmd_identifier_token35] = ACTIONS(2374), - [aux_sym_cmd_identifier_token36] = ACTIONS(2374), - [aux_sym_cmd_identifier_token37] = ACTIONS(2374), - [aux_sym_cmd_identifier_token38] = ACTIONS(2374), - [aux_sym_cmd_identifier_token39] = ACTIONS(2374), - [aux_sym_cmd_identifier_token40] = ACTIONS(2374), - [anon_sym_def] = ACTIONS(2374), - [anon_sym_export_DASHenv] = ACTIONS(2374), - [anon_sym_extern] = ACTIONS(2374), - [anon_sym_module] = ACTIONS(2374), - [anon_sym_use] = ACTIONS(2374), - [anon_sym_LPAREN] = ACTIONS(2374), - [anon_sym_COMMA] = ACTIONS(2374), - [anon_sym_DOLLAR] = ACTIONS(2374), - [anon_sym_error] = ACTIONS(2374), - [anon_sym_DASH2] = ACTIONS(2374), - [anon_sym_break] = ACTIONS(2374), - [anon_sym_continue] = ACTIONS(2374), - [anon_sym_for] = ACTIONS(2374), - [anon_sym_in2] = ACTIONS(2374), - [anon_sym_loop] = ACTIONS(2374), - [anon_sym_make] = ACTIONS(2374), - [anon_sym_while] = ACTIONS(2374), - [anon_sym_do] = ACTIONS(2374), - [anon_sym_if] = ACTIONS(2374), - [anon_sym_else] = ACTIONS(2374), - [anon_sym_match] = ACTIONS(2374), - [anon_sym_RBRACE] = ACTIONS(2374), - [anon_sym_try] = ACTIONS(2374), - [anon_sym_catch] = ACTIONS(2374), - [anon_sym_return] = ACTIONS(2374), - [anon_sym_source] = ACTIONS(2374), - [anon_sym_source_DASHenv] = ACTIONS(2374), - [anon_sym_register] = ACTIONS(2374), - [anon_sym_hide] = ACTIONS(2374), - [anon_sym_hide_DASHenv] = ACTIONS(2374), - [anon_sym_overlay] = ACTIONS(2374), - [anon_sym_as] = ACTIONS(2374), - [anon_sym_PLUS2] = ACTIONS(2374), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2374), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2374), - [aux_sym__val_number_decimal_token1] = ACTIONS(2374), - [aux_sym__val_number_decimal_token2] = ACTIONS(2374), - [aux_sym__val_number_decimal_token3] = ACTIONS(2374), - [aux_sym__val_number_decimal_token4] = ACTIONS(2374), - [aux_sym__val_number_token1] = ACTIONS(2374), - [aux_sym__val_number_token2] = ACTIONS(2374), - [aux_sym__val_number_token3] = ACTIONS(2374), - [aux_sym__val_number_token4] = ACTIONS(2374), - [aux_sym__val_number_token5] = ACTIONS(2374), - [aux_sym__val_number_token6] = ACTIONS(2374), - [anon_sym_DQUOTE] = ACTIONS(2374), - [sym__str_single_quotes] = ACTIONS(2374), - [sym__str_back_ticks] = ACTIONS(2374), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2374), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2374), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2374), - [sym__entry_separator] = ACTIONS(2376), + [655] = { + [sym_comment] = STATE(655), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(2441), + [anon_sym_DOLLAR] = ACTIONS(2441), + [anon_sym_error] = ACTIONS(2441), + [anon_sym_DASH2] = ACTIONS(2441), + [anon_sym_break] = ACTIONS(2441), + [anon_sym_continue] = ACTIONS(2441), + [anon_sym_for] = ACTIONS(2441), + [anon_sym_in2] = 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_hide] = ACTIONS(2441), + [anon_sym_hide_DASHenv] = ACTIONS(2441), + [anon_sym_overlay] = ACTIONS(2441), + [anon_sym_as] = ACTIONS(2441), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2441), + [aux_sym__val_number_token5] = ACTIONS(2441), + [aux_sym__val_number_token6] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2441), + [sym__str_single_quotes] = ACTIONS(2441), + [sym__str_back_ticks] = ACTIONS(2441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2441), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2441), + [sym__entry_separator] = ACTIONS(2443), + [anon_sym_register] = ACTIONS(2441), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2376), + [sym_raw_string_begin] = ACTIONS(2443), }, - [614] = { - [sym_comment] = STATE(614), - [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), - [aux_sym_cmd_identifier_token37] = ACTIONS(1755), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1755), - [aux_sym_cmd_identifier_token40] = ACTIONS(1755), - [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(1755), - [anon_sym_COMMA] = ACTIONS(1755), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in2] = 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_RBRACE] = 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_as] = ACTIONS(1755), - [anon_sym_PLUS2] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1755), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1755), - [aux_sym__val_number_decimal_token3] = ACTIONS(1755), - [aux_sym__val_number_decimal_token4] = ACTIONS(1755), - [aux_sym__val_number_token1] = ACTIONS(1755), - [aux_sym__val_number_token2] = ACTIONS(1755), - [aux_sym__val_number_token3] = ACTIONS(1755), - [aux_sym__val_number_token4] = ACTIONS(1755), - [aux_sym__val_number_token5] = ACTIONS(1755), - [aux_sym__val_number_token6] = ACTIONS(1755), - [anon_sym_DQUOTE] = ACTIONS(1755), - [sym__str_single_quotes] = ACTIONS(1755), - [sym__str_back_ticks] = ACTIONS(1755), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1755), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1755), - [sym__entry_separator] = ACTIONS(1757), + [656] = { + [sym_comment] = STATE(656), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(2445), + [anon_sym_DOLLAR] = ACTIONS(2445), + [anon_sym_error] = ACTIONS(2445), + [anon_sym_DASH2] = ACTIONS(2445), + [anon_sym_break] = ACTIONS(2445), + [anon_sym_continue] = ACTIONS(2445), + [anon_sym_for] = ACTIONS(2445), + [anon_sym_in2] = 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_hide] = ACTIONS(2445), + [anon_sym_hide_DASHenv] = ACTIONS(2445), + [anon_sym_overlay] = ACTIONS(2445), + [anon_sym_as] = ACTIONS(2445), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2445), + [aux_sym__val_number_token5] = ACTIONS(2445), + [aux_sym__val_number_token6] = ACTIONS(2445), + [anon_sym_DQUOTE] = ACTIONS(2445), + [sym__str_single_quotes] = ACTIONS(2445), + [sym__str_back_ticks] = ACTIONS(2445), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2445), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2445), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2445), + [sym__entry_separator] = ACTIONS(2447), + [anon_sym_register] = ACTIONS(2445), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1757), + [sym_raw_string_begin] = ACTIONS(2447), }, - [615] = { - [sym_comment] = STATE(615), - [anon_sym_export] = ACTIONS(1711), - [anon_sym_alias] = ACTIONS(1711), - [anon_sym_let] = ACTIONS(1711), - [anon_sym_let_DASHenv] = ACTIONS(1711), - [anon_sym_mut] = ACTIONS(1711), - [anon_sym_const] = ACTIONS(1711), - [aux_sym_cmd_identifier_token1] = ACTIONS(1711), - [aux_sym_cmd_identifier_token2] = ACTIONS(1711), - [aux_sym_cmd_identifier_token3] = ACTIONS(1711), - [aux_sym_cmd_identifier_token4] = ACTIONS(1711), - [aux_sym_cmd_identifier_token5] = ACTIONS(1711), - [aux_sym_cmd_identifier_token6] = ACTIONS(1711), - [aux_sym_cmd_identifier_token7] = ACTIONS(1711), - [aux_sym_cmd_identifier_token8] = ACTIONS(1711), - [aux_sym_cmd_identifier_token9] = ACTIONS(1711), - [aux_sym_cmd_identifier_token10] = ACTIONS(1711), - [aux_sym_cmd_identifier_token11] = ACTIONS(1711), - [aux_sym_cmd_identifier_token12] = ACTIONS(1711), - [aux_sym_cmd_identifier_token13] = ACTIONS(1711), - [aux_sym_cmd_identifier_token14] = ACTIONS(1711), - [aux_sym_cmd_identifier_token15] = ACTIONS(1711), - [aux_sym_cmd_identifier_token16] = ACTIONS(1711), - [aux_sym_cmd_identifier_token17] = ACTIONS(1711), - [aux_sym_cmd_identifier_token18] = ACTIONS(1711), - [aux_sym_cmd_identifier_token19] = ACTIONS(1711), - [aux_sym_cmd_identifier_token20] = ACTIONS(1711), - [aux_sym_cmd_identifier_token21] = ACTIONS(1711), - [aux_sym_cmd_identifier_token22] = ACTIONS(1711), - [aux_sym_cmd_identifier_token23] = ACTIONS(1711), - [aux_sym_cmd_identifier_token24] = ACTIONS(1711), - [aux_sym_cmd_identifier_token25] = ACTIONS(1711), - [aux_sym_cmd_identifier_token26] = ACTIONS(1711), - [aux_sym_cmd_identifier_token27] = ACTIONS(1711), - [aux_sym_cmd_identifier_token28] = ACTIONS(1711), - [aux_sym_cmd_identifier_token29] = ACTIONS(1711), - [aux_sym_cmd_identifier_token30] = ACTIONS(1711), - [aux_sym_cmd_identifier_token31] = ACTIONS(1711), - [aux_sym_cmd_identifier_token32] = ACTIONS(1711), - [aux_sym_cmd_identifier_token33] = ACTIONS(1711), - [aux_sym_cmd_identifier_token34] = ACTIONS(1711), - [aux_sym_cmd_identifier_token35] = ACTIONS(1711), - [aux_sym_cmd_identifier_token36] = ACTIONS(1711), - [aux_sym_cmd_identifier_token37] = ACTIONS(1711), - [aux_sym_cmd_identifier_token38] = ACTIONS(1711), - [aux_sym_cmd_identifier_token39] = ACTIONS(1711), - [aux_sym_cmd_identifier_token40] = ACTIONS(1711), - [anon_sym_def] = ACTIONS(1711), - [anon_sym_export_DASHenv] = ACTIONS(1711), - [anon_sym_extern] = ACTIONS(1711), - [anon_sym_module] = ACTIONS(1711), - [anon_sym_use] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_COMMA] = ACTIONS(1711), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_error] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_break] = ACTIONS(1711), - [anon_sym_continue] = ACTIONS(1711), - [anon_sym_for] = ACTIONS(1711), - [anon_sym_in2] = ACTIONS(1711), - [anon_sym_loop] = ACTIONS(1711), - [anon_sym_make] = ACTIONS(1711), - [anon_sym_while] = ACTIONS(1711), - [anon_sym_do] = ACTIONS(1711), - [anon_sym_if] = ACTIONS(1711), - [anon_sym_else] = ACTIONS(1711), - [anon_sym_match] = ACTIONS(1711), - [anon_sym_RBRACE] = ACTIONS(1711), - [anon_sym_try] = ACTIONS(1711), - [anon_sym_catch] = ACTIONS(1711), - [anon_sym_return] = ACTIONS(1711), - [anon_sym_source] = ACTIONS(1711), - [anon_sym_source_DASHenv] = ACTIONS(1711), - [anon_sym_register] = ACTIONS(1711), - [anon_sym_hide] = ACTIONS(1711), - [anon_sym_hide_DASHenv] = ACTIONS(1711), - [anon_sym_overlay] = ACTIONS(1711), - [anon_sym_as] = ACTIONS(1711), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1711), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1711), - [aux_sym__val_number_decimal_token3] = ACTIONS(1711), - [aux_sym__val_number_decimal_token4] = ACTIONS(1711), - [aux_sym__val_number_token1] = ACTIONS(1711), - [aux_sym__val_number_token2] = ACTIONS(1711), - [aux_sym__val_number_token3] = ACTIONS(1711), - [aux_sym__val_number_token4] = ACTIONS(1711), - [aux_sym__val_number_token5] = ACTIONS(1711), - [aux_sym__val_number_token6] = ACTIONS(1711), - [anon_sym_DQUOTE] = ACTIONS(1711), - [sym__str_single_quotes] = ACTIONS(1711), - [sym__str_back_ticks] = ACTIONS(1711), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1711), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1711), - [sym__entry_separator] = ACTIONS(1713), + [657] = { + [sym_comment] = STATE(657), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(2441), + [anon_sym_DOLLAR] = ACTIONS(2441), + [anon_sym_error] = ACTIONS(2441), + [anon_sym_DASH2] = ACTIONS(2441), + [anon_sym_break] = ACTIONS(2441), + [anon_sym_continue] = ACTIONS(2441), + [anon_sym_for] = ACTIONS(2441), + [anon_sym_in2] = 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_hide] = ACTIONS(2441), + [anon_sym_hide_DASHenv] = ACTIONS(2441), + [anon_sym_overlay] = ACTIONS(2441), + [anon_sym_as] = ACTIONS(2441), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2441), + [aux_sym__val_number_token5] = ACTIONS(2441), + [aux_sym__val_number_token6] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2441), + [sym__str_single_quotes] = ACTIONS(2441), + [sym__str_back_ticks] = ACTIONS(2441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2441), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2441), + [sym__entry_separator] = ACTIONS(2443), + [anon_sym_register] = ACTIONS(2441), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1713), + [sym_raw_string_begin] = ACTIONS(2443), }, - [616] = { - [sym_comment] = STATE(616), - [anon_sym_export] = ACTIONS(1783), - [anon_sym_alias] = ACTIONS(1783), - [anon_sym_let] = ACTIONS(1783), - [anon_sym_let_DASHenv] = ACTIONS(1783), - [anon_sym_mut] = ACTIONS(1783), - [anon_sym_const] = ACTIONS(1783), - [aux_sym_cmd_identifier_token1] = ACTIONS(1783), - [aux_sym_cmd_identifier_token2] = ACTIONS(1783), - [aux_sym_cmd_identifier_token3] = ACTIONS(1783), - [aux_sym_cmd_identifier_token4] = ACTIONS(1783), - [aux_sym_cmd_identifier_token5] = ACTIONS(1783), - [aux_sym_cmd_identifier_token6] = ACTIONS(1783), - [aux_sym_cmd_identifier_token7] = ACTIONS(1783), - [aux_sym_cmd_identifier_token8] = ACTIONS(1783), - [aux_sym_cmd_identifier_token9] = ACTIONS(1783), - [aux_sym_cmd_identifier_token10] = ACTIONS(1783), - [aux_sym_cmd_identifier_token11] = ACTIONS(1783), - [aux_sym_cmd_identifier_token12] = ACTIONS(1783), - [aux_sym_cmd_identifier_token13] = ACTIONS(1783), - [aux_sym_cmd_identifier_token14] = ACTIONS(1783), - [aux_sym_cmd_identifier_token15] = ACTIONS(1783), - [aux_sym_cmd_identifier_token16] = ACTIONS(1783), - [aux_sym_cmd_identifier_token17] = ACTIONS(1783), - [aux_sym_cmd_identifier_token18] = ACTIONS(1783), - [aux_sym_cmd_identifier_token19] = ACTIONS(1783), - [aux_sym_cmd_identifier_token20] = ACTIONS(1783), - [aux_sym_cmd_identifier_token21] = ACTIONS(1783), - [aux_sym_cmd_identifier_token22] = ACTIONS(1783), - [aux_sym_cmd_identifier_token23] = ACTIONS(1783), - [aux_sym_cmd_identifier_token24] = ACTIONS(1783), - [aux_sym_cmd_identifier_token25] = ACTIONS(1783), - [aux_sym_cmd_identifier_token26] = ACTIONS(1783), - [aux_sym_cmd_identifier_token27] = ACTIONS(1783), - [aux_sym_cmd_identifier_token28] = ACTIONS(1783), - [aux_sym_cmd_identifier_token29] = ACTIONS(1783), - [aux_sym_cmd_identifier_token30] = ACTIONS(1783), - [aux_sym_cmd_identifier_token31] = ACTIONS(1783), - [aux_sym_cmd_identifier_token32] = ACTIONS(1783), - [aux_sym_cmd_identifier_token33] = ACTIONS(1783), - [aux_sym_cmd_identifier_token34] = ACTIONS(1783), - [aux_sym_cmd_identifier_token35] = ACTIONS(1783), - [aux_sym_cmd_identifier_token36] = ACTIONS(1783), - [aux_sym_cmd_identifier_token37] = ACTIONS(1783), - [aux_sym_cmd_identifier_token38] = ACTIONS(1783), - [aux_sym_cmd_identifier_token39] = ACTIONS(1783), - [aux_sym_cmd_identifier_token40] = ACTIONS(1783), - [anon_sym_def] = ACTIONS(1783), - [anon_sym_export_DASHenv] = ACTIONS(1783), - [anon_sym_extern] = ACTIONS(1783), - [anon_sym_module] = ACTIONS(1783), - [anon_sym_use] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_COMMA] = ACTIONS(1783), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_error] = ACTIONS(1783), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_break] = ACTIONS(1783), - [anon_sym_continue] = ACTIONS(1783), - [anon_sym_for] = ACTIONS(1783), - [anon_sym_in2] = ACTIONS(1783), - [anon_sym_loop] = ACTIONS(1783), - [anon_sym_make] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1783), - [anon_sym_do] = ACTIONS(1783), - [anon_sym_if] = ACTIONS(1783), - [anon_sym_else] = ACTIONS(1783), - [anon_sym_match] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(1783), - [anon_sym_try] = ACTIONS(1783), - [anon_sym_catch] = ACTIONS(1783), - [anon_sym_return] = ACTIONS(1783), - [anon_sym_source] = ACTIONS(1783), - [anon_sym_source_DASHenv] = ACTIONS(1783), - [anon_sym_register] = ACTIONS(1783), - [anon_sym_hide] = ACTIONS(1783), - [anon_sym_hide_DASHenv] = ACTIONS(1783), - [anon_sym_overlay] = ACTIONS(1783), - [anon_sym_as] = ACTIONS(1783), - [anon_sym_PLUS2] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1783), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1783), - [aux_sym__val_number_decimal_token3] = ACTIONS(1783), - [aux_sym__val_number_decimal_token4] = ACTIONS(1783), - [aux_sym__val_number_token1] = ACTIONS(1783), - [aux_sym__val_number_token2] = ACTIONS(1783), - [aux_sym__val_number_token3] = ACTIONS(1783), - [aux_sym__val_number_token4] = ACTIONS(1783), - [aux_sym__val_number_token5] = ACTIONS(1783), - [aux_sym__val_number_token6] = ACTIONS(1783), - [anon_sym_DQUOTE] = ACTIONS(1783), - [sym__str_single_quotes] = ACTIONS(1783), - [sym__str_back_ticks] = ACTIONS(1783), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1783), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1783), - [sym__entry_separator] = ACTIONS(1785), + [658] = { + [sym_comment] = STATE(658), + [anon_sym_export] = ACTIONS(2449), + [anon_sym_alias] = ACTIONS(2449), + [anon_sym_let] = ACTIONS(2449), + [anon_sym_let_DASHenv] = ACTIONS(2449), + [anon_sym_mut] = ACTIONS(2449), + [anon_sym_const] = ACTIONS(2449), + [aux_sym_cmd_identifier_token1] = ACTIONS(2449), + [aux_sym_cmd_identifier_token2] = ACTIONS(2449), + [aux_sym_cmd_identifier_token3] = ACTIONS(2449), + [aux_sym_cmd_identifier_token4] = ACTIONS(2449), + [aux_sym_cmd_identifier_token5] = ACTIONS(2449), + [aux_sym_cmd_identifier_token6] = ACTIONS(2449), + [aux_sym_cmd_identifier_token7] = ACTIONS(2449), + [aux_sym_cmd_identifier_token8] = ACTIONS(2449), + [aux_sym_cmd_identifier_token9] = ACTIONS(2449), + [aux_sym_cmd_identifier_token10] = ACTIONS(2449), + [aux_sym_cmd_identifier_token11] = ACTIONS(2449), + [aux_sym_cmd_identifier_token12] = ACTIONS(2449), + [aux_sym_cmd_identifier_token13] = ACTIONS(2449), + [aux_sym_cmd_identifier_token14] = ACTIONS(2449), + [aux_sym_cmd_identifier_token15] = ACTIONS(2449), + [aux_sym_cmd_identifier_token16] = ACTIONS(2449), + [aux_sym_cmd_identifier_token17] = ACTIONS(2449), + [aux_sym_cmd_identifier_token18] = ACTIONS(2449), + [aux_sym_cmd_identifier_token19] = ACTIONS(2449), + [aux_sym_cmd_identifier_token20] = ACTIONS(2449), + [aux_sym_cmd_identifier_token21] = ACTIONS(2449), + [aux_sym_cmd_identifier_token22] = ACTIONS(2449), + [aux_sym_cmd_identifier_token23] = ACTIONS(2449), + [aux_sym_cmd_identifier_token24] = ACTIONS(2449), + [aux_sym_cmd_identifier_token25] = ACTIONS(2449), + [aux_sym_cmd_identifier_token26] = ACTIONS(2449), + [aux_sym_cmd_identifier_token27] = ACTIONS(2449), + [aux_sym_cmd_identifier_token28] = ACTIONS(2449), + [aux_sym_cmd_identifier_token29] = ACTIONS(2449), + [aux_sym_cmd_identifier_token30] = ACTIONS(2449), + [aux_sym_cmd_identifier_token31] = ACTIONS(2449), + [aux_sym_cmd_identifier_token32] = ACTIONS(2449), + [aux_sym_cmd_identifier_token33] = ACTIONS(2449), + [aux_sym_cmd_identifier_token34] = ACTIONS(2449), + [aux_sym_cmd_identifier_token35] = ACTIONS(2449), + [aux_sym_cmd_identifier_token36] = ACTIONS(2449), + [aux_sym_cmd_identifier_token37] = ACTIONS(2449), + [aux_sym_cmd_identifier_token38] = ACTIONS(2449), + [aux_sym_cmd_identifier_token39] = ACTIONS(2449), + [aux_sym_cmd_identifier_token40] = ACTIONS(2449), + [anon_sym_def] = ACTIONS(2449), + [anon_sym_export_DASHenv] = ACTIONS(2449), + [anon_sym_extern] = ACTIONS(2449), + [anon_sym_module] = ACTIONS(2449), + [anon_sym_use] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2449), + [anon_sym_COMMA] = ACTIONS(2449), + [anon_sym_DOLLAR] = ACTIONS(2449), + [anon_sym_error] = ACTIONS(2449), + [anon_sym_DASH2] = ACTIONS(2449), + [anon_sym_break] = ACTIONS(2449), + [anon_sym_continue] = ACTIONS(2449), + [anon_sym_for] = ACTIONS(2449), + [anon_sym_in2] = ACTIONS(2449), + [anon_sym_loop] = ACTIONS(2449), + [anon_sym_make] = ACTIONS(2449), + [anon_sym_while] = ACTIONS(2449), + [anon_sym_do] = ACTIONS(2449), + [anon_sym_if] = ACTIONS(2449), + [anon_sym_else] = ACTIONS(2449), + [anon_sym_match] = ACTIONS(2449), + [anon_sym_RBRACE] = ACTIONS(2449), + [anon_sym_try] = ACTIONS(2449), + [anon_sym_catch] = ACTIONS(2449), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_source] = ACTIONS(2449), + [anon_sym_source_DASHenv] = ACTIONS(2449), + [anon_sym_hide] = ACTIONS(2449), + [anon_sym_hide_DASHenv] = ACTIONS(2449), + [anon_sym_overlay] = ACTIONS(2449), + [anon_sym_as] = ACTIONS(2449), + [anon_sym_PLUS2] = ACTIONS(2449), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2449), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2449), + [aux_sym__val_number_decimal_token1] = ACTIONS(2449), + [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), + [aux_sym__val_number_token4] = ACTIONS(2449), + [aux_sym__val_number_token5] = ACTIONS(2449), + [aux_sym__val_number_token6] = ACTIONS(2449), + [anon_sym_DQUOTE] = ACTIONS(2449), + [sym__str_single_quotes] = ACTIONS(2449), + [sym__str_back_ticks] = ACTIONS(2449), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2449), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2449), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2449), + [sym__entry_separator] = ACTIONS(2451), + [anon_sym_register] = ACTIONS(2449), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1785), + [sym_raw_string_begin] = ACTIONS(2451), }, - [617] = { - [sym_comment] = STATE(617), - [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), - [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1835), - [anon_sym_DOLLAR] = ACTIONS(1835), - [anon_sym_error] = ACTIONS(1835), - [anon_sym_DASH2] = ACTIONS(1835), - [anon_sym_break] = ACTIONS(1835), - [anon_sym_continue] = ACTIONS(1835), - [anon_sym_for] = ACTIONS(1835), - [anon_sym_in2] = 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_as] = ACTIONS(1835), - [anon_sym_PLUS2] = 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), - [aux_sym__val_number_token4] = ACTIONS(1835), - [aux_sym__val_number_token5] = ACTIONS(1835), - [aux_sym__val_number_token6] = ACTIONS(1835), - [anon_sym_DQUOTE] = ACTIONS(1835), - [sym__str_single_quotes] = ACTIONS(1835), - [sym__str_back_ticks] = ACTIONS(1835), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1835), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1835), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1835), - [sym__entry_separator] = ACTIONS(1837), + [659] = { + [sym_comment] = STATE(659), + [anon_sym_export] = ACTIONS(2453), + [anon_sym_alias] = ACTIONS(2453), + [anon_sym_let] = ACTIONS(2453), + [anon_sym_let_DASHenv] = ACTIONS(2453), + [anon_sym_mut] = ACTIONS(2453), + [anon_sym_const] = ACTIONS(2453), + [aux_sym_cmd_identifier_token1] = ACTIONS(2453), + [aux_sym_cmd_identifier_token2] = ACTIONS(2453), + [aux_sym_cmd_identifier_token3] = ACTIONS(2453), + [aux_sym_cmd_identifier_token4] = ACTIONS(2453), + [aux_sym_cmd_identifier_token5] = ACTIONS(2453), + [aux_sym_cmd_identifier_token6] = ACTIONS(2453), + [aux_sym_cmd_identifier_token7] = ACTIONS(2453), + [aux_sym_cmd_identifier_token8] = ACTIONS(2453), + [aux_sym_cmd_identifier_token9] = ACTIONS(2453), + [aux_sym_cmd_identifier_token10] = ACTIONS(2453), + [aux_sym_cmd_identifier_token11] = ACTIONS(2453), + [aux_sym_cmd_identifier_token12] = ACTIONS(2453), + [aux_sym_cmd_identifier_token13] = ACTIONS(2453), + [aux_sym_cmd_identifier_token14] = ACTIONS(2453), + [aux_sym_cmd_identifier_token15] = ACTIONS(2453), + [aux_sym_cmd_identifier_token16] = ACTIONS(2453), + [aux_sym_cmd_identifier_token17] = ACTIONS(2453), + [aux_sym_cmd_identifier_token18] = ACTIONS(2453), + [aux_sym_cmd_identifier_token19] = ACTIONS(2453), + [aux_sym_cmd_identifier_token20] = ACTIONS(2453), + [aux_sym_cmd_identifier_token21] = ACTIONS(2453), + [aux_sym_cmd_identifier_token22] = ACTIONS(2453), + [aux_sym_cmd_identifier_token23] = ACTIONS(2453), + [aux_sym_cmd_identifier_token24] = ACTIONS(2453), + [aux_sym_cmd_identifier_token25] = ACTIONS(2453), + [aux_sym_cmd_identifier_token26] = ACTIONS(2453), + [aux_sym_cmd_identifier_token27] = ACTIONS(2453), + [aux_sym_cmd_identifier_token28] = ACTIONS(2453), + [aux_sym_cmd_identifier_token29] = ACTIONS(2453), + [aux_sym_cmd_identifier_token30] = ACTIONS(2453), + [aux_sym_cmd_identifier_token31] = ACTIONS(2453), + [aux_sym_cmd_identifier_token32] = ACTIONS(2453), + [aux_sym_cmd_identifier_token33] = ACTIONS(2453), + [aux_sym_cmd_identifier_token34] = ACTIONS(2453), + [aux_sym_cmd_identifier_token35] = ACTIONS(2453), + [aux_sym_cmd_identifier_token36] = ACTIONS(2453), + [aux_sym_cmd_identifier_token37] = ACTIONS(2453), + [aux_sym_cmd_identifier_token38] = ACTIONS(2453), + [aux_sym_cmd_identifier_token39] = ACTIONS(2453), + [aux_sym_cmd_identifier_token40] = ACTIONS(2453), + [anon_sym_def] = ACTIONS(2453), + [anon_sym_export_DASHenv] = ACTIONS(2453), + [anon_sym_extern] = ACTIONS(2453), + [anon_sym_module] = ACTIONS(2453), + [anon_sym_use] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2453), + [anon_sym_COMMA] = ACTIONS(2453), + [anon_sym_DOLLAR] = ACTIONS(2453), + [anon_sym_error] = ACTIONS(2453), + [anon_sym_DASH2] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [anon_sym_continue] = ACTIONS(2453), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_in2] = ACTIONS(2453), + [anon_sym_loop] = ACTIONS(2453), + [anon_sym_make] = ACTIONS(2453), + [anon_sym_while] = ACTIONS(2453), + [anon_sym_do] = ACTIONS(2453), + [anon_sym_if] = ACTIONS(2453), + [anon_sym_else] = ACTIONS(2453), + [anon_sym_match] = ACTIONS(2453), + [anon_sym_RBRACE] = ACTIONS(2453), + [anon_sym_try] = ACTIONS(2453), + [anon_sym_catch] = ACTIONS(2453), + [anon_sym_return] = ACTIONS(2453), + [anon_sym_source] = ACTIONS(2453), + [anon_sym_source_DASHenv] = ACTIONS(2453), + [anon_sym_hide] = ACTIONS(2453), + [anon_sym_hide_DASHenv] = ACTIONS(2453), + [anon_sym_overlay] = ACTIONS(2453), + [anon_sym_as] = ACTIONS(2453), + [anon_sym_PLUS2] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2453), + [aux_sym__val_number_decimal_token1] = ACTIONS(2453), + [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), + [aux_sym__val_number_token4] = ACTIONS(2453), + [aux_sym__val_number_token5] = ACTIONS(2453), + [aux_sym__val_number_token6] = ACTIONS(2453), + [anon_sym_DQUOTE] = ACTIONS(2453), + [sym__str_single_quotes] = ACTIONS(2453), + [sym__str_back_ticks] = ACTIONS(2453), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2453), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2453), + [sym__entry_separator] = ACTIONS(2455), + [anon_sym_register] = ACTIONS(2453), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1837), + [sym_raw_string_begin] = ACTIONS(2455), }, - [618] = { - [sym_comment] = STATE(618), - [anon_sym_export] = ACTIONS(2378), - [anon_sym_alias] = ACTIONS(2378), - [anon_sym_let] = ACTIONS(2378), - [anon_sym_let_DASHenv] = ACTIONS(2378), - [anon_sym_mut] = ACTIONS(2378), - [anon_sym_const] = ACTIONS(2378), - [aux_sym_cmd_identifier_token1] = ACTIONS(2378), - [aux_sym_cmd_identifier_token2] = ACTIONS(2378), - [aux_sym_cmd_identifier_token3] = ACTIONS(2378), - [aux_sym_cmd_identifier_token4] = ACTIONS(2378), - [aux_sym_cmd_identifier_token5] = ACTIONS(2378), - [aux_sym_cmd_identifier_token6] = ACTIONS(2378), - [aux_sym_cmd_identifier_token7] = ACTIONS(2378), - [aux_sym_cmd_identifier_token8] = ACTIONS(2378), - [aux_sym_cmd_identifier_token9] = ACTIONS(2378), - [aux_sym_cmd_identifier_token10] = ACTIONS(2378), - [aux_sym_cmd_identifier_token11] = ACTIONS(2378), - [aux_sym_cmd_identifier_token12] = ACTIONS(2378), - [aux_sym_cmd_identifier_token13] = ACTIONS(2378), - [aux_sym_cmd_identifier_token14] = ACTIONS(2378), - [aux_sym_cmd_identifier_token15] = ACTIONS(2378), - [aux_sym_cmd_identifier_token16] = ACTIONS(2378), - [aux_sym_cmd_identifier_token17] = ACTIONS(2378), - [aux_sym_cmd_identifier_token18] = ACTIONS(2378), - [aux_sym_cmd_identifier_token19] = ACTIONS(2378), - [aux_sym_cmd_identifier_token20] = ACTIONS(2378), - [aux_sym_cmd_identifier_token21] = ACTIONS(2378), - [aux_sym_cmd_identifier_token22] = ACTIONS(2378), - [aux_sym_cmd_identifier_token23] = ACTIONS(2378), - [aux_sym_cmd_identifier_token24] = ACTIONS(2378), - [aux_sym_cmd_identifier_token25] = ACTIONS(2378), - [aux_sym_cmd_identifier_token26] = ACTIONS(2378), - [aux_sym_cmd_identifier_token27] = ACTIONS(2378), - [aux_sym_cmd_identifier_token28] = ACTIONS(2378), - [aux_sym_cmd_identifier_token29] = ACTIONS(2378), - [aux_sym_cmd_identifier_token30] = ACTIONS(2378), - [aux_sym_cmd_identifier_token31] = ACTIONS(2378), - [aux_sym_cmd_identifier_token32] = ACTIONS(2378), - [aux_sym_cmd_identifier_token33] = ACTIONS(2378), - [aux_sym_cmd_identifier_token34] = ACTIONS(2378), - [aux_sym_cmd_identifier_token35] = ACTIONS(2378), - [aux_sym_cmd_identifier_token36] = ACTIONS(2378), - [aux_sym_cmd_identifier_token37] = ACTIONS(2378), - [aux_sym_cmd_identifier_token38] = ACTIONS(2378), - [aux_sym_cmd_identifier_token39] = ACTIONS(2378), - [aux_sym_cmd_identifier_token40] = ACTIONS(2378), - [anon_sym_def] = ACTIONS(2378), - [anon_sym_export_DASHenv] = ACTIONS(2378), - [anon_sym_extern] = ACTIONS(2378), - [anon_sym_module] = ACTIONS(2378), - [anon_sym_use] = ACTIONS(2378), - [anon_sym_LPAREN] = ACTIONS(2378), - [anon_sym_COMMA] = ACTIONS(2378), - [anon_sym_DOLLAR] = ACTIONS(2378), - [anon_sym_error] = ACTIONS(2378), - [anon_sym_DASH2] = ACTIONS(2378), - [anon_sym_break] = ACTIONS(2378), - [anon_sym_continue] = ACTIONS(2378), - [anon_sym_for] = ACTIONS(2378), - [anon_sym_in2] = ACTIONS(2378), - [anon_sym_loop] = ACTIONS(2378), - [anon_sym_make] = ACTIONS(2378), - [anon_sym_while] = ACTIONS(2378), - [anon_sym_do] = ACTIONS(2378), - [anon_sym_if] = ACTIONS(2378), - [anon_sym_else] = ACTIONS(2378), - [anon_sym_match] = ACTIONS(2378), - [anon_sym_RBRACE] = ACTIONS(2378), - [anon_sym_try] = ACTIONS(2378), - [anon_sym_catch] = ACTIONS(2378), - [anon_sym_return] = ACTIONS(2378), - [anon_sym_source] = ACTIONS(2378), - [anon_sym_source_DASHenv] = ACTIONS(2378), - [anon_sym_register] = ACTIONS(2378), - [anon_sym_hide] = ACTIONS(2378), - [anon_sym_hide_DASHenv] = ACTIONS(2378), - [anon_sym_overlay] = ACTIONS(2378), - [anon_sym_as] = ACTIONS(2378), - [anon_sym_PLUS2] = ACTIONS(2378), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2378), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2378), - [aux_sym__val_number_decimal_token1] = ACTIONS(2378), - [aux_sym__val_number_decimal_token2] = ACTIONS(2378), - [aux_sym__val_number_decimal_token3] = ACTIONS(2378), - [aux_sym__val_number_decimal_token4] = ACTIONS(2378), - [aux_sym__val_number_token1] = ACTIONS(2378), - [aux_sym__val_number_token2] = ACTIONS(2378), - [aux_sym__val_number_token3] = ACTIONS(2378), - [aux_sym__val_number_token4] = ACTIONS(2378), - [aux_sym__val_number_token5] = ACTIONS(2378), - [aux_sym__val_number_token6] = ACTIONS(2378), - [anon_sym_DQUOTE] = ACTIONS(2378), - [sym__str_single_quotes] = ACTIONS(2378), - [sym__str_back_ticks] = ACTIONS(2378), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2378), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2378), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2378), - [sym__entry_separator] = ACTIONS(2380), + [660] = { + [sym_comment] = STATE(660), + [anon_sym_export] = ACTIONS(2457), + [anon_sym_alias] = ACTIONS(2457), + [anon_sym_let] = ACTIONS(2457), + [anon_sym_let_DASHenv] = ACTIONS(2457), + [anon_sym_mut] = ACTIONS(2457), + [anon_sym_const] = ACTIONS(2457), + [aux_sym_cmd_identifier_token1] = ACTIONS(2457), + [aux_sym_cmd_identifier_token2] = ACTIONS(2457), + [aux_sym_cmd_identifier_token3] = ACTIONS(2457), + [aux_sym_cmd_identifier_token4] = ACTIONS(2457), + [aux_sym_cmd_identifier_token5] = ACTIONS(2457), + [aux_sym_cmd_identifier_token6] = ACTIONS(2457), + [aux_sym_cmd_identifier_token7] = ACTIONS(2457), + [aux_sym_cmd_identifier_token8] = ACTIONS(2457), + [aux_sym_cmd_identifier_token9] = ACTIONS(2457), + [aux_sym_cmd_identifier_token10] = ACTIONS(2457), + [aux_sym_cmd_identifier_token11] = ACTIONS(2457), + [aux_sym_cmd_identifier_token12] = ACTIONS(2457), + [aux_sym_cmd_identifier_token13] = ACTIONS(2457), + [aux_sym_cmd_identifier_token14] = ACTIONS(2457), + [aux_sym_cmd_identifier_token15] = ACTIONS(2457), + [aux_sym_cmd_identifier_token16] = ACTIONS(2457), + [aux_sym_cmd_identifier_token17] = ACTIONS(2457), + [aux_sym_cmd_identifier_token18] = ACTIONS(2457), + [aux_sym_cmd_identifier_token19] = ACTIONS(2457), + [aux_sym_cmd_identifier_token20] = ACTIONS(2457), + [aux_sym_cmd_identifier_token21] = ACTIONS(2457), + [aux_sym_cmd_identifier_token22] = ACTIONS(2457), + [aux_sym_cmd_identifier_token23] = ACTIONS(2457), + [aux_sym_cmd_identifier_token24] = ACTIONS(2457), + [aux_sym_cmd_identifier_token25] = ACTIONS(2457), + [aux_sym_cmd_identifier_token26] = ACTIONS(2457), + [aux_sym_cmd_identifier_token27] = ACTIONS(2457), + [aux_sym_cmd_identifier_token28] = ACTIONS(2457), + [aux_sym_cmd_identifier_token29] = ACTIONS(2457), + [aux_sym_cmd_identifier_token30] = ACTIONS(2457), + [aux_sym_cmd_identifier_token31] = ACTIONS(2457), + [aux_sym_cmd_identifier_token32] = ACTIONS(2457), + [aux_sym_cmd_identifier_token33] = ACTIONS(2457), + [aux_sym_cmd_identifier_token34] = ACTIONS(2457), + [aux_sym_cmd_identifier_token35] = ACTIONS(2457), + [aux_sym_cmd_identifier_token36] = ACTIONS(2457), + [aux_sym_cmd_identifier_token37] = ACTIONS(2457), + [aux_sym_cmd_identifier_token38] = ACTIONS(2457), + [aux_sym_cmd_identifier_token39] = ACTIONS(2457), + [aux_sym_cmd_identifier_token40] = ACTIONS(2457), + [anon_sym_def] = ACTIONS(2457), + [anon_sym_export_DASHenv] = ACTIONS(2457), + [anon_sym_extern] = ACTIONS(2457), + [anon_sym_module] = ACTIONS(2457), + [anon_sym_use] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(2457), + [anon_sym_COMMA] = ACTIONS(2457), + [anon_sym_DOLLAR] = ACTIONS(2457), + [anon_sym_error] = ACTIONS(2457), + [anon_sym_DASH2] = ACTIONS(2457), + [anon_sym_break] = ACTIONS(2457), + [anon_sym_continue] = ACTIONS(2457), + [anon_sym_for] = ACTIONS(2457), + [anon_sym_in2] = ACTIONS(2457), + [anon_sym_loop] = ACTIONS(2457), + [anon_sym_make] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(2457), + [anon_sym_do] = ACTIONS(2457), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_else] = ACTIONS(2457), + [anon_sym_match] = ACTIONS(2457), + [anon_sym_RBRACE] = ACTIONS(2457), + [anon_sym_try] = ACTIONS(2457), + [anon_sym_catch] = ACTIONS(2457), + [anon_sym_return] = ACTIONS(2457), + [anon_sym_source] = ACTIONS(2457), + [anon_sym_source_DASHenv] = ACTIONS(2457), + [anon_sym_hide] = ACTIONS(2457), + [anon_sym_hide_DASHenv] = ACTIONS(2457), + [anon_sym_overlay] = ACTIONS(2457), + [anon_sym_as] = ACTIONS(2457), + [anon_sym_PLUS2] = ACTIONS(2457), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2457), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2457), + [aux_sym__val_number_decimal_token1] = ACTIONS(2457), + [aux_sym__val_number_decimal_token2] = ACTIONS(2457), + [aux_sym__val_number_decimal_token3] = ACTIONS(2457), + [aux_sym__val_number_decimal_token4] = ACTIONS(2457), + [aux_sym__val_number_token1] = ACTIONS(2457), + [aux_sym__val_number_token2] = ACTIONS(2457), + [aux_sym__val_number_token3] = ACTIONS(2457), + [aux_sym__val_number_token4] = ACTIONS(2457), + [aux_sym__val_number_token5] = ACTIONS(2457), + [aux_sym__val_number_token6] = ACTIONS(2457), + [anon_sym_DQUOTE] = ACTIONS(2457), + [sym__str_single_quotes] = ACTIONS(2457), + [sym__str_back_ticks] = ACTIONS(2457), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2457), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2457), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2457), + [sym__entry_separator] = ACTIONS(2459), + [anon_sym_register] = ACTIONS(2457), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2380), + [sym_raw_string_begin] = ACTIONS(2459), }, - [619] = { - [sym_comment] = STATE(619), - [anon_sym_export] = ACTIONS(2382), - [anon_sym_alias] = ACTIONS(2382), - [anon_sym_let] = ACTIONS(2382), - [anon_sym_let_DASHenv] = ACTIONS(2382), - [anon_sym_mut] = ACTIONS(2382), - [anon_sym_const] = ACTIONS(2382), - [aux_sym_cmd_identifier_token1] = ACTIONS(2382), - [aux_sym_cmd_identifier_token2] = ACTIONS(2382), - [aux_sym_cmd_identifier_token3] = ACTIONS(2382), - [aux_sym_cmd_identifier_token4] = ACTIONS(2382), - [aux_sym_cmd_identifier_token5] = ACTIONS(2382), - [aux_sym_cmd_identifier_token6] = ACTIONS(2382), - [aux_sym_cmd_identifier_token7] = ACTIONS(2382), - [aux_sym_cmd_identifier_token8] = ACTIONS(2382), - [aux_sym_cmd_identifier_token9] = ACTIONS(2382), - [aux_sym_cmd_identifier_token10] = ACTIONS(2382), - [aux_sym_cmd_identifier_token11] = ACTIONS(2382), - [aux_sym_cmd_identifier_token12] = ACTIONS(2382), - [aux_sym_cmd_identifier_token13] = ACTIONS(2382), - [aux_sym_cmd_identifier_token14] = ACTIONS(2382), - [aux_sym_cmd_identifier_token15] = ACTIONS(2382), - [aux_sym_cmd_identifier_token16] = ACTIONS(2382), - [aux_sym_cmd_identifier_token17] = ACTIONS(2382), - [aux_sym_cmd_identifier_token18] = ACTIONS(2382), - [aux_sym_cmd_identifier_token19] = ACTIONS(2382), - [aux_sym_cmd_identifier_token20] = ACTIONS(2382), - [aux_sym_cmd_identifier_token21] = ACTIONS(2382), - [aux_sym_cmd_identifier_token22] = ACTIONS(2382), - [aux_sym_cmd_identifier_token23] = ACTIONS(2382), - [aux_sym_cmd_identifier_token24] = ACTIONS(2382), - [aux_sym_cmd_identifier_token25] = ACTIONS(2382), - [aux_sym_cmd_identifier_token26] = ACTIONS(2382), - [aux_sym_cmd_identifier_token27] = ACTIONS(2382), - [aux_sym_cmd_identifier_token28] = ACTIONS(2382), - [aux_sym_cmd_identifier_token29] = ACTIONS(2382), - [aux_sym_cmd_identifier_token30] = ACTIONS(2382), - [aux_sym_cmd_identifier_token31] = ACTIONS(2382), - [aux_sym_cmd_identifier_token32] = ACTIONS(2382), - [aux_sym_cmd_identifier_token33] = ACTIONS(2382), - [aux_sym_cmd_identifier_token34] = ACTIONS(2382), - [aux_sym_cmd_identifier_token35] = ACTIONS(2382), - [aux_sym_cmd_identifier_token36] = ACTIONS(2382), - [aux_sym_cmd_identifier_token37] = ACTIONS(2382), - [aux_sym_cmd_identifier_token38] = ACTIONS(2382), - [aux_sym_cmd_identifier_token39] = ACTIONS(2382), - [aux_sym_cmd_identifier_token40] = ACTIONS(2382), - [anon_sym_def] = ACTIONS(2382), - [anon_sym_export_DASHenv] = ACTIONS(2382), - [anon_sym_extern] = ACTIONS(2382), - [anon_sym_module] = ACTIONS(2382), - [anon_sym_use] = ACTIONS(2382), - [anon_sym_LPAREN] = ACTIONS(2382), - [anon_sym_COMMA] = ACTIONS(2382), - [anon_sym_DOLLAR] = ACTIONS(2382), - [anon_sym_error] = ACTIONS(2382), - [anon_sym_DASH2] = ACTIONS(2382), - [anon_sym_break] = ACTIONS(2382), - [anon_sym_continue] = ACTIONS(2382), - [anon_sym_for] = ACTIONS(2382), - [anon_sym_in2] = ACTIONS(2382), - [anon_sym_loop] = ACTIONS(2382), - [anon_sym_make] = ACTIONS(2382), - [anon_sym_while] = ACTIONS(2382), - [anon_sym_do] = ACTIONS(2382), - [anon_sym_if] = ACTIONS(2382), - [anon_sym_else] = ACTIONS(2382), - [anon_sym_match] = ACTIONS(2382), - [anon_sym_RBRACE] = ACTIONS(2382), - [anon_sym_try] = ACTIONS(2382), - [anon_sym_catch] = ACTIONS(2382), - [anon_sym_return] = ACTIONS(2382), - [anon_sym_source] = ACTIONS(2382), - [anon_sym_source_DASHenv] = ACTIONS(2382), - [anon_sym_register] = ACTIONS(2382), - [anon_sym_hide] = ACTIONS(2382), - [anon_sym_hide_DASHenv] = ACTIONS(2382), - [anon_sym_overlay] = ACTIONS(2382), - [anon_sym_as] = ACTIONS(2382), - [anon_sym_PLUS2] = ACTIONS(2382), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2382), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2382), - [aux_sym__val_number_decimal_token1] = ACTIONS(2382), - [aux_sym__val_number_decimal_token2] = ACTIONS(2382), - [aux_sym__val_number_decimal_token3] = ACTIONS(2382), - [aux_sym__val_number_decimal_token4] = ACTIONS(2382), - [aux_sym__val_number_token1] = ACTIONS(2382), - [aux_sym__val_number_token2] = ACTIONS(2382), - [aux_sym__val_number_token3] = ACTIONS(2382), - [aux_sym__val_number_token4] = ACTIONS(2382), - [aux_sym__val_number_token5] = ACTIONS(2382), - [aux_sym__val_number_token6] = ACTIONS(2382), - [anon_sym_DQUOTE] = ACTIONS(2382), - [sym__str_single_quotes] = ACTIONS(2382), - [sym__str_back_ticks] = ACTIONS(2382), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2382), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2382), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2382), - [sym__entry_separator] = ACTIONS(2384), + [661] = { + [sym_comment] = STATE(661), + [anon_sym_export] = ACTIONS(2461), + [anon_sym_alias] = ACTIONS(2461), + [anon_sym_let] = ACTIONS(2461), + [anon_sym_let_DASHenv] = ACTIONS(2461), + [anon_sym_mut] = ACTIONS(2461), + [anon_sym_const] = ACTIONS(2461), + [aux_sym_cmd_identifier_token1] = ACTIONS(2461), + [aux_sym_cmd_identifier_token2] = ACTIONS(2461), + [aux_sym_cmd_identifier_token3] = ACTIONS(2461), + [aux_sym_cmd_identifier_token4] = ACTIONS(2461), + [aux_sym_cmd_identifier_token5] = ACTIONS(2461), + [aux_sym_cmd_identifier_token6] = ACTIONS(2461), + [aux_sym_cmd_identifier_token7] = ACTIONS(2461), + [aux_sym_cmd_identifier_token8] = ACTIONS(2461), + [aux_sym_cmd_identifier_token9] = ACTIONS(2461), + [aux_sym_cmd_identifier_token10] = ACTIONS(2461), + [aux_sym_cmd_identifier_token11] = ACTIONS(2461), + [aux_sym_cmd_identifier_token12] = ACTIONS(2461), + [aux_sym_cmd_identifier_token13] = ACTIONS(2461), + [aux_sym_cmd_identifier_token14] = ACTIONS(2461), + [aux_sym_cmd_identifier_token15] = ACTIONS(2461), + [aux_sym_cmd_identifier_token16] = ACTIONS(2461), + [aux_sym_cmd_identifier_token17] = ACTIONS(2461), + [aux_sym_cmd_identifier_token18] = ACTIONS(2461), + [aux_sym_cmd_identifier_token19] = ACTIONS(2461), + [aux_sym_cmd_identifier_token20] = ACTIONS(2461), + [aux_sym_cmd_identifier_token21] = ACTIONS(2461), + [aux_sym_cmd_identifier_token22] = ACTIONS(2461), + [aux_sym_cmd_identifier_token23] = ACTIONS(2461), + [aux_sym_cmd_identifier_token24] = ACTIONS(2461), + [aux_sym_cmd_identifier_token25] = ACTIONS(2461), + [aux_sym_cmd_identifier_token26] = ACTIONS(2461), + [aux_sym_cmd_identifier_token27] = ACTIONS(2461), + [aux_sym_cmd_identifier_token28] = ACTIONS(2461), + [aux_sym_cmd_identifier_token29] = ACTIONS(2461), + [aux_sym_cmd_identifier_token30] = ACTIONS(2461), + [aux_sym_cmd_identifier_token31] = ACTIONS(2461), + [aux_sym_cmd_identifier_token32] = ACTIONS(2461), + [aux_sym_cmd_identifier_token33] = ACTIONS(2461), + [aux_sym_cmd_identifier_token34] = ACTIONS(2461), + [aux_sym_cmd_identifier_token35] = ACTIONS(2461), + [aux_sym_cmd_identifier_token36] = ACTIONS(2461), + [aux_sym_cmd_identifier_token37] = ACTIONS(2461), + [aux_sym_cmd_identifier_token38] = ACTIONS(2461), + [aux_sym_cmd_identifier_token39] = ACTIONS(2461), + [aux_sym_cmd_identifier_token40] = ACTIONS(2461), + [anon_sym_def] = ACTIONS(2461), + [anon_sym_export_DASHenv] = ACTIONS(2461), + [anon_sym_extern] = ACTIONS(2461), + [anon_sym_module] = ACTIONS(2461), + [anon_sym_use] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_COMMA] = ACTIONS(2461), + [anon_sym_DOLLAR] = ACTIONS(2461), + [anon_sym_error] = ACTIONS(2461), + [anon_sym_DASH2] = ACTIONS(2461), + [anon_sym_break] = ACTIONS(2461), + [anon_sym_continue] = ACTIONS(2461), + [anon_sym_for] = ACTIONS(2461), + [anon_sym_in2] = ACTIONS(2461), + [anon_sym_loop] = ACTIONS(2461), + [anon_sym_make] = ACTIONS(2461), + [anon_sym_while] = ACTIONS(2461), + [anon_sym_do] = ACTIONS(2461), + [anon_sym_if] = ACTIONS(2461), + [anon_sym_else] = ACTIONS(2461), + [anon_sym_match] = ACTIONS(2461), + [anon_sym_RBRACE] = ACTIONS(2461), + [anon_sym_try] = ACTIONS(2461), + [anon_sym_catch] = ACTIONS(2461), + [anon_sym_return] = ACTIONS(2461), + [anon_sym_source] = ACTIONS(2461), + [anon_sym_source_DASHenv] = ACTIONS(2461), + [anon_sym_hide] = ACTIONS(2461), + [anon_sym_hide_DASHenv] = ACTIONS(2461), + [anon_sym_overlay] = ACTIONS(2461), + [anon_sym_as] = ACTIONS(2461), + [anon_sym_PLUS2] = ACTIONS(2461), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2461), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2461), + [aux_sym__val_number_decimal_token1] = ACTIONS(2461), + [aux_sym__val_number_decimal_token2] = ACTIONS(2461), + [aux_sym__val_number_decimal_token3] = ACTIONS(2461), + [aux_sym__val_number_decimal_token4] = ACTIONS(2461), + [aux_sym__val_number_token1] = ACTIONS(2461), + [aux_sym__val_number_token2] = ACTIONS(2461), + [aux_sym__val_number_token3] = ACTIONS(2461), + [aux_sym__val_number_token4] = ACTIONS(2461), + [aux_sym__val_number_token5] = ACTIONS(2461), + [aux_sym__val_number_token6] = ACTIONS(2461), + [anon_sym_DQUOTE] = ACTIONS(2461), + [sym__str_single_quotes] = ACTIONS(2461), + [sym__str_back_ticks] = ACTIONS(2461), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2461), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2461), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2461), + [sym__entry_separator] = ACTIONS(2463), + [anon_sym_register] = ACTIONS(2461), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2384), + [sym_raw_string_begin] = ACTIONS(2463), }, - [620] = { - [sym_comment] = STATE(620), + [662] = { + [sym_comment] = STATE(662), + [anon_sym_export] = ACTIONS(2465), + [anon_sym_alias] = ACTIONS(2465), + [anon_sym_let] = ACTIONS(2465), + [anon_sym_let_DASHenv] = ACTIONS(2465), + [anon_sym_mut] = ACTIONS(2465), + [anon_sym_const] = ACTIONS(2465), + [aux_sym_cmd_identifier_token1] = ACTIONS(2465), + [aux_sym_cmd_identifier_token2] = ACTIONS(2465), + [aux_sym_cmd_identifier_token3] = ACTIONS(2465), + [aux_sym_cmd_identifier_token4] = ACTIONS(2465), + [aux_sym_cmd_identifier_token5] = ACTIONS(2465), + [aux_sym_cmd_identifier_token6] = ACTIONS(2465), + [aux_sym_cmd_identifier_token7] = ACTIONS(2465), + [aux_sym_cmd_identifier_token8] = ACTIONS(2465), + [aux_sym_cmd_identifier_token9] = ACTIONS(2465), + [aux_sym_cmd_identifier_token10] = ACTIONS(2465), + [aux_sym_cmd_identifier_token11] = ACTIONS(2465), + [aux_sym_cmd_identifier_token12] = ACTIONS(2465), + [aux_sym_cmd_identifier_token13] = ACTIONS(2465), + [aux_sym_cmd_identifier_token14] = ACTIONS(2465), + [aux_sym_cmd_identifier_token15] = ACTIONS(2465), + [aux_sym_cmd_identifier_token16] = ACTIONS(2465), + [aux_sym_cmd_identifier_token17] = ACTIONS(2465), + [aux_sym_cmd_identifier_token18] = ACTIONS(2465), + [aux_sym_cmd_identifier_token19] = ACTIONS(2465), + [aux_sym_cmd_identifier_token20] = ACTIONS(2465), + [aux_sym_cmd_identifier_token21] = ACTIONS(2465), + [aux_sym_cmd_identifier_token22] = ACTIONS(2465), + [aux_sym_cmd_identifier_token23] = ACTIONS(2465), + [aux_sym_cmd_identifier_token24] = ACTIONS(2465), + [aux_sym_cmd_identifier_token25] = ACTIONS(2465), + [aux_sym_cmd_identifier_token26] = ACTIONS(2465), + [aux_sym_cmd_identifier_token27] = ACTIONS(2465), + [aux_sym_cmd_identifier_token28] = ACTIONS(2465), + [aux_sym_cmd_identifier_token29] = ACTIONS(2465), + [aux_sym_cmd_identifier_token30] = ACTIONS(2465), + [aux_sym_cmd_identifier_token31] = ACTIONS(2465), + [aux_sym_cmd_identifier_token32] = ACTIONS(2465), + [aux_sym_cmd_identifier_token33] = ACTIONS(2465), + [aux_sym_cmd_identifier_token34] = ACTIONS(2465), + [aux_sym_cmd_identifier_token35] = ACTIONS(2465), + [aux_sym_cmd_identifier_token36] = ACTIONS(2465), + [aux_sym_cmd_identifier_token37] = ACTIONS(2465), + [aux_sym_cmd_identifier_token38] = ACTIONS(2465), + [aux_sym_cmd_identifier_token39] = ACTIONS(2465), + [aux_sym_cmd_identifier_token40] = ACTIONS(2465), + [anon_sym_def] = ACTIONS(2465), + [anon_sym_export_DASHenv] = ACTIONS(2465), + [anon_sym_extern] = ACTIONS(2465), + [anon_sym_module] = ACTIONS(2465), + [anon_sym_use] = ACTIONS(2465), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_COMMA] = ACTIONS(2465), + [anon_sym_DOLLAR] = ACTIONS(2465), + [anon_sym_error] = ACTIONS(2465), + [anon_sym_DASH2] = ACTIONS(2465), + [anon_sym_break] = ACTIONS(2465), + [anon_sym_continue] = ACTIONS(2465), + [anon_sym_for] = ACTIONS(2465), + [anon_sym_in2] = ACTIONS(2465), + [anon_sym_loop] = ACTIONS(2465), + [anon_sym_make] = ACTIONS(2465), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_do] = ACTIONS(2465), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_else] = ACTIONS(2465), + [anon_sym_match] = ACTIONS(2465), + [anon_sym_RBRACE] = ACTIONS(2465), + [anon_sym_try] = ACTIONS(2465), + [anon_sym_catch] = ACTIONS(2465), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_source] = ACTIONS(2465), + [anon_sym_source_DASHenv] = ACTIONS(2465), + [anon_sym_hide] = ACTIONS(2465), + [anon_sym_hide_DASHenv] = ACTIONS(2465), + [anon_sym_overlay] = ACTIONS(2465), + [anon_sym_as] = ACTIONS(2465), + [anon_sym_PLUS2] = ACTIONS(2465), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2465), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2465), + [aux_sym__val_number_decimal_token1] = ACTIONS(2465), + [aux_sym__val_number_decimal_token2] = ACTIONS(2465), + [aux_sym__val_number_decimal_token3] = ACTIONS(2465), + [aux_sym__val_number_decimal_token4] = ACTIONS(2465), + [aux_sym__val_number_token1] = ACTIONS(2465), + [aux_sym__val_number_token2] = ACTIONS(2465), + [aux_sym__val_number_token3] = ACTIONS(2465), + [aux_sym__val_number_token4] = ACTIONS(2465), + [aux_sym__val_number_token5] = ACTIONS(2465), + [aux_sym__val_number_token6] = ACTIONS(2465), + [anon_sym_DQUOTE] = ACTIONS(2465), + [sym__str_single_quotes] = ACTIONS(2465), + [sym__str_back_ticks] = ACTIONS(2465), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2465), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2465), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2465), + [sym__entry_separator] = ACTIONS(2467), + [anon_sym_register] = ACTIONS(2465), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2467), + }, + [663] = { + [sym_comment] = STATE(663), + [anon_sym_export] = ACTIONS(1957), + [anon_sym_alias] = ACTIONS(1957), + [anon_sym_let] = ACTIONS(1957), + [anon_sym_let_DASHenv] = ACTIONS(1957), + [anon_sym_mut] = ACTIONS(1957), + [anon_sym_const] = ACTIONS(1957), + [aux_sym_cmd_identifier_token1] = ACTIONS(1957), + [aux_sym_cmd_identifier_token2] = ACTIONS(1957), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [aux_sym_cmd_identifier_token6] = ACTIONS(1957), + [aux_sym_cmd_identifier_token7] = ACTIONS(1957), + [aux_sym_cmd_identifier_token8] = ACTIONS(1957), + [aux_sym_cmd_identifier_token9] = ACTIONS(1957), + [aux_sym_cmd_identifier_token10] = ACTIONS(1957), + [aux_sym_cmd_identifier_token11] = ACTIONS(1957), + [aux_sym_cmd_identifier_token12] = ACTIONS(1957), + [aux_sym_cmd_identifier_token13] = ACTIONS(1957), + [aux_sym_cmd_identifier_token14] = ACTIONS(1957), + [aux_sym_cmd_identifier_token15] = ACTIONS(1957), + [aux_sym_cmd_identifier_token16] = ACTIONS(1957), + [aux_sym_cmd_identifier_token17] = ACTIONS(1957), + [aux_sym_cmd_identifier_token18] = ACTIONS(1957), + [aux_sym_cmd_identifier_token19] = ACTIONS(1957), + [aux_sym_cmd_identifier_token20] = ACTIONS(1957), + [aux_sym_cmd_identifier_token21] = ACTIONS(1957), + [aux_sym_cmd_identifier_token22] = ACTIONS(1957), + [aux_sym_cmd_identifier_token23] = ACTIONS(1957), + [aux_sym_cmd_identifier_token24] = ACTIONS(1957), + [aux_sym_cmd_identifier_token25] = ACTIONS(1957), + [aux_sym_cmd_identifier_token26] = ACTIONS(1957), + [aux_sym_cmd_identifier_token27] = ACTIONS(1957), + [aux_sym_cmd_identifier_token28] = ACTIONS(1957), + [aux_sym_cmd_identifier_token29] = ACTIONS(1957), + [aux_sym_cmd_identifier_token30] = ACTIONS(1957), + [aux_sym_cmd_identifier_token31] = ACTIONS(1957), + [aux_sym_cmd_identifier_token32] = ACTIONS(1957), + [aux_sym_cmd_identifier_token33] = ACTIONS(1957), + [aux_sym_cmd_identifier_token34] = ACTIONS(1957), + [aux_sym_cmd_identifier_token35] = ACTIONS(1957), + [aux_sym_cmd_identifier_token36] = ACTIONS(1957), + [aux_sym_cmd_identifier_token37] = ACTIONS(1957), + [aux_sym_cmd_identifier_token38] = ACTIONS(1957), + [aux_sym_cmd_identifier_token39] = ACTIONS(1957), + [aux_sym_cmd_identifier_token40] = ACTIONS(1957), + [anon_sym_def] = ACTIONS(1957), + [anon_sym_export_DASHenv] = ACTIONS(1957), + [anon_sym_extern] = ACTIONS(1957), + [anon_sym_module] = ACTIONS(1957), + [anon_sym_use] = ACTIONS(1957), + [anon_sym_LPAREN] = ACTIONS(1957), + [anon_sym_COMMA] = ACTIONS(1957), + [anon_sym_DOLLAR] = ACTIONS(1957), + [anon_sym_error] = ACTIONS(1957), + [anon_sym_DASH2] = ACTIONS(1957), + [anon_sym_break] = ACTIONS(1957), + [anon_sym_continue] = ACTIONS(1957), + [anon_sym_for] = ACTIONS(1957), + [anon_sym_in2] = ACTIONS(1957), + [anon_sym_loop] = ACTIONS(1957), + [anon_sym_make] = ACTIONS(1957), + [anon_sym_while] = ACTIONS(1957), + [anon_sym_do] = ACTIONS(1957), + [anon_sym_if] = ACTIONS(1957), + [anon_sym_else] = ACTIONS(1957), + [anon_sym_match] = ACTIONS(1957), + [anon_sym_RBRACE] = ACTIONS(1957), + [anon_sym_try] = ACTIONS(1957), + [anon_sym_catch] = ACTIONS(1957), + [anon_sym_return] = ACTIONS(1957), + [anon_sym_source] = ACTIONS(1957), + [anon_sym_source_DASHenv] = ACTIONS(1957), + [anon_sym_hide] = ACTIONS(1957), + [anon_sym_hide_DASHenv] = ACTIONS(1957), + [anon_sym_overlay] = ACTIONS(1957), + [anon_sym_as] = ACTIONS(1957), + [anon_sym_PLUS2] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1957), + [aux_sym__val_number_decimal_token1] = ACTIONS(1957), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1957), + [aux_sym__val_number_decimal_token4] = ACTIONS(1957), + [aux_sym__val_number_token1] = ACTIONS(1957), + [aux_sym__val_number_token2] = ACTIONS(1957), + [aux_sym__val_number_token3] = ACTIONS(1957), + [aux_sym__val_number_token4] = ACTIONS(1957), + [aux_sym__val_number_token5] = ACTIONS(1957), + [aux_sym__val_number_token6] = ACTIONS(1957), + [anon_sym_DQUOTE] = ACTIONS(1957), + [sym__str_single_quotes] = ACTIONS(1957), + [sym__str_back_ticks] = ACTIONS(1957), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1957), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1957), + [sym__entry_separator] = ACTIONS(1959), + [anon_sym_register] = ACTIONS(1957), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1959), + }, + [664] = { + [sym_comment] = STATE(664), + [anon_sym_export] = ACTIONS(2469), + [anon_sym_alias] = ACTIONS(2469), + [anon_sym_let] = ACTIONS(2469), + [anon_sym_let_DASHenv] = ACTIONS(2469), + [anon_sym_mut] = ACTIONS(2469), + [anon_sym_const] = ACTIONS(2469), + [aux_sym_cmd_identifier_token1] = ACTIONS(2469), + [aux_sym_cmd_identifier_token2] = ACTIONS(2469), + [aux_sym_cmd_identifier_token3] = ACTIONS(2469), + [aux_sym_cmd_identifier_token4] = ACTIONS(2469), + [aux_sym_cmd_identifier_token5] = ACTIONS(2469), + [aux_sym_cmd_identifier_token6] = ACTIONS(2469), + [aux_sym_cmd_identifier_token7] = ACTIONS(2469), + [aux_sym_cmd_identifier_token8] = ACTIONS(2469), + [aux_sym_cmd_identifier_token9] = ACTIONS(2469), + [aux_sym_cmd_identifier_token10] = ACTIONS(2469), + [aux_sym_cmd_identifier_token11] = ACTIONS(2469), + [aux_sym_cmd_identifier_token12] = ACTIONS(2469), + [aux_sym_cmd_identifier_token13] = ACTIONS(2469), + [aux_sym_cmd_identifier_token14] = ACTIONS(2469), + [aux_sym_cmd_identifier_token15] = ACTIONS(2469), + [aux_sym_cmd_identifier_token16] = ACTIONS(2469), + [aux_sym_cmd_identifier_token17] = ACTIONS(2469), + [aux_sym_cmd_identifier_token18] = ACTIONS(2469), + [aux_sym_cmd_identifier_token19] = ACTIONS(2469), + [aux_sym_cmd_identifier_token20] = ACTIONS(2469), + [aux_sym_cmd_identifier_token21] = ACTIONS(2469), + [aux_sym_cmd_identifier_token22] = ACTIONS(2469), + [aux_sym_cmd_identifier_token23] = ACTIONS(2469), + [aux_sym_cmd_identifier_token24] = ACTIONS(2469), + [aux_sym_cmd_identifier_token25] = ACTIONS(2469), + [aux_sym_cmd_identifier_token26] = ACTIONS(2469), + [aux_sym_cmd_identifier_token27] = ACTIONS(2469), + [aux_sym_cmd_identifier_token28] = ACTIONS(2469), + [aux_sym_cmd_identifier_token29] = ACTIONS(2469), + [aux_sym_cmd_identifier_token30] = ACTIONS(2469), + [aux_sym_cmd_identifier_token31] = ACTIONS(2469), + [aux_sym_cmd_identifier_token32] = ACTIONS(2469), + [aux_sym_cmd_identifier_token33] = ACTIONS(2469), + [aux_sym_cmd_identifier_token34] = ACTIONS(2469), + [aux_sym_cmd_identifier_token35] = ACTIONS(2469), + [aux_sym_cmd_identifier_token36] = ACTIONS(2469), + [aux_sym_cmd_identifier_token37] = ACTIONS(2469), + [aux_sym_cmd_identifier_token38] = ACTIONS(2469), + [aux_sym_cmd_identifier_token39] = ACTIONS(2469), + [aux_sym_cmd_identifier_token40] = ACTIONS(2469), + [anon_sym_def] = ACTIONS(2469), + [anon_sym_export_DASHenv] = ACTIONS(2469), + [anon_sym_extern] = ACTIONS(2469), + [anon_sym_module] = ACTIONS(2469), + [anon_sym_use] = ACTIONS(2469), + [anon_sym_LPAREN] = ACTIONS(2469), + [anon_sym_COMMA] = ACTIONS(2469), + [anon_sym_DOLLAR] = ACTIONS(2469), + [anon_sym_error] = ACTIONS(2469), + [anon_sym_DASH2] = ACTIONS(2469), + [anon_sym_break] = ACTIONS(2469), + [anon_sym_continue] = ACTIONS(2469), + [anon_sym_for] = ACTIONS(2469), + [anon_sym_in2] = ACTIONS(2469), + [anon_sym_loop] = ACTIONS(2469), + [anon_sym_make] = ACTIONS(2469), + [anon_sym_while] = ACTIONS(2469), + [anon_sym_do] = ACTIONS(2469), + [anon_sym_if] = ACTIONS(2469), + [anon_sym_else] = ACTIONS(2469), + [anon_sym_match] = ACTIONS(2469), + [anon_sym_RBRACE] = ACTIONS(2469), + [anon_sym_try] = ACTIONS(2469), + [anon_sym_catch] = ACTIONS(2469), + [anon_sym_return] = ACTIONS(2469), + [anon_sym_source] = ACTIONS(2469), + [anon_sym_source_DASHenv] = ACTIONS(2469), + [anon_sym_hide] = ACTIONS(2469), + [anon_sym_hide_DASHenv] = ACTIONS(2469), + [anon_sym_overlay] = ACTIONS(2469), + [anon_sym_as] = ACTIONS(2469), + [anon_sym_PLUS2] = ACTIONS(2469), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2469), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2469), + [aux_sym__val_number_decimal_token1] = ACTIONS(2469), + [aux_sym__val_number_decimal_token2] = ACTIONS(2469), + [aux_sym__val_number_decimal_token3] = ACTIONS(2469), + [aux_sym__val_number_decimal_token4] = ACTIONS(2469), + [aux_sym__val_number_token1] = ACTIONS(2469), + [aux_sym__val_number_token2] = ACTIONS(2469), + [aux_sym__val_number_token3] = ACTIONS(2469), + [aux_sym__val_number_token4] = ACTIONS(2469), + [aux_sym__val_number_token5] = ACTIONS(2469), + [aux_sym__val_number_token6] = ACTIONS(2469), + [anon_sym_DQUOTE] = ACTIONS(2469), + [sym__str_single_quotes] = ACTIONS(2469), + [sym__str_back_ticks] = ACTIONS(2469), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2469), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2469), + [sym__entry_separator] = ACTIONS(2471), + [anon_sym_register] = ACTIONS(2469), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2471), + }, + [665] = { + [sym_comment] = STATE(665), + [anon_sym_export] = ACTIONS(2473), + [anon_sym_alias] = ACTIONS(2473), + [anon_sym_let] = ACTIONS(2473), + [anon_sym_let_DASHenv] = ACTIONS(2473), + [anon_sym_mut] = ACTIONS(2473), + [anon_sym_const] = ACTIONS(2473), + [aux_sym_cmd_identifier_token1] = ACTIONS(2473), + [aux_sym_cmd_identifier_token2] = ACTIONS(2473), + [aux_sym_cmd_identifier_token3] = ACTIONS(2473), + [aux_sym_cmd_identifier_token4] = ACTIONS(2473), + [aux_sym_cmd_identifier_token5] = ACTIONS(2473), + [aux_sym_cmd_identifier_token6] = ACTIONS(2473), + [aux_sym_cmd_identifier_token7] = ACTIONS(2473), + [aux_sym_cmd_identifier_token8] = ACTIONS(2473), + [aux_sym_cmd_identifier_token9] = ACTIONS(2473), + [aux_sym_cmd_identifier_token10] = ACTIONS(2473), + [aux_sym_cmd_identifier_token11] = ACTIONS(2473), + [aux_sym_cmd_identifier_token12] = ACTIONS(2473), + [aux_sym_cmd_identifier_token13] = ACTIONS(2473), + [aux_sym_cmd_identifier_token14] = ACTIONS(2473), + [aux_sym_cmd_identifier_token15] = ACTIONS(2473), + [aux_sym_cmd_identifier_token16] = ACTIONS(2473), + [aux_sym_cmd_identifier_token17] = ACTIONS(2473), + [aux_sym_cmd_identifier_token18] = ACTIONS(2473), + [aux_sym_cmd_identifier_token19] = ACTIONS(2473), + [aux_sym_cmd_identifier_token20] = ACTIONS(2473), + [aux_sym_cmd_identifier_token21] = ACTIONS(2473), + [aux_sym_cmd_identifier_token22] = ACTIONS(2473), + [aux_sym_cmd_identifier_token23] = ACTIONS(2473), + [aux_sym_cmd_identifier_token24] = ACTIONS(2473), + [aux_sym_cmd_identifier_token25] = ACTIONS(2473), + [aux_sym_cmd_identifier_token26] = ACTIONS(2473), + [aux_sym_cmd_identifier_token27] = ACTIONS(2473), + [aux_sym_cmd_identifier_token28] = ACTIONS(2473), + [aux_sym_cmd_identifier_token29] = ACTIONS(2473), + [aux_sym_cmd_identifier_token30] = ACTIONS(2473), + [aux_sym_cmd_identifier_token31] = ACTIONS(2473), + [aux_sym_cmd_identifier_token32] = ACTIONS(2473), + [aux_sym_cmd_identifier_token33] = ACTIONS(2473), + [aux_sym_cmd_identifier_token34] = ACTIONS(2473), + [aux_sym_cmd_identifier_token35] = ACTIONS(2473), + [aux_sym_cmd_identifier_token36] = ACTIONS(2473), + [aux_sym_cmd_identifier_token37] = ACTIONS(2473), + [aux_sym_cmd_identifier_token38] = ACTIONS(2473), + [aux_sym_cmd_identifier_token39] = ACTIONS(2473), + [aux_sym_cmd_identifier_token40] = ACTIONS(2473), + [anon_sym_def] = ACTIONS(2473), + [anon_sym_export_DASHenv] = ACTIONS(2473), + [anon_sym_extern] = ACTIONS(2473), + [anon_sym_module] = ACTIONS(2473), + [anon_sym_use] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2473), + [anon_sym_COMMA] = ACTIONS(2473), + [anon_sym_DOLLAR] = ACTIONS(2473), + [anon_sym_error] = ACTIONS(2473), + [anon_sym_DASH2] = ACTIONS(2473), + [anon_sym_break] = ACTIONS(2473), + [anon_sym_continue] = ACTIONS(2473), + [anon_sym_for] = ACTIONS(2473), + [anon_sym_in2] = ACTIONS(2473), + [anon_sym_loop] = ACTIONS(2473), + [anon_sym_make] = ACTIONS(2473), + [anon_sym_while] = ACTIONS(2473), + [anon_sym_do] = ACTIONS(2473), + [anon_sym_if] = ACTIONS(2473), + [anon_sym_else] = ACTIONS(2473), + [anon_sym_match] = ACTIONS(2473), + [anon_sym_RBRACE] = ACTIONS(2473), + [anon_sym_try] = ACTIONS(2473), + [anon_sym_catch] = ACTIONS(2473), + [anon_sym_return] = ACTIONS(2473), + [anon_sym_source] = ACTIONS(2473), + [anon_sym_source_DASHenv] = ACTIONS(2473), + [anon_sym_hide] = ACTIONS(2473), + [anon_sym_hide_DASHenv] = ACTIONS(2473), + [anon_sym_overlay] = ACTIONS(2473), + [anon_sym_as] = ACTIONS(2473), + [anon_sym_PLUS2] = ACTIONS(2473), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2473), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2473), + [aux_sym__val_number_decimal_token1] = ACTIONS(2473), + [aux_sym__val_number_decimal_token2] = ACTIONS(2473), + [aux_sym__val_number_decimal_token3] = ACTIONS(2473), + [aux_sym__val_number_decimal_token4] = ACTIONS(2473), + [aux_sym__val_number_token1] = ACTIONS(2473), + [aux_sym__val_number_token2] = ACTIONS(2473), + [aux_sym__val_number_token3] = ACTIONS(2473), + [aux_sym__val_number_token4] = ACTIONS(2473), + [aux_sym__val_number_token5] = ACTIONS(2473), + [aux_sym__val_number_token6] = ACTIONS(2473), + [anon_sym_DQUOTE] = ACTIONS(2473), + [sym__str_single_quotes] = ACTIONS(2473), + [sym__str_back_ticks] = ACTIONS(2473), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2473), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2473), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2473), + [sym__entry_separator] = ACTIONS(2475), + [anon_sym_register] = ACTIONS(2473), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2475), + }, + [666] = { + [sym_comment] = STATE(666), + [anon_sym_export] = ACTIONS(2477), + [anon_sym_alias] = ACTIONS(2477), + [anon_sym_let] = ACTIONS(2477), + [anon_sym_let_DASHenv] = ACTIONS(2477), + [anon_sym_mut] = ACTIONS(2477), + [anon_sym_const] = ACTIONS(2477), + [aux_sym_cmd_identifier_token1] = ACTIONS(2477), + [aux_sym_cmd_identifier_token2] = ACTIONS(2477), + [aux_sym_cmd_identifier_token3] = ACTIONS(2477), + [aux_sym_cmd_identifier_token4] = ACTIONS(2477), + [aux_sym_cmd_identifier_token5] = ACTIONS(2477), + [aux_sym_cmd_identifier_token6] = ACTIONS(2477), + [aux_sym_cmd_identifier_token7] = ACTIONS(2477), + [aux_sym_cmd_identifier_token8] = ACTIONS(2477), + [aux_sym_cmd_identifier_token9] = ACTIONS(2477), + [aux_sym_cmd_identifier_token10] = ACTIONS(2477), + [aux_sym_cmd_identifier_token11] = ACTIONS(2477), + [aux_sym_cmd_identifier_token12] = ACTIONS(2477), + [aux_sym_cmd_identifier_token13] = ACTIONS(2477), + [aux_sym_cmd_identifier_token14] = ACTIONS(2477), + [aux_sym_cmd_identifier_token15] = ACTIONS(2477), + [aux_sym_cmd_identifier_token16] = ACTIONS(2477), + [aux_sym_cmd_identifier_token17] = ACTIONS(2477), + [aux_sym_cmd_identifier_token18] = ACTIONS(2477), + [aux_sym_cmd_identifier_token19] = ACTIONS(2477), + [aux_sym_cmd_identifier_token20] = ACTIONS(2477), + [aux_sym_cmd_identifier_token21] = ACTIONS(2477), + [aux_sym_cmd_identifier_token22] = ACTIONS(2477), + [aux_sym_cmd_identifier_token23] = ACTIONS(2477), + [aux_sym_cmd_identifier_token24] = ACTIONS(2477), + [aux_sym_cmd_identifier_token25] = ACTIONS(2477), + [aux_sym_cmd_identifier_token26] = ACTIONS(2477), + [aux_sym_cmd_identifier_token27] = ACTIONS(2477), + [aux_sym_cmd_identifier_token28] = ACTIONS(2477), + [aux_sym_cmd_identifier_token29] = ACTIONS(2477), + [aux_sym_cmd_identifier_token30] = ACTIONS(2477), + [aux_sym_cmd_identifier_token31] = ACTIONS(2477), + [aux_sym_cmd_identifier_token32] = ACTIONS(2477), + [aux_sym_cmd_identifier_token33] = ACTIONS(2477), + [aux_sym_cmd_identifier_token34] = ACTIONS(2477), + [aux_sym_cmd_identifier_token35] = ACTIONS(2477), + [aux_sym_cmd_identifier_token36] = ACTIONS(2477), + [aux_sym_cmd_identifier_token37] = ACTIONS(2477), + [aux_sym_cmd_identifier_token38] = ACTIONS(2477), + [aux_sym_cmd_identifier_token39] = ACTIONS(2477), + [aux_sym_cmd_identifier_token40] = ACTIONS(2477), + [anon_sym_def] = ACTIONS(2477), + [anon_sym_export_DASHenv] = ACTIONS(2477), + [anon_sym_extern] = ACTIONS(2477), + [anon_sym_module] = ACTIONS(2477), + [anon_sym_use] = ACTIONS(2477), + [anon_sym_LPAREN] = ACTIONS(2477), + [anon_sym_COMMA] = ACTIONS(2477), + [anon_sym_DOLLAR] = ACTIONS(2477), + [anon_sym_error] = ACTIONS(2477), + [anon_sym_DASH2] = ACTIONS(2477), + [anon_sym_break] = ACTIONS(2477), + [anon_sym_continue] = ACTIONS(2477), + [anon_sym_for] = ACTIONS(2477), + [anon_sym_in2] = ACTIONS(2477), + [anon_sym_loop] = ACTIONS(2477), + [anon_sym_make] = ACTIONS(2477), + [anon_sym_while] = ACTIONS(2477), + [anon_sym_do] = ACTIONS(2477), + [anon_sym_if] = ACTIONS(2477), + [anon_sym_else] = ACTIONS(2477), + [anon_sym_match] = ACTIONS(2477), + [anon_sym_RBRACE] = ACTIONS(2477), + [anon_sym_try] = ACTIONS(2477), + [anon_sym_catch] = ACTIONS(2477), + [anon_sym_return] = ACTIONS(2477), + [anon_sym_source] = ACTIONS(2477), + [anon_sym_source_DASHenv] = ACTIONS(2477), + [anon_sym_hide] = ACTIONS(2477), + [anon_sym_hide_DASHenv] = ACTIONS(2477), + [anon_sym_overlay] = ACTIONS(2477), + [anon_sym_as] = ACTIONS(2477), + [anon_sym_PLUS2] = ACTIONS(2477), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2477), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2477), + [aux_sym__val_number_decimal_token1] = ACTIONS(2477), + [aux_sym__val_number_decimal_token2] = ACTIONS(2477), + [aux_sym__val_number_decimal_token3] = ACTIONS(2477), + [aux_sym__val_number_decimal_token4] = ACTIONS(2477), + [aux_sym__val_number_token1] = ACTIONS(2477), + [aux_sym__val_number_token2] = ACTIONS(2477), + [aux_sym__val_number_token3] = ACTIONS(2477), + [aux_sym__val_number_token4] = ACTIONS(2477), + [aux_sym__val_number_token5] = ACTIONS(2477), + [aux_sym__val_number_token6] = ACTIONS(2477), + [anon_sym_DQUOTE] = ACTIONS(2477), + [sym__str_single_quotes] = ACTIONS(2477), + [sym__str_back_ticks] = ACTIONS(2477), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2477), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2477), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2477), + [sym__entry_separator] = ACTIONS(2479), + [anon_sym_register] = ACTIONS(2477), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2479), + }, + [667] = { + [sym_comment] = STATE(667), + [anon_sym_export] = ACTIONS(2481), + [anon_sym_alias] = ACTIONS(2481), + [anon_sym_let] = ACTIONS(2481), + [anon_sym_let_DASHenv] = ACTIONS(2481), + [anon_sym_mut] = ACTIONS(2481), + [anon_sym_const] = ACTIONS(2481), + [aux_sym_cmd_identifier_token1] = ACTIONS(2481), + [aux_sym_cmd_identifier_token2] = ACTIONS(2481), + [aux_sym_cmd_identifier_token3] = ACTIONS(2481), + [aux_sym_cmd_identifier_token4] = ACTIONS(2481), + [aux_sym_cmd_identifier_token5] = ACTIONS(2481), + [aux_sym_cmd_identifier_token6] = ACTIONS(2481), + [aux_sym_cmd_identifier_token7] = ACTIONS(2481), + [aux_sym_cmd_identifier_token8] = ACTIONS(2481), + [aux_sym_cmd_identifier_token9] = ACTIONS(2481), + [aux_sym_cmd_identifier_token10] = ACTIONS(2481), + [aux_sym_cmd_identifier_token11] = ACTIONS(2481), + [aux_sym_cmd_identifier_token12] = ACTIONS(2481), + [aux_sym_cmd_identifier_token13] = ACTIONS(2481), + [aux_sym_cmd_identifier_token14] = ACTIONS(2481), + [aux_sym_cmd_identifier_token15] = ACTIONS(2481), + [aux_sym_cmd_identifier_token16] = ACTIONS(2481), + [aux_sym_cmd_identifier_token17] = ACTIONS(2481), + [aux_sym_cmd_identifier_token18] = ACTIONS(2481), + [aux_sym_cmd_identifier_token19] = ACTIONS(2481), + [aux_sym_cmd_identifier_token20] = ACTIONS(2481), + [aux_sym_cmd_identifier_token21] = ACTIONS(2481), + [aux_sym_cmd_identifier_token22] = ACTIONS(2481), + [aux_sym_cmd_identifier_token23] = ACTIONS(2481), + [aux_sym_cmd_identifier_token24] = ACTIONS(2481), + [aux_sym_cmd_identifier_token25] = ACTIONS(2481), + [aux_sym_cmd_identifier_token26] = ACTIONS(2481), + [aux_sym_cmd_identifier_token27] = ACTIONS(2481), + [aux_sym_cmd_identifier_token28] = ACTIONS(2481), + [aux_sym_cmd_identifier_token29] = ACTIONS(2481), + [aux_sym_cmd_identifier_token30] = ACTIONS(2481), + [aux_sym_cmd_identifier_token31] = ACTIONS(2481), + [aux_sym_cmd_identifier_token32] = ACTIONS(2481), + [aux_sym_cmd_identifier_token33] = ACTIONS(2481), + [aux_sym_cmd_identifier_token34] = ACTIONS(2481), + [aux_sym_cmd_identifier_token35] = ACTIONS(2481), + [aux_sym_cmd_identifier_token36] = ACTIONS(2481), + [aux_sym_cmd_identifier_token37] = ACTIONS(2481), + [aux_sym_cmd_identifier_token38] = ACTIONS(2481), + [aux_sym_cmd_identifier_token39] = ACTIONS(2481), + [aux_sym_cmd_identifier_token40] = ACTIONS(2481), + [anon_sym_def] = ACTIONS(2481), + [anon_sym_export_DASHenv] = ACTIONS(2481), + [anon_sym_extern] = ACTIONS(2481), + [anon_sym_module] = ACTIONS(2481), + [anon_sym_use] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2481), + [anon_sym_COMMA] = ACTIONS(2481), + [anon_sym_DOLLAR] = ACTIONS(2481), + [anon_sym_error] = ACTIONS(2481), + [anon_sym_DASH2] = ACTIONS(2481), + [anon_sym_break] = ACTIONS(2481), + [anon_sym_continue] = ACTIONS(2481), + [anon_sym_for] = ACTIONS(2481), + [anon_sym_in2] = ACTIONS(2481), + [anon_sym_loop] = ACTIONS(2481), + [anon_sym_make] = ACTIONS(2481), + [anon_sym_while] = ACTIONS(2481), + [anon_sym_do] = ACTIONS(2481), + [anon_sym_if] = ACTIONS(2481), + [anon_sym_else] = ACTIONS(2481), + [anon_sym_match] = ACTIONS(2481), + [anon_sym_RBRACE] = ACTIONS(2481), + [anon_sym_try] = ACTIONS(2481), + [anon_sym_catch] = ACTIONS(2481), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_source] = ACTIONS(2481), + [anon_sym_source_DASHenv] = ACTIONS(2481), + [anon_sym_hide] = ACTIONS(2481), + [anon_sym_hide_DASHenv] = ACTIONS(2481), + [anon_sym_overlay] = ACTIONS(2481), + [anon_sym_as] = ACTIONS(2481), + [anon_sym_PLUS2] = ACTIONS(2481), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2481), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2481), + [aux_sym__val_number_decimal_token1] = ACTIONS(2481), + [aux_sym__val_number_decimal_token2] = ACTIONS(2481), + [aux_sym__val_number_decimal_token3] = ACTIONS(2481), + [aux_sym__val_number_decimal_token4] = ACTIONS(2481), + [aux_sym__val_number_token1] = ACTIONS(2481), + [aux_sym__val_number_token2] = ACTIONS(2481), + [aux_sym__val_number_token3] = ACTIONS(2481), + [aux_sym__val_number_token4] = ACTIONS(2481), + [aux_sym__val_number_token5] = ACTIONS(2481), + [aux_sym__val_number_token6] = ACTIONS(2481), + [anon_sym_DQUOTE] = ACTIONS(2481), + [sym__str_single_quotes] = ACTIONS(2481), + [sym__str_back_ticks] = ACTIONS(2481), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2481), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2481), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2481), + [sym__entry_separator] = ACTIONS(2483), + [anon_sym_register] = ACTIONS(2481), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2483), + }, + [668] = { + [sym_comment] = STATE(668), + [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), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1839), + [anon_sym_DOLLAR] = ACTIONS(1839), + [anon_sym_error] = ACTIONS(1839), + [anon_sym_DASH2] = ACTIONS(1839), + [anon_sym_break] = ACTIONS(1839), + [anon_sym_continue] = ACTIONS(1839), + [anon_sym_for] = ACTIONS(1839), + [anon_sym_in2] = 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_hide] = ACTIONS(1839), + [anon_sym_hide_DASHenv] = ACTIONS(1839), + [anon_sym_overlay] = ACTIONS(1839), + [anon_sym_as] = ACTIONS(1839), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(1839), + [aux_sym__val_number_token5] = ACTIONS(1839), + [aux_sym__val_number_token6] = ACTIONS(1839), + [anon_sym_DQUOTE] = ACTIONS(1839), + [sym__str_single_quotes] = ACTIONS(1839), + [sym__str_back_ticks] = ACTIONS(1839), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1839), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1839), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1839), + [sym__entry_separator] = ACTIONS(1841), + [anon_sym_register] = ACTIONS(1839), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1841), + }, + [669] = { + [sym_comment] = STATE(669), + [anon_sym_export] = ACTIONS(2485), + [anon_sym_alias] = ACTIONS(2485), + [anon_sym_let] = ACTIONS(2485), + [anon_sym_let_DASHenv] = ACTIONS(2485), + [anon_sym_mut] = ACTIONS(2485), + [anon_sym_const] = ACTIONS(2485), + [aux_sym_cmd_identifier_token1] = ACTIONS(2485), + [aux_sym_cmd_identifier_token2] = ACTIONS(2485), + [aux_sym_cmd_identifier_token3] = ACTIONS(2485), + [aux_sym_cmd_identifier_token4] = ACTIONS(2485), + [aux_sym_cmd_identifier_token5] = ACTIONS(2485), + [aux_sym_cmd_identifier_token6] = ACTIONS(2485), + [aux_sym_cmd_identifier_token7] = ACTIONS(2485), + [aux_sym_cmd_identifier_token8] = ACTIONS(2485), + [aux_sym_cmd_identifier_token9] = ACTIONS(2485), + [aux_sym_cmd_identifier_token10] = ACTIONS(2485), + [aux_sym_cmd_identifier_token11] = ACTIONS(2485), + [aux_sym_cmd_identifier_token12] = ACTIONS(2485), + [aux_sym_cmd_identifier_token13] = ACTIONS(2485), + [aux_sym_cmd_identifier_token14] = ACTIONS(2485), + [aux_sym_cmd_identifier_token15] = ACTIONS(2485), + [aux_sym_cmd_identifier_token16] = ACTIONS(2485), + [aux_sym_cmd_identifier_token17] = ACTIONS(2485), + [aux_sym_cmd_identifier_token18] = ACTIONS(2485), + [aux_sym_cmd_identifier_token19] = ACTIONS(2485), + [aux_sym_cmd_identifier_token20] = ACTIONS(2485), + [aux_sym_cmd_identifier_token21] = ACTIONS(2485), + [aux_sym_cmd_identifier_token22] = ACTIONS(2485), + [aux_sym_cmd_identifier_token23] = ACTIONS(2485), + [aux_sym_cmd_identifier_token24] = ACTIONS(2485), + [aux_sym_cmd_identifier_token25] = ACTIONS(2485), + [aux_sym_cmd_identifier_token26] = ACTIONS(2485), + [aux_sym_cmd_identifier_token27] = ACTIONS(2485), + [aux_sym_cmd_identifier_token28] = ACTIONS(2485), + [aux_sym_cmd_identifier_token29] = ACTIONS(2485), + [aux_sym_cmd_identifier_token30] = ACTIONS(2485), + [aux_sym_cmd_identifier_token31] = ACTIONS(2485), + [aux_sym_cmd_identifier_token32] = ACTIONS(2485), + [aux_sym_cmd_identifier_token33] = ACTIONS(2485), + [aux_sym_cmd_identifier_token34] = ACTIONS(2485), + [aux_sym_cmd_identifier_token35] = ACTIONS(2485), + [aux_sym_cmd_identifier_token36] = ACTIONS(2485), + [aux_sym_cmd_identifier_token37] = ACTIONS(2485), + [aux_sym_cmd_identifier_token38] = ACTIONS(2485), + [aux_sym_cmd_identifier_token39] = ACTIONS(2485), + [aux_sym_cmd_identifier_token40] = ACTIONS(2485), + [anon_sym_def] = ACTIONS(2485), + [anon_sym_export_DASHenv] = ACTIONS(2485), + [anon_sym_extern] = ACTIONS(2485), + [anon_sym_module] = ACTIONS(2485), + [anon_sym_use] = ACTIONS(2485), + [anon_sym_LPAREN] = ACTIONS(2485), + [anon_sym_COMMA] = ACTIONS(2485), + [anon_sym_DOLLAR] = ACTIONS(2485), + [anon_sym_error] = ACTIONS(2485), + [anon_sym_DASH2] = ACTIONS(2485), + [anon_sym_break] = ACTIONS(2485), + [anon_sym_continue] = ACTIONS(2485), + [anon_sym_for] = ACTIONS(2485), + [anon_sym_in2] = ACTIONS(2485), + [anon_sym_loop] = ACTIONS(2485), + [anon_sym_make] = ACTIONS(2485), + [anon_sym_while] = ACTIONS(2485), + [anon_sym_do] = ACTIONS(2485), + [anon_sym_if] = ACTIONS(2485), + [anon_sym_else] = ACTIONS(2485), + [anon_sym_match] = ACTIONS(2485), + [anon_sym_RBRACE] = ACTIONS(2485), + [anon_sym_try] = ACTIONS(2485), + [anon_sym_catch] = ACTIONS(2485), + [anon_sym_return] = ACTIONS(2485), + [anon_sym_source] = ACTIONS(2485), + [anon_sym_source_DASHenv] = ACTIONS(2485), + [anon_sym_hide] = ACTIONS(2485), + [anon_sym_hide_DASHenv] = ACTIONS(2485), + [anon_sym_overlay] = ACTIONS(2485), + [anon_sym_as] = ACTIONS(2485), + [anon_sym_PLUS2] = ACTIONS(2485), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2485), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2485), + [aux_sym__val_number_decimal_token1] = ACTIONS(2485), + [aux_sym__val_number_decimal_token2] = ACTIONS(2485), + [aux_sym__val_number_decimal_token3] = ACTIONS(2485), + [aux_sym__val_number_decimal_token4] = ACTIONS(2485), + [aux_sym__val_number_token1] = ACTIONS(2485), + [aux_sym__val_number_token2] = ACTIONS(2485), + [aux_sym__val_number_token3] = ACTIONS(2485), + [aux_sym__val_number_token4] = ACTIONS(2485), + [aux_sym__val_number_token5] = ACTIONS(2485), + [aux_sym__val_number_token6] = ACTIONS(2485), + [anon_sym_DQUOTE] = ACTIONS(2485), + [sym__str_single_quotes] = ACTIONS(2485), + [sym__str_back_ticks] = ACTIONS(2485), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2485), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2485), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2485), + [sym__entry_separator] = ACTIONS(2487), + [anon_sym_register] = ACTIONS(2485), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2487), + }, + [670] = { + [sym_comment] = STATE(670), + [anon_sym_export] = ACTIONS(2489), + [anon_sym_alias] = ACTIONS(2489), + [anon_sym_let] = ACTIONS(2489), + [anon_sym_let_DASHenv] = ACTIONS(2489), + [anon_sym_mut] = ACTIONS(2489), + [anon_sym_const] = ACTIONS(2489), + [aux_sym_cmd_identifier_token1] = ACTIONS(2489), + [aux_sym_cmd_identifier_token2] = ACTIONS(2489), + [aux_sym_cmd_identifier_token3] = ACTIONS(2489), + [aux_sym_cmd_identifier_token4] = ACTIONS(2489), + [aux_sym_cmd_identifier_token5] = ACTIONS(2489), + [aux_sym_cmd_identifier_token6] = ACTIONS(2489), + [aux_sym_cmd_identifier_token7] = ACTIONS(2489), + [aux_sym_cmd_identifier_token8] = ACTIONS(2489), + [aux_sym_cmd_identifier_token9] = ACTIONS(2489), + [aux_sym_cmd_identifier_token10] = ACTIONS(2489), + [aux_sym_cmd_identifier_token11] = ACTIONS(2489), + [aux_sym_cmd_identifier_token12] = ACTIONS(2489), + [aux_sym_cmd_identifier_token13] = ACTIONS(2489), + [aux_sym_cmd_identifier_token14] = ACTIONS(2489), + [aux_sym_cmd_identifier_token15] = ACTIONS(2489), + [aux_sym_cmd_identifier_token16] = ACTIONS(2489), + [aux_sym_cmd_identifier_token17] = ACTIONS(2489), + [aux_sym_cmd_identifier_token18] = ACTIONS(2489), + [aux_sym_cmd_identifier_token19] = ACTIONS(2489), + [aux_sym_cmd_identifier_token20] = ACTIONS(2489), + [aux_sym_cmd_identifier_token21] = ACTIONS(2489), + [aux_sym_cmd_identifier_token22] = ACTIONS(2489), + [aux_sym_cmd_identifier_token23] = ACTIONS(2489), + [aux_sym_cmd_identifier_token24] = ACTIONS(2489), + [aux_sym_cmd_identifier_token25] = ACTIONS(2489), + [aux_sym_cmd_identifier_token26] = ACTIONS(2489), + [aux_sym_cmd_identifier_token27] = ACTIONS(2489), + [aux_sym_cmd_identifier_token28] = ACTIONS(2489), + [aux_sym_cmd_identifier_token29] = ACTIONS(2489), + [aux_sym_cmd_identifier_token30] = ACTIONS(2489), + [aux_sym_cmd_identifier_token31] = ACTIONS(2489), + [aux_sym_cmd_identifier_token32] = ACTIONS(2489), + [aux_sym_cmd_identifier_token33] = ACTIONS(2489), + [aux_sym_cmd_identifier_token34] = ACTIONS(2489), + [aux_sym_cmd_identifier_token35] = ACTIONS(2489), + [aux_sym_cmd_identifier_token36] = ACTIONS(2489), + [aux_sym_cmd_identifier_token37] = ACTIONS(2489), + [aux_sym_cmd_identifier_token38] = ACTIONS(2489), + [aux_sym_cmd_identifier_token39] = ACTIONS(2489), + [aux_sym_cmd_identifier_token40] = ACTIONS(2489), + [anon_sym_def] = ACTIONS(2489), + [anon_sym_export_DASHenv] = ACTIONS(2489), + [anon_sym_extern] = ACTIONS(2489), + [anon_sym_module] = ACTIONS(2489), + [anon_sym_use] = ACTIONS(2489), + [anon_sym_LPAREN] = ACTIONS(2489), + [anon_sym_COMMA] = ACTIONS(2489), + [anon_sym_DOLLAR] = ACTIONS(2489), + [anon_sym_error] = ACTIONS(2489), + [anon_sym_DASH2] = ACTIONS(2489), + [anon_sym_break] = ACTIONS(2489), + [anon_sym_continue] = ACTIONS(2489), + [anon_sym_for] = ACTIONS(2489), + [anon_sym_in2] = ACTIONS(2489), + [anon_sym_loop] = ACTIONS(2489), + [anon_sym_make] = ACTIONS(2489), + [anon_sym_while] = ACTIONS(2489), + [anon_sym_do] = ACTIONS(2489), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_else] = ACTIONS(2489), + [anon_sym_match] = ACTIONS(2489), + [anon_sym_RBRACE] = ACTIONS(2489), + [anon_sym_try] = ACTIONS(2489), + [anon_sym_catch] = ACTIONS(2489), + [anon_sym_return] = ACTIONS(2489), + [anon_sym_source] = ACTIONS(2489), + [anon_sym_source_DASHenv] = ACTIONS(2489), + [anon_sym_hide] = ACTIONS(2489), + [anon_sym_hide_DASHenv] = ACTIONS(2489), + [anon_sym_overlay] = ACTIONS(2489), + [anon_sym_as] = ACTIONS(2489), + [anon_sym_PLUS2] = ACTIONS(2489), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2489), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2489), + [aux_sym__val_number_decimal_token1] = ACTIONS(2489), + [aux_sym__val_number_decimal_token2] = ACTIONS(2489), + [aux_sym__val_number_decimal_token3] = ACTIONS(2489), + [aux_sym__val_number_decimal_token4] = ACTIONS(2489), + [aux_sym__val_number_token1] = ACTIONS(2489), + [aux_sym__val_number_token2] = ACTIONS(2489), + [aux_sym__val_number_token3] = ACTIONS(2489), + [aux_sym__val_number_token4] = ACTIONS(2489), + [aux_sym__val_number_token5] = ACTIONS(2489), + [aux_sym__val_number_token6] = ACTIONS(2489), + [anon_sym_DQUOTE] = ACTIONS(2489), + [sym__str_single_quotes] = ACTIONS(2489), + [sym__str_back_ticks] = ACTIONS(2489), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2489), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2489), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2489), + [sym__entry_separator] = ACTIONS(2491), + [anon_sym_register] = ACTIONS(2489), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2491), + }, + [671] = { + [sym_comment] = STATE(671), [anon_sym_export] = ACTIONS(2043), [anon_sym_alias] = ACTIONS(2043), [anon_sym_let] = ACTIONS(2043), @@ -149003,7 +154193,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(2043), [anon_sym_source] = ACTIONS(2043), [anon_sym_source_DASHenv] = ACTIONS(2043), - [anon_sym_register] = ACTIONS(2043), [anon_sym_hide] = ACTIONS(2043), [anon_sym_hide_DASHenv] = ACTIONS(2043), [anon_sym_overlay] = ACTIONS(2043), @@ -149028,856 +154217,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2043), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2043), [sym__entry_separator] = ACTIONS(2049), + [anon_sym_register] = ACTIONS(2043), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(2049), }, - [621] = { - [sym_comment] = STATE(621), - [anon_sym_export] = ACTIONS(2386), - [anon_sym_alias] = ACTIONS(2386), - [anon_sym_let] = ACTIONS(2386), - [anon_sym_let_DASHenv] = ACTIONS(2386), - [anon_sym_mut] = ACTIONS(2386), - [anon_sym_const] = ACTIONS(2386), - [aux_sym_cmd_identifier_token1] = ACTIONS(2386), - [aux_sym_cmd_identifier_token2] = ACTIONS(2386), - [aux_sym_cmd_identifier_token3] = ACTIONS(2386), - [aux_sym_cmd_identifier_token4] = ACTIONS(2386), - [aux_sym_cmd_identifier_token5] = ACTIONS(2386), - [aux_sym_cmd_identifier_token6] = ACTIONS(2386), - [aux_sym_cmd_identifier_token7] = ACTIONS(2386), - [aux_sym_cmd_identifier_token8] = ACTIONS(2386), - [aux_sym_cmd_identifier_token9] = ACTIONS(2386), - [aux_sym_cmd_identifier_token10] = ACTIONS(2386), - [aux_sym_cmd_identifier_token11] = ACTIONS(2386), - [aux_sym_cmd_identifier_token12] = ACTIONS(2386), - [aux_sym_cmd_identifier_token13] = ACTIONS(2386), - [aux_sym_cmd_identifier_token14] = ACTIONS(2386), - [aux_sym_cmd_identifier_token15] = ACTIONS(2386), - [aux_sym_cmd_identifier_token16] = ACTIONS(2386), - [aux_sym_cmd_identifier_token17] = ACTIONS(2386), - [aux_sym_cmd_identifier_token18] = ACTIONS(2386), - [aux_sym_cmd_identifier_token19] = ACTIONS(2386), - [aux_sym_cmd_identifier_token20] = ACTIONS(2386), - [aux_sym_cmd_identifier_token21] = ACTIONS(2386), - [aux_sym_cmd_identifier_token22] = ACTIONS(2386), - [aux_sym_cmd_identifier_token23] = ACTIONS(2386), - [aux_sym_cmd_identifier_token24] = ACTIONS(2386), - [aux_sym_cmd_identifier_token25] = ACTIONS(2386), - [aux_sym_cmd_identifier_token26] = ACTIONS(2386), - [aux_sym_cmd_identifier_token27] = ACTIONS(2386), - [aux_sym_cmd_identifier_token28] = ACTIONS(2386), - [aux_sym_cmd_identifier_token29] = ACTIONS(2386), - [aux_sym_cmd_identifier_token30] = ACTIONS(2386), - [aux_sym_cmd_identifier_token31] = ACTIONS(2386), - [aux_sym_cmd_identifier_token32] = ACTIONS(2386), - [aux_sym_cmd_identifier_token33] = ACTIONS(2386), - [aux_sym_cmd_identifier_token34] = ACTIONS(2386), - [aux_sym_cmd_identifier_token35] = ACTIONS(2386), - [aux_sym_cmd_identifier_token36] = ACTIONS(2386), - [aux_sym_cmd_identifier_token37] = ACTIONS(2386), - [aux_sym_cmd_identifier_token38] = ACTIONS(2386), - [aux_sym_cmd_identifier_token39] = ACTIONS(2386), - [aux_sym_cmd_identifier_token40] = ACTIONS(2386), - [anon_sym_def] = ACTIONS(2386), - [anon_sym_export_DASHenv] = ACTIONS(2386), - [anon_sym_extern] = ACTIONS(2386), - [anon_sym_module] = ACTIONS(2386), - [anon_sym_use] = ACTIONS(2386), - [anon_sym_LPAREN] = ACTIONS(2386), - [anon_sym_COMMA] = ACTIONS(2386), - [anon_sym_DOLLAR] = ACTIONS(2386), - [anon_sym_error] = ACTIONS(2386), - [anon_sym_DASH2] = ACTIONS(2386), - [anon_sym_break] = ACTIONS(2386), - [anon_sym_continue] = ACTIONS(2386), - [anon_sym_for] = ACTIONS(2386), - [anon_sym_in2] = ACTIONS(2386), - [anon_sym_loop] = ACTIONS(2386), - [anon_sym_make] = ACTIONS(2386), - [anon_sym_while] = ACTIONS(2386), - [anon_sym_do] = ACTIONS(2386), - [anon_sym_if] = ACTIONS(2386), - [anon_sym_else] = ACTIONS(2386), - [anon_sym_match] = ACTIONS(2386), - [anon_sym_RBRACE] = ACTIONS(2386), - [anon_sym_try] = ACTIONS(2386), - [anon_sym_catch] = ACTIONS(2386), - [anon_sym_return] = ACTIONS(2386), - [anon_sym_source] = ACTIONS(2386), - [anon_sym_source_DASHenv] = ACTIONS(2386), - [anon_sym_register] = ACTIONS(2386), - [anon_sym_hide] = ACTIONS(2386), - [anon_sym_hide_DASHenv] = ACTIONS(2386), - [anon_sym_overlay] = ACTIONS(2386), - [anon_sym_as] = ACTIONS(2386), - [anon_sym_PLUS2] = ACTIONS(2386), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2386), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2386), - [aux_sym__val_number_decimal_token1] = ACTIONS(2386), - [aux_sym__val_number_decimal_token2] = ACTIONS(2386), - [aux_sym__val_number_decimal_token3] = ACTIONS(2386), - [aux_sym__val_number_decimal_token4] = ACTIONS(2386), - [aux_sym__val_number_token1] = ACTIONS(2386), - [aux_sym__val_number_token2] = ACTIONS(2386), - [aux_sym__val_number_token3] = ACTIONS(2386), - [aux_sym__val_number_token4] = ACTIONS(2386), - [aux_sym__val_number_token5] = ACTIONS(2386), - [aux_sym__val_number_token6] = ACTIONS(2386), - [anon_sym_DQUOTE] = ACTIONS(2386), - [sym__str_single_quotes] = ACTIONS(2386), - [sym__str_back_ticks] = ACTIONS(2386), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2386), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2386), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2386), - [sym__entry_separator] = ACTIONS(2388), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2388), - }, - [622] = { - [sym_comment] = STATE(622), - [anon_sym_export] = ACTIONS(2019), - [anon_sym_alias] = ACTIONS(2019), - [anon_sym_let] = ACTIONS(2019), - [anon_sym_let_DASHenv] = ACTIONS(2019), - [anon_sym_mut] = ACTIONS(2019), - [anon_sym_const] = ACTIONS(2019), - [aux_sym_cmd_identifier_token1] = ACTIONS(2019), - [aux_sym_cmd_identifier_token2] = ACTIONS(2019), - [aux_sym_cmd_identifier_token3] = ACTIONS(2019), - [aux_sym_cmd_identifier_token4] = ACTIONS(2019), - [aux_sym_cmd_identifier_token5] = ACTIONS(2019), - [aux_sym_cmd_identifier_token6] = ACTIONS(2019), - [aux_sym_cmd_identifier_token7] = ACTIONS(2019), - [aux_sym_cmd_identifier_token8] = ACTIONS(2019), - [aux_sym_cmd_identifier_token9] = ACTIONS(2019), - [aux_sym_cmd_identifier_token10] = ACTIONS(2019), - [aux_sym_cmd_identifier_token11] = ACTIONS(2019), - [aux_sym_cmd_identifier_token12] = ACTIONS(2019), - [aux_sym_cmd_identifier_token13] = ACTIONS(2019), - [aux_sym_cmd_identifier_token14] = ACTIONS(2019), - [aux_sym_cmd_identifier_token15] = ACTIONS(2019), - [aux_sym_cmd_identifier_token16] = ACTIONS(2019), - [aux_sym_cmd_identifier_token17] = ACTIONS(2019), - [aux_sym_cmd_identifier_token18] = ACTIONS(2019), - [aux_sym_cmd_identifier_token19] = ACTIONS(2019), - [aux_sym_cmd_identifier_token20] = ACTIONS(2019), - [aux_sym_cmd_identifier_token21] = ACTIONS(2019), - [aux_sym_cmd_identifier_token22] = ACTIONS(2019), - [aux_sym_cmd_identifier_token23] = ACTIONS(2019), - [aux_sym_cmd_identifier_token24] = ACTIONS(2019), - [aux_sym_cmd_identifier_token25] = ACTIONS(2019), - [aux_sym_cmd_identifier_token26] = ACTIONS(2019), - [aux_sym_cmd_identifier_token27] = ACTIONS(2019), - [aux_sym_cmd_identifier_token28] = ACTIONS(2019), - [aux_sym_cmd_identifier_token29] = ACTIONS(2019), - [aux_sym_cmd_identifier_token30] = ACTIONS(2019), - [aux_sym_cmd_identifier_token31] = ACTIONS(2019), - [aux_sym_cmd_identifier_token32] = ACTIONS(2019), - [aux_sym_cmd_identifier_token33] = ACTIONS(2019), - [aux_sym_cmd_identifier_token34] = ACTIONS(2019), - [aux_sym_cmd_identifier_token35] = ACTIONS(2019), - [aux_sym_cmd_identifier_token36] = ACTIONS(2019), - [aux_sym_cmd_identifier_token37] = ACTIONS(2019), - [aux_sym_cmd_identifier_token38] = ACTIONS(2019), - [aux_sym_cmd_identifier_token39] = ACTIONS(2019), - [aux_sym_cmd_identifier_token40] = ACTIONS(2019), - [anon_sym_def] = ACTIONS(2019), - [anon_sym_export_DASHenv] = ACTIONS(2019), - [anon_sym_extern] = ACTIONS(2019), - [anon_sym_module] = ACTIONS(2019), - [anon_sym_use] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2019), - [anon_sym_COMMA] = ACTIONS(2019), - [anon_sym_DOLLAR] = ACTIONS(2019), - [anon_sym_error] = ACTIONS(2019), - [anon_sym_DASH2] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2019), - [anon_sym_continue] = ACTIONS(2019), - [anon_sym_for] = ACTIONS(2019), - [anon_sym_in2] = ACTIONS(2019), - [anon_sym_loop] = ACTIONS(2019), - [anon_sym_make] = ACTIONS(2019), - [anon_sym_while] = ACTIONS(2019), - [anon_sym_do] = ACTIONS(2019), - [anon_sym_if] = ACTIONS(2019), - [anon_sym_else] = ACTIONS(2019), - [anon_sym_match] = ACTIONS(2019), - [anon_sym_RBRACE] = ACTIONS(2019), - [anon_sym_try] = ACTIONS(2019), - [anon_sym_catch] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_source] = ACTIONS(2019), - [anon_sym_source_DASHenv] = ACTIONS(2019), - [anon_sym_register] = ACTIONS(2019), - [anon_sym_hide] = ACTIONS(2019), - [anon_sym_hide_DASHenv] = ACTIONS(2019), - [anon_sym_overlay] = ACTIONS(2019), - [anon_sym_as] = ACTIONS(2019), - [anon_sym_PLUS2] = ACTIONS(2019), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2019), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2019), - [aux_sym__val_number_decimal_token1] = ACTIONS(2019), - [aux_sym__val_number_decimal_token2] = ACTIONS(2019), - [aux_sym__val_number_decimal_token3] = ACTIONS(2019), - [aux_sym__val_number_decimal_token4] = ACTIONS(2019), - [aux_sym__val_number_token1] = ACTIONS(2019), - [aux_sym__val_number_token2] = ACTIONS(2019), - [aux_sym__val_number_token3] = ACTIONS(2019), - [aux_sym__val_number_token4] = ACTIONS(2019), - [aux_sym__val_number_token5] = ACTIONS(2019), - [aux_sym__val_number_token6] = ACTIONS(2019), - [anon_sym_DQUOTE] = ACTIONS(2019), - [sym__str_single_quotes] = ACTIONS(2019), - [sym__str_back_ticks] = ACTIONS(2019), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2019), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2019), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2019), - [sym__entry_separator] = ACTIONS(2025), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2025), - }, - [623] = { - [sym_comment] = STATE(623), - [anon_sym_export] = ACTIONS(2027), - [anon_sym_alias] = ACTIONS(2027), - [anon_sym_let] = ACTIONS(2027), - [anon_sym_let_DASHenv] = ACTIONS(2027), - [anon_sym_mut] = ACTIONS(2027), - [anon_sym_const] = ACTIONS(2027), - [aux_sym_cmd_identifier_token1] = ACTIONS(2027), - [aux_sym_cmd_identifier_token2] = ACTIONS(2027), - [aux_sym_cmd_identifier_token3] = ACTIONS(2027), - [aux_sym_cmd_identifier_token4] = ACTIONS(2027), - [aux_sym_cmd_identifier_token5] = ACTIONS(2027), - [aux_sym_cmd_identifier_token6] = ACTIONS(2027), - [aux_sym_cmd_identifier_token7] = ACTIONS(2027), - [aux_sym_cmd_identifier_token8] = ACTIONS(2027), - [aux_sym_cmd_identifier_token9] = ACTIONS(2027), - [aux_sym_cmd_identifier_token10] = ACTIONS(2027), - [aux_sym_cmd_identifier_token11] = ACTIONS(2027), - [aux_sym_cmd_identifier_token12] = ACTIONS(2027), - [aux_sym_cmd_identifier_token13] = ACTIONS(2027), - [aux_sym_cmd_identifier_token14] = ACTIONS(2027), - [aux_sym_cmd_identifier_token15] = ACTIONS(2027), - [aux_sym_cmd_identifier_token16] = ACTIONS(2027), - [aux_sym_cmd_identifier_token17] = ACTIONS(2027), - [aux_sym_cmd_identifier_token18] = ACTIONS(2027), - [aux_sym_cmd_identifier_token19] = ACTIONS(2027), - [aux_sym_cmd_identifier_token20] = ACTIONS(2027), - [aux_sym_cmd_identifier_token21] = ACTIONS(2027), - [aux_sym_cmd_identifier_token22] = ACTIONS(2027), - [aux_sym_cmd_identifier_token23] = ACTIONS(2027), - [aux_sym_cmd_identifier_token24] = ACTIONS(2027), - [aux_sym_cmd_identifier_token25] = ACTIONS(2027), - [aux_sym_cmd_identifier_token26] = ACTIONS(2027), - [aux_sym_cmd_identifier_token27] = ACTIONS(2027), - [aux_sym_cmd_identifier_token28] = ACTIONS(2027), - [aux_sym_cmd_identifier_token29] = ACTIONS(2027), - [aux_sym_cmd_identifier_token30] = ACTIONS(2027), - [aux_sym_cmd_identifier_token31] = ACTIONS(2027), - [aux_sym_cmd_identifier_token32] = ACTIONS(2027), - [aux_sym_cmd_identifier_token33] = ACTIONS(2027), - [aux_sym_cmd_identifier_token34] = ACTIONS(2027), - [aux_sym_cmd_identifier_token35] = ACTIONS(2027), - [aux_sym_cmd_identifier_token36] = ACTIONS(2027), - [aux_sym_cmd_identifier_token37] = ACTIONS(2027), - [aux_sym_cmd_identifier_token38] = ACTIONS(2027), - [aux_sym_cmd_identifier_token39] = ACTIONS(2027), - [aux_sym_cmd_identifier_token40] = ACTIONS(2027), - [anon_sym_def] = ACTIONS(2027), - [anon_sym_export_DASHenv] = ACTIONS(2027), - [anon_sym_extern] = ACTIONS(2027), - [anon_sym_module] = ACTIONS(2027), - [anon_sym_use] = ACTIONS(2027), - [anon_sym_LPAREN] = ACTIONS(2027), - [anon_sym_COMMA] = ACTIONS(2027), - [anon_sym_DOLLAR] = ACTIONS(2027), - [anon_sym_error] = ACTIONS(2027), - [anon_sym_DASH2] = ACTIONS(2027), - [anon_sym_break] = ACTIONS(2027), - [anon_sym_continue] = ACTIONS(2027), - [anon_sym_for] = ACTIONS(2027), - [anon_sym_in2] = ACTIONS(2027), - [anon_sym_loop] = ACTIONS(2027), - [anon_sym_make] = ACTIONS(2027), - [anon_sym_while] = ACTIONS(2027), - [anon_sym_do] = ACTIONS(2027), - [anon_sym_if] = ACTIONS(2027), - [anon_sym_else] = ACTIONS(2027), - [anon_sym_match] = ACTIONS(2027), - [anon_sym_RBRACE] = ACTIONS(2027), - [anon_sym_try] = ACTIONS(2027), - [anon_sym_catch] = ACTIONS(2027), - [anon_sym_return] = ACTIONS(2027), - [anon_sym_source] = ACTIONS(2027), - [anon_sym_source_DASHenv] = ACTIONS(2027), - [anon_sym_register] = ACTIONS(2027), - [anon_sym_hide] = ACTIONS(2027), - [anon_sym_hide_DASHenv] = ACTIONS(2027), - [anon_sym_overlay] = ACTIONS(2027), - [anon_sym_as] = ACTIONS(2027), - [anon_sym_PLUS2] = ACTIONS(2027), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2027), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2027), - [aux_sym__val_number_decimal_token1] = ACTIONS(2027), - [aux_sym__val_number_decimal_token2] = ACTIONS(2027), - [aux_sym__val_number_decimal_token3] = ACTIONS(2027), - [aux_sym__val_number_decimal_token4] = ACTIONS(2027), - [aux_sym__val_number_token1] = ACTIONS(2027), - [aux_sym__val_number_token2] = ACTIONS(2027), - [aux_sym__val_number_token3] = ACTIONS(2027), - [aux_sym__val_number_token4] = ACTIONS(2027), - [aux_sym__val_number_token5] = ACTIONS(2027), - [aux_sym__val_number_token6] = ACTIONS(2027), - [anon_sym_DQUOTE] = ACTIONS(2027), - [sym__str_single_quotes] = ACTIONS(2027), - [sym__str_back_ticks] = ACTIONS(2027), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2027), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2027), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2027), - [sym__entry_separator] = ACTIONS(2033), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2033), - }, - [624] = { - [sym_comment] = STATE(624), - [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), - [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(2035), - [anon_sym_DOLLAR] = ACTIONS(2035), - [anon_sym_error] = ACTIONS(2035), - [anon_sym_DASH2] = ACTIONS(2035), - [anon_sym_break] = ACTIONS(2035), - [anon_sym_continue] = ACTIONS(2035), - [anon_sym_for] = ACTIONS(2035), - [anon_sym_in2] = 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_as] = ACTIONS(2035), - [anon_sym_PLUS2] = 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), - [aux_sym__val_number_decimal_token3] = ACTIONS(2035), - [aux_sym__val_number_decimal_token4] = ACTIONS(2035), - [aux_sym__val_number_token1] = ACTIONS(2035), - [aux_sym__val_number_token2] = ACTIONS(2035), - [aux_sym__val_number_token3] = ACTIONS(2035), - [aux_sym__val_number_token4] = ACTIONS(2035), - [aux_sym__val_number_token5] = ACTIONS(2035), - [aux_sym__val_number_token6] = ACTIONS(2035), - [anon_sym_DQUOTE] = ACTIONS(2035), - [sym__str_single_quotes] = ACTIONS(2035), - [sym__str_back_ticks] = ACTIONS(2035), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2035), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2035), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2035), - [sym__entry_separator] = ACTIONS(2041), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2041), - }, - [625] = { - [sym_comment] = STATE(625), - [anon_sym_export] = ACTIONS(2390), - [anon_sym_alias] = ACTIONS(2390), - [anon_sym_let] = ACTIONS(2390), - [anon_sym_let_DASHenv] = ACTIONS(2390), - [anon_sym_mut] = ACTIONS(2390), - [anon_sym_const] = ACTIONS(2390), - [aux_sym_cmd_identifier_token1] = ACTIONS(2390), - [aux_sym_cmd_identifier_token2] = ACTIONS(2390), - [aux_sym_cmd_identifier_token3] = ACTIONS(2390), - [aux_sym_cmd_identifier_token4] = ACTIONS(2390), - [aux_sym_cmd_identifier_token5] = ACTIONS(2390), - [aux_sym_cmd_identifier_token6] = ACTIONS(2390), - [aux_sym_cmd_identifier_token7] = ACTIONS(2390), - [aux_sym_cmd_identifier_token8] = ACTIONS(2390), - [aux_sym_cmd_identifier_token9] = ACTIONS(2390), - [aux_sym_cmd_identifier_token10] = ACTIONS(2390), - [aux_sym_cmd_identifier_token11] = ACTIONS(2390), - [aux_sym_cmd_identifier_token12] = ACTIONS(2390), - [aux_sym_cmd_identifier_token13] = ACTIONS(2390), - [aux_sym_cmd_identifier_token14] = ACTIONS(2390), - [aux_sym_cmd_identifier_token15] = ACTIONS(2390), - [aux_sym_cmd_identifier_token16] = ACTIONS(2390), - [aux_sym_cmd_identifier_token17] = ACTIONS(2390), - [aux_sym_cmd_identifier_token18] = ACTIONS(2390), - [aux_sym_cmd_identifier_token19] = ACTIONS(2390), - [aux_sym_cmd_identifier_token20] = ACTIONS(2390), - [aux_sym_cmd_identifier_token21] = ACTIONS(2390), - [aux_sym_cmd_identifier_token22] = ACTIONS(2390), - [aux_sym_cmd_identifier_token23] = ACTIONS(2390), - [aux_sym_cmd_identifier_token24] = ACTIONS(2390), - [aux_sym_cmd_identifier_token25] = ACTIONS(2390), - [aux_sym_cmd_identifier_token26] = ACTIONS(2390), - [aux_sym_cmd_identifier_token27] = ACTIONS(2390), - [aux_sym_cmd_identifier_token28] = ACTIONS(2390), - [aux_sym_cmd_identifier_token29] = ACTIONS(2390), - [aux_sym_cmd_identifier_token30] = ACTIONS(2390), - [aux_sym_cmd_identifier_token31] = ACTIONS(2390), - [aux_sym_cmd_identifier_token32] = ACTIONS(2390), - [aux_sym_cmd_identifier_token33] = ACTIONS(2390), - [aux_sym_cmd_identifier_token34] = ACTIONS(2390), - [aux_sym_cmd_identifier_token35] = ACTIONS(2390), - [aux_sym_cmd_identifier_token36] = ACTIONS(2390), - [aux_sym_cmd_identifier_token37] = ACTIONS(2390), - [aux_sym_cmd_identifier_token38] = ACTIONS(2390), - [aux_sym_cmd_identifier_token39] = ACTIONS(2390), - [aux_sym_cmd_identifier_token40] = ACTIONS(2390), - [anon_sym_def] = ACTIONS(2390), - [anon_sym_export_DASHenv] = ACTIONS(2390), - [anon_sym_extern] = ACTIONS(2390), - [anon_sym_module] = ACTIONS(2390), - [anon_sym_use] = ACTIONS(2390), - [anon_sym_LPAREN] = ACTIONS(2390), - [anon_sym_COMMA] = ACTIONS(2390), - [anon_sym_DOLLAR] = ACTIONS(2390), - [anon_sym_error] = ACTIONS(2390), - [anon_sym_DASH2] = ACTIONS(2390), - [anon_sym_break] = ACTIONS(2390), - [anon_sym_continue] = ACTIONS(2390), - [anon_sym_for] = ACTIONS(2390), - [anon_sym_in2] = ACTIONS(2390), - [anon_sym_loop] = ACTIONS(2390), - [anon_sym_make] = ACTIONS(2390), - [anon_sym_while] = ACTIONS(2390), - [anon_sym_do] = ACTIONS(2390), - [anon_sym_if] = ACTIONS(2390), - [anon_sym_else] = ACTIONS(2390), - [anon_sym_match] = ACTIONS(2390), - [anon_sym_RBRACE] = ACTIONS(2390), - [anon_sym_try] = ACTIONS(2390), - [anon_sym_catch] = ACTIONS(2390), - [anon_sym_return] = ACTIONS(2390), - [anon_sym_source] = ACTIONS(2390), - [anon_sym_source_DASHenv] = ACTIONS(2390), - [anon_sym_register] = ACTIONS(2390), - [anon_sym_hide] = ACTIONS(2390), - [anon_sym_hide_DASHenv] = ACTIONS(2390), - [anon_sym_overlay] = ACTIONS(2390), - [anon_sym_as] = ACTIONS(2390), - [anon_sym_PLUS2] = ACTIONS(2390), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2390), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2390), - [aux_sym__val_number_decimal_token1] = ACTIONS(2390), - [aux_sym__val_number_decimal_token2] = ACTIONS(2390), - [aux_sym__val_number_decimal_token3] = ACTIONS(2390), - [aux_sym__val_number_decimal_token4] = ACTIONS(2390), - [aux_sym__val_number_token1] = ACTIONS(2390), - [aux_sym__val_number_token2] = ACTIONS(2390), - [aux_sym__val_number_token3] = ACTIONS(2390), - [aux_sym__val_number_token4] = ACTIONS(2390), - [aux_sym__val_number_token5] = ACTIONS(2390), - [aux_sym__val_number_token6] = ACTIONS(2390), - [anon_sym_DQUOTE] = ACTIONS(2390), - [sym__str_single_quotes] = ACTIONS(2390), - [sym__str_back_ticks] = ACTIONS(2390), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2390), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2390), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2390), - [sym__entry_separator] = ACTIONS(2392), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2392), - }, - [626] = { - [sym_comment] = STATE(626), - [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), - [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(2394), - [anon_sym_DOLLAR] = ACTIONS(2394), - [anon_sym_error] = ACTIONS(2394), - [anon_sym_DASH2] = ACTIONS(2394), - [anon_sym_break] = ACTIONS(2394), - [anon_sym_continue] = ACTIONS(2394), - [anon_sym_for] = ACTIONS(2394), - [anon_sym_in2] = 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_as] = ACTIONS(2394), - [anon_sym_PLUS2] = 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), - [aux_sym__val_number_decimal_token3] = ACTIONS(2394), - [aux_sym__val_number_decimal_token4] = ACTIONS(2394), - [aux_sym__val_number_token1] = ACTIONS(2394), - [aux_sym__val_number_token2] = ACTIONS(2394), - [aux_sym__val_number_token3] = ACTIONS(2394), - [aux_sym__val_number_token4] = ACTIONS(2394), - [aux_sym__val_number_token5] = ACTIONS(2394), - [aux_sym__val_number_token6] = ACTIONS(2394), - [anon_sym_DQUOTE] = ACTIONS(2394), - [sym__str_single_quotes] = ACTIONS(2394), - [sym__str_back_ticks] = ACTIONS(2394), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2394), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2394), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2394), - [sym__entry_separator] = ACTIONS(2396), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2396), - }, - [627] = { - [sym_comment] = STATE(627), - [anon_sym_export] = ACTIONS(2398), - [anon_sym_alias] = ACTIONS(2398), - [anon_sym_let] = ACTIONS(2398), - [anon_sym_let_DASHenv] = ACTIONS(2398), - [anon_sym_mut] = ACTIONS(2398), - [anon_sym_const] = ACTIONS(2398), - [aux_sym_cmd_identifier_token1] = ACTIONS(2398), - [aux_sym_cmd_identifier_token2] = ACTIONS(2398), - [aux_sym_cmd_identifier_token3] = ACTIONS(2398), - [aux_sym_cmd_identifier_token4] = ACTIONS(2398), - [aux_sym_cmd_identifier_token5] = ACTIONS(2398), - [aux_sym_cmd_identifier_token6] = ACTIONS(2398), - [aux_sym_cmd_identifier_token7] = ACTIONS(2398), - [aux_sym_cmd_identifier_token8] = ACTIONS(2398), - [aux_sym_cmd_identifier_token9] = ACTIONS(2398), - [aux_sym_cmd_identifier_token10] = ACTIONS(2398), - [aux_sym_cmd_identifier_token11] = ACTIONS(2398), - [aux_sym_cmd_identifier_token12] = ACTIONS(2398), - [aux_sym_cmd_identifier_token13] = ACTIONS(2398), - [aux_sym_cmd_identifier_token14] = ACTIONS(2398), - [aux_sym_cmd_identifier_token15] = ACTIONS(2398), - [aux_sym_cmd_identifier_token16] = ACTIONS(2398), - [aux_sym_cmd_identifier_token17] = ACTIONS(2398), - [aux_sym_cmd_identifier_token18] = ACTIONS(2398), - [aux_sym_cmd_identifier_token19] = ACTIONS(2398), - [aux_sym_cmd_identifier_token20] = ACTIONS(2398), - [aux_sym_cmd_identifier_token21] = ACTIONS(2398), - [aux_sym_cmd_identifier_token22] = ACTIONS(2398), - [aux_sym_cmd_identifier_token23] = ACTIONS(2398), - [aux_sym_cmd_identifier_token24] = ACTIONS(2398), - [aux_sym_cmd_identifier_token25] = ACTIONS(2398), - [aux_sym_cmd_identifier_token26] = ACTIONS(2398), - [aux_sym_cmd_identifier_token27] = ACTIONS(2398), - [aux_sym_cmd_identifier_token28] = ACTIONS(2398), - [aux_sym_cmd_identifier_token29] = ACTIONS(2398), - [aux_sym_cmd_identifier_token30] = ACTIONS(2398), - [aux_sym_cmd_identifier_token31] = ACTIONS(2398), - [aux_sym_cmd_identifier_token32] = ACTIONS(2398), - [aux_sym_cmd_identifier_token33] = ACTIONS(2398), - [aux_sym_cmd_identifier_token34] = ACTIONS(2398), - [aux_sym_cmd_identifier_token35] = ACTIONS(2398), - [aux_sym_cmd_identifier_token36] = ACTIONS(2398), - [aux_sym_cmd_identifier_token37] = ACTIONS(2398), - [aux_sym_cmd_identifier_token38] = ACTIONS(2398), - [aux_sym_cmd_identifier_token39] = ACTIONS(2398), - [aux_sym_cmd_identifier_token40] = ACTIONS(2398), - [anon_sym_def] = ACTIONS(2398), - [anon_sym_export_DASHenv] = ACTIONS(2398), - [anon_sym_extern] = ACTIONS(2398), - [anon_sym_module] = ACTIONS(2398), - [anon_sym_use] = ACTIONS(2398), - [anon_sym_LPAREN] = ACTIONS(2398), - [anon_sym_COMMA] = ACTIONS(2398), - [anon_sym_DOLLAR] = ACTIONS(2398), - [anon_sym_error] = ACTIONS(2398), - [anon_sym_DASH2] = ACTIONS(2398), - [anon_sym_break] = ACTIONS(2398), - [anon_sym_continue] = ACTIONS(2398), - [anon_sym_for] = ACTIONS(2398), - [anon_sym_in2] = ACTIONS(2398), - [anon_sym_loop] = ACTIONS(2398), - [anon_sym_make] = ACTIONS(2398), - [anon_sym_while] = ACTIONS(2398), - [anon_sym_do] = ACTIONS(2398), - [anon_sym_if] = ACTIONS(2398), - [anon_sym_else] = ACTIONS(2398), - [anon_sym_match] = ACTIONS(2398), - [anon_sym_RBRACE] = ACTIONS(2398), - [anon_sym_try] = ACTIONS(2398), - [anon_sym_catch] = ACTIONS(2398), - [anon_sym_return] = ACTIONS(2398), - [anon_sym_source] = ACTIONS(2398), - [anon_sym_source_DASHenv] = ACTIONS(2398), - [anon_sym_register] = ACTIONS(2398), - [anon_sym_hide] = ACTIONS(2398), - [anon_sym_hide_DASHenv] = ACTIONS(2398), - [anon_sym_overlay] = ACTIONS(2398), - [anon_sym_as] = ACTIONS(2398), - [anon_sym_PLUS2] = ACTIONS(2398), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2398), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2398), - [aux_sym__val_number_decimal_token1] = ACTIONS(2398), - [aux_sym__val_number_decimal_token2] = ACTIONS(2398), - [aux_sym__val_number_decimal_token3] = ACTIONS(2398), - [aux_sym__val_number_decimal_token4] = ACTIONS(2398), - [aux_sym__val_number_token1] = ACTIONS(2398), - [aux_sym__val_number_token2] = ACTIONS(2398), - [aux_sym__val_number_token3] = ACTIONS(2398), - [aux_sym__val_number_token4] = ACTIONS(2398), - [aux_sym__val_number_token5] = ACTIONS(2398), - [aux_sym__val_number_token6] = ACTIONS(2398), - [anon_sym_DQUOTE] = ACTIONS(2398), - [sym__str_single_quotes] = ACTIONS(2398), - [sym__str_back_ticks] = ACTIONS(2398), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2398), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2398), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2398), - [sym__entry_separator] = ACTIONS(2400), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2400), - }, - [628] = { - [sym_comment] = STATE(628), - [anon_sym_export] = ACTIONS(2402), - [anon_sym_alias] = ACTIONS(2402), - [anon_sym_let] = ACTIONS(2402), - [anon_sym_let_DASHenv] = ACTIONS(2402), - [anon_sym_mut] = ACTIONS(2402), - [anon_sym_const] = ACTIONS(2402), - [aux_sym_cmd_identifier_token1] = ACTIONS(2402), - [aux_sym_cmd_identifier_token2] = ACTIONS(2402), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), - [aux_sym_cmd_identifier_token6] = ACTIONS(2402), - [aux_sym_cmd_identifier_token7] = ACTIONS(2402), - [aux_sym_cmd_identifier_token8] = ACTIONS(2402), - [aux_sym_cmd_identifier_token9] = ACTIONS(2402), - [aux_sym_cmd_identifier_token10] = ACTIONS(2402), - [aux_sym_cmd_identifier_token11] = ACTIONS(2402), - [aux_sym_cmd_identifier_token12] = ACTIONS(2402), - [aux_sym_cmd_identifier_token13] = ACTIONS(2402), - [aux_sym_cmd_identifier_token14] = ACTIONS(2402), - [aux_sym_cmd_identifier_token15] = ACTIONS(2402), - [aux_sym_cmd_identifier_token16] = ACTIONS(2402), - [aux_sym_cmd_identifier_token17] = ACTIONS(2402), - [aux_sym_cmd_identifier_token18] = ACTIONS(2402), - [aux_sym_cmd_identifier_token19] = ACTIONS(2402), - [aux_sym_cmd_identifier_token20] = ACTIONS(2402), - [aux_sym_cmd_identifier_token21] = ACTIONS(2402), - [aux_sym_cmd_identifier_token22] = ACTIONS(2402), - [aux_sym_cmd_identifier_token23] = ACTIONS(2402), - [aux_sym_cmd_identifier_token24] = ACTIONS(2402), - [aux_sym_cmd_identifier_token25] = ACTIONS(2402), - [aux_sym_cmd_identifier_token26] = ACTIONS(2402), - [aux_sym_cmd_identifier_token27] = ACTIONS(2402), - [aux_sym_cmd_identifier_token28] = ACTIONS(2402), - [aux_sym_cmd_identifier_token29] = ACTIONS(2402), - [aux_sym_cmd_identifier_token30] = ACTIONS(2402), - [aux_sym_cmd_identifier_token31] = ACTIONS(2402), - [aux_sym_cmd_identifier_token32] = ACTIONS(2402), - [aux_sym_cmd_identifier_token33] = ACTIONS(2402), - [aux_sym_cmd_identifier_token34] = ACTIONS(2402), - [aux_sym_cmd_identifier_token35] = ACTIONS(2402), - [aux_sym_cmd_identifier_token36] = ACTIONS(2402), - [aux_sym_cmd_identifier_token37] = ACTIONS(2402), - [aux_sym_cmd_identifier_token38] = ACTIONS(2402), - [aux_sym_cmd_identifier_token39] = ACTIONS(2402), - [aux_sym_cmd_identifier_token40] = ACTIONS(2402), - [anon_sym_def] = ACTIONS(2402), - [anon_sym_export_DASHenv] = ACTIONS(2402), - [anon_sym_extern] = ACTIONS(2402), - [anon_sym_module] = ACTIONS(2402), - [anon_sym_use] = ACTIONS(2402), - [anon_sym_LPAREN] = ACTIONS(2402), - [anon_sym_COMMA] = ACTIONS(2402), - [anon_sym_DOLLAR] = ACTIONS(2402), - [anon_sym_error] = ACTIONS(2402), - [anon_sym_DASH2] = ACTIONS(2402), - [anon_sym_break] = ACTIONS(2402), - [anon_sym_continue] = ACTIONS(2402), - [anon_sym_for] = ACTIONS(2402), - [anon_sym_in2] = ACTIONS(2402), - [anon_sym_loop] = ACTIONS(2402), - [anon_sym_make] = ACTIONS(2402), - [anon_sym_while] = ACTIONS(2402), - [anon_sym_do] = ACTIONS(2402), - [anon_sym_if] = ACTIONS(2402), - [anon_sym_else] = ACTIONS(2402), - [anon_sym_match] = ACTIONS(2402), - [anon_sym_RBRACE] = ACTIONS(2402), - [anon_sym_try] = ACTIONS(2402), - [anon_sym_catch] = ACTIONS(2402), - [anon_sym_return] = ACTIONS(2402), - [anon_sym_source] = ACTIONS(2402), - [anon_sym_source_DASHenv] = ACTIONS(2402), - [anon_sym_register] = ACTIONS(2402), - [anon_sym_hide] = ACTIONS(2402), - [anon_sym_hide_DASHenv] = ACTIONS(2402), - [anon_sym_overlay] = ACTIONS(2402), - [anon_sym_as] = ACTIONS(2402), - [anon_sym_PLUS2] = ACTIONS(2402), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2402), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2402), - [aux_sym__val_number_decimal_token1] = ACTIONS(2402), - [aux_sym__val_number_decimal_token2] = ACTIONS(2402), - [aux_sym__val_number_decimal_token3] = ACTIONS(2402), - [aux_sym__val_number_decimal_token4] = ACTIONS(2402), - [aux_sym__val_number_token1] = ACTIONS(2402), - [aux_sym__val_number_token2] = ACTIONS(2402), - [aux_sym__val_number_token3] = ACTIONS(2402), - [aux_sym__val_number_token4] = ACTIONS(2402), - [aux_sym__val_number_token5] = ACTIONS(2402), - [aux_sym__val_number_token6] = ACTIONS(2402), - [anon_sym_DQUOTE] = ACTIONS(2402), - [sym__str_single_quotes] = ACTIONS(2402), - [sym__str_back_ticks] = ACTIONS(2402), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2402), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2402), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2402), - [sym__entry_separator] = ACTIONS(2404), + [672] = { + [sym_comment] = STATE(672), + [aux_sym__multiple_types_repeat1] = STATE(619), + [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), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(2348), + [anon_sym_break] = ACTIONS(2348), + [anon_sym_continue] = ACTIONS(2348), + [anon_sym_for] = ACTIONS(2348), + [anon_sym_in2] = 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(2493), + [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_hide] = ACTIONS(2348), + [anon_sym_hide_DASHenv] = ACTIONS(2348), + [anon_sym_overlay] = ACTIONS(2348), + [anon_sym_as] = ACTIONS(2348), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2348), + [aux_sym__val_number_token5] = ACTIONS(2348), + [aux_sym__val_number_token6] = ACTIONS(2348), + [anon_sym_DQUOTE] = ACTIONS(2348), + [sym__str_single_quotes] = ACTIONS(2348), + [sym__str_back_ticks] = ACTIONS(2348), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2348), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2348), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2348), + [sym__entry_separator] = ACTIONS(2230), + [anon_sym_register] = ACTIONS(2348), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2404), + [sym_raw_string_begin] = ACTIONS(2352), }, - [629] = { - [sym_comment] = STATE(629), - [anon_sym_export] = ACTIONS(1000), - [anon_sym_alias] = ACTIONS(1000), - [anon_sym_let] = ACTIONS(1000), - [anon_sym_let_DASHenv] = ACTIONS(1000), - [anon_sym_mut] = ACTIONS(1000), - [anon_sym_const] = ACTIONS(1000), - [aux_sym_cmd_identifier_token1] = ACTIONS(1000), + [673] = { + [sym_comment] = STATE(673), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [aux_sym_cmd_identifier_token1] = ACTIONS(1002), [aux_sym_cmd_identifier_token2] = ACTIONS(1002), [aux_sym_cmd_identifier_token3] = ACTIONS(1002), [aux_sym_cmd_identifier_token4] = ACTIONS(1002), [aux_sym_cmd_identifier_token5] = ACTIONS(1002), [aux_sym_cmd_identifier_token6] = ACTIONS(1002), [aux_sym_cmd_identifier_token7] = ACTIONS(1002), - [aux_sym_cmd_identifier_token8] = ACTIONS(1000), - [aux_sym_cmd_identifier_token9] = ACTIONS(1000), + [aux_sym_cmd_identifier_token8] = ACTIONS(1002), + [aux_sym_cmd_identifier_token9] = ACTIONS(1002), [aux_sym_cmd_identifier_token10] = ACTIONS(1002), [aux_sym_cmd_identifier_token11] = ACTIONS(1002), - [aux_sym_cmd_identifier_token12] = ACTIONS(1000), - [aux_sym_cmd_identifier_token13] = ACTIONS(1000), - [aux_sym_cmd_identifier_token14] = ACTIONS(1000), - [aux_sym_cmd_identifier_token15] = ACTIONS(1000), + [aux_sym_cmd_identifier_token12] = ACTIONS(1002), + [aux_sym_cmd_identifier_token13] = ACTIONS(1002), + [aux_sym_cmd_identifier_token14] = ACTIONS(1002), + [aux_sym_cmd_identifier_token15] = ACTIONS(1002), [aux_sym_cmd_identifier_token16] = ACTIONS(1002), [aux_sym_cmd_identifier_token17] = ACTIONS(1002), [aux_sym_cmd_identifier_token18] = ACTIONS(1002), @@ -149896,9295 +154365,1703 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(1002), [aux_sym_cmd_identifier_token32] = ACTIONS(1002), [aux_sym_cmd_identifier_token33] = ACTIONS(1002), - [aux_sym_cmd_identifier_token34] = ACTIONS(1000), + [aux_sym_cmd_identifier_token34] = ACTIONS(1002), [aux_sym_cmd_identifier_token35] = ACTIONS(1002), [aux_sym_cmd_identifier_token36] = ACTIONS(1002), [aux_sym_cmd_identifier_token37] = ACTIONS(1002), - [aux_sym_cmd_identifier_token38] = ACTIONS(1000), + [aux_sym_cmd_identifier_token38] = ACTIONS(1002), [aux_sym_cmd_identifier_token39] = ACTIONS(1002), [aux_sym_cmd_identifier_token40] = ACTIONS(1002), - [anon_sym_def] = ACTIONS(1000), - [anon_sym_export_DASHenv] = ACTIONS(1000), - [anon_sym_extern] = ACTIONS(1000), - [anon_sym_module] = ACTIONS(1000), - [anon_sym_use] = ACTIONS(1000), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), [anon_sym_LPAREN] = ACTIONS(1002), [anon_sym_COMMA] = ACTIONS(1002), - [anon_sym_DOLLAR] = ACTIONS(1000), - [anon_sym_error] = ACTIONS(1000), - [anon_sym_DASH2] = ACTIONS(1000), - [anon_sym_break] = ACTIONS(1000), - [anon_sym_continue] = ACTIONS(1000), - [anon_sym_for] = ACTIONS(1000), - [anon_sym_in2] = ACTIONS(1000), - [anon_sym_loop] = ACTIONS(1000), - [anon_sym_make] = ACTIONS(1000), - [anon_sym_while] = ACTIONS(1000), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_if] = ACTIONS(1000), - [anon_sym_else] = ACTIONS(1000), - [anon_sym_match] = ACTIONS(1000), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in2] = ACTIONS(1002), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_make] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_else] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), [anon_sym_RBRACE] = ACTIONS(1002), - [anon_sym_try] = ACTIONS(1000), - [anon_sym_catch] = ACTIONS(1000), - [anon_sym_return] = ACTIONS(1000), - [anon_sym_source] = ACTIONS(1000), - [anon_sym_source_DASHenv] = ACTIONS(1000), - [anon_sym_register] = ACTIONS(1000), - [anon_sym_hide] = ACTIONS(1000), - [anon_sym_hide_DASHenv] = ACTIONS(1000), - [anon_sym_overlay] = ACTIONS(1000), - [anon_sym_as] = ACTIONS(1000), - [anon_sym_PLUS2] = ACTIONS(1000), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_catch] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_as] = ACTIONS(1002), + [anon_sym_PLUS2] = ACTIONS(1002), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1002), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1002), - [aux_sym__val_number_decimal_token1] = ACTIONS(1000), + [aux_sym__val_number_decimal_token1] = ACTIONS(1002), [aux_sym__val_number_decimal_token2] = ACTIONS(1002), [aux_sym__val_number_decimal_token3] = ACTIONS(1002), [aux_sym__val_number_decimal_token4] = ACTIONS(1002), [aux_sym__val_number_token1] = ACTIONS(1002), [aux_sym__val_number_token2] = ACTIONS(1002), [aux_sym__val_number_token3] = ACTIONS(1002), - [aux_sym__val_number_token4] = ACTIONS(1000), - [aux_sym__val_number_token5] = ACTIONS(1000), - [aux_sym__val_number_token6] = ACTIONS(1000), + [aux_sym__val_number_token4] = ACTIONS(1002), + [aux_sym__val_number_token5] = ACTIONS(1002), + [aux_sym__val_number_token6] = ACTIONS(1002), [anon_sym_DQUOTE] = ACTIONS(1002), [sym__str_single_quotes] = ACTIONS(1002), [sym__str_back_ticks] = ACTIONS(1002), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1002), - [anon_sym_COLON2] = ACTIONS(1002), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1002), - }, - [630] = { - [sym_comment] = STATE(630), - [anon_sym_export] = ACTIONS(2406), - [anon_sym_alias] = ACTIONS(2406), - [anon_sym_let] = ACTIONS(2406), - [anon_sym_let_DASHenv] = ACTIONS(2406), - [anon_sym_mut] = ACTIONS(2406), - [anon_sym_const] = ACTIONS(2406), - [aux_sym_cmd_identifier_token1] = ACTIONS(2406), - [aux_sym_cmd_identifier_token2] = ACTIONS(2406), - [aux_sym_cmd_identifier_token3] = ACTIONS(2406), - [aux_sym_cmd_identifier_token4] = ACTIONS(2406), - [aux_sym_cmd_identifier_token5] = ACTIONS(2406), - [aux_sym_cmd_identifier_token6] = ACTIONS(2406), - [aux_sym_cmd_identifier_token7] = ACTIONS(2406), - [aux_sym_cmd_identifier_token8] = ACTIONS(2406), - [aux_sym_cmd_identifier_token9] = ACTIONS(2406), - [aux_sym_cmd_identifier_token10] = ACTIONS(2406), - [aux_sym_cmd_identifier_token11] = ACTIONS(2406), - [aux_sym_cmd_identifier_token12] = ACTIONS(2406), - [aux_sym_cmd_identifier_token13] = ACTIONS(2406), - [aux_sym_cmd_identifier_token14] = ACTIONS(2406), - [aux_sym_cmd_identifier_token15] = ACTIONS(2406), - [aux_sym_cmd_identifier_token16] = ACTIONS(2406), - [aux_sym_cmd_identifier_token17] = ACTIONS(2406), - [aux_sym_cmd_identifier_token18] = ACTIONS(2406), - [aux_sym_cmd_identifier_token19] = ACTIONS(2406), - [aux_sym_cmd_identifier_token20] = ACTIONS(2406), - [aux_sym_cmd_identifier_token21] = ACTIONS(2406), - [aux_sym_cmd_identifier_token22] = ACTIONS(2406), - [aux_sym_cmd_identifier_token23] = ACTIONS(2406), - [aux_sym_cmd_identifier_token24] = ACTIONS(2406), - [aux_sym_cmd_identifier_token25] = ACTIONS(2406), - [aux_sym_cmd_identifier_token26] = ACTIONS(2406), - [aux_sym_cmd_identifier_token27] = ACTIONS(2406), - [aux_sym_cmd_identifier_token28] = ACTIONS(2406), - [aux_sym_cmd_identifier_token29] = ACTIONS(2406), - [aux_sym_cmd_identifier_token30] = ACTIONS(2406), - [aux_sym_cmd_identifier_token31] = ACTIONS(2406), - [aux_sym_cmd_identifier_token32] = ACTIONS(2406), - [aux_sym_cmd_identifier_token33] = ACTIONS(2406), - [aux_sym_cmd_identifier_token34] = ACTIONS(2406), - [aux_sym_cmd_identifier_token35] = ACTIONS(2406), - [aux_sym_cmd_identifier_token36] = ACTIONS(2406), - [aux_sym_cmd_identifier_token37] = ACTIONS(2406), - [aux_sym_cmd_identifier_token38] = ACTIONS(2406), - [aux_sym_cmd_identifier_token39] = ACTIONS(2406), - [aux_sym_cmd_identifier_token40] = ACTIONS(2406), - [anon_sym_def] = ACTIONS(2406), - [anon_sym_export_DASHenv] = ACTIONS(2406), - [anon_sym_extern] = ACTIONS(2406), - [anon_sym_module] = ACTIONS(2406), - [anon_sym_use] = ACTIONS(2406), - [anon_sym_LPAREN] = ACTIONS(2406), - [anon_sym_COMMA] = ACTIONS(2406), - [anon_sym_DOLLAR] = ACTIONS(2406), - [anon_sym_error] = ACTIONS(2406), - [anon_sym_DASH2] = ACTIONS(2406), - [anon_sym_break] = ACTIONS(2406), - [anon_sym_continue] = ACTIONS(2406), - [anon_sym_for] = ACTIONS(2406), - [anon_sym_in2] = ACTIONS(2406), - [anon_sym_loop] = ACTIONS(2406), - [anon_sym_make] = ACTIONS(2406), - [anon_sym_while] = ACTIONS(2406), - [anon_sym_do] = ACTIONS(2406), - [anon_sym_if] = ACTIONS(2406), - [anon_sym_else] = ACTIONS(2406), - [anon_sym_match] = ACTIONS(2406), - [anon_sym_RBRACE] = ACTIONS(2406), - [anon_sym_try] = ACTIONS(2406), - [anon_sym_catch] = ACTIONS(2406), - [anon_sym_return] = ACTIONS(2406), - [anon_sym_source] = ACTIONS(2406), - [anon_sym_source_DASHenv] = ACTIONS(2406), - [anon_sym_register] = ACTIONS(2406), - [anon_sym_hide] = ACTIONS(2406), - [anon_sym_hide_DASHenv] = ACTIONS(2406), - [anon_sym_overlay] = ACTIONS(2406), - [anon_sym_as] = ACTIONS(2406), - [anon_sym_PLUS2] = ACTIONS(2406), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2406), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2406), - [aux_sym__val_number_decimal_token1] = ACTIONS(2406), - [aux_sym__val_number_decimal_token2] = ACTIONS(2406), - [aux_sym__val_number_decimal_token3] = ACTIONS(2406), - [aux_sym__val_number_decimal_token4] = ACTIONS(2406), - [aux_sym__val_number_token1] = ACTIONS(2406), - [aux_sym__val_number_token2] = ACTIONS(2406), - [aux_sym__val_number_token3] = ACTIONS(2406), - [aux_sym__val_number_token4] = ACTIONS(2406), - [aux_sym__val_number_token5] = ACTIONS(2406), - [aux_sym__val_number_token6] = ACTIONS(2406), - [anon_sym_DQUOTE] = ACTIONS(2406), - [sym__str_single_quotes] = ACTIONS(2406), - [sym__str_back_ticks] = ACTIONS(2406), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2406), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2406), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2406), - [sym__entry_separator] = ACTIONS(2408), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2408), - }, - [631] = { - [sym_comment] = STATE(631), - [anon_sym_export] = ACTIONS(2410), - [anon_sym_alias] = ACTIONS(2410), - [anon_sym_let] = ACTIONS(2410), - [anon_sym_let_DASHenv] = ACTIONS(2410), - [anon_sym_mut] = ACTIONS(2410), - [anon_sym_const] = ACTIONS(2410), - [aux_sym_cmd_identifier_token1] = ACTIONS(2410), - [aux_sym_cmd_identifier_token2] = ACTIONS(2410), - [aux_sym_cmd_identifier_token3] = ACTIONS(2410), - [aux_sym_cmd_identifier_token4] = ACTIONS(2410), - [aux_sym_cmd_identifier_token5] = ACTIONS(2410), - [aux_sym_cmd_identifier_token6] = ACTIONS(2410), - [aux_sym_cmd_identifier_token7] = ACTIONS(2410), - [aux_sym_cmd_identifier_token8] = ACTIONS(2410), - [aux_sym_cmd_identifier_token9] = ACTIONS(2410), - [aux_sym_cmd_identifier_token10] = ACTIONS(2410), - [aux_sym_cmd_identifier_token11] = ACTIONS(2410), - [aux_sym_cmd_identifier_token12] = ACTIONS(2410), - [aux_sym_cmd_identifier_token13] = ACTIONS(2410), - [aux_sym_cmd_identifier_token14] = ACTIONS(2410), - [aux_sym_cmd_identifier_token15] = ACTIONS(2410), - [aux_sym_cmd_identifier_token16] = ACTIONS(2410), - [aux_sym_cmd_identifier_token17] = ACTIONS(2410), - [aux_sym_cmd_identifier_token18] = ACTIONS(2410), - [aux_sym_cmd_identifier_token19] = ACTIONS(2410), - [aux_sym_cmd_identifier_token20] = ACTIONS(2410), - [aux_sym_cmd_identifier_token21] = ACTIONS(2410), - [aux_sym_cmd_identifier_token22] = ACTIONS(2410), - [aux_sym_cmd_identifier_token23] = ACTIONS(2410), - [aux_sym_cmd_identifier_token24] = ACTIONS(2410), - [aux_sym_cmd_identifier_token25] = ACTIONS(2410), - [aux_sym_cmd_identifier_token26] = ACTIONS(2410), - [aux_sym_cmd_identifier_token27] = ACTIONS(2410), - [aux_sym_cmd_identifier_token28] = ACTIONS(2410), - [aux_sym_cmd_identifier_token29] = ACTIONS(2410), - [aux_sym_cmd_identifier_token30] = ACTIONS(2410), - [aux_sym_cmd_identifier_token31] = ACTIONS(2410), - [aux_sym_cmd_identifier_token32] = ACTIONS(2410), - [aux_sym_cmd_identifier_token33] = ACTIONS(2410), - [aux_sym_cmd_identifier_token34] = ACTIONS(2410), - [aux_sym_cmd_identifier_token35] = ACTIONS(2410), - [aux_sym_cmd_identifier_token36] = ACTIONS(2410), - [aux_sym_cmd_identifier_token37] = ACTIONS(2410), - [aux_sym_cmd_identifier_token38] = ACTIONS(2410), - [aux_sym_cmd_identifier_token39] = ACTIONS(2410), - [aux_sym_cmd_identifier_token40] = ACTIONS(2410), - [anon_sym_def] = ACTIONS(2410), - [anon_sym_export_DASHenv] = ACTIONS(2410), - [anon_sym_extern] = ACTIONS(2410), - [anon_sym_module] = ACTIONS(2410), - [anon_sym_use] = ACTIONS(2410), - [anon_sym_LPAREN] = ACTIONS(2410), - [anon_sym_COMMA] = ACTIONS(2410), - [anon_sym_DOLLAR] = ACTIONS(2410), - [anon_sym_error] = ACTIONS(2410), - [anon_sym_DASH2] = ACTIONS(2410), - [anon_sym_break] = ACTIONS(2410), - [anon_sym_continue] = ACTIONS(2410), - [anon_sym_for] = ACTIONS(2410), - [anon_sym_in2] = ACTIONS(2410), - [anon_sym_loop] = ACTIONS(2410), - [anon_sym_make] = ACTIONS(2410), - [anon_sym_while] = ACTIONS(2410), - [anon_sym_do] = ACTIONS(2410), - [anon_sym_if] = ACTIONS(2410), - [anon_sym_else] = ACTIONS(2410), - [anon_sym_match] = ACTIONS(2410), - [anon_sym_RBRACE] = ACTIONS(2410), - [anon_sym_try] = ACTIONS(2410), - [anon_sym_catch] = ACTIONS(2410), - [anon_sym_return] = ACTIONS(2410), - [anon_sym_source] = ACTIONS(2410), - [anon_sym_source_DASHenv] = ACTIONS(2410), - [anon_sym_register] = ACTIONS(2410), - [anon_sym_hide] = ACTIONS(2410), - [anon_sym_hide_DASHenv] = ACTIONS(2410), - [anon_sym_overlay] = ACTIONS(2410), - [anon_sym_as] = ACTIONS(2410), - [anon_sym_PLUS2] = ACTIONS(2410), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2410), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2410), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2410), - [aux_sym__val_number_decimal_token3] = ACTIONS(2410), - [aux_sym__val_number_decimal_token4] = ACTIONS(2410), - [aux_sym__val_number_token1] = ACTIONS(2410), - [aux_sym__val_number_token2] = ACTIONS(2410), - [aux_sym__val_number_token3] = ACTIONS(2410), - [aux_sym__val_number_token4] = ACTIONS(2410), - [aux_sym__val_number_token5] = ACTIONS(2410), - [aux_sym__val_number_token6] = ACTIONS(2410), - [anon_sym_DQUOTE] = ACTIONS(2410), - [sym__str_single_quotes] = ACTIONS(2410), - [sym__str_back_ticks] = ACTIONS(2410), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2410), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2410), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2410), - [sym__entry_separator] = ACTIONS(2412), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2412), - }, - [632] = { - [sym_comment] = STATE(632), - [anon_sym_export] = ACTIONS(2414), - [anon_sym_alias] = ACTIONS(2414), - [anon_sym_let] = ACTIONS(2414), - [anon_sym_let_DASHenv] = ACTIONS(2414), - [anon_sym_mut] = ACTIONS(2414), - [anon_sym_const] = ACTIONS(2414), - [aux_sym_cmd_identifier_token1] = ACTIONS(2414), - [aux_sym_cmd_identifier_token2] = ACTIONS(2414), - [aux_sym_cmd_identifier_token3] = ACTIONS(2414), - [aux_sym_cmd_identifier_token4] = ACTIONS(2414), - [aux_sym_cmd_identifier_token5] = ACTIONS(2414), - [aux_sym_cmd_identifier_token6] = ACTIONS(2414), - [aux_sym_cmd_identifier_token7] = ACTIONS(2414), - [aux_sym_cmd_identifier_token8] = ACTIONS(2414), - [aux_sym_cmd_identifier_token9] = ACTIONS(2414), - [aux_sym_cmd_identifier_token10] = ACTIONS(2414), - [aux_sym_cmd_identifier_token11] = ACTIONS(2414), - [aux_sym_cmd_identifier_token12] = ACTIONS(2414), - [aux_sym_cmd_identifier_token13] = ACTIONS(2414), - [aux_sym_cmd_identifier_token14] = ACTIONS(2414), - [aux_sym_cmd_identifier_token15] = ACTIONS(2414), - [aux_sym_cmd_identifier_token16] = ACTIONS(2414), - [aux_sym_cmd_identifier_token17] = ACTIONS(2414), - [aux_sym_cmd_identifier_token18] = ACTIONS(2414), - [aux_sym_cmd_identifier_token19] = ACTIONS(2414), - [aux_sym_cmd_identifier_token20] = ACTIONS(2414), - [aux_sym_cmd_identifier_token21] = ACTIONS(2414), - [aux_sym_cmd_identifier_token22] = ACTIONS(2414), - [aux_sym_cmd_identifier_token23] = ACTIONS(2414), - [aux_sym_cmd_identifier_token24] = ACTIONS(2414), - [aux_sym_cmd_identifier_token25] = ACTIONS(2414), - [aux_sym_cmd_identifier_token26] = ACTIONS(2414), - [aux_sym_cmd_identifier_token27] = ACTIONS(2414), - [aux_sym_cmd_identifier_token28] = ACTIONS(2414), - [aux_sym_cmd_identifier_token29] = ACTIONS(2414), - [aux_sym_cmd_identifier_token30] = ACTIONS(2414), - [aux_sym_cmd_identifier_token31] = ACTIONS(2414), - [aux_sym_cmd_identifier_token32] = ACTIONS(2414), - [aux_sym_cmd_identifier_token33] = ACTIONS(2414), - [aux_sym_cmd_identifier_token34] = ACTIONS(2414), - [aux_sym_cmd_identifier_token35] = ACTIONS(2414), - [aux_sym_cmd_identifier_token36] = ACTIONS(2414), - [aux_sym_cmd_identifier_token37] = ACTIONS(2414), - [aux_sym_cmd_identifier_token38] = ACTIONS(2414), - [aux_sym_cmd_identifier_token39] = ACTIONS(2414), - [aux_sym_cmd_identifier_token40] = ACTIONS(2414), - [anon_sym_def] = ACTIONS(2414), - [anon_sym_export_DASHenv] = ACTIONS(2414), - [anon_sym_extern] = ACTIONS(2414), - [anon_sym_module] = ACTIONS(2414), - [anon_sym_use] = ACTIONS(2414), - [anon_sym_LPAREN] = ACTIONS(2414), - [anon_sym_COMMA] = ACTIONS(2414), - [anon_sym_DOLLAR] = ACTIONS(2414), - [anon_sym_error] = ACTIONS(2414), - [anon_sym_DASH2] = ACTIONS(2414), - [anon_sym_break] = ACTIONS(2414), - [anon_sym_continue] = ACTIONS(2414), - [anon_sym_for] = ACTIONS(2414), - [anon_sym_in2] = ACTIONS(2414), - [anon_sym_loop] = ACTIONS(2414), - [anon_sym_make] = ACTIONS(2414), - [anon_sym_while] = ACTIONS(2414), - [anon_sym_do] = ACTIONS(2414), - [anon_sym_if] = ACTIONS(2414), - [anon_sym_else] = ACTIONS(2414), - [anon_sym_match] = ACTIONS(2414), - [anon_sym_RBRACE] = ACTIONS(2414), - [anon_sym_try] = ACTIONS(2414), - [anon_sym_catch] = ACTIONS(2414), - [anon_sym_return] = ACTIONS(2414), - [anon_sym_source] = ACTIONS(2414), - [anon_sym_source_DASHenv] = ACTIONS(2414), - [anon_sym_register] = ACTIONS(2414), - [anon_sym_hide] = ACTIONS(2414), - [anon_sym_hide_DASHenv] = ACTIONS(2414), - [anon_sym_overlay] = ACTIONS(2414), - [anon_sym_as] = ACTIONS(2414), - [anon_sym_PLUS2] = ACTIONS(2414), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2414), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2414), - [aux_sym__val_number_decimal_token1] = ACTIONS(2414), - [aux_sym__val_number_decimal_token2] = ACTIONS(2414), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), - [aux_sym__val_number_token1] = ACTIONS(2414), - [aux_sym__val_number_token2] = ACTIONS(2414), - [aux_sym__val_number_token3] = ACTIONS(2414), - [aux_sym__val_number_token4] = ACTIONS(2414), - [aux_sym__val_number_token5] = ACTIONS(2414), - [aux_sym__val_number_token6] = ACTIONS(2414), - [anon_sym_DQUOTE] = ACTIONS(2414), - [sym__str_single_quotes] = ACTIONS(2414), - [sym__str_back_ticks] = ACTIONS(2414), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2414), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2414), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2414), - [sym__entry_separator] = ACTIONS(2416), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2416), - }, - [633] = { - [sym_comment] = STATE(633), - [anon_sym_export] = ACTIONS(2418), - [anon_sym_alias] = ACTIONS(2418), - [anon_sym_let] = ACTIONS(2418), - [anon_sym_let_DASHenv] = ACTIONS(2418), - [anon_sym_mut] = ACTIONS(2418), - [anon_sym_const] = ACTIONS(2418), - [aux_sym_cmd_identifier_token1] = ACTIONS(2418), - [aux_sym_cmd_identifier_token2] = ACTIONS(2418), - [aux_sym_cmd_identifier_token3] = ACTIONS(2418), - [aux_sym_cmd_identifier_token4] = ACTIONS(2418), - [aux_sym_cmd_identifier_token5] = ACTIONS(2418), - [aux_sym_cmd_identifier_token6] = ACTIONS(2418), - [aux_sym_cmd_identifier_token7] = ACTIONS(2418), - [aux_sym_cmd_identifier_token8] = ACTIONS(2418), - [aux_sym_cmd_identifier_token9] = ACTIONS(2418), - [aux_sym_cmd_identifier_token10] = ACTIONS(2418), - [aux_sym_cmd_identifier_token11] = ACTIONS(2418), - [aux_sym_cmd_identifier_token12] = ACTIONS(2418), - [aux_sym_cmd_identifier_token13] = ACTIONS(2418), - [aux_sym_cmd_identifier_token14] = ACTIONS(2418), - [aux_sym_cmd_identifier_token15] = ACTIONS(2418), - [aux_sym_cmd_identifier_token16] = ACTIONS(2418), - [aux_sym_cmd_identifier_token17] = ACTIONS(2418), - [aux_sym_cmd_identifier_token18] = ACTIONS(2418), - [aux_sym_cmd_identifier_token19] = ACTIONS(2418), - [aux_sym_cmd_identifier_token20] = ACTIONS(2418), - [aux_sym_cmd_identifier_token21] = ACTIONS(2418), - [aux_sym_cmd_identifier_token22] = ACTIONS(2418), - [aux_sym_cmd_identifier_token23] = ACTIONS(2418), - [aux_sym_cmd_identifier_token24] = ACTIONS(2418), - [aux_sym_cmd_identifier_token25] = ACTIONS(2418), - [aux_sym_cmd_identifier_token26] = ACTIONS(2418), - [aux_sym_cmd_identifier_token27] = ACTIONS(2418), - [aux_sym_cmd_identifier_token28] = ACTIONS(2418), - [aux_sym_cmd_identifier_token29] = ACTIONS(2418), - [aux_sym_cmd_identifier_token30] = ACTIONS(2418), - [aux_sym_cmd_identifier_token31] = ACTIONS(2418), - [aux_sym_cmd_identifier_token32] = ACTIONS(2418), - [aux_sym_cmd_identifier_token33] = ACTIONS(2418), - [aux_sym_cmd_identifier_token34] = ACTIONS(2418), - [aux_sym_cmd_identifier_token35] = ACTIONS(2418), - [aux_sym_cmd_identifier_token36] = ACTIONS(2418), - [aux_sym_cmd_identifier_token37] = ACTIONS(2418), - [aux_sym_cmd_identifier_token38] = ACTIONS(2418), - [aux_sym_cmd_identifier_token39] = ACTIONS(2418), - [aux_sym_cmd_identifier_token40] = ACTIONS(2418), - [anon_sym_def] = ACTIONS(2418), - [anon_sym_export_DASHenv] = ACTIONS(2418), - [anon_sym_extern] = ACTIONS(2418), - [anon_sym_module] = ACTIONS(2418), - [anon_sym_use] = ACTIONS(2418), - [anon_sym_LPAREN] = ACTIONS(2418), - [anon_sym_COMMA] = ACTIONS(2418), - [anon_sym_DOLLAR] = ACTIONS(2418), - [anon_sym_error] = ACTIONS(2418), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_break] = ACTIONS(2418), - [anon_sym_continue] = ACTIONS(2418), - [anon_sym_for] = ACTIONS(2418), - [anon_sym_in2] = ACTIONS(2418), - [anon_sym_loop] = ACTIONS(2418), - [anon_sym_make] = ACTIONS(2418), - [anon_sym_while] = ACTIONS(2418), - [anon_sym_do] = ACTIONS(2418), - [anon_sym_if] = ACTIONS(2418), - [anon_sym_else] = ACTIONS(2418), - [anon_sym_match] = ACTIONS(2418), - [anon_sym_RBRACE] = ACTIONS(2418), - [anon_sym_try] = ACTIONS(2418), - [anon_sym_catch] = ACTIONS(2418), - [anon_sym_return] = ACTIONS(2418), - [anon_sym_source] = ACTIONS(2418), - [anon_sym_source_DASHenv] = ACTIONS(2418), - [anon_sym_register] = ACTIONS(2418), - [anon_sym_hide] = ACTIONS(2418), - [anon_sym_hide_DASHenv] = ACTIONS(2418), - [anon_sym_overlay] = ACTIONS(2418), - [anon_sym_as] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2418), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2418), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2418), - [aux_sym__val_number_decimal_token1] = ACTIONS(2418), - [aux_sym__val_number_decimal_token2] = ACTIONS(2418), - [aux_sym__val_number_decimal_token3] = ACTIONS(2418), - [aux_sym__val_number_decimal_token4] = ACTIONS(2418), - [aux_sym__val_number_token1] = ACTIONS(2418), - [aux_sym__val_number_token2] = ACTIONS(2418), - [aux_sym__val_number_token3] = ACTIONS(2418), - [aux_sym__val_number_token4] = ACTIONS(2418), - [aux_sym__val_number_token5] = ACTIONS(2418), - [aux_sym__val_number_token6] = ACTIONS(2418), - [anon_sym_DQUOTE] = ACTIONS(2418), - [sym__str_single_quotes] = ACTIONS(2418), - [sym__str_back_ticks] = ACTIONS(2418), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2418), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2418), - [sym__entry_separator] = ACTIONS(2420), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2420), - }, - [634] = { - [sym_comment] = STATE(634), - [anon_sym_export] = ACTIONS(2422), - [anon_sym_alias] = ACTIONS(2422), - [anon_sym_let] = ACTIONS(2422), - [anon_sym_let_DASHenv] = ACTIONS(2422), - [anon_sym_mut] = ACTIONS(2422), - [anon_sym_const] = ACTIONS(2422), - [aux_sym_cmd_identifier_token1] = ACTIONS(2422), - [aux_sym_cmd_identifier_token2] = ACTIONS(2422), - [aux_sym_cmd_identifier_token3] = ACTIONS(2422), - [aux_sym_cmd_identifier_token4] = ACTIONS(2422), - [aux_sym_cmd_identifier_token5] = ACTIONS(2422), - [aux_sym_cmd_identifier_token6] = ACTIONS(2422), - [aux_sym_cmd_identifier_token7] = ACTIONS(2422), - [aux_sym_cmd_identifier_token8] = ACTIONS(2422), - [aux_sym_cmd_identifier_token9] = ACTIONS(2422), - [aux_sym_cmd_identifier_token10] = ACTIONS(2422), - [aux_sym_cmd_identifier_token11] = ACTIONS(2422), - [aux_sym_cmd_identifier_token12] = ACTIONS(2422), - [aux_sym_cmd_identifier_token13] = ACTIONS(2422), - [aux_sym_cmd_identifier_token14] = ACTIONS(2422), - [aux_sym_cmd_identifier_token15] = ACTIONS(2422), - [aux_sym_cmd_identifier_token16] = ACTIONS(2422), - [aux_sym_cmd_identifier_token17] = ACTIONS(2422), - [aux_sym_cmd_identifier_token18] = ACTIONS(2422), - [aux_sym_cmd_identifier_token19] = ACTIONS(2422), - [aux_sym_cmd_identifier_token20] = ACTIONS(2422), - [aux_sym_cmd_identifier_token21] = ACTIONS(2422), - [aux_sym_cmd_identifier_token22] = ACTIONS(2422), - [aux_sym_cmd_identifier_token23] = ACTIONS(2422), - [aux_sym_cmd_identifier_token24] = ACTIONS(2422), - [aux_sym_cmd_identifier_token25] = ACTIONS(2422), - [aux_sym_cmd_identifier_token26] = ACTIONS(2422), - [aux_sym_cmd_identifier_token27] = ACTIONS(2422), - [aux_sym_cmd_identifier_token28] = ACTIONS(2422), - [aux_sym_cmd_identifier_token29] = ACTIONS(2422), - [aux_sym_cmd_identifier_token30] = ACTIONS(2422), - [aux_sym_cmd_identifier_token31] = ACTIONS(2422), - [aux_sym_cmd_identifier_token32] = ACTIONS(2422), - [aux_sym_cmd_identifier_token33] = ACTIONS(2422), - [aux_sym_cmd_identifier_token34] = ACTIONS(2422), - [aux_sym_cmd_identifier_token35] = ACTIONS(2422), - [aux_sym_cmd_identifier_token36] = ACTIONS(2422), - [aux_sym_cmd_identifier_token37] = ACTIONS(2422), - [aux_sym_cmd_identifier_token38] = ACTIONS(2422), - [aux_sym_cmd_identifier_token39] = ACTIONS(2422), - [aux_sym_cmd_identifier_token40] = ACTIONS(2422), - [anon_sym_def] = ACTIONS(2422), - [anon_sym_export_DASHenv] = ACTIONS(2422), - [anon_sym_extern] = ACTIONS(2422), - [anon_sym_module] = ACTIONS(2422), - [anon_sym_use] = ACTIONS(2422), - [anon_sym_LPAREN] = ACTIONS(2422), - [anon_sym_COMMA] = ACTIONS(2422), - [anon_sym_DOLLAR] = ACTIONS(2422), - [anon_sym_error] = ACTIONS(2422), - [anon_sym_DASH2] = ACTIONS(2422), - [anon_sym_break] = ACTIONS(2422), - [anon_sym_continue] = ACTIONS(2422), - [anon_sym_for] = ACTIONS(2422), - [anon_sym_in2] = ACTIONS(2422), - [anon_sym_loop] = ACTIONS(2422), - [anon_sym_make] = ACTIONS(2422), - [anon_sym_while] = ACTIONS(2422), - [anon_sym_do] = ACTIONS(2422), - [anon_sym_if] = ACTIONS(2422), - [anon_sym_else] = ACTIONS(2422), - [anon_sym_match] = ACTIONS(2422), - [anon_sym_RBRACE] = ACTIONS(2422), - [anon_sym_try] = ACTIONS(2422), - [anon_sym_catch] = ACTIONS(2422), - [anon_sym_return] = ACTIONS(2422), - [anon_sym_source] = ACTIONS(2422), - [anon_sym_source_DASHenv] = ACTIONS(2422), - [anon_sym_register] = ACTIONS(2422), - [anon_sym_hide] = ACTIONS(2422), - [anon_sym_hide_DASHenv] = ACTIONS(2422), - [anon_sym_overlay] = ACTIONS(2422), - [anon_sym_as] = ACTIONS(2422), - [anon_sym_PLUS2] = ACTIONS(2422), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2422), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2422), - [aux_sym__val_number_decimal_token1] = ACTIONS(2422), - [aux_sym__val_number_decimal_token2] = ACTIONS(2422), - [aux_sym__val_number_decimal_token3] = ACTIONS(2422), - [aux_sym__val_number_decimal_token4] = ACTIONS(2422), - [aux_sym__val_number_token1] = ACTIONS(2422), - [aux_sym__val_number_token2] = ACTIONS(2422), - [aux_sym__val_number_token3] = ACTIONS(2422), - [aux_sym__val_number_token4] = ACTIONS(2422), - [aux_sym__val_number_token5] = ACTIONS(2422), - [aux_sym__val_number_token6] = ACTIONS(2422), - [anon_sym_DQUOTE] = ACTIONS(2422), - [sym__str_single_quotes] = ACTIONS(2422), - [sym__str_back_ticks] = ACTIONS(2422), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2422), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2422), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2422), - [sym__entry_separator] = ACTIONS(2424), + [sym__entry_separator] = ACTIONS(998), + [anon_sym_register] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2424), + [sym_raw_string_begin] = ACTIONS(998), }, - [635] = { - [sym_comment] = STATE(635), - [anon_sym_export] = ACTIONS(2426), - [anon_sym_alias] = ACTIONS(2426), - [anon_sym_let] = ACTIONS(2426), - [anon_sym_let_DASHenv] = ACTIONS(2426), - [anon_sym_mut] = ACTIONS(2426), - [anon_sym_const] = ACTIONS(2426), - [aux_sym_cmd_identifier_token1] = ACTIONS(2426), - [aux_sym_cmd_identifier_token2] = ACTIONS(2426), - [aux_sym_cmd_identifier_token3] = ACTIONS(2426), - [aux_sym_cmd_identifier_token4] = ACTIONS(2426), - [aux_sym_cmd_identifier_token5] = ACTIONS(2426), - [aux_sym_cmd_identifier_token6] = ACTIONS(2426), - [aux_sym_cmd_identifier_token7] = ACTIONS(2426), - [aux_sym_cmd_identifier_token8] = ACTIONS(2426), - [aux_sym_cmd_identifier_token9] = ACTIONS(2426), - [aux_sym_cmd_identifier_token10] = ACTIONS(2426), - [aux_sym_cmd_identifier_token11] = ACTIONS(2426), - [aux_sym_cmd_identifier_token12] = ACTIONS(2426), - [aux_sym_cmd_identifier_token13] = ACTIONS(2426), - [aux_sym_cmd_identifier_token14] = ACTIONS(2426), - [aux_sym_cmd_identifier_token15] = ACTIONS(2426), - [aux_sym_cmd_identifier_token16] = ACTIONS(2426), - [aux_sym_cmd_identifier_token17] = ACTIONS(2426), - [aux_sym_cmd_identifier_token18] = ACTIONS(2426), - [aux_sym_cmd_identifier_token19] = ACTIONS(2426), - [aux_sym_cmd_identifier_token20] = ACTIONS(2426), - [aux_sym_cmd_identifier_token21] = ACTIONS(2426), - [aux_sym_cmd_identifier_token22] = ACTIONS(2426), - [aux_sym_cmd_identifier_token23] = ACTIONS(2426), - [aux_sym_cmd_identifier_token24] = ACTIONS(2426), - [aux_sym_cmd_identifier_token25] = ACTIONS(2426), - [aux_sym_cmd_identifier_token26] = ACTIONS(2426), - [aux_sym_cmd_identifier_token27] = ACTIONS(2426), - [aux_sym_cmd_identifier_token28] = ACTIONS(2426), - [aux_sym_cmd_identifier_token29] = ACTIONS(2426), - [aux_sym_cmd_identifier_token30] = ACTIONS(2426), - [aux_sym_cmd_identifier_token31] = ACTIONS(2426), - [aux_sym_cmd_identifier_token32] = ACTIONS(2426), - [aux_sym_cmd_identifier_token33] = ACTIONS(2426), - [aux_sym_cmd_identifier_token34] = ACTIONS(2426), - [aux_sym_cmd_identifier_token35] = ACTIONS(2426), - [aux_sym_cmd_identifier_token36] = ACTIONS(2426), - [aux_sym_cmd_identifier_token37] = ACTIONS(2426), - [aux_sym_cmd_identifier_token38] = ACTIONS(2426), - [aux_sym_cmd_identifier_token39] = ACTIONS(2426), - [aux_sym_cmd_identifier_token40] = ACTIONS(2426), - [anon_sym_def] = ACTIONS(2426), - [anon_sym_export_DASHenv] = ACTIONS(2426), - [anon_sym_extern] = ACTIONS(2426), - [anon_sym_module] = ACTIONS(2426), - [anon_sym_use] = ACTIONS(2426), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_COMMA] = ACTIONS(2426), - [anon_sym_DOLLAR] = ACTIONS(2426), - [anon_sym_error] = ACTIONS(2426), - [anon_sym_DASH2] = ACTIONS(2426), - [anon_sym_break] = ACTIONS(2426), - [anon_sym_continue] = ACTIONS(2426), - [anon_sym_for] = ACTIONS(2426), - [anon_sym_in2] = ACTIONS(2426), - [anon_sym_loop] = ACTIONS(2426), - [anon_sym_make] = ACTIONS(2426), - [anon_sym_while] = ACTIONS(2426), - [anon_sym_do] = ACTIONS(2426), - [anon_sym_if] = ACTIONS(2426), - [anon_sym_else] = ACTIONS(2426), - [anon_sym_match] = ACTIONS(2426), - [anon_sym_RBRACE] = ACTIONS(2426), - [anon_sym_try] = ACTIONS(2426), - [anon_sym_catch] = ACTIONS(2426), - [anon_sym_return] = ACTIONS(2426), - [anon_sym_source] = ACTIONS(2426), - [anon_sym_source_DASHenv] = ACTIONS(2426), - [anon_sym_register] = ACTIONS(2426), - [anon_sym_hide] = ACTIONS(2426), - [anon_sym_hide_DASHenv] = ACTIONS(2426), - [anon_sym_overlay] = ACTIONS(2426), - [anon_sym_as] = ACTIONS(2426), - [anon_sym_PLUS2] = ACTIONS(2426), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2426), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2426), - [aux_sym__val_number_decimal_token1] = ACTIONS(2426), - [aux_sym__val_number_decimal_token2] = ACTIONS(2426), - [aux_sym__val_number_decimal_token3] = ACTIONS(2426), - [aux_sym__val_number_decimal_token4] = ACTIONS(2426), - [aux_sym__val_number_token1] = ACTIONS(2426), - [aux_sym__val_number_token2] = ACTIONS(2426), - [aux_sym__val_number_token3] = ACTIONS(2426), - [aux_sym__val_number_token4] = ACTIONS(2426), - [aux_sym__val_number_token5] = ACTIONS(2426), - [aux_sym__val_number_token6] = ACTIONS(2426), - [anon_sym_DQUOTE] = ACTIONS(2426), - [sym__str_single_quotes] = ACTIONS(2426), - [sym__str_back_ticks] = ACTIONS(2426), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2426), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2426), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2426), - [sym__entry_separator] = ACTIONS(2428), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2428), + [674] = { + [sym_comment] = STATE(674), + [anon_sym_export] = ACTIONS(1639), + [anon_sym_alias] = ACTIONS(1639), + [anon_sym_let] = ACTIONS(1639), + [anon_sym_let_DASHenv] = ACTIONS(1639), + [anon_sym_mut] = ACTIONS(1639), + [anon_sym_const] = ACTIONS(1639), + [aux_sym_cmd_identifier_token1] = ACTIONS(1639), + [aux_sym_cmd_identifier_token2] = ACTIONS(1651), + [aux_sym_cmd_identifier_token3] = ACTIONS(1651), + [aux_sym_cmd_identifier_token4] = ACTIONS(1651), + [aux_sym_cmd_identifier_token5] = ACTIONS(1651), + [aux_sym_cmd_identifier_token6] = ACTIONS(1651), + [aux_sym_cmd_identifier_token7] = ACTIONS(1651), + [aux_sym_cmd_identifier_token8] = ACTIONS(1639), + [aux_sym_cmd_identifier_token9] = ACTIONS(1639), + [aux_sym_cmd_identifier_token10] = ACTIONS(1651), + [aux_sym_cmd_identifier_token11] = ACTIONS(1651), + [aux_sym_cmd_identifier_token12] = ACTIONS(1639), + [aux_sym_cmd_identifier_token13] = ACTIONS(1639), + [aux_sym_cmd_identifier_token14] = ACTIONS(1639), + [aux_sym_cmd_identifier_token15] = ACTIONS(1639), + [aux_sym_cmd_identifier_token16] = ACTIONS(1651), + [aux_sym_cmd_identifier_token17] = ACTIONS(1651), + [aux_sym_cmd_identifier_token18] = ACTIONS(1651), + [aux_sym_cmd_identifier_token19] = ACTIONS(1651), + [aux_sym_cmd_identifier_token20] = ACTIONS(1651), + [aux_sym_cmd_identifier_token21] = ACTIONS(1651), + [aux_sym_cmd_identifier_token22] = ACTIONS(1651), + [aux_sym_cmd_identifier_token23] = ACTIONS(1651), + [aux_sym_cmd_identifier_token24] = ACTIONS(1651), + [aux_sym_cmd_identifier_token25] = ACTIONS(1651), + [aux_sym_cmd_identifier_token26] = ACTIONS(1651), + [aux_sym_cmd_identifier_token27] = ACTIONS(1651), + [aux_sym_cmd_identifier_token28] = ACTIONS(1651), + [aux_sym_cmd_identifier_token29] = ACTIONS(1651), + [aux_sym_cmd_identifier_token30] = ACTIONS(1651), + [aux_sym_cmd_identifier_token31] = ACTIONS(1651), + [aux_sym_cmd_identifier_token32] = ACTIONS(1651), + [aux_sym_cmd_identifier_token33] = ACTIONS(1651), + [aux_sym_cmd_identifier_token34] = ACTIONS(1639), + [aux_sym_cmd_identifier_token35] = ACTIONS(1651), + [aux_sym_cmd_identifier_token36] = ACTIONS(1651), + [aux_sym_cmd_identifier_token37] = ACTIONS(1651), + [aux_sym_cmd_identifier_token38] = ACTIONS(1639), + [aux_sym_cmd_identifier_token39] = ACTIONS(1651), + [aux_sym_cmd_identifier_token40] = ACTIONS(1651), + [anon_sym_def] = ACTIONS(1639), + [anon_sym_export_DASHenv] = ACTIONS(1639), + [anon_sym_extern] = ACTIONS(1639), + [anon_sym_module] = ACTIONS(1639), + [anon_sym_use] = ACTIONS(1639), + [anon_sym_LPAREN] = ACTIONS(1651), + [anon_sym_COMMA] = ACTIONS(1651), + [anon_sym_DOLLAR] = ACTIONS(1639), + [anon_sym_error] = ACTIONS(1639), + [anon_sym_DASH2] = ACTIONS(1639), + [anon_sym_break] = ACTIONS(1639), + [anon_sym_continue] = ACTIONS(1639), + [anon_sym_for] = ACTIONS(1639), + [anon_sym_in2] = ACTIONS(1639), + [anon_sym_loop] = ACTIONS(1639), + [anon_sym_make] = ACTIONS(1639), + [anon_sym_while] = ACTIONS(1639), + [anon_sym_do] = ACTIONS(1639), + [anon_sym_if] = ACTIONS(1639), + [anon_sym_else] = ACTIONS(1639), + [anon_sym_match] = ACTIONS(1639), + [anon_sym_RBRACE] = ACTIONS(1651), + [anon_sym_try] = ACTIONS(1639), + [anon_sym_catch] = ACTIONS(1639), + [anon_sym_return] = ACTIONS(1639), + [anon_sym_source] = ACTIONS(1639), + [anon_sym_source_DASHenv] = ACTIONS(1639), + [anon_sym_hide] = ACTIONS(1639), + [anon_sym_hide_DASHenv] = ACTIONS(1639), + [anon_sym_overlay] = ACTIONS(1639), + [anon_sym_as] = ACTIONS(1639), + [anon_sym_PLUS2] = ACTIONS(1639), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1651), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1651), + [aux_sym__val_number_decimal_token1] = ACTIONS(1639), + [aux_sym__val_number_decimal_token2] = ACTIONS(1651), + [aux_sym__val_number_decimal_token3] = ACTIONS(1651), + [aux_sym__val_number_decimal_token4] = ACTIONS(1651), + [aux_sym__val_number_token1] = ACTIONS(1651), + [aux_sym__val_number_token2] = ACTIONS(1651), + [aux_sym__val_number_token3] = ACTIONS(1651), + [aux_sym__val_number_token4] = ACTIONS(1639), + [aux_sym__val_number_token5] = ACTIONS(1639), + [aux_sym__val_number_token6] = ACTIONS(1639), + [anon_sym_DQUOTE] = ACTIONS(1651), + [sym__str_single_quotes] = ACTIONS(1651), + [sym__str_back_ticks] = ACTIONS(1651), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1651), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1651), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1651), + [anon_sym_register] = ACTIONS(1639), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1753), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1651), }, - [636] = { - [sym_comment] = STATE(636), - [anon_sym_export] = ACTIONS(2430), - [anon_sym_alias] = ACTIONS(2430), - [anon_sym_let] = ACTIONS(2430), - [anon_sym_let_DASHenv] = ACTIONS(2430), - [anon_sym_mut] = ACTIONS(2430), - [anon_sym_const] = ACTIONS(2430), - [aux_sym_cmd_identifier_token1] = ACTIONS(2430), - [aux_sym_cmd_identifier_token2] = ACTIONS(2430), - [aux_sym_cmd_identifier_token3] = ACTIONS(2430), - [aux_sym_cmd_identifier_token4] = ACTIONS(2430), - [aux_sym_cmd_identifier_token5] = ACTIONS(2430), - [aux_sym_cmd_identifier_token6] = ACTIONS(2430), - [aux_sym_cmd_identifier_token7] = ACTIONS(2430), - [aux_sym_cmd_identifier_token8] = ACTIONS(2430), - [aux_sym_cmd_identifier_token9] = ACTIONS(2430), - [aux_sym_cmd_identifier_token10] = ACTIONS(2430), - [aux_sym_cmd_identifier_token11] = ACTIONS(2430), - [aux_sym_cmd_identifier_token12] = ACTIONS(2430), - [aux_sym_cmd_identifier_token13] = ACTIONS(2430), - [aux_sym_cmd_identifier_token14] = ACTIONS(2430), - [aux_sym_cmd_identifier_token15] = ACTIONS(2430), - [aux_sym_cmd_identifier_token16] = ACTIONS(2430), - [aux_sym_cmd_identifier_token17] = ACTIONS(2430), - [aux_sym_cmd_identifier_token18] = ACTIONS(2430), - [aux_sym_cmd_identifier_token19] = ACTIONS(2430), - [aux_sym_cmd_identifier_token20] = ACTIONS(2430), - [aux_sym_cmd_identifier_token21] = ACTIONS(2430), - [aux_sym_cmd_identifier_token22] = ACTIONS(2430), - [aux_sym_cmd_identifier_token23] = ACTIONS(2430), - [aux_sym_cmd_identifier_token24] = ACTIONS(2430), - [aux_sym_cmd_identifier_token25] = ACTIONS(2430), - [aux_sym_cmd_identifier_token26] = ACTIONS(2430), - [aux_sym_cmd_identifier_token27] = ACTIONS(2430), - [aux_sym_cmd_identifier_token28] = ACTIONS(2430), - [aux_sym_cmd_identifier_token29] = ACTIONS(2430), - [aux_sym_cmd_identifier_token30] = ACTIONS(2430), - [aux_sym_cmd_identifier_token31] = ACTIONS(2430), - [aux_sym_cmd_identifier_token32] = ACTIONS(2430), - [aux_sym_cmd_identifier_token33] = ACTIONS(2430), - [aux_sym_cmd_identifier_token34] = ACTIONS(2430), - [aux_sym_cmd_identifier_token35] = ACTIONS(2430), - [aux_sym_cmd_identifier_token36] = ACTIONS(2430), - [aux_sym_cmd_identifier_token37] = ACTIONS(2430), - [aux_sym_cmd_identifier_token38] = ACTIONS(2430), - [aux_sym_cmd_identifier_token39] = ACTIONS(2430), - [aux_sym_cmd_identifier_token40] = ACTIONS(2430), - [anon_sym_def] = ACTIONS(2430), - [anon_sym_export_DASHenv] = ACTIONS(2430), - [anon_sym_extern] = ACTIONS(2430), - [anon_sym_module] = ACTIONS(2430), - [anon_sym_use] = ACTIONS(2430), - [anon_sym_LPAREN] = ACTIONS(2430), - [anon_sym_COMMA] = ACTIONS(2430), - [anon_sym_DOLLAR] = ACTIONS(2430), - [anon_sym_error] = ACTIONS(2430), - [anon_sym_DASH2] = ACTIONS(2430), - [anon_sym_break] = ACTIONS(2430), - [anon_sym_continue] = ACTIONS(2430), - [anon_sym_for] = ACTIONS(2430), - [anon_sym_in2] = ACTIONS(2430), - [anon_sym_loop] = ACTIONS(2430), - [anon_sym_make] = ACTIONS(2430), - [anon_sym_while] = ACTIONS(2430), - [anon_sym_do] = ACTIONS(2430), - [anon_sym_if] = ACTIONS(2430), - [anon_sym_else] = ACTIONS(2430), - [anon_sym_match] = ACTIONS(2430), - [anon_sym_RBRACE] = ACTIONS(2430), - [anon_sym_try] = ACTIONS(2430), - [anon_sym_catch] = ACTIONS(2430), - [anon_sym_return] = ACTIONS(2430), - [anon_sym_source] = ACTIONS(2430), - [anon_sym_source_DASHenv] = ACTIONS(2430), - [anon_sym_register] = ACTIONS(2430), - [anon_sym_hide] = ACTIONS(2430), - [anon_sym_hide_DASHenv] = ACTIONS(2430), - [anon_sym_overlay] = ACTIONS(2430), - [anon_sym_as] = ACTIONS(2430), - [anon_sym_PLUS2] = ACTIONS(2430), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2430), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2430), - [aux_sym__val_number_decimal_token1] = ACTIONS(2430), - [aux_sym__val_number_decimal_token2] = ACTIONS(2430), - [aux_sym__val_number_decimal_token3] = ACTIONS(2430), - [aux_sym__val_number_decimal_token4] = ACTIONS(2430), - [aux_sym__val_number_token1] = ACTIONS(2430), - [aux_sym__val_number_token2] = ACTIONS(2430), - [aux_sym__val_number_token3] = ACTIONS(2430), - [aux_sym__val_number_token4] = ACTIONS(2430), - [aux_sym__val_number_token5] = ACTIONS(2430), - [aux_sym__val_number_token6] = ACTIONS(2430), - [anon_sym_DQUOTE] = ACTIONS(2430), - [sym__str_single_quotes] = ACTIONS(2430), - [sym__str_back_ticks] = ACTIONS(2430), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2430), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2430), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2430), - [sym__entry_separator] = ACTIONS(2432), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2432), - }, - [637] = { - [sym_comment] = STATE(637), - [anon_sym_export] = ACTIONS(1016), - [anon_sym_alias] = ACTIONS(1016), - [anon_sym_let] = ACTIONS(1016), - [anon_sym_let_DASHenv] = ACTIONS(1016), - [anon_sym_mut] = ACTIONS(1016), - [anon_sym_const] = ACTIONS(1016), - [aux_sym_cmd_identifier_token1] = ACTIONS(1016), - [aux_sym_cmd_identifier_token2] = ACTIONS(1016), - [aux_sym_cmd_identifier_token3] = ACTIONS(1016), - [aux_sym_cmd_identifier_token4] = ACTIONS(1016), - [aux_sym_cmd_identifier_token5] = ACTIONS(1016), - [aux_sym_cmd_identifier_token6] = ACTIONS(1016), - [aux_sym_cmd_identifier_token7] = ACTIONS(1016), - [aux_sym_cmd_identifier_token8] = ACTIONS(1016), - [aux_sym_cmd_identifier_token9] = ACTIONS(1016), - [aux_sym_cmd_identifier_token10] = ACTIONS(1016), - [aux_sym_cmd_identifier_token11] = ACTIONS(1016), - [aux_sym_cmd_identifier_token12] = ACTIONS(1016), - [aux_sym_cmd_identifier_token13] = ACTIONS(1016), - [aux_sym_cmd_identifier_token14] = ACTIONS(1016), - [aux_sym_cmd_identifier_token15] = ACTIONS(1016), - [aux_sym_cmd_identifier_token16] = ACTIONS(1016), - [aux_sym_cmd_identifier_token17] = ACTIONS(1016), - [aux_sym_cmd_identifier_token18] = ACTIONS(1016), - [aux_sym_cmd_identifier_token19] = ACTIONS(1016), - [aux_sym_cmd_identifier_token20] = ACTIONS(1016), - [aux_sym_cmd_identifier_token21] = ACTIONS(1016), - [aux_sym_cmd_identifier_token22] = ACTIONS(1016), - [aux_sym_cmd_identifier_token23] = ACTIONS(1016), - [aux_sym_cmd_identifier_token24] = ACTIONS(1016), - [aux_sym_cmd_identifier_token25] = ACTIONS(1016), - [aux_sym_cmd_identifier_token26] = ACTIONS(1016), - [aux_sym_cmd_identifier_token27] = ACTIONS(1016), - [aux_sym_cmd_identifier_token28] = ACTIONS(1016), - [aux_sym_cmd_identifier_token29] = ACTIONS(1016), - [aux_sym_cmd_identifier_token30] = ACTIONS(1016), - [aux_sym_cmd_identifier_token31] = ACTIONS(1016), - [aux_sym_cmd_identifier_token32] = ACTIONS(1016), - [aux_sym_cmd_identifier_token33] = ACTIONS(1016), - [aux_sym_cmd_identifier_token34] = ACTIONS(1016), - [aux_sym_cmd_identifier_token35] = ACTIONS(1016), - [aux_sym_cmd_identifier_token36] = ACTIONS(1016), - [aux_sym_cmd_identifier_token37] = ACTIONS(1016), - [aux_sym_cmd_identifier_token38] = ACTIONS(1016), - [aux_sym_cmd_identifier_token39] = ACTIONS(1016), - [aux_sym_cmd_identifier_token40] = ACTIONS(1016), - [anon_sym_def] = ACTIONS(1016), - [anon_sym_export_DASHenv] = ACTIONS(1016), - [anon_sym_extern] = ACTIONS(1016), - [anon_sym_module] = ACTIONS(1016), - [anon_sym_use] = ACTIONS(1016), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_COMMA] = ACTIONS(1016), - [anon_sym_DOLLAR] = ACTIONS(1016), - [anon_sym_error] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_break] = ACTIONS(1016), - [anon_sym_continue] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1016), - [anon_sym_in2] = ACTIONS(1016), - [anon_sym_loop] = ACTIONS(1016), - [anon_sym_make] = ACTIONS(1016), - [anon_sym_while] = ACTIONS(1016), - [anon_sym_do] = ACTIONS(1016), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_else] = ACTIONS(1016), - [anon_sym_match] = ACTIONS(1016), - [anon_sym_RBRACE] = ACTIONS(1016), - [anon_sym_try] = ACTIONS(1016), - [anon_sym_catch] = ACTIONS(1016), - [anon_sym_return] = ACTIONS(1016), - [anon_sym_source] = ACTIONS(1016), - [anon_sym_source_DASHenv] = ACTIONS(1016), - [anon_sym_register] = ACTIONS(1016), - [anon_sym_hide] = ACTIONS(1016), - [anon_sym_hide_DASHenv] = ACTIONS(1016), - [anon_sym_overlay] = ACTIONS(1016), - [anon_sym_as] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1016), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1016), - [aux_sym__val_number_decimal_token1] = ACTIONS(1016), - [aux_sym__val_number_decimal_token2] = ACTIONS(1016), - [aux_sym__val_number_decimal_token3] = ACTIONS(1016), - [aux_sym__val_number_decimal_token4] = ACTIONS(1016), - [aux_sym__val_number_token1] = ACTIONS(1016), - [aux_sym__val_number_token2] = ACTIONS(1016), - [aux_sym__val_number_token3] = ACTIONS(1016), - [aux_sym__val_number_token4] = ACTIONS(1016), - [aux_sym__val_number_token5] = ACTIONS(1016), - [aux_sym__val_number_token6] = ACTIONS(1016), - [anon_sym_DQUOTE] = ACTIONS(1016), - [sym__str_single_quotes] = ACTIONS(1016), - [sym__str_back_ticks] = ACTIONS(1016), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1016), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1016), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1016), - [sym__entry_separator] = ACTIONS(1012), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1012), - }, - [638] = { - [sym_comment] = STATE(638), - [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), - [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1875), - [anon_sym_DOLLAR] = ACTIONS(1875), - [anon_sym_error] = ACTIONS(1875), - [anon_sym_DASH2] = ACTIONS(1875), - [anon_sym_break] = ACTIONS(1875), - [anon_sym_continue] = ACTIONS(1875), - [anon_sym_for] = ACTIONS(1875), - [anon_sym_in2] = 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_as] = ACTIONS(1875), - [anon_sym_PLUS2] = ACTIONS(1875), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1875), - [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), - [aux_sym__val_number_token4] = ACTIONS(1875), - [aux_sym__val_number_token5] = ACTIONS(1875), - [aux_sym__val_number_token6] = ACTIONS(1875), - [anon_sym_DQUOTE] = ACTIONS(1875), - [sym__str_single_quotes] = ACTIONS(1875), - [sym__str_back_ticks] = ACTIONS(1875), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1875), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1875), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1875), - [sym__entry_separator] = ACTIONS(1877), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1877), - }, - [639] = { - [sym_comment] = STATE(639), - [aux_sym__multiple_types_repeat1] = STATE(662), - [anon_sym_export] = ACTIONS(2434), - [anon_sym_alias] = ACTIONS(2434), - [anon_sym_let] = ACTIONS(2434), - [anon_sym_let_DASHenv] = ACTIONS(2434), - [anon_sym_mut] = ACTIONS(2434), - [anon_sym_const] = ACTIONS(2434), - [aux_sym_cmd_identifier_token1] = ACTIONS(2434), - [aux_sym_cmd_identifier_token2] = ACTIONS(2434), - [aux_sym_cmd_identifier_token3] = ACTIONS(2434), - [aux_sym_cmd_identifier_token4] = ACTIONS(2434), - [aux_sym_cmd_identifier_token5] = ACTIONS(2434), - [aux_sym_cmd_identifier_token6] = ACTIONS(2434), - [aux_sym_cmd_identifier_token7] = ACTIONS(2434), - [aux_sym_cmd_identifier_token8] = ACTIONS(2434), - [aux_sym_cmd_identifier_token9] = ACTIONS(2434), - [aux_sym_cmd_identifier_token10] = ACTIONS(2434), - [aux_sym_cmd_identifier_token11] = ACTIONS(2434), - [aux_sym_cmd_identifier_token12] = ACTIONS(2434), - [aux_sym_cmd_identifier_token13] = ACTIONS(2434), - [aux_sym_cmd_identifier_token14] = ACTIONS(2434), - [aux_sym_cmd_identifier_token15] = ACTIONS(2434), - [aux_sym_cmd_identifier_token16] = ACTIONS(2434), - [aux_sym_cmd_identifier_token17] = ACTIONS(2434), - [aux_sym_cmd_identifier_token18] = ACTIONS(2434), - [aux_sym_cmd_identifier_token19] = ACTIONS(2434), - [aux_sym_cmd_identifier_token20] = ACTIONS(2434), - [aux_sym_cmd_identifier_token21] = ACTIONS(2434), - [aux_sym_cmd_identifier_token22] = ACTIONS(2434), - [aux_sym_cmd_identifier_token23] = ACTIONS(2434), - [aux_sym_cmd_identifier_token24] = ACTIONS(2434), - [aux_sym_cmd_identifier_token25] = ACTIONS(2434), - [aux_sym_cmd_identifier_token26] = ACTIONS(2434), - [aux_sym_cmd_identifier_token27] = ACTIONS(2434), - [aux_sym_cmd_identifier_token28] = ACTIONS(2434), - [aux_sym_cmd_identifier_token29] = ACTIONS(2434), - [aux_sym_cmd_identifier_token30] = ACTIONS(2434), - [aux_sym_cmd_identifier_token31] = ACTIONS(2434), - [aux_sym_cmd_identifier_token32] = ACTIONS(2434), - [aux_sym_cmd_identifier_token33] = ACTIONS(2434), - [aux_sym_cmd_identifier_token34] = ACTIONS(2434), - [aux_sym_cmd_identifier_token35] = ACTIONS(2434), - [aux_sym_cmd_identifier_token36] = ACTIONS(2434), - [aux_sym_cmd_identifier_token37] = ACTIONS(2434), - [aux_sym_cmd_identifier_token38] = ACTIONS(2434), - [aux_sym_cmd_identifier_token39] = ACTIONS(2434), - [aux_sym_cmd_identifier_token40] = ACTIONS(2434), - [anon_sym_def] = ACTIONS(2434), - [anon_sym_export_DASHenv] = ACTIONS(2434), - [anon_sym_extern] = ACTIONS(2434), - [anon_sym_module] = ACTIONS(2434), - [anon_sym_use] = ACTIONS(2434), - [anon_sym_LPAREN] = ACTIONS(2434), - [anon_sym_DOLLAR] = ACTIONS(2434), - [anon_sym_error] = ACTIONS(2434), - [anon_sym_DASH2] = ACTIONS(2434), - [anon_sym_break] = ACTIONS(2434), - [anon_sym_continue] = ACTIONS(2434), - [anon_sym_for] = ACTIONS(2434), - [anon_sym_in2] = ACTIONS(2434), - [anon_sym_loop] = ACTIONS(2434), - [anon_sym_make] = ACTIONS(2434), - [anon_sym_while] = ACTIONS(2434), - [anon_sym_do] = ACTIONS(2434), - [anon_sym_if] = ACTIONS(2434), - [anon_sym_else] = ACTIONS(2434), - [anon_sym_match] = ACTIONS(2434), - [anon_sym_RBRACE] = ACTIONS(2436), - [anon_sym_try] = ACTIONS(2434), - [anon_sym_catch] = ACTIONS(2434), - [anon_sym_return] = ACTIONS(2434), - [anon_sym_source] = ACTIONS(2434), - [anon_sym_source_DASHenv] = ACTIONS(2434), - [anon_sym_register] = ACTIONS(2434), - [anon_sym_hide] = ACTIONS(2434), - [anon_sym_hide_DASHenv] = ACTIONS(2434), - [anon_sym_overlay] = ACTIONS(2434), - [anon_sym_as] = ACTIONS(2434), - [anon_sym_PLUS2] = ACTIONS(2434), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2434), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2434), - [aux_sym__val_number_decimal_token1] = ACTIONS(2434), - [aux_sym__val_number_decimal_token2] = ACTIONS(2434), - [aux_sym__val_number_decimal_token3] = ACTIONS(2434), - [aux_sym__val_number_decimal_token4] = ACTIONS(2434), - [aux_sym__val_number_token1] = ACTIONS(2434), - [aux_sym__val_number_token2] = ACTIONS(2434), - [aux_sym__val_number_token3] = ACTIONS(2434), - [aux_sym__val_number_token4] = ACTIONS(2434), - [aux_sym__val_number_token5] = ACTIONS(2434), - [aux_sym__val_number_token6] = ACTIONS(2434), - [anon_sym_DQUOTE] = ACTIONS(2434), - [sym__str_single_quotes] = ACTIONS(2434), - [sym__str_back_ticks] = ACTIONS(2434), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2434), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2434), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2434), - [sym__entry_separator] = ACTIONS(2318), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2438), - }, - [640] = { - [sym_comment] = STATE(640), - [aux_sym__multiple_types_repeat1] = STATE(662), - [anon_sym_export] = ACTIONS(2434), - [anon_sym_alias] = ACTIONS(2434), - [anon_sym_let] = ACTIONS(2434), - [anon_sym_let_DASHenv] = ACTIONS(2434), - [anon_sym_mut] = ACTIONS(2434), - [anon_sym_const] = ACTIONS(2434), - [aux_sym_cmd_identifier_token1] = ACTIONS(2434), - [aux_sym_cmd_identifier_token2] = ACTIONS(2434), - [aux_sym_cmd_identifier_token3] = ACTIONS(2434), - [aux_sym_cmd_identifier_token4] = ACTIONS(2434), - [aux_sym_cmd_identifier_token5] = ACTIONS(2434), - [aux_sym_cmd_identifier_token6] = ACTIONS(2434), - [aux_sym_cmd_identifier_token7] = ACTIONS(2434), - [aux_sym_cmd_identifier_token8] = ACTIONS(2434), - [aux_sym_cmd_identifier_token9] = ACTIONS(2434), - [aux_sym_cmd_identifier_token10] = ACTIONS(2434), - [aux_sym_cmd_identifier_token11] = ACTIONS(2434), - [aux_sym_cmd_identifier_token12] = ACTIONS(2434), - [aux_sym_cmd_identifier_token13] = ACTIONS(2434), - [aux_sym_cmd_identifier_token14] = ACTIONS(2434), - [aux_sym_cmd_identifier_token15] = ACTIONS(2434), - [aux_sym_cmd_identifier_token16] = ACTIONS(2434), - [aux_sym_cmd_identifier_token17] = ACTIONS(2434), - [aux_sym_cmd_identifier_token18] = ACTIONS(2434), - [aux_sym_cmd_identifier_token19] = ACTIONS(2434), - [aux_sym_cmd_identifier_token20] = ACTIONS(2434), - [aux_sym_cmd_identifier_token21] = ACTIONS(2434), - [aux_sym_cmd_identifier_token22] = ACTIONS(2434), - [aux_sym_cmd_identifier_token23] = ACTIONS(2434), - [aux_sym_cmd_identifier_token24] = ACTIONS(2434), - [aux_sym_cmd_identifier_token25] = ACTIONS(2434), - [aux_sym_cmd_identifier_token26] = ACTIONS(2434), - [aux_sym_cmd_identifier_token27] = ACTIONS(2434), - [aux_sym_cmd_identifier_token28] = ACTIONS(2434), - [aux_sym_cmd_identifier_token29] = ACTIONS(2434), - [aux_sym_cmd_identifier_token30] = ACTIONS(2434), - [aux_sym_cmd_identifier_token31] = ACTIONS(2434), - [aux_sym_cmd_identifier_token32] = ACTIONS(2434), - [aux_sym_cmd_identifier_token33] = ACTIONS(2434), - [aux_sym_cmd_identifier_token34] = ACTIONS(2434), - [aux_sym_cmd_identifier_token35] = ACTIONS(2434), - [aux_sym_cmd_identifier_token36] = ACTIONS(2434), - [aux_sym_cmd_identifier_token37] = ACTIONS(2434), - [aux_sym_cmd_identifier_token38] = ACTIONS(2434), - [aux_sym_cmd_identifier_token39] = ACTIONS(2434), - [aux_sym_cmd_identifier_token40] = ACTIONS(2434), - [anon_sym_def] = ACTIONS(2434), - [anon_sym_export_DASHenv] = ACTIONS(2434), - [anon_sym_extern] = ACTIONS(2434), - [anon_sym_module] = ACTIONS(2434), - [anon_sym_use] = ACTIONS(2434), - [anon_sym_LPAREN] = ACTIONS(2434), - [anon_sym_DOLLAR] = ACTIONS(2434), - [anon_sym_error] = ACTIONS(2434), - [anon_sym_DASH2] = ACTIONS(2434), - [anon_sym_break] = ACTIONS(2434), - [anon_sym_continue] = ACTIONS(2434), - [anon_sym_for] = ACTIONS(2434), - [anon_sym_in2] = ACTIONS(2434), - [anon_sym_loop] = ACTIONS(2434), - [anon_sym_make] = ACTIONS(2434), - [anon_sym_while] = ACTIONS(2434), - [anon_sym_do] = ACTIONS(2434), - [anon_sym_if] = ACTIONS(2434), - [anon_sym_else] = ACTIONS(2434), - [anon_sym_match] = ACTIONS(2434), - [anon_sym_RBRACE] = ACTIONS(2440), - [anon_sym_try] = ACTIONS(2434), - [anon_sym_catch] = ACTIONS(2434), - [anon_sym_return] = ACTIONS(2434), - [anon_sym_source] = ACTIONS(2434), - [anon_sym_source_DASHenv] = ACTIONS(2434), - [anon_sym_register] = ACTIONS(2434), - [anon_sym_hide] = ACTIONS(2434), - [anon_sym_hide_DASHenv] = ACTIONS(2434), - [anon_sym_overlay] = ACTIONS(2434), - [anon_sym_as] = ACTIONS(2434), - [anon_sym_PLUS2] = ACTIONS(2434), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2434), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2434), - [aux_sym__val_number_decimal_token1] = ACTIONS(2434), - [aux_sym__val_number_decimal_token2] = ACTIONS(2434), - [aux_sym__val_number_decimal_token3] = ACTIONS(2434), - [aux_sym__val_number_decimal_token4] = ACTIONS(2434), - [aux_sym__val_number_token1] = ACTIONS(2434), - [aux_sym__val_number_token2] = ACTIONS(2434), - [aux_sym__val_number_token3] = ACTIONS(2434), - [aux_sym__val_number_token4] = ACTIONS(2434), - [aux_sym__val_number_token5] = ACTIONS(2434), - [aux_sym__val_number_token6] = ACTIONS(2434), - [anon_sym_DQUOTE] = ACTIONS(2434), - [sym__str_single_quotes] = ACTIONS(2434), - [sym__str_back_ticks] = ACTIONS(2434), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2434), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2434), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2434), - [sym__entry_separator] = ACTIONS(2318), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2438), - }, - [641] = { - [sym_comment] = STATE(641), - [anon_sym_export] = ACTIONS(2442), - [anon_sym_alias] = ACTIONS(2442), - [anon_sym_let] = ACTIONS(2442), - [anon_sym_let_DASHenv] = ACTIONS(2442), - [anon_sym_mut] = ACTIONS(2442), - [anon_sym_const] = ACTIONS(2442), - [aux_sym_cmd_identifier_token1] = ACTIONS(2442), - [aux_sym_cmd_identifier_token2] = ACTIONS(2442), - [aux_sym_cmd_identifier_token3] = ACTIONS(2442), - [aux_sym_cmd_identifier_token4] = ACTIONS(2442), - [aux_sym_cmd_identifier_token5] = ACTIONS(2442), - [aux_sym_cmd_identifier_token6] = ACTIONS(2442), - [aux_sym_cmd_identifier_token7] = ACTIONS(2442), - [aux_sym_cmd_identifier_token8] = ACTIONS(2442), - [aux_sym_cmd_identifier_token9] = ACTIONS(2442), - [aux_sym_cmd_identifier_token10] = ACTIONS(2442), - [aux_sym_cmd_identifier_token11] = ACTIONS(2442), - [aux_sym_cmd_identifier_token12] = ACTIONS(2442), - [aux_sym_cmd_identifier_token13] = ACTIONS(2442), - [aux_sym_cmd_identifier_token14] = ACTIONS(2442), - [aux_sym_cmd_identifier_token15] = ACTIONS(2442), - [aux_sym_cmd_identifier_token16] = ACTIONS(2442), - [aux_sym_cmd_identifier_token17] = ACTIONS(2442), - [aux_sym_cmd_identifier_token18] = ACTIONS(2442), - [aux_sym_cmd_identifier_token19] = ACTIONS(2442), - [aux_sym_cmd_identifier_token20] = ACTIONS(2442), - [aux_sym_cmd_identifier_token21] = ACTIONS(2442), - [aux_sym_cmd_identifier_token22] = ACTIONS(2442), - [aux_sym_cmd_identifier_token23] = ACTIONS(2442), - [aux_sym_cmd_identifier_token24] = ACTIONS(2442), - [aux_sym_cmd_identifier_token25] = ACTIONS(2442), - [aux_sym_cmd_identifier_token26] = ACTIONS(2442), - [aux_sym_cmd_identifier_token27] = ACTIONS(2442), - [aux_sym_cmd_identifier_token28] = ACTIONS(2442), - [aux_sym_cmd_identifier_token29] = ACTIONS(2442), - [aux_sym_cmd_identifier_token30] = ACTIONS(2442), - [aux_sym_cmd_identifier_token31] = ACTIONS(2442), - [aux_sym_cmd_identifier_token32] = ACTIONS(2442), - [aux_sym_cmd_identifier_token33] = ACTIONS(2442), - [aux_sym_cmd_identifier_token34] = ACTIONS(2442), - [aux_sym_cmd_identifier_token35] = ACTIONS(2442), - [aux_sym_cmd_identifier_token36] = ACTIONS(2442), - [aux_sym_cmd_identifier_token37] = ACTIONS(2442), - [aux_sym_cmd_identifier_token38] = ACTIONS(2442), - [aux_sym_cmd_identifier_token39] = ACTIONS(2442), - [aux_sym_cmd_identifier_token40] = ACTIONS(2442), - [anon_sym_def] = ACTIONS(2442), - [anon_sym_export_DASHenv] = ACTIONS(2442), - [anon_sym_extern] = ACTIONS(2442), - [anon_sym_module] = ACTIONS(2442), - [anon_sym_use] = ACTIONS(2442), - [anon_sym_LPAREN] = ACTIONS(2442), - [anon_sym_COMMA] = ACTIONS(2442), - [anon_sym_DOLLAR] = ACTIONS(2442), - [anon_sym_error] = ACTIONS(2442), - [anon_sym_DASH2] = ACTIONS(2442), - [anon_sym_break] = ACTIONS(2442), - [anon_sym_continue] = ACTIONS(2442), - [anon_sym_for] = ACTIONS(2442), - [anon_sym_in2] = ACTIONS(2442), - [anon_sym_loop] = ACTIONS(2442), - [anon_sym_make] = ACTIONS(2442), - [anon_sym_while] = ACTIONS(2442), - [anon_sym_do] = ACTIONS(2442), - [anon_sym_if] = ACTIONS(2442), - [anon_sym_else] = ACTIONS(2442), - [anon_sym_match] = ACTIONS(2442), - [anon_sym_RBRACE] = ACTIONS(2442), - [anon_sym_try] = ACTIONS(2442), - [anon_sym_catch] = ACTIONS(2442), - [anon_sym_return] = ACTIONS(2442), - [anon_sym_source] = ACTIONS(2442), - [anon_sym_source_DASHenv] = ACTIONS(2442), - [anon_sym_register] = ACTIONS(2442), - [anon_sym_hide] = ACTIONS(2442), - [anon_sym_hide_DASHenv] = ACTIONS(2442), - [anon_sym_overlay] = ACTIONS(2442), - [anon_sym_as] = ACTIONS(2442), - [anon_sym_PLUS2] = ACTIONS(2442), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2442), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2442), - [aux_sym__val_number_decimal_token1] = ACTIONS(2442), - [aux_sym__val_number_decimal_token2] = ACTIONS(2442), - [aux_sym__val_number_decimal_token3] = ACTIONS(2442), - [aux_sym__val_number_decimal_token4] = ACTIONS(2442), - [aux_sym__val_number_token1] = ACTIONS(2442), - [aux_sym__val_number_token2] = ACTIONS(2442), - [aux_sym__val_number_token3] = ACTIONS(2442), - [aux_sym__val_number_token4] = ACTIONS(2442), - [aux_sym__val_number_token5] = ACTIONS(2442), - [aux_sym__val_number_token6] = ACTIONS(2442), - [anon_sym_DQUOTE] = ACTIONS(2442), - [sym__str_single_quotes] = ACTIONS(2442), - [sym__str_back_ticks] = ACTIONS(2442), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2442), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2442), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2442), - [sym__entry_separator] = ACTIONS(2444), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2444), - }, - [642] = { - [sym_comment] = STATE(642), - [anon_sym_export] = ACTIONS(1993), - [anon_sym_alias] = ACTIONS(1993), - [anon_sym_let] = ACTIONS(1993), - [anon_sym_let_DASHenv] = ACTIONS(1993), - [anon_sym_mut] = ACTIONS(1993), - [anon_sym_const] = ACTIONS(1993), - [aux_sym_cmd_identifier_token1] = ACTIONS(1993), - [aux_sym_cmd_identifier_token2] = ACTIONS(1993), - [aux_sym_cmd_identifier_token3] = ACTIONS(1993), - [aux_sym_cmd_identifier_token4] = ACTIONS(1993), - [aux_sym_cmd_identifier_token5] = ACTIONS(1993), - [aux_sym_cmd_identifier_token6] = ACTIONS(1993), - [aux_sym_cmd_identifier_token7] = ACTIONS(1993), - [aux_sym_cmd_identifier_token8] = ACTIONS(1993), - [aux_sym_cmd_identifier_token9] = ACTIONS(1993), - [aux_sym_cmd_identifier_token10] = ACTIONS(1993), - [aux_sym_cmd_identifier_token11] = ACTIONS(1993), - [aux_sym_cmd_identifier_token12] = ACTIONS(1993), - [aux_sym_cmd_identifier_token13] = ACTIONS(1993), - [aux_sym_cmd_identifier_token14] = ACTIONS(1993), - [aux_sym_cmd_identifier_token15] = ACTIONS(1993), - [aux_sym_cmd_identifier_token16] = ACTIONS(1993), - [aux_sym_cmd_identifier_token17] = ACTIONS(1993), - [aux_sym_cmd_identifier_token18] = ACTIONS(1993), - [aux_sym_cmd_identifier_token19] = ACTIONS(1993), - [aux_sym_cmd_identifier_token20] = ACTIONS(1993), - [aux_sym_cmd_identifier_token21] = ACTIONS(1993), - [aux_sym_cmd_identifier_token22] = ACTIONS(1993), - [aux_sym_cmd_identifier_token23] = ACTIONS(1993), - [aux_sym_cmd_identifier_token24] = ACTIONS(1993), - [aux_sym_cmd_identifier_token25] = ACTIONS(1993), - [aux_sym_cmd_identifier_token26] = ACTIONS(1993), - [aux_sym_cmd_identifier_token27] = ACTIONS(1993), - [aux_sym_cmd_identifier_token28] = ACTIONS(1993), - [aux_sym_cmd_identifier_token29] = ACTIONS(1993), - [aux_sym_cmd_identifier_token30] = ACTIONS(1993), - [aux_sym_cmd_identifier_token31] = ACTIONS(1993), - [aux_sym_cmd_identifier_token32] = ACTIONS(1993), - [aux_sym_cmd_identifier_token33] = ACTIONS(1993), - [aux_sym_cmd_identifier_token34] = ACTIONS(1993), - [aux_sym_cmd_identifier_token35] = ACTIONS(1993), - [aux_sym_cmd_identifier_token36] = ACTIONS(1993), - [aux_sym_cmd_identifier_token37] = ACTIONS(1993), - [aux_sym_cmd_identifier_token38] = ACTIONS(1993), - [aux_sym_cmd_identifier_token39] = ACTIONS(1993), - [aux_sym_cmd_identifier_token40] = ACTIONS(1993), - [anon_sym_def] = ACTIONS(1993), - [anon_sym_export_DASHenv] = ACTIONS(1993), - [anon_sym_extern] = ACTIONS(1993), - [anon_sym_module] = ACTIONS(1993), - [anon_sym_use] = ACTIONS(1993), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_COMMA] = ACTIONS(1993), - [anon_sym_DOLLAR] = ACTIONS(1993), - [anon_sym_error] = ACTIONS(1993), - [anon_sym_DASH2] = ACTIONS(1993), - [anon_sym_break] = ACTIONS(1993), - [anon_sym_continue] = ACTIONS(1993), - [anon_sym_for] = ACTIONS(1993), - [anon_sym_in2] = ACTIONS(1993), - [anon_sym_loop] = ACTIONS(1993), - [anon_sym_make] = ACTIONS(1993), - [anon_sym_while] = ACTIONS(1993), - [anon_sym_do] = ACTIONS(1993), - [anon_sym_if] = ACTIONS(1993), - [anon_sym_else] = ACTIONS(1993), - [anon_sym_match] = ACTIONS(1993), - [anon_sym_RBRACE] = ACTIONS(1993), - [anon_sym_try] = ACTIONS(1993), - [anon_sym_catch] = ACTIONS(1993), - [anon_sym_return] = ACTIONS(1993), - [anon_sym_source] = ACTIONS(1993), - [anon_sym_source_DASHenv] = ACTIONS(1993), - [anon_sym_register] = ACTIONS(1993), - [anon_sym_hide] = ACTIONS(1993), - [anon_sym_hide_DASHenv] = ACTIONS(1993), - [anon_sym_overlay] = ACTIONS(1993), - [anon_sym_as] = ACTIONS(1993), - [anon_sym_PLUS2] = ACTIONS(1993), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1993), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1993), - [aux_sym__val_number_decimal_token1] = ACTIONS(1993), - [aux_sym__val_number_decimal_token2] = ACTIONS(1993), - [aux_sym__val_number_decimal_token3] = ACTIONS(1993), - [aux_sym__val_number_decimal_token4] = ACTIONS(1993), - [aux_sym__val_number_token1] = ACTIONS(1993), - [aux_sym__val_number_token2] = ACTIONS(1993), - [aux_sym__val_number_token3] = ACTIONS(1993), - [aux_sym__val_number_token4] = ACTIONS(1993), - [aux_sym__val_number_token5] = ACTIONS(1993), - [aux_sym__val_number_token6] = ACTIONS(1993), - [anon_sym_DQUOTE] = ACTIONS(1993), - [sym__str_single_quotes] = ACTIONS(1993), - [sym__str_back_ticks] = ACTIONS(1993), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1993), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1993), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1993), - [sym__entry_separator] = ACTIONS(1995), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1995), - }, - [643] = { - [sym_comment] = STATE(643), - [anon_sym_export] = ACTIONS(1997), - [anon_sym_alias] = ACTIONS(1997), - [anon_sym_let] = ACTIONS(1997), - [anon_sym_let_DASHenv] = ACTIONS(1997), - [anon_sym_mut] = ACTIONS(1997), - [anon_sym_const] = ACTIONS(1997), - [aux_sym_cmd_identifier_token1] = ACTIONS(1997), - [aux_sym_cmd_identifier_token2] = ACTIONS(1997), - [aux_sym_cmd_identifier_token3] = ACTIONS(1997), - [aux_sym_cmd_identifier_token4] = ACTIONS(1997), - [aux_sym_cmd_identifier_token5] = ACTIONS(1997), - [aux_sym_cmd_identifier_token6] = ACTIONS(1997), - [aux_sym_cmd_identifier_token7] = ACTIONS(1997), - [aux_sym_cmd_identifier_token8] = ACTIONS(1997), - [aux_sym_cmd_identifier_token9] = ACTIONS(1997), - [aux_sym_cmd_identifier_token10] = ACTIONS(1997), - [aux_sym_cmd_identifier_token11] = ACTIONS(1997), - [aux_sym_cmd_identifier_token12] = ACTIONS(1997), - [aux_sym_cmd_identifier_token13] = ACTIONS(1997), - [aux_sym_cmd_identifier_token14] = ACTIONS(1997), - [aux_sym_cmd_identifier_token15] = ACTIONS(1997), - [aux_sym_cmd_identifier_token16] = ACTIONS(1997), - [aux_sym_cmd_identifier_token17] = ACTIONS(1997), - [aux_sym_cmd_identifier_token18] = ACTIONS(1997), - [aux_sym_cmd_identifier_token19] = ACTIONS(1997), - [aux_sym_cmd_identifier_token20] = ACTIONS(1997), - [aux_sym_cmd_identifier_token21] = ACTIONS(1997), - [aux_sym_cmd_identifier_token22] = ACTIONS(1997), - [aux_sym_cmd_identifier_token23] = ACTIONS(1997), - [aux_sym_cmd_identifier_token24] = ACTIONS(1997), - [aux_sym_cmd_identifier_token25] = ACTIONS(1997), - [aux_sym_cmd_identifier_token26] = ACTIONS(1997), - [aux_sym_cmd_identifier_token27] = ACTIONS(1997), - [aux_sym_cmd_identifier_token28] = ACTIONS(1997), - [aux_sym_cmd_identifier_token29] = ACTIONS(1997), - [aux_sym_cmd_identifier_token30] = ACTIONS(1997), - [aux_sym_cmd_identifier_token31] = ACTIONS(1997), - [aux_sym_cmd_identifier_token32] = ACTIONS(1997), - [aux_sym_cmd_identifier_token33] = ACTIONS(1997), - [aux_sym_cmd_identifier_token34] = ACTIONS(1997), - [aux_sym_cmd_identifier_token35] = ACTIONS(1997), - [aux_sym_cmd_identifier_token36] = ACTIONS(1997), - [aux_sym_cmd_identifier_token37] = ACTIONS(1997), - [aux_sym_cmd_identifier_token38] = ACTIONS(1997), - [aux_sym_cmd_identifier_token39] = ACTIONS(1997), - [aux_sym_cmd_identifier_token40] = ACTIONS(1997), - [anon_sym_def] = ACTIONS(1997), - [anon_sym_export_DASHenv] = ACTIONS(1997), - [anon_sym_extern] = ACTIONS(1997), - [anon_sym_module] = ACTIONS(1997), - [anon_sym_use] = ACTIONS(1997), - [anon_sym_LPAREN] = ACTIONS(1997), - [anon_sym_COMMA] = ACTIONS(1997), - [anon_sym_DOLLAR] = ACTIONS(1997), - [anon_sym_error] = ACTIONS(1997), - [anon_sym_DASH2] = ACTIONS(1997), - [anon_sym_break] = ACTIONS(1997), - [anon_sym_continue] = ACTIONS(1997), - [anon_sym_for] = ACTIONS(1997), - [anon_sym_in2] = ACTIONS(1997), - [anon_sym_loop] = ACTIONS(1997), - [anon_sym_make] = ACTIONS(1997), - [anon_sym_while] = ACTIONS(1997), - [anon_sym_do] = ACTIONS(1997), - [anon_sym_if] = ACTIONS(1997), - [anon_sym_else] = ACTIONS(1997), - [anon_sym_match] = ACTIONS(1997), - [anon_sym_RBRACE] = ACTIONS(1997), - [anon_sym_try] = ACTIONS(1997), - [anon_sym_catch] = ACTIONS(1997), - [anon_sym_return] = ACTIONS(1997), - [anon_sym_source] = ACTIONS(1997), - [anon_sym_source_DASHenv] = ACTIONS(1997), - [anon_sym_register] = ACTIONS(1997), - [anon_sym_hide] = ACTIONS(1997), - [anon_sym_hide_DASHenv] = ACTIONS(1997), - [anon_sym_overlay] = ACTIONS(1997), - [anon_sym_as] = ACTIONS(1997), - [anon_sym_PLUS2] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1997), - [aux_sym__val_number_decimal_token1] = ACTIONS(1997), - [aux_sym__val_number_decimal_token2] = ACTIONS(1997), - [aux_sym__val_number_decimal_token3] = ACTIONS(1997), - [aux_sym__val_number_decimal_token4] = ACTIONS(1997), - [aux_sym__val_number_token1] = ACTIONS(1997), - [aux_sym__val_number_token2] = ACTIONS(1997), - [aux_sym__val_number_token3] = ACTIONS(1997), - [aux_sym__val_number_token4] = ACTIONS(1997), - [aux_sym__val_number_token5] = ACTIONS(1997), - [aux_sym__val_number_token6] = ACTIONS(1997), - [anon_sym_DQUOTE] = ACTIONS(1997), - [sym__str_single_quotes] = ACTIONS(1997), - [sym__str_back_ticks] = ACTIONS(1997), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1997), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1997), - [sym__entry_separator] = ACTIONS(1999), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1999), - }, - [644] = { - [sym_comment] = STATE(644), - [anon_sym_export] = ACTIONS(1941), - [anon_sym_alias] = ACTIONS(1941), - [anon_sym_let] = ACTIONS(1941), - [anon_sym_let_DASHenv] = ACTIONS(1941), - [anon_sym_mut] = ACTIONS(1941), - [anon_sym_const] = ACTIONS(1941), - [aux_sym_cmd_identifier_token1] = ACTIONS(1941), - [aux_sym_cmd_identifier_token2] = ACTIONS(1941), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [aux_sym_cmd_identifier_token6] = ACTIONS(1941), - [aux_sym_cmd_identifier_token7] = ACTIONS(1941), - [aux_sym_cmd_identifier_token8] = ACTIONS(1941), - [aux_sym_cmd_identifier_token9] = ACTIONS(1941), - [aux_sym_cmd_identifier_token10] = ACTIONS(1941), - [aux_sym_cmd_identifier_token11] = ACTIONS(1941), - [aux_sym_cmd_identifier_token12] = ACTIONS(1941), - [aux_sym_cmd_identifier_token13] = ACTIONS(1941), - [aux_sym_cmd_identifier_token14] = ACTIONS(1941), - [aux_sym_cmd_identifier_token15] = ACTIONS(1941), - [aux_sym_cmd_identifier_token16] = ACTIONS(1941), - [aux_sym_cmd_identifier_token17] = ACTIONS(1941), - [aux_sym_cmd_identifier_token18] = ACTIONS(1941), - [aux_sym_cmd_identifier_token19] = ACTIONS(1941), - [aux_sym_cmd_identifier_token20] = ACTIONS(1941), - [aux_sym_cmd_identifier_token21] = ACTIONS(1941), - [aux_sym_cmd_identifier_token22] = ACTIONS(1941), - [aux_sym_cmd_identifier_token23] = ACTIONS(1941), - [aux_sym_cmd_identifier_token24] = ACTIONS(1941), - [aux_sym_cmd_identifier_token25] = ACTIONS(1941), - [aux_sym_cmd_identifier_token26] = ACTIONS(1941), - [aux_sym_cmd_identifier_token27] = ACTIONS(1941), - [aux_sym_cmd_identifier_token28] = ACTIONS(1941), - [aux_sym_cmd_identifier_token29] = ACTIONS(1941), - [aux_sym_cmd_identifier_token30] = ACTIONS(1941), - [aux_sym_cmd_identifier_token31] = ACTIONS(1941), - [aux_sym_cmd_identifier_token32] = ACTIONS(1941), - [aux_sym_cmd_identifier_token33] = ACTIONS(1941), - [aux_sym_cmd_identifier_token34] = ACTIONS(1941), - [aux_sym_cmd_identifier_token35] = ACTIONS(1941), - [aux_sym_cmd_identifier_token36] = ACTIONS(1941), - [aux_sym_cmd_identifier_token37] = ACTIONS(1941), - [aux_sym_cmd_identifier_token38] = ACTIONS(1941), - [aux_sym_cmd_identifier_token39] = ACTIONS(1941), - [aux_sym_cmd_identifier_token40] = ACTIONS(1941), - [anon_sym_def] = ACTIONS(1941), - [anon_sym_export_DASHenv] = ACTIONS(1941), - [anon_sym_extern] = ACTIONS(1941), - [anon_sym_module] = ACTIONS(1941), - [anon_sym_use] = ACTIONS(1941), - [anon_sym_LPAREN] = ACTIONS(1941), - [anon_sym_COMMA] = ACTIONS(1941), - [anon_sym_DOLLAR] = ACTIONS(1941), - [anon_sym_error] = ACTIONS(1941), - [anon_sym_DASH2] = ACTIONS(1941), - [anon_sym_break] = ACTIONS(1941), - [anon_sym_continue] = ACTIONS(1941), - [anon_sym_for] = ACTIONS(1941), - [anon_sym_in2] = ACTIONS(1941), - [anon_sym_loop] = ACTIONS(1941), - [anon_sym_make] = ACTIONS(1941), - [anon_sym_while] = ACTIONS(1941), - [anon_sym_do] = ACTIONS(1941), - [anon_sym_if] = ACTIONS(1941), - [anon_sym_else] = ACTIONS(1941), - [anon_sym_match] = ACTIONS(1941), - [anon_sym_RBRACE] = ACTIONS(1941), - [anon_sym_try] = ACTIONS(1941), - [anon_sym_catch] = ACTIONS(1941), - [anon_sym_return] = ACTIONS(1941), - [anon_sym_source] = ACTIONS(1941), - [anon_sym_source_DASHenv] = ACTIONS(1941), - [anon_sym_register] = ACTIONS(1941), - [anon_sym_hide] = ACTIONS(1941), - [anon_sym_hide_DASHenv] = ACTIONS(1941), - [anon_sym_overlay] = ACTIONS(1941), - [anon_sym_as] = ACTIONS(1941), - [anon_sym_PLUS2] = ACTIONS(1941), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1941), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1941), - [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), - [aux_sym__val_number_token4] = ACTIONS(1941), - [aux_sym__val_number_token5] = ACTIONS(1941), - [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(1941), - [sym__entry_separator] = ACTIONS(1943), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1943), - }, - [645] = { - [sym_comment] = STATE(645), - [anon_sym_export] = ACTIONS(2446), - [anon_sym_alias] = ACTIONS(2446), - [anon_sym_let] = ACTIONS(2446), - [anon_sym_let_DASHenv] = ACTIONS(2446), - [anon_sym_mut] = ACTIONS(2446), - [anon_sym_const] = ACTIONS(2446), - [aux_sym_cmd_identifier_token1] = ACTIONS(2446), - [aux_sym_cmd_identifier_token2] = ACTIONS(2446), - [aux_sym_cmd_identifier_token3] = ACTIONS(2446), - [aux_sym_cmd_identifier_token4] = ACTIONS(2446), - [aux_sym_cmd_identifier_token5] = ACTIONS(2446), - [aux_sym_cmd_identifier_token6] = ACTIONS(2446), - [aux_sym_cmd_identifier_token7] = ACTIONS(2446), - [aux_sym_cmd_identifier_token8] = ACTIONS(2446), - [aux_sym_cmd_identifier_token9] = ACTIONS(2446), - [aux_sym_cmd_identifier_token10] = ACTIONS(2446), - [aux_sym_cmd_identifier_token11] = ACTIONS(2446), - [aux_sym_cmd_identifier_token12] = ACTIONS(2446), - [aux_sym_cmd_identifier_token13] = ACTIONS(2446), - [aux_sym_cmd_identifier_token14] = ACTIONS(2446), - [aux_sym_cmd_identifier_token15] = ACTIONS(2446), - [aux_sym_cmd_identifier_token16] = ACTIONS(2446), - [aux_sym_cmd_identifier_token17] = ACTIONS(2446), - [aux_sym_cmd_identifier_token18] = ACTIONS(2446), - [aux_sym_cmd_identifier_token19] = ACTIONS(2446), - [aux_sym_cmd_identifier_token20] = ACTIONS(2446), - [aux_sym_cmd_identifier_token21] = ACTIONS(2446), - [aux_sym_cmd_identifier_token22] = ACTIONS(2446), - [aux_sym_cmd_identifier_token23] = ACTIONS(2446), - [aux_sym_cmd_identifier_token24] = ACTIONS(2446), - [aux_sym_cmd_identifier_token25] = ACTIONS(2446), - [aux_sym_cmd_identifier_token26] = ACTIONS(2446), - [aux_sym_cmd_identifier_token27] = ACTIONS(2446), - [aux_sym_cmd_identifier_token28] = ACTIONS(2446), - [aux_sym_cmd_identifier_token29] = ACTIONS(2446), - [aux_sym_cmd_identifier_token30] = ACTIONS(2446), - [aux_sym_cmd_identifier_token31] = ACTIONS(2446), - [aux_sym_cmd_identifier_token32] = ACTIONS(2446), - [aux_sym_cmd_identifier_token33] = ACTIONS(2446), - [aux_sym_cmd_identifier_token34] = ACTIONS(2446), - [aux_sym_cmd_identifier_token35] = ACTIONS(2446), - [aux_sym_cmd_identifier_token36] = ACTIONS(2446), - [aux_sym_cmd_identifier_token37] = ACTIONS(2446), - [aux_sym_cmd_identifier_token38] = ACTIONS(2446), - [aux_sym_cmd_identifier_token39] = ACTIONS(2446), - [aux_sym_cmd_identifier_token40] = ACTIONS(2446), - [anon_sym_def] = ACTIONS(2446), - [anon_sym_export_DASHenv] = ACTIONS(2446), - [anon_sym_extern] = ACTIONS(2446), - [anon_sym_module] = ACTIONS(2446), - [anon_sym_use] = ACTIONS(2446), - [anon_sym_LPAREN] = ACTIONS(2446), - [anon_sym_COMMA] = ACTIONS(2446), - [anon_sym_DOLLAR] = ACTIONS(2446), - [anon_sym_error] = ACTIONS(2446), - [anon_sym_DASH2] = ACTIONS(2446), - [anon_sym_break] = ACTIONS(2446), - [anon_sym_continue] = ACTIONS(2446), - [anon_sym_for] = ACTIONS(2446), - [anon_sym_in2] = ACTIONS(2446), - [anon_sym_loop] = ACTIONS(2446), - [anon_sym_make] = ACTIONS(2446), - [anon_sym_while] = ACTIONS(2446), - [anon_sym_do] = ACTIONS(2446), - [anon_sym_if] = ACTIONS(2446), - [anon_sym_else] = ACTIONS(2446), - [anon_sym_match] = ACTIONS(2446), - [anon_sym_RBRACE] = ACTIONS(2446), - [anon_sym_try] = ACTIONS(2446), - [anon_sym_catch] = ACTIONS(2446), - [anon_sym_return] = ACTIONS(2446), - [anon_sym_source] = ACTIONS(2446), - [anon_sym_source_DASHenv] = ACTIONS(2446), - [anon_sym_register] = ACTIONS(2446), - [anon_sym_hide] = ACTIONS(2446), - [anon_sym_hide_DASHenv] = ACTIONS(2446), - [anon_sym_overlay] = ACTIONS(2446), - [anon_sym_as] = ACTIONS(2446), - [anon_sym_PLUS2] = ACTIONS(2446), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2446), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2446), - [aux_sym__val_number_decimal_token1] = ACTIONS(2446), - [aux_sym__val_number_decimal_token2] = ACTIONS(2446), - [aux_sym__val_number_decimal_token3] = ACTIONS(2446), - [aux_sym__val_number_decimal_token4] = ACTIONS(2446), - [aux_sym__val_number_token1] = ACTIONS(2446), - [aux_sym__val_number_token2] = ACTIONS(2446), - [aux_sym__val_number_token3] = ACTIONS(2446), - [aux_sym__val_number_token4] = ACTIONS(2446), - [aux_sym__val_number_token5] = ACTIONS(2446), - [aux_sym__val_number_token6] = ACTIONS(2446), - [anon_sym_DQUOTE] = ACTIONS(2446), - [sym__str_single_quotes] = ACTIONS(2446), - [sym__str_back_ticks] = ACTIONS(2446), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2446), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2446), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2446), - [sym__entry_separator] = ACTIONS(2448), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2448), - }, - [646] = { - [sym_comment] = STATE(646), - [aux_sym__multiple_types_repeat1] = STATE(662), - [anon_sym_export] = ACTIONS(2434), - [anon_sym_alias] = ACTIONS(2434), - [anon_sym_let] = ACTIONS(2434), - [anon_sym_let_DASHenv] = ACTIONS(2434), - [anon_sym_mut] = ACTIONS(2434), - [anon_sym_const] = ACTIONS(2434), - [aux_sym_cmd_identifier_token1] = ACTIONS(2434), - [aux_sym_cmd_identifier_token2] = ACTIONS(2434), - [aux_sym_cmd_identifier_token3] = ACTIONS(2434), - [aux_sym_cmd_identifier_token4] = ACTIONS(2434), - [aux_sym_cmd_identifier_token5] = ACTIONS(2434), - [aux_sym_cmd_identifier_token6] = ACTIONS(2434), - [aux_sym_cmd_identifier_token7] = ACTIONS(2434), - [aux_sym_cmd_identifier_token8] = ACTIONS(2434), - [aux_sym_cmd_identifier_token9] = ACTIONS(2434), - [aux_sym_cmd_identifier_token10] = ACTIONS(2434), - [aux_sym_cmd_identifier_token11] = ACTIONS(2434), - [aux_sym_cmd_identifier_token12] = ACTIONS(2434), - [aux_sym_cmd_identifier_token13] = ACTIONS(2434), - [aux_sym_cmd_identifier_token14] = ACTIONS(2434), - [aux_sym_cmd_identifier_token15] = ACTIONS(2434), - [aux_sym_cmd_identifier_token16] = ACTIONS(2434), - [aux_sym_cmd_identifier_token17] = ACTIONS(2434), - [aux_sym_cmd_identifier_token18] = ACTIONS(2434), - [aux_sym_cmd_identifier_token19] = ACTIONS(2434), - [aux_sym_cmd_identifier_token20] = ACTIONS(2434), - [aux_sym_cmd_identifier_token21] = ACTIONS(2434), - [aux_sym_cmd_identifier_token22] = ACTIONS(2434), - [aux_sym_cmd_identifier_token23] = ACTIONS(2434), - [aux_sym_cmd_identifier_token24] = ACTIONS(2434), - [aux_sym_cmd_identifier_token25] = ACTIONS(2434), - [aux_sym_cmd_identifier_token26] = ACTIONS(2434), - [aux_sym_cmd_identifier_token27] = ACTIONS(2434), - [aux_sym_cmd_identifier_token28] = ACTIONS(2434), - [aux_sym_cmd_identifier_token29] = ACTIONS(2434), - [aux_sym_cmd_identifier_token30] = ACTIONS(2434), - [aux_sym_cmd_identifier_token31] = ACTIONS(2434), - [aux_sym_cmd_identifier_token32] = ACTIONS(2434), - [aux_sym_cmd_identifier_token33] = ACTIONS(2434), - [aux_sym_cmd_identifier_token34] = ACTIONS(2434), - [aux_sym_cmd_identifier_token35] = ACTIONS(2434), - [aux_sym_cmd_identifier_token36] = ACTIONS(2434), - [aux_sym_cmd_identifier_token37] = ACTIONS(2434), - [aux_sym_cmd_identifier_token38] = ACTIONS(2434), - [aux_sym_cmd_identifier_token39] = ACTIONS(2434), - [aux_sym_cmd_identifier_token40] = ACTIONS(2434), - [anon_sym_def] = ACTIONS(2434), - [anon_sym_export_DASHenv] = ACTIONS(2434), - [anon_sym_extern] = ACTIONS(2434), - [anon_sym_module] = ACTIONS(2434), - [anon_sym_use] = ACTIONS(2434), - [anon_sym_LPAREN] = ACTIONS(2434), - [anon_sym_DOLLAR] = ACTIONS(2434), - [anon_sym_error] = ACTIONS(2434), - [anon_sym_DASH2] = ACTIONS(2434), - [anon_sym_break] = ACTIONS(2434), - [anon_sym_continue] = ACTIONS(2434), - [anon_sym_for] = ACTIONS(2434), - [anon_sym_in2] = ACTIONS(2434), - [anon_sym_loop] = ACTIONS(2434), - [anon_sym_make] = ACTIONS(2434), - [anon_sym_while] = ACTIONS(2434), - [anon_sym_do] = ACTIONS(2434), - [anon_sym_if] = ACTIONS(2434), - [anon_sym_else] = ACTIONS(2434), - [anon_sym_match] = ACTIONS(2434), - [anon_sym_RBRACE] = ACTIONS(2450), - [anon_sym_try] = ACTIONS(2434), - [anon_sym_catch] = ACTIONS(2434), - [anon_sym_return] = ACTIONS(2434), - [anon_sym_source] = ACTIONS(2434), - [anon_sym_source_DASHenv] = ACTIONS(2434), - [anon_sym_register] = ACTIONS(2434), - [anon_sym_hide] = ACTIONS(2434), - [anon_sym_hide_DASHenv] = ACTIONS(2434), - [anon_sym_overlay] = ACTIONS(2434), - [anon_sym_as] = ACTIONS(2434), - [anon_sym_PLUS2] = ACTIONS(2434), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2434), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2434), - [aux_sym__val_number_decimal_token1] = ACTIONS(2434), - [aux_sym__val_number_decimal_token2] = ACTIONS(2434), - [aux_sym__val_number_decimal_token3] = ACTIONS(2434), - [aux_sym__val_number_decimal_token4] = ACTIONS(2434), - [aux_sym__val_number_token1] = ACTIONS(2434), - [aux_sym__val_number_token2] = ACTIONS(2434), - [aux_sym__val_number_token3] = ACTIONS(2434), - [aux_sym__val_number_token4] = ACTIONS(2434), - [aux_sym__val_number_token5] = ACTIONS(2434), - [aux_sym__val_number_token6] = ACTIONS(2434), - [anon_sym_DQUOTE] = ACTIONS(2434), - [sym__str_single_quotes] = ACTIONS(2434), - [sym__str_back_ticks] = ACTIONS(2434), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2434), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2434), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2434), - [sym__entry_separator] = ACTIONS(2318), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2438), - }, - [647] = { - [sym_comment] = STATE(647), - [anon_sym_export] = ACTIONS(2452), - [anon_sym_alias] = ACTIONS(2452), - [anon_sym_let] = ACTIONS(2452), - [anon_sym_let_DASHenv] = ACTIONS(2452), - [anon_sym_mut] = ACTIONS(2452), - [anon_sym_const] = ACTIONS(2452), - [aux_sym_cmd_identifier_token1] = ACTIONS(2452), - [aux_sym_cmd_identifier_token2] = ACTIONS(2452), - [aux_sym_cmd_identifier_token3] = ACTIONS(2452), - [aux_sym_cmd_identifier_token4] = ACTIONS(2452), - [aux_sym_cmd_identifier_token5] = ACTIONS(2452), - [aux_sym_cmd_identifier_token6] = ACTIONS(2452), - [aux_sym_cmd_identifier_token7] = ACTIONS(2452), - [aux_sym_cmd_identifier_token8] = ACTIONS(2452), - [aux_sym_cmd_identifier_token9] = ACTIONS(2452), - [aux_sym_cmd_identifier_token10] = ACTIONS(2452), - [aux_sym_cmd_identifier_token11] = ACTIONS(2452), - [aux_sym_cmd_identifier_token12] = ACTIONS(2452), - [aux_sym_cmd_identifier_token13] = ACTIONS(2452), - [aux_sym_cmd_identifier_token14] = ACTIONS(2452), - [aux_sym_cmd_identifier_token15] = ACTIONS(2452), - [aux_sym_cmd_identifier_token16] = ACTIONS(2452), - [aux_sym_cmd_identifier_token17] = ACTIONS(2452), - [aux_sym_cmd_identifier_token18] = ACTIONS(2452), - [aux_sym_cmd_identifier_token19] = ACTIONS(2452), - [aux_sym_cmd_identifier_token20] = ACTIONS(2452), - [aux_sym_cmd_identifier_token21] = ACTIONS(2452), - [aux_sym_cmd_identifier_token22] = ACTIONS(2452), - [aux_sym_cmd_identifier_token23] = ACTIONS(2452), - [aux_sym_cmd_identifier_token24] = ACTIONS(2452), - [aux_sym_cmd_identifier_token25] = ACTIONS(2452), - [aux_sym_cmd_identifier_token26] = ACTIONS(2452), - [aux_sym_cmd_identifier_token27] = ACTIONS(2452), - [aux_sym_cmd_identifier_token28] = ACTIONS(2452), - [aux_sym_cmd_identifier_token29] = ACTIONS(2452), - [aux_sym_cmd_identifier_token30] = ACTIONS(2452), - [aux_sym_cmd_identifier_token31] = ACTIONS(2452), - [aux_sym_cmd_identifier_token32] = ACTIONS(2452), - [aux_sym_cmd_identifier_token33] = ACTIONS(2452), - [aux_sym_cmd_identifier_token34] = ACTIONS(2452), - [aux_sym_cmd_identifier_token35] = ACTIONS(2452), - [aux_sym_cmd_identifier_token36] = ACTIONS(2452), - [aux_sym_cmd_identifier_token37] = ACTIONS(2452), - [aux_sym_cmd_identifier_token38] = ACTIONS(2452), - [aux_sym_cmd_identifier_token39] = ACTIONS(2452), - [aux_sym_cmd_identifier_token40] = ACTIONS(2452), - [anon_sym_def] = ACTIONS(2452), - [anon_sym_export_DASHenv] = ACTIONS(2452), - [anon_sym_extern] = ACTIONS(2452), - [anon_sym_module] = ACTIONS(2452), - [anon_sym_use] = ACTIONS(2452), - [anon_sym_LPAREN] = ACTIONS(2452), - [anon_sym_COMMA] = ACTIONS(2452), - [anon_sym_DOLLAR] = ACTIONS(2452), - [anon_sym_error] = ACTIONS(2452), - [anon_sym_DASH2] = ACTIONS(2452), - [anon_sym_break] = ACTIONS(2452), - [anon_sym_continue] = ACTIONS(2452), - [anon_sym_for] = ACTIONS(2452), - [anon_sym_in2] = ACTIONS(2452), - [anon_sym_loop] = ACTIONS(2452), - [anon_sym_make] = ACTIONS(2452), - [anon_sym_while] = ACTIONS(2452), - [anon_sym_do] = ACTIONS(2452), - [anon_sym_if] = ACTIONS(2452), - [anon_sym_else] = ACTIONS(2452), - [anon_sym_match] = ACTIONS(2452), - [anon_sym_RBRACE] = ACTIONS(2452), - [anon_sym_try] = ACTIONS(2452), - [anon_sym_catch] = ACTIONS(2452), - [anon_sym_return] = ACTIONS(2452), - [anon_sym_source] = ACTIONS(2452), - [anon_sym_source_DASHenv] = ACTIONS(2452), - [anon_sym_register] = ACTIONS(2452), - [anon_sym_hide] = ACTIONS(2452), - [anon_sym_hide_DASHenv] = ACTIONS(2452), - [anon_sym_overlay] = ACTIONS(2452), - [anon_sym_as] = ACTIONS(2452), - [anon_sym_PLUS2] = ACTIONS(2452), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2452), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2452), - [aux_sym__val_number_decimal_token1] = ACTIONS(2452), - [aux_sym__val_number_decimal_token2] = ACTIONS(2452), - [aux_sym__val_number_decimal_token3] = ACTIONS(2452), - [aux_sym__val_number_decimal_token4] = ACTIONS(2452), - [aux_sym__val_number_token1] = ACTIONS(2452), - [aux_sym__val_number_token2] = ACTIONS(2452), - [aux_sym__val_number_token3] = ACTIONS(2452), - [aux_sym__val_number_token4] = ACTIONS(2452), - [aux_sym__val_number_token5] = ACTIONS(2452), - [aux_sym__val_number_token6] = ACTIONS(2452), - [anon_sym_DQUOTE] = ACTIONS(2452), - [sym__str_single_quotes] = ACTIONS(2452), - [sym__str_back_ticks] = ACTIONS(2452), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2452), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2452), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2452), - [sym__entry_separator] = ACTIONS(2454), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2454), - }, - [648] = { - [sym_comment] = STATE(648), - [anon_sym_export] = ACTIONS(2456), - [anon_sym_alias] = ACTIONS(2456), - [anon_sym_let] = ACTIONS(2456), - [anon_sym_let_DASHenv] = ACTIONS(2456), - [anon_sym_mut] = ACTIONS(2456), - [anon_sym_const] = ACTIONS(2456), - [aux_sym_cmd_identifier_token1] = ACTIONS(2456), - [aux_sym_cmd_identifier_token2] = ACTIONS(2456), - [aux_sym_cmd_identifier_token3] = ACTIONS(2456), - [aux_sym_cmd_identifier_token4] = ACTIONS(2456), - [aux_sym_cmd_identifier_token5] = ACTIONS(2456), - [aux_sym_cmd_identifier_token6] = ACTIONS(2456), - [aux_sym_cmd_identifier_token7] = ACTIONS(2456), - [aux_sym_cmd_identifier_token8] = ACTIONS(2456), - [aux_sym_cmd_identifier_token9] = ACTIONS(2456), - [aux_sym_cmd_identifier_token10] = ACTIONS(2456), - [aux_sym_cmd_identifier_token11] = ACTIONS(2456), - [aux_sym_cmd_identifier_token12] = ACTIONS(2456), - [aux_sym_cmd_identifier_token13] = ACTIONS(2456), - [aux_sym_cmd_identifier_token14] = ACTIONS(2456), - [aux_sym_cmd_identifier_token15] = ACTIONS(2456), - [aux_sym_cmd_identifier_token16] = ACTIONS(2456), - [aux_sym_cmd_identifier_token17] = ACTIONS(2456), - [aux_sym_cmd_identifier_token18] = ACTIONS(2456), - [aux_sym_cmd_identifier_token19] = ACTIONS(2456), - [aux_sym_cmd_identifier_token20] = ACTIONS(2456), - [aux_sym_cmd_identifier_token21] = ACTIONS(2456), - [aux_sym_cmd_identifier_token22] = ACTIONS(2456), - [aux_sym_cmd_identifier_token23] = ACTIONS(2456), - [aux_sym_cmd_identifier_token24] = ACTIONS(2456), - [aux_sym_cmd_identifier_token25] = ACTIONS(2456), - [aux_sym_cmd_identifier_token26] = ACTIONS(2456), - [aux_sym_cmd_identifier_token27] = ACTIONS(2456), - [aux_sym_cmd_identifier_token28] = ACTIONS(2456), - [aux_sym_cmd_identifier_token29] = ACTIONS(2456), - [aux_sym_cmd_identifier_token30] = ACTIONS(2456), - [aux_sym_cmd_identifier_token31] = ACTIONS(2456), - [aux_sym_cmd_identifier_token32] = ACTIONS(2456), - [aux_sym_cmd_identifier_token33] = ACTIONS(2456), - [aux_sym_cmd_identifier_token34] = ACTIONS(2456), - [aux_sym_cmd_identifier_token35] = ACTIONS(2456), - [aux_sym_cmd_identifier_token36] = ACTIONS(2456), - [aux_sym_cmd_identifier_token37] = ACTIONS(2456), - [aux_sym_cmd_identifier_token38] = ACTIONS(2456), - [aux_sym_cmd_identifier_token39] = ACTIONS(2456), - [aux_sym_cmd_identifier_token40] = ACTIONS(2456), - [anon_sym_def] = ACTIONS(2456), - [anon_sym_export_DASHenv] = ACTIONS(2456), - [anon_sym_extern] = ACTIONS(2456), - [anon_sym_module] = ACTIONS(2456), - [anon_sym_use] = ACTIONS(2456), - [anon_sym_LPAREN] = ACTIONS(2456), - [anon_sym_COMMA] = ACTIONS(2456), - [anon_sym_DOLLAR] = ACTIONS(2456), - [anon_sym_error] = ACTIONS(2456), - [anon_sym_DASH2] = ACTIONS(2456), - [anon_sym_break] = ACTIONS(2456), - [anon_sym_continue] = ACTIONS(2456), - [anon_sym_for] = ACTIONS(2456), - [anon_sym_in2] = ACTIONS(2456), - [anon_sym_loop] = ACTIONS(2456), - [anon_sym_make] = ACTIONS(2456), - [anon_sym_while] = ACTIONS(2456), - [anon_sym_do] = ACTIONS(2456), - [anon_sym_if] = ACTIONS(2456), - [anon_sym_else] = ACTIONS(2456), - [anon_sym_match] = ACTIONS(2456), - [anon_sym_RBRACE] = ACTIONS(2456), - [anon_sym_try] = ACTIONS(2456), - [anon_sym_catch] = ACTIONS(2456), - [anon_sym_return] = ACTIONS(2456), - [anon_sym_source] = ACTIONS(2456), - [anon_sym_source_DASHenv] = ACTIONS(2456), - [anon_sym_register] = ACTIONS(2456), - [anon_sym_hide] = ACTIONS(2456), - [anon_sym_hide_DASHenv] = ACTIONS(2456), - [anon_sym_overlay] = ACTIONS(2456), - [anon_sym_as] = ACTIONS(2456), - [anon_sym_PLUS2] = ACTIONS(2456), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2456), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2456), - [aux_sym__val_number_decimal_token1] = ACTIONS(2456), - [aux_sym__val_number_decimal_token2] = ACTIONS(2456), - [aux_sym__val_number_decimal_token3] = ACTIONS(2456), - [aux_sym__val_number_decimal_token4] = ACTIONS(2456), - [aux_sym__val_number_token1] = ACTIONS(2456), - [aux_sym__val_number_token2] = ACTIONS(2456), - [aux_sym__val_number_token3] = ACTIONS(2456), - [aux_sym__val_number_token4] = ACTIONS(2456), - [aux_sym__val_number_token5] = ACTIONS(2456), - [aux_sym__val_number_token6] = ACTIONS(2456), - [anon_sym_DQUOTE] = ACTIONS(2456), - [sym__str_single_quotes] = ACTIONS(2456), - [sym__str_back_ticks] = ACTIONS(2456), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2456), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2456), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2456), - [sym__entry_separator] = ACTIONS(2458), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2458), - }, - [649] = { - [sym_comment] = STATE(649), - [anon_sym_export] = ACTIONS(2460), - [anon_sym_alias] = ACTIONS(2460), - [anon_sym_let] = ACTIONS(2460), - [anon_sym_let_DASHenv] = ACTIONS(2460), - [anon_sym_mut] = ACTIONS(2460), - [anon_sym_const] = ACTIONS(2460), - [aux_sym_cmd_identifier_token1] = ACTIONS(2460), - [aux_sym_cmd_identifier_token2] = ACTIONS(2460), - [aux_sym_cmd_identifier_token3] = ACTIONS(2460), - [aux_sym_cmd_identifier_token4] = ACTIONS(2460), - [aux_sym_cmd_identifier_token5] = ACTIONS(2460), - [aux_sym_cmd_identifier_token6] = ACTIONS(2460), - [aux_sym_cmd_identifier_token7] = ACTIONS(2460), - [aux_sym_cmd_identifier_token8] = ACTIONS(2460), - [aux_sym_cmd_identifier_token9] = ACTIONS(2460), - [aux_sym_cmd_identifier_token10] = ACTIONS(2460), - [aux_sym_cmd_identifier_token11] = ACTIONS(2460), - [aux_sym_cmd_identifier_token12] = ACTIONS(2460), - [aux_sym_cmd_identifier_token13] = ACTIONS(2460), - [aux_sym_cmd_identifier_token14] = ACTIONS(2460), - [aux_sym_cmd_identifier_token15] = ACTIONS(2460), - [aux_sym_cmd_identifier_token16] = ACTIONS(2460), - [aux_sym_cmd_identifier_token17] = ACTIONS(2460), - [aux_sym_cmd_identifier_token18] = ACTIONS(2460), - [aux_sym_cmd_identifier_token19] = ACTIONS(2460), - [aux_sym_cmd_identifier_token20] = ACTIONS(2460), - [aux_sym_cmd_identifier_token21] = ACTIONS(2460), - [aux_sym_cmd_identifier_token22] = ACTIONS(2460), - [aux_sym_cmd_identifier_token23] = ACTIONS(2460), - [aux_sym_cmd_identifier_token24] = ACTIONS(2460), - [aux_sym_cmd_identifier_token25] = ACTIONS(2460), - [aux_sym_cmd_identifier_token26] = ACTIONS(2460), - [aux_sym_cmd_identifier_token27] = ACTIONS(2460), - [aux_sym_cmd_identifier_token28] = ACTIONS(2460), - [aux_sym_cmd_identifier_token29] = ACTIONS(2460), - [aux_sym_cmd_identifier_token30] = ACTIONS(2460), - [aux_sym_cmd_identifier_token31] = ACTIONS(2460), - [aux_sym_cmd_identifier_token32] = ACTIONS(2460), - [aux_sym_cmd_identifier_token33] = ACTIONS(2460), - [aux_sym_cmd_identifier_token34] = ACTIONS(2460), - [aux_sym_cmd_identifier_token35] = ACTIONS(2460), - [aux_sym_cmd_identifier_token36] = ACTIONS(2460), - [aux_sym_cmd_identifier_token37] = ACTIONS(2460), - [aux_sym_cmd_identifier_token38] = ACTIONS(2460), - [aux_sym_cmd_identifier_token39] = ACTIONS(2460), - [aux_sym_cmd_identifier_token40] = ACTIONS(2460), - [anon_sym_def] = ACTIONS(2460), - [anon_sym_export_DASHenv] = ACTIONS(2460), - [anon_sym_extern] = ACTIONS(2460), - [anon_sym_module] = ACTIONS(2460), - [anon_sym_use] = ACTIONS(2460), - [anon_sym_LPAREN] = ACTIONS(2460), - [anon_sym_COMMA] = ACTIONS(2460), - [anon_sym_DOLLAR] = ACTIONS(2460), - [anon_sym_error] = ACTIONS(2460), - [anon_sym_DASH2] = ACTIONS(2460), - [anon_sym_break] = ACTIONS(2460), - [anon_sym_continue] = ACTIONS(2460), - [anon_sym_for] = ACTIONS(2460), - [anon_sym_in2] = ACTIONS(2460), - [anon_sym_loop] = ACTIONS(2460), - [anon_sym_make] = ACTIONS(2460), - [anon_sym_while] = ACTIONS(2460), - [anon_sym_do] = ACTIONS(2460), - [anon_sym_if] = ACTIONS(2460), - [anon_sym_else] = ACTIONS(2460), - [anon_sym_match] = ACTIONS(2460), - [anon_sym_RBRACE] = ACTIONS(2460), - [anon_sym_try] = ACTIONS(2460), - [anon_sym_catch] = ACTIONS(2460), - [anon_sym_return] = ACTIONS(2460), - [anon_sym_source] = ACTIONS(2460), - [anon_sym_source_DASHenv] = ACTIONS(2460), - [anon_sym_register] = ACTIONS(2460), - [anon_sym_hide] = ACTIONS(2460), - [anon_sym_hide_DASHenv] = ACTIONS(2460), - [anon_sym_overlay] = ACTIONS(2460), - [anon_sym_as] = ACTIONS(2460), - [anon_sym_PLUS2] = ACTIONS(2460), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2460), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2460), - [aux_sym__val_number_decimal_token1] = ACTIONS(2460), - [aux_sym__val_number_decimal_token2] = ACTIONS(2460), - [aux_sym__val_number_decimal_token3] = ACTIONS(2460), - [aux_sym__val_number_decimal_token4] = ACTIONS(2460), - [aux_sym__val_number_token1] = ACTIONS(2460), - [aux_sym__val_number_token2] = ACTIONS(2460), - [aux_sym__val_number_token3] = ACTIONS(2460), - [aux_sym__val_number_token4] = ACTIONS(2460), - [aux_sym__val_number_token5] = ACTIONS(2460), - [aux_sym__val_number_token6] = ACTIONS(2460), - [anon_sym_DQUOTE] = ACTIONS(2460), - [sym__str_single_quotes] = ACTIONS(2460), - [sym__str_back_ticks] = ACTIONS(2460), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2460), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2460), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2460), - [sym__entry_separator] = ACTIONS(2462), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2462), - }, - [650] = { - [sym_comment] = STATE(650), - [anon_sym_export] = ACTIONS(2464), - [anon_sym_alias] = ACTIONS(2464), - [anon_sym_let] = ACTIONS(2464), - [anon_sym_let_DASHenv] = ACTIONS(2464), - [anon_sym_mut] = ACTIONS(2464), - [anon_sym_const] = ACTIONS(2464), - [aux_sym_cmd_identifier_token1] = ACTIONS(2464), - [aux_sym_cmd_identifier_token2] = ACTIONS(2464), - [aux_sym_cmd_identifier_token3] = ACTIONS(2464), - [aux_sym_cmd_identifier_token4] = ACTIONS(2464), - [aux_sym_cmd_identifier_token5] = ACTIONS(2464), - [aux_sym_cmd_identifier_token6] = ACTIONS(2464), - [aux_sym_cmd_identifier_token7] = ACTIONS(2464), - [aux_sym_cmd_identifier_token8] = ACTIONS(2464), - [aux_sym_cmd_identifier_token9] = ACTIONS(2464), - [aux_sym_cmd_identifier_token10] = ACTIONS(2464), - [aux_sym_cmd_identifier_token11] = ACTIONS(2464), - [aux_sym_cmd_identifier_token12] = ACTIONS(2464), - [aux_sym_cmd_identifier_token13] = ACTIONS(2464), - [aux_sym_cmd_identifier_token14] = ACTIONS(2464), - [aux_sym_cmd_identifier_token15] = ACTIONS(2464), - [aux_sym_cmd_identifier_token16] = ACTIONS(2464), - [aux_sym_cmd_identifier_token17] = ACTIONS(2464), - [aux_sym_cmd_identifier_token18] = ACTIONS(2464), - [aux_sym_cmd_identifier_token19] = ACTIONS(2464), - [aux_sym_cmd_identifier_token20] = ACTIONS(2464), - [aux_sym_cmd_identifier_token21] = ACTIONS(2464), - [aux_sym_cmd_identifier_token22] = ACTIONS(2464), - [aux_sym_cmd_identifier_token23] = ACTIONS(2464), - [aux_sym_cmd_identifier_token24] = ACTIONS(2464), - [aux_sym_cmd_identifier_token25] = ACTIONS(2464), - [aux_sym_cmd_identifier_token26] = ACTIONS(2464), - [aux_sym_cmd_identifier_token27] = ACTIONS(2464), - [aux_sym_cmd_identifier_token28] = ACTIONS(2464), - [aux_sym_cmd_identifier_token29] = ACTIONS(2464), - [aux_sym_cmd_identifier_token30] = ACTIONS(2464), - [aux_sym_cmd_identifier_token31] = ACTIONS(2464), - [aux_sym_cmd_identifier_token32] = ACTIONS(2464), - [aux_sym_cmd_identifier_token33] = ACTIONS(2464), - [aux_sym_cmd_identifier_token34] = ACTIONS(2464), - [aux_sym_cmd_identifier_token35] = ACTIONS(2464), - [aux_sym_cmd_identifier_token36] = ACTIONS(2464), - [aux_sym_cmd_identifier_token37] = ACTIONS(2464), - [aux_sym_cmd_identifier_token38] = ACTIONS(2464), - [aux_sym_cmd_identifier_token39] = ACTIONS(2464), - [aux_sym_cmd_identifier_token40] = ACTIONS(2464), - [anon_sym_def] = ACTIONS(2464), - [anon_sym_export_DASHenv] = ACTIONS(2464), - [anon_sym_extern] = ACTIONS(2464), - [anon_sym_module] = ACTIONS(2464), - [anon_sym_use] = ACTIONS(2464), - [anon_sym_LPAREN] = ACTIONS(2464), - [anon_sym_COMMA] = ACTIONS(2464), - [anon_sym_DOLLAR] = ACTIONS(2464), - [anon_sym_error] = ACTIONS(2464), - [anon_sym_DASH2] = ACTIONS(2464), - [anon_sym_break] = ACTIONS(2464), - [anon_sym_continue] = ACTIONS(2464), - [anon_sym_for] = ACTIONS(2464), - [anon_sym_in2] = ACTIONS(2464), - [anon_sym_loop] = ACTIONS(2464), - [anon_sym_make] = ACTIONS(2464), - [anon_sym_while] = ACTIONS(2464), - [anon_sym_do] = ACTIONS(2464), - [anon_sym_if] = ACTIONS(2464), - [anon_sym_else] = ACTIONS(2464), - [anon_sym_match] = ACTIONS(2464), - [anon_sym_RBRACE] = ACTIONS(2464), - [anon_sym_try] = ACTIONS(2464), - [anon_sym_catch] = ACTIONS(2464), - [anon_sym_return] = ACTIONS(2464), - [anon_sym_source] = ACTIONS(2464), - [anon_sym_source_DASHenv] = ACTIONS(2464), - [anon_sym_register] = ACTIONS(2464), - [anon_sym_hide] = ACTIONS(2464), - [anon_sym_hide_DASHenv] = ACTIONS(2464), - [anon_sym_overlay] = ACTIONS(2464), - [anon_sym_as] = ACTIONS(2464), - [anon_sym_PLUS2] = ACTIONS(2464), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2464), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2464), - [aux_sym__val_number_decimal_token1] = ACTIONS(2464), - [aux_sym__val_number_decimal_token2] = ACTIONS(2464), - [aux_sym__val_number_decimal_token3] = ACTIONS(2464), - [aux_sym__val_number_decimal_token4] = ACTIONS(2464), - [aux_sym__val_number_token1] = ACTIONS(2464), - [aux_sym__val_number_token2] = ACTIONS(2464), - [aux_sym__val_number_token3] = ACTIONS(2464), - [aux_sym__val_number_token4] = ACTIONS(2464), - [aux_sym__val_number_token5] = ACTIONS(2464), - [aux_sym__val_number_token6] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym__str_single_quotes] = ACTIONS(2464), - [sym__str_back_ticks] = ACTIONS(2464), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2464), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2464), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2464), - [sym__entry_separator] = ACTIONS(2466), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2466), - }, - [651] = { - [sym_comment] = STATE(651), - [anon_sym_export] = ACTIONS(2468), - [anon_sym_alias] = ACTIONS(2468), - [anon_sym_let] = ACTIONS(2468), - [anon_sym_let_DASHenv] = ACTIONS(2468), - [anon_sym_mut] = ACTIONS(2468), - [anon_sym_const] = ACTIONS(2468), - [aux_sym_cmd_identifier_token1] = ACTIONS(2468), - [aux_sym_cmd_identifier_token2] = ACTIONS(2468), - [aux_sym_cmd_identifier_token3] = ACTIONS(2468), - [aux_sym_cmd_identifier_token4] = ACTIONS(2468), - [aux_sym_cmd_identifier_token5] = ACTIONS(2468), - [aux_sym_cmd_identifier_token6] = ACTIONS(2468), - [aux_sym_cmd_identifier_token7] = ACTIONS(2468), - [aux_sym_cmd_identifier_token8] = ACTIONS(2468), - [aux_sym_cmd_identifier_token9] = ACTIONS(2468), - [aux_sym_cmd_identifier_token10] = ACTIONS(2468), - [aux_sym_cmd_identifier_token11] = ACTIONS(2468), - [aux_sym_cmd_identifier_token12] = ACTIONS(2468), - [aux_sym_cmd_identifier_token13] = ACTIONS(2468), - [aux_sym_cmd_identifier_token14] = ACTIONS(2468), - [aux_sym_cmd_identifier_token15] = ACTIONS(2468), - [aux_sym_cmd_identifier_token16] = ACTIONS(2468), - [aux_sym_cmd_identifier_token17] = ACTIONS(2468), - [aux_sym_cmd_identifier_token18] = ACTIONS(2468), - [aux_sym_cmd_identifier_token19] = ACTIONS(2468), - [aux_sym_cmd_identifier_token20] = ACTIONS(2468), - [aux_sym_cmd_identifier_token21] = ACTIONS(2468), - [aux_sym_cmd_identifier_token22] = ACTIONS(2468), - [aux_sym_cmd_identifier_token23] = ACTIONS(2468), - [aux_sym_cmd_identifier_token24] = ACTIONS(2468), - [aux_sym_cmd_identifier_token25] = ACTIONS(2468), - [aux_sym_cmd_identifier_token26] = ACTIONS(2468), - [aux_sym_cmd_identifier_token27] = ACTIONS(2468), - [aux_sym_cmd_identifier_token28] = ACTIONS(2468), - [aux_sym_cmd_identifier_token29] = ACTIONS(2468), - [aux_sym_cmd_identifier_token30] = ACTIONS(2468), - [aux_sym_cmd_identifier_token31] = ACTIONS(2468), - [aux_sym_cmd_identifier_token32] = ACTIONS(2468), - [aux_sym_cmd_identifier_token33] = ACTIONS(2468), - [aux_sym_cmd_identifier_token34] = ACTIONS(2468), - [aux_sym_cmd_identifier_token35] = ACTIONS(2468), - [aux_sym_cmd_identifier_token36] = ACTIONS(2468), - [aux_sym_cmd_identifier_token37] = ACTIONS(2468), - [aux_sym_cmd_identifier_token38] = ACTIONS(2468), - [aux_sym_cmd_identifier_token39] = ACTIONS(2468), - [aux_sym_cmd_identifier_token40] = ACTIONS(2468), - [anon_sym_def] = ACTIONS(2468), - [anon_sym_export_DASHenv] = ACTIONS(2468), - [anon_sym_extern] = ACTIONS(2468), - [anon_sym_module] = ACTIONS(2468), - [anon_sym_use] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(2468), - [anon_sym_COMMA] = ACTIONS(2468), - [anon_sym_DOLLAR] = ACTIONS(2468), - [anon_sym_error] = ACTIONS(2468), - [anon_sym_DASH2] = ACTIONS(2468), - [anon_sym_break] = ACTIONS(2468), - [anon_sym_continue] = ACTIONS(2468), - [anon_sym_for] = ACTIONS(2468), - [anon_sym_in2] = ACTIONS(2468), - [anon_sym_loop] = ACTIONS(2468), - [anon_sym_make] = ACTIONS(2468), - [anon_sym_while] = ACTIONS(2468), - [anon_sym_do] = ACTIONS(2468), - [anon_sym_if] = ACTIONS(2468), - [anon_sym_else] = ACTIONS(2468), - [anon_sym_match] = ACTIONS(2468), - [anon_sym_RBRACE] = ACTIONS(2468), - [anon_sym_try] = ACTIONS(2468), - [anon_sym_catch] = ACTIONS(2468), - [anon_sym_return] = ACTIONS(2468), - [anon_sym_source] = ACTIONS(2468), - [anon_sym_source_DASHenv] = ACTIONS(2468), - [anon_sym_register] = ACTIONS(2468), - [anon_sym_hide] = ACTIONS(2468), - [anon_sym_hide_DASHenv] = ACTIONS(2468), - [anon_sym_overlay] = ACTIONS(2468), - [anon_sym_as] = ACTIONS(2468), - [anon_sym_PLUS2] = ACTIONS(2468), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2468), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2468), - [aux_sym__val_number_decimal_token1] = ACTIONS(2468), - [aux_sym__val_number_decimal_token2] = ACTIONS(2468), - [aux_sym__val_number_decimal_token3] = ACTIONS(2468), - [aux_sym__val_number_decimal_token4] = ACTIONS(2468), - [aux_sym__val_number_token1] = ACTIONS(2468), - [aux_sym__val_number_token2] = ACTIONS(2468), - [aux_sym__val_number_token3] = ACTIONS(2468), - [aux_sym__val_number_token4] = ACTIONS(2468), - [aux_sym__val_number_token5] = ACTIONS(2468), - [aux_sym__val_number_token6] = ACTIONS(2468), - [anon_sym_DQUOTE] = ACTIONS(2468), - [sym__str_single_quotes] = ACTIONS(2468), - [sym__str_back_ticks] = ACTIONS(2468), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2468), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2468), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2468), - [sym__entry_separator] = ACTIONS(2470), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2470), - }, - [652] = { - [sym_comment] = STATE(652), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_alias] = ACTIONS(1004), - [anon_sym_let] = ACTIONS(1004), - [anon_sym_let_DASHenv] = ACTIONS(1004), - [anon_sym_mut] = ACTIONS(1004), - [anon_sym_const] = ACTIONS(1004), - [aux_sym_cmd_identifier_token1] = ACTIONS(1004), - [aux_sym_cmd_identifier_token2] = ACTIONS(1010), - [aux_sym_cmd_identifier_token3] = ACTIONS(1010), - [aux_sym_cmd_identifier_token4] = ACTIONS(1010), - [aux_sym_cmd_identifier_token5] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1010), - [aux_sym_cmd_identifier_token7] = ACTIONS(1010), - [aux_sym_cmd_identifier_token8] = ACTIONS(1004), - [aux_sym_cmd_identifier_token9] = ACTIONS(1004), - [aux_sym_cmd_identifier_token10] = ACTIONS(1010), - [aux_sym_cmd_identifier_token11] = ACTIONS(1010), - [aux_sym_cmd_identifier_token12] = ACTIONS(1004), - [aux_sym_cmd_identifier_token13] = ACTIONS(1004), - [aux_sym_cmd_identifier_token14] = ACTIONS(1004), - [aux_sym_cmd_identifier_token15] = ACTIONS(1004), - [aux_sym_cmd_identifier_token16] = ACTIONS(1010), - [aux_sym_cmd_identifier_token17] = ACTIONS(1010), - [aux_sym_cmd_identifier_token18] = ACTIONS(1010), - [aux_sym_cmd_identifier_token19] = ACTIONS(1010), - [aux_sym_cmd_identifier_token20] = ACTIONS(1010), - [aux_sym_cmd_identifier_token21] = ACTIONS(1010), - [aux_sym_cmd_identifier_token22] = ACTIONS(1010), - [aux_sym_cmd_identifier_token23] = ACTIONS(1010), - [aux_sym_cmd_identifier_token24] = ACTIONS(1010), - [aux_sym_cmd_identifier_token25] = ACTIONS(1010), - [aux_sym_cmd_identifier_token26] = ACTIONS(1010), - [aux_sym_cmd_identifier_token27] = ACTIONS(1010), - [aux_sym_cmd_identifier_token28] = ACTIONS(1010), - [aux_sym_cmd_identifier_token29] = ACTIONS(1010), - [aux_sym_cmd_identifier_token30] = ACTIONS(1010), - [aux_sym_cmd_identifier_token31] = ACTIONS(1010), - [aux_sym_cmd_identifier_token32] = ACTIONS(1010), - [aux_sym_cmd_identifier_token33] = ACTIONS(1010), - [aux_sym_cmd_identifier_token34] = ACTIONS(1004), - [aux_sym_cmd_identifier_token35] = ACTIONS(1010), - [aux_sym_cmd_identifier_token36] = ACTIONS(1010), - [aux_sym_cmd_identifier_token37] = ACTIONS(1010), - [aux_sym_cmd_identifier_token38] = ACTIONS(1004), - [aux_sym_cmd_identifier_token39] = ACTIONS(1010), - [aux_sym_cmd_identifier_token40] = ACTIONS(1010), - [anon_sym_def] = ACTIONS(1004), - [anon_sym_export_DASHenv] = ACTIONS(1004), - [anon_sym_extern] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_use] = ACTIONS(1004), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_COMMA] = ACTIONS(1014), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_error] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(1004), - [anon_sym_break] = ACTIONS(1004), - [anon_sym_continue] = ACTIONS(1004), - [anon_sym_for] = ACTIONS(1004), - [anon_sym_in2] = ACTIONS(1004), - [anon_sym_loop] = ACTIONS(1004), - [anon_sym_make] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1004), - [anon_sym_do] = ACTIONS(1004), - [anon_sym_if] = ACTIONS(1004), - [anon_sym_else] = ACTIONS(1004), - [anon_sym_match] = ACTIONS(1004), - [anon_sym_RBRACE] = ACTIONS(1010), - [anon_sym_try] = ACTIONS(1004), - [anon_sym_catch] = ACTIONS(1004), - [anon_sym_return] = ACTIONS(1004), - [anon_sym_source] = ACTIONS(1004), - [anon_sym_source_DASHenv] = ACTIONS(1004), - [anon_sym_register] = ACTIONS(1004), - [anon_sym_hide] = ACTIONS(1004), - [anon_sym_hide_DASHenv] = ACTIONS(1004), - [anon_sym_overlay] = ACTIONS(1004), - [anon_sym_as] = ACTIONS(1004), - [anon_sym_PLUS2] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1010), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1010), - [aux_sym__val_number_decimal_token1] = ACTIONS(1004), - [aux_sym__val_number_decimal_token2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = ACTIONS(1010), - [aux_sym__val_number_decimal_token4] = ACTIONS(1010), - [aux_sym__val_number_token1] = ACTIONS(1010), - [aux_sym__val_number_token2] = ACTIONS(1010), - [aux_sym__val_number_token3] = ACTIONS(1010), - [aux_sym__val_number_token4] = ACTIONS(1004), - [aux_sym__val_number_token5] = ACTIONS(1004), - [aux_sym__val_number_token6] = ACTIONS(1004), - [anon_sym_DQUOTE] = ACTIONS(1010), - [sym__str_single_quotes] = ACTIONS(1010), - [sym__str_back_ticks] = ACTIONS(1010), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1010), - [anon_sym_COLON2] = ACTIONS(2472), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1010), - }, - [653] = { - [sym_comment] = STATE(653), - [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(2234), - [aux_sym_cmd_identifier_token3] = ACTIONS(2234), - [aux_sym_cmd_identifier_token4] = ACTIONS(2234), - [aux_sym_cmd_identifier_token5] = ACTIONS(2234), - [aux_sym_cmd_identifier_token6] = ACTIONS(2234), - [aux_sym_cmd_identifier_token7] = ACTIONS(2234), - [aux_sym_cmd_identifier_token8] = ACTIONS(2230), - [aux_sym_cmd_identifier_token9] = ACTIONS(2230), - [aux_sym_cmd_identifier_token10] = ACTIONS(2234), - [aux_sym_cmd_identifier_token11] = ACTIONS(2234), - [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(2234), - [aux_sym_cmd_identifier_token17] = ACTIONS(2234), - [aux_sym_cmd_identifier_token18] = ACTIONS(2234), - [aux_sym_cmd_identifier_token19] = ACTIONS(2234), - [aux_sym_cmd_identifier_token20] = ACTIONS(2234), - [aux_sym_cmd_identifier_token21] = ACTIONS(2234), - [aux_sym_cmd_identifier_token22] = ACTIONS(2234), - [aux_sym_cmd_identifier_token23] = ACTIONS(2234), - [aux_sym_cmd_identifier_token24] = ACTIONS(2234), - [aux_sym_cmd_identifier_token25] = ACTIONS(2234), - [aux_sym_cmd_identifier_token26] = ACTIONS(2234), - [aux_sym_cmd_identifier_token27] = ACTIONS(2234), - [aux_sym_cmd_identifier_token28] = ACTIONS(2234), - [aux_sym_cmd_identifier_token29] = ACTIONS(2234), - [aux_sym_cmd_identifier_token30] = ACTIONS(2234), - [aux_sym_cmd_identifier_token31] = ACTIONS(2234), - [aux_sym_cmd_identifier_token32] = ACTIONS(2234), - [aux_sym_cmd_identifier_token33] = ACTIONS(2234), - [aux_sym_cmd_identifier_token34] = ACTIONS(2230), - [aux_sym_cmd_identifier_token35] = ACTIONS(2234), - [aux_sym_cmd_identifier_token36] = ACTIONS(2234), - [aux_sym_cmd_identifier_token37] = ACTIONS(2234), - [aux_sym_cmd_identifier_token38] = ACTIONS(2230), - [aux_sym_cmd_identifier_token39] = ACTIONS(2234), - [aux_sym_cmd_identifier_token40] = ACTIONS(2234), - [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(2234), - [anon_sym_COMMA] = ACTIONS(2234), - [anon_sym_DOLLAR] = ACTIONS(2230), - [anon_sym_error] = ACTIONS(2230), - [anon_sym_DASH2] = ACTIONS(2230), - [anon_sym_break] = ACTIONS(2230), - [anon_sym_continue] = ACTIONS(2230), - [anon_sym_for] = ACTIONS(2230), - [anon_sym_in2] = 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(2234), - [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_as] = ACTIONS(2230), - [anon_sym_PLUS2] = ACTIONS(2230), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2234), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2234), - [aux_sym__val_number_decimal_token1] = ACTIONS(2230), - [aux_sym__val_number_decimal_token2] = ACTIONS(2234), - [aux_sym__val_number_decimal_token3] = ACTIONS(2234), - [aux_sym__val_number_decimal_token4] = ACTIONS(2234), - [aux_sym__val_number_token1] = ACTIONS(2234), - [aux_sym__val_number_token2] = ACTIONS(2234), - [aux_sym__val_number_token3] = ACTIONS(2234), - [aux_sym__val_number_token4] = ACTIONS(2230), - [aux_sym__val_number_token5] = ACTIONS(2230), - [aux_sym__val_number_token6] = ACTIONS(2230), - [anon_sym_LBRACK2] = ACTIONS(2474), - [anon_sym_DQUOTE] = ACTIONS(2234), - [sym__str_single_quotes] = ACTIONS(2234), - [sym__str_back_ticks] = ACTIONS(2234), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2234), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2234), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2234), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2234), - }, - [654] = { - [sym_comment] = STATE(654), - [aux_sym__multiple_types_repeat1] = STATE(662), - [anon_sym_export] = ACTIONS(2434), - [anon_sym_alias] = ACTIONS(2434), - [anon_sym_let] = ACTIONS(2434), - [anon_sym_let_DASHenv] = ACTIONS(2434), - [anon_sym_mut] = ACTIONS(2434), - [anon_sym_const] = ACTIONS(2434), - [aux_sym_cmd_identifier_token1] = ACTIONS(2434), - [aux_sym_cmd_identifier_token2] = ACTIONS(2434), - [aux_sym_cmd_identifier_token3] = ACTIONS(2434), - [aux_sym_cmd_identifier_token4] = ACTIONS(2434), - [aux_sym_cmd_identifier_token5] = ACTIONS(2434), - [aux_sym_cmd_identifier_token6] = ACTIONS(2434), - [aux_sym_cmd_identifier_token7] = ACTIONS(2434), - [aux_sym_cmd_identifier_token8] = ACTIONS(2434), - [aux_sym_cmd_identifier_token9] = ACTIONS(2434), - [aux_sym_cmd_identifier_token10] = ACTIONS(2434), - [aux_sym_cmd_identifier_token11] = ACTIONS(2434), - [aux_sym_cmd_identifier_token12] = ACTIONS(2434), - [aux_sym_cmd_identifier_token13] = ACTIONS(2434), - [aux_sym_cmd_identifier_token14] = ACTIONS(2434), - [aux_sym_cmd_identifier_token15] = ACTIONS(2434), - [aux_sym_cmd_identifier_token16] = ACTIONS(2434), - [aux_sym_cmd_identifier_token17] = ACTIONS(2434), - [aux_sym_cmd_identifier_token18] = ACTIONS(2434), - [aux_sym_cmd_identifier_token19] = ACTIONS(2434), - [aux_sym_cmd_identifier_token20] = ACTIONS(2434), - [aux_sym_cmd_identifier_token21] = ACTIONS(2434), - [aux_sym_cmd_identifier_token22] = ACTIONS(2434), - [aux_sym_cmd_identifier_token23] = ACTIONS(2434), - [aux_sym_cmd_identifier_token24] = ACTIONS(2434), - [aux_sym_cmd_identifier_token25] = ACTIONS(2434), - [aux_sym_cmd_identifier_token26] = ACTIONS(2434), - [aux_sym_cmd_identifier_token27] = ACTIONS(2434), - [aux_sym_cmd_identifier_token28] = ACTIONS(2434), - [aux_sym_cmd_identifier_token29] = ACTIONS(2434), - [aux_sym_cmd_identifier_token30] = ACTIONS(2434), - [aux_sym_cmd_identifier_token31] = ACTIONS(2434), - [aux_sym_cmd_identifier_token32] = ACTIONS(2434), - [aux_sym_cmd_identifier_token33] = ACTIONS(2434), - [aux_sym_cmd_identifier_token34] = ACTIONS(2434), - [aux_sym_cmd_identifier_token35] = ACTIONS(2434), - [aux_sym_cmd_identifier_token36] = ACTIONS(2434), - [aux_sym_cmd_identifier_token37] = ACTIONS(2434), - [aux_sym_cmd_identifier_token38] = ACTIONS(2434), - [aux_sym_cmd_identifier_token39] = ACTIONS(2434), - [aux_sym_cmd_identifier_token40] = ACTIONS(2434), - [anon_sym_def] = ACTIONS(2434), - [anon_sym_export_DASHenv] = ACTIONS(2434), - [anon_sym_extern] = ACTIONS(2434), - [anon_sym_module] = ACTIONS(2434), - [anon_sym_use] = ACTIONS(2434), - [anon_sym_LPAREN] = ACTIONS(2434), - [anon_sym_DOLLAR] = ACTIONS(2434), - [anon_sym_error] = ACTIONS(2434), - [anon_sym_DASH2] = ACTIONS(2434), - [anon_sym_break] = ACTIONS(2434), - [anon_sym_continue] = ACTIONS(2434), - [anon_sym_for] = ACTIONS(2434), - [anon_sym_in2] = ACTIONS(2434), - [anon_sym_loop] = ACTIONS(2434), - [anon_sym_make] = ACTIONS(2434), - [anon_sym_while] = ACTIONS(2434), - [anon_sym_do] = ACTIONS(2434), - [anon_sym_if] = ACTIONS(2434), - [anon_sym_else] = ACTIONS(2434), - [anon_sym_match] = ACTIONS(2434), - [anon_sym_RBRACE] = ACTIONS(2476), - [anon_sym_try] = ACTIONS(2434), - [anon_sym_catch] = ACTIONS(2434), - [anon_sym_return] = ACTIONS(2434), - [anon_sym_source] = ACTIONS(2434), - [anon_sym_source_DASHenv] = ACTIONS(2434), - [anon_sym_register] = ACTIONS(2434), - [anon_sym_hide] = ACTIONS(2434), - [anon_sym_hide_DASHenv] = ACTIONS(2434), - [anon_sym_overlay] = ACTIONS(2434), - [anon_sym_as] = ACTIONS(2434), - [anon_sym_PLUS2] = ACTIONS(2434), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2434), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2434), - [aux_sym__val_number_decimal_token1] = ACTIONS(2434), - [aux_sym__val_number_decimal_token2] = ACTIONS(2434), - [aux_sym__val_number_decimal_token3] = ACTIONS(2434), - [aux_sym__val_number_decimal_token4] = ACTIONS(2434), - [aux_sym__val_number_token1] = ACTIONS(2434), - [aux_sym__val_number_token2] = ACTIONS(2434), - [aux_sym__val_number_token3] = ACTIONS(2434), - [aux_sym__val_number_token4] = ACTIONS(2434), - [aux_sym__val_number_token5] = ACTIONS(2434), - [aux_sym__val_number_token6] = ACTIONS(2434), - [anon_sym_DQUOTE] = ACTIONS(2434), - [sym__str_single_quotes] = ACTIONS(2434), - [sym__str_back_ticks] = ACTIONS(2434), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2434), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2434), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2434), - [sym__entry_separator] = ACTIONS(2318), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2438), - }, - [655] = { - [sym_comment] = STATE(655), - [anon_sym_export] = ACTIONS(1000), - [anon_sym_alias] = ACTIONS(1000), - [anon_sym_let] = ACTIONS(1000), - [anon_sym_let_DASHenv] = ACTIONS(1000), - [anon_sym_mut] = ACTIONS(1000), - [anon_sym_const] = ACTIONS(1000), - [aux_sym_cmd_identifier_token1] = ACTIONS(1000), - [aux_sym_cmd_identifier_token2] = ACTIONS(1000), - [aux_sym_cmd_identifier_token3] = ACTIONS(1000), - [aux_sym_cmd_identifier_token4] = ACTIONS(1000), - [aux_sym_cmd_identifier_token5] = ACTIONS(1000), - [aux_sym_cmd_identifier_token6] = ACTIONS(1000), - [aux_sym_cmd_identifier_token7] = ACTIONS(1000), - [aux_sym_cmd_identifier_token8] = ACTIONS(1000), - [aux_sym_cmd_identifier_token9] = ACTIONS(1000), - [aux_sym_cmd_identifier_token10] = ACTIONS(1000), - [aux_sym_cmd_identifier_token11] = ACTIONS(1000), - [aux_sym_cmd_identifier_token12] = ACTIONS(1000), - [aux_sym_cmd_identifier_token13] = ACTIONS(1000), - [aux_sym_cmd_identifier_token14] = ACTIONS(1000), - [aux_sym_cmd_identifier_token15] = ACTIONS(1000), - [aux_sym_cmd_identifier_token16] = ACTIONS(1000), - [aux_sym_cmd_identifier_token17] = ACTIONS(1000), - [aux_sym_cmd_identifier_token18] = ACTIONS(1000), - [aux_sym_cmd_identifier_token19] = ACTIONS(1000), - [aux_sym_cmd_identifier_token20] = ACTIONS(1000), - [aux_sym_cmd_identifier_token21] = ACTIONS(1000), - [aux_sym_cmd_identifier_token22] = ACTIONS(1000), - [aux_sym_cmd_identifier_token23] = ACTIONS(1000), - [aux_sym_cmd_identifier_token24] = ACTIONS(1000), - [aux_sym_cmd_identifier_token25] = ACTIONS(1000), - [aux_sym_cmd_identifier_token26] = ACTIONS(1000), - [aux_sym_cmd_identifier_token27] = ACTIONS(1000), - [aux_sym_cmd_identifier_token28] = ACTIONS(1000), - [aux_sym_cmd_identifier_token29] = ACTIONS(1000), - [aux_sym_cmd_identifier_token30] = ACTIONS(1000), - [aux_sym_cmd_identifier_token31] = ACTIONS(1000), - [aux_sym_cmd_identifier_token32] = ACTIONS(1000), - [aux_sym_cmd_identifier_token33] = ACTIONS(1000), - [aux_sym_cmd_identifier_token34] = ACTIONS(1000), - [aux_sym_cmd_identifier_token35] = ACTIONS(1000), - [aux_sym_cmd_identifier_token36] = ACTIONS(1000), - [aux_sym_cmd_identifier_token37] = ACTIONS(1000), - [aux_sym_cmd_identifier_token38] = ACTIONS(1000), - [aux_sym_cmd_identifier_token39] = ACTIONS(1000), - [aux_sym_cmd_identifier_token40] = ACTIONS(1000), - [anon_sym_def] = ACTIONS(1000), - [anon_sym_export_DASHenv] = ACTIONS(1000), - [anon_sym_extern] = ACTIONS(1000), - [anon_sym_module] = ACTIONS(1000), - [anon_sym_use] = ACTIONS(1000), - [anon_sym_LPAREN] = ACTIONS(1000), - [anon_sym_COMMA] = ACTIONS(1000), - [anon_sym_DOLLAR] = ACTIONS(1000), - [anon_sym_error] = ACTIONS(1000), - [anon_sym_DASH2] = ACTIONS(1000), - [anon_sym_break] = ACTIONS(1000), - [anon_sym_continue] = ACTIONS(1000), - [anon_sym_for] = ACTIONS(1000), - [anon_sym_in2] = ACTIONS(1000), - [anon_sym_loop] = ACTIONS(1000), - [anon_sym_make] = ACTIONS(1000), - [anon_sym_while] = ACTIONS(1000), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_if] = ACTIONS(1000), - [anon_sym_else] = ACTIONS(1000), - [anon_sym_match] = ACTIONS(1000), - [anon_sym_RBRACE] = ACTIONS(1000), - [anon_sym_try] = ACTIONS(1000), - [anon_sym_catch] = ACTIONS(1000), - [anon_sym_return] = ACTIONS(1000), - [anon_sym_source] = ACTIONS(1000), - [anon_sym_source_DASHenv] = ACTIONS(1000), - [anon_sym_register] = ACTIONS(1000), - [anon_sym_hide] = ACTIONS(1000), - [anon_sym_hide_DASHenv] = ACTIONS(1000), - [anon_sym_overlay] = ACTIONS(1000), - [anon_sym_as] = ACTIONS(1000), - [anon_sym_PLUS2] = ACTIONS(1000), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1000), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1000), - [aux_sym__val_number_decimal_token1] = ACTIONS(1000), - [aux_sym__val_number_decimal_token2] = ACTIONS(1000), - [aux_sym__val_number_decimal_token3] = ACTIONS(1000), - [aux_sym__val_number_decimal_token4] = ACTIONS(1000), - [aux_sym__val_number_token1] = ACTIONS(1000), - [aux_sym__val_number_token2] = ACTIONS(1000), - [aux_sym__val_number_token3] = ACTIONS(1000), - [aux_sym__val_number_token4] = ACTIONS(1000), - [aux_sym__val_number_token5] = ACTIONS(1000), - [aux_sym__val_number_token6] = ACTIONS(1000), - [anon_sym_DQUOTE] = ACTIONS(1000), - [sym__str_single_quotes] = ACTIONS(1000), - [sym__str_back_ticks] = ACTIONS(1000), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1000), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1000), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1000), - [sym__entry_separator] = ACTIONS(1002), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1002), - }, - [656] = { - [sym_comment] = STATE(656), - [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), - [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1855), - [anon_sym_DOLLAR] = ACTIONS(1855), - [anon_sym_error] = ACTIONS(1855), - [anon_sym_DASH2] = ACTIONS(1855), - [anon_sym_break] = ACTIONS(1855), - [anon_sym_continue] = ACTIONS(1855), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_in2] = 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_as] = ACTIONS(1855), - [anon_sym_PLUS2] = 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), - [aux_sym__val_number_token4] = ACTIONS(1855), - [aux_sym__val_number_token5] = ACTIONS(1855), - [aux_sym__val_number_token6] = ACTIONS(1855), - [anon_sym_DQUOTE] = ACTIONS(1855), - [sym__str_single_quotes] = ACTIONS(1855), - [sym__str_back_ticks] = ACTIONS(1855), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1855), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1855), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1855), - [sym__entry_separator] = ACTIONS(1857), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1857), - }, - [657] = { - [sym_comment] = STATE(657), - [anon_sym_export] = ACTIONS(2478), - [anon_sym_alias] = ACTIONS(2478), - [anon_sym_let] = ACTIONS(2478), - [anon_sym_let_DASHenv] = ACTIONS(2478), - [anon_sym_mut] = ACTIONS(2478), - [anon_sym_const] = ACTIONS(2478), - [aux_sym_cmd_identifier_token1] = ACTIONS(2478), - [aux_sym_cmd_identifier_token2] = ACTIONS(2478), - [aux_sym_cmd_identifier_token3] = ACTIONS(2478), - [aux_sym_cmd_identifier_token4] = ACTIONS(2478), - [aux_sym_cmd_identifier_token5] = ACTIONS(2478), - [aux_sym_cmd_identifier_token6] = ACTIONS(2478), - [aux_sym_cmd_identifier_token7] = ACTIONS(2478), - [aux_sym_cmd_identifier_token8] = ACTIONS(2478), - [aux_sym_cmd_identifier_token9] = ACTIONS(2478), - [aux_sym_cmd_identifier_token10] = ACTIONS(2478), - [aux_sym_cmd_identifier_token11] = ACTIONS(2478), - [aux_sym_cmd_identifier_token12] = ACTIONS(2478), - [aux_sym_cmd_identifier_token13] = ACTIONS(2478), - [aux_sym_cmd_identifier_token14] = ACTIONS(2478), - [aux_sym_cmd_identifier_token15] = ACTIONS(2478), - [aux_sym_cmd_identifier_token16] = ACTIONS(2478), - [aux_sym_cmd_identifier_token17] = ACTIONS(2478), - [aux_sym_cmd_identifier_token18] = ACTIONS(2478), - [aux_sym_cmd_identifier_token19] = ACTIONS(2478), - [aux_sym_cmd_identifier_token20] = ACTIONS(2478), - [aux_sym_cmd_identifier_token21] = ACTIONS(2478), - [aux_sym_cmd_identifier_token22] = ACTIONS(2478), - [aux_sym_cmd_identifier_token23] = ACTIONS(2478), - [aux_sym_cmd_identifier_token24] = ACTIONS(2478), - [aux_sym_cmd_identifier_token25] = ACTIONS(2478), - [aux_sym_cmd_identifier_token26] = ACTIONS(2478), - [aux_sym_cmd_identifier_token27] = ACTIONS(2478), - [aux_sym_cmd_identifier_token28] = ACTIONS(2478), - [aux_sym_cmd_identifier_token29] = ACTIONS(2478), - [aux_sym_cmd_identifier_token30] = ACTIONS(2478), - [aux_sym_cmd_identifier_token31] = ACTIONS(2478), - [aux_sym_cmd_identifier_token32] = ACTIONS(2478), - [aux_sym_cmd_identifier_token33] = ACTIONS(2478), - [aux_sym_cmd_identifier_token34] = ACTIONS(2478), - [aux_sym_cmd_identifier_token35] = ACTIONS(2478), - [aux_sym_cmd_identifier_token36] = ACTIONS(2478), - [aux_sym_cmd_identifier_token37] = ACTIONS(2478), - [aux_sym_cmd_identifier_token38] = ACTIONS(2478), - [aux_sym_cmd_identifier_token39] = ACTIONS(2478), - [aux_sym_cmd_identifier_token40] = ACTIONS(2478), - [anon_sym_def] = ACTIONS(2478), - [anon_sym_export_DASHenv] = ACTIONS(2478), - [anon_sym_extern] = ACTIONS(2478), - [anon_sym_module] = ACTIONS(2478), - [anon_sym_use] = ACTIONS(2478), - [anon_sym_LPAREN] = ACTIONS(2478), - [anon_sym_COMMA] = ACTIONS(2478), - [anon_sym_DOLLAR] = ACTIONS(2478), - [anon_sym_error] = ACTIONS(2478), - [anon_sym_DASH2] = ACTIONS(2478), - [anon_sym_break] = ACTIONS(2478), - [anon_sym_continue] = ACTIONS(2478), - [anon_sym_for] = ACTIONS(2478), - [anon_sym_in2] = ACTIONS(2478), - [anon_sym_loop] = ACTIONS(2478), - [anon_sym_make] = ACTIONS(2478), - [anon_sym_while] = ACTIONS(2478), - [anon_sym_do] = ACTIONS(2478), - [anon_sym_if] = ACTIONS(2478), - [anon_sym_else] = ACTIONS(2478), - [anon_sym_match] = ACTIONS(2478), - [anon_sym_RBRACE] = ACTIONS(2478), - [anon_sym_try] = ACTIONS(2478), - [anon_sym_catch] = ACTIONS(2478), - [anon_sym_return] = ACTIONS(2478), - [anon_sym_source] = ACTIONS(2478), - [anon_sym_source_DASHenv] = ACTIONS(2478), - [anon_sym_register] = ACTIONS(2478), - [anon_sym_hide] = ACTIONS(2478), - [anon_sym_hide_DASHenv] = ACTIONS(2478), - [anon_sym_overlay] = ACTIONS(2478), - [anon_sym_as] = ACTIONS(2478), - [anon_sym_PLUS2] = ACTIONS(2478), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2478), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2478), - [aux_sym__val_number_decimal_token1] = ACTIONS(2478), - [aux_sym__val_number_decimal_token2] = ACTIONS(2478), - [aux_sym__val_number_decimal_token3] = ACTIONS(2478), - [aux_sym__val_number_decimal_token4] = ACTIONS(2478), - [aux_sym__val_number_token1] = ACTIONS(2478), - [aux_sym__val_number_token2] = ACTIONS(2478), - [aux_sym__val_number_token3] = ACTIONS(2478), - [aux_sym__val_number_token4] = ACTIONS(2478), - [aux_sym__val_number_token5] = ACTIONS(2478), - [aux_sym__val_number_token6] = ACTIONS(2478), - [anon_sym_DQUOTE] = ACTIONS(2478), - [sym__str_single_quotes] = ACTIONS(2478), - [sym__str_back_ticks] = ACTIONS(2478), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2478), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2478), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2478), - [sym__entry_separator] = ACTIONS(2480), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2480), - }, - [658] = { - [sym_comment] = STATE(658), - [anon_sym_export] = ACTIONS(972), - [anon_sym_alias] = ACTIONS(972), - [anon_sym_let] = ACTIONS(972), - [anon_sym_let_DASHenv] = ACTIONS(972), - [anon_sym_mut] = ACTIONS(972), - [anon_sym_const] = ACTIONS(972), - [aux_sym_cmd_identifier_token1] = ACTIONS(972), - [aux_sym_cmd_identifier_token2] = ACTIONS(972), - [aux_sym_cmd_identifier_token3] = ACTIONS(972), - [aux_sym_cmd_identifier_token4] = ACTIONS(972), - [aux_sym_cmd_identifier_token5] = ACTIONS(972), - [aux_sym_cmd_identifier_token6] = ACTIONS(972), - [aux_sym_cmd_identifier_token7] = ACTIONS(972), - [aux_sym_cmd_identifier_token8] = ACTIONS(972), - [aux_sym_cmd_identifier_token9] = ACTIONS(972), - [aux_sym_cmd_identifier_token10] = ACTIONS(972), - [aux_sym_cmd_identifier_token11] = ACTIONS(972), - [aux_sym_cmd_identifier_token12] = ACTIONS(972), - [aux_sym_cmd_identifier_token13] = ACTIONS(972), - [aux_sym_cmd_identifier_token14] = ACTIONS(972), - [aux_sym_cmd_identifier_token15] = ACTIONS(972), - [aux_sym_cmd_identifier_token16] = ACTIONS(972), - [aux_sym_cmd_identifier_token17] = ACTIONS(972), - [aux_sym_cmd_identifier_token18] = ACTIONS(972), - [aux_sym_cmd_identifier_token19] = ACTIONS(972), - [aux_sym_cmd_identifier_token20] = ACTIONS(972), - [aux_sym_cmd_identifier_token21] = ACTIONS(972), - [aux_sym_cmd_identifier_token22] = ACTIONS(972), - [aux_sym_cmd_identifier_token23] = ACTIONS(972), - [aux_sym_cmd_identifier_token24] = ACTIONS(972), - [aux_sym_cmd_identifier_token25] = ACTIONS(972), - [aux_sym_cmd_identifier_token26] = ACTIONS(972), - [aux_sym_cmd_identifier_token27] = ACTIONS(972), - [aux_sym_cmd_identifier_token28] = ACTIONS(972), - [aux_sym_cmd_identifier_token29] = ACTIONS(972), - [aux_sym_cmd_identifier_token30] = ACTIONS(972), - [aux_sym_cmd_identifier_token31] = ACTIONS(972), - [aux_sym_cmd_identifier_token32] = ACTIONS(972), - [aux_sym_cmd_identifier_token33] = ACTIONS(972), - [aux_sym_cmd_identifier_token34] = ACTIONS(972), - [aux_sym_cmd_identifier_token35] = ACTIONS(972), - [aux_sym_cmd_identifier_token36] = ACTIONS(972), - [aux_sym_cmd_identifier_token37] = ACTIONS(972), - [aux_sym_cmd_identifier_token38] = ACTIONS(972), - [aux_sym_cmd_identifier_token39] = ACTIONS(972), - [aux_sym_cmd_identifier_token40] = ACTIONS(972), - [anon_sym_def] = ACTIONS(972), - [anon_sym_export_DASHenv] = ACTIONS(972), - [anon_sym_extern] = ACTIONS(972), - [anon_sym_module] = ACTIONS(972), - [anon_sym_use] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(972), - [anon_sym_COMMA] = ACTIONS(972), - [anon_sym_DOLLAR] = ACTIONS(972), - [anon_sym_error] = ACTIONS(972), - [anon_sym_DASH2] = ACTIONS(972), - [anon_sym_break] = ACTIONS(972), - [anon_sym_continue] = ACTIONS(972), - [anon_sym_for] = ACTIONS(972), - [anon_sym_in2] = ACTIONS(972), - [anon_sym_loop] = ACTIONS(972), - [anon_sym_make] = ACTIONS(972), - [anon_sym_while] = ACTIONS(972), - [anon_sym_do] = ACTIONS(972), - [anon_sym_if] = ACTIONS(972), - [anon_sym_else] = ACTIONS(972), - [anon_sym_match] = ACTIONS(972), - [anon_sym_RBRACE] = ACTIONS(972), - [anon_sym_try] = ACTIONS(972), - [anon_sym_catch] = ACTIONS(972), - [anon_sym_return] = ACTIONS(972), - [anon_sym_source] = ACTIONS(972), - [anon_sym_source_DASHenv] = ACTIONS(972), - [anon_sym_register] = ACTIONS(972), - [anon_sym_hide] = ACTIONS(972), - [anon_sym_hide_DASHenv] = ACTIONS(972), - [anon_sym_overlay] = ACTIONS(972), - [anon_sym_as] = ACTIONS(972), - [anon_sym_PLUS2] = ACTIONS(972), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(972), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(972), - [aux_sym__val_number_decimal_token1] = ACTIONS(972), - [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), - [aux_sym__val_number_token4] = ACTIONS(972), - [aux_sym__val_number_token5] = ACTIONS(972), - [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(972), - [sym__entry_separator] = ACTIONS(974), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(974), - }, - [659] = { - [sym_comment] = STATE(659), - [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), - [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(976), - [anon_sym_DOLLAR] = ACTIONS(976), - [anon_sym_error] = ACTIONS(976), - [anon_sym_DASH2] = ACTIONS(976), - [anon_sym_break] = ACTIONS(976), - [anon_sym_continue] = ACTIONS(976), - [anon_sym_for] = ACTIONS(976), - [anon_sym_in2] = 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_as] = ACTIONS(976), - [anon_sym_PLUS2] = 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), - [aux_sym__val_number_token4] = ACTIONS(976), - [aux_sym__val_number_token5] = ACTIONS(976), - [aux_sym__val_number_token6] = ACTIONS(976), - [anon_sym_DQUOTE] = ACTIONS(976), - [sym__str_single_quotes] = ACTIONS(976), - [sym__str_back_ticks] = ACTIONS(976), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(976), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(976), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(976), - [sym__entry_separator] = ACTIONS(978), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(978), - }, - [660] = { - [sym_comment] = STATE(660), - [anon_sym_export] = ACTIONS(984), - [anon_sym_alias] = ACTIONS(984), - [anon_sym_let] = ACTIONS(984), - [anon_sym_let_DASHenv] = ACTIONS(984), - [anon_sym_mut] = ACTIONS(984), - [anon_sym_const] = ACTIONS(984), - [aux_sym_cmd_identifier_token1] = ACTIONS(984), - [aux_sym_cmd_identifier_token2] = ACTIONS(984), - [aux_sym_cmd_identifier_token3] = ACTIONS(984), - [aux_sym_cmd_identifier_token4] = ACTIONS(984), - [aux_sym_cmd_identifier_token5] = ACTIONS(984), - [aux_sym_cmd_identifier_token6] = ACTIONS(984), - [aux_sym_cmd_identifier_token7] = ACTIONS(984), - [aux_sym_cmd_identifier_token8] = ACTIONS(984), - [aux_sym_cmd_identifier_token9] = ACTIONS(984), - [aux_sym_cmd_identifier_token10] = ACTIONS(984), - [aux_sym_cmd_identifier_token11] = ACTIONS(984), - [aux_sym_cmd_identifier_token12] = ACTIONS(984), - [aux_sym_cmd_identifier_token13] = ACTIONS(984), - [aux_sym_cmd_identifier_token14] = ACTIONS(984), - [aux_sym_cmd_identifier_token15] = ACTIONS(984), - [aux_sym_cmd_identifier_token16] = ACTIONS(984), - [aux_sym_cmd_identifier_token17] = ACTIONS(984), - [aux_sym_cmd_identifier_token18] = ACTIONS(984), - [aux_sym_cmd_identifier_token19] = ACTIONS(984), - [aux_sym_cmd_identifier_token20] = ACTIONS(984), - [aux_sym_cmd_identifier_token21] = ACTIONS(984), - [aux_sym_cmd_identifier_token22] = ACTIONS(984), - [aux_sym_cmd_identifier_token23] = ACTIONS(984), - [aux_sym_cmd_identifier_token24] = ACTIONS(984), - [aux_sym_cmd_identifier_token25] = ACTIONS(984), - [aux_sym_cmd_identifier_token26] = ACTIONS(984), - [aux_sym_cmd_identifier_token27] = ACTIONS(984), - [aux_sym_cmd_identifier_token28] = ACTIONS(984), - [aux_sym_cmd_identifier_token29] = ACTIONS(984), - [aux_sym_cmd_identifier_token30] = ACTIONS(984), - [aux_sym_cmd_identifier_token31] = ACTIONS(984), - [aux_sym_cmd_identifier_token32] = ACTIONS(984), - [aux_sym_cmd_identifier_token33] = ACTIONS(984), - [aux_sym_cmd_identifier_token34] = ACTIONS(984), - [aux_sym_cmd_identifier_token35] = ACTIONS(984), - [aux_sym_cmd_identifier_token36] = ACTIONS(984), - [aux_sym_cmd_identifier_token37] = ACTIONS(984), - [aux_sym_cmd_identifier_token38] = ACTIONS(984), - [aux_sym_cmd_identifier_token39] = ACTIONS(984), - [aux_sym_cmd_identifier_token40] = ACTIONS(984), - [anon_sym_def] = ACTIONS(984), - [anon_sym_export_DASHenv] = ACTIONS(984), - [anon_sym_extern] = ACTIONS(984), - [anon_sym_module] = ACTIONS(984), - [anon_sym_use] = ACTIONS(984), - [anon_sym_LPAREN] = ACTIONS(984), - [anon_sym_COMMA] = ACTIONS(984), - [anon_sym_DOLLAR] = ACTIONS(984), - [anon_sym_error] = ACTIONS(984), - [anon_sym_DASH2] = ACTIONS(984), - [anon_sym_break] = ACTIONS(984), - [anon_sym_continue] = ACTIONS(984), - [anon_sym_for] = ACTIONS(984), - [anon_sym_in2] = ACTIONS(984), - [anon_sym_loop] = ACTIONS(984), - [anon_sym_make] = ACTIONS(984), - [anon_sym_while] = ACTIONS(984), - [anon_sym_do] = ACTIONS(984), - [anon_sym_if] = ACTIONS(984), - [anon_sym_else] = ACTIONS(984), - [anon_sym_match] = ACTIONS(984), - [anon_sym_RBRACE] = ACTIONS(984), - [anon_sym_try] = ACTIONS(984), - [anon_sym_catch] = ACTIONS(984), - [anon_sym_return] = ACTIONS(984), - [anon_sym_source] = ACTIONS(984), - [anon_sym_source_DASHenv] = ACTIONS(984), - [anon_sym_register] = ACTIONS(984), - [anon_sym_hide] = ACTIONS(984), - [anon_sym_hide_DASHenv] = ACTIONS(984), - [anon_sym_overlay] = ACTIONS(984), - [anon_sym_as] = ACTIONS(984), - [anon_sym_PLUS2] = ACTIONS(984), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(984), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(984), - [aux_sym__val_number_decimal_token1] = ACTIONS(984), - [aux_sym__val_number_decimal_token2] = ACTIONS(984), - [aux_sym__val_number_decimal_token3] = ACTIONS(984), - [aux_sym__val_number_decimal_token4] = ACTIONS(984), - [aux_sym__val_number_token1] = ACTIONS(984), - [aux_sym__val_number_token2] = ACTIONS(984), - [aux_sym__val_number_token3] = ACTIONS(984), - [aux_sym__val_number_token4] = ACTIONS(984), - [aux_sym__val_number_token5] = ACTIONS(984), - [aux_sym__val_number_token6] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(984), - [sym__str_single_quotes] = ACTIONS(984), - [sym__str_back_ticks] = ACTIONS(984), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(984), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(984), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(984), - [sym__entry_separator] = ACTIONS(986), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(986), - }, - [661] = { - [sym_comment] = STATE(661), - [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), - [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(980), - [anon_sym_DOLLAR] = ACTIONS(980), - [anon_sym_error] = ACTIONS(980), - [anon_sym_DASH2] = ACTIONS(980), - [anon_sym_break] = ACTIONS(980), - [anon_sym_continue] = ACTIONS(980), - [anon_sym_for] = ACTIONS(980), - [anon_sym_in2] = 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_as] = ACTIONS(980), - [anon_sym_PLUS2] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT_LPAREN] = 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), - [aux_sym__val_number_token4] = ACTIONS(980), - [aux_sym__val_number_token5] = ACTIONS(980), - [aux_sym__val_number_token6] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(980), - [sym__str_single_quotes] = ACTIONS(980), - [sym__str_back_ticks] = ACTIONS(980), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(980), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(980), - [sym__entry_separator] = ACTIONS(982), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(982), - }, - [662] = { - [sym_comment] = STATE(662), - [aux_sym__multiple_types_repeat1] = STATE(662), - [anon_sym_export] = ACTIONS(2482), - [anon_sym_alias] = ACTIONS(2482), - [anon_sym_let] = ACTIONS(2482), - [anon_sym_let_DASHenv] = ACTIONS(2482), - [anon_sym_mut] = ACTIONS(2482), - [anon_sym_const] = ACTIONS(2482), - [aux_sym_cmd_identifier_token1] = ACTIONS(2482), - [aux_sym_cmd_identifier_token2] = ACTIONS(2482), - [aux_sym_cmd_identifier_token3] = ACTIONS(2482), - [aux_sym_cmd_identifier_token4] = ACTIONS(2482), - [aux_sym_cmd_identifier_token5] = ACTIONS(2482), - [aux_sym_cmd_identifier_token6] = ACTIONS(2482), - [aux_sym_cmd_identifier_token7] = ACTIONS(2482), - [aux_sym_cmd_identifier_token8] = ACTIONS(2482), - [aux_sym_cmd_identifier_token9] = ACTIONS(2482), - [aux_sym_cmd_identifier_token10] = ACTIONS(2482), - [aux_sym_cmd_identifier_token11] = ACTIONS(2482), - [aux_sym_cmd_identifier_token12] = ACTIONS(2482), - [aux_sym_cmd_identifier_token13] = ACTIONS(2482), - [aux_sym_cmd_identifier_token14] = ACTIONS(2482), - [aux_sym_cmd_identifier_token15] = ACTIONS(2482), - [aux_sym_cmd_identifier_token16] = ACTIONS(2482), - [aux_sym_cmd_identifier_token17] = ACTIONS(2482), - [aux_sym_cmd_identifier_token18] = ACTIONS(2482), - [aux_sym_cmd_identifier_token19] = ACTIONS(2482), - [aux_sym_cmd_identifier_token20] = ACTIONS(2482), - [aux_sym_cmd_identifier_token21] = ACTIONS(2482), - [aux_sym_cmd_identifier_token22] = ACTIONS(2482), - [aux_sym_cmd_identifier_token23] = ACTIONS(2482), - [aux_sym_cmd_identifier_token24] = ACTIONS(2482), - [aux_sym_cmd_identifier_token25] = ACTIONS(2482), - [aux_sym_cmd_identifier_token26] = ACTIONS(2482), - [aux_sym_cmd_identifier_token27] = ACTIONS(2482), - [aux_sym_cmd_identifier_token28] = ACTIONS(2482), - [aux_sym_cmd_identifier_token29] = ACTIONS(2482), - [aux_sym_cmd_identifier_token30] = ACTIONS(2482), - [aux_sym_cmd_identifier_token31] = ACTIONS(2482), - [aux_sym_cmd_identifier_token32] = ACTIONS(2482), - [aux_sym_cmd_identifier_token33] = ACTIONS(2482), - [aux_sym_cmd_identifier_token34] = ACTIONS(2482), - [aux_sym_cmd_identifier_token35] = ACTIONS(2482), - [aux_sym_cmd_identifier_token36] = ACTIONS(2482), - [aux_sym_cmd_identifier_token37] = ACTIONS(2482), - [aux_sym_cmd_identifier_token38] = ACTIONS(2482), - [aux_sym_cmd_identifier_token39] = ACTIONS(2482), - [aux_sym_cmd_identifier_token40] = ACTIONS(2482), - [anon_sym_def] = ACTIONS(2482), - [anon_sym_export_DASHenv] = ACTIONS(2482), - [anon_sym_extern] = ACTIONS(2482), - [anon_sym_module] = ACTIONS(2482), - [anon_sym_use] = ACTIONS(2482), - [anon_sym_LPAREN] = ACTIONS(2482), - [anon_sym_DOLLAR] = ACTIONS(2482), - [anon_sym_error] = ACTIONS(2482), - [anon_sym_DASH2] = ACTIONS(2482), - [anon_sym_break] = ACTIONS(2482), - [anon_sym_continue] = ACTIONS(2482), - [anon_sym_for] = ACTIONS(2482), - [anon_sym_in2] = ACTIONS(2482), - [anon_sym_loop] = ACTIONS(2482), - [anon_sym_make] = ACTIONS(2482), - [anon_sym_while] = ACTIONS(2482), - [anon_sym_do] = ACTIONS(2482), - [anon_sym_if] = ACTIONS(2482), - [anon_sym_else] = ACTIONS(2482), - [anon_sym_match] = ACTIONS(2482), - [anon_sym_RBRACE] = ACTIONS(2482), - [anon_sym_try] = ACTIONS(2482), - [anon_sym_catch] = ACTIONS(2482), - [anon_sym_return] = ACTIONS(2482), - [anon_sym_source] = ACTIONS(2482), - [anon_sym_source_DASHenv] = ACTIONS(2482), - [anon_sym_register] = ACTIONS(2482), - [anon_sym_hide] = ACTIONS(2482), - [anon_sym_hide_DASHenv] = ACTIONS(2482), - [anon_sym_overlay] = ACTIONS(2482), - [anon_sym_as] = ACTIONS(2482), - [anon_sym_PLUS2] = ACTIONS(2482), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2482), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2482), - [aux_sym__val_number_decimal_token1] = ACTIONS(2482), - [aux_sym__val_number_decimal_token2] = ACTIONS(2482), - [aux_sym__val_number_decimal_token3] = ACTIONS(2482), - [aux_sym__val_number_decimal_token4] = ACTIONS(2482), - [aux_sym__val_number_token1] = ACTIONS(2482), - [aux_sym__val_number_token2] = ACTIONS(2482), - [aux_sym__val_number_token3] = ACTIONS(2482), - [aux_sym__val_number_token4] = ACTIONS(2482), - [aux_sym__val_number_token5] = ACTIONS(2482), - [aux_sym__val_number_token6] = ACTIONS(2482), - [anon_sym_DQUOTE] = ACTIONS(2482), - [sym__str_single_quotes] = ACTIONS(2482), - [sym__str_back_ticks] = ACTIONS(2482), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2482), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2482), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2482), - [sym__entry_separator] = ACTIONS(2484), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2487), - }, - [663] = { - [sym_comment] = STATE(663), - [anon_sym_export] = ACTIONS(1638), - [anon_sym_alias] = ACTIONS(1638), - [anon_sym_let] = ACTIONS(1638), - [anon_sym_let_DASHenv] = ACTIONS(1638), - [anon_sym_mut] = ACTIONS(1638), - [anon_sym_const] = ACTIONS(1638), - [aux_sym_cmd_identifier_token1] = ACTIONS(1638), - [aux_sym_cmd_identifier_token2] = ACTIONS(1638), - [aux_sym_cmd_identifier_token3] = ACTIONS(1638), - [aux_sym_cmd_identifier_token4] = ACTIONS(1638), - [aux_sym_cmd_identifier_token5] = ACTIONS(1638), - [aux_sym_cmd_identifier_token6] = ACTIONS(1638), - [aux_sym_cmd_identifier_token7] = ACTIONS(1638), - [aux_sym_cmd_identifier_token8] = ACTIONS(1638), - [aux_sym_cmd_identifier_token9] = ACTIONS(1638), - [aux_sym_cmd_identifier_token10] = ACTIONS(1638), - [aux_sym_cmd_identifier_token11] = ACTIONS(1638), - [aux_sym_cmd_identifier_token12] = ACTIONS(1638), - [aux_sym_cmd_identifier_token13] = ACTIONS(1638), - [aux_sym_cmd_identifier_token14] = ACTIONS(1638), - [aux_sym_cmd_identifier_token15] = ACTIONS(1638), - [aux_sym_cmd_identifier_token16] = ACTIONS(1638), - [aux_sym_cmd_identifier_token17] = ACTIONS(1638), - [aux_sym_cmd_identifier_token18] = ACTIONS(1638), - [aux_sym_cmd_identifier_token19] = ACTIONS(1638), - [aux_sym_cmd_identifier_token20] = ACTIONS(1638), - [aux_sym_cmd_identifier_token21] = ACTIONS(1638), - [aux_sym_cmd_identifier_token22] = ACTIONS(1638), - [aux_sym_cmd_identifier_token23] = ACTIONS(1638), - [aux_sym_cmd_identifier_token24] = ACTIONS(1638), - [aux_sym_cmd_identifier_token25] = ACTIONS(1638), - [aux_sym_cmd_identifier_token26] = ACTIONS(1638), - [aux_sym_cmd_identifier_token27] = ACTIONS(1638), - [aux_sym_cmd_identifier_token28] = ACTIONS(1638), - [aux_sym_cmd_identifier_token29] = ACTIONS(1638), - [aux_sym_cmd_identifier_token30] = ACTIONS(1638), - [aux_sym_cmd_identifier_token31] = ACTIONS(1638), - [aux_sym_cmd_identifier_token32] = ACTIONS(1638), - [aux_sym_cmd_identifier_token33] = ACTIONS(1638), - [aux_sym_cmd_identifier_token34] = ACTIONS(1638), - [aux_sym_cmd_identifier_token35] = ACTIONS(1638), - [aux_sym_cmd_identifier_token36] = ACTIONS(1638), - [aux_sym_cmd_identifier_token37] = ACTIONS(1638), - [aux_sym_cmd_identifier_token38] = ACTIONS(1638), - [aux_sym_cmd_identifier_token39] = ACTIONS(1638), - [aux_sym_cmd_identifier_token40] = ACTIONS(1638), - [anon_sym_def] = ACTIONS(1638), - [anon_sym_export_DASHenv] = ACTIONS(1638), - [anon_sym_extern] = ACTIONS(1638), - [anon_sym_module] = ACTIONS(1638), - [anon_sym_use] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1638), - [anon_sym_COMMA] = ACTIONS(1638), - [anon_sym_DOLLAR] = ACTIONS(1638), - [anon_sym_error] = ACTIONS(1638), - [anon_sym_DASH2] = ACTIONS(1638), - [anon_sym_break] = ACTIONS(1638), - [anon_sym_continue] = ACTIONS(1638), - [anon_sym_for] = ACTIONS(1638), - [anon_sym_in2] = ACTIONS(1638), - [anon_sym_loop] = ACTIONS(1638), - [anon_sym_make] = ACTIONS(1638), - [anon_sym_while] = ACTIONS(1638), - [anon_sym_do] = ACTIONS(1638), - [anon_sym_if] = ACTIONS(1638), - [anon_sym_else] = ACTIONS(1638), - [anon_sym_match] = ACTIONS(1638), - [anon_sym_RBRACE] = ACTIONS(1638), - [anon_sym_try] = ACTIONS(1638), - [anon_sym_catch] = ACTIONS(1638), - [anon_sym_return] = ACTIONS(1638), - [anon_sym_source] = ACTIONS(1638), - [anon_sym_source_DASHenv] = ACTIONS(1638), - [anon_sym_register] = ACTIONS(1638), - [anon_sym_hide] = ACTIONS(1638), - [anon_sym_hide_DASHenv] = ACTIONS(1638), - [anon_sym_overlay] = ACTIONS(1638), - [anon_sym_as] = ACTIONS(1638), - [anon_sym_PLUS2] = ACTIONS(1638), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1638), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1638), - [aux_sym__val_number_decimal_token1] = ACTIONS(1638), - [aux_sym__val_number_decimal_token2] = ACTIONS(1638), - [aux_sym__val_number_decimal_token3] = ACTIONS(1638), - [aux_sym__val_number_decimal_token4] = ACTIONS(1638), - [aux_sym__val_number_token1] = ACTIONS(1638), - [aux_sym__val_number_token2] = ACTIONS(1638), - [aux_sym__val_number_token3] = ACTIONS(1638), - [aux_sym__val_number_token4] = ACTIONS(1638), - [aux_sym__val_number_token5] = ACTIONS(1638), - [aux_sym__val_number_token6] = ACTIONS(1638), - [anon_sym_DQUOTE] = ACTIONS(1638), - [sym__str_single_quotes] = ACTIONS(1638), - [sym__str_back_ticks] = ACTIONS(1638), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1638), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1638), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1638), - [sym__entry_separator] = ACTIONS(1650), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1650), - }, - [664] = { - [sym_comment] = STATE(664), - [anon_sym_export] = ACTIONS(2308), - [anon_sym_alias] = ACTIONS(2308), - [anon_sym_let] = ACTIONS(2308), - [anon_sym_let_DASHenv] = ACTIONS(2308), - [anon_sym_mut] = ACTIONS(2308), - [anon_sym_const] = ACTIONS(2308), - [aux_sym_cmd_identifier_token1] = ACTIONS(2308), - [aux_sym_cmd_identifier_token2] = ACTIONS(2310), - [aux_sym_cmd_identifier_token3] = ACTIONS(2310), - [aux_sym_cmd_identifier_token4] = ACTIONS(2310), - [aux_sym_cmd_identifier_token5] = ACTIONS(2310), - [aux_sym_cmd_identifier_token6] = ACTIONS(2310), - [aux_sym_cmd_identifier_token7] = ACTIONS(2310), - [aux_sym_cmd_identifier_token8] = ACTIONS(2308), - [aux_sym_cmd_identifier_token9] = ACTIONS(2308), - [aux_sym_cmd_identifier_token10] = ACTIONS(2310), - [aux_sym_cmd_identifier_token11] = ACTIONS(2310), - [aux_sym_cmd_identifier_token12] = ACTIONS(2308), - [aux_sym_cmd_identifier_token13] = ACTIONS(2308), - [aux_sym_cmd_identifier_token14] = ACTIONS(2308), - [aux_sym_cmd_identifier_token15] = ACTIONS(2308), - [aux_sym_cmd_identifier_token16] = ACTIONS(2310), - [aux_sym_cmd_identifier_token17] = ACTIONS(2310), - [aux_sym_cmd_identifier_token18] = ACTIONS(2310), - [aux_sym_cmd_identifier_token19] = ACTIONS(2310), - [aux_sym_cmd_identifier_token20] = ACTIONS(2310), - [aux_sym_cmd_identifier_token21] = ACTIONS(2310), - [aux_sym_cmd_identifier_token22] = ACTIONS(2310), - [aux_sym_cmd_identifier_token23] = ACTIONS(2310), - [aux_sym_cmd_identifier_token24] = ACTIONS(2310), - [aux_sym_cmd_identifier_token25] = ACTIONS(2310), - [aux_sym_cmd_identifier_token26] = ACTIONS(2310), - [aux_sym_cmd_identifier_token27] = ACTIONS(2310), - [aux_sym_cmd_identifier_token28] = ACTIONS(2310), - [aux_sym_cmd_identifier_token29] = ACTIONS(2310), - [aux_sym_cmd_identifier_token30] = ACTIONS(2310), - [aux_sym_cmd_identifier_token31] = ACTIONS(2310), - [aux_sym_cmd_identifier_token32] = ACTIONS(2310), - [aux_sym_cmd_identifier_token33] = ACTIONS(2310), - [aux_sym_cmd_identifier_token34] = ACTIONS(2308), - [aux_sym_cmd_identifier_token35] = ACTIONS(2310), - [aux_sym_cmd_identifier_token36] = ACTIONS(2310), - [aux_sym_cmd_identifier_token37] = ACTIONS(2310), - [aux_sym_cmd_identifier_token38] = ACTIONS(2308), - [aux_sym_cmd_identifier_token39] = ACTIONS(2310), - [aux_sym_cmd_identifier_token40] = ACTIONS(2310), - [anon_sym_def] = ACTIONS(2308), - [anon_sym_export_DASHenv] = ACTIONS(2308), - [anon_sym_extern] = ACTIONS(2308), - [anon_sym_module] = ACTIONS(2308), - [anon_sym_use] = ACTIONS(2308), - [anon_sym_LPAREN] = ACTIONS(2308), - [anon_sym_COMMA] = ACTIONS(2310), - [anon_sym_DOLLAR] = ACTIONS(2308), - [anon_sym_error] = ACTIONS(2308), - [anon_sym_DASH2] = ACTIONS(2308), - [anon_sym_break] = ACTIONS(2308), - [anon_sym_continue] = ACTIONS(2308), - [anon_sym_for] = ACTIONS(2308), - [anon_sym_in2] = ACTIONS(2308), - [anon_sym_loop] = ACTIONS(2308), - [anon_sym_make] = ACTIONS(2308), - [anon_sym_while] = ACTIONS(2308), - [anon_sym_do] = ACTIONS(2308), - [anon_sym_if] = ACTIONS(2308), - [anon_sym_else] = ACTIONS(2308), - [anon_sym_match] = ACTIONS(2308), - [anon_sym_RBRACE] = ACTIONS(2310), - [anon_sym_try] = ACTIONS(2308), - [anon_sym_catch] = ACTIONS(2308), - [anon_sym_return] = ACTIONS(2308), - [anon_sym_source] = ACTIONS(2308), - [anon_sym_source_DASHenv] = ACTIONS(2308), - [anon_sym_register] = ACTIONS(2308), - [anon_sym_hide] = ACTIONS(2308), - [anon_sym_hide_DASHenv] = ACTIONS(2308), - [anon_sym_overlay] = ACTIONS(2308), - [anon_sym_as] = ACTIONS(2308), - [anon_sym_LPAREN2] = ACTIONS(2310), - [anon_sym_PLUS2] = ACTIONS(2308), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2310), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2310), - [aux_sym__val_number_decimal_token1] = ACTIONS(2308), - [aux_sym__val_number_decimal_token2] = ACTIONS(2310), - [aux_sym__val_number_decimal_token3] = ACTIONS(2310), - [aux_sym__val_number_decimal_token4] = ACTIONS(2310), - [aux_sym__val_number_token1] = ACTIONS(2310), - [aux_sym__val_number_token2] = ACTIONS(2310), - [aux_sym__val_number_token3] = ACTIONS(2310), - [aux_sym__val_number_token4] = ACTIONS(2308), - [aux_sym__val_number_token5] = ACTIONS(2308), - [aux_sym__val_number_token6] = ACTIONS(2308), - [anon_sym_DQUOTE] = ACTIONS(2310), - [sym__str_single_quotes] = ACTIONS(2310), - [sym__str_back_ticks] = ACTIONS(2310), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2310), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2310), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2310), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2310), - }, - [665] = { - [sym_comment] = STATE(665), - [anon_sym_export] = ACTIONS(2489), - [anon_sym_alias] = ACTIONS(2489), - [anon_sym_let] = ACTIONS(2489), - [anon_sym_let_DASHenv] = ACTIONS(2489), - [anon_sym_mut] = ACTIONS(2489), - [anon_sym_const] = ACTIONS(2489), - [aux_sym_cmd_identifier_token1] = ACTIONS(2489), - [aux_sym_cmd_identifier_token2] = ACTIONS(2489), - [aux_sym_cmd_identifier_token3] = ACTIONS(2489), - [aux_sym_cmd_identifier_token4] = ACTIONS(2489), - [aux_sym_cmd_identifier_token5] = ACTIONS(2489), - [aux_sym_cmd_identifier_token6] = ACTIONS(2489), - [aux_sym_cmd_identifier_token7] = ACTIONS(2489), - [aux_sym_cmd_identifier_token8] = ACTIONS(2489), - [aux_sym_cmd_identifier_token9] = ACTIONS(2489), - [aux_sym_cmd_identifier_token10] = ACTIONS(2489), - [aux_sym_cmd_identifier_token11] = ACTIONS(2489), - [aux_sym_cmd_identifier_token12] = ACTIONS(2489), - [aux_sym_cmd_identifier_token13] = ACTIONS(2489), - [aux_sym_cmd_identifier_token14] = ACTIONS(2489), - [aux_sym_cmd_identifier_token15] = ACTIONS(2489), - [aux_sym_cmd_identifier_token16] = ACTIONS(2489), - [aux_sym_cmd_identifier_token17] = ACTIONS(2489), - [aux_sym_cmd_identifier_token18] = ACTIONS(2489), - [aux_sym_cmd_identifier_token19] = ACTIONS(2489), - [aux_sym_cmd_identifier_token20] = ACTIONS(2489), - [aux_sym_cmd_identifier_token21] = ACTIONS(2489), - [aux_sym_cmd_identifier_token22] = ACTIONS(2489), - [aux_sym_cmd_identifier_token23] = ACTIONS(2489), - [aux_sym_cmd_identifier_token24] = ACTIONS(2489), - [aux_sym_cmd_identifier_token25] = ACTIONS(2489), - [aux_sym_cmd_identifier_token26] = ACTIONS(2489), - [aux_sym_cmd_identifier_token27] = ACTIONS(2489), - [aux_sym_cmd_identifier_token28] = ACTIONS(2489), - [aux_sym_cmd_identifier_token29] = ACTIONS(2489), - [aux_sym_cmd_identifier_token30] = ACTIONS(2489), - [aux_sym_cmd_identifier_token31] = ACTIONS(2489), - [aux_sym_cmd_identifier_token32] = ACTIONS(2489), - [aux_sym_cmd_identifier_token33] = ACTIONS(2489), - [aux_sym_cmd_identifier_token34] = ACTIONS(2489), - [aux_sym_cmd_identifier_token35] = ACTIONS(2489), - [aux_sym_cmd_identifier_token36] = ACTIONS(2489), - [aux_sym_cmd_identifier_token37] = ACTIONS(2489), - [aux_sym_cmd_identifier_token38] = ACTIONS(2489), - [aux_sym_cmd_identifier_token39] = ACTIONS(2489), - [aux_sym_cmd_identifier_token40] = ACTIONS(2489), - [anon_sym_def] = ACTIONS(2489), - [anon_sym_export_DASHenv] = ACTIONS(2489), - [anon_sym_extern] = ACTIONS(2489), - [anon_sym_module] = ACTIONS(2489), - [anon_sym_use] = ACTIONS(2489), - [anon_sym_LPAREN] = ACTIONS(2489), - [anon_sym_COMMA] = ACTIONS(2489), - [anon_sym_DOLLAR] = ACTIONS(2489), - [anon_sym_error] = ACTIONS(2489), - [anon_sym_DASH2] = ACTIONS(2489), - [anon_sym_break] = ACTIONS(2489), - [anon_sym_continue] = ACTIONS(2489), - [anon_sym_for] = ACTIONS(2489), - [anon_sym_in2] = ACTIONS(2489), - [anon_sym_loop] = ACTIONS(2489), - [anon_sym_make] = ACTIONS(2489), - [anon_sym_while] = ACTIONS(2489), - [anon_sym_do] = ACTIONS(2489), - [anon_sym_if] = ACTIONS(2489), - [anon_sym_else] = ACTIONS(2489), - [anon_sym_match] = ACTIONS(2489), - [anon_sym_RBRACE] = ACTIONS(2489), - [anon_sym_try] = ACTIONS(2489), - [anon_sym_catch] = ACTIONS(2489), - [anon_sym_return] = ACTIONS(2489), - [anon_sym_source] = ACTIONS(2489), - [anon_sym_source_DASHenv] = ACTIONS(2489), - [anon_sym_register] = ACTIONS(2489), - [anon_sym_hide] = ACTIONS(2489), - [anon_sym_hide_DASHenv] = ACTIONS(2489), - [anon_sym_overlay] = ACTIONS(2489), - [anon_sym_as] = ACTIONS(2489), - [anon_sym_PLUS2] = ACTIONS(2489), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2489), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2489), - [aux_sym__val_number_decimal_token1] = ACTIONS(2489), - [aux_sym__val_number_decimal_token2] = ACTIONS(2489), - [aux_sym__val_number_decimal_token3] = ACTIONS(2489), - [aux_sym__val_number_decimal_token4] = ACTIONS(2489), - [aux_sym__val_number_token1] = ACTIONS(2489), - [aux_sym__val_number_token2] = ACTIONS(2489), - [aux_sym__val_number_token3] = ACTIONS(2489), - [aux_sym__val_number_token4] = ACTIONS(2489), - [aux_sym__val_number_token5] = ACTIONS(2489), - [aux_sym__val_number_token6] = ACTIONS(2489), - [anon_sym_DQUOTE] = ACTIONS(2489), - [sym__str_single_quotes] = ACTIONS(2489), - [sym__str_back_ticks] = ACTIONS(2489), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2489), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2489), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2489), - [sym__entry_separator] = ACTIONS(2491), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2491), - }, - [666] = { - [sym_comment] = STATE(666), - [anon_sym_export] = ACTIONS(2057), - [anon_sym_alias] = ACTIONS(2057), - [anon_sym_let] = ACTIONS(2057), - [anon_sym_let_DASHenv] = ACTIONS(2057), - [anon_sym_mut] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [aux_sym_cmd_identifier_token1] = ACTIONS(2057), - [aux_sym_cmd_identifier_token2] = ACTIONS(2057), - [aux_sym_cmd_identifier_token3] = ACTIONS(2057), - [aux_sym_cmd_identifier_token4] = ACTIONS(2057), - [aux_sym_cmd_identifier_token5] = ACTIONS(2057), - [aux_sym_cmd_identifier_token6] = ACTIONS(2057), - [aux_sym_cmd_identifier_token7] = ACTIONS(2057), - [aux_sym_cmd_identifier_token8] = ACTIONS(2057), - [aux_sym_cmd_identifier_token9] = ACTIONS(2057), - [aux_sym_cmd_identifier_token10] = ACTIONS(2057), - [aux_sym_cmd_identifier_token11] = ACTIONS(2057), - [aux_sym_cmd_identifier_token12] = ACTIONS(2057), - [aux_sym_cmd_identifier_token13] = ACTIONS(2057), - [aux_sym_cmd_identifier_token14] = ACTIONS(2057), - [aux_sym_cmd_identifier_token15] = ACTIONS(2057), - [aux_sym_cmd_identifier_token16] = ACTIONS(2057), - [aux_sym_cmd_identifier_token17] = ACTIONS(2057), - [aux_sym_cmd_identifier_token18] = ACTIONS(2057), - [aux_sym_cmd_identifier_token19] = ACTIONS(2057), - [aux_sym_cmd_identifier_token20] = ACTIONS(2057), - [aux_sym_cmd_identifier_token21] = ACTIONS(2057), - [aux_sym_cmd_identifier_token22] = ACTIONS(2057), - [aux_sym_cmd_identifier_token23] = ACTIONS(2057), - [aux_sym_cmd_identifier_token24] = ACTIONS(2057), - [aux_sym_cmd_identifier_token25] = ACTIONS(2057), - [aux_sym_cmd_identifier_token26] = ACTIONS(2057), - [aux_sym_cmd_identifier_token27] = ACTIONS(2057), - [aux_sym_cmd_identifier_token28] = ACTIONS(2057), - [aux_sym_cmd_identifier_token29] = ACTIONS(2057), - [aux_sym_cmd_identifier_token30] = ACTIONS(2057), - [aux_sym_cmd_identifier_token31] = ACTIONS(2057), - [aux_sym_cmd_identifier_token32] = ACTIONS(2057), - [aux_sym_cmd_identifier_token33] = ACTIONS(2057), - [aux_sym_cmd_identifier_token34] = ACTIONS(2057), - [aux_sym_cmd_identifier_token35] = ACTIONS(2057), - [aux_sym_cmd_identifier_token36] = ACTIONS(2057), - [aux_sym_cmd_identifier_token37] = ACTIONS(2057), - [aux_sym_cmd_identifier_token38] = ACTIONS(2057), - [aux_sym_cmd_identifier_token39] = ACTIONS(2057), - [aux_sym_cmd_identifier_token40] = ACTIONS(2057), - [anon_sym_def] = ACTIONS(2057), - [anon_sym_export_DASHenv] = ACTIONS(2057), - [anon_sym_extern] = ACTIONS(2057), - [anon_sym_module] = ACTIONS(2057), - [anon_sym_use] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_COMMA] = ACTIONS(2057), - [anon_sym_DOLLAR] = ACTIONS(2057), - [anon_sym_error] = ACTIONS(2057), - [anon_sym_DASH2] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_in2] = ACTIONS(2057), - [anon_sym_loop] = ACTIONS(2057), - [anon_sym_make] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_else] = ACTIONS(2057), - [anon_sym_match] = ACTIONS(2057), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_catch] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_source] = ACTIONS(2057), - [anon_sym_source_DASHenv] = ACTIONS(2057), - [anon_sym_register] = ACTIONS(2057), - [anon_sym_hide] = ACTIONS(2057), - [anon_sym_hide_DASHenv] = ACTIONS(2057), - [anon_sym_overlay] = ACTIONS(2057), - [anon_sym_as] = ACTIONS(2057), - [anon_sym_PLUS2] = ACTIONS(2057), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2057), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2057), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2057), - [aux_sym__val_number_decimal_token3] = ACTIONS(2057), - [aux_sym__val_number_decimal_token4] = ACTIONS(2057), - [aux_sym__val_number_token1] = ACTIONS(2057), - [aux_sym__val_number_token2] = ACTIONS(2057), - [aux_sym__val_number_token3] = ACTIONS(2057), - [aux_sym__val_number_token4] = ACTIONS(2057), - [aux_sym__val_number_token5] = ACTIONS(2057), - [aux_sym__val_number_token6] = ACTIONS(2057), - [anon_sym_DQUOTE] = ACTIONS(2057), - [sym__str_single_quotes] = ACTIONS(2057), - [sym__str_back_ticks] = ACTIONS(2057), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2057), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2057), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2057), - [sym__entry_separator] = ACTIONS(2059), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2059), - }, - [667] = { - [sym_comment] = STATE(667), - [anon_sym_export] = ACTIONS(2493), - [anon_sym_alias] = ACTIONS(2493), - [anon_sym_let] = ACTIONS(2493), - [anon_sym_let_DASHenv] = ACTIONS(2493), - [anon_sym_mut] = ACTIONS(2493), - [anon_sym_const] = ACTIONS(2493), - [aux_sym_cmd_identifier_token1] = ACTIONS(2493), - [aux_sym_cmd_identifier_token2] = ACTIONS(2493), - [aux_sym_cmd_identifier_token3] = ACTIONS(2493), - [aux_sym_cmd_identifier_token4] = ACTIONS(2493), - [aux_sym_cmd_identifier_token5] = ACTIONS(2493), - [aux_sym_cmd_identifier_token6] = ACTIONS(2493), - [aux_sym_cmd_identifier_token7] = ACTIONS(2493), - [aux_sym_cmd_identifier_token8] = ACTIONS(2493), - [aux_sym_cmd_identifier_token9] = ACTIONS(2493), - [aux_sym_cmd_identifier_token10] = ACTIONS(2493), - [aux_sym_cmd_identifier_token11] = ACTIONS(2493), - [aux_sym_cmd_identifier_token12] = ACTIONS(2493), - [aux_sym_cmd_identifier_token13] = ACTIONS(2493), - [aux_sym_cmd_identifier_token14] = ACTIONS(2493), - [aux_sym_cmd_identifier_token15] = ACTIONS(2493), - [aux_sym_cmd_identifier_token16] = ACTIONS(2493), - [aux_sym_cmd_identifier_token17] = ACTIONS(2493), - [aux_sym_cmd_identifier_token18] = ACTIONS(2493), - [aux_sym_cmd_identifier_token19] = ACTIONS(2493), - [aux_sym_cmd_identifier_token20] = ACTIONS(2493), - [aux_sym_cmd_identifier_token21] = ACTIONS(2493), - [aux_sym_cmd_identifier_token22] = ACTIONS(2493), - [aux_sym_cmd_identifier_token23] = ACTIONS(2493), - [aux_sym_cmd_identifier_token24] = ACTIONS(2493), - [aux_sym_cmd_identifier_token25] = ACTIONS(2493), - [aux_sym_cmd_identifier_token26] = ACTIONS(2493), - [aux_sym_cmd_identifier_token27] = ACTIONS(2493), - [aux_sym_cmd_identifier_token28] = ACTIONS(2493), - [aux_sym_cmd_identifier_token29] = ACTIONS(2493), - [aux_sym_cmd_identifier_token30] = ACTIONS(2493), - [aux_sym_cmd_identifier_token31] = ACTIONS(2493), - [aux_sym_cmd_identifier_token32] = ACTIONS(2493), - [aux_sym_cmd_identifier_token33] = ACTIONS(2493), - [aux_sym_cmd_identifier_token34] = ACTIONS(2493), - [aux_sym_cmd_identifier_token35] = ACTIONS(2493), - [aux_sym_cmd_identifier_token36] = ACTIONS(2493), - [aux_sym_cmd_identifier_token37] = ACTIONS(2493), - [aux_sym_cmd_identifier_token38] = ACTIONS(2493), - [aux_sym_cmd_identifier_token39] = ACTIONS(2493), - [aux_sym_cmd_identifier_token40] = ACTIONS(2493), - [anon_sym_def] = ACTIONS(2493), - [anon_sym_export_DASHenv] = ACTIONS(2493), - [anon_sym_extern] = ACTIONS(2493), - [anon_sym_module] = ACTIONS(2493), - [anon_sym_use] = ACTIONS(2493), - [anon_sym_LPAREN] = ACTIONS(2493), - [anon_sym_COMMA] = ACTIONS(2493), - [anon_sym_DOLLAR] = ACTIONS(2493), - [anon_sym_error] = ACTIONS(2493), - [anon_sym_DASH2] = ACTIONS(2493), - [anon_sym_break] = ACTIONS(2493), - [anon_sym_continue] = ACTIONS(2493), - [anon_sym_for] = ACTIONS(2493), - [anon_sym_in2] = ACTIONS(2493), - [anon_sym_loop] = ACTIONS(2493), - [anon_sym_make] = ACTIONS(2493), - [anon_sym_while] = ACTIONS(2493), - [anon_sym_do] = ACTIONS(2493), - [anon_sym_if] = ACTIONS(2493), - [anon_sym_else] = ACTIONS(2493), - [anon_sym_match] = ACTIONS(2493), - [anon_sym_RBRACE] = ACTIONS(2493), - [anon_sym_try] = ACTIONS(2493), - [anon_sym_catch] = ACTIONS(2493), - [anon_sym_return] = ACTIONS(2493), - [anon_sym_source] = ACTIONS(2493), - [anon_sym_source_DASHenv] = ACTIONS(2493), - [anon_sym_register] = ACTIONS(2493), - [anon_sym_hide] = ACTIONS(2493), - [anon_sym_hide_DASHenv] = ACTIONS(2493), - [anon_sym_overlay] = ACTIONS(2493), - [anon_sym_as] = ACTIONS(2493), - [anon_sym_PLUS2] = ACTIONS(2493), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2493), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2493), - [aux_sym__val_number_decimal_token1] = ACTIONS(2493), - [aux_sym__val_number_decimal_token2] = ACTIONS(2493), - [aux_sym__val_number_decimal_token3] = ACTIONS(2493), - [aux_sym__val_number_decimal_token4] = ACTIONS(2493), - [aux_sym__val_number_token1] = ACTIONS(2493), - [aux_sym__val_number_token2] = ACTIONS(2493), - [aux_sym__val_number_token3] = ACTIONS(2493), - [aux_sym__val_number_token4] = ACTIONS(2493), - [aux_sym__val_number_token5] = ACTIONS(2493), - [aux_sym__val_number_token6] = ACTIONS(2493), - [anon_sym_DQUOTE] = ACTIONS(2493), - [sym__str_single_quotes] = ACTIONS(2493), - [sym__str_back_ticks] = ACTIONS(2493), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2493), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2493), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2493), - [sym__entry_separator] = ACTIONS(2495), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2495), - }, - [668] = { - [sym_comment] = STATE(668), - [anon_sym_export] = ACTIONS(2497), - [anon_sym_alias] = ACTIONS(2497), - [anon_sym_let] = ACTIONS(2497), - [anon_sym_let_DASHenv] = ACTIONS(2497), - [anon_sym_mut] = ACTIONS(2497), - [anon_sym_const] = ACTIONS(2497), - [aux_sym_cmd_identifier_token1] = ACTIONS(2497), - [aux_sym_cmd_identifier_token2] = ACTIONS(2497), - [aux_sym_cmd_identifier_token3] = ACTIONS(2497), - [aux_sym_cmd_identifier_token4] = ACTIONS(2497), - [aux_sym_cmd_identifier_token5] = ACTIONS(2497), - [aux_sym_cmd_identifier_token6] = ACTIONS(2497), - [aux_sym_cmd_identifier_token7] = ACTIONS(2497), - [aux_sym_cmd_identifier_token8] = ACTIONS(2497), - [aux_sym_cmd_identifier_token9] = ACTIONS(2497), - [aux_sym_cmd_identifier_token10] = ACTIONS(2497), - [aux_sym_cmd_identifier_token11] = ACTIONS(2497), - [aux_sym_cmd_identifier_token12] = ACTIONS(2497), - [aux_sym_cmd_identifier_token13] = ACTIONS(2497), - [aux_sym_cmd_identifier_token14] = ACTIONS(2497), - [aux_sym_cmd_identifier_token15] = ACTIONS(2497), - [aux_sym_cmd_identifier_token16] = ACTIONS(2497), - [aux_sym_cmd_identifier_token17] = ACTIONS(2497), - [aux_sym_cmd_identifier_token18] = ACTIONS(2497), - [aux_sym_cmd_identifier_token19] = ACTIONS(2497), - [aux_sym_cmd_identifier_token20] = ACTIONS(2497), - [aux_sym_cmd_identifier_token21] = ACTIONS(2497), - [aux_sym_cmd_identifier_token22] = ACTIONS(2497), - [aux_sym_cmd_identifier_token23] = ACTIONS(2497), - [aux_sym_cmd_identifier_token24] = ACTIONS(2497), - [aux_sym_cmd_identifier_token25] = ACTIONS(2497), - [aux_sym_cmd_identifier_token26] = ACTIONS(2497), - [aux_sym_cmd_identifier_token27] = ACTIONS(2497), - [aux_sym_cmd_identifier_token28] = ACTIONS(2497), - [aux_sym_cmd_identifier_token29] = ACTIONS(2497), - [aux_sym_cmd_identifier_token30] = ACTIONS(2497), - [aux_sym_cmd_identifier_token31] = ACTIONS(2497), - [aux_sym_cmd_identifier_token32] = ACTIONS(2497), - [aux_sym_cmd_identifier_token33] = ACTIONS(2497), - [aux_sym_cmd_identifier_token34] = ACTIONS(2497), - [aux_sym_cmd_identifier_token35] = ACTIONS(2497), - [aux_sym_cmd_identifier_token36] = ACTIONS(2497), - [aux_sym_cmd_identifier_token37] = ACTIONS(2497), - [aux_sym_cmd_identifier_token38] = ACTIONS(2497), - [aux_sym_cmd_identifier_token39] = ACTIONS(2497), - [aux_sym_cmd_identifier_token40] = ACTIONS(2497), - [anon_sym_def] = ACTIONS(2497), - [anon_sym_export_DASHenv] = ACTIONS(2497), - [anon_sym_extern] = ACTIONS(2497), - [anon_sym_module] = ACTIONS(2497), - [anon_sym_use] = ACTIONS(2497), - [anon_sym_LPAREN] = ACTIONS(2497), - [anon_sym_COMMA] = ACTIONS(2497), - [anon_sym_DOLLAR] = ACTIONS(2497), - [anon_sym_error] = ACTIONS(2497), - [anon_sym_DASH2] = ACTIONS(2497), - [anon_sym_break] = ACTIONS(2497), - [anon_sym_continue] = ACTIONS(2497), - [anon_sym_for] = ACTIONS(2497), - [anon_sym_in2] = ACTIONS(2497), - [anon_sym_loop] = ACTIONS(2497), - [anon_sym_make] = ACTIONS(2497), - [anon_sym_while] = ACTIONS(2497), - [anon_sym_do] = ACTIONS(2497), - [anon_sym_if] = ACTIONS(2497), - [anon_sym_else] = ACTIONS(2497), - [anon_sym_match] = ACTIONS(2497), - [anon_sym_RBRACE] = ACTIONS(2497), - [anon_sym_try] = ACTIONS(2497), - [anon_sym_catch] = ACTIONS(2497), - [anon_sym_return] = ACTIONS(2497), - [anon_sym_source] = ACTIONS(2497), - [anon_sym_source_DASHenv] = ACTIONS(2497), - [anon_sym_register] = ACTIONS(2497), - [anon_sym_hide] = ACTIONS(2497), - [anon_sym_hide_DASHenv] = ACTIONS(2497), - [anon_sym_overlay] = ACTIONS(2497), - [anon_sym_as] = ACTIONS(2497), - [anon_sym_PLUS2] = ACTIONS(2497), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2497), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2497), - [aux_sym__val_number_decimal_token1] = ACTIONS(2497), - [aux_sym__val_number_decimal_token2] = ACTIONS(2497), - [aux_sym__val_number_decimal_token3] = ACTIONS(2497), - [aux_sym__val_number_decimal_token4] = ACTIONS(2497), - [aux_sym__val_number_token1] = ACTIONS(2497), - [aux_sym__val_number_token2] = ACTIONS(2497), - [aux_sym__val_number_token3] = ACTIONS(2497), - [aux_sym__val_number_token4] = ACTIONS(2497), - [aux_sym__val_number_token5] = ACTIONS(2497), - [aux_sym__val_number_token6] = ACTIONS(2497), - [anon_sym_DQUOTE] = ACTIONS(2497), - [sym__str_single_quotes] = ACTIONS(2497), - [sym__str_back_ticks] = ACTIONS(2497), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2497), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2497), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2497), - [sym__entry_separator] = ACTIONS(2499), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2499), - }, - [669] = { - [sym_comment] = STATE(669), - [anon_sym_export] = ACTIONS(1638), - [anon_sym_alias] = ACTIONS(1638), - [anon_sym_let] = ACTIONS(1638), - [anon_sym_let_DASHenv] = ACTIONS(1638), - [anon_sym_mut] = ACTIONS(1638), - [anon_sym_const] = ACTIONS(1638), - [aux_sym_cmd_identifier_token1] = ACTIONS(1638), - [aux_sym_cmd_identifier_token2] = ACTIONS(1650), - [aux_sym_cmd_identifier_token3] = ACTIONS(1650), - [aux_sym_cmd_identifier_token4] = ACTIONS(1650), - [aux_sym_cmd_identifier_token5] = ACTIONS(1650), - [aux_sym_cmd_identifier_token6] = ACTIONS(1650), - [aux_sym_cmd_identifier_token7] = ACTIONS(1650), - [aux_sym_cmd_identifier_token8] = ACTIONS(1638), - [aux_sym_cmd_identifier_token9] = ACTIONS(1638), - [aux_sym_cmd_identifier_token10] = ACTIONS(1650), - [aux_sym_cmd_identifier_token11] = ACTIONS(1650), - [aux_sym_cmd_identifier_token12] = ACTIONS(1638), - [aux_sym_cmd_identifier_token13] = ACTIONS(1638), - [aux_sym_cmd_identifier_token14] = ACTIONS(1638), - [aux_sym_cmd_identifier_token15] = ACTIONS(1638), - [aux_sym_cmd_identifier_token16] = ACTIONS(1650), - [aux_sym_cmd_identifier_token17] = ACTIONS(1650), - [aux_sym_cmd_identifier_token18] = ACTIONS(1650), - [aux_sym_cmd_identifier_token19] = ACTIONS(1650), - [aux_sym_cmd_identifier_token20] = ACTIONS(1650), - [aux_sym_cmd_identifier_token21] = ACTIONS(1650), - [aux_sym_cmd_identifier_token22] = ACTIONS(1650), - [aux_sym_cmd_identifier_token23] = ACTIONS(1650), - [aux_sym_cmd_identifier_token24] = ACTIONS(1650), - [aux_sym_cmd_identifier_token25] = ACTIONS(1650), - [aux_sym_cmd_identifier_token26] = ACTIONS(1650), - [aux_sym_cmd_identifier_token27] = ACTIONS(1650), - [aux_sym_cmd_identifier_token28] = ACTIONS(1650), - [aux_sym_cmd_identifier_token29] = ACTIONS(1650), - [aux_sym_cmd_identifier_token30] = ACTIONS(1650), - [aux_sym_cmd_identifier_token31] = ACTIONS(1650), - [aux_sym_cmd_identifier_token32] = ACTIONS(1650), - [aux_sym_cmd_identifier_token33] = ACTIONS(1650), - [aux_sym_cmd_identifier_token34] = ACTIONS(1638), - [aux_sym_cmd_identifier_token35] = ACTIONS(1650), - [aux_sym_cmd_identifier_token36] = ACTIONS(1650), - [aux_sym_cmd_identifier_token37] = ACTIONS(1650), - [aux_sym_cmd_identifier_token38] = ACTIONS(1638), - [aux_sym_cmd_identifier_token39] = ACTIONS(1650), - [aux_sym_cmd_identifier_token40] = ACTIONS(1650), - [anon_sym_def] = ACTIONS(1638), - [anon_sym_export_DASHenv] = ACTIONS(1638), - [anon_sym_extern] = ACTIONS(1638), - [anon_sym_module] = ACTIONS(1638), - [anon_sym_use] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_COMMA] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1638), - [anon_sym_error] = ACTIONS(1638), - [anon_sym_DASH2] = ACTIONS(1638), - [anon_sym_break] = ACTIONS(1638), - [anon_sym_continue] = ACTIONS(1638), - [anon_sym_for] = ACTIONS(1638), - [anon_sym_in2] = ACTIONS(1638), - [anon_sym_loop] = ACTIONS(1638), - [anon_sym_make] = ACTIONS(1638), - [anon_sym_while] = ACTIONS(1638), - [anon_sym_do] = ACTIONS(1638), - [anon_sym_if] = ACTIONS(1638), - [anon_sym_else] = ACTIONS(1638), - [anon_sym_match] = ACTIONS(1638), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_try] = ACTIONS(1638), - [anon_sym_catch] = ACTIONS(1638), - [anon_sym_return] = ACTIONS(1638), - [anon_sym_source] = ACTIONS(1638), - [anon_sym_source_DASHenv] = ACTIONS(1638), - [anon_sym_register] = ACTIONS(1638), - [anon_sym_hide] = ACTIONS(1638), - [anon_sym_hide_DASHenv] = ACTIONS(1638), - [anon_sym_overlay] = ACTIONS(1638), - [anon_sym_as] = ACTIONS(1638), - [anon_sym_PLUS2] = ACTIONS(1638), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1650), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1650), - [aux_sym__val_number_decimal_token1] = ACTIONS(1638), - [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), - [aux_sym__val_number_token4] = ACTIONS(1638), - [aux_sym__val_number_token5] = ACTIONS(1638), - [aux_sym__val_number_token6] = ACTIONS(1638), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1650), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1779), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1650), - }, - [670] = { - [sym_comment] = STATE(670), - [anon_sym_export] = ACTIONS(2292), - [anon_sym_alias] = ACTIONS(2292), - [anon_sym_let] = ACTIONS(2292), - [anon_sym_let_DASHenv] = ACTIONS(2292), - [anon_sym_mut] = ACTIONS(2292), - [anon_sym_const] = ACTIONS(2292), - [aux_sym_cmd_identifier_token1] = ACTIONS(2292), - [aux_sym_cmd_identifier_token2] = ACTIONS(2294), - [aux_sym_cmd_identifier_token3] = ACTIONS(2294), - [aux_sym_cmd_identifier_token4] = ACTIONS(2294), - [aux_sym_cmd_identifier_token5] = ACTIONS(2294), - [aux_sym_cmd_identifier_token6] = ACTIONS(2294), - [aux_sym_cmd_identifier_token7] = ACTIONS(2294), - [aux_sym_cmd_identifier_token8] = ACTIONS(2292), - [aux_sym_cmd_identifier_token9] = ACTIONS(2292), - [aux_sym_cmd_identifier_token10] = ACTIONS(2294), - [aux_sym_cmd_identifier_token11] = ACTIONS(2294), - [aux_sym_cmd_identifier_token12] = ACTIONS(2292), - [aux_sym_cmd_identifier_token13] = ACTIONS(2292), - [aux_sym_cmd_identifier_token14] = ACTIONS(2292), - [aux_sym_cmd_identifier_token15] = ACTIONS(2292), - [aux_sym_cmd_identifier_token16] = ACTIONS(2294), - [aux_sym_cmd_identifier_token17] = ACTIONS(2294), - [aux_sym_cmd_identifier_token18] = ACTIONS(2294), - [aux_sym_cmd_identifier_token19] = ACTIONS(2294), - [aux_sym_cmd_identifier_token20] = ACTIONS(2294), - [aux_sym_cmd_identifier_token21] = ACTIONS(2294), - [aux_sym_cmd_identifier_token22] = ACTIONS(2294), - [aux_sym_cmd_identifier_token23] = ACTIONS(2294), - [aux_sym_cmd_identifier_token24] = ACTIONS(2294), - [aux_sym_cmd_identifier_token25] = ACTIONS(2294), - [aux_sym_cmd_identifier_token26] = ACTIONS(2294), - [aux_sym_cmd_identifier_token27] = ACTIONS(2294), - [aux_sym_cmd_identifier_token28] = ACTIONS(2294), - [aux_sym_cmd_identifier_token29] = ACTIONS(2294), - [aux_sym_cmd_identifier_token30] = ACTIONS(2294), - [aux_sym_cmd_identifier_token31] = ACTIONS(2294), - [aux_sym_cmd_identifier_token32] = ACTIONS(2294), - [aux_sym_cmd_identifier_token33] = ACTIONS(2294), - [aux_sym_cmd_identifier_token34] = ACTIONS(2292), - [aux_sym_cmd_identifier_token35] = ACTIONS(2294), - [aux_sym_cmd_identifier_token36] = ACTIONS(2294), - [aux_sym_cmd_identifier_token37] = ACTIONS(2294), - [aux_sym_cmd_identifier_token38] = ACTIONS(2292), - [aux_sym_cmd_identifier_token39] = ACTIONS(2294), - [aux_sym_cmd_identifier_token40] = ACTIONS(2294), - [anon_sym_def] = ACTIONS(2292), - [anon_sym_export_DASHenv] = ACTIONS(2292), - [anon_sym_extern] = ACTIONS(2292), - [anon_sym_module] = ACTIONS(2292), - [anon_sym_use] = ACTIONS(2292), - [anon_sym_LPAREN] = ACTIONS(2292), - [anon_sym_COMMA] = ACTIONS(2294), - [anon_sym_DOLLAR] = ACTIONS(2292), - [anon_sym_error] = ACTIONS(2292), - [anon_sym_DASH2] = ACTIONS(2292), - [anon_sym_break] = ACTIONS(2292), - [anon_sym_continue] = ACTIONS(2292), - [anon_sym_for] = ACTIONS(2292), - [anon_sym_in2] = ACTIONS(2292), - [anon_sym_loop] = ACTIONS(2292), - [anon_sym_make] = ACTIONS(2292), - [anon_sym_while] = ACTIONS(2292), - [anon_sym_do] = ACTIONS(2292), - [anon_sym_if] = ACTIONS(2292), - [anon_sym_else] = ACTIONS(2292), - [anon_sym_match] = ACTIONS(2292), - [anon_sym_RBRACE] = ACTIONS(2294), - [anon_sym_try] = ACTIONS(2292), - [anon_sym_catch] = ACTIONS(2292), - [anon_sym_return] = ACTIONS(2292), - [anon_sym_source] = ACTIONS(2292), - [anon_sym_source_DASHenv] = ACTIONS(2292), - [anon_sym_register] = ACTIONS(2292), - [anon_sym_hide] = ACTIONS(2292), - [anon_sym_hide_DASHenv] = ACTIONS(2292), - [anon_sym_overlay] = ACTIONS(2292), - [anon_sym_as] = ACTIONS(2292), - [anon_sym_LPAREN2] = ACTIONS(2294), - [anon_sym_PLUS2] = ACTIONS(2292), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2294), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2294), - [aux_sym__val_number_decimal_token1] = ACTIONS(2292), - [aux_sym__val_number_decimal_token2] = ACTIONS(2294), - [aux_sym__val_number_decimal_token3] = ACTIONS(2294), - [aux_sym__val_number_decimal_token4] = ACTIONS(2294), - [aux_sym__val_number_token1] = ACTIONS(2294), - [aux_sym__val_number_token2] = ACTIONS(2294), - [aux_sym__val_number_token3] = ACTIONS(2294), - [aux_sym__val_number_token4] = ACTIONS(2292), - [aux_sym__val_number_token5] = ACTIONS(2292), - [aux_sym__val_number_token6] = ACTIONS(2292), - [anon_sym_DQUOTE] = ACTIONS(2294), - [sym__str_single_quotes] = ACTIONS(2294), - [sym__str_back_ticks] = ACTIONS(2294), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2294), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2294), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2294), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2294), - }, - [671] = { - [sym_comment] = STATE(671), - [anon_sym_export] = ACTIONS(2501), - [anon_sym_alias] = ACTIONS(2501), - [anon_sym_let] = ACTIONS(2501), - [anon_sym_let_DASHenv] = ACTIONS(2501), - [anon_sym_mut] = ACTIONS(2501), - [anon_sym_const] = ACTIONS(2501), - [aux_sym_cmd_identifier_token1] = ACTIONS(2501), - [aux_sym_cmd_identifier_token2] = ACTIONS(2501), - [aux_sym_cmd_identifier_token3] = ACTIONS(2501), - [aux_sym_cmd_identifier_token4] = ACTIONS(2501), - [aux_sym_cmd_identifier_token5] = ACTIONS(2501), - [aux_sym_cmd_identifier_token6] = ACTIONS(2501), - [aux_sym_cmd_identifier_token7] = ACTIONS(2501), - [aux_sym_cmd_identifier_token8] = ACTIONS(2501), - [aux_sym_cmd_identifier_token9] = ACTIONS(2501), - [aux_sym_cmd_identifier_token10] = ACTIONS(2501), - [aux_sym_cmd_identifier_token11] = ACTIONS(2501), - [aux_sym_cmd_identifier_token12] = ACTIONS(2501), - [aux_sym_cmd_identifier_token13] = ACTIONS(2501), - [aux_sym_cmd_identifier_token14] = ACTIONS(2501), - [aux_sym_cmd_identifier_token15] = ACTIONS(2501), - [aux_sym_cmd_identifier_token16] = ACTIONS(2501), - [aux_sym_cmd_identifier_token17] = ACTIONS(2501), - [aux_sym_cmd_identifier_token18] = ACTIONS(2501), - [aux_sym_cmd_identifier_token19] = ACTIONS(2501), - [aux_sym_cmd_identifier_token20] = ACTIONS(2501), - [aux_sym_cmd_identifier_token21] = ACTIONS(2501), - [aux_sym_cmd_identifier_token22] = ACTIONS(2501), - [aux_sym_cmd_identifier_token23] = ACTIONS(2501), - [aux_sym_cmd_identifier_token24] = ACTIONS(2501), - [aux_sym_cmd_identifier_token25] = ACTIONS(2501), - [aux_sym_cmd_identifier_token26] = ACTIONS(2501), - [aux_sym_cmd_identifier_token27] = ACTIONS(2501), - [aux_sym_cmd_identifier_token28] = ACTIONS(2501), - [aux_sym_cmd_identifier_token29] = ACTIONS(2501), - [aux_sym_cmd_identifier_token30] = ACTIONS(2501), - [aux_sym_cmd_identifier_token31] = ACTIONS(2501), - [aux_sym_cmd_identifier_token32] = ACTIONS(2501), - [aux_sym_cmd_identifier_token33] = ACTIONS(2501), - [aux_sym_cmd_identifier_token34] = ACTIONS(2501), - [aux_sym_cmd_identifier_token35] = ACTIONS(2501), - [aux_sym_cmd_identifier_token36] = ACTIONS(2501), - [aux_sym_cmd_identifier_token37] = ACTIONS(2501), - [aux_sym_cmd_identifier_token38] = ACTIONS(2501), - [aux_sym_cmd_identifier_token39] = ACTIONS(2501), - [aux_sym_cmd_identifier_token40] = ACTIONS(2501), - [anon_sym_def] = ACTIONS(2501), - [anon_sym_export_DASHenv] = ACTIONS(2501), - [anon_sym_extern] = ACTIONS(2501), - [anon_sym_module] = ACTIONS(2501), - [anon_sym_use] = ACTIONS(2501), - [anon_sym_LPAREN] = ACTIONS(2501), - [anon_sym_COMMA] = ACTIONS(2501), - [anon_sym_DOLLAR] = ACTIONS(2501), - [anon_sym_error] = ACTIONS(2501), - [anon_sym_DASH2] = ACTIONS(2501), - [anon_sym_break] = ACTIONS(2501), - [anon_sym_continue] = ACTIONS(2501), - [anon_sym_for] = ACTIONS(2501), - [anon_sym_in2] = ACTIONS(2501), - [anon_sym_loop] = ACTIONS(2501), - [anon_sym_make] = ACTIONS(2501), - [anon_sym_while] = ACTIONS(2501), - [anon_sym_do] = ACTIONS(2501), - [anon_sym_if] = ACTIONS(2501), - [anon_sym_else] = ACTIONS(2501), - [anon_sym_match] = ACTIONS(2501), - [anon_sym_RBRACE] = ACTIONS(2501), - [anon_sym_try] = ACTIONS(2501), - [anon_sym_catch] = ACTIONS(2501), - [anon_sym_return] = ACTIONS(2501), - [anon_sym_source] = ACTIONS(2501), - [anon_sym_source_DASHenv] = ACTIONS(2501), - [anon_sym_register] = ACTIONS(2501), - [anon_sym_hide] = ACTIONS(2501), - [anon_sym_hide_DASHenv] = ACTIONS(2501), - [anon_sym_overlay] = ACTIONS(2501), - [anon_sym_as] = ACTIONS(2501), - [anon_sym_PLUS2] = ACTIONS(2501), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2501), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2501), - [aux_sym__val_number_decimal_token1] = ACTIONS(2501), - [aux_sym__val_number_decimal_token2] = ACTIONS(2501), - [aux_sym__val_number_decimal_token3] = ACTIONS(2501), - [aux_sym__val_number_decimal_token4] = ACTIONS(2501), - [aux_sym__val_number_token1] = ACTIONS(2501), - [aux_sym__val_number_token2] = ACTIONS(2501), - [aux_sym__val_number_token3] = ACTIONS(2501), - [aux_sym__val_number_token4] = ACTIONS(2501), - [aux_sym__val_number_token5] = ACTIONS(2501), - [aux_sym__val_number_token6] = ACTIONS(2501), - [anon_sym_DQUOTE] = ACTIONS(2501), - [sym__str_single_quotes] = ACTIONS(2501), - [sym__str_back_ticks] = ACTIONS(2501), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2501), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2501), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2501), - [sym__entry_separator] = ACTIONS(2503), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2503), - }, - [672] = { - [sym_comment] = STATE(672), - [anon_sym_export] = ACTIONS(2061), - [anon_sym_alias] = ACTIONS(2061), - [anon_sym_let] = ACTIONS(2061), - [anon_sym_let_DASHenv] = ACTIONS(2061), - [anon_sym_mut] = ACTIONS(2061), - [anon_sym_const] = ACTIONS(2061), - [aux_sym_cmd_identifier_token1] = ACTIONS(2061), - [aux_sym_cmd_identifier_token2] = ACTIONS(2061), - [aux_sym_cmd_identifier_token3] = ACTIONS(2061), - [aux_sym_cmd_identifier_token4] = ACTIONS(2061), - [aux_sym_cmd_identifier_token5] = ACTIONS(2061), - [aux_sym_cmd_identifier_token6] = ACTIONS(2061), - [aux_sym_cmd_identifier_token7] = ACTIONS(2061), - [aux_sym_cmd_identifier_token8] = ACTIONS(2061), - [aux_sym_cmd_identifier_token9] = ACTIONS(2061), - [aux_sym_cmd_identifier_token10] = ACTIONS(2061), - [aux_sym_cmd_identifier_token11] = ACTIONS(2061), - [aux_sym_cmd_identifier_token12] = ACTIONS(2061), - [aux_sym_cmd_identifier_token13] = ACTIONS(2061), - [aux_sym_cmd_identifier_token14] = ACTIONS(2061), - [aux_sym_cmd_identifier_token15] = ACTIONS(2061), - [aux_sym_cmd_identifier_token16] = ACTIONS(2061), - [aux_sym_cmd_identifier_token17] = ACTIONS(2061), - [aux_sym_cmd_identifier_token18] = ACTIONS(2061), - [aux_sym_cmd_identifier_token19] = ACTIONS(2061), - [aux_sym_cmd_identifier_token20] = ACTIONS(2061), - [aux_sym_cmd_identifier_token21] = ACTIONS(2061), - [aux_sym_cmd_identifier_token22] = ACTIONS(2061), - [aux_sym_cmd_identifier_token23] = ACTIONS(2061), - [aux_sym_cmd_identifier_token24] = ACTIONS(2061), - [aux_sym_cmd_identifier_token25] = ACTIONS(2061), - [aux_sym_cmd_identifier_token26] = ACTIONS(2061), - [aux_sym_cmd_identifier_token27] = ACTIONS(2061), - [aux_sym_cmd_identifier_token28] = ACTIONS(2061), - [aux_sym_cmd_identifier_token29] = ACTIONS(2061), - [aux_sym_cmd_identifier_token30] = ACTIONS(2061), - [aux_sym_cmd_identifier_token31] = ACTIONS(2061), - [aux_sym_cmd_identifier_token32] = ACTIONS(2061), - [aux_sym_cmd_identifier_token33] = ACTIONS(2061), - [aux_sym_cmd_identifier_token34] = ACTIONS(2061), - [aux_sym_cmd_identifier_token35] = ACTIONS(2061), - [aux_sym_cmd_identifier_token36] = ACTIONS(2061), - [aux_sym_cmd_identifier_token37] = ACTIONS(2061), - [aux_sym_cmd_identifier_token38] = ACTIONS(2061), - [aux_sym_cmd_identifier_token39] = ACTIONS(2061), - [aux_sym_cmd_identifier_token40] = ACTIONS(2061), - [anon_sym_def] = ACTIONS(2061), - [anon_sym_export_DASHenv] = ACTIONS(2061), - [anon_sym_extern] = ACTIONS(2061), - [anon_sym_module] = ACTIONS(2061), - [anon_sym_use] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(2061), - [anon_sym_COMMA] = ACTIONS(2061), - [anon_sym_DOLLAR] = ACTIONS(2061), - [anon_sym_error] = ACTIONS(2061), - [anon_sym_DASH2] = ACTIONS(2061), - [anon_sym_break] = ACTIONS(2061), - [anon_sym_continue] = ACTIONS(2061), - [anon_sym_for] = ACTIONS(2061), - [anon_sym_in2] = ACTIONS(2061), - [anon_sym_loop] = ACTIONS(2061), - [anon_sym_make] = ACTIONS(2061), - [anon_sym_while] = ACTIONS(2061), - [anon_sym_do] = ACTIONS(2061), - [anon_sym_if] = ACTIONS(2061), - [anon_sym_else] = ACTIONS(2061), - [anon_sym_match] = ACTIONS(2061), - [anon_sym_RBRACE] = ACTIONS(2061), - [anon_sym_try] = ACTIONS(2061), - [anon_sym_catch] = ACTIONS(2061), - [anon_sym_return] = ACTIONS(2061), - [anon_sym_source] = ACTIONS(2061), - [anon_sym_source_DASHenv] = ACTIONS(2061), - [anon_sym_register] = ACTIONS(2061), - [anon_sym_hide] = ACTIONS(2061), - [anon_sym_hide_DASHenv] = ACTIONS(2061), - [anon_sym_overlay] = ACTIONS(2061), - [anon_sym_as] = ACTIONS(2061), - [anon_sym_PLUS2] = ACTIONS(2061), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2061), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2061), - [aux_sym__val_number_decimal_token1] = ACTIONS(2061), - [aux_sym__val_number_decimal_token2] = ACTIONS(2061), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(2061), - [aux_sym__val_number_token2] = ACTIONS(2061), - [aux_sym__val_number_token3] = ACTIONS(2061), - [aux_sym__val_number_token4] = ACTIONS(2061), - [aux_sym__val_number_token5] = ACTIONS(2061), - [aux_sym__val_number_token6] = ACTIONS(2061), - [anon_sym_DQUOTE] = ACTIONS(2061), - [sym__str_single_quotes] = ACTIONS(2061), - [sym__str_back_ticks] = ACTIONS(2061), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2061), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2061), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2061), - [sym__entry_separator] = ACTIONS(2063), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2063), - }, - [673] = { - [sym_comment] = STATE(673), - [anon_sym_export] = ACTIONS(2007), - [anon_sym_alias] = ACTIONS(2007), - [anon_sym_let] = ACTIONS(2007), - [anon_sym_let_DASHenv] = ACTIONS(2007), - [anon_sym_mut] = ACTIONS(2007), - [anon_sym_const] = ACTIONS(2007), - [aux_sym_cmd_identifier_token1] = ACTIONS(2007), - [aux_sym_cmd_identifier_token2] = ACTIONS(2007), - [aux_sym_cmd_identifier_token3] = ACTIONS(2007), - [aux_sym_cmd_identifier_token4] = ACTIONS(2007), - [aux_sym_cmd_identifier_token5] = ACTIONS(2007), - [aux_sym_cmd_identifier_token6] = ACTIONS(2007), - [aux_sym_cmd_identifier_token7] = ACTIONS(2007), - [aux_sym_cmd_identifier_token8] = ACTIONS(2007), - [aux_sym_cmd_identifier_token9] = ACTIONS(2007), - [aux_sym_cmd_identifier_token10] = ACTIONS(2007), - [aux_sym_cmd_identifier_token11] = ACTIONS(2007), - [aux_sym_cmd_identifier_token12] = ACTIONS(2007), - [aux_sym_cmd_identifier_token13] = ACTIONS(2007), - [aux_sym_cmd_identifier_token14] = ACTIONS(2007), - [aux_sym_cmd_identifier_token15] = ACTIONS(2007), - [aux_sym_cmd_identifier_token16] = ACTIONS(2007), - [aux_sym_cmd_identifier_token17] = ACTIONS(2007), - [aux_sym_cmd_identifier_token18] = ACTIONS(2007), - [aux_sym_cmd_identifier_token19] = ACTIONS(2007), - [aux_sym_cmd_identifier_token20] = ACTIONS(2007), - [aux_sym_cmd_identifier_token21] = ACTIONS(2007), - [aux_sym_cmd_identifier_token22] = ACTIONS(2007), - [aux_sym_cmd_identifier_token23] = ACTIONS(2007), - [aux_sym_cmd_identifier_token24] = ACTIONS(2007), - [aux_sym_cmd_identifier_token25] = ACTIONS(2007), - [aux_sym_cmd_identifier_token26] = ACTIONS(2007), - [aux_sym_cmd_identifier_token27] = ACTIONS(2007), - [aux_sym_cmd_identifier_token28] = ACTIONS(2007), - [aux_sym_cmd_identifier_token29] = ACTIONS(2007), - [aux_sym_cmd_identifier_token30] = ACTIONS(2007), - [aux_sym_cmd_identifier_token31] = ACTIONS(2007), - [aux_sym_cmd_identifier_token32] = ACTIONS(2007), - [aux_sym_cmd_identifier_token33] = ACTIONS(2007), - [aux_sym_cmd_identifier_token34] = ACTIONS(2007), - [aux_sym_cmd_identifier_token35] = ACTIONS(2007), - [aux_sym_cmd_identifier_token36] = ACTIONS(2007), - [aux_sym_cmd_identifier_token37] = ACTIONS(2007), - [aux_sym_cmd_identifier_token38] = ACTIONS(2007), - [aux_sym_cmd_identifier_token39] = ACTIONS(2007), - [aux_sym_cmd_identifier_token40] = ACTIONS(2007), - [anon_sym_def] = ACTIONS(2007), - [anon_sym_export_DASHenv] = ACTIONS(2007), - [anon_sym_extern] = ACTIONS(2007), - [anon_sym_module] = ACTIONS(2007), - [anon_sym_use] = ACTIONS(2007), - [anon_sym_LPAREN] = ACTIONS(2007), - [anon_sym_COMMA] = ACTIONS(2007), - [anon_sym_DOLLAR] = ACTIONS(2007), - [anon_sym_error] = ACTIONS(2007), - [anon_sym_DASH2] = ACTIONS(2007), - [anon_sym_break] = ACTIONS(2007), - [anon_sym_continue] = ACTIONS(2007), - [anon_sym_for] = ACTIONS(2007), - [anon_sym_in2] = ACTIONS(2007), - [anon_sym_loop] = ACTIONS(2007), - [anon_sym_make] = ACTIONS(2007), - [anon_sym_while] = ACTIONS(2007), - [anon_sym_do] = ACTIONS(2007), - [anon_sym_if] = ACTIONS(2007), - [anon_sym_else] = ACTIONS(2007), - [anon_sym_match] = ACTIONS(2007), - [anon_sym_RBRACE] = ACTIONS(2007), - [anon_sym_try] = ACTIONS(2007), - [anon_sym_catch] = ACTIONS(2007), - [anon_sym_return] = ACTIONS(2007), - [anon_sym_source] = ACTIONS(2007), - [anon_sym_source_DASHenv] = ACTIONS(2007), - [anon_sym_register] = ACTIONS(2007), - [anon_sym_hide] = ACTIONS(2007), - [anon_sym_hide_DASHenv] = ACTIONS(2007), - [anon_sym_overlay] = ACTIONS(2007), - [anon_sym_as] = ACTIONS(2007), - [anon_sym_PLUS2] = ACTIONS(2007), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2007), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2007), - [aux_sym__val_number_decimal_token1] = ACTIONS(2007), - [aux_sym__val_number_decimal_token2] = ACTIONS(2007), - [aux_sym__val_number_decimal_token3] = ACTIONS(2007), - [aux_sym__val_number_decimal_token4] = ACTIONS(2007), - [aux_sym__val_number_token1] = ACTIONS(2007), - [aux_sym__val_number_token2] = ACTIONS(2007), - [aux_sym__val_number_token3] = ACTIONS(2007), - [aux_sym__val_number_token4] = ACTIONS(2007), - [aux_sym__val_number_token5] = ACTIONS(2007), - [aux_sym__val_number_token6] = ACTIONS(2007), - [anon_sym_DQUOTE] = ACTIONS(2007), - [sym__str_single_quotes] = ACTIONS(2007), - [sym__str_back_ticks] = ACTIONS(2007), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2007), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2007), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2007), - [sym__entry_separator] = ACTIONS(2013), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2013), - }, - [674] = { - [sym_comment] = STATE(674), - [anon_sym_export] = ACTIONS(2505), - [anon_sym_alias] = ACTIONS(2505), - [anon_sym_let] = ACTIONS(2505), - [anon_sym_let_DASHenv] = ACTIONS(2505), - [anon_sym_mut] = ACTIONS(2505), - [anon_sym_const] = ACTIONS(2505), - [aux_sym_cmd_identifier_token1] = ACTIONS(2505), - [aux_sym_cmd_identifier_token2] = ACTIONS(2505), - [aux_sym_cmd_identifier_token3] = ACTIONS(2505), - [aux_sym_cmd_identifier_token4] = ACTIONS(2505), - [aux_sym_cmd_identifier_token5] = ACTIONS(2505), - [aux_sym_cmd_identifier_token6] = ACTIONS(2505), - [aux_sym_cmd_identifier_token7] = ACTIONS(2505), - [aux_sym_cmd_identifier_token8] = ACTIONS(2505), - [aux_sym_cmd_identifier_token9] = ACTIONS(2505), - [aux_sym_cmd_identifier_token10] = ACTIONS(2505), - [aux_sym_cmd_identifier_token11] = ACTIONS(2505), - [aux_sym_cmd_identifier_token12] = ACTIONS(2505), - [aux_sym_cmd_identifier_token13] = ACTIONS(2505), - [aux_sym_cmd_identifier_token14] = ACTIONS(2505), - [aux_sym_cmd_identifier_token15] = ACTIONS(2505), - [aux_sym_cmd_identifier_token16] = ACTIONS(2505), - [aux_sym_cmd_identifier_token17] = ACTIONS(2505), - [aux_sym_cmd_identifier_token18] = ACTIONS(2505), - [aux_sym_cmd_identifier_token19] = ACTIONS(2505), - [aux_sym_cmd_identifier_token20] = ACTIONS(2505), - [aux_sym_cmd_identifier_token21] = ACTIONS(2505), - [aux_sym_cmd_identifier_token22] = ACTIONS(2505), - [aux_sym_cmd_identifier_token23] = ACTIONS(2505), - [aux_sym_cmd_identifier_token24] = ACTIONS(2505), - [aux_sym_cmd_identifier_token25] = ACTIONS(2505), - [aux_sym_cmd_identifier_token26] = ACTIONS(2505), - [aux_sym_cmd_identifier_token27] = ACTIONS(2505), - [aux_sym_cmd_identifier_token28] = ACTIONS(2505), - [aux_sym_cmd_identifier_token29] = ACTIONS(2505), - [aux_sym_cmd_identifier_token30] = ACTIONS(2505), - [aux_sym_cmd_identifier_token31] = ACTIONS(2505), - [aux_sym_cmd_identifier_token32] = ACTIONS(2505), - [aux_sym_cmd_identifier_token33] = ACTIONS(2505), - [aux_sym_cmd_identifier_token34] = ACTIONS(2505), - [aux_sym_cmd_identifier_token35] = ACTIONS(2505), - [aux_sym_cmd_identifier_token36] = ACTIONS(2505), - [aux_sym_cmd_identifier_token37] = ACTIONS(2505), - [aux_sym_cmd_identifier_token38] = ACTIONS(2505), - [aux_sym_cmd_identifier_token39] = ACTIONS(2505), - [aux_sym_cmd_identifier_token40] = ACTIONS(2505), - [anon_sym_def] = ACTIONS(2505), - [anon_sym_export_DASHenv] = ACTIONS(2505), - [anon_sym_extern] = ACTIONS(2505), - [anon_sym_module] = ACTIONS(2505), - [anon_sym_use] = ACTIONS(2505), - [anon_sym_LPAREN] = ACTIONS(2505), - [anon_sym_COMMA] = ACTIONS(2505), - [anon_sym_DOLLAR] = ACTIONS(2505), - [anon_sym_error] = ACTIONS(2505), - [anon_sym_DASH2] = ACTIONS(2505), - [anon_sym_break] = ACTIONS(2505), - [anon_sym_continue] = ACTIONS(2505), - [anon_sym_for] = ACTIONS(2505), - [anon_sym_in2] = ACTIONS(2505), - [anon_sym_loop] = ACTIONS(2505), - [anon_sym_make] = ACTIONS(2505), - [anon_sym_while] = ACTIONS(2505), - [anon_sym_do] = ACTIONS(2505), - [anon_sym_if] = ACTIONS(2505), - [anon_sym_else] = ACTIONS(2505), - [anon_sym_match] = ACTIONS(2505), - [anon_sym_RBRACE] = ACTIONS(2505), - [anon_sym_try] = ACTIONS(2505), - [anon_sym_catch] = ACTIONS(2505), - [anon_sym_return] = ACTIONS(2505), - [anon_sym_source] = ACTIONS(2505), - [anon_sym_source_DASHenv] = ACTIONS(2505), - [anon_sym_register] = ACTIONS(2505), - [anon_sym_hide] = ACTIONS(2505), - [anon_sym_hide_DASHenv] = ACTIONS(2505), - [anon_sym_overlay] = ACTIONS(2505), - [anon_sym_as] = ACTIONS(2505), - [anon_sym_PLUS2] = ACTIONS(2505), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2505), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2505), - [aux_sym__val_number_decimal_token1] = ACTIONS(2505), - [aux_sym__val_number_decimal_token2] = ACTIONS(2505), - [aux_sym__val_number_decimal_token3] = ACTIONS(2505), - [aux_sym__val_number_decimal_token4] = ACTIONS(2505), - [aux_sym__val_number_token1] = ACTIONS(2505), - [aux_sym__val_number_token2] = ACTIONS(2505), - [aux_sym__val_number_token3] = ACTIONS(2505), - [aux_sym__val_number_token4] = ACTIONS(2505), - [aux_sym__val_number_token5] = ACTIONS(2505), - [aux_sym__val_number_token6] = ACTIONS(2505), - [anon_sym_DQUOTE] = ACTIONS(2505), - [sym__str_single_quotes] = ACTIONS(2505), - [sym__str_back_ticks] = ACTIONS(2505), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2505), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2505), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2505), - [sym__entry_separator] = ACTIONS(2507), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2507), - }, - [675] = { - [sym_comment] = STATE(675), - [anon_sym_export] = ACTIONS(2007), - [anon_sym_alias] = ACTIONS(2007), - [anon_sym_let] = ACTIONS(2007), - [anon_sym_let_DASHenv] = ACTIONS(2007), - [anon_sym_mut] = ACTIONS(2007), - [anon_sym_const] = ACTIONS(2007), - [aux_sym_cmd_identifier_token1] = ACTIONS(2007), - [aux_sym_cmd_identifier_token2] = ACTIONS(2013), - [aux_sym_cmd_identifier_token3] = ACTIONS(2013), - [aux_sym_cmd_identifier_token4] = ACTIONS(2013), - [aux_sym_cmd_identifier_token5] = ACTIONS(2013), - [aux_sym_cmd_identifier_token6] = ACTIONS(2013), - [aux_sym_cmd_identifier_token7] = ACTIONS(2013), - [aux_sym_cmd_identifier_token8] = ACTIONS(2007), - [aux_sym_cmd_identifier_token9] = ACTIONS(2007), - [aux_sym_cmd_identifier_token10] = ACTIONS(2013), - [aux_sym_cmd_identifier_token11] = ACTIONS(2013), - [aux_sym_cmd_identifier_token12] = ACTIONS(2007), - [aux_sym_cmd_identifier_token13] = ACTIONS(2007), - [aux_sym_cmd_identifier_token14] = ACTIONS(2007), - [aux_sym_cmd_identifier_token15] = ACTIONS(2007), - [aux_sym_cmd_identifier_token16] = ACTIONS(2013), - [aux_sym_cmd_identifier_token17] = ACTIONS(2013), - [aux_sym_cmd_identifier_token18] = ACTIONS(2013), - [aux_sym_cmd_identifier_token19] = ACTIONS(2013), - [aux_sym_cmd_identifier_token20] = ACTIONS(2013), - [aux_sym_cmd_identifier_token21] = ACTIONS(2013), - [aux_sym_cmd_identifier_token22] = ACTIONS(2013), - [aux_sym_cmd_identifier_token23] = ACTIONS(2013), - [aux_sym_cmd_identifier_token24] = ACTIONS(2013), - [aux_sym_cmd_identifier_token25] = ACTIONS(2013), - [aux_sym_cmd_identifier_token26] = ACTIONS(2013), - [aux_sym_cmd_identifier_token27] = ACTIONS(2013), - [aux_sym_cmd_identifier_token28] = ACTIONS(2013), - [aux_sym_cmd_identifier_token29] = ACTIONS(2013), - [aux_sym_cmd_identifier_token30] = ACTIONS(2013), - [aux_sym_cmd_identifier_token31] = ACTIONS(2013), - [aux_sym_cmd_identifier_token32] = ACTIONS(2013), - [aux_sym_cmd_identifier_token33] = ACTIONS(2013), - [aux_sym_cmd_identifier_token34] = ACTIONS(2007), - [aux_sym_cmd_identifier_token35] = ACTIONS(2013), - [aux_sym_cmd_identifier_token36] = ACTIONS(2013), - [aux_sym_cmd_identifier_token37] = ACTIONS(2013), - [aux_sym_cmd_identifier_token38] = ACTIONS(2007), - [aux_sym_cmd_identifier_token39] = ACTIONS(2013), - [aux_sym_cmd_identifier_token40] = ACTIONS(2013), - [anon_sym_def] = ACTIONS(2007), - [anon_sym_export_DASHenv] = ACTIONS(2007), - [anon_sym_extern] = ACTIONS(2007), - [anon_sym_module] = ACTIONS(2007), - [anon_sym_use] = ACTIONS(2007), - [anon_sym_LPAREN] = ACTIONS(2013), - [anon_sym_COMMA] = ACTIONS(2013), - [anon_sym_DOLLAR] = ACTIONS(2007), - [anon_sym_error] = ACTIONS(2007), - [anon_sym_DASH2] = ACTIONS(2007), - [anon_sym_break] = ACTIONS(2007), - [anon_sym_continue] = ACTIONS(2007), - [anon_sym_for] = ACTIONS(2007), - [anon_sym_in2] = ACTIONS(2007), - [anon_sym_loop] = ACTIONS(2007), - [anon_sym_make] = ACTIONS(2007), - [anon_sym_while] = ACTIONS(2007), - [anon_sym_do] = ACTIONS(2007), - [anon_sym_if] = ACTIONS(2007), - [anon_sym_else] = ACTIONS(2007), - [anon_sym_match] = ACTIONS(2007), - [anon_sym_RBRACE] = ACTIONS(2013), - [anon_sym_try] = ACTIONS(2007), - [anon_sym_catch] = ACTIONS(2007), - [anon_sym_return] = ACTIONS(2007), - [anon_sym_source] = ACTIONS(2007), - [anon_sym_source_DASHenv] = ACTIONS(2007), - [anon_sym_register] = ACTIONS(2007), - [anon_sym_hide] = ACTIONS(2007), - [anon_sym_hide_DASHenv] = ACTIONS(2007), - [anon_sym_overlay] = ACTIONS(2007), - [anon_sym_as] = ACTIONS(2007), - [anon_sym_PLUS2] = ACTIONS(2007), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2013), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2013), - [aux_sym__val_number_decimal_token1] = ACTIONS(2007), - [aux_sym__val_number_decimal_token2] = ACTIONS(2013), - [aux_sym__val_number_decimal_token3] = ACTIONS(2013), - [aux_sym__val_number_decimal_token4] = ACTIONS(2013), - [aux_sym__val_number_token1] = ACTIONS(2013), - [aux_sym__val_number_token2] = ACTIONS(2013), - [aux_sym__val_number_token3] = ACTIONS(2013), - [aux_sym__val_number_token4] = ACTIONS(2007), - [aux_sym__val_number_token5] = ACTIONS(2007), - [aux_sym__val_number_token6] = ACTIONS(2007), - [anon_sym_DQUOTE] = ACTIONS(2013), - [sym__str_single_quotes] = ACTIONS(2013), - [sym__str_back_ticks] = ACTIONS(2013), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2013), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2013), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2013), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2013), + [675] = { + [sym_comment] = STATE(675), + [anon_sym_export] = ACTIONS(2318), + [anon_sym_alias] = ACTIONS(2318), + [anon_sym_let] = ACTIONS(2318), + [anon_sym_let_DASHenv] = ACTIONS(2318), + [anon_sym_mut] = ACTIONS(2318), + [anon_sym_const] = ACTIONS(2318), + [aux_sym_cmd_identifier_token1] = ACTIONS(2318), + [aux_sym_cmd_identifier_token2] = ACTIONS(2320), + [aux_sym_cmd_identifier_token3] = ACTIONS(2320), + [aux_sym_cmd_identifier_token4] = ACTIONS(2320), + [aux_sym_cmd_identifier_token5] = ACTIONS(2320), + [aux_sym_cmd_identifier_token6] = ACTIONS(2320), + [aux_sym_cmd_identifier_token7] = ACTIONS(2320), + [aux_sym_cmd_identifier_token8] = ACTIONS(2318), + [aux_sym_cmd_identifier_token9] = ACTIONS(2318), + [aux_sym_cmd_identifier_token10] = ACTIONS(2320), + [aux_sym_cmd_identifier_token11] = ACTIONS(2320), + [aux_sym_cmd_identifier_token12] = ACTIONS(2318), + [aux_sym_cmd_identifier_token13] = ACTIONS(2318), + [aux_sym_cmd_identifier_token14] = ACTIONS(2318), + [aux_sym_cmd_identifier_token15] = ACTIONS(2318), + [aux_sym_cmd_identifier_token16] = ACTIONS(2320), + [aux_sym_cmd_identifier_token17] = ACTIONS(2320), + [aux_sym_cmd_identifier_token18] = ACTIONS(2320), + [aux_sym_cmd_identifier_token19] = ACTIONS(2320), + [aux_sym_cmd_identifier_token20] = ACTIONS(2320), + [aux_sym_cmd_identifier_token21] = ACTIONS(2320), + [aux_sym_cmd_identifier_token22] = ACTIONS(2320), + [aux_sym_cmd_identifier_token23] = ACTIONS(2320), + [aux_sym_cmd_identifier_token24] = ACTIONS(2320), + [aux_sym_cmd_identifier_token25] = ACTIONS(2320), + [aux_sym_cmd_identifier_token26] = ACTIONS(2320), + [aux_sym_cmd_identifier_token27] = ACTIONS(2320), + [aux_sym_cmd_identifier_token28] = ACTIONS(2320), + [aux_sym_cmd_identifier_token29] = ACTIONS(2320), + [aux_sym_cmd_identifier_token30] = ACTIONS(2320), + [aux_sym_cmd_identifier_token31] = ACTIONS(2320), + [aux_sym_cmd_identifier_token32] = ACTIONS(2320), + [aux_sym_cmd_identifier_token33] = ACTIONS(2320), + [aux_sym_cmd_identifier_token34] = ACTIONS(2318), + [aux_sym_cmd_identifier_token35] = ACTIONS(2320), + [aux_sym_cmd_identifier_token36] = ACTIONS(2320), + [aux_sym_cmd_identifier_token37] = ACTIONS(2320), + [aux_sym_cmd_identifier_token38] = ACTIONS(2318), + [aux_sym_cmd_identifier_token39] = ACTIONS(2320), + [aux_sym_cmd_identifier_token40] = ACTIONS(2320), + [anon_sym_def] = ACTIONS(2318), + [anon_sym_export_DASHenv] = ACTIONS(2318), + [anon_sym_extern] = ACTIONS(2318), + [anon_sym_module] = ACTIONS(2318), + [anon_sym_use] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2320), + [anon_sym_COMMA] = ACTIONS(2320), + [anon_sym_DOLLAR] = ACTIONS(2318), + [anon_sym_error] = ACTIONS(2318), + [anon_sym_DASH2] = ACTIONS(2318), + [anon_sym_break] = ACTIONS(2318), + [anon_sym_continue] = ACTIONS(2318), + [anon_sym_for] = ACTIONS(2318), + [anon_sym_in2] = ACTIONS(2318), + [anon_sym_loop] = ACTIONS(2318), + [anon_sym_make] = ACTIONS(2318), + [anon_sym_while] = ACTIONS(2318), + [anon_sym_do] = ACTIONS(2318), + [anon_sym_if] = ACTIONS(2318), + [anon_sym_else] = ACTIONS(2318), + [anon_sym_match] = ACTIONS(2318), + [anon_sym_RBRACE] = ACTIONS(2320), + [anon_sym_try] = ACTIONS(2318), + [anon_sym_catch] = ACTIONS(2318), + [anon_sym_return] = ACTIONS(2318), + [anon_sym_source] = ACTIONS(2318), + [anon_sym_source_DASHenv] = ACTIONS(2318), + [anon_sym_hide] = ACTIONS(2318), + [anon_sym_hide_DASHenv] = ACTIONS(2318), + [anon_sym_overlay] = ACTIONS(2318), + [anon_sym_as] = ACTIONS(2318), + [anon_sym_PLUS2] = ACTIONS(2318), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2320), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2320), + [aux_sym__val_number_decimal_token1] = ACTIONS(2318), + [aux_sym__val_number_decimal_token2] = ACTIONS(2320), + [aux_sym__val_number_decimal_token3] = ACTIONS(2320), + [aux_sym__val_number_decimal_token4] = ACTIONS(2320), + [aux_sym__val_number_token1] = ACTIONS(2320), + [aux_sym__val_number_token2] = ACTIONS(2320), + [aux_sym__val_number_token3] = ACTIONS(2320), + [aux_sym__val_number_token4] = ACTIONS(2318), + [aux_sym__val_number_token5] = ACTIONS(2318), + [aux_sym__val_number_token6] = ACTIONS(2318), + [anon_sym_DQUOTE] = ACTIONS(2320), + [sym__str_single_quotes] = ACTIONS(2320), + [sym__str_back_ticks] = ACTIONS(2320), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2320), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2320), + [anon_sym_register] = ACTIONS(2318), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2320), }, [676] = { [sym_comment] = STATE(676), - [anon_sym_export] = ACTIONS(2452), - [anon_sym_alias] = ACTIONS(2452), - [anon_sym_let] = ACTIONS(2452), - [anon_sym_let_DASHenv] = ACTIONS(2452), - [anon_sym_mut] = ACTIONS(2452), - [anon_sym_const] = ACTIONS(2452), - [aux_sym_cmd_identifier_token1] = ACTIONS(2452), - [aux_sym_cmd_identifier_token2] = ACTIONS(2454), - [aux_sym_cmd_identifier_token3] = ACTIONS(2454), - [aux_sym_cmd_identifier_token4] = ACTIONS(2454), - [aux_sym_cmd_identifier_token5] = ACTIONS(2454), - [aux_sym_cmd_identifier_token6] = ACTIONS(2454), - [aux_sym_cmd_identifier_token7] = ACTIONS(2454), - [aux_sym_cmd_identifier_token8] = ACTIONS(2452), - [aux_sym_cmd_identifier_token9] = ACTIONS(2452), - [aux_sym_cmd_identifier_token10] = ACTIONS(2454), - [aux_sym_cmd_identifier_token11] = ACTIONS(2454), - [aux_sym_cmd_identifier_token12] = ACTIONS(2452), - [aux_sym_cmd_identifier_token13] = ACTIONS(2452), - [aux_sym_cmd_identifier_token14] = ACTIONS(2452), - [aux_sym_cmd_identifier_token15] = ACTIONS(2452), - [aux_sym_cmd_identifier_token16] = ACTIONS(2454), - [aux_sym_cmd_identifier_token17] = ACTIONS(2454), - [aux_sym_cmd_identifier_token18] = ACTIONS(2454), - [aux_sym_cmd_identifier_token19] = ACTIONS(2454), - [aux_sym_cmd_identifier_token20] = ACTIONS(2454), - [aux_sym_cmd_identifier_token21] = ACTIONS(2454), - [aux_sym_cmd_identifier_token22] = ACTIONS(2454), - [aux_sym_cmd_identifier_token23] = ACTIONS(2454), - [aux_sym_cmd_identifier_token24] = ACTIONS(2454), - [aux_sym_cmd_identifier_token25] = ACTIONS(2454), - [aux_sym_cmd_identifier_token26] = ACTIONS(2454), - [aux_sym_cmd_identifier_token27] = ACTIONS(2454), - [aux_sym_cmd_identifier_token28] = ACTIONS(2454), - [aux_sym_cmd_identifier_token29] = ACTIONS(2454), - [aux_sym_cmd_identifier_token30] = ACTIONS(2454), - [aux_sym_cmd_identifier_token31] = ACTIONS(2454), - [aux_sym_cmd_identifier_token32] = ACTIONS(2454), - [aux_sym_cmd_identifier_token33] = ACTIONS(2454), - [aux_sym_cmd_identifier_token34] = ACTIONS(2452), - [aux_sym_cmd_identifier_token35] = ACTIONS(2454), - [aux_sym_cmd_identifier_token36] = ACTIONS(2454), - [aux_sym_cmd_identifier_token37] = ACTIONS(2454), - [aux_sym_cmd_identifier_token38] = ACTIONS(2452), - [aux_sym_cmd_identifier_token39] = ACTIONS(2454), - [aux_sym_cmd_identifier_token40] = ACTIONS(2454), - [anon_sym_def] = ACTIONS(2452), - [anon_sym_export_DASHenv] = ACTIONS(2452), - [anon_sym_extern] = ACTIONS(2452), - [anon_sym_module] = ACTIONS(2452), - [anon_sym_use] = ACTIONS(2452), - [anon_sym_LPAREN] = ACTIONS(2454), - [anon_sym_COMMA] = ACTIONS(2454), - [anon_sym_DOLLAR] = ACTIONS(2452), - [anon_sym_error] = ACTIONS(2452), - [anon_sym_DASH2] = ACTIONS(2452), - [anon_sym_break] = ACTIONS(2452), - [anon_sym_continue] = ACTIONS(2452), - [anon_sym_for] = ACTIONS(2452), - [anon_sym_in2] = ACTIONS(2452), - [anon_sym_loop] = ACTIONS(2452), - [anon_sym_make] = ACTIONS(2452), - [anon_sym_while] = ACTIONS(2452), - [anon_sym_do] = ACTIONS(2452), - [anon_sym_if] = ACTIONS(2452), - [anon_sym_else] = ACTIONS(2452), - [anon_sym_match] = ACTIONS(2452), - [anon_sym_RBRACE] = ACTIONS(2454), - [anon_sym_try] = ACTIONS(2452), - [anon_sym_catch] = ACTIONS(2452), - [anon_sym_return] = ACTIONS(2452), - [anon_sym_source] = ACTIONS(2452), - [anon_sym_source_DASHenv] = ACTIONS(2452), - [anon_sym_register] = ACTIONS(2452), - [anon_sym_hide] = ACTIONS(2452), - [anon_sym_hide_DASHenv] = ACTIONS(2452), - [anon_sym_overlay] = ACTIONS(2452), - [anon_sym_as] = ACTIONS(2452), - [anon_sym_PLUS2] = ACTIONS(2452), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2454), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2454), - [aux_sym__val_number_decimal_token1] = ACTIONS(2452), - [aux_sym__val_number_decimal_token2] = ACTIONS(2454), - [aux_sym__val_number_decimal_token3] = ACTIONS(2454), - [aux_sym__val_number_decimal_token4] = ACTIONS(2454), - [aux_sym__val_number_token1] = ACTIONS(2454), - [aux_sym__val_number_token2] = ACTIONS(2454), - [aux_sym__val_number_token3] = ACTIONS(2454), - [aux_sym__val_number_token4] = ACTIONS(2452), - [aux_sym__val_number_token5] = ACTIONS(2452), - [aux_sym__val_number_token6] = ACTIONS(2452), - [anon_sym_DQUOTE] = ACTIONS(2454), - [sym__str_single_quotes] = ACTIONS(2454), - [sym__str_back_ticks] = ACTIONS(2454), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2454), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2454), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2454), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2454), + [anon_sym_export] = ACTIONS(1833), + [anon_sym_alias] = ACTIONS(1833), + [anon_sym_let] = ACTIONS(1833), + [anon_sym_let_DASHenv] = ACTIONS(1833), + [anon_sym_mut] = ACTIONS(1833), + [anon_sym_const] = ACTIONS(1833), + [aux_sym_cmd_identifier_token1] = ACTIONS(1833), + [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(1833), + [aux_sym_cmd_identifier_token9] = ACTIONS(1833), + [aux_sym_cmd_identifier_token10] = ACTIONS(1835), + [aux_sym_cmd_identifier_token11] = ACTIONS(1835), + [aux_sym_cmd_identifier_token12] = ACTIONS(1833), + [aux_sym_cmd_identifier_token13] = ACTIONS(1833), + [aux_sym_cmd_identifier_token14] = ACTIONS(1833), + [aux_sym_cmd_identifier_token15] = ACTIONS(1833), + [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(1833), + [aux_sym_cmd_identifier_token35] = ACTIONS(1835), + [aux_sym_cmd_identifier_token36] = ACTIONS(1835), + [aux_sym_cmd_identifier_token37] = ACTIONS(1835), + [aux_sym_cmd_identifier_token38] = ACTIONS(1833), + [aux_sym_cmd_identifier_token39] = ACTIONS(1835), + [aux_sym_cmd_identifier_token40] = ACTIONS(1835), + [anon_sym_def] = ACTIONS(1833), + [anon_sym_export_DASHenv] = ACTIONS(1833), + [anon_sym_extern] = ACTIONS(1833), + [anon_sym_module] = ACTIONS(1833), + [anon_sym_use] = ACTIONS(1833), + [anon_sym_LPAREN] = ACTIONS(1835), + [anon_sym_COMMA] = ACTIONS(1835), + [anon_sym_DOLLAR] = ACTIONS(1833), + [anon_sym_error] = ACTIONS(1833), + [anon_sym_DASH2] = ACTIONS(1833), + [anon_sym_break] = ACTIONS(1833), + [anon_sym_continue] = ACTIONS(1833), + [anon_sym_for] = ACTIONS(1833), + [anon_sym_in2] = ACTIONS(1833), + [anon_sym_loop] = ACTIONS(1833), + [anon_sym_make] = ACTIONS(1833), + [anon_sym_while] = ACTIONS(1833), + [anon_sym_do] = ACTIONS(1833), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_else] = ACTIONS(1833), + [anon_sym_match] = ACTIONS(1833), + [anon_sym_RBRACE] = ACTIONS(1835), + [anon_sym_try] = ACTIONS(1833), + [anon_sym_catch] = ACTIONS(1833), + [anon_sym_return] = ACTIONS(1833), + [anon_sym_source] = ACTIONS(1833), + [anon_sym_source_DASHenv] = ACTIONS(1833), + [anon_sym_hide] = ACTIONS(1833), + [anon_sym_hide_DASHenv] = ACTIONS(1833), + [anon_sym_overlay] = ACTIONS(1833), + [anon_sym_as] = ACTIONS(1833), + [anon_sym_PLUS2] = ACTIONS(1833), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1835), + [aux_sym__val_number_decimal_token1] = ACTIONS(1833), + [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), + [aux_sym__val_number_token4] = ACTIONS(1833), + [aux_sym__val_number_token5] = ACTIONS(1833), + [aux_sym__val_number_token6] = ACTIONS(1833), + [anon_sym_DQUOTE] = ACTIONS(1835), + [sym__str_single_quotes] = ACTIONS(1835), + [sym__str_back_ticks] = ACTIONS(1835), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1835), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1835), + [anon_sym_register] = ACTIONS(1833), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1835), }, [677] = { [sym_comment] = STATE(677), - [anon_sym_export] = ACTIONS(2456), - [anon_sym_alias] = ACTIONS(2456), - [anon_sym_let] = ACTIONS(2456), - [anon_sym_let_DASHenv] = ACTIONS(2456), - [anon_sym_mut] = ACTIONS(2456), - [anon_sym_const] = ACTIONS(2456), - [aux_sym_cmd_identifier_token1] = ACTIONS(2456), - [aux_sym_cmd_identifier_token2] = ACTIONS(2458), - [aux_sym_cmd_identifier_token3] = ACTIONS(2458), - [aux_sym_cmd_identifier_token4] = ACTIONS(2458), - [aux_sym_cmd_identifier_token5] = ACTIONS(2458), - [aux_sym_cmd_identifier_token6] = ACTIONS(2458), - [aux_sym_cmd_identifier_token7] = ACTIONS(2458), - [aux_sym_cmd_identifier_token8] = ACTIONS(2456), - [aux_sym_cmd_identifier_token9] = ACTIONS(2456), - [aux_sym_cmd_identifier_token10] = ACTIONS(2458), - [aux_sym_cmd_identifier_token11] = ACTIONS(2458), - [aux_sym_cmd_identifier_token12] = ACTIONS(2456), - [aux_sym_cmd_identifier_token13] = ACTIONS(2456), - [aux_sym_cmd_identifier_token14] = ACTIONS(2456), - [aux_sym_cmd_identifier_token15] = ACTIONS(2456), - [aux_sym_cmd_identifier_token16] = ACTIONS(2458), - [aux_sym_cmd_identifier_token17] = ACTIONS(2458), - [aux_sym_cmd_identifier_token18] = ACTIONS(2458), - [aux_sym_cmd_identifier_token19] = ACTIONS(2458), - [aux_sym_cmd_identifier_token20] = ACTIONS(2458), - [aux_sym_cmd_identifier_token21] = ACTIONS(2458), - [aux_sym_cmd_identifier_token22] = ACTIONS(2458), - [aux_sym_cmd_identifier_token23] = ACTIONS(2458), - [aux_sym_cmd_identifier_token24] = ACTIONS(2458), - [aux_sym_cmd_identifier_token25] = ACTIONS(2458), - [aux_sym_cmd_identifier_token26] = ACTIONS(2458), - [aux_sym_cmd_identifier_token27] = ACTIONS(2458), - [aux_sym_cmd_identifier_token28] = ACTIONS(2458), - [aux_sym_cmd_identifier_token29] = ACTIONS(2458), - [aux_sym_cmd_identifier_token30] = ACTIONS(2458), - [aux_sym_cmd_identifier_token31] = ACTIONS(2458), - [aux_sym_cmd_identifier_token32] = ACTIONS(2458), - [aux_sym_cmd_identifier_token33] = ACTIONS(2458), - [aux_sym_cmd_identifier_token34] = ACTIONS(2456), - [aux_sym_cmd_identifier_token35] = ACTIONS(2458), - [aux_sym_cmd_identifier_token36] = ACTIONS(2458), - [aux_sym_cmd_identifier_token37] = ACTIONS(2458), - [aux_sym_cmd_identifier_token38] = ACTIONS(2456), - [aux_sym_cmd_identifier_token39] = ACTIONS(2458), - [aux_sym_cmd_identifier_token40] = ACTIONS(2458), - [anon_sym_def] = ACTIONS(2456), - [anon_sym_export_DASHenv] = ACTIONS(2456), - [anon_sym_extern] = ACTIONS(2456), - [anon_sym_module] = ACTIONS(2456), - [anon_sym_use] = ACTIONS(2456), - [anon_sym_LPAREN] = ACTIONS(2458), - [anon_sym_COMMA] = ACTIONS(2458), - [anon_sym_DOLLAR] = ACTIONS(2456), - [anon_sym_error] = ACTIONS(2456), - [anon_sym_DASH2] = ACTIONS(2456), - [anon_sym_break] = ACTIONS(2456), - [anon_sym_continue] = ACTIONS(2456), - [anon_sym_for] = ACTIONS(2456), - [anon_sym_in2] = ACTIONS(2456), - [anon_sym_loop] = ACTIONS(2456), - [anon_sym_make] = ACTIONS(2456), - [anon_sym_while] = ACTIONS(2456), - [anon_sym_do] = ACTIONS(2456), - [anon_sym_if] = ACTIONS(2456), - [anon_sym_else] = ACTIONS(2456), - [anon_sym_match] = ACTIONS(2456), - [anon_sym_RBRACE] = ACTIONS(2458), - [anon_sym_try] = ACTIONS(2456), - [anon_sym_catch] = ACTIONS(2456), - [anon_sym_return] = ACTIONS(2456), - [anon_sym_source] = ACTIONS(2456), - [anon_sym_source_DASHenv] = ACTIONS(2456), - [anon_sym_register] = ACTIONS(2456), - [anon_sym_hide] = ACTIONS(2456), - [anon_sym_hide_DASHenv] = ACTIONS(2456), - [anon_sym_overlay] = ACTIONS(2456), - [anon_sym_as] = ACTIONS(2456), - [anon_sym_PLUS2] = ACTIONS(2456), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2458), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2458), - [aux_sym__val_number_decimal_token1] = ACTIONS(2456), - [aux_sym__val_number_decimal_token2] = ACTIONS(2458), - [aux_sym__val_number_decimal_token3] = ACTIONS(2458), - [aux_sym__val_number_decimal_token4] = ACTIONS(2458), - [aux_sym__val_number_token1] = ACTIONS(2458), - [aux_sym__val_number_token2] = ACTIONS(2458), - [aux_sym__val_number_token3] = ACTIONS(2458), - [aux_sym__val_number_token4] = ACTIONS(2456), - [aux_sym__val_number_token5] = ACTIONS(2456), - [aux_sym__val_number_token6] = ACTIONS(2456), - [anon_sym_DQUOTE] = ACTIONS(2458), - [sym__str_single_quotes] = ACTIONS(2458), - [sym__str_back_ticks] = ACTIONS(2458), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2458), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2458), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2458), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2458), + [anon_sym_export] = ACTIONS(2477), + [anon_sym_alias] = ACTIONS(2477), + [anon_sym_let] = ACTIONS(2477), + [anon_sym_let_DASHenv] = ACTIONS(2477), + [anon_sym_mut] = ACTIONS(2477), + [anon_sym_const] = ACTIONS(2477), + [aux_sym_cmd_identifier_token1] = ACTIONS(2477), + [aux_sym_cmd_identifier_token2] = ACTIONS(2479), + [aux_sym_cmd_identifier_token3] = ACTIONS(2479), + [aux_sym_cmd_identifier_token4] = ACTIONS(2479), + [aux_sym_cmd_identifier_token5] = ACTIONS(2479), + [aux_sym_cmd_identifier_token6] = ACTIONS(2479), + [aux_sym_cmd_identifier_token7] = ACTIONS(2479), + [aux_sym_cmd_identifier_token8] = ACTIONS(2477), + [aux_sym_cmd_identifier_token9] = ACTIONS(2477), + [aux_sym_cmd_identifier_token10] = ACTIONS(2479), + [aux_sym_cmd_identifier_token11] = ACTIONS(2479), + [aux_sym_cmd_identifier_token12] = ACTIONS(2477), + [aux_sym_cmd_identifier_token13] = ACTIONS(2477), + [aux_sym_cmd_identifier_token14] = ACTIONS(2477), + [aux_sym_cmd_identifier_token15] = ACTIONS(2477), + [aux_sym_cmd_identifier_token16] = ACTIONS(2479), + [aux_sym_cmd_identifier_token17] = ACTIONS(2479), + [aux_sym_cmd_identifier_token18] = ACTIONS(2479), + [aux_sym_cmd_identifier_token19] = ACTIONS(2479), + [aux_sym_cmd_identifier_token20] = ACTIONS(2479), + [aux_sym_cmd_identifier_token21] = ACTIONS(2479), + [aux_sym_cmd_identifier_token22] = ACTIONS(2479), + [aux_sym_cmd_identifier_token23] = ACTIONS(2479), + [aux_sym_cmd_identifier_token24] = ACTIONS(2479), + [aux_sym_cmd_identifier_token25] = ACTIONS(2479), + [aux_sym_cmd_identifier_token26] = ACTIONS(2479), + [aux_sym_cmd_identifier_token27] = ACTIONS(2479), + [aux_sym_cmd_identifier_token28] = ACTIONS(2479), + [aux_sym_cmd_identifier_token29] = ACTIONS(2479), + [aux_sym_cmd_identifier_token30] = ACTIONS(2479), + [aux_sym_cmd_identifier_token31] = ACTIONS(2479), + [aux_sym_cmd_identifier_token32] = ACTIONS(2479), + [aux_sym_cmd_identifier_token33] = ACTIONS(2479), + [aux_sym_cmd_identifier_token34] = ACTIONS(2477), + [aux_sym_cmd_identifier_token35] = ACTIONS(2479), + [aux_sym_cmd_identifier_token36] = ACTIONS(2479), + [aux_sym_cmd_identifier_token37] = ACTIONS(2479), + [aux_sym_cmd_identifier_token38] = ACTIONS(2477), + [aux_sym_cmd_identifier_token39] = ACTIONS(2479), + [aux_sym_cmd_identifier_token40] = ACTIONS(2479), + [anon_sym_def] = ACTIONS(2477), + [anon_sym_export_DASHenv] = ACTIONS(2477), + [anon_sym_extern] = ACTIONS(2477), + [anon_sym_module] = ACTIONS(2477), + [anon_sym_use] = ACTIONS(2477), + [anon_sym_LPAREN] = ACTIONS(2479), + [anon_sym_COMMA] = ACTIONS(2479), + [anon_sym_DOLLAR] = ACTIONS(2477), + [anon_sym_error] = ACTIONS(2477), + [anon_sym_DASH2] = ACTIONS(2477), + [anon_sym_break] = ACTIONS(2477), + [anon_sym_continue] = ACTIONS(2477), + [anon_sym_for] = ACTIONS(2477), + [anon_sym_in2] = ACTIONS(2477), + [anon_sym_loop] = ACTIONS(2477), + [anon_sym_make] = ACTIONS(2477), + [anon_sym_while] = ACTIONS(2477), + [anon_sym_do] = ACTIONS(2477), + [anon_sym_if] = ACTIONS(2477), + [anon_sym_else] = ACTIONS(2477), + [anon_sym_match] = ACTIONS(2477), + [anon_sym_RBRACE] = ACTIONS(2479), + [anon_sym_try] = ACTIONS(2477), + [anon_sym_catch] = ACTIONS(2477), + [anon_sym_return] = ACTIONS(2477), + [anon_sym_source] = ACTIONS(2477), + [anon_sym_source_DASHenv] = ACTIONS(2477), + [anon_sym_hide] = ACTIONS(2477), + [anon_sym_hide_DASHenv] = ACTIONS(2477), + [anon_sym_overlay] = ACTIONS(2477), + [anon_sym_as] = ACTIONS(2477), + [anon_sym_PLUS2] = ACTIONS(2477), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2479), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2479), + [aux_sym__val_number_decimal_token1] = ACTIONS(2477), + [aux_sym__val_number_decimal_token2] = ACTIONS(2479), + [aux_sym__val_number_decimal_token3] = ACTIONS(2479), + [aux_sym__val_number_decimal_token4] = ACTIONS(2479), + [aux_sym__val_number_token1] = ACTIONS(2479), + [aux_sym__val_number_token2] = ACTIONS(2479), + [aux_sym__val_number_token3] = ACTIONS(2479), + [aux_sym__val_number_token4] = ACTIONS(2477), + [aux_sym__val_number_token5] = ACTIONS(2477), + [aux_sym__val_number_token6] = ACTIONS(2477), + [anon_sym_DQUOTE] = ACTIONS(2479), + [sym__str_single_quotes] = ACTIONS(2479), + [sym__str_back_ticks] = ACTIONS(2479), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2479), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2479), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2479), + [anon_sym_register] = ACTIONS(2477), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2479), }, [678] = { [sym_comment] = STATE(678), - [anon_sym_export] = ACTIONS(2460), - [anon_sym_alias] = ACTIONS(2460), - [anon_sym_let] = ACTIONS(2460), - [anon_sym_let_DASHenv] = ACTIONS(2460), - [anon_sym_mut] = ACTIONS(2460), - [anon_sym_const] = ACTIONS(2460), - [aux_sym_cmd_identifier_token1] = ACTIONS(2460), - [aux_sym_cmd_identifier_token2] = ACTIONS(2462), - [aux_sym_cmd_identifier_token3] = ACTIONS(2462), - [aux_sym_cmd_identifier_token4] = ACTIONS(2462), - [aux_sym_cmd_identifier_token5] = ACTIONS(2462), - [aux_sym_cmd_identifier_token6] = ACTIONS(2462), - [aux_sym_cmd_identifier_token7] = ACTIONS(2462), - [aux_sym_cmd_identifier_token8] = ACTIONS(2460), - [aux_sym_cmd_identifier_token9] = ACTIONS(2460), - [aux_sym_cmd_identifier_token10] = ACTIONS(2462), - [aux_sym_cmd_identifier_token11] = ACTIONS(2462), - [aux_sym_cmd_identifier_token12] = ACTIONS(2460), - [aux_sym_cmd_identifier_token13] = ACTIONS(2460), - [aux_sym_cmd_identifier_token14] = ACTIONS(2460), - [aux_sym_cmd_identifier_token15] = ACTIONS(2460), - [aux_sym_cmd_identifier_token16] = ACTIONS(2462), - [aux_sym_cmd_identifier_token17] = ACTIONS(2462), - [aux_sym_cmd_identifier_token18] = ACTIONS(2462), - [aux_sym_cmd_identifier_token19] = ACTIONS(2462), - [aux_sym_cmd_identifier_token20] = ACTIONS(2462), - [aux_sym_cmd_identifier_token21] = ACTIONS(2462), - [aux_sym_cmd_identifier_token22] = ACTIONS(2462), - [aux_sym_cmd_identifier_token23] = ACTIONS(2462), - [aux_sym_cmd_identifier_token24] = ACTIONS(2462), - [aux_sym_cmd_identifier_token25] = ACTIONS(2462), - [aux_sym_cmd_identifier_token26] = ACTIONS(2462), - [aux_sym_cmd_identifier_token27] = ACTIONS(2462), - [aux_sym_cmd_identifier_token28] = ACTIONS(2462), - [aux_sym_cmd_identifier_token29] = ACTIONS(2462), - [aux_sym_cmd_identifier_token30] = ACTIONS(2462), - [aux_sym_cmd_identifier_token31] = ACTIONS(2462), - [aux_sym_cmd_identifier_token32] = ACTIONS(2462), - [aux_sym_cmd_identifier_token33] = ACTIONS(2462), - [aux_sym_cmd_identifier_token34] = ACTIONS(2460), - [aux_sym_cmd_identifier_token35] = ACTIONS(2462), - [aux_sym_cmd_identifier_token36] = ACTIONS(2462), - [aux_sym_cmd_identifier_token37] = ACTIONS(2462), - [aux_sym_cmd_identifier_token38] = ACTIONS(2460), - [aux_sym_cmd_identifier_token39] = ACTIONS(2462), - [aux_sym_cmd_identifier_token40] = ACTIONS(2462), - [anon_sym_def] = ACTIONS(2460), - [anon_sym_export_DASHenv] = ACTIONS(2460), - [anon_sym_extern] = ACTIONS(2460), - [anon_sym_module] = ACTIONS(2460), - [anon_sym_use] = ACTIONS(2460), - [anon_sym_LPAREN] = ACTIONS(2462), - [anon_sym_COMMA] = ACTIONS(2462), - [anon_sym_DOLLAR] = ACTIONS(2460), - [anon_sym_error] = ACTIONS(2460), - [anon_sym_DASH2] = ACTIONS(2460), - [anon_sym_break] = ACTIONS(2460), - [anon_sym_continue] = ACTIONS(2460), - [anon_sym_for] = ACTIONS(2460), - [anon_sym_in2] = ACTIONS(2460), - [anon_sym_loop] = ACTIONS(2460), - [anon_sym_make] = ACTIONS(2460), - [anon_sym_while] = ACTIONS(2460), - [anon_sym_do] = ACTIONS(2460), - [anon_sym_if] = ACTIONS(2460), - [anon_sym_else] = ACTIONS(2460), - [anon_sym_match] = ACTIONS(2460), - [anon_sym_RBRACE] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2460), - [anon_sym_catch] = ACTIONS(2460), - [anon_sym_return] = ACTIONS(2460), - [anon_sym_source] = ACTIONS(2460), - [anon_sym_source_DASHenv] = ACTIONS(2460), - [anon_sym_register] = ACTIONS(2460), - [anon_sym_hide] = ACTIONS(2460), - [anon_sym_hide_DASHenv] = ACTIONS(2460), - [anon_sym_overlay] = ACTIONS(2460), - [anon_sym_as] = ACTIONS(2460), - [anon_sym_PLUS2] = ACTIONS(2460), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2462), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2462), - [aux_sym__val_number_decimal_token1] = ACTIONS(2460), - [aux_sym__val_number_decimal_token2] = ACTIONS(2462), - [aux_sym__val_number_decimal_token3] = ACTIONS(2462), - [aux_sym__val_number_decimal_token4] = ACTIONS(2462), - [aux_sym__val_number_token1] = ACTIONS(2462), - [aux_sym__val_number_token2] = ACTIONS(2462), - [aux_sym__val_number_token3] = ACTIONS(2462), - [aux_sym__val_number_token4] = ACTIONS(2460), - [aux_sym__val_number_token5] = ACTIONS(2460), - [aux_sym__val_number_token6] = ACTIONS(2460), - [anon_sym_DQUOTE] = ACTIONS(2462), - [sym__str_single_quotes] = ACTIONS(2462), - [sym__str_back_ticks] = ACTIONS(2462), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2462), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2462), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2462), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2462), + [anon_sym_export] = ACTIONS(1877), + [anon_sym_alias] = ACTIONS(1877), + [anon_sym_let] = ACTIONS(1877), + [anon_sym_let_DASHenv] = ACTIONS(1877), + [anon_sym_mut] = ACTIONS(1877), + [anon_sym_const] = ACTIONS(1877), + [aux_sym_cmd_identifier_token1] = ACTIONS(1877), + [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(1877), + [aux_sym_cmd_identifier_token9] = ACTIONS(1877), + [aux_sym_cmd_identifier_token10] = ACTIONS(1879), + [aux_sym_cmd_identifier_token11] = ACTIONS(1879), + [aux_sym_cmd_identifier_token12] = ACTIONS(1877), + [aux_sym_cmd_identifier_token13] = ACTIONS(1877), + [aux_sym_cmd_identifier_token14] = ACTIONS(1877), + [aux_sym_cmd_identifier_token15] = ACTIONS(1877), + [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(1877), + [aux_sym_cmd_identifier_token35] = ACTIONS(1879), + [aux_sym_cmd_identifier_token36] = ACTIONS(1879), + [aux_sym_cmd_identifier_token37] = ACTIONS(1879), + [aux_sym_cmd_identifier_token38] = ACTIONS(1877), + [aux_sym_cmd_identifier_token39] = ACTIONS(1879), + [aux_sym_cmd_identifier_token40] = ACTIONS(1879), + [anon_sym_def] = ACTIONS(1877), + [anon_sym_export_DASHenv] = ACTIONS(1877), + [anon_sym_extern] = ACTIONS(1877), + [anon_sym_module] = ACTIONS(1877), + [anon_sym_use] = ACTIONS(1877), + [anon_sym_LPAREN] = ACTIONS(1879), + [anon_sym_COMMA] = ACTIONS(1879), + [anon_sym_DOLLAR] = ACTIONS(1877), + [anon_sym_error] = ACTIONS(1877), + [anon_sym_DASH2] = ACTIONS(1877), + [anon_sym_break] = ACTIONS(1877), + [anon_sym_continue] = ACTIONS(1877), + [anon_sym_for] = ACTIONS(1877), + [anon_sym_in2] = ACTIONS(1877), + [anon_sym_loop] = ACTIONS(1877), + [anon_sym_make] = ACTIONS(1877), + [anon_sym_while] = ACTIONS(1877), + [anon_sym_do] = ACTIONS(1877), + [anon_sym_if] = ACTIONS(1877), + [anon_sym_else] = ACTIONS(1877), + [anon_sym_match] = ACTIONS(1877), + [anon_sym_RBRACE] = ACTIONS(1879), + [anon_sym_try] = ACTIONS(1877), + [anon_sym_catch] = ACTIONS(1877), + [anon_sym_return] = ACTIONS(1877), + [anon_sym_source] = ACTIONS(1877), + [anon_sym_source_DASHenv] = ACTIONS(1877), + [anon_sym_hide] = ACTIONS(1877), + [anon_sym_hide_DASHenv] = ACTIONS(1877), + [anon_sym_overlay] = ACTIONS(1877), + [anon_sym_as] = ACTIONS(1877), + [anon_sym_PLUS2] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1879), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1879), + [aux_sym__val_number_decimal_token1] = ACTIONS(1877), + [aux_sym__val_number_decimal_token2] = 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), + [aux_sym__val_number_token4] = ACTIONS(1877), + [aux_sym__val_number_token5] = ACTIONS(1877), + [aux_sym__val_number_token6] = ACTIONS(1877), + [anon_sym_DQUOTE] = ACTIONS(1879), + [sym__str_single_quotes] = ACTIONS(1879), + [sym__str_back_ticks] = ACTIONS(1879), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1879), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1879), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1879), + [anon_sym_register] = ACTIONS(1877), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1879), }, [679] = { [sym_comment] = STATE(679), - [anon_sym_export] = ACTIONS(2019), - [anon_sym_alias] = ACTIONS(2019), - [anon_sym_let] = ACTIONS(2019), - [anon_sym_let_DASHenv] = ACTIONS(2019), - [anon_sym_mut] = ACTIONS(2019), - [anon_sym_const] = ACTIONS(2019), - [aux_sym_cmd_identifier_token1] = ACTIONS(2019), - [aux_sym_cmd_identifier_token2] = ACTIONS(2025), - [aux_sym_cmd_identifier_token3] = ACTIONS(2025), - [aux_sym_cmd_identifier_token4] = ACTIONS(2025), - [aux_sym_cmd_identifier_token5] = ACTIONS(2025), - [aux_sym_cmd_identifier_token6] = ACTIONS(2025), - [aux_sym_cmd_identifier_token7] = ACTIONS(2025), - [aux_sym_cmd_identifier_token8] = ACTIONS(2019), - [aux_sym_cmd_identifier_token9] = ACTIONS(2019), - [aux_sym_cmd_identifier_token10] = ACTIONS(2025), - [aux_sym_cmd_identifier_token11] = ACTIONS(2025), - [aux_sym_cmd_identifier_token12] = ACTIONS(2019), - [aux_sym_cmd_identifier_token13] = ACTIONS(2019), - [aux_sym_cmd_identifier_token14] = ACTIONS(2019), - [aux_sym_cmd_identifier_token15] = ACTIONS(2019), - [aux_sym_cmd_identifier_token16] = ACTIONS(2025), - [aux_sym_cmd_identifier_token17] = ACTIONS(2025), - [aux_sym_cmd_identifier_token18] = ACTIONS(2025), - [aux_sym_cmd_identifier_token19] = ACTIONS(2025), - [aux_sym_cmd_identifier_token20] = ACTIONS(2025), - [aux_sym_cmd_identifier_token21] = ACTIONS(2025), - [aux_sym_cmd_identifier_token22] = ACTIONS(2025), - [aux_sym_cmd_identifier_token23] = ACTIONS(2025), - [aux_sym_cmd_identifier_token24] = ACTIONS(2025), - [aux_sym_cmd_identifier_token25] = ACTIONS(2025), - [aux_sym_cmd_identifier_token26] = ACTIONS(2025), - [aux_sym_cmd_identifier_token27] = ACTIONS(2025), - [aux_sym_cmd_identifier_token28] = ACTIONS(2025), - [aux_sym_cmd_identifier_token29] = ACTIONS(2025), - [aux_sym_cmd_identifier_token30] = ACTIONS(2025), - [aux_sym_cmd_identifier_token31] = ACTIONS(2025), - [aux_sym_cmd_identifier_token32] = ACTIONS(2025), - [aux_sym_cmd_identifier_token33] = ACTIONS(2025), - [aux_sym_cmd_identifier_token34] = ACTIONS(2019), - [aux_sym_cmd_identifier_token35] = ACTIONS(2025), - [aux_sym_cmd_identifier_token36] = ACTIONS(2025), - [aux_sym_cmd_identifier_token37] = ACTIONS(2025), - [aux_sym_cmd_identifier_token38] = ACTIONS(2019), - [aux_sym_cmd_identifier_token39] = ACTIONS(2025), - [aux_sym_cmd_identifier_token40] = ACTIONS(2025), - [anon_sym_def] = ACTIONS(2019), - [anon_sym_export_DASHenv] = ACTIONS(2019), - [anon_sym_extern] = ACTIONS(2019), - [anon_sym_module] = ACTIONS(2019), - [anon_sym_use] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2025), - [anon_sym_COMMA] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2019), - [anon_sym_error] = ACTIONS(2019), - [anon_sym_DASH2] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2019), - [anon_sym_continue] = ACTIONS(2019), - [anon_sym_for] = ACTIONS(2019), - [anon_sym_in2] = ACTIONS(2019), - [anon_sym_loop] = ACTIONS(2019), - [anon_sym_make] = ACTIONS(2019), - [anon_sym_while] = ACTIONS(2019), - [anon_sym_do] = ACTIONS(2019), - [anon_sym_if] = ACTIONS(2019), - [anon_sym_else] = ACTIONS(2019), - [anon_sym_match] = ACTIONS(2019), - [anon_sym_RBRACE] = ACTIONS(2025), - [anon_sym_try] = ACTIONS(2019), - [anon_sym_catch] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_source] = ACTIONS(2019), - [anon_sym_source_DASHenv] = ACTIONS(2019), - [anon_sym_register] = ACTIONS(2019), - [anon_sym_hide] = ACTIONS(2019), - [anon_sym_hide_DASHenv] = ACTIONS(2019), - [anon_sym_overlay] = ACTIONS(2019), - [anon_sym_as] = ACTIONS(2019), - [anon_sym_PLUS2] = ACTIONS(2019), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2025), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2025), - [aux_sym__val_number_decimal_token1] = ACTIONS(2019), - [aux_sym__val_number_decimal_token2] = ACTIONS(2025), - [aux_sym__val_number_decimal_token3] = ACTIONS(2025), - [aux_sym__val_number_decimal_token4] = ACTIONS(2025), - [aux_sym__val_number_token1] = ACTIONS(2025), - [aux_sym__val_number_token2] = ACTIONS(2025), - [aux_sym__val_number_token3] = ACTIONS(2025), - [aux_sym__val_number_token4] = ACTIONS(2019), - [aux_sym__val_number_token5] = ACTIONS(2019), - [aux_sym__val_number_token6] = ACTIONS(2019), - [anon_sym_DQUOTE] = ACTIONS(2025), - [sym__str_single_quotes] = ACTIONS(2025), - [sym__str_back_ticks] = ACTIONS(2025), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2025), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2025), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2025), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2025), + [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(1703), + [aux_sym_cmd_identifier_token3] = ACTIONS(1703), + [aux_sym_cmd_identifier_token4] = ACTIONS(1703), + [aux_sym_cmd_identifier_token5] = ACTIONS(1703), + [aux_sym_cmd_identifier_token6] = ACTIONS(1703), + [aux_sym_cmd_identifier_token7] = ACTIONS(1703), + [aux_sym_cmd_identifier_token8] = ACTIONS(1701), + [aux_sym_cmd_identifier_token9] = ACTIONS(1701), + [aux_sym_cmd_identifier_token10] = ACTIONS(1703), + [aux_sym_cmd_identifier_token11] = ACTIONS(1703), + [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(1703), + [aux_sym_cmd_identifier_token17] = ACTIONS(1703), + [aux_sym_cmd_identifier_token18] = ACTIONS(1703), + [aux_sym_cmd_identifier_token19] = ACTIONS(1703), + [aux_sym_cmd_identifier_token20] = ACTIONS(1703), + [aux_sym_cmd_identifier_token21] = ACTIONS(1703), + [aux_sym_cmd_identifier_token22] = ACTIONS(1703), + [aux_sym_cmd_identifier_token23] = ACTIONS(1703), + [aux_sym_cmd_identifier_token24] = ACTIONS(1703), + [aux_sym_cmd_identifier_token25] = ACTIONS(1703), + [aux_sym_cmd_identifier_token26] = ACTIONS(1703), + [aux_sym_cmd_identifier_token27] = ACTIONS(1703), + [aux_sym_cmd_identifier_token28] = ACTIONS(1703), + [aux_sym_cmd_identifier_token29] = ACTIONS(1703), + [aux_sym_cmd_identifier_token30] = ACTIONS(1703), + [aux_sym_cmd_identifier_token31] = ACTIONS(1703), + [aux_sym_cmd_identifier_token32] = ACTIONS(1703), + [aux_sym_cmd_identifier_token33] = ACTIONS(1703), + [aux_sym_cmd_identifier_token34] = ACTIONS(1701), + [aux_sym_cmd_identifier_token35] = ACTIONS(1703), + [aux_sym_cmd_identifier_token36] = ACTIONS(1703), + [aux_sym_cmd_identifier_token37] = ACTIONS(1703), + [aux_sym_cmd_identifier_token38] = ACTIONS(1701), + [aux_sym_cmd_identifier_token39] = ACTIONS(1703), + [aux_sym_cmd_identifier_token40] = ACTIONS(1703), + [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(1703), + [anon_sym_COMMA] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_error] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_in2] = 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(1703), + [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_hide] = ACTIONS(1701), + [anon_sym_hide_DASHenv] = ACTIONS(1701), + [anon_sym_overlay] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1701), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1701), + [aux_sym__val_number_token5] = ACTIONS(1701), + [aux_sym__val_number_token6] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1703), }, [680] = { [sym_comment] = STATE(680), - [anon_sym_export] = ACTIONS(2027), - [anon_sym_alias] = ACTIONS(2027), - [anon_sym_let] = ACTIONS(2027), - [anon_sym_let_DASHenv] = ACTIONS(2027), - [anon_sym_mut] = ACTIONS(2027), - [anon_sym_const] = ACTIONS(2027), - [aux_sym_cmd_identifier_token1] = ACTIONS(2027), - [aux_sym_cmd_identifier_token2] = ACTIONS(2033), - [aux_sym_cmd_identifier_token3] = ACTIONS(2033), - [aux_sym_cmd_identifier_token4] = ACTIONS(2033), - [aux_sym_cmd_identifier_token5] = ACTIONS(2033), - [aux_sym_cmd_identifier_token6] = ACTIONS(2033), - [aux_sym_cmd_identifier_token7] = ACTIONS(2033), - [aux_sym_cmd_identifier_token8] = ACTIONS(2027), - [aux_sym_cmd_identifier_token9] = ACTIONS(2027), - [aux_sym_cmd_identifier_token10] = ACTIONS(2033), - [aux_sym_cmd_identifier_token11] = ACTIONS(2033), - [aux_sym_cmd_identifier_token12] = ACTIONS(2027), - [aux_sym_cmd_identifier_token13] = ACTIONS(2027), - [aux_sym_cmd_identifier_token14] = ACTIONS(2027), - [aux_sym_cmd_identifier_token15] = ACTIONS(2027), - [aux_sym_cmd_identifier_token16] = ACTIONS(2033), - [aux_sym_cmd_identifier_token17] = ACTIONS(2033), - [aux_sym_cmd_identifier_token18] = ACTIONS(2033), - [aux_sym_cmd_identifier_token19] = ACTIONS(2033), - [aux_sym_cmd_identifier_token20] = ACTIONS(2033), - [aux_sym_cmd_identifier_token21] = ACTIONS(2033), - [aux_sym_cmd_identifier_token22] = ACTIONS(2033), - [aux_sym_cmd_identifier_token23] = ACTIONS(2033), - [aux_sym_cmd_identifier_token24] = ACTIONS(2033), - [aux_sym_cmd_identifier_token25] = ACTIONS(2033), - [aux_sym_cmd_identifier_token26] = ACTIONS(2033), - [aux_sym_cmd_identifier_token27] = ACTIONS(2033), - [aux_sym_cmd_identifier_token28] = ACTIONS(2033), - [aux_sym_cmd_identifier_token29] = ACTIONS(2033), - [aux_sym_cmd_identifier_token30] = ACTIONS(2033), - [aux_sym_cmd_identifier_token31] = ACTIONS(2033), - [aux_sym_cmd_identifier_token32] = ACTIONS(2033), - [aux_sym_cmd_identifier_token33] = ACTIONS(2033), - [aux_sym_cmd_identifier_token34] = ACTIONS(2027), - [aux_sym_cmd_identifier_token35] = ACTIONS(2033), - [aux_sym_cmd_identifier_token36] = ACTIONS(2033), - [aux_sym_cmd_identifier_token37] = ACTIONS(2033), - [aux_sym_cmd_identifier_token38] = ACTIONS(2027), - [aux_sym_cmd_identifier_token39] = ACTIONS(2033), - [aux_sym_cmd_identifier_token40] = ACTIONS(2033), - [anon_sym_def] = ACTIONS(2027), - [anon_sym_export_DASHenv] = ACTIONS(2027), - [anon_sym_extern] = ACTIONS(2027), - [anon_sym_module] = ACTIONS(2027), - [anon_sym_use] = ACTIONS(2027), - [anon_sym_LPAREN] = ACTIONS(2033), - [anon_sym_COMMA] = ACTIONS(2033), - [anon_sym_DOLLAR] = ACTIONS(2027), - [anon_sym_error] = ACTIONS(2027), - [anon_sym_DASH2] = ACTIONS(2027), - [anon_sym_break] = ACTIONS(2027), - [anon_sym_continue] = ACTIONS(2027), - [anon_sym_for] = ACTIONS(2027), - [anon_sym_in2] = ACTIONS(2027), - [anon_sym_loop] = ACTIONS(2027), - [anon_sym_make] = ACTIONS(2027), - [anon_sym_while] = ACTIONS(2027), - [anon_sym_do] = ACTIONS(2027), - [anon_sym_if] = ACTIONS(2027), - [anon_sym_else] = ACTIONS(2027), - [anon_sym_match] = ACTIONS(2027), - [anon_sym_RBRACE] = ACTIONS(2033), - [anon_sym_try] = ACTIONS(2027), - [anon_sym_catch] = ACTIONS(2027), - [anon_sym_return] = ACTIONS(2027), - [anon_sym_source] = ACTIONS(2027), - [anon_sym_source_DASHenv] = ACTIONS(2027), - [anon_sym_register] = ACTIONS(2027), - [anon_sym_hide] = ACTIONS(2027), - [anon_sym_hide_DASHenv] = ACTIONS(2027), - [anon_sym_overlay] = ACTIONS(2027), - [anon_sym_as] = ACTIONS(2027), - [anon_sym_PLUS2] = ACTIONS(2027), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2033), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2033), - [aux_sym__val_number_decimal_token1] = ACTIONS(2027), - [aux_sym__val_number_decimal_token2] = ACTIONS(2033), - [aux_sym__val_number_decimal_token3] = ACTIONS(2033), - [aux_sym__val_number_decimal_token4] = ACTIONS(2033), - [aux_sym__val_number_token1] = ACTIONS(2033), - [aux_sym__val_number_token2] = ACTIONS(2033), - [aux_sym__val_number_token3] = ACTIONS(2033), - [aux_sym__val_number_token4] = ACTIONS(2027), - [aux_sym__val_number_token5] = ACTIONS(2027), - [aux_sym__val_number_token6] = ACTIONS(2027), - [anon_sym_DQUOTE] = ACTIONS(2033), - [sym__str_single_quotes] = ACTIONS(2033), - [sym__str_back_ticks] = ACTIONS(2033), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2033), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2033), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2033), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2033), + [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(2443), + [aux_sym_cmd_identifier_token3] = ACTIONS(2443), + [aux_sym_cmd_identifier_token4] = ACTIONS(2443), + [aux_sym_cmd_identifier_token5] = ACTIONS(2443), + [aux_sym_cmd_identifier_token6] = ACTIONS(2443), + [aux_sym_cmd_identifier_token7] = ACTIONS(2443), + [aux_sym_cmd_identifier_token8] = ACTIONS(2441), + [aux_sym_cmd_identifier_token9] = ACTIONS(2441), + [aux_sym_cmd_identifier_token10] = ACTIONS(2443), + [aux_sym_cmd_identifier_token11] = ACTIONS(2443), + [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(2443), + [aux_sym_cmd_identifier_token17] = ACTIONS(2443), + [aux_sym_cmd_identifier_token18] = ACTIONS(2443), + [aux_sym_cmd_identifier_token19] = ACTIONS(2443), + [aux_sym_cmd_identifier_token20] = ACTIONS(2443), + [aux_sym_cmd_identifier_token21] = ACTIONS(2443), + [aux_sym_cmd_identifier_token22] = ACTIONS(2443), + [aux_sym_cmd_identifier_token23] = ACTIONS(2443), + [aux_sym_cmd_identifier_token24] = ACTIONS(2443), + [aux_sym_cmd_identifier_token25] = ACTIONS(2443), + [aux_sym_cmd_identifier_token26] = ACTIONS(2443), + [aux_sym_cmd_identifier_token27] = ACTIONS(2443), + [aux_sym_cmd_identifier_token28] = ACTIONS(2443), + [aux_sym_cmd_identifier_token29] = ACTIONS(2443), + [aux_sym_cmd_identifier_token30] = ACTIONS(2443), + [aux_sym_cmd_identifier_token31] = ACTIONS(2443), + [aux_sym_cmd_identifier_token32] = ACTIONS(2443), + [aux_sym_cmd_identifier_token33] = ACTIONS(2443), + [aux_sym_cmd_identifier_token34] = ACTIONS(2441), + [aux_sym_cmd_identifier_token35] = ACTIONS(2443), + [aux_sym_cmd_identifier_token36] = ACTIONS(2443), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(2443), + [anon_sym_DOLLAR] = ACTIONS(2441), + [anon_sym_error] = ACTIONS(2441), + [anon_sym_DASH2] = ACTIONS(2441), + [anon_sym_break] = ACTIONS(2441), + [anon_sym_continue] = ACTIONS(2441), + [anon_sym_for] = ACTIONS(2441), + [anon_sym_in2] = 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_hide] = ACTIONS(2441), + [anon_sym_hide_DASHenv] = ACTIONS(2441), + [anon_sym_overlay] = ACTIONS(2441), + [anon_sym_as] = ACTIONS(2441), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2441), + [aux_sym__val_number_token5] = ACTIONS(2441), + [aux_sym__val_number_token6] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2443), + [sym__str_single_quotes] = ACTIONS(2443), + [sym__str_back_ticks] = ACTIONS(2443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2443), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2443), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2443), + [anon_sym_register] = ACTIONS(2441), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2443), }, [681] = { [sym_comment] = STATE(681), - [anon_sym_export] = ACTIONS(2468), - [anon_sym_alias] = ACTIONS(2468), - [anon_sym_let] = ACTIONS(2468), - [anon_sym_let_DASHenv] = ACTIONS(2468), - [anon_sym_mut] = ACTIONS(2468), - [anon_sym_const] = ACTIONS(2468), - [aux_sym_cmd_identifier_token1] = ACTIONS(2468), - [aux_sym_cmd_identifier_token2] = ACTIONS(2470), - [aux_sym_cmd_identifier_token3] = ACTIONS(2470), - [aux_sym_cmd_identifier_token4] = ACTIONS(2470), - [aux_sym_cmd_identifier_token5] = ACTIONS(2470), - [aux_sym_cmd_identifier_token6] = ACTIONS(2470), - [aux_sym_cmd_identifier_token7] = ACTIONS(2470), - [aux_sym_cmd_identifier_token8] = ACTIONS(2468), - [aux_sym_cmd_identifier_token9] = ACTIONS(2468), - [aux_sym_cmd_identifier_token10] = ACTIONS(2470), - [aux_sym_cmd_identifier_token11] = ACTIONS(2470), - [aux_sym_cmd_identifier_token12] = ACTIONS(2468), - [aux_sym_cmd_identifier_token13] = ACTIONS(2468), - [aux_sym_cmd_identifier_token14] = ACTIONS(2468), - [aux_sym_cmd_identifier_token15] = ACTIONS(2468), - [aux_sym_cmd_identifier_token16] = ACTIONS(2470), - [aux_sym_cmd_identifier_token17] = ACTIONS(2470), - [aux_sym_cmd_identifier_token18] = ACTIONS(2470), - [aux_sym_cmd_identifier_token19] = ACTIONS(2470), - [aux_sym_cmd_identifier_token20] = ACTIONS(2470), - [aux_sym_cmd_identifier_token21] = ACTIONS(2470), - [aux_sym_cmd_identifier_token22] = ACTIONS(2470), - [aux_sym_cmd_identifier_token23] = ACTIONS(2470), - [aux_sym_cmd_identifier_token24] = ACTIONS(2470), - [aux_sym_cmd_identifier_token25] = ACTIONS(2470), - [aux_sym_cmd_identifier_token26] = ACTIONS(2470), - [aux_sym_cmd_identifier_token27] = ACTIONS(2470), - [aux_sym_cmd_identifier_token28] = ACTIONS(2470), - [aux_sym_cmd_identifier_token29] = ACTIONS(2470), - [aux_sym_cmd_identifier_token30] = ACTIONS(2470), - [aux_sym_cmd_identifier_token31] = ACTIONS(2470), - [aux_sym_cmd_identifier_token32] = ACTIONS(2470), - [aux_sym_cmd_identifier_token33] = ACTIONS(2470), - [aux_sym_cmd_identifier_token34] = ACTIONS(2468), - [aux_sym_cmd_identifier_token35] = ACTIONS(2470), - [aux_sym_cmd_identifier_token36] = ACTIONS(2470), - [aux_sym_cmd_identifier_token37] = ACTIONS(2470), - [aux_sym_cmd_identifier_token38] = ACTIONS(2468), - [aux_sym_cmd_identifier_token39] = ACTIONS(2470), - [aux_sym_cmd_identifier_token40] = ACTIONS(2470), - [anon_sym_def] = ACTIONS(2468), - [anon_sym_export_DASHenv] = ACTIONS(2468), - [anon_sym_extern] = ACTIONS(2468), - [anon_sym_module] = ACTIONS(2468), - [anon_sym_use] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(2470), - [anon_sym_COMMA] = ACTIONS(2470), - [anon_sym_DOLLAR] = ACTIONS(2468), - [anon_sym_error] = ACTIONS(2468), - [anon_sym_DASH2] = ACTIONS(2468), - [anon_sym_break] = ACTIONS(2468), - [anon_sym_continue] = ACTIONS(2468), - [anon_sym_for] = ACTIONS(2468), - [anon_sym_in2] = ACTIONS(2468), - [anon_sym_loop] = ACTIONS(2468), - [anon_sym_make] = ACTIONS(2468), - [anon_sym_while] = ACTIONS(2468), - [anon_sym_do] = ACTIONS(2468), - [anon_sym_if] = ACTIONS(2468), - [anon_sym_else] = ACTIONS(2468), - [anon_sym_match] = ACTIONS(2468), - [anon_sym_RBRACE] = ACTIONS(2470), - [anon_sym_try] = ACTIONS(2468), - [anon_sym_catch] = ACTIONS(2468), - [anon_sym_return] = ACTIONS(2468), - [anon_sym_source] = ACTIONS(2468), - [anon_sym_source_DASHenv] = ACTIONS(2468), - [anon_sym_register] = ACTIONS(2468), - [anon_sym_hide] = ACTIONS(2468), - [anon_sym_hide_DASHenv] = ACTIONS(2468), - [anon_sym_overlay] = ACTIONS(2468), - [anon_sym_as] = ACTIONS(2468), - [anon_sym_PLUS2] = ACTIONS(2468), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2470), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2470), - [aux_sym__val_number_decimal_token1] = ACTIONS(2468), - [aux_sym__val_number_decimal_token2] = ACTIONS(2470), - [aux_sym__val_number_decimal_token3] = ACTIONS(2470), - [aux_sym__val_number_decimal_token4] = ACTIONS(2470), - [aux_sym__val_number_token1] = ACTIONS(2470), - [aux_sym__val_number_token2] = ACTIONS(2470), - [aux_sym__val_number_token3] = ACTIONS(2470), - [aux_sym__val_number_token4] = ACTIONS(2468), - [aux_sym__val_number_token5] = ACTIONS(2468), - [aux_sym__val_number_token6] = ACTIONS(2468), - [anon_sym_DQUOTE] = ACTIONS(2470), - [sym__str_single_quotes] = ACTIONS(2470), - [sym__str_back_ticks] = ACTIONS(2470), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2470), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2470), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2470), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2470), + [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(2399), + [aux_sym_cmd_identifier_token3] = ACTIONS(2399), + [aux_sym_cmd_identifier_token4] = ACTIONS(2399), + [aux_sym_cmd_identifier_token5] = ACTIONS(2399), + [aux_sym_cmd_identifier_token6] = ACTIONS(2399), + [aux_sym_cmd_identifier_token7] = ACTIONS(2399), + [aux_sym_cmd_identifier_token8] = ACTIONS(2397), + [aux_sym_cmd_identifier_token9] = ACTIONS(2397), + [aux_sym_cmd_identifier_token10] = ACTIONS(2399), + [aux_sym_cmd_identifier_token11] = ACTIONS(2399), + [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(2399), + [aux_sym_cmd_identifier_token17] = ACTIONS(2399), + [aux_sym_cmd_identifier_token18] = ACTIONS(2399), + [aux_sym_cmd_identifier_token19] = ACTIONS(2399), + [aux_sym_cmd_identifier_token20] = ACTIONS(2399), + [aux_sym_cmd_identifier_token21] = ACTIONS(2399), + [aux_sym_cmd_identifier_token22] = ACTIONS(2399), + [aux_sym_cmd_identifier_token23] = ACTIONS(2399), + [aux_sym_cmd_identifier_token24] = ACTIONS(2399), + [aux_sym_cmd_identifier_token25] = ACTIONS(2399), + [aux_sym_cmd_identifier_token26] = ACTIONS(2399), + [aux_sym_cmd_identifier_token27] = ACTIONS(2399), + [aux_sym_cmd_identifier_token28] = ACTIONS(2399), + [aux_sym_cmd_identifier_token29] = ACTIONS(2399), + [aux_sym_cmd_identifier_token30] = ACTIONS(2399), + [aux_sym_cmd_identifier_token31] = ACTIONS(2399), + [aux_sym_cmd_identifier_token32] = ACTIONS(2399), + [aux_sym_cmd_identifier_token33] = ACTIONS(2399), + [aux_sym_cmd_identifier_token34] = ACTIONS(2397), + [aux_sym_cmd_identifier_token35] = ACTIONS(2399), + [aux_sym_cmd_identifier_token36] = ACTIONS(2399), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(2399), + [anon_sym_DOLLAR] = ACTIONS(2397), + [anon_sym_error] = ACTIONS(2397), + [anon_sym_DASH2] = ACTIONS(2397), + [anon_sym_break] = ACTIONS(2397), + [anon_sym_continue] = ACTIONS(2397), + [anon_sym_for] = ACTIONS(2397), + [anon_sym_in2] = 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_hide] = ACTIONS(2397), + [anon_sym_hide_DASHenv] = ACTIONS(2397), + [anon_sym_overlay] = ACTIONS(2397), + [anon_sym_as] = ACTIONS(2397), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2397), + [aux_sym__val_number_token5] = ACTIONS(2397), + [aux_sym__val_number_token6] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2399), + [sym__str_single_quotes] = ACTIONS(2399), + [sym__str_back_ticks] = ACTIONS(2399), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2399), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2399), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2399), + [anon_sym_register] = ACTIONS(2397), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2399), }, [682] = { [sym_comment] = STATE(682), - [anon_sym_export] = ACTIONS(2442), - [anon_sym_alias] = ACTIONS(2442), - [anon_sym_let] = ACTIONS(2442), - [anon_sym_let_DASHenv] = ACTIONS(2442), - [anon_sym_mut] = ACTIONS(2442), - [anon_sym_const] = ACTIONS(2442), - [aux_sym_cmd_identifier_token1] = ACTIONS(2442), - [aux_sym_cmd_identifier_token2] = ACTIONS(2444), - [aux_sym_cmd_identifier_token3] = ACTIONS(2444), - [aux_sym_cmd_identifier_token4] = ACTIONS(2444), - [aux_sym_cmd_identifier_token5] = ACTIONS(2444), - [aux_sym_cmd_identifier_token6] = ACTIONS(2444), - [aux_sym_cmd_identifier_token7] = ACTIONS(2444), - [aux_sym_cmd_identifier_token8] = ACTIONS(2442), - [aux_sym_cmd_identifier_token9] = ACTIONS(2442), - [aux_sym_cmd_identifier_token10] = ACTIONS(2444), - [aux_sym_cmd_identifier_token11] = ACTIONS(2444), - [aux_sym_cmd_identifier_token12] = ACTIONS(2442), - [aux_sym_cmd_identifier_token13] = ACTIONS(2442), - [aux_sym_cmd_identifier_token14] = ACTIONS(2442), - [aux_sym_cmd_identifier_token15] = ACTIONS(2442), - [aux_sym_cmd_identifier_token16] = ACTIONS(2444), - [aux_sym_cmd_identifier_token17] = ACTIONS(2444), - [aux_sym_cmd_identifier_token18] = ACTIONS(2444), - [aux_sym_cmd_identifier_token19] = ACTIONS(2444), - [aux_sym_cmd_identifier_token20] = ACTIONS(2444), - [aux_sym_cmd_identifier_token21] = ACTIONS(2444), - [aux_sym_cmd_identifier_token22] = ACTIONS(2444), - [aux_sym_cmd_identifier_token23] = ACTIONS(2444), - [aux_sym_cmd_identifier_token24] = ACTIONS(2444), - [aux_sym_cmd_identifier_token25] = ACTIONS(2444), - [aux_sym_cmd_identifier_token26] = ACTIONS(2444), - [aux_sym_cmd_identifier_token27] = ACTIONS(2444), - [aux_sym_cmd_identifier_token28] = ACTIONS(2444), - [aux_sym_cmd_identifier_token29] = ACTIONS(2444), - [aux_sym_cmd_identifier_token30] = ACTIONS(2444), - [aux_sym_cmd_identifier_token31] = ACTIONS(2444), - [aux_sym_cmd_identifier_token32] = ACTIONS(2444), - [aux_sym_cmd_identifier_token33] = ACTIONS(2444), - [aux_sym_cmd_identifier_token34] = ACTIONS(2442), - [aux_sym_cmd_identifier_token35] = ACTIONS(2444), - [aux_sym_cmd_identifier_token36] = ACTIONS(2444), - [aux_sym_cmd_identifier_token37] = ACTIONS(2444), - [aux_sym_cmd_identifier_token38] = ACTIONS(2442), - [aux_sym_cmd_identifier_token39] = ACTIONS(2444), - [aux_sym_cmd_identifier_token40] = ACTIONS(2444), - [anon_sym_def] = ACTIONS(2442), - [anon_sym_export_DASHenv] = ACTIONS(2442), - [anon_sym_extern] = ACTIONS(2442), - [anon_sym_module] = ACTIONS(2442), - [anon_sym_use] = ACTIONS(2442), - [anon_sym_LPAREN] = ACTIONS(2444), - [anon_sym_COMMA] = ACTIONS(2444), - [anon_sym_DOLLAR] = ACTIONS(2442), - [anon_sym_error] = ACTIONS(2442), - [anon_sym_DASH2] = ACTIONS(2442), - [anon_sym_break] = ACTIONS(2442), - [anon_sym_continue] = ACTIONS(2442), - [anon_sym_for] = ACTIONS(2442), - [anon_sym_in2] = ACTIONS(2442), - [anon_sym_loop] = ACTIONS(2442), - [anon_sym_make] = ACTIONS(2442), - [anon_sym_while] = ACTIONS(2442), - [anon_sym_do] = ACTIONS(2442), - [anon_sym_if] = ACTIONS(2442), - [anon_sym_else] = ACTIONS(2442), - [anon_sym_match] = ACTIONS(2442), - [anon_sym_RBRACE] = ACTIONS(2444), - [anon_sym_try] = ACTIONS(2442), - [anon_sym_catch] = ACTIONS(2442), - [anon_sym_return] = ACTIONS(2442), - [anon_sym_source] = ACTIONS(2442), - [anon_sym_source_DASHenv] = ACTIONS(2442), - [anon_sym_register] = ACTIONS(2442), - [anon_sym_hide] = ACTIONS(2442), - [anon_sym_hide_DASHenv] = ACTIONS(2442), - [anon_sym_overlay] = ACTIONS(2442), - [anon_sym_as] = ACTIONS(2442), - [anon_sym_PLUS2] = ACTIONS(2442), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2444), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2444), - [aux_sym__val_number_decimal_token1] = ACTIONS(2442), - [aux_sym__val_number_decimal_token2] = ACTIONS(2444), - [aux_sym__val_number_decimal_token3] = ACTIONS(2444), - [aux_sym__val_number_decimal_token4] = ACTIONS(2444), - [aux_sym__val_number_token1] = ACTIONS(2444), - [aux_sym__val_number_token2] = ACTIONS(2444), - [aux_sym__val_number_token3] = ACTIONS(2444), - [aux_sym__val_number_token4] = ACTIONS(2442), - [aux_sym__val_number_token5] = ACTIONS(2442), - [aux_sym__val_number_token6] = ACTIONS(2442), - [anon_sym_DQUOTE] = ACTIONS(2444), - [sym__str_single_quotes] = ACTIONS(2444), - [sym__str_back_ticks] = ACTIONS(2444), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2444), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2444), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2444), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2444), + [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(2403), + [aux_sym_cmd_identifier_token3] = ACTIONS(2403), + [aux_sym_cmd_identifier_token4] = ACTIONS(2403), + [aux_sym_cmd_identifier_token5] = ACTIONS(2403), + [aux_sym_cmd_identifier_token6] = ACTIONS(2403), + [aux_sym_cmd_identifier_token7] = ACTIONS(2403), + [aux_sym_cmd_identifier_token8] = ACTIONS(2401), + [aux_sym_cmd_identifier_token9] = ACTIONS(2401), + [aux_sym_cmd_identifier_token10] = ACTIONS(2403), + [aux_sym_cmd_identifier_token11] = ACTIONS(2403), + [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(2403), + [aux_sym_cmd_identifier_token17] = ACTIONS(2403), + [aux_sym_cmd_identifier_token18] = ACTIONS(2403), + [aux_sym_cmd_identifier_token19] = ACTIONS(2403), + [aux_sym_cmd_identifier_token20] = ACTIONS(2403), + [aux_sym_cmd_identifier_token21] = ACTIONS(2403), + [aux_sym_cmd_identifier_token22] = ACTIONS(2403), + [aux_sym_cmd_identifier_token23] = ACTIONS(2403), + [aux_sym_cmd_identifier_token24] = ACTIONS(2403), + [aux_sym_cmd_identifier_token25] = ACTIONS(2403), + [aux_sym_cmd_identifier_token26] = ACTIONS(2403), + [aux_sym_cmd_identifier_token27] = ACTIONS(2403), + [aux_sym_cmd_identifier_token28] = ACTIONS(2403), + [aux_sym_cmd_identifier_token29] = ACTIONS(2403), + [aux_sym_cmd_identifier_token30] = ACTIONS(2403), + [aux_sym_cmd_identifier_token31] = ACTIONS(2403), + [aux_sym_cmd_identifier_token32] = ACTIONS(2403), + [aux_sym_cmd_identifier_token33] = ACTIONS(2403), + [aux_sym_cmd_identifier_token34] = ACTIONS(2401), + [aux_sym_cmd_identifier_token35] = ACTIONS(2403), + [aux_sym_cmd_identifier_token36] = ACTIONS(2403), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(2403), + [anon_sym_DOLLAR] = ACTIONS(2401), + [anon_sym_error] = ACTIONS(2401), + [anon_sym_DASH2] = ACTIONS(2401), + [anon_sym_break] = ACTIONS(2401), + [anon_sym_continue] = ACTIONS(2401), + [anon_sym_for] = ACTIONS(2401), + [anon_sym_in2] = 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_hide] = ACTIONS(2401), + [anon_sym_hide_DASHenv] = ACTIONS(2401), + [anon_sym_overlay] = ACTIONS(2401), + [anon_sym_as] = ACTIONS(2401), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2401), + [aux_sym__val_number_token5] = ACTIONS(2401), + [aux_sym__val_number_token6] = ACTIONS(2401), + [anon_sym_DQUOTE] = ACTIONS(2403), + [sym__str_single_quotes] = ACTIONS(2403), + [sym__str_back_ticks] = ACTIONS(2403), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2403), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2403), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2403), + [anon_sym_register] = ACTIONS(2401), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2403), }, [683] = { [sym_comment] = STATE(683), - [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(1877), - [aux_sym_cmd_identifier_token3] = ACTIONS(1877), - [aux_sym_cmd_identifier_token4] = ACTIONS(1877), - [aux_sym_cmd_identifier_token5] = ACTIONS(1877), - [aux_sym_cmd_identifier_token6] = ACTIONS(1877), - [aux_sym_cmd_identifier_token7] = ACTIONS(1877), - [aux_sym_cmd_identifier_token8] = ACTIONS(1875), - [aux_sym_cmd_identifier_token9] = ACTIONS(1875), - [aux_sym_cmd_identifier_token10] = ACTIONS(1877), - [aux_sym_cmd_identifier_token11] = ACTIONS(1877), - [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(1877), - [aux_sym_cmd_identifier_token17] = ACTIONS(1877), - [aux_sym_cmd_identifier_token18] = ACTIONS(1877), - [aux_sym_cmd_identifier_token19] = ACTIONS(1877), - [aux_sym_cmd_identifier_token20] = ACTIONS(1877), - [aux_sym_cmd_identifier_token21] = ACTIONS(1877), - [aux_sym_cmd_identifier_token22] = ACTIONS(1877), - [aux_sym_cmd_identifier_token23] = ACTIONS(1877), - [aux_sym_cmd_identifier_token24] = ACTIONS(1877), - [aux_sym_cmd_identifier_token25] = ACTIONS(1877), - [aux_sym_cmd_identifier_token26] = ACTIONS(1877), - [aux_sym_cmd_identifier_token27] = ACTIONS(1877), - [aux_sym_cmd_identifier_token28] = ACTIONS(1877), - [aux_sym_cmd_identifier_token29] = ACTIONS(1877), - [aux_sym_cmd_identifier_token30] = ACTIONS(1877), - [aux_sym_cmd_identifier_token31] = ACTIONS(1877), - [aux_sym_cmd_identifier_token32] = ACTIONS(1877), - [aux_sym_cmd_identifier_token33] = ACTIONS(1877), - [aux_sym_cmd_identifier_token34] = ACTIONS(1875), - [aux_sym_cmd_identifier_token35] = ACTIONS(1877), - [aux_sym_cmd_identifier_token36] = ACTIONS(1877), - [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1877), - [anon_sym_DOLLAR] = ACTIONS(1875), - [anon_sym_error] = ACTIONS(1875), - [anon_sym_DASH2] = ACTIONS(1875), - [anon_sym_break] = ACTIONS(1875), - [anon_sym_continue] = ACTIONS(1875), - [anon_sym_for] = ACTIONS(1875), - [anon_sym_in2] = 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_as] = ACTIONS(1875), - [anon_sym_PLUS2] = ACTIONS(1875), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1877), - [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), - [aux_sym__val_number_token4] = ACTIONS(1875), - [aux_sym__val_number_token5] = ACTIONS(1875), - [aux_sym__val_number_token6] = ACTIONS(1875), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1877), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1877), + [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(2443), + [aux_sym_cmd_identifier_token3] = ACTIONS(2443), + [aux_sym_cmd_identifier_token4] = ACTIONS(2443), + [aux_sym_cmd_identifier_token5] = ACTIONS(2443), + [aux_sym_cmd_identifier_token6] = ACTIONS(2443), + [aux_sym_cmd_identifier_token7] = ACTIONS(2443), + [aux_sym_cmd_identifier_token8] = ACTIONS(2441), + [aux_sym_cmd_identifier_token9] = ACTIONS(2441), + [aux_sym_cmd_identifier_token10] = ACTIONS(2443), + [aux_sym_cmd_identifier_token11] = ACTIONS(2443), + [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(2443), + [aux_sym_cmd_identifier_token17] = ACTIONS(2443), + [aux_sym_cmd_identifier_token18] = ACTIONS(2443), + [aux_sym_cmd_identifier_token19] = ACTIONS(2443), + [aux_sym_cmd_identifier_token20] = ACTIONS(2443), + [aux_sym_cmd_identifier_token21] = ACTIONS(2443), + [aux_sym_cmd_identifier_token22] = ACTIONS(2443), + [aux_sym_cmd_identifier_token23] = ACTIONS(2443), + [aux_sym_cmd_identifier_token24] = ACTIONS(2443), + [aux_sym_cmd_identifier_token25] = ACTIONS(2443), + [aux_sym_cmd_identifier_token26] = ACTIONS(2443), + [aux_sym_cmd_identifier_token27] = ACTIONS(2443), + [aux_sym_cmd_identifier_token28] = ACTIONS(2443), + [aux_sym_cmd_identifier_token29] = ACTIONS(2443), + [aux_sym_cmd_identifier_token30] = ACTIONS(2443), + [aux_sym_cmd_identifier_token31] = ACTIONS(2443), + [aux_sym_cmd_identifier_token32] = ACTIONS(2443), + [aux_sym_cmd_identifier_token33] = ACTIONS(2443), + [aux_sym_cmd_identifier_token34] = ACTIONS(2441), + [aux_sym_cmd_identifier_token35] = ACTIONS(2443), + [aux_sym_cmd_identifier_token36] = ACTIONS(2443), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(2443), + [anon_sym_DOLLAR] = ACTIONS(2441), + [anon_sym_error] = ACTIONS(2441), + [anon_sym_DASH2] = ACTIONS(2441), + [anon_sym_break] = ACTIONS(2441), + [anon_sym_continue] = ACTIONS(2441), + [anon_sym_for] = ACTIONS(2441), + [anon_sym_in2] = 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_hide] = ACTIONS(2441), + [anon_sym_hide_DASHenv] = ACTIONS(2441), + [anon_sym_overlay] = ACTIONS(2441), + [anon_sym_as] = ACTIONS(2441), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2441), + [aux_sym__val_number_token5] = ACTIONS(2441), + [aux_sym__val_number_token6] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2443), + [sym__str_single_quotes] = ACTIONS(2443), + [sym__str_back_ticks] = ACTIONS(2443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2443), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2443), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2443), + [anon_sym_register] = ACTIONS(2441), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2443), }, [684] = { [sym_comment] = STATE(684), - [anon_sym_export] = ACTIONS(2043), - [anon_sym_alias] = ACTIONS(2043), - [anon_sym_let] = ACTIONS(2043), - [anon_sym_let_DASHenv] = ACTIONS(2043), - [anon_sym_mut] = ACTIONS(2043), - [anon_sym_const] = ACTIONS(2043), - [aux_sym_cmd_identifier_token1] = ACTIONS(2043), - [aux_sym_cmd_identifier_token2] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2049), - [aux_sym_cmd_identifier_token4] = ACTIONS(2049), - [aux_sym_cmd_identifier_token5] = ACTIONS(2049), - [aux_sym_cmd_identifier_token6] = ACTIONS(2049), - [aux_sym_cmd_identifier_token7] = ACTIONS(2049), - [aux_sym_cmd_identifier_token8] = ACTIONS(2043), - [aux_sym_cmd_identifier_token9] = ACTIONS(2043), - [aux_sym_cmd_identifier_token10] = ACTIONS(2049), - [aux_sym_cmd_identifier_token11] = ACTIONS(2049), - [aux_sym_cmd_identifier_token12] = ACTIONS(2043), - [aux_sym_cmd_identifier_token13] = ACTIONS(2043), - [aux_sym_cmd_identifier_token14] = ACTIONS(2043), - [aux_sym_cmd_identifier_token15] = ACTIONS(2043), - [aux_sym_cmd_identifier_token16] = ACTIONS(2049), - [aux_sym_cmd_identifier_token17] = ACTIONS(2049), - [aux_sym_cmd_identifier_token18] = ACTIONS(2049), - [aux_sym_cmd_identifier_token19] = ACTIONS(2049), - [aux_sym_cmd_identifier_token20] = ACTIONS(2049), - [aux_sym_cmd_identifier_token21] = ACTIONS(2049), - [aux_sym_cmd_identifier_token22] = ACTIONS(2049), - [aux_sym_cmd_identifier_token23] = ACTIONS(2049), - [aux_sym_cmd_identifier_token24] = ACTIONS(2049), - [aux_sym_cmd_identifier_token25] = ACTIONS(2049), - [aux_sym_cmd_identifier_token26] = ACTIONS(2049), - [aux_sym_cmd_identifier_token27] = ACTIONS(2049), - [aux_sym_cmd_identifier_token28] = ACTIONS(2049), - [aux_sym_cmd_identifier_token29] = ACTIONS(2049), - [aux_sym_cmd_identifier_token30] = ACTIONS(2049), - [aux_sym_cmd_identifier_token31] = ACTIONS(2049), - [aux_sym_cmd_identifier_token32] = ACTIONS(2049), - [aux_sym_cmd_identifier_token33] = ACTIONS(2049), - [aux_sym_cmd_identifier_token34] = ACTIONS(2043), - [aux_sym_cmd_identifier_token35] = ACTIONS(2049), - [aux_sym_cmd_identifier_token36] = ACTIONS(2049), - [aux_sym_cmd_identifier_token37] = ACTIONS(2049), - [aux_sym_cmd_identifier_token38] = ACTIONS(2043), - [aux_sym_cmd_identifier_token39] = ACTIONS(2049), - [aux_sym_cmd_identifier_token40] = ACTIONS(2049), - [anon_sym_def] = ACTIONS(2043), - [anon_sym_export_DASHenv] = ACTIONS(2043), - [anon_sym_extern] = ACTIONS(2043), - [anon_sym_module] = ACTIONS(2043), - [anon_sym_use] = ACTIONS(2043), - [anon_sym_LPAREN] = ACTIONS(2049), - [anon_sym_COMMA] = ACTIONS(2049), - [anon_sym_DOLLAR] = ACTIONS(2043), - [anon_sym_error] = ACTIONS(2043), - [anon_sym_DASH2] = ACTIONS(2043), - [anon_sym_break] = ACTIONS(2043), - [anon_sym_continue] = ACTIONS(2043), - [anon_sym_for] = ACTIONS(2043), - [anon_sym_in2] = ACTIONS(2043), - [anon_sym_loop] = ACTIONS(2043), - [anon_sym_make] = ACTIONS(2043), - [anon_sym_while] = ACTIONS(2043), - [anon_sym_do] = ACTIONS(2043), - [anon_sym_if] = ACTIONS(2043), - [anon_sym_else] = ACTIONS(2043), - [anon_sym_match] = ACTIONS(2043), - [anon_sym_RBRACE] = ACTIONS(2049), - [anon_sym_try] = ACTIONS(2043), - [anon_sym_catch] = ACTIONS(2043), - [anon_sym_return] = ACTIONS(2043), - [anon_sym_source] = ACTIONS(2043), - [anon_sym_source_DASHenv] = ACTIONS(2043), - [anon_sym_register] = ACTIONS(2043), - [anon_sym_hide] = ACTIONS(2043), - [anon_sym_hide_DASHenv] = ACTIONS(2043), - [anon_sym_overlay] = ACTIONS(2043), - [anon_sym_as] = ACTIONS(2043), - [anon_sym_PLUS2] = ACTIONS(2043), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2049), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2049), - [aux_sym__val_number_decimal_token1] = ACTIONS(2043), - [aux_sym__val_number_decimal_token2] = ACTIONS(2049), - [aux_sym__val_number_decimal_token3] = ACTIONS(2049), - [aux_sym__val_number_decimal_token4] = ACTIONS(2049), - [aux_sym__val_number_token1] = ACTIONS(2049), - [aux_sym__val_number_token2] = ACTIONS(2049), - [aux_sym__val_number_token3] = ACTIONS(2049), - [aux_sym__val_number_token4] = ACTIONS(2043), - [aux_sym__val_number_token5] = ACTIONS(2043), - [aux_sym__val_number_token6] = ACTIONS(2043), - [anon_sym_DQUOTE] = ACTIONS(2049), - [sym__str_single_quotes] = ACTIONS(2049), - [sym__str_back_ticks] = ACTIONS(2049), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2049), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2049), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2049), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2049), + [anon_sym_export] = ACTIONS(1693), + [anon_sym_alias] = ACTIONS(1693), + [anon_sym_let] = ACTIONS(1693), + [anon_sym_let_DASHenv] = ACTIONS(1693), + [anon_sym_mut] = ACTIONS(1693), + [anon_sym_const] = ACTIONS(1693), + [aux_sym_cmd_identifier_token1] = ACTIONS(1693), + [aux_sym_cmd_identifier_token2] = ACTIONS(1695), + [aux_sym_cmd_identifier_token3] = ACTIONS(1695), + [aux_sym_cmd_identifier_token4] = ACTIONS(1695), + [aux_sym_cmd_identifier_token5] = ACTIONS(1695), + [aux_sym_cmd_identifier_token6] = ACTIONS(1695), + [aux_sym_cmd_identifier_token7] = ACTIONS(1695), + [aux_sym_cmd_identifier_token8] = ACTIONS(1693), + [aux_sym_cmd_identifier_token9] = ACTIONS(1693), + [aux_sym_cmd_identifier_token10] = ACTIONS(1695), + [aux_sym_cmd_identifier_token11] = ACTIONS(1695), + [aux_sym_cmd_identifier_token12] = ACTIONS(1693), + [aux_sym_cmd_identifier_token13] = ACTIONS(1693), + [aux_sym_cmd_identifier_token14] = ACTIONS(1693), + [aux_sym_cmd_identifier_token15] = ACTIONS(1693), + [aux_sym_cmd_identifier_token16] = ACTIONS(1695), + [aux_sym_cmd_identifier_token17] = ACTIONS(1695), + [aux_sym_cmd_identifier_token18] = ACTIONS(1695), + [aux_sym_cmd_identifier_token19] = ACTIONS(1695), + [aux_sym_cmd_identifier_token20] = ACTIONS(1695), + [aux_sym_cmd_identifier_token21] = ACTIONS(1695), + [aux_sym_cmd_identifier_token22] = ACTIONS(1695), + [aux_sym_cmd_identifier_token23] = ACTIONS(1695), + [aux_sym_cmd_identifier_token24] = ACTIONS(1695), + [aux_sym_cmd_identifier_token25] = ACTIONS(1695), + [aux_sym_cmd_identifier_token26] = ACTIONS(1695), + [aux_sym_cmd_identifier_token27] = ACTIONS(1695), + [aux_sym_cmd_identifier_token28] = ACTIONS(1695), + [aux_sym_cmd_identifier_token29] = ACTIONS(1695), + [aux_sym_cmd_identifier_token30] = ACTIONS(1695), + [aux_sym_cmd_identifier_token31] = ACTIONS(1695), + [aux_sym_cmd_identifier_token32] = ACTIONS(1695), + [aux_sym_cmd_identifier_token33] = ACTIONS(1695), + [aux_sym_cmd_identifier_token34] = ACTIONS(1693), + [aux_sym_cmd_identifier_token35] = ACTIONS(1695), + [aux_sym_cmd_identifier_token36] = ACTIONS(1695), + [aux_sym_cmd_identifier_token37] = ACTIONS(1695), + [aux_sym_cmd_identifier_token38] = ACTIONS(1693), + [aux_sym_cmd_identifier_token39] = ACTIONS(1695), + [aux_sym_cmd_identifier_token40] = ACTIONS(1695), + [anon_sym_def] = ACTIONS(1693), + [anon_sym_export_DASHenv] = ACTIONS(1693), + [anon_sym_extern] = ACTIONS(1693), + [anon_sym_module] = ACTIONS(1693), + [anon_sym_use] = ACTIONS(1693), + [anon_sym_LPAREN] = ACTIONS(1695), + [anon_sym_COMMA] = ACTIONS(1695), + [anon_sym_DOLLAR] = ACTIONS(1693), + [anon_sym_error] = ACTIONS(1693), + [anon_sym_DASH2] = ACTIONS(1693), + [anon_sym_break] = ACTIONS(1693), + [anon_sym_continue] = ACTIONS(1693), + [anon_sym_for] = ACTIONS(1693), + [anon_sym_in2] = ACTIONS(1693), + [anon_sym_loop] = ACTIONS(1693), + [anon_sym_make] = ACTIONS(1693), + [anon_sym_while] = ACTIONS(1693), + [anon_sym_do] = ACTIONS(1693), + [anon_sym_if] = ACTIONS(1693), + [anon_sym_else] = ACTIONS(1693), + [anon_sym_match] = ACTIONS(1693), + [anon_sym_RBRACE] = ACTIONS(1695), + [anon_sym_try] = ACTIONS(1693), + [anon_sym_catch] = ACTIONS(1693), + [anon_sym_return] = ACTIONS(1693), + [anon_sym_source] = ACTIONS(1693), + [anon_sym_source_DASHenv] = ACTIONS(1693), + [anon_sym_hide] = ACTIONS(1693), + [anon_sym_hide_DASHenv] = ACTIONS(1693), + [anon_sym_overlay] = ACTIONS(1693), + [anon_sym_as] = ACTIONS(1693), + [anon_sym_PLUS2] = ACTIONS(1693), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1695), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1695), + [aux_sym__val_number_decimal_token1] = ACTIONS(1693), + [aux_sym__val_number_decimal_token2] = ACTIONS(1695), + [aux_sym__val_number_decimal_token3] = ACTIONS(1695), + [aux_sym__val_number_decimal_token4] = ACTIONS(1695), + [aux_sym__val_number_token1] = ACTIONS(1695), + [aux_sym__val_number_token2] = ACTIONS(1695), + [aux_sym__val_number_token3] = ACTIONS(1695), + [aux_sym__val_number_token4] = ACTIONS(1693), + [aux_sym__val_number_token5] = ACTIONS(1693), + [aux_sym__val_number_token6] = ACTIONS(1693), + [anon_sym_DQUOTE] = ACTIONS(1695), + [sym__str_single_quotes] = ACTIONS(1695), + [sym__str_back_ticks] = ACTIONS(1695), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1695), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1695), + [anon_sym_register] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1695), }, [685] = { [sym_comment] = STATE(685), - [anon_sym_export] = ACTIONS(2386), - [anon_sym_alias] = ACTIONS(2386), - [anon_sym_let] = ACTIONS(2386), - [anon_sym_let_DASHenv] = ACTIONS(2386), - [anon_sym_mut] = ACTIONS(2386), - [anon_sym_const] = ACTIONS(2386), - [aux_sym_cmd_identifier_token1] = ACTIONS(2386), - [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(2386), - [aux_sym_cmd_identifier_token9] = ACTIONS(2386), - [aux_sym_cmd_identifier_token10] = ACTIONS(2388), - [aux_sym_cmd_identifier_token11] = ACTIONS(2388), - [aux_sym_cmd_identifier_token12] = ACTIONS(2386), - [aux_sym_cmd_identifier_token13] = ACTIONS(2386), - [aux_sym_cmd_identifier_token14] = ACTIONS(2386), - [aux_sym_cmd_identifier_token15] = ACTIONS(2386), - [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(2386), - [aux_sym_cmd_identifier_token35] = ACTIONS(2388), - [aux_sym_cmd_identifier_token36] = ACTIONS(2388), - [aux_sym_cmd_identifier_token37] = ACTIONS(2388), - [aux_sym_cmd_identifier_token38] = ACTIONS(2386), - [aux_sym_cmd_identifier_token39] = ACTIONS(2388), - [aux_sym_cmd_identifier_token40] = ACTIONS(2388), - [anon_sym_def] = ACTIONS(2386), - [anon_sym_export_DASHenv] = ACTIONS(2386), - [anon_sym_extern] = ACTIONS(2386), - [anon_sym_module] = ACTIONS(2386), - [anon_sym_use] = ACTIONS(2386), - [anon_sym_LPAREN] = ACTIONS(2388), - [anon_sym_COMMA] = ACTIONS(2388), - [anon_sym_DOLLAR] = ACTIONS(2386), - [anon_sym_error] = ACTIONS(2386), - [anon_sym_DASH2] = ACTIONS(2386), - [anon_sym_break] = ACTIONS(2386), - [anon_sym_continue] = ACTIONS(2386), - [anon_sym_for] = ACTIONS(2386), - [anon_sym_in2] = ACTIONS(2386), - [anon_sym_loop] = ACTIONS(2386), - [anon_sym_make] = ACTIONS(2386), - [anon_sym_while] = ACTIONS(2386), - [anon_sym_do] = ACTIONS(2386), - [anon_sym_if] = ACTIONS(2386), - [anon_sym_else] = ACTIONS(2386), - [anon_sym_match] = ACTIONS(2386), - [anon_sym_RBRACE] = ACTIONS(2388), - [anon_sym_try] = ACTIONS(2386), - [anon_sym_catch] = ACTIONS(2386), - [anon_sym_return] = ACTIONS(2386), - [anon_sym_source] = ACTIONS(2386), - [anon_sym_source_DASHenv] = ACTIONS(2386), - [anon_sym_register] = ACTIONS(2386), - [anon_sym_hide] = ACTIONS(2386), - [anon_sym_hide_DASHenv] = ACTIONS(2386), - [anon_sym_overlay] = ACTIONS(2386), - [anon_sym_as] = ACTIONS(2386), - [anon_sym_PLUS2] = ACTIONS(2386), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2388), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2388), - [aux_sym__val_number_decimal_token1] = ACTIONS(2386), - [aux_sym__val_number_decimal_token2] = ACTIONS(2388), - [aux_sym__val_number_decimal_token3] = ACTIONS(2388), - [aux_sym__val_number_decimal_token4] = ACTIONS(2388), - [aux_sym__val_number_token1] = ACTIONS(2388), - [aux_sym__val_number_token2] = ACTIONS(2388), - [aux_sym__val_number_token3] = ACTIONS(2388), - [aux_sym__val_number_token4] = ACTIONS(2386), - [aux_sym__val_number_token5] = ACTIONS(2386), - [aux_sym__val_number_token6] = ACTIONS(2386), - [anon_sym_DQUOTE] = ACTIONS(2388), - [sym__str_single_quotes] = ACTIONS(2388), - [sym__str_back_ticks] = ACTIONS(2388), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2388), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2388), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2388), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2388), + [anon_sym_export] = ACTIONS(1639), + [anon_sym_alias] = ACTIONS(1639), + [anon_sym_let] = ACTIONS(1639), + [anon_sym_let_DASHenv] = ACTIONS(1639), + [anon_sym_mut] = ACTIONS(1639), + [anon_sym_const] = ACTIONS(1639), + [aux_sym_cmd_identifier_token1] = ACTIONS(1639), + [aux_sym_cmd_identifier_token2] = ACTIONS(1651), + [aux_sym_cmd_identifier_token3] = ACTIONS(1651), + [aux_sym_cmd_identifier_token4] = ACTIONS(1651), + [aux_sym_cmd_identifier_token5] = ACTIONS(1651), + [aux_sym_cmd_identifier_token6] = ACTIONS(1651), + [aux_sym_cmd_identifier_token7] = ACTIONS(1651), + [aux_sym_cmd_identifier_token8] = ACTIONS(1639), + [aux_sym_cmd_identifier_token9] = ACTIONS(1639), + [aux_sym_cmd_identifier_token10] = ACTIONS(1651), + [aux_sym_cmd_identifier_token11] = ACTIONS(1651), + [aux_sym_cmd_identifier_token12] = ACTIONS(1639), + [aux_sym_cmd_identifier_token13] = ACTIONS(1639), + [aux_sym_cmd_identifier_token14] = ACTIONS(1639), + [aux_sym_cmd_identifier_token15] = ACTIONS(1639), + [aux_sym_cmd_identifier_token16] = ACTIONS(1651), + [aux_sym_cmd_identifier_token17] = ACTIONS(1651), + [aux_sym_cmd_identifier_token18] = ACTIONS(1651), + [aux_sym_cmd_identifier_token19] = ACTIONS(1651), + [aux_sym_cmd_identifier_token20] = ACTIONS(1651), + [aux_sym_cmd_identifier_token21] = ACTIONS(1651), + [aux_sym_cmd_identifier_token22] = ACTIONS(1651), + [aux_sym_cmd_identifier_token23] = ACTIONS(1651), + [aux_sym_cmd_identifier_token24] = ACTIONS(1651), + [aux_sym_cmd_identifier_token25] = ACTIONS(1651), + [aux_sym_cmd_identifier_token26] = ACTIONS(1651), + [aux_sym_cmd_identifier_token27] = ACTIONS(1651), + [aux_sym_cmd_identifier_token28] = ACTIONS(1651), + [aux_sym_cmd_identifier_token29] = ACTIONS(1651), + [aux_sym_cmd_identifier_token30] = ACTIONS(1651), + [aux_sym_cmd_identifier_token31] = ACTIONS(1651), + [aux_sym_cmd_identifier_token32] = ACTIONS(1651), + [aux_sym_cmd_identifier_token33] = ACTIONS(1651), + [aux_sym_cmd_identifier_token34] = ACTIONS(1639), + [aux_sym_cmd_identifier_token35] = ACTIONS(1651), + [aux_sym_cmd_identifier_token36] = ACTIONS(1651), + [aux_sym_cmd_identifier_token37] = ACTIONS(1651), + [aux_sym_cmd_identifier_token38] = ACTIONS(1639), + [aux_sym_cmd_identifier_token39] = ACTIONS(1651), + [aux_sym_cmd_identifier_token40] = ACTIONS(1651), + [anon_sym_def] = ACTIONS(1639), + [anon_sym_export_DASHenv] = ACTIONS(1639), + [anon_sym_extern] = ACTIONS(1639), + [anon_sym_module] = ACTIONS(1639), + [anon_sym_use] = ACTIONS(1639), + [anon_sym_LPAREN] = ACTIONS(1651), + [anon_sym_COMMA] = ACTIONS(1651), + [anon_sym_DOLLAR] = ACTIONS(1639), + [anon_sym_error] = ACTIONS(1639), + [anon_sym_DASH2] = ACTIONS(1639), + [anon_sym_break] = ACTIONS(1639), + [anon_sym_continue] = ACTIONS(1639), + [anon_sym_for] = ACTIONS(1639), + [anon_sym_in2] = ACTIONS(1639), + [anon_sym_loop] = ACTIONS(1639), + [anon_sym_make] = ACTIONS(1639), + [anon_sym_while] = ACTIONS(1639), + [anon_sym_do] = ACTIONS(1639), + [anon_sym_if] = ACTIONS(1639), + [anon_sym_else] = ACTIONS(1639), + [anon_sym_match] = ACTIONS(1639), + [anon_sym_RBRACE] = ACTIONS(1651), + [anon_sym_try] = ACTIONS(1639), + [anon_sym_catch] = ACTIONS(1639), + [anon_sym_return] = ACTIONS(1639), + [anon_sym_source] = ACTIONS(1639), + [anon_sym_source_DASHenv] = ACTIONS(1639), + [anon_sym_hide] = ACTIONS(1639), + [anon_sym_hide_DASHenv] = ACTIONS(1639), + [anon_sym_overlay] = ACTIONS(1639), + [anon_sym_as] = ACTIONS(1639), + [anon_sym_PLUS2] = ACTIONS(1639), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1651), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1651), + [aux_sym__val_number_decimal_token1] = ACTIONS(1639), + [aux_sym__val_number_decimal_token2] = ACTIONS(1651), + [aux_sym__val_number_decimal_token3] = ACTIONS(1651), + [aux_sym__val_number_decimal_token4] = ACTIONS(1651), + [aux_sym__val_number_token1] = ACTIONS(1651), + [aux_sym__val_number_token2] = ACTIONS(1651), + [aux_sym__val_number_token3] = ACTIONS(1651), + [aux_sym__val_number_token4] = ACTIONS(1639), + [aux_sym__val_number_token5] = ACTIONS(1639), + [aux_sym__val_number_token6] = ACTIONS(1639), + [anon_sym_DQUOTE] = ACTIONS(1651), + [sym__str_single_quotes] = ACTIONS(1651), + [sym__str_back_ticks] = ACTIONS(1651), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1651), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1651), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1651), + [anon_sym_register] = ACTIONS(1639), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1651), }, [686] = { [sym_comment] = STATE(686), - [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(2041), - [aux_sym_cmd_identifier_token3] = ACTIONS(2041), - [aux_sym_cmd_identifier_token4] = ACTIONS(2041), - [aux_sym_cmd_identifier_token5] = ACTIONS(2041), - [aux_sym_cmd_identifier_token6] = ACTIONS(2041), - [aux_sym_cmd_identifier_token7] = ACTIONS(2041), - [aux_sym_cmd_identifier_token8] = ACTIONS(2035), - [aux_sym_cmd_identifier_token9] = ACTIONS(2035), - [aux_sym_cmd_identifier_token10] = ACTIONS(2041), - [aux_sym_cmd_identifier_token11] = ACTIONS(2041), - [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(2041), - [aux_sym_cmd_identifier_token17] = ACTIONS(2041), - [aux_sym_cmd_identifier_token18] = ACTIONS(2041), - [aux_sym_cmd_identifier_token19] = ACTIONS(2041), - [aux_sym_cmd_identifier_token20] = ACTIONS(2041), - [aux_sym_cmd_identifier_token21] = ACTIONS(2041), - [aux_sym_cmd_identifier_token22] = ACTIONS(2041), - [aux_sym_cmd_identifier_token23] = ACTIONS(2041), - [aux_sym_cmd_identifier_token24] = ACTIONS(2041), - [aux_sym_cmd_identifier_token25] = ACTIONS(2041), - [aux_sym_cmd_identifier_token26] = ACTIONS(2041), - [aux_sym_cmd_identifier_token27] = ACTIONS(2041), - [aux_sym_cmd_identifier_token28] = ACTIONS(2041), - [aux_sym_cmd_identifier_token29] = ACTIONS(2041), - [aux_sym_cmd_identifier_token30] = ACTIONS(2041), - [aux_sym_cmd_identifier_token31] = ACTIONS(2041), - [aux_sym_cmd_identifier_token32] = ACTIONS(2041), - [aux_sym_cmd_identifier_token33] = ACTIONS(2041), - [aux_sym_cmd_identifier_token34] = ACTIONS(2035), - [aux_sym_cmd_identifier_token35] = ACTIONS(2041), - [aux_sym_cmd_identifier_token36] = ACTIONS(2041), - [aux_sym_cmd_identifier_token37] = ACTIONS(2041), - [aux_sym_cmd_identifier_token38] = ACTIONS(2035), - [aux_sym_cmd_identifier_token39] = ACTIONS(2041), - [aux_sym_cmd_identifier_token40] = ACTIONS(2041), - [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(2041), - [anon_sym_COMMA] = ACTIONS(2041), - [anon_sym_DOLLAR] = ACTIONS(2035), - [anon_sym_error] = ACTIONS(2035), - [anon_sym_DASH2] = ACTIONS(2035), - [anon_sym_break] = ACTIONS(2035), - [anon_sym_continue] = ACTIONS(2035), - [anon_sym_for] = ACTIONS(2035), - [anon_sym_in2] = 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(2041), - [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_as] = ACTIONS(2035), - [anon_sym_PLUS2] = ACTIONS(2035), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2041), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2041), - [aux_sym__val_number_decimal_token1] = ACTIONS(2035), - [aux_sym__val_number_decimal_token2] = ACTIONS(2041), - [aux_sym__val_number_decimal_token3] = ACTIONS(2041), - [aux_sym__val_number_decimal_token4] = ACTIONS(2041), - [aux_sym__val_number_token1] = ACTIONS(2041), - [aux_sym__val_number_token2] = ACTIONS(2041), - [aux_sym__val_number_token3] = ACTIONS(2041), - [aux_sym__val_number_token4] = ACTIONS(2035), - [aux_sym__val_number_token5] = ACTIONS(2035), - [aux_sym__val_number_token6] = ACTIONS(2035), - [anon_sym_DQUOTE] = ACTIONS(2041), - [sym__str_single_quotes] = ACTIONS(2041), - [sym__str_back_ticks] = ACTIONS(2041), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2041), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2041), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2041), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2041), + [anon_sym_export] = ACTIONS(2495), + [anon_sym_alias] = ACTIONS(2495), + [anon_sym_let] = ACTIONS(2495), + [anon_sym_let_DASHenv] = ACTIONS(2495), + [anon_sym_mut] = ACTIONS(2495), + [anon_sym_const] = ACTIONS(2495), + [aux_sym_cmd_identifier_token1] = ACTIONS(2495), + [aux_sym_cmd_identifier_token2] = ACTIONS(2495), + [aux_sym_cmd_identifier_token3] = ACTIONS(2495), + [aux_sym_cmd_identifier_token4] = ACTIONS(2495), + [aux_sym_cmd_identifier_token5] = ACTIONS(2495), + [aux_sym_cmd_identifier_token6] = ACTIONS(2495), + [aux_sym_cmd_identifier_token7] = ACTIONS(2495), + [aux_sym_cmd_identifier_token8] = ACTIONS(2495), + [aux_sym_cmd_identifier_token9] = ACTIONS(2495), + [aux_sym_cmd_identifier_token10] = ACTIONS(2495), + [aux_sym_cmd_identifier_token11] = ACTIONS(2495), + [aux_sym_cmd_identifier_token12] = ACTIONS(2495), + [aux_sym_cmd_identifier_token13] = ACTIONS(2495), + [aux_sym_cmd_identifier_token14] = ACTIONS(2495), + [aux_sym_cmd_identifier_token15] = ACTIONS(2495), + [aux_sym_cmd_identifier_token16] = ACTIONS(2495), + [aux_sym_cmd_identifier_token17] = ACTIONS(2495), + [aux_sym_cmd_identifier_token18] = ACTIONS(2495), + [aux_sym_cmd_identifier_token19] = ACTIONS(2495), + [aux_sym_cmd_identifier_token20] = ACTIONS(2495), + [aux_sym_cmd_identifier_token21] = ACTIONS(2495), + [aux_sym_cmd_identifier_token22] = ACTIONS(2495), + [aux_sym_cmd_identifier_token23] = ACTIONS(2495), + [aux_sym_cmd_identifier_token24] = ACTIONS(2495), + [aux_sym_cmd_identifier_token25] = ACTIONS(2495), + [aux_sym_cmd_identifier_token26] = ACTIONS(2495), + [aux_sym_cmd_identifier_token27] = ACTIONS(2495), + [aux_sym_cmd_identifier_token28] = ACTIONS(2495), + [aux_sym_cmd_identifier_token29] = ACTIONS(2495), + [aux_sym_cmd_identifier_token30] = ACTIONS(2495), + [aux_sym_cmd_identifier_token31] = ACTIONS(2495), + [aux_sym_cmd_identifier_token32] = ACTIONS(2495), + [aux_sym_cmd_identifier_token33] = ACTIONS(2495), + [aux_sym_cmd_identifier_token34] = ACTIONS(2495), + [aux_sym_cmd_identifier_token35] = ACTIONS(2495), + [aux_sym_cmd_identifier_token36] = ACTIONS(2495), + [aux_sym_cmd_identifier_token37] = ACTIONS(2495), + [aux_sym_cmd_identifier_token38] = ACTIONS(2495), + [aux_sym_cmd_identifier_token39] = ACTIONS(2495), + [aux_sym_cmd_identifier_token40] = ACTIONS(2495), + [anon_sym_def] = ACTIONS(2495), + [anon_sym_export_DASHenv] = ACTIONS(2495), + [anon_sym_extern] = ACTIONS(2495), + [anon_sym_module] = ACTIONS(2495), + [anon_sym_use] = ACTIONS(2495), + [anon_sym_LPAREN] = ACTIONS(2495), + [anon_sym_DOLLAR] = ACTIONS(2495), + [anon_sym_error] = ACTIONS(2495), + [anon_sym_DASH2] = ACTIONS(2495), + [anon_sym_break] = ACTIONS(2495), + [anon_sym_continue] = ACTIONS(2495), + [anon_sym_for] = ACTIONS(2495), + [anon_sym_in2] = ACTIONS(2495), + [anon_sym_loop] = ACTIONS(2495), + [anon_sym_make] = ACTIONS(2495), + [anon_sym_while] = ACTIONS(2495), + [anon_sym_do] = ACTIONS(2495), + [anon_sym_if] = ACTIONS(2495), + [anon_sym_else] = ACTIONS(2495), + [anon_sym_match] = ACTIONS(2495), + [anon_sym_RBRACE] = ACTIONS(2495), + [anon_sym_try] = ACTIONS(2495), + [anon_sym_catch] = ACTIONS(2495), + [anon_sym_return] = ACTIONS(2495), + [anon_sym_source] = ACTIONS(2495), + [anon_sym_source_DASHenv] = ACTIONS(2495), + [anon_sym_hide] = ACTIONS(2495), + [anon_sym_hide_DASHenv] = ACTIONS(2495), + [anon_sym_overlay] = ACTIONS(2495), + [anon_sym_as] = ACTIONS(2495), + [anon_sym_PLUS2] = ACTIONS(2495), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2495), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2495), + [aux_sym__val_number_decimal_token1] = ACTIONS(2495), + [aux_sym__val_number_decimal_token2] = ACTIONS(2495), + [aux_sym__val_number_decimal_token3] = ACTIONS(2495), + [aux_sym__val_number_decimal_token4] = ACTIONS(2495), + [aux_sym__val_number_token1] = ACTIONS(2495), + [aux_sym__val_number_token2] = ACTIONS(2495), + [aux_sym__val_number_token3] = ACTIONS(2495), + [aux_sym__val_number_token4] = ACTIONS(2495), + [aux_sym__val_number_token5] = ACTIONS(2495), + [aux_sym__val_number_token6] = ACTIONS(2495), + [anon_sym_DQUOTE] = ACTIONS(2495), + [sym__str_single_quotes] = ACTIONS(2495), + [sym__str_back_ticks] = ACTIONS(2495), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2495), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2495), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2495), + [sym__entry_separator] = ACTIONS(2497), + [anon_sym_register] = ACTIONS(2495), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2497), }, [687] = { [sym_comment] = STATE(687), - [anon_sym_export] = ACTIONS(1993), - [anon_sym_alias] = ACTIONS(1993), - [anon_sym_let] = ACTIONS(1993), - [anon_sym_let_DASHenv] = ACTIONS(1993), - [anon_sym_mut] = ACTIONS(1993), - [anon_sym_const] = ACTIONS(1993), - [aux_sym_cmd_identifier_token1] = ACTIONS(1993), - [aux_sym_cmd_identifier_token2] = ACTIONS(1995), - [aux_sym_cmd_identifier_token3] = ACTIONS(1995), - [aux_sym_cmd_identifier_token4] = ACTIONS(1995), - [aux_sym_cmd_identifier_token5] = ACTIONS(1995), - [aux_sym_cmd_identifier_token6] = ACTIONS(1995), - [aux_sym_cmd_identifier_token7] = ACTIONS(1995), - [aux_sym_cmd_identifier_token8] = ACTIONS(1993), - [aux_sym_cmd_identifier_token9] = ACTIONS(1993), - [aux_sym_cmd_identifier_token10] = ACTIONS(1995), - [aux_sym_cmd_identifier_token11] = ACTIONS(1995), - [aux_sym_cmd_identifier_token12] = ACTIONS(1993), - [aux_sym_cmd_identifier_token13] = ACTIONS(1993), - [aux_sym_cmd_identifier_token14] = ACTIONS(1993), - [aux_sym_cmd_identifier_token15] = ACTIONS(1993), - [aux_sym_cmd_identifier_token16] = ACTIONS(1995), - [aux_sym_cmd_identifier_token17] = ACTIONS(1995), - [aux_sym_cmd_identifier_token18] = ACTIONS(1995), - [aux_sym_cmd_identifier_token19] = ACTIONS(1995), - [aux_sym_cmd_identifier_token20] = ACTIONS(1995), - [aux_sym_cmd_identifier_token21] = ACTIONS(1995), - [aux_sym_cmd_identifier_token22] = ACTIONS(1995), - [aux_sym_cmd_identifier_token23] = ACTIONS(1995), - [aux_sym_cmd_identifier_token24] = ACTIONS(1995), - [aux_sym_cmd_identifier_token25] = ACTIONS(1995), - [aux_sym_cmd_identifier_token26] = ACTIONS(1995), - [aux_sym_cmd_identifier_token27] = ACTIONS(1995), - [aux_sym_cmd_identifier_token28] = ACTIONS(1995), - [aux_sym_cmd_identifier_token29] = ACTIONS(1995), - [aux_sym_cmd_identifier_token30] = ACTIONS(1995), - [aux_sym_cmd_identifier_token31] = ACTIONS(1995), - [aux_sym_cmd_identifier_token32] = ACTIONS(1995), - [aux_sym_cmd_identifier_token33] = ACTIONS(1995), - [aux_sym_cmd_identifier_token34] = ACTIONS(1993), - [aux_sym_cmd_identifier_token35] = ACTIONS(1995), - [aux_sym_cmd_identifier_token36] = ACTIONS(1995), - [aux_sym_cmd_identifier_token37] = ACTIONS(1995), - [aux_sym_cmd_identifier_token38] = ACTIONS(1993), - [aux_sym_cmd_identifier_token39] = ACTIONS(1995), - [aux_sym_cmd_identifier_token40] = ACTIONS(1995), - [anon_sym_def] = ACTIONS(1993), - [anon_sym_export_DASHenv] = ACTIONS(1993), - [anon_sym_extern] = ACTIONS(1993), - [anon_sym_module] = ACTIONS(1993), - [anon_sym_use] = ACTIONS(1993), - [anon_sym_LPAREN] = ACTIONS(1995), - [anon_sym_COMMA] = ACTIONS(1995), - [anon_sym_DOLLAR] = ACTIONS(1993), - [anon_sym_error] = ACTIONS(1993), - [anon_sym_DASH2] = ACTIONS(1993), - [anon_sym_break] = ACTIONS(1993), - [anon_sym_continue] = ACTIONS(1993), - [anon_sym_for] = ACTIONS(1993), - [anon_sym_in2] = ACTIONS(1993), - [anon_sym_loop] = ACTIONS(1993), - [anon_sym_make] = ACTIONS(1993), - [anon_sym_while] = ACTIONS(1993), - [anon_sym_do] = ACTIONS(1993), - [anon_sym_if] = ACTIONS(1993), - [anon_sym_else] = ACTIONS(1993), - [anon_sym_match] = ACTIONS(1993), - [anon_sym_RBRACE] = ACTIONS(1995), - [anon_sym_try] = ACTIONS(1993), - [anon_sym_catch] = ACTIONS(1993), - [anon_sym_return] = ACTIONS(1993), - [anon_sym_source] = ACTIONS(1993), - [anon_sym_source_DASHenv] = ACTIONS(1993), - [anon_sym_register] = ACTIONS(1993), - [anon_sym_hide] = ACTIONS(1993), - [anon_sym_hide_DASHenv] = ACTIONS(1993), - [anon_sym_overlay] = ACTIONS(1993), - [anon_sym_as] = ACTIONS(1993), - [anon_sym_PLUS2] = ACTIONS(1993), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1995), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1995), - [aux_sym__val_number_decimal_token1] = ACTIONS(1993), - [aux_sym__val_number_decimal_token2] = ACTIONS(1995), - [aux_sym__val_number_decimal_token3] = ACTIONS(1995), - [aux_sym__val_number_decimal_token4] = ACTIONS(1995), - [aux_sym__val_number_token1] = ACTIONS(1995), - [aux_sym__val_number_token2] = ACTIONS(1995), - [aux_sym__val_number_token3] = ACTIONS(1995), - [aux_sym__val_number_token4] = ACTIONS(1993), - [aux_sym__val_number_token5] = ACTIONS(1993), - [aux_sym__val_number_token6] = ACTIONS(1993), - [anon_sym_DQUOTE] = ACTIONS(1995), - [sym__str_single_quotes] = ACTIONS(1995), - [sym__str_back_ticks] = ACTIONS(1995), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1995), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1995), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1995), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1995), - }, - [688] = { - [sym_comment] = STATE(688), - [anon_sym_export] = ACTIONS(1997), - [anon_sym_alias] = ACTIONS(1997), - [anon_sym_let] = ACTIONS(1997), - [anon_sym_let_DASHenv] = ACTIONS(1997), - [anon_sym_mut] = ACTIONS(1997), - [anon_sym_const] = ACTIONS(1997), - [aux_sym_cmd_identifier_token1] = ACTIONS(1997), - [aux_sym_cmd_identifier_token2] = ACTIONS(1999), - [aux_sym_cmd_identifier_token3] = ACTIONS(1999), - [aux_sym_cmd_identifier_token4] = ACTIONS(1999), - [aux_sym_cmd_identifier_token5] = ACTIONS(1999), - [aux_sym_cmd_identifier_token6] = ACTIONS(1999), - [aux_sym_cmd_identifier_token7] = ACTIONS(1999), - [aux_sym_cmd_identifier_token8] = ACTIONS(1997), - [aux_sym_cmd_identifier_token9] = ACTIONS(1997), - [aux_sym_cmd_identifier_token10] = ACTIONS(1999), - [aux_sym_cmd_identifier_token11] = ACTIONS(1999), - [aux_sym_cmd_identifier_token12] = ACTIONS(1997), - [aux_sym_cmd_identifier_token13] = ACTIONS(1997), - [aux_sym_cmd_identifier_token14] = ACTIONS(1997), - [aux_sym_cmd_identifier_token15] = ACTIONS(1997), - [aux_sym_cmd_identifier_token16] = ACTIONS(1999), - [aux_sym_cmd_identifier_token17] = ACTIONS(1999), - [aux_sym_cmd_identifier_token18] = ACTIONS(1999), - [aux_sym_cmd_identifier_token19] = ACTIONS(1999), - [aux_sym_cmd_identifier_token20] = ACTIONS(1999), - [aux_sym_cmd_identifier_token21] = ACTIONS(1999), - [aux_sym_cmd_identifier_token22] = ACTIONS(1999), - [aux_sym_cmd_identifier_token23] = ACTIONS(1999), - [aux_sym_cmd_identifier_token24] = ACTIONS(1999), - [aux_sym_cmd_identifier_token25] = ACTIONS(1999), - [aux_sym_cmd_identifier_token26] = ACTIONS(1999), - [aux_sym_cmd_identifier_token27] = ACTIONS(1999), - [aux_sym_cmd_identifier_token28] = ACTIONS(1999), - [aux_sym_cmd_identifier_token29] = ACTIONS(1999), - [aux_sym_cmd_identifier_token30] = ACTIONS(1999), - [aux_sym_cmd_identifier_token31] = ACTIONS(1999), - [aux_sym_cmd_identifier_token32] = ACTIONS(1999), - [aux_sym_cmd_identifier_token33] = ACTIONS(1999), - [aux_sym_cmd_identifier_token34] = ACTIONS(1997), - [aux_sym_cmd_identifier_token35] = ACTIONS(1999), - [aux_sym_cmd_identifier_token36] = ACTIONS(1999), - [aux_sym_cmd_identifier_token37] = ACTIONS(1999), - [aux_sym_cmd_identifier_token38] = ACTIONS(1997), - [aux_sym_cmd_identifier_token39] = ACTIONS(1999), - [aux_sym_cmd_identifier_token40] = ACTIONS(1999), - [anon_sym_def] = ACTIONS(1997), - [anon_sym_export_DASHenv] = ACTIONS(1997), - [anon_sym_extern] = ACTIONS(1997), - [anon_sym_module] = ACTIONS(1997), - [anon_sym_use] = ACTIONS(1997), - [anon_sym_LPAREN] = ACTIONS(1999), - [anon_sym_COMMA] = ACTIONS(1999), - [anon_sym_DOLLAR] = ACTIONS(1997), - [anon_sym_error] = ACTIONS(1997), - [anon_sym_DASH2] = ACTIONS(1997), - [anon_sym_break] = ACTIONS(1997), - [anon_sym_continue] = ACTIONS(1997), - [anon_sym_for] = ACTIONS(1997), - [anon_sym_in2] = ACTIONS(1997), - [anon_sym_loop] = ACTIONS(1997), - [anon_sym_make] = ACTIONS(1997), - [anon_sym_while] = ACTIONS(1997), - [anon_sym_do] = ACTIONS(1997), - [anon_sym_if] = ACTIONS(1997), - [anon_sym_else] = ACTIONS(1997), - [anon_sym_match] = ACTIONS(1997), - [anon_sym_RBRACE] = ACTIONS(1999), - [anon_sym_try] = ACTIONS(1997), - [anon_sym_catch] = ACTIONS(1997), - [anon_sym_return] = ACTIONS(1997), - [anon_sym_source] = ACTIONS(1997), - [anon_sym_source_DASHenv] = ACTIONS(1997), - [anon_sym_register] = ACTIONS(1997), - [anon_sym_hide] = ACTIONS(1997), - [anon_sym_hide_DASHenv] = ACTIONS(1997), - [anon_sym_overlay] = ACTIONS(1997), - [anon_sym_as] = ACTIONS(1997), - [anon_sym_PLUS2] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1999), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1999), - [aux_sym__val_number_decimal_token1] = ACTIONS(1997), - [aux_sym__val_number_decimal_token2] = ACTIONS(1999), - [aux_sym__val_number_decimal_token3] = ACTIONS(1999), - [aux_sym__val_number_decimal_token4] = ACTIONS(1999), - [aux_sym__val_number_token1] = ACTIONS(1999), - [aux_sym__val_number_token2] = ACTIONS(1999), - [aux_sym__val_number_token3] = ACTIONS(1999), - [aux_sym__val_number_token4] = ACTIONS(1997), - [aux_sym__val_number_token5] = ACTIONS(1997), - [aux_sym__val_number_token6] = ACTIONS(1997), - [anon_sym_DQUOTE] = ACTIONS(1999), - [sym__str_single_quotes] = ACTIONS(1999), - [sym__str_back_ticks] = ACTIONS(1999), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1999), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1999), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1999), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1999), - }, - [689] = { - [sym_comment] = STATE(689), - [aux_sym_shebang_repeat1] = STATE(689), - [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(1296), - [aux_sym_cmd_identifier_token2] = ACTIONS(1298), - [aux_sym_cmd_identifier_token3] = ACTIONS(1298), - [aux_sym_cmd_identifier_token4] = ACTIONS(1298), - [aux_sym_cmd_identifier_token5] = ACTIONS(1298), - [aux_sym_cmd_identifier_token6] = ACTIONS(1298), - [aux_sym_cmd_identifier_token7] = ACTIONS(1298), - [aux_sym_cmd_identifier_token8] = ACTIONS(1296), - [aux_sym_cmd_identifier_token9] = ACTIONS(1296), - [aux_sym_cmd_identifier_token10] = ACTIONS(1298), - [aux_sym_cmd_identifier_token11] = ACTIONS(1298), - [aux_sym_cmd_identifier_token12] = ACTIONS(1296), - [aux_sym_cmd_identifier_token13] = ACTIONS(1296), - [aux_sym_cmd_identifier_token14] = ACTIONS(1296), - [aux_sym_cmd_identifier_token15] = ACTIONS(1296), - [aux_sym_cmd_identifier_token16] = ACTIONS(1298), - [aux_sym_cmd_identifier_token17] = ACTIONS(1298), - [aux_sym_cmd_identifier_token18] = ACTIONS(1298), - [aux_sym_cmd_identifier_token19] = ACTIONS(1298), - [aux_sym_cmd_identifier_token20] = ACTIONS(1298), - [aux_sym_cmd_identifier_token21] = ACTIONS(1298), - [aux_sym_cmd_identifier_token22] = ACTIONS(1298), - [aux_sym_cmd_identifier_token23] = ACTIONS(1298), - [aux_sym_cmd_identifier_token24] = ACTIONS(1298), - [aux_sym_cmd_identifier_token25] = ACTIONS(1298), - [aux_sym_cmd_identifier_token26] = ACTIONS(1298), - [aux_sym_cmd_identifier_token27] = ACTIONS(1298), - [aux_sym_cmd_identifier_token28] = ACTIONS(1298), - [aux_sym_cmd_identifier_token29] = ACTIONS(1298), - [aux_sym_cmd_identifier_token30] = ACTIONS(1298), - [aux_sym_cmd_identifier_token31] = ACTIONS(1298), - [aux_sym_cmd_identifier_token32] = ACTIONS(1298), - [aux_sym_cmd_identifier_token33] = ACTIONS(1298), - [aux_sym_cmd_identifier_token34] = ACTIONS(1296), - [aux_sym_cmd_identifier_token35] = ACTIONS(1298), - [aux_sym_cmd_identifier_token36] = ACTIONS(1298), - [aux_sym_cmd_identifier_token37] = ACTIONS(1298), - [aux_sym_cmd_identifier_token38] = ACTIONS(1296), - [aux_sym_cmd_identifier_token39] = ACTIONS(1298), - [aux_sym_cmd_identifier_token40] = ACTIONS(1298), - [sym__newline] = ACTIONS(2509), - [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(1298), - [anon_sym_DOLLAR] = ACTIONS(1296), - [anon_sym_error] = ACTIONS(1296), - [anon_sym_DASH2] = ACTIONS(1296), - [anon_sym_break] = ACTIONS(1296), - [anon_sym_continue] = ACTIONS(1296), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_in2] = 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_as] = ACTIONS(1296), - [anon_sym_PLUS2] = ACTIONS(1296), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1298), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1298), - [aux_sym__val_number_decimal_token1] = ACTIONS(1296), - [aux_sym__val_number_decimal_token2] = ACTIONS(1298), - [aux_sym__val_number_decimal_token3] = ACTIONS(1298), - [aux_sym__val_number_decimal_token4] = ACTIONS(1298), - [aux_sym__val_number_token1] = ACTIONS(1298), - [aux_sym__val_number_token2] = ACTIONS(1298), - [aux_sym__val_number_token3] = ACTIONS(1298), - [aux_sym__val_number_token4] = ACTIONS(1296), - [aux_sym__val_number_token5] = ACTIONS(1296), - [aux_sym__val_number_token6] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1298), - [sym__str_single_quotes] = ACTIONS(1298), - [sym__str_back_ticks] = ACTIONS(1298), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1298), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1298), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1298), - }, - [690] = { - [sym_comment] = STATE(690), - [anon_sym_export] = ACTIONS(2390), - [anon_sym_alias] = ACTIONS(2390), - [anon_sym_let] = ACTIONS(2390), - [anon_sym_let_DASHenv] = ACTIONS(2390), - [anon_sym_mut] = ACTIONS(2390), - [anon_sym_const] = ACTIONS(2390), - [aux_sym_cmd_identifier_token1] = ACTIONS(2390), - [aux_sym_cmd_identifier_token2] = ACTIONS(2392), - [aux_sym_cmd_identifier_token3] = ACTIONS(2392), - [aux_sym_cmd_identifier_token4] = ACTIONS(2392), - [aux_sym_cmd_identifier_token5] = ACTIONS(2392), - [aux_sym_cmd_identifier_token6] = ACTIONS(2392), - [aux_sym_cmd_identifier_token7] = ACTIONS(2392), - [aux_sym_cmd_identifier_token8] = ACTIONS(2390), - [aux_sym_cmd_identifier_token9] = ACTIONS(2390), - [aux_sym_cmd_identifier_token10] = ACTIONS(2392), - [aux_sym_cmd_identifier_token11] = ACTIONS(2392), - [aux_sym_cmd_identifier_token12] = ACTIONS(2390), - [aux_sym_cmd_identifier_token13] = ACTIONS(2390), - [aux_sym_cmd_identifier_token14] = ACTIONS(2390), - [aux_sym_cmd_identifier_token15] = ACTIONS(2390), - [aux_sym_cmd_identifier_token16] = ACTIONS(2392), - [aux_sym_cmd_identifier_token17] = ACTIONS(2392), - [aux_sym_cmd_identifier_token18] = ACTIONS(2392), - [aux_sym_cmd_identifier_token19] = ACTIONS(2392), - [aux_sym_cmd_identifier_token20] = ACTIONS(2392), - [aux_sym_cmd_identifier_token21] = ACTIONS(2392), - [aux_sym_cmd_identifier_token22] = ACTIONS(2392), - [aux_sym_cmd_identifier_token23] = ACTIONS(2392), - [aux_sym_cmd_identifier_token24] = ACTIONS(2392), - [aux_sym_cmd_identifier_token25] = ACTIONS(2392), - [aux_sym_cmd_identifier_token26] = ACTIONS(2392), - [aux_sym_cmd_identifier_token27] = ACTIONS(2392), - [aux_sym_cmd_identifier_token28] = ACTIONS(2392), - [aux_sym_cmd_identifier_token29] = ACTIONS(2392), - [aux_sym_cmd_identifier_token30] = ACTIONS(2392), - [aux_sym_cmd_identifier_token31] = ACTIONS(2392), - [aux_sym_cmd_identifier_token32] = ACTIONS(2392), - [aux_sym_cmd_identifier_token33] = ACTIONS(2392), - [aux_sym_cmd_identifier_token34] = ACTIONS(2390), - [aux_sym_cmd_identifier_token35] = ACTIONS(2392), - [aux_sym_cmd_identifier_token36] = ACTIONS(2392), - [aux_sym_cmd_identifier_token37] = ACTIONS(2392), - [aux_sym_cmd_identifier_token38] = ACTIONS(2390), - [aux_sym_cmd_identifier_token39] = ACTIONS(2392), - [aux_sym_cmd_identifier_token40] = ACTIONS(2392), - [anon_sym_def] = ACTIONS(2390), - [anon_sym_export_DASHenv] = ACTIONS(2390), - [anon_sym_extern] = ACTIONS(2390), - [anon_sym_module] = ACTIONS(2390), - [anon_sym_use] = ACTIONS(2390), - [anon_sym_LPAREN] = ACTIONS(2392), - [anon_sym_COMMA] = ACTIONS(2392), - [anon_sym_DOLLAR] = ACTIONS(2390), - [anon_sym_error] = ACTIONS(2390), - [anon_sym_DASH2] = ACTIONS(2390), - [anon_sym_break] = ACTIONS(2390), - [anon_sym_continue] = ACTIONS(2390), - [anon_sym_for] = ACTIONS(2390), - [anon_sym_in2] = ACTIONS(2390), - [anon_sym_loop] = ACTIONS(2390), - [anon_sym_make] = ACTIONS(2390), - [anon_sym_while] = ACTIONS(2390), - [anon_sym_do] = ACTIONS(2390), - [anon_sym_if] = ACTIONS(2390), - [anon_sym_else] = ACTIONS(2390), - [anon_sym_match] = ACTIONS(2390), - [anon_sym_RBRACE] = ACTIONS(2392), - [anon_sym_try] = ACTIONS(2390), - [anon_sym_catch] = ACTIONS(2390), - [anon_sym_return] = ACTIONS(2390), - [anon_sym_source] = ACTIONS(2390), - [anon_sym_source_DASHenv] = ACTIONS(2390), - [anon_sym_register] = ACTIONS(2390), - [anon_sym_hide] = ACTIONS(2390), - [anon_sym_hide_DASHenv] = ACTIONS(2390), - [anon_sym_overlay] = ACTIONS(2390), - [anon_sym_as] = ACTIONS(2390), - [anon_sym_PLUS2] = ACTIONS(2390), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2392), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2392), - [aux_sym__val_number_decimal_token1] = ACTIONS(2390), - [aux_sym__val_number_decimal_token2] = ACTIONS(2392), - [aux_sym__val_number_decimal_token3] = ACTIONS(2392), - [aux_sym__val_number_decimal_token4] = ACTIONS(2392), - [aux_sym__val_number_token1] = ACTIONS(2392), - [aux_sym__val_number_token2] = ACTIONS(2392), - [aux_sym__val_number_token3] = ACTIONS(2392), - [aux_sym__val_number_token4] = ACTIONS(2390), - [aux_sym__val_number_token5] = ACTIONS(2390), - [aux_sym__val_number_token6] = ACTIONS(2390), - [anon_sym_DQUOTE] = ACTIONS(2392), - [sym__str_single_quotes] = ACTIONS(2392), - [sym__str_back_ticks] = ACTIONS(2392), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2392), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2392), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2392), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2392), - }, - [691] = { - [sym_comment] = STATE(691), - [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(2396), - [aux_sym_cmd_identifier_token3] = ACTIONS(2396), - [aux_sym_cmd_identifier_token4] = ACTIONS(2396), - [aux_sym_cmd_identifier_token5] = ACTIONS(2396), - [aux_sym_cmd_identifier_token6] = ACTIONS(2396), - [aux_sym_cmd_identifier_token7] = ACTIONS(2396), - [aux_sym_cmd_identifier_token8] = ACTIONS(2394), - [aux_sym_cmd_identifier_token9] = ACTIONS(2394), - [aux_sym_cmd_identifier_token10] = ACTIONS(2396), - [aux_sym_cmd_identifier_token11] = ACTIONS(2396), - [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(2396), - [aux_sym_cmd_identifier_token17] = ACTIONS(2396), - [aux_sym_cmd_identifier_token18] = ACTIONS(2396), - [aux_sym_cmd_identifier_token19] = ACTIONS(2396), - [aux_sym_cmd_identifier_token20] = ACTIONS(2396), - [aux_sym_cmd_identifier_token21] = ACTIONS(2396), - [aux_sym_cmd_identifier_token22] = ACTIONS(2396), - [aux_sym_cmd_identifier_token23] = ACTIONS(2396), - [aux_sym_cmd_identifier_token24] = ACTIONS(2396), - [aux_sym_cmd_identifier_token25] = ACTIONS(2396), - [aux_sym_cmd_identifier_token26] = ACTIONS(2396), - [aux_sym_cmd_identifier_token27] = ACTIONS(2396), - [aux_sym_cmd_identifier_token28] = ACTIONS(2396), - [aux_sym_cmd_identifier_token29] = ACTIONS(2396), - [aux_sym_cmd_identifier_token30] = ACTIONS(2396), - [aux_sym_cmd_identifier_token31] = ACTIONS(2396), - [aux_sym_cmd_identifier_token32] = ACTIONS(2396), - [aux_sym_cmd_identifier_token33] = ACTIONS(2396), - [aux_sym_cmd_identifier_token34] = ACTIONS(2394), - [aux_sym_cmd_identifier_token35] = ACTIONS(2396), - [aux_sym_cmd_identifier_token36] = ACTIONS(2396), - [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(2396), - [anon_sym_DOLLAR] = ACTIONS(2394), - [anon_sym_error] = ACTIONS(2394), - [anon_sym_DASH2] = ACTIONS(2394), - [anon_sym_break] = ACTIONS(2394), - [anon_sym_continue] = ACTIONS(2394), - [anon_sym_for] = ACTIONS(2394), - [anon_sym_in2] = 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_as] = ACTIONS(2394), - [anon_sym_PLUS2] = 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), - [aux_sym__val_number_decimal_token3] = ACTIONS(2396), - [aux_sym__val_number_decimal_token4] = ACTIONS(2396), - [aux_sym__val_number_token1] = ACTIONS(2396), - [aux_sym__val_number_token2] = ACTIONS(2396), - [aux_sym__val_number_token3] = ACTIONS(2396), - [aux_sym__val_number_token4] = ACTIONS(2394), - [aux_sym__val_number_token5] = ACTIONS(2394), - [aux_sym__val_number_token6] = ACTIONS(2394), - [anon_sym_DQUOTE] = ACTIONS(2396), - [sym__str_single_quotes] = ACTIONS(2396), - [sym__str_back_ticks] = ACTIONS(2396), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2396), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2396), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2396), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2396), - }, - [692] = { - [sym_comment] = STATE(692), - [anon_sym_export] = ACTIONS(2464), - [anon_sym_alias] = ACTIONS(2464), - [anon_sym_let] = ACTIONS(2464), - [anon_sym_let_DASHenv] = ACTIONS(2464), - [anon_sym_mut] = ACTIONS(2464), - [anon_sym_const] = ACTIONS(2464), - [aux_sym_cmd_identifier_token1] = ACTIONS(2464), - [aux_sym_cmd_identifier_token2] = ACTIONS(2466), - [aux_sym_cmd_identifier_token3] = ACTIONS(2466), - [aux_sym_cmd_identifier_token4] = ACTIONS(2466), - [aux_sym_cmd_identifier_token5] = ACTIONS(2466), - [aux_sym_cmd_identifier_token6] = ACTIONS(2466), - [aux_sym_cmd_identifier_token7] = ACTIONS(2466), - [aux_sym_cmd_identifier_token8] = ACTIONS(2464), - [aux_sym_cmd_identifier_token9] = ACTIONS(2464), - [aux_sym_cmd_identifier_token10] = ACTIONS(2466), - [aux_sym_cmd_identifier_token11] = ACTIONS(2466), - [aux_sym_cmd_identifier_token12] = ACTIONS(2464), - [aux_sym_cmd_identifier_token13] = ACTIONS(2464), - [aux_sym_cmd_identifier_token14] = ACTIONS(2464), - [aux_sym_cmd_identifier_token15] = ACTIONS(2464), - [aux_sym_cmd_identifier_token16] = ACTIONS(2466), - [aux_sym_cmd_identifier_token17] = ACTIONS(2466), - [aux_sym_cmd_identifier_token18] = ACTIONS(2466), - [aux_sym_cmd_identifier_token19] = ACTIONS(2466), - [aux_sym_cmd_identifier_token20] = ACTIONS(2466), - [aux_sym_cmd_identifier_token21] = ACTIONS(2466), - [aux_sym_cmd_identifier_token22] = ACTIONS(2466), - [aux_sym_cmd_identifier_token23] = ACTIONS(2466), - [aux_sym_cmd_identifier_token24] = ACTIONS(2466), - [aux_sym_cmd_identifier_token25] = ACTIONS(2466), - [aux_sym_cmd_identifier_token26] = ACTIONS(2466), - [aux_sym_cmd_identifier_token27] = ACTIONS(2466), - [aux_sym_cmd_identifier_token28] = ACTIONS(2466), - [aux_sym_cmd_identifier_token29] = ACTIONS(2466), - [aux_sym_cmd_identifier_token30] = ACTIONS(2466), - [aux_sym_cmd_identifier_token31] = ACTIONS(2466), - [aux_sym_cmd_identifier_token32] = ACTIONS(2466), - [aux_sym_cmd_identifier_token33] = ACTIONS(2466), - [aux_sym_cmd_identifier_token34] = ACTIONS(2464), - [aux_sym_cmd_identifier_token35] = ACTIONS(2466), - [aux_sym_cmd_identifier_token36] = ACTIONS(2466), - [aux_sym_cmd_identifier_token37] = ACTIONS(2466), - [aux_sym_cmd_identifier_token38] = ACTIONS(2464), - [aux_sym_cmd_identifier_token39] = ACTIONS(2466), - [aux_sym_cmd_identifier_token40] = ACTIONS(2466), - [anon_sym_def] = ACTIONS(2464), - [anon_sym_export_DASHenv] = ACTIONS(2464), - [anon_sym_extern] = ACTIONS(2464), - [anon_sym_module] = ACTIONS(2464), - [anon_sym_use] = ACTIONS(2464), - [anon_sym_LPAREN] = ACTIONS(2466), - [anon_sym_COMMA] = ACTIONS(2466), - [anon_sym_DOLLAR] = ACTIONS(2464), - [anon_sym_error] = ACTIONS(2464), - [anon_sym_DASH2] = ACTIONS(2464), - [anon_sym_break] = ACTIONS(2464), - [anon_sym_continue] = ACTIONS(2464), - [anon_sym_for] = ACTIONS(2464), - [anon_sym_in2] = ACTIONS(2464), - [anon_sym_loop] = ACTIONS(2464), - [anon_sym_make] = ACTIONS(2464), - [anon_sym_while] = ACTIONS(2464), - [anon_sym_do] = ACTIONS(2464), - [anon_sym_if] = ACTIONS(2464), - [anon_sym_else] = ACTIONS(2464), - [anon_sym_match] = ACTIONS(2464), - [anon_sym_RBRACE] = ACTIONS(2466), - [anon_sym_try] = ACTIONS(2464), - [anon_sym_catch] = ACTIONS(2464), - [anon_sym_return] = ACTIONS(2464), - [anon_sym_source] = ACTIONS(2464), - [anon_sym_source_DASHenv] = ACTIONS(2464), - [anon_sym_register] = ACTIONS(2464), - [anon_sym_hide] = ACTIONS(2464), - [anon_sym_hide_DASHenv] = ACTIONS(2464), - [anon_sym_overlay] = ACTIONS(2464), - [anon_sym_as] = ACTIONS(2464), - [anon_sym_PLUS2] = ACTIONS(2464), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2466), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2466), - [aux_sym__val_number_decimal_token1] = ACTIONS(2464), - [aux_sym__val_number_decimal_token2] = ACTIONS(2466), - [aux_sym__val_number_decimal_token3] = ACTIONS(2466), - [aux_sym__val_number_decimal_token4] = ACTIONS(2466), - [aux_sym__val_number_token1] = ACTIONS(2466), - [aux_sym__val_number_token2] = ACTIONS(2466), - [aux_sym__val_number_token3] = ACTIONS(2466), - [aux_sym__val_number_token4] = ACTIONS(2464), - [aux_sym__val_number_token5] = ACTIONS(2464), - [aux_sym__val_number_token6] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2466), - [sym__str_single_quotes] = ACTIONS(2466), - [sym__str_back_ticks] = ACTIONS(2466), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2466), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2466), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2466), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2466), - }, - [693] = { - [sym_comment] = STATE(693), - [anon_sym_export] = ACTIONS(2398), - [anon_sym_alias] = ACTIONS(2398), - [anon_sym_let] = ACTIONS(2398), - [anon_sym_let_DASHenv] = ACTIONS(2398), - [anon_sym_mut] = ACTIONS(2398), - [anon_sym_const] = ACTIONS(2398), - [aux_sym_cmd_identifier_token1] = ACTIONS(2398), - [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(2398), - [aux_sym_cmd_identifier_token9] = ACTIONS(2398), - [aux_sym_cmd_identifier_token10] = ACTIONS(2400), - [aux_sym_cmd_identifier_token11] = ACTIONS(2400), - [aux_sym_cmd_identifier_token12] = ACTIONS(2398), - [aux_sym_cmd_identifier_token13] = ACTIONS(2398), - [aux_sym_cmd_identifier_token14] = ACTIONS(2398), - [aux_sym_cmd_identifier_token15] = ACTIONS(2398), - [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(2398), - [aux_sym_cmd_identifier_token35] = ACTIONS(2400), - [aux_sym_cmd_identifier_token36] = ACTIONS(2400), - [aux_sym_cmd_identifier_token37] = ACTIONS(2400), - [aux_sym_cmd_identifier_token38] = ACTIONS(2398), - [aux_sym_cmd_identifier_token39] = ACTIONS(2400), - [aux_sym_cmd_identifier_token40] = ACTIONS(2400), - [anon_sym_def] = ACTIONS(2398), - [anon_sym_export_DASHenv] = ACTIONS(2398), - [anon_sym_extern] = ACTIONS(2398), - [anon_sym_module] = ACTIONS(2398), - [anon_sym_use] = ACTIONS(2398), - [anon_sym_LPAREN] = ACTIONS(2400), - [anon_sym_COMMA] = ACTIONS(2400), - [anon_sym_DOLLAR] = ACTIONS(2398), - [anon_sym_error] = ACTIONS(2398), - [anon_sym_DASH2] = ACTIONS(2398), - [anon_sym_break] = ACTIONS(2398), - [anon_sym_continue] = ACTIONS(2398), - [anon_sym_for] = ACTIONS(2398), - [anon_sym_in2] = ACTIONS(2398), - [anon_sym_loop] = ACTIONS(2398), - [anon_sym_make] = ACTIONS(2398), - [anon_sym_while] = ACTIONS(2398), - [anon_sym_do] = ACTIONS(2398), - [anon_sym_if] = ACTIONS(2398), - [anon_sym_else] = ACTIONS(2398), - [anon_sym_match] = ACTIONS(2398), - [anon_sym_RBRACE] = ACTIONS(2400), - [anon_sym_try] = ACTIONS(2398), - [anon_sym_catch] = ACTIONS(2398), - [anon_sym_return] = ACTIONS(2398), - [anon_sym_source] = ACTIONS(2398), - [anon_sym_source_DASHenv] = ACTIONS(2398), - [anon_sym_register] = ACTIONS(2398), - [anon_sym_hide] = ACTIONS(2398), - [anon_sym_hide_DASHenv] = ACTIONS(2398), - [anon_sym_overlay] = ACTIONS(2398), - [anon_sym_as] = ACTIONS(2398), - [anon_sym_PLUS2] = ACTIONS(2398), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2400), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2400), - [aux_sym__val_number_decimal_token1] = ACTIONS(2398), - [aux_sym__val_number_decimal_token2] = ACTIONS(2400), - [aux_sym__val_number_decimal_token3] = ACTIONS(2400), - [aux_sym__val_number_decimal_token4] = ACTIONS(2400), - [aux_sym__val_number_token1] = ACTIONS(2400), - [aux_sym__val_number_token2] = ACTIONS(2400), - [aux_sym__val_number_token3] = ACTIONS(2400), - [aux_sym__val_number_token4] = ACTIONS(2398), - [aux_sym__val_number_token5] = ACTIONS(2398), - [aux_sym__val_number_token6] = ACTIONS(2398), - [anon_sym_DQUOTE] = ACTIONS(2400), - [sym__str_single_quotes] = ACTIONS(2400), - [sym__str_back_ticks] = ACTIONS(2400), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2400), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2400), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2400), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2400), - }, - [694] = { - [sym_comment] = STATE(694), - [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(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(1755), - [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(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(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(1757), - [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(1755), - [aux_sym_cmd_identifier_token35] = ACTIONS(1757), - [aux_sym_cmd_identifier_token36] = ACTIONS(1757), - [aux_sym_cmd_identifier_token37] = ACTIONS(1757), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1757), - [aux_sym_cmd_identifier_token40] = ACTIONS(1757), - [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_COMMA] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in2] = 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_RBRACE] = ACTIONS(1757), - [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_as] = ACTIONS(1755), - [anon_sym_PLUS2] = 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), - [aux_sym__val_number_token4] = ACTIONS(1755), - [aux_sym__val_number_token5] = ACTIONS(1755), - [aux_sym__val_number_token6] = ACTIONS(1755), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1757), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1757), - }, - [695] = { - [sym_comment] = STATE(695), - [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(1857), - [aux_sym_cmd_identifier_token3] = ACTIONS(1857), - [aux_sym_cmd_identifier_token4] = ACTIONS(1857), - [aux_sym_cmd_identifier_token5] = ACTIONS(1857), - [aux_sym_cmd_identifier_token6] = ACTIONS(1857), - [aux_sym_cmd_identifier_token7] = ACTIONS(1857), - [aux_sym_cmd_identifier_token8] = ACTIONS(1855), - [aux_sym_cmd_identifier_token9] = ACTIONS(1855), - [aux_sym_cmd_identifier_token10] = ACTIONS(1857), - [aux_sym_cmd_identifier_token11] = ACTIONS(1857), - [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(1857), - [aux_sym_cmd_identifier_token17] = ACTIONS(1857), - [aux_sym_cmd_identifier_token18] = ACTIONS(1857), - [aux_sym_cmd_identifier_token19] = ACTIONS(1857), - [aux_sym_cmd_identifier_token20] = ACTIONS(1857), - [aux_sym_cmd_identifier_token21] = ACTIONS(1857), - [aux_sym_cmd_identifier_token22] = ACTIONS(1857), - [aux_sym_cmd_identifier_token23] = ACTIONS(1857), - [aux_sym_cmd_identifier_token24] = ACTIONS(1857), - [aux_sym_cmd_identifier_token25] = ACTIONS(1857), - [aux_sym_cmd_identifier_token26] = ACTIONS(1857), - [aux_sym_cmd_identifier_token27] = ACTIONS(1857), - [aux_sym_cmd_identifier_token28] = ACTIONS(1857), - [aux_sym_cmd_identifier_token29] = ACTIONS(1857), - [aux_sym_cmd_identifier_token30] = ACTIONS(1857), - [aux_sym_cmd_identifier_token31] = ACTIONS(1857), - [aux_sym_cmd_identifier_token32] = ACTIONS(1857), - [aux_sym_cmd_identifier_token33] = ACTIONS(1857), - [aux_sym_cmd_identifier_token34] = ACTIONS(1855), - [aux_sym_cmd_identifier_token35] = ACTIONS(1857), - [aux_sym_cmd_identifier_token36] = ACTIONS(1857), - [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1857), - [anon_sym_DOLLAR] = ACTIONS(1855), - [anon_sym_error] = ACTIONS(1855), - [anon_sym_DASH2] = ACTIONS(1855), - [anon_sym_break] = ACTIONS(1855), - [anon_sym_continue] = ACTIONS(1855), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_in2] = 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_as] = ACTIONS(1855), - [anon_sym_PLUS2] = 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), - [aux_sym__val_number_token4] = ACTIONS(1855), - [aux_sym__val_number_token5] = ACTIONS(1855), - [aux_sym__val_number_token6] = ACTIONS(1855), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1857), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1857), - }, - [696] = { - [sym_comment] = STATE(696), - [anon_sym_export] = ACTIONS(2406), - [anon_sym_alias] = ACTIONS(2406), - [anon_sym_let] = ACTIONS(2406), - [anon_sym_let_DASHenv] = ACTIONS(2406), - [anon_sym_mut] = ACTIONS(2406), - [anon_sym_const] = ACTIONS(2406), - [aux_sym_cmd_identifier_token1] = ACTIONS(2406), - [aux_sym_cmd_identifier_token2] = ACTIONS(2408), - [aux_sym_cmd_identifier_token3] = ACTIONS(2408), - [aux_sym_cmd_identifier_token4] = ACTIONS(2408), - [aux_sym_cmd_identifier_token5] = ACTIONS(2408), - [aux_sym_cmd_identifier_token6] = ACTIONS(2408), - [aux_sym_cmd_identifier_token7] = ACTIONS(2408), - [aux_sym_cmd_identifier_token8] = ACTIONS(2406), - [aux_sym_cmd_identifier_token9] = ACTIONS(2406), - [aux_sym_cmd_identifier_token10] = ACTIONS(2408), - [aux_sym_cmd_identifier_token11] = ACTIONS(2408), - [aux_sym_cmd_identifier_token12] = ACTIONS(2406), - [aux_sym_cmd_identifier_token13] = ACTIONS(2406), - [aux_sym_cmd_identifier_token14] = ACTIONS(2406), - [aux_sym_cmd_identifier_token15] = ACTIONS(2406), - [aux_sym_cmd_identifier_token16] = ACTIONS(2408), - [aux_sym_cmd_identifier_token17] = ACTIONS(2408), - [aux_sym_cmd_identifier_token18] = ACTIONS(2408), - [aux_sym_cmd_identifier_token19] = ACTIONS(2408), - [aux_sym_cmd_identifier_token20] = ACTIONS(2408), - [aux_sym_cmd_identifier_token21] = ACTIONS(2408), - [aux_sym_cmd_identifier_token22] = ACTIONS(2408), - [aux_sym_cmd_identifier_token23] = ACTIONS(2408), - [aux_sym_cmd_identifier_token24] = ACTIONS(2408), - [aux_sym_cmd_identifier_token25] = ACTIONS(2408), - [aux_sym_cmd_identifier_token26] = ACTIONS(2408), - [aux_sym_cmd_identifier_token27] = ACTIONS(2408), - [aux_sym_cmd_identifier_token28] = ACTIONS(2408), - [aux_sym_cmd_identifier_token29] = ACTIONS(2408), - [aux_sym_cmd_identifier_token30] = ACTIONS(2408), - [aux_sym_cmd_identifier_token31] = ACTIONS(2408), - [aux_sym_cmd_identifier_token32] = ACTIONS(2408), - [aux_sym_cmd_identifier_token33] = ACTIONS(2408), - [aux_sym_cmd_identifier_token34] = ACTIONS(2406), - [aux_sym_cmd_identifier_token35] = ACTIONS(2408), - [aux_sym_cmd_identifier_token36] = ACTIONS(2408), - [aux_sym_cmd_identifier_token37] = ACTIONS(2408), - [aux_sym_cmd_identifier_token38] = ACTIONS(2406), - [aux_sym_cmd_identifier_token39] = ACTIONS(2408), - [aux_sym_cmd_identifier_token40] = ACTIONS(2408), - [anon_sym_def] = ACTIONS(2406), - [anon_sym_export_DASHenv] = ACTIONS(2406), - [anon_sym_extern] = ACTIONS(2406), - [anon_sym_module] = ACTIONS(2406), - [anon_sym_use] = ACTIONS(2406), - [anon_sym_LPAREN] = ACTIONS(2408), - [anon_sym_COMMA] = ACTIONS(2408), - [anon_sym_DOLLAR] = ACTIONS(2406), - [anon_sym_error] = ACTIONS(2406), - [anon_sym_DASH2] = ACTIONS(2406), - [anon_sym_break] = ACTIONS(2406), - [anon_sym_continue] = ACTIONS(2406), - [anon_sym_for] = ACTIONS(2406), - [anon_sym_in2] = ACTIONS(2406), - [anon_sym_loop] = ACTIONS(2406), - [anon_sym_make] = ACTIONS(2406), - [anon_sym_while] = ACTIONS(2406), - [anon_sym_do] = ACTIONS(2406), - [anon_sym_if] = ACTIONS(2406), - [anon_sym_else] = ACTIONS(2406), - [anon_sym_match] = ACTIONS(2406), - [anon_sym_RBRACE] = ACTIONS(2408), - [anon_sym_try] = ACTIONS(2406), - [anon_sym_catch] = ACTIONS(2406), - [anon_sym_return] = ACTIONS(2406), - [anon_sym_source] = ACTIONS(2406), - [anon_sym_source_DASHenv] = ACTIONS(2406), - [anon_sym_register] = ACTIONS(2406), - [anon_sym_hide] = ACTIONS(2406), - [anon_sym_hide_DASHenv] = ACTIONS(2406), - [anon_sym_overlay] = ACTIONS(2406), - [anon_sym_as] = ACTIONS(2406), - [anon_sym_PLUS2] = ACTIONS(2406), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2408), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2406), - [aux_sym__val_number_decimal_token2] = ACTIONS(2408), - [aux_sym__val_number_decimal_token3] = ACTIONS(2408), - [aux_sym__val_number_decimal_token4] = ACTIONS(2408), - [aux_sym__val_number_token1] = ACTIONS(2408), - [aux_sym__val_number_token2] = ACTIONS(2408), - [aux_sym__val_number_token3] = ACTIONS(2408), - [aux_sym__val_number_token4] = ACTIONS(2406), - [aux_sym__val_number_token5] = ACTIONS(2406), - [aux_sym__val_number_token6] = ACTIONS(2406), - [anon_sym_DQUOTE] = ACTIONS(2408), - [sym__str_single_quotes] = ACTIONS(2408), - [sym__str_back_ticks] = ACTIONS(2408), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2408), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2408), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2408), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2408), - }, - [697] = { - [sym_comment] = STATE(697), - [anon_sym_export] = ACTIONS(2410), - [anon_sym_alias] = ACTIONS(2410), - [anon_sym_let] = ACTIONS(2410), - [anon_sym_let_DASHenv] = ACTIONS(2410), - [anon_sym_mut] = ACTIONS(2410), - [anon_sym_const] = ACTIONS(2410), - [aux_sym_cmd_identifier_token1] = ACTIONS(2410), - [aux_sym_cmd_identifier_token2] = ACTIONS(2412), - [aux_sym_cmd_identifier_token3] = ACTIONS(2412), - [aux_sym_cmd_identifier_token4] = ACTIONS(2412), - [aux_sym_cmd_identifier_token5] = ACTIONS(2412), - [aux_sym_cmd_identifier_token6] = ACTIONS(2412), - [aux_sym_cmd_identifier_token7] = ACTIONS(2412), - [aux_sym_cmd_identifier_token8] = ACTIONS(2410), - [aux_sym_cmd_identifier_token9] = ACTIONS(2410), - [aux_sym_cmd_identifier_token10] = ACTIONS(2412), - [aux_sym_cmd_identifier_token11] = ACTIONS(2412), - [aux_sym_cmd_identifier_token12] = ACTIONS(2410), - [aux_sym_cmd_identifier_token13] = ACTIONS(2410), - [aux_sym_cmd_identifier_token14] = ACTIONS(2410), - [aux_sym_cmd_identifier_token15] = ACTIONS(2410), - [aux_sym_cmd_identifier_token16] = ACTIONS(2412), - [aux_sym_cmd_identifier_token17] = ACTIONS(2412), - [aux_sym_cmd_identifier_token18] = ACTIONS(2412), - [aux_sym_cmd_identifier_token19] = ACTIONS(2412), - [aux_sym_cmd_identifier_token20] = ACTIONS(2412), - [aux_sym_cmd_identifier_token21] = ACTIONS(2412), - [aux_sym_cmd_identifier_token22] = ACTIONS(2412), - [aux_sym_cmd_identifier_token23] = ACTIONS(2412), - [aux_sym_cmd_identifier_token24] = ACTIONS(2412), - [aux_sym_cmd_identifier_token25] = ACTIONS(2412), - [aux_sym_cmd_identifier_token26] = ACTIONS(2412), - [aux_sym_cmd_identifier_token27] = ACTIONS(2412), - [aux_sym_cmd_identifier_token28] = ACTIONS(2412), - [aux_sym_cmd_identifier_token29] = ACTIONS(2412), - [aux_sym_cmd_identifier_token30] = ACTIONS(2412), - [aux_sym_cmd_identifier_token31] = ACTIONS(2412), - [aux_sym_cmd_identifier_token32] = ACTIONS(2412), - [aux_sym_cmd_identifier_token33] = ACTIONS(2412), - [aux_sym_cmd_identifier_token34] = ACTIONS(2410), - [aux_sym_cmd_identifier_token35] = ACTIONS(2412), - [aux_sym_cmd_identifier_token36] = ACTIONS(2412), - [aux_sym_cmd_identifier_token37] = ACTIONS(2412), - [aux_sym_cmd_identifier_token38] = ACTIONS(2410), - [aux_sym_cmd_identifier_token39] = ACTIONS(2412), - [aux_sym_cmd_identifier_token40] = ACTIONS(2412), - [anon_sym_def] = ACTIONS(2410), - [anon_sym_export_DASHenv] = ACTIONS(2410), - [anon_sym_extern] = ACTIONS(2410), - [anon_sym_module] = ACTIONS(2410), - [anon_sym_use] = ACTIONS(2410), - [anon_sym_LPAREN] = ACTIONS(2412), - [anon_sym_COMMA] = ACTIONS(2412), - [anon_sym_DOLLAR] = ACTIONS(2410), - [anon_sym_error] = ACTIONS(2410), - [anon_sym_DASH2] = ACTIONS(2410), - [anon_sym_break] = ACTIONS(2410), - [anon_sym_continue] = ACTIONS(2410), - [anon_sym_for] = ACTIONS(2410), - [anon_sym_in2] = ACTIONS(2410), - [anon_sym_loop] = ACTIONS(2410), - [anon_sym_make] = ACTIONS(2410), - [anon_sym_while] = ACTIONS(2410), - [anon_sym_do] = ACTIONS(2410), - [anon_sym_if] = ACTIONS(2410), - [anon_sym_else] = ACTIONS(2410), - [anon_sym_match] = ACTIONS(2410), - [anon_sym_RBRACE] = ACTIONS(2412), - [anon_sym_try] = ACTIONS(2410), - [anon_sym_catch] = ACTIONS(2410), - [anon_sym_return] = ACTIONS(2410), - [anon_sym_source] = ACTIONS(2410), - [anon_sym_source_DASHenv] = ACTIONS(2410), - [anon_sym_register] = ACTIONS(2410), - [anon_sym_hide] = ACTIONS(2410), - [anon_sym_hide_DASHenv] = ACTIONS(2410), - [anon_sym_overlay] = ACTIONS(2410), - [anon_sym_as] = ACTIONS(2410), - [anon_sym_PLUS2] = ACTIONS(2410), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2412), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2412), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2412), - [aux_sym__val_number_decimal_token4] = ACTIONS(2412), - [aux_sym__val_number_token1] = ACTIONS(2412), - [aux_sym__val_number_token2] = ACTIONS(2412), - [aux_sym__val_number_token3] = ACTIONS(2412), - [aux_sym__val_number_token4] = ACTIONS(2410), - [aux_sym__val_number_token5] = ACTIONS(2410), - [aux_sym__val_number_token6] = ACTIONS(2410), - [anon_sym_DQUOTE] = ACTIONS(2412), - [sym__str_single_quotes] = ACTIONS(2412), - [sym__str_back_ticks] = ACTIONS(2412), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2412), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2412), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2412), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2412), - }, - [698] = { - [sym_comment] = STATE(698), - [anon_sym_export] = ACTIONS(2505), - [anon_sym_alias] = ACTIONS(2505), - [anon_sym_let] = ACTIONS(2505), - [anon_sym_let_DASHenv] = ACTIONS(2505), - [anon_sym_mut] = ACTIONS(2505), - [anon_sym_const] = ACTIONS(2505), - [aux_sym_cmd_identifier_token1] = ACTIONS(2505), - [aux_sym_cmd_identifier_token2] = ACTIONS(2507), - [aux_sym_cmd_identifier_token3] = ACTIONS(2507), - [aux_sym_cmd_identifier_token4] = ACTIONS(2507), - [aux_sym_cmd_identifier_token5] = ACTIONS(2507), - [aux_sym_cmd_identifier_token6] = ACTIONS(2507), - [aux_sym_cmd_identifier_token7] = ACTIONS(2507), - [aux_sym_cmd_identifier_token8] = ACTIONS(2505), - [aux_sym_cmd_identifier_token9] = ACTIONS(2505), - [aux_sym_cmd_identifier_token10] = ACTIONS(2507), - [aux_sym_cmd_identifier_token11] = ACTIONS(2507), - [aux_sym_cmd_identifier_token12] = ACTIONS(2505), - [aux_sym_cmd_identifier_token13] = ACTIONS(2505), - [aux_sym_cmd_identifier_token14] = ACTIONS(2505), - [aux_sym_cmd_identifier_token15] = ACTIONS(2505), - [aux_sym_cmd_identifier_token16] = ACTIONS(2507), - [aux_sym_cmd_identifier_token17] = ACTIONS(2507), - [aux_sym_cmd_identifier_token18] = ACTIONS(2507), - [aux_sym_cmd_identifier_token19] = ACTIONS(2507), - [aux_sym_cmd_identifier_token20] = ACTIONS(2507), - [aux_sym_cmd_identifier_token21] = ACTIONS(2507), - [aux_sym_cmd_identifier_token22] = ACTIONS(2507), - [aux_sym_cmd_identifier_token23] = ACTIONS(2507), - [aux_sym_cmd_identifier_token24] = ACTIONS(2507), - [aux_sym_cmd_identifier_token25] = ACTIONS(2507), - [aux_sym_cmd_identifier_token26] = ACTIONS(2507), - [aux_sym_cmd_identifier_token27] = ACTIONS(2507), - [aux_sym_cmd_identifier_token28] = ACTIONS(2507), - [aux_sym_cmd_identifier_token29] = ACTIONS(2507), - [aux_sym_cmd_identifier_token30] = ACTIONS(2507), - [aux_sym_cmd_identifier_token31] = ACTIONS(2507), - [aux_sym_cmd_identifier_token32] = ACTIONS(2507), - [aux_sym_cmd_identifier_token33] = ACTIONS(2507), - [aux_sym_cmd_identifier_token34] = ACTIONS(2505), - [aux_sym_cmd_identifier_token35] = ACTIONS(2507), - [aux_sym_cmd_identifier_token36] = ACTIONS(2507), - [aux_sym_cmd_identifier_token37] = ACTIONS(2507), - [aux_sym_cmd_identifier_token38] = ACTIONS(2505), - [aux_sym_cmd_identifier_token39] = ACTIONS(2507), - [aux_sym_cmd_identifier_token40] = ACTIONS(2507), - [anon_sym_def] = ACTIONS(2505), - [anon_sym_export_DASHenv] = ACTIONS(2505), - [anon_sym_extern] = ACTIONS(2505), - [anon_sym_module] = ACTIONS(2505), - [anon_sym_use] = ACTIONS(2505), - [anon_sym_LPAREN] = ACTIONS(2507), - [anon_sym_COMMA] = ACTIONS(2507), - [anon_sym_DOLLAR] = ACTIONS(2505), - [anon_sym_error] = ACTIONS(2505), - [anon_sym_DASH2] = ACTIONS(2505), - [anon_sym_break] = ACTIONS(2505), - [anon_sym_continue] = ACTIONS(2505), - [anon_sym_for] = ACTIONS(2505), - [anon_sym_in2] = ACTIONS(2505), - [anon_sym_loop] = ACTIONS(2505), - [anon_sym_make] = ACTIONS(2505), - [anon_sym_while] = ACTIONS(2505), - [anon_sym_do] = ACTIONS(2505), - [anon_sym_if] = ACTIONS(2505), - [anon_sym_else] = ACTIONS(2505), - [anon_sym_match] = ACTIONS(2505), - [anon_sym_RBRACE] = ACTIONS(2507), - [anon_sym_try] = ACTIONS(2505), - [anon_sym_catch] = ACTIONS(2505), - [anon_sym_return] = ACTIONS(2505), - [anon_sym_source] = ACTIONS(2505), - [anon_sym_source_DASHenv] = ACTIONS(2505), - [anon_sym_register] = ACTIONS(2505), - [anon_sym_hide] = ACTIONS(2505), - [anon_sym_hide_DASHenv] = ACTIONS(2505), - [anon_sym_overlay] = ACTIONS(2505), - [anon_sym_as] = ACTIONS(2505), - [anon_sym_PLUS2] = ACTIONS(2505), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2507), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2507), - [aux_sym__val_number_decimal_token1] = ACTIONS(2505), - [aux_sym__val_number_decimal_token2] = ACTIONS(2507), - [aux_sym__val_number_decimal_token3] = ACTIONS(2507), - [aux_sym__val_number_decimal_token4] = ACTIONS(2507), - [aux_sym__val_number_token1] = ACTIONS(2507), - [aux_sym__val_number_token2] = ACTIONS(2507), - [aux_sym__val_number_token3] = ACTIONS(2507), - [aux_sym__val_number_token4] = ACTIONS(2505), - [aux_sym__val_number_token5] = ACTIONS(2505), - [aux_sym__val_number_token6] = ACTIONS(2505), - [anon_sym_DQUOTE] = ACTIONS(2507), - [sym__str_single_quotes] = ACTIONS(2507), - [sym__str_back_ticks] = ACTIONS(2507), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2507), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2507), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2507), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2507), - }, - [699] = { - [sym_comment] = STATE(699), - [anon_sym_export] = ACTIONS(2478), - [anon_sym_alias] = ACTIONS(2478), - [anon_sym_let] = ACTIONS(2478), - [anon_sym_let_DASHenv] = ACTIONS(2478), - [anon_sym_mut] = ACTIONS(2478), - [anon_sym_const] = ACTIONS(2478), - [aux_sym_cmd_identifier_token1] = ACTIONS(2478), - [aux_sym_cmd_identifier_token2] = ACTIONS(2480), - [aux_sym_cmd_identifier_token3] = ACTIONS(2480), - [aux_sym_cmd_identifier_token4] = ACTIONS(2480), - [aux_sym_cmd_identifier_token5] = ACTIONS(2480), - [aux_sym_cmd_identifier_token6] = ACTIONS(2480), - [aux_sym_cmd_identifier_token7] = ACTIONS(2480), - [aux_sym_cmd_identifier_token8] = ACTIONS(2478), - [aux_sym_cmd_identifier_token9] = ACTIONS(2478), - [aux_sym_cmd_identifier_token10] = ACTIONS(2480), - [aux_sym_cmd_identifier_token11] = ACTIONS(2480), - [aux_sym_cmd_identifier_token12] = ACTIONS(2478), - [aux_sym_cmd_identifier_token13] = ACTIONS(2478), - [aux_sym_cmd_identifier_token14] = ACTIONS(2478), - [aux_sym_cmd_identifier_token15] = ACTIONS(2478), - [aux_sym_cmd_identifier_token16] = ACTIONS(2480), - [aux_sym_cmd_identifier_token17] = ACTIONS(2480), - [aux_sym_cmd_identifier_token18] = ACTIONS(2480), - [aux_sym_cmd_identifier_token19] = ACTIONS(2480), - [aux_sym_cmd_identifier_token20] = ACTIONS(2480), - [aux_sym_cmd_identifier_token21] = ACTIONS(2480), - [aux_sym_cmd_identifier_token22] = ACTIONS(2480), - [aux_sym_cmd_identifier_token23] = ACTIONS(2480), - [aux_sym_cmd_identifier_token24] = ACTIONS(2480), - [aux_sym_cmd_identifier_token25] = ACTIONS(2480), - [aux_sym_cmd_identifier_token26] = ACTIONS(2480), - [aux_sym_cmd_identifier_token27] = ACTIONS(2480), - [aux_sym_cmd_identifier_token28] = ACTIONS(2480), - [aux_sym_cmd_identifier_token29] = ACTIONS(2480), - [aux_sym_cmd_identifier_token30] = ACTIONS(2480), - [aux_sym_cmd_identifier_token31] = ACTIONS(2480), - [aux_sym_cmd_identifier_token32] = ACTIONS(2480), - [aux_sym_cmd_identifier_token33] = ACTIONS(2480), - [aux_sym_cmd_identifier_token34] = ACTIONS(2478), - [aux_sym_cmd_identifier_token35] = ACTIONS(2480), - [aux_sym_cmd_identifier_token36] = ACTIONS(2480), - [aux_sym_cmd_identifier_token37] = ACTIONS(2480), - [aux_sym_cmd_identifier_token38] = ACTIONS(2478), - [aux_sym_cmd_identifier_token39] = ACTIONS(2480), - [aux_sym_cmd_identifier_token40] = ACTIONS(2480), - [anon_sym_def] = ACTIONS(2478), - [anon_sym_export_DASHenv] = ACTIONS(2478), - [anon_sym_extern] = ACTIONS(2478), - [anon_sym_module] = ACTIONS(2478), - [anon_sym_use] = ACTIONS(2478), - [anon_sym_LPAREN] = ACTIONS(2480), - [anon_sym_COMMA] = ACTIONS(2480), - [anon_sym_DOLLAR] = ACTIONS(2478), - [anon_sym_error] = ACTIONS(2478), - [anon_sym_DASH2] = ACTIONS(2478), - [anon_sym_break] = ACTIONS(2478), - [anon_sym_continue] = ACTIONS(2478), - [anon_sym_for] = ACTIONS(2478), - [anon_sym_in2] = ACTIONS(2478), - [anon_sym_loop] = ACTIONS(2478), - [anon_sym_make] = ACTIONS(2478), - [anon_sym_while] = ACTIONS(2478), - [anon_sym_do] = ACTIONS(2478), - [anon_sym_if] = ACTIONS(2478), - [anon_sym_else] = ACTIONS(2478), - [anon_sym_match] = ACTIONS(2478), - [anon_sym_RBRACE] = ACTIONS(2480), - [anon_sym_try] = ACTIONS(2478), - [anon_sym_catch] = ACTIONS(2478), - [anon_sym_return] = ACTIONS(2478), - [anon_sym_source] = ACTIONS(2478), - [anon_sym_source_DASHenv] = ACTIONS(2478), - [anon_sym_register] = ACTIONS(2478), - [anon_sym_hide] = ACTIONS(2478), - [anon_sym_hide_DASHenv] = ACTIONS(2478), - [anon_sym_overlay] = ACTIONS(2478), - [anon_sym_as] = ACTIONS(2478), - [anon_sym_PLUS2] = ACTIONS(2478), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2480), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2480), - [aux_sym__val_number_decimal_token1] = ACTIONS(2478), - [aux_sym__val_number_decimal_token2] = ACTIONS(2480), - [aux_sym__val_number_decimal_token3] = ACTIONS(2480), - [aux_sym__val_number_decimal_token4] = ACTIONS(2480), - [aux_sym__val_number_token1] = ACTIONS(2480), - [aux_sym__val_number_token2] = ACTIONS(2480), - [aux_sym__val_number_token3] = ACTIONS(2480), - [aux_sym__val_number_token4] = ACTIONS(2478), - [aux_sym__val_number_token5] = ACTIONS(2478), - [aux_sym__val_number_token6] = ACTIONS(2478), - [anon_sym_DQUOTE] = ACTIONS(2480), - [sym__str_single_quotes] = ACTIONS(2480), - [sym__str_back_ticks] = ACTIONS(2480), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2480), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2480), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2480), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2480), - }, - [700] = { - [sym_comment] = STATE(700), - [anon_sym_export] = ACTIONS(1711), - [anon_sym_alias] = ACTIONS(1711), - [anon_sym_let] = ACTIONS(1711), - [anon_sym_let_DASHenv] = ACTIONS(1711), - [anon_sym_mut] = ACTIONS(1711), - [anon_sym_const] = ACTIONS(1711), - [aux_sym_cmd_identifier_token1] = ACTIONS(1711), - [aux_sym_cmd_identifier_token2] = ACTIONS(1713), - [aux_sym_cmd_identifier_token3] = ACTIONS(1713), - [aux_sym_cmd_identifier_token4] = ACTIONS(1713), - [aux_sym_cmd_identifier_token5] = ACTIONS(1713), - [aux_sym_cmd_identifier_token6] = ACTIONS(1713), - [aux_sym_cmd_identifier_token7] = ACTIONS(1713), - [aux_sym_cmd_identifier_token8] = ACTIONS(1711), - [aux_sym_cmd_identifier_token9] = ACTIONS(1711), - [aux_sym_cmd_identifier_token10] = ACTIONS(1713), - [aux_sym_cmd_identifier_token11] = ACTIONS(1713), - [aux_sym_cmd_identifier_token12] = ACTIONS(1711), - [aux_sym_cmd_identifier_token13] = ACTIONS(1711), - [aux_sym_cmd_identifier_token14] = ACTIONS(1711), - [aux_sym_cmd_identifier_token15] = ACTIONS(1711), - [aux_sym_cmd_identifier_token16] = ACTIONS(1713), - [aux_sym_cmd_identifier_token17] = ACTIONS(1713), - [aux_sym_cmd_identifier_token18] = ACTIONS(1713), - [aux_sym_cmd_identifier_token19] = ACTIONS(1713), - [aux_sym_cmd_identifier_token20] = ACTIONS(1713), - [aux_sym_cmd_identifier_token21] = ACTIONS(1713), - [aux_sym_cmd_identifier_token22] = ACTIONS(1713), - [aux_sym_cmd_identifier_token23] = ACTIONS(1713), - [aux_sym_cmd_identifier_token24] = ACTIONS(1713), - [aux_sym_cmd_identifier_token25] = ACTIONS(1713), - [aux_sym_cmd_identifier_token26] = ACTIONS(1713), - [aux_sym_cmd_identifier_token27] = ACTIONS(1713), - [aux_sym_cmd_identifier_token28] = ACTIONS(1713), - [aux_sym_cmd_identifier_token29] = ACTIONS(1713), - [aux_sym_cmd_identifier_token30] = ACTIONS(1713), - [aux_sym_cmd_identifier_token31] = ACTIONS(1713), - [aux_sym_cmd_identifier_token32] = ACTIONS(1713), - [aux_sym_cmd_identifier_token33] = ACTIONS(1713), - [aux_sym_cmd_identifier_token34] = ACTIONS(1711), - [aux_sym_cmd_identifier_token35] = ACTIONS(1713), - [aux_sym_cmd_identifier_token36] = ACTIONS(1713), - [aux_sym_cmd_identifier_token37] = ACTIONS(1713), - [aux_sym_cmd_identifier_token38] = ACTIONS(1711), - [aux_sym_cmd_identifier_token39] = ACTIONS(1713), - [aux_sym_cmd_identifier_token40] = ACTIONS(1713), - [anon_sym_def] = ACTIONS(1711), - [anon_sym_export_DASHenv] = ACTIONS(1711), - [anon_sym_extern] = ACTIONS(1711), - [anon_sym_module] = ACTIONS(1711), - [anon_sym_use] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_COMMA] = ACTIONS(1713), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_error] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_break] = ACTIONS(1711), - [anon_sym_continue] = ACTIONS(1711), - [anon_sym_for] = ACTIONS(1711), - [anon_sym_in2] = ACTIONS(1711), - [anon_sym_loop] = ACTIONS(1711), - [anon_sym_make] = ACTIONS(1711), - [anon_sym_while] = ACTIONS(1711), - [anon_sym_do] = ACTIONS(1711), - [anon_sym_if] = ACTIONS(1711), - [anon_sym_else] = ACTIONS(1711), - [anon_sym_match] = ACTIONS(1711), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_try] = ACTIONS(1711), - [anon_sym_catch] = ACTIONS(1711), - [anon_sym_return] = ACTIONS(1711), - [anon_sym_source] = ACTIONS(1711), - [anon_sym_source_DASHenv] = ACTIONS(1711), - [anon_sym_register] = ACTIONS(1711), - [anon_sym_hide] = ACTIONS(1711), - [anon_sym_hide_DASHenv] = ACTIONS(1711), - [anon_sym_overlay] = ACTIONS(1711), - [anon_sym_as] = ACTIONS(1711), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1713), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1713), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1713), - [aux_sym__val_number_decimal_token3] = ACTIONS(1713), - [aux_sym__val_number_decimal_token4] = ACTIONS(1713), - [aux_sym__val_number_token1] = ACTIONS(1713), - [aux_sym__val_number_token2] = ACTIONS(1713), - [aux_sym__val_number_token3] = ACTIONS(1713), - [aux_sym__val_number_token4] = ACTIONS(1711), - [aux_sym__val_number_token5] = ACTIONS(1711), - [aux_sym__val_number_token6] = ACTIONS(1711), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym__str_single_quotes] = ACTIONS(1713), - [sym__str_back_ticks] = ACTIONS(1713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1713), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1713), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1713), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1713), - }, - [701] = { - [sym_comment] = STATE(701), - [anon_sym_export] = ACTIONS(2382), - [anon_sym_alias] = ACTIONS(2382), - [anon_sym_let] = ACTIONS(2382), - [anon_sym_let_DASHenv] = ACTIONS(2382), - [anon_sym_mut] = ACTIONS(2382), - [anon_sym_const] = ACTIONS(2382), - [aux_sym_cmd_identifier_token1] = ACTIONS(2382), - [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(2382), - [aux_sym_cmd_identifier_token9] = ACTIONS(2382), - [aux_sym_cmd_identifier_token10] = ACTIONS(2384), - [aux_sym_cmd_identifier_token11] = ACTIONS(2384), - [aux_sym_cmd_identifier_token12] = ACTIONS(2382), - [aux_sym_cmd_identifier_token13] = ACTIONS(2382), - [aux_sym_cmd_identifier_token14] = ACTIONS(2382), - [aux_sym_cmd_identifier_token15] = ACTIONS(2382), - [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(2382), - [aux_sym_cmd_identifier_token35] = ACTIONS(2384), - [aux_sym_cmd_identifier_token36] = ACTIONS(2384), - [aux_sym_cmd_identifier_token37] = ACTIONS(2384), - [aux_sym_cmd_identifier_token38] = ACTIONS(2382), - [aux_sym_cmd_identifier_token39] = ACTIONS(2384), - [aux_sym_cmd_identifier_token40] = ACTIONS(2384), - [anon_sym_def] = ACTIONS(2382), - [anon_sym_export_DASHenv] = ACTIONS(2382), - [anon_sym_extern] = ACTIONS(2382), - [anon_sym_module] = ACTIONS(2382), - [anon_sym_use] = ACTIONS(2382), - [anon_sym_LPAREN] = ACTIONS(2384), - [anon_sym_COMMA] = ACTIONS(2384), - [anon_sym_DOLLAR] = ACTIONS(2382), - [anon_sym_error] = ACTIONS(2382), - [anon_sym_DASH2] = ACTIONS(2382), - [anon_sym_break] = ACTIONS(2382), - [anon_sym_continue] = ACTIONS(2382), - [anon_sym_for] = ACTIONS(2382), - [anon_sym_in2] = ACTIONS(2382), - [anon_sym_loop] = ACTIONS(2382), - [anon_sym_make] = ACTIONS(2382), - [anon_sym_while] = ACTIONS(2382), - [anon_sym_do] = ACTIONS(2382), - [anon_sym_if] = ACTIONS(2382), - [anon_sym_else] = ACTIONS(2382), - [anon_sym_match] = ACTIONS(2382), - [anon_sym_RBRACE] = ACTIONS(2384), - [anon_sym_try] = ACTIONS(2382), - [anon_sym_catch] = ACTIONS(2382), - [anon_sym_return] = ACTIONS(2382), - [anon_sym_source] = ACTIONS(2382), - [anon_sym_source_DASHenv] = ACTIONS(2382), - [anon_sym_register] = ACTIONS(2382), - [anon_sym_hide] = ACTIONS(2382), - [anon_sym_hide_DASHenv] = ACTIONS(2382), - [anon_sym_overlay] = ACTIONS(2382), - [anon_sym_as] = ACTIONS(2382), - [anon_sym_PLUS2] = ACTIONS(2382), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2384), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2384), - [aux_sym__val_number_decimal_token1] = ACTIONS(2382), - [aux_sym__val_number_decimal_token2] = ACTIONS(2384), - [aux_sym__val_number_decimal_token3] = ACTIONS(2384), - [aux_sym__val_number_decimal_token4] = ACTIONS(2384), - [aux_sym__val_number_token1] = ACTIONS(2384), - [aux_sym__val_number_token2] = ACTIONS(2384), - [aux_sym__val_number_token3] = ACTIONS(2384), - [aux_sym__val_number_token4] = ACTIONS(2382), - [aux_sym__val_number_token5] = ACTIONS(2382), - [aux_sym__val_number_token6] = ACTIONS(2382), - [anon_sym_DQUOTE] = ACTIONS(2384), - [sym__str_single_quotes] = ACTIONS(2384), - [sym__str_back_ticks] = ACTIONS(2384), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2384), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2384), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2384), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2384), - }, - [702] = { - [sym_comment] = STATE(702), - [anon_sym_export] = ACTIONS(1783), - [anon_sym_alias] = ACTIONS(1783), - [anon_sym_let] = ACTIONS(1783), - [anon_sym_let_DASHenv] = ACTIONS(1783), - [anon_sym_mut] = ACTIONS(1783), - [anon_sym_const] = ACTIONS(1783), - [aux_sym_cmd_identifier_token1] = ACTIONS(1783), - [aux_sym_cmd_identifier_token2] = ACTIONS(1785), - [aux_sym_cmd_identifier_token3] = ACTIONS(1785), - [aux_sym_cmd_identifier_token4] = ACTIONS(1785), - [aux_sym_cmd_identifier_token5] = ACTIONS(1785), - [aux_sym_cmd_identifier_token6] = ACTIONS(1785), - [aux_sym_cmd_identifier_token7] = ACTIONS(1785), - [aux_sym_cmd_identifier_token8] = ACTIONS(1783), - [aux_sym_cmd_identifier_token9] = ACTIONS(1783), - [aux_sym_cmd_identifier_token10] = ACTIONS(1785), - [aux_sym_cmd_identifier_token11] = ACTIONS(1785), - [aux_sym_cmd_identifier_token12] = ACTIONS(1783), - [aux_sym_cmd_identifier_token13] = ACTIONS(1783), - [aux_sym_cmd_identifier_token14] = ACTIONS(1783), - [aux_sym_cmd_identifier_token15] = ACTIONS(1783), - [aux_sym_cmd_identifier_token16] = ACTIONS(1785), - [aux_sym_cmd_identifier_token17] = ACTIONS(1785), - [aux_sym_cmd_identifier_token18] = ACTIONS(1785), - [aux_sym_cmd_identifier_token19] = ACTIONS(1785), - [aux_sym_cmd_identifier_token20] = ACTIONS(1785), - [aux_sym_cmd_identifier_token21] = ACTIONS(1785), - [aux_sym_cmd_identifier_token22] = ACTIONS(1785), - [aux_sym_cmd_identifier_token23] = ACTIONS(1785), - [aux_sym_cmd_identifier_token24] = ACTIONS(1785), - [aux_sym_cmd_identifier_token25] = ACTIONS(1785), - [aux_sym_cmd_identifier_token26] = ACTIONS(1785), - [aux_sym_cmd_identifier_token27] = ACTIONS(1785), - [aux_sym_cmd_identifier_token28] = ACTIONS(1785), - [aux_sym_cmd_identifier_token29] = ACTIONS(1785), - [aux_sym_cmd_identifier_token30] = ACTIONS(1785), - [aux_sym_cmd_identifier_token31] = ACTIONS(1785), - [aux_sym_cmd_identifier_token32] = ACTIONS(1785), - [aux_sym_cmd_identifier_token33] = ACTIONS(1785), - [aux_sym_cmd_identifier_token34] = ACTIONS(1783), - [aux_sym_cmd_identifier_token35] = ACTIONS(1785), - [aux_sym_cmd_identifier_token36] = ACTIONS(1785), - [aux_sym_cmd_identifier_token37] = ACTIONS(1785), - [aux_sym_cmd_identifier_token38] = ACTIONS(1783), - [aux_sym_cmd_identifier_token39] = ACTIONS(1785), - [aux_sym_cmd_identifier_token40] = ACTIONS(1785), - [anon_sym_def] = ACTIONS(1783), - [anon_sym_export_DASHenv] = ACTIONS(1783), - [anon_sym_extern] = ACTIONS(1783), - [anon_sym_module] = ACTIONS(1783), - [anon_sym_use] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_COMMA] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_error] = ACTIONS(1783), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_break] = ACTIONS(1783), - [anon_sym_continue] = ACTIONS(1783), - [anon_sym_for] = ACTIONS(1783), - [anon_sym_in2] = ACTIONS(1783), - [anon_sym_loop] = ACTIONS(1783), - [anon_sym_make] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1783), - [anon_sym_do] = ACTIONS(1783), - [anon_sym_if] = ACTIONS(1783), - [anon_sym_else] = ACTIONS(1783), - [anon_sym_match] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_try] = ACTIONS(1783), - [anon_sym_catch] = ACTIONS(1783), - [anon_sym_return] = ACTIONS(1783), - [anon_sym_source] = ACTIONS(1783), - [anon_sym_source_DASHenv] = ACTIONS(1783), - [anon_sym_register] = ACTIONS(1783), - [anon_sym_hide] = ACTIONS(1783), - [anon_sym_hide_DASHenv] = ACTIONS(1783), - [anon_sym_overlay] = ACTIONS(1783), - [anon_sym_as] = ACTIONS(1783), - [anon_sym_PLUS2] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(1785), - [aux_sym__val_number_token2] = ACTIONS(1785), - [aux_sym__val_number_token3] = ACTIONS(1785), - [aux_sym__val_number_token4] = ACTIONS(1783), - [aux_sym__val_number_token5] = ACTIONS(1783), - [aux_sym__val_number_token6] = ACTIONS(1783), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1785), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1785), - }, - [703] = { - [sym_comment] = STATE(703), - [anon_sym_export] = ACTIONS(2418), - [anon_sym_alias] = ACTIONS(2418), - [anon_sym_let] = ACTIONS(2418), - [anon_sym_let_DASHenv] = ACTIONS(2418), - [anon_sym_mut] = ACTIONS(2418), - [anon_sym_const] = ACTIONS(2418), - [aux_sym_cmd_identifier_token1] = ACTIONS(2418), - [aux_sym_cmd_identifier_token2] = ACTIONS(2420), - [aux_sym_cmd_identifier_token3] = ACTIONS(2420), - [aux_sym_cmd_identifier_token4] = ACTIONS(2420), - [aux_sym_cmd_identifier_token5] = ACTIONS(2420), - [aux_sym_cmd_identifier_token6] = ACTIONS(2420), - [aux_sym_cmd_identifier_token7] = ACTIONS(2420), - [aux_sym_cmd_identifier_token8] = ACTIONS(2418), - [aux_sym_cmd_identifier_token9] = ACTIONS(2418), - [aux_sym_cmd_identifier_token10] = ACTIONS(2420), - [aux_sym_cmd_identifier_token11] = ACTIONS(2420), - [aux_sym_cmd_identifier_token12] = ACTIONS(2418), - [aux_sym_cmd_identifier_token13] = ACTIONS(2418), - [aux_sym_cmd_identifier_token14] = ACTIONS(2418), - [aux_sym_cmd_identifier_token15] = ACTIONS(2418), - [aux_sym_cmd_identifier_token16] = ACTIONS(2420), - [aux_sym_cmd_identifier_token17] = ACTIONS(2420), - [aux_sym_cmd_identifier_token18] = ACTIONS(2420), - [aux_sym_cmd_identifier_token19] = ACTIONS(2420), - [aux_sym_cmd_identifier_token20] = ACTIONS(2420), - [aux_sym_cmd_identifier_token21] = ACTIONS(2420), - [aux_sym_cmd_identifier_token22] = ACTIONS(2420), - [aux_sym_cmd_identifier_token23] = ACTIONS(2420), - [aux_sym_cmd_identifier_token24] = ACTIONS(2420), - [aux_sym_cmd_identifier_token25] = ACTIONS(2420), - [aux_sym_cmd_identifier_token26] = ACTIONS(2420), - [aux_sym_cmd_identifier_token27] = ACTIONS(2420), - [aux_sym_cmd_identifier_token28] = ACTIONS(2420), - [aux_sym_cmd_identifier_token29] = ACTIONS(2420), - [aux_sym_cmd_identifier_token30] = ACTIONS(2420), - [aux_sym_cmd_identifier_token31] = ACTIONS(2420), - [aux_sym_cmd_identifier_token32] = ACTIONS(2420), - [aux_sym_cmd_identifier_token33] = ACTIONS(2420), - [aux_sym_cmd_identifier_token34] = ACTIONS(2418), - [aux_sym_cmd_identifier_token35] = ACTIONS(2420), - [aux_sym_cmd_identifier_token36] = ACTIONS(2420), - [aux_sym_cmd_identifier_token37] = ACTIONS(2420), - [aux_sym_cmd_identifier_token38] = ACTIONS(2418), - [aux_sym_cmd_identifier_token39] = ACTIONS(2420), - [aux_sym_cmd_identifier_token40] = ACTIONS(2420), - [anon_sym_def] = ACTIONS(2418), - [anon_sym_export_DASHenv] = ACTIONS(2418), - [anon_sym_extern] = ACTIONS(2418), - [anon_sym_module] = ACTIONS(2418), - [anon_sym_use] = ACTIONS(2418), - [anon_sym_LPAREN] = ACTIONS(2420), - [anon_sym_COMMA] = ACTIONS(2420), - [anon_sym_DOLLAR] = ACTIONS(2418), - [anon_sym_error] = ACTIONS(2418), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_break] = ACTIONS(2418), - [anon_sym_continue] = ACTIONS(2418), - [anon_sym_for] = ACTIONS(2418), - [anon_sym_in2] = ACTIONS(2418), - [anon_sym_loop] = ACTIONS(2418), - [anon_sym_make] = ACTIONS(2418), - [anon_sym_while] = ACTIONS(2418), - [anon_sym_do] = ACTIONS(2418), - [anon_sym_if] = ACTIONS(2418), - [anon_sym_else] = ACTIONS(2418), - [anon_sym_match] = ACTIONS(2418), - [anon_sym_RBRACE] = ACTIONS(2420), - [anon_sym_try] = ACTIONS(2418), - [anon_sym_catch] = ACTIONS(2418), - [anon_sym_return] = ACTIONS(2418), - [anon_sym_source] = ACTIONS(2418), - [anon_sym_source_DASHenv] = ACTIONS(2418), - [anon_sym_register] = ACTIONS(2418), - [anon_sym_hide] = ACTIONS(2418), - [anon_sym_hide_DASHenv] = ACTIONS(2418), - [anon_sym_overlay] = ACTIONS(2418), - [anon_sym_as] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2418), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2420), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2420), - [aux_sym__val_number_decimal_token1] = ACTIONS(2418), - [aux_sym__val_number_decimal_token2] = ACTIONS(2420), - [aux_sym__val_number_decimal_token3] = ACTIONS(2420), - [aux_sym__val_number_decimal_token4] = ACTIONS(2420), - [aux_sym__val_number_token1] = ACTIONS(2420), - [aux_sym__val_number_token2] = ACTIONS(2420), - [aux_sym__val_number_token3] = ACTIONS(2420), - [aux_sym__val_number_token4] = ACTIONS(2418), - [aux_sym__val_number_token5] = ACTIONS(2418), - [aux_sym__val_number_token6] = ACTIONS(2418), - [anon_sym_DQUOTE] = ACTIONS(2420), - [sym__str_single_quotes] = ACTIONS(2420), - [sym__str_back_ticks] = ACTIONS(2420), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2420), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2420), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2420), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2420), - }, - [704] = { - [sym_comment] = STATE(704), - [anon_sym_export] = ACTIONS(1638), - [anon_sym_alias] = ACTIONS(1638), - [anon_sym_let] = ACTIONS(1638), - [anon_sym_let_DASHenv] = ACTIONS(1638), - [anon_sym_mut] = ACTIONS(1638), - [anon_sym_const] = ACTIONS(1638), - [aux_sym_cmd_identifier_token1] = ACTIONS(1638), - [aux_sym_cmd_identifier_token2] = ACTIONS(1650), - [aux_sym_cmd_identifier_token3] = ACTIONS(1650), - [aux_sym_cmd_identifier_token4] = ACTIONS(1650), - [aux_sym_cmd_identifier_token5] = ACTIONS(1650), - [aux_sym_cmd_identifier_token6] = ACTIONS(1650), - [aux_sym_cmd_identifier_token7] = ACTIONS(1650), - [aux_sym_cmd_identifier_token8] = ACTIONS(1638), - [aux_sym_cmd_identifier_token9] = ACTIONS(1638), - [aux_sym_cmd_identifier_token10] = ACTIONS(1650), - [aux_sym_cmd_identifier_token11] = ACTIONS(1650), - [aux_sym_cmd_identifier_token12] = ACTIONS(1638), - [aux_sym_cmd_identifier_token13] = ACTIONS(1638), - [aux_sym_cmd_identifier_token14] = ACTIONS(1638), - [aux_sym_cmd_identifier_token15] = ACTIONS(1638), - [aux_sym_cmd_identifier_token16] = ACTIONS(1650), - [aux_sym_cmd_identifier_token17] = ACTIONS(1650), - [aux_sym_cmd_identifier_token18] = ACTIONS(1650), - [aux_sym_cmd_identifier_token19] = ACTIONS(1650), - [aux_sym_cmd_identifier_token20] = ACTIONS(1650), - [aux_sym_cmd_identifier_token21] = ACTIONS(1650), - [aux_sym_cmd_identifier_token22] = ACTIONS(1650), - [aux_sym_cmd_identifier_token23] = ACTIONS(1650), - [aux_sym_cmd_identifier_token24] = ACTIONS(1650), - [aux_sym_cmd_identifier_token25] = ACTIONS(1650), - [aux_sym_cmd_identifier_token26] = ACTIONS(1650), - [aux_sym_cmd_identifier_token27] = ACTIONS(1650), - [aux_sym_cmd_identifier_token28] = ACTIONS(1650), - [aux_sym_cmd_identifier_token29] = ACTIONS(1650), - [aux_sym_cmd_identifier_token30] = ACTIONS(1650), - [aux_sym_cmd_identifier_token31] = ACTIONS(1650), - [aux_sym_cmd_identifier_token32] = ACTIONS(1650), - [aux_sym_cmd_identifier_token33] = ACTIONS(1650), - [aux_sym_cmd_identifier_token34] = ACTIONS(1638), - [aux_sym_cmd_identifier_token35] = ACTIONS(1650), - [aux_sym_cmd_identifier_token36] = ACTIONS(1650), - [aux_sym_cmd_identifier_token37] = ACTIONS(1650), - [aux_sym_cmd_identifier_token38] = ACTIONS(1638), - [aux_sym_cmd_identifier_token39] = ACTIONS(1650), - [aux_sym_cmd_identifier_token40] = ACTIONS(1650), - [anon_sym_def] = ACTIONS(1638), - [anon_sym_export_DASHenv] = ACTIONS(1638), - [anon_sym_extern] = ACTIONS(1638), - [anon_sym_module] = ACTIONS(1638), - [anon_sym_use] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_COMMA] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1638), - [anon_sym_error] = ACTIONS(1638), - [anon_sym_DASH2] = ACTIONS(1638), - [anon_sym_break] = ACTIONS(1638), - [anon_sym_continue] = ACTIONS(1638), - [anon_sym_for] = ACTIONS(1638), - [anon_sym_in2] = ACTIONS(1638), - [anon_sym_loop] = ACTIONS(1638), - [anon_sym_make] = ACTIONS(1638), - [anon_sym_while] = ACTIONS(1638), - [anon_sym_do] = ACTIONS(1638), - [anon_sym_if] = ACTIONS(1638), - [anon_sym_else] = ACTIONS(1638), - [anon_sym_match] = ACTIONS(1638), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_try] = ACTIONS(1638), - [anon_sym_catch] = ACTIONS(1638), - [anon_sym_return] = ACTIONS(1638), - [anon_sym_source] = ACTIONS(1638), - [anon_sym_source_DASHenv] = ACTIONS(1638), - [anon_sym_register] = ACTIONS(1638), - [anon_sym_hide] = ACTIONS(1638), - [anon_sym_hide_DASHenv] = ACTIONS(1638), - [anon_sym_overlay] = ACTIONS(1638), - [anon_sym_as] = ACTIONS(1638), - [anon_sym_PLUS2] = ACTIONS(1638), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1650), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1650), - [aux_sym__val_number_decimal_token1] = ACTIONS(1638), - [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), - [aux_sym__val_number_token4] = ACTIONS(1638), - [aux_sym__val_number_token5] = ACTIONS(1638), - [aux_sym__val_number_token6] = ACTIONS(1638), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1650), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1650), - }, - [705] = { - [sym_comment] = STATE(705), - [anon_sym_export] = ACTIONS(2422), - [anon_sym_alias] = ACTIONS(2422), - [anon_sym_let] = ACTIONS(2422), - [anon_sym_let_DASHenv] = ACTIONS(2422), - [anon_sym_mut] = ACTIONS(2422), - [anon_sym_const] = ACTIONS(2422), - [aux_sym_cmd_identifier_token1] = ACTIONS(2422), - [aux_sym_cmd_identifier_token2] = ACTIONS(2424), - [aux_sym_cmd_identifier_token3] = ACTIONS(2424), - [aux_sym_cmd_identifier_token4] = ACTIONS(2424), - [aux_sym_cmd_identifier_token5] = ACTIONS(2424), - [aux_sym_cmd_identifier_token6] = ACTIONS(2424), - [aux_sym_cmd_identifier_token7] = ACTIONS(2424), - [aux_sym_cmd_identifier_token8] = ACTIONS(2422), - [aux_sym_cmd_identifier_token9] = ACTIONS(2422), - [aux_sym_cmd_identifier_token10] = ACTIONS(2424), - [aux_sym_cmd_identifier_token11] = ACTIONS(2424), - [aux_sym_cmd_identifier_token12] = ACTIONS(2422), - [aux_sym_cmd_identifier_token13] = ACTIONS(2422), - [aux_sym_cmd_identifier_token14] = ACTIONS(2422), - [aux_sym_cmd_identifier_token15] = ACTIONS(2422), - [aux_sym_cmd_identifier_token16] = ACTIONS(2424), - [aux_sym_cmd_identifier_token17] = ACTIONS(2424), - [aux_sym_cmd_identifier_token18] = ACTIONS(2424), - [aux_sym_cmd_identifier_token19] = ACTIONS(2424), - [aux_sym_cmd_identifier_token20] = ACTIONS(2424), - [aux_sym_cmd_identifier_token21] = ACTIONS(2424), - [aux_sym_cmd_identifier_token22] = ACTIONS(2424), - [aux_sym_cmd_identifier_token23] = ACTIONS(2424), - [aux_sym_cmd_identifier_token24] = ACTIONS(2424), - [aux_sym_cmd_identifier_token25] = ACTIONS(2424), - [aux_sym_cmd_identifier_token26] = ACTIONS(2424), - [aux_sym_cmd_identifier_token27] = ACTIONS(2424), - [aux_sym_cmd_identifier_token28] = ACTIONS(2424), - [aux_sym_cmd_identifier_token29] = ACTIONS(2424), - [aux_sym_cmd_identifier_token30] = ACTIONS(2424), - [aux_sym_cmd_identifier_token31] = ACTIONS(2424), - [aux_sym_cmd_identifier_token32] = ACTIONS(2424), - [aux_sym_cmd_identifier_token33] = ACTIONS(2424), - [aux_sym_cmd_identifier_token34] = ACTIONS(2422), - [aux_sym_cmd_identifier_token35] = ACTIONS(2424), - [aux_sym_cmd_identifier_token36] = ACTIONS(2424), - [aux_sym_cmd_identifier_token37] = ACTIONS(2424), - [aux_sym_cmd_identifier_token38] = ACTIONS(2422), - [aux_sym_cmd_identifier_token39] = ACTIONS(2424), - [aux_sym_cmd_identifier_token40] = ACTIONS(2424), - [anon_sym_def] = ACTIONS(2422), - [anon_sym_export_DASHenv] = ACTIONS(2422), - [anon_sym_extern] = ACTIONS(2422), - [anon_sym_module] = ACTIONS(2422), - [anon_sym_use] = ACTIONS(2422), - [anon_sym_LPAREN] = ACTIONS(2424), - [anon_sym_COMMA] = ACTIONS(2424), - [anon_sym_DOLLAR] = ACTIONS(2422), - [anon_sym_error] = ACTIONS(2422), - [anon_sym_DASH2] = ACTIONS(2422), - [anon_sym_break] = ACTIONS(2422), - [anon_sym_continue] = ACTIONS(2422), - [anon_sym_for] = ACTIONS(2422), - [anon_sym_in2] = ACTIONS(2422), - [anon_sym_loop] = ACTIONS(2422), - [anon_sym_make] = ACTIONS(2422), - [anon_sym_while] = ACTIONS(2422), - [anon_sym_do] = ACTIONS(2422), - [anon_sym_if] = ACTIONS(2422), - [anon_sym_else] = ACTIONS(2422), - [anon_sym_match] = ACTIONS(2422), - [anon_sym_RBRACE] = ACTIONS(2424), - [anon_sym_try] = ACTIONS(2422), - [anon_sym_catch] = ACTIONS(2422), - [anon_sym_return] = ACTIONS(2422), - [anon_sym_source] = ACTIONS(2422), - [anon_sym_source_DASHenv] = ACTIONS(2422), - [anon_sym_register] = ACTIONS(2422), - [anon_sym_hide] = ACTIONS(2422), - [anon_sym_hide_DASHenv] = ACTIONS(2422), - [anon_sym_overlay] = ACTIONS(2422), - [anon_sym_as] = ACTIONS(2422), - [anon_sym_PLUS2] = ACTIONS(2422), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2424), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2424), - [aux_sym__val_number_decimal_token1] = ACTIONS(2422), - [aux_sym__val_number_decimal_token2] = ACTIONS(2424), - [aux_sym__val_number_decimal_token3] = ACTIONS(2424), - [aux_sym__val_number_decimal_token4] = ACTIONS(2424), - [aux_sym__val_number_token1] = ACTIONS(2424), - [aux_sym__val_number_token2] = ACTIONS(2424), - [aux_sym__val_number_token3] = ACTIONS(2424), - [aux_sym__val_number_token4] = ACTIONS(2422), - [aux_sym__val_number_token5] = ACTIONS(2422), - [aux_sym__val_number_token6] = ACTIONS(2422), - [anon_sym_DQUOTE] = ACTIONS(2424), - [sym__str_single_quotes] = ACTIONS(2424), - [sym__str_back_ticks] = ACTIONS(2424), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2424), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2424), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2424), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2424), - }, - [706] = { - [sym_comment] = STATE(706), - [anon_sym_export] = ACTIONS(2426), - [anon_sym_alias] = ACTIONS(2426), - [anon_sym_let] = ACTIONS(2426), - [anon_sym_let_DASHenv] = ACTIONS(2426), - [anon_sym_mut] = ACTIONS(2426), - [anon_sym_const] = ACTIONS(2426), - [aux_sym_cmd_identifier_token1] = ACTIONS(2426), - [aux_sym_cmd_identifier_token2] = ACTIONS(2428), - [aux_sym_cmd_identifier_token3] = ACTIONS(2428), - [aux_sym_cmd_identifier_token4] = ACTIONS(2428), - [aux_sym_cmd_identifier_token5] = ACTIONS(2428), - [aux_sym_cmd_identifier_token6] = ACTIONS(2428), - [aux_sym_cmd_identifier_token7] = ACTIONS(2428), - [aux_sym_cmd_identifier_token8] = ACTIONS(2426), - [aux_sym_cmd_identifier_token9] = ACTIONS(2426), - [aux_sym_cmd_identifier_token10] = ACTIONS(2428), - [aux_sym_cmd_identifier_token11] = ACTIONS(2428), - [aux_sym_cmd_identifier_token12] = ACTIONS(2426), - [aux_sym_cmd_identifier_token13] = ACTIONS(2426), - [aux_sym_cmd_identifier_token14] = ACTIONS(2426), - [aux_sym_cmd_identifier_token15] = ACTIONS(2426), - [aux_sym_cmd_identifier_token16] = ACTIONS(2428), - [aux_sym_cmd_identifier_token17] = ACTIONS(2428), - [aux_sym_cmd_identifier_token18] = ACTIONS(2428), - [aux_sym_cmd_identifier_token19] = ACTIONS(2428), - [aux_sym_cmd_identifier_token20] = ACTIONS(2428), - [aux_sym_cmd_identifier_token21] = ACTIONS(2428), - [aux_sym_cmd_identifier_token22] = ACTIONS(2428), - [aux_sym_cmd_identifier_token23] = ACTIONS(2428), - [aux_sym_cmd_identifier_token24] = ACTIONS(2428), - [aux_sym_cmd_identifier_token25] = ACTIONS(2428), - [aux_sym_cmd_identifier_token26] = ACTIONS(2428), - [aux_sym_cmd_identifier_token27] = ACTIONS(2428), - [aux_sym_cmd_identifier_token28] = ACTIONS(2428), - [aux_sym_cmd_identifier_token29] = ACTIONS(2428), - [aux_sym_cmd_identifier_token30] = ACTIONS(2428), - [aux_sym_cmd_identifier_token31] = ACTIONS(2428), - [aux_sym_cmd_identifier_token32] = ACTIONS(2428), - [aux_sym_cmd_identifier_token33] = ACTIONS(2428), - [aux_sym_cmd_identifier_token34] = ACTIONS(2426), - [aux_sym_cmd_identifier_token35] = ACTIONS(2428), - [aux_sym_cmd_identifier_token36] = ACTIONS(2428), - [aux_sym_cmd_identifier_token37] = ACTIONS(2428), - [aux_sym_cmd_identifier_token38] = ACTIONS(2426), - [aux_sym_cmd_identifier_token39] = ACTIONS(2428), - [aux_sym_cmd_identifier_token40] = ACTIONS(2428), - [anon_sym_def] = ACTIONS(2426), - [anon_sym_export_DASHenv] = ACTIONS(2426), - [anon_sym_extern] = ACTIONS(2426), - [anon_sym_module] = ACTIONS(2426), - [anon_sym_use] = ACTIONS(2426), - [anon_sym_LPAREN] = ACTIONS(2428), - [anon_sym_COMMA] = ACTIONS(2428), - [anon_sym_DOLLAR] = ACTIONS(2426), - [anon_sym_error] = ACTIONS(2426), - [anon_sym_DASH2] = ACTIONS(2426), - [anon_sym_break] = ACTIONS(2426), - [anon_sym_continue] = ACTIONS(2426), - [anon_sym_for] = ACTIONS(2426), - [anon_sym_in2] = ACTIONS(2426), - [anon_sym_loop] = ACTIONS(2426), - [anon_sym_make] = ACTIONS(2426), - [anon_sym_while] = ACTIONS(2426), - [anon_sym_do] = ACTIONS(2426), - [anon_sym_if] = ACTIONS(2426), - [anon_sym_else] = ACTIONS(2426), - [anon_sym_match] = ACTIONS(2426), - [anon_sym_RBRACE] = ACTIONS(2428), - [anon_sym_try] = ACTIONS(2426), - [anon_sym_catch] = ACTIONS(2426), - [anon_sym_return] = ACTIONS(2426), - [anon_sym_source] = ACTIONS(2426), - [anon_sym_source_DASHenv] = ACTIONS(2426), - [anon_sym_register] = ACTIONS(2426), - [anon_sym_hide] = ACTIONS(2426), - [anon_sym_hide_DASHenv] = ACTIONS(2426), - [anon_sym_overlay] = ACTIONS(2426), - [anon_sym_as] = ACTIONS(2426), - [anon_sym_PLUS2] = ACTIONS(2426), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2428), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2428), - [aux_sym__val_number_decimal_token1] = ACTIONS(2426), - [aux_sym__val_number_decimal_token2] = ACTIONS(2428), - [aux_sym__val_number_decimal_token3] = ACTIONS(2428), - [aux_sym__val_number_decimal_token4] = ACTIONS(2428), - [aux_sym__val_number_token1] = ACTIONS(2428), - [aux_sym__val_number_token2] = ACTIONS(2428), - [aux_sym__val_number_token3] = ACTIONS(2428), - [aux_sym__val_number_token4] = ACTIONS(2426), - [aux_sym__val_number_token5] = ACTIONS(2426), - [aux_sym__val_number_token6] = ACTIONS(2426), - [anon_sym_DQUOTE] = ACTIONS(2428), - [sym__str_single_quotes] = ACTIONS(2428), - [sym__str_back_ticks] = ACTIONS(2428), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2428), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2428), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2428), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2428), - }, - [707] = { - [sym_comment] = STATE(707), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_alias] = ACTIONS(1004), - [anon_sym_let] = ACTIONS(1004), - [anon_sym_let_DASHenv] = ACTIONS(1004), - [anon_sym_mut] = ACTIONS(1004), - [anon_sym_const] = ACTIONS(1004), - [aux_sym_cmd_identifier_token1] = ACTIONS(1004), - [aux_sym_cmd_identifier_token2] = ACTIONS(1010), - [aux_sym_cmd_identifier_token3] = ACTIONS(1010), - [aux_sym_cmd_identifier_token4] = ACTIONS(1010), - [aux_sym_cmd_identifier_token5] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1010), - [aux_sym_cmd_identifier_token7] = ACTIONS(1010), - [aux_sym_cmd_identifier_token8] = ACTIONS(1004), - [aux_sym_cmd_identifier_token9] = ACTIONS(1004), - [aux_sym_cmd_identifier_token10] = ACTIONS(1010), - [aux_sym_cmd_identifier_token11] = ACTIONS(1010), - [aux_sym_cmd_identifier_token12] = ACTIONS(1004), - [aux_sym_cmd_identifier_token13] = ACTIONS(1004), - [aux_sym_cmd_identifier_token14] = ACTIONS(1004), - [aux_sym_cmd_identifier_token15] = ACTIONS(1004), - [aux_sym_cmd_identifier_token16] = ACTIONS(1010), - [aux_sym_cmd_identifier_token17] = ACTIONS(1010), - [aux_sym_cmd_identifier_token18] = ACTIONS(1010), - [aux_sym_cmd_identifier_token19] = ACTIONS(1010), - [aux_sym_cmd_identifier_token20] = ACTIONS(1010), - [aux_sym_cmd_identifier_token21] = ACTIONS(1010), - [aux_sym_cmd_identifier_token22] = ACTIONS(1010), - [aux_sym_cmd_identifier_token23] = ACTIONS(1010), - [aux_sym_cmd_identifier_token24] = ACTIONS(1010), - [aux_sym_cmd_identifier_token25] = ACTIONS(1010), - [aux_sym_cmd_identifier_token26] = ACTIONS(1010), - [aux_sym_cmd_identifier_token27] = ACTIONS(1010), - [aux_sym_cmd_identifier_token28] = ACTIONS(1010), - [aux_sym_cmd_identifier_token29] = ACTIONS(1010), - [aux_sym_cmd_identifier_token30] = ACTIONS(1010), - [aux_sym_cmd_identifier_token31] = ACTIONS(1010), - [aux_sym_cmd_identifier_token32] = ACTIONS(1010), - [aux_sym_cmd_identifier_token33] = ACTIONS(1010), - [aux_sym_cmd_identifier_token34] = ACTIONS(1004), - [aux_sym_cmd_identifier_token35] = ACTIONS(1010), - [aux_sym_cmd_identifier_token36] = ACTIONS(1010), - [aux_sym_cmd_identifier_token37] = ACTIONS(1010), - [aux_sym_cmd_identifier_token38] = ACTIONS(1004), - [aux_sym_cmd_identifier_token39] = ACTIONS(1010), - [aux_sym_cmd_identifier_token40] = ACTIONS(1010), - [anon_sym_def] = ACTIONS(1004), - [anon_sym_export_DASHenv] = ACTIONS(1004), - [anon_sym_extern] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_use] = ACTIONS(1004), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_COMMA] = ACTIONS(1014), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_error] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(1004), - [anon_sym_break] = ACTIONS(1004), - [anon_sym_continue] = ACTIONS(1004), - [anon_sym_for] = ACTIONS(1004), - [anon_sym_in2] = ACTIONS(1004), - [anon_sym_loop] = ACTIONS(1004), - [anon_sym_make] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1004), - [anon_sym_do] = ACTIONS(1004), - [anon_sym_if] = ACTIONS(1004), - [anon_sym_else] = ACTIONS(1004), - [anon_sym_match] = ACTIONS(1004), - [anon_sym_RBRACE] = ACTIONS(1010), - [anon_sym_try] = ACTIONS(1004), - [anon_sym_catch] = ACTIONS(1004), - [anon_sym_return] = ACTIONS(1004), - [anon_sym_source] = ACTIONS(1004), - [anon_sym_source_DASHenv] = ACTIONS(1004), - [anon_sym_register] = ACTIONS(1004), - [anon_sym_hide] = ACTIONS(1004), - [anon_sym_hide_DASHenv] = ACTIONS(1004), - [anon_sym_overlay] = ACTIONS(1004), - [anon_sym_as] = ACTIONS(1004), - [anon_sym_PLUS2] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1010), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1010), - [aux_sym__val_number_decimal_token1] = ACTIONS(1004), - [aux_sym__val_number_decimal_token2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = ACTIONS(1010), - [aux_sym__val_number_decimal_token4] = ACTIONS(1010), - [aux_sym__val_number_token1] = ACTIONS(1010), - [aux_sym__val_number_token2] = ACTIONS(1010), - [aux_sym__val_number_token3] = ACTIONS(1010), - [aux_sym__val_number_token4] = ACTIONS(1004), - [aux_sym__val_number_token5] = ACTIONS(1004), - [aux_sym__val_number_token6] = ACTIONS(1004), - [anon_sym_DQUOTE] = ACTIONS(1010), - [sym__str_single_quotes] = ACTIONS(1010), - [sym__str_back_ticks] = ACTIONS(1010), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1010), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1010), - }, - [708] = { - [sym_comment] = STATE(708), - [anon_sym_export] = ACTIONS(972), - [anon_sym_alias] = ACTIONS(972), - [anon_sym_let] = ACTIONS(972), - [anon_sym_let_DASHenv] = ACTIONS(972), - [anon_sym_mut] = ACTIONS(972), - [anon_sym_const] = ACTIONS(972), - [aux_sym_cmd_identifier_token1] = ACTIONS(972), - [aux_sym_cmd_identifier_token2] = ACTIONS(974), - [aux_sym_cmd_identifier_token3] = ACTIONS(974), - [aux_sym_cmd_identifier_token4] = ACTIONS(974), - [aux_sym_cmd_identifier_token5] = ACTIONS(974), - [aux_sym_cmd_identifier_token6] = ACTIONS(974), - [aux_sym_cmd_identifier_token7] = ACTIONS(974), - [aux_sym_cmd_identifier_token8] = ACTIONS(972), - [aux_sym_cmd_identifier_token9] = ACTIONS(972), - [aux_sym_cmd_identifier_token10] = ACTIONS(974), - [aux_sym_cmd_identifier_token11] = ACTIONS(974), - [aux_sym_cmd_identifier_token12] = ACTIONS(972), - [aux_sym_cmd_identifier_token13] = ACTIONS(972), - [aux_sym_cmd_identifier_token14] = ACTIONS(972), - [aux_sym_cmd_identifier_token15] = ACTIONS(972), - [aux_sym_cmd_identifier_token16] = ACTIONS(974), - [aux_sym_cmd_identifier_token17] = ACTIONS(974), - [aux_sym_cmd_identifier_token18] = ACTIONS(974), - [aux_sym_cmd_identifier_token19] = ACTIONS(974), - [aux_sym_cmd_identifier_token20] = ACTIONS(974), - [aux_sym_cmd_identifier_token21] = ACTIONS(974), - [aux_sym_cmd_identifier_token22] = ACTIONS(974), - [aux_sym_cmd_identifier_token23] = ACTIONS(974), - [aux_sym_cmd_identifier_token24] = ACTIONS(974), - [aux_sym_cmd_identifier_token25] = ACTIONS(974), - [aux_sym_cmd_identifier_token26] = ACTIONS(974), - [aux_sym_cmd_identifier_token27] = ACTIONS(974), - [aux_sym_cmd_identifier_token28] = ACTIONS(974), - [aux_sym_cmd_identifier_token29] = ACTIONS(974), - [aux_sym_cmd_identifier_token30] = ACTIONS(974), - [aux_sym_cmd_identifier_token31] = ACTIONS(974), - [aux_sym_cmd_identifier_token32] = ACTIONS(974), - [aux_sym_cmd_identifier_token33] = ACTIONS(974), - [aux_sym_cmd_identifier_token34] = ACTIONS(972), - [aux_sym_cmd_identifier_token35] = ACTIONS(974), - [aux_sym_cmd_identifier_token36] = ACTIONS(974), - [aux_sym_cmd_identifier_token37] = ACTIONS(974), - [aux_sym_cmd_identifier_token38] = ACTIONS(972), - [aux_sym_cmd_identifier_token39] = ACTIONS(974), - [aux_sym_cmd_identifier_token40] = ACTIONS(974), - [anon_sym_def] = ACTIONS(972), - [anon_sym_export_DASHenv] = ACTIONS(972), - [anon_sym_extern] = ACTIONS(972), - [anon_sym_module] = ACTIONS(972), - [anon_sym_use] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_COMMA] = ACTIONS(974), - [anon_sym_DOLLAR] = ACTIONS(972), - [anon_sym_error] = ACTIONS(972), - [anon_sym_DASH2] = ACTIONS(972), - [anon_sym_break] = ACTIONS(972), - [anon_sym_continue] = ACTIONS(972), - [anon_sym_for] = ACTIONS(972), - [anon_sym_in2] = ACTIONS(972), - [anon_sym_loop] = ACTIONS(972), - [anon_sym_make] = ACTIONS(972), - [anon_sym_while] = ACTIONS(972), - [anon_sym_do] = ACTIONS(972), - [anon_sym_if] = ACTIONS(972), - [anon_sym_else] = ACTIONS(972), - [anon_sym_match] = ACTIONS(972), - [anon_sym_RBRACE] = ACTIONS(974), - [anon_sym_try] = ACTIONS(972), - [anon_sym_catch] = ACTIONS(972), - [anon_sym_return] = ACTIONS(972), - [anon_sym_source] = ACTIONS(972), - [anon_sym_source_DASHenv] = ACTIONS(972), - [anon_sym_register] = ACTIONS(972), - [anon_sym_hide] = ACTIONS(972), - [anon_sym_hide_DASHenv] = ACTIONS(972), - [anon_sym_overlay] = ACTIONS(972), - [anon_sym_as] = ACTIONS(972), - [anon_sym_PLUS2] = ACTIONS(972), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(974), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(974), - [aux_sym__val_number_decimal_token1] = ACTIONS(972), - [aux_sym__val_number_decimal_token2] = ACTIONS(974), - [aux_sym__val_number_decimal_token3] = ACTIONS(974), - [aux_sym__val_number_decimal_token4] = ACTIONS(974), - [aux_sym__val_number_token1] = ACTIONS(974), - [aux_sym__val_number_token2] = ACTIONS(974), - [aux_sym__val_number_token3] = ACTIONS(974), - [aux_sym__val_number_token4] = ACTIONS(972), - [aux_sym__val_number_token5] = ACTIONS(972), - [aux_sym__val_number_token6] = ACTIONS(972), - [anon_sym_DQUOTE] = ACTIONS(974), - [sym__str_single_quotes] = ACTIONS(974), - [sym__str_back_ticks] = ACTIONS(974), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(974), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(974), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(974), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(974), - }, - [709] = { - [sym_comment] = STATE(709), - [anon_sym_export] = ACTIONS(2489), - [anon_sym_alias] = ACTIONS(2489), - [anon_sym_let] = ACTIONS(2489), - [anon_sym_let_DASHenv] = ACTIONS(2489), - [anon_sym_mut] = ACTIONS(2489), - [anon_sym_const] = ACTIONS(2489), - [aux_sym_cmd_identifier_token1] = ACTIONS(2489), - [aux_sym_cmd_identifier_token2] = ACTIONS(2491), - [aux_sym_cmd_identifier_token3] = ACTIONS(2491), - [aux_sym_cmd_identifier_token4] = ACTIONS(2491), - [aux_sym_cmd_identifier_token5] = ACTIONS(2491), - [aux_sym_cmd_identifier_token6] = ACTIONS(2491), - [aux_sym_cmd_identifier_token7] = ACTIONS(2491), - [aux_sym_cmd_identifier_token8] = ACTIONS(2489), - [aux_sym_cmd_identifier_token9] = ACTIONS(2489), - [aux_sym_cmd_identifier_token10] = ACTIONS(2491), - [aux_sym_cmd_identifier_token11] = ACTIONS(2491), - [aux_sym_cmd_identifier_token12] = ACTIONS(2489), - [aux_sym_cmd_identifier_token13] = ACTIONS(2489), - [aux_sym_cmd_identifier_token14] = ACTIONS(2489), - [aux_sym_cmd_identifier_token15] = ACTIONS(2489), - [aux_sym_cmd_identifier_token16] = ACTIONS(2491), - [aux_sym_cmd_identifier_token17] = ACTIONS(2491), - [aux_sym_cmd_identifier_token18] = ACTIONS(2491), - [aux_sym_cmd_identifier_token19] = ACTIONS(2491), - [aux_sym_cmd_identifier_token20] = ACTIONS(2491), - [aux_sym_cmd_identifier_token21] = ACTIONS(2491), - [aux_sym_cmd_identifier_token22] = ACTIONS(2491), - [aux_sym_cmd_identifier_token23] = ACTIONS(2491), - [aux_sym_cmd_identifier_token24] = ACTIONS(2491), - [aux_sym_cmd_identifier_token25] = ACTIONS(2491), - [aux_sym_cmd_identifier_token26] = ACTIONS(2491), - [aux_sym_cmd_identifier_token27] = ACTIONS(2491), - [aux_sym_cmd_identifier_token28] = ACTIONS(2491), - [aux_sym_cmd_identifier_token29] = ACTIONS(2491), - [aux_sym_cmd_identifier_token30] = ACTIONS(2491), - [aux_sym_cmd_identifier_token31] = ACTIONS(2491), - [aux_sym_cmd_identifier_token32] = ACTIONS(2491), - [aux_sym_cmd_identifier_token33] = ACTIONS(2491), - [aux_sym_cmd_identifier_token34] = ACTIONS(2489), - [aux_sym_cmd_identifier_token35] = ACTIONS(2491), - [aux_sym_cmd_identifier_token36] = ACTIONS(2491), - [aux_sym_cmd_identifier_token37] = ACTIONS(2491), - [aux_sym_cmd_identifier_token38] = ACTIONS(2489), - [aux_sym_cmd_identifier_token39] = ACTIONS(2491), - [aux_sym_cmd_identifier_token40] = ACTIONS(2491), - [anon_sym_def] = ACTIONS(2489), - [anon_sym_export_DASHenv] = ACTIONS(2489), - [anon_sym_extern] = ACTIONS(2489), - [anon_sym_module] = ACTIONS(2489), - [anon_sym_use] = ACTIONS(2489), - [anon_sym_LPAREN] = ACTIONS(2491), - [anon_sym_COMMA] = ACTIONS(2491), - [anon_sym_DOLLAR] = ACTIONS(2489), - [anon_sym_error] = ACTIONS(2489), - [anon_sym_DASH2] = ACTIONS(2489), - [anon_sym_break] = ACTIONS(2489), - [anon_sym_continue] = ACTIONS(2489), - [anon_sym_for] = ACTIONS(2489), - [anon_sym_in2] = ACTIONS(2489), - [anon_sym_loop] = ACTIONS(2489), - [anon_sym_make] = ACTIONS(2489), - [anon_sym_while] = ACTIONS(2489), - [anon_sym_do] = ACTIONS(2489), - [anon_sym_if] = ACTIONS(2489), - [anon_sym_else] = ACTIONS(2489), - [anon_sym_match] = ACTIONS(2489), - [anon_sym_RBRACE] = ACTIONS(2491), - [anon_sym_try] = ACTIONS(2489), - [anon_sym_catch] = ACTIONS(2489), - [anon_sym_return] = ACTIONS(2489), - [anon_sym_source] = ACTIONS(2489), - [anon_sym_source_DASHenv] = ACTIONS(2489), - [anon_sym_register] = ACTIONS(2489), - [anon_sym_hide] = ACTIONS(2489), - [anon_sym_hide_DASHenv] = ACTIONS(2489), - [anon_sym_overlay] = ACTIONS(2489), - [anon_sym_as] = ACTIONS(2489), - [anon_sym_PLUS2] = ACTIONS(2489), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2491), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2491), - [aux_sym__val_number_decimal_token1] = ACTIONS(2489), - [aux_sym__val_number_decimal_token2] = ACTIONS(2491), - [aux_sym__val_number_decimal_token3] = ACTIONS(2491), - [aux_sym__val_number_decimal_token4] = ACTIONS(2491), - [aux_sym__val_number_token1] = ACTIONS(2491), - [aux_sym__val_number_token2] = ACTIONS(2491), - [aux_sym__val_number_token3] = ACTIONS(2491), - [aux_sym__val_number_token4] = ACTIONS(2489), - [aux_sym__val_number_token5] = ACTIONS(2489), - [aux_sym__val_number_token6] = ACTIONS(2489), - [anon_sym_DQUOTE] = ACTIONS(2491), - [sym__str_single_quotes] = ACTIONS(2491), - [sym__str_back_ticks] = ACTIONS(2491), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2491), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2491), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2491), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2491), - }, - [710] = { - [sym_comment] = STATE(710), - [anon_sym_export] = ACTIONS(2430), - [anon_sym_alias] = ACTIONS(2430), - [anon_sym_let] = ACTIONS(2430), - [anon_sym_let_DASHenv] = ACTIONS(2430), - [anon_sym_mut] = ACTIONS(2430), - [anon_sym_const] = ACTIONS(2430), - [aux_sym_cmd_identifier_token1] = ACTIONS(2430), - [aux_sym_cmd_identifier_token2] = ACTIONS(2432), - [aux_sym_cmd_identifier_token3] = ACTIONS(2432), - [aux_sym_cmd_identifier_token4] = ACTIONS(2432), - [aux_sym_cmd_identifier_token5] = ACTIONS(2432), - [aux_sym_cmd_identifier_token6] = ACTIONS(2432), - [aux_sym_cmd_identifier_token7] = ACTIONS(2432), - [aux_sym_cmd_identifier_token8] = ACTIONS(2430), - [aux_sym_cmd_identifier_token9] = ACTIONS(2430), - [aux_sym_cmd_identifier_token10] = ACTIONS(2432), - [aux_sym_cmd_identifier_token11] = ACTIONS(2432), - [aux_sym_cmd_identifier_token12] = ACTIONS(2430), - [aux_sym_cmd_identifier_token13] = ACTIONS(2430), - [aux_sym_cmd_identifier_token14] = ACTIONS(2430), - [aux_sym_cmd_identifier_token15] = ACTIONS(2430), - [aux_sym_cmd_identifier_token16] = ACTIONS(2432), - [aux_sym_cmd_identifier_token17] = ACTIONS(2432), - [aux_sym_cmd_identifier_token18] = ACTIONS(2432), - [aux_sym_cmd_identifier_token19] = ACTIONS(2432), - [aux_sym_cmd_identifier_token20] = ACTIONS(2432), - [aux_sym_cmd_identifier_token21] = ACTIONS(2432), - [aux_sym_cmd_identifier_token22] = ACTIONS(2432), - [aux_sym_cmd_identifier_token23] = ACTIONS(2432), - [aux_sym_cmd_identifier_token24] = ACTIONS(2432), - [aux_sym_cmd_identifier_token25] = ACTIONS(2432), - [aux_sym_cmd_identifier_token26] = ACTIONS(2432), - [aux_sym_cmd_identifier_token27] = ACTIONS(2432), - [aux_sym_cmd_identifier_token28] = ACTIONS(2432), - [aux_sym_cmd_identifier_token29] = ACTIONS(2432), - [aux_sym_cmd_identifier_token30] = ACTIONS(2432), - [aux_sym_cmd_identifier_token31] = ACTIONS(2432), - [aux_sym_cmd_identifier_token32] = ACTIONS(2432), - [aux_sym_cmd_identifier_token33] = ACTIONS(2432), - [aux_sym_cmd_identifier_token34] = ACTIONS(2430), - [aux_sym_cmd_identifier_token35] = ACTIONS(2432), - [aux_sym_cmd_identifier_token36] = ACTIONS(2432), - [aux_sym_cmd_identifier_token37] = ACTIONS(2432), - [aux_sym_cmd_identifier_token38] = ACTIONS(2430), - [aux_sym_cmd_identifier_token39] = ACTIONS(2432), - [aux_sym_cmd_identifier_token40] = ACTIONS(2432), - [anon_sym_def] = ACTIONS(2430), - [anon_sym_export_DASHenv] = ACTIONS(2430), - [anon_sym_extern] = ACTIONS(2430), - [anon_sym_module] = ACTIONS(2430), - [anon_sym_use] = ACTIONS(2430), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_DOLLAR] = ACTIONS(2430), - [anon_sym_error] = ACTIONS(2430), - [anon_sym_DASH2] = ACTIONS(2430), - [anon_sym_break] = ACTIONS(2430), - [anon_sym_continue] = ACTIONS(2430), - [anon_sym_for] = ACTIONS(2430), - [anon_sym_in2] = ACTIONS(2430), - [anon_sym_loop] = ACTIONS(2430), - [anon_sym_make] = ACTIONS(2430), - [anon_sym_while] = ACTIONS(2430), - [anon_sym_do] = ACTIONS(2430), - [anon_sym_if] = ACTIONS(2430), - [anon_sym_else] = ACTIONS(2430), - [anon_sym_match] = ACTIONS(2430), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_try] = ACTIONS(2430), - [anon_sym_catch] = ACTIONS(2430), - [anon_sym_return] = ACTIONS(2430), - [anon_sym_source] = ACTIONS(2430), - [anon_sym_source_DASHenv] = ACTIONS(2430), - [anon_sym_register] = ACTIONS(2430), - [anon_sym_hide] = ACTIONS(2430), - [anon_sym_hide_DASHenv] = ACTIONS(2430), - [anon_sym_overlay] = ACTIONS(2430), - [anon_sym_as] = ACTIONS(2430), - [anon_sym_PLUS2] = ACTIONS(2430), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2432), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2432), - [aux_sym__val_number_decimal_token1] = ACTIONS(2430), - [aux_sym__val_number_decimal_token2] = ACTIONS(2432), - [aux_sym__val_number_decimal_token3] = ACTIONS(2432), - [aux_sym__val_number_decimal_token4] = ACTIONS(2432), - [aux_sym__val_number_token1] = ACTIONS(2432), - [aux_sym__val_number_token2] = ACTIONS(2432), - [aux_sym__val_number_token3] = ACTIONS(2432), - [aux_sym__val_number_token4] = ACTIONS(2430), - [aux_sym__val_number_token5] = ACTIONS(2430), - [aux_sym__val_number_token6] = ACTIONS(2430), - [anon_sym_DQUOTE] = ACTIONS(2432), - [sym__str_single_quotes] = ACTIONS(2432), - [sym__str_back_ticks] = ACTIONS(2432), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2432), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2432), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2432), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2432), - }, - [711] = { - [sym_comment] = STATE(711), - [aux_sym__multiple_types_repeat1] = STATE(662), - [anon_sym_export] = ACTIONS(2434), - [anon_sym_alias] = ACTIONS(2434), - [anon_sym_let] = ACTIONS(2434), - [anon_sym_let_DASHenv] = ACTIONS(2434), - [anon_sym_mut] = ACTIONS(2434), - [anon_sym_const] = ACTIONS(2434), - [aux_sym_cmd_identifier_token1] = ACTIONS(2434), - [aux_sym_cmd_identifier_token2] = ACTIONS(2434), - [aux_sym_cmd_identifier_token3] = ACTIONS(2434), - [aux_sym_cmd_identifier_token4] = ACTIONS(2434), - [aux_sym_cmd_identifier_token5] = ACTIONS(2434), - [aux_sym_cmd_identifier_token6] = ACTIONS(2434), - [aux_sym_cmd_identifier_token7] = ACTIONS(2434), - [aux_sym_cmd_identifier_token8] = ACTIONS(2434), - [aux_sym_cmd_identifier_token9] = ACTIONS(2434), - [aux_sym_cmd_identifier_token10] = ACTIONS(2434), - [aux_sym_cmd_identifier_token11] = ACTIONS(2434), - [aux_sym_cmd_identifier_token12] = ACTIONS(2434), - [aux_sym_cmd_identifier_token13] = ACTIONS(2434), - [aux_sym_cmd_identifier_token14] = ACTIONS(2434), - [aux_sym_cmd_identifier_token15] = ACTIONS(2434), - [aux_sym_cmd_identifier_token16] = ACTIONS(2434), - [aux_sym_cmd_identifier_token17] = ACTIONS(2434), - [aux_sym_cmd_identifier_token18] = ACTIONS(2434), - [aux_sym_cmd_identifier_token19] = ACTIONS(2434), - [aux_sym_cmd_identifier_token20] = ACTIONS(2434), - [aux_sym_cmd_identifier_token21] = ACTIONS(2434), - [aux_sym_cmd_identifier_token22] = ACTIONS(2434), - [aux_sym_cmd_identifier_token23] = ACTIONS(2434), - [aux_sym_cmd_identifier_token24] = ACTIONS(2434), - [aux_sym_cmd_identifier_token25] = ACTIONS(2434), - [aux_sym_cmd_identifier_token26] = ACTIONS(2434), - [aux_sym_cmd_identifier_token27] = ACTIONS(2434), - [aux_sym_cmd_identifier_token28] = ACTIONS(2434), - [aux_sym_cmd_identifier_token29] = ACTIONS(2434), - [aux_sym_cmd_identifier_token30] = ACTIONS(2434), - [aux_sym_cmd_identifier_token31] = ACTIONS(2434), - [aux_sym_cmd_identifier_token32] = ACTIONS(2434), - [aux_sym_cmd_identifier_token33] = ACTIONS(2434), - [aux_sym_cmd_identifier_token34] = ACTIONS(2434), - [aux_sym_cmd_identifier_token35] = ACTIONS(2434), - [aux_sym_cmd_identifier_token36] = ACTIONS(2434), - [aux_sym_cmd_identifier_token37] = ACTIONS(2434), - [aux_sym_cmd_identifier_token38] = ACTIONS(2434), - [aux_sym_cmd_identifier_token39] = ACTIONS(2434), - [aux_sym_cmd_identifier_token40] = ACTIONS(2434), - [anon_sym_def] = ACTIONS(2434), - [anon_sym_export_DASHenv] = ACTIONS(2434), - [anon_sym_extern] = ACTIONS(2434), - [anon_sym_module] = ACTIONS(2434), - [anon_sym_use] = ACTIONS(2434), - [anon_sym_LPAREN] = ACTIONS(2434), - [anon_sym_DOLLAR] = ACTIONS(2434), - [anon_sym_error] = ACTIONS(2434), - [anon_sym_DASH2] = ACTIONS(2434), - [anon_sym_break] = ACTIONS(2434), - [anon_sym_continue] = ACTIONS(2434), - [anon_sym_for] = ACTIONS(2434), - [anon_sym_in2] = ACTIONS(2434), - [anon_sym_loop] = ACTIONS(2434), - [anon_sym_make] = ACTIONS(2434), - [anon_sym_while] = ACTIONS(2434), - [anon_sym_do] = ACTIONS(2434), - [anon_sym_if] = ACTIONS(2434), - [anon_sym_else] = ACTIONS(2434), - [anon_sym_match] = ACTIONS(2434), - [anon_sym_try] = ACTIONS(2434), - [anon_sym_catch] = ACTIONS(2434), - [anon_sym_return] = ACTIONS(2434), - [anon_sym_source] = ACTIONS(2434), - [anon_sym_source_DASHenv] = ACTIONS(2434), - [anon_sym_register] = ACTIONS(2434), - [anon_sym_hide] = ACTIONS(2434), - [anon_sym_hide_DASHenv] = ACTIONS(2434), - [anon_sym_overlay] = ACTIONS(2434), - [anon_sym_as] = ACTIONS(2434), - [anon_sym_PLUS2] = ACTIONS(2434), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2434), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2434), - [aux_sym__val_number_decimal_token1] = ACTIONS(2434), - [aux_sym__val_number_decimal_token2] = ACTIONS(2434), - [aux_sym__val_number_decimal_token3] = ACTIONS(2434), - [aux_sym__val_number_decimal_token4] = ACTIONS(2434), - [aux_sym__val_number_token1] = ACTIONS(2434), - [aux_sym__val_number_token2] = ACTIONS(2434), - [aux_sym__val_number_token3] = ACTIONS(2434), - [aux_sym__val_number_token4] = ACTIONS(2434), - [aux_sym__val_number_token5] = ACTIONS(2434), - [aux_sym__val_number_token6] = ACTIONS(2434), - [anon_sym_DQUOTE] = ACTIONS(2434), - [sym__str_single_quotes] = ACTIONS(2434), - [sym__str_back_ticks] = ACTIONS(2434), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2434), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2434), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2434), - [sym__entry_separator] = ACTIONS(2318), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2438), - }, - [712] = { - [sym_comment] = STATE(712), - [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(978), - [aux_sym_cmd_identifier_token3] = ACTIONS(978), - [aux_sym_cmd_identifier_token4] = ACTIONS(978), - [aux_sym_cmd_identifier_token5] = ACTIONS(978), - [aux_sym_cmd_identifier_token6] = ACTIONS(978), - [aux_sym_cmd_identifier_token7] = ACTIONS(978), - [aux_sym_cmd_identifier_token8] = ACTIONS(976), - [aux_sym_cmd_identifier_token9] = ACTIONS(976), - [aux_sym_cmd_identifier_token10] = ACTIONS(978), - [aux_sym_cmd_identifier_token11] = ACTIONS(978), - [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(978), - [aux_sym_cmd_identifier_token17] = ACTIONS(978), - [aux_sym_cmd_identifier_token18] = ACTIONS(978), - [aux_sym_cmd_identifier_token19] = ACTIONS(978), - [aux_sym_cmd_identifier_token20] = ACTIONS(978), - [aux_sym_cmd_identifier_token21] = ACTIONS(978), - [aux_sym_cmd_identifier_token22] = ACTIONS(978), - [aux_sym_cmd_identifier_token23] = ACTIONS(978), - [aux_sym_cmd_identifier_token24] = ACTIONS(978), - [aux_sym_cmd_identifier_token25] = ACTIONS(978), - [aux_sym_cmd_identifier_token26] = ACTIONS(978), - [aux_sym_cmd_identifier_token27] = ACTIONS(978), - [aux_sym_cmd_identifier_token28] = ACTIONS(978), - [aux_sym_cmd_identifier_token29] = ACTIONS(978), - [aux_sym_cmd_identifier_token30] = ACTIONS(978), - [aux_sym_cmd_identifier_token31] = ACTIONS(978), - [aux_sym_cmd_identifier_token32] = ACTIONS(978), - [aux_sym_cmd_identifier_token33] = ACTIONS(978), - [aux_sym_cmd_identifier_token34] = ACTIONS(976), - [aux_sym_cmd_identifier_token35] = ACTIONS(978), - [aux_sym_cmd_identifier_token36] = ACTIONS(978), - [aux_sym_cmd_identifier_token37] = 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(976), - [anon_sym_error] = ACTIONS(976), - [anon_sym_DASH2] = ACTIONS(976), - [anon_sym_break] = ACTIONS(976), - [anon_sym_continue] = ACTIONS(976), - [anon_sym_for] = ACTIONS(976), - [anon_sym_in2] = 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_as] = ACTIONS(976), - [anon_sym_PLUS2] = 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), - [aux_sym__val_number_token4] = ACTIONS(976), - [aux_sym__val_number_token5] = ACTIONS(976), - [aux_sym__val_number_token6] = ACTIONS(976), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(978), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(978), - }, - [713] = { - [sym_comment] = STATE(713), - [anon_sym_export] = ACTIONS(984), - [anon_sym_alias] = ACTIONS(984), - [anon_sym_let] = ACTIONS(984), - [anon_sym_let_DASHenv] = ACTIONS(984), - [anon_sym_mut] = ACTIONS(984), - [anon_sym_const] = ACTIONS(984), - [aux_sym_cmd_identifier_token1] = ACTIONS(984), - [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(984), - [aux_sym_cmd_identifier_token9] = ACTIONS(984), - [aux_sym_cmd_identifier_token10] = ACTIONS(986), - [aux_sym_cmd_identifier_token11] = ACTIONS(986), - [aux_sym_cmd_identifier_token12] = ACTIONS(984), - [aux_sym_cmd_identifier_token13] = ACTIONS(984), - [aux_sym_cmd_identifier_token14] = ACTIONS(984), - [aux_sym_cmd_identifier_token15] = ACTIONS(984), - [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(984), - [aux_sym_cmd_identifier_token35] = ACTIONS(986), - [aux_sym_cmd_identifier_token36] = ACTIONS(986), - [aux_sym_cmd_identifier_token37] = ACTIONS(986), - [aux_sym_cmd_identifier_token38] = ACTIONS(984), - [aux_sym_cmd_identifier_token39] = ACTIONS(986), - [aux_sym_cmd_identifier_token40] = ACTIONS(986), - [anon_sym_def] = ACTIONS(984), - [anon_sym_export_DASHenv] = ACTIONS(984), - [anon_sym_extern] = ACTIONS(984), - [anon_sym_module] = ACTIONS(984), - [anon_sym_use] = ACTIONS(984), - [anon_sym_LPAREN] = ACTIONS(986), - [anon_sym_COMMA] = ACTIONS(986), - [anon_sym_DOLLAR] = ACTIONS(984), - [anon_sym_error] = ACTIONS(984), - [anon_sym_DASH2] = ACTIONS(984), - [anon_sym_break] = ACTIONS(984), - [anon_sym_continue] = ACTIONS(984), - [anon_sym_for] = ACTIONS(984), - [anon_sym_in2] = ACTIONS(984), - [anon_sym_loop] = ACTIONS(984), - [anon_sym_make] = ACTIONS(984), - [anon_sym_while] = ACTIONS(984), - [anon_sym_do] = ACTIONS(984), - [anon_sym_if] = ACTIONS(984), - [anon_sym_else] = ACTIONS(984), - [anon_sym_match] = ACTIONS(984), - [anon_sym_RBRACE] = ACTIONS(986), - [anon_sym_try] = ACTIONS(984), - [anon_sym_catch] = ACTIONS(984), - [anon_sym_return] = ACTIONS(984), - [anon_sym_source] = ACTIONS(984), - [anon_sym_source_DASHenv] = ACTIONS(984), - [anon_sym_register] = ACTIONS(984), - [anon_sym_hide] = ACTIONS(984), - [anon_sym_hide_DASHenv] = ACTIONS(984), - [anon_sym_overlay] = ACTIONS(984), - [anon_sym_as] = ACTIONS(984), - [anon_sym_PLUS2] = ACTIONS(984), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(986), - [aux_sym__val_number_decimal_token1] = ACTIONS(984), - [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), - [aux_sym__val_number_token4] = ACTIONS(984), - [aux_sym__val_number_token5] = ACTIONS(984), - [aux_sym__val_number_token6] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym__str_single_quotes] = ACTIONS(986), - [sym__str_back_ticks] = ACTIONS(986), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(986), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(986), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(986), - }, - [714] = { - [sym_comment] = STATE(714), - [anon_sym_export] = ACTIONS(2501), - [anon_sym_alias] = ACTIONS(2501), - [anon_sym_let] = ACTIONS(2501), - [anon_sym_let_DASHenv] = ACTIONS(2501), - [anon_sym_mut] = ACTIONS(2501), - [anon_sym_const] = ACTIONS(2501), - [aux_sym_cmd_identifier_token1] = ACTIONS(2501), - [aux_sym_cmd_identifier_token2] = ACTIONS(2503), - [aux_sym_cmd_identifier_token3] = ACTIONS(2503), - [aux_sym_cmd_identifier_token4] = ACTIONS(2503), - [aux_sym_cmd_identifier_token5] = ACTIONS(2503), - [aux_sym_cmd_identifier_token6] = ACTIONS(2503), - [aux_sym_cmd_identifier_token7] = ACTIONS(2503), - [aux_sym_cmd_identifier_token8] = ACTIONS(2501), - [aux_sym_cmd_identifier_token9] = ACTIONS(2501), - [aux_sym_cmd_identifier_token10] = ACTIONS(2503), - [aux_sym_cmd_identifier_token11] = ACTIONS(2503), - [aux_sym_cmd_identifier_token12] = ACTIONS(2501), - [aux_sym_cmd_identifier_token13] = ACTIONS(2501), - [aux_sym_cmd_identifier_token14] = ACTIONS(2501), - [aux_sym_cmd_identifier_token15] = ACTIONS(2501), - [aux_sym_cmd_identifier_token16] = ACTIONS(2503), - [aux_sym_cmd_identifier_token17] = ACTIONS(2503), - [aux_sym_cmd_identifier_token18] = ACTIONS(2503), - [aux_sym_cmd_identifier_token19] = ACTIONS(2503), - [aux_sym_cmd_identifier_token20] = ACTIONS(2503), - [aux_sym_cmd_identifier_token21] = ACTIONS(2503), - [aux_sym_cmd_identifier_token22] = ACTIONS(2503), - [aux_sym_cmd_identifier_token23] = ACTIONS(2503), - [aux_sym_cmd_identifier_token24] = ACTIONS(2503), - [aux_sym_cmd_identifier_token25] = ACTIONS(2503), - [aux_sym_cmd_identifier_token26] = ACTIONS(2503), - [aux_sym_cmd_identifier_token27] = ACTIONS(2503), - [aux_sym_cmd_identifier_token28] = ACTIONS(2503), - [aux_sym_cmd_identifier_token29] = ACTIONS(2503), - [aux_sym_cmd_identifier_token30] = ACTIONS(2503), - [aux_sym_cmd_identifier_token31] = ACTIONS(2503), - [aux_sym_cmd_identifier_token32] = ACTIONS(2503), - [aux_sym_cmd_identifier_token33] = ACTIONS(2503), - [aux_sym_cmd_identifier_token34] = ACTIONS(2501), - [aux_sym_cmd_identifier_token35] = ACTIONS(2503), - [aux_sym_cmd_identifier_token36] = ACTIONS(2503), - [aux_sym_cmd_identifier_token37] = ACTIONS(2503), - [aux_sym_cmd_identifier_token38] = ACTIONS(2501), - [aux_sym_cmd_identifier_token39] = ACTIONS(2503), - [aux_sym_cmd_identifier_token40] = ACTIONS(2503), - [anon_sym_def] = ACTIONS(2501), - [anon_sym_export_DASHenv] = ACTIONS(2501), - [anon_sym_extern] = ACTIONS(2501), - [anon_sym_module] = ACTIONS(2501), - [anon_sym_use] = ACTIONS(2501), - [anon_sym_LPAREN] = ACTIONS(2503), - [anon_sym_COMMA] = ACTIONS(2503), - [anon_sym_DOLLAR] = ACTIONS(2501), - [anon_sym_error] = ACTIONS(2501), - [anon_sym_DASH2] = ACTIONS(2501), - [anon_sym_break] = ACTIONS(2501), - [anon_sym_continue] = ACTIONS(2501), - [anon_sym_for] = ACTIONS(2501), - [anon_sym_in2] = ACTIONS(2501), - [anon_sym_loop] = ACTIONS(2501), - [anon_sym_make] = ACTIONS(2501), - [anon_sym_while] = ACTIONS(2501), - [anon_sym_do] = ACTIONS(2501), - [anon_sym_if] = ACTIONS(2501), - [anon_sym_else] = ACTIONS(2501), - [anon_sym_match] = ACTIONS(2501), - [anon_sym_RBRACE] = ACTIONS(2503), - [anon_sym_try] = ACTIONS(2501), - [anon_sym_catch] = ACTIONS(2501), - [anon_sym_return] = ACTIONS(2501), - [anon_sym_source] = ACTIONS(2501), - [anon_sym_source_DASHenv] = ACTIONS(2501), - [anon_sym_register] = ACTIONS(2501), - [anon_sym_hide] = ACTIONS(2501), - [anon_sym_hide_DASHenv] = ACTIONS(2501), - [anon_sym_overlay] = ACTIONS(2501), - [anon_sym_as] = ACTIONS(2501), - [anon_sym_PLUS2] = ACTIONS(2501), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2503), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2503), - [aux_sym__val_number_decimal_token1] = ACTIONS(2501), - [aux_sym__val_number_decimal_token2] = ACTIONS(2503), - [aux_sym__val_number_decimal_token3] = ACTIONS(2503), - [aux_sym__val_number_decimal_token4] = ACTIONS(2503), - [aux_sym__val_number_token1] = ACTIONS(2503), - [aux_sym__val_number_token2] = ACTIONS(2503), - [aux_sym__val_number_token3] = ACTIONS(2503), - [aux_sym__val_number_token4] = ACTIONS(2501), - [aux_sym__val_number_token5] = ACTIONS(2501), - [aux_sym__val_number_token6] = ACTIONS(2501), - [anon_sym_DQUOTE] = ACTIONS(2503), - [sym__str_single_quotes] = ACTIONS(2503), - [sym__str_back_ticks] = ACTIONS(2503), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2503), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2503), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2503), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2503), - }, - [715] = { - [sym_comment] = STATE(715), - [anon_sym_export] = ACTIONS(2374), - [anon_sym_alias] = ACTIONS(2374), - [anon_sym_let] = ACTIONS(2374), - [anon_sym_let_DASHenv] = ACTIONS(2374), - [anon_sym_mut] = ACTIONS(2374), - [anon_sym_const] = ACTIONS(2374), - [aux_sym_cmd_identifier_token1] = ACTIONS(2374), - [aux_sym_cmd_identifier_token2] = ACTIONS(2376), - [aux_sym_cmd_identifier_token3] = ACTIONS(2376), - [aux_sym_cmd_identifier_token4] = ACTIONS(2376), - [aux_sym_cmd_identifier_token5] = ACTIONS(2376), - [aux_sym_cmd_identifier_token6] = ACTIONS(2376), - [aux_sym_cmd_identifier_token7] = ACTIONS(2376), - [aux_sym_cmd_identifier_token8] = ACTIONS(2374), - [aux_sym_cmd_identifier_token9] = ACTIONS(2374), - [aux_sym_cmd_identifier_token10] = ACTIONS(2376), - [aux_sym_cmd_identifier_token11] = ACTIONS(2376), - [aux_sym_cmd_identifier_token12] = ACTIONS(2374), - [aux_sym_cmd_identifier_token13] = ACTIONS(2374), - [aux_sym_cmd_identifier_token14] = ACTIONS(2374), - [aux_sym_cmd_identifier_token15] = ACTIONS(2374), - [aux_sym_cmd_identifier_token16] = ACTIONS(2376), - [aux_sym_cmd_identifier_token17] = ACTIONS(2376), - [aux_sym_cmd_identifier_token18] = ACTIONS(2376), - [aux_sym_cmd_identifier_token19] = ACTIONS(2376), - [aux_sym_cmd_identifier_token20] = ACTIONS(2376), - [aux_sym_cmd_identifier_token21] = ACTIONS(2376), - [aux_sym_cmd_identifier_token22] = ACTIONS(2376), - [aux_sym_cmd_identifier_token23] = ACTIONS(2376), - [aux_sym_cmd_identifier_token24] = ACTIONS(2376), - [aux_sym_cmd_identifier_token25] = ACTIONS(2376), - [aux_sym_cmd_identifier_token26] = ACTIONS(2376), - [aux_sym_cmd_identifier_token27] = ACTIONS(2376), - [aux_sym_cmd_identifier_token28] = ACTIONS(2376), - [aux_sym_cmd_identifier_token29] = ACTIONS(2376), - [aux_sym_cmd_identifier_token30] = ACTIONS(2376), - [aux_sym_cmd_identifier_token31] = ACTIONS(2376), - [aux_sym_cmd_identifier_token32] = ACTIONS(2376), - [aux_sym_cmd_identifier_token33] = ACTIONS(2376), - [aux_sym_cmd_identifier_token34] = ACTIONS(2374), - [aux_sym_cmd_identifier_token35] = ACTIONS(2376), - [aux_sym_cmd_identifier_token36] = ACTIONS(2376), - [aux_sym_cmd_identifier_token37] = ACTIONS(2376), - [aux_sym_cmd_identifier_token38] = ACTIONS(2374), - [aux_sym_cmd_identifier_token39] = ACTIONS(2376), - [aux_sym_cmd_identifier_token40] = ACTIONS(2376), - [anon_sym_def] = ACTIONS(2374), - [anon_sym_export_DASHenv] = ACTIONS(2374), - [anon_sym_extern] = ACTIONS(2374), - [anon_sym_module] = ACTIONS(2374), - [anon_sym_use] = ACTIONS(2374), - [anon_sym_LPAREN] = ACTIONS(2376), - [anon_sym_COMMA] = ACTIONS(2376), - [anon_sym_DOLLAR] = ACTIONS(2374), - [anon_sym_error] = ACTIONS(2374), - [anon_sym_DASH2] = ACTIONS(2374), - [anon_sym_break] = ACTIONS(2374), - [anon_sym_continue] = ACTIONS(2374), - [anon_sym_for] = ACTIONS(2374), - [anon_sym_in2] = ACTIONS(2374), - [anon_sym_loop] = ACTIONS(2374), - [anon_sym_make] = ACTIONS(2374), - [anon_sym_while] = ACTIONS(2374), - [anon_sym_do] = ACTIONS(2374), - [anon_sym_if] = ACTIONS(2374), - [anon_sym_else] = ACTIONS(2374), - [anon_sym_match] = ACTIONS(2374), - [anon_sym_RBRACE] = ACTIONS(2376), - [anon_sym_try] = ACTIONS(2374), - [anon_sym_catch] = ACTIONS(2374), - [anon_sym_return] = ACTIONS(2374), - [anon_sym_source] = ACTIONS(2374), - [anon_sym_source_DASHenv] = ACTIONS(2374), - [anon_sym_register] = ACTIONS(2374), - [anon_sym_hide] = ACTIONS(2374), - [anon_sym_hide_DASHenv] = ACTIONS(2374), - [anon_sym_overlay] = ACTIONS(2374), - [anon_sym_as] = ACTIONS(2374), - [anon_sym_PLUS2] = ACTIONS(2374), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2376), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2376), - [aux_sym__val_number_decimal_token1] = ACTIONS(2374), - [aux_sym__val_number_decimal_token2] = ACTIONS(2376), - [aux_sym__val_number_decimal_token3] = ACTIONS(2376), - [aux_sym__val_number_decimal_token4] = ACTIONS(2376), - [aux_sym__val_number_token1] = ACTIONS(2376), - [aux_sym__val_number_token2] = ACTIONS(2376), - [aux_sym__val_number_token3] = ACTIONS(2376), - [aux_sym__val_number_token4] = ACTIONS(2374), - [aux_sym__val_number_token5] = ACTIONS(2374), - [aux_sym__val_number_token6] = ACTIONS(2374), - [anon_sym_DQUOTE] = ACTIONS(2376), - [sym__str_single_quotes] = ACTIONS(2376), - [sym__str_back_ticks] = ACTIONS(2376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2376), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2376), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2376), - }, - [716] = { - [sym_comment] = STATE(716), - [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(982), - [aux_sym_cmd_identifier_token3] = ACTIONS(982), - [aux_sym_cmd_identifier_token4] = ACTIONS(982), - [aux_sym_cmd_identifier_token5] = ACTIONS(982), - [aux_sym_cmd_identifier_token6] = ACTIONS(982), - [aux_sym_cmd_identifier_token7] = ACTIONS(982), - [aux_sym_cmd_identifier_token8] = ACTIONS(980), - [aux_sym_cmd_identifier_token9] = ACTIONS(980), - [aux_sym_cmd_identifier_token10] = ACTIONS(982), - [aux_sym_cmd_identifier_token11] = ACTIONS(982), - [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(982), - [aux_sym_cmd_identifier_token17] = ACTIONS(982), - [aux_sym_cmd_identifier_token18] = ACTIONS(982), - [aux_sym_cmd_identifier_token19] = ACTIONS(982), - [aux_sym_cmd_identifier_token20] = ACTIONS(982), - [aux_sym_cmd_identifier_token21] = ACTIONS(982), - [aux_sym_cmd_identifier_token22] = ACTIONS(982), - [aux_sym_cmd_identifier_token23] = ACTIONS(982), - [aux_sym_cmd_identifier_token24] = ACTIONS(982), - [aux_sym_cmd_identifier_token25] = ACTIONS(982), - [aux_sym_cmd_identifier_token26] = ACTIONS(982), - [aux_sym_cmd_identifier_token27] = ACTIONS(982), - [aux_sym_cmd_identifier_token28] = ACTIONS(982), - [aux_sym_cmd_identifier_token29] = ACTIONS(982), - [aux_sym_cmd_identifier_token30] = ACTIONS(982), - [aux_sym_cmd_identifier_token31] = ACTIONS(982), - [aux_sym_cmd_identifier_token32] = ACTIONS(982), - [aux_sym_cmd_identifier_token33] = ACTIONS(982), - [aux_sym_cmd_identifier_token34] = ACTIONS(980), - [aux_sym_cmd_identifier_token35] = ACTIONS(982), - [aux_sym_cmd_identifier_token36] = ACTIONS(982), - [aux_sym_cmd_identifier_token37] = 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(980), - [anon_sym_error] = ACTIONS(980), - [anon_sym_DASH2] = ACTIONS(980), - [anon_sym_break] = ACTIONS(980), - [anon_sym_continue] = ACTIONS(980), - [anon_sym_for] = ACTIONS(980), - [anon_sym_in2] = 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_as] = ACTIONS(980), - [anon_sym_PLUS2] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT_LPAREN] = 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), - [aux_sym__val_number_token4] = ACTIONS(980), - [aux_sym__val_number_token5] = ACTIONS(980), - [aux_sym__val_number_token6] = ACTIONS(980), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(982), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(982), - }, - [717] = { - [sym_comment] = STATE(717), - [anon_sym_export] = ACTIONS(2414), - [anon_sym_alias] = ACTIONS(2414), - [anon_sym_let] = ACTIONS(2414), - [anon_sym_let_DASHenv] = ACTIONS(2414), - [anon_sym_mut] = ACTIONS(2414), - [anon_sym_const] = ACTIONS(2414), - [aux_sym_cmd_identifier_token1] = ACTIONS(2414), - [aux_sym_cmd_identifier_token2] = ACTIONS(2416), - [aux_sym_cmd_identifier_token3] = ACTIONS(2416), - [aux_sym_cmd_identifier_token4] = ACTIONS(2416), - [aux_sym_cmd_identifier_token5] = ACTIONS(2416), - [aux_sym_cmd_identifier_token6] = ACTIONS(2416), - [aux_sym_cmd_identifier_token7] = ACTIONS(2416), - [aux_sym_cmd_identifier_token8] = ACTIONS(2414), - [aux_sym_cmd_identifier_token9] = ACTIONS(2414), - [aux_sym_cmd_identifier_token10] = ACTIONS(2416), - [aux_sym_cmd_identifier_token11] = ACTIONS(2416), - [aux_sym_cmd_identifier_token12] = ACTIONS(2414), - [aux_sym_cmd_identifier_token13] = ACTIONS(2414), - [aux_sym_cmd_identifier_token14] = ACTIONS(2414), - [aux_sym_cmd_identifier_token15] = ACTIONS(2414), - [aux_sym_cmd_identifier_token16] = ACTIONS(2416), - [aux_sym_cmd_identifier_token17] = ACTIONS(2416), - [aux_sym_cmd_identifier_token18] = ACTIONS(2416), - [aux_sym_cmd_identifier_token19] = ACTIONS(2416), - [aux_sym_cmd_identifier_token20] = ACTIONS(2416), - [aux_sym_cmd_identifier_token21] = ACTIONS(2416), - [aux_sym_cmd_identifier_token22] = ACTIONS(2416), - [aux_sym_cmd_identifier_token23] = ACTIONS(2416), - [aux_sym_cmd_identifier_token24] = ACTIONS(2416), - [aux_sym_cmd_identifier_token25] = ACTIONS(2416), - [aux_sym_cmd_identifier_token26] = ACTIONS(2416), - [aux_sym_cmd_identifier_token27] = ACTIONS(2416), - [aux_sym_cmd_identifier_token28] = ACTIONS(2416), - [aux_sym_cmd_identifier_token29] = ACTIONS(2416), - [aux_sym_cmd_identifier_token30] = ACTIONS(2416), - [aux_sym_cmd_identifier_token31] = ACTIONS(2416), - [aux_sym_cmd_identifier_token32] = ACTIONS(2416), - [aux_sym_cmd_identifier_token33] = ACTIONS(2416), - [aux_sym_cmd_identifier_token34] = ACTIONS(2414), - [aux_sym_cmd_identifier_token35] = ACTIONS(2416), - [aux_sym_cmd_identifier_token36] = ACTIONS(2416), - [aux_sym_cmd_identifier_token37] = ACTIONS(2416), - [aux_sym_cmd_identifier_token38] = ACTIONS(2414), - [aux_sym_cmd_identifier_token39] = ACTIONS(2416), - [aux_sym_cmd_identifier_token40] = ACTIONS(2416), - [anon_sym_def] = ACTIONS(2414), - [anon_sym_export_DASHenv] = ACTIONS(2414), - [anon_sym_extern] = ACTIONS(2414), - [anon_sym_module] = ACTIONS(2414), - [anon_sym_use] = ACTIONS(2414), - [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_COMMA] = ACTIONS(2416), - [anon_sym_DOLLAR] = ACTIONS(2414), - [anon_sym_error] = ACTIONS(2414), - [anon_sym_DASH2] = ACTIONS(2414), - [anon_sym_break] = ACTIONS(2414), - [anon_sym_continue] = ACTIONS(2414), - [anon_sym_for] = ACTIONS(2414), - [anon_sym_in2] = ACTIONS(2414), - [anon_sym_loop] = ACTIONS(2414), - [anon_sym_make] = ACTIONS(2414), - [anon_sym_while] = ACTIONS(2414), - [anon_sym_do] = ACTIONS(2414), - [anon_sym_if] = ACTIONS(2414), - [anon_sym_else] = ACTIONS(2414), - [anon_sym_match] = ACTIONS(2414), - [anon_sym_RBRACE] = ACTIONS(2416), - [anon_sym_try] = ACTIONS(2414), - [anon_sym_catch] = ACTIONS(2414), - [anon_sym_return] = ACTIONS(2414), - [anon_sym_source] = ACTIONS(2414), - [anon_sym_source_DASHenv] = ACTIONS(2414), - [anon_sym_register] = ACTIONS(2414), - [anon_sym_hide] = ACTIONS(2414), - [anon_sym_hide_DASHenv] = ACTIONS(2414), - [anon_sym_overlay] = ACTIONS(2414), - [anon_sym_as] = ACTIONS(2414), - [anon_sym_PLUS2] = ACTIONS(2414), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2416), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2416), - [aux_sym__val_number_decimal_token1] = ACTIONS(2414), - [aux_sym__val_number_decimal_token2] = ACTIONS(2416), - [aux_sym__val_number_decimal_token3] = ACTIONS(2416), - [aux_sym__val_number_decimal_token4] = ACTIONS(2416), - [aux_sym__val_number_token1] = ACTIONS(2416), - [aux_sym__val_number_token2] = ACTIONS(2416), - [aux_sym__val_number_token3] = ACTIONS(2416), - [aux_sym__val_number_token4] = ACTIONS(2414), - [aux_sym__val_number_token5] = ACTIONS(2414), - [aux_sym__val_number_token6] = ACTIONS(2414), - [anon_sym_DQUOTE] = ACTIONS(2416), - [sym__str_single_quotes] = ACTIONS(2416), - [sym__str_back_ticks] = ACTIONS(2416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2416), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2416), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2416), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2416), + [anon_sym_export] = ACTIONS(2364), + [anon_sym_alias] = ACTIONS(2364), + [anon_sym_let] = ACTIONS(2364), + [anon_sym_let_DASHenv] = ACTIONS(2364), + [anon_sym_mut] = ACTIONS(2364), + [anon_sym_const] = ACTIONS(2364), + [aux_sym_cmd_identifier_token1] = ACTIONS(2364), + [aux_sym_cmd_identifier_token2] = ACTIONS(2366), + [aux_sym_cmd_identifier_token3] = ACTIONS(2366), + [aux_sym_cmd_identifier_token4] = ACTIONS(2366), + [aux_sym_cmd_identifier_token5] = ACTIONS(2366), + [aux_sym_cmd_identifier_token6] = ACTIONS(2366), + [aux_sym_cmd_identifier_token7] = ACTIONS(2366), + [aux_sym_cmd_identifier_token8] = ACTIONS(2364), + [aux_sym_cmd_identifier_token9] = ACTIONS(2364), + [aux_sym_cmd_identifier_token10] = ACTIONS(2366), + [aux_sym_cmd_identifier_token11] = ACTIONS(2366), + [aux_sym_cmd_identifier_token12] = ACTIONS(2364), + [aux_sym_cmd_identifier_token13] = ACTIONS(2364), + [aux_sym_cmd_identifier_token14] = ACTIONS(2364), + [aux_sym_cmd_identifier_token15] = ACTIONS(2364), + [aux_sym_cmd_identifier_token16] = ACTIONS(2366), + [aux_sym_cmd_identifier_token17] = ACTIONS(2366), + [aux_sym_cmd_identifier_token18] = ACTIONS(2366), + [aux_sym_cmd_identifier_token19] = ACTIONS(2366), + [aux_sym_cmd_identifier_token20] = ACTIONS(2366), + [aux_sym_cmd_identifier_token21] = ACTIONS(2366), + [aux_sym_cmd_identifier_token22] = ACTIONS(2366), + [aux_sym_cmd_identifier_token23] = ACTIONS(2366), + [aux_sym_cmd_identifier_token24] = ACTIONS(2366), + [aux_sym_cmd_identifier_token25] = ACTIONS(2366), + [aux_sym_cmd_identifier_token26] = ACTIONS(2366), + [aux_sym_cmd_identifier_token27] = ACTIONS(2366), + [aux_sym_cmd_identifier_token28] = ACTIONS(2366), + [aux_sym_cmd_identifier_token29] = ACTIONS(2366), + [aux_sym_cmd_identifier_token30] = ACTIONS(2366), + [aux_sym_cmd_identifier_token31] = ACTIONS(2366), + [aux_sym_cmd_identifier_token32] = ACTIONS(2366), + [aux_sym_cmd_identifier_token33] = ACTIONS(2366), + [aux_sym_cmd_identifier_token34] = ACTIONS(2364), + [aux_sym_cmd_identifier_token35] = ACTIONS(2366), + [aux_sym_cmd_identifier_token36] = ACTIONS(2366), + [aux_sym_cmd_identifier_token37] = ACTIONS(2366), + [aux_sym_cmd_identifier_token38] = ACTIONS(2364), + [aux_sym_cmd_identifier_token39] = ACTIONS(2366), + [aux_sym_cmd_identifier_token40] = ACTIONS(2366), + [anon_sym_def] = ACTIONS(2364), + [anon_sym_export_DASHenv] = ACTIONS(2364), + [anon_sym_extern] = ACTIONS(2364), + [anon_sym_module] = ACTIONS(2364), + [anon_sym_use] = ACTIONS(2364), + [anon_sym_LPAREN] = ACTIONS(2366), + [anon_sym_COMMA] = ACTIONS(2366), + [anon_sym_DOLLAR] = ACTIONS(2364), + [anon_sym_error] = ACTIONS(2364), + [anon_sym_DASH2] = ACTIONS(2364), + [anon_sym_break] = ACTIONS(2364), + [anon_sym_continue] = ACTIONS(2364), + [anon_sym_for] = ACTIONS(2364), + [anon_sym_in2] = ACTIONS(2364), + [anon_sym_loop] = ACTIONS(2364), + [anon_sym_make] = ACTIONS(2364), + [anon_sym_while] = ACTIONS(2364), + [anon_sym_do] = ACTIONS(2364), + [anon_sym_if] = ACTIONS(2364), + [anon_sym_else] = ACTIONS(2364), + [anon_sym_match] = ACTIONS(2364), + [anon_sym_RBRACE] = ACTIONS(2366), + [anon_sym_try] = ACTIONS(2364), + [anon_sym_catch] = ACTIONS(2364), + [anon_sym_return] = ACTIONS(2364), + [anon_sym_source] = ACTIONS(2364), + [anon_sym_source_DASHenv] = ACTIONS(2364), + [anon_sym_hide] = ACTIONS(2364), + [anon_sym_hide_DASHenv] = ACTIONS(2364), + [anon_sym_overlay] = ACTIONS(2364), + [anon_sym_as] = ACTIONS(2364), + [anon_sym_PLUS2] = ACTIONS(2364), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2366), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2366), + [aux_sym__val_number_decimal_token1] = ACTIONS(2364), + [aux_sym__val_number_decimal_token2] = ACTIONS(2366), + [aux_sym__val_number_decimal_token3] = ACTIONS(2366), + [aux_sym__val_number_decimal_token4] = ACTIONS(2366), + [aux_sym__val_number_token1] = ACTIONS(2366), + [aux_sym__val_number_token2] = ACTIONS(2366), + [aux_sym__val_number_token3] = ACTIONS(2366), + [aux_sym__val_number_token4] = ACTIONS(2364), + [aux_sym__val_number_token5] = ACTIONS(2364), + [aux_sym__val_number_token6] = ACTIONS(2364), + [anon_sym_DQUOTE] = ACTIONS(2366), + [sym__str_single_quotes] = ACTIONS(2366), + [sym__str_back_ticks] = ACTIONS(2366), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2366), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2366), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2366), + [anon_sym_register] = ACTIONS(2364), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2366), }, - [718] = { - [sym_comment] = STATE(718), - [anon_sym_export] = ACTIONS(2320), - [anon_sym_alias] = ACTIONS(2320), - [anon_sym_let] = ACTIONS(2320), - [anon_sym_let_DASHenv] = ACTIONS(2320), - [anon_sym_mut] = ACTIONS(2320), - [anon_sym_const] = ACTIONS(2320), - [aux_sym_cmd_identifier_token1] = ACTIONS(2320), - [aux_sym_cmd_identifier_token2] = ACTIONS(2322), - [aux_sym_cmd_identifier_token3] = ACTIONS(2322), - [aux_sym_cmd_identifier_token4] = ACTIONS(2322), - [aux_sym_cmd_identifier_token5] = ACTIONS(2322), - [aux_sym_cmd_identifier_token6] = ACTIONS(2322), - [aux_sym_cmd_identifier_token7] = ACTIONS(2322), - [aux_sym_cmd_identifier_token8] = ACTIONS(2320), - [aux_sym_cmd_identifier_token9] = ACTIONS(2320), - [aux_sym_cmd_identifier_token10] = ACTIONS(2322), - [aux_sym_cmd_identifier_token11] = ACTIONS(2322), - [aux_sym_cmd_identifier_token12] = ACTIONS(2320), - [aux_sym_cmd_identifier_token13] = ACTIONS(2320), - [aux_sym_cmd_identifier_token14] = ACTIONS(2320), - [aux_sym_cmd_identifier_token15] = ACTIONS(2320), - [aux_sym_cmd_identifier_token16] = ACTIONS(2322), - [aux_sym_cmd_identifier_token17] = ACTIONS(2322), - [aux_sym_cmd_identifier_token18] = ACTIONS(2322), - [aux_sym_cmd_identifier_token19] = ACTIONS(2322), - [aux_sym_cmd_identifier_token20] = ACTIONS(2322), - [aux_sym_cmd_identifier_token21] = ACTIONS(2322), - [aux_sym_cmd_identifier_token22] = ACTIONS(2322), - [aux_sym_cmd_identifier_token23] = ACTIONS(2322), - [aux_sym_cmd_identifier_token24] = ACTIONS(2322), - [aux_sym_cmd_identifier_token25] = ACTIONS(2322), - [aux_sym_cmd_identifier_token26] = ACTIONS(2322), - [aux_sym_cmd_identifier_token27] = ACTIONS(2322), - [aux_sym_cmd_identifier_token28] = ACTIONS(2322), - [aux_sym_cmd_identifier_token29] = ACTIONS(2322), - [aux_sym_cmd_identifier_token30] = ACTIONS(2322), - [aux_sym_cmd_identifier_token31] = ACTIONS(2322), - [aux_sym_cmd_identifier_token32] = ACTIONS(2322), - [aux_sym_cmd_identifier_token33] = ACTIONS(2322), - [aux_sym_cmd_identifier_token34] = ACTIONS(2320), - [aux_sym_cmd_identifier_token35] = ACTIONS(2322), - [aux_sym_cmd_identifier_token36] = ACTIONS(2322), - [aux_sym_cmd_identifier_token37] = ACTIONS(2322), - [aux_sym_cmd_identifier_token38] = ACTIONS(2320), - [aux_sym_cmd_identifier_token39] = ACTIONS(2322), - [aux_sym_cmd_identifier_token40] = ACTIONS(2322), - [anon_sym_def] = ACTIONS(2320), - [anon_sym_export_DASHenv] = ACTIONS(2320), - [anon_sym_extern] = ACTIONS(2320), - [anon_sym_module] = ACTIONS(2320), - [anon_sym_use] = ACTIONS(2320), - [anon_sym_LPAREN] = ACTIONS(2322), - [anon_sym_COMMA] = ACTIONS(2322), - [anon_sym_DOLLAR] = ACTIONS(2320), - [anon_sym_error] = ACTIONS(2320), - [anon_sym_DASH2] = ACTIONS(2320), - [anon_sym_break] = ACTIONS(2320), - [anon_sym_continue] = ACTIONS(2320), - [anon_sym_for] = ACTIONS(2320), - [anon_sym_in2] = ACTIONS(2320), - [anon_sym_loop] = ACTIONS(2320), - [anon_sym_make] = ACTIONS(2320), - [anon_sym_while] = ACTIONS(2320), - [anon_sym_do] = ACTIONS(2320), - [anon_sym_if] = ACTIONS(2320), - [anon_sym_else] = ACTIONS(2320), - [anon_sym_match] = ACTIONS(2320), - [anon_sym_RBRACE] = ACTIONS(2322), - [anon_sym_try] = ACTIONS(2320), - [anon_sym_catch] = ACTIONS(2320), - [anon_sym_return] = ACTIONS(2320), - [anon_sym_source] = ACTIONS(2320), - [anon_sym_source_DASHenv] = ACTIONS(2320), - [anon_sym_register] = ACTIONS(2320), - [anon_sym_hide] = ACTIONS(2320), - [anon_sym_hide_DASHenv] = ACTIONS(2320), - [anon_sym_overlay] = ACTIONS(2320), - [anon_sym_as] = ACTIONS(2320), - [anon_sym_PLUS2] = ACTIONS(2320), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2322), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2322), - [aux_sym__val_number_decimal_token1] = ACTIONS(2320), - [aux_sym__val_number_decimal_token2] = ACTIONS(2322), - [aux_sym__val_number_decimal_token3] = ACTIONS(2322), - [aux_sym__val_number_decimal_token4] = ACTIONS(2322), - [aux_sym__val_number_token1] = ACTIONS(2322), - [aux_sym__val_number_token2] = ACTIONS(2322), - [aux_sym__val_number_token3] = ACTIONS(2322), - [aux_sym__val_number_token4] = ACTIONS(2320), - [aux_sym__val_number_token5] = ACTIONS(2320), - [aux_sym__val_number_token6] = ACTIONS(2320), - [anon_sym_DQUOTE] = ACTIONS(2322), - [sym__str_single_quotes] = ACTIONS(2322), - [sym__str_back_ticks] = ACTIONS(2322), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2322), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2322), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2322), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2322), + [688] = { + [sym_comment] = STATE(688), + [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(2431), + [aux_sym_cmd_identifier_token3] = ACTIONS(2431), + [aux_sym_cmd_identifier_token4] = ACTIONS(2431), + [aux_sym_cmd_identifier_token5] = ACTIONS(2431), + [aux_sym_cmd_identifier_token6] = ACTIONS(2431), + [aux_sym_cmd_identifier_token7] = ACTIONS(2431), + [aux_sym_cmd_identifier_token8] = ACTIONS(2429), + [aux_sym_cmd_identifier_token9] = ACTIONS(2429), + [aux_sym_cmd_identifier_token10] = ACTIONS(2431), + [aux_sym_cmd_identifier_token11] = ACTIONS(2431), + [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(2431), + [aux_sym_cmd_identifier_token17] = ACTIONS(2431), + [aux_sym_cmd_identifier_token18] = ACTIONS(2431), + [aux_sym_cmd_identifier_token19] = ACTIONS(2431), + [aux_sym_cmd_identifier_token20] = ACTIONS(2431), + [aux_sym_cmd_identifier_token21] = ACTIONS(2431), + [aux_sym_cmd_identifier_token22] = ACTIONS(2431), + [aux_sym_cmd_identifier_token23] = ACTIONS(2431), + [aux_sym_cmd_identifier_token24] = ACTIONS(2431), + [aux_sym_cmd_identifier_token25] = ACTIONS(2431), + [aux_sym_cmd_identifier_token26] = ACTIONS(2431), + [aux_sym_cmd_identifier_token27] = ACTIONS(2431), + [aux_sym_cmd_identifier_token28] = ACTIONS(2431), + [aux_sym_cmd_identifier_token29] = ACTIONS(2431), + [aux_sym_cmd_identifier_token30] = ACTIONS(2431), + [aux_sym_cmd_identifier_token31] = ACTIONS(2431), + [aux_sym_cmd_identifier_token32] = ACTIONS(2431), + [aux_sym_cmd_identifier_token33] = ACTIONS(2431), + [aux_sym_cmd_identifier_token34] = ACTIONS(2429), + [aux_sym_cmd_identifier_token35] = ACTIONS(2431), + [aux_sym_cmd_identifier_token36] = ACTIONS(2431), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(2431), + [anon_sym_DOLLAR] = ACTIONS(2429), + [anon_sym_error] = ACTIONS(2429), + [anon_sym_DASH2] = ACTIONS(2429), + [anon_sym_break] = ACTIONS(2429), + [anon_sym_continue] = ACTIONS(2429), + [anon_sym_for] = ACTIONS(2429), + [anon_sym_in2] = 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_hide] = ACTIONS(2429), + [anon_sym_hide_DASHenv] = ACTIONS(2429), + [anon_sym_overlay] = ACTIONS(2429), + [anon_sym_as] = ACTIONS(2429), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2429), + [aux_sym__val_number_token5] = ACTIONS(2429), + [aux_sym__val_number_token6] = ACTIONS(2429), + [anon_sym_DQUOTE] = ACTIONS(2431), + [sym__str_single_quotes] = ACTIONS(2431), + [sym__str_back_ticks] = ACTIONS(2431), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2431), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2431), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2431), + [anon_sym_register] = ACTIONS(2429), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2431), }, - [719] = { - [sym_comment] = STATE(719), - [anon_sym_export] = ACTIONS(2324), - [anon_sym_alias] = ACTIONS(2324), - [anon_sym_let] = ACTIONS(2324), - [anon_sym_let_DASHenv] = ACTIONS(2324), - [anon_sym_mut] = ACTIONS(2324), - [anon_sym_const] = ACTIONS(2324), - [aux_sym_cmd_identifier_token1] = ACTIONS(2324), - [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(2324), - [aux_sym_cmd_identifier_token9] = ACTIONS(2324), - [aux_sym_cmd_identifier_token10] = ACTIONS(2326), - [aux_sym_cmd_identifier_token11] = ACTIONS(2326), - [aux_sym_cmd_identifier_token12] = ACTIONS(2324), - [aux_sym_cmd_identifier_token13] = ACTIONS(2324), - [aux_sym_cmd_identifier_token14] = ACTIONS(2324), - [aux_sym_cmd_identifier_token15] = ACTIONS(2324), - [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(2324), - [aux_sym_cmd_identifier_token35] = ACTIONS(2326), - [aux_sym_cmd_identifier_token36] = ACTIONS(2326), - [aux_sym_cmd_identifier_token37] = ACTIONS(2326), - [aux_sym_cmd_identifier_token38] = ACTIONS(2324), - [aux_sym_cmd_identifier_token39] = ACTIONS(2326), - [aux_sym_cmd_identifier_token40] = ACTIONS(2326), - [anon_sym_def] = ACTIONS(2324), - [anon_sym_export_DASHenv] = ACTIONS(2324), - [anon_sym_extern] = ACTIONS(2324), - [anon_sym_module] = ACTIONS(2324), - [anon_sym_use] = ACTIONS(2324), - [anon_sym_LPAREN] = ACTIONS(2326), - [anon_sym_COMMA] = ACTIONS(2326), - [anon_sym_DOLLAR] = ACTIONS(2324), - [anon_sym_error] = ACTIONS(2324), - [anon_sym_DASH2] = ACTIONS(2324), - [anon_sym_break] = ACTIONS(2324), - [anon_sym_continue] = ACTIONS(2324), - [anon_sym_for] = ACTIONS(2324), - [anon_sym_in2] = ACTIONS(2324), - [anon_sym_loop] = ACTIONS(2324), - [anon_sym_make] = ACTIONS(2324), - [anon_sym_while] = ACTIONS(2324), - [anon_sym_do] = ACTIONS(2324), - [anon_sym_if] = ACTIONS(2324), - [anon_sym_else] = ACTIONS(2324), - [anon_sym_match] = ACTIONS(2324), - [anon_sym_RBRACE] = ACTIONS(2326), - [anon_sym_try] = ACTIONS(2324), - [anon_sym_catch] = ACTIONS(2324), - [anon_sym_return] = ACTIONS(2324), - [anon_sym_source] = ACTIONS(2324), - [anon_sym_source_DASHenv] = ACTIONS(2324), - [anon_sym_register] = ACTIONS(2324), - [anon_sym_hide] = ACTIONS(2324), - [anon_sym_hide_DASHenv] = ACTIONS(2324), - [anon_sym_overlay] = ACTIONS(2324), - [anon_sym_as] = ACTIONS(2324), - [anon_sym_PLUS2] = ACTIONS(2324), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2326), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2326), - [aux_sym__val_number_decimal_token1] = ACTIONS(2324), - [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), - [aux_sym__val_number_token4] = ACTIONS(2324), - [aux_sym__val_number_token5] = ACTIONS(2324), - [aux_sym__val_number_token6] = ACTIONS(2324), - [anon_sym_DQUOTE] = ACTIONS(2326), - [sym__str_single_quotes] = ACTIONS(2326), - [sym__str_back_ticks] = ACTIONS(2326), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2326), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2326), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2326), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2326), + [689] = { + [sym_comment] = STATE(689), + [anon_sym_export] = ACTIONS(1766), + [anon_sym_alias] = ACTIONS(1766), + [anon_sym_let] = ACTIONS(1766), + [anon_sym_let_DASHenv] = ACTIONS(1766), + [anon_sym_mut] = ACTIONS(1766), + [anon_sym_const] = ACTIONS(1766), + [aux_sym_cmd_identifier_token1] = ACTIONS(1766), + [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(1766), + [aux_sym_cmd_identifier_token9] = ACTIONS(1766), + [aux_sym_cmd_identifier_token10] = ACTIONS(1768), + [aux_sym_cmd_identifier_token11] = ACTIONS(1768), + [aux_sym_cmd_identifier_token12] = ACTIONS(1766), + [aux_sym_cmd_identifier_token13] = ACTIONS(1766), + [aux_sym_cmd_identifier_token14] = ACTIONS(1766), + [aux_sym_cmd_identifier_token15] = ACTIONS(1766), + [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(1766), + [aux_sym_cmd_identifier_token35] = ACTIONS(1768), + [aux_sym_cmd_identifier_token36] = ACTIONS(1768), + [aux_sym_cmd_identifier_token37] = ACTIONS(1768), + [aux_sym_cmd_identifier_token38] = ACTIONS(1766), + [aux_sym_cmd_identifier_token39] = ACTIONS(1768), + [aux_sym_cmd_identifier_token40] = ACTIONS(1768), + [anon_sym_def] = ACTIONS(1766), + [anon_sym_export_DASHenv] = ACTIONS(1766), + [anon_sym_extern] = ACTIONS(1766), + [anon_sym_module] = ACTIONS(1766), + [anon_sym_use] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_COMMA] = ACTIONS(1768), + [anon_sym_DOLLAR] = ACTIONS(1766), + [anon_sym_error] = ACTIONS(1766), + [anon_sym_DASH2] = ACTIONS(1766), + [anon_sym_break] = ACTIONS(1766), + [anon_sym_continue] = ACTIONS(1766), + [anon_sym_for] = ACTIONS(1766), + [anon_sym_in2] = ACTIONS(1766), + [anon_sym_loop] = ACTIONS(1766), + [anon_sym_make] = ACTIONS(1766), + [anon_sym_while] = ACTIONS(1766), + [anon_sym_do] = ACTIONS(1766), + [anon_sym_if] = ACTIONS(1766), + [anon_sym_else] = ACTIONS(1766), + [anon_sym_match] = ACTIONS(1766), + [anon_sym_RBRACE] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1766), + [anon_sym_catch] = ACTIONS(1766), + [anon_sym_return] = ACTIONS(1766), + [anon_sym_source] = ACTIONS(1766), + [anon_sym_source_DASHenv] = ACTIONS(1766), + [anon_sym_hide] = ACTIONS(1766), + [anon_sym_hide_DASHenv] = ACTIONS(1766), + [anon_sym_overlay] = ACTIONS(1766), + [anon_sym_as] = ACTIONS(1766), + [anon_sym_PLUS2] = ACTIONS(1766), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1768), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1768), + [aux_sym__val_number_decimal_token1] = ACTIONS(1766), + [aux_sym__val_number_decimal_token2] = ACTIONS(1768), + [aux_sym__val_number_decimal_token3] = ACTIONS(1768), + [aux_sym__val_number_decimal_token4] = ACTIONS(1768), + [aux_sym__val_number_token1] = ACTIONS(1768), + [aux_sym__val_number_token2] = ACTIONS(1768), + [aux_sym__val_number_token3] = ACTIONS(1768), + [aux_sym__val_number_token4] = ACTIONS(1766), + [aux_sym__val_number_token5] = ACTIONS(1766), + [aux_sym__val_number_token6] = ACTIONS(1766), + [anon_sym_DQUOTE] = ACTIONS(1768), + [sym__str_single_quotes] = ACTIONS(1768), + [sym__str_back_ticks] = ACTIONS(1768), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1768), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1768), + [anon_sym_register] = ACTIONS(1766), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1768), }, - [720] = { - [sym_comment] = STATE(720), + [690] = { + [sym_comment] = STATE(690), [anon_sym_export] = ACTIONS(1917), [anon_sym_alias] = ACTIONS(1917), [anon_sym_let] = ACTIONS(1917), @@ -159258,7 +156135,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(1917), [anon_sym_source] = ACTIONS(1917), [anon_sym_source_DASHenv] = ACTIONS(1917), - [anon_sym_register] = ACTIONS(1917), [anon_sym_hide] = ACTIONS(1917), [anon_sym_hide_DASHenv] = ACTIONS(1917), [anon_sym_overlay] = ACTIONS(1917), @@ -159282,1439 +156158,2358 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1919), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1919), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1919), - [anon_sym_POUND] = ACTIONS(251), + [anon_sym_register] = ACTIONS(1917), + [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1919), }, - [721] = { - [sym_comment] = STATE(721), - [anon_sym_export] = ACTIONS(2328), - [anon_sym_alias] = ACTIONS(2328), - [anon_sym_let] = ACTIONS(2328), - [anon_sym_let_DASHenv] = ACTIONS(2328), - [anon_sym_mut] = ACTIONS(2328), - [anon_sym_const] = ACTIONS(2328), - [aux_sym_cmd_identifier_token1] = ACTIONS(2328), - [aux_sym_cmd_identifier_token2] = ACTIONS(2330), - [aux_sym_cmd_identifier_token3] = ACTIONS(2330), - [aux_sym_cmd_identifier_token4] = ACTIONS(2330), - [aux_sym_cmd_identifier_token5] = ACTIONS(2330), - [aux_sym_cmd_identifier_token6] = ACTIONS(2330), - [aux_sym_cmd_identifier_token7] = ACTIONS(2330), - [aux_sym_cmd_identifier_token8] = ACTIONS(2328), - [aux_sym_cmd_identifier_token9] = ACTIONS(2328), - [aux_sym_cmd_identifier_token10] = ACTIONS(2330), - [aux_sym_cmd_identifier_token11] = ACTIONS(2330), - [aux_sym_cmd_identifier_token12] = ACTIONS(2328), - [aux_sym_cmd_identifier_token13] = ACTIONS(2328), - [aux_sym_cmd_identifier_token14] = ACTIONS(2328), - [aux_sym_cmd_identifier_token15] = ACTIONS(2328), - [aux_sym_cmd_identifier_token16] = ACTIONS(2330), - [aux_sym_cmd_identifier_token17] = ACTIONS(2330), - [aux_sym_cmd_identifier_token18] = ACTIONS(2330), - [aux_sym_cmd_identifier_token19] = ACTIONS(2330), - [aux_sym_cmd_identifier_token20] = ACTIONS(2330), - [aux_sym_cmd_identifier_token21] = ACTIONS(2330), - [aux_sym_cmd_identifier_token22] = ACTIONS(2330), - [aux_sym_cmd_identifier_token23] = ACTIONS(2330), - [aux_sym_cmd_identifier_token24] = ACTIONS(2330), - [aux_sym_cmd_identifier_token25] = ACTIONS(2330), - [aux_sym_cmd_identifier_token26] = ACTIONS(2330), - [aux_sym_cmd_identifier_token27] = ACTIONS(2330), - [aux_sym_cmd_identifier_token28] = ACTIONS(2330), - [aux_sym_cmd_identifier_token29] = ACTIONS(2330), - [aux_sym_cmd_identifier_token30] = ACTIONS(2330), - [aux_sym_cmd_identifier_token31] = ACTIONS(2330), - [aux_sym_cmd_identifier_token32] = ACTIONS(2330), - [aux_sym_cmd_identifier_token33] = ACTIONS(2330), - [aux_sym_cmd_identifier_token34] = ACTIONS(2328), - [aux_sym_cmd_identifier_token35] = ACTIONS(2330), - [aux_sym_cmd_identifier_token36] = ACTIONS(2330), - [aux_sym_cmd_identifier_token37] = ACTIONS(2330), - [aux_sym_cmd_identifier_token38] = ACTIONS(2328), - [aux_sym_cmd_identifier_token39] = ACTIONS(2330), - [aux_sym_cmd_identifier_token40] = ACTIONS(2330), - [anon_sym_def] = ACTIONS(2328), - [anon_sym_export_DASHenv] = ACTIONS(2328), - [anon_sym_extern] = ACTIONS(2328), - [anon_sym_module] = ACTIONS(2328), - [anon_sym_use] = ACTIONS(2328), - [anon_sym_LPAREN] = ACTIONS(2330), - [anon_sym_COMMA] = ACTIONS(2330), - [anon_sym_DOLLAR] = ACTIONS(2328), - [anon_sym_error] = ACTIONS(2328), - [anon_sym_DASH2] = ACTIONS(2328), - [anon_sym_break] = ACTIONS(2328), - [anon_sym_continue] = ACTIONS(2328), - [anon_sym_for] = ACTIONS(2328), - [anon_sym_in2] = ACTIONS(2328), - [anon_sym_loop] = ACTIONS(2328), - [anon_sym_make] = ACTIONS(2328), - [anon_sym_while] = ACTIONS(2328), - [anon_sym_do] = ACTIONS(2328), - [anon_sym_if] = ACTIONS(2328), - [anon_sym_else] = ACTIONS(2328), - [anon_sym_match] = ACTIONS(2328), - [anon_sym_RBRACE] = ACTIONS(2330), - [anon_sym_try] = ACTIONS(2328), - [anon_sym_catch] = ACTIONS(2328), - [anon_sym_return] = ACTIONS(2328), - [anon_sym_source] = ACTIONS(2328), - [anon_sym_source_DASHenv] = ACTIONS(2328), - [anon_sym_register] = ACTIONS(2328), - [anon_sym_hide] = ACTIONS(2328), - [anon_sym_hide_DASHenv] = ACTIONS(2328), - [anon_sym_overlay] = ACTIONS(2328), - [anon_sym_as] = ACTIONS(2328), - [anon_sym_PLUS2] = ACTIONS(2328), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2330), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2330), - [aux_sym__val_number_decimal_token1] = ACTIONS(2328), - [aux_sym__val_number_decimal_token2] = ACTIONS(2330), - [aux_sym__val_number_decimal_token3] = ACTIONS(2330), - [aux_sym__val_number_decimal_token4] = ACTIONS(2330), - [aux_sym__val_number_token1] = ACTIONS(2330), - [aux_sym__val_number_token2] = ACTIONS(2330), - [aux_sym__val_number_token3] = ACTIONS(2330), - [aux_sym__val_number_token4] = ACTIONS(2328), - [aux_sym__val_number_token5] = ACTIONS(2328), - [aux_sym__val_number_token6] = ACTIONS(2328), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym__str_single_quotes] = ACTIONS(2330), - [sym__str_back_ticks] = ACTIONS(2330), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2330), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2330), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2330), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2330), + [691] = { + [sym_comment] = STATE(691), + [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(1794), + [aux_sym_cmd_identifier_token3] = ACTIONS(1794), + [aux_sym_cmd_identifier_token4] = ACTIONS(1794), + [aux_sym_cmd_identifier_token5] = ACTIONS(1794), + [aux_sym_cmd_identifier_token6] = ACTIONS(1794), + [aux_sym_cmd_identifier_token7] = ACTIONS(1794), + [aux_sym_cmd_identifier_token8] = ACTIONS(1792), + [aux_sym_cmd_identifier_token9] = ACTIONS(1792), + [aux_sym_cmd_identifier_token10] = ACTIONS(1794), + [aux_sym_cmd_identifier_token11] = ACTIONS(1794), + [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(1794), + [aux_sym_cmd_identifier_token17] = ACTIONS(1794), + [aux_sym_cmd_identifier_token18] = ACTIONS(1794), + [aux_sym_cmd_identifier_token19] = ACTIONS(1794), + [aux_sym_cmd_identifier_token20] = ACTIONS(1794), + [aux_sym_cmd_identifier_token21] = ACTIONS(1794), + [aux_sym_cmd_identifier_token22] = ACTIONS(1794), + [aux_sym_cmd_identifier_token23] = ACTIONS(1794), + [aux_sym_cmd_identifier_token24] = ACTIONS(1794), + [aux_sym_cmd_identifier_token25] = ACTIONS(1794), + [aux_sym_cmd_identifier_token26] = ACTIONS(1794), + [aux_sym_cmd_identifier_token27] = ACTIONS(1794), + [aux_sym_cmd_identifier_token28] = ACTIONS(1794), + [aux_sym_cmd_identifier_token29] = ACTIONS(1794), + [aux_sym_cmd_identifier_token30] = ACTIONS(1794), + [aux_sym_cmd_identifier_token31] = ACTIONS(1794), + [aux_sym_cmd_identifier_token32] = ACTIONS(1794), + [aux_sym_cmd_identifier_token33] = ACTIONS(1794), + [aux_sym_cmd_identifier_token34] = ACTIONS(1792), + [aux_sym_cmd_identifier_token35] = ACTIONS(1794), + [aux_sym_cmd_identifier_token36] = ACTIONS(1794), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1794), + [anon_sym_DOLLAR] = ACTIONS(1792), + [anon_sym_error] = ACTIONS(1792), + [anon_sym_DASH2] = ACTIONS(1792), + [anon_sym_break] = ACTIONS(1792), + [anon_sym_continue] = ACTIONS(1792), + [anon_sym_for] = ACTIONS(1792), + [anon_sym_in2] = 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_hide] = ACTIONS(1792), + [anon_sym_hide_DASHenv] = ACTIONS(1792), + [anon_sym_overlay] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1792), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_decimal_token3] = ACTIONS(1794), + [aux_sym__val_number_decimal_token4] = ACTIONS(1794), + [aux_sym__val_number_token1] = ACTIONS(1794), + [aux_sym__val_number_token2] = ACTIONS(1794), + [aux_sym__val_number_token3] = ACTIONS(1794), + [aux_sym__val_number_token4] = ACTIONS(1792), + [aux_sym__val_number_token5] = ACTIONS(1792), + [aux_sym__val_number_token6] = ACTIONS(1792), + [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1794), + [anon_sym_register] = ACTIONS(1792), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1794), }, - [722] = { - [sym_comment] = STATE(722), - [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(2334), - [aux_sym_cmd_identifier_token3] = ACTIONS(2334), - [aux_sym_cmd_identifier_token4] = ACTIONS(2334), - [aux_sym_cmd_identifier_token5] = ACTIONS(2334), - [aux_sym_cmd_identifier_token6] = ACTIONS(2334), - [aux_sym_cmd_identifier_token7] = ACTIONS(2334), - [aux_sym_cmd_identifier_token8] = ACTIONS(2332), - [aux_sym_cmd_identifier_token9] = ACTIONS(2332), - [aux_sym_cmd_identifier_token10] = ACTIONS(2334), - [aux_sym_cmd_identifier_token11] = ACTIONS(2334), - [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(2334), - [aux_sym_cmd_identifier_token17] = ACTIONS(2334), - [aux_sym_cmd_identifier_token18] = ACTIONS(2334), - [aux_sym_cmd_identifier_token19] = ACTIONS(2334), - [aux_sym_cmd_identifier_token20] = ACTIONS(2334), - [aux_sym_cmd_identifier_token21] = ACTIONS(2334), - [aux_sym_cmd_identifier_token22] = ACTIONS(2334), - [aux_sym_cmd_identifier_token23] = ACTIONS(2334), - [aux_sym_cmd_identifier_token24] = ACTIONS(2334), - [aux_sym_cmd_identifier_token25] = ACTIONS(2334), - [aux_sym_cmd_identifier_token26] = ACTIONS(2334), - [aux_sym_cmd_identifier_token27] = ACTIONS(2334), - [aux_sym_cmd_identifier_token28] = ACTIONS(2334), - [aux_sym_cmd_identifier_token29] = ACTIONS(2334), - [aux_sym_cmd_identifier_token30] = ACTIONS(2334), - [aux_sym_cmd_identifier_token31] = ACTIONS(2334), - [aux_sym_cmd_identifier_token32] = ACTIONS(2334), - [aux_sym_cmd_identifier_token33] = ACTIONS(2334), - [aux_sym_cmd_identifier_token34] = ACTIONS(2332), - [aux_sym_cmd_identifier_token35] = ACTIONS(2334), - [aux_sym_cmd_identifier_token36] = ACTIONS(2334), - [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(2334), - [anon_sym_DOLLAR] = ACTIONS(2332), - [anon_sym_error] = ACTIONS(2332), - [anon_sym_DASH2] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_for] = ACTIONS(2332), - [anon_sym_in2] = 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_as] = ACTIONS(2332), - [anon_sym_PLUS2] = 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), - [aux_sym__val_number_token4] = ACTIONS(2332), - [aux_sym__val_number_token5] = ACTIONS(2332), - [aux_sym__val_number_token6] = ACTIONS(2332), - [anon_sym_DQUOTE] = ACTIONS(2334), - [sym__str_single_quotes] = ACTIONS(2334), - [sym__str_back_ticks] = ACTIONS(2334), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2334), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2334), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2334), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2334), + [692] = { + [sym_comment] = STATE(692), + [anon_sym_export] = ACTIONS(2338), + [anon_sym_alias] = ACTIONS(2338), + [anon_sym_let] = ACTIONS(2338), + [anon_sym_let_DASHenv] = ACTIONS(2338), + [anon_sym_mut] = ACTIONS(2338), + [anon_sym_const] = ACTIONS(2338), + [aux_sym_cmd_identifier_token1] = ACTIONS(2338), + [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(2338), + [aux_sym_cmd_identifier_token9] = ACTIONS(2338), + [aux_sym_cmd_identifier_token10] = ACTIONS(2340), + [aux_sym_cmd_identifier_token11] = ACTIONS(2340), + [aux_sym_cmd_identifier_token12] = ACTIONS(2338), + [aux_sym_cmd_identifier_token13] = ACTIONS(2338), + [aux_sym_cmd_identifier_token14] = ACTIONS(2338), + [aux_sym_cmd_identifier_token15] = ACTIONS(2338), + [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(2338), + [aux_sym_cmd_identifier_token35] = ACTIONS(2340), + [aux_sym_cmd_identifier_token36] = ACTIONS(2340), + [aux_sym_cmd_identifier_token37] = ACTIONS(2340), + [aux_sym_cmd_identifier_token38] = ACTIONS(2338), + [aux_sym_cmd_identifier_token39] = ACTIONS(2340), + [aux_sym_cmd_identifier_token40] = ACTIONS(2340), + [anon_sym_def] = ACTIONS(2338), + [anon_sym_export_DASHenv] = ACTIONS(2338), + [anon_sym_extern] = ACTIONS(2338), + [anon_sym_module] = ACTIONS(2338), + [anon_sym_use] = ACTIONS(2338), + [anon_sym_LPAREN] = ACTIONS(2340), + [anon_sym_COMMA] = ACTIONS(2340), + [anon_sym_DOLLAR] = ACTIONS(2338), + [anon_sym_error] = ACTIONS(2338), + [anon_sym_DASH2] = ACTIONS(2338), + [anon_sym_break] = ACTIONS(2338), + [anon_sym_continue] = ACTIONS(2338), + [anon_sym_for] = ACTIONS(2338), + [anon_sym_in2] = ACTIONS(2338), + [anon_sym_loop] = ACTIONS(2338), + [anon_sym_make] = ACTIONS(2338), + [anon_sym_while] = ACTIONS(2338), + [anon_sym_do] = ACTIONS(2338), + [anon_sym_if] = ACTIONS(2338), + [anon_sym_else] = ACTIONS(2338), + [anon_sym_match] = ACTIONS(2338), + [anon_sym_RBRACE] = ACTIONS(2340), + [anon_sym_try] = ACTIONS(2338), + [anon_sym_catch] = ACTIONS(2338), + [anon_sym_return] = ACTIONS(2338), + [anon_sym_source] = ACTIONS(2338), + [anon_sym_source_DASHenv] = ACTIONS(2338), + [anon_sym_hide] = ACTIONS(2338), + [anon_sym_hide_DASHenv] = ACTIONS(2338), + [anon_sym_overlay] = ACTIONS(2338), + [anon_sym_as] = ACTIONS(2338), + [anon_sym_PLUS2] = ACTIONS(2338), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2340), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2340), + [aux_sym__val_number_decimal_token1] = ACTIONS(2338), + [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), + [aux_sym__val_number_token4] = ACTIONS(2338), + [aux_sym__val_number_token5] = ACTIONS(2338), + [aux_sym__val_number_token6] = ACTIONS(2338), + [anon_sym_DQUOTE] = ACTIONS(2340), + [sym__str_single_quotes] = ACTIONS(2340), + [sym__str_back_ticks] = ACTIONS(2340), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2340), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2340), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2340), + [anon_sym_register] = ACTIONS(2338), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2340), }, - [723] = { - [sym_comment] = STATE(723), - [anon_sym_export] = ACTIONS(1937), - [anon_sym_alias] = ACTIONS(1937), - [anon_sym_let] = ACTIONS(1937), - [anon_sym_let_DASHenv] = ACTIONS(1937), - [anon_sym_mut] = ACTIONS(1937), - [anon_sym_const] = ACTIONS(1937), - [aux_sym_cmd_identifier_token1] = ACTIONS(1937), - [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(1937), - [aux_sym_cmd_identifier_token9] = ACTIONS(1937), - [aux_sym_cmd_identifier_token10] = ACTIONS(1939), - [aux_sym_cmd_identifier_token11] = ACTIONS(1939), - [aux_sym_cmd_identifier_token12] = ACTIONS(1937), - [aux_sym_cmd_identifier_token13] = ACTIONS(1937), - [aux_sym_cmd_identifier_token14] = ACTIONS(1937), - [aux_sym_cmd_identifier_token15] = ACTIONS(1937), - [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(1937), - [aux_sym_cmd_identifier_token35] = ACTIONS(1939), - [aux_sym_cmd_identifier_token36] = ACTIONS(1939), - [aux_sym_cmd_identifier_token37] = ACTIONS(1939), - [aux_sym_cmd_identifier_token38] = ACTIONS(1937), - [aux_sym_cmd_identifier_token39] = ACTIONS(1939), - [aux_sym_cmd_identifier_token40] = ACTIONS(1939), - [anon_sym_def] = ACTIONS(1937), - [anon_sym_export_DASHenv] = ACTIONS(1937), - [anon_sym_extern] = ACTIONS(1937), - [anon_sym_module] = ACTIONS(1937), - [anon_sym_use] = ACTIONS(1937), - [anon_sym_LPAREN] = ACTIONS(1939), - [anon_sym_COMMA] = ACTIONS(1939), - [anon_sym_DOLLAR] = ACTIONS(1937), - [anon_sym_error] = ACTIONS(1937), - [anon_sym_DASH2] = ACTIONS(1937), - [anon_sym_break] = ACTIONS(1937), - [anon_sym_continue] = ACTIONS(1937), - [anon_sym_for] = ACTIONS(1937), - [anon_sym_in2] = ACTIONS(1937), - [anon_sym_loop] = ACTIONS(1937), - [anon_sym_make] = ACTIONS(1937), - [anon_sym_while] = ACTIONS(1937), - [anon_sym_do] = ACTIONS(1937), - [anon_sym_if] = ACTIONS(1937), - [anon_sym_else] = ACTIONS(1937), - [anon_sym_match] = ACTIONS(1937), - [anon_sym_RBRACE] = ACTIONS(1939), - [anon_sym_try] = ACTIONS(1937), - [anon_sym_catch] = ACTIONS(1937), - [anon_sym_return] = ACTIONS(1937), - [anon_sym_source] = ACTIONS(1937), - [anon_sym_source_DASHenv] = ACTIONS(1937), - [anon_sym_register] = ACTIONS(1937), - [anon_sym_hide] = ACTIONS(1937), - [anon_sym_hide_DASHenv] = ACTIONS(1937), - [anon_sym_overlay] = ACTIONS(1937), - [anon_sym_as] = ACTIONS(1937), - [anon_sym_PLUS2] = ACTIONS(1937), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1939), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1939), - [aux_sym__val_number_decimal_token1] = ACTIONS(1937), - [aux_sym__val_number_decimal_token2] = ACTIONS(1939), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), - [aux_sym__val_number_token1] = ACTIONS(1939), - [aux_sym__val_number_token2] = ACTIONS(1939), - [aux_sym__val_number_token3] = ACTIONS(1939), - [aux_sym__val_number_token4] = ACTIONS(1937), - [aux_sym__val_number_token5] = ACTIONS(1937), - [aux_sym__val_number_token6] = ACTIONS(1937), - [anon_sym_DQUOTE] = ACTIONS(1939), - [sym__str_single_quotes] = ACTIONS(1939), - [sym__str_back_ticks] = ACTIONS(1939), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1939), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1939), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1939), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1939), + [693] = { + [sym_comment] = STATE(693), + [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(2346), + [aux_sym_cmd_identifier_token3] = ACTIONS(2346), + [aux_sym_cmd_identifier_token4] = ACTIONS(2346), + [aux_sym_cmd_identifier_token5] = ACTIONS(2346), + [aux_sym_cmd_identifier_token6] = ACTIONS(2346), + [aux_sym_cmd_identifier_token7] = ACTIONS(2346), + [aux_sym_cmd_identifier_token8] = ACTIONS(2344), + [aux_sym_cmd_identifier_token9] = ACTIONS(2344), + [aux_sym_cmd_identifier_token10] = ACTIONS(2346), + [aux_sym_cmd_identifier_token11] = ACTIONS(2346), + [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(2346), + [aux_sym_cmd_identifier_token17] = ACTIONS(2346), + [aux_sym_cmd_identifier_token18] = ACTIONS(2346), + [aux_sym_cmd_identifier_token19] = ACTIONS(2346), + [aux_sym_cmd_identifier_token20] = ACTIONS(2346), + [aux_sym_cmd_identifier_token21] = ACTIONS(2346), + [aux_sym_cmd_identifier_token22] = ACTIONS(2346), + [aux_sym_cmd_identifier_token23] = ACTIONS(2346), + [aux_sym_cmd_identifier_token24] = ACTIONS(2346), + [aux_sym_cmd_identifier_token25] = ACTIONS(2346), + [aux_sym_cmd_identifier_token26] = ACTIONS(2346), + [aux_sym_cmd_identifier_token27] = ACTIONS(2346), + [aux_sym_cmd_identifier_token28] = ACTIONS(2346), + [aux_sym_cmd_identifier_token29] = ACTIONS(2346), + [aux_sym_cmd_identifier_token30] = ACTIONS(2346), + [aux_sym_cmd_identifier_token31] = ACTIONS(2346), + [aux_sym_cmd_identifier_token32] = ACTIONS(2346), + [aux_sym_cmd_identifier_token33] = ACTIONS(2346), + [aux_sym_cmd_identifier_token34] = ACTIONS(2344), + [aux_sym_cmd_identifier_token35] = ACTIONS(2346), + [aux_sym_cmd_identifier_token36] = ACTIONS(2346), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(2346), + [anon_sym_DOLLAR] = ACTIONS(2344), + [anon_sym_error] = ACTIONS(2344), + [anon_sym_DASH2] = ACTIONS(2344), + [anon_sym_break] = ACTIONS(2344), + [anon_sym_continue] = ACTIONS(2344), + [anon_sym_for] = ACTIONS(2344), + [anon_sym_in2] = 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_hide] = ACTIONS(2344), + [anon_sym_hide_DASHenv] = ACTIONS(2344), + [anon_sym_overlay] = ACTIONS(2344), + [anon_sym_as] = ACTIONS(2344), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2344), + [aux_sym__val_number_token5] = ACTIONS(2344), + [aux_sym__val_number_token6] = ACTIONS(2344), + [anon_sym_DQUOTE] = ACTIONS(2346), + [sym__str_single_quotes] = ACTIONS(2346), + [sym__str_back_ticks] = ACTIONS(2346), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2346), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2346), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2346), + [anon_sym_register] = ACTIONS(2344), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2346), }, - [724] = { - [sym_comment] = STATE(724), - [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(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1951), - [aux_sym_cmd_identifier_token4] = ACTIONS(1951), - [aux_sym_cmd_identifier_token5] = ACTIONS(1951), - [aux_sym_cmd_identifier_token6] = ACTIONS(1951), - [aux_sym_cmd_identifier_token7] = ACTIONS(1951), - [aux_sym_cmd_identifier_token8] = ACTIONS(1949), - [aux_sym_cmd_identifier_token9] = ACTIONS(1949), - [aux_sym_cmd_identifier_token10] = ACTIONS(1951), - [aux_sym_cmd_identifier_token11] = ACTIONS(1951), - [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(1951), - [aux_sym_cmd_identifier_token17] = ACTIONS(1951), - [aux_sym_cmd_identifier_token18] = ACTIONS(1951), - [aux_sym_cmd_identifier_token19] = ACTIONS(1951), - [aux_sym_cmd_identifier_token20] = ACTIONS(1951), - [aux_sym_cmd_identifier_token21] = ACTIONS(1951), - [aux_sym_cmd_identifier_token22] = ACTIONS(1951), - [aux_sym_cmd_identifier_token23] = ACTIONS(1951), - [aux_sym_cmd_identifier_token24] = ACTIONS(1951), - [aux_sym_cmd_identifier_token25] = ACTIONS(1951), - [aux_sym_cmd_identifier_token26] = ACTIONS(1951), - [aux_sym_cmd_identifier_token27] = ACTIONS(1951), - [aux_sym_cmd_identifier_token28] = ACTIONS(1951), - [aux_sym_cmd_identifier_token29] = ACTIONS(1951), - [aux_sym_cmd_identifier_token30] = ACTIONS(1951), - [aux_sym_cmd_identifier_token31] = ACTIONS(1951), - [aux_sym_cmd_identifier_token32] = ACTIONS(1951), - [aux_sym_cmd_identifier_token33] = ACTIONS(1951), - [aux_sym_cmd_identifier_token34] = ACTIONS(1949), - [aux_sym_cmd_identifier_token35] = ACTIONS(1951), - [aux_sym_cmd_identifier_token36] = ACTIONS(1951), - [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1951), - [anon_sym_DOLLAR] = ACTIONS(1949), - [anon_sym_error] = ACTIONS(1949), - [anon_sym_DASH2] = ACTIONS(1949), - [anon_sym_break] = ACTIONS(1949), - [anon_sym_continue] = ACTIONS(1949), - [anon_sym_for] = ACTIONS(1949), - [anon_sym_in2] = 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_as] = ACTIONS(1949), - [anon_sym_PLUS2] = 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), - [aux_sym__val_number_token4] = ACTIONS(1949), - [aux_sym__val_number_token5] = ACTIONS(1949), - [aux_sym__val_number_token6] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(1951), - [sym__str_single_quotes] = ACTIONS(1951), - [sym__str_back_ticks] = ACTIONS(1951), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1951), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1951), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1951), + [694] = { + [sym_comment] = STATE(694), + [anon_sym_export] = ACTIONS(2000), + [anon_sym_alias] = ACTIONS(2000), + [anon_sym_let] = ACTIONS(2000), + [anon_sym_let_DASHenv] = ACTIONS(2000), + [anon_sym_mut] = ACTIONS(2000), + [anon_sym_const] = ACTIONS(2000), + [aux_sym_cmd_identifier_token1] = ACTIONS(2000), + [aux_sym_cmd_identifier_token2] = ACTIONS(2006), + [aux_sym_cmd_identifier_token3] = ACTIONS(2006), + [aux_sym_cmd_identifier_token4] = ACTIONS(2006), + [aux_sym_cmd_identifier_token5] = ACTIONS(2006), + [aux_sym_cmd_identifier_token6] = ACTIONS(2006), + [aux_sym_cmd_identifier_token7] = ACTIONS(2006), + [aux_sym_cmd_identifier_token8] = ACTIONS(2000), + [aux_sym_cmd_identifier_token9] = ACTIONS(2000), + [aux_sym_cmd_identifier_token10] = ACTIONS(2006), + [aux_sym_cmd_identifier_token11] = ACTIONS(2006), + [aux_sym_cmd_identifier_token12] = ACTIONS(2000), + [aux_sym_cmd_identifier_token13] = ACTIONS(2000), + [aux_sym_cmd_identifier_token14] = ACTIONS(2000), + [aux_sym_cmd_identifier_token15] = ACTIONS(2000), + [aux_sym_cmd_identifier_token16] = ACTIONS(2006), + [aux_sym_cmd_identifier_token17] = ACTIONS(2006), + [aux_sym_cmd_identifier_token18] = ACTIONS(2006), + [aux_sym_cmd_identifier_token19] = ACTIONS(2006), + [aux_sym_cmd_identifier_token20] = ACTIONS(2006), + [aux_sym_cmd_identifier_token21] = ACTIONS(2006), + [aux_sym_cmd_identifier_token22] = ACTIONS(2006), + [aux_sym_cmd_identifier_token23] = ACTIONS(2006), + [aux_sym_cmd_identifier_token24] = ACTIONS(2006), + [aux_sym_cmd_identifier_token25] = ACTIONS(2006), + [aux_sym_cmd_identifier_token26] = ACTIONS(2006), + [aux_sym_cmd_identifier_token27] = ACTIONS(2006), + [aux_sym_cmd_identifier_token28] = ACTIONS(2006), + [aux_sym_cmd_identifier_token29] = ACTIONS(2006), + [aux_sym_cmd_identifier_token30] = ACTIONS(2006), + [aux_sym_cmd_identifier_token31] = ACTIONS(2006), + [aux_sym_cmd_identifier_token32] = ACTIONS(2006), + [aux_sym_cmd_identifier_token33] = ACTIONS(2006), + [aux_sym_cmd_identifier_token34] = ACTIONS(2000), + [aux_sym_cmd_identifier_token35] = ACTIONS(2006), + [aux_sym_cmd_identifier_token36] = ACTIONS(2006), + [aux_sym_cmd_identifier_token37] = ACTIONS(2006), + [aux_sym_cmd_identifier_token38] = ACTIONS(2000), + [aux_sym_cmd_identifier_token39] = ACTIONS(2006), + [aux_sym_cmd_identifier_token40] = ACTIONS(2006), + [anon_sym_def] = ACTIONS(2000), + [anon_sym_export_DASHenv] = ACTIONS(2000), + [anon_sym_extern] = ACTIONS(2000), + [anon_sym_module] = ACTIONS(2000), + [anon_sym_use] = ACTIONS(2000), + [anon_sym_LPAREN] = ACTIONS(2006), + [anon_sym_COMMA] = ACTIONS(2006), + [anon_sym_DOLLAR] = ACTIONS(2000), + [anon_sym_error] = ACTIONS(2000), + [anon_sym_DASH2] = ACTIONS(2000), + [anon_sym_break] = ACTIONS(2000), + [anon_sym_continue] = ACTIONS(2000), + [anon_sym_for] = ACTIONS(2000), + [anon_sym_in2] = ACTIONS(2000), + [anon_sym_loop] = ACTIONS(2000), + [anon_sym_make] = ACTIONS(2000), + [anon_sym_while] = ACTIONS(2000), + [anon_sym_do] = ACTIONS(2000), + [anon_sym_if] = ACTIONS(2000), + [anon_sym_else] = ACTIONS(2000), + [anon_sym_match] = ACTIONS(2000), + [anon_sym_RBRACE] = ACTIONS(2006), + [anon_sym_try] = ACTIONS(2000), + [anon_sym_catch] = ACTIONS(2000), + [anon_sym_return] = ACTIONS(2000), + [anon_sym_source] = ACTIONS(2000), + [anon_sym_source_DASHenv] = ACTIONS(2000), + [anon_sym_hide] = ACTIONS(2000), + [anon_sym_hide_DASHenv] = ACTIONS(2000), + [anon_sym_overlay] = ACTIONS(2000), + [anon_sym_as] = ACTIONS(2000), + [anon_sym_PLUS2] = ACTIONS(2000), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2006), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2006), + [aux_sym__val_number_decimal_token1] = ACTIONS(2000), + [aux_sym__val_number_decimal_token2] = ACTIONS(2006), + [aux_sym__val_number_decimal_token3] = ACTIONS(2006), + [aux_sym__val_number_decimal_token4] = ACTIONS(2006), + [aux_sym__val_number_token1] = ACTIONS(2006), + [aux_sym__val_number_token2] = ACTIONS(2006), + [aux_sym__val_number_token3] = ACTIONS(2006), + [aux_sym__val_number_token4] = ACTIONS(2000), + [aux_sym__val_number_token5] = ACTIONS(2000), + [aux_sym__val_number_token6] = ACTIONS(2000), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym__str_single_quotes] = ACTIONS(2006), + [sym__str_back_ticks] = ACTIONS(2006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2006), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2006), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2006), + [anon_sym_register] = ACTIONS(2000), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2006), }, - [725] = { - [sym_comment] = STATE(725), - [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(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(1953), - [aux_sym_cmd_identifier_token9] = ACTIONS(1953), - [aux_sym_cmd_identifier_token10] = ACTIONS(1955), - [aux_sym_cmd_identifier_token11] = ACTIONS(1955), - [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(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(1953), - [aux_sym_cmd_identifier_token35] = ACTIONS(1955), - [aux_sym_cmd_identifier_token36] = ACTIONS(1955), - [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1955), - [anon_sym_DOLLAR] = ACTIONS(1953), - [anon_sym_error] = ACTIONS(1953), - [anon_sym_DASH2] = ACTIONS(1953), - [anon_sym_break] = ACTIONS(1953), - [anon_sym_continue] = ACTIONS(1953), - [anon_sym_for] = ACTIONS(1953), - [anon_sym_in2] = 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_as] = ACTIONS(1953), - [anon_sym_PLUS2] = 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), - [aux_sym__val_number_token4] = ACTIONS(1953), - [aux_sym__val_number_token5] = ACTIONS(1953), - [aux_sym__val_number_token6] = ACTIONS(1953), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1955), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1955), + [695] = { + [sym_comment] = STATE(695), + [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(1937), + [aux_sym_cmd_identifier_token3] = ACTIONS(1937), + [aux_sym_cmd_identifier_token4] = ACTIONS(1937), + [aux_sym_cmd_identifier_token5] = ACTIONS(1937), + [aux_sym_cmd_identifier_token6] = ACTIONS(1937), + [aux_sym_cmd_identifier_token7] = ACTIONS(1937), + [aux_sym_cmd_identifier_token8] = ACTIONS(1935), + [aux_sym_cmd_identifier_token9] = ACTIONS(1935), + [aux_sym_cmd_identifier_token10] = ACTIONS(1937), + [aux_sym_cmd_identifier_token11] = ACTIONS(1937), + [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(1937), + [aux_sym_cmd_identifier_token17] = ACTIONS(1937), + [aux_sym_cmd_identifier_token18] = ACTIONS(1937), + [aux_sym_cmd_identifier_token19] = ACTIONS(1937), + [aux_sym_cmd_identifier_token20] = ACTIONS(1937), + [aux_sym_cmd_identifier_token21] = ACTIONS(1937), + [aux_sym_cmd_identifier_token22] = ACTIONS(1937), + [aux_sym_cmd_identifier_token23] = ACTIONS(1937), + [aux_sym_cmd_identifier_token24] = ACTIONS(1937), + [aux_sym_cmd_identifier_token25] = ACTIONS(1937), + [aux_sym_cmd_identifier_token26] = ACTIONS(1937), + [aux_sym_cmd_identifier_token27] = ACTIONS(1937), + [aux_sym_cmd_identifier_token28] = ACTIONS(1937), + [aux_sym_cmd_identifier_token29] = ACTIONS(1937), + [aux_sym_cmd_identifier_token30] = ACTIONS(1937), + [aux_sym_cmd_identifier_token31] = ACTIONS(1937), + [aux_sym_cmd_identifier_token32] = ACTIONS(1937), + [aux_sym_cmd_identifier_token33] = ACTIONS(1937), + [aux_sym_cmd_identifier_token34] = ACTIONS(1935), + [aux_sym_cmd_identifier_token35] = ACTIONS(1937), + [aux_sym_cmd_identifier_token36] = ACTIONS(1937), + [aux_sym_cmd_identifier_token37] = ACTIONS(1937), + [aux_sym_cmd_identifier_token38] = ACTIONS(1935), + [aux_sym_cmd_identifier_token39] = ACTIONS(1937), + [aux_sym_cmd_identifier_token40] = ACTIONS(1937), + [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(1937), + [anon_sym_COMMA] = ACTIONS(1937), + [anon_sym_DOLLAR] = ACTIONS(1935), + [anon_sym_error] = ACTIONS(1935), + [anon_sym_DASH2] = ACTIONS(1935), + [anon_sym_break] = ACTIONS(1935), + [anon_sym_continue] = ACTIONS(1935), + [anon_sym_for] = ACTIONS(1935), + [anon_sym_in2] = 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(1937), + [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_hide] = ACTIONS(1935), + [anon_sym_hide_DASHenv] = ACTIONS(1935), + [anon_sym_overlay] = ACTIONS(1935), + [anon_sym_as] = ACTIONS(1935), + [anon_sym_PLUS2] = ACTIONS(1935), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1937), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1937), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1937), + [aux_sym__val_number_decimal_token4] = ACTIONS(1937), + [aux_sym__val_number_token1] = ACTIONS(1937), + [aux_sym__val_number_token2] = ACTIONS(1937), + [aux_sym__val_number_token3] = ACTIONS(1937), + [aux_sym__val_number_token4] = ACTIONS(1935), + [aux_sym__val_number_token5] = ACTIONS(1935), + [aux_sym__val_number_token6] = ACTIONS(1935), + [anon_sym_DQUOTE] = ACTIONS(1937), + [sym__str_single_quotes] = ACTIONS(1937), + [sym__str_back_ticks] = ACTIONS(1937), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1937), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1937), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1937), + [anon_sym_register] = ACTIONS(1935), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1937), }, - [726] = { - [sym_comment] = STATE(726), - [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(2338), - [aux_sym_cmd_identifier_token3] = ACTIONS(2338), - [aux_sym_cmd_identifier_token4] = ACTIONS(2338), - [aux_sym_cmd_identifier_token5] = ACTIONS(2338), - [aux_sym_cmd_identifier_token6] = ACTIONS(2338), - [aux_sym_cmd_identifier_token7] = ACTIONS(2338), - [aux_sym_cmd_identifier_token8] = ACTIONS(2336), - [aux_sym_cmd_identifier_token9] = ACTIONS(2336), - [aux_sym_cmd_identifier_token10] = ACTIONS(2338), - [aux_sym_cmd_identifier_token11] = ACTIONS(2338), - [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(2338), - [aux_sym_cmd_identifier_token17] = ACTIONS(2338), - [aux_sym_cmd_identifier_token18] = ACTIONS(2338), - [aux_sym_cmd_identifier_token19] = ACTIONS(2338), - [aux_sym_cmd_identifier_token20] = ACTIONS(2338), - [aux_sym_cmd_identifier_token21] = ACTIONS(2338), - [aux_sym_cmd_identifier_token22] = ACTIONS(2338), - [aux_sym_cmd_identifier_token23] = ACTIONS(2338), - [aux_sym_cmd_identifier_token24] = ACTIONS(2338), - [aux_sym_cmd_identifier_token25] = ACTIONS(2338), - [aux_sym_cmd_identifier_token26] = ACTIONS(2338), - [aux_sym_cmd_identifier_token27] = ACTIONS(2338), - [aux_sym_cmd_identifier_token28] = ACTIONS(2338), - [aux_sym_cmd_identifier_token29] = ACTIONS(2338), - [aux_sym_cmd_identifier_token30] = ACTIONS(2338), - [aux_sym_cmd_identifier_token31] = ACTIONS(2338), - [aux_sym_cmd_identifier_token32] = ACTIONS(2338), - [aux_sym_cmd_identifier_token33] = ACTIONS(2338), - [aux_sym_cmd_identifier_token34] = ACTIONS(2336), - [aux_sym_cmd_identifier_token35] = ACTIONS(2338), - [aux_sym_cmd_identifier_token36] = ACTIONS(2338), - [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(2338), - [anon_sym_DOLLAR] = ACTIONS(2336), - [anon_sym_error] = ACTIONS(2336), - [anon_sym_DASH2] = ACTIONS(2336), - [anon_sym_break] = ACTIONS(2336), - [anon_sym_continue] = ACTIONS(2336), - [anon_sym_for] = ACTIONS(2336), - [anon_sym_in2] = 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_as] = ACTIONS(2336), - [anon_sym_PLUS2] = 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), - [aux_sym__val_number_token4] = ACTIONS(2336), - [aux_sym__val_number_token5] = ACTIONS(2336), - [aux_sym__val_number_token6] = ACTIONS(2336), - [anon_sym_DQUOTE] = ACTIONS(2338), - [sym__str_single_quotes] = ACTIONS(2338), - [sym__str_back_ticks] = ACTIONS(2338), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2338), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2338), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2338), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2338), + [696] = { + [sym_comment] = STATE(696), + [anon_sym_export] = ACTIONS(2310), + [anon_sym_alias] = ACTIONS(2310), + [anon_sym_let] = ACTIONS(2310), + [anon_sym_let_DASHenv] = ACTIONS(2310), + [anon_sym_mut] = ACTIONS(2310), + [anon_sym_const] = ACTIONS(2310), + [aux_sym_cmd_identifier_token1] = ACTIONS(2310), + [aux_sym_cmd_identifier_token2] = ACTIONS(2312), + [aux_sym_cmd_identifier_token3] = ACTIONS(2312), + [aux_sym_cmd_identifier_token4] = ACTIONS(2312), + [aux_sym_cmd_identifier_token5] = ACTIONS(2312), + [aux_sym_cmd_identifier_token6] = ACTIONS(2312), + [aux_sym_cmd_identifier_token7] = ACTIONS(2312), + [aux_sym_cmd_identifier_token8] = ACTIONS(2310), + [aux_sym_cmd_identifier_token9] = ACTIONS(2310), + [aux_sym_cmd_identifier_token10] = ACTIONS(2312), + [aux_sym_cmd_identifier_token11] = ACTIONS(2312), + [aux_sym_cmd_identifier_token12] = ACTIONS(2310), + [aux_sym_cmd_identifier_token13] = ACTIONS(2310), + [aux_sym_cmd_identifier_token14] = ACTIONS(2310), + [aux_sym_cmd_identifier_token15] = ACTIONS(2310), + [aux_sym_cmd_identifier_token16] = ACTIONS(2312), + [aux_sym_cmd_identifier_token17] = ACTIONS(2312), + [aux_sym_cmd_identifier_token18] = ACTIONS(2312), + [aux_sym_cmd_identifier_token19] = ACTIONS(2312), + [aux_sym_cmd_identifier_token20] = ACTIONS(2312), + [aux_sym_cmd_identifier_token21] = ACTIONS(2312), + [aux_sym_cmd_identifier_token22] = ACTIONS(2312), + [aux_sym_cmd_identifier_token23] = ACTIONS(2312), + [aux_sym_cmd_identifier_token24] = ACTIONS(2312), + [aux_sym_cmd_identifier_token25] = ACTIONS(2312), + [aux_sym_cmd_identifier_token26] = ACTIONS(2312), + [aux_sym_cmd_identifier_token27] = ACTIONS(2312), + [aux_sym_cmd_identifier_token28] = ACTIONS(2312), + [aux_sym_cmd_identifier_token29] = ACTIONS(2312), + [aux_sym_cmd_identifier_token30] = ACTIONS(2312), + [aux_sym_cmd_identifier_token31] = ACTIONS(2312), + [aux_sym_cmd_identifier_token32] = ACTIONS(2312), + [aux_sym_cmd_identifier_token33] = ACTIONS(2312), + [aux_sym_cmd_identifier_token34] = ACTIONS(2310), + [aux_sym_cmd_identifier_token35] = ACTIONS(2312), + [aux_sym_cmd_identifier_token36] = ACTIONS(2312), + [aux_sym_cmd_identifier_token37] = ACTIONS(2312), + [aux_sym_cmd_identifier_token38] = ACTIONS(2310), + [aux_sym_cmd_identifier_token39] = ACTIONS(2312), + [aux_sym_cmd_identifier_token40] = ACTIONS(2312), + [anon_sym_def] = ACTIONS(2310), + [anon_sym_export_DASHenv] = ACTIONS(2310), + [anon_sym_extern] = ACTIONS(2310), + [anon_sym_module] = ACTIONS(2310), + [anon_sym_use] = ACTIONS(2310), + [anon_sym_LPAREN] = ACTIONS(2312), + [anon_sym_COMMA] = ACTIONS(2312), + [anon_sym_DOLLAR] = ACTIONS(2310), + [anon_sym_error] = ACTIONS(2310), + [anon_sym_DASH2] = ACTIONS(2310), + [anon_sym_break] = ACTIONS(2310), + [anon_sym_continue] = ACTIONS(2310), + [anon_sym_for] = ACTIONS(2310), + [anon_sym_in2] = ACTIONS(2310), + [anon_sym_loop] = ACTIONS(2310), + [anon_sym_make] = ACTIONS(2310), + [anon_sym_while] = ACTIONS(2310), + [anon_sym_do] = ACTIONS(2310), + [anon_sym_if] = ACTIONS(2310), + [anon_sym_else] = ACTIONS(2310), + [anon_sym_match] = ACTIONS(2310), + [anon_sym_RBRACE] = ACTIONS(2312), + [anon_sym_try] = ACTIONS(2310), + [anon_sym_catch] = ACTIONS(2310), + [anon_sym_return] = ACTIONS(2310), + [anon_sym_source] = ACTIONS(2310), + [anon_sym_source_DASHenv] = ACTIONS(2310), + [anon_sym_hide] = ACTIONS(2310), + [anon_sym_hide_DASHenv] = ACTIONS(2310), + [anon_sym_overlay] = ACTIONS(2310), + [anon_sym_as] = ACTIONS(2310), + [anon_sym_PLUS2] = ACTIONS(2310), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2312), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2312), + [aux_sym__val_number_decimal_token1] = ACTIONS(2310), + [aux_sym__val_number_decimal_token2] = ACTIONS(2312), + [aux_sym__val_number_decimal_token3] = ACTIONS(2312), + [aux_sym__val_number_decimal_token4] = ACTIONS(2312), + [aux_sym__val_number_token1] = ACTIONS(2312), + [aux_sym__val_number_token2] = ACTIONS(2312), + [aux_sym__val_number_token3] = ACTIONS(2312), + [aux_sym__val_number_token4] = ACTIONS(2310), + [aux_sym__val_number_token5] = ACTIONS(2310), + [aux_sym__val_number_token6] = ACTIONS(2310), + [anon_sym_DQUOTE] = ACTIONS(2312), + [sym__str_single_quotes] = ACTIONS(2312), + [sym__str_back_ticks] = ACTIONS(2312), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2312), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2312), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2312), + [anon_sym_register] = ACTIONS(2310), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2312), }, - [727] = { - [sym_comment] = STATE(727), - [anon_sym_export] = ACTIONS(2378), - [anon_sym_alias] = ACTIONS(2378), - [anon_sym_let] = ACTIONS(2378), - [anon_sym_let_DASHenv] = ACTIONS(2378), - [anon_sym_mut] = ACTIONS(2378), - [anon_sym_const] = ACTIONS(2378), - [aux_sym_cmd_identifier_token1] = ACTIONS(2378), - [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(2378), - [aux_sym_cmd_identifier_token9] = ACTIONS(2378), - [aux_sym_cmd_identifier_token10] = ACTIONS(2380), - [aux_sym_cmd_identifier_token11] = ACTIONS(2380), - [aux_sym_cmd_identifier_token12] = ACTIONS(2378), - [aux_sym_cmd_identifier_token13] = ACTIONS(2378), - [aux_sym_cmd_identifier_token14] = ACTIONS(2378), - [aux_sym_cmd_identifier_token15] = ACTIONS(2378), - [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(2378), - [aux_sym_cmd_identifier_token35] = ACTIONS(2380), - [aux_sym_cmd_identifier_token36] = ACTIONS(2380), - [aux_sym_cmd_identifier_token37] = ACTIONS(2380), - [aux_sym_cmd_identifier_token38] = ACTIONS(2378), - [aux_sym_cmd_identifier_token39] = ACTIONS(2380), - [aux_sym_cmd_identifier_token40] = ACTIONS(2380), - [anon_sym_def] = ACTIONS(2378), - [anon_sym_export_DASHenv] = ACTIONS(2378), - [anon_sym_extern] = ACTIONS(2378), - [anon_sym_module] = ACTIONS(2378), - [anon_sym_use] = ACTIONS(2378), - [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_COMMA] = ACTIONS(2380), - [anon_sym_DOLLAR] = ACTIONS(2378), - [anon_sym_error] = ACTIONS(2378), - [anon_sym_DASH2] = ACTIONS(2378), - [anon_sym_break] = ACTIONS(2378), - [anon_sym_continue] = ACTIONS(2378), - [anon_sym_for] = ACTIONS(2378), - [anon_sym_in2] = ACTIONS(2378), - [anon_sym_loop] = ACTIONS(2378), - [anon_sym_make] = ACTIONS(2378), - [anon_sym_while] = ACTIONS(2378), - [anon_sym_do] = ACTIONS(2378), - [anon_sym_if] = ACTIONS(2378), - [anon_sym_else] = ACTIONS(2378), - [anon_sym_match] = ACTIONS(2378), - [anon_sym_RBRACE] = ACTIONS(2380), - [anon_sym_try] = ACTIONS(2378), - [anon_sym_catch] = ACTIONS(2378), - [anon_sym_return] = ACTIONS(2378), - [anon_sym_source] = ACTIONS(2378), - [anon_sym_source_DASHenv] = ACTIONS(2378), - [anon_sym_register] = ACTIONS(2378), - [anon_sym_hide] = ACTIONS(2378), - [anon_sym_hide_DASHenv] = ACTIONS(2378), - [anon_sym_overlay] = ACTIONS(2378), - [anon_sym_as] = ACTIONS(2378), - [anon_sym_PLUS2] = ACTIONS(2378), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2380), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2380), - [aux_sym__val_number_decimal_token1] = ACTIONS(2378), - [aux_sym__val_number_decimal_token2] = ACTIONS(2380), - [aux_sym__val_number_decimal_token3] = ACTIONS(2380), - [aux_sym__val_number_decimal_token4] = ACTIONS(2380), - [aux_sym__val_number_token1] = ACTIONS(2380), - [aux_sym__val_number_token2] = ACTIONS(2380), - [aux_sym__val_number_token3] = ACTIONS(2380), - [aux_sym__val_number_token4] = ACTIONS(2378), - [aux_sym__val_number_token5] = ACTIONS(2378), - [aux_sym__val_number_token6] = ACTIONS(2378), - [anon_sym_DQUOTE] = ACTIONS(2380), - [sym__str_single_quotes] = ACTIONS(2380), - [sym__str_back_ticks] = ACTIONS(2380), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2380), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2380), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2380), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2380), + [697] = { + [sym_comment] = STATE(697), + [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(2328), + [aux_sym_cmd_identifier_token3] = ACTIONS(2328), + [aux_sym_cmd_identifier_token4] = ACTIONS(2328), + [aux_sym_cmd_identifier_token5] = ACTIONS(2328), + [aux_sym_cmd_identifier_token6] = ACTIONS(2328), + [aux_sym_cmd_identifier_token7] = ACTIONS(2328), + [aux_sym_cmd_identifier_token8] = ACTIONS(2326), + [aux_sym_cmd_identifier_token9] = ACTIONS(2326), + [aux_sym_cmd_identifier_token10] = ACTIONS(2328), + [aux_sym_cmd_identifier_token11] = ACTIONS(2328), + [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(2328), + [aux_sym_cmd_identifier_token17] = ACTIONS(2328), + [aux_sym_cmd_identifier_token18] = ACTIONS(2328), + [aux_sym_cmd_identifier_token19] = ACTIONS(2328), + [aux_sym_cmd_identifier_token20] = ACTIONS(2328), + [aux_sym_cmd_identifier_token21] = ACTIONS(2328), + [aux_sym_cmd_identifier_token22] = ACTIONS(2328), + [aux_sym_cmd_identifier_token23] = ACTIONS(2328), + [aux_sym_cmd_identifier_token24] = ACTIONS(2328), + [aux_sym_cmd_identifier_token25] = ACTIONS(2328), + [aux_sym_cmd_identifier_token26] = ACTIONS(2328), + [aux_sym_cmd_identifier_token27] = ACTIONS(2328), + [aux_sym_cmd_identifier_token28] = ACTIONS(2328), + [aux_sym_cmd_identifier_token29] = ACTIONS(2328), + [aux_sym_cmd_identifier_token30] = ACTIONS(2328), + [aux_sym_cmd_identifier_token31] = ACTIONS(2328), + [aux_sym_cmd_identifier_token32] = ACTIONS(2328), + [aux_sym_cmd_identifier_token33] = ACTIONS(2328), + [aux_sym_cmd_identifier_token34] = ACTIONS(2326), + [aux_sym_cmd_identifier_token35] = ACTIONS(2328), + [aux_sym_cmd_identifier_token36] = ACTIONS(2328), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(2328), + [anon_sym_DOLLAR] = ACTIONS(2326), + [anon_sym_error] = ACTIONS(2326), + [anon_sym_DASH2] = ACTIONS(2326), + [anon_sym_break] = ACTIONS(2326), + [anon_sym_continue] = ACTIONS(2326), + [anon_sym_for] = ACTIONS(2326), + [anon_sym_in2] = 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_hide] = ACTIONS(2326), + [anon_sym_hide_DASHenv] = ACTIONS(2326), + [anon_sym_overlay] = ACTIONS(2326), + [anon_sym_as] = ACTIONS(2326), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2326), + [aux_sym__val_number_token5] = ACTIONS(2326), + [aux_sym__val_number_token6] = ACTIONS(2326), + [anon_sym_DQUOTE] = ACTIONS(2328), + [sym__str_single_quotes] = ACTIONS(2328), + [sym__str_back_ticks] = ACTIONS(2328), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2328), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2328), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2328), + [anon_sym_register] = ACTIONS(2326), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2328), }, - [728] = { - [sym_comment] = STATE(728), - [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(1837), - [aux_sym_cmd_identifier_token3] = ACTIONS(1837), - [aux_sym_cmd_identifier_token4] = ACTIONS(1837), - [aux_sym_cmd_identifier_token5] = ACTIONS(1837), - [aux_sym_cmd_identifier_token6] = ACTIONS(1837), - [aux_sym_cmd_identifier_token7] = ACTIONS(1837), - [aux_sym_cmd_identifier_token8] = ACTIONS(1835), - [aux_sym_cmd_identifier_token9] = ACTIONS(1835), - [aux_sym_cmd_identifier_token10] = ACTIONS(1837), - [aux_sym_cmd_identifier_token11] = ACTIONS(1837), - [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(1837), - [aux_sym_cmd_identifier_token17] = ACTIONS(1837), - [aux_sym_cmd_identifier_token18] = ACTIONS(1837), - [aux_sym_cmd_identifier_token19] = ACTIONS(1837), - [aux_sym_cmd_identifier_token20] = ACTIONS(1837), - [aux_sym_cmd_identifier_token21] = ACTIONS(1837), - [aux_sym_cmd_identifier_token22] = ACTIONS(1837), - [aux_sym_cmd_identifier_token23] = ACTIONS(1837), - [aux_sym_cmd_identifier_token24] = ACTIONS(1837), - [aux_sym_cmd_identifier_token25] = ACTIONS(1837), - [aux_sym_cmd_identifier_token26] = ACTIONS(1837), - [aux_sym_cmd_identifier_token27] = ACTIONS(1837), - [aux_sym_cmd_identifier_token28] = ACTIONS(1837), - [aux_sym_cmd_identifier_token29] = ACTIONS(1837), - [aux_sym_cmd_identifier_token30] = ACTIONS(1837), - [aux_sym_cmd_identifier_token31] = ACTIONS(1837), - [aux_sym_cmd_identifier_token32] = ACTIONS(1837), - [aux_sym_cmd_identifier_token33] = ACTIONS(1837), - [aux_sym_cmd_identifier_token34] = ACTIONS(1835), - [aux_sym_cmd_identifier_token35] = ACTIONS(1837), - [aux_sym_cmd_identifier_token36] = ACTIONS(1837), - [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1835), - [anon_sym_error] = ACTIONS(1835), - [anon_sym_DASH2] = ACTIONS(1835), - [anon_sym_break] = ACTIONS(1835), - [anon_sym_continue] = ACTIONS(1835), - [anon_sym_for] = ACTIONS(1835), - [anon_sym_in2] = 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_as] = ACTIONS(1835), - [anon_sym_PLUS2] = 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), - [aux_sym__val_number_token4] = ACTIONS(1835), - [aux_sym__val_number_token5] = ACTIONS(1835), - [aux_sym__val_number_token6] = ACTIONS(1835), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1837), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1837), + [698] = { + [sym_comment] = STATE(698), + [anon_sym_export] = ACTIONS(2014), + [anon_sym_alias] = ACTIONS(2014), + [anon_sym_let] = ACTIONS(2014), + [anon_sym_let_DASHenv] = ACTIONS(2014), + [anon_sym_mut] = ACTIONS(2014), + [anon_sym_const] = ACTIONS(2014), + [aux_sym_cmd_identifier_token1] = ACTIONS(2014), + [aux_sym_cmd_identifier_token2] = ACTIONS(2016), + [aux_sym_cmd_identifier_token3] = ACTIONS(2016), + [aux_sym_cmd_identifier_token4] = ACTIONS(2016), + [aux_sym_cmd_identifier_token5] = ACTIONS(2016), + [aux_sym_cmd_identifier_token6] = ACTIONS(2016), + [aux_sym_cmd_identifier_token7] = ACTIONS(2016), + [aux_sym_cmd_identifier_token8] = ACTIONS(2014), + [aux_sym_cmd_identifier_token9] = ACTIONS(2014), + [aux_sym_cmd_identifier_token10] = ACTIONS(2016), + [aux_sym_cmd_identifier_token11] = ACTIONS(2016), + [aux_sym_cmd_identifier_token12] = ACTIONS(2014), + [aux_sym_cmd_identifier_token13] = ACTIONS(2014), + [aux_sym_cmd_identifier_token14] = ACTIONS(2014), + [aux_sym_cmd_identifier_token15] = ACTIONS(2014), + [aux_sym_cmd_identifier_token16] = ACTIONS(2016), + [aux_sym_cmd_identifier_token17] = ACTIONS(2016), + [aux_sym_cmd_identifier_token18] = ACTIONS(2016), + [aux_sym_cmd_identifier_token19] = ACTIONS(2016), + [aux_sym_cmd_identifier_token20] = ACTIONS(2016), + [aux_sym_cmd_identifier_token21] = ACTIONS(2016), + [aux_sym_cmd_identifier_token22] = ACTIONS(2016), + [aux_sym_cmd_identifier_token23] = ACTIONS(2016), + [aux_sym_cmd_identifier_token24] = ACTIONS(2016), + [aux_sym_cmd_identifier_token25] = ACTIONS(2016), + [aux_sym_cmd_identifier_token26] = ACTIONS(2016), + [aux_sym_cmd_identifier_token27] = ACTIONS(2016), + [aux_sym_cmd_identifier_token28] = ACTIONS(2016), + [aux_sym_cmd_identifier_token29] = ACTIONS(2016), + [aux_sym_cmd_identifier_token30] = ACTIONS(2016), + [aux_sym_cmd_identifier_token31] = ACTIONS(2016), + [aux_sym_cmd_identifier_token32] = ACTIONS(2016), + [aux_sym_cmd_identifier_token33] = ACTIONS(2016), + [aux_sym_cmd_identifier_token34] = ACTIONS(2014), + [aux_sym_cmd_identifier_token35] = ACTIONS(2016), + [aux_sym_cmd_identifier_token36] = ACTIONS(2016), + [aux_sym_cmd_identifier_token37] = ACTIONS(2016), + [aux_sym_cmd_identifier_token38] = ACTIONS(2014), + [aux_sym_cmd_identifier_token39] = ACTIONS(2016), + [aux_sym_cmd_identifier_token40] = ACTIONS(2016), + [anon_sym_def] = ACTIONS(2014), + [anon_sym_export_DASHenv] = ACTIONS(2014), + [anon_sym_extern] = ACTIONS(2014), + [anon_sym_module] = ACTIONS(2014), + [anon_sym_use] = ACTIONS(2014), + [anon_sym_LPAREN] = ACTIONS(2016), + [anon_sym_COMMA] = ACTIONS(2016), + [anon_sym_DOLLAR] = ACTIONS(2014), + [anon_sym_error] = ACTIONS(2014), + [anon_sym_DASH2] = ACTIONS(2014), + [anon_sym_break] = ACTIONS(2014), + [anon_sym_continue] = ACTIONS(2014), + [anon_sym_for] = ACTIONS(2014), + [anon_sym_in2] = ACTIONS(2014), + [anon_sym_loop] = ACTIONS(2014), + [anon_sym_make] = ACTIONS(2014), + [anon_sym_while] = ACTIONS(2014), + [anon_sym_do] = ACTIONS(2014), + [anon_sym_if] = ACTIONS(2014), + [anon_sym_else] = ACTIONS(2014), + [anon_sym_match] = ACTIONS(2014), + [anon_sym_RBRACE] = ACTIONS(2016), + [anon_sym_try] = ACTIONS(2014), + [anon_sym_catch] = ACTIONS(2014), + [anon_sym_return] = ACTIONS(2014), + [anon_sym_source] = ACTIONS(2014), + [anon_sym_source_DASHenv] = ACTIONS(2014), + [anon_sym_hide] = ACTIONS(2014), + [anon_sym_hide_DASHenv] = ACTIONS(2014), + [anon_sym_overlay] = ACTIONS(2014), + [anon_sym_as] = ACTIONS(2014), + [anon_sym_PLUS2] = ACTIONS(2014), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2016), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2016), + [aux_sym__val_number_decimal_token1] = ACTIONS(2014), + [aux_sym__val_number_decimal_token2] = ACTIONS(2016), + [aux_sym__val_number_decimal_token3] = ACTIONS(2016), + [aux_sym__val_number_decimal_token4] = ACTIONS(2016), + [aux_sym__val_number_token1] = ACTIONS(2016), + [aux_sym__val_number_token2] = ACTIONS(2016), + [aux_sym__val_number_token3] = ACTIONS(2016), + [aux_sym__val_number_token4] = ACTIONS(2014), + [aux_sym__val_number_token5] = ACTIONS(2014), + [aux_sym__val_number_token6] = ACTIONS(2014), + [anon_sym_DQUOTE] = ACTIONS(2016), + [sym__str_single_quotes] = ACTIONS(2016), + [sym__str_back_ticks] = ACTIONS(2016), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2016), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2016), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2016), + [anon_sym_register] = ACTIONS(2014), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2016), }, - [729] = { - [sym_comment] = STATE(729), - [anon_sym_export] = ACTIONS(1965), - [anon_sym_alias] = ACTIONS(1965), - [anon_sym_let] = ACTIONS(1965), - [anon_sym_let_DASHenv] = ACTIONS(1965), - [anon_sym_mut] = ACTIONS(1965), - [anon_sym_const] = ACTIONS(1965), - [aux_sym_cmd_identifier_token1] = ACTIONS(1965), - [aux_sym_cmd_identifier_token2] = ACTIONS(1967), - [aux_sym_cmd_identifier_token3] = ACTIONS(1967), - [aux_sym_cmd_identifier_token4] = ACTIONS(1967), - [aux_sym_cmd_identifier_token5] = ACTIONS(1967), - [aux_sym_cmd_identifier_token6] = ACTIONS(1967), - [aux_sym_cmd_identifier_token7] = ACTIONS(1967), - [aux_sym_cmd_identifier_token8] = ACTIONS(1965), - [aux_sym_cmd_identifier_token9] = ACTIONS(1965), - [aux_sym_cmd_identifier_token10] = ACTIONS(1967), - [aux_sym_cmd_identifier_token11] = ACTIONS(1967), - [aux_sym_cmd_identifier_token12] = ACTIONS(1965), - [aux_sym_cmd_identifier_token13] = ACTIONS(1965), - [aux_sym_cmd_identifier_token14] = ACTIONS(1965), - [aux_sym_cmd_identifier_token15] = ACTIONS(1965), - [aux_sym_cmd_identifier_token16] = ACTIONS(1967), - [aux_sym_cmd_identifier_token17] = ACTIONS(1967), - [aux_sym_cmd_identifier_token18] = ACTIONS(1967), - [aux_sym_cmd_identifier_token19] = ACTIONS(1967), - [aux_sym_cmd_identifier_token20] = ACTIONS(1967), - [aux_sym_cmd_identifier_token21] = ACTIONS(1967), - [aux_sym_cmd_identifier_token22] = ACTIONS(1967), - [aux_sym_cmd_identifier_token23] = ACTIONS(1967), - [aux_sym_cmd_identifier_token24] = ACTIONS(1967), - [aux_sym_cmd_identifier_token25] = ACTIONS(1967), - [aux_sym_cmd_identifier_token26] = ACTIONS(1967), - [aux_sym_cmd_identifier_token27] = ACTIONS(1967), - [aux_sym_cmd_identifier_token28] = ACTIONS(1967), - [aux_sym_cmd_identifier_token29] = ACTIONS(1967), - [aux_sym_cmd_identifier_token30] = ACTIONS(1967), - [aux_sym_cmd_identifier_token31] = ACTIONS(1967), - [aux_sym_cmd_identifier_token32] = ACTIONS(1967), - [aux_sym_cmd_identifier_token33] = ACTIONS(1967), - [aux_sym_cmd_identifier_token34] = ACTIONS(1965), - [aux_sym_cmd_identifier_token35] = ACTIONS(1967), - [aux_sym_cmd_identifier_token36] = ACTIONS(1967), - [aux_sym_cmd_identifier_token37] = ACTIONS(1967), - [aux_sym_cmd_identifier_token38] = ACTIONS(1965), - [aux_sym_cmd_identifier_token39] = ACTIONS(1967), - [aux_sym_cmd_identifier_token40] = ACTIONS(1967), - [anon_sym_def] = ACTIONS(1965), - [anon_sym_export_DASHenv] = ACTIONS(1965), - [anon_sym_extern] = ACTIONS(1965), - [anon_sym_module] = ACTIONS(1965), - [anon_sym_use] = ACTIONS(1965), - [anon_sym_LPAREN] = ACTIONS(1967), - [anon_sym_COMMA] = ACTIONS(1967), - [anon_sym_DOLLAR] = ACTIONS(1965), - [anon_sym_error] = ACTIONS(1965), - [anon_sym_DASH2] = ACTIONS(1965), - [anon_sym_break] = ACTIONS(1965), - [anon_sym_continue] = ACTIONS(1965), - [anon_sym_for] = ACTIONS(1965), - [anon_sym_in2] = ACTIONS(1965), - [anon_sym_loop] = ACTIONS(1965), - [anon_sym_make] = ACTIONS(1965), - [anon_sym_while] = ACTIONS(1965), - [anon_sym_do] = ACTIONS(1965), - [anon_sym_if] = ACTIONS(1965), - [anon_sym_else] = ACTIONS(1965), - [anon_sym_match] = ACTIONS(1965), - [anon_sym_RBRACE] = ACTIONS(1967), - [anon_sym_try] = ACTIONS(1965), - [anon_sym_catch] = ACTIONS(1965), - [anon_sym_return] = ACTIONS(1965), - [anon_sym_source] = ACTIONS(1965), - [anon_sym_source_DASHenv] = ACTIONS(1965), - [anon_sym_register] = ACTIONS(1965), - [anon_sym_hide] = ACTIONS(1965), - [anon_sym_hide_DASHenv] = ACTIONS(1965), - [anon_sym_overlay] = ACTIONS(1965), - [anon_sym_as] = ACTIONS(1965), - [anon_sym_PLUS2] = ACTIONS(1965), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1967), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1967), - [aux_sym__val_number_decimal_token1] = ACTIONS(1965), - [aux_sym__val_number_decimal_token2] = ACTIONS(1967), - [aux_sym__val_number_decimal_token3] = ACTIONS(1967), - [aux_sym__val_number_decimal_token4] = ACTIONS(1967), - [aux_sym__val_number_token1] = ACTIONS(1967), - [aux_sym__val_number_token2] = ACTIONS(1967), - [aux_sym__val_number_token3] = ACTIONS(1967), - [aux_sym__val_number_token4] = ACTIONS(1965), - [aux_sym__val_number_token5] = ACTIONS(1965), - [aux_sym__val_number_token6] = ACTIONS(1965), - [anon_sym_DQUOTE] = ACTIONS(1967), - [sym__str_single_quotes] = ACTIONS(1967), - [sym__str_back_ticks] = ACTIONS(1967), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1967), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1967), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1967), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1967), + [699] = { + [sym_comment] = STATE(699), + [anon_sym_export] = ACTIONS(2461), + [anon_sym_alias] = ACTIONS(2461), + [anon_sym_let] = ACTIONS(2461), + [anon_sym_let_DASHenv] = ACTIONS(2461), + [anon_sym_mut] = ACTIONS(2461), + [anon_sym_const] = ACTIONS(2461), + [aux_sym_cmd_identifier_token1] = ACTIONS(2461), + [aux_sym_cmd_identifier_token2] = ACTIONS(2463), + [aux_sym_cmd_identifier_token3] = ACTIONS(2463), + [aux_sym_cmd_identifier_token4] = ACTIONS(2463), + [aux_sym_cmd_identifier_token5] = ACTIONS(2463), + [aux_sym_cmd_identifier_token6] = ACTIONS(2463), + [aux_sym_cmd_identifier_token7] = ACTIONS(2463), + [aux_sym_cmd_identifier_token8] = ACTIONS(2461), + [aux_sym_cmd_identifier_token9] = ACTIONS(2461), + [aux_sym_cmd_identifier_token10] = ACTIONS(2463), + [aux_sym_cmd_identifier_token11] = ACTIONS(2463), + [aux_sym_cmd_identifier_token12] = ACTIONS(2461), + [aux_sym_cmd_identifier_token13] = ACTIONS(2461), + [aux_sym_cmd_identifier_token14] = ACTIONS(2461), + [aux_sym_cmd_identifier_token15] = ACTIONS(2461), + [aux_sym_cmd_identifier_token16] = ACTIONS(2463), + [aux_sym_cmd_identifier_token17] = ACTIONS(2463), + [aux_sym_cmd_identifier_token18] = ACTIONS(2463), + [aux_sym_cmd_identifier_token19] = ACTIONS(2463), + [aux_sym_cmd_identifier_token20] = ACTIONS(2463), + [aux_sym_cmd_identifier_token21] = ACTIONS(2463), + [aux_sym_cmd_identifier_token22] = ACTIONS(2463), + [aux_sym_cmd_identifier_token23] = ACTIONS(2463), + [aux_sym_cmd_identifier_token24] = ACTIONS(2463), + [aux_sym_cmd_identifier_token25] = ACTIONS(2463), + [aux_sym_cmd_identifier_token26] = ACTIONS(2463), + [aux_sym_cmd_identifier_token27] = ACTIONS(2463), + [aux_sym_cmd_identifier_token28] = ACTIONS(2463), + [aux_sym_cmd_identifier_token29] = ACTIONS(2463), + [aux_sym_cmd_identifier_token30] = ACTIONS(2463), + [aux_sym_cmd_identifier_token31] = ACTIONS(2463), + [aux_sym_cmd_identifier_token32] = ACTIONS(2463), + [aux_sym_cmd_identifier_token33] = ACTIONS(2463), + [aux_sym_cmd_identifier_token34] = ACTIONS(2461), + [aux_sym_cmd_identifier_token35] = ACTIONS(2463), + [aux_sym_cmd_identifier_token36] = ACTIONS(2463), + [aux_sym_cmd_identifier_token37] = ACTIONS(2463), + [aux_sym_cmd_identifier_token38] = ACTIONS(2461), + [aux_sym_cmd_identifier_token39] = ACTIONS(2463), + [aux_sym_cmd_identifier_token40] = ACTIONS(2463), + [anon_sym_def] = ACTIONS(2461), + [anon_sym_export_DASHenv] = ACTIONS(2461), + [anon_sym_extern] = ACTIONS(2461), + [anon_sym_module] = ACTIONS(2461), + [anon_sym_use] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(2463), + [anon_sym_COMMA] = ACTIONS(2463), + [anon_sym_DOLLAR] = ACTIONS(2461), + [anon_sym_error] = ACTIONS(2461), + [anon_sym_DASH2] = ACTIONS(2461), + [anon_sym_break] = ACTIONS(2461), + [anon_sym_continue] = ACTIONS(2461), + [anon_sym_for] = ACTIONS(2461), + [anon_sym_in2] = ACTIONS(2461), + [anon_sym_loop] = ACTIONS(2461), + [anon_sym_make] = ACTIONS(2461), + [anon_sym_while] = ACTIONS(2461), + [anon_sym_do] = ACTIONS(2461), + [anon_sym_if] = ACTIONS(2461), + [anon_sym_else] = ACTIONS(2461), + [anon_sym_match] = ACTIONS(2461), + [anon_sym_RBRACE] = ACTIONS(2463), + [anon_sym_try] = ACTIONS(2461), + [anon_sym_catch] = ACTIONS(2461), + [anon_sym_return] = ACTIONS(2461), + [anon_sym_source] = ACTIONS(2461), + [anon_sym_source_DASHenv] = ACTIONS(2461), + [anon_sym_hide] = ACTIONS(2461), + [anon_sym_hide_DASHenv] = ACTIONS(2461), + [anon_sym_overlay] = ACTIONS(2461), + [anon_sym_as] = ACTIONS(2461), + [anon_sym_PLUS2] = ACTIONS(2461), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2463), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2463), + [aux_sym__val_number_decimal_token1] = ACTIONS(2461), + [aux_sym__val_number_decimal_token2] = ACTIONS(2463), + [aux_sym__val_number_decimal_token3] = ACTIONS(2463), + [aux_sym__val_number_decimal_token4] = ACTIONS(2463), + [aux_sym__val_number_token1] = ACTIONS(2463), + [aux_sym__val_number_token2] = ACTIONS(2463), + [aux_sym__val_number_token3] = ACTIONS(2463), + [aux_sym__val_number_token4] = ACTIONS(2461), + [aux_sym__val_number_token5] = ACTIONS(2461), + [aux_sym__val_number_token6] = ACTIONS(2461), + [anon_sym_DQUOTE] = ACTIONS(2463), + [sym__str_single_quotes] = ACTIONS(2463), + [sym__str_back_ticks] = ACTIONS(2463), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2463), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2463), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2463), + [anon_sym_register] = ACTIONS(2461), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2463), }, - [730] = { - [sym_comment] = STATE(730), - [anon_sym_export] = ACTIONS(2342), - [anon_sym_alias] = ACTIONS(2342), - [anon_sym_let] = ACTIONS(2342), - [anon_sym_let_DASHenv] = ACTIONS(2342), - [anon_sym_mut] = ACTIONS(2342), - [anon_sym_const] = ACTIONS(2342), - [aux_sym_cmd_identifier_token1] = ACTIONS(2342), - [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(2342), - [aux_sym_cmd_identifier_token9] = ACTIONS(2342), - [aux_sym_cmd_identifier_token10] = ACTIONS(2344), - [aux_sym_cmd_identifier_token11] = ACTIONS(2344), - [aux_sym_cmd_identifier_token12] = ACTIONS(2342), - [aux_sym_cmd_identifier_token13] = ACTIONS(2342), - [aux_sym_cmd_identifier_token14] = ACTIONS(2342), - [aux_sym_cmd_identifier_token15] = ACTIONS(2342), - [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(2342), - [aux_sym_cmd_identifier_token35] = ACTIONS(2344), - [aux_sym_cmd_identifier_token36] = ACTIONS(2344), - [aux_sym_cmd_identifier_token37] = ACTIONS(2344), - [aux_sym_cmd_identifier_token38] = ACTIONS(2342), - [aux_sym_cmd_identifier_token39] = ACTIONS(2344), - [aux_sym_cmd_identifier_token40] = ACTIONS(2344), - [anon_sym_def] = ACTIONS(2342), - [anon_sym_export_DASHenv] = ACTIONS(2342), - [anon_sym_extern] = ACTIONS(2342), - [anon_sym_module] = ACTIONS(2342), - [anon_sym_use] = ACTIONS(2342), - [anon_sym_LPAREN] = ACTIONS(2344), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_DOLLAR] = ACTIONS(2342), - [anon_sym_error] = ACTIONS(2342), - [anon_sym_DASH2] = ACTIONS(2342), - [anon_sym_break] = ACTIONS(2342), - [anon_sym_continue] = ACTIONS(2342), - [anon_sym_for] = ACTIONS(2342), - [anon_sym_in2] = ACTIONS(2342), - [anon_sym_loop] = ACTIONS(2342), - [anon_sym_make] = ACTIONS(2342), - [anon_sym_while] = ACTIONS(2342), - [anon_sym_do] = ACTIONS(2342), - [anon_sym_if] = ACTIONS(2342), - [anon_sym_else] = ACTIONS(2342), - [anon_sym_match] = ACTIONS(2342), - [anon_sym_RBRACE] = ACTIONS(2344), - [anon_sym_try] = ACTIONS(2342), - [anon_sym_catch] = ACTIONS(2342), - [anon_sym_return] = ACTIONS(2342), - [anon_sym_source] = ACTIONS(2342), - [anon_sym_source_DASHenv] = ACTIONS(2342), - [anon_sym_register] = ACTIONS(2342), - [anon_sym_hide] = ACTIONS(2342), - [anon_sym_hide_DASHenv] = ACTIONS(2342), - [anon_sym_overlay] = ACTIONS(2342), - [anon_sym_as] = ACTIONS(2342), - [anon_sym_PLUS2] = ACTIONS(2342), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2344), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2344), - [aux_sym__val_number_decimal_token1] = ACTIONS(2342), - [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), - [aux_sym__val_number_token4] = ACTIONS(2342), - [aux_sym__val_number_token5] = ACTIONS(2342), - [aux_sym__val_number_token6] = ACTIONS(2342), - [anon_sym_DQUOTE] = ACTIONS(2344), - [sym__str_single_quotes] = ACTIONS(2344), - [sym__str_back_ticks] = ACTIONS(2344), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2344), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2344), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2344), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2344), + [700] = { + [sym_comment] = STATE(700), + [anon_sym_export] = ACTIONS(2407), + [anon_sym_alias] = ACTIONS(2407), + [anon_sym_let] = ACTIONS(2407), + [anon_sym_let_DASHenv] = ACTIONS(2407), + [anon_sym_mut] = ACTIONS(2407), + [anon_sym_const] = ACTIONS(2407), + [aux_sym_cmd_identifier_token1] = ACTIONS(2407), + [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(2407), + [aux_sym_cmd_identifier_token9] = ACTIONS(2407), + [aux_sym_cmd_identifier_token10] = ACTIONS(2409), + [aux_sym_cmd_identifier_token11] = ACTIONS(2409), + [aux_sym_cmd_identifier_token12] = ACTIONS(2407), + [aux_sym_cmd_identifier_token13] = ACTIONS(2407), + [aux_sym_cmd_identifier_token14] = ACTIONS(2407), + [aux_sym_cmd_identifier_token15] = ACTIONS(2407), + [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(2407), + [aux_sym_cmd_identifier_token35] = ACTIONS(2409), + [aux_sym_cmd_identifier_token36] = ACTIONS(2409), + [aux_sym_cmd_identifier_token37] = ACTIONS(2409), + [aux_sym_cmd_identifier_token38] = ACTIONS(2407), + [aux_sym_cmd_identifier_token39] = ACTIONS(2409), + [aux_sym_cmd_identifier_token40] = ACTIONS(2409), + [anon_sym_def] = ACTIONS(2407), + [anon_sym_export_DASHenv] = ACTIONS(2407), + [anon_sym_extern] = ACTIONS(2407), + [anon_sym_module] = ACTIONS(2407), + [anon_sym_use] = ACTIONS(2407), + [anon_sym_LPAREN] = ACTIONS(2409), + [anon_sym_COMMA] = ACTIONS(2409), + [anon_sym_DOLLAR] = ACTIONS(2407), + [anon_sym_error] = ACTIONS(2407), + [anon_sym_DASH2] = ACTIONS(2407), + [anon_sym_break] = ACTIONS(2407), + [anon_sym_continue] = ACTIONS(2407), + [anon_sym_for] = ACTIONS(2407), + [anon_sym_in2] = ACTIONS(2407), + [anon_sym_loop] = ACTIONS(2407), + [anon_sym_make] = ACTIONS(2407), + [anon_sym_while] = ACTIONS(2407), + [anon_sym_do] = ACTIONS(2407), + [anon_sym_if] = ACTIONS(2407), + [anon_sym_else] = ACTIONS(2407), + [anon_sym_match] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2409), + [anon_sym_try] = ACTIONS(2407), + [anon_sym_catch] = ACTIONS(2407), + [anon_sym_return] = ACTIONS(2407), + [anon_sym_source] = ACTIONS(2407), + [anon_sym_source_DASHenv] = ACTIONS(2407), + [anon_sym_hide] = ACTIONS(2407), + [anon_sym_hide_DASHenv] = ACTIONS(2407), + [anon_sym_overlay] = ACTIONS(2407), + [anon_sym_as] = ACTIONS(2407), + [anon_sym_PLUS2] = ACTIONS(2407), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2409), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2409), + [aux_sym__val_number_decimal_token1] = ACTIONS(2407), + [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), + [aux_sym__val_number_token4] = ACTIONS(2407), + [aux_sym__val_number_token5] = ACTIONS(2407), + [aux_sym__val_number_token6] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2409), + [sym__str_single_quotes] = ACTIONS(2409), + [sym__str_back_ticks] = ACTIONS(2409), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2409), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2409), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2409), + [anon_sym_register] = ACTIONS(2407), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2409), }, - [731] = { - [sym_comment] = STATE(731), - [anon_sym_export] = ACTIONS(2493), - [anon_sym_alias] = ACTIONS(2493), - [anon_sym_let] = ACTIONS(2493), - [anon_sym_let_DASHenv] = ACTIONS(2493), - [anon_sym_mut] = ACTIONS(2493), - [anon_sym_const] = ACTIONS(2493), - [aux_sym_cmd_identifier_token1] = ACTIONS(2493), - [aux_sym_cmd_identifier_token2] = ACTIONS(2495), - [aux_sym_cmd_identifier_token3] = ACTIONS(2495), - [aux_sym_cmd_identifier_token4] = ACTIONS(2495), - [aux_sym_cmd_identifier_token5] = ACTIONS(2495), - [aux_sym_cmd_identifier_token6] = ACTIONS(2495), - [aux_sym_cmd_identifier_token7] = ACTIONS(2495), - [aux_sym_cmd_identifier_token8] = ACTIONS(2493), - [aux_sym_cmd_identifier_token9] = ACTIONS(2493), - [aux_sym_cmd_identifier_token10] = ACTIONS(2495), - [aux_sym_cmd_identifier_token11] = ACTIONS(2495), - [aux_sym_cmd_identifier_token12] = ACTIONS(2493), - [aux_sym_cmd_identifier_token13] = ACTIONS(2493), - [aux_sym_cmd_identifier_token14] = ACTIONS(2493), - [aux_sym_cmd_identifier_token15] = ACTIONS(2493), - [aux_sym_cmd_identifier_token16] = ACTIONS(2495), - [aux_sym_cmd_identifier_token17] = ACTIONS(2495), - [aux_sym_cmd_identifier_token18] = ACTIONS(2495), - [aux_sym_cmd_identifier_token19] = ACTIONS(2495), - [aux_sym_cmd_identifier_token20] = ACTIONS(2495), - [aux_sym_cmd_identifier_token21] = ACTIONS(2495), - [aux_sym_cmd_identifier_token22] = ACTIONS(2495), - [aux_sym_cmd_identifier_token23] = ACTIONS(2495), - [aux_sym_cmd_identifier_token24] = ACTIONS(2495), - [aux_sym_cmd_identifier_token25] = ACTIONS(2495), - [aux_sym_cmd_identifier_token26] = ACTIONS(2495), - [aux_sym_cmd_identifier_token27] = ACTIONS(2495), - [aux_sym_cmd_identifier_token28] = ACTIONS(2495), - [aux_sym_cmd_identifier_token29] = ACTIONS(2495), - [aux_sym_cmd_identifier_token30] = ACTIONS(2495), - [aux_sym_cmd_identifier_token31] = ACTIONS(2495), - [aux_sym_cmd_identifier_token32] = ACTIONS(2495), - [aux_sym_cmd_identifier_token33] = ACTIONS(2495), - [aux_sym_cmd_identifier_token34] = ACTIONS(2493), - [aux_sym_cmd_identifier_token35] = ACTIONS(2495), - [aux_sym_cmd_identifier_token36] = ACTIONS(2495), - [aux_sym_cmd_identifier_token37] = ACTIONS(2495), - [aux_sym_cmd_identifier_token38] = ACTIONS(2493), - [aux_sym_cmd_identifier_token39] = ACTIONS(2495), - [aux_sym_cmd_identifier_token40] = ACTIONS(2495), - [anon_sym_def] = ACTIONS(2493), - [anon_sym_export_DASHenv] = ACTIONS(2493), - [anon_sym_extern] = ACTIONS(2493), - [anon_sym_module] = ACTIONS(2493), - [anon_sym_use] = ACTIONS(2493), - [anon_sym_LPAREN] = ACTIONS(2495), - [anon_sym_COMMA] = ACTIONS(2495), - [anon_sym_DOLLAR] = ACTIONS(2493), - [anon_sym_error] = ACTIONS(2493), - [anon_sym_DASH2] = ACTIONS(2493), - [anon_sym_break] = ACTIONS(2493), - [anon_sym_continue] = ACTIONS(2493), - [anon_sym_for] = ACTIONS(2493), - [anon_sym_in2] = ACTIONS(2493), - [anon_sym_loop] = ACTIONS(2493), - [anon_sym_make] = ACTIONS(2493), - [anon_sym_while] = ACTIONS(2493), - [anon_sym_do] = ACTIONS(2493), - [anon_sym_if] = ACTIONS(2493), - [anon_sym_else] = ACTIONS(2493), - [anon_sym_match] = ACTIONS(2493), - [anon_sym_RBRACE] = ACTIONS(2495), - [anon_sym_try] = ACTIONS(2493), - [anon_sym_catch] = ACTIONS(2493), - [anon_sym_return] = ACTIONS(2493), - [anon_sym_source] = ACTIONS(2493), - [anon_sym_source_DASHenv] = ACTIONS(2493), - [anon_sym_register] = ACTIONS(2493), - [anon_sym_hide] = ACTIONS(2493), - [anon_sym_hide_DASHenv] = ACTIONS(2493), - [anon_sym_overlay] = ACTIONS(2493), - [anon_sym_as] = ACTIONS(2493), - [anon_sym_PLUS2] = ACTIONS(2493), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2495), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2495), - [aux_sym__val_number_decimal_token1] = ACTIONS(2493), - [aux_sym__val_number_decimal_token2] = ACTIONS(2495), - [aux_sym__val_number_decimal_token3] = ACTIONS(2495), - [aux_sym__val_number_decimal_token4] = ACTIONS(2495), - [aux_sym__val_number_token1] = ACTIONS(2495), - [aux_sym__val_number_token2] = ACTIONS(2495), - [aux_sym__val_number_token3] = ACTIONS(2495), - [aux_sym__val_number_token4] = ACTIONS(2493), - [aux_sym__val_number_token5] = ACTIONS(2493), - [aux_sym__val_number_token6] = ACTIONS(2493), - [anon_sym_DQUOTE] = ACTIONS(2495), - [sym__str_single_quotes] = ACTIONS(2495), - [sym__str_back_ticks] = ACTIONS(2495), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2495), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2495), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2495), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2495), + [701] = { + [sym_comment] = STATE(701), + [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(2419), + [aux_sym_cmd_identifier_token3] = ACTIONS(2419), + [aux_sym_cmd_identifier_token4] = ACTIONS(2419), + [aux_sym_cmd_identifier_token5] = ACTIONS(2419), + [aux_sym_cmd_identifier_token6] = ACTIONS(2419), + [aux_sym_cmd_identifier_token7] = ACTIONS(2419), + [aux_sym_cmd_identifier_token8] = ACTIONS(2417), + [aux_sym_cmd_identifier_token9] = ACTIONS(2417), + [aux_sym_cmd_identifier_token10] = ACTIONS(2419), + [aux_sym_cmd_identifier_token11] = ACTIONS(2419), + [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(2419), + [aux_sym_cmd_identifier_token17] = ACTIONS(2419), + [aux_sym_cmd_identifier_token18] = ACTIONS(2419), + [aux_sym_cmd_identifier_token19] = ACTIONS(2419), + [aux_sym_cmd_identifier_token20] = ACTIONS(2419), + [aux_sym_cmd_identifier_token21] = ACTIONS(2419), + [aux_sym_cmd_identifier_token22] = ACTIONS(2419), + [aux_sym_cmd_identifier_token23] = ACTIONS(2419), + [aux_sym_cmd_identifier_token24] = ACTIONS(2419), + [aux_sym_cmd_identifier_token25] = ACTIONS(2419), + [aux_sym_cmd_identifier_token26] = ACTIONS(2419), + [aux_sym_cmd_identifier_token27] = ACTIONS(2419), + [aux_sym_cmd_identifier_token28] = ACTIONS(2419), + [aux_sym_cmd_identifier_token29] = ACTIONS(2419), + [aux_sym_cmd_identifier_token30] = ACTIONS(2419), + [aux_sym_cmd_identifier_token31] = ACTIONS(2419), + [aux_sym_cmd_identifier_token32] = ACTIONS(2419), + [aux_sym_cmd_identifier_token33] = ACTIONS(2419), + [aux_sym_cmd_identifier_token34] = ACTIONS(2417), + [aux_sym_cmd_identifier_token35] = ACTIONS(2419), + [aux_sym_cmd_identifier_token36] = ACTIONS(2419), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(2419), + [anon_sym_DOLLAR] = ACTIONS(2417), + [anon_sym_error] = ACTIONS(2417), + [anon_sym_DASH2] = ACTIONS(2417), + [anon_sym_break] = ACTIONS(2417), + [anon_sym_continue] = ACTIONS(2417), + [anon_sym_for] = ACTIONS(2417), + [anon_sym_in2] = 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_hide] = ACTIONS(2417), + [anon_sym_hide_DASHenv] = ACTIONS(2417), + [anon_sym_overlay] = ACTIONS(2417), + [anon_sym_as] = ACTIONS(2417), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2417), + [aux_sym__val_number_token5] = ACTIONS(2417), + [aux_sym__val_number_token6] = ACTIONS(2417), + [anon_sym_DQUOTE] = ACTIONS(2419), + [sym__str_single_quotes] = ACTIONS(2419), + [sym__str_back_ticks] = ACTIONS(2419), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2419), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2419), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2419), + [anon_sym_register] = ACTIONS(2417), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2419), }, - [732] = { - [sym_comment] = STATE(732), - [anon_sym_export] = ACTIONS(2497), - [anon_sym_alias] = ACTIONS(2497), - [anon_sym_let] = ACTIONS(2497), - [anon_sym_let_DASHenv] = ACTIONS(2497), - [anon_sym_mut] = ACTIONS(2497), - [anon_sym_const] = ACTIONS(2497), - [aux_sym_cmd_identifier_token1] = ACTIONS(2497), - [aux_sym_cmd_identifier_token2] = ACTIONS(2499), - [aux_sym_cmd_identifier_token3] = ACTIONS(2499), - [aux_sym_cmd_identifier_token4] = ACTIONS(2499), - [aux_sym_cmd_identifier_token5] = ACTIONS(2499), - [aux_sym_cmd_identifier_token6] = ACTIONS(2499), - [aux_sym_cmd_identifier_token7] = ACTIONS(2499), - [aux_sym_cmd_identifier_token8] = ACTIONS(2497), - [aux_sym_cmd_identifier_token9] = ACTIONS(2497), - [aux_sym_cmd_identifier_token10] = ACTIONS(2499), - [aux_sym_cmd_identifier_token11] = ACTIONS(2499), - [aux_sym_cmd_identifier_token12] = ACTIONS(2497), - [aux_sym_cmd_identifier_token13] = ACTIONS(2497), - [aux_sym_cmd_identifier_token14] = ACTIONS(2497), - [aux_sym_cmd_identifier_token15] = ACTIONS(2497), - [aux_sym_cmd_identifier_token16] = ACTIONS(2499), - [aux_sym_cmd_identifier_token17] = ACTIONS(2499), - [aux_sym_cmd_identifier_token18] = ACTIONS(2499), - [aux_sym_cmd_identifier_token19] = ACTIONS(2499), - [aux_sym_cmd_identifier_token20] = ACTIONS(2499), - [aux_sym_cmd_identifier_token21] = ACTIONS(2499), - [aux_sym_cmd_identifier_token22] = ACTIONS(2499), - [aux_sym_cmd_identifier_token23] = ACTIONS(2499), - [aux_sym_cmd_identifier_token24] = ACTIONS(2499), - [aux_sym_cmd_identifier_token25] = ACTIONS(2499), - [aux_sym_cmd_identifier_token26] = ACTIONS(2499), - [aux_sym_cmd_identifier_token27] = ACTIONS(2499), - [aux_sym_cmd_identifier_token28] = ACTIONS(2499), - [aux_sym_cmd_identifier_token29] = ACTIONS(2499), - [aux_sym_cmd_identifier_token30] = ACTIONS(2499), - [aux_sym_cmd_identifier_token31] = ACTIONS(2499), - [aux_sym_cmd_identifier_token32] = ACTIONS(2499), - [aux_sym_cmd_identifier_token33] = ACTIONS(2499), - [aux_sym_cmd_identifier_token34] = ACTIONS(2497), - [aux_sym_cmd_identifier_token35] = ACTIONS(2499), - [aux_sym_cmd_identifier_token36] = ACTIONS(2499), - [aux_sym_cmd_identifier_token37] = ACTIONS(2499), - [aux_sym_cmd_identifier_token38] = ACTIONS(2497), - [aux_sym_cmd_identifier_token39] = ACTIONS(2499), - [aux_sym_cmd_identifier_token40] = ACTIONS(2499), - [anon_sym_def] = ACTIONS(2497), - [anon_sym_export_DASHenv] = ACTIONS(2497), - [anon_sym_extern] = ACTIONS(2497), - [anon_sym_module] = ACTIONS(2497), - [anon_sym_use] = ACTIONS(2497), - [anon_sym_LPAREN] = ACTIONS(2499), - [anon_sym_COMMA] = ACTIONS(2499), - [anon_sym_DOLLAR] = ACTIONS(2497), - [anon_sym_error] = ACTIONS(2497), - [anon_sym_DASH2] = ACTIONS(2497), - [anon_sym_break] = ACTIONS(2497), - [anon_sym_continue] = ACTIONS(2497), - [anon_sym_for] = ACTIONS(2497), - [anon_sym_in2] = ACTIONS(2497), - [anon_sym_loop] = ACTIONS(2497), - [anon_sym_make] = ACTIONS(2497), - [anon_sym_while] = ACTIONS(2497), - [anon_sym_do] = ACTIONS(2497), - [anon_sym_if] = ACTIONS(2497), - [anon_sym_else] = ACTIONS(2497), - [anon_sym_match] = ACTIONS(2497), - [anon_sym_RBRACE] = ACTIONS(2499), - [anon_sym_try] = ACTIONS(2497), - [anon_sym_catch] = ACTIONS(2497), - [anon_sym_return] = ACTIONS(2497), - [anon_sym_source] = ACTIONS(2497), - [anon_sym_source_DASHenv] = ACTIONS(2497), - [anon_sym_register] = ACTIONS(2497), - [anon_sym_hide] = ACTIONS(2497), - [anon_sym_hide_DASHenv] = ACTIONS(2497), - [anon_sym_overlay] = ACTIONS(2497), - [anon_sym_as] = ACTIONS(2497), - [anon_sym_PLUS2] = ACTIONS(2497), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2499), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2499), - [aux_sym__val_number_decimal_token1] = ACTIONS(2497), - [aux_sym__val_number_decimal_token2] = ACTIONS(2499), - [aux_sym__val_number_decimal_token3] = ACTIONS(2499), - [aux_sym__val_number_decimal_token4] = ACTIONS(2499), - [aux_sym__val_number_token1] = ACTIONS(2499), - [aux_sym__val_number_token2] = ACTIONS(2499), - [aux_sym__val_number_token3] = ACTIONS(2499), - [aux_sym__val_number_token4] = ACTIONS(2497), - [aux_sym__val_number_token5] = ACTIONS(2497), - [aux_sym__val_number_token6] = ACTIONS(2497), - [anon_sym_DQUOTE] = ACTIONS(2499), - [sym__str_single_quotes] = ACTIONS(2499), - [sym__str_back_ticks] = ACTIONS(2499), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2499), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2499), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2499), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2499), + [702] = { + [sym_comment] = STATE(702), + [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(996), + [aux_sym_cmd_identifier_token3] = ACTIONS(996), + [aux_sym_cmd_identifier_token4] = ACTIONS(996), + [aux_sym_cmd_identifier_token5] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(996), + [aux_sym_cmd_identifier_token7] = ACTIONS(996), + [aux_sym_cmd_identifier_token8] = ACTIONS(990), + [aux_sym_cmd_identifier_token9] = ACTIONS(990), + [aux_sym_cmd_identifier_token10] = ACTIONS(996), + [aux_sym_cmd_identifier_token11] = ACTIONS(996), + [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(996), + [aux_sym_cmd_identifier_token17] = ACTIONS(996), + [aux_sym_cmd_identifier_token18] = ACTIONS(996), + [aux_sym_cmd_identifier_token19] = ACTIONS(996), + [aux_sym_cmd_identifier_token20] = ACTIONS(996), + [aux_sym_cmd_identifier_token21] = ACTIONS(996), + [aux_sym_cmd_identifier_token22] = ACTIONS(996), + [aux_sym_cmd_identifier_token23] = ACTIONS(996), + [aux_sym_cmd_identifier_token24] = ACTIONS(996), + [aux_sym_cmd_identifier_token25] = ACTIONS(996), + [aux_sym_cmd_identifier_token26] = ACTIONS(996), + [aux_sym_cmd_identifier_token27] = ACTIONS(996), + [aux_sym_cmd_identifier_token28] = ACTIONS(996), + [aux_sym_cmd_identifier_token29] = ACTIONS(996), + [aux_sym_cmd_identifier_token30] = ACTIONS(996), + [aux_sym_cmd_identifier_token31] = ACTIONS(996), + [aux_sym_cmd_identifier_token32] = ACTIONS(996), + [aux_sym_cmd_identifier_token33] = ACTIONS(996), + [aux_sym_cmd_identifier_token34] = ACTIONS(990), + [aux_sym_cmd_identifier_token35] = ACTIONS(996), + [aux_sym_cmd_identifier_token36] = ACTIONS(996), + [aux_sym_cmd_identifier_token37] = ACTIONS(996), + [aux_sym_cmd_identifier_token38] = ACTIONS(990), + [aux_sym_cmd_identifier_token39] = ACTIONS(996), + [aux_sym_cmd_identifier_token40] = ACTIONS(996), + [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(996), + [anon_sym_COMMA] = ACTIONS(1000), + [anon_sym_DOLLAR] = ACTIONS(990), + [anon_sym_error] = ACTIONS(990), + [anon_sym_DASH2] = ACTIONS(990), + [anon_sym_break] = ACTIONS(990), + [anon_sym_continue] = ACTIONS(990), + [anon_sym_for] = ACTIONS(990), + [anon_sym_in2] = 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(996), + [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_hide] = ACTIONS(990), + [anon_sym_hide_DASHenv] = ACTIONS(990), + [anon_sym_overlay] = ACTIONS(990), + [anon_sym_as] = ACTIONS(990), + [anon_sym_PLUS2] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(996), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(996), + [aux_sym__val_number_decimal_token1] = ACTIONS(990), + [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), + [aux_sym__val_number_token4] = ACTIONS(990), + [aux_sym__val_number_token5] = ACTIONS(990), + [aux_sym__val_number_token6] = ACTIONS(990), + [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_DOT_DOT_DOT_LBRACE] = ACTIONS(996), + [anon_sym_register] = ACTIONS(990), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(996), }, - [733] = { - [sym_comment] = STATE(733), - [anon_sym_export] = ACTIONS(2346), - [anon_sym_alias] = ACTIONS(2346), - [anon_sym_let] = ACTIONS(2346), - [anon_sym_let_DASHenv] = ACTIONS(2346), - [anon_sym_mut] = ACTIONS(2346), - [anon_sym_const] = ACTIONS(2346), - [aux_sym_cmd_identifier_token1] = ACTIONS(2346), - [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(2346), - [aux_sym_cmd_identifier_token9] = ACTIONS(2346), - [aux_sym_cmd_identifier_token10] = ACTIONS(2348), - [aux_sym_cmd_identifier_token11] = ACTIONS(2348), - [aux_sym_cmd_identifier_token12] = ACTIONS(2346), - [aux_sym_cmd_identifier_token13] = ACTIONS(2346), - [aux_sym_cmd_identifier_token14] = ACTIONS(2346), - [aux_sym_cmd_identifier_token15] = ACTIONS(2346), - [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(2346), - [aux_sym_cmd_identifier_token35] = ACTIONS(2348), - [aux_sym_cmd_identifier_token36] = ACTIONS(2348), - [aux_sym_cmd_identifier_token37] = ACTIONS(2348), - [aux_sym_cmd_identifier_token38] = ACTIONS(2346), - [aux_sym_cmd_identifier_token39] = ACTIONS(2348), - [aux_sym_cmd_identifier_token40] = ACTIONS(2348), - [anon_sym_def] = ACTIONS(2346), - [anon_sym_export_DASHenv] = ACTIONS(2346), - [anon_sym_extern] = ACTIONS(2346), - [anon_sym_module] = ACTIONS(2346), - [anon_sym_use] = ACTIONS(2346), - [anon_sym_LPAREN] = ACTIONS(2348), - [anon_sym_COMMA] = ACTIONS(2348), - [anon_sym_DOLLAR] = ACTIONS(2346), - [anon_sym_error] = ACTIONS(2346), - [anon_sym_DASH2] = ACTIONS(2346), - [anon_sym_break] = ACTIONS(2346), - [anon_sym_continue] = ACTIONS(2346), - [anon_sym_for] = ACTIONS(2346), - [anon_sym_in2] = ACTIONS(2346), - [anon_sym_loop] = ACTIONS(2346), - [anon_sym_make] = ACTIONS(2346), - [anon_sym_while] = ACTIONS(2346), - [anon_sym_do] = ACTIONS(2346), - [anon_sym_if] = ACTIONS(2346), - [anon_sym_else] = ACTIONS(2346), - [anon_sym_match] = ACTIONS(2346), - [anon_sym_RBRACE] = ACTIONS(2348), - [anon_sym_try] = ACTIONS(2346), - [anon_sym_catch] = ACTIONS(2346), - [anon_sym_return] = ACTIONS(2346), - [anon_sym_source] = ACTIONS(2346), - [anon_sym_source_DASHenv] = ACTIONS(2346), - [anon_sym_register] = ACTIONS(2346), - [anon_sym_hide] = ACTIONS(2346), - [anon_sym_hide_DASHenv] = ACTIONS(2346), - [anon_sym_overlay] = ACTIONS(2346), - [anon_sym_as] = ACTIONS(2346), - [anon_sym_PLUS2] = ACTIONS(2346), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2348), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2348), - [aux_sym__val_number_decimal_token1] = ACTIONS(2346), - [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), - [aux_sym__val_number_token4] = ACTIONS(2346), - [aux_sym__val_number_token5] = ACTIONS(2346), - [aux_sym__val_number_token6] = ACTIONS(2346), - [anon_sym_DQUOTE] = ACTIONS(2348), - [sym__str_single_quotes] = ACTIONS(2348), - [sym__str_back_ticks] = ACTIONS(2348), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2348), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2348), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2348), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2348), + [703] = { + [sym_comment] = STATE(703), + [anon_sym_export] = ACTIONS(2018), + [anon_sym_alias] = ACTIONS(2018), + [anon_sym_let] = ACTIONS(2018), + [anon_sym_let_DASHenv] = ACTIONS(2018), + [anon_sym_mut] = ACTIONS(2018), + [anon_sym_const] = ACTIONS(2018), + [aux_sym_cmd_identifier_token1] = ACTIONS(2018), + [aux_sym_cmd_identifier_token2] = ACTIONS(2020), + [aux_sym_cmd_identifier_token3] = ACTIONS(2020), + [aux_sym_cmd_identifier_token4] = ACTIONS(2020), + [aux_sym_cmd_identifier_token5] = ACTIONS(2020), + [aux_sym_cmd_identifier_token6] = ACTIONS(2020), + [aux_sym_cmd_identifier_token7] = ACTIONS(2020), + [aux_sym_cmd_identifier_token8] = ACTIONS(2018), + [aux_sym_cmd_identifier_token9] = ACTIONS(2018), + [aux_sym_cmd_identifier_token10] = ACTIONS(2020), + [aux_sym_cmd_identifier_token11] = ACTIONS(2020), + [aux_sym_cmd_identifier_token12] = ACTIONS(2018), + [aux_sym_cmd_identifier_token13] = ACTIONS(2018), + [aux_sym_cmd_identifier_token14] = ACTIONS(2018), + [aux_sym_cmd_identifier_token15] = ACTIONS(2018), + [aux_sym_cmd_identifier_token16] = ACTIONS(2020), + [aux_sym_cmd_identifier_token17] = ACTIONS(2020), + [aux_sym_cmd_identifier_token18] = ACTIONS(2020), + [aux_sym_cmd_identifier_token19] = ACTIONS(2020), + [aux_sym_cmd_identifier_token20] = ACTIONS(2020), + [aux_sym_cmd_identifier_token21] = ACTIONS(2020), + [aux_sym_cmd_identifier_token22] = ACTIONS(2020), + [aux_sym_cmd_identifier_token23] = ACTIONS(2020), + [aux_sym_cmd_identifier_token24] = ACTIONS(2020), + [aux_sym_cmd_identifier_token25] = ACTIONS(2020), + [aux_sym_cmd_identifier_token26] = ACTIONS(2020), + [aux_sym_cmd_identifier_token27] = ACTIONS(2020), + [aux_sym_cmd_identifier_token28] = ACTIONS(2020), + [aux_sym_cmd_identifier_token29] = ACTIONS(2020), + [aux_sym_cmd_identifier_token30] = ACTIONS(2020), + [aux_sym_cmd_identifier_token31] = ACTIONS(2020), + [aux_sym_cmd_identifier_token32] = ACTIONS(2020), + [aux_sym_cmd_identifier_token33] = ACTIONS(2020), + [aux_sym_cmd_identifier_token34] = ACTIONS(2018), + [aux_sym_cmd_identifier_token35] = ACTIONS(2020), + [aux_sym_cmd_identifier_token36] = ACTIONS(2020), + [aux_sym_cmd_identifier_token37] = ACTIONS(2020), + [aux_sym_cmd_identifier_token38] = ACTIONS(2018), + [aux_sym_cmd_identifier_token39] = ACTIONS(2020), + [aux_sym_cmd_identifier_token40] = ACTIONS(2020), + [anon_sym_def] = ACTIONS(2018), + [anon_sym_export_DASHenv] = ACTIONS(2018), + [anon_sym_extern] = ACTIONS(2018), + [anon_sym_module] = ACTIONS(2018), + [anon_sym_use] = ACTIONS(2018), + [anon_sym_LPAREN] = ACTIONS(2020), + [anon_sym_COMMA] = ACTIONS(2020), + [anon_sym_DOLLAR] = ACTIONS(2018), + [anon_sym_error] = ACTIONS(2018), + [anon_sym_DASH2] = ACTIONS(2018), + [anon_sym_break] = ACTIONS(2018), + [anon_sym_continue] = ACTIONS(2018), + [anon_sym_for] = ACTIONS(2018), + [anon_sym_in2] = ACTIONS(2018), + [anon_sym_loop] = ACTIONS(2018), + [anon_sym_make] = ACTIONS(2018), + [anon_sym_while] = ACTIONS(2018), + [anon_sym_do] = ACTIONS(2018), + [anon_sym_if] = ACTIONS(2018), + [anon_sym_else] = ACTIONS(2018), + [anon_sym_match] = ACTIONS(2018), + [anon_sym_RBRACE] = ACTIONS(2020), + [anon_sym_try] = ACTIONS(2018), + [anon_sym_catch] = ACTIONS(2018), + [anon_sym_return] = ACTIONS(2018), + [anon_sym_source] = ACTIONS(2018), + [anon_sym_source_DASHenv] = ACTIONS(2018), + [anon_sym_hide] = ACTIONS(2018), + [anon_sym_hide_DASHenv] = ACTIONS(2018), + [anon_sym_overlay] = ACTIONS(2018), + [anon_sym_as] = ACTIONS(2018), + [anon_sym_PLUS2] = ACTIONS(2018), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2020), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2020), + [aux_sym__val_number_decimal_token1] = ACTIONS(2018), + [aux_sym__val_number_decimal_token2] = ACTIONS(2020), + [aux_sym__val_number_decimal_token3] = ACTIONS(2020), + [aux_sym__val_number_decimal_token4] = ACTIONS(2020), + [aux_sym__val_number_token1] = ACTIONS(2020), + [aux_sym__val_number_token2] = ACTIONS(2020), + [aux_sym__val_number_token3] = ACTIONS(2020), + [aux_sym__val_number_token4] = ACTIONS(2018), + [aux_sym__val_number_token5] = ACTIONS(2018), + [aux_sym__val_number_token6] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2020), + [sym__str_single_quotes] = ACTIONS(2020), + [sym__str_back_ticks] = ACTIONS(2020), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2020), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2020), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2020), + [anon_sym_register] = ACTIONS(2018), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2020), }, - [734] = { - [sym_comment] = STATE(734), - [anon_sym_export] = ACTIONS(1969), - [anon_sym_alias] = ACTIONS(1969), - [anon_sym_let] = ACTIONS(1969), - [anon_sym_let_DASHenv] = ACTIONS(1969), - [anon_sym_mut] = ACTIONS(1969), - [anon_sym_const] = ACTIONS(1969), - [aux_sym_cmd_identifier_token1] = ACTIONS(1969), - [aux_sym_cmd_identifier_token2] = ACTIONS(1971), - [aux_sym_cmd_identifier_token3] = ACTIONS(1971), - [aux_sym_cmd_identifier_token4] = ACTIONS(1971), - [aux_sym_cmd_identifier_token5] = ACTIONS(1971), - [aux_sym_cmd_identifier_token6] = ACTIONS(1971), - [aux_sym_cmd_identifier_token7] = ACTIONS(1971), - [aux_sym_cmd_identifier_token8] = ACTIONS(1969), - [aux_sym_cmd_identifier_token9] = ACTIONS(1969), - [aux_sym_cmd_identifier_token10] = ACTIONS(1971), - [aux_sym_cmd_identifier_token11] = ACTIONS(1971), - [aux_sym_cmd_identifier_token12] = ACTIONS(1969), - [aux_sym_cmd_identifier_token13] = ACTIONS(1969), - [aux_sym_cmd_identifier_token14] = ACTIONS(1969), - [aux_sym_cmd_identifier_token15] = ACTIONS(1969), - [aux_sym_cmd_identifier_token16] = ACTIONS(1971), - [aux_sym_cmd_identifier_token17] = ACTIONS(1971), - [aux_sym_cmd_identifier_token18] = ACTIONS(1971), - [aux_sym_cmd_identifier_token19] = ACTIONS(1971), - [aux_sym_cmd_identifier_token20] = ACTIONS(1971), - [aux_sym_cmd_identifier_token21] = ACTIONS(1971), - [aux_sym_cmd_identifier_token22] = ACTIONS(1971), - [aux_sym_cmd_identifier_token23] = ACTIONS(1971), - [aux_sym_cmd_identifier_token24] = ACTIONS(1971), - [aux_sym_cmd_identifier_token25] = ACTIONS(1971), - [aux_sym_cmd_identifier_token26] = ACTIONS(1971), - [aux_sym_cmd_identifier_token27] = ACTIONS(1971), - [aux_sym_cmd_identifier_token28] = ACTIONS(1971), - [aux_sym_cmd_identifier_token29] = ACTIONS(1971), - [aux_sym_cmd_identifier_token30] = ACTIONS(1971), - [aux_sym_cmd_identifier_token31] = ACTIONS(1971), - [aux_sym_cmd_identifier_token32] = ACTIONS(1971), - [aux_sym_cmd_identifier_token33] = ACTIONS(1971), - [aux_sym_cmd_identifier_token34] = ACTIONS(1969), - [aux_sym_cmd_identifier_token35] = ACTIONS(1971), - [aux_sym_cmd_identifier_token36] = ACTIONS(1971), - [aux_sym_cmd_identifier_token37] = ACTIONS(1971), - [aux_sym_cmd_identifier_token38] = ACTIONS(1969), - [aux_sym_cmd_identifier_token39] = ACTIONS(1971), - [aux_sym_cmd_identifier_token40] = ACTIONS(1971), - [anon_sym_def] = ACTIONS(1969), - [anon_sym_export_DASHenv] = ACTIONS(1969), - [anon_sym_extern] = ACTIONS(1969), - [anon_sym_module] = ACTIONS(1969), - [anon_sym_use] = ACTIONS(1969), - [anon_sym_LPAREN] = ACTIONS(1971), - [anon_sym_COMMA] = ACTIONS(1971), - [anon_sym_DOLLAR] = ACTIONS(1969), - [anon_sym_error] = ACTIONS(1969), - [anon_sym_DASH2] = ACTIONS(1969), - [anon_sym_break] = ACTIONS(1969), - [anon_sym_continue] = ACTIONS(1969), - [anon_sym_for] = ACTIONS(1969), - [anon_sym_in2] = ACTIONS(1969), - [anon_sym_loop] = ACTIONS(1969), - [anon_sym_make] = ACTIONS(1969), - [anon_sym_while] = ACTIONS(1969), - [anon_sym_do] = ACTIONS(1969), - [anon_sym_if] = ACTIONS(1969), - [anon_sym_else] = ACTIONS(1969), - [anon_sym_match] = ACTIONS(1969), - [anon_sym_RBRACE] = ACTIONS(1971), - [anon_sym_try] = ACTIONS(1969), - [anon_sym_catch] = ACTIONS(1969), - [anon_sym_return] = ACTIONS(1969), - [anon_sym_source] = ACTIONS(1969), - [anon_sym_source_DASHenv] = ACTIONS(1969), - [anon_sym_register] = ACTIONS(1969), - [anon_sym_hide] = ACTIONS(1969), - [anon_sym_hide_DASHenv] = ACTIONS(1969), - [anon_sym_overlay] = ACTIONS(1969), - [anon_sym_as] = ACTIONS(1969), - [anon_sym_PLUS2] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1971), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1971), - [aux_sym__val_number_decimal_token1] = ACTIONS(1969), - [aux_sym__val_number_decimal_token2] = ACTIONS(1971), - [aux_sym__val_number_decimal_token3] = ACTIONS(1971), - [aux_sym__val_number_decimal_token4] = ACTIONS(1971), - [aux_sym__val_number_token1] = ACTIONS(1971), - [aux_sym__val_number_token2] = ACTIONS(1971), - [aux_sym__val_number_token3] = ACTIONS(1971), - [aux_sym__val_number_token4] = ACTIONS(1969), - [aux_sym__val_number_token5] = ACTIONS(1969), - [aux_sym__val_number_token6] = ACTIONS(1969), - [anon_sym_DQUOTE] = ACTIONS(1971), - [sym__str_single_quotes] = ACTIONS(1971), - [sym__str_back_ticks] = ACTIONS(1971), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1971), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1971), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1971), + [704] = { + [sym_comment] = STATE(704), + [anon_sym_export] = ACTIONS(1885), + [anon_sym_alias] = ACTIONS(1885), + [anon_sym_let] = ACTIONS(1885), + [anon_sym_let_DASHenv] = ACTIONS(1885), + [anon_sym_mut] = ACTIONS(1885), + [anon_sym_const] = ACTIONS(1885), + [aux_sym_cmd_identifier_token1] = ACTIONS(1885), + [aux_sym_cmd_identifier_token2] = ACTIONS(1887), + [aux_sym_cmd_identifier_token3] = ACTIONS(1887), + [aux_sym_cmd_identifier_token4] = ACTIONS(1887), + [aux_sym_cmd_identifier_token5] = ACTIONS(1887), + [aux_sym_cmd_identifier_token6] = ACTIONS(1887), + [aux_sym_cmd_identifier_token7] = ACTIONS(1887), + [aux_sym_cmd_identifier_token8] = ACTIONS(1885), + [aux_sym_cmd_identifier_token9] = ACTIONS(1885), + [aux_sym_cmd_identifier_token10] = ACTIONS(1887), + [aux_sym_cmd_identifier_token11] = ACTIONS(1887), + [aux_sym_cmd_identifier_token12] = ACTIONS(1885), + [aux_sym_cmd_identifier_token13] = ACTIONS(1885), + [aux_sym_cmd_identifier_token14] = ACTIONS(1885), + [aux_sym_cmd_identifier_token15] = ACTIONS(1885), + [aux_sym_cmd_identifier_token16] = ACTIONS(1887), + [aux_sym_cmd_identifier_token17] = ACTIONS(1887), + [aux_sym_cmd_identifier_token18] = ACTIONS(1887), + [aux_sym_cmd_identifier_token19] = ACTIONS(1887), + [aux_sym_cmd_identifier_token20] = ACTIONS(1887), + [aux_sym_cmd_identifier_token21] = ACTIONS(1887), + [aux_sym_cmd_identifier_token22] = ACTIONS(1887), + [aux_sym_cmd_identifier_token23] = ACTIONS(1887), + [aux_sym_cmd_identifier_token24] = ACTIONS(1887), + [aux_sym_cmd_identifier_token25] = ACTIONS(1887), + [aux_sym_cmd_identifier_token26] = ACTIONS(1887), + [aux_sym_cmd_identifier_token27] = ACTIONS(1887), + [aux_sym_cmd_identifier_token28] = ACTIONS(1887), + [aux_sym_cmd_identifier_token29] = ACTIONS(1887), + [aux_sym_cmd_identifier_token30] = ACTIONS(1887), + [aux_sym_cmd_identifier_token31] = ACTIONS(1887), + [aux_sym_cmd_identifier_token32] = ACTIONS(1887), + [aux_sym_cmd_identifier_token33] = ACTIONS(1887), + [aux_sym_cmd_identifier_token34] = ACTIONS(1885), + [aux_sym_cmd_identifier_token35] = ACTIONS(1887), + [aux_sym_cmd_identifier_token36] = ACTIONS(1887), + [aux_sym_cmd_identifier_token37] = ACTIONS(1887), + [aux_sym_cmd_identifier_token38] = ACTIONS(1885), + [aux_sym_cmd_identifier_token39] = ACTIONS(1887), + [aux_sym_cmd_identifier_token40] = ACTIONS(1887), + [anon_sym_def] = ACTIONS(1885), + [anon_sym_export_DASHenv] = ACTIONS(1885), + [anon_sym_extern] = ACTIONS(1885), + [anon_sym_module] = ACTIONS(1885), + [anon_sym_use] = ACTIONS(1885), + [anon_sym_LPAREN] = ACTIONS(1887), + [anon_sym_COMMA] = ACTIONS(1887), + [anon_sym_DOLLAR] = ACTIONS(1885), + [anon_sym_error] = ACTIONS(1885), + [anon_sym_DASH2] = ACTIONS(1885), + [anon_sym_break] = ACTIONS(1885), + [anon_sym_continue] = ACTIONS(1885), + [anon_sym_for] = ACTIONS(1885), + [anon_sym_in2] = ACTIONS(1885), + [anon_sym_loop] = ACTIONS(1885), + [anon_sym_make] = ACTIONS(1885), + [anon_sym_while] = ACTIONS(1885), + [anon_sym_do] = ACTIONS(1885), + [anon_sym_if] = ACTIONS(1885), + [anon_sym_else] = ACTIONS(1885), + [anon_sym_match] = ACTIONS(1885), + [anon_sym_RBRACE] = ACTIONS(1887), + [anon_sym_try] = ACTIONS(1885), + [anon_sym_catch] = ACTIONS(1885), + [anon_sym_return] = ACTIONS(1885), + [anon_sym_source] = ACTIONS(1885), + [anon_sym_source_DASHenv] = ACTIONS(1885), + [anon_sym_hide] = ACTIONS(1885), + [anon_sym_hide_DASHenv] = ACTIONS(1885), + [anon_sym_overlay] = ACTIONS(1885), + [anon_sym_as] = ACTIONS(1885), + [anon_sym_PLUS2] = ACTIONS(1885), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1887), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1887), + [aux_sym__val_number_decimal_token1] = ACTIONS(1885), + [aux_sym__val_number_decimal_token2] = ACTIONS(1887), + [aux_sym__val_number_decimal_token3] = ACTIONS(1887), + [aux_sym__val_number_decimal_token4] = ACTIONS(1887), + [aux_sym__val_number_token1] = ACTIONS(1887), + [aux_sym__val_number_token2] = ACTIONS(1887), + [aux_sym__val_number_token3] = ACTIONS(1887), + [aux_sym__val_number_token4] = ACTIONS(1885), + [aux_sym__val_number_token5] = ACTIONS(1885), + [aux_sym__val_number_token6] = ACTIONS(1885), + [anon_sym_DQUOTE] = ACTIONS(1887), + [sym__str_single_quotes] = ACTIONS(1887), + [sym__str_back_ticks] = ACTIONS(1887), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1887), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1887), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1887), + [anon_sym_register] = ACTIONS(1885), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1887), }, - [735] = { - [sym_comment] = STATE(735), + [705] = { + [sym_comment] = STATE(705), + [anon_sym_export] = ACTIONS(2314), + [anon_sym_alias] = ACTIONS(2314), + [anon_sym_let] = ACTIONS(2314), + [anon_sym_let_DASHenv] = ACTIONS(2314), + [anon_sym_mut] = ACTIONS(2314), + [anon_sym_const] = ACTIONS(2314), + [aux_sym_cmd_identifier_token1] = ACTIONS(2314), + [aux_sym_cmd_identifier_token2] = ACTIONS(2316), + [aux_sym_cmd_identifier_token3] = ACTIONS(2316), + [aux_sym_cmd_identifier_token4] = ACTIONS(2316), + [aux_sym_cmd_identifier_token5] = ACTIONS(2316), + [aux_sym_cmd_identifier_token6] = ACTIONS(2316), + [aux_sym_cmd_identifier_token7] = ACTIONS(2316), + [aux_sym_cmd_identifier_token8] = ACTIONS(2314), + [aux_sym_cmd_identifier_token9] = ACTIONS(2314), + [aux_sym_cmd_identifier_token10] = ACTIONS(2316), + [aux_sym_cmd_identifier_token11] = ACTIONS(2316), + [aux_sym_cmd_identifier_token12] = ACTIONS(2314), + [aux_sym_cmd_identifier_token13] = ACTIONS(2314), + [aux_sym_cmd_identifier_token14] = ACTIONS(2314), + [aux_sym_cmd_identifier_token15] = ACTIONS(2314), + [aux_sym_cmd_identifier_token16] = ACTIONS(2316), + [aux_sym_cmd_identifier_token17] = ACTIONS(2316), + [aux_sym_cmd_identifier_token18] = ACTIONS(2316), + [aux_sym_cmd_identifier_token19] = ACTIONS(2316), + [aux_sym_cmd_identifier_token20] = ACTIONS(2316), + [aux_sym_cmd_identifier_token21] = ACTIONS(2316), + [aux_sym_cmd_identifier_token22] = ACTIONS(2316), + [aux_sym_cmd_identifier_token23] = ACTIONS(2316), + [aux_sym_cmd_identifier_token24] = ACTIONS(2316), + [aux_sym_cmd_identifier_token25] = ACTIONS(2316), + [aux_sym_cmd_identifier_token26] = ACTIONS(2316), + [aux_sym_cmd_identifier_token27] = ACTIONS(2316), + [aux_sym_cmd_identifier_token28] = ACTIONS(2316), + [aux_sym_cmd_identifier_token29] = ACTIONS(2316), + [aux_sym_cmd_identifier_token30] = ACTIONS(2316), + [aux_sym_cmd_identifier_token31] = ACTIONS(2316), + [aux_sym_cmd_identifier_token32] = ACTIONS(2316), + [aux_sym_cmd_identifier_token33] = ACTIONS(2316), + [aux_sym_cmd_identifier_token34] = ACTIONS(2314), + [aux_sym_cmd_identifier_token35] = ACTIONS(2316), + [aux_sym_cmd_identifier_token36] = ACTIONS(2316), + [aux_sym_cmd_identifier_token37] = ACTIONS(2316), + [aux_sym_cmd_identifier_token38] = ACTIONS(2314), + [aux_sym_cmd_identifier_token39] = ACTIONS(2316), + [aux_sym_cmd_identifier_token40] = ACTIONS(2316), + [anon_sym_def] = ACTIONS(2314), + [anon_sym_export_DASHenv] = ACTIONS(2314), + [anon_sym_extern] = ACTIONS(2314), + [anon_sym_module] = ACTIONS(2314), + [anon_sym_use] = ACTIONS(2314), + [anon_sym_LPAREN] = ACTIONS(2316), + [anon_sym_COMMA] = ACTIONS(2316), + [anon_sym_DOLLAR] = ACTIONS(2314), + [anon_sym_error] = ACTIONS(2314), + [anon_sym_DASH2] = ACTIONS(2314), + [anon_sym_break] = ACTIONS(2314), + [anon_sym_continue] = ACTIONS(2314), + [anon_sym_for] = ACTIONS(2314), + [anon_sym_in2] = ACTIONS(2314), + [anon_sym_loop] = ACTIONS(2314), + [anon_sym_make] = ACTIONS(2314), + [anon_sym_while] = ACTIONS(2314), + [anon_sym_do] = ACTIONS(2314), + [anon_sym_if] = ACTIONS(2314), + [anon_sym_else] = ACTIONS(2314), + [anon_sym_match] = ACTIONS(2314), + [anon_sym_RBRACE] = ACTIONS(2316), + [anon_sym_try] = ACTIONS(2314), + [anon_sym_catch] = ACTIONS(2314), + [anon_sym_return] = ACTIONS(2314), + [anon_sym_source] = ACTIONS(2314), + [anon_sym_source_DASHenv] = ACTIONS(2314), + [anon_sym_hide] = ACTIONS(2314), + [anon_sym_hide_DASHenv] = ACTIONS(2314), + [anon_sym_overlay] = ACTIONS(2314), + [anon_sym_as] = ACTIONS(2314), + [anon_sym_PLUS2] = ACTIONS(2314), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2316), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2316), + [aux_sym__val_number_decimal_token1] = ACTIONS(2314), + [aux_sym__val_number_decimal_token2] = ACTIONS(2316), + [aux_sym__val_number_decimal_token3] = ACTIONS(2316), + [aux_sym__val_number_decimal_token4] = ACTIONS(2316), + [aux_sym__val_number_token1] = ACTIONS(2316), + [aux_sym__val_number_token2] = ACTIONS(2316), + [aux_sym__val_number_token3] = ACTIONS(2316), + [aux_sym__val_number_token4] = ACTIONS(2314), + [aux_sym__val_number_token5] = ACTIONS(2314), + [aux_sym__val_number_token6] = ACTIONS(2314), + [anon_sym_DQUOTE] = ACTIONS(2316), + [sym__str_single_quotes] = ACTIONS(2316), + [sym__str_back_ticks] = ACTIONS(2316), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2316), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2316), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2316), + [anon_sym_register] = ACTIONS(2314), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2316), + }, + [706] = { + [sym_comment] = STATE(706), + [anon_sym_export] = ACTIONS(2330), + [anon_sym_alias] = ACTIONS(2330), + [anon_sym_let] = ACTIONS(2330), + [anon_sym_let_DASHenv] = ACTIONS(2330), + [anon_sym_mut] = ACTIONS(2330), + [anon_sym_const] = ACTIONS(2330), + [aux_sym_cmd_identifier_token1] = ACTIONS(2330), + [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(2330), + [aux_sym_cmd_identifier_token9] = ACTIONS(2330), + [aux_sym_cmd_identifier_token10] = ACTIONS(2332), + [aux_sym_cmd_identifier_token11] = ACTIONS(2332), + [aux_sym_cmd_identifier_token12] = ACTIONS(2330), + [aux_sym_cmd_identifier_token13] = ACTIONS(2330), + [aux_sym_cmd_identifier_token14] = ACTIONS(2330), + [aux_sym_cmd_identifier_token15] = ACTIONS(2330), + [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(2330), + [aux_sym_cmd_identifier_token35] = ACTIONS(2332), + [aux_sym_cmd_identifier_token36] = ACTIONS(2332), + [aux_sym_cmd_identifier_token37] = ACTIONS(2332), + [aux_sym_cmd_identifier_token38] = ACTIONS(2330), + [aux_sym_cmd_identifier_token39] = ACTIONS(2332), + [aux_sym_cmd_identifier_token40] = ACTIONS(2332), + [anon_sym_def] = ACTIONS(2330), + [anon_sym_export_DASHenv] = ACTIONS(2330), + [anon_sym_extern] = ACTIONS(2330), + [anon_sym_module] = ACTIONS(2330), + [anon_sym_use] = ACTIONS(2330), + [anon_sym_LPAREN] = ACTIONS(2332), + [anon_sym_COMMA] = ACTIONS(2332), + [anon_sym_DOLLAR] = ACTIONS(2330), + [anon_sym_error] = ACTIONS(2330), + [anon_sym_DASH2] = ACTIONS(2330), + [anon_sym_break] = ACTIONS(2330), + [anon_sym_continue] = ACTIONS(2330), + [anon_sym_for] = ACTIONS(2330), + [anon_sym_in2] = ACTIONS(2330), + [anon_sym_loop] = ACTIONS(2330), + [anon_sym_make] = ACTIONS(2330), + [anon_sym_while] = ACTIONS(2330), + [anon_sym_do] = ACTIONS(2330), + [anon_sym_if] = ACTIONS(2330), + [anon_sym_else] = ACTIONS(2330), + [anon_sym_match] = ACTIONS(2330), + [anon_sym_RBRACE] = ACTIONS(2332), + [anon_sym_try] = ACTIONS(2330), + [anon_sym_catch] = ACTIONS(2330), + [anon_sym_return] = ACTIONS(2330), + [anon_sym_source] = ACTIONS(2330), + [anon_sym_source_DASHenv] = ACTIONS(2330), + [anon_sym_hide] = ACTIONS(2330), + [anon_sym_hide_DASHenv] = ACTIONS(2330), + [anon_sym_overlay] = ACTIONS(2330), + [anon_sym_as] = ACTIONS(2330), + [anon_sym_PLUS2] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2332), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2332), + [aux_sym__val_number_decimal_token1] = ACTIONS(2330), + [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), + [aux_sym__val_number_token4] = ACTIONS(2330), + [aux_sym__val_number_token5] = ACTIONS(2330), + [aux_sym__val_number_token6] = ACTIONS(2330), + [anon_sym_DQUOTE] = ACTIONS(2332), + [sym__str_single_quotes] = ACTIONS(2332), + [sym__str_back_ticks] = ACTIONS(2332), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2332), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2332), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2332), + [anon_sym_register] = ACTIONS(2330), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2332), + }, + [707] = { + [sym_comment] = STATE(707), + [anon_sym_export] = ACTIONS(1889), + [anon_sym_alias] = ACTIONS(1889), + [anon_sym_let] = ACTIONS(1889), + [anon_sym_let_DASHenv] = ACTIONS(1889), + [anon_sym_mut] = ACTIONS(1889), + [anon_sym_const] = ACTIONS(1889), + [aux_sym_cmd_identifier_token1] = ACTIONS(1889), + [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(1889), + [aux_sym_cmd_identifier_token9] = ACTIONS(1889), + [aux_sym_cmd_identifier_token10] = ACTIONS(1891), + [aux_sym_cmd_identifier_token11] = ACTIONS(1891), + [aux_sym_cmd_identifier_token12] = ACTIONS(1889), + [aux_sym_cmd_identifier_token13] = ACTIONS(1889), + [aux_sym_cmd_identifier_token14] = ACTIONS(1889), + [aux_sym_cmd_identifier_token15] = ACTIONS(1889), + [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(1889), + [aux_sym_cmd_identifier_token35] = ACTIONS(1891), + [aux_sym_cmd_identifier_token36] = ACTIONS(1891), + [aux_sym_cmd_identifier_token37] = ACTIONS(1891), + [aux_sym_cmd_identifier_token38] = ACTIONS(1889), + [aux_sym_cmd_identifier_token39] = ACTIONS(1891), + [aux_sym_cmd_identifier_token40] = ACTIONS(1891), + [anon_sym_def] = ACTIONS(1889), + [anon_sym_export_DASHenv] = ACTIONS(1889), + [anon_sym_extern] = ACTIONS(1889), + [anon_sym_module] = ACTIONS(1889), + [anon_sym_use] = ACTIONS(1889), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_COMMA] = ACTIONS(1891), + [anon_sym_DOLLAR] = ACTIONS(1889), + [anon_sym_error] = ACTIONS(1889), + [anon_sym_DASH2] = ACTIONS(1889), + [anon_sym_break] = ACTIONS(1889), + [anon_sym_continue] = ACTIONS(1889), + [anon_sym_for] = ACTIONS(1889), + [anon_sym_in2] = ACTIONS(1889), + [anon_sym_loop] = ACTIONS(1889), + [anon_sym_make] = ACTIONS(1889), + [anon_sym_while] = ACTIONS(1889), + [anon_sym_do] = ACTIONS(1889), + [anon_sym_if] = ACTIONS(1889), + [anon_sym_else] = ACTIONS(1889), + [anon_sym_match] = ACTIONS(1889), + [anon_sym_RBRACE] = ACTIONS(1891), + [anon_sym_try] = ACTIONS(1889), + [anon_sym_catch] = ACTIONS(1889), + [anon_sym_return] = ACTIONS(1889), + [anon_sym_source] = ACTIONS(1889), + [anon_sym_source_DASHenv] = ACTIONS(1889), + [anon_sym_hide] = ACTIONS(1889), + [anon_sym_hide_DASHenv] = ACTIONS(1889), + [anon_sym_overlay] = ACTIONS(1889), + [anon_sym_as] = ACTIONS(1889), + [anon_sym_PLUS2] = ACTIONS(1889), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1891), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1891), + [aux_sym__val_number_decimal_token1] = ACTIONS(1889), + [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), + [aux_sym__val_number_token4] = ACTIONS(1889), + [aux_sym__val_number_token5] = ACTIONS(1889), + [aux_sym__val_number_token6] = ACTIONS(1889), + [anon_sym_DQUOTE] = ACTIONS(1891), + [sym__str_single_quotes] = ACTIONS(1891), + [sym__str_back_ticks] = ACTIONS(1891), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1891), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1891), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1891), + [anon_sym_register] = ACTIONS(1889), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1891), + }, + [708] = { + [sym_comment] = STATE(708), + [anon_sym_export] = ACTIONS(1901), + [anon_sym_alias] = ACTIONS(1901), + [anon_sym_let] = ACTIONS(1901), + [anon_sym_let_DASHenv] = ACTIONS(1901), + [anon_sym_mut] = ACTIONS(1901), + [anon_sym_const] = ACTIONS(1901), + [aux_sym_cmd_identifier_token1] = ACTIONS(1901), + [aux_sym_cmd_identifier_token2] = ACTIONS(1903), + [aux_sym_cmd_identifier_token3] = ACTIONS(1903), + [aux_sym_cmd_identifier_token4] = ACTIONS(1903), + [aux_sym_cmd_identifier_token5] = ACTIONS(1903), + [aux_sym_cmd_identifier_token6] = ACTIONS(1903), + [aux_sym_cmd_identifier_token7] = ACTIONS(1903), + [aux_sym_cmd_identifier_token8] = ACTIONS(1901), + [aux_sym_cmd_identifier_token9] = ACTIONS(1901), + [aux_sym_cmd_identifier_token10] = ACTIONS(1903), + [aux_sym_cmd_identifier_token11] = ACTIONS(1903), + [aux_sym_cmd_identifier_token12] = ACTIONS(1901), + [aux_sym_cmd_identifier_token13] = ACTIONS(1901), + [aux_sym_cmd_identifier_token14] = ACTIONS(1901), + [aux_sym_cmd_identifier_token15] = ACTIONS(1901), + [aux_sym_cmd_identifier_token16] = ACTIONS(1903), + [aux_sym_cmd_identifier_token17] = ACTIONS(1903), + [aux_sym_cmd_identifier_token18] = ACTIONS(1903), + [aux_sym_cmd_identifier_token19] = ACTIONS(1903), + [aux_sym_cmd_identifier_token20] = ACTIONS(1903), + [aux_sym_cmd_identifier_token21] = ACTIONS(1903), + [aux_sym_cmd_identifier_token22] = ACTIONS(1903), + [aux_sym_cmd_identifier_token23] = ACTIONS(1903), + [aux_sym_cmd_identifier_token24] = ACTIONS(1903), + [aux_sym_cmd_identifier_token25] = ACTIONS(1903), + [aux_sym_cmd_identifier_token26] = ACTIONS(1903), + [aux_sym_cmd_identifier_token27] = ACTIONS(1903), + [aux_sym_cmd_identifier_token28] = ACTIONS(1903), + [aux_sym_cmd_identifier_token29] = ACTIONS(1903), + [aux_sym_cmd_identifier_token30] = ACTIONS(1903), + [aux_sym_cmd_identifier_token31] = ACTIONS(1903), + [aux_sym_cmd_identifier_token32] = ACTIONS(1903), + [aux_sym_cmd_identifier_token33] = ACTIONS(1903), + [aux_sym_cmd_identifier_token34] = ACTIONS(1901), + [aux_sym_cmd_identifier_token35] = ACTIONS(1903), + [aux_sym_cmd_identifier_token36] = ACTIONS(1903), + [aux_sym_cmd_identifier_token37] = ACTIONS(1903), + [aux_sym_cmd_identifier_token38] = ACTIONS(1901), + [aux_sym_cmd_identifier_token39] = ACTIONS(1903), + [aux_sym_cmd_identifier_token40] = ACTIONS(1903), + [anon_sym_def] = ACTIONS(1901), + [anon_sym_export_DASHenv] = ACTIONS(1901), + [anon_sym_extern] = ACTIONS(1901), + [anon_sym_module] = ACTIONS(1901), + [anon_sym_use] = ACTIONS(1901), + [anon_sym_LPAREN] = ACTIONS(1903), + [anon_sym_COMMA] = ACTIONS(1903), + [anon_sym_DOLLAR] = ACTIONS(1901), + [anon_sym_error] = ACTIONS(1901), + [anon_sym_DASH2] = ACTIONS(1901), + [anon_sym_break] = ACTIONS(1901), + [anon_sym_continue] = ACTIONS(1901), + [anon_sym_for] = ACTIONS(1901), + [anon_sym_in2] = ACTIONS(1901), + [anon_sym_loop] = ACTIONS(1901), + [anon_sym_make] = ACTIONS(1901), + [anon_sym_while] = ACTIONS(1901), + [anon_sym_do] = ACTIONS(1901), + [anon_sym_if] = ACTIONS(1901), + [anon_sym_else] = ACTIONS(1901), + [anon_sym_match] = ACTIONS(1901), + [anon_sym_RBRACE] = ACTIONS(1903), + [anon_sym_try] = ACTIONS(1901), + [anon_sym_catch] = ACTIONS(1901), + [anon_sym_return] = ACTIONS(1901), + [anon_sym_source] = ACTIONS(1901), + [anon_sym_source_DASHenv] = ACTIONS(1901), + [anon_sym_hide] = ACTIONS(1901), + [anon_sym_hide_DASHenv] = ACTIONS(1901), + [anon_sym_overlay] = ACTIONS(1901), + [anon_sym_as] = ACTIONS(1901), + [anon_sym_PLUS2] = ACTIONS(1901), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1903), + [aux_sym__val_number_decimal_token1] = ACTIONS(1901), + [aux_sym__val_number_decimal_token2] = ACTIONS(1903), + [aux_sym__val_number_decimal_token3] = ACTIONS(1903), + [aux_sym__val_number_decimal_token4] = ACTIONS(1903), + [aux_sym__val_number_token1] = ACTIONS(1903), + [aux_sym__val_number_token2] = ACTIONS(1903), + [aux_sym__val_number_token3] = ACTIONS(1903), + [aux_sym__val_number_token4] = ACTIONS(1901), + [aux_sym__val_number_token5] = ACTIONS(1901), + [aux_sym__val_number_token6] = ACTIONS(1901), + [anon_sym_DQUOTE] = ACTIONS(1903), + [sym__str_single_quotes] = ACTIONS(1903), + [sym__str_back_ticks] = ACTIONS(1903), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1903), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1903), + [anon_sym_register] = ACTIONS(1901), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1903), + }, + [709] = { + [sym_comment] = STATE(709), + [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(2391), + [aux_sym_cmd_identifier_token3] = ACTIONS(2391), + [aux_sym_cmd_identifier_token4] = ACTIONS(2391), + [aux_sym_cmd_identifier_token5] = ACTIONS(2391), + [aux_sym_cmd_identifier_token6] = ACTIONS(2391), + [aux_sym_cmd_identifier_token7] = ACTIONS(2391), + [aux_sym_cmd_identifier_token8] = ACTIONS(2389), + [aux_sym_cmd_identifier_token9] = ACTIONS(2389), + [aux_sym_cmd_identifier_token10] = ACTIONS(2391), + [aux_sym_cmd_identifier_token11] = ACTIONS(2391), + [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(2391), + [aux_sym_cmd_identifier_token17] = ACTIONS(2391), + [aux_sym_cmd_identifier_token18] = ACTIONS(2391), + [aux_sym_cmd_identifier_token19] = ACTIONS(2391), + [aux_sym_cmd_identifier_token20] = ACTIONS(2391), + [aux_sym_cmd_identifier_token21] = ACTIONS(2391), + [aux_sym_cmd_identifier_token22] = ACTIONS(2391), + [aux_sym_cmd_identifier_token23] = ACTIONS(2391), + [aux_sym_cmd_identifier_token24] = ACTIONS(2391), + [aux_sym_cmd_identifier_token25] = ACTIONS(2391), + [aux_sym_cmd_identifier_token26] = ACTIONS(2391), + [aux_sym_cmd_identifier_token27] = ACTIONS(2391), + [aux_sym_cmd_identifier_token28] = ACTIONS(2391), + [aux_sym_cmd_identifier_token29] = ACTIONS(2391), + [aux_sym_cmd_identifier_token30] = ACTIONS(2391), + [aux_sym_cmd_identifier_token31] = ACTIONS(2391), + [aux_sym_cmd_identifier_token32] = ACTIONS(2391), + [aux_sym_cmd_identifier_token33] = ACTIONS(2391), + [aux_sym_cmd_identifier_token34] = ACTIONS(2389), + [aux_sym_cmd_identifier_token35] = ACTIONS(2391), + [aux_sym_cmd_identifier_token36] = ACTIONS(2391), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(2391), + [anon_sym_DOLLAR] = ACTIONS(2389), + [anon_sym_error] = ACTIONS(2389), + [anon_sym_DASH2] = ACTIONS(2389), + [anon_sym_break] = ACTIONS(2389), + [anon_sym_continue] = ACTIONS(2389), + [anon_sym_for] = ACTIONS(2389), + [anon_sym_in2] = 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_hide] = ACTIONS(2389), + [anon_sym_hide_DASHenv] = ACTIONS(2389), + [anon_sym_overlay] = ACTIONS(2389), + [anon_sym_as] = ACTIONS(2389), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2389), + [aux_sym__val_number_token5] = ACTIONS(2389), + [aux_sym__val_number_token6] = ACTIONS(2389), + [anon_sym_DQUOTE] = ACTIONS(2391), + [sym__str_single_quotes] = ACTIONS(2391), + [sym__str_back_ticks] = ACTIONS(2391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2391), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2391), + [anon_sym_register] = ACTIONS(2389), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2391), + }, + [710] = { + [sym_comment] = STATE(710), + [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(2447), + [aux_sym_cmd_identifier_token3] = ACTIONS(2447), + [aux_sym_cmd_identifier_token4] = ACTIONS(2447), + [aux_sym_cmd_identifier_token5] = ACTIONS(2447), + [aux_sym_cmd_identifier_token6] = ACTIONS(2447), + [aux_sym_cmd_identifier_token7] = ACTIONS(2447), + [aux_sym_cmd_identifier_token8] = ACTIONS(2445), + [aux_sym_cmd_identifier_token9] = ACTIONS(2445), + [aux_sym_cmd_identifier_token10] = ACTIONS(2447), + [aux_sym_cmd_identifier_token11] = ACTIONS(2447), + [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(2447), + [aux_sym_cmd_identifier_token17] = ACTIONS(2447), + [aux_sym_cmd_identifier_token18] = ACTIONS(2447), + [aux_sym_cmd_identifier_token19] = ACTIONS(2447), + [aux_sym_cmd_identifier_token20] = ACTIONS(2447), + [aux_sym_cmd_identifier_token21] = ACTIONS(2447), + [aux_sym_cmd_identifier_token22] = ACTIONS(2447), + [aux_sym_cmd_identifier_token23] = ACTIONS(2447), + [aux_sym_cmd_identifier_token24] = ACTIONS(2447), + [aux_sym_cmd_identifier_token25] = ACTIONS(2447), + [aux_sym_cmd_identifier_token26] = ACTIONS(2447), + [aux_sym_cmd_identifier_token27] = ACTIONS(2447), + [aux_sym_cmd_identifier_token28] = ACTIONS(2447), + [aux_sym_cmd_identifier_token29] = ACTIONS(2447), + [aux_sym_cmd_identifier_token30] = ACTIONS(2447), + [aux_sym_cmd_identifier_token31] = ACTIONS(2447), + [aux_sym_cmd_identifier_token32] = ACTIONS(2447), + [aux_sym_cmd_identifier_token33] = ACTIONS(2447), + [aux_sym_cmd_identifier_token34] = ACTIONS(2445), + [aux_sym_cmd_identifier_token35] = ACTIONS(2447), + [aux_sym_cmd_identifier_token36] = ACTIONS(2447), + [aux_sym_cmd_identifier_token37] = ACTIONS(2447), + [aux_sym_cmd_identifier_token38] = ACTIONS(2445), + [aux_sym_cmd_identifier_token39] = ACTIONS(2447), + [aux_sym_cmd_identifier_token40] = ACTIONS(2447), + [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(2447), + [anon_sym_COMMA] = ACTIONS(2447), + [anon_sym_DOLLAR] = ACTIONS(2445), + [anon_sym_error] = ACTIONS(2445), + [anon_sym_DASH2] = ACTIONS(2445), + [anon_sym_break] = ACTIONS(2445), + [anon_sym_continue] = ACTIONS(2445), + [anon_sym_for] = ACTIONS(2445), + [anon_sym_in2] = 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(2447), + [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_hide] = ACTIONS(2445), + [anon_sym_hide_DASHenv] = ACTIONS(2445), + [anon_sym_overlay] = ACTIONS(2445), + [anon_sym_as] = ACTIONS(2445), + [anon_sym_PLUS2] = ACTIONS(2445), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2447), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2447), + [aux_sym__val_number_decimal_token1] = ACTIONS(2445), + [aux_sym__val_number_decimal_token2] = ACTIONS(2447), + [aux_sym__val_number_decimal_token3] = ACTIONS(2447), + [aux_sym__val_number_decimal_token4] = ACTIONS(2447), + [aux_sym__val_number_token1] = ACTIONS(2447), + [aux_sym__val_number_token2] = ACTIONS(2447), + [aux_sym__val_number_token3] = ACTIONS(2447), + [aux_sym__val_number_token4] = ACTIONS(2445), + [aux_sym__val_number_token5] = ACTIONS(2445), + [aux_sym__val_number_token6] = ACTIONS(2445), + [anon_sym_DQUOTE] = ACTIONS(2447), + [sym__str_single_quotes] = ACTIONS(2447), + [sym__str_back_ticks] = ACTIONS(2447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2447), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2447), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2447), + [anon_sym_register] = ACTIONS(2445), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2447), + }, + [711] = { + [sym_comment] = STATE(711), + [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(2395), + [aux_sym_cmd_identifier_token3] = ACTIONS(2395), + [aux_sym_cmd_identifier_token4] = ACTIONS(2395), + [aux_sym_cmd_identifier_token5] = ACTIONS(2395), + [aux_sym_cmd_identifier_token6] = ACTIONS(2395), + [aux_sym_cmd_identifier_token7] = ACTIONS(2395), + [aux_sym_cmd_identifier_token8] = ACTIONS(2393), + [aux_sym_cmd_identifier_token9] = ACTIONS(2393), + [aux_sym_cmd_identifier_token10] = ACTIONS(2395), + [aux_sym_cmd_identifier_token11] = ACTIONS(2395), + [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(2395), + [aux_sym_cmd_identifier_token17] = ACTIONS(2395), + [aux_sym_cmd_identifier_token18] = ACTIONS(2395), + [aux_sym_cmd_identifier_token19] = ACTIONS(2395), + [aux_sym_cmd_identifier_token20] = ACTIONS(2395), + [aux_sym_cmd_identifier_token21] = ACTIONS(2395), + [aux_sym_cmd_identifier_token22] = ACTIONS(2395), + [aux_sym_cmd_identifier_token23] = ACTIONS(2395), + [aux_sym_cmd_identifier_token24] = ACTIONS(2395), + [aux_sym_cmd_identifier_token25] = ACTIONS(2395), + [aux_sym_cmd_identifier_token26] = ACTIONS(2395), + [aux_sym_cmd_identifier_token27] = ACTIONS(2395), + [aux_sym_cmd_identifier_token28] = ACTIONS(2395), + [aux_sym_cmd_identifier_token29] = ACTIONS(2395), + [aux_sym_cmd_identifier_token30] = ACTIONS(2395), + [aux_sym_cmd_identifier_token31] = ACTIONS(2395), + [aux_sym_cmd_identifier_token32] = ACTIONS(2395), + [aux_sym_cmd_identifier_token33] = ACTIONS(2395), + [aux_sym_cmd_identifier_token34] = ACTIONS(2393), + [aux_sym_cmd_identifier_token35] = ACTIONS(2395), + [aux_sym_cmd_identifier_token36] = ACTIONS(2395), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(2395), + [anon_sym_DOLLAR] = ACTIONS(2393), + [anon_sym_error] = ACTIONS(2393), + [anon_sym_DASH2] = ACTIONS(2393), + [anon_sym_break] = ACTIONS(2393), + [anon_sym_continue] = ACTIONS(2393), + [anon_sym_for] = ACTIONS(2393), + [anon_sym_in2] = 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_hide] = ACTIONS(2393), + [anon_sym_hide_DASHenv] = ACTIONS(2393), + [anon_sym_overlay] = ACTIONS(2393), + [anon_sym_as] = ACTIONS(2393), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2393), + [aux_sym__val_number_token5] = ACTIONS(2393), + [aux_sym__val_number_token6] = ACTIONS(2393), + [anon_sym_DQUOTE] = ACTIONS(2395), + [sym__str_single_quotes] = ACTIONS(2395), + [sym__str_back_ticks] = ACTIONS(2395), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2395), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2395), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2393), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2395), + }, + [712] = { + [sym_comment] = STATE(712), + [anon_sym_export] = ACTIONS(2385), + [anon_sym_alias] = ACTIONS(2385), + [anon_sym_let] = ACTIONS(2385), + [anon_sym_let_DASHenv] = ACTIONS(2385), + [anon_sym_mut] = ACTIONS(2385), + [anon_sym_const] = ACTIONS(2385), + [aux_sym_cmd_identifier_token1] = ACTIONS(2385), + [aux_sym_cmd_identifier_token2] = ACTIONS(2387), + [aux_sym_cmd_identifier_token3] = ACTIONS(2387), + [aux_sym_cmd_identifier_token4] = ACTIONS(2387), + [aux_sym_cmd_identifier_token5] = ACTIONS(2387), + [aux_sym_cmd_identifier_token6] = ACTIONS(2387), + [aux_sym_cmd_identifier_token7] = ACTIONS(2387), + [aux_sym_cmd_identifier_token8] = ACTIONS(2385), + [aux_sym_cmd_identifier_token9] = ACTIONS(2385), + [aux_sym_cmd_identifier_token10] = ACTIONS(2387), + [aux_sym_cmd_identifier_token11] = ACTIONS(2387), + [aux_sym_cmd_identifier_token12] = ACTIONS(2385), + [aux_sym_cmd_identifier_token13] = ACTIONS(2385), + [aux_sym_cmd_identifier_token14] = ACTIONS(2385), + [aux_sym_cmd_identifier_token15] = ACTIONS(2385), + [aux_sym_cmd_identifier_token16] = ACTIONS(2387), + [aux_sym_cmd_identifier_token17] = ACTIONS(2387), + [aux_sym_cmd_identifier_token18] = ACTIONS(2387), + [aux_sym_cmd_identifier_token19] = ACTIONS(2387), + [aux_sym_cmd_identifier_token20] = ACTIONS(2387), + [aux_sym_cmd_identifier_token21] = ACTIONS(2387), + [aux_sym_cmd_identifier_token22] = ACTIONS(2387), + [aux_sym_cmd_identifier_token23] = ACTIONS(2387), + [aux_sym_cmd_identifier_token24] = ACTIONS(2387), + [aux_sym_cmd_identifier_token25] = ACTIONS(2387), + [aux_sym_cmd_identifier_token26] = ACTIONS(2387), + [aux_sym_cmd_identifier_token27] = ACTIONS(2387), + [aux_sym_cmd_identifier_token28] = ACTIONS(2387), + [aux_sym_cmd_identifier_token29] = ACTIONS(2387), + [aux_sym_cmd_identifier_token30] = ACTIONS(2387), + [aux_sym_cmd_identifier_token31] = ACTIONS(2387), + [aux_sym_cmd_identifier_token32] = ACTIONS(2387), + [aux_sym_cmd_identifier_token33] = ACTIONS(2387), + [aux_sym_cmd_identifier_token34] = ACTIONS(2385), + [aux_sym_cmd_identifier_token35] = ACTIONS(2387), + [aux_sym_cmd_identifier_token36] = ACTIONS(2387), + [aux_sym_cmd_identifier_token37] = ACTIONS(2387), + [aux_sym_cmd_identifier_token38] = ACTIONS(2385), + [aux_sym_cmd_identifier_token39] = ACTIONS(2387), + [aux_sym_cmd_identifier_token40] = ACTIONS(2387), + [anon_sym_def] = ACTIONS(2385), + [anon_sym_export_DASHenv] = ACTIONS(2385), + [anon_sym_extern] = ACTIONS(2385), + [anon_sym_module] = ACTIONS(2385), + [anon_sym_use] = ACTIONS(2385), + [anon_sym_LPAREN] = ACTIONS(2387), + [anon_sym_COMMA] = ACTIONS(2387), + [anon_sym_DOLLAR] = ACTIONS(2385), + [anon_sym_error] = ACTIONS(2385), + [anon_sym_DASH2] = ACTIONS(2385), + [anon_sym_break] = ACTIONS(2385), + [anon_sym_continue] = ACTIONS(2385), + [anon_sym_for] = ACTIONS(2385), + [anon_sym_in2] = ACTIONS(2385), + [anon_sym_loop] = ACTIONS(2385), + [anon_sym_make] = ACTIONS(2385), + [anon_sym_while] = ACTIONS(2385), + [anon_sym_do] = ACTIONS(2385), + [anon_sym_if] = ACTIONS(2385), + [anon_sym_else] = ACTIONS(2385), + [anon_sym_match] = ACTIONS(2385), + [anon_sym_RBRACE] = ACTIONS(2387), + [anon_sym_try] = ACTIONS(2385), + [anon_sym_catch] = ACTIONS(2385), + [anon_sym_return] = ACTIONS(2385), + [anon_sym_source] = ACTIONS(2385), + [anon_sym_source_DASHenv] = ACTIONS(2385), + [anon_sym_hide] = ACTIONS(2385), + [anon_sym_hide_DASHenv] = ACTIONS(2385), + [anon_sym_overlay] = ACTIONS(2385), + [anon_sym_as] = ACTIONS(2385), + [anon_sym_PLUS2] = ACTIONS(2385), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2387), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2387), + [aux_sym__val_number_decimal_token1] = ACTIONS(2385), + [aux_sym__val_number_decimal_token2] = ACTIONS(2387), + [aux_sym__val_number_decimal_token3] = ACTIONS(2387), + [aux_sym__val_number_decimal_token4] = ACTIONS(2387), + [aux_sym__val_number_token1] = ACTIONS(2387), + [aux_sym__val_number_token2] = ACTIONS(2387), + [aux_sym__val_number_token3] = ACTIONS(2387), + [aux_sym__val_number_token4] = ACTIONS(2385), + [aux_sym__val_number_token5] = ACTIONS(2385), + [aux_sym__val_number_token6] = ACTIONS(2385), + [anon_sym_DQUOTE] = ACTIONS(2387), + [sym__str_single_quotes] = ACTIONS(2387), + [sym__str_back_ticks] = ACTIONS(2387), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2387), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2387), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2387), + [anon_sym_register] = ACTIONS(2385), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2387), + }, + [713] = { + [sym_comment] = STATE(713), + [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(2415), + [aux_sym_cmd_identifier_token3] = ACTIONS(2415), + [aux_sym_cmd_identifier_token4] = ACTIONS(2415), + [aux_sym_cmd_identifier_token5] = ACTIONS(2415), + [aux_sym_cmd_identifier_token6] = ACTIONS(2415), + [aux_sym_cmd_identifier_token7] = ACTIONS(2415), + [aux_sym_cmd_identifier_token8] = ACTIONS(2413), + [aux_sym_cmd_identifier_token9] = ACTIONS(2413), + [aux_sym_cmd_identifier_token10] = ACTIONS(2415), + [aux_sym_cmd_identifier_token11] = ACTIONS(2415), + [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(2415), + [aux_sym_cmd_identifier_token17] = ACTIONS(2415), + [aux_sym_cmd_identifier_token18] = ACTIONS(2415), + [aux_sym_cmd_identifier_token19] = ACTIONS(2415), + [aux_sym_cmd_identifier_token20] = ACTIONS(2415), + [aux_sym_cmd_identifier_token21] = ACTIONS(2415), + [aux_sym_cmd_identifier_token22] = ACTIONS(2415), + [aux_sym_cmd_identifier_token23] = ACTIONS(2415), + [aux_sym_cmd_identifier_token24] = ACTIONS(2415), + [aux_sym_cmd_identifier_token25] = ACTIONS(2415), + [aux_sym_cmd_identifier_token26] = ACTIONS(2415), + [aux_sym_cmd_identifier_token27] = ACTIONS(2415), + [aux_sym_cmd_identifier_token28] = ACTIONS(2415), + [aux_sym_cmd_identifier_token29] = ACTIONS(2415), + [aux_sym_cmd_identifier_token30] = ACTIONS(2415), + [aux_sym_cmd_identifier_token31] = ACTIONS(2415), + [aux_sym_cmd_identifier_token32] = ACTIONS(2415), + [aux_sym_cmd_identifier_token33] = ACTIONS(2415), + [aux_sym_cmd_identifier_token34] = ACTIONS(2413), + [aux_sym_cmd_identifier_token35] = ACTIONS(2415), + [aux_sym_cmd_identifier_token36] = ACTIONS(2415), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(2415), + [anon_sym_DOLLAR] = ACTIONS(2413), + [anon_sym_error] = ACTIONS(2413), + [anon_sym_DASH2] = ACTIONS(2413), + [anon_sym_break] = ACTIONS(2413), + [anon_sym_continue] = ACTIONS(2413), + [anon_sym_for] = ACTIONS(2413), + [anon_sym_in2] = 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_hide] = ACTIONS(2413), + [anon_sym_hide_DASHenv] = ACTIONS(2413), + [anon_sym_overlay] = ACTIONS(2413), + [anon_sym_as] = ACTIONS(2413), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2413), + [aux_sym__val_number_token5] = ACTIONS(2413), + [aux_sym__val_number_token6] = ACTIONS(2413), + [anon_sym_DQUOTE] = ACTIONS(2415), + [sym__str_single_quotes] = ACTIONS(2415), + [sym__str_back_ticks] = ACTIONS(2415), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2415), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2415), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2415), + [anon_sym_register] = ACTIONS(2413), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2415), + }, + [714] = { + [sym_comment] = STATE(714), [anon_sym_export] = ACTIONS(1905), [anon_sym_alias] = ACTIONS(1905), [anon_sym_let] = ACTIONS(1905), @@ -160788,7 +158583,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -160812,1439 +158606,2460 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1907), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1907), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1907), - [anon_sym_POUND] = ACTIONS(251), + [anon_sym_register] = ACTIONS(1905), + [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1907), }, - [736] = { - [sym_comment] = STATE(736), - [anon_sym_export] = ACTIONS(2512), - [anon_sym_alias] = ACTIONS(2512), - [anon_sym_let] = ACTIONS(2512), - [anon_sym_let_DASHenv] = ACTIONS(2512), - [anon_sym_mut] = ACTIONS(2512), - [anon_sym_const] = ACTIONS(2512), - [aux_sym_cmd_identifier_token1] = ACTIONS(2512), - [aux_sym_cmd_identifier_token2] = ACTIONS(2512), - [aux_sym_cmd_identifier_token3] = ACTIONS(2512), - [aux_sym_cmd_identifier_token4] = ACTIONS(2512), - [aux_sym_cmd_identifier_token5] = ACTIONS(2512), - [aux_sym_cmd_identifier_token6] = ACTIONS(2512), - [aux_sym_cmd_identifier_token7] = ACTIONS(2512), - [aux_sym_cmd_identifier_token8] = ACTIONS(2512), - [aux_sym_cmd_identifier_token9] = ACTIONS(2512), - [aux_sym_cmd_identifier_token10] = ACTIONS(2512), - [aux_sym_cmd_identifier_token11] = ACTIONS(2512), - [aux_sym_cmd_identifier_token12] = ACTIONS(2512), - [aux_sym_cmd_identifier_token13] = ACTIONS(2512), - [aux_sym_cmd_identifier_token14] = ACTIONS(2512), - [aux_sym_cmd_identifier_token15] = ACTIONS(2512), - [aux_sym_cmd_identifier_token16] = ACTIONS(2512), - [aux_sym_cmd_identifier_token17] = ACTIONS(2512), - [aux_sym_cmd_identifier_token18] = ACTIONS(2512), - [aux_sym_cmd_identifier_token19] = ACTIONS(2512), - [aux_sym_cmd_identifier_token20] = ACTIONS(2512), - [aux_sym_cmd_identifier_token21] = ACTIONS(2512), - [aux_sym_cmd_identifier_token22] = ACTIONS(2512), - [aux_sym_cmd_identifier_token23] = ACTIONS(2512), - [aux_sym_cmd_identifier_token24] = ACTIONS(2512), - [aux_sym_cmd_identifier_token25] = ACTIONS(2512), - [aux_sym_cmd_identifier_token26] = ACTIONS(2512), - [aux_sym_cmd_identifier_token27] = ACTIONS(2512), - [aux_sym_cmd_identifier_token28] = ACTIONS(2512), - [aux_sym_cmd_identifier_token29] = ACTIONS(2512), - [aux_sym_cmd_identifier_token30] = ACTIONS(2512), - [aux_sym_cmd_identifier_token31] = ACTIONS(2512), - [aux_sym_cmd_identifier_token32] = ACTIONS(2512), - [aux_sym_cmd_identifier_token33] = ACTIONS(2512), - [aux_sym_cmd_identifier_token34] = ACTIONS(2512), - [aux_sym_cmd_identifier_token35] = ACTIONS(2512), - [aux_sym_cmd_identifier_token36] = ACTIONS(2512), - [aux_sym_cmd_identifier_token37] = ACTIONS(2512), - [aux_sym_cmd_identifier_token38] = ACTIONS(2512), - [aux_sym_cmd_identifier_token39] = ACTIONS(2512), - [aux_sym_cmd_identifier_token40] = ACTIONS(2512), - [anon_sym_def] = ACTIONS(2512), - [anon_sym_export_DASHenv] = ACTIONS(2512), - [anon_sym_extern] = ACTIONS(2512), - [anon_sym_module] = ACTIONS(2512), - [anon_sym_use] = ACTIONS(2512), - [anon_sym_LPAREN] = ACTIONS(2512), - [anon_sym_DOLLAR] = ACTIONS(2512), - [anon_sym_error] = ACTIONS(2512), - [anon_sym_DASH2] = ACTIONS(2512), - [anon_sym_break] = ACTIONS(2512), - [anon_sym_continue] = ACTIONS(2512), - [anon_sym_for] = ACTIONS(2512), - [anon_sym_in2] = ACTIONS(2512), - [anon_sym_loop] = ACTIONS(2512), - [anon_sym_make] = ACTIONS(2512), - [anon_sym_while] = ACTIONS(2512), - [anon_sym_do] = ACTIONS(2512), - [anon_sym_if] = ACTIONS(2512), - [anon_sym_else] = ACTIONS(2512), - [anon_sym_match] = ACTIONS(2512), - [anon_sym_RBRACE] = ACTIONS(2512), - [anon_sym_try] = ACTIONS(2512), - [anon_sym_catch] = ACTIONS(2512), - [anon_sym_return] = ACTIONS(2512), - [anon_sym_source] = ACTIONS(2512), - [anon_sym_source_DASHenv] = ACTIONS(2512), - [anon_sym_register] = ACTIONS(2512), - [anon_sym_hide] = ACTIONS(2512), - [anon_sym_hide_DASHenv] = ACTIONS(2512), - [anon_sym_overlay] = ACTIONS(2512), - [anon_sym_as] = ACTIONS(2512), - [anon_sym_PLUS2] = ACTIONS(2512), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2512), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2512), - [aux_sym__val_number_decimal_token1] = ACTIONS(2512), - [aux_sym__val_number_decimal_token2] = ACTIONS(2512), - [aux_sym__val_number_decimal_token3] = ACTIONS(2512), - [aux_sym__val_number_decimal_token4] = ACTIONS(2512), - [aux_sym__val_number_token1] = ACTIONS(2512), - [aux_sym__val_number_token2] = ACTIONS(2512), - [aux_sym__val_number_token3] = ACTIONS(2512), - [aux_sym__val_number_token4] = ACTIONS(2512), - [aux_sym__val_number_token5] = ACTIONS(2512), - [aux_sym__val_number_token6] = ACTIONS(2512), - [anon_sym_DQUOTE] = ACTIONS(2512), - [sym__str_single_quotes] = ACTIONS(2512), - [sym__str_back_ticks] = ACTIONS(2512), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2512), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2512), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2512), - [sym__entry_separator] = ACTIONS(2514), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2514), + [715] = { + [sym_comment] = STATE(715), + [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(2423), + [aux_sym_cmd_identifier_token3] = ACTIONS(2423), + [aux_sym_cmd_identifier_token4] = ACTIONS(2423), + [aux_sym_cmd_identifier_token5] = ACTIONS(2423), + [aux_sym_cmd_identifier_token6] = ACTIONS(2423), + [aux_sym_cmd_identifier_token7] = ACTIONS(2423), + [aux_sym_cmd_identifier_token8] = ACTIONS(2421), + [aux_sym_cmd_identifier_token9] = ACTIONS(2421), + [aux_sym_cmd_identifier_token10] = ACTIONS(2423), + [aux_sym_cmd_identifier_token11] = ACTIONS(2423), + [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(2423), + [aux_sym_cmd_identifier_token17] = ACTIONS(2423), + [aux_sym_cmd_identifier_token18] = ACTIONS(2423), + [aux_sym_cmd_identifier_token19] = ACTIONS(2423), + [aux_sym_cmd_identifier_token20] = ACTIONS(2423), + [aux_sym_cmd_identifier_token21] = ACTIONS(2423), + [aux_sym_cmd_identifier_token22] = ACTIONS(2423), + [aux_sym_cmd_identifier_token23] = ACTIONS(2423), + [aux_sym_cmd_identifier_token24] = ACTIONS(2423), + [aux_sym_cmd_identifier_token25] = ACTIONS(2423), + [aux_sym_cmd_identifier_token26] = ACTIONS(2423), + [aux_sym_cmd_identifier_token27] = ACTIONS(2423), + [aux_sym_cmd_identifier_token28] = ACTIONS(2423), + [aux_sym_cmd_identifier_token29] = ACTIONS(2423), + [aux_sym_cmd_identifier_token30] = ACTIONS(2423), + [aux_sym_cmd_identifier_token31] = ACTIONS(2423), + [aux_sym_cmd_identifier_token32] = ACTIONS(2423), + [aux_sym_cmd_identifier_token33] = ACTIONS(2423), + [aux_sym_cmd_identifier_token34] = ACTIONS(2421), + [aux_sym_cmd_identifier_token35] = ACTIONS(2423), + [aux_sym_cmd_identifier_token36] = ACTIONS(2423), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(2423), + [anon_sym_DOLLAR] = ACTIONS(2421), + [anon_sym_error] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(2421), + [anon_sym_continue] = ACTIONS(2421), + [anon_sym_for] = ACTIONS(2421), + [anon_sym_in2] = 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_hide] = ACTIONS(2421), + [anon_sym_hide_DASHenv] = ACTIONS(2421), + [anon_sym_overlay] = ACTIONS(2421), + [anon_sym_as] = ACTIONS(2421), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2421), + [aux_sym__val_number_token5] = ACTIONS(2421), + [aux_sym__val_number_token6] = ACTIONS(2421), + [anon_sym_DQUOTE] = ACTIONS(2423), + [sym__str_single_quotes] = ACTIONS(2423), + [sym__str_back_ticks] = ACTIONS(2423), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2423), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2423), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2423), + [anon_sym_register] = ACTIONS(2421), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2423), }, - [737] = { - [sym_comment] = STATE(737), - [anon_sym_export] = ACTIONS(2350), - [anon_sym_alias] = ACTIONS(2350), - [anon_sym_let] = ACTIONS(2350), - [anon_sym_let_DASHenv] = ACTIONS(2350), - [anon_sym_mut] = ACTIONS(2350), - [anon_sym_const] = ACTIONS(2350), - [aux_sym_cmd_identifier_token1] = ACTIONS(2350), - [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(2350), - [aux_sym_cmd_identifier_token9] = ACTIONS(2350), - [aux_sym_cmd_identifier_token10] = ACTIONS(2352), - [aux_sym_cmd_identifier_token11] = ACTIONS(2352), - [aux_sym_cmd_identifier_token12] = ACTIONS(2350), - [aux_sym_cmd_identifier_token13] = ACTIONS(2350), - [aux_sym_cmd_identifier_token14] = ACTIONS(2350), - [aux_sym_cmd_identifier_token15] = ACTIONS(2350), - [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(2350), - [aux_sym_cmd_identifier_token35] = ACTIONS(2352), - [aux_sym_cmd_identifier_token36] = ACTIONS(2352), - [aux_sym_cmd_identifier_token37] = ACTIONS(2352), - [aux_sym_cmd_identifier_token38] = ACTIONS(2350), - [aux_sym_cmd_identifier_token39] = ACTIONS(2352), - [aux_sym_cmd_identifier_token40] = ACTIONS(2352), - [anon_sym_def] = ACTIONS(2350), - [anon_sym_export_DASHenv] = ACTIONS(2350), - [anon_sym_extern] = ACTIONS(2350), - [anon_sym_module] = ACTIONS(2350), - [anon_sym_use] = ACTIONS(2350), - [anon_sym_LPAREN] = ACTIONS(2352), - [anon_sym_COMMA] = ACTIONS(2352), - [anon_sym_DOLLAR] = ACTIONS(2350), - [anon_sym_error] = ACTIONS(2350), - [anon_sym_DASH2] = ACTIONS(2350), - [anon_sym_break] = ACTIONS(2350), - [anon_sym_continue] = ACTIONS(2350), - [anon_sym_for] = ACTIONS(2350), - [anon_sym_in2] = ACTIONS(2350), - [anon_sym_loop] = ACTIONS(2350), - [anon_sym_make] = ACTIONS(2350), - [anon_sym_while] = ACTIONS(2350), - [anon_sym_do] = ACTIONS(2350), - [anon_sym_if] = ACTIONS(2350), - [anon_sym_else] = ACTIONS(2350), - [anon_sym_match] = ACTIONS(2350), - [anon_sym_RBRACE] = ACTIONS(2352), - [anon_sym_try] = ACTIONS(2350), - [anon_sym_catch] = ACTIONS(2350), - [anon_sym_return] = ACTIONS(2350), - [anon_sym_source] = ACTIONS(2350), - [anon_sym_source_DASHenv] = ACTIONS(2350), - [anon_sym_register] = ACTIONS(2350), - [anon_sym_hide] = ACTIONS(2350), - [anon_sym_hide_DASHenv] = ACTIONS(2350), - [anon_sym_overlay] = ACTIONS(2350), - [anon_sym_as] = ACTIONS(2350), - [anon_sym_PLUS2] = ACTIONS(2350), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2352), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2352), - [aux_sym__val_number_decimal_token1] = ACTIONS(2350), - [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), - [aux_sym__val_number_token4] = ACTIONS(2350), - [aux_sym__val_number_token5] = ACTIONS(2350), - [aux_sym__val_number_token6] = ACTIONS(2350), - [anon_sym_DQUOTE] = ACTIONS(2352), - [sym__str_single_quotes] = ACTIONS(2352), - [sym__str_back_ticks] = ACTIONS(2352), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2352), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2352), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2352), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2352), + [716] = { + [sym_comment] = STATE(716), + [anon_sym_export] = ACTIONS(956), + [anon_sym_alias] = ACTIONS(956), + [anon_sym_let] = ACTIONS(956), + [anon_sym_let_DASHenv] = ACTIONS(956), + [anon_sym_mut] = ACTIONS(956), + [anon_sym_const] = ACTIONS(956), + [aux_sym_cmd_identifier_token1] = ACTIONS(956), + [aux_sym_cmd_identifier_token2] = ACTIONS(958), + [aux_sym_cmd_identifier_token3] = ACTIONS(958), + [aux_sym_cmd_identifier_token4] = ACTIONS(958), + [aux_sym_cmd_identifier_token5] = ACTIONS(958), + [aux_sym_cmd_identifier_token6] = ACTIONS(958), + [aux_sym_cmd_identifier_token7] = ACTIONS(958), + [aux_sym_cmd_identifier_token8] = ACTIONS(956), + [aux_sym_cmd_identifier_token9] = ACTIONS(956), + [aux_sym_cmd_identifier_token10] = ACTIONS(958), + [aux_sym_cmd_identifier_token11] = ACTIONS(958), + [aux_sym_cmd_identifier_token12] = ACTIONS(956), + [aux_sym_cmd_identifier_token13] = ACTIONS(956), + [aux_sym_cmd_identifier_token14] = ACTIONS(956), + [aux_sym_cmd_identifier_token15] = ACTIONS(956), + [aux_sym_cmd_identifier_token16] = ACTIONS(958), + [aux_sym_cmd_identifier_token17] = ACTIONS(958), + [aux_sym_cmd_identifier_token18] = ACTIONS(958), + [aux_sym_cmd_identifier_token19] = ACTIONS(958), + [aux_sym_cmd_identifier_token20] = ACTIONS(958), + [aux_sym_cmd_identifier_token21] = ACTIONS(958), + [aux_sym_cmd_identifier_token22] = ACTIONS(958), + [aux_sym_cmd_identifier_token23] = ACTIONS(958), + [aux_sym_cmd_identifier_token24] = ACTIONS(958), + [aux_sym_cmd_identifier_token25] = ACTIONS(958), + [aux_sym_cmd_identifier_token26] = ACTIONS(958), + [aux_sym_cmd_identifier_token27] = ACTIONS(958), + [aux_sym_cmd_identifier_token28] = ACTIONS(958), + [aux_sym_cmd_identifier_token29] = ACTIONS(958), + [aux_sym_cmd_identifier_token30] = ACTIONS(958), + [aux_sym_cmd_identifier_token31] = ACTIONS(958), + [aux_sym_cmd_identifier_token32] = ACTIONS(958), + [aux_sym_cmd_identifier_token33] = ACTIONS(958), + [aux_sym_cmd_identifier_token34] = ACTIONS(956), + [aux_sym_cmd_identifier_token35] = ACTIONS(958), + [aux_sym_cmd_identifier_token36] = ACTIONS(958), + [aux_sym_cmd_identifier_token37] = ACTIONS(958), + [aux_sym_cmd_identifier_token38] = ACTIONS(956), + [aux_sym_cmd_identifier_token39] = ACTIONS(958), + [aux_sym_cmd_identifier_token40] = ACTIONS(958), + [anon_sym_def] = ACTIONS(956), + [anon_sym_export_DASHenv] = ACTIONS(956), + [anon_sym_extern] = ACTIONS(956), + [anon_sym_module] = ACTIONS(956), + [anon_sym_use] = ACTIONS(956), + [anon_sym_LPAREN] = ACTIONS(958), + [anon_sym_COMMA] = ACTIONS(958), + [anon_sym_DOLLAR] = ACTIONS(956), + [anon_sym_error] = ACTIONS(956), + [anon_sym_DASH2] = ACTIONS(956), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(956), + [anon_sym_for] = ACTIONS(956), + [anon_sym_in2] = ACTIONS(956), + [anon_sym_loop] = ACTIONS(956), + [anon_sym_make] = ACTIONS(956), + [anon_sym_while] = ACTIONS(956), + [anon_sym_do] = ACTIONS(956), + [anon_sym_if] = ACTIONS(956), + [anon_sym_else] = ACTIONS(956), + [anon_sym_match] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(958), + [anon_sym_try] = ACTIONS(956), + [anon_sym_catch] = ACTIONS(956), + [anon_sym_return] = ACTIONS(956), + [anon_sym_source] = ACTIONS(956), + [anon_sym_source_DASHenv] = ACTIONS(956), + [anon_sym_hide] = ACTIONS(956), + [anon_sym_hide_DASHenv] = ACTIONS(956), + [anon_sym_overlay] = ACTIONS(956), + [anon_sym_as] = ACTIONS(956), + [anon_sym_PLUS2] = ACTIONS(956), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(958), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(958), + [aux_sym__val_number_decimal_token1] = ACTIONS(956), + [aux_sym__val_number_decimal_token2] = ACTIONS(958), + [aux_sym__val_number_decimal_token3] = ACTIONS(958), + [aux_sym__val_number_decimal_token4] = ACTIONS(958), + [aux_sym__val_number_token1] = ACTIONS(958), + [aux_sym__val_number_token2] = ACTIONS(958), + [aux_sym__val_number_token3] = ACTIONS(958), + [aux_sym__val_number_token4] = ACTIONS(956), + [aux_sym__val_number_token5] = ACTIONS(956), + [aux_sym__val_number_token6] = ACTIONS(956), + [anon_sym_DQUOTE] = ACTIONS(958), + [sym__str_single_quotes] = ACTIONS(958), + [sym__str_back_ticks] = ACTIONS(958), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(958), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(958), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(958), + [anon_sym_register] = ACTIONS(956), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(958), }, - [738] = { - [sym_comment] = STATE(738), - [anon_sym_export] = ACTIONS(2354), - [anon_sym_alias] = ACTIONS(2354), - [anon_sym_let] = ACTIONS(2354), - [anon_sym_let_DASHenv] = ACTIONS(2354), - [anon_sym_mut] = ACTIONS(2354), - [anon_sym_const] = ACTIONS(2354), - [aux_sym_cmd_identifier_token1] = ACTIONS(2354), - [aux_sym_cmd_identifier_token2] = ACTIONS(2356), - [aux_sym_cmd_identifier_token3] = ACTIONS(2356), - [aux_sym_cmd_identifier_token4] = ACTIONS(2356), - [aux_sym_cmd_identifier_token5] = ACTIONS(2356), - [aux_sym_cmd_identifier_token6] = ACTIONS(2356), - [aux_sym_cmd_identifier_token7] = ACTIONS(2356), - [aux_sym_cmd_identifier_token8] = ACTIONS(2354), - [aux_sym_cmd_identifier_token9] = ACTIONS(2354), - [aux_sym_cmd_identifier_token10] = ACTIONS(2356), - [aux_sym_cmd_identifier_token11] = ACTIONS(2356), - [aux_sym_cmd_identifier_token12] = ACTIONS(2354), - [aux_sym_cmd_identifier_token13] = ACTIONS(2354), - [aux_sym_cmd_identifier_token14] = ACTIONS(2354), - [aux_sym_cmd_identifier_token15] = ACTIONS(2354), - [aux_sym_cmd_identifier_token16] = ACTIONS(2356), - [aux_sym_cmd_identifier_token17] = ACTIONS(2356), - [aux_sym_cmd_identifier_token18] = ACTIONS(2356), - [aux_sym_cmd_identifier_token19] = ACTIONS(2356), - [aux_sym_cmd_identifier_token20] = ACTIONS(2356), - [aux_sym_cmd_identifier_token21] = ACTIONS(2356), - [aux_sym_cmd_identifier_token22] = ACTIONS(2356), - [aux_sym_cmd_identifier_token23] = ACTIONS(2356), - [aux_sym_cmd_identifier_token24] = ACTIONS(2356), - [aux_sym_cmd_identifier_token25] = ACTIONS(2356), - [aux_sym_cmd_identifier_token26] = ACTIONS(2356), - [aux_sym_cmd_identifier_token27] = ACTIONS(2356), - [aux_sym_cmd_identifier_token28] = ACTIONS(2356), - [aux_sym_cmd_identifier_token29] = ACTIONS(2356), - [aux_sym_cmd_identifier_token30] = ACTIONS(2356), - [aux_sym_cmd_identifier_token31] = ACTIONS(2356), - [aux_sym_cmd_identifier_token32] = ACTIONS(2356), - [aux_sym_cmd_identifier_token33] = ACTIONS(2356), - [aux_sym_cmd_identifier_token34] = ACTIONS(2354), - [aux_sym_cmd_identifier_token35] = ACTIONS(2356), - [aux_sym_cmd_identifier_token36] = ACTIONS(2356), - [aux_sym_cmd_identifier_token37] = ACTIONS(2356), - [aux_sym_cmd_identifier_token38] = ACTIONS(2354), - [aux_sym_cmd_identifier_token39] = ACTIONS(2356), - [aux_sym_cmd_identifier_token40] = ACTIONS(2356), - [anon_sym_def] = ACTIONS(2354), - [anon_sym_export_DASHenv] = ACTIONS(2354), - [anon_sym_extern] = ACTIONS(2354), - [anon_sym_module] = ACTIONS(2354), - [anon_sym_use] = ACTIONS(2354), - [anon_sym_LPAREN] = ACTIONS(2356), - [anon_sym_COMMA] = ACTIONS(2356), - [anon_sym_DOLLAR] = ACTIONS(2354), - [anon_sym_error] = ACTIONS(2354), - [anon_sym_DASH2] = ACTIONS(2354), - [anon_sym_break] = ACTIONS(2354), - [anon_sym_continue] = ACTIONS(2354), - [anon_sym_for] = ACTIONS(2354), - [anon_sym_in2] = ACTIONS(2354), - [anon_sym_loop] = ACTIONS(2354), - [anon_sym_make] = ACTIONS(2354), - [anon_sym_while] = ACTIONS(2354), - [anon_sym_do] = ACTIONS(2354), - [anon_sym_if] = ACTIONS(2354), - [anon_sym_else] = ACTIONS(2354), - [anon_sym_match] = ACTIONS(2354), - [anon_sym_RBRACE] = ACTIONS(2356), - [anon_sym_try] = ACTIONS(2354), - [anon_sym_catch] = ACTIONS(2354), - [anon_sym_return] = ACTIONS(2354), - [anon_sym_source] = ACTIONS(2354), - [anon_sym_source_DASHenv] = ACTIONS(2354), - [anon_sym_register] = ACTIONS(2354), - [anon_sym_hide] = ACTIONS(2354), - [anon_sym_hide_DASHenv] = ACTIONS(2354), - [anon_sym_overlay] = ACTIONS(2354), - [anon_sym_as] = ACTIONS(2354), - [anon_sym_PLUS2] = ACTIONS(2354), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2356), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2356), - [aux_sym__val_number_decimal_token1] = ACTIONS(2354), - [aux_sym__val_number_decimal_token2] = ACTIONS(2356), - [aux_sym__val_number_decimal_token3] = ACTIONS(2356), - [aux_sym__val_number_decimal_token4] = ACTIONS(2356), - [aux_sym__val_number_token1] = ACTIONS(2356), - [aux_sym__val_number_token2] = ACTIONS(2356), - [aux_sym__val_number_token3] = ACTIONS(2356), - [aux_sym__val_number_token4] = ACTIONS(2354), - [aux_sym__val_number_token5] = ACTIONS(2354), - [aux_sym__val_number_token6] = ACTIONS(2354), - [anon_sym_DQUOTE] = ACTIONS(2356), - [sym__str_single_quotes] = ACTIONS(2356), - [sym__str_back_ticks] = ACTIONS(2356), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2356), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2356), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2356), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2356), + [717] = { + [sym_comment] = STATE(717), + [anon_sym_export] = ACTIONS(2322), + [anon_sym_alias] = ACTIONS(2322), + [anon_sym_let] = ACTIONS(2322), + [anon_sym_let_DASHenv] = ACTIONS(2322), + [anon_sym_mut] = ACTIONS(2322), + [anon_sym_const] = ACTIONS(2322), + [aux_sym_cmd_identifier_token1] = ACTIONS(2322), + [aux_sym_cmd_identifier_token2] = ACTIONS(2324), + [aux_sym_cmd_identifier_token3] = ACTIONS(2324), + [aux_sym_cmd_identifier_token4] = ACTIONS(2324), + [aux_sym_cmd_identifier_token5] = ACTIONS(2324), + [aux_sym_cmd_identifier_token6] = ACTIONS(2324), + [aux_sym_cmd_identifier_token7] = ACTIONS(2324), + [aux_sym_cmd_identifier_token8] = ACTIONS(2322), + [aux_sym_cmd_identifier_token9] = ACTIONS(2322), + [aux_sym_cmd_identifier_token10] = ACTIONS(2324), + [aux_sym_cmd_identifier_token11] = ACTIONS(2324), + [aux_sym_cmd_identifier_token12] = ACTIONS(2322), + [aux_sym_cmd_identifier_token13] = ACTIONS(2322), + [aux_sym_cmd_identifier_token14] = ACTIONS(2322), + [aux_sym_cmd_identifier_token15] = ACTIONS(2322), + [aux_sym_cmd_identifier_token16] = ACTIONS(2324), + [aux_sym_cmd_identifier_token17] = ACTIONS(2324), + [aux_sym_cmd_identifier_token18] = ACTIONS(2324), + [aux_sym_cmd_identifier_token19] = ACTIONS(2324), + [aux_sym_cmd_identifier_token20] = ACTIONS(2324), + [aux_sym_cmd_identifier_token21] = ACTIONS(2324), + [aux_sym_cmd_identifier_token22] = ACTIONS(2324), + [aux_sym_cmd_identifier_token23] = ACTIONS(2324), + [aux_sym_cmd_identifier_token24] = ACTIONS(2324), + [aux_sym_cmd_identifier_token25] = ACTIONS(2324), + [aux_sym_cmd_identifier_token26] = ACTIONS(2324), + [aux_sym_cmd_identifier_token27] = ACTIONS(2324), + [aux_sym_cmd_identifier_token28] = ACTIONS(2324), + [aux_sym_cmd_identifier_token29] = ACTIONS(2324), + [aux_sym_cmd_identifier_token30] = ACTIONS(2324), + [aux_sym_cmd_identifier_token31] = ACTIONS(2324), + [aux_sym_cmd_identifier_token32] = ACTIONS(2324), + [aux_sym_cmd_identifier_token33] = ACTIONS(2324), + [aux_sym_cmd_identifier_token34] = ACTIONS(2322), + [aux_sym_cmd_identifier_token35] = ACTIONS(2324), + [aux_sym_cmd_identifier_token36] = ACTIONS(2324), + [aux_sym_cmd_identifier_token37] = ACTIONS(2324), + [aux_sym_cmd_identifier_token38] = ACTIONS(2322), + [aux_sym_cmd_identifier_token39] = ACTIONS(2324), + [aux_sym_cmd_identifier_token40] = ACTIONS(2324), + [anon_sym_def] = ACTIONS(2322), + [anon_sym_export_DASHenv] = ACTIONS(2322), + [anon_sym_extern] = ACTIONS(2322), + [anon_sym_module] = ACTIONS(2322), + [anon_sym_use] = ACTIONS(2322), + [anon_sym_LPAREN] = ACTIONS(2324), + [anon_sym_COMMA] = ACTIONS(2324), + [anon_sym_DOLLAR] = ACTIONS(2322), + [anon_sym_error] = ACTIONS(2322), + [anon_sym_DASH2] = ACTIONS(2322), + [anon_sym_break] = ACTIONS(2322), + [anon_sym_continue] = ACTIONS(2322), + [anon_sym_for] = ACTIONS(2322), + [anon_sym_in2] = ACTIONS(2322), + [anon_sym_loop] = ACTIONS(2322), + [anon_sym_make] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2322), + [anon_sym_do] = ACTIONS(2322), + [anon_sym_if] = ACTIONS(2322), + [anon_sym_else] = ACTIONS(2322), + [anon_sym_match] = ACTIONS(2322), + [anon_sym_RBRACE] = ACTIONS(2324), + [anon_sym_try] = ACTIONS(2322), + [anon_sym_catch] = ACTIONS(2322), + [anon_sym_return] = ACTIONS(2322), + [anon_sym_source] = ACTIONS(2322), + [anon_sym_source_DASHenv] = ACTIONS(2322), + [anon_sym_hide] = ACTIONS(2322), + [anon_sym_hide_DASHenv] = ACTIONS(2322), + [anon_sym_overlay] = ACTIONS(2322), + [anon_sym_as] = ACTIONS(2322), + [anon_sym_PLUS2] = ACTIONS(2322), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2324), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2324), + [aux_sym__val_number_decimal_token1] = ACTIONS(2322), + [aux_sym__val_number_decimal_token2] = ACTIONS(2324), + [aux_sym__val_number_decimal_token3] = ACTIONS(2324), + [aux_sym__val_number_decimal_token4] = ACTIONS(2324), + [aux_sym__val_number_token1] = ACTIONS(2324), + [aux_sym__val_number_token2] = ACTIONS(2324), + [aux_sym__val_number_token3] = ACTIONS(2324), + [aux_sym__val_number_token4] = ACTIONS(2322), + [aux_sym__val_number_token5] = ACTIONS(2322), + [aux_sym__val_number_token6] = ACTIONS(2322), + [anon_sym_DQUOTE] = ACTIONS(2324), + [sym__str_single_quotes] = ACTIONS(2324), + [sym__str_back_ticks] = ACTIONS(2324), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2324), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2324), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2324), + [anon_sym_register] = ACTIONS(2322), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2324), }, - [739] = { - [sym_comment] = STATE(739), - [anon_sym_export] = ACTIONS(1983), - [anon_sym_alias] = ACTIONS(1983), - [anon_sym_let] = ACTIONS(1983), - [anon_sym_let_DASHenv] = ACTIONS(1983), - [anon_sym_mut] = ACTIONS(1983), - [anon_sym_const] = ACTIONS(1983), - [aux_sym_cmd_identifier_token1] = ACTIONS(1983), - [aux_sym_cmd_identifier_token2] = ACTIONS(1985), - [aux_sym_cmd_identifier_token3] = ACTIONS(1985), - [aux_sym_cmd_identifier_token4] = ACTIONS(1985), - [aux_sym_cmd_identifier_token5] = ACTIONS(1985), - [aux_sym_cmd_identifier_token6] = ACTIONS(1985), - [aux_sym_cmd_identifier_token7] = ACTIONS(1985), - [aux_sym_cmd_identifier_token8] = ACTIONS(1983), - [aux_sym_cmd_identifier_token9] = ACTIONS(1983), - [aux_sym_cmd_identifier_token10] = ACTIONS(1985), - [aux_sym_cmd_identifier_token11] = ACTIONS(1985), - [aux_sym_cmd_identifier_token12] = ACTIONS(1983), - [aux_sym_cmd_identifier_token13] = ACTIONS(1983), - [aux_sym_cmd_identifier_token14] = ACTIONS(1983), - [aux_sym_cmd_identifier_token15] = ACTIONS(1983), - [aux_sym_cmd_identifier_token16] = ACTIONS(1985), - [aux_sym_cmd_identifier_token17] = ACTIONS(1985), - [aux_sym_cmd_identifier_token18] = ACTIONS(1985), - [aux_sym_cmd_identifier_token19] = ACTIONS(1985), - [aux_sym_cmd_identifier_token20] = ACTIONS(1985), - [aux_sym_cmd_identifier_token21] = ACTIONS(1985), - [aux_sym_cmd_identifier_token22] = ACTIONS(1985), - [aux_sym_cmd_identifier_token23] = ACTIONS(1985), - [aux_sym_cmd_identifier_token24] = ACTIONS(1985), - [aux_sym_cmd_identifier_token25] = ACTIONS(1985), - [aux_sym_cmd_identifier_token26] = ACTIONS(1985), - [aux_sym_cmd_identifier_token27] = ACTIONS(1985), - [aux_sym_cmd_identifier_token28] = ACTIONS(1985), - [aux_sym_cmd_identifier_token29] = ACTIONS(1985), - [aux_sym_cmd_identifier_token30] = ACTIONS(1985), - [aux_sym_cmd_identifier_token31] = ACTIONS(1985), - [aux_sym_cmd_identifier_token32] = ACTIONS(1985), - [aux_sym_cmd_identifier_token33] = ACTIONS(1985), - [aux_sym_cmd_identifier_token34] = ACTIONS(1983), - [aux_sym_cmd_identifier_token35] = ACTIONS(1985), - [aux_sym_cmd_identifier_token36] = ACTIONS(1985), - [aux_sym_cmd_identifier_token37] = ACTIONS(1985), - [aux_sym_cmd_identifier_token38] = ACTIONS(1983), - [aux_sym_cmd_identifier_token39] = ACTIONS(1985), - [aux_sym_cmd_identifier_token40] = ACTIONS(1985), - [anon_sym_def] = ACTIONS(1983), - [anon_sym_export_DASHenv] = ACTIONS(1983), - [anon_sym_extern] = ACTIONS(1983), - [anon_sym_module] = ACTIONS(1983), - [anon_sym_use] = ACTIONS(1983), - [anon_sym_LPAREN] = ACTIONS(1985), - [anon_sym_COMMA] = ACTIONS(1985), - [anon_sym_DOLLAR] = ACTIONS(1983), - [anon_sym_error] = ACTIONS(1983), - [anon_sym_DASH2] = ACTIONS(1983), - [anon_sym_break] = ACTIONS(1983), - [anon_sym_continue] = ACTIONS(1983), - [anon_sym_for] = ACTIONS(1983), - [anon_sym_in2] = ACTIONS(1983), - [anon_sym_loop] = ACTIONS(1983), - [anon_sym_make] = ACTIONS(1983), - [anon_sym_while] = ACTIONS(1983), - [anon_sym_do] = ACTIONS(1983), - [anon_sym_if] = ACTIONS(1983), - [anon_sym_else] = ACTIONS(1983), - [anon_sym_match] = ACTIONS(1983), - [anon_sym_RBRACE] = ACTIONS(1985), - [anon_sym_try] = ACTIONS(1983), - [anon_sym_catch] = ACTIONS(1983), - [anon_sym_return] = ACTIONS(1983), - [anon_sym_source] = ACTIONS(1983), - [anon_sym_source_DASHenv] = ACTIONS(1983), - [anon_sym_register] = ACTIONS(1983), - [anon_sym_hide] = ACTIONS(1983), - [anon_sym_hide_DASHenv] = ACTIONS(1983), - [anon_sym_overlay] = ACTIONS(1983), - [anon_sym_as] = ACTIONS(1983), - [anon_sym_PLUS2] = ACTIONS(1983), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1985), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1985), - [aux_sym__val_number_decimal_token1] = ACTIONS(1983), - [aux_sym__val_number_decimal_token2] = ACTIONS(1985), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), - [aux_sym__val_number_token1] = ACTIONS(1985), - [aux_sym__val_number_token2] = ACTIONS(1985), - [aux_sym__val_number_token3] = ACTIONS(1985), - [aux_sym__val_number_token4] = ACTIONS(1983), - [aux_sym__val_number_token5] = ACTIONS(1983), - [aux_sym__val_number_token6] = ACTIONS(1983), - [anon_sym_DQUOTE] = ACTIONS(1985), - [sym__str_single_quotes] = ACTIONS(1985), - [sym__str_back_ticks] = ACTIONS(1985), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1985), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1985), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1985), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1985), + [718] = { + [sym_comment] = STATE(718), + [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(2439), + [aux_sym_cmd_identifier_token3] = ACTIONS(2439), + [aux_sym_cmd_identifier_token4] = ACTIONS(2439), + [aux_sym_cmd_identifier_token5] = ACTIONS(2439), + [aux_sym_cmd_identifier_token6] = ACTIONS(2439), + [aux_sym_cmd_identifier_token7] = ACTIONS(2439), + [aux_sym_cmd_identifier_token8] = ACTIONS(2437), + [aux_sym_cmd_identifier_token9] = ACTIONS(2437), + [aux_sym_cmd_identifier_token10] = ACTIONS(2439), + [aux_sym_cmd_identifier_token11] = ACTIONS(2439), + [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(2439), + [aux_sym_cmd_identifier_token17] = ACTIONS(2439), + [aux_sym_cmd_identifier_token18] = ACTIONS(2439), + [aux_sym_cmd_identifier_token19] = ACTIONS(2439), + [aux_sym_cmd_identifier_token20] = ACTIONS(2439), + [aux_sym_cmd_identifier_token21] = ACTIONS(2439), + [aux_sym_cmd_identifier_token22] = ACTIONS(2439), + [aux_sym_cmd_identifier_token23] = ACTIONS(2439), + [aux_sym_cmd_identifier_token24] = ACTIONS(2439), + [aux_sym_cmd_identifier_token25] = ACTIONS(2439), + [aux_sym_cmd_identifier_token26] = ACTIONS(2439), + [aux_sym_cmd_identifier_token27] = ACTIONS(2439), + [aux_sym_cmd_identifier_token28] = ACTIONS(2439), + [aux_sym_cmd_identifier_token29] = ACTIONS(2439), + [aux_sym_cmd_identifier_token30] = ACTIONS(2439), + [aux_sym_cmd_identifier_token31] = ACTIONS(2439), + [aux_sym_cmd_identifier_token32] = ACTIONS(2439), + [aux_sym_cmd_identifier_token33] = ACTIONS(2439), + [aux_sym_cmd_identifier_token34] = ACTIONS(2437), + [aux_sym_cmd_identifier_token35] = ACTIONS(2439), + [aux_sym_cmd_identifier_token36] = ACTIONS(2439), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(2439), + [anon_sym_DOLLAR] = ACTIONS(2437), + [anon_sym_error] = ACTIONS(2437), + [anon_sym_DASH2] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(2437), + [anon_sym_continue] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_in2] = 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_hide] = ACTIONS(2437), + [anon_sym_hide_DASHenv] = ACTIONS(2437), + [anon_sym_overlay] = ACTIONS(2437), + [anon_sym_as] = ACTIONS(2437), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2437), + [aux_sym__val_number_token5] = ACTIONS(2437), + [aux_sym__val_number_token6] = ACTIONS(2437), + [anon_sym_DQUOTE] = ACTIONS(2439), + [sym__str_single_quotes] = ACTIONS(2439), + [sym__str_back_ticks] = ACTIONS(2439), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2439), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2439), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2439), + [anon_sym_register] = ACTIONS(2437), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2439), }, - [740] = { - [sym_comment] = STATE(740), - [anon_sym_export] = ACTIONS(2358), - [anon_sym_alias] = ACTIONS(2358), - [anon_sym_let] = ACTIONS(2358), - [anon_sym_let_DASHenv] = ACTIONS(2358), - [anon_sym_mut] = ACTIONS(2358), - [anon_sym_const] = ACTIONS(2358), - [aux_sym_cmd_identifier_token1] = ACTIONS(2358), - [aux_sym_cmd_identifier_token2] = ACTIONS(2360), - [aux_sym_cmd_identifier_token3] = ACTIONS(2360), - [aux_sym_cmd_identifier_token4] = ACTIONS(2360), - [aux_sym_cmd_identifier_token5] = ACTIONS(2360), - [aux_sym_cmd_identifier_token6] = ACTIONS(2360), - [aux_sym_cmd_identifier_token7] = ACTIONS(2360), - [aux_sym_cmd_identifier_token8] = ACTIONS(2358), - [aux_sym_cmd_identifier_token9] = ACTIONS(2358), - [aux_sym_cmd_identifier_token10] = ACTIONS(2360), - [aux_sym_cmd_identifier_token11] = ACTIONS(2360), - [aux_sym_cmd_identifier_token12] = ACTIONS(2358), - [aux_sym_cmd_identifier_token13] = ACTIONS(2358), - [aux_sym_cmd_identifier_token14] = ACTIONS(2358), - [aux_sym_cmd_identifier_token15] = ACTIONS(2358), - [aux_sym_cmd_identifier_token16] = ACTIONS(2360), - [aux_sym_cmd_identifier_token17] = ACTIONS(2360), - [aux_sym_cmd_identifier_token18] = ACTIONS(2360), - [aux_sym_cmd_identifier_token19] = ACTIONS(2360), - [aux_sym_cmd_identifier_token20] = ACTIONS(2360), - [aux_sym_cmd_identifier_token21] = ACTIONS(2360), - [aux_sym_cmd_identifier_token22] = ACTIONS(2360), - [aux_sym_cmd_identifier_token23] = ACTIONS(2360), - [aux_sym_cmd_identifier_token24] = ACTIONS(2360), - [aux_sym_cmd_identifier_token25] = ACTIONS(2360), - [aux_sym_cmd_identifier_token26] = ACTIONS(2360), - [aux_sym_cmd_identifier_token27] = ACTIONS(2360), - [aux_sym_cmd_identifier_token28] = ACTIONS(2360), - [aux_sym_cmd_identifier_token29] = ACTIONS(2360), - [aux_sym_cmd_identifier_token30] = ACTIONS(2360), - [aux_sym_cmd_identifier_token31] = ACTIONS(2360), - [aux_sym_cmd_identifier_token32] = ACTIONS(2360), - [aux_sym_cmd_identifier_token33] = ACTIONS(2360), - [aux_sym_cmd_identifier_token34] = ACTIONS(2358), - [aux_sym_cmd_identifier_token35] = ACTIONS(2360), - [aux_sym_cmd_identifier_token36] = ACTIONS(2360), - [aux_sym_cmd_identifier_token37] = ACTIONS(2360), - [aux_sym_cmd_identifier_token38] = ACTIONS(2358), - [aux_sym_cmd_identifier_token39] = ACTIONS(2360), - [aux_sym_cmd_identifier_token40] = ACTIONS(2360), - [anon_sym_def] = ACTIONS(2358), - [anon_sym_export_DASHenv] = ACTIONS(2358), - [anon_sym_extern] = ACTIONS(2358), - [anon_sym_module] = ACTIONS(2358), - [anon_sym_use] = ACTIONS(2358), - [anon_sym_LPAREN] = ACTIONS(2360), - [anon_sym_COMMA] = ACTIONS(2360), - [anon_sym_DOLLAR] = ACTIONS(2358), - [anon_sym_error] = ACTIONS(2358), - [anon_sym_DASH2] = ACTIONS(2358), - [anon_sym_break] = ACTIONS(2358), - [anon_sym_continue] = ACTIONS(2358), - [anon_sym_for] = ACTIONS(2358), - [anon_sym_in2] = ACTIONS(2358), - [anon_sym_loop] = ACTIONS(2358), - [anon_sym_make] = ACTIONS(2358), - [anon_sym_while] = ACTIONS(2358), - [anon_sym_do] = ACTIONS(2358), - [anon_sym_if] = ACTIONS(2358), - [anon_sym_else] = ACTIONS(2358), - [anon_sym_match] = ACTIONS(2358), - [anon_sym_RBRACE] = ACTIONS(2360), - [anon_sym_try] = ACTIONS(2358), - [anon_sym_catch] = ACTIONS(2358), - [anon_sym_return] = ACTIONS(2358), - [anon_sym_source] = ACTIONS(2358), - [anon_sym_source_DASHenv] = ACTIONS(2358), - [anon_sym_register] = ACTIONS(2358), - [anon_sym_hide] = ACTIONS(2358), - [anon_sym_hide_DASHenv] = ACTIONS(2358), - [anon_sym_overlay] = ACTIONS(2358), - [anon_sym_as] = ACTIONS(2358), - [anon_sym_PLUS2] = ACTIONS(2358), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2360), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2360), - [aux_sym__val_number_decimal_token1] = ACTIONS(2358), - [aux_sym__val_number_decimal_token2] = ACTIONS(2360), - [aux_sym__val_number_decimal_token3] = ACTIONS(2360), - [aux_sym__val_number_decimal_token4] = ACTIONS(2360), - [aux_sym__val_number_token1] = ACTIONS(2360), - [aux_sym__val_number_token2] = ACTIONS(2360), - [aux_sym__val_number_token3] = ACTIONS(2360), - [aux_sym__val_number_token4] = ACTIONS(2358), - [aux_sym__val_number_token5] = ACTIONS(2358), - [aux_sym__val_number_token6] = ACTIONS(2358), - [anon_sym_DQUOTE] = ACTIONS(2360), - [sym__str_single_quotes] = ACTIONS(2360), - [sym__str_back_ticks] = ACTIONS(2360), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2360), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2360), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2360), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2360), + [719] = { + [sym_comment] = STATE(719), + [anon_sym_export] = ACTIONS(960), + [anon_sym_alias] = ACTIONS(960), + [anon_sym_let] = ACTIONS(960), + [anon_sym_let_DASHenv] = ACTIONS(960), + [anon_sym_mut] = ACTIONS(960), + [anon_sym_const] = ACTIONS(960), + [aux_sym_cmd_identifier_token1] = ACTIONS(960), + [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(960), + [aux_sym_cmd_identifier_token9] = ACTIONS(960), + [aux_sym_cmd_identifier_token10] = ACTIONS(962), + [aux_sym_cmd_identifier_token11] = ACTIONS(962), + [aux_sym_cmd_identifier_token12] = ACTIONS(960), + [aux_sym_cmd_identifier_token13] = ACTIONS(960), + [aux_sym_cmd_identifier_token14] = ACTIONS(960), + [aux_sym_cmd_identifier_token15] = ACTIONS(960), + [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(960), + [aux_sym_cmd_identifier_token35] = ACTIONS(962), + [aux_sym_cmd_identifier_token36] = ACTIONS(962), + [aux_sym_cmd_identifier_token37] = ACTIONS(962), + [aux_sym_cmd_identifier_token38] = ACTIONS(960), + [aux_sym_cmd_identifier_token39] = ACTIONS(962), + [aux_sym_cmd_identifier_token40] = ACTIONS(962), + [anon_sym_def] = ACTIONS(960), + [anon_sym_export_DASHenv] = ACTIONS(960), + [anon_sym_extern] = ACTIONS(960), + [anon_sym_module] = ACTIONS(960), + [anon_sym_use] = ACTIONS(960), + [anon_sym_LPAREN] = ACTIONS(962), + [anon_sym_COMMA] = ACTIONS(962), + [anon_sym_DOLLAR] = ACTIONS(960), + [anon_sym_error] = ACTIONS(960), + [anon_sym_DASH2] = ACTIONS(960), + [anon_sym_break] = ACTIONS(960), + [anon_sym_continue] = ACTIONS(960), + [anon_sym_for] = ACTIONS(960), + [anon_sym_in2] = ACTIONS(960), + [anon_sym_loop] = ACTIONS(960), + [anon_sym_make] = ACTIONS(960), + [anon_sym_while] = ACTIONS(960), + [anon_sym_do] = ACTIONS(960), + [anon_sym_if] = ACTIONS(960), + [anon_sym_else] = ACTIONS(960), + [anon_sym_match] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(962), + [anon_sym_try] = ACTIONS(960), + [anon_sym_catch] = ACTIONS(960), + [anon_sym_return] = ACTIONS(960), + [anon_sym_source] = ACTIONS(960), + [anon_sym_source_DASHenv] = ACTIONS(960), + [anon_sym_hide] = ACTIONS(960), + [anon_sym_hide_DASHenv] = ACTIONS(960), + [anon_sym_overlay] = ACTIONS(960), + [anon_sym_as] = ACTIONS(960), + [anon_sym_PLUS2] = ACTIONS(960), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(962), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(962), + [aux_sym__val_number_decimal_token1] = ACTIONS(960), + [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), + [aux_sym__val_number_token4] = ACTIONS(960), + [aux_sym__val_number_token5] = ACTIONS(960), + [aux_sym__val_number_token6] = ACTIONS(960), + [anon_sym_DQUOTE] = ACTIONS(962), + [sym__str_single_quotes] = ACTIONS(962), + [sym__str_back_ticks] = ACTIONS(962), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(962), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(962), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(962), + [anon_sym_register] = ACTIONS(960), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(962), }, - [741] = { - [sym_comment] = STATE(741), - [anon_sym_export] = ACTIONS(2362), - [anon_sym_alias] = ACTIONS(2362), - [anon_sym_let] = ACTIONS(2362), - [anon_sym_let_DASHenv] = ACTIONS(2362), - [anon_sym_mut] = ACTIONS(2362), - [anon_sym_const] = ACTIONS(2362), - [aux_sym_cmd_identifier_token1] = ACTIONS(2362), - [aux_sym_cmd_identifier_token2] = ACTIONS(2364), - [aux_sym_cmd_identifier_token3] = ACTIONS(2364), - [aux_sym_cmd_identifier_token4] = ACTIONS(2364), - [aux_sym_cmd_identifier_token5] = ACTIONS(2364), - [aux_sym_cmd_identifier_token6] = ACTIONS(2364), - [aux_sym_cmd_identifier_token7] = ACTIONS(2364), - [aux_sym_cmd_identifier_token8] = ACTIONS(2362), - [aux_sym_cmd_identifier_token9] = ACTIONS(2362), - [aux_sym_cmd_identifier_token10] = ACTIONS(2364), - [aux_sym_cmd_identifier_token11] = ACTIONS(2364), - [aux_sym_cmd_identifier_token12] = ACTIONS(2362), - [aux_sym_cmd_identifier_token13] = ACTIONS(2362), - [aux_sym_cmd_identifier_token14] = ACTIONS(2362), - [aux_sym_cmd_identifier_token15] = ACTIONS(2362), - [aux_sym_cmd_identifier_token16] = ACTIONS(2364), - [aux_sym_cmd_identifier_token17] = ACTIONS(2364), - [aux_sym_cmd_identifier_token18] = ACTIONS(2364), - [aux_sym_cmd_identifier_token19] = ACTIONS(2364), - [aux_sym_cmd_identifier_token20] = ACTIONS(2364), - [aux_sym_cmd_identifier_token21] = ACTIONS(2364), - [aux_sym_cmd_identifier_token22] = ACTIONS(2364), - [aux_sym_cmd_identifier_token23] = ACTIONS(2364), - [aux_sym_cmd_identifier_token24] = ACTIONS(2364), - [aux_sym_cmd_identifier_token25] = ACTIONS(2364), - [aux_sym_cmd_identifier_token26] = ACTIONS(2364), - [aux_sym_cmd_identifier_token27] = ACTIONS(2364), - [aux_sym_cmd_identifier_token28] = ACTIONS(2364), - [aux_sym_cmd_identifier_token29] = ACTIONS(2364), - [aux_sym_cmd_identifier_token30] = ACTIONS(2364), - [aux_sym_cmd_identifier_token31] = ACTIONS(2364), - [aux_sym_cmd_identifier_token32] = ACTIONS(2364), - [aux_sym_cmd_identifier_token33] = ACTIONS(2364), - [aux_sym_cmd_identifier_token34] = ACTIONS(2362), - [aux_sym_cmd_identifier_token35] = ACTIONS(2364), - [aux_sym_cmd_identifier_token36] = ACTIONS(2364), - [aux_sym_cmd_identifier_token37] = ACTIONS(2364), - [aux_sym_cmd_identifier_token38] = ACTIONS(2362), - [aux_sym_cmd_identifier_token39] = ACTIONS(2364), - [aux_sym_cmd_identifier_token40] = ACTIONS(2364), - [anon_sym_def] = ACTIONS(2362), - [anon_sym_export_DASHenv] = ACTIONS(2362), - [anon_sym_extern] = ACTIONS(2362), - [anon_sym_module] = ACTIONS(2362), - [anon_sym_use] = ACTIONS(2362), - [anon_sym_LPAREN] = ACTIONS(2364), - [anon_sym_COMMA] = ACTIONS(2364), - [anon_sym_DOLLAR] = ACTIONS(2362), - [anon_sym_error] = ACTIONS(2362), - [anon_sym_DASH2] = ACTIONS(2362), - [anon_sym_break] = ACTIONS(2362), - [anon_sym_continue] = ACTIONS(2362), - [anon_sym_for] = ACTIONS(2362), - [anon_sym_in2] = ACTIONS(2362), - [anon_sym_loop] = ACTIONS(2362), - [anon_sym_make] = ACTIONS(2362), - [anon_sym_while] = ACTIONS(2362), - [anon_sym_do] = ACTIONS(2362), - [anon_sym_if] = ACTIONS(2362), - [anon_sym_else] = ACTIONS(2362), - [anon_sym_match] = ACTIONS(2362), - [anon_sym_RBRACE] = ACTIONS(2364), - [anon_sym_try] = ACTIONS(2362), - [anon_sym_catch] = ACTIONS(2362), - [anon_sym_return] = ACTIONS(2362), - [anon_sym_source] = ACTIONS(2362), - [anon_sym_source_DASHenv] = ACTIONS(2362), - [anon_sym_register] = ACTIONS(2362), - [anon_sym_hide] = ACTIONS(2362), - [anon_sym_hide_DASHenv] = ACTIONS(2362), - [anon_sym_overlay] = ACTIONS(2362), - [anon_sym_as] = ACTIONS(2362), - [anon_sym_PLUS2] = ACTIONS(2362), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2364), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2364), - [aux_sym__val_number_decimal_token1] = ACTIONS(2362), - [aux_sym__val_number_decimal_token2] = ACTIONS(2364), - [aux_sym__val_number_decimal_token3] = ACTIONS(2364), - [aux_sym__val_number_decimal_token4] = ACTIONS(2364), - [aux_sym__val_number_token1] = ACTIONS(2364), - [aux_sym__val_number_token2] = ACTIONS(2364), - [aux_sym__val_number_token3] = ACTIONS(2364), - [aux_sym__val_number_token4] = ACTIONS(2362), - [aux_sym__val_number_token5] = ACTIONS(2362), - [aux_sym__val_number_token6] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2364), - [sym__str_single_quotes] = ACTIONS(2364), - [sym__str_back_ticks] = ACTIONS(2364), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2364), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2364), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2364), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2364), + [720] = { + [sym_comment] = STATE(720), + [anon_sym_export] = ACTIONS(964), + [anon_sym_alias] = ACTIONS(964), + [anon_sym_let] = ACTIONS(964), + [anon_sym_let_DASHenv] = ACTIONS(964), + [anon_sym_mut] = ACTIONS(964), + [anon_sym_const] = ACTIONS(964), + [aux_sym_cmd_identifier_token1] = ACTIONS(964), + [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(964), + [aux_sym_cmd_identifier_token9] = ACTIONS(964), + [aux_sym_cmd_identifier_token10] = ACTIONS(966), + [aux_sym_cmd_identifier_token11] = ACTIONS(966), + [aux_sym_cmd_identifier_token12] = ACTIONS(964), + [aux_sym_cmd_identifier_token13] = ACTIONS(964), + [aux_sym_cmd_identifier_token14] = ACTIONS(964), + [aux_sym_cmd_identifier_token15] = ACTIONS(964), + [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(964), + [aux_sym_cmd_identifier_token35] = ACTIONS(966), + [aux_sym_cmd_identifier_token36] = ACTIONS(966), + [aux_sym_cmd_identifier_token37] = ACTIONS(966), + [aux_sym_cmd_identifier_token38] = ACTIONS(964), + [aux_sym_cmd_identifier_token39] = ACTIONS(966), + [aux_sym_cmd_identifier_token40] = ACTIONS(966), + [anon_sym_def] = ACTIONS(964), + [anon_sym_export_DASHenv] = ACTIONS(964), + [anon_sym_extern] = ACTIONS(964), + [anon_sym_module] = ACTIONS(964), + [anon_sym_use] = ACTIONS(964), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_COMMA] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(964), + [anon_sym_error] = ACTIONS(964), + [anon_sym_DASH2] = ACTIONS(964), + [anon_sym_break] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_in2] = ACTIONS(964), + [anon_sym_loop] = ACTIONS(964), + [anon_sym_make] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [anon_sym_do] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_else] = ACTIONS(964), + [anon_sym_match] = ACTIONS(964), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_try] = ACTIONS(964), + [anon_sym_catch] = ACTIONS(964), + [anon_sym_return] = ACTIONS(964), + [anon_sym_source] = ACTIONS(964), + [anon_sym_source_DASHenv] = ACTIONS(964), + [anon_sym_hide] = ACTIONS(964), + [anon_sym_hide_DASHenv] = ACTIONS(964), + [anon_sym_overlay] = ACTIONS(964), + [anon_sym_as] = ACTIONS(964), + [anon_sym_PLUS2] = ACTIONS(964), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(966), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(966), + [aux_sym__val_number_decimal_token1] = ACTIONS(964), + [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), + [aux_sym__val_number_token4] = ACTIONS(964), + [aux_sym__val_number_token5] = ACTIONS(964), + [aux_sym__val_number_token6] = ACTIONS(964), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym__str_single_quotes] = ACTIONS(966), + [sym__str_back_ticks] = ACTIONS(966), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(966), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(966), + [anon_sym_register] = ACTIONS(964), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(966), }, - [742] = { - [sym_comment] = STATE(742), - [anon_sym_export] = ACTIONS(2061), - [anon_sym_alias] = ACTIONS(2061), - [anon_sym_let] = ACTIONS(2061), - [anon_sym_let_DASHenv] = ACTIONS(2061), - [anon_sym_mut] = ACTIONS(2061), - [anon_sym_const] = ACTIONS(2061), - [aux_sym_cmd_identifier_token1] = ACTIONS(2061), - [aux_sym_cmd_identifier_token2] = ACTIONS(2063), - [aux_sym_cmd_identifier_token3] = ACTIONS(2063), - [aux_sym_cmd_identifier_token4] = ACTIONS(2063), - [aux_sym_cmd_identifier_token5] = ACTIONS(2063), - [aux_sym_cmd_identifier_token6] = ACTIONS(2063), - [aux_sym_cmd_identifier_token7] = ACTIONS(2063), - [aux_sym_cmd_identifier_token8] = ACTIONS(2061), - [aux_sym_cmd_identifier_token9] = ACTIONS(2061), - [aux_sym_cmd_identifier_token10] = ACTIONS(2063), - [aux_sym_cmd_identifier_token11] = ACTIONS(2063), - [aux_sym_cmd_identifier_token12] = ACTIONS(2061), - [aux_sym_cmd_identifier_token13] = ACTIONS(2061), - [aux_sym_cmd_identifier_token14] = ACTIONS(2061), - [aux_sym_cmd_identifier_token15] = ACTIONS(2061), - [aux_sym_cmd_identifier_token16] = ACTIONS(2063), - [aux_sym_cmd_identifier_token17] = ACTIONS(2063), - [aux_sym_cmd_identifier_token18] = ACTIONS(2063), - [aux_sym_cmd_identifier_token19] = ACTIONS(2063), - [aux_sym_cmd_identifier_token20] = ACTIONS(2063), - [aux_sym_cmd_identifier_token21] = ACTIONS(2063), - [aux_sym_cmd_identifier_token22] = ACTIONS(2063), - [aux_sym_cmd_identifier_token23] = ACTIONS(2063), - [aux_sym_cmd_identifier_token24] = ACTIONS(2063), - [aux_sym_cmd_identifier_token25] = ACTIONS(2063), - [aux_sym_cmd_identifier_token26] = ACTIONS(2063), - [aux_sym_cmd_identifier_token27] = ACTIONS(2063), - [aux_sym_cmd_identifier_token28] = ACTIONS(2063), - [aux_sym_cmd_identifier_token29] = ACTIONS(2063), - [aux_sym_cmd_identifier_token30] = ACTIONS(2063), - [aux_sym_cmd_identifier_token31] = ACTIONS(2063), - [aux_sym_cmd_identifier_token32] = ACTIONS(2063), - [aux_sym_cmd_identifier_token33] = ACTIONS(2063), - [aux_sym_cmd_identifier_token34] = ACTIONS(2061), - [aux_sym_cmd_identifier_token35] = ACTIONS(2063), - [aux_sym_cmd_identifier_token36] = ACTIONS(2063), - [aux_sym_cmd_identifier_token37] = ACTIONS(2063), - [aux_sym_cmd_identifier_token38] = ACTIONS(2061), - [aux_sym_cmd_identifier_token39] = ACTIONS(2063), - [aux_sym_cmd_identifier_token40] = ACTIONS(2063), - [anon_sym_def] = ACTIONS(2061), - [anon_sym_export_DASHenv] = ACTIONS(2061), - [anon_sym_extern] = ACTIONS(2061), - [anon_sym_module] = ACTIONS(2061), - [anon_sym_use] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(2063), - [anon_sym_COMMA] = ACTIONS(2063), - [anon_sym_DOLLAR] = ACTIONS(2061), - [anon_sym_error] = ACTIONS(2061), - [anon_sym_DASH2] = ACTIONS(2061), - [anon_sym_break] = ACTIONS(2061), - [anon_sym_continue] = ACTIONS(2061), - [anon_sym_for] = ACTIONS(2061), - [anon_sym_in2] = ACTIONS(2061), - [anon_sym_loop] = ACTIONS(2061), - [anon_sym_make] = ACTIONS(2061), - [anon_sym_while] = ACTIONS(2061), - [anon_sym_do] = ACTIONS(2061), - [anon_sym_if] = ACTIONS(2061), - [anon_sym_else] = ACTIONS(2061), - [anon_sym_match] = ACTIONS(2061), - [anon_sym_RBRACE] = ACTIONS(2063), - [anon_sym_try] = ACTIONS(2061), - [anon_sym_catch] = ACTIONS(2061), - [anon_sym_return] = ACTIONS(2061), - [anon_sym_source] = ACTIONS(2061), - [anon_sym_source_DASHenv] = ACTIONS(2061), - [anon_sym_register] = ACTIONS(2061), - [anon_sym_hide] = ACTIONS(2061), - [anon_sym_hide_DASHenv] = ACTIONS(2061), - [anon_sym_overlay] = ACTIONS(2061), - [anon_sym_as] = ACTIONS(2061), - [anon_sym_PLUS2] = ACTIONS(2061), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2063), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2063), - [aux_sym__val_number_decimal_token1] = ACTIONS(2061), - [aux_sym__val_number_decimal_token2] = ACTIONS(2063), - [aux_sym__val_number_decimal_token3] = ACTIONS(2063), - [aux_sym__val_number_decimal_token4] = ACTIONS(2063), - [aux_sym__val_number_token1] = ACTIONS(2063), - [aux_sym__val_number_token2] = ACTIONS(2063), - [aux_sym__val_number_token3] = ACTIONS(2063), - [aux_sym__val_number_token4] = ACTIONS(2061), - [aux_sym__val_number_token5] = ACTIONS(2061), - [aux_sym__val_number_token6] = ACTIONS(2061), - [anon_sym_DQUOTE] = ACTIONS(2063), - [sym__str_single_quotes] = ACTIONS(2063), - [sym__str_back_ticks] = ACTIONS(2063), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2063), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2063), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2063), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2063), + [721] = { + [sym_comment] = STATE(721), + [anon_sym_export] = ACTIONS(2457), + [anon_sym_alias] = ACTIONS(2457), + [anon_sym_let] = ACTIONS(2457), + [anon_sym_let_DASHenv] = ACTIONS(2457), + [anon_sym_mut] = ACTIONS(2457), + [anon_sym_const] = ACTIONS(2457), + [aux_sym_cmd_identifier_token1] = ACTIONS(2457), + [aux_sym_cmd_identifier_token2] = ACTIONS(2459), + [aux_sym_cmd_identifier_token3] = ACTIONS(2459), + [aux_sym_cmd_identifier_token4] = ACTIONS(2459), + [aux_sym_cmd_identifier_token5] = ACTIONS(2459), + [aux_sym_cmd_identifier_token6] = ACTIONS(2459), + [aux_sym_cmd_identifier_token7] = ACTIONS(2459), + [aux_sym_cmd_identifier_token8] = ACTIONS(2457), + [aux_sym_cmd_identifier_token9] = ACTIONS(2457), + [aux_sym_cmd_identifier_token10] = ACTIONS(2459), + [aux_sym_cmd_identifier_token11] = ACTIONS(2459), + [aux_sym_cmd_identifier_token12] = ACTIONS(2457), + [aux_sym_cmd_identifier_token13] = ACTIONS(2457), + [aux_sym_cmd_identifier_token14] = ACTIONS(2457), + [aux_sym_cmd_identifier_token15] = ACTIONS(2457), + [aux_sym_cmd_identifier_token16] = ACTIONS(2459), + [aux_sym_cmd_identifier_token17] = ACTIONS(2459), + [aux_sym_cmd_identifier_token18] = ACTIONS(2459), + [aux_sym_cmd_identifier_token19] = ACTIONS(2459), + [aux_sym_cmd_identifier_token20] = ACTIONS(2459), + [aux_sym_cmd_identifier_token21] = ACTIONS(2459), + [aux_sym_cmd_identifier_token22] = ACTIONS(2459), + [aux_sym_cmd_identifier_token23] = ACTIONS(2459), + [aux_sym_cmd_identifier_token24] = ACTIONS(2459), + [aux_sym_cmd_identifier_token25] = ACTIONS(2459), + [aux_sym_cmd_identifier_token26] = ACTIONS(2459), + [aux_sym_cmd_identifier_token27] = ACTIONS(2459), + [aux_sym_cmd_identifier_token28] = ACTIONS(2459), + [aux_sym_cmd_identifier_token29] = ACTIONS(2459), + [aux_sym_cmd_identifier_token30] = ACTIONS(2459), + [aux_sym_cmd_identifier_token31] = ACTIONS(2459), + [aux_sym_cmd_identifier_token32] = ACTIONS(2459), + [aux_sym_cmd_identifier_token33] = ACTIONS(2459), + [aux_sym_cmd_identifier_token34] = ACTIONS(2457), + [aux_sym_cmd_identifier_token35] = ACTIONS(2459), + [aux_sym_cmd_identifier_token36] = ACTIONS(2459), + [aux_sym_cmd_identifier_token37] = ACTIONS(2459), + [aux_sym_cmd_identifier_token38] = ACTIONS(2457), + [aux_sym_cmd_identifier_token39] = ACTIONS(2459), + [aux_sym_cmd_identifier_token40] = ACTIONS(2459), + [anon_sym_def] = ACTIONS(2457), + [anon_sym_export_DASHenv] = ACTIONS(2457), + [anon_sym_extern] = ACTIONS(2457), + [anon_sym_module] = ACTIONS(2457), + [anon_sym_use] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(2459), + [anon_sym_COMMA] = ACTIONS(2459), + [anon_sym_DOLLAR] = ACTIONS(2457), + [anon_sym_error] = ACTIONS(2457), + [anon_sym_DASH2] = ACTIONS(2457), + [anon_sym_break] = ACTIONS(2457), + [anon_sym_continue] = ACTIONS(2457), + [anon_sym_for] = ACTIONS(2457), + [anon_sym_in2] = ACTIONS(2457), + [anon_sym_loop] = ACTIONS(2457), + [anon_sym_make] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(2457), + [anon_sym_do] = ACTIONS(2457), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_else] = ACTIONS(2457), + [anon_sym_match] = ACTIONS(2457), + [anon_sym_RBRACE] = ACTIONS(2459), + [anon_sym_try] = ACTIONS(2457), + [anon_sym_catch] = ACTIONS(2457), + [anon_sym_return] = ACTIONS(2457), + [anon_sym_source] = ACTIONS(2457), + [anon_sym_source_DASHenv] = ACTIONS(2457), + [anon_sym_hide] = ACTIONS(2457), + [anon_sym_hide_DASHenv] = ACTIONS(2457), + [anon_sym_overlay] = ACTIONS(2457), + [anon_sym_as] = ACTIONS(2457), + [anon_sym_PLUS2] = ACTIONS(2457), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2459), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2459), + [aux_sym__val_number_decimal_token1] = ACTIONS(2457), + [aux_sym__val_number_decimal_token2] = ACTIONS(2459), + [aux_sym__val_number_decimal_token3] = ACTIONS(2459), + [aux_sym__val_number_decimal_token4] = ACTIONS(2459), + [aux_sym__val_number_token1] = ACTIONS(2459), + [aux_sym__val_number_token2] = ACTIONS(2459), + [aux_sym__val_number_token3] = ACTIONS(2459), + [aux_sym__val_number_token4] = ACTIONS(2457), + [aux_sym__val_number_token5] = ACTIONS(2457), + [aux_sym__val_number_token6] = ACTIONS(2457), + [anon_sym_DQUOTE] = ACTIONS(2459), + [sym__str_single_quotes] = ACTIONS(2459), + [sym__str_back_ticks] = ACTIONS(2459), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2459), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2459), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2459), + [anon_sym_register] = ACTIONS(2457), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2459), }, - [743] = { - [sym_comment] = STATE(743), - [anon_sym_export] = ACTIONS(1851), - [anon_sym_alias] = ACTIONS(1851), - [anon_sym_let] = ACTIONS(1851), - [anon_sym_let_DASHenv] = ACTIONS(1851), - [anon_sym_mut] = ACTIONS(1851), - [anon_sym_const] = ACTIONS(1851), - [aux_sym_cmd_identifier_token1] = ACTIONS(1851), - [aux_sym_cmd_identifier_token2] = ACTIONS(1853), - [aux_sym_cmd_identifier_token3] = ACTIONS(1853), - [aux_sym_cmd_identifier_token4] = ACTIONS(1853), - [aux_sym_cmd_identifier_token5] = ACTIONS(1853), - [aux_sym_cmd_identifier_token6] = ACTIONS(1853), - [aux_sym_cmd_identifier_token7] = ACTIONS(1853), - [aux_sym_cmd_identifier_token8] = ACTIONS(1851), - [aux_sym_cmd_identifier_token9] = ACTIONS(1851), - [aux_sym_cmd_identifier_token10] = ACTIONS(1853), - [aux_sym_cmd_identifier_token11] = ACTIONS(1853), - [aux_sym_cmd_identifier_token12] = ACTIONS(1851), - [aux_sym_cmd_identifier_token13] = ACTIONS(1851), - [aux_sym_cmd_identifier_token14] = ACTIONS(1851), - [aux_sym_cmd_identifier_token15] = ACTIONS(1851), - [aux_sym_cmd_identifier_token16] = ACTIONS(1853), - [aux_sym_cmd_identifier_token17] = ACTIONS(1853), - [aux_sym_cmd_identifier_token18] = ACTIONS(1853), - [aux_sym_cmd_identifier_token19] = ACTIONS(1853), - [aux_sym_cmd_identifier_token20] = ACTIONS(1853), - [aux_sym_cmd_identifier_token21] = ACTIONS(1853), - [aux_sym_cmd_identifier_token22] = ACTIONS(1853), - [aux_sym_cmd_identifier_token23] = ACTIONS(1853), - [aux_sym_cmd_identifier_token24] = ACTIONS(1853), - [aux_sym_cmd_identifier_token25] = ACTIONS(1853), - [aux_sym_cmd_identifier_token26] = ACTIONS(1853), - [aux_sym_cmd_identifier_token27] = ACTIONS(1853), - [aux_sym_cmd_identifier_token28] = ACTIONS(1853), - [aux_sym_cmd_identifier_token29] = ACTIONS(1853), - [aux_sym_cmd_identifier_token30] = ACTIONS(1853), - [aux_sym_cmd_identifier_token31] = ACTIONS(1853), - [aux_sym_cmd_identifier_token32] = ACTIONS(1853), - [aux_sym_cmd_identifier_token33] = ACTIONS(1853), - [aux_sym_cmd_identifier_token34] = ACTIONS(1851), - [aux_sym_cmd_identifier_token35] = ACTIONS(1853), - [aux_sym_cmd_identifier_token36] = ACTIONS(1853), - [aux_sym_cmd_identifier_token37] = ACTIONS(1853), - [aux_sym_cmd_identifier_token38] = ACTIONS(1851), - [aux_sym_cmd_identifier_token39] = ACTIONS(1853), - [aux_sym_cmd_identifier_token40] = ACTIONS(1853), - [anon_sym_def] = ACTIONS(1851), - [anon_sym_export_DASHenv] = ACTIONS(1851), - [anon_sym_extern] = ACTIONS(1851), - [anon_sym_module] = ACTIONS(1851), - [anon_sym_use] = ACTIONS(1851), - [anon_sym_LPAREN] = ACTIONS(1853), - [anon_sym_COMMA] = ACTIONS(1853), - [anon_sym_DOLLAR] = ACTIONS(1851), - [anon_sym_error] = ACTIONS(1851), - [anon_sym_DASH2] = ACTIONS(1851), - [anon_sym_break] = ACTIONS(1851), - [anon_sym_continue] = ACTIONS(1851), - [anon_sym_for] = ACTIONS(1851), - [anon_sym_in2] = ACTIONS(1851), - [anon_sym_loop] = ACTIONS(1851), - [anon_sym_make] = ACTIONS(1851), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1851), - [anon_sym_if] = ACTIONS(1851), - [anon_sym_else] = ACTIONS(1851), - [anon_sym_match] = ACTIONS(1851), - [anon_sym_RBRACE] = ACTIONS(1853), - [anon_sym_try] = ACTIONS(1851), - [anon_sym_catch] = ACTIONS(1851), - [anon_sym_return] = ACTIONS(1851), - [anon_sym_source] = ACTIONS(1851), - [anon_sym_source_DASHenv] = ACTIONS(1851), - [anon_sym_register] = ACTIONS(1851), - [anon_sym_hide] = ACTIONS(1851), - [anon_sym_hide_DASHenv] = ACTIONS(1851), - [anon_sym_overlay] = ACTIONS(1851), - [anon_sym_as] = ACTIONS(1851), - [anon_sym_PLUS2] = ACTIONS(1851), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1853), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1853), - [aux_sym__val_number_decimal_token1] = ACTIONS(1851), - [aux_sym__val_number_decimal_token2] = ACTIONS(1853), - [aux_sym__val_number_decimal_token3] = ACTIONS(1853), - [aux_sym__val_number_decimal_token4] = ACTIONS(1853), - [aux_sym__val_number_token1] = ACTIONS(1853), - [aux_sym__val_number_token2] = ACTIONS(1853), - [aux_sym__val_number_token3] = ACTIONS(1853), - [aux_sym__val_number_token4] = ACTIONS(1851), - [aux_sym__val_number_token5] = ACTIONS(1851), - [aux_sym__val_number_token6] = ACTIONS(1851), - [anon_sym_DQUOTE] = ACTIONS(1853), - [sym__str_single_quotes] = ACTIONS(1853), - [sym__str_back_ticks] = ACTIONS(1853), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1853), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1853), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1853), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1853), + [722] = { + [sym_comment] = STATE(722), + [anon_sym_export] = ACTIONS(1957), + [anon_sym_alias] = ACTIONS(1957), + [anon_sym_let] = ACTIONS(1957), + [anon_sym_let_DASHenv] = ACTIONS(1957), + [anon_sym_mut] = ACTIONS(1957), + [anon_sym_const] = ACTIONS(1957), + [aux_sym_cmd_identifier_token1] = ACTIONS(1957), + [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(1957), + [aux_sym_cmd_identifier_token9] = ACTIONS(1957), + [aux_sym_cmd_identifier_token10] = ACTIONS(1959), + [aux_sym_cmd_identifier_token11] = ACTIONS(1959), + [aux_sym_cmd_identifier_token12] = ACTIONS(1957), + [aux_sym_cmd_identifier_token13] = ACTIONS(1957), + [aux_sym_cmd_identifier_token14] = ACTIONS(1957), + [aux_sym_cmd_identifier_token15] = ACTIONS(1957), + [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(1957), + [aux_sym_cmd_identifier_token35] = ACTIONS(1959), + [aux_sym_cmd_identifier_token36] = ACTIONS(1959), + [aux_sym_cmd_identifier_token37] = ACTIONS(1959), + [aux_sym_cmd_identifier_token38] = ACTIONS(1957), + [aux_sym_cmd_identifier_token39] = ACTIONS(1959), + [aux_sym_cmd_identifier_token40] = ACTIONS(1959), + [anon_sym_def] = ACTIONS(1957), + [anon_sym_export_DASHenv] = ACTIONS(1957), + [anon_sym_extern] = ACTIONS(1957), + [anon_sym_module] = ACTIONS(1957), + [anon_sym_use] = ACTIONS(1957), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_COMMA] = ACTIONS(1959), + [anon_sym_DOLLAR] = ACTIONS(1957), + [anon_sym_error] = ACTIONS(1957), + [anon_sym_DASH2] = ACTIONS(1957), + [anon_sym_break] = ACTIONS(1957), + [anon_sym_continue] = ACTIONS(1957), + [anon_sym_for] = ACTIONS(1957), + [anon_sym_in2] = ACTIONS(1957), + [anon_sym_loop] = ACTIONS(1957), + [anon_sym_make] = ACTIONS(1957), + [anon_sym_while] = ACTIONS(1957), + [anon_sym_do] = ACTIONS(1957), + [anon_sym_if] = ACTIONS(1957), + [anon_sym_else] = ACTIONS(1957), + [anon_sym_match] = ACTIONS(1957), + [anon_sym_RBRACE] = ACTIONS(1959), + [anon_sym_try] = ACTIONS(1957), + [anon_sym_catch] = ACTIONS(1957), + [anon_sym_return] = ACTIONS(1957), + [anon_sym_source] = ACTIONS(1957), + [anon_sym_source_DASHenv] = ACTIONS(1957), + [anon_sym_hide] = ACTIONS(1957), + [anon_sym_hide_DASHenv] = ACTIONS(1957), + [anon_sym_overlay] = ACTIONS(1957), + [anon_sym_as] = ACTIONS(1957), + [anon_sym_PLUS2] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1959), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1957), + [aux_sym__val_number_decimal_token2] = ACTIONS(1959), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [aux_sym__val_number_token1] = ACTIONS(1959), + [aux_sym__val_number_token2] = ACTIONS(1959), + [aux_sym__val_number_token3] = ACTIONS(1959), + [aux_sym__val_number_token4] = ACTIONS(1957), + [aux_sym__val_number_token5] = ACTIONS(1957), + [aux_sym__val_number_token6] = ACTIONS(1957), + [anon_sym_DQUOTE] = ACTIONS(1959), + [sym__str_single_quotes] = ACTIONS(1959), + [sym__str_back_ticks] = ACTIONS(1959), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1959), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1959), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1959), + [anon_sym_register] = ACTIONS(1957), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1959), }, - [744] = { - [sym_comment] = STATE(744), - [anon_sym_export] = ACTIONS(2366), - [anon_sym_alias] = ACTIONS(2366), - [anon_sym_let] = ACTIONS(2366), - [anon_sym_let_DASHenv] = ACTIONS(2366), - [anon_sym_mut] = ACTIONS(2366), - [anon_sym_const] = ACTIONS(2366), - [aux_sym_cmd_identifier_token1] = ACTIONS(2366), - [aux_sym_cmd_identifier_token2] = ACTIONS(2368), - [aux_sym_cmd_identifier_token3] = ACTIONS(2368), - [aux_sym_cmd_identifier_token4] = ACTIONS(2368), - [aux_sym_cmd_identifier_token5] = ACTIONS(2368), - [aux_sym_cmd_identifier_token6] = ACTIONS(2368), - [aux_sym_cmd_identifier_token7] = ACTIONS(2368), - [aux_sym_cmd_identifier_token8] = ACTIONS(2366), - [aux_sym_cmd_identifier_token9] = ACTIONS(2366), - [aux_sym_cmd_identifier_token10] = ACTIONS(2368), - [aux_sym_cmd_identifier_token11] = ACTIONS(2368), - [aux_sym_cmd_identifier_token12] = ACTIONS(2366), - [aux_sym_cmd_identifier_token13] = ACTIONS(2366), - [aux_sym_cmd_identifier_token14] = ACTIONS(2366), - [aux_sym_cmd_identifier_token15] = ACTIONS(2366), - [aux_sym_cmd_identifier_token16] = ACTIONS(2368), - [aux_sym_cmd_identifier_token17] = ACTIONS(2368), - [aux_sym_cmd_identifier_token18] = ACTIONS(2368), - [aux_sym_cmd_identifier_token19] = ACTIONS(2368), - [aux_sym_cmd_identifier_token20] = ACTIONS(2368), - [aux_sym_cmd_identifier_token21] = ACTIONS(2368), - [aux_sym_cmd_identifier_token22] = ACTIONS(2368), - [aux_sym_cmd_identifier_token23] = ACTIONS(2368), - [aux_sym_cmd_identifier_token24] = ACTIONS(2368), - [aux_sym_cmd_identifier_token25] = ACTIONS(2368), - [aux_sym_cmd_identifier_token26] = ACTIONS(2368), - [aux_sym_cmd_identifier_token27] = ACTIONS(2368), - [aux_sym_cmd_identifier_token28] = ACTIONS(2368), - [aux_sym_cmd_identifier_token29] = ACTIONS(2368), - [aux_sym_cmd_identifier_token30] = ACTIONS(2368), - [aux_sym_cmd_identifier_token31] = ACTIONS(2368), - [aux_sym_cmd_identifier_token32] = ACTIONS(2368), - [aux_sym_cmd_identifier_token33] = ACTIONS(2368), - [aux_sym_cmd_identifier_token34] = ACTIONS(2366), - [aux_sym_cmd_identifier_token35] = ACTIONS(2368), - [aux_sym_cmd_identifier_token36] = ACTIONS(2368), - [aux_sym_cmd_identifier_token37] = ACTIONS(2368), - [aux_sym_cmd_identifier_token38] = ACTIONS(2366), - [aux_sym_cmd_identifier_token39] = ACTIONS(2368), - [aux_sym_cmd_identifier_token40] = ACTIONS(2368), - [anon_sym_def] = ACTIONS(2366), - [anon_sym_export_DASHenv] = ACTIONS(2366), - [anon_sym_extern] = ACTIONS(2366), - [anon_sym_module] = ACTIONS(2366), - [anon_sym_use] = ACTIONS(2366), - [anon_sym_LPAREN] = ACTIONS(2368), - [anon_sym_COMMA] = ACTIONS(2368), - [anon_sym_DOLLAR] = ACTIONS(2366), - [anon_sym_error] = ACTIONS(2366), - [anon_sym_DASH2] = ACTIONS(2366), - [anon_sym_break] = ACTIONS(2366), - [anon_sym_continue] = ACTIONS(2366), - [anon_sym_for] = ACTIONS(2366), - [anon_sym_in2] = ACTIONS(2366), - [anon_sym_loop] = ACTIONS(2366), - [anon_sym_make] = ACTIONS(2366), - [anon_sym_while] = ACTIONS(2366), - [anon_sym_do] = ACTIONS(2366), - [anon_sym_if] = ACTIONS(2366), - [anon_sym_else] = ACTIONS(2366), - [anon_sym_match] = ACTIONS(2366), - [anon_sym_RBRACE] = ACTIONS(2368), - [anon_sym_try] = ACTIONS(2366), - [anon_sym_catch] = ACTIONS(2366), - [anon_sym_return] = ACTIONS(2366), - [anon_sym_source] = ACTIONS(2366), - [anon_sym_source_DASHenv] = ACTIONS(2366), - [anon_sym_register] = ACTIONS(2366), - [anon_sym_hide] = ACTIONS(2366), - [anon_sym_hide_DASHenv] = ACTIONS(2366), - [anon_sym_overlay] = ACTIONS(2366), - [anon_sym_as] = ACTIONS(2366), - [anon_sym_PLUS2] = ACTIONS(2366), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2368), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2368), - [aux_sym__val_number_decimal_token1] = ACTIONS(2366), - [aux_sym__val_number_decimal_token2] = ACTIONS(2368), - [aux_sym__val_number_decimal_token3] = ACTIONS(2368), - [aux_sym__val_number_decimal_token4] = ACTIONS(2368), - [aux_sym__val_number_token1] = ACTIONS(2368), - [aux_sym__val_number_token2] = ACTIONS(2368), - [aux_sym__val_number_token3] = ACTIONS(2368), - [aux_sym__val_number_token4] = ACTIONS(2366), - [aux_sym__val_number_token5] = ACTIONS(2366), - [aux_sym__val_number_token6] = ACTIONS(2366), - [anon_sym_DQUOTE] = ACTIONS(2368), - [sym__str_single_quotes] = ACTIONS(2368), - [sym__str_back_ticks] = ACTIONS(2368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2368), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2368), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2368), + [723] = { + [sym_comment] = STATE(723), + [anon_sym_export] = ACTIONS(2469), + [anon_sym_alias] = ACTIONS(2469), + [anon_sym_let] = ACTIONS(2469), + [anon_sym_let_DASHenv] = ACTIONS(2469), + [anon_sym_mut] = ACTIONS(2469), + [anon_sym_const] = ACTIONS(2469), + [aux_sym_cmd_identifier_token1] = ACTIONS(2469), + [aux_sym_cmd_identifier_token2] = ACTIONS(2471), + [aux_sym_cmd_identifier_token3] = ACTIONS(2471), + [aux_sym_cmd_identifier_token4] = ACTIONS(2471), + [aux_sym_cmd_identifier_token5] = ACTIONS(2471), + [aux_sym_cmd_identifier_token6] = ACTIONS(2471), + [aux_sym_cmd_identifier_token7] = ACTIONS(2471), + [aux_sym_cmd_identifier_token8] = ACTIONS(2469), + [aux_sym_cmd_identifier_token9] = ACTIONS(2469), + [aux_sym_cmd_identifier_token10] = ACTIONS(2471), + [aux_sym_cmd_identifier_token11] = ACTIONS(2471), + [aux_sym_cmd_identifier_token12] = ACTIONS(2469), + [aux_sym_cmd_identifier_token13] = ACTIONS(2469), + [aux_sym_cmd_identifier_token14] = ACTIONS(2469), + [aux_sym_cmd_identifier_token15] = ACTIONS(2469), + [aux_sym_cmd_identifier_token16] = ACTIONS(2471), + [aux_sym_cmd_identifier_token17] = ACTIONS(2471), + [aux_sym_cmd_identifier_token18] = ACTIONS(2471), + [aux_sym_cmd_identifier_token19] = ACTIONS(2471), + [aux_sym_cmd_identifier_token20] = ACTIONS(2471), + [aux_sym_cmd_identifier_token21] = ACTIONS(2471), + [aux_sym_cmd_identifier_token22] = ACTIONS(2471), + [aux_sym_cmd_identifier_token23] = ACTIONS(2471), + [aux_sym_cmd_identifier_token24] = ACTIONS(2471), + [aux_sym_cmd_identifier_token25] = ACTIONS(2471), + [aux_sym_cmd_identifier_token26] = ACTIONS(2471), + [aux_sym_cmd_identifier_token27] = ACTIONS(2471), + [aux_sym_cmd_identifier_token28] = ACTIONS(2471), + [aux_sym_cmd_identifier_token29] = ACTIONS(2471), + [aux_sym_cmd_identifier_token30] = ACTIONS(2471), + [aux_sym_cmd_identifier_token31] = ACTIONS(2471), + [aux_sym_cmd_identifier_token32] = ACTIONS(2471), + [aux_sym_cmd_identifier_token33] = ACTIONS(2471), + [aux_sym_cmd_identifier_token34] = ACTIONS(2469), + [aux_sym_cmd_identifier_token35] = ACTIONS(2471), + [aux_sym_cmd_identifier_token36] = ACTIONS(2471), + [aux_sym_cmd_identifier_token37] = ACTIONS(2471), + [aux_sym_cmd_identifier_token38] = ACTIONS(2469), + [aux_sym_cmd_identifier_token39] = ACTIONS(2471), + [aux_sym_cmd_identifier_token40] = ACTIONS(2471), + [anon_sym_def] = ACTIONS(2469), + [anon_sym_export_DASHenv] = ACTIONS(2469), + [anon_sym_extern] = ACTIONS(2469), + [anon_sym_module] = ACTIONS(2469), + [anon_sym_use] = ACTIONS(2469), + [anon_sym_LPAREN] = ACTIONS(2471), + [anon_sym_COMMA] = ACTIONS(2471), + [anon_sym_DOLLAR] = ACTIONS(2469), + [anon_sym_error] = ACTIONS(2469), + [anon_sym_DASH2] = ACTIONS(2469), + [anon_sym_break] = ACTIONS(2469), + [anon_sym_continue] = ACTIONS(2469), + [anon_sym_for] = ACTIONS(2469), + [anon_sym_in2] = ACTIONS(2469), + [anon_sym_loop] = ACTIONS(2469), + [anon_sym_make] = ACTIONS(2469), + [anon_sym_while] = ACTIONS(2469), + [anon_sym_do] = ACTIONS(2469), + [anon_sym_if] = ACTIONS(2469), + [anon_sym_else] = ACTIONS(2469), + [anon_sym_match] = ACTIONS(2469), + [anon_sym_RBRACE] = ACTIONS(2471), + [anon_sym_try] = ACTIONS(2469), + [anon_sym_catch] = ACTIONS(2469), + [anon_sym_return] = ACTIONS(2469), + [anon_sym_source] = ACTIONS(2469), + [anon_sym_source_DASHenv] = ACTIONS(2469), + [anon_sym_hide] = ACTIONS(2469), + [anon_sym_hide_DASHenv] = ACTIONS(2469), + [anon_sym_overlay] = ACTIONS(2469), + [anon_sym_as] = ACTIONS(2469), + [anon_sym_PLUS2] = ACTIONS(2469), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2471), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2471), + [aux_sym__val_number_decimal_token1] = ACTIONS(2469), + [aux_sym__val_number_decimal_token2] = ACTIONS(2471), + [aux_sym__val_number_decimal_token3] = ACTIONS(2471), + [aux_sym__val_number_decimal_token4] = ACTIONS(2471), + [aux_sym__val_number_token1] = ACTIONS(2471), + [aux_sym__val_number_token2] = ACTIONS(2471), + [aux_sym__val_number_token3] = ACTIONS(2471), + [aux_sym__val_number_token4] = ACTIONS(2469), + [aux_sym__val_number_token5] = ACTIONS(2469), + [aux_sym__val_number_token6] = ACTIONS(2469), + [anon_sym_DQUOTE] = ACTIONS(2471), + [sym__str_single_quotes] = ACTIONS(2471), + [sym__str_back_ticks] = ACTIONS(2471), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2471), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2471), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2471), + [anon_sym_register] = ACTIONS(2469), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2471), }, - [745] = { - [sym_comment] = STATE(745), - [anon_sym_export] = ACTIONS(2402), - [anon_sym_alias] = ACTIONS(2402), - [anon_sym_let] = ACTIONS(2402), - [anon_sym_let_DASHenv] = ACTIONS(2402), - [anon_sym_mut] = ACTIONS(2402), - [anon_sym_const] = ACTIONS(2402), - [aux_sym_cmd_identifier_token1] = ACTIONS(2402), - [aux_sym_cmd_identifier_token2] = ACTIONS(2404), - [aux_sym_cmd_identifier_token3] = ACTIONS(2404), - [aux_sym_cmd_identifier_token4] = ACTIONS(2404), - [aux_sym_cmd_identifier_token5] = ACTIONS(2404), - [aux_sym_cmd_identifier_token6] = ACTIONS(2404), - [aux_sym_cmd_identifier_token7] = ACTIONS(2404), - [aux_sym_cmd_identifier_token8] = ACTIONS(2402), - [aux_sym_cmd_identifier_token9] = ACTIONS(2402), - [aux_sym_cmd_identifier_token10] = ACTIONS(2404), - [aux_sym_cmd_identifier_token11] = ACTIONS(2404), - [aux_sym_cmd_identifier_token12] = ACTIONS(2402), - [aux_sym_cmd_identifier_token13] = ACTIONS(2402), - [aux_sym_cmd_identifier_token14] = ACTIONS(2402), - [aux_sym_cmd_identifier_token15] = ACTIONS(2402), - [aux_sym_cmd_identifier_token16] = ACTIONS(2404), - [aux_sym_cmd_identifier_token17] = ACTIONS(2404), - [aux_sym_cmd_identifier_token18] = ACTIONS(2404), - [aux_sym_cmd_identifier_token19] = ACTIONS(2404), - [aux_sym_cmd_identifier_token20] = ACTIONS(2404), - [aux_sym_cmd_identifier_token21] = ACTIONS(2404), - [aux_sym_cmd_identifier_token22] = ACTIONS(2404), - [aux_sym_cmd_identifier_token23] = ACTIONS(2404), - [aux_sym_cmd_identifier_token24] = ACTIONS(2404), - [aux_sym_cmd_identifier_token25] = ACTIONS(2404), - [aux_sym_cmd_identifier_token26] = ACTIONS(2404), - [aux_sym_cmd_identifier_token27] = ACTIONS(2404), - [aux_sym_cmd_identifier_token28] = ACTIONS(2404), - [aux_sym_cmd_identifier_token29] = ACTIONS(2404), - [aux_sym_cmd_identifier_token30] = ACTIONS(2404), - [aux_sym_cmd_identifier_token31] = ACTIONS(2404), - [aux_sym_cmd_identifier_token32] = ACTIONS(2404), - [aux_sym_cmd_identifier_token33] = ACTIONS(2404), - [aux_sym_cmd_identifier_token34] = ACTIONS(2402), - [aux_sym_cmd_identifier_token35] = ACTIONS(2404), - [aux_sym_cmd_identifier_token36] = ACTIONS(2404), - [aux_sym_cmd_identifier_token37] = ACTIONS(2404), - [aux_sym_cmd_identifier_token38] = ACTIONS(2402), - [aux_sym_cmd_identifier_token39] = ACTIONS(2404), - [aux_sym_cmd_identifier_token40] = ACTIONS(2404), - [anon_sym_def] = ACTIONS(2402), - [anon_sym_export_DASHenv] = ACTIONS(2402), - [anon_sym_extern] = ACTIONS(2402), - [anon_sym_module] = ACTIONS(2402), - [anon_sym_use] = ACTIONS(2402), - [anon_sym_LPAREN] = ACTIONS(2404), - [anon_sym_COMMA] = ACTIONS(2404), - [anon_sym_DOLLAR] = ACTIONS(2402), - [anon_sym_error] = ACTIONS(2402), - [anon_sym_DASH2] = ACTIONS(2402), - [anon_sym_break] = ACTIONS(2402), - [anon_sym_continue] = ACTIONS(2402), - [anon_sym_for] = ACTIONS(2402), - [anon_sym_in2] = ACTIONS(2402), - [anon_sym_loop] = ACTIONS(2402), - [anon_sym_make] = ACTIONS(2402), - [anon_sym_while] = ACTIONS(2402), - [anon_sym_do] = ACTIONS(2402), - [anon_sym_if] = ACTIONS(2402), - [anon_sym_else] = ACTIONS(2402), - [anon_sym_match] = ACTIONS(2402), - [anon_sym_RBRACE] = ACTIONS(2404), - [anon_sym_try] = ACTIONS(2402), - [anon_sym_catch] = ACTIONS(2402), - [anon_sym_return] = ACTIONS(2402), - [anon_sym_source] = ACTIONS(2402), - [anon_sym_source_DASHenv] = ACTIONS(2402), - [anon_sym_register] = ACTIONS(2402), - [anon_sym_hide] = ACTIONS(2402), - [anon_sym_hide_DASHenv] = ACTIONS(2402), - [anon_sym_overlay] = ACTIONS(2402), - [anon_sym_as] = ACTIONS(2402), - [anon_sym_PLUS2] = ACTIONS(2402), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2404), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2404), - [aux_sym__val_number_decimal_token1] = ACTIONS(2402), - [aux_sym__val_number_decimal_token2] = ACTIONS(2404), - [aux_sym__val_number_decimal_token3] = ACTIONS(2404), - [aux_sym__val_number_decimal_token4] = ACTIONS(2404), - [aux_sym__val_number_token1] = ACTIONS(2404), - [aux_sym__val_number_token2] = ACTIONS(2404), - [aux_sym__val_number_token3] = ACTIONS(2404), - [aux_sym__val_number_token4] = ACTIONS(2402), - [aux_sym__val_number_token5] = ACTIONS(2402), - [aux_sym__val_number_token6] = ACTIONS(2402), - [anon_sym_DQUOTE] = ACTIONS(2404), - [sym__str_single_quotes] = ACTIONS(2404), - [sym__str_back_ticks] = ACTIONS(2404), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2404), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2404), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2404), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2404), + [724] = { + [sym_comment] = STATE(724), + [aux_sym__multiple_types_repeat1] = STATE(619), + [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), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(2348), + [anon_sym_break] = ACTIONS(2348), + [anon_sym_continue] = ACTIONS(2348), + [anon_sym_for] = ACTIONS(2348), + [anon_sym_in2] = 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_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_hide] = ACTIONS(2348), + [anon_sym_hide_DASHenv] = ACTIONS(2348), + [anon_sym_overlay] = ACTIONS(2348), + [anon_sym_as] = ACTIONS(2348), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2348), + [aux_sym__val_number_token5] = ACTIONS(2348), + [aux_sym__val_number_token6] = ACTIONS(2348), + [anon_sym_DQUOTE] = ACTIONS(2348), + [sym__str_single_quotes] = ACTIONS(2348), + [sym__str_back_ticks] = ACTIONS(2348), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2348), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2348), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2348), + [sym__entry_separator] = ACTIONS(2230), + [anon_sym_register] = ACTIONS(2348), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2352), }, - [746] = { - [sym_comment] = STATE(746), - [anon_sym_export] = ACTIONS(2366), - [anon_sym_alias] = ACTIONS(2366), - [anon_sym_let] = ACTIONS(2366), - [anon_sym_let_DASHenv] = ACTIONS(2366), - [anon_sym_mut] = ACTIONS(2366), - [anon_sym_const] = ACTIONS(2366), - [aux_sym_cmd_identifier_token1] = ACTIONS(2366), - [aux_sym_cmd_identifier_token2] = ACTIONS(2368), - [aux_sym_cmd_identifier_token3] = ACTIONS(2368), - [aux_sym_cmd_identifier_token4] = ACTIONS(2368), - [aux_sym_cmd_identifier_token5] = ACTIONS(2368), - [aux_sym_cmd_identifier_token6] = ACTIONS(2368), - [aux_sym_cmd_identifier_token7] = ACTIONS(2368), - [aux_sym_cmd_identifier_token8] = ACTIONS(2366), - [aux_sym_cmd_identifier_token9] = ACTIONS(2366), - [aux_sym_cmd_identifier_token10] = ACTIONS(2368), - [aux_sym_cmd_identifier_token11] = ACTIONS(2368), - [aux_sym_cmd_identifier_token12] = ACTIONS(2366), - [aux_sym_cmd_identifier_token13] = ACTIONS(2366), - [aux_sym_cmd_identifier_token14] = ACTIONS(2366), - [aux_sym_cmd_identifier_token15] = ACTIONS(2366), - [aux_sym_cmd_identifier_token16] = ACTIONS(2368), - [aux_sym_cmd_identifier_token17] = ACTIONS(2368), - [aux_sym_cmd_identifier_token18] = ACTIONS(2368), - [aux_sym_cmd_identifier_token19] = ACTIONS(2368), - [aux_sym_cmd_identifier_token20] = ACTIONS(2368), - [aux_sym_cmd_identifier_token21] = ACTIONS(2368), - [aux_sym_cmd_identifier_token22] = ACTIONS(2368), - [aux_sym_cmd_identifier_token23] = ACTIONS(2368), - [aux_sym_cmd_identifier_token24] = ACTIONS(2368), - [aux_sym_cmd_identifier_token25] = ACTIONS(2368), - [aux_sym_cmd_identifier_token26] = ACTIONS(2368), - [aux_sym_cmd_identifier_token27] = ACTIONS(2368), - [aux_sym_cmd_identifier_token28] = ACTIONS(2368), - [aux_sym_cmd_identifier_token29] = ACTIONS(2368), - [aux_sym_cmd_identifier_token30] = ACTIONS(2368), - [aux_sym_cmd_identifier_token31] = ACTIONS(2368), - [aux_sym_cmd_identifier_token32] = ACTIONS(2368), - [aux_sym_cmd_identifier_token33] = ACTIONS(2368), - [aux_sym_cmd_identifier_token34] = ACTIONS(2366), - [aux_sym_cmd_identifier_token35] = ACTIONS(2368), - [aux_sym_cmd_identifier_token36] = ACTIONS(2368), - [aux_sym_cmd_identifier_token37] = ACTIONS(2368), - [aux_sym_cmd_identifier_token38] = ACTIONS(2366), - [aux_sym_cmd_identifier_token39] = ACTIONS(2368), - [aux_sym_cmd_identifier_token40] = ACTIONS(2368), - [anon_sym_def] = ACTIONS(2366), - [anon_sym_export_DASHenv] = ACTIONS(2366), - [anon_sym_extern] = ACTIONS(2366), - [anon_sym_module] = ACTIONS(2366), - [anon_sym_use] = ACTIONS(2366), - [anon_sym_LPAREN] = ACTIONS(2368), - [anon_sym_COMMA] = ACTIONS(2368), - [anon_sym_DOLLAR] = ACTIONS(2366), - [anon_sym_error] = ACTIONS(2366), - [anon_sym_DASH2] = ACTIONS(2366), - [anon_sym_break] = ACTIONS(2366), - [anon_sym_continue] = ACTIONS(2366), - [anon_sym_for] = ACTIONS(2366), - [anon_sym_in2] = ACTIONS(2366), - [anon_sym_loop] = ACTIONS(2366), - [anon_sym_make] = ACTIONS(2366), - [anon_sym_while] = ACTIONS(2366), - [anon_sym_do] = ACTIONS(2366), - [anon_sym_if] = ACTIONS(2366), - [anon_sym_else] = ACTIONS(2366), - [anon_sym_match] = ACTIONS(2366), - [anon_sym_RBRACE] = ACTIONS(2368), - [anon_sym_try] = ACTIONS(2366), - [anon_sym_catch] = ACTIONS(2366), - [anon_sym_return] = ACTIONS(2366), - [anon_sym_source] = ACTIONS(2366), - [anon_sym_source_DASHenv] = ACTIONS(2366), - [anon_sym_register] = ACTIONS(2366), - [anon_sym_hide] = ACTIONS(2366), - [anon_sym_hide_DASHenv] = ACTIONS(2366), - [anon_sym_overlay] = ACTIONS(2366), - [anon_sym_as] = ACTIONS(2366), - [anon_sym_PLUS2] = ACTIONS(2366), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2368), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2368), - [aux_sym__val_number_decimal_token1] = ACTIONS(2366), - [aux_sym__val_number_decimal_token2] = ACTIONS(2368), - [aux_sym__val_number_decimal_token3] = ACTIONS(2368), - [aux_sym__val_number_decimal_token4] = ACTIONS(2368), - [aux_sym__val_number_token1] = ACTIONS(2368), - [aux_sym__val_number_token2] = ACTIONS(2368), - [aux_sym__val_number_token3] = ACTIONS(2368), - [aux_sym__val_number_token4] = ACTIONS(2366), - [aux_sym__val_number_token5] = ACTIONS(2366), - [aux_sym__val_number_token6] = ACTIONS(2366), - [anon_sym_DQUOTE] = ACTIONS(2368), - [sym__str_single_quotes] = ACTIONS(2368), - [sym__str_back_ticks] = ACTIONS(2368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2368), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2368), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2368), + [725] = { + [sym_comment] = STATE(725), + [anon_sym_export] = ACTIONS(2473), + [anon_sym_alias] = ACTIONS(2473), + [anon_sym_let] = ACTIONS(2473), + [anon_sym_let_DASHenv] = ACTIONS(2473), + [anon_sym_mut] = ACTIONS(2473), + [anon_sym_const] = ACTIONS(2473), + [aux_sym_cmd_identifier_token1] = ACTIONS(2473), + [aux_sym_cmd_identifier_token2] = ACTIONS(2475), + [aux_sym_cmd_identifier_token3] = ACTIONS(2475), + [aux_sym_cmd_identifier_token4] = ACTIONS(2475), + [aux_sym_cmd_identifier_token5] = ACTIONS(2475), + [aux_sym_cmd_identifier_token6] = ACTIONS(2475), + [aux_sym_cmd_identifier_token7] = ACTIONS(2475), + [aux_sym_cmd_identifier_token8] = ACTIONS(2473), + [aux_sym_cmd_identifier_token9] = ACTIONS(2473), + [aux_sym_cmd_identifier_token10] = ACTIONS(2475), + [aux_sym_cmd_identifier_token11] = ACTIONS(2475), + [aux_sym_cmd_identifier_token12] = ACTIONS(2473), + [aux_sym_cmd_identifier_token13] = ACTIONS(2473), + [aux_sym_cmd_identifier_token14] = ACTIONS(2473), + [aux_sym_cmd_identifier_token15] = ACTIONS(2473), + [aux_sym_cmd_identifier_token16] = ACTIONS(2475), + [aux_sym_cmd_identifier_token17] = ACTIONS(2475), + [aux_sym_cmd_identifier_token18] = ACTIONS(2475), + [aux_sym_cmd_identifier_token19] = ACTIONS(2475), + [aux_sym_cmd_identifier_token20] = ACTIONS(2475), + [aux_sym_cmd_identifier_token21] = ACTIONS(2475), + [aux_sym_cmd_identifier_token22] = ACTIONS(2475), + [aux_sym_cmd_identifier_token23] = ACTIONS(2475), + [aux_sym_cmd_identifier_token24] = ACTIONS(2475), + [aux_sym_cmd_identifier_token25] = ACTIONS(2475), + [aux_sym_cmd_identifier_token26] = ACTIONS(2475), + [aux_sym_cmd_identifier_token27] = ACTIONS(2475), + [aux_sym_cmd_identifier_token28] = ACTIONS(2475), + [aux_sym_cmd_identifier_token29] = ACTIONS(2475), + [aux_sym_cmd_identifier_token30] = ACTIONS(2475), + [aux_sym_cmd_identifier_token31] = ACTIONS(2475), + [aux_sym_cmd_identifier_token32] = ACTIONS(2475), + [aux_sym_cmd_identifier_token33] = ACTIONS(2475), + [aux_sym_cmd_identifier_token34] = ACTIONS(2473), + [aux_sym_cmd_identifier_token35] = ACTIONS(2475), + [aux_sym_cmd_identifier_token36] = ACTIONS(2475), + [aux_sym_cmd_identifier_token37] = ACTIONS(2475), + [aux_sym_cmd_identifier_token38] = ACTIONS(2473), + [aux_sym_cmd_identifier_token39] = ACTIONS(2475), + [aux_sym_cmd_identifier_token40] = ACTIONS(2475), + [anon_sym_def] = ACTIONS(2473), + [anon_sym_export_DASHenv] = ACTIONS(2473), + [anon_sym_extern] = ACTIONS(2473), + [anon_sym_module] = ACTIONS(2473), + [anon_sym_use] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), + [anon_sym_COMMA] = ACTIONS(2475), + [anon_sym_DOLLAR] = ACTIONS(2473), + [anon_sym_error] = ACTIONS(2473), + [anon_sym_DASH2] = ACTIONS(2473), + [anon_sym_break] = ACTIONS(2473), + [anon_sym_continue] = ACTIONS(2473), + [anon_sym_for] = ACTIONS(2473), + [anon_sym_in2] = ACTIONS(2473), + [anon_sym_loop] = ACTIONS(2473), + [anon_sym_make] = ACTIONS(2473), + [anon_sym_while] = ACTIONS(2473), + [anon_sym_do] = ACTIONS(2473), + [anon_sym_if] = ACTIONS(2473), + [anon_sym_else] = ACTIONS(2473), + [anon_sym_match] = ACTIONS(2473), + [anon_sym_RBRACE] = ACTIONS(2475), + [anon_sym_try] = ACTIONS(2473), + [anon_sym_catch] = ACTIONS(2473), + [anon_sym_return] = ACTIONS(2473), + [anon_sym_source] = ACTIONS(2473), + [anon_sym_source_DASHenv] = ACTIONS(2473), + [anon_sym_hide] = ACTIONS(2473), + [anon_sym_hide_DASHenv] = ACTIONS(2473), + [anon_sym_overlay] = ACTIONS(2473), + [anon_sym_as] = ACTIONS(2473), + [anon_sym_PLUS2] = ACTIONS(2473), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2475), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2475), + [aux_sym__val_number_decimal_token1] = ACTIONS(2473), + [aux_sym__val_number_decimal_token2] = ACTIONS(2475), + [aux_sym__val_number_decimal_token3] = ACTIONS(2475), + [aux_sym__val_number_decimal_token4] = ACTIONS(2475), + [aux_sym__val_number_token1] = ACTIONS(2475), + [aux_sym__val_number_token2] = ACTIONS(2475), + [aux_sym__val_number_token3] = ACTIONS(2475), + [aux_sym__val_number_token4] = ACTIONS(2473), + [aux_sym__val_number_token5] = ACTIONS(2473), + [aux_sym__val_number_token6] = ACTIONS(2473), + [anon_sym_DQUOTE] = ACTIONS(2475), + [sym__str_single_quotes] = ACTIONS(2475), + [sym__str_back_ticks] = ACTIONS(2475), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2475), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2475), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2475), + [anon_sym_register] = ACTIONS(2473), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2475), }, - [747] = { - [sym_comment] = STATE(747), - [anon_sym_export] = ACTIONS(2057), - [anon_sym_alias] = ACTIONS(2057), - [anon_sym_let] = ACTIONS(2057), - [anon_sym_let_DASHenv] = ACTIONS(2057), - [anon_sym_mut] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [aux_sym_cmd_identifier_token1] = ACTIONS(2057), - [aux_sym_cmd_identifier_token2] = ACTIONS(2059), - [aux_sym_cmd_identifier_token3] = ACTIONS(2059), - [aux_sym_cmd_identifier_token4] = ACTIONS(2059), - [aux_sym_cmd_identifier_token5] = ACTIONS(2059), - [aux_sym_cmd_identifier_token6] = ACTIONS(2059), - [aux_sym_cmd_identifier_token7] = ACTIONS(2059), - [aux_sym_cmd_identifier_token8] = ACTIONS(2057), - [aux_sym_cmd_identifier_token9] = ACTIONS(2057), - [aux_sym_cmd_identifier_token10] = ACTIONS(2059), - [aux_sym_cmd_identifier_token11] = ACTIONS(2059), - [aux_sym_cmd_identifier_token12] = ACTIONS(2057), - [aux_sym_cmd_identifier_token13] = ACTIONS(2057), - [aux_sym_cmd_identifier_token14] = ACTIONS(2057), - [aux_sym_cmd_identifier_token15] = ACTIONS(2057), - [aux_sym_cmd_identifier_token16] = ACTIONS(2059), - [aux_sym_cmd_identifier_token17] = ACTIONS(2059), - [aux_sym_cmd_identifier_token18] = ACTIONS(2059), - [aux_sym_cmd_identifier_token19] = ACTIONS(2059), - [aux_sym_cmd_identifier_token20] = ACTIONS(2059), - [aux_sym_cmd_identifier_token21] = ACTIONS(2059), - [aux_sym_cmd_identifier_token22] = ACTIONS(2059), - [aux_sym_cmd_identifier_token23] = ACTIONS(2059), - [aux_sym_cmd_identifier_token24] = ACTIONS(2059), - [aux_sym_cmd_identifier_token25] = ACTIONS(2059), - [aux_sym_cmd_identifier_token26] = ACTIONS(2059), - [aux_sym_cmd_identifier_token27] = ACTIONS(2059), - [aux_sym_cmd_identifier_token28] = ACTIONS(2059), - [aux_sym_cmd_identifier_token29] = ACTIONS(2059), - [aux_sym_cmd_identifier_token30] = ACTIONS(2059), - [aux_sym_cmd_identifier_token31] = ACTIONS(2059), - [aux_sym_cmd_identifier_token32] = ACTIONS(2059), - [aux_sym_cmd_identifier_token33] = ACTIONS(2059), - [aux_sym_cmd_identifier_token34] = ACTIONS(2057), - [aux_sym_cmd_identifier_token35] = ACTIONS(2059), - [aux_sym_cmd_identifier_token36] = ACTIONS(2059), - [aux_sym_cmd_identifier_token37] = ACTIONS(2059), - [aux_sym_cmd_identifier_token38] = ACTIONS(2057), - [aux_sym_cmd_identifier_token39] = ACTIONS(2059), - [aux_sym_cmd_identifier_token40] = ACTIONS(2059), - [anon_sym_def] = ACTIONS(2057), - [anon_sym_export_DASHenv] = ACTIONS(2057), - [anon_sym_extern] = ACTIONS(2057), - [anon_sym_module] = ACTIONS(2057), - [anon_sym_use] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2059), - [anon_sym_COMMA] = ACTIONS(2059), - [anon_sym_DOLLAR] = ACTIONS(2057), - [anon_sym_error] = ACTIONS(2057), - [anon_sym_DASH2] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_in2] = ACTIONS(2057), - [anon_sym_loop] = ACTIONS(2057), - [anon_sym_make] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_else] = ACTIONS(2057), - [anon_sym_match] = ACTIONS(2057), - [anon_sym_RBRACE] = ACTIONS(2059), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_catch] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_source] = ACTIONS(2057), - [anon_sym_source_DASHenv] = ACTIONS(2057), - [anon_sym_register] = ACTIONS(2057), - [anon_sym_hide] = ACTIONS(2057), - [anon_sym_hide_DASHenv] = ACTIONS(2057), - [anon_sym_overlay] = ACTIONS(2057), - [anon_sym_as] = ACTIONS(2057), - [anon_sym_PLUS2] = ACTIONS(2057), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2059), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2059), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2059), - [aux_sym__val_number_decimal_token4] = ACTIONS(2059), - [aux_sym__val_number_token1] = ACTIONS(2059), - [aux_sym__val_number_token2] = ACTIONS(2059), - [aux_sym__val_number_token3] = ACTIONS(2059), - [aux_sym__val_number_token4] = ACTIONS(2057), - [aux_sym__val_number_token5] = ACTIONS(2057), - [aux_sym__val_number_token6] = ACTIONS(2057), - [anon_sym_DQUOTE] = ACTIONS(2059), - [sym__str_single_quotes] = ACTIONS(2059), - [sym__str_back_ticks] = ACTIONS(2059), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2059), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2059), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2059), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2059), + [726] = { + [sym_comment] = STATE(726), + [anon_sym_export] = ACTIONS(2306), + [anon_sym_alias] = ACTIONS(2306), + [anon_sym_let] = ACTIONS(2306), + [anon_sym_let_DASHenv] = ACTIONS(2306), + [anon_sym_mut] = ACTIONS(2306), + [anon_sym_const] = ACTIONS(2306), + [aux_sym_cmd_identifier_token1] = ACTIONS(2306), + [aux_sym_cmd_identifier_token2] = ACTIONS(2308), + [aux_sym_cmd_identifier_token3] = ACTIONS(2308), + [aux_sym_cmd_identifier_token4] = ACTIONS(2308), + [aux_sym_cmd_identifier_token5] = ACTIONS(2308), + [aux_sym_cmd_identifier_token6] = ACTIONS(2308), + [aux_sym_cmd_identifier_token7] = ACTIONS(2308), + [aux_sym_cmd_identifier_token8] = ACTIONS(2306), + [aux_sym_cmd_identifier_token9] = ACTIONS(2306), + [aux_sym_cmd_identifier_token10] = ACTIONS(2308), + [aux_sym_cmd_identifier_token11] = ACTIONS(2308), + [aux_sym_cmd_identifier_token12] = ACTIONS(2306), + [aux_sym_cmd_identifier_token13] = ACTIONS(2306), + [aux_sym_cmd_identifier_token14] = ACTIONS(2306), + [aux_sym_cmd_identifier_token15] = ACTIONS(2306), + [aux_sym_cmd_identifier_token16] = ACTIONS(2308), + [aux_sym_cmd_identifier_token17] = ACTIONS(2308), + [aux_sym_cmd_identifier_token18] = ACTIONS(2308), + [aux_sym_cmd_identifier_token19] = ACTIONS(2308), + [aux_sym_cmd_identifier_token20] = ACTIONS(2308), + [aux_sym_cmd_identifier_token21] = ACTIONS(2308), + [aux_sym_cmd_identifier_token22] = ACTIONS(2308), + [aux_sym_cmd_identifier_token23] = ACTIONS(2308), + [aux_sym_cmd_identifier_token24] = ACTIONS(2308), + [aux_sym_cmd_identifier_token25] = ACTIONS(2308), + [aux_sym_cmd_identifier_token26] = ACTIONS(2308), + [aux_sym_cmd_identifier_token27] = ACTIONS(2308), + [aux_sym_cmd_identifier_token28] = ACTIONS(2308), + [aux_sym_cmd_identifier_token29] = ACTIONS(2308), + [aux_sym_cmd_identifier_token30] = ACTIONS(2308), + [aux_sym_cmd_identifier_token31] = ACTIONS(2308), + [aux_sym_cmd_identifier_token32] = ACTIONS(2308), + [aux_sym_cmd_identifier_token33] = ACTIONS(2308), + [aux_sym_cmd_identifier_token34] = ACTIONS(2306), + [aux_sym_cmd_identifier_token35] = ACTIONS(2308), + [aux_sym_cmd_identifier_token36] = ACTIONS(2308), + [aux_sym_cmd_identifier_token37] = ACTIONS(2308), + [aux_sym_cmd_identifier_token38] = ACTIONS(2306), + [aux_sym_cmd_identifier_token39] = ACTIONS(2308), + [aux_sym_cmd_identifier_token40] = ACTIONS(2308), + [anon_sym_def] = ACTIONS(2306), + [anon_sym_export_DASHenv] = ACTIONS(2306), + [anon_sym_extern] = ACTIONS(2306), + [anon_sym_module] = ACTIONS(2306), + [anon_sym_use] = ACTIONS(2306), + [anon_sym_LPAREN] = ACTIONS(2308), + [anon_sym_COMMA] = ACTIONS(2308), + [anon_sym_DOLLAR] = ACTIONS(2306), + [anon_sym_error] = ACTIONS(2306), + [anon_sym_DASH2] = ACTIONS(2306), + [anon_sym_break] = ACTIONS(2306), + [anon_sym_continue] = ACTIONS(2306), + [anon_sym_for] = ACTIONS(2306), + [anon_sym_in2] = ACTIONS(2306), + [anon_sym_loop] = ACTIONS(2306), + [anon_sym_make] = ACTIONS(2306), + [anon_sym_while] = ACTIONS(2306), + [anon_sym_do] = ACTIONS(2306), + [anon_sym_if] = ACTIONS(2306), + [anon_sym_else] = ACTIONS(2306), + [anon_sym_match] = ACTIONS(2306), + [anon_sym_RBRACE] = ACTIONS(2308), + [anon_sym_try] = ACTIONS(2306), + [anon_sym_catch] = ACTIONS(2306), + [anon_sym_return] = ACTIONS(2306), + [anon_sym_source] = ACTIONS(2306), + [anon_sym_source_DASHenv] = ACTIONS(2306), + [anon_sym_hide] = ACTIONS(2306), + [anon_sym_hide_DASHenv] = ACTIONS(2306), + [anon_sym_overlay] = ACTIONS(2306), + [anon_sym_as] = ACTIONS(2306), + [anon_sym_PLUS2] = ACTIONS(2306), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2308), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2308), + [aux_sym__val_number_decimal_token1] = ACTIONS(2306), + [aux_sym__val_number_decimal_token2] = ACTIONS(2308), + [aux_sym__val_number_decimal_token3] = ACTIONS(2308), + [aux_sym__val_number_decimal_token4] = ACTIONS(2308), + [aux_sym__val_number_token1] = ACTIONS(2308), + [aux_sym__val_number_token2] = ACTIONS(2308), + [aux_sym__val_number_token3] = ACTIONS(2308), + [aux_sym__val_number_token4] = ACTIONS(2306), + [aux_sym__val_number_token5] = ACTIONS(2306), + [aux_sym__val_number_token6] = ACTIONS(2306), + [anon_sym_DQUOTE] = ACTIONS(2308), + [sym__str_single_quotes] = ACTIONS(2308), + [sym__str_back_ticks] = ACTIONS(2308), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2308), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2308), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2308), + [anon_sym_register] = ACTIONS(2306), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2308), }, - [748] = { - [sym_comment] = STATE(748), - [anon_sym_export] = ACTIONS(1941), - [anon_sym_alias] = ACTIONS(1941), - [anon_sym_let] = ACTIONS(1941), - [anon_sym_let_DASHenv] = ACTIONS(1941), - [anon_sym_mut] = ACTIONS(1941), - [anon_sym_const] = ACTIONS(1941), - [aux_sym_cmd_identifier_token1] = ACTIONS(1941), - [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(1941), - [aux_sym_cmd_identifier_token9] = ACTIONS(1941), - [aux_sym_cmd_identifier_token10] = ACTIONS(1943), - [aux_sym_cmd_identifier_token11] = ACTIONS(1943), - [aux_sym_cmd_identifier_token12] = ACTIONS(1941), - [aux_sym_cmd_identifier_token13] = ACTIONS(1941), - [aux_sym_cmd_identifier_token14] = ACTIONS(1941), - [aux_sym_cmd_identifier_token15] = ACTIONS(1941), - [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(1941), - [aux_sym_cmd_identifier_token35] = ACTIONS(1943), - [aux_sym_cmd_identifier_token36] = ACTIONS(1943), - [aux_sym_cmd_identifier_token37] = ACTIONS(1943), - [aux_sym_cmd_identifier_token38] = ACTIONS(1941), - [aux_sym_cmd_identifier_token39] = ACTIONS(1943), - [aux_sym_cmd_identifier_token40] = ACTIONS(1943), - [anon_sym_def] = ACTIONS(1941), - [anon_sym_export_DASHenv] = ACTIONS(1941), - [anon_sym_extern] = ACTIONS(1941), - [anon_sym_module] = ACTIONS(1941), - [anon_sym_use] = ACTIONS(1941), - [anon_sym_LPAREN] = ACTIONS(1943), - [anon_sym_COMMA] = ACTIONS(1943), - [anon_sym_DOLLAR] = ACTIONS(1941), - [anon_sym_error] = ACTIONS(1941), - [anon_sym_DASH2] = ACTIONS(1941), - [anon_sym_break] = ACTIONS(1941), - [anon_sym_continue] = ACTIONS(1941), - [anon_sym_for] = ACTIONS(1941), - [anon_sym_in2] = ACTIONS(1941), - [anon_sym_loop] = ACTIONS(1941), - [anon_sym_make] = ACTIONS(1941), - [anon_sym_while] = ACTIONS(1941), - [anon_sym_do] = ACTIONS(1941), - [anon_sym_if] = ACTIONS(1941), - [anon_sym_else] = ACTIONS(1941), - [anon_sym_match] = ACTIONS(1941), - [anon_sym_RBRACE] = ACTIONS(1943), - [anon_sym_try] = ACTIONS(1941), - [anon_sym_catch] = ACTIONS(1941), - [anon_sym_return] = ACTIONS(1941), - [anon_sym_source] = ACTIONS(1941), - [anon_sym_source_DASHenv] = ACTIONS(1941), - [anon_sym_register] = ACTIONS(1941), - [anon_sym_hide] = ACTIONS(1941), - [anon_sym_hide_DASHenv] = ACTIONS(1941), - [anon_sym_overlay] = ACTIONS(1941), - [anon_sym_as] = ACTIONS(1941), - [anon_sym_PLUS2] = ACTIONS(1941), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1943), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1943), - [aux_sym__val_number_decimal_token1] = ACTIONS(1941), - [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), - [aux_sym__val_number_token4] = ACTIONS(1941), - [aux_sym__val_number_token5] = ACTIONS(1941), - [aux_sym__val_number_token6] = ACTIONS(1941), - [anon_sym_DQUOTE] = ACTIONS(1943), - [sym__str_single_quotes] = ACTIONS(1943), - [sym__str_back_ticks] = ACTIONS(1943), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1943), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1943), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1943), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1943), + [727] = { + [sym_comment] = STATE(727), + [anon_sym_export] = ACTIONS(2022), + [anon_sym_alias] = ACTIONS(2022), + [anon_sym_let] = ACTIONS(2022), + [anon_sym_let_DASHenv] = ACTIONS(2022), + [anon_sym_mut] = ACTIONS(2022), + [anon_sym_const] = ACTIONS(2022), + [aux_sym_cmd_identifier_token1] = ACTIONS(2022), + [aux_sym_cmd_identifier_token2] = ACTIONS(2024), + [aux_sym_cmd_identifier_token3] = ACTIONS(2024), + [aux_sym_cmd_identifier_token4] = ACTIONS(2024), + [aux_sym_cmd_identifier_token5] = ACTIONS(2024), + [aux_sym_cmd_identifier_token6] = ACTIONS(2024), + [aux_sym_cmd_identifier_token7] = ACTIONS(2024), + [aux_sym_cmd_identifier_token8] = ACTIONS(2022), + [aux_sym_cmd_identifier_token9] = ACTIONS(2022), + [aux_sym_cmd_identifier_token10] = ACTIONS(2024), + [aux_sym_cmd_identifier_token11] = ACTIONS(2024), + [aux_sym_cmd_identifier_token12] = ACTIONS(2022), + [aux_sym_cmd_identifier_token13] = ACTIONS(2022), + [aux_sym_cmd_identifier_token14] = ACTIONS(2022), + [aux_sym_cmd_identifier_token15] = ACTIONS(2022), + [aux_sym_cmd_identifier_token16] = ACTIONS(2024), + [aux_sym_cmd_identifier_token17] = ACTIONS(2024), + [aux_sym_cmd_identifier_token18] = ACTIONS(2024), + [aux_sym_cmd_identifier_token19] = ACTIONS(2024), + [aux_sym_cmd_identifier_token20] = ACTIONS(2024), + [aux_sym_cmd_identifier_token21] = ACTIONS(2024), + [aux_sym_cmd_identifier_token22] = ACTIONS(2024), + [aux_sym_cmd_identifier_token23] = ACTIONS(2024), + [aux_sym_cmd_identifier_token24] = ACTIONS(2024), + [aux_sym_cmd_identifier_token25] = ACTIONS(2024), + [aux_sym_cmd_identifier_token26] = ACTIONS(2024), + [aux_sym_cmd_identifier_token27] = ACTIONS(2024), + [aux_sym_cmd_identifier_token28] = ACTIONS(2024), + [aux_sym_cmd_identifier_token29] = ACTIONS(2024), + [aux_sym_cmd_identifier_token30] = ACTIONS(2024), + [aux_sym_cmd_identifier_token31] = ACTIONS(2024), + [aux_sym_cmd_identifier_token32] = ACTIONS(2024), + [aux_sym_cmd_identifier_token33] = ACTIONS(2024), + [aux_sym_cmd_identifier_token34] = ACTIONS(2022), + [aux_sym_cmd_identifier_token35] = ACTIONS(2024), + [aux_sym_cmd_identifier_token36] = ACTIONS(2024), + [aux_sym_cmd_identifier_token37] = ACTIONS(2024), + [aux_sym_cmd_identifier_token38] = ACTIONS(2022), + [aux_sym_cmd_identifier_token39] = ACTIONS(2024), + [aux_sym_cmd_identifier_token40] = ACTIONS(2024), + [anon_sym_def] = ACTIONS(2022), + [anon_sym_export_DASHenv] = ACTIONS(2022), + [anon_sym_extern] = ACTIONS(2022), + [anon_sym_module] = ACTIONS(2022), + [anon_sym_use] = ACTIONS(2022), + [anon_sym_LPAREN] = ACTIONS(2024), + [anon_sym_COMMA] = ACTIONS(2024), + [anon_sym_DOLLAR] = ACTIONS(2022), + [anon_sym_error] = ACTIONS(2022), + [anon_sym_DASH2] = ACTIONS(2022), + [anon_sym_break] = ACTIONS(2022), + [anon_sym_continue] = ACTIONS(2022), + [anon_sym_for] = ACTIONS(2022), + [anon_sym_in2] = ACTIONS(2022), + [anon_sym_loop] = ACTIONS(2022), + [anon_sym_make] = ACTIONS(2022), + [anon_sym_while] = ACTIONS(2022), + [anon_sym_do] = ACTIONS(2022), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_else] = ACTIONS(2022), + [anon_sym_match] = ACTIONS(2022), + [anon_sym_RBRACE] = ACTIONS(2024), + [anon_sym_try] = ACTIONS(2022), + [anon_sym_catch] = ACTIONS(2022), + [anon_sym_return] = ACTIONS(2022), + [anon_sym_source] = ACTIONS(2022), + [anon_sym_source_DASHenv] = ACTIONS(2022), + [anon_sym_hide] = ACTIONS(2022), + [anon_sym_hide_DASHenv] = ACTIONS(2022), + [anon_sym_overlay] = ACTIONS(2022), + [anon_sym_as] = ACTIONS(2022), + [anon_sym_PLUS2] = ACTIONS(2022), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2024), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2024), + [aux_sym__val_number_decimal_token1] = ACTIONS(2022), + [aux_sym__val_number_decimal_token2] = ACTIONS(2024), + [aux_sym__val_number_decimal_token3] = ACTIONS(2024), + [aux_sym__val_number_decimal_token4] = ACTIONS(2024), + [aux_sym__val_number_token1] = ACTIONS(2024), + [aux_sym__val_number_token2] = ACTIONS(2024), + [aux_sym__val_number_token3] = ACTIONS(2024), + [aux_sym__val_number_token4] = ACTIONS(2022), + [aux_sym__val_number_token5] = ACTIONS(2022), + [aux_sym__val_number_token6] = ACTIONS(2022), + [anon_sym_DQUOTE] = ACTIONS(2024), + [sym__str_single_quotes] = ACTIONS(2024), + [sym__str_back_ticks] = ACTIONS(2024), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2024), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2024), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2024), + [anon_sym_register] = ACTIONS(2022), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2024), }, - [749] = { - [sym_comment] = STATE(749), - [anon_sym_export] = ACTIONS(2446), - [anon_sym_alias] = ACTIONS(2446), - [anon_sym_let] = ACTIONS(2446), - [anon_sym_let_DASHenv] = ACTIONS(2446), - [anon_sym_mut] = ACTIONS(2446), - [anon_sym_const] = ACTIONS(2446), - [aux_sym_cmd_identifier_token1] = ACTIONS(2446), - [aux_sym_cmd_identifier_token2] = ACTIONS(2448), - [aux_sym_cmd_identifier_token3] = ACTIONS(2448), - [aux_sym_cmd_identifier_token4] = ACTIONS(2448), - [aux_sym_cmd_identifier_token5] = ACTIONS(2448), - [aux_sym_cmd_identifier_token6] = ACTIONS(2448), - [aux_sym_cmd_identifier_token7] = ACTIONS(2448), - [aux_sym_cmd_identifier_token8] = ACTIONS(2446), - [aux_sym_cmd_identifier_token9] = ACTIONS(2446), - [aux_sym_cmd_identifier_token10] = ACTIONS(2448), - [aux_sym_cmd_identifier_token11] = ACTIONS(2448), - [aux_sym_cmd_identifier_token12] = ACTIONS(2446), - [aux_sym_cmd_identifier_token13] = ACTIONS(2446), - [aux_sym_cmd_identifier_token14] = ACTIONS(2446), - [aux_sym_cmd_identifier_token15] = ACTIONS(2446), - [aux_sym_cmd_identifier_token16] = ACTIONS(2448), - [aux_sym_cmd_identifier_token17] = ACTIONS(2448), - [aux_sym_cmd_identifier_token18] = ACTIONS(2448), - [aux_sym_cmd_identifier_token19] = ACTIONS(2448), - [aux_sym_cmd_identifier_token20] = ACTIONS(2448), - [aux_sym_cmd_identifier_token21] = ACTIONS(2448), - [aux_sym_cmd_identifier_token22] = ACTIONS(2448), - [aux_sym_cmd_identifier_token23] = ACTIONS(2448), - [aux_sym_cmd_identifier_token24] = ACTIONS(2448), - [aux_sym_cmd_identifier_token25] = ACTIONS(2448), - [aux_sym_cmd_identifier_token26] = ACTIONS(2448), - [aux_sym_cmd_identifier_token27] = ACTIONS(2448), - [aux_sym_cmd_identifier_token28] = ACTIONS(2448), - [aux_sym_cmd_identifier_token29] = ACTIONS(2448), - [aux_sym_cmd_identifier_token30] = ACTIONS(2448), - [aux_sym_cmd_identifier_token31] = ACTIONS(2448), - [aux_sym_cmd_identifier_token32] = ACTIONS(2448), - [aux_sym_cmd_identifier_token33] = ACTIONS(2448), - [aux_sym_cmd_identifier_token34] = ACTIONS(2446), - [aux_sym_cmd_identifier_token35] = ACTIONS(2448), - [aux_sym_cmd_identifier_token36] = ACTIONS(2448), - [aux_sym_cmd_identifier_token37] = ACTIONS(2448), - [aux_sym_cmd_identifier_token38] = ACTIONS(2446), - [aux_sym_cmd_identifier_token39] = ACTIONS(2448), - [aux_sym_cmd_identifier_token40] = ACTIONS(2448), - [anon_sym_def] = ACTIONS(2446), - [anon_sym_export_DASHenv] = ACTIONS(2446), - [anon_sym_extern] = ACTIONS(2446), - [anon_sym_module] = ACTIONS(2446), - [anon_sym_use] = ACTIONS(2446), - [anon_sym_LPAREN] = ACTIONS(2448), - [anon_sym_COMMA] = ACTIONS(2448), - [anon_sym_DOLLAR] = ACTIONS(2446), - [anon_sym_error] = ACTIONS(2446), - [anon_sym_DASH2] = ACTIONS(2446), - [anon_sym_break] = ACTIONS(2446), - [anon_sym_continue] = ACTIONS(2446), - [anon_sym_for] = ACTIONS(2446), - [anon_sym_in2] = ACTIONS(2446), - [anon_sym_loop] = ACTIONS(2446), - [anon_sym_make] = ACTIONS(2446), - [anon_sym_while] = ACTIONS(2446), - [anon_sym_do] = ACTIONS(2446), - [anon_sym_if] = ACTIONS(2446), - [anon_sym_else] = ACTIONS(2446), - [anon_sym_match] = ACTIONS(2446), - [anon_sym_RBRACE] = ACTIONS(2448), - [anon_sym_try] = ACTIONS(2446), - [anon_sym_catch] = ACTIONS(2446), - [anon_sym_return] = ACTIONS(2446), - [anon_sym_source] = ACTIONS(2446), - [anon_sym_source_DASHenv] = ACTIONS(2446), - [anon_sym_register] = ACTIONS(2446), - [anon_sym_hide] = ACTIONS(2446), - [anon_sym_hide_DASHenv] = ACTIONS(2446), - [anon_sym_overlay] = ACTIONS(2446), - [anon_sym_as] = ACTIONS(2446), - [anon_sym_PLUS2] = ACTIONS(2446), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2448), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2448), - [aux_sym__val_number_decimal_token1] = ACTIONS(2446), - [aux_sym__val_number_decimal_token2] = ACTIONS(2448), - [aux_sym__val_number_decimal_token3] = ACTIONS(2448), - [aux_sym__val_number_decimal_token4] = ACTIONS(2448), - [aux_sym__val_number_token1] = ACTIONS(2448), - [aux_sym__val_number_token2] = ACTIONS(2448), - [aux_sym__val_number_token3] = ACTIONS(2448), - [aux_sym__val_number_token4] = ACTIONS(2446), - [aux_sym__val_number_token5] = ACTIONS(2446), - [aux_sym__val_number_token6] = ACTIONS(2446), - [anon_sym_DQUOTE] = ACTIONS(2448), - [sym__str_single_quotes] = ACTIONS(2448), - [sym__str_back_ticks] = ACTIONS(2448), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2448), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2448), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2448), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2448), + [728] = { + [sym_comment] = STATE(728), + [anon_sym_export] = ACTIONS(2026), + [anon_sym_alias] = ACTIONS(2026), + [anon_sym_let] = ACTIONS(2026), + [anon_sym_let_DASHenv] = ACTIONS(2026), + [anon_sym_mut] = ACTIONS(2026), + [anon_sym_const] = ACTIONS(2026), + [aux_sym_cmd_identifier_token1] = ACTIONS(2026), + [aux_sym_cmd_identifier_token2] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2028), + [aux_sym_cmd_identifier_token4] = ACTIONS(2028), + [aux_sym_cmd_identifier_token5] = ACTIONS(2028), + [aux_sym_cmd_identifier_token6] = ACTIONS(2028), + [aux_sym_cmd_identifier_token7] = ACTIONS(2028), + [aux_sym_cmd_identifier_token8] = ACTIONS(2026), + [aux_sym_cmd_identifier_token9] = ACTIONS(2026), + [aux_sym_cmd_identifier_token10] = ACTIONS(2028), + [aux_sym_cmd_identifier_token11] = ACTIONS(2028), + [aux_sym_cmd_identifier_token12] = ACTIONS(2026), + [aux_sym_cmd_identifier_token13] = ACTIONS(2026), + [aux_sym_cmd_identifier_token14] = ACTIONS(2026), + [aux_sym_cmd_identifier_token15] = ACTIONS(2026), + [aux_sym_cmd_identifier_token16] = ACTIONS(2028), + [aux_sym_cmd_identifier_token17] = ACTIONS(2028), + [aux_sym_cmd_identifier_token18] = ACTIONS(2028), + [aux_sym_cmd_identifier_token19] = ACTIONS(2028), + [aux_sym_cmd_identifier_token20] = ACTIONS(2028), + [aux_sym_cmd_identifier_token21] = ACTIONS(2028), + [aux_sym_cmd_identifier_token22] = ACTIONS(2028), + [aux_sym_cmd_identifier_token23] = ACTIONS(2028), + [aux_sym_cmd_identifier_token24] = ACTIONS(2028), + [aux_sym_cmd_identifier_token25] = ACTIONS(2028), + [aux_sym_cmd_identifier_token26] = ACTIONS(2028), + [aux_sym_cmd_identifier_token27] = ACTIONS(2028), + [aux_sym_cmd_identifier_token28] = ACTIONS(2028), + [aux_sym_cmd_identifier_token29] = ACTIONS(2028), + [aux_sym_cmd_identifier_token30] = ACTIONS(2028), + [aux_sym_cmd_identifier_token31] = ACTIONS(2028), + [aux_sym_cmd_identifier_token32] = ACTIONS(2028), + [aux_sym_cmd_identifier_token33] = ACTIONS(2028), + [aux_sym_cmd_identifier_token34] = ACTIONS(2026), + [aux_sym_cmd_identifier_token35] = ACTIONS(2028), + [aux_sym_cmd_identifier_token36] = ACTIONS(2028), + [aux_sym_cmd_identifier_token37] = ACTIONS(2028), + [aux_sym_cmd_identifier_token38] = ACTIONS(2026), + [aux_sym_cmd_identifier_token39] = ACTIONS(2028), + [aux_sym_cmd_identifier_token40] = ACTIONS(2028), + [anon_sym_def] = ACTIONS(2026), + [anon_sym_export_DASHenv] = ACTIONS(2026), + [anon_sym_extern] = ACTIONS(2026), + [anon_sym_module] = ACTIONS(2026), + [anon_sym_use] = ACTIONS(2026), + [anon_sym_LPAREN] = ACTIONS(2028), + [anon_sym_COMMA] = ACTIONS(2028), + [anon_sym_DOLLAR] = ACTIONS(2026), + [anon_sym_error] = ACTIONS(2026), + [anon_sym_DASH2] = ACTIONS(2026), + [anon_sym_break] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(2026), + [anon_sym_for] = ACTIONS(2026), + [anon_sym_in2] = ACTIONS(2026), + [anon_sym_loop] = ACTIONS(2026), + [anon_sym_make] = ACTIONS(2026), + [anon_sym_while] = ACTIONS(2026), + [anon_sym_do] = ACTIONS(2026), + [anon_sym_if] = ACTIONS(2026), + [anon_sym_else] = ACTIONS(2026), + [anon_sym_match] = ACTIONS(2026), + [anon_sym_RBRACE] = ACTIONS(2028), + [anon_sym_try] = ACTIONS(2026), + [anon_sym_catch] = ACTIONS(2026), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_source] = ACTIONS(2026), + [anon_sym_source_DASHenv] = ACTIONS(2026), + [anon_sym_hide] = ACTIONS(2026), + [anon_sym_hide_DASHenv] = ACTIONS(2026), + [anon_sym_overlay] = ACTIONS(2026), + [anon_sym_as] = ACTIONS(2026), + [anon_sym_PLUS2] = ACTIONS(2026), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2028), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2028), + [aux_sym__val_number_decimal_token1] = ACTIONS(2026), + [aux_sym__val_number_decimal_token2] = ACTIONS(2028), + [aux_sym__val_number_decimal_token3] = ACTIONS(2028), + [aux_sym__val_number_decimal_token4] = ACTIONS(2028), + [aux_sym__val_number_token1] = ACTIONS(2028), + [aux_sym__val_number_token2] = ACTIONS(2028), + [aux_sym__val_number_token3] = ACTIONS(2028), + [aux_sym__val_number_token4] = ACTIONS(2026), + [aux_sym__val_number_token5] = ACTIONS(2026), + [aux_sym__val_number_token6] = ACTIONS(2026), + [anon_sym_DQUOTE] = ACTIONS(2028), + [sym__str_single_quotes] = ACTIONS(2028), + [sym__str_back_ticks] = ACTIONS(2028), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2028), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2028), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2028), + [anon_sym_register] = ACTIONS(2026), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2028), }, - [750] = { - [sym_comment] = STATE(750), + [729] = { + [sym_comment] = STATE(729), + [aux_sym_shebang_repeat1] = STATE(729), + [anon_sym_export] = ACTIONS(1294), + [anon_sym_alias] = ACTIONS(1294), + [anon_sym_let] = ACTIONS(1294), + [anon_sym_let_DASHenv] = ACTIONS(1294), + [anon_sym_mut] = ACTIONS(1294), + [anon_sym_const] = ACTIONS(1294), + [aux_sym_cmd_identifier_token1] = ACTIONS(1294), + [aux_sym_cmd_identifier_token2] = ACTIONS(1296), + [aux_sym_cmd_identifier_token3] = ACTIONS(1296), + [aux_sym_cmd_identifier_token4] = ACTIONS(1296), + [aux_sym_cmd_identifier_token5] = ACTIONS(1296), + [aux_sym_cmd_identifier_token6] = ACTIONS(1296), + [aux_sym_cmd_identifier_token7] = ACTIONS(1296), + [aux_sym_cmd_identifier_token8] = ACTIONS(1294), + [aux_sym_cmd_identifier_token9] = ACTIONS(1294), + [aux_sym_cmd_identifier_token10] = ACTIONS(1296), + [aux_sym_cmd_identifier_token11] = ACTIONS(1296), + [aux_sym_cmd_identifier_token12] = ACTIONS(1294), + [aux_sym_cmd_identifier_token13] = ACTIONS(1294), + [aux_sym_cmd_identifier_token14] = ACTIONS(1294), + [aux_sym_cmd_identifier_token15] = ACTIONS(1294), + [aux_sym_cmd_identifier_token16] = ACTIONS(1296), + [aux_sym_cmd_identifier_token17] = ACTIONS(1296), + [aux_sym_cmd_identifier_token18] = ACTIONS(1296), + [aux_sym_cmd_identifier_token19] = ACTIONS(1296), + [aux_sym_cmd_identifier_token20] = ACTIONS(1296), + [aux_sym_cmd_identifier_token21] = ACTIONS(1296), + [aux_sym_cmd_identifier_token22] = ACTIONS(1296), + [aux_sym_cmd_identifier_token23] = ACTIONS(1296), + [aux_sym_cmd_identifier_token24] = ACTIONS(1296), + [aux_sym_cmd_identifier_token25] = ACTIONS(1296), + [aux_sym_cmd_identifier_token26] = ACTIONS(1296), + [aux_sym_cmd_identifier_token27] = ACTIONS(1296), + [aux_sym_cmd_identifier_token28] = ACTIONS(1296), + [aux_sym_cmd_identifier_token29] = ACTIONS(1296), + [aux_sym_cmd_identifier_token30] = ACTIONS(1296), + [aux_sym_cmd_identifier_token31] = ACTIONS(1296), + [aux_sym_cmd_identifier_token32] = ACTIONS(1296), + [aux_sym_cmd_identifier_token33] = ACTIONS(1296), + [aux_sym_cmd_identifier_token34] = ACTIONS(1294), + [aux_sym_cmd_identifier_token35] = ACTIONS(1296), + [aux_sym_cmd_identifier_token36] = ACTIONS(1296), + [aux_sym_cmd_identifier_token37] = ACTIONS(1296), + [aux_sym_cmd_identifier_token38] = ACTIONS(1294), + [aux_sym_cmd_identifier_token39] = ACTIONS(1296), + [aux_sym_cmd_identifier_token40] = ACTIONS(1296), + [sym__newline] = ACTIONS(2499), + [anon_sym_def] = ACTIONS(1294), + [anon_sym_export_DASHenv] = ACTIONS(1294), + [anon_sym_extern] = ACTIONS(1294), + [anon_sym_module] = ACTIONS(1294), + [anon_sym_use] = ACTIONS(1294), + [anon_sym_LPAREN] = ACTIONS(1296), + [anon_sym_DOLLAR] = ACTIONS(1294), + [anon_sym_error] = ACTIONS(1294), + [anon_sym_DASH2] = ACTIONS(1294), + [anon_sym_break] = ACTIONS(1294), + [anon_sym_continue] = ACTIONS(1294), + [anon_sym_for] = ACTIONS(1294), + [anon_sym_in2] = ACTIONS(1294), + [anon_sym_loop] = ACTIONS(1294), + [anon_sym_make] = ACTIONS(1294), + [anon_sym_while] = ACTIONS(1294), + [anon_sym_do] = ACTIONS(1294), + [anon_sym_if] = ACTIONS(1294), + [anon_sym_else] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1294), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_catch] = ACTIONS(1294), + [anon_sym_return] = ACTIONS(1294), + [anon_sym_source] = ACTIONS(1294), + [anon_sym_source_DASHenv] = ACTIONS(1294), + [anon_sym_hide] = ACTIONS(1294), + [anon_sym_hide_DASHenv] = ACTIONS(1294), + [anon_sym_overlay] = ACTIONS(1294), + [anon_sym_as] = ACTIONS(1294), + [anon_sym_PLUS2] = ACTIONS(1294), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1296), + [aux_sym__val_number_decimal_token1] = ACTIONS(1294), + [aux_sym__val_number_decimal_token2] = ACTIONS(1296), + [aux_sym__val_number_decimal_token3] = ACTIONS(1296), + [aux_sym__val_number_decimal_token4] = ACTIONS(1296), + [aux_sym__val_number_token1] = ACTIONS(1296), + [aux_sym__val_number_token2] = ACTIONS(1296), + [aux_sym__val_number_token3] = ACTIONS(1296), + [aux_sym__val_number_token4] = ACTIONS(1294), + [aux_sym__val_number_token5] = ACTIONS(1294), + [aux_sym__val_number_token6] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(1296), + [sym__str_single_quotes] = ACTIONS(1296), + [sym__str_back_ticks] = ACTIONS(1296), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1296), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1296), + [anon_sym_register] = ACTIONS(1294), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1296), + }, + [730] = { + [sym_comment] = STATE(730), + [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(1841), + [aux_sym_cmd_identifier_token3] = ACTIONS(1841), + [aux_sym_cmd_identifier_token4] = ACTIONS(1841), + [aux_sym_cmd_identifier_token5] = ACTIONS(1841), + [aux_sym_cmd_identifier_token6] = ACTIONS(1841), + [aux_sym_cmd_identifier_token7] = ACTIONS(1841), + [aux_sym_cmd_identifier_token8] = ACTIONS(1839), + [aux_sym_cmd_identifier_token9] = ACTIONS(1839), + [aux_sym_cmd_identifier_token10] = ACTIONS(1841), + [aux_sym_cmd_identifier_token11] = ACTIONS(1841), + [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(1841), + [aux_sym_cmd_identifier_token17] = ACTIONS(1841), + [aux_sym_cmd_identifier_token18] = ACTIONS(1841), + [aux_sym_cmd_identifier_token19] = ACTIONS(1841), + [aux_sym_cmd_identifier_token20] = ACTIONS(1841), + [aux_sym_cmd_identifier_token21] = ACTIONS(1841), + [aux_sym_cmd_identifier_token22] = ACTIONS(1841), + [aux_sym_cmd_identifier_token23] = ACTIONS(1841), + [aux_sym_cmd_identifier_token24] = ACTIONS(1841), + [aux_sym_cmd_identifier_token25] = ACTIONS(1841), + [aux_sym_cmd_identifier_token26] = ACTIONS(1841), + [aux_sym_cmd_identifier_token27] = ACTIONS(1841), + [aux_sym_cmd_identifier_token28] = ACTIONS(1841), + [aux_sym_cmd_identifier_token29] = ACTIONS(1841), + [aux_sym_cmd_identifier_token30] = ACTIONS(1841), + [aux_sym_cmd_identifier_token31] = ACTIONS(1841), + [aux_sym_cmd_identifier_token32] = ACTIONS(1841), + [aux_sym_cmd_identifier_token33] = ACTIONS(1841), + [aux_sym_cmd_identifier_token34] = ACTIONS(1839), + [aux_sym_cmd_identifier_token35] = ACTIONS(1841), + [aux_sym_cmd_identifier_token36] = ACTIONS(1841), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1839), + [anon_sym_error] = ACTIONS(1839), + [anon_sym_DASH2] = ACTIONS(1839), + [anon_sym_break] = ACTIONS(1839), + [anon_sym_continue] = ACTIONS(1839), + [anon_sym_for] = ACTIONS(1839), + [anon_sym_in2] = 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_hide] = ACTIONS(1839), + [anon_sym_hide_DASHenv] = ACTIONS(1839), + [anon_sym_overlay] = ACTIONS(1839), + [anon_sym_as] = ACTIONS(1839), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(1839), + [aux_sym__val_number_token5] = ACTIONS(1839), + [aux_sym__val_number_token6] = ACTIONS(1839), + [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1841), + [anon_sym_register] = ACTIONS(1839), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1841), + }, + [731] = { + [sym_comment] = STATE(731), + [anon_sym_export] = ACTIONS(2043), + [anon_sym_alias] = ACTIONS(2043), + [anon_sym_let] = ACTIONS(2043), + [anon_sym_let_DASHenv] = ACTIONS(2043), + [anon_sym_mut] = ACTIONS(2043), + [anon_sym_const] = ACTIONS(2043), + [aux_sym_cmd_identifier_token1] = ACTIONS(2043), + [aux_sym_cmd_identifier_token2] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2049), + [aux_sym_cmd_identifier_token4] = ACTIONS(2049), + [aux_sym_cmd_identifier_token5] = ACTIONS(2049), + [aux_sym_cmd_identifier_token6] = ACTIONS(2049), + [aux_sym_cmd_identifier_token7] = ACTIONS(2049), + [aux_sym_cmd_identifier_token8] = ACTIONS(2043), + [aux_sym_cmd_identifier_token9] = ACTIONS(2043), + [aux_sym_cmd_identifier_token10] = ACTIONS(2049), + [aux_sym_cmd_identifier_token11] = ACTIONS(2049), + [aux_sym_cmd_identifier_token12] = ACTIONS(2043), + [aux_sym_cmd_identifier_token13] = ACTIONS(2043), + [aux_sym_cmd_identifier_token14] = ACTIONS(2043), + [aux_sym_cmd_identifier_token15] = ACTIONS(2043), + [aux_sym_cmd_identifier_token16] = ACTIONS(2049), + [aux_sym_cmd_identifier_token17] = ACTIONS(2049), + [aux_sym_cmd_identifier_token18] = ACTIONS(2049), + [aux_sym_cmd_identifier_token19] = ACTIONS(2049), + [aux_sym_cmd_identifier_token20] = ACTIONS(2049), + [aux_sym_cmd_identifier_token21] = ACTIONS(2049), + [aux_sym_cmd_identifier_token22] = ACTIONS(2049), + [aux_sym_cmd_identifier_token23] = ACTIONS(2049), + [aux_sym_cmd_identifier_token24] = ACTIONS(2049), + [aux_sym_cmd_identifier_token25] = ACTIONS(2049), + [aux_sym_cmd_identifier_token26] = ACTIONS(2049), + [aux_sym_cmd_identifier_token27] = ACTIONS(2049), + [aux_sym_cmd_identifier_token28] = ACTIONS(2049), + [aux_sym_cmd_identifier_token29] = ACTIONS(2049), + [aux_sym_cmd_identifier_token30] = ACTIONS(2049), + [aux_sym_cmd_identifier_token31] = ACTIONS(2049), + [aux_sym_cmd_identifier_token32] = ACTIONS(2049), + [aux_sym_cmd_identifier_token33] = ACTIONS(2049), + [aux_sym_cmd_identifier_token34] = ACTIONS(2043), + [aux_sym_cmd_identifier_token35] = ACTIONS(2049), + [aux_sym_cmd_identifier_token36] = ACTIONS(2049), + [aux_sym_cmd_identifier_token37] = ACTIONS(2049), + [aux_sym_cmd_identifier_token38] = ACTIONS(2043), + [aux_sym_cmd_identifier_token39] = ACTIONS(2049), + [aux_sym_cmd_identifier_token40] = ACTIONS(2049), + [anon_sym_def] = ACTIONS(2043), + [anon_sym_export_DASHenv] = ACTIONS(2043), + [anon_sym_extern] = ACTIONS(2043), + [anon_sym_module] = ACTIONS(2043), + [anon_sym_use] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_COMMA] = ACTIONS(2049), + [anon_sym_DOLLAR] = ACTIONS(2043), + [anon_sym_error] = ACTIONS(2043), + [anon_sym_DASH2] = ACTIONS(2043), + [anon_sym_break] = ACTIONS(2043), + [anon_sym_continue] = ACTIONS(2043), + [anon_sym_for] = ACTIONS(2043), + [anon_sym_in2] = ACTIONS(2043), + [anon_sym_loop] = ACTIONS(2043), + [anon_sym_make] = ACTIONS(2043), + [anon_sym_while] = ACTIONS(2043), + [anon_sym_do] = ACTIONS(2043), + [anon_sym_if] = ACTIONS(2043), + [anon_sym_else] = ACTIONS(2043), + [anon_sym_match] = ACTIONS(2043), + [anon_sym_RBRACE] = ACTIONS(2049), + [anon_sym_try] = ACTIONS(2043), + [anon_sym_catch] = ACTIONS(2043), + [anon_sym_return] = ACTIONS(2043), + [anon_sym_source] = ACTIONS(2043), + [anon_sym_source_DASHenv] = ACTIONS(2043), + [anon_sym_hide] = ACTIONS(2043), + [anon_sym_hide_DASHenv] = ACTIONS(2043), + [anon_sym_overlay] = ACTIONS(2043), + [anon_sym_as] = ACTIONS(2043), + [anon_sym_PLUS2] = ACTIONS(2043), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2049), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2049), + [aux_sym__val_number_decimal_token1] = ACTIONS(2043), + [aux_sym__val_number_decimal_token2] = ACTIONS(2049), + [aux_sym__val_number_decimal_token3] = ACTIONS(2049), + [aux_sym__val_number_decimal_token4] = ACTIONS(2049), + [aux_sym__val_number_token1] = ACTIONS(2049), + [aux_sym__val_number_token2] = ACTIONS(2049), + [aux_sym__val_number_token3] = ACTIONS(2049), + [aux_sym__val_number_token4] = ACTIONS(2043), + [aux_sym__val_number_token5] = ACTIONS(2043), + [aux_sym__val_number_token6] = ACTIONS(2043), + [anon_sym_DQUOTE] = ACTIONS(2049), + [sym__str_single_quotes] = ACTIONS(2049), + [sym__str_back_ticks] = ACTIONS(2049), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2049), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2049), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2049), + [anon_sym_register] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2049), + }, + [732] = { + [sym_comment] = STATE(732), + [anon_sym_export] = ACTIONS(2374), + [anon_sym_alias] = ACTIONS(2374), + [anon_sym_let] = ACTIONS(2374), + [anon_sym_let_DASHenv] = ACTIONS(2374), + [anon_sym_mut] = ACTIONS(2374), + [anon_sym_const] = ACTIONS(2374), + [aux_sym_cmd_identifier_token1] = ACTIONS(2374), + [aux_sym_cmd_identifier_token2] = ACTIONS(2376), + [aux_sym_cmd_identifier_token3] = ACTIONS(2376), + [aux_sym_cmd_identifier_token4] = ACTIONS(2376), + [aux_sym_cmd_identifier_token5] = ACTIONS(2376), + [aux_sym_cmd_identifier_token6] = ACTIONS(2376), + [aux_sym_cmd_identifier_token7] = ACTIONS(2376), + [aux_sym_cmd_identifier_token8] = ACTIONS(2374), + [aux_sym_cmd_identifier_token9] = ACTIONS(2374), + [aux_sym_cmd_identifier_token10] = ACTIONS(2376), + [aux_sym_cmd_identifier_token11] = ACTIONS(2376), + [aux_sym_cmd_identifier_token12] = ACTIONS(2374), + [aux_sym_cmd_identifier_token13] = ACTIONS(2374), + [aux_sym_cmd_identifier_token14] = ACTIONS(2374), + [aux_sym_cmd_identifier_token15] = ACTIONS(2374), + [aux_sym_cmd_identifier_token16] = ACTIONS(2376), + [aux_sym_cmd_identifier_token17] = ACTIONS(2376), + [aux_sym_cmd_identifier_token18] = ACTIONS(2376), + [aux_sym_cmd_identifier_token19] = ACTIONS(2376), + [aux_sym_cmd_identifier_token20] = ACTIONS(2376), + [aux_sym_cmd_identifier_token21] = ACTIONS(2376), + [aux_sym_cmd_identifier_token22] = ACTIONS(2376), + [aux_sym_cmd_identifier_token23] = ACTIONS(2376), + [aux_sym_cmd_identifier_token24] = ACTIONS(2376), + [aux_sym_cmd_identifier_token25] = ACTIONS(2376), + [aux_sym_cmd_identifier_token26] = ACTIONS(2376), + [aux_sym_cmd_identifier_token27] = ACTIONS(2376), + [aux_sym_cmd_identifier_token28] = ACTIONS(2376), + [aux_sym_cmd_identifier_token29] = ACTIONS(2376), + [aux_sym_cmd_identifier_token30] = ACTIONS(2376), + [aux_sym_cmd_identifier_token31] = ACTIONS(2376), + [aux_sym_cmd_identifier_token32] = ACTIONS(2376), + [aux_sym_cmd_identifier_token33] = ACTIONS(2376), + [aux_sym_cmd_identifier_token34] = ACTIONS(2374), + [aux_sym_cmd_identifier_token35] = ACTIONS(2376), + [aux_sym_cmd_identifier_token36] = ACTIONS(2376), + [aux_sym_cmd_identifier_token37] = ACTIONS(2376), + [aux_sym_cmd_identifier_token38] = ACTIONS(2374), + [aux_sym_cmd_identifier_token39] = ACTIONS(2376), + [aux_sym_cmd_identifier_token40] = ACTIONS(2376), + [anon_sym_def] = ACTIONS(2374), + [anon_sym_export_DASHenv] = ACTIONS(2374), + [anon_sym_extern] = ACTIONS(2374), + [anon_sym_module] = ACTIONS(2374), + [anon_sym_use] = ACTIONS(2374), + [anon_sym_LPAREN] = ACTIONS(2376), + [anon_sym_COMMA] = ACTIONS(2376), + [anon_sym_DOLLAR] = ACTIONS(2374), + [anon_sym_error] = ACTIONS(2374), + [anon_sym_DASH2] = ACTIONS(2374), + [anon_sym_break] = ACTIONS(2374), + [anon_sym_continue] = ACTIONS(2374), + [anon_sym_for] = ACTIONS(2374), + [anon_sym_in2] = ACTIONS(2374), + [anon_sym_loop] = ACTIONS(2374), + [anon_sym_make] = ACTIONS(2374), + [anon_sym_while] = ACTIONS(2374), + [anon_sym_do] = ACTIONS(2374), + [anon_sym_if] = ACTIONS(2374), + [anon_sym_else] = ACTIONS(2374), + [anon_sym_match] = ACTIONS(2374), + [anon_sym_RBRACE] = ACTIONS(2376), + [anon_sym_try] = ACTIONS(2374), + [anon_sym_catch] = ACTIONS(2374), + [anon_sym_return] = ACTIONS(2374), + [anon_sym_source] = ACTIONS(2374), + [anon_sym_source_DASHenv] = ACTIONS(2374), + [anon_sym_hide] = ACTIONS(2374), + [anon_sym_hide_DASHenv] = ACTIONS(2374), + [anon_sym_overlay] = ACTIONS(2374), + [anon_sym_as] = ACTIONS(2374), + [anon_sym_PLUS2] = ACTIONS(2374), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2376), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2376), + [aux_sym__val_number_decimal_token1] = ACTIONS(2374), + [aux_sym__val_number_decimal_token2] = ACTIONS(2376), + [aux_sym__val_number_decimal_token3] = ACTIONS(2376), + [aux_sym__val_number_decimal_token4] = ACTIONS(2376), + [aux_sym__val_number_token1] = ACTIONS(2376), + [aux_sym__val_number_token2] = ACTIONS(2376), + [aux_sym__val_number_token3] = ACTIONS(2376), + [aux_sym__val_number_token4] = ACTIONS(2374), + [aux_sym__val_number_token5] = ACTIONS(2374), + [aux_sym__val_number_token6] = ACTIONS(2374), + [anon_sym_DQUOTE] = ACTIONS(2376), + [sym__str_single_quotes] = ACTIONS(2376), + [sym__str_back_ticks] = ACTIONS(2376), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2376), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2376), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2376), + [anon_sym_register] = ACTIONS(2374), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2376), + }, + [733] = { + [sym_comment] = STATE(733), + [anon_sym_export] = ACTIONS(2334), + [anon_sym_alias] = ACTIONS(2334), + [anon_sym_let] = ACTIONS(2334), + [anon_sym_let_DASHenv] = ACTIONS(2334), + [anon_sym_mut] = ACTIONS(2334), + [anon_sym_const] = ACTIONS(2334), + [aux_sym_cmd_identifier_token1] = ACTIONS(2334), + [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(2334), + [aux_sym_cmd_identifier_token9] = ACTIONS(2334), + [aux_sym_cmd_identifier_token10] = ACTIONS(2336), + [aux_sym_cmd_identifier_token11] = ACTIONS(2336), + [aux_sym_cmd_identifier_token12] = ACTIONS(2334), + [aux_sym_cmd_identifier_token13] = ACTIONS(2334), + [aux_sym_cmd_identifier_token14] = ACTIONS(2334), + [aux_sym_cmd_identifier_token15] = ACTIONS(2334), + [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(2334), + [aux_sym_cmd_identifier_token35] = ACTIONS(2336), + [aux_sym_cmd_identifier_token36] = ACTIONS(2336), + [aux_sym_cmd_identifier_token37] = ACTIONS(2336), + [aux_sym_cmd_identifier_token38] = ACTIONS(2334), + [aux_sym_cmd_identifier_token39] = ACTIONS(2336), + [aux_sym_cmd_identifier_token40] = ACTIONS(2336), + [anon_sym_def] = ACTIONS(2334), + [anon_sym_export_DASHenv] = ACTIONS(2334), + [anon_sym_extern] = ACTIONS(2334), + [anon_sym_module] = ACTIONS(2334), + [anon_sym_use] = ACTIONS(2334), + [anon_sym_LPAREN] = ACTIONS(2336), + [anon_sym_COMMA] = ACTIONS(2336), + [anon_sym_DOLLAR] = ACTIONS(2334), + [anon_sym_error] = ACTIONS(2334), + [anon_sym_DASH2] = ACTIONS(2334), + [anon_sym_break] = ACTIONS(2334), + [anon_sym_continue] = ACTIONS(2334), + [anon_sym_for] = ACTIONS(2334), + [anon_sym_in2] = ACTIONS(2334), + [anon_sym_loop] = ACTIONS(2334), + [anon_sym_make] = ACTIONS(2334), + [anon_sym_while] = ACTIONS(2334), + [anon_sym_do] = ACTIONS(2334), + [anon_sym_if] = ACTIONS(2334), + [anon_sym_else] = ACTIONS(2334), + [anon_sym_match] = ACTIONS(2334), + [anon_sym_RBRACE] = ACTIONS(2336), + [anon_sym_try] = ACTIONS(2334), + [anon_sym_catch] = ACTIONS(2334), + [anon_sym_return] = ACTIONS(2334), + [anon_sym_source] = ACTIONS(2334), + [anon_sym_source_DASHenv] = ACTIONS(2334), + [anon_sym_hide] = ACTIONS(2334), + [anon_sym_hide_DASHenv] = ACTIONS(2334), + [anon_sym_overlay] = ACTIONS(2334), + [anon_sym_as] = ACTIONS(2334), + [anon_sym_PLUS2] = ACTIONS(2334), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2336), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2336), + [aux_sym__val_number_decimal_token1] = ACTIONS(2334), + [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), + [aux_sym__val_number_token4] = ACTIONS(2334), + [aux_sym__val_number_token5] = ACTIONS(2334), + [aux_sym__val_number_token6] = ACTIONS(2334), + [anon_sym_DQUOTE] = ACTIONS(2336), + [sym__str_single_quotes] = ACTIONS(2336), + [sym__str_back_ticks] = ACTIONS(2336), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2336), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2336), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2336), + [anon_sym_register] = ACTIONS(2334), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2336), + }, + [734] = { + [sym_comment] = STATE(734), + [anon_sym_export] = ACTIONS(2030), + [anon_sym_alias] = ACTIONS(2030), + [anon_sym_let] = ACTIONS(2030), + [anon_sym_let_DASHenv] = ACTIONS(2030), + [anon_sym_mut] = ACTIONS(2030), + [anon_sym_const] = ACTIONS(2030), + [aux_sym_cmd_identifier_token1] = ACTIONS(2030), + [aux_sym_cmd_identifier_token2] = ACTIONS(2036), + [aux_sym_cmd_identifier_token3] = ACTIONS(2036), + [aux_sym_cmd_identifier_token4] = ACTIONS(2036), + [aux_sym_cmd_identifier_token5] = ACTIONS(2036), + [aux_sym_cmd_identifier_token6] = ACTIONS(2036), + [aux_sym_cmd_identifier_token7] = ACTIONS(2036), + [aux_sym_cmd_identifier_token8] = ACTIONS(2030), + [aux_sym_cmd_identifier_token9] = ACTIONS(2030), + [aux_sym_cmd_identifier_token10] = ACTIONS(2036), + [aux_sym_cmd_identifier_token11] = ACTIONS(2036), + [aux_sym_cmd_identifier_token12] = ACTIONS(2030), + [aux_sym_cmd_identifier_token13] = ACTIONS(2030), + [aux_sym_cmd_identifier_token14] = ACTIONS(2030), + [aux_sym_cmd_identifier_token15] = ACTIONS(2030), + [aux_sym_cmd_identifier_token16] = ACTIONS(2036), + [aux_sym_cmd_identifier_token17] = ACTIONS(2036), + [aux_sym_cmd_identifier_token18] = ACTIONS(2036), + [aux_sym_cmd_identifier_token19] = ACTIONS(2036), + [aux_sym_cmd_identifier_token20] = ACTIONS(2036), + [aux_sym_cmd_identifier_token21] = ACTIONS(2036), + [aux_sym_cmd_identifier_token22] = ACTIONS(2036), + [aux_sym_cmd_identifier_token23] = ACTIONS(2036), + [aux_sym_cmd_identifier_token24] = ACTIONS(2036), + [aux_sym_cmd_identifier_token25] = ACTIONS(2036), + [aux_sym_cmd_identifier_token26] = ACTIONS(2036), + [aux_sym_cmd_identifier_token27] = ACTIONS(2036), + [aux_sym_cmd_identifier_token28] = ACTIONS(2036), + [aux_sym_cmd_identifier_token29] = ACTIONS(2036), + [aux_sym_cmd_identifier_token30] = ACTIONS(2036), + [aux_sym_cmd_identifier_token31] = ACTIONS(2036), + [aux_sym_cmd_identifier_token32] = ACTIONS(2036), + [aux_sym_cmd_identifier_token33] = ACTIONS(2036), + [aux_sym_cmd_identifier_token34] = ACTIONS(2030), + [aux_sym_cmd_identifier_token35] = ACTIONS(2036), + [aux_sym_cmd_identifier_token36] = ACTIONS(2036), + [aux_sym_cmd_identifier_token37] = ACTIONS(2036), + [aux_sym_cmd_identifier_token38] = ACTIONS(2030), + [aux_sym_cmd_identifier_token39] = ACTIONS(2036), + [aux_sym_cmd_identifier_token40] = ACTIONS(2036), + [anon_sym_def] = ACTIONS(2030), + [anon_sym_export_DASHenv] = ACTIONS(2030), + [anon_sym_extern] = ACTIONS(2030), + [anon_sym_module] = ACTIONS(2030), + [anon_sym_use] = ACTIONS(2030), + [anon_sym_LPAREN] = ACTIONS(2036), + [anon_sym_COMMA] = ACTIONS(2036), + [anon_sym_DOLLAR] = ACTIONS(2030), + [anon_sym_error] = ACTIONS(2030), + [anon_sym_DASH2] = ACTIONS(2030), + [anon_sym_break] = ACTIONS(2030), + [anon_sym_continue] = ACTIONS(2030), + [anon_sym_for] = ACTIONS(2030), + [anon_sym_in2] = ACTIONS(2030), + [anon_sym_loop] = ACTIONS(2030), + [anon_sym_make] = ACTIONS(2030), + [anon_sym_while] = ACTIONS(2030), + [anon_sym_do] = ACTIONS(2030), + [anon_sym_if] = ACTIONS(2030), + [anon_sym_else] = ACTIONS(2030), + [anon_sym_match] = ACTIONS(2030), + [anon_sym_RBRACE] = ACTIONS(2036), + [anon_sym_try] = ACTIONS(2030), + [anon_sym_catch] = ACTIONS(2030), + [anon_sym_return] = ACTIONS(2030), + [anon_sym_source] = ACTIONS(2030), + [anon_sym_source_DASHenv] = ACTIONS(2030), + [anon_sym_hide] = ACTIONS(2030), + [anon_sym_hide_DASHenv] = ACTIONS(2030), + [anon_sym_overlay] = ACTIONS(2030), + [anon_sym_as] = ACTIONS(2030), + [anon_sym_PLUS2] = ACTIONS(2030), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2036), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2036), + [aux_sym__val_number_decimal_token1] = ACTIONS(2030), + [aux_sym__val_number_decimal_token2] = ACTIONS(2036), + [aux_sym__val_number_decimal_token3] = ACTIONS(2036), + [aux_sym__val_number_decimal_token4] = ACTIONS(2036), + [aux_sym__val_number_token1] = ACTIONS(2036), + [aux_sym__val_number_token2] = ACTIONS(2036), + [aux_sym__val_number_token3] = ACTIONS(2036), + [aux_sym__val_number_token4] = ACTIONS(2030), + [aux_sym__val_number_token5] = ACTIONS(2030), + [aux_sym__val_number_token6] = ACTIONS(2030), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym__str_single_quotes] = ACTIONS(2036), + [sym__str_back_ticks] = ACTIONS(2036), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2036), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2036), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2036), + [anon_sym_register] = ACTIONS(2030), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2036), + }, + [735] = { + [sym_comment] = STATE(735), + [anon_sym_export] = ACTIONS(1977), + [anon_sym_alias] = ACTIONS(1977), + [anon_sym_let] = ACTIONS(1977), + [anon_sym_let_DASHenv] = ACTIONS(1977), + [anon_sym_mut] = ACTIONS(1977), + [anon_sym_const] = ACTIONS(1977), + [aux_sym_cmd_identifier_token1] = ACTIONS(1977), + [aux_sym_cmd_identifier_token2] = ACTIONS(1983), + [aux_sym_cmd_identifier_token3] = ACTIONS(1983), + [aux_sym_cmd_identifier_token4] = ACTIONS(1983), + [aux_sym_cmd_identifier_token5] = ACTIONS(1983), + [aux_sym_cmd_identifier_token6] = ACTIONS(1983), + [aux_sym_cmd_identifier_token7] = ACTIONS(1983), + [aux_sym_cmd_identifier_token8] = ACTIONS(1977), + [aux_sym_cmd_identifier_token9] = ACTIONS(1977), + [aux_sym_cmd_identifier_token10] = ACTIONS(1983), + [aux_sym_cmd_identifier_token11] = ACTIONS(1983), + [aux_sym_cmd_identifier_token12] = ACTIONS(1977), + [aux_sym_cmd_identifier_token13] = ACTIONS(1977), + [aux_sym_cmd_identifier_token14] = ACTIONS(1977), + [aux_sym_cmd_identifier_token15] = ACTIONS(1977), + [aux_sym_cmd_identifier_token16] = ACTIONS(1983), + [aux_sym_cmd_identifier_token17] = ACTIONS(1983), + [aux_sym_cmd_identifier_token18] = ACTIONS(1983), + [aux_sym_cmd_identifier_token19] = ACTIONS(1983), + [aux_sym_cmd_identifier_token20] = ACTIONS(1983), + [aux_sym_cmd_identifier_token21] = ACTIONS(1983), + [aux_sym_cmd_identifier_token22] = ACTIONS(1983), + [aux_sym_cmd_identifier_token23] = ACTIONS(1983), + [aux_sym_cmd_identifier_token24] = ACTIONS(1983), + [aux_sym_cmd_identifier_token25] = ACTIONS(1983), + [aux_sym_cmd_identifier_token26] = ACTIONS(1983), + [aux_sym_cmd_identifier_token27] = ACTIONS(1983), + [aux_sym_cmd_identifier_token28] = ACTIONS(1983), + [aux_sym_cmd_identifier_token29] = ACTIONS(1983), + [aux_sym_cmd_identifier_token30] = ACTIONS(1983), + [aux_sym_cmd_identifier_token31] = ACTIONS(1983), + [aux_sym_cmd_identifier_token32] = ACTIONS(1983), + [aux_sym_cmd_identifier_token33] = ACTIONS(1983), + [aux_sym_cmd_identifier_token34] = ACTIONS(1977), + [aux_sym_cmd_identifier_token35] = ACTIONS(1983), + [aux_sym_cmd_identifier_token36] = ACTIONS(1983), + [aux_sym_cmd_identifier_token37] = ACTIONS(1983), + [aux_sym_cmd_identifier_token38] = ACTIONS(1977), + [aux_sym_cmd_identifier_token39] = ACTIONS(1983), + [aux_sym_cmd_identifier_token40] = ACTIONS(1983), + [anon_sym_def] = ACTIONS(1977), + [anon_sym_export_DASHenv] = ACTIONS(1977), + [anon_sym_extern] = ACTIONS(1977), + [anon_sym_module] = ACTIONS(1977), + [anon_sym_use] = ACTIONS(1977), + [anon_sym_LPAREN] = ACTIONS(1983), + [anon_sym_COMMA] = ACTIONS(1983), + [anon_sym_DOLLAR] = ACTIONS(1977), + [anon_sym_error] = ACTIONS(1977), + [anon_sym_DASH2] = ACTIONS(1977), + [anon_sym_break] = ACTIONS(1977), + [anon_sym_continue] = ACTIONS(1977), + [anon_sym_for] = ACTIONS(1977), + [anon_sym_in2] = ACTIONS(1977), + [anon_sym_loop] = ACTIONS(1977), + [anon_sym_make] = ACTIONS(1977), + [anon_sym_while] = ACTIONS(1977), + [anon_sym_do] = ACTIONS(1977), + [anon_sym_if] = ACTIONS(1977), + [anon_sym_else] = ACTIONS(1977), + [anon_sym_match] = ACTIONS(1977), + [anon_sym_RBRACE] = ACTIONS(1983), + [anon_sym_try] = ACTIONS(1977), + [anon_sym_catch] = ACTIONS(1977), + [anon_sym_return] = ACTIONS(1977), + [anon_sym_source] = ACTIONS(1977), + [anon_sym_source_DASHenv] = ACTIONS(1977), + [anon_sym_hide] = ACTIONS(1977), + [anon_sym_hide_DASHenv] = ACTIONS(1977), + [anon_sym_overlay] = ACTIONS(1977), + [anon_sym_as] = ACTIONS(1977), + [anon_sym_PLUS2] = ACTIONS(1977), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1983), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1977), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1983), + [aux_sym__val_number_decimal_token4] = ACTIONS(1983), + [aux_sym__val_number_token1] = ACTIONS(1983), + [aux_sym__val_number_token2] = ACTIONS(1983), + [aux_sym__val_number_token3] = ACTIONS(1983), + [aux_sym__val_number_token4] = ACTIONS(1977), + [aux_sym__val_number_token5] = ACTIONS(1977), + [aux_sym__val_number_token6] = ACTIONS(1977), + [anon_sym_DQUOTE] = ACTIONS(1983), + [sym__str_single_quotes] = ACTIONS(1983), + [sym__str_back_ticks] = ACTIONS(1983), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1983), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1983), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1983), + [anon_sym_register] = ACTIONS(1977), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1983), + }, + [736] = { + [sym_comment] = STATE(736), + [anon_sym_export] = ACTIONS(1985), + [anon_sym_alias] = ACTIONS(1985), + [anon_sym_let] = ACTIONS(1985), + [anon_sym_let_DASHenv] = ACTIONS(1985), + [anon_sym_mut] = ACTIONS(1985), + [anon_sym_const] = ACTIONS(1985), + [aux_sym_cmd_identifier_token1] = ACTIONS(1985), + [aux_sym_cmd_identifier_token2] = ACTIONS(1991), + [aux_sym_cmd_identifier_token3] = ACTIONS(1991), + [aux_sym_cmd_identifier_token4] = ACTIONS(1991), + [aux_sym_cmd_identifier_token5] = ACTIONS(1991), + [aux_sym_cmd_identifier_token6] = ACTIONS(1991), + [aux_sym_cmd_identifier_token7] = ACTIONS(1991), + [aux_sym_cmd_identifier_token8] = ACTIONS(1985), + [aux_sym_cmd_identifier_token9] = ACTIONS(1985), + [aux_sym_cmd_identifier_token10] = ACTIONS(1991), + [aux_sym_cmd_identifier_token11] = ACTIONS(1991), + [aux_sym_cmd_identifier_token12] = ACTIONS(1985), + [aux_sym_cmd_identifier_token13] = ACTIONS(1985), + [aux_sym_cmd_identifier_token14] = ACTIONS(1985), + [aux_sym_cmd_identifier_token15] = ACTIONS(1985), + [aux_sym_cmd_identifier_token16] = ACTIONS(1991), + [aux_sym_cmd_identifier_token17] = ACTIONS(1991), + [aux_sym_cmd_identifier_token18] = ACTIONS(1991), + [aux_sym_cmd_identifier_token19] = ACTIONS(1991), + [aux_sym_cmd_identifier_token20] = ACTIONS(1991), + [aux_sym_cmd_identifier_token21] = ACTIONS(1991), + [aux_sym_cmd_identifier_token22] = ACTIONS(1991), + [aux_sym_cmd_identifier_token23] = ACTIONS(1991), + [aux_sym_cmd_identifier_token24] = ACTIONS(1991), + [aux_sym_cmd_identifier_token25] = ACTIONS(1991), + [aux_sym_cmd_identifier_token26] = ACTIONS(1991), + [aux_sym_cmd_identifier_token27] = ACTIONS(1991), + [aux_sym_cmd_identifier_token28] = ACTIONS(1991), + [aux_sym_cmd_identifier_token29] = ACTIONS(1991), + [aux_sym_cmd_identifier_token30] = ACTIONS(1991), + [aux_sym_cmd_identifier_token31] = ACTIONS(1991), + [aux_sym_cmd_identifier_token32] = ACTIONS(1991), + [aux_sym_cmd_identifier_token33] = ACTIONS(1991), + [aux_sym_cmd_identifier_token34] = ACTIONS(1985), + [aux_sym_cmd_identifier_token35] = ACTIONS(1991), + [aux_sym_cmd_identifier_token36] = ACTIONS(1991), + [aux_sym_cmd_identifier_token37] = ACTIONS(1991), + [aux_sym_cmd_identifier_token38] = ACTIONS(1985), + [aux_sym_cmd_identifier_token39] = ACTIONS(1991), + [aux_sym_cmd_identifier_token40] = ACTIONS(1991), + [anon_sym_def] = ACTIONS(1985), + [anon_sym_export_DASHenv] = ACTIONS(1985), + [anon_sym_extern] = ACTIONS(1985), + [anon_sym_module] = ACTIONS(1985), + [anon_sym_use] = ACTIONS(1985), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_COMMA] = ACTIONS(1991), + [anon_sym_DOLLAR] = ACTIONS(1985), + [anon_sym_error] = ACTIONS(1985), + [anon_sym_DASH2] = ACTIONS(1985), + [anon_sym_break] = ACTIONS(1985), + [anon_sym_continue] = ACTIONS(1985), + [anon_sym_for] = ACTIONS(1985), + [anon_sym_in2] = ACTIONS(1985), + [anon_sym_loop] = ACTIONS(1985), + [anon_sym_make] = ACTIONS(1985), + [anon_sym_while] = ACTIONS(1985), + [anon_sym_do] = ACTIONS(1985), + [anon_sym_if] = ACTIONS(1985), + [anon_sym_else] = ACTIONS(1985), + [anon_sym_match] = ACTIONS(1985), + [anon_sym_RBRACE] = ACTIONS(1991), + [anon_sym_try] = ACTIONS(1985), + [anon_sym_catch] = ACTIONS(1985), + [anon_sym_return] = ACTIONS(1985), + [anon_sym_source] = ACTIONS(1985), + [anon_sym_source_DASHenv] = ACTIONS(1985), + [anon_sym_hide] = ACTIONS(1985), + [anon_sym_hide_DASHenv] = ACTIONS(1985), + [anon_sym_overlay] = ACTIONS(1985), + [anon_sym_as] = ACTIONS(1985), + [anon_sym_PLUS2] = ACTIONS(1985), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1991), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1991), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1991), + [aux_sym__val_number_decimal_token3] = ACTIONS(1991), + [aux_sym__val_number_decimal_token4] = ACTIONS(1991), + [aux_sym__val_number_token1] = ACTIONS(1991), + [aux_sym__val_number_token2] = ACTIONS(1991), + [aux_sym__val_number_token3] = ACTIONS(1991), + [aux_sym__val_number_token4] = ACTIONS(1985), + [aux_sym__val_number_token5] = ACTIONS(1985), + [aux_sym__val_number_token6] = ACTIONS(1985), + [anon_sym_DQUOTE] = ACTIONS(1991), + [sym__str_single_quotes] = ACTIONS(1991), + [sym__str_back_ticks] = ACTIONS(1991), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1991), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1991), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1991), + [anon_sym_register] = ACTIONS(1985), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1991), + }, + [737] = { + [sym_comment] = STATE(737), + [anon_sym_export] = ACTIONS(2356), + [anon_sym_alias] = ACTIONS(2356), + [anon_sym_let] = ACTIONS(2356), + [anon_sym_let_DASHenv] = ACTIONS(2356), + [anon_sym_mut] = ACTIONS(2356), + [anon_sym_const] = ACTIONS(2356), + [aux_sym_cmd_identifier_token1] = ACTIONS(2356), + [aux_sym_cmd_identifier_token2] = ACTIONS(2358), + [aux_sym_cmd_identifier_token3] = ACTIONS(2358), + [aux_sym_cmd_identifier_token4] = ACTIONS(2358), + [aux_sym_cmd_identifier_token5] = ACTIONS(2358), + [aux_sym_cmd_identifier_token6] = ACTIONS(2358), + [aux_sym_cmd_identifier_token7] = ACTIONS(2358), + [aux_sym_cmd_identifier_token8] = ACTIONS(2356), + [aux_sym_cmd_identifier_token9] = ACTIONS(2356), + [aux_sym_cmd_identifier_token10] = ACTIONS(2358), + [aux_sym_cmd_identifier_token11] = ACTIONS(2358), + [aux_sym_cmd_identifier_token12] = ACTIONS(2356), + [aux_sym_cmd_identifier_token13] = ACTIONS(2356), + [aux_sym_cmd_identifier_token14] = ACTIONS(2356), + [aux_sym_cmd_identifier_token15] = ACTIONS(2356), + [aux_sym_cmd_identifier_token16] = ACTIONS(2358), + [aux_sym_cmd_identifier_token17] = ACTIONS(2358), + [aux_sym_cmd_identifier_token18] = ACTIONS(2358), + [aux_sym_cmd_identifier_token19] = ACTIONS(2358), + [aux_sym_cmd_identifier_token20] = ACTIONS(2358), + [aux_sym_cmd_identifier_token21] = ACTIONS(2358), + [aux_sym_cmd_identifier_token22] = ACTIONS(2358), + [aux_sym_cmd_identifier_token23] = ACTIONS(2358), + [aux_sym_cmd_identifier_token24] = ACTIONS(2358), + [aux_sym_cmd_identifier_token25] = ACTIONS(2358), + [aux_sym_cmd_identifier_token26] = ACTIONS(2358), + [aux_sym_cmd_identifier_token27] = ACTIONS(2358), + [aux_sym_cmd_identifier_token28] = ACTIONS(2358), + [aux_sym_cmd_identifier_token29] = ACTIONS(2358), + [aux_sym_cmd_identifier_token30] = ACTIONS(2358), + [aux_sym_cmd_identifier_token31] = ACTIONS(2358), + [aux_sym_cmd_identifier_token32] = ACTIONS(2358), + [aux_sym_cmd_identifier_token33] = ACTIONS(2358), + [aux_sym_cmd_identifier_token34] = ACTIONS(2356), + [aux_sym_cmd_identifier_token35] = ACTIONS(2358), + [aux_sym_cmd_identifier_token36] = ACTIONS(2358), + [aux_sym_cmd_identifier_token37] = ACTIONS(2358), + [aux_sym_cmd_identifier_token38] = ACTIONS(2356), + [aux_sym_cmd_identifier_token39] = ACTIONS(2358), + [aux_sym_cmd_identifier_token40] = ACTIONS(2358), + [anon_sym_def] = ACTIONS(2356), + [anon_sym_export_DASHenv] = ACTIONS(2356), + [anon_sym_extern] = ACTIONS(2356), + [anon_sym_module] = ACTIONS(2356), + [anon_sym_use] = ACTIONS(2356), + [anon_sym_LPAREN] = ACTIONS(2358), + [anon_sym_COMMA] = ACTIONS(2358), + [anon_sym_DOLLAR] = ACTIONS(2356), + [anon_sym_error] = ACTIONS(2356), + [anon_sym_DASH2] = ACTIONS(2356), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_for] = ACTIONS(2356), + [anon_sym_in2] = ACTIONS(2356), + [anon_sym_loop] = ACTIONS(2356), + [anon_sym_make] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_do] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_else] = ACTIONS(2356), + [anon_sym_match] = ACTIONS(2356), + [anon_sym_RBRACE] = ACTIONS(2358), + [anon_sym_try] = ACTIONS(2356), + [anon_sym_catch] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2356), + [anon_sym_source] = ACTIONS(2356), + [anon_sym_source_DASHenv] = ACTIONS(2356), + [anon_sym_hide] = ACTIONS(2356), + [anon_sym_hide_DASHenv] = ACTIONS(2356), + [anon_sym_overlay] = ACTIONS(2356), + [anon_sym_as] = ACTIONS(2356), + [anon_sym_PLUS2] = ACTIONS(2356), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2358), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2358), + [aux_sym__val_number_decimal_token1] = ACTIONS(2356), + [aux_sym__val_number_decimal_token2] = ACTIONS(2358), + [aux_sym__val_number_decimal_token3] = ACTIONS(2358), + [aux_sym__val_number_decimal_token4] = ACTIONS(2358), + [aux_sym__val_number_token1] = ACTIONS(2358), + [aux_sym__val_number_token2] = ACTIONS(2358), + [aux_sym__val_number_token3] = ACTIONS(2358), + [aux_sym__val_number_token4] = ACTIONS(2356), + [aux_sym__val_number_token5] = ACTIONS(2356), + [aux_sym__val_number_token6] = ACTIONS(2356), + [anon_sym_DQUOTE] = ACTIONS(2358), + [sym__str_single_quotes] = ACTIONS(2358), + [sym__str_back_ticks] = ACTIONS(2358), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2358), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2358), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2358), + [anon_sym_register] = ACTIONS(2356), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2358), + }, + [738] = { + [sym_comment] = STATE(738), + [anon_sym_export] = ACTIONS(2360), + [anon_sym_alias] = ACTIONS(2360), + [anon_sym_let] = ACTIONS(2360), + [anon_sym_let_DASHenv] = ACTIONS(2360), + [anon_sym_mut] = ACTIONS(2360), + [anon_sym_const] = ACTIONS(2360), + [aux_sym_cmd_identifier_token1] = ACTIONS(2360), + [aux_sym_cmd_identifier_token2] = ACTIONS(2362), + [aux_sym_cmd_identifier_token3] = ACTIONS(2362), + [aux_sym_cmd_identifier_token4] = ACTIONS(2362), + [aux_sym_cmd_identifier_token5] = ACTIONS(2362), + [aux_sym_cmd_identifier_token6] = ACTIONS(2362), + [aux_sym_cmd_identifier_token7] = ACTIONS(2362), + [aux_sym_cmd_identifier_token8] = ACTIONS(2360), + [aux_sym_cmd_identifier_token9] = ACTIONS(2360), + [aux_sym_cmd_identifier_token10] = ACTIONS(2362), + [aux_sym_cmd_identifier_token11] = ACTIONS(2362), + [aux_sym_cmd_identifier_token12] = ACTIONS(2360), + [aux_sym_cmd_identifier_token13] = ACTIONS(2360), + [aux_sym_cmd_identifier_token14] = ACTIONS(2360), + [aux_sym_cmd_identifier_token15] = ACTIONS(2360), + [aux_sym_cmd_identifier_token16] = ACTIONS(2362), + [aux_sym_cmd_identifier_token17] = ACTIONS(2362), + [aux_sym_cmd_identifier_token18] = ACTIONS(2362), + [aux_sym_cmd_identifier_token19] = ACTIONS(2362), + [aux_sym_cmd_identifier_token20] = ACTIONS(2362), + [aux_sym_cmd_identifier_token21] = ACTIONS(2362), + [aux_sym_cmd_identifier_token22] = ACTIONS(2362), + [aux_sym_cmd_identifier_token23] = ACTIONS(2362), + [aux_sym_cmd_identifier_token24] = ACTIONS(2362), + [aux_sym_cmd_identifier_token25] = ACTIONS(2362), + [aux_sym_cmd_identifier_token26] = ACTIONS(2362), + [aux_sym_cmd_identifier_token27] = ACTIONS(2362), + [aux_sym_cmd_identifier_token28] = ACTIONS(2362), + [aux_sym_cmd_identifier_token29] = ACTIONS(2362), + [aux_sym_cmd_identifier_token30] = ACTIONS(2362), + [aux_sym_cmd_identifier_token31] = ACTIONS(2362), + [aux_sym_cmd_identifier_token32] = ACTIONS(2362), + [aux_sym_cmd_identifier_token33] = ACTIONS(2362), + [aux_sym_cmd_identifier_token34] = ACTIONS(2360), + [aux_sym_cmd_identifier_token35] = ACTIONS(2362), + [aux_sym_cmd_identifier_token36] = ACTIONS(2362), + [aux_sym_cmd_identifier_token37] = ACTIONS(2362), + [aux_sym_cmd_identifier_token38] = ACTIONS(2360), + [aux_sym_cmd_identifier_token39] = ACTIONS(2362), + [aux_sym_cmd_identifier_token40] = ACTIONS(2362), + [anon_sym_def] = ACTIONS(2360), + [anon_sym_export_DASHenv] = ACTIONS(2360), + [anon_sym_extern] = ACTIONS(2360), + [anon_sym_module] = ACTIONS(2360), + [anon_sym_use] = ACTIONS(2360), + [anon_sym_LPAREN] = ACTIONS(2362), + [anon_sym_COMMA] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2360), + [anon_sym_error] = ACTIONS(2360), + [anon_sym_DASH2] = ACTIONS(2360), + [anon_sym_break] = ACTIONS(2360), + [anon_sym_continue] = ACTIONS(2360), + [anon_sym_for] = ACTIONS(2360), + [anon_sym_in2] = ACTIONS(2360), + [anon_sym_loop] = ACTIONS(2360), + [anon_sym_make] = ACTIONS(2360), + [anon_sym_while] = ACTIONS(2360), + [anon_sym_do] = ACTIONS(2360), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_else] = ACTIONS(2360), + [anon_sym_match] = ACTIONS(2360), + [anon_sym_RBRACE] = ACTIONS(2362), + [anon_sym_try] = ACTIONS(2360), + [anon_sym_catch] = ACTIONS(2360), + [anon_sym_return] = ACTIONS(2360), + [anon_sym_source] = ACTIONS(2360), + [anon_sym_source_DASHenv] = ACTIONS(2360), + [anon_sym_hide] = ACTIONS(2360), + [anon_sym_hide_DASHenv] = ACTIONS(2360), + [anon_sym_overlay] = ACTIONS(2360), + [anon_sym_as] = ACTIONS(2360), + [anon_sym_PLUS2] = ACTIONS(2360), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2362), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2360), + [aux_sym__val_number_decimal_token2] = ACTIONS(2362), + [aux_sym__val_number_decimal_token3] = ACTIONS(2362), + [aux_sym__val_number_decimal_token4] = ACTIONS(2362), + [aux_sym__val_number_token1] = ACTIONS(2362), + [aux_sym__val_number_token2] = ACTIONS(2362), + [aux_sym__val_number_token3] = ACTIONS(2362), + [aux_sym__val_number_token4] = ACTIONS(2360), + [aux_sym__val_number_token5] = ACTIONS(2360), + [aux_sym__val_number_token6] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym__str_single_quotes] = ACTIONS(2362), + [sym__str_back_ticks] = ACTIONS(2362), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2362), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2362), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2362), + [anon_sym_register] = ACTIONS(2360), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2362), + }, + [739] = { + [sym_comment] = STATE(739), [anon_sym_export] = ACTIONS(2370), [anon_sym_alias] = ACTIONS(2370), [anon_sym_let] = ACTIONS(2370), @@ -162318,7 +161133,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(2370), [anon_sym_source] = ACTIONS(2370), [anon_sym_source_DASHenv] = ACTIONS(2370), - [anon_sym_register] = ACTIONS(2370), [anon_sym_hide] = ACTIONS(2370), [anon_sym_hide_DASHenv] = ACTIONS(2370), [anon_sym_overlay] = ACTIONS(2370), @@ -162342,48576 +161156,50865 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2372), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2372), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2372), - [anon_sym_POUND] = ACTIONS(251), + [anon_sym_register] = ACTIONS(2370), + [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(2372), }, - [751] = { - [sym_comment] = STATE(751), - [anon_sym_export] = ACTIONS(1016), - [anon_sym_alias] = ACTIONS(1016), - [anon_sym_let] = ACTIONS(1016), - [anon_sym_let_DASHenv] = ACTIONS(1016), - [anon_sym_mut] = ACTIONS(1016), - [anon_sym_const] = ACTIONS(1016), - [aux_sym_cmd_identifier_token1] = ACTIONS(1016), - [aux_sym_cmd_identifier_token2] = ACTIONS(1012), - [aux_sym_cmd_identifier_token3] = ACTIONS(1012), - [aux_sym_cmd_identifier_token4] = ACTIONS(1012), - [aux_sym_cmd_identifier_token5] = ACTIONS(1012), - [aux_sym_cmd_identifier_token6] = ACTIONS(1012), - [aux_sym_cmd_identifier_token7] = ACTIONS(1012), - [aux_sym_cmd_identifier_token8] = ACTIONS(1016), - [aux_sym_cmd_identifier_token9] = ACTIONS(1016), - [aux_sym_cmd_identifier_token10] = ACTIONS(1012), - [aux_sym_cmd_identifier_token11] = ACTIONS(1012), - [aux_sym_cmd_identifier_token12] = ACTIONS(1016), - [aux_sym_cmd_identifier_token13] = ACTIONS(1016), - [aux_sym_cmd_identifier_token14] = ACTIONS(1016), - [aux_sym_cmd_identifier_token15] = ACTIONS(1016), - [aux_sym_cmd_identifier_token16] = ACTIONS(1012), - [aux_sym_cmd_identifier_token17] = ACTIONS(1012), - [aux_sym_cmd_identifier_token18] = ACTIONS(1012), - [aux_sym_cmd_identifier_token19] = ACTIONS(1012), - [aux_sym_cmd_identifier_token20] = ACTIONS(1012), - [aux_sym_cmd_identifier_token21] = ACTIONS(1012), - [aux_sym_cmd_identifier_token22] = ACTIONS(1012), - [aux_sym_cmd_identifier_token23] = ACTIONS(1012), - [aux_sym_cmd_identifier_token24] = ACTIONS(1012), - [aux_sym_cmd_identifier_token25] = ACTIONS(1012), - [aux_sym_cmd_identifier_token26] = ACTIONS(1012), - [aux_sym_cmd_identifier_token27] = ACTIONS(1012), - [aux_sym_cmd_identifier_token28] = ACTIONS(1012), - [aux_sym_cmd_identifier_token29] = ACTIONS(1012), - [aux_sym_cmd_identifier_token30] = ACTIONS(1012), - [aux_sym_cmd_identifier_token31] = ACTIONS(1012), - [aux_sym_cmd_identifier_token32] = ACTIONS(1012), - [aux_sym_cmd_identifier_token33] = ACTIONS(1012), - [aux_sym_cmd_identifier_token34] = ACTIONS(1016), - [aux_sym_cmd_identifier_token35] = ACTIONS(1012), - [aux_sym_cmd_identifier_token36] = ACTIONS(1012), - [aux_sym_cmd_identifier_token37] = ACTIONS(1012), - [aux_sym_cmd_identifier_token38] = ACTIONS(1016), - [aux_sym_cmd_identifier_token39] = ACTIONS(1012), - [aux_sym_cmd_identifier_token40] = ACTIONS(1012), - [anon_sym_def] = ACTIONS(1016), - [anon_sym_export_DASHenv] = ACTIONS(1016), - [anon_sym_extern] = ACTIONS(1016), - [anon_sym_module] = ACTIONS(1016), - [anon_sym_use] = ACTIONS(1016), - [anon_sym_LPAREN] = ACTIONS(1012), - [anon_sym_COMMA] = ACTIONS(1012), - [anon_sym_DOLLAR] = ACTIONS(1016), - [anon_sym_error] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_break] = ACTIONS(1016), - [anon_sym_continue] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1016), - [anon_sym_in2] = ACTIONS(1016), - [anon_sym_loop] = ACTIONS(1016), - [anon_sym_make] = ACTIONS(1016), - [anon_sym_while] = ACTIONS(1016), - [anon_sym_do] = ACTIONS(1016), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_else] = ACTIONS(1016), - [anon_sym_match] = ACTIONS(1016), - [anon_sym_RBRACE] = ACTIONS(1012), - [anon_sym_try] = ACTIONS(1016), - [anon_sym_catch] = ACTIONS(1016), - [anon_sym_return] = ACTIONS(1016), - [anon_sym_source] = ACTIONS(1016), - [anon_sym_source_DASHenv] = ACTIONS(1016), - [anon_sym_register] = ACTIONS(1016), - [anon_sym_hide] = ACTIONS(1016), - [anon_sym_hide_DASHenv] = ACTIONS(1016), - [anon_sym_overlay] = ACTIONS(1016), - [anon_sym_as] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1012), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1012), - [aux_sym__val_number_decimal_token1] = ACTIONS(1016), - [aux_sym__val_number_decimal_token2] = ACTIONS(1012), - [aux_sym__val_number_decimal_token3] = ACTIONS(1012), - [aux_sym__val_number_decimal_token4] = ACTIONS(1012), - [aux_sym__val_number_token1] = ACTIONS(1012), - [aux_sym__val_number_token2] = ACTIONS(1012), - [aux_sym__val_number_token3] = ACTIONS(1012), - [aux_sym__val_number_token4] = ACTIONS(1016), - [aux_sym__val_number_token5] = ACTIONS(1016), - [aux_sym__val_number_token6] = ACTIONS(1016), - [anon_sym_DQUOTE] = ACTIONS(1012), - [sym__str_single_quotes] = ACTIONS(1012), - [sym__str_back_ticks] = ACTIONS(1012), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1012), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1012), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1012), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1012), + [740] = { + [sym_comment] = STATE(740), + [anon_sym_export] = ACTIONS(2453), + [anon_sym_alias] = ACTIONS(2453), + [anon_sym_let] = ACTIONS(2453), + [anon_sym_let_DASHenv] = ACTIONS(2453), + [anon_sym_mut] = ACTIONS(2453), + [anon_sym_const] = ACTIONS(2453), + [aux_sym_cmd_identifier_token1] = ACTIONS(2453), + [aux_sym_cmd_identifier_token2] = ACTIONS(2455), + [aux_sym_cmd_identifier_token3] = ACTIONS(2455), + [aux_sym_cmd_identifier_token4] = ACTIONS(2455), + [aux_sym_cmd_identifier_token5] = ACTIONS(2455), + [aux_sym_cmd_identifier_token6] = ACTIONS(2455), + [aux_sym_cmd_identifier_token7] = ACTIONS(2455), + [aux_sym_cmd_identifier_token8] = ACTIONS(2453), + [aux_sym_cmd_identifier_token9] = ACTIONS(2453), + [aux_sym_cmd_identifier_token10] = ACTIONS(2455), + [aux_sym_cmd_identifier_token11] = ACTIONS(2455), + [aux_sym_cmd_identifier_token12] = ACTIONS(2453), + [aux_sym_cmd_identifier_token13] = ACTIONS(2453), + [aux_sym_cmd_identifier_token14] = ACTIONS(2453), + [aux_sym_cmd_identifier_token15] = ACTIONS(2453), + [aux_sym_cmd_identifier_token16] = ACTIONS(2455), + [aux_sym_cmd_identifier_token17] = ACTIONS(2455), + [aux_sym_cmd_identifier_token18] = ACTIONS(2455), + [aux_sym_cmd_identifier_token19] = ACTIONS(2455), + [aux_sym_cmd_identifier_token20] = ACTIONS(2455), + [aux_sym_cmd_identifier_token21] = ACTIONS(2455), + [aux_sym_cmd_identifier_token22] = ACTIONS(2455), + [aux_sym_cmd_identifier_token23] = ACTIONS(2455), + [aux_sym_cmd_identifier_token24] = ACTIONS(2455), + [aux_sym_cmd_identifier_token25] = ACTIONS(2455), + [aux_sym_cmd_identifier_token26] = ACTIONS(2455), + [aux_sym_cmd_identifier_token27] = ACTIONS(2455), + [aux_sym_cmd_identifier_token28] = ACTIONS(2455), + [aux_sym_cmd_identifier_token29] = ACTIONS(2455), + [aux_sym_cmd_identifier_token30] = ACTIONS(2455), + [aux_sym_cmd_identifier_token31] = ACTIONS(2455), + [aux_sym_cmd_identifier_token32] = ACTIONS(2455), + [aux_sym_cmd_identifier_token33] = ACTIONS(2455), + [aux_sym_cmd_identifier_token34] = ACTIONS(2453), + [aux_sym_cmd_identifier_token35] = ACTIONS(2455), + [aux_sym_cmd_identifier_token36] = ACTIONS(2455), + [aux_sym_cmd_identifier_token37] = ACTIONS(2455), + [aux_sym_cmd_identifier_token38] = ACTIONS(2453), + [aux_sym_cmd_identifier_token39] = ACTIONS(2455), + [aux_sym_cmd_identifier_token40] = ACTIONS(2455), + [anon_sym_def] = ACTIONS(2453), + [anon_sym_export_DASHenv] = ACTIONS(2453), + [anon_sym_extern] = ACTIONS(2453), + [anon_sym_module] = ACTIONS(2453), + [anon_sym_use] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2455), + [anon_sym_COMMA] = ACTIONS(2455), + [anon_sym_DOLLAR] = ACTIONS(2453), + [anon_sym_error] = ACTIONS(2453), + [anon_sym_DASH2] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [anon_sym_continue] = ACTIONS(2453), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_in2] = ACTIONS(2453), + [anon_sym_loop] = ACTIONS(2453), + [anon_sym_make] = ACTIONS(2453), + [anon_sym_while] = ACTIONS(2453), + [anon_sym_do] = ACTIONS(2453), + [anon_sym_if] = ACTIONS(2453), + [anon_sym_else] = ACTIONS(2453), + [anon_sym_match] = ACTIONS(2453), + [anon_sym_RBRACE] = ACTIONS(2455), + [anon_sym_try] = ACTIONS(2453), + [anon_sym_catch] = ACTIONS(2453), + [anon_sym_return] = ACTIONS(2453), + [anon_sym_source] = ACTIONS(2453), + [anon_sym_source_DASHenv] = ACTIONS(2453), + [anon_sym_hide] = ACTIONS(2453), + [anon_sym_hide_DASHenv] = ACTIONS(2453), + [anon_sym_overlay] = ACTIONS(2453), + [anon_sym_as] = ACTIONS(2453), + [anon_sym_PLUS2] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2455), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2455), + [aux_sym__val_number_decimal_token1] = ACTIONS(2453), + [aux_sym__val_number_decimal_token2] = ACTIONS(2455), + [aux_sym__val_number_decimal_token3] = ACTIONS(2455), + [aux_sym__val_number_decimal_token4] = ACTIONS(2455), + [aux_sym__val_number_token1] = ACTIONS(2455), + [aux_sym__val_number_token2] = ACTIONS(2455), + [aux_sym__val_number_token3] = ACTIONS(2455), + [aux_sym__val_number_token4] = ACTIONS(2453), + [aux_sym__val_number_token5] = ACTIONS(2453), + [aux_sym__val_number_token6] = ACTIONS(2453), + [anon_sym_DQUOTE] = ACTIONS(2455), + [sym__str_single_quotes] = ACTIONS(2455), + [sym__str_back_ticks] = ACTIONS(2455), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2455), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2455), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2455), + [anon_sym_register] = ACTIONS(2453), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2455), }, - [752] = { - [sym_comment] = STATE(752), - [anon_sym_export] = ACTIONS(1311), - [anon_sym_alias] = ACTIONS(1311), - [anon_sym_let] = ACTIONS(1311), - [anon_sym_let_DASHenv] = ACTIONS(1311), - [anon_sym_mut] = ACTIONS(1311), - [anon_sym_const] = ACTIONS(1311), - [aux_sym_cmd_identifier_token1] = ACTIONS(1311), - [aux_sym_cmd_identifier_token2] = ACTIONS(1309), - [aux_sym_cmd_identifier_token3] = ACTIONS(1309), - [aux_sym_cmd_identifier_token4] = ACTIONS(1309), - [aux_sym_cmd_identifier_token5] = ACTIONS(1309), - [aux_sym_cmd_identifier_token6] = ACTIONS(1309), - [aux_sym_cmd_identifier_token7] = ACTIONS(1309), - [aux_sym_cmd_identifier_token8] = ACTIONS(1311), - [aux_sym_cmd_identifier_token9] = ACTIONS(1311), - [aux_sym_cmd_identifier_token10] = ACTIONS(1309), - [aux_sym_cmd_identifier_token11] = ACTIONS(1309), - [aux_sym_cmd_identifier_token12] = ACTIONS(1311), - [aux_sym_cmd_identifier_token13] = ACTIONS(1311), - [aux_sym_cmd_identifier_token14] = ACTIONS(1311), - [aux_sym_cmd_identifier_token15] = ACTIONS(1311), - [aux_sym_cmd_identifier_token16] = ACTIONS(1309), - [aux_sym_cmd_identifier_token17] = ACTIONS(1309), - [aux_sym_cmd_identifier_token18] = ACTIONS(1309), - [aux_sym_cmd_identifier_token19] = ACTIONS(1309), - [aux_sym_cmd_identifier_token20] = ACTIONS(1309), - [aux_sym_cmd_identifier_token21] = ACTIONS(1309), - [aux_sym_cmd_identifier_token22] = ACTIONS(1309), - [aux_sym_cmd_identifier_token23] = ACTIONS(1309), - [aux_sym_cmd_identifier_token24] = ACTIONS(1309), - [aux_sym_cmd_identifier_token25] = ACTIONS(1309), - [aux_sym_cmd_identifier_token26] = ACTIONS(1309), - [aux_sym_cmd_identifier_token27] = ACTIONS(1309), - [aux_sym_cmd_identifier_token28] = ACTIONS(1309), - [aux_sym_cmd_identifier_token29] = ACTIONS(1309), - [aux_sym_cmd_identifier_token30] = ACTIONS(1309), - [aux_sym_cmd_identifier_token31] = ACTIONS(1309), - [aux_sym_cmd_identifier_token32] = ACTIONS(1309), - [aux_sym_cmd_identifier_token33] = ACTIONS(1309), - [aux_sym_cmd_identifier_token34] = ACTIONS(1311), - [aux_sym_cmd_identifier_token35] = ACTIONS(1309), - [aux_sym_cmd_identifier_token36] = ACTIONS(1309), - [aux_sym_cmd_identifier_token37] = ACTIONS(1309), - [aux_sym_cmd_identifier_token38] = ACTIONS(1311), - [aux_sym_cmd_identifier_token39] = ACTIONS(1309), - [aux_sym_cmd_identifier_token40] = ACTIONS(1309), - [sym__newline] = ACTIONS(1309), - [anon_sym_def] = ACTIONS(1311), - [anon_sym_export_DASHenv] = ACTIONS(1311), - [anon_sym_extern] = ACTIONS(1311), - [anon_sym_module] = ACTIONS(1311), - [anon_sym_use] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1309), - [anon_sym_DOLLAR] = ACTIONS(1311), - [anon_sym_error] = ACTIONS(1311), - [anon_sym_DASH2] = ACTIONS(1311), - [anon_sym_break] = ACTIONS(1311), - [anon_sym_continue] = ACTIONS(1311), - [anon_sym_for] = ACTIONS(1311), - [anon_sym_in2] = ACTIONS(1311), - [anon_sym_loop] = ACTIONS(1311), - [anon_sym_make] = ACTIONS(1311), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_do] = ACTIONS(1311), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_else] = ACTIONS(1311), - [anon_sym_match] = ACTIONS(1311), - [anon_sym_try] = ACTIONS(1311), - [anon_sym_catch] = ACTIONS(1311), - [anon_sym_return] = ACTIONS(1311), - [anon_sym_source] = ACTIONS(1311), - [anon_sym_source_DASHenv] = ACTIONS(1311), - [anon_sym_register] = ACTIONS(1311), - [anon_sym_hide] = ACTIONS(1311), - [anon_sym_hide_DASHenv] = ACTIONS(1311), - [anon_sym_overlay] = ACTIONS(1311), - [anon_sym_as] = ACTIONS(1311), - [anon_sym_PLUS2] = ACTIONS(1311), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1309), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1309), - [aux_sym__val_number_decimal_token1] = ACTIONS(1311), - [aux_sym__val_number_decimal_token2] = ACTIONS(1309), - [aux_sym__val_number_decimal_token3] = ACTIONS(1309), - [aux_sym__val_number_decimal_token4] = ACTIONS(1309), - [aux_sym__val_number_token1] = ACTIONS(1309), - [aux_sym__val_number_token2] = ACTIONS(1309), - [aux_sym__val_number_token3] = ACTIONS(1309), - [aux_sym__val_number_token4] = ACTIONS(1311), - [aux_sym__val_number_token5] = ACTIONS(1311), - [aux_sym__val_number_token6] = ACTIONS(1311), - [anon_sym_DQUOTE] = ACTIONS(1309), - [sym__str_single_quotes] = ACTIONS(1309), - [sym__str_back_ticks] = ACTIONS(1309), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1309), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1309), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1309), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1309), + [741] = { + [sym_comment] = STATE(741), + [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(2427), + [aux_sym_cmd_identifier_token3] = ACTIONS(2427), + [aux_sym_cmd_identifier_token4] = ACTIONS(2427), + [aux_sym_cmd_identifier_token5] = ACTIONS(2427), + [aux_sym_cmd_identifier_token6] = ACTIONS(2427), + [aux_sym_cmd_identifier_token7] = ACTIONS(2427), + [aux_sym_cmd_identifier_token8] = ACTIONS(2425), + [aux_sym_cmd_identifier_token9] = ACTIONS(2425), + [aux_sym_cmd_identifier_token10] = ACTIONS(2427), + [aux_sym_cmd_identifier_token11] = ACTIONS(2427), + [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(2427), + [aux_sym_cmd_identifier_token17] = ACTIONS(2427), + [aux_sym_cmd_identifier_token18] = ACTIONS(2427), + [aux_sym_cmd_identifier_token19] = ACTIONS(2427), + [aux_sym_cmd_identifier_token20] = ACTIONS(2427), + [aux_sym_cmd_identifier_token21] = ACTIONS(2427), + [aux_sym_cmd_identifier_token22] = ACTIONS(2427), + [aux_sym_cmd_identifier_token23] = ACTIONS(2427), + [aux_sym_cmd_identifier_token24] = ACTIONS(2427), + [aux_sym_cmd_identifier_token25] = ACTIONS(2427), + [aux_sym_cmd_identifier_token26] = ACTIONS(2427), + [aux_sym_cmd_identifier_token27] = ACTIONS(2427), + [aux_sym_cmd_identifier_token28] = ACTIONS(2427), + [aux_sym_cmd_identifier_token29] = ACTIONS(2427), + [aux_sym_cmd_identifier_token30] = ACTIONS(2427), + [aux_sym_cmd_identifier_token31] = ACTIONS(2427), + [aux_sym_cmd_identifier_token32] = ACTIONS(2427), + [aux_sym_cmd_identifier_token33] = ACTIONS(2427), + [aux_sym_cmd_identifier_token34] = ACTIONS(2425), + [aux_sym_cmd_identifier_token35] = ACTIONS(2427), + [aux_sym_cmd_identifier_token36] = ACTIONS(2427), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(2427), + [anon_sym_DOLLAR] = ACTIONS(2425), + [anon_sym_error] = ACTIONS(2425), + [anon_sym_DASH2] = ACTIONS(2425), + [anon_sym_break] = ACTIONS(2425), + [anon_sym_continue] = ACTIONS(2425), + [anon_sym_for] = ACTIONS(2425), + [anon_sym_in2] = 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_hide] = ACTIONS(2425), + [anon_sym_hide_DASHenv] = ACTIONS(2425), + [anon_sym_overlay] = ACTIONS(2425), + [anon_sym_as] = ACTIONS(2425), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2425), + [aux_sym__val_number_token5] = ACTIONS(2425), + [aux_sym__val_number_token6] = ACTIONS(2425), + [anon_sym_DQUOTE] = ACTIONS(2427), + [sym__str_single_quotes] = ACTIONS(2427), + [sym__str_back_ticks] = ACTIONS(2427), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2427), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2427), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2427), + [anon_sym_register] = ACTIONS(2425), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2427), }, - [753] = { - [sym_comment] = STATE(753), - [anon_sym_export] = ACTIONS(2516), - [anon_sym_alias] = ACTIONS(2516), - [anon_sym_let] = ACTIONS(2516), - [anon_sym_let_DASHenv] = ACTIONS(2516), - [anon_sym_mut] = ACTIONS(2516), - [anon_sym_const] = ACTIONS(2516), - [aux_sym_cmd_identifier_token1] = ACTIONS(2516), - [aux_sym_cmd_identifier_token2] = ACTIONS(2518), - [aux_sym_cmd_identifier_token3] = ACTIONS(2518), - [aux_sym_cmd_identifier_token4] = ACTIONS(2518), - [aux_sym_cmd_identifier_token5] = ACTIONS(2518), - [aux_sym_cmd_identifier_token6] = ACTIONS(2518), - [aux_sym_cmd_identifier_token7] = ACTIONS(2518), - [aux_sym_cmd_identifier_token8] = ACTIONS(2516), - [aux_sym_cmd_identifier_token9] = ACTIONS(2516), - [aux_sym_cmd_identifier_token10] = ACTIONS(2518), - [aux_sym_cmd_identifier_token11] = ACTIONS(2518), - [aux_sym_cmd_identifier_token12] = ACTIONS(2516), - [aux_sym_cmd_identifier_token13] = ACTIONS(2516), - [aux_sym_cmd_identifier_token14] = ACTIONS(2516), - [aux_sym_cmd_identifier_token15] = ACTIONS(2516), - [aux_sym_cmd_identifier_token16] = ACTIONS(2518), - [aux_sym_cmd_identifier_token17] = ACTIONS(2518), - [aux_sym_cmd_identifier_token18] = ACTIONS(2518), - [aux_sym_cmd_identifier_token19] = ACTIONS(2518), - [aux_sym_cmd_identifier_token20] = ACTIONS(2518), - [aux_sym_cmd_identifier_token21] = ACTIONS(2518), - [aux_sym_cmd_identifier_token22] = ACTIONS(2518), - [aux_sym_cmd_identifier_token23] = ACTIONS(2518), - [aux_sym_cmd_identifier_token24] = ACTIONS(2518), - [aux_sym_cmd_identifier_token25] = ACTIONS(2518), - [aux_sym_cmd_identifier_token26] = ACTIONS(2518), - [aux_sym_cmd_identifier_token27] = ACTIONS(2518), - [aux_sym_cmd_identifier_token28] = ACTIONS(2518), - [aux_sym_cmd_identifier_token29] = ACTIONS(2518), - [aux_sym_cmd_identifier_token30] = ACTIONS(2518), - [aux_sym_cmd_identifier_token31] = ACTIONS(2518), - [aux_sym_cmd_identifier_token32] = ACTIONS(2518), - [aux_sym_cmd_identifier_token33] = ACTIONS(2518), - [aux_sym_cmd_identifier_token34] = ACTIONS(2516), - [aux_sym_cmd_identifier_token35] = ACTIONS(2518), - [aux_sym_cmd_identifier_token36] = ACTIONS(2518), - [aux_sym_cmd_identifier_token37] = ACTIONS(2518), - [aux_sym_cmd_identifier_token38] = ACTIONS(2516), - [aux_sym_cmd_identifier_token39] = ACTIONS(2518), - [aux_sym_cmd_identifier_token40] = ACTIONS(2518), - [anon_sym_def] = ACTIONS(2516), - [anon_sym_export_DASHenv] = ACTIONS(2516), - [anon_sym_extern] = ACTIONS(2516), - [anon_sym_module] = ACTIONS(2516), - [anon_sym_use] = ACTIONS(2516), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_DOLLAR] = ACTIONS(2516), - [anon_sym_error] = ACTIONS(2516), - [anon_sym_DASH2] = ACTIONS(2516), - [anon_sym_break] = ACTIONS(2516), - [anon_sym_continue] = ACTIONS(2516), - [anon_sym_for] = ACTIONS(2516), - [anon_sym_in2] = ACTIONS(2516), - [anon_sym_loop] = ACTIONS(2516), - [anon_sym_make] = ACTIONS(2516), - [anon_sym_while] = ACTIONS(2516), - [anon_sym_do] = ACTIONS(2516), - [anon_sym_if] = ACTIONS(2516), - [anon_sym_else] = ACTIONS(2516), - [anon_sym_match] = ACTIONS(2516), - [anon_sym_RBRACE] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2516), - [anon_sym_catch] = ACTIONS(2516), - [anon_sym_return] = ACTIONS(2516), - [anon_sym_source] = ACTIONS(2516), - [anon_sym_source_DASHenv] = ACTIONS(2516), - [anon_sym_register] = ACTIONS(2516), - [anon_sym_hide] = ACTIONS(2516), - [anon_sym_hide_DASHenv] = ACTIONS(2516), - [anon_sym_overlay] = ACTIONS(2516), - [anon_sym_as] = ACTIONS(2516), - [anon_sym_PLUS2] = ACTIONS(2516), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2518), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2518), - [aux_sym__val_number_decimal_token1] = ACTIONS(2516), - [aux_sym__val_number_decimal_token2] = ACTIONS(2518), - [aux_sym__val_number_decimal_token3] = ACTIONS(2518), - [aux_sym__val_number_decimal_token4] = ACTIONS(2518), - [aux_sym__val_number_token1] = ACTIONS(2518), - [aux_sym__val_number_token2] = ACTIONS(2518), - [aux_sym__val_number_token3] = ACTIONS(2518), - [aux_sym__val_number_token4] = ACTIONS(2516), - [aux_sym__val_number_token5] = ACTIONS(2516), - [aux_sym__val_number_token6] = ACTIONS(2516), - [anon_sym_DQUOTE] = ACTIONS(2518), - [sym__str_single_quotes] = ACTIONS(2518), - [sym__str_back_ticks] = ACTIONS(2518), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2518), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2518), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2518), + [742] = { + [sym_comment] = STATE(742), + [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(2435), + [aux_sym_cmd_identifier_token3] = ACTIONS(2435), + [aux_sym_cmd_identifier_token4] = ACTIONS(2435), + [aux_sym_cmd_identifier_token5] = ACTIONS(2435), + [aux_sym_cmd_identifier_token6] = ACTIONS(2435), + [aux_sym_cmd_identifier_token7] = ACTIONS(2435), + [aux_sym_cmd_identifier_token8] = ACTIONS(2433), + [aux_sym_cmd_identifier_token9] = ACTIONS(2433), + [aux_sym_cmd_identifier_token10] = ACTIONS(2435), + [aux_sym_cmd_identifier_token11] = ACTIONS(2435), + [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(2435), + [aux_sym_cmd_identifier_token17] = ACTIONS(2435), + [aux_sym_cmd_identifier_token18] = ACTIONS(2435), + [aux_sym_cmd_identifier_token19] = ACTIONS(2435), + [aux_sym_cmd_identifier_token20] = ACTIONS(2435), + [aux_sym_cmd_identifier_token21] = ACTIONS(2435), + [aux_sym_cmd_identifier_token22] = ACTIONS(2435), + [aux_sym_cmd_identifier_token23] = ACTIONS(2435), + [aux_sym_cmd_identifier_token24] = ACTIONS(2435), + [aux_sym_cmd_identifier_token25] = ACTIONS(2435), + [aux_sym_cmd_identifier_token26] = ACTIONS(2435), + [aux_sym_cmd_identifier_token27] = ACTIONS(2435), + [aux_sym_cmd_identifier_token28] = ACTIONS(2435), + [aux_sym_cmd_identifier_token29] = ACTIONS(2435), + [aux_sym_cmd_identifier_token30] = ACTIONS(2435), + [aux_sym_cmd_identifier_token31] = ACTIONS(2435), + [aux_sym_cmd_identifier_token32] = ACTIONS(2435), + [aux_sym_cmd_identifier_token33] = ACTIONS(2435), + [aux_sym_cmd_identifier_token34] = ACTIONS(2433), + [aux_sym_cmd_identifier_token35] = ACTIONS(2435), + [aux_sym_cmd_identifier_token36] = ACTIONS(2435), + [aux_sym_cmd_identifier_token37] = 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_COMMA] = ACTIONS(2435), + [anon_sym_DOLLAR] = ACTIONS(2433), + [anon_sym_error] = ACTIONS(2433), + [anon_sym_DASH2] = ACTIONS(2433), + [anon_sym_break] = ACTIONS(2433), + [anon_sym_continue] = ACTIONS(2433), + [anon_sym_for] = ACTIONS(2433), + [anon_sym_in2] = 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_hide] = ACTIONS(2433), + [anon_sym_hide_DASHenv] = ACTIONS(2433), + [anon_sym_overlay] = ACTIONS(2433), + [anon_sym_as] = ACTIONS(2433), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2433), + [aux_sym__val_number_token5] = ACTIONS(2433), + [aux_sym__val_number_token6] = ACTIONS(2433), + [anon_sym_DQUOTE] = ACTIONS(2435), + [sym__str_single_quotes] = ACTIONS(2435), + [sym__str_back_ticks] = ACTIONS(2435), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2435), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2435), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2435), + [anon_sym_register] = ACTIONS(2433), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2435), }, - [754] = { - [aux_sym__pipe_separator] = STATE(754), - [sym_comment] = STATE(754), - [aux_sym_shebang_repeat1] = STATE(5156), - [aux_sym_cmd_identifier_token1] = ACTIONS(2520), - [aux_sym_cmd_identifier_token2] = ACTIONS(2522), - [aux_sym_cmd_identifier_token3] = ACTIONS(2522), - [aux_sym_cmd_identifier_token4] = ACTIONS(2522), - [aux_sym_cmd_identifier_token5] = ACTIONS(2522), - [aux_sym_cmd_identifier_token6] = ACTIONS(2522), - [aux_sym_cmd_identifier_token7] = ACTIONS(2522), - [aux_sym_cmd_identifier_token8] = ACTIONS(2522), - [aux_sym_cmd_identifier_token9] = ACTIONS(2520), - [aux_sym_cmd_identifier_token10] = ACTIONS(2522), - [aux_sym_cmd_identifier_token11] = ACTIONS(2522), - [aux_sym_cmd_identifier_token12] = ACTIONS(2522), - [aux_sym_cmd_identifier_token13] = ACTIONS(2520), - [aux_sym_cmd_identifier_token14] = ACTIONS(2522), - [aux_sym_cmd_identifier_token15] = ACTIONS(2520), - [aux_sym_cmd_identifier_token16] = ACTIONS(2522), - [aux_sym_cmd_identifier_token17] = ACTIONS(2522), - [aux_sym_cmd_identifier_token18] = ACTIONS(2520), - [aux_sym_cmd_identifier_token19] = ACTIONS(2522), - [aux_sym_cmd_identifier_token20] = ACTIONS(2522), - [aux_sym_cmd_identifier_token21] = ACTIONS(2522), - [aux_sym_cmd_identifier_token22] = ACTIONS(2522), - [aux_sym_cmd_identifier_token23] = ACTIONS(2522), - [aux_sym_cmd_identifier_token24] = ACTIONS(2522), - [aux_sym_cmd_identifier_token25] = ACTIONS(2522), - [aux_sym_cmd_identifier_token26] = ACTIONS(2522), - [aux_sym_cmd_identifier_token27] = ACTIONS(2522), - [aux_sym_cmd_identifier_token28] = ACTIONS(2522), - [aux_sym_cmd_identifier_token29] = ACTIONS(2522), - [aux_sym_cmd_identifier_token30] = ACTIONS(2522), - [aux_sym_cmd_identifier_token31] = ACTIONS(2522), - [aux_sym_cmd_identifier_token32] = ACTIONS(2520), - [aux_sym_cmd_identifier_token33] = ACTIONS(2522), - [aux_sym_cmd_identifier_token34] = ACTIONS(2520), - [aux_sym_cmd_identifier_token35] = ACTIONS(2522), - [aux_sym_cmd_identifier_token36] = ACTIONS(2522), - [aux_sym_cmd_identifier_token37] = ACTIONS(2522), - [aux_sym_cmd_identifier_token38] = ACTIONS(2520), - [aux_sym_cmd_identifier_token39] = ACTIONS(2522), - [aux_sym_cmd_identifier_token40] = ACTIONS(2522), - [sym__newline] = ACTIONS(2524), - [anon_sym_PIPE] = ACTIONS(2527), - [anon_sym_err_GT_PIPE] = ACTIONS(2527), - [anon_sym_out_GT_PIPE] = ACTIONS(2527), - [anon_sym_e_GT_PIPE] = ACTIONS(2527), - [anon_sym_o_GT_PIPE] = ACTIONS(2527), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2527), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2527), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2527), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2527), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_LPAREN] = ACTIONS(2522), - [anon_sym_DOLLAR] = ACTIONS(2520), - [anon_sym_DASH2] = ACTIONS(2520), - [anon_sym_break] = ACTIONS(2520), - [anon_sym_continue] = ACTIONS(2520), - [anon_sym_do] = ACTIONS(2520), - [anon_sym_if] = ACTIONS(2520), - [anon_sym_match] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2522), - [anon_sym_DOT_DOT] = ACTIONS(2520), - [anon_sym_try] = ACTIONS(2520), - [anon_sym_return] = ACTIONS(2520), - [anon_sym_where] = ACTIONS(2522), - [aux_sym_expr_unary_token1] = ACTIONS(2522), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2522), - [anon_sym_DOT_DOT_LT] = ACTIONS(2522), - [anon_sym_null] = ACTIONS(2520), - [anon_sym_true] = ACTIONS(2520), - [anon_sym_false] = ACTIONS(2520), - [aux_sym__val_number_decimal_token1] = ACTIONS(2520), - [aux_sym__val_number_decimal_token2] = ACTIONS(2522), - [aux_sym__val_number_decimal_token3] = ACTIONS(2522), - [aux_sym__val_number_decimal_token4] = ACTIONS(2522), - [aux_sym__val_number_token1] = ACTIONS(2522), - [aux_sym__val_number_token2] = ACTIONS(2522), - [aux_sym__val_number_token3] = ACTIONS(2522), - [aux_sym__val_number_token4] = ACTIONS(2520), - [aux_sym__val_number_token5] = ACTIONS(2520), - [aux_sym__val_number_token6] = ACTIONS(2520), - [anon_sym_0b] = ACTIONS(2520), - [anon_sym_0o] = ACTIONS(2520), - [anon_sym_0x] = ACTIONS(2520), - [sym_val_date] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2522), - [sym__str_single_quotes] = ACTIONS(2522), - [sym__str_back_ticks] = ACTIONS(2522), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2522), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2522), - [aux_sym_env_var_token1] = ACTIONS(2520), - [anon_sym_CARET] = ACTIONS(2522), - [aux_sym_command_token1] = ACTIONS(2522), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2522), + [743] = { + [sym_comment] = STATE(743), + [anon_sym_export] = ACTIONS(2449), + [anon_sym_alias] = ACTIONS(2449), + [anon_sym_let] = ACTIONS(2449), + [anon_sym_let_DASHenv] = ACTIONS(2449), + [anon_sym_mut] = ACTIONS(2449), + [anon_sym_const] = ACTIONS(2449), + [aux_sym_cmd_identifier_token1] = ACTIONS(2449), + [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(2449), + [aux_sym_cmd_identifier_token9] = ACTIONS(2449), + [aux_sym_cmd_identifier_token10] = ACTIONS(2451), + [aux_sym_cmd_identifier_token11] = ACTIONS(2451), + [aux_sym_cmd_identifier_token12] = ACTIONS(2449), + [aux_sym_cmd_identifier_token13] = ACTIONS(2449), + [aux_sym_cmd_identifier_token14] = ACTIONS(2449), + [aux_sym_cmd_identifier_token15] = ACTIONS(2449), + [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(2449), + [aux_sym_cmd_identifier_token35] = ACTIONS(2451), + [aux_sym_cmd_identifier_token36] = ACTIONS(2451), + [aux_sym_cmd_identifier_token37] = ACTIONS(2451), + [aux_sym_cmd_identifier_token38] = ACTIONS(2449), + [aux_sym_cmd_identifier_token39] = ACTIONS(2451), + [aux_sym_cmd_identifier_token40] = ACTIONS(2451), + [anon_sym_def] = ACTIONS(2449), + [anon_sym_export_DASHenv] = ACTIONS(2449), + [anon_sym_extern] = ACTIONS(2449), + [anon_sym_module] = ACTIONS(2449), + [anon_sym_use] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_COMMA] = ACTIONS(2451), + [anon_sym_DOLLAR] = ACTIONS(2449), + [anon_sym_error] = ACTIONS(2449), + [anon_sym_DASH2] = ACTIONS(2449), + [anon_sym_break] = ACTIONS(2449), + [anon_sym_continue] = ACTIONS(2449), + [anon_sym_for] = ACTIONS(2449), + [anon_sym_in2] = ACTIONS(2449), + [anon_sym_loop] = ACTIONS(2449), + [anon_sym_make] = ACTIONS(2449), + [anon_sym_while] = ACTIONS(2449), + [anon_sym_do] = ACTIONS(2449), + [anon_sym_if] = ACTIONS(2449), + [anon_sym_else] = ACTIONS(2449), + [anon_sym_match] = ACTIONS(2449), + [anon_sym_RBRACE] = ACTIONS(2451), + [anon_sym_try] = ACTIONS(2449), + [anon_sym_catch] = ACTIONS(2449), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_source] = ACTIONS(2449), + [anon_sym_source_DASHenv] = ACTIONS(2449), + [anon_sym_hide] = ACTIONS(2449), + [anon_sym_hide_DASHenv] = ACTIONS(2449), + [anon_sym_overlay] = ACTIONS(2449), + [anon_sym_as] = ACTIONS(2449), + [anon_sym_PLUS2] = ACTIONS(2449), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2451), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2451), + [aux_sym__val_number_decimal_token1] = ACTIONS(2449), + [aux_sym__val_number_decimal_token2] = ACTIONS(2451), + [aux_sym__val_number_decimal_token3] = ACTIONS(2451), + [aux_sym__val_number_decimal_token4] = ACTIONS(2451), + [aux_sym__val_number_token1] = ACTIONS(2451), + [aux_sym__val_number_token2] = ACTIONS(2451), + [aux_sym__val_number_token3] = ACTIONS(2451), + [aux_sym__val_number_token4] = ACTIONS(2449), + [aux_sym__val_number_token5] = ACTIONS(2449), + [aux_sym__val_number_token6] = ACTIONS(2449), + [anon_sym_DQUOTE] = ACTIONS(2451), + [sym__str_single_quotes] = ACTIONS(2451), + [sym__str_back_ticks] = ACTIONS(2451), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2451), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2451), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2451), + [anon_sym_register] = ACTIONS(2449), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2451), }, - [755] = { - [aux_sym__pipe_separator] = STATE(754), - [sym_comment] = STATE(755), - [aux_sym_shebang_repeat1] = STATE(757), - [aux_sym_cmd_identifier_token1] = ACTIONS(2530), - [aux_sym_cmd_identifier_token2] = ACTIONS(2532), - [aux_sym_cmd_identifier_token3] = ACTIONS(2532), - [aux_sym_cmd_identifier_token4] = ACTIONS(2532), - [aux_sym_cmd_identifier_token5] = ACTIONS(2532), - [aux_sym_cmd_identifier_token6] = ACTIONS(2532), - [aux_sym_cmd_identifier_token7] = ACTIONS(2532), - [aux_sym_cmd_identifier_token8] = ACTIONS(2532), - [aux_sym_cmd_identifier_token9] = ACTIONS(2530), - [aux_sym_cmd_identifier_token10] = ACTIONS(2532), - [aux_sym_cmd_identifier_token11] = ACTIONS(2532), - [aux_sym_cmd_identifier_token12] = ACTIONS(2532), - [aux_sym_cmd_identifier_token13] = ACTIONS(2530), - [aux_sym_cmd_identifier_token14] = ACTIONS(2532), - [aux_sym_cmd_identifier_token15] = ACTIONS(2530), - [aux_sym_cmd_identifier_token16] = ACTIONS(2532), - [aux_sym_cmd_identifier_token17] = ACTIONS(2532), - [aux_sym_cmd_identifier_token18] = ACTIONS(2530), - [aux_sym_cmd_identifier_token19] = ACTIONS(2532), - [aux_sym_cmd_identifier_token20] = ACTIONS(2532), - [aux_sym_cmd_identifier_token21] = ACTIONS(2532), - [aux_sym_cmd_identifier_token22] = ACTIONS(2532), - [aux_sym_cmd_identifier_token23] = ACTIONS(2532), - [aux_sym_cmd_identifier_token24] = ACTIONS(2532), - [aux_sym_cmd_identifier_token25] = ACTIONS(2532), - [aux_sym_cmd_identifier_token26] = ACTIONS(2532), - [aux_sym_cmd_identifier_token27] = ACTIONS(2532), - [aux_sym_cmd_identifier_token28] = ACTIONS(2532), - [aux_sym_cmd_identifier_token29] = ACTIONS(2532), - [aux_sym_cmd_identifier_token30] = ACTIONS(2532), - [aux_sym_cmd_identifier_token31] = ACTIONS(2532), - [aux_sym_cmd_identifier_token32] = ACTIONS(2530), - [aux_sym_cmd_identifier_token33] = ACTIONS(2532), - [aux_sym_cmd_identifier_token34] = ACTIONS(2530), - [aux_sym_cmd_identifier_token35] = ACTIONS(2532), - [aux_sym_cmd_identifier_token36] = ACTIONS(2532), - [aux_sym_cmd_identifier_token37] = ACTIONS(2532), - [aux_sym_cmd_identifier_token38] = ACTIONS(2530), - [aux_sym_cmd_identifier_token39] = ACTIONS(2532), - [aux_sym_cmd_identifier_token40] = ACTIONS(2532), - [sym__newline] = ACTIONS(2534), - [anon_sym_PIPE] = ACTIONS(2536), - [anon_sym_err_GT_PIPE] = ACTIONS(2536), - [anon_sym_out_GT_PIPE] = ACTIONS(2536), - [anon_sym_e_GT_PIPE] = ACTIONS(2536), - [anon_sym_o_GT_PIPE] = ACTIONS(2536), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2536), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2536), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2536), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(2532), - [anon_sym_LPAREN] = ACTIONS(2532), - [anon_sym_DOLLAR] = ACTIONS(2530), - [anon_sym_DASH2] = ACTIONS(2530), - [anon_sym_break] = ACTIONS(2530), - [anon_sym_continue] = ACTIONS(2530), - [anon_sym_do] = ACTIONS(2530), - [anon_sym_if] = ACTIONS(2530), - [anon_sym_match] = ACTIONS(2530), - [anon_sym_LBRACE] = ACTIONS(2532), - [anon_sym_DOT_DOT] = ACTIONS(2530), - [anon_sym_try] = ACTIONS(2530), - [anon_sym_return] = ACTIONS(2530), - [anon_sym_where] = ACTIONS(2532), - [aux_sym_expr_unary_token1] = ACTIONS(2532), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2532), - [anon_sym_DOT_DOT_LT] = ACTIONS(2532), - [anon_sym_null] = ACTIONS(2530), - [anon_sym_true] = ACTIONS(2530), - [anon_sym_false] = ACTIONS(2530), - [aux_sym__val_number_decimal_token1] = ACTIONS(2530), - [aux_sym__val_number_decimal_token2] = ACTIONS(2532), - [aux_sym__val_number_decimal_token3] = ACTIONS(2532), - [aux_sym__val_number_decimal_token4] = ACTIONS(2532), - [aux_sym__val_number_token1] = ACTIONS(2532), - [aux_sym__val_number_token2] = ACTIONS(2532), - [aux_sym__val_number_token3] = ACTIONS(2532), - [aux_sym__val_number_token4] = ACTIONS(2530), - [aux_sym__val_number_token5] = ACTIONS(2530), - [aux_sym__val_number_token6] = ACTIONS(2530), - [anon_sym_0b] = ACTIONS(2530), - [anon_sym_0o] = ACTIONS(2530), - [anon_sym_0x] = ACTIONS(2530), - [sym_val_date] = ACTIONS(2532), - [anon_sym_DQUOTE] = ACTIONS(2532), - [sym__str_single_quotes] = ACTIONS(2532), - [sym__str_back_ticks] = ACTIONS(2532), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2532), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2532), - [aux_sym_env_var_token1] = ACTIONS(2530), - [anon_sym_CARET] = ACTIONS(2532), - [aux_sym_command_token1] = ACTIONS(2532), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2532), + [744] = { + [sym_comment] = STATE(744), + [anon_sym_export] = ACTIONS(2465), + [anon_sym_alias] = ACTIONS(2465), + [anon_sym_let] = ACTIONS(2465), + [anon_sym_let_DASHenv] = ACTIONS(2465), + [anon_sym_mut] = ACTIONS(2465), + [anon_sym_const] = ACTIONS(2465), + [aux_sym_cmd_identifier_token1] = ACTIONS(2465), + [aux_sym_cmd_identifier_token2] = ACTIONS(2467), + [aux_sym_cmd_identifier_token3] = ACTIONS(2467), + [aux_sym_cmd_identifier_token4] = ACTIONS(2467), + [aux_sym_cmd_identifier_token5] = ACTIONS(2467), + [aux_sym_cmd_identifier_token6] = ACTIONS(2467), + [aux_sym_cmd_identifier_token7] = ACTIONS(2467), + [aux_sym_cmd_identifier_token8] = ACTIONS(2465), + [aux_sym_cmd_identifier_token9] = ACTIONS(2465), + [aux_sym_cmd_identifier_token10] = ACTIONS(2467), + [aux_sym_cmd_identifier_token11] = ACTIONS(2467), + [aux_sym_cmd_identifier_token12] = ACTIONS(2465), + [aux_sym_cmd_identifier_token13] = ACTIONS(2465), + [aux_sym_cmd_identifier_token14] = ACTIONS(2465), + [aux_sym_cmd_identifier_token15] = ACTIONS(2465), + [aux_sym_cmd_identifier_token16] = ACTIONS(2467), + [aux_sym_cmd_identifier_token17] = ACTIONS(2467), + [aux_sym_cmd_identifier_token18] = ACTIONS(2467), + [aux_sym_cmd_identifier_token19] = ACTIONS(2467), + [aux_sym_cmd_identifier_token20] = ACTIONS(2467), + [aux_sym_cmd_identifier_token21] = ACTIONS(2467), + [aux_sym_cmd_identifier_token22] = ACTIONS(2467), + [aux_sym_cmd_identifier_token23] = ACTIONS(2467), + [aux_sym_cmd_identifier_token24] = ACTIONS(2467), + [aux_sym_cmd_identifier_token25] = ACTIONS(2467), + [aux_sym_cmd_identifier_token26] = ACTIONS(2467), + [aux_sym_cmd_identifier_token27] = ACTIONS(2467), + [aux_sym_cmd_identifier_token28] = ACTIONS(2467), + [aux_sym_cmd_identifier_token29] = ACTIONS(2467), + [aux_sym_cmd_identifier_token30] = ACTIONS(2467), + [aux_sym_cmd_identifier_token31] = ACTIONS(2467), + [aux_sym_cmd_identifier_token32] = ACTIONS(2467), + [aux_sym_cmd_identifier_token33] = ACTIONS(2467), + [aux_sym_cmd_identifier_token34] = ACTIONS(2465), + [aux_sym_cmd_identifier_token35] = ACTIONS(2467), + [aux_sym_cmd_identifier_token36] = ACTIONS(2467), + [aux_sym_cmd_identifier_token37] = ACTIONS(2467), + [aux_sym_cmd_identifier_token38] = ACTIONS(2465), + [aux_sym_cmd_identifier_token39] = ACTIONS(2467), + [aux_sym_cmd_identifier_token40] = ACTIONS(2467), + [anon_sym_def] = ACTIONS(2465), + [anon_sym_export_DASHenv] = ACTIONS(2465), + [anon_sym_extern] = ACTIONS(2465), + [anon_sym_module] = ACTIONS(2465), + [anon_sym_use] = ACTIONS(2465), + [anon_sym_LPAREN] = ACTIONS(2467), + [anon_sym_COMMA] = ACTIONS(2467), + [anon_sym_DOLLAR] = ACTIONS(2465), + [anon_sym_error] = ACTIONS(2465), + [anon_sym_DASH2] = ACTIONS(2465), + [anon_sym_break] = ACTIONS(2465), + [anon_sym_continue] = ACTIONS(2465), + [anon_sym_for] = ACTIONS(2465), + [anon_sym_in2] = ACTIONS(2465), + [anon_sym_loop] = ACTIONS(2465), + [anon_sym_make] = ACTIONS(2465), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_do] = ACTIONS(2465), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_else] = ACTIONS(2465), + [anon_sym_match] = ACTIONS(2465), + [anon_sym_RBRACE] = ACTIONS(2467), + [anon_sym_try] = ACTIONS(2465), + [anon_sym_catch] = ACTIONS(2465), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_source] = ACTIONS(2465), + [anon_sym_source_DASHenv] = ACTIONS(2465), + [anon_sym_hide] = ACTIONS(2465), + [anon_sym_hide_DASHenv] = ACTIONS(2465), + [anon_sym_overlay] = ACTIONS(2465), + [anon_sym_as] = ACTIONS(2465), + [anon_sym_PLUS2] = ACTIONS(2465), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2467), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2467), + [aux_sym__val_number_decimal_token1] = ACTIONS(2465), + [aux_sym__val_number_decimal_token2] = ACTIONS(2467), + [aux_sym__val_number_decimal_token3] = ACTIONS(2467), + [aux_sym__val_number_decimal_token4] = ACTIONS(2467), + [aux_sym__val_number_token1] = ACTIONS(2467), + [aux_sym__val_number_token2] = ACTIONS(2467), + [aux_sym__val_number_token3] = ACTIONS(2467), + [aux_sym__val_number_token4] = ACTIONS(2465), + [aux_sym__val_number_token5] = ACTIONS(2465), + [aux_sym__val_number_token6] = ACTIONS(2465), + [anon_sym_DQUOTE] = ACTIONS(2467), + [sym__str_single_quotes] = ACTIONS(2467), + [sym__str_back_ticks] = ACTIONS(2467), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2467), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2467), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2467), + [anon_sym_register] = ACTIONS(2465), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2467), }, - [756] = { - [aux_sym__pipe_separator] = STATE(754), - [sym_comment] = STATE(756), - [aux_sym_shebang_repeat1] = STATE(5156), - [aux_sym_cmd_identifier_token1] = ACTIONS(2538), - [aux_sym_cmd_identifier_token2] = ACTIONS(2540), - [aux_sym_cmd_identifier_token3] = ACTIONS(2540), - [aux_sym_cmd_identifier_token4] = ACTIONS(2540), - [aux_sym_cmd_identifier_token5] = ACTIONS(2540), - [aux_sym_cmd_identifier_token6] = ACTIONS(2540), - [aux_sym_cmd_identifier_token7] = ACTIONS(2540), - [aux_sym_cmd_identifier_token8] = ACTIONS(2540), - [aux_sym_cmd_identifier_token9] = ACTIONS(2538), - [aux_sym_cmd_identifier_token10] = ACTIONS(2540), - [aux_sym_cmd_identifier_token11] = ACTIONS(2540), - [aux_sym_cmd_identifier_token12] = ACTIONS(2540), - [aux_sym_cmd_identifier_token13] = ACTIONS(2538), - [aux_sym_cmd_identifier_token14] = ACTIONS(2540), - [aux_sym_cmd_identifier_token15] = ACTIONS(2538), - [aux_sym_cmd_identifier_token16] = ACTIONS(2540), - [aux_sym_cmd_identifier_token17] = ACTIONS(2540), - [aux_sym_cmd_identifier_token18] = ACTIONS(2538), - [aux_sym_cmd_identifier_token19] = ACTIONS(2540), - [aux_sym_cmd_identifier_token20] = ACTIONS(2540), - [aux_sym_cmd_identifier_token21] = ACTIONS(2540), - [aux_sym_cmd_identifier_token22] = ACTIONS(2540), - [aux_sym_cmd_identifier_token23] = ACTIONS(2540), - [aux_sym_cmd_identifier_token24] = ACTIONS(2540), - [aux_sym_cmd_identifier_token25] = ACTIONS(2540), - [aux_sym_cmd_identifier_token26] = ACTIONS(2540), - [aux_sym_cmd_identifier_token27] = ACTIONS(2540), - [aux_sym_cmd_identifier_token28] = ACTIONS(2540), - [aux_sym_cmd_identifier_token29] = ACTIONS(2540), - [aux_sym_cmd_identifier_token30] = ACTIONS(2540), - [aux_sym_cmd_identifier_token31] = ACTIONS(2540), - [aux_sym_cmd_identifier_token32] = ACTIONS(2538), - [aux_sym_cmd_identifier_token33] = ACTIONS(2540), - [aux_sym_cmd_identifier_token34] = ACTIONS(2538), - [aux_sym_cmd_identifier_token35] = ACTIONS(2540), - [aux_sym_cmd_identifier_token36] = ACTIONS(2540), - [aux_sym_cmd_identifier_token37] = ACTIONS(2540), - [aux_sym_cmd_identifier_token38] = ACTIONS(2538), - [aux_sym_cmd_identifier_token39] = ACTIONS(2540), - [aux_sym_cmd_identifier_token40] = ACTIONS(2540), - [sym__newline] = ACTIONS(2542), - [anon_sym_PIPE] = ACTIONS(2536), - [anon_sym_err_GT_PIPE] = ACTIONS(2536), - [anon_sym_out_GT_PIPE] = ACTIONS(2536), - [anon_sym_e_GT_PIPE] = ACTIONS(2536), - [anon_sym_o_GT_PIPE] = ACTIONS(2536), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2536), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2536), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2536), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2540), - [anon_sym_DOLLAR] = ACTIONS(2538), - [anon_sym_DASH2] = ACTIONS(2538), - [anon_sym_break] = ACTIONS(2538), - [anon_sym_continue] = ACTIONS(2538), - [anon_sym_do] = ACTIONS(2538), - [anon_sym_if] = ACTIONS(2538), - [anon_sym_match] = ACTIONS(2538), - [anon_sym_LBRACE] = ACTIONS(2540), - [anon_sym_DOT_DOT] = ACTIONS(2538), - [anon_sym_try] = ACTIONS(2538), - [anon_sym_return] = ACTIONS(2538), - [anon_sym_where] = ACTIONS(2540), - [aux_sym_expr_unary_token1] = ACTIONS(2540), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2540), - [anon_sym_DOT_DOT_LT] = ACTIONS(2540), - [anon_sym_null] = ACTIONS(2538), - [anon_sym_true] = ACTIONS(2538), - [anon_sym_false] = ACTIONS(2538), - [aux_sym__val_number_decimal_token1] = ACTIONS(2538), - [aux_sym__val_number_decimal_token2] = ACTIONS(2540), - [aux_sym__val_number_decimal_token3] = ACTIONS(2540), - [aux_sym__val_number_decimal_token4] = ACTIONS(2540), - [aux_sym__val_number_token1] = ACTIONS(2540), - [aux_sym__val_number_token2] = ACTIONS(2540), - [aux_sym__val_number_token3] = ACTIONS(2540), - [aux_sym__val_number_token4] = ACTIONS(2538), - [aux_sym__val_number_token5] = ACTIONS(2538), - [aux_sym__val_number_token6] = ACTIONS(2538), - [anon_sym_0b] = ACTIONS(2538), - [anon_sym_0o] = ACTIONS(2538), - [anon_sym_0x] = ACTIONS(2538), - [sym_val_date] = ACTIONS(2540), - [anon_sym_DQUOTE] = ACTIONS(2540), - [sym__str_single_quotes] = ACTIONS(2540), - [sym__str_back_ticks] = ACTIONS(2540), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2540), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2540), - [aux_sym_env_var_token1] = ACTIONS(2538), - [anon_sym_CARET] = ACTIONS(2540), - [aux_sym_command_token1] = ACTIONS(2540), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2540), + [745] = { + [sym_comment] = STATE(745), + [anon_sym_export] = ACTIONS(2481), + [anon_sym_alias] = ACTIONS(2481), + [anon_sym_let] = ACTIONS(2481), + [anon_sym_let_DASHenv] = ACTIONS(2481), + [anon_sym_mut] = ACTIONS(2481), + [anon_sym_const] = ACTIONS(2481), + [aux_sym_cmd_identifier_token1] = ACTIONS(2481), + [aux_sym_cmd_identifier_token2] = ACTIONS(2483), + [aux_sym_cmd_identifier_token3] = ACTIONS(2483), + [aux_sym_cmd_identifier_token4] = ACTIONS(2483), + [aux_sym_cmd_identifier_token5] = ACTIONS(2483), + [aux_sym_cmd_identifier_token6] = ACTIONS(2483), + [aux_sym_cmd_identifier_token7] = ACTIONS(2483), + [aux_sym_cmd_identifier_token8] = ACTIONS(2481), + [aux_sym_cmd_identifier_token9] = ACTIONS(2481), + [aux_sym_cmd_identifier_token10] = ACTIONS(2483), + [aux_sym_cmd_identifier_token11] = ACTIONS(2483), + [aux_sym_cmd_identifier_token12] = ACTIONS(2481), + [aux_sym_cmd_identifier_token13] = ACTIONS(2481), + [aux_sym_cmd_identifier_token14] = ACTIONS(2481), + [aux_sym_cmd_identifier_token15] = ACTIONS(2481), + [aux_sym_cmd_identifier_token16] = ACTIONS(2483), + [aux_sym_cmd_identifier_token17] = ACTIONS(2483), + [aux_sym_cmd_identifier_token18] = ACTIONS(2483), + [aux_sym_cmd_identifier_token19] = ACTIONS(2483), + [aux_sym_cmd_identifier_token20] = ACTIONS(2483), + [aux_sym_cmd_identifier_token21] = ACTIONS(2483), + [aux_sym_cmd_identifier_token22] = ACTIONS(2483), + [aux_sym_cmd_identifier_token23] = ACTIONS(2483), + [aux_sym_cmd_identifier_token24] = ACTIONS(2483), + [aux_sym_cmd_identifier_token25] = ACTIONS(2483), + [aux_sym_cmd_identifier_token26] = ACTIONS(2483), + [aux_sym_cmd_identifier_token27] = ACTIONS(2483), + [aux_sym_cmd_identifier_token28] = ACTIONS(2483), + [aux_sym_cmd_identifier_token29] = ACTIONS(2483), + [aux_sym_cmd_identifier_token30] = ACTIONS(2483), + [aux_sym_cmd_identifier_token31] = ACTIONS(2483), + [aux_sym_cmd_identifier_token32] = ACTIONS(2483), + [aux_sym_cmd_identifier_token33] = ACTIONS(2483), + [aux_sym_cmd_identifier_token34] = ACTIONS(2481), + [aux_sym_cmd_identifier_token35] = ACTIONS(2483), + [aux_sym_cmd_identifier_token36] = ACTIONS(2483), + [aux_sym_cmd_identifier_token37] = ACTIONS(2483), + [aux_sym_cmd_identifier_token38] = ACTIONS(2481), + [aux_sym_cmd_identifier_token39] = ACTIONS(2483), + [aux_sym_cmd_identifier_token40] = ACTIONS(2483), + [anon_sym_def] = ACTIONS(2481), + [anon_sym_export_DASHenv] = ACTIONS(2481), + [anon_sym_extern] = ACTIONS(2481), + [anon_sym_module] = ACTIONS(2481), + [anon_sym_use] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2483), + [anon_sym_COMMA] = ACTIONS(2483), + [anon_sym_DOLLAR] = ACTIONS(2481), + [anon_sym_error] = ACTIONS(2481), + [anon_sym_DASH2] = ACTIONS(2481), + [anon_sym_break] = ACTIONS(2481), + [anon_sym_continue] = ACTIONS(2481), + [anon_sym_for] = ACTIONS(2481), + [anon_sym_in2] = ACTIONS(2481), + [anon_sym_loop] = ACTIONS(2481), + [anon_sym_make] = ACTIONS(2481), + [anon_sym_while] = ACTIONS(2481), + [anon_sym_do] = ACTIONS(2481), + [anon_sym_if] = ACTIONS(2481), + [anon_sym_else] = ACTIONS(2481), + [anon_sym_match] = ACTIONS(2481), + [anon_sym_RBRACE] = ACTIONS(2483), + [anon_sym_try] = ACTIONS(2481), + [anon_sym_catch] = ACTIONS(2481), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_source] = ACTIONS(2481), + [anon_sym_source_DASHenv] = ACTIONS(2481), + [anon_sym_hide] = ACTIONS(2481), + [anon_sym_hide_DASHenv] = ACTIONS(2481), + [anon_sym_overlay] = ACTIONS(2481), + [anon_sym_as] = ACTIONS(2481), + [anon_sym_PLUS2] = ACTIONS(2481), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2483), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2483), + [aux_sym__val_number_decimal_token1] = ACTIONS(2481), + [aux_sym__val_number_decimal_token2] = ACTIONS(2483), + [aux_sym__val_number_decimal_token3] = ACTIONS(2483), + [aux_sym__val_number_decimal_token4] = ACTIONS(2483), + [aux_sym__val_number_token1] = ACTIONS(2483), + [aux_sym__val_number_token2] = ACTIONS(2483), + [aux_sym__val_number_token3] = ACTIONS(2483), + [aux_sym__val_number_token4] = ACTIONS(2481), + [aux_sym__val_number_token5] = ACTIONS(2481), + [aux_sym__val_number_token6] = ACTIONS(2481), + [anon_sym_DQUOTE] = ACTIONS(2483), + [sym__str_single_quotes] = ACTIONS(2483), + [sym__str_back_ticks] = ACTIONS(2483), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2483), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2483), + [anon_sym_register] = ACTIONS(2481), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2483), }, - [757] = { - [sym_comment] = STATE(757), - [aux_sym_shebang_repeat1] = STATE(759), - [aux_sym_cmd_identifier_token1] = ACTIONS(2544), - [aux_sym_cmd_identifier_token2] = ACTIONS(2546), - [aux_sym_cmd_identifier_token3] = ACTIONS(2546), - [aux_sym_cmd_identifier_token4] = ACTIONS(2546), - [aux_sym_cmd_identifier_token5] = ACTIONS(2546), - [aux_sym_cmd_identifier_token6] = ACTIONS(2546), - [aux_sym_cmd_identifier_token7] = ACTIONS(2546), - [aux_sym_cmd_identifier_token8] = ACTIONS(2546), - [aux_sym_cmd_identifier_token9] = ACTIONS(2544), - [aux_sym_cmd_identifier_token10] = ACTIONS(2546), - [aux_sym_cmd_identifier_token11] = ACTIONS(2546), - [aux_sym_cmd_identifier_token12] = ACTIONS(2546), - [aux_sym_cmd_identifier_token13] = ACTIONS(2544), - [aux_sym_cmd_identifier_token14] = ACTIONS(2546), - [aux_sym_cmd_identifier_token15] = ACTIONS(2544), - [aux_sym_cmd_identifier_token16] = ACTIONS(2546), - [aux_sym_cmd_identifier_token17] = ACTIONS(2546), - [aux_sym_cmd_identifier_token18] = ACTIONS(2544), - [aux_sym_cmd_identifier_token19] = ACTIONS(2546), - [aux_sym_cmd_identifier_token20] = ACTIONS(2546), - [aux_sym_cmd_identifier_token21] = ACTIONS(2546), - [aux_sym_cmd_identifier_token22] = ACTIONS(2546), - [aux_sym_cmd_identifier_token23] = ACTIONS(2546), - [aux_sym_cmd_identifier_token24] = ACTIONS(2546), - [aux_sym_cmd_identifier_token25] = ACTIONS(2546), - [aux_sym_cmd_identifier_token26] = ACTIONS(2546), - [aux_sym_cmd_identifier_token27] = ACTIONS(2546), - [aux_sym_cmd_identifier_token28] = ACTIONS(2546), - [aux_sym_cmd_identifier_token29] = ACTIONS(2546), - [aux_sym_cmd_identifier_token30] = ACTIONS(2546), - [aux_sym_cmd_identifier_token31] = ACTIONS(2546), - [aux_sym_cmd_identifier_token32] = ACTIONS(2544), - [aux_sym_cmd_identifier_token33] = ACTIONS(2546), - [aux_sym_cmd_identifier_token34] = ACTIONS(2544), - [aux_sym_cmd_identifier_token35] = ACTIONS(2546), - [aux_sym_cmd_identifier_token36] = ACTIONS(2546), - [aux_sym_cmd_identifier_token37] = ACTIONS(2546), - [aux_sym_cmd_identifier_token38] = ACTIONS(2544), - [aux_sym_cmd_identifier_token39] = ACTIONS(2546), - [aux_sym_cmd_identifier_token40] = ACTIONS(2546), - [sym__newline] = ACTIONS(2534), - [anon_sym_PIPE] = ACTIONS(2548), - [anon_sym_err_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_GT_PIPE] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), - [anon_sym_LBRACK] = ACTIONS(2546), - [anon_sym_LPAREN] = ACTIONS(2546), - [anon_sym_DOLLAR] = ACTIONS(2544), - [anon_sym_DASH2] = ACTIONS(2544), - [anon_sym_break] = ACTIONS(2544), - [anon_sym_continue] = ACTIONS(2544), - [anon_sym_do] = ACTIONS(2544), - [anon_sym_if] = ACTIONS(2544), - [anon_sym_match] = ACTIONS(2544), - [anon_sym_LBRACE] = ACTIONS(2546), - [anon_sym_DOT_DOT] = ACTIONS(2544), - [anon_sym_try] = ACTIONS(2544), - [anon_sym_return] = ACTIONS(2544), - [anon_sym_where] = ACTIONS(2546), - [aux_sym_expr_unary_token1] = ACTIONS(2546), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2546), - [anon_sym_DOT_DOT_LT] = ACTIONS(2546), - [anon_sym_null] = ACTIONS(2544), - [anon_sym_true] = ACTIONS(2544), - [anon_sym_false] = ACTIONS(2544), - [aux_sym__val_number_decimal_token1] = ACTIONS(2544), - [aux_sym__val_number_decimal_token2] = ACTIONS(2546), - [aux_sym__val_number_decimal_token3] = ACTIONS(2546), - [aux_sym__val_number_decimal_token4] = ACTIONS(2546), - [aux_sym__val_number_token1] = ACTIONS(2546), - [aux_sym__val_number_token2] = ACTIONS(2546), - [aux_sym__val_number_token3] = ACTIONS(2546), - [aux_sym__val_number_token4] = ACTIONS(2544), - [aux_sym__val_number_token5] = ACTIONS(2544), - [aux_sym__val_number_token6] = ACTIONS(2544), - [anon_sym_0b] = ACTIONS(2544), - [anon_sym_0o] = ACTIONS(2544), - [anon_sym_0x] = ACTIONS(2544), - [sym_val_date] = ACTIONS(2546), - [anon_sym_DQUOTE] = ACTIONS(2546), - [sym__str_single_quotes] = ACTIONS(2546), - [sym__str_back_ticks] = ACTIONS(2546), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2546), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2546), - [aux_sym_env_var_token1] = ACTIONS(2544), - [anon_sym_CARET] = ACTIONS(2546), - [aux_sym_command_token1] = ACTIONS(2546), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2546), + [746] = { + [sym_comment] = STATE(746), + [anon_sym_export] = ACTIONS(2485), + [anon_sym_alias] = ACTIONS(2485), + [anon_sym_let] = ACTIONS(2485), + [anon_sym_let_DASHenv] = ACTIONS(2485), + [anon_sym_mut] = ACTIONS(2485), + [anon_sym_const] = ACTIONS(2485), + [aux_sym_cmd_identifier_token1] = ACTIONS(2485), + [aux_sym_cmd_identifier_token2] = ACTIONS(2487), + [aux_sym_cmd_identifier_token3] = ACTIONS(2487), + [aux_sym_cmd_identifier_token4] = ACTIONS(2487), + [aux_sym_cmd_identifier_token5] = ACTIONS(2487), + [aux_sym_cmd_identifier_token6] = ACTIONS(2487), + [aux_sym_cmd_identifier_token7] = ACTIONS(2487), + [aux_sym_cmd_identifier_token8] = ACTIONS(2485), + [aux_sym_cmd_identifier_token9] = ACTIONS(2485), + [aux_sym_cmd_identifier_token10] = ACTIONS(2487), + [aux_sym_cmd_identifier_token11] = ACTIONS(2487), + [aux_sym_cmd_identifier_token12] = ACTIONS(2485), + [aux_sym_cmd_identifier_token13] = ACTIONS(2485), + [aux_sym_cmd_identifier_token14] = ACTIONS(2485), + [aux_sym_cmd_identifier_token15] = ACTIONS(2485), + [aux_sym_cmd_identifier_token16] = ACTIONS(2487), + [aux_sym_cmd_identifier_token17] = ACTIONS(2487), + [aux_sym_cmd_identifier_token18] = ACTIONS(2487), + [aux_sym_cmd_identifier_token19] = ACTIONS(2487), + [aux_sym_cmd_identifier_token20] = ACTIONS(2487), + [aux_sym_cmd_identifier_token21] = ACTIONS(2487), + [aux_sym_cmd_identifier_token22] = ACTIONS(2487), + [aux_sym_cmd_identifier_token23] = ACTIONS(2487), + [aux_sym_cmd_identifier_token24] = ACTIONS(2487), + [aux_sym_cmd_identifier_token25] = ACTIONS(2487), + [aux_sym_cmd_identifier_token26] = ACTIONS(2487), + [aux_sym_cmd_identifier_token27] = ACTIONS(2487), + [aux_sym_cmd_identifier_token28] = ACTIONS(2487), + [aux_sym_cmd_identifier_token29] = ACTIONS(2487), + [aux_sym_cmd_identifier_token30] = ACTIONS(2487), + [aux_sym_cmd_identifier_token31] = ACTIONS(2487), + [aux_sym_cmd_identifier_token32] = ACTIONS(2487), + [aux_sym_cmd_identifier_token33] = ACTIONS(2487), + [aux_sym_cmd_identifier_token34] = ACTIONS(2485), + [aux_sym_cmd_identifier_token35] = ACTIONS(2487), + [aux_sym_cmd_identifier_token36] = ACTIONS(2487), + [aux_sym_cmd_identifier_token37] = ACTIONS(2487), + [aux_sym_cmd_identifier_token38] = ACTIONS(2485), + [aux_sym_cmd_identifier_token39] = ACTIONS(2487), + [aux_sym_cmd_identifier_token40] = ACTIONS(2487), + [anon_sym_def] = ACTIONS(2485), + [anon_sym_export_DASHenv] = ACTIONS(2485), + [anon_sym_extern] = ACTIONS(2485), + [anon_sym_module] = ACTIONS(2485), + [anon_sym_use] = ACTIONS(2485), + [anon_sym_LPAREN] = ACTIONS(2487), + [anon_sym_COMMA] = ACTIONS(2487), + [anon_sym_DOLLAR] = ACTIONS(2485), + [anon_sym_error] = ACTIONS(2485), + [anon_sym_DASH2] = ACTIONS(2485), + [anon_sym_break] = ACTIONS(2485), + [anon_sym_continue] = ACTIONS(2485), + [anon_sym_for] = ACTIONS(2485), + [anon_sym_in2] = ACTIONS(2485), + [anon_sym_loop] = ACTIONS(2485), + [anon_sym_make] = ACTIONS(2485), + [anon_sym_while] = ACTIONS(2485), + [anon_sym_do] = ACTIONS(2485), + [anon_sym_if] = ACTIONS(2485), + [anon_sym_else] = ACTIONS(2485), + [anon_sym_match] = ACTIONS(2485), + [anon_sym_RBRACE] = ACTIONS(2487), + [anon_sym_try] = ACTIONS(2485), + [anon_sym_catch] = ACTIONS(2485), + [anon_sym_return] = ACTIONS(2485), + [anon_sym_source] = ACTIONS(2485), + [anon_sym_source_DASHenv] = ACTIONS(2485), + [anon_sym_hide] = ACTIONS(2485), + [anon_sym_hide_DASHenv] = ACTIONS(2485), + [anon_sym_overlay] = ACTIONS(2485), + [anon_sym_as] = ACTIONS(2485), + [anon_sym_PLUS2] = ACTIONS(2485), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2487), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2487), + [aux_sym__val_number_decimal_token1] = ACTIONS(2485), + [aux_sym__val_number_decimal_token2] = ACTIONS(2487), + [aux_sym__val_number_decimal_token3] = ACTIONS(2487), + [aux_sym__val_number_decimal_token4] = ACTIONS(2487), + [aux_sym__val_number_token1] = ACTIONS(2487), + [aux_sym__val_number_token2] = ACTIONS(2487), + [aux_sym__val_number_token3] = ACTIONS(2487), + [aux_sym__val_number_token4] = ACTIONS(2485), + [aux_sym__val_number_token5] = ACTIONS(2485), + [aux_sym__val_number_token6] = ACTIONS(2485), + [anon_sym_DQUOTE] = ACTIONS(2487), + [sym__str_single_quotes] = ACTIONS(2487), + [sym__str_back_ticks] = ACTIONS(2487), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2487), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2487), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2487), + [anon_sym_register] = ACTIONS(2485), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2487), }, - [758] = { - [sym__match_pattern_expression] = STATE(3162), - [sym__match_pattern_value] = STATE(3176), - [sym__match_pattern_list] = STATE(3183), - [sym__match_pattern_rest] = STATE(7587), - [sym__match_pattern_record] = STATE(3151), - [sym_expr_parenthesized] = STATE(2829), - [sym__spread_parenthesized] = STATE(7448), - [sym_val_range] = STATE(3106), - [sym__val_range] = STATE(7851), - [sym__val_range_with_end] = STATE(7452), - [sym__value] = STATE(7451), - [sym_val_nothing] = STATE(3111), - [sym_val_bool] = STATE(2902), - [sym__spread_variable] = STATE(7454), - [sym_val_variable] = STATE(2830), - [sym_val_number] = STATE(3111), - [sym__val_number_decimal] = STATE(2491), - [sym__val_number] = STATE(3039), - [sym_val_duration] = STATE(3111), - [sym_val_filesize] = STATE(3111), - [sym_val_binary] = STATE(3111), - [sym_val_string] = STATE(3111), - [sym__raw_str] = STATE(3062), - [sym__str_double_quotes] = STATE(3062), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(7224), - [sym__spread_list] = STATE(7448), - [sym_list_body] = STATE(7633), - [sym_val_entry] = STATE(7036), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(3111), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_list] = STATE(2919), - [sym__unquoted_in_list_with_expr] = STATE(7451), - [sym__unquoted_anonymous_prefix] = STATE(6912), - [sym_comment] = STATE(758), - [aux_sym_shebang_repeat1] = STATE(881), - [aux_sym_parameter_repeat2] = STATE(6611), - [aux_sym__match_pattern_list_repeat1] = STATE(1248), - [aux_sym_list_body_repeat1] = STATE(940), - [sym__newline] = ACTIONS(2550), - [anon_sym_LBRACK] = ACTIONS(2552), - [anon_sym_RBRACK] = ACTIONS(2554), - [anon_sym_LPAREN] = ACTIONS(2556), - [anon_sym_COMMA] = ACTIONS(2558), - [anon_sym_DOLLAR] = ACTIONS(2560), - [anon_sym_LBRACE] = ACTIONS(2562), - [anon_sym_DOT_DOT] = ACTIONS(2564), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2566), - [anon_sym_DOT_DOT_LT] = ACTIONS(2566), - [anon_sym_null] = ACTIONS(2568), - [anon_sym_true] = ACTIONS(2570), - [anon_sym_false] = ACTIONS(2570), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(2572), - [aux_sym__val_number_decimal_token2] = ACTIONS(2574), - [aux_sym__val_number_decimal_token3] = ACTIONS(2576), - [aux_sym__val_number_decimal_token4] = ACTIONS(2578), - [aux_sym__val_number_token1] = ACTIONS(2580), - [aux_sym__val_number_token2] = ACTIONS(2580), - [aux_sym__val_number_token3] = ACTIONS(2580), - [aux_sym__val_number_token4] = ACTIONS(2582), - [aux_sym__val_number_token5] = ACTIONS(2582), - [aux_sym__val_number_token6] = ACTIONS(2582), - [anon_sym_0b] = ACTIONS(2584), - [anon_sym_0o] = ACTIONS(2586), - [anon_sym_0x] = ACTIONS(2586), - [sym_val_date] = ACTIONS(2588), - [anon_sym_DQUOTE] = ACTIONS(2590), - [sym__str_single_quotes] = ACTIONS(2592), - [sym__str_back_ticks] = ACTIONS(2592), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2596), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2604), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2606), + [747] = { + [sym_comment] = STATE(747), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [aux_sym_cmd_identifier_token1] = ACTIONS(1002), + [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(1002), + [aux_sym_cmd_identifier_token9] = ACTIONS(1002), + [aux_sym_cmd_identifier_token10] = ACTIONS(998), + [aux_sym_cmd_identifier_token11] = ACTIONS(998), + [aux_sym_cmd_identifier_token12] = ACTIONS(1002), + [aux_sym_cmd_identifier_token13] = ACTIONS(1002), + [aux_sym_cmd_identifier_token14] = ACTIONS(1002), + [aux_sym_cmd_identifier_token15] = ACTIONS(1002), + [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(1002), + [aux_sym_cmd_identifier_token35] = ACTIONS(998), + [aux_sym_cmd_identifier_token36] = ACTIONS(998), + [aux_sym_cmd_identifier_token37] = ACTIONS(998), + [aux_sym_cmd_identifier_token38] = ACTIONS(1002), + [aux_sym_cmd_identifier_token39] = ACTIONS(998), + [aux_sym_cmd_identifier_token40] = ACTIONS(998), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_COMMA] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in2] = ACTIONS(1002), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_make] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_else] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(998), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_catch] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_as] = ACTIONS(1002), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(998), + [aux_sym__val_number_decimal_token1] = ACTIONS(1002), + [aux_sym__val_number_decimal_token2] = ACTIONS(998), + [aux_sym__val_number_decimal_token3] = ACTIONS(998), + [aux_sym__val_number_decimal_token4] = ACTIONS(998), + [aux_sym__val_number_token1] = ACTIONS(998), + [aux_sym__val_number_token2] = ACTIONS(998), + [aux_sym__val_number_token3] = ACTIONS(998), + [aux_sym__val_number_token4] = ACTIONS(1002), + [aux_sym__val_number_token5] = ACTIONS(1002), + [aux_sym__val_number_token6] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym__str_single_quotes] = ACTIONS(998), + [sym__str_back_ticks] = ACTIONS(998), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(998), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(998), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(998), }, - [759] = { - [sym_comment] = STATE(759), - [aux_sym_shebang_repeat1] = STATE(759), - [aux_sym_cmd_identifier_token1] = ACTIONS(1296), - [aux_sym_cmd_identifier_token2] = ACTIONS(1298), - [aux_sym_cmd_identifier_token3] = ACTIONS(1298), - [aux_sym_cmd_identifier_token4] = ACTIONS(1298), - [aux_sym_cmd_identifier_token5] = ACTIONS(1298), - [aux_sym_cmd_identifier_token6] = ACTIONS(1298), - [aux_sym_cmd_identifier_token7] = ACTIONS(1298), - [aux_sym_cmd_identifier_token8] = ACTIONS(1298), - [aux_sym_cmd_identifier_token9] = ACTIONS(1296), - [aux_sym_cmd_identifier_token10] = ACTIONS(1298), - [aux_sym_cmd_identifier_token11] = ACTIONS(1298), - [aux_sym_cmd_identifier_token12] = ACTIONS(1298), - [aux_sym_cmd_identifier_token13] = ACTIONS(1296), - [aux_sym_cmd_identifier_token14] = ACTIONS(1298), - [aux_sym_cmd_identifier_token15] = ACTIONS(1296), - [aux_sym_cmd_identifier_token16] = ACTIONS(1298), - [aux_sym_cmd_identifier_token17] = ACTIONS(1298), - [aux_sym_cmd_identifier_token18] = ACTIONS(1296), - [aux_sym_cmd_identifier_token19] = ACTIONS(1298), - [aux_sym_cmd_identifier_token20] = ACTIONS(1298), - [aux_sym_cmd_identifier_token21] = ACTIONS(1298), - [aux_sym_cmd_identifier_token22] = ACTIONS(1298), - [aux_sym_cmd_identifier_token23] = ACTIONS(1298), - [aux_sym_cmd_identifier_token24] = ACTIONS(1298), - [aux_sym_cmd_identifier_token25] = ACTIONS(1298), - [aux_sym_cmd_identifier_token26] = ACTIONS(1298), - [aux_sym_cmd_identifier_token27] = ACTIONS(1298), - [aux_sym_cmd_identifier_token28] = ACTIONS(1298), - [aux_sym_cmd_identifier_token29] = ACTIONS(1298), - [aux_sym_cmd_identifier_token30] = ACTIONS(1298), - [aux_sym_cmd_identifier_token31] = ACTIONS(1298), - [aux_sym_cmd_identifier_token32] = ACTIONS(1296), - [aux_sym_cmd_identifier_token33] = ACTIONS(1298), - [aux_sym_cmd_identifier_token34] = ACTIONS(1296), - [aux_sym_cmd_identifier_token35] = ACTIONS(1298), - [aux_sym_cmd_identifier_token36] = ACTIONS(1298), - [aux_sym_cmd_identifier_token37] = ACTIONS(1298), - [aux_sym_cmd_identifier_token38] = ACTIONS(1296), - [aux_sym_cmd_identifier_token39] = ACTIONS(1298), - [aux_sym_cmd_identifier_token40] = ACTIONS(1298), - [sym__newline] = ACTIONS(2608), - [anon_sym_PIPE] = ACTIONS(1298), - [anon_sym_err_GT_PIPE] = ACTIONS(1298), - [anon_sym_out_GT_PIPE] = ACTIONS(1298), - [anon_sym_e_GT_PIPE] = ACTIONS(1298), - [anon_sym_o_GT_PIPE] = ACTIONS(1298), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1298), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1298), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1298), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1298), - [anon_sym_LBRACK] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1298), - [anon_sym_DOLLAR] = ACTIONS(1296), - [anon_sym_DASH2] = ACTIONS(1296), - [anon_sym_break] = ACTIONS(1296), - [anon_sym_continue] = ACTIONS(1296), - [anon_sym_do] = ACTIONS(1296), - [anon_sym_if] = ACTIONS(1296), - [anon_sym_match] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_DOT_DOT] = ACTIONS(1296), - [anon_sym_try] = ACTIONS(1296), - [anon_sym_return] = ACTIONS(1296), - [anon_sym_where] = ACTIONS(1298), - [aux_sym_expr_unary_token1] = ACTIONS(1298), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1298), - [anon_sym_DOT_DOT_LT] = ACTIONS(1298), - [anon_sym_null] = ACTIONS(1296), - [anon_sym_true] = ACTIONS(1296), - [anon_sym_false] = ACTIONS(1296), - [aux_sym__val_number_decimal_token1] = ACTIONS(1296), - [aux_sym__val_number_decimal_token2] = ACTIONS(1298), - [aux_sym__val_number_decimal_token3] = ACTIONS(1298), - [aux_sym__val_number_decimal_token4] = ACTIONS(1298), - [aux_sym__val_number_token1] = ACTIONS(1298), - [aux_sym__val_number_token2] = ACTIONS(1298), - [aux_sym__val_number_token3] = ACTIONS(1298), - [aux_sym__val_number_token4] = ACTIONS(1296), - [aux_sym__val_number_token5] = ACTIONS(1296), - [aux_sym__val_number_token6] = ACTIONS(1296), - [anon_sym_0b] = ACTIONS(1296), - [anon_sym_0o] = ACTIONS(1296), - [anon_sym_0x] = ACTIONS(1296), - [sym_val_date] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1298), - [sym__str_single_quotes] = ACTIONS(1298), - [sym__str_back_ticks] = ACTIONS(1298), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1298), - [aux_sym_env_var_token1] = ACTIONS(1296), - [anon_sym_CARET] = ACTIONS(1298), - [aux_sym_command_token1] = ACTIONS(1298), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1298), + [748] = { + [sym_comment] = STATE(748), + [anon_sym_export] = ACTIONS(1961), + [anon_sym_alias] = ACTIONS(1961), + [anon_sym_let] = ACTIONS(1961), + [anon_sym_let_DASHenv] = ACTIONS(1961), + [anon_sym_mut] = ACTIONS(1961), + [anon_sym_const] = ACTIONS(1961), + [aux_sym_cmd_identifier_token1] = ACTIONS(1961), + [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(1961), + [aux_sym_cmd_identifier_token9] = ACTIONS(1961), + [aux_sym_cmd_identifier_token10] = ACTIONS(1963), + [aux_sym_cmd_identifier_token11] = ACTIONS(1963), + [aux_sym_cmd_identifier_token12] = ACTIONS(1961), + [aux_sym_cmd_identifier_token13] = ACTIONS(1961), + [aux_sym_cmd_identifier_token14] = ACTIONS(1961), + [aux_sym_cmd_identifier_token15] = ACTIONS(1961), + [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(1961), + [aux_sym_cmd_identifier_token35] = ACTIONS(1963), + [aux_sym_cmd_identifier_token36] = ACTIONS(1963), + [aux_sym_cmd_identifier_token37] = ACTIONS(1963), + [aux_sym_cmd_identifier_token38] = ACTIONS(1961), + [aux_sym_cmd_identifier_token39] = ACTIONS(1963), + [aux_sym_cmd_identifier_token40] = ACTIONS(1963), + [anon_sym_def] = ACTIONS(1961), + [anon_sym_export_DASHenv] = ACTIONS(1961), + [anon_sym_extern] = ACTIONS(1961), + [anon_sym_module] = ACTIONS(1961), + [anon_sym_use] = ACTIONS(1961), + [anon_sym_LPAREN] = ACTIONS(1963), + [anon_sym_COMMA] = ACTIONS(1963), + [anon_sym_DOLLAR] = ACTIONS(1961), + [anon_sym_error] = ACTIONS(1961), + [anon_sym_DASH2] = ACTIONS(1961), + [anon_sym_break] = ACTIONS(1961), + [anon_sym_continue] = ACTIONS(1961), + [anon_sym_for] = ACTIONS(1961), + [anon_sym_in2] = ACTIONS(1961), + [anon_sym_loop] = ACTIONS(1961), + [anon_sym_make] = ACTIONS(1961), + [anon_sym_while] = ACTIONS(1961), + [anon_sym_do] = ACTIONS(1961), + [anon_sym_if] = ACTIONS(1961), + [anon_sym_else] = ACTIONS(1961), + [anon_sym_match] = ACTIONS(1961), + [anon_sym_RBRACE] = ACTIONS(1963), + [anon_sym_try] = ACTIONS(1961), + [anon_sym_catch] = ACTIONS(1961), + [anon_sym_return] = ACTIONS(1961), + [anon_sym_source] = ACTIONS(1961), + [anon_sym_source_DASHenv] = ACTIONS(1961), + [anon_sym_hide] = ACTIONS(1961), + [anon_sym_hide_DASHenv] = ACTIONS(1961), + [anon_sym_overlay] = ACTIONS(1961), + [anon_sym_as] = ACTIONS(1961), + [anon_sym_PLUS2] = ACTIONS(1961), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1963), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1963), + [aux_sym__val_number_decimal_token4] = ACTIONS(1963), + [aux_sym__val_number_token1] = ACTIONS(1963), + [aux_sym__val_number_token2] = ACTIONS(1963), + [aux_sym__val_number_token3] = ACTIONS(1963), + [aux_sym__val_number_token4] = ACTIONS(1961), + [aux_sym__val_number_token5] = ACTIONS(1961), + [aux_sym__val_number_token6] = ACTIONS(1961), + [anon_sym_DQUOTE] = ACTIONS(1963), + [sym__str_single_quotes] = ACTIONS(1963), + [sym__str_back_ticks] = ACTIONS(1963), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1963), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1963), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1963), + [anon_sym_register] = ACTIONS(1961), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1963), }, - [760] = { - [sym__match_pattern_expression] = STATE(3162), - [sym__match_pattern_value] = STATE(3176), - [sym__match_pattern_list] = STATE(3183), - [sym__match_pattern_rest] = STATE(7587), - [sym__match_pattern_record] = STATE(3151), - [sym_expr_parenthesized] = STATE(2829), - [sym__spread_parenthesized] = STATE(7448), - [sym_val_range] = STATE(3106), - [sym__val_range] = STATE(7851), - [sym__val_range_with_end] = STATE(7452), - [sym__value] = STATE(7451), - [sym_val_nothing] = STATE(3111), - [sym_val_bool] = STATE(2902), - [sym__spread_variable] = STATE(7454), - [sym_val_variable] = STATE(2830), - [sym_val_number] = STATE(3111), - [sym__val_number_decimal] = STATE(2491), - [sym__val_number] = STATE(3039), - [sym_val_duration] = STATE(3111), - [sym_val_filesize] = STATE(3111), - [sym_val_binary] = STATE(3111), - [sym_val_string] = STATE(3111), - [sym__raw_str] = STATE(3062), - [sym__str_double_quotes] = STATE(3062), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(7248), - [sym__spread_list] = STATE(7448), - [sym_list_body] = STATE(7550), - [sym_val_entry] = STATE(7036), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(3111), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_list] = STATE(2919), - [sym__unquoted_in_list_with_expr] = STATE(7451), - [sym__unquoted_anonymous_prefix] = STATE(6912), - [sym_comment] = STATE(760), - [aux_sym_shebang_repeat1] = STATE(884), - [aux_sym_parameter_repeat2] = STATE(6611), - [aux_sym__match_pattern_list_repeat1] = STATE(1248), - [aux_sym_list_body_repeat1] = STATE(940), - [sym__newline] = ACTIONS(2550), - [anon_sym_LBRACK] = ACTIONS(2552), - [anon_sym_RBRACK] = ACTIONS(2611), - [anon_sym_LPAREN] = ACTIONS(2556), - [anon_sym_COMMA] = ACTIONS(2558), - [anon_sym_DOLLAR] = ACTIONS(2560), - [anon_sym_LBRACE] = ACTIONS(2562), - [anon_sym_DOT_DOT] = ACTIONS(2564), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2566), - [anon_sym_DOT_DOT_LT] = ACTIONS(2566), - [anon_sym_null] = ACTIONS(2568), - [anon_sym_true] = ACTIONS(2570), - [anon_sym_false] = ACTIONS(2570), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(2572), - [aux_sym__val_number_decimal_token2] = ACTIONS(2574), - [aux_sym__val_number_decimal_token3] = ACTIONS(2576), - [aux_sym__val_number_decimal_token4] = ACTIONS(2578), - [aux_sym__val_number_token1] = ACTIONS(2580), - [aux_sym__val_number_token2] = ACTIONS(2580), - [aux_sym__val_number_token3] = ACTIONS(2580), - [aux_sym__val_number_token4] = ACTIONS(2582), - [aux_sym__val_number_token5] = ACTIONS(2582), - [aux_sym__val_number_token6] = ACTIONS(2582), - [anon_sym_0b] = ACTIONS(2584), - [anon_sym_0o] = ACTIONS(2586), - [anon_sym_0x] = ACTIONS(2586), - [sym_val_date] = ACTIONS(2588), - [anon_sym_DQUOTE] = ACTIONS(2590), - [sym__str_single_quotes] = ACTIONS(2592), - [sym__str_back_ticks] = ACTIONS(2592), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2596), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2604), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2606), + [749] = { + [sym_comment] = STATE(749), + [anon_sym_export] = ACTIONS(1861), + [anon_sym_alias] = ACTIONS(1861), + [anon_sym_let] = ACTIONS(1861), + [anon_sym_let_DASHenv] = ACTIONS(1861), + [anon_sym_mut] = ACTIONS(1861), + [anon_sym_const] = ACTIONS(1861), + [aux_sym_cmd_identifier_token1] = ACTIONS(1861), + [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(1861), + [aux_sym_cmd_identifier_token9] = ACTIONS(1861), + [aux_sym_cmd_identifier_token10] = ACTIONS(1863), + [aux_sym_cmd_identifier_token11] = ACTIONS(1863), + [aux_sym_cmd_identifier_token12] = ACTIONS(1861), + [aux_sym_cmd_identifier_token13] = ACTIONS(1861), + [aux_sym_cmd_identifier_token14] = ACTIONS(1861), + [aux_sym_cmd_identifier_token15] = ACTIONS(1861), + [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(1861), + [aux_sym_cmd_identifier_token35] = ACTIONS(1863), + [aux_sym_cmd_identifier_token36] = ACTIONS(1863), + [aux_sym_cmd_identifier_token37] = ACTIONS(1863), + [aux_sym_cmd_identifier_token38] = ACTIONS(1861), + [aux_sym_cmd_identifier_token39] = ACTIONS(1863), + [aux_sym_cmd_identifier_token40] = ACTIONS(1863), + [anon_sym_def] = ACTIONS(1861), + [anon_sym_export_DASHenv] = ACTIONS(1861), + [anon_sym_extern] = ACTIONS(1861), + [anon_sym_module] = ACTIONS(1861), + [anon_sym_use] = ACTIONS(1861), + [anon_sym_LPAREN] = ACTIONS(1863), + [anon_sym_COMMA] = ACTIONS(1863), + [anon_sym_DOLLAR] = ACTIONS(1861), + [anon_sym_error] = ACTIONS(1861), + [anon_sym_DASH2] = ACTIONS(1861), + [anon_sym_break] = ACTIONS(1861), + [anon_sym_continue] = ACTIONS(1861), + [anon_sym_for] = ACTIONS(1861), + [anon_sym_in2] = ACTIONS(1861), + [anon_sym_loop] = ACTIONS(1861), + [anon_sym_make] = ACTIONS(1861), + [anon_sym_while] = ACTIONS(1861), + [anon_sym_do] = ACTIONS(1861), + [anon_sym_if] = ACTIONS(1861), + [anon_sym_else] = ACTIONS(1861), + [anon_sym_match] = ACTIONS(1861), + [anon_sym_RBRACE] = ACTIONS(1863), + [anon_sym_try] = ACTIONS(1861), + [anon_sym_catch] = ACTIONS(1861), + [anon_sym_return] = ACTIONS(1861), + [anon_sym_source] = ACTIONS(1861), + [anon_sym_source_DASHenv] = ACTIONS(1861), + [anon_sym_hide] = ACTIONS(1861), + [anon_sym_hide_DASHenv] = ACTIONS(1861), + [anon_sym_overlay] = ACTIONS(1861), + [anon_sym_as] = ACTIONS(1861), + [anon_sym_PLUS2] = ACTIONS(1861), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1863), + [aux_sym__val_number_decimal_token1] = ACTIONS(1861), + [aux_sym__val_number_decimal_token2] = 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), + [aux_sym__val_number_token4] = ACTIONS(1861), + [aux_sym__val_number_token5] = ACTIONS(1861), + [aux_sym__val_number_token6] = ACTIONS(1861), + [anon_sym_DQUOTE] = ACTIONS(1863), + [sym__str_single_quotes] = ACTIONS(1863), + [sym__str_back_ticks] = ACTIONS(1863), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1863), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1863), + [anon_sym_register] = ACTIONS(1861), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1863), }, - [761] = { - [sym_expr_parenthesized] = STATE(1584), - [sym_val_range] = STATE(1857), - [sym__val_range] = STATE(7834), - [sym__val_range_with_end] = STATE(7414), - [sym__value] = STATE(1857), - [sym_val_nothing] = STATE(1798), - [sym_val_bool] = STATE(1575), - [sym_val_variable] = STATE(1529), - [sym_val_number] = STATE(1798), - [sym__val_number_decimal] = STATE(1259), - [sym__val_number] = STATE(1706), - [sym_val_duration] = STATE(1798), - [sym_val_filesize] = STATE(1798), - [sym_val_binary] = STATE(1798), - [sym_val_string] = STATE(1798), - [sym__raw_str] = STATE(1731), - [sym__str_double_quotes] = STATE(1731), - [sym_val_interpolated] = STATE(1798), - [sym__inter_single_quotes] = STATE(1778), - [sym__inter_double_quotes] = STATE(1780), - [sym_val_list] = STATE(1798), - [sym_val_record] = STATE(1798), - [sym_val_table] = STATE(1798), - [sym_val_closure] = STATE(1798), - [sym__flag] = STATE(1857), - [sym_short_flag] = STATE(1765), - [sym_long_flag] = STATE(1765), - [sym_unquoted] = STATE(1663), - [sym__unquoted_with_expr] = STATE(1859), - [sym__unquoted_anonymous_prefix] = STATE(6713), - [sym_comment] = STATE(761), - [aux_sym_shebang_repeat1] = STATE(1049), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(766), - [sym__newline] = ACTIONS(2613), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_PIPE] = ACTIONS(2616), - [anon_sym_err_GT_PIPE] = ACTIONS(2616), - [anon_sym_out_GT_PIPE] = ACTIONS(2616), - [anon_sym_e_GT_PIPE] = ACTIONS(2616), - [anon_sym_o_GT_PIPE] = ACTIONS(2616), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2616), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2616), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2616), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2618), - [anon_sym_LPAREN] = ACTIONS(2620), - [anon_sym_RPAREN] = ACTIONS(2616), - [anon_sym_DOLLAR] = ACTIONS(2622), - [anon_sym_DASH_DASH] = ACTIONS(2624), - [anon_sym_DASH2] = ACTIONS(2626), - [anon_sym_LBRACE] = ACTIONS(2628), - [anon_sym_DOT_DOT] = ACTIONS(2630), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2632), - [anon_sym_DOT_DOT_LT] = ACTIONS(2632), - [anon_sym_null] = ACTIONS(2634), - [anon_sym_true] = ACTIONS(2636), - [anon_sym_false] = ACTIONS(2636), - [aux_sym__val_number_decimal_token1] = ACTIONS(2638), - [aux_sym__val_number_decimal_token2] = ACTIONS(2640), - [aux_sym__val_number_decimal_token3] = ACTIONS(2642), - [aux_sym__val_number_decimal_token4] = ACTIONS(2644), - [aux_sym__val_number_token1] = ACTIONS(2646), - [aux_sym__val_number_token2] = ACTIONS(2646), - [aux_sym__val_number_token3] = ACTIONS(2646), - [aux_sym__val_number_token4] = ACTIONS(2648), - [aux_sym__val_number_token5] = ACTIONS(2648), - [aux_sym__val_number_token6] = ACTIONS(2648), - [anon_sym_0b] = ACTIONS(2650), - [anon_sym_0o] = ACTIONS(2652), - [anon_sym_0x] = ACTIONS(2652), - [sym_val_date] = ACTIONS(2654), - [anon_sym_DQUOTE] = ACTIONS(2656), - [sym__str_single_quotes] = ACTIONS(2658), - [sym__str_back_ticks] = ACTIONS(2658), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2660), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2662), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(2668), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2670), + [750] = { + [sym_comment] = STATE(750), + [anon_sym_export] = ACTIONS(946), + [anon_sym_alias] = ACTIONS(946), + [anon_sym_let] = ACTIONS(946), + [anon_sym_let_DASHenv] = ACTIONS(946), + [anon_sym_mut] = ACTIONS(946), + [anon_sym_const] = ACTIONS(946), + [aux_sym_cmd_identifier_token1] = ACTIONS(946), + [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(946), + [aux_sym_cmd_identifier_token9] = ACTIONS(946), + [aux_sym_cmd_identifier_token10] = ACTIONS(948), + [aux_sym_cmd_identifier_token11] = ACTIONS(948), + [aux_sym_cmd_identifier_token12] = ACTIONS(946), + [aux_sym_cmd_identifier_token13] = ACTIONS(946), + [aux_sym_cmd_identifier_token14] = ACTIONS(946), + [aux_sym_cmd_identifier_token15] = ACTIONS(946), + [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(946), + [aux_sym_cmd_identifier_token35] = ACTIONS(948), + [aux_sym_cmd_identifier_token36] = ACTIONS(948), + [aux_sym_cmd_identifier_token37] = ACTIONS(948), + [aux_sym_cmd_identifier_token38] = ACTIONS(946), + [aux_sym_cmd_identifier_token39] = ACTIONS(948), + [aux_sym_cmd_identifier_token40] = ACTIONS(948), + [anon_sym_def] = ACTIONS(946), + [anon_sym_export_DASHenv] = ACTIONS(946), + [anon_sym_extern] = ACTIONS(946), + [anon_sym_module] = ACTIONS(946), + [anon_sym_use] = ACTIONS(946), + [anon_sym_LPAREN] = ACTIONS(948), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_DOLLAR] = ACTIONS(946), + [anon_sym_error] = ACTIONS(946), + [anon_sym_DASH2] = ACTIONS(946), + [anon_sym_break] = ACTIONS(946), + [anon_sym_continue] = ACTIONS(946), + [anon_sym_for] = ACTIONS(946), + [anon_sym_in2] = ACTIONS(946), + [anon_sym_loop] = ACTIONS(946), + [anon_sym_make] = ACTIONS(946), + [anon_sym_while] = ACTIONS(946), + [anon_sym_do] = ACTIONS(946), + [anon_sym_if] = ACTIONS(946), + [anon_sym_else] = ACTIONS(946), + [anon_sym_match] = ACTIONS(946), + [anon_sym_RBRACE] = ACTIONS(948), + [anon_sym_try] = ACTIONS(946), + [anon_sym_catch] = ACTIONS(946), + [anon_sym_return] = ACTIONS(946), + [anon_sym_source] = ACTIONS(946), + [anon_sym_source_DASHenv] = ACTIONS(946), + [anon_sym_hide] = ACTIONS(946), + [anon_sym_hide_DASHenv] = ACTIONS(946), + [anon_sym_overlay] = ACTIONS(946), + [anon_sym_as] = ACTIONS(946), + [anon_sym_PLUS2] = ACTIONS(946), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(948), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(948), + [aux_sym__val_number_decimal_token1] = ACTIONS(946), + [aux_sym__val_number_decimal_token2] = ACTIONS(948), + [aux_sym__val_number_decimal_token3] = ACTIONS(948), + [aux_sym__val_number_decimal_token4] = ACTIONS(948), + [aux_sym__val_number_token1] = ACTIONS(948), + [aux_sym__val_number_token2] = ACTIONS(948), + [aux_sym__val_number_token3] = ACTIONS(948), + [aux_sym__val_number_token4] = ACTIONS(946), + [aux_sym__val_number_token5] = ACTIONS(946), + [aux_sym__val_number_token6] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(948), + [sym__str_single_quotes] = ACTIONS(948), + [sym__str_back_ticks] = ACTIONS(948), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(948), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(948), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(948), + [anon_sym_register] = ACTIONS(946), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(948), }, - [762] = { - [sym_expr_parenthesized] = STATE(1584), - [sym_val_range] = STATE(1857), - [sym__val_range] = STATE(7834), - [sym__val_range_with_end] = STATE(7414), - [sym__value] = STATE(1857), - [sym_val_nothing] = STATE(1798), - [sym_val_bool] = STATE(1575), - [sym_val_variable] = STATE(1529), - [sym_val_number] = STATE(1798), - [sym__val_number_decimal] = STATE(1259), - [sym__val_number] = STATE(1706), - [sym_val_duration] = STATE(1798), - [sym_val_filesize] = STATE(1798), - [sym_val_binary] = STATE(1798), - [sym_val_string] = STATE(1798), - [sym__raw_str] = STATE(1731), - [sym__str_double_quotes] = STATE(1731), - [sym_val_interpolated] = STATE(1798), - [sym__inter_single_quotes] = STATE(1778), - [sym__inter_double_quotes] = STATE(1780), - [sym_val_list] = STATE(1798), - [sym_val_record] = STATE(1798), - [sym_val_table] = STATE(1798), - [sym_val_closure] = STATE(1798), - [sym__flag] = STATE(1857), - [sym_short_flag] = STATE(1765), - [sym_long_flag] = STATE(1765), - [sym_unquoted] = STATE(1663), - [sym__unquoted_with_expr] = STATE(1859), - [sym__unquoted_anonymous_prefix] = STATE(6713), - [sym_comment] = STATE(762), - [aux_sym_shebang_repeat1] = STATE(1049), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(762), - [sym__newline] = ACTIONS(2672), - [anon_sym_SEMI] = ACTIONS(2675), - [anon_sym_PIPE] = ACTIONS(2675), - [anon_sym_err_GT_PIPE] = ACTIONS(2675), - [anon_sym_out_GT_PIPE] = ACTIONS(2675), - [anon_sym_e_GT_PIPE] = ACTIONS(2675), - [anon_sym_o_GT_PIPE] = ACTIONS(2675), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2675), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2675), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2675), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2675), - [anon_sym_LBRACK] = ACTIONS(2677), - [anon_sym_LPAREN] = ACTIONS(2680), - [anon_sym_RPAREN] = ACTIONS(2675), - [anon_sym_DOLLAR] = ACTIONS(2683), - [anon_sym_DASH_DASH] = ACTIONS(2686), - [anon_sym_DASH2] = ACTIONS(2689), - [anon_sym_LBRACE] = ACTIONS(2692), - [anon_sym_DOT_DOT] = ACTIONS(2695), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2698), - [anon_sym_DOT_DOT_LT] = ACTIONS(2698), - [anon_sym_null] = ACTIONS(2701), - [anon_sym_true] = ACTIONS(2704), - [anon_sym_false] = ACTIONS(2704), - [aux_sym__val_number_decimal_token1] = ACTIONS(2707), - [aux_sym__val_number_decimal_token2] = ACTIONS(2710), - [aux_sym__val_number_decimal_token3] = ACTIONS(2713), - [aux_sym__val_number_decimal_token4] = ACTIONS(2716), - [aux_sym__val_number_token1] = ACTIONS(2719), - [aux_sym__val_number_token2] = ACTIONS(2719), - [aux_sym__val_number_token3] = ACTIONS(2719), - [aux_sym__val_number_token4] = ACTIONS(2722), - [aux_sym__val_number_token5] = ACTIONS(2722), - [aux_sym__val_number_token6] = ACTIONS(2722), - [anon_sym_0b] = ACTIONS(2725), - [anon_sym_0o] = ACTIONS(2728), - [anon_sym_0x] = ACTIONS(2728), - [sym_val_date] = ACTIONS(2731), - [anon_sym_DQUOTE] = ACTIONS(2734), - [sym__str_single_quotes] = ACTIONS(2737), - [sym__str_back_ticks] = ACTIONS(2737), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2740), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2743), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2749), - [anon_sym_out_GT_GT] = ACTIONS(2749), - [anon_sym_e_GT_GT] = ACTIONS(2749), - [anon_sym_o_GT_GT] = ACTIONS(2749), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2749), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2749), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2749), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2749), - [aux_sym_unquoted_token1] = ACTIONS(2752), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2755), + [751] = { + [sym_comment] = STATE(751), + [anon_sym_export] = ACTIONS(2489), + [anon_sym_alias] = ACTIONS(2489), + [anon_sym_let] = ACTIONS(2489), + [anon_sym_let_DASHenv] = ACTIONS(2489), + [anon_sym_mut] = ACTIONS(2489), + [anon_sym_const] = ACTIONS(2489), + [aux_sym_cmd_identifier_token1] = ACTIONS(2489), + [aux_sym_cmd_identifier_token2] = ACTIONS(2491), + [aux_sym_cmd_identifier_token3] = ACTIONS(2491), + [aux_sym_cmd_identifier_token4] = ACTIONS(2491), + [aux_sym_cmd_identifier_token5] = ACTIONS(2491), + [aux_sym_cmd_identifier_token6] = ACTIONS(2491), + [aux_sym_cmd_identifier_token7] = ACTIONS(2491), + [aux_sym_cmd_identifier_token8] = ACTIONS(2489), + [aux_sym_cmd_identifier_token9] = ACTIONS(2489), + [aux_sym_cmd_identifier_token10] = ACTIONS(2491), + [aux_sym_cmd_identifier_token11] = ACTIONS(2491), + [aux_sym_cmd_identifier_token12] = ACTIONS(2489), + [aux_sym_cmd_identifier_token13] = ACTIONS(2489), + [aux_sym_cmd_identifier_token14] = ACTIONS(2489), + [aux_sym_cmd_identifier_token15] = ACTIONS(2489), + [aux_sym_cmd_identifier_token16] = ACTIONS(2491), + [aux_sym_cmd_identifier_token17] = ACTIONS(2491), + [aux_sym_cmd_identifier_token18] = ACTIONS(2491), + [aux_sym_cmd_identifier_token19] = ACTIONS(2491), + [aux_sym_cmd_identifier_token20] = ACTIONS(2491), + [aux_sym_cmd_identifier_token21] = ACTIONS(2491), + [aux_sym_cmd_identifier_token22] = ACTIONS(2491), + [aux_sym_cmd_identifier_token23] = ACTIONS(2491), + [aux_sym_cmd_identifier_token24] = ACTIONS(2491), + [aux_sym_cmd_identifier_token25] = ACTIONS(2491), + [aux_sym_cmd_identifier_token26] = ACTIONS(2491), + [aux_sym_cmd_identifier_token27] = ACTIONS(2491), + [aux_sym_cmd_identifier_token28] = ACTIONS(2491), + [aux_sym_cmd_identifier_token29] = ACTIONS(2491), + [aux_sym_cmd_identifier_token30] = ACTIONS(2491), + [aux_sym_cmd_identifier_token31] = ACTIONS(2491), + [aux_sym_cmd_identifier_token32] = ACTIONS(2491), + [aux_sym_cmd_identifier_token33] = ACTIONS(2491), + [aux_sym_cmd_identifier_token34] = ACTIONS(2489), + [aux_sym_cmd_identifier_token35] = ACTIONS(2491), + [aux_sym_cmd_identifier_token36] = ACTIONS(2491), + [aux_sym_cmd_identifier_token37] = ACTIONS(2491), + [aux_sym_cmd_identifier_token38] = ACTIONS(2489), + [aux_sym_cmd_identifier_token39] = ACTIONS(2491), + [aux_sym_cmd_identifier_token40] = ACTIONS(2491), + [anon_sym_def] = ACTIONS(2489), + [anon_sym_export_DASHenv] = ACTIONS(2489), + [anon_sym_extern] = ACTIONS(2489), + [anon_sym_module] = ACTIONS(2489), + [anon_sym_use] = ACTIONS(2489), + [anon_sym_LPAREN] = ACTIONS(2491), + [anon_sym_COMMA] = ACTIONS(2491), + [anon_sym_DOLLAR] = ACTIONS(2489), + [anon_sym_error] = ACTIONS(2489), + [anon_sym_DASH2] = ACTIONS(2489), + [anon_sym_break] = ACTIONS(2489), + [anon_sym_continue] = ACTIONS(2489), + [anon_sym_for] = ACTIONS(2489), + [anon_sym_in2] = ACTIONS(2489), + [anon_sym_loop] = ACTIONS(2489), + [anon_sym_make] = ACTIONS(2489), + [anon_sym_while] = ACTIONS(2489), + [anon_sym_do] = ACTIONS(2489), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_else] = ACTIONS(2489), + [anon_sym_match] = ACTIONS(2489), + [anon_sym_RBRACE] = ACTIONS(2491), + [anon_sym_try] = ACTIONS(2489), + [anon_sym_catch] = ACTIONS(2489), + [anon_sym_return] = ACTIONS(2489), + [anon_sym_source] = ACTIONS(2489), + [anon_sym_source_DASHenv] = ACTIONS(2489), + [anon_sym_hide] = ACTIONS(2489), + [anon_sym_hide_DASHenv] = ACTIONS(2489), + [anon_sym_overlay] = ACTIONS(2489), + [anon_sym_as] = ACTIONS(2489), + [anon_sym_PLUS2] = ACTIONS(2489), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2491), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2491), + [aux_sym__val_number_decimal_token1] = ACTIONS(2489), + [aux_sym__val_number_decimal_token2] = ACTIONS(2491), + [aux_sym__val_number_decimal_token3] = ACTIONS(2491), + [aux_sym__val_number_decimal_token4] = ACTIONS(2491), + [aux_sym__val_number_token1] = ACTIONS(2491), + [aux_sym__val_number_token2] = ACTIONS(2491), + [aux_sym__val_number_token3] = ACTIONS(2491), + [aux_sym__val_number_token4] = ACTIONS(2489), + [aux_sym__val_number_token5] = ACTIONS(2489), + [aux_sym__val_number_token6] = ACTIONS(2489), + [anon_sym_DQUOTE] = ACTIONS(2491), + [sym__str_single_quotes] = ACTIONS(2491), + [sym__str_back_ticks] = ACTIONS(2491), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2491), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2491), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2491), + [anon_sym_register] = ACTIONS(2489), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2491), + }, + [752] = { + [sym_comment] = STATE(752), + [anon_sym_export] = ACTIONS(2502), + [anon_sym_alias] = ACTIONS(2502), + [anon_sym_let] = ACTIONS(2502), + [anon_sym_let_DASHenv] = ACTIONS(2502), + [anon_sym_mut] = ACTIONS(2502), + [anon_sym_const] = ACTIONS(2502), + [aux_sym_cmd_identifier_token1] = ACTIONS(2502), + [aux_sym_cmd_identifier_token2] = ACTIONS(2504), + [aux_sym_cmd_identifier_token3] = ACTIONS(2504), + [aux_sym_cmd_identifier_token4] = ACTIONS(2504), + [aux_sym_cmd_identifier_token5] = ACTIONS(2504), + [aux_sym_cmd_identifier_token6] = ACTIONS(2504), + [aux_sym_cmd_identifier_token7] = ACTIONS(2504), + [aux_sym_cmd_identifier_token8] = ACTIONS(2502), + [aux_sym_cmd_identifier_token9] = ACTIONS(2502), + [aux_sym_cmd_identifier_token10] = ACTIONS(2504), + [aux_sym_cmd_identifier_token11] = ACTIONS(2504), + [aux_sym_cmd_identifier_token12] = ACTIONS(2502), + [aux_sym_cmd_identifier_token13] = ACTIONS(2502), + [aux_sym_cmd_identifier_token14] = ACTIONS(2502), + [aux_sym_cmd_identifier_token15] = ACTIONS(2502), + [aux_sym_cmd_identifier_token16] = ACTIONS(2504), + [aux_sym_cmd_identifier_token17] = ACTIONS(2504), + [aux_sym_cmd_identifier_token18] = ACTIONS(2504), + [aux_sym_cmd_identifier_token19] = ACTIONS(2504), + [aux_sym_cmd_identifier_token20] = ACTIONS(2504), + [aux_sym_cmd_identifier_token21] = ACTIONS(2504), + [aux_sym_cmd_identifier_token22] = ACTIONS(2504), + [aux_sym_cmd_identifier_token23] = ACTIONS(2504), + [aux_sym_cmd_identifier_token24] = ACTIONS(2504), + [aux_sym_cmd_identifier_token25] = ACTIONS(2504), + [aux_sym_cmd_identifier_token26] = ACTIONS(2504), + [aux_sym_cmd_identifier_token27] = ACTIONS(2504), + [aux_sym_cmd_identifier_token28] = ACTIONS(2504), + [aux_sym_cmd_identifier_token29] = ACTIONS(2504), + [aux_sym_cmd_identifier_token30] = ACTIONS(2504), + [aux_sym_cmd_identifier_token31] = ACTIONS(2504), + [aux_sym_cmd_identifier_token32] = ACTIONS(2504), + [aux_sym_cmd_identifier_token33] = ACTIONS(2504), + [aux_sym_cmd_identifier_token34] = ACTIONS(2502), + [aux_sym_cmd_identifier_token35] = ACTIONS(2504), + [aux_sym_cmd_identifier_token36] = ACTIONS(2504), + [aux_sym_cmd_identifier_token37] = ACTIONS(2504), + [aux_sym_cmd_identifier_token38] = ACTIONS(2502), + [aux_sym_cmd_identifier_token39] = ACTIONS(2504), + [aux_sym_cmd_identifier_token40] = ACTIONS(2504), + [anon_sym_def] = ACTIONS(2502), + [anon_sym_export_DASHenv] = ACTIONS(2502), + [anon_sym_extern] = ACTIONS(2502), + [anon_sym_module] = ACTIONS(2502), + [anon_sym_use] = ACTIONS(2502), + [anon_sym_LPAREN] = ACTIONS(2504), + [anon_sym_DOLLAR] = ACTIONS(2502), + [anon_sym_error] = ACTIONS(2502), + [anon_sym_DASH2] = ACTIONS(2502), + [anon_sym_break] = ACTIONS(2502), + [anon_sym_continue] = ACTIONS(2502), + [anon_sym_for] = ACTIONS(2502), + [anon_sym_in2] = ACTIONS(2502), + [anon_sym_loop] = ACTIONS(2502), + [anon_sym_make] = ACTIONS(2502), + [anon_sym_while] = ACTIONS(2502), + [anon_sym_do] = ACTIONS(2502), + [anon_sym_if] = ACTIONS(2502), + [anon_sym_else] = ACTIONS(2502), + [anon_sym_match] = ACTIONS(2502), + [anon_sym_RBRACE] = ACTIONS(2504), + [anon_sym_try] = ACTIONS(2502), + [anon_sym_catch] = ACTIONS(2502), + [anon_sym_return] = ACTIONS(2502), + [anon_sym_source] = ACTIONS(2502), + [anon_sym_source_DASHenv] = ACTIONS(2502), + [anon_sym_hide] = ACTIONS(2502), + [anon_sym_hide_DASHenv] = ACTIONS(2502), + [anon_sym_overlay] = ACTIONS(2502), + [anon_sym_as] = ACTIONS(2502), + [anon_sym_PLUS2] = ACTIONS(2502), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2504), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2504), + [aux_sym__val_number_decimal_token1] = ACTIONS(2502), + [aux_sym__val_number_decimal_token2] = ACTIONS(2504), + [aux_sym__val_number_decimal_token3] = ACTIONS(2504), + [aux_sym__val_number_decimal_token4] = ACTIONS(2504), + [aux_sym__val_number_token1] = ACTIONS(2504), + [aux_sym__val_number_token2] = ACTIONS(2504), + [aux_sym__val_number_token3] = ACTIONS(2504), + [aux_sym__val_number_token4] = ACTIONS(2502), + [aux_sym__val_number_token5] = ACTIONS(2502), + [aux_sym__val_number_token6] = ACTIONS(2502), + [anon_sym_DQUOTE] = ACTIONS(2504), + [sym__str_single_quotes] = ACTIONS(2504), + [sym__str_back_ticks] = ACTIONS(2504), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2504), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2504), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2504), + [anon_sym_register] = ACTIONS(2502), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2504), + }, + [753] = { + [sym_comment] = STATE(753), + [anon_sym_STAR_STAR] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_SLASH] = ACTIONS(1512), + [anon_sym_mod] = ACTIONS(1514), + [anon_sym_SLASH_SLASH] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_bit_DASHshl] = ACTIONS(1514), + [anon_sym_bit_DASHshr] = ACTIONS(1514), + [anon_sym_EQ_TILDE] = ACTIONS(1514), + [anon_sym_BANG_TILDE] = ACTIONS(1514), + [anon_sym_bit_DASHand] = ACTIONS(1514), + [anon_sym_bit_DASHxor] = ACTIONS(1514), + [anon_sym_bit_DASHor] = ACTIONS(1514), + [anon_sym_and] = ACTIONS(1514), + [anon_sym_xor] = ACTIONS(1514), + [anon_sym_or] = ACTIONS(1514), + [anon_sym_in] = ACTIONS(1514), + [anon_sym_not_DASHin] = ACTIONS(1514), + [anon_sym_has] = ACTIONS(1514), + [anon_sym_not_DASHhas] = ACTIONS(1514), + [anon_sym_starts_DASHwith] = ACTIONS(1514), + [anon_sym_ends_DASHwith] = ACTIONS(1514), + [anon_sym_EQ_EQ] = ACTIONS(1514), + [anon_sym_BANG_EQ] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_LT_EQ] = ACTIONS(1514), + [anon_sym_GT] = ACTIONS(1512), + [anon_sym_GT_EQ] = ACTIONS(1514), + [aux_sym_cmd_identifier_token41] = ACTIONS(1512), + [sym__newline] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_err_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_GT_PIPE] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1512), + [anon_sym_GT2] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_in2] = ACTIONS(1512), + [anon_sym_RBRACE] = ACTIONS(1512), + [anon_sym_STAR2] = ACTIONS(1512), + [anon_sym_and2] = ACTIONS(1512), + [anon_sym_xor2] = ACTIONS(1512), + [anon_sym_or2] = ACTIONS(1512), + [anon_sym_not_DASHin2] = ACTIONS(1512), + [anon_sym_has2] = ACTIONS(1512), + [anon_sym_not_DASHhas2] = ACTIONS(1512), + [anon_sym_starts_DASHwith2] = ACTIONS(1512), + [anon_sym_ends_DASHwith2] = ACTIONS(1512), + [anon_sym_EQ_EQ2] = ACTIONS(1512), + [anon_sym_BANG_EQ2] = ACTIONS(1512), + [anon_sym_LT2] = ACTIONS(1512), + [anon_sym_LT_EQ2] = ACTIONS(1512), + [anon_sym_GT_EQ2] = ACTIONS(1512), + [anon_sym_EQ_TILDE2] = ACTIONS(1512), + [anon_sym_BANG_TILDE2] = ACTIONS(1512), + [anon_sym_STAR_STAR2] = ACTIONS(1512), + [anon_sym_PLUS_PLUS2] = ACTIONS(1512), + [anon_sym_SLASH2] = ACTIONS(1512), + [anon_sym_mod2] = ACTIONS(1512), + [anon_sym_SLASH_SLASH2] = ACTIONS(1512), + [anon_sym_PLUS2] = ACTIONS(1512), + [anon_sym_bit_DASHshl2] = ACTIONS(1512), + [anon_sym_bit_DASHshr2] = ACTIONS(1512), + [anon_sym_bit_DASHand2] = ACTIONS(1512), + [anon_sym_bit_DASHxor2] = ACTIONS(1512), + [anon_sym_bit_DASHor2] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT] = ACTIONS(2506), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [aux_sym__immediate_decimal_token2] = ACTIONS(2508), + [sym_filesize_unit] = ACTIONS(1512), + [sym_duration_unit] = ACTIONS(1514), + [anon_sym_COLON2] = ACTIONS(1512), + [anon_sym_err_GT] = ACTIONS(1512), + [anon_sym_out_GT] = ACTIONS(1512), + [anon_sym_e_GT] = ACTIONS(1512), + [anon_sym_o_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT] = ACTIONS(1512), + [anon_sym_err_GT_GT] = ACTIONS(1512), + [anon_sym_out_GT_GT] = ACTIONS(1512), + [anon_sym_e_GT_GT] = ACTIONS(1512), + [anon_sym_o_GT_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(3), + }, + [754] = { + [sym_comment] = STATE(754), + [anon_sym_export] = ACTIONS(1290), + [anon_sym_alias] = ACTIONS(1290), + [anon_sym_let] = ACTIONS(1290), + [anon_sym_let_DASHenv] = ACTIONS(1290), + [anon_sym_mut] = ACTIONS(1290), + [anon_sym_const] = ACTIONS(1290), + [aux_sym_cmd_identifier_token1] = ACTIONS(1290), + [aux_sym_cmd_identifier_token2] = ACTIONS(1288), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [aux_sym_cmd_identifier_token6] = ACTIONS(1288), + [aux_sym_cmd_identifier_token7] = ACTIONS(1288), + [aux_sym_cmd_identifier_token8] = ACTIONS(1290), + [aux_sym_cmd_identifier_token9] = ACTIONS(1290), + [aux_sym_cmd_identifier_token10] = ACTIONS(1288), + [aux_sym_cmd_identifier_token11] = ACTIONS(1288), + [aux_sym_cmd_identifier_token12] = ACTIONS(1290), + [aux_sym_cmd_identifier_token13] = ACTIONS(1290), + [aux_sym_cmd_identifier_token14] = ACTIONS(1290), + [aux_sym_cmd_identifier_token15] = ACTIONS(1290), + [aux_sym_cmd_identifier_token16] = ACTIONS(1288), + [aux_sym_cmd_identifier_token17] = ACTIONS(1288), + [aux_sym_cmd_identifier_token18] = ACTIONS(1288), + [aux_sym_cmd_identifier_token19] = ACTIONS(1288), + [aux_sym_cmd_identifier_token20] = ACTIONS(1288), + [aux_sym_cmd_identifier_token21] = ACTIONS(1288), + [aux_sym_cmd_identifier_token22] = ACTIONS(1288), + [aux_sym_cmd_identifier_token23] = ACTIONS(1288), + [aux_sym_cmd_identifier_token24] = ACTIONS(1288), + [aux_sym_cmd_identifier_token25] = ACTIONS(1288), + [aux_sym_cmd_identifier_token26] = ACTIONS(1288), + [aux_sym_cmd_identifier_token27] = ACTIONS(1288), + [aux_sym_cmd_identifier_token28] = ACTIONS(1288), + [aux_sym_cmd_identifier_token29] = ACTIONS(1288), + [aux_sym_cmd_identifier_token30] = ACTIONS(1288), + [aux_sym_cmd_identifier_token31] = ACTIONS(1288), + [aux_sym_cmd_identifier_token32] = ACTIONS(1288), + [aux_sym_cmd_identifier_token33] = ACTIONS(1288), + [aux_sym_cmd_identifier_token34] = ACTIONS(1290), + [aux_sym_cmd_identifier_token35] = ACTIONS(1288), + [aux_sym_cmd_identifier_token36] = ACTIONS(1288), + [aux_sym_cmd_identifier_token37] = ACTIONS(1288), + [aux_sym_cmd_identifier_token38] = ACTIONS(1290), + [aux_sym_cmd_identifier_token39] = ACTIONS(1288), + [aux_sym_cmd_identifier_token40] = ACTIONS(1288), + [sym__newline] = ACTIONS(1288), + [anon_sym_def] = ACTIONS(1290), + [anon_sym_export_DASHenv] = ACTIONS(1290), + [anon_sym_extern] = ACTIONS(1290), + [anon_sym_module] = ACTIONS(1290), + [anon_sym_use] = ACTIONS(1290), + [anon_sym_LPAREN] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1290), + [anon_sym_error] = ACTIONS(1290), + [anon_sym_DASH2] = ACTIONS(1290), + [anon_sym_break] = ACTIONS(1290), + [anon_sym_continue] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1290), + [anon_sym_in2] = ACTIONS(1290), + [anon_sym_loop] = ACTIONS(1290), + [anon_sym_make] = ACTIONS(1290), + [anon_sym_while] = ACTIONS(1290), + [anon_sym_do] = ACTIONS(1290), + [anon_sym_if] = ACTIONS(1290), + [anon_sym_else] = ACTIONS(1290), + [anon_sym_match] = ACTIONS(1290), + [anon_sym_try] = ACTIONS(1290), + [anon_sym_catch] = ACTIONS(1290), + [anon_sym_return] = ACTIONS(1290), + [anon_sym_source] = ACTIONS(1290), + [anon_sym_source_DASHenv] = ACTIONS(1290), + [anon_sym_hide] = ACTIONS(1290), + [anon_sym_hide_DASHenv] = ACTIONS(1290), + [anon_sym_overlay] = ACTIONS(1290), + [anon_sym_as] = ACTIONS(1290), + [anon_sym_PLUS2] = ACTIONS(1290), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1288), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1288), + [aux_sym__val_number_decimal_token1] = ACTIONS(1290), + [aux_sym__val_number_decimal_token2] = ACTIONS(1288), + [aux_sym__val_number_decimal_token3] = ACTIONS(1288), + [aux_sym__val_number_decimal_token4] = ACTIONS(1288), + [aux_sym__val_number_token1] = ACTIONS(1288), + [aux_sym__val_number_token2] = ACTIONS(1288), + [aux_sym__val_number_token3] = ACTIONS(1288), + [aux_sym__val_number_token4] = ACTIONS(1290), + [aux_sym__val_number_token5] = ACTIONS(1290), + [aux_sym__val_number_token6] = ACTIONS(1290), + [anon_sym_DQUOTE] = ACTIONS(1288), + [sym__str_single_quotes] = ACTIONS(1288), + [sym__str_back_ticks] = ACTIONS(1288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1288), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1288), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1288), + [anon_sym_register] = ACTIONS(1290), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1288), + }, + [755] = { + [sym_comment] = STATE(755), + [anon_sym_STAR_STAR] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_STAR] = ACTIONS(1504), + [anon_sym_SLASH] = ACTIONS(1504), + [anon_sym_mod] = ACTIONS(1506), + [anon_sym_SLASH_SLASH] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_bit_DASHshl] = ACTIONS(1506), + [anon_sym_bit_DASHshr] = ACTIONS(1506), + [anon_sym_EQ_TILDE] = ACTIONS(1506), + [anon_sym_BANG_TILDE] = ACTIONS(1506), + [anon_sym_bit_DASHand] = ACTIONS(1506), + [anon_sym_bit_DASHxor] = ACTIONS(1506), + [anon_sym_bit_DASHor] = ACTIONS(1506), + [anon_sym_and] = ACTIONS(1506), + [anon_sym_xor] = ACTIONS(1506), + [anon_sym_or] = ACTIONS(1506), + [anon_sym_in] = ACTIONS(1506), + [anon_sym_not_DASHin] = ACTIONS(1506), + [anon_sym_has] = ACTIONS(1506), + [anon_sym_not_DASHhas] = 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_LT] = ACTIONS(1504), + [anon_sym_LT_EQ] = ACTIONS(1506), + [anon_sym_GT] = ACTIONS(1504), + [anon_sym_GT_EQ] = ACTIONS(1506), + [aux_sym_cmd_identifier_token41] = ACTIONS(1504), + [sym__newline] = ACTIONS(1504), + [anon_sym_SEMI] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_err_GT_PIPE] = ACTIONS(1504), + [anon_sym_out_GT_PIPE] = ACTIONS(1504), + [anon_sym_e_GT_PIPE] = ACTIONS(1504), + [anon_sym_o_GT_PIPE] = ACTIONS(1504), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1504), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1504), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1504), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1504), + [anon_sym_GT2] = ACTIONS(1504), + [anon_sym_DASH2] = ACTIONS(1504), + [anon_sym_in2] = ACTIONS(1504), + [anon_sym_RBRACE] = ACTIONS(1504), + [anon_sym_STAR2] = ACTIONS(1504), + [anon_sym_and2] = ACTIONS(1504), + [anon_sym_xor2] = ACTIONS(1504), + [anon_sym_or2] = ACTIONS(1504), + [anon_sym_not_DASHin2] = ACTIONS(1504), + [anon_sym_has2] = ACTIONS(1504), + [anon_sym_not_DASHhas2] = ACTIONS(1504), + [anon_sym_starts_DASHwith2] = ACTIONS(1504), + [anon_sym_ends_DASHwith2] = ACTIONS(1504), + [anon_sym_EQ_EQ2] = ACTIONS(1504), + [anon_sym_BANG_EQ2] = ACTIONS(1504), + [anon_sym_LT2] = ACTIONS(1504), + [anon_sym_LT_EQ2] = ACTIONS(1504), + [anon_sym_GT_EQ2] = ACTIONS(1504), + [anon_sym_EQ_TILDE2] = ACTIONS(1504), + [anon_sym_BANG_TILDE2] = ACTIONS(1504), + [anon_sym_STAR_STAR2] = ACTIONS(1504), + [anon_sym_PLUS_PLUS2] = ACTIONS(1504), + [anon_sym_SLASH2] = ACTIONS(1504), + [anon_sym_mod2] = ACTIONS(1504), + [anon_sym_SLASH_SLASH2] = ACTIONS(1504), + [anon_sym_PLUS2] = ACTIONS(1504), + [anon_sym_bit_DASHshl2] = ACTIONS(1504), + [anon_sym_bit_DASHshr2] = ACTIONS(1504), + [anon_sym_bit_DASHand2] = ACTIONS(1504), + [anon_sym_bit_DASHxor2] = ACTIONS(1504), + [anon_sym_bit_DASHor2] = ACTIONS(1504), + [anon_sym_DOT_DOT2] = ACTIONS(1504), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1506), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1506), + [aux_sym__immediate_decimal_token1] = ACTIONS(2510), + [aux_sym__immediate_decimal_token2] = ACTIONS(2512), + [sym_filesize_unit] = ACTIONS(1504), + [sym_duration_unit] = ACTIONS(1506), + [anon_sym_COLON2] = ACTIONS(1504), + [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(1504), + [anon_sym_out_GT_GT] = ACTIONS(1504), + [anon_sym_e_GT_GT] = ACTIONS(1504), + [anon_sym_o_GT_GT] = ACTIONS(1504), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1504), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1504), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1504), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1504), + [anon_sym_POUND] = ACTIONS(3), + }, + [756] = { + [sym_comment] = STATE(756), + [ts_builtin_sym_end] = ACTIONS(1514), + [anon_sym_STAR_STAR] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_SLASH] = ACTIONS(1512), + [anon_sym_mod] = ACTIONS(1514), + [anon_sym_SLASH_SLASH] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_bit_DASHshl] = ACTIONS(1514), + [anon_sym_bit_DASHshr] = ACTIONS(1514), + [anon_sym_EQ_TILDE] = ACTIONS(1514), + [anon_sym_BANG_TILDE] = ACTIONS(1514), + [anon_sym_bit_DASHand] = ACTIONS(1514), + [anon_sym_bit_DASHxor] = ACTIONS(1514), + [anon_sym_bit_DASHor] = ACTIONS(1514), + [anon_sym_and] = ACTIONS(1514), + [anon_sym_xor] = ACTIONS(1514), + [anon_sym_or] = ACTIONS(1514), + [anon_sym_in] = ACTIONS(1514), + [anon_sym_not_DASHin] = ACTIONS(1514), + [anon_sym_has] = ACTIONS(1514), + [anon_sym_not_DASHhas] = ACTIONS(1514), + [anon_sym_starts_DASHwith] = ACTIONS(1514), + [anon_sym_ends_DASHwith] = ACTIONS(1514), + [anon_sym_EQ_EQ] = ACTIONS(1514), + [anon_sym_BANG_EQ] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_LT_EQ] = ACTIONS(1514), + [anon_sym_GT] = ACTIONS(1512), + [anon_sym_GT_EQ] = ACTIONS(1514), + [aux_sym_cmd_identifier_token41] = ACTIONS(1512), + [sym__newline] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_err_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_GT_PIPE] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1512), + [anon_sym_GT2] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_in2] = ACTIONS(1512), + [anon_sym_STAR2] = ACTIONS(1512), + [anon_sym_and2] = ACTIONS(1512), + [anon_sym_xor2] = ACTIONS(1512), + [anon_sym_or2] = ACTIONS(1512), + [anon_sym_not_DASHin2] = ACTIONS(1512), + [anon_sym_has2] = ACTIONS(1512), + [anon_sym_not_DASHhas2] = ACTIONS(1512), + [anon_sym_starts_DASHwith2] = ACTIONS(1512), + [anon_sym_ends_DASHwith2] = ACTIONS(1512), + [anon_sym_EQ_EQ2] = ACTIONS(1512), + [anon_sym_BANG_EQ2] = ACTIONS(1512), + [anon_sym_LT2] = ACTIONS(1512), + [anon_sym_LT_EQ2] = ACTIONS(1512), + [anon_sym_GT_EQ2] = ACTIONS(1512), + [anon_sym_EQ_TILDE2] = ACTIONS(1512), + [anon_sym_BANG_TILDE2] = ACTIONS(1512), + [anon_sym_STAR_STAR2] = ACTIONS(1512), + [anon_sym_PLUS_PLUS2] = ACTIONS(1512), + [anon_sym_SLASH2] = ACTIONS(1512), + [anon_sym_mod2] = ACTIONS(1512), + [anon_sym_SLASH_SLASH2] = ACTIONS(1512), + [anon_sym_PLUS2] = ACTIONS(1512), + [anon_sym_bit_DASHshl2] = ACTIONS(1512), + [anon_sym_bit_DASHshr2] = ACTIONS(1512), + [anon_sym_bit_DASHand2] = ACTIONS(1512), + [anon_sym_bit_DASHxor2] = ACTIONS(1512), + [anon_sym_bit_DASHor2] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT] = ACTIONS(2514), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [aux_sym__immediate_decimal_token2] = ACTIONS(2516), + [sym_filesize_unit] = ACTIONS(1512), + [sym_duration_unit] = ACTIONS(1514), + [anon_sym_err_GT] = ACTIONS(1512), + [anon_sym_out_GT] = ACTIONS(1512), + [anon_sym_e_GT] = ACTIONS(1512), + [anon_sym_o_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT] = ACTIONS(1512), + [anon_sym_err_GT_GT] = ACTIONS(1512), + [anon_sym_out_GT_GT] = ACTIONS(1512), + [anon_sym_e_GT_GT] = ACTIONS(1512), + [anon_sym_o_GT_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(3), + }, + [757] = { + [sym_comment] = STATE(757), + [anon_sym_STAR_STAR] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_STAR] = ACTIONS(1504), + [anon_sym_SLASH] = ACTIONS(1504), + [anon_sym_mod] = ACTIONS(1506), + [anon_sym_SLASH_SLASH] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_bit_DASHshl] = ACTIONS(1506), + [anon_sym_bit_DASHshr] = ACTIONS(1506), + [anon_sym_EQ_TILDE] = ACTIONS(1506), + [anon_sym_BANG_TILDE] = ACTIONS(1506), + [anon_sym_bit_DASHand] = ACTIONS(1506), + [anon_sym_bit_DASHxor] = ACTIONS(1506), + [anon_sym_bit_DASHor] = ACTIONS(1506), + [anon_sym_and] = ACTIONS(1506), + [anon_sym_xor] = ACTIONS(1506), + [anon_sym_or] = ACTIONS(1506), + [anon_sym_in] = ACTIONS(1506), + [anon_sym_not_DASHin] = ACTIONS(1506), + [anon_sym_has] = ACTIONS(1506), + [anon_sym_not_DASHhas] = 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_LT] = ACTIONS(1504), + [anon_sym_LT_EQ] = ACTIONS(1506), + [anon_sym_GT] = ACTIONS(1504), + [anon_sym_GT_EQ] = ACTIONS(1506), + [aux_sym_cmd_identifier_token41] = ACTIONS(1504), + [sym__newline] = ACTIONS(1504), + [anon_sym_SEMI] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_err_GT_PIPE] = ACTIONS(1504), + [anon_sym_out_GT_PIPE] = ACTIONS(1504), + [anon_sym_e_GT_PIPE] = ACTIONS(1504), + [anon_sym_o_GT_PIPE] = ACTIONS(1504), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1504), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1504), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1504), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1504), + [anon_sym_RPAREN] = ACTIONS(1504), + [anon_sym_GT2] = ACTIONS(1504), + [anon_sym_DASH2] = ACTIONS(1504), + [anon_sym_in2] = ACTIONS(1504), + [anon_sym_STAR2] = ACTIONS(1504), + [anon_sym_and2] = ACTIONS(1504), + [anon_sym_xor2] = ACTIONS(1504), + [anon_sym_or2] = ACTIONS(1504), + [anon_sym_not_DASHin2] = ACTIONS(1504), + [anon_sym_has2] = ACTIONS(1504), + [anon_sym_not_DASHhas2] = ACTIONS(1504), + [anon_sym_starts_DASHwith2] = ACTIONS(1504), + [anon_sym_ends_DASHwith2] = ACTIONS(1504), + [anon_sym_EQ_EQ2] = ACTIONS(1504), + [anon_sym_BANG_EQ2] = ACTIONS(1504), + [anon_sym_LT2] = ACTIONS(1504), + [anon_sym_LT_EQ2] = ACTIONS(1504), + [anon_sym_GT_EQ2] = ACTIONS(1504), + [anon_sym_EQ_TILDE2] = ACTIONS(1504), + [anon_sym_BANG_TILDE2] = ACTIONS(1504), + [anon_sym_STAR_STAR2] = ACTIONS(1504), + [anon_sym_PLUS_PLUS2] = ACTIONS(1504), + [anon_sym_SLASH2] = ACTIONS(1504), + [anon_sym_mod2] = ACTIONS(1504), + [anon_sym_SLASH_SLASH2] = ACTIONS(1504), + [anon_sym_PLUS2] = ACTIONS(1504), + [anon_sym_bit_DASHshl2] = ACTIONS(1504), + [anon_sym_bit_DASHshr2] = ACTIONS(1504), + [anon_sym_bit_DASHand2] = ACTIONS(1504), + [anon_sym_bit_DASHxor2] = ACTIONS(1504), + [anon_sym_bit_DASHor2] = ACTIONS(1504), + [anon_sym_DOT_DOT2] = ACTIONS(1504), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1506), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1506), + [aux_sym__immediate_decimal_token1] = ACTIONS(2518), + [aux_sym__immediate_decimal_token2] = ACTIONS(2520), + [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(1504), + [anon_sym_out_GT_GT] = ACTIONS(1504), + [anon_sym_e_GT_GT] = ACTIONS(1504), + [anon_sym_o_GT_GT] = ACTIONS(1504), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1504), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1504), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1504), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1504), + [anon_sym_POUND] = ACTIONS(3), + }, + [758] = { + [sym_comment] = STATE(758), + [anon_sym_STAR_STAR] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_SLASH] = ACTIONS(1512), + [anon_sym_mod] = ACTIONS(1514), + [anon_sym_SLASH_SLASH] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_bit_DASHshl] = ACTIONS(1514), + [anon_sym_bit_DASHshr] = ACTIONS(1514), + [anon_sym_EQ_TILDE] = ACTIONS(1514), + [anon_sym_BANG_TILDE] = ACTIONS(1514), + [anon_sym_bit_DASHand] = ACTIONS(1514), + [anon_sym_bit_DASHxor] = ACTIONS(1514), + [anon_sym_bit_DASHor] = ACTIONS(1514), + [anon_sym_and] = ACTIONS(1514), + [anon_sym_xor] = ACTIONS(1514), + [anon_sym_or] = ACTIONS(1514), + [anon_sym_in] = ACTIONS(1514), + [anon_sym_not_DASHin] = ACTIONS(1514), + [anon_sym_has] = ACTIONS(1514), + [anon_sym_not_DASHhas] = ACTIONS(1514), + [anon_sym_starts_DASHwith] = ACTIONS(1514), + [anon_sym_ends_DASHwith] = ACTIONS(1514), + [anon_sym_EQ_EQ] = ACTIONS(1514), + [anon_sym_BANG_EQ] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_LT_EQ] = ACTIONS(1514), + [anon_sym_GT] = ACTIONS(1512), + [anon_sym_GT_EQ] = ACTIONS(1514), + [aux_sym_cmd_identifier_token41] = ACTIONS(1512), + [sym__newline] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_err_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_GT_PIPE] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1512), + [anon_sym_RPAREN] = ACTIONS(1512), + [anon_sym_GT2] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_in2] = ACTIONS(1512), + [anon_sym_STAR2] = ACTIONS(1512), + [anon_sym_and2] = ACTIONS(1512), + [anon_sym_xor2] = ACTIONS(1512), + [anon_sym_or2] = ACTIONS(1512), + [anon_sym_not_DASHin2] = ACTIONS(1512), + [anon_sym_has2] = ACTIONS(1512), + [anon_sym_not_DASHhas2] = ACTIONS(1512), + [anon_sym_starts_DASHwith2] = ACTIONS(1512), + [anon_sym_ends_DASHwith2] = ACTIONS(1512), + [anon_sym_EQ_EQ2] = ACTIONS(1512), + [anon_sym_BANG_EQ2] = ACTIONS(1512), + [anon_sym_LT2] = ACTIONS(1512), + [anon_sym_LT_EQ2] = ACTIONS(1512), + [anon_sym_GT_EQ2] = ACTIONS(1512), + [anon_sym_EQ_TILDE2] = ACTIONS(1512), + [anon_sym_BANG_TILDE2] = ACTIONS(1512), + [anon_sym_STAR_STAR2] = ACTIONS(1512), + [anon_sym_PLUS_PLUS2] = ACTIONS(1512), + [anon_sym_SLASH2] = ACTIONS(1512), + [anon_sym_mod2] = ACTIONS(1512), + [anon_sym_SLASH_SLASH2] = ACTIONS(1512), + [anon_sym_PLUS2] = ACTIONS(1512), + [anon_sym_bit_DASHshl2] = ACTIONS(1512), + [anon_sym_bit_DASHshr2] = ACTIONS(1512), + [anon_sym_bit_DASHand2] = ACTIONS(1512), + [anon_sym_bit_DASHxor2] = ACTIONS(1512), + [anon_sym_bit_DASHor2] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT] = ACTIONS(2522), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [aux_sym__immediate_decimal_token2] = ACTIONS(2524), + [sym_filesize_unit] = ACTIONS(1512), + [sym_duration_unit] = ACTIONS(1514), + [anon_sym_err_GT] = ACTIONS(1512), + [anon_sym_out_GT] = ACTIONS(1512), + [anon_sym_e_GT] = ACTIONS(1512), + [anon_sym_o_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT] = ACTIONS(1512), + [anon_sym_err_GT_GT] = ACTIONS(1512), + [anon_sym_out_GT_GT] = ACTIONS(1512), + [anon_sym_e_GT_GT] = ACTIONS(1512), + [anon_sym_o_GT_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(3), + }, + [759] = { + [sym_comment] = STATE(759), + [ts_builtin_sym_end] = ACTIONS(1506), + [anon_sym_STAR_STAR] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_STAR] = ACTIONS(1504), + [anon_sym_SLASH] = ACTIONS(1504), + [anon_sym_mod] = ACTIONS(1506), + [anon_sym_SLASH_SLASH] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_bit_DASHshl] = ACTIONS(1506), + [anon_sym_bit_DASHshr] = ACTIONS(1506), + [anon_sym_EQ_TILDE] = ACTIONS(1506), + [anon_sym_BANG_TILDE] = ACTIONS(1506), + [anon_sym_bit_DASHand] = ACTIONS(1506), + [anon_sym_bit_DASHxor] = ACTIONS(1506), + [anon_sym_bit_DASHor] = ACTIONS(1506), + [anon_sym_and] = ACTIONS(1506), + [anon_sym_xor] = ACTIONS(1506), + [anon_sym_or] = ACTIONS(1506), + [anon_sym_in] = ACTIONS(1506), + [anon_sym_not_DASHin] = ACTIONS(1506), + [anon_sym_has] = ACTIONS(1506), + [anon_sym_not_DASHhas] = 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_LT] = ACTIONS(1504), + [anon_sym_LT_EQ] = ACTIONS(1506), + [anon_sym_GT] = ACTIONS(1504), + [anon_sym_GT_EQ] = ACTIONS(1506), + [aux_sym_cmd_identifier_token41] = ACTIONS(1504), + [sym__newline] = ACTIONS(1504), + [anon_sym_SEMI] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_err_GT_PIPE] = ACTIONS(1504), + [anon_sym_out_GT_PIPE] = ACTIONS(1504), + [anon_sym_e_GT_PIPE] = ACTIONS(1504), + [anon_sym_o_GT_PIPE] = ACTIONS(1504), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1504), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1504), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1504), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1504), + [anon_sym_GT2] = ACTIONS(1504), + [anon_sym_DASH2] = ACTIONS(1504), + [anon_sym_in2] = ACTIONS(1504), + [anon_sym_STAR2] = ACTIONS(1504), + [anon_sym_and2] = ACTIONS(1504), + [anon_sym_xor2] = ACTIONS(1504), + [anon_sym_or2] = ACTIONS(1504), + [anon_sym_not_DASHin2] = ACTIONS(1504), + [anon_sym_has2] = ACTIONS(1504), + [anon_sym_not_DASHhas2] = ACTIONS(1504), + [anon_sym_starts_DASHwith2] = ACTIONS(1504), + [anon_sym_ends_DASHwith2] = ACTIONS(1504), + [anon_sym_EQ_EQ2] = ACTIONS(1504), + [anon_sym_BANG_EQ2] = ACTIONS(1504), + [anon_sym_LT2] = ACTIONS(1504), + [anon_sym_LT_EQ2] = ACTIONS(1504), + [anon_sym_GT_EQ2] = ACTIONS(1504), + [anon_sym_EQ_TILDE2] = ACTIONS(1504), + [anon_sym_BANG_TILDE2] = ACTIONS(1504), + [anon_sym_STAR_STAR2] = ACTIONS(1504), + [anon_sym_PLUS_PLUS2] = ACTIONS(1504), + [anon_sym_SLASH2] = ACTIONS(1504), + [anon_sym_mod2] = ACTIONS(1504), + [anon_sym_SLASH_SLASH2] = ACTIONS(1504), + [anon_sym_PLUS2] = ACTIONS(1504), + [anon_sym_bit_DASHshl2] = ACTIONS(1504), + [anon_sym_bit_DASHshr2] = ACTIONS(1504), + [anon_sym_bit_DASHand2] = ACTIONS(1504), + [anon_sym_bit_DASHxor2] = ACTIONS(1504), + [anon_sym_bit_DASHor2] = ACTIONS(1504), + [anon_sym_DOT_DOT2] = ACTIONS(1504), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1506), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1506), + [aux_sym__immediate_decimal_token1] = ACTIONS(2526), + [aux_sym__immediate_decimal_token2] = ACTIONS(2528), + [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(1504), + [anon_sym_out_GT_GT] = ACTIONS(1504), + [anon_sym_e_GT_GT] = ACTIONS(1504), + [anon_sym_o_GT_GT] = ACTIONS(1504), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1504), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1504), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1504), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1504), + [anon_sym_POUND] = ACTIONS(3), + }, + [760] = { + [sym_comment] = STATE(760), + [anon_sym_STAR_STAR] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_SLASH] = ACTIONS(1512), + [anon_sym_mod] = ACTIONS(1514), + [anon_sym_SLASH_SLASH] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_bit_DASHshl] = ACTIONS(1514), + [anon_sym_bit_DASHshr] = ACTIONS(1514), + [anon_sym_EQ_TILDE] = ACTIONS(1514), + [anon_sym_BANG_TILDE] = ACTIONS(1514), + [anon_sym_bit_DASHand] = ACTIONS(1514), + [anon_sym_bit_DASHxor] = ACTIONS(1514), + [anon_sym_bit_DASHor] = ACTIONS(1514), + [anon_sym_and] = ACTIONS(1514), + [anon_sym_xor] = ACTIONS(1514), + [anon_sym_or] = ACTIONS(1514), + [anon_sym_in] = ACTIONS(1514), + [anon_sym_not_DASHin] = ACTIONS(1514), + [anon_sym_has] = ACTIONS(1514), + [anon_sym_not_DASHhas] = ACTIONS(1514), + [anon_sym_starts_DASHwith] = ACTIONS(1514), + [anon_sym_ends_DASHwith] = ACTIONS(1514), + [anon_sym_EQ_EQ] = ACTIONS(1514), + [anon_sym_BANG_EQ] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_LT_EQ] = ACTIONS(1514), + [anon_sym_GT] = ACTIONS(1512), + [anon_sym_GT_EQ] = ACTIONS(1514), + [aux_sym_cmd_identifier_token41] = ACTIONS(1512), + [sym__newline] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_err_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_GT_PIPE] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1512), + [anon_sym_GT2] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_in2] = ACTIONS(1512), + [anon_sym_RBRACE] = ACTIONS(1512), + [anon_sym_STAR2] = ACTIONS(1512), + [anon_sym_and2] = ACTIONS(1512), + [anon_sym_xor2] = ACTIONS(1512), + [anon_sym_or2] = ACTIONS(1512), + [anon_sym_not_DASHin2] = ACTIONS(1512), + [anon_sym_has2] = ACTIONS(1512), + [anon_sym_not_DASHhas2] = ACTIONS(1512), + [anon_sym_starts_DASHwith2] = ACTIONS(1512), + [anon_sym_ends_DASHwith2] = ACTIONS(1512), + [anon_sym_EQ_EQ2] = ACTIONS(1512), + [anon_sym_BANG_EQ2] = ACTIONS(1512), + [anon_sym_LT2] = ACTIONS(1512), + [anon_sym_LT_EQ2] = ACTIONS(1512), + [anon_sym_GT_EQ2] = ACTIONS(1512), + [anon_sym_EQ_TILDE2] = ACTIONS(1512), + [anon_sym_BANG_TILDE2] = ACTIONS(1512), + [anon_sym_STAR_STAR2] = ACTIONS(1512), + [anon_sym_PLUS_PLUS2] = ACTIONS(1512), + [anon_sym_SLASH2] = ACTIONS(1512), + [anon_sym_mod2] = ACTIONS(1512), + [anon_sym_SLASH_SLASH2] = ACTIONS(1512), + [anon_sym_PLUS2] = ACTIONS(1512), + [anon_sym_bit_DASHshl2] = ACTIONS(1512), + [anon_sym_bit_DASHshr2] = ACTIONS(1512), + [anon_sym_bit_DASHand2] = ACTIONS(1512), + [anon_sym_bit_DASHxor2] = ACTIONS(1512), + [anon_sym_bit_DASHor2] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [aux_sym__immediate_decimal_token2] = ACTIONS(2508), + [sym_filesize_unit] = ACTIONS(1512), + [sym_duration_unit] = ACTIONS(1514), + [anon_sym_COLON2] = ACTIONS(1512), + [anon_sym_err_GT] = ACTIONS(1512), + [anon_sym_out_GT] = ACTIONS(1512), + [anon_sym_e_GT] = ACTIONS(1512), + [anon_sym_o_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT] = ACTIONS(1512), + [anon_sym_err_GT_GT] = ACTIONS(1512), + [anon_sym_out_GT_GT] = ACTIONS(1512), + [anon_sym_e_GT_GT] = ACTIONS(1512), + [anon_sym_o_GT_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(3), + }, + [761] = { + [sym_comment] = STATE(761), + [anon_sym_STAR_STAR] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_SLASH] = ACTIONS(1512), + [anon_sym_mod] = ACTIONS(1514), + [anon_sym_SLASH_SLASH] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_bit_DASHshl] = ACTIONS(1514), + [anon_sym_bit_DASHshr] = ACTIONS(1514), + [anon_sym_EQ_TILDE] = ACTIONS(1514), + [anon_sym_BANG_TILDE] = ACTIONS(1514), + [anon_sym_bit_DASHand] = ACTIONS(1514), + [anon_sym_bit_DASHxor] = ACTIONS(1514), + [anon_sym_bit_DASHor] = ACTIONS(1514), + [anon_sym_and] = ACTIONS(1514), + [anon_sym_xor] = ACTIONS(1514), + [anon_sym_or] = ACTIONS(1514), + [anon_sym_in] = ACTIONS(1514), + [anon_sym_not_DASHin] = ACTIONS(1514), + [anon_sym_has] = ACTIONS(1514), + [anon_sym_not_DASHhas] = ACTIONS(1514), + [anon_sym_starts_DASHwith] = ACTIONS(1514), + [anon_sym_ends_DASHwith] = ACTIONS(1514), + [anon_sym_EQ_EQ] = ACTIONS(1514), + [anon_sym_BANG_EQ] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_LT_EQ] = ACTIONS(1514), + [anon_sym_GT] = ACTIONS(1512), + [anon_sym_GT_EQ] = ACTIONS(1514), + [aux_sym_cmd_identifier_token41] = ACTIONS(1512), + [sym__newline] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_err_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_GT_PIPE] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1512), + [anon_sym_GT2] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_in2] = ACTIONS(1512), + [anon_sym_RBRACE] = ACTIONS(1512), + [anon_sym_STAR2] = ACTIONS(1512), + [anon_sym_and2] = ACTIONS(1512), + [anon_sym_xor2] = ACTIONS(1512), + [anon_sym_or2] = ACTIONS(1512), + [anon_sym_not_DASHin2] = ACTIONS(1512), + [anon_sym_has2] = ACTIONS(1512), + [anon_sym_not_DASHhas2] = ACTIONS(1512), + [anon_sym_starts_DASHwith2] = ACTIONS(1512), + [anon_sym_ends_DASHwith2] = ACTIONS(1512), + [anon_sym_EQ_EQ2] = ACTIONS(1512), + [anon_sym_BANG_EQ2] = ACTIONS(1512), + [anon_sym_LT2] = ACTIONS(1512), + [anon_sym_LT_EQ2] = ACTIONS(1512), + [anon_sym_GT_EQ2] = ACTIONS(1512), + [anon_sym_EQ_TILDE2] = ACTIONS(1512), + [anon_sym_BANG_TILDE2] = ACTIONS(1512), + [anon_sym_STAR_STAR2] = ACTIONS(1512), + [anon_sym_PLUS_PLUS2] = ACTIONS(1512), + [anon_sym_SLASH2] = ACTIONS(1512), + [anon_sym_mod2] = ACTIONS(1512), + [anon_sym_SLASH_SLASH2] = ACTIONS(1512), + [anon_sym_PLUS2] = ACTIONS(1512), + [anon_sym_bit_DASHshl2] = ACTIONS(1512), + [anon_sym_bit_DASHshr2] = ACTIONS(1512), + [anon_sym_bit_DASHand2] = ACTIONS(1512), + [anon_sym_bit_DASHxor2] = ACTIONS(1512), + [anon_sym_bit_DASHor2] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT] = ACTIONS(2530), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [aux_sym__immediate_decimal_token2] = ACTIONS(2532), + [sym_filesize_unit] = ACTIONS(1512), + [sym_duration_unit] = ACTIONS(1514), + [anon_sym_err_GT] = ACTIONS(1512), + [anon_sym_out_GT] = ACTIONS(1512), + [anon_sym_e_GT] = ACTIONS(1512), + [anon_sym_o_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT] = ACTIONS(1512), + [anon_sym_err_GT_GT] = ACTIONS(1512), + [anon_sym_out_GT_GT] = ACTIONS(1512), + [anon_sym_e_GT_GT] = ACTIONS(1512), + [anon_sym_o_GT_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(3), + }, + [762] = { + [sym_comment] = STATE(762), + [anon_sym_STAR_STAR] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_STAR] = ACTIONS(1504), + [anon_sym_SLASH] = ACTIONS(1504), + [anon_sym_mod] = ACTIONS(1506), + [anon_sym_SLASH_SLASH] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_bit_DASHshl] = ACTIONS(1506), + [anon_sym_bit_DASHshr] = ACTIONS(1506), + [anon_sym_EQ_TILDE] = ACTIONS(1506), + [anon_sym_BANG_TILDE] = ACTIONS(1506), + [anon_sym_bit_DASHand] = ACTIONS(1506), + [anon_sym_bit_DASHxor] = ACTIONS(1506), + [anon_sym_bit_DASHor] = ACTIONS(1506), + [anon_sym_and] = ACTIONS(1506), + [anon_sym_xor] = ACTIONS(1506), + [anon_sym_or] = ACTIONS(1506), + [anon_sym_in] = ACTIONS(1506), + [anon_sym_not_DASHin] = ACTIONS(1506), + [anon_sym_has] = ACTIONS(1506), + [anon_sym_not_DASHhas] = 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_LT] = ACTIONS(1504), + [anon_sym_LT_EQ] = ACTIONS(1506), + [anon_sym_GT] = ACTIONS(1504), + [anon_sym_GT_EQ] = ACTIONS(1506), + [aux_sym_cmd_identifier_token41] = ACTIONS(1504), + [sym__newline] = ACTIONS(1504), + [anon_sym_SEMI] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_err_GT_PIPE] = ACTIONS(1504), + [anon_sym_out_GT_PIPE] = ACTIONS(1504), + [anon_sym_e_GT_PIPE] = ACTIONS(1504), + [anon_sym_o_GT_PIPE] = ACTIONS(1504), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1504), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1504), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1504), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1504), + [anon_sym_GT2] = ACTIONS(1504), + [anon_sym_DASH2] = ACTIONS(1504), + [anon_sym_in2] = ACTIONS(1504), + [anon_sym_RBRACE] = ACTIONS(1504), + [anon_sym_STAR2] = ACTIONS(1504), + [anon_sym_and2] = ACTIONS(1504), + [anon_sym_xor2] = ACTIONS(1504), + [anon_sym_or2] = ACTIONS(1504), + [anon_sym_not_DASHin2] = ACTIONS(1504), + [anon_sym_has2] = ACTIONS(1504), + [anon_sym_not_DASHhas2] = ACTIONS(1504), + [anon_sym_starts_DASHwith2] = ACTIONS(1504), + [anon_sym_ends_DASHwith2] = ACTIONS(1504), + [anon_sym_EQ_EQ2] = ACTIONS(1504), + [anon_sym_BANG_EQ2] = ACTIONS(1504), + [anon_sym_LT2] = ACTIONS(1504), + [anon_sym_LT_EQ2] = ACTIONS(1504), + [anon_sym_GT_EQ2] = ACTIONS(1504), + [anon_sym_EQ_TILDE2] = ACTIONS(1504), + [anon_sym_BANG_TILDE2] = ACTIONS(1504), + [anon_sym_STAR_STAR2] = ACTIONS(1504), + [anon_sym_PLUS_PLUS2] = ACTIONS(1504), + [anon_sym_SLASH2] = ACTIONS(1504), + [anon_sym_mod2] = ACTIONS(1504), + [anon_sym_SLASH_SLASH2] = ACTIONS(1504), + [anon_sym_PLUS2] = ACTIONS(1504), + [anon_sym_bit_DASHshl2] = ACTIONS(1504), + [anon_sym_bit_DASHshr2] = ACTIONS(1504), + [anon_sym_bit_DASHand2] = ACTIONS(1504), + [anon_sym_bit_DASHxor2] = ACTIONS(1504), + [anon_sym_bit_DASHor2] = ACTIONS(1504), + [anon_sym_DOT_DOT2] = ACTIONS(1504), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1506), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1506), + [aux_sym__immediate_decimal_token1] = ACTIONS(2534), + [aux_sym__immediate_decimal_token2] = ACTIONS(2536), + [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(1504), + [anon_sym_out_GT_GT] = ACTIONS(1504), + [anon_sym_e_GT_GT] = ACTIONS(1504), + [anon_sym_o_GT_GT] = ACTIONS(1504), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1504), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1504), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1504), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1504), + [anon_sym_POUND] = ACTIONS(3), }, [763] = { [sym_comment] = STATE(763), - [anon_sym_STAR_STAR] = ACTIONS(1544), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_STAR] = ACTIONS(1542), - [anon_sym_SLASH] = ACTIONS(1542), - [anon_sym_mod] = ACTIONS(1544), - [anon_sym_SLASH_SLASH] = ACTIONS(1544), - [anon_sym_PLUS] = ACTIONS(1542), - [anon_sym_DASH] = ACTIONS(1544), - [anon_sym_bit_DASHshl] = ACTIONS(1544), - [anon_sym_bit_DASHshr] = ACTIONS(1544), - [anon_sym_EQ_TILDE] = ACTIONS(1544), - [anon_sym_BANG_TILDE] = ACTIONS(1544), - [anon_sym_bit_DASHand] = ACTIONS(1544), - [anon_sym_bit_DASHxor] = ACTIONS(1544), - [anon_sym_bit_DASHor] = ACTIONS(1544), - [anon_sym_and] = ACTIONS(1544), - [anon_sym_xor] = ACTIONS(1544), - [anon_sym_or] = ACTIONS(1544), - [anon_sym_in] = ACTIONS(1544), - [anon_sym_not_DASHin] = ACTIONS(1544), - [anon_sym_starts_DASHwith] = ACTIONS(1544), - [anon_sym_ends_DASHwith] = ACTIONS(1544), - [anon_sym_EQ_EQ] = ACTIONS(1544), - [anon_sym_BANG_EQ] = ACTIONS(1544), - [anon_sym_LT] = ACTIONS(1542), - [anon_sym_LT_EQ] = ACTIONS(1544), - [anon_sym_GT] = ACTIONS(1542), - [anon_sym_GT_EQ] = ACTIONS(1544), - [aux_sym_cmd_identifier_token41] = ACTIONS(1542), - [sym__newline] = ACTIONS(1542), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_err_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_GT_PIPE] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), - [anon_sym_GT2] = ACTIONS(1542), - [anon_sym_DASH2] = ACTIONS(1542), - [anon_sym_in2] = ACTIONS(1542), - [anon_sym_RBRACE] = ACTIONS(1542), - [anon_sym_STAR2] = ACTIONS(1542), - [anon_sym_and2] = ACTIONS(1542), - [anon_sym_xor2] = ACTIONS(1542), - [anon_sym_or2] = ACTIONS(1542), - [anon_sym_not_DASHin2] = ACTIONS(1542), - [anon_sym_starts_DASHwith2] = ACTIONS(1542), - [anon_sym_ends_DASHwith2] = ACTIONS(1542), - [anon_sym_EQ_EQ2] = ACTIONS(1542), - [anon_sym_BANG_EQ2] = ACTIONS(1542), - [anon_sym_LT2] = ACTIONS(1542), - [anon_sym_LT_EQ2] = ACTIONS(1542), - [anon_sym_GT_EQ2] = ACTIONS(1542), - [anon_sym_EQ_TILDE2] = ACTIONS(1542), - [anon_sym_BANG_TILDE2] = ACTIONS(1542), - [anon_sym_STAR_STAR2] = ACTIONS(1542), - [anon_sym_PLUS_PLUS2] = ACTIONS(1542), - [anon_sym_SLASH2] = ACTIONS(1542), - [anon_sym_mod2] = ACTIONS(1542), - [anon_sym_SLASH_SLASH2] = ACTIONS(1542), - [anon_sym_PLUS2] = ACTIONS(1542), - [anon_sym_bit_DASHshl2] = ACTIONS(1542), - [anon_sym_bit_DASHshr2] = ACTIONS(1542), - [anon_sym_bit_DASHand2] = ACTIONS(1542), - [anon_sym_bit_DASHxor2] = ACTIONS(1542), - [anon_sym_bit_DASHor2] = ACTIONS(1542), - [anon_sym_DOT_DOT2] = ACTIONS(1542), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1544), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1544), - [aux_sym__immediate_decimal_token1] = ACTIONS(2758), - [aux_sym__immediate_decimal_token2] = ACTIONS(2760), - [sym_filesize_unit] = ACTIONS(1542), - [sym_duration_unit] = ACTIONS(1544), - [anon_sym_COLON2] = ACTIONS(1542), - [anon_sym_err_GT] = ACTIONS(1542), - [anon_sym_out_GT] = ACTIONS(1542), - [anon_sym_e_GT] = ACTIONS(1542), - [anon_sym_o_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT] = ACTIONS(1542), - [anon_sym_err_GT_GT] = ACTIONS(1542), - [anon_sym_out_GT_GT] = ACTIONS(1542), - [anon_sym_e_GT_GT] = ACTIONS(1542), - [anon_sym_o_GT_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), + [anon_sym_STAR_STAR] = ACTIONS(1620), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1618), + [anon_sym_SLASH] = ACTIONS(1618), + [anon_sym_mod] = ACTIONS(1620), + [anon_sym_SLASH_SLASH] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1618), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_bit_DASHshl] = ACTIONS(1620), + [anon_sym_bit_DASHshr] = ACTIONS(1620), + [anon_sym_EQ_TILDE] = ACTIONS(1620), + [anon_sym_BANG_TILDE] = ACTIONS(1620), + [anon_sym_bit_DASHand] = ACTIONS(1620), + [anon_sym_bit_DASHxor] = ACTIONS(1620), + [anon_sym_bit_DASHor] = ACTIONS(1620), + [anon_sym_and] = ACTIONS(1620), + [anon_sym_xor] = ACTIONS(1620), + [anon_sym_or] = ACTIONS(1620), + [anon_sym_in] = ACTIONS(1620), + [anon_sym_not_DASHin] = ACTIONS(1620), + [anon_sym_has] = ACTIONS(1620), + [anon_sym_not_DASHhas] = ACTIONS(1620), + [anon_sym_starts_DASHwith] = ACTIONS(1620), + [anon_sym_ends_DASHwith] = ACTIONS(1620), + [anon_sym_EQ_EQ] = ACTIONS(1620), + [anon_sym_BANG_EQ] = ACTIONS(1620), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_LT_EQ] = ACTIONS(1620), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_GT_EQ] = ACTIONS(1620), + [aux_sym_cmd_identifier_token41] = ACTIONS(1618), + [sym__newline] = ACTIONS(1618), + [anon_sym_SEMI] = ACTIONS(1618), + [anon_sym_PIPE] = ACTIONS(1618), + [anon_sym_err_GT_PIPE] = ACTIONS(1618), + [anon_sym_out_GT_PIPE] = ACTIONS(1618), + [anon_sym_e_GT_PIPE] = ACTIONS(1618), + [anon_sym_o_GT_PIPE] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1618), + [anon_sym_GT2] = ACTIONS(1618), + [anon_sym_DASH2] = ACTIONS(1618), + [anon_sym_in2] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1618), + [anon_sym_STAR2] = ACTIONS(1618), + [anon_sym_and2] = ACTIONS(1618), + [anon_sym_xor2] = ACTIONS(1618), + [anon_sym_or2] = ACTIONS(1618), + [anon_sym_not_DASHin2] = ACTIONS(1618), + [anon_sym_has2] = ACTIONS(1618), + [anon_sym_not_DASHhas2] = ACTIONS(1618), + [anon_sym_starts_DASHwith2] = ACTIONS(1618), + [anon_sym_ends_DASHwith2] = ACTIONS(1618), + [anon_sym_EQ_EQ2] = ACTIONS(1618), + [anon_sym_BANG_EQ2] = ACTIONS(1618), + [anon_sym_LT2] = ACTIONS(1618), + [anon_sym_LT_EQ2] = ACTIONS(1618), + [anon_sym_GT_EQ2] = ACTIONS(1618), + [anon_sym_EQ_TILDE2] = ACTIONS(1618), + [anon_sym_BANG_TILDE2] = ACTIONS(1618), + [anon_sym_STAR_STAR2] = ACTIONS(1618), + [anon_sym_PLUS_PLUS2] = ACTIONS(1618), + [anon_sym_SLASH2] = ACTIONS(1618), + [anon_sym_mod2] = ACTIONS(1618), + [anon_sym_SLASH_SLASH2] = ACTIONS(1618), + [anon_sym_PLUS2] = ACTIONS(1618), + [anon_sym_bit_DASHshl2] = ACTIONS(1618), + [anon_sym_bit_DASHshr2] = ACTIONS(1618), + [anon_sym_bit_DASHand2] = ACTIONS(1618), + [anon_sym_bit_DASHxor2] = ACTIONS(1618), + [anon_sym_bit_DASHor2] = ACTIONS(1618), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [aux_sym__immediate_decimal_token2] = ACTIONS(2538), + [sym_filesize_unit] = ACTIONS(1618), + [sym_duration_unit] = ACTIONS(1620), + [anon_sym_COLON2] = ACTIONS(1618), + [anon_sym_err_GT] = ACTIONS(1618), + [anon_sym_out_GT] = ACTIONS(1618), + [anon_sym_e_GT] = ACTIONS(1618), + [anon_sym_o_GT] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT] = ACTIONS(1618), + [anon_sym_err_GT_GT] = ACTIONS(1618), + [anon_sym_out_GT_GT] = ACTIONS(1618), + [anon_sym_e_GT_GT] = ACTIONS(1618), + [anon_sym_o_GT_GT] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1618), [anon_sym_POUND] = ACTIONS(3), }, [764] = { - [sym_expr_parenthesized] = STATE(1584), - [sym_val_range] = STATE(1857), - [sym__val_range] = STATE(7834), - [sym__val_range_with_end] = STATE(7414), - [sym__value] = STATE(1857), - [sym_val_nothing] = STATE(1798), - [sym_val_bool] = STATE(1575), - [sym_val_variable] = STATE(1529), - [sym_val_number] = STATE(1798), - [sym__val_number_decimal] = STATE(1259), - [sym__val_number] = STATE(1706), - [sym_val_duration] = STATE(1798), - [sym_val_filesize] = STATE(1798), - [sym_val_binary] = STATE(1798), - [sym_val_string] = STATE(1798), - [sym__raw_str] = STATE(1731), - [sym__str_double_quotes] = STATE(1731), - [sym_val_interpolated] = STATE(1798), - [sym__inter_single_quotes] = STATE(1778), - [sym__inter_double_quotes] = STATE(1780), - [sym_val_list] = STATE(1798), - [sym_val_record] = STATE(1798), - [sym_val_table] = STATE(1798), - [sym_val_closure] = STATE(1798), - [sym__flag] = STATE(1857), - [sym_short_flag] = STATE(1765), - [sym_long_flag] = STATE(1765), - [sym_unquoted] = STATE(1663), - [sym__unquoted_with_expr] = STATE(1859), - [sym__unquoted_anonymous_prefix] = STATE(6713), + [aux_sym__pipe_separator] = STATE(778), [sym_comment] = STATE(764), - [aux_sym_shebang_repeat1] = STATE(1049), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(762), - [sym__newline] = ACTIONS(2762), - [anon_sym_SEMI] = ACTIONS(2765), - [anon_sym_PIPE] = ACTIONS(2765), - [anon_sym_err_GT_PIPE] = ACTIONS(2765), - [anon_sym_out_GT_PIPE] = ACTIONS(2765), - [anon_sym_e_GT_PIPE] = ACTIONS(2765), - [anon_sym_o_GT_PIPE] = ACTIONS(2765), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2765), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2765), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2765), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2765), - [anon_sym_LBRACK] = ACTIONS(2618), - [anon_sym_LPAREN] = ACTIONS(2620), - [anon_sym_RPAREN] = ACTIONS(2765), - [anon_sym_DOLLAR] = ACTIONS(2622), - [anon_sym_DASH_DASH] = ACTIONS(2624), - [anon_sym_DASH2] = ACTIONS(2626), - [anon_sym_LBRACE] = ACTIONS(2628), - [anon_sym_DOT_DOT] = ACTIONS(2630), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2632), - [anon_sym_DOT_DOT_LT] = ACTIONS(2632), - [anon_sym_null] = ACTIONS(2634), - [anon_sym_true] = ACTIONS(2636), - [anon_sym_false] = ACTIONS(2636), - [aux_sym__val_number_decimal_token1] = ACTIONS(2638), - [aux_sym__val_number_decimal_token2] = ACTIONS(2640), - [aux_sym__val_number_decimal_token3] = ACTIONS(2642), - [aux_sym__val_number_decimal_token4] = ACTIONS(2644), - [aux_sym__val_number_token1] = ACTIONS(2646), - [aux_sym__val_number_token2] = ACTIONS(2646), - [aux_sym__val_number_token3] = ACTIONS(2646), - [aux_sym__val_number_token4] = ACTIONS(2648), - [aux_sym__val_number_token5] = ACTIONS(2648), - [aux_sym__val_number_token6] = ACTIONS(2648), - [anon_sym_0b] = ACTIONS(2650), - [anon_sym_0o] = ACTIONS(2652), - [anon_sym_0x] = ACTIONS(2652), - [sym_val_date] = ACTIONS(2654), - [anon_sym_DQUOTE] = ACTIONS(2656), - [sym__str_single_quotes] = ACTIONS(2658), - [sym__str_back_ticks] = ACTIONS(2658), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2660), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2662), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(2668), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2670), + [aux_sym_shebang_repeat1] = STATE(5142), + [aux_sym_cmd_identifier_token1] = ACTIONS(2540), + [aux_sym_cmd_identifier_token2] = ACTIONS(2542), + [aux_sym_cmd_identifier_token3] = ACTIONS(2542), + [aux_sym_cmd_identifier_token4] = ACTIONS(2542), + [aux_sym_cmd_identifier_token5] = ACTIONS(2542), + [aux_sym_cmd_identifier_token6] = ACTIONS(2542), + [aux_sym_cmd_identifier_token7] = ACTIONS(2542), + [aux_sym_cmd_identifier_token8] = ACTIONS(2542), + [aux_sym_cmd_identifier_token9] = ACTIONS(2540), + [aux_sym_cmd_identifier_token10] = ACTIONS(2542), + [aux_sym_cmd_identifier_token11] = ACTIONS(2542), + [aux_sym_cmd_identifier_token12] = ACTIONS(2542), + [aux_sym_cmd_identifier_token13] = ACTIONS(2540), + [aux_sym_cmd_identifier_token14] = ACTIONS(2542), + [aux_sym_cmd_identifier_token15] = ACTIONS(2540), + [aux_sym_cmd_identifier_token16] = ACTIONS(2542), + [aux_sym_cmd_identifier_token17] = ACTIONS(2542), + [aux_sym_cmd_identifier_token18] = ACTIONS(2540), + [aux_sym_cmd_identifier_token19] = ACTIONS(2542), + [aux_sym_cmd_identifier_token20] = ACTIONS(2542), + [aux_sym_cmd_identifier_token21] = ACTIONS(2542), + [aux_sym_cmd_identifier_token22] = ACTIONS(2542), + [aux_sym_cmd_identifier_token23] = ACTIONS(2542), + [aux_sym_cmd_identifier_token24] = ACTIONS(2542), + [aux_sym_cmd_identifier_token25] = ACTIONS(2542), + [aux_sym_cmd_identifier_token26] = ACTIONS(2542), + [aux_sym_cmd_identifier_token27] = ACTIONS(2542), + [aux_sym_cmd_identifier_token28] = ACTIONS(2542), + [aux_sym_cmd_identifier_token29] = ACTIONS(2542), + [aux_sym_cmd_identifier_token30] = ACTIONS(2542), + [aux_sym_cmd_identifier_token31] = ACTIONS(2542), + [aux_sym_cmd_identifier_token32] = ACTIONS(2540), + [aux_sym_cmd_identifier_token33] = ACTIONS(2542), + [aux_sym_cmd_identifier_token34] = ACTIONS(2540), + [aux_sym_cmd_identifier_token35] = ACTIONS(2542), + [aux_sym_cmd_identifier_token36] = ACTIONS(2542), + [aux_sym_cmd_identifier_token37] = ACTIONS(2542), + [aux_sym_cmd_identifier_token38] = ACTIONS(2540), + [aux_sym_cmd_identifier_token39] = ACTIONS(2542), + [aux_sym_cmd_identifier_token40] = ACTIONS(2542), + [sym__newline] = ACTIONS(2544), + [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(2542), + [anon_sym_LPAREN] = ACTIONS(2542), + [anon_sym_DOLLAR] = ACTIONS(2540), + [anon_sym_DASH2] = ACTIONS(2540), + [anon_sym_break] = ACTIONS(2540), + [anon_sym_continue] = ACTIONS(2540), + [anon_sym_do] = ACTIONS(2540), + [anon_sym_if] = ACTIONS(2540), + [anon_sym_match] = ACTIONS(2540), + [anon_sym_LBRACE] = ACTIONS(2542), + [anon_sym_DOT_DOT] = ACTIONS(2540), + [anon_sym_try] = ACTIONS(2540), + [anon_sym_return] = ACTIONS(2540), + [anon_sym_where] = ACTIONS(2542), + [aux_sym_expr_unary_token1] = ACTIONS(2542), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2542), + [anon_sym_DOT_DOT_LT] = ACTIONS(2542), + [anon_sym_null] = ACTIONS(2540), + [anon_sym_true] = ACTIONS(2540), + [anon_sym_false] = ACTIONS(2540), + [aux_sym__val_number_decimal_token1] = ACTIONS(2540), + [aux_sym__val_number_decimal_token2] = ACTIONS(2542), + [aux_sym__val_number_decimal_token3] = ACTIONS(2542), + [aux_sym__val_number_decimal_token4] = ACTIONS(2542), + [aux_sym__val_number_token1] = ACTIONS(2542), + [aux_sym__val_number_token2] = ACTIONS(2542), + [aux_sym__val_number_token3] = ACTIONS(2542), + [aux_sym__val_number_token4] = ACTIONS(2540), + [aux_sym__val_number_token5] = ACTIONS(2540), + [aux_sym__val_number_token6] = ACTIONS(2540), + [anon_sym_0b] = ACTIONS(2540), + [anon_sym_0o] = ACTIONS(2540), + [anon_sym_0x] = ACTIONS(2540), + [sym_val_date] = ACTIONS(2542), + [anon_sym_DQUOTE] = ACTIONS(2542), + [sym__str_single_quotes] = ACTIONS(2542), + [sym__str_back_ticks] = ACTIONS(2542), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2542), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2542), + [aux_sym_env_var_token1] = ACTIONS(2540), + [anon_sym_CARET] = ACTIONS(2542), + [aux_sym_command_token1] = ACTIONS(2542), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2542), }, [765] = { - [sym_expr_parenthesized] = STATE(1584), - [sym_val_range] = STATE(1857), - [sym__val_range] = STATE(7834), - [sym__val_range_with_end] = STATE(7414), - [sym__value] = STATE(1857), - [sym_val_nothing] = STATE(1798), - [sym_val_bool] = STATE(1575), - [sym_val_variable] = STATE(1529), - [sym_val_number] = STATE(1798), - [sym__val_number_decimal] = STATE(1259), - [sym__val_number] = STATE(1706), - [sym_val_duration] = STATE(1798), - [sym_val_filesize] = STATE(1798), - [sym_val_binary] = STATE(1798), - [sym_val_string] = STATE(1798), - [sym__raw_str] = STATE(1731), - [sym__str_double_quotes] = STATE(1731), - [sym_val_interpolated] = STATE(1798), - [sym__inter_single_quotes] = STATE(1778), - [sym__inter_double_quotes] = STATE(1780), - [sym_val_list] = STATE(1798), - [sym_val_record] = STATE(1798), - [sym_val_table] = STATE(1798), - [sym_val_closure] = STATE(1798), - [sym__flag] = STATE(1857), - [sym_short_flag] = STATE(1765), - [sym_long_flag] = STATE(1765), - [sym_unquoted] = STATE(1663), - [sym__unquoted_with_expr] = STATE(1859), - [sym__unquoted_anonymous_prefix] = STATE(6713), [sym_comment] = STATE(765), - [aux_sym_shebang_repeat1] = STATE(1049), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(764), - [sym__newline] = ACTIONS(2767), - [anon_sym_SEMI] = ACTIONS(2770), - [anon_sym_PIPE] = ACTIONS(2770), - [anon_sym_err_GT_PIPE] = ACTIONS(2770), - [anon_sym_out_GT_PIPE] = ACTIONS(2770), - [anon_sym_e_GT_PIPE] = ACTIONS(2770), - [anon_sym_o_GT_PIPE] = ACTIONS(2770), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2770), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2770), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2770), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2770), - [anon_sym_LBRACK] = ACTIONS(2618), - [anon_sym_LPAREN] = ACTIONS(2620), - [anon_sym_RPAREN] = ACTIONS(2770), - [anon_sym_DOLLAR] = ACTIONS(2622), - [anon_sym_DASH_DASH] = ACTIONS(2624), - [anon_sym_DASH2] = ACTIONS(2626), - [anon_sym_LBRACE] = ACTIONS(2628), - [anon_sym_DOT_DOT] = ACTIONS(2630), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2632), - [anon_sym_DOT_DOT_LT] = ACTIONS(2632), - [anon_sym_null] = ACTIONS(2634), - [anon_sym_true] = ACTIONS(2636), - [anon_sym_false] = ACTIONS(2636), - [aux_sym__val_number_decimal_token1] = ACTIONS(2638), - [aux_sym__val_number_decimal_token2] = ACTIONS(2640), - [aux_sym__val_number_decimal_token3] = ACTIONS(2642), - [aux_sym__val_number_decimal_token4] = ACTIONS(2644), - [aux_sym__val_number_token1] = ACTIONS(2646), - [aux_sym__val_number_token2] = ACTIONS(2646), - [aux_sym__val_number_token3] = ACTIONS(2646), - [aux_sym__val_number_token4] = ACTIONS(2648), - [aux_sym__val_number_token5] = ACTIONS(2648), - [aux_sym__val_number_token6] = ACTIONS(2648), - [anon_sym_0b] = ACTIONS(2650), - [anon_sym_0o] = ACTIONS(2652), - [anon_sym_0x] = ACTIONS(2652), - [sym_val_date] = ACTIONS(2654), - [anon_sym_DQUOTE] = ACTIONS(2656), - [sym__str_single_quotes] = ACTIONS(2658), - [sym__str_back_ticks] = ACTIONS(2658), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2660), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2662), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(2668), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2670), + [ts_builtin_sym_end] = ACTIONS(1620), + [anon_sym_STAR_STAR] = ACTIONS(1620), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1618), + [anon_sym_SLASH] = ACTIONS(1618), + [anon_sym_mod] = ACTIONS(1620), + [anon_sym_SLASH_SLASH] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1618), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_bit_DASHshl] = ACTIONS(1620), + [anon_sym_bit_DASHshr] = ACTIONS(1620), + [anon_sym_EQ_TILDE] = ACTIONS(1620), + [anon_sym_BANG_TILDE] = ACTIONS(1620), + [anon_sym_bit_DASHand] = ACTIONS(1620), + [anon_sym_bit_DASHxor] = ACTIONS(1620), + [anon_sym_bit_DASHor] = ACTIONS(1620), + [anon_sym_and] = ACTIONS(1620), + [anon_sym_xor] = ACTIONS(1620), + [anon_sym_or] = ACTIONS(1620), + [anon_sym_in] = ACTIONS(1620), + [anon_sym_not_DASHin] = ACTIONS(1620), + [anon_sym_has] = ACTIONS(1620), + [anon_sym_not_DASHhas] = ACTIONS(1620), + [anon_sym_starts_DASHwith] = ACTIONS(1620), + [anon_sym_ends_DASHwith] = ACTIONS(1620), + [anon_sym_EQ_EQ] = ACTIONS(1620), + [anon_sym_BANG_EQ] = ACTIONS(1620), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_LT_EQ] = ACTIONS(1620), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_GT_EQ] = ACTIONS(1620), + [aux_sym_cmd_identifier_token41] = ACTIONS(1618), + [sym__newline] = ACTIONS(1618), + [anon_sym_SEMI] = ACTIONS(1618), + [anon_sym_PIPE] = ACTIONS(1618), + [anon_sym_err_GT_PIPE] = ACTIONS(1618), + [anon_sym_out_GT_PIPE] = ACTIONS(1618), + [anon_sym_e_GT_PIPE] = ACTIONS(1618), + [anon_sym_o_GT_PIPE] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1618), + [anon_sym_GT2] = ACTIONS(1618), + [anon_sym_DASH2] = ACTIONS(1618), + [anon_sym_in2] = ACTIONS(1618), + [anon_sym_STAR2] = ACTIONS(1618), + [anon_sym_and2] = ACTIONS(1618), + [anon_sym_xor2] = ACTIONS(1618), + [anon_sym_or2] = ACTIONS(1618), + [anon_sym_not_DASHin2] = ACTIONS(1618), + [anon_sym_has2] = ACTIONS(1618), + [anon_sym_not_DASHhas2] = ACTIONS(1618), + [anon_sym_starts_DASHwith2] = ACTIONS(1618), + [anon_sym_ends_DASHwith2] = ACTIONS(1618), + [anon_sym_EQ_EQ2] = ACTIONS(1618), + [anon_sym_BANG_EQ2] = ACTIONS(1618), + [anon_sym_LT2] = ACTIONS(1618), + [anon_sym_LT_EQ2] = ACTIONS(1618), + [anon_sym_GT_EQ2] = ACTIONS(1618), + [anon_sym_EQ_TILDE2] = ACTIONS(1618), + [anon_sym_BANG_TILDE2] = ACTIONS(1618), + [anon_sym_STAR_STAR2] = ACTIONS(1618), + [anon_sym_PLUS_PLUS2] = ACTIONS(1618), + [anon_sym_SLASH2] = ACTIONS(1618), + [anon_sym_mod2] = ACTIONS(1618), + [anon_sym_SLASH_SLASH2] = ACTIONS(1618), + [anon_sym_PLUS2] = ACTIONS(1618), + [anon_sym_bit_DASHshl2] = ACTIONS(1618), + [anon_sym_bit_DASHshr2] = ACTIONS(1618), + [anon_sym_bit_DASHand2] = ACTIONS(1618), + [anon_sym_bit_DASHxor2] = ACTIONS(1618), + [anon_sym_bit_DASHor2] = ACTIONS(1618), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [aux_sym__immediate_decimal_token2] = ACTIONS(2548), + [sym_filesize_unit] = ACTIONS(1618), + [sym_duration_unit] = ACTIONS(1620), + [anon_sym_err_GT] = ACTIONS(1618), + [anon_sym_out_GT] = ACTIONS(1618), + [anon_sym_e_GT] = ACTIONS(1618), + [anon_sym_o_GT] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT] = ACTIONS(1618), + [anon_sym_err_GT_GT] = ACTIONS(1618), + [anon_sym_out_GT_GT] = ACTIONS(1618), + [anon_sym_e_GT_GT] = ACTIONS(1618), + [anon_sym_o_GT_GT] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(3), }, [766] = { - [sym_expr_parenthesized] = STATE(1584), - [sym_val_range] = STATE(1857), - [sym__val_range] = STATE(7834), - [sym__val_range_with_end] = STATE(7414), - [sym__value] = STATE(1857), - [sym_val_nothing] = STATE(1798), - [sym_val_bool] = STATE(1575), - [sym_val_variable] = STATE(1529), - [sym_val_number] = STATE(1798), - [sym__val_number_decimal] = STATE(1259), - [sym__val_number] = STATE(1706), - [sym_val_duration] = STATE(1798), - [sym_val_filesize] = STATE(1798), - [sym_val_binary] = STATE(1798), - [sym_val_string] = STATE(1798), - [sym__raw_str] = STATE(1731), - [sym__str_double_quotes] = STATE(1731), - [sym_val_interpolated] = STATE(1798), - [sym__inter_single_quotes] = STATE(1778), - [sym__inter_double_quotes] = STATE(1780), - [sym_val_list] = STATE(1798), - [sym_val_record] = STATE(1798), - [sym_val_table] = STATE(1798), - [sym_val_closure] = STATE(1798), - [sym__flag] = STATE(1857), - [sym_short_flag] = STATE(1765), - [sym_long_flag] = STATE(1765), - [sym_unquoted] = STATE(1663), - [sym__unquoted_with_expr] = STATE(1859), - [sym__unquoted_anonymous_prefix] = STATE(6713), [sym_comment] = STATE(766), - [aux_sym_shebang_repeat1] = STATE(1049), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(762), - [sym__newline] = ACTIONS(2767), - [anon_sym_SEMI] = ACTIONS(2770), - [anon_sym_PIPE] = ACTIONS(2770), - [anon_sym_err_GT_PIPE] = ACTIONS(2770), - [anon_sym_out_GT_PIPE] = ACTIONS(2770), - [anon_sym_e_GT_PIPE] = ACTIONS(2770), - [anon_sym_o_GT_PIPE] = ACTIONS(2770), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2770), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2770), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2770), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2770), - [anon_sym_LBRACK] = ACTIONS(2618), - [anon_sym_LPAREN] = ACTIONS(2620), - [anon_sym_RPAREN] = ACTIONS(2770), - [anon_sym_DOLLAR] = ACTIONS(2622), - [anon_sym_DASH_DASH] = ACTIONS(2624), - [anon_sym_DASH2] = ACTIONS(2626), - [anon_sym_LBRACE] = ACTIONS(2628), - [anon_sym_DOT_DOT] = ACTIONS(2630), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2632), - [anon_sym_DOT_DOT_LT] = ACTIONS(2632), - [anon_sym_null] = ACTIONS(2634), - [anon_sym_true] = ACTIONS(2636), - [anon_sym_false] = ACTIONS(2636), - [aux_sym__val_number_decimal_token1] = ACTIONS(2638), - [aux_sym__val_number_decimal_token2] = ACTIONS(2640), - [aux_sym__val_number_decimal_token3] = ACTIONS(2642), - [aux_sym__val_number_decimal_token4] = ACTIONS(2644), - [aux_sym__val_number_token1] = ACTIONS(2646), - [aux_sym__val_number_token2] = ACTIONS(2646), - [aux_sym__val_number_token3] = ACTIONS(2646), - [aux_sym__val_number_token4] = ACTIONS(2648), - [aux_sym__val_number_token5] = ACTIONS(2648), - [aux_sym__val_number_token6] = ACTIONS(2648), - [anon_sym_0b] = ACTIONS(2650), - [anon_sym_0o] = ACTIONS(2652), - [anon_sym_0x] = ACTIONS(2652), - [sym_val_date] = ACTIONS(2654), - [anon_sym_DQUOTE] = ACTIONS(2656), - [sym__str_single_quotes] = ACTIONS(2658), - [sym__str_back_ticks] = ACTIONS(2658), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2660), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2662), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(2668), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2670), + [anon_sym_STAR_STAR] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_STAR] = ACTIONS(1504), + [anon_sym_SLASH] = ACTIONS(1504), + [anon_sym_mod] = ACTIONS(1506), + [anon_sym_SLASH_SLASH] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_bit_DASHshl] = ACTIONS(1506), + [anon_sym_bit_DASHshr] = ACTIONS(1506), + [anon_sym_EQ_TILDE] = ACTIONS(1506), + [anon_sym_BANG_TILDE] = ACTIONS(1506), + [anon_sym_bit_DASHand] = ACTIONS(1506), + [anon_sym_bit_DASHxor] = ACTIONS(1506), + [anon_sym_bit_DASHor] = ACTIONS(1506), + [anon_sym_and] = ACTIONS(1506), + [anon_sym_xor] = ACTIONS(1506), + [anon_sym_or] = ACTIONS(1506), + [anon_sym_in] = ACTIONS(1506), + [anon_sym_not_DASHin] = ACTIONS(1506), + [anon_sym_has] = ACTIONS(1506), + [anon_sym_not_DASHhas] = 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_LT] = ACTIONS(1504), + [anon_sym_LT_EQ] = ACTIONS(1506), + [anon_sym_GT] = ACTIONS(1504), + [anon_sym_GT_EQ] = ACTIONS(1506), + [aux_sym_cmd_identifier_token41] = ACTIONS(1504), + [sym__newline] = ACTIONS(1504), + [anon_sym_SEMI] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_err_GT_PIPE] = ACTIONS(1504), + [anon_sym_out_GT_PIPE] = ACTIONS(1504), + [anon_sym_e_GT_PIPE] = ACTIONS(1504), + [anon_sym_o_GT_PIPE] = ACTIONS(1504), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1504), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1504), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1504), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1504), + [anon_sym_GT2] = ACTIONS(1504), + [anon_sym_DASH2] = ACTIONS(1504), + [anon_sym_in2] = ACTIONS(1504), + [anon_sym_STAR2] = ACTIONS(1504), + [anon_sym_and2] = ACTIONS(1504), + [anon_sym_xor2] = ACTIONS(1504), + [anon_sym_or2] = ACTIONS(1504), + [anon_sym_not_DASHin2] = ACTIONS(1504), + [anon_sym_has2] = ACTIONS(1504), + [anon_sym_not_DASHhas2] = ACTIONS(1504), + [anon_sym_starts_DASHwith2] = ACTIONS(1504), + [anon_sym_ends_DASHwith2] = ACTIONS(1504), + [anon_sym_EQ_EQ2] = ACTIONS(1504), + [anon_sym_BANG_EQ2] = ACTIONS(1504), + [anon_sym_LT2] = ACTIONS(1504), + [anon_sym_LT_EQ2] = ACTIONS(1504), + [anon_sym_GT_EQ2] = ACTIONS(1504), + [anon_sym_EQ_TILDE2] = ACTIONS(1504), + [anon_sym_BANG_TILDE2] = ACTIONS(1504), + [anon_sym_STAR_STAR2] = ACTIONS(1504), + [anon_sym_PLUS_PLUS2] = ACTIONS(1504), + [anon_sym_SLASH2] = ACTIONS(1504), + [anon_sym_mod2] = ACTIONS(1504), + [anon_sym_SLASH_SLASH2] = ACTIONS(1504), + [anon_sym_PLUS2] = ACTIONS(1504), + [anon_sym_bit_DASHshl2] = ACTIONS(1504), + [anon_sym_bit_DASHshr2] = ACTIONS(1504), + [anon_sym_bit_DASHand2] = ACTIONS(1504), + [anon_sym_bit_DASHxor2] = ACTIONS(1504), + [anon_sym_bit_DASHor2] = ACTIONS(1504), + [anon_sym_DOT_DOT2] = ACTIONS(1504), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1506), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1506), + [aux_sym__immediate_decimal_token1] = ACTIONS(2550), + [aux_sym__immediate_decimal_token2] = ACTIONS(2552), + [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(1504), + [anon_sym_out_GT_GT] = ACTIONS(1504), + [anon_sym_e_GT_GT] = ACTIONS(1504), + [anon_sym_o_GT_GT] = ACTIONS(1504), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1504), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1504), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1504), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1504), + [anon_sym_POUND] = ACTIONS(3), }, [767] = { [sym_comment] = STATE(767), - [aux_sym_cmd_identifier_token1] = ACTIONS(2772), - [aux_sym_cmd_identifier_token2] = ACTIONS(2774), - [aux_sym_cmd_identifier_token3] = ACTIONS(2774), - [aux_sym_cmd_identifier_token4] = ACTIONS(2774), - [aux_sym_cmd_identifier_token5] = ACTIONS(2774), - [aux_sym_cmd_identifier_token6] = ACTIONS(2774), - [aux_sym_cmd_identifier_token7] = ACTIONS(2774), - [aux_sym_cmd_identifier_token8] = ACTIONS(2774), - [aux_sym_cmd_identifier_token9] = ACTIONS(2772), - [aux_sym_cmd_identifier_token10] = ACTIONS(2774), - [aux_sym_cmd_identifier_token11] = ACTIONS(2774), - [aux_sym_cmd_identifier_token12] = ACTIONS(2774), - [aux_sym_cmd_identifier_token13] = ACTIONS(2772), - [aux_sym_cmd_identifier_token14] = ACTIONS(2774), - [aux_sym_cmd_identifier_token15] = ACTIONS(2772), - [aux_sym_cmd_identifier_token16] = ACTIONS(2774), - [aux_sym_cmd_identifier_token17] = ACTIONS(2774), - [aux_sym_cmd_identifier_token18] = ACTIONS(2772), - [aux_sym_cmd_identifier_token19] = ACTIONS(2774), - [aux_sym_cmd_identifier_token20] = ACTIONS(2774), - [aux_sym_cmd_identifier_token21] = ACTIONS(2774), - [aux_sym_cmd_identifier_token22] = ACTIONS(2774), - [aux_sym_cmd_identifier_token23] = ACTIONS(2774), - [aux_sym_cmd_identifier_token24] = ACTIONS(2774), - [aux_sym_cmd_identifier_token25] = ACTIONS(2774), - [aux_sym_cmd_identifier_token26] = ACTIONS(2774), - [aux_sym_cmd_identifier_token27] = ACTIONS(2774), - [aux_sym_cmd_identifier_token28] = ACTIONS(2774), - [aux_sym_cmd_identifier_token29] = ACTIONS(2774), - [aux_sym_cmd_identifier_token30] = ACTIONS(2774), - [aux_sym_cmd_identifier_token31] = ACTIONS(2774), - [aux_sym_cmd_identifier_token32] = ACTIONS(2772), - [aux_sym_cmd_identifier_token33] = ACTIONS(2774), - [aux_sym_cmd_identifier_token34] = ACTIONS(2772), - [aux_sym_cmd_identifier_token35] = ACTIONS(2774), - [aux_sym_cmd_identifier_token36] = ACTIONS(2774), - [aux_sym_cmd_identifier_token37] = ACTIONS(2774), - [aux_sym_cmd_identifier_token38] = ACTIONS(2772), - [aux_sym_cmd_identifier_token39] = ACTIONS(2774), - [aux_sym_cmd_identifier_token40] = ACTIONS(2774), - [sym__newline] = ACTIONS(1309), - [anon_sym_PIPE] = ACTIONS(1309), - [anon_sym_err_GT_PIPE] = ACTIONS(1309), - [anon_sym_out_GT_PIPE] = ACTIONS(1309), - [anon_sym_e_GT_PIPE] = ACTIONS(1309), - [anon_sym_o_GT_PIPE] = ACTIONS(1309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1309), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_LPAREN] = ACTIONS(2774), - [anon_sym_DOLLAR] = ACTIONS(2772), - [anon_sym_DASH2] = ACTIONS(2772), - [anon_sym_break] = ACTIONS(2772), - [anon_sym_continue] = ACTIONS(2772), - [anon_sym_do] = ACTIONS(2772), - [anon_sym_if] = ACTIONS(2772), - [anon_sym_match] = ACTIONS(2772), - [anon_sym_LBRACE] = ACTIONS(2774), - [anon_sym_DOT_DOT] = ACTIONS(2772), - [anon_sym_try] = ACTIONS(2772), - [anon_sym_return] = ACTIONS(2772), - [anon_sym_where] = ACTIONS(2774), - [aux_sym_expr_unary_token1] = ACTIONS(2774), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2774), - [anon_sym_DOT_DOT_LT] = ACTIONS(2774), - [anon_sym_null] = ACTIONS(2772), - [anon_sym_true] = ACTIONS(2772), - [anon_sym_false] = ACTIONS(2772), - [aux_sym__val_number_decimal_token1] = ACTIONS(2772), - [aux_sym__val_number_decimal_token2] = ACTIONS(2774), - [aux_sym__val_number_decimal_token3] = ACTIONS(2774), - [aux_sym__val_number_decimal_token4] = ACTIONS(2774), - [aux_sym__val_number_token1] = ACTIONS(2774), - [aux_sym__val_number_token2] = ACTIONS(2774), - [aux_sym__val_number_token3] = ACTIONS(2774), - [aux_sym__val_number_token4] = ACTIONS(2772), - [aux_sym__val_number_token5] = ACTIONS(2772), - [aux_sym__val_number_token6] = ACTIONS(2772), - [anon_sym_0b] = ACTIONS(2772), - [anon_sym_0o] = ACTIONS(2772), - [anon_sym_0x] = ACTIONS(2772), - [sym_val_date] = ACTIONS(2774), - [anon_sym_DQUOTE] = ACTIONS(2774), - [sym__str_single_quotes] = ACTIONS(2774), - [sym__str_back_ticks] = ACTIONS(2774), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2774), - [aux_sym_env_var_token1] = ACTIONS(2772), - [anon_sym_CARET] = ACTIONS(2774), - [aux_sym_command_token1] = ACTIONS(2774), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2774), + [anon_sym_STAR_STAR] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_SLASH] = ACTIONS(1512), + [anon_sym_mod] = ACTIONS(1514), + [anon_sym_SLASH_SLASH] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_bit_DASHshl] = ACTIONS(1514), + [anon_sym_bit_DASHshr] = ACTIONS(1514), + [anon_sym_EQ_TILDE] = ACTIONS(1514), + [anon_sym_BANG_TILDE] = ACTIONS(1514), + [anon_sym_bit_DASHand] = ACTIONS(1514), + [anon_sym_bit_DASHxor] = ACTIONS(1514), + [anon_sym_bit_DASHor] = ACTIONS(1514), + [anon_sym_and] = ACTIONS(1514), + [anon_sym_xor] = ACTIONS(1514), + [anon_sym_or] = ACTIONS(1514), + [anon_sym_in] = ACTIONS(1514), + [anon_sym_not_DASHin] = ACTIONS(1514), + [anon_sym_has] = ACTIONS(1514), + [anon_sym_not_DASHhas] = ACTIONS(1514), + [anon_sym_starts_DASHwith] = ACTIONS(1514), + [anon_sym_ends_DASHwith] = ACTIONS(1514), + [anon_sym_EQ_EQ] = ACTIONS(1514), + [anon_sym_BANG_EQ] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_LT_EQ] = ACTIONS(1514), + [anon_sym_GT] = ACTIONS(1512), + [anon_sym_GT_EQ] = ACTIONS(1514), + [aux_sym_cmd_identifier_token41] = ACTIONS(1512), + [sym__newline] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_err_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_GT_PIPE] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1512), + [anon_sym_RPAREN] = ACTIONS(1512), + [anon_sym_GT2] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_in2] = ACTIONS(1512), + [anon_sym_STAR2] = ACTIONS(1512), + [anon_sym_and2] = ACTIONS(1512), + [anon_sym_xor2] = ACTIONS(1512), + [anon_sym_or2] = ACTIONS(1512), + [anon_sym_not_DASHin2] = ACTIONS(1512), + [anon_sym_has2] = ACTIONS(1512), + [anon_sym_not_DASHhas2] = ACTIONS(1512), + [anon_sym_starts_DASHwith2] = ACTIONS(1512), + [anon_sym_ends_DASHwith2] = ACTIONS(1512), + [anon_sym_EQ_EQ2] = ACTIONS(1512), + [anon_sym_BANG_EQ2] = ACTIONS(1512), + [anon_sym_LT2] = ACTIONS(1512), + [anon_sym_LT_EQ2] = ACTIONS(1512), + [anon_sym_GT_EQ2] = ACTIONS(1512), + [anon_sym_EQ_TILDE2] = ACTIONS(1512), + [anon_sym_BANG_TILDE2] = ACTIONS(1512), + [anon_sym_STAR_STAR2] = ACTIONS(1512), + [anon_sym_PLUS_PLUS2] = ACTIONS(1512), + [anon_sym_SLASH2] = ACTIONS(1512), + [anon_sym_mod2] = ACTIONS(1512), + [anon_sym_SLASH_SLASH2] = ACTIONS(1512), + [anon_sym_PLUS2] = ACTIONS(1512), + [anon_sym_bit_DASHshl2] = ACTIONS(1512), + [anon_sym_bit_DASHshr2] = ACTIONS(1512), + [anon_sym_bit_DASHand2] = ACTIONS(1512), + [anon_sym_bit_DASHxor2] = ACTIONS(1512), + [anon_sym_bit_DASHor2] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [aux_sym__immediate_decimal_token2] = ACTIONS(2524), + [sym_filesize_unit] = ACTIONS(1512), + [sym_duration_unit] = ACTIONS(1514), + [anon_sym_err_GT] = ACTIONS(1512), + [anon_sym_out_GT] = ACTIONS(1512), + [anon_sym_e_GT] = ACTIONS(1512), + [anon_sym_o_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT] = ACTIONS(1512), + [anon_sym_err_GT_GT] = ACTIONS(1512), + [anon_sym_out_GT_GT] = ACTIONS(1512), + [anon_sym_e_GT_GT] = ACTIONS(1512), + [anon_sym_o_GT_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(3), }, [768] = { + [aux_sym__pipe_separator] = STATE(778), [sym_comment] = STATE(768), - [aux_sym_cmd_identifier_token1] = ACTIONS(2520), - [aux_sym_cmd_identifier_token2] = ACTIONS(2522), - [aux_sym_cmd_identifier_token3] = ACTIONS(2522), - [aux_sym_cmd_identifier_token4] = ACTIONS(2522), - [aux_sym_cmd_identifier_token5] = ACTIONS(2522), - [aux_sym_cmd_identifier_token6] = ACTIONS(2522), - [aux_sym_cmd_identifier_token7] = ACTIONS(2522), - [aux_sym_cmd_identifier_token8] = ACTIONS(2522), - [aux_sym_cmd_identifier_token9] = ACTIONS(2520), - [aux_sym_cmd_identifier_token10] = ACTIONS(2522), - [aux_sym_cmd_identifier_token11] = ACTIONS(2522), - [aux_sym_cmd_identifier_token12] = ACTIONS(2522), - [aux_sym_cmd_identifier_token13] = ACTIONS(2520), - [aux_sym_cmd_identifier_token14] = ACTIONS(2522), - [aux_sym_cmd_identifier_token15] = ACTIONS(2520), - [aux_sym_cmd_identifier_token16] = ACTIONS(2522), - [aux_sym_cmd_identifier_token17] = ACTIONS(2522), - [aux_sym_cmd_identifier_token18] = ACTIONS(2520), - [aux_sym_cmd_identifier_token19] = ACTIONS(2522), - [aux_sym_cmd_identifier_token20] = ACTIONS(2522), - [aux_sym_cmd_identifier_token21] = ACTIONS(2522), - [aux_sym_cmd_identifier_token22] = ACTIONS(2522), - [aux_sym_cmd_identifier_token23] = ACTIONS(2522), - [aux_sym_cmd_identifier_token24] = ACTIONS(2522), - [aux_sym_cmd_identifier_token25] = ACTIONS(2522), - [aux_sym_cmd_identifier_token26] = ACTIONS(2522), - [aux_sym_cmd_identifier_token27] = ACTIONS(2522), - [aux_sym_cmd_identifier_token28] = ACTIONS(2522), - [aux_sym_cmd_identifier_token29] = ACTIONS(2522), - [aux_sym_cmd_identifier_token30] = ACTIONS(2522), - [aux_sym_cmd_identifier_token31] = ACTIONS(2522), - [aux_sym_cmd_identifier_token32] = ACTIONS(2520), - [aux_sym_cmd_identifier_token33] = ACTIONS(2522), - [aux_sym_cmd_identifier_token34] = ACTIONS(2520), - [aux_sym_cmd_identifier_token35] = ACTIONS(2522), - [aux_sym_cmd_identifier_token36] = ACTIONS(2522), - [aux_sym_cmd_identifier_token37] = ACTIONS(2522), - [aux_sym_cmd_identifier_token38] = ACTIONS(2520), - [aux_sym_cmd_identifier_token39] = ACTIONS(2522), - [aux_sym_cmd_identifier_token40] = ACTIONS(2522), - [sym__newline] = ACTIONS(2522), - [anon_sym_PIPE] = ACTIONS(2522), - [anon_sym_err_GT_PIPE] = ACTIONS(2522), - [anon_sym_out_GT_PIPE] = ACTIONS(2522), - [anon_sym_e_GT_PIPE] = ACTIONS(2522), - [anon_sym_o_GT_PIPE] = ACTIONS(2522), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2522), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2522), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2522), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2522), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_LPAREN] = ACTIONS(2522), - [anon_sym_DOLLAR] = ACTIONS(2520), - [anon_sym_DASH2] = ACTIONS(2520), - [anon_sym_break] = ACTIONS(2520), - [anon_sym_continue] = ACTIONS(2520), - [anon_sym_do] = ACTIONS(2520), - [anon_sym_if] = ACTIONS(2520), - [anon_sym_match] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2522), - [anon_sym_DOT_DOT] = ACTIONS(2520), - [anon_sym_try] = ACTIONS(2520), - [anon_sym_return] = ACTIONS(2520), - [anon_sym_where] = ACTIONS(2522), - [aux_sym_expr_unary_token1] = ACTIONS(2522), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2522), - [anon_sym_DOT_DOT_LT] = ACTIONS(2522), - [anon_sym_null] = ACTIONS(2520), - [anon_sym_true] = ACTIONS(2520), - [anon_sym_false] = ACTIONS(2520), - [aux_sym__val_number_decimal_token1] = ACTIONS(2520), - [aux_sym__val_number_decimal_token2] = ACTIONS(2522), - [aux_sym__val_number_decimal_token3] = ACTIONS(2522), - [aux_sym__val_number_decimal_token4] = ACTIONS(2522), - [aux_sym__val_number_token1] = ACTIONS(2522), - [aux_sym__val_number_token2] = ACTIONS(2522), - [aux_sym__val_number_token3] = ACTIONS(2522), - [aux_sym__val_number_token4] = ACTIONS(2520), - [aux_sym__val_number_token5] = ACTIONS(2520), - [aux_sym__val_number_token6] = ACTIONS(2520), - [anon_sym_0b] = ACTIONS(2520), - [anon_sym_0o] = ACTIONS(2520), - [anon_sym_0x] = ACTIONS(2520), - [sym_val_date] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2522), - [sym__str_single_quotes] = ACTIONS(2522), - [sym__str_back_ticks] = ACTIONS(2522), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2522), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2522), - [aux_sym_env_var_token1] = ACTIONS(2520), - [anon_sym_CARET] = ACTIONS(2522), - [aux_sym_command_token1] = ACTIONS(2522), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2522), + [aux_sym_shebang_repeat1] = STATE(799), + [aux_sym_cmd_identifier_token1] = ACTIONS(2554), + [aux_sym_cmd_identifier_token2] = ACTIONS(2556), + [aux_sym_cmd_identifier_token3] = ACTIONS(2556), + [aux_sym_cmd_identifier_token4] = ACTIONS(2556), + [aux_sym_cmd_identifier_token5] = ACTIONS(2556), + [aux_sym_cmd_identifier_token6] = ACTIONS(2556), + [aux_sym_cmd_identifier_token7] = ACTIONS(2556), + [aux_sym_cmd_identifier_token8] = ACTIONS(2556), + [aux_sym_cmd_identifier_token9] = ACTIONS(2554), + [aux_sym_cmd_identifier_token10] = ACTIONS(2556), + [aux_sym_cmd_identifier_token11] = ACTIONS(2556), + [aux_sym_cmd_identifier_token12] = ACTIONS(2556), + [aux_sym_cmd_identifier_token13] = ACTIONS(2554), + [aux_sym_cmd_identifier_token14] = ACTIONS(2556), + [aux_sym_cmd_identifier_token15] = ACTIONS(2554), + [aux_sym_cmd_identifier_token16] = ACTIONS(2556), + [aux_sym_cmd_identifier_token17] = ACTIONS(2556), + [aux_sym_cmd_identifier_token18] = ACTIONS(2554), + [aux_sym_cmd_identifier_token19] = ACTIONS(2556), + [aux_sym_cmd_identifier_token20] = ACTIONS(2556), + [aux_sym_cmd_identifier_token21] = ACTIONS(2556), + [aux_sym_cmd_identifier_token22] = ACTIONS(2556), + [aux_sym_cmd_identifier_token23] = ACTIONS(2556), + [aux_sym_cmd_identifier_token24] = ACTIONS(2556), + [aux_sym_cmd_identifier_token25] = ACTIONS(2556), + [aux_sym_cmd_identifier_token26] = ACTIONS(2556), + [aux_sym_cmd_identifier_token27] = ACTIONS(2556), + [aux_sym_cmd_identifier_token28] = ACTIONS(2556), + [aux_sym_cmd_identifier_token29] = ACTIONS(2556), + [aux_sym_cmd_identifier_token30] = ACTIONS(2556), + [aux_sym_cmd_identifier_token31] = ACTIONS(2556), + [aux_sym_cmd_identifier_token32] = ACTIONS(2554), + [aux_sym_cmd_identifier_token33] = ACTIONS(2556), + [aux_sym_cmd_identifier_token34] = ACTIONS(2554), + [aux_sym_cmd_identifier_token35] = ACTIONS(2556), + [aux_sym_cmd_identifier_token36] = ACTIONS(2556), + [aux_sym_cmd_identifier_token37] = ACTIONS(2556), + [aux_sym_cmd_identifier_token38] = ACTIONS(2554), + [aux_sym_cmd_identifier_token39] = ACTIONS(2556), + [aux_sym_cmd_identifier_token40] = ACTIONS(2556), + [sym__newline] = ACTIONS(2558), + [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(2556), + [anon_sym_LPAREN] = ACTIONS(2556), + [anon_sym_DOLLAR] = ACTIONS(2554), + [anon_sym_DASH2] = ACTIONS(2554), + [anon_sym_break] = ACTIONS(2554), + [anon_sym_continue] = ACTIONS(2554), + [anon_sym_do] = ACTIONS(2554), + [anon_sym_if] = ACTIONS(2554), + [anon_sym_match] = ACTIONS(2554), + [anon_sym_LBRACE] = ACTIONS(2556), + [anon_sym_DOT_DOT] = ACTIONS(2554), + [anon_sym_try] = ACTIONS(2554), + [anon_sym_return] = ACTIONS(2554), + [anon_sym_where] = ACTIONS(2556), + [aux_sym_expr_unary_token1] = ACTIONS(2556), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2556), + [anon_sym_DOT_DOT_LT] = ACTIONS(2556), + [anon_sym_null] = ACTIONS(2554), + [anon_sym_true] = ACTIONS(2554), + [anon_sym_false] = ACTIONS(2554), + [aux_sym__val_number_decimal_token1] = ACTIONS(2554), + [aux_sym__val_number_decimal_token2] = ACTIONS(2556), + [aux_sym__val_number_decimal_token3] = ACTIONS(2556), + [aux_sym__val_number_decimal_token4] = ACTIONS(2556), + [aux_sym__val_number_token1] = ACTIONS(2556), + [aux_sym__val_number_token2] = ACTIONS(2556), + [aux_sym__val_number_token3] = ACTIONS(2556), + [aux_sym__val_number_token4] = ACTIONS(2554), + [aux_sym__val_number_token5] = ACTIONS(2554), + [aux_sym__val_number_token6] = ACTIONS(2554), + [anon_sym_0b] = ACTIONS(2554), + [anon_sym_0o] = ACTIONS(2554), + [anon_sym_0x] = ACTIONS(2554), + [sym_val_date] = ACTIONS(2556), + [anon_sym_DQUOTE] = ACTIONS(2556), + [sym__str_single_quotes] = ACTIONS(2556), + [sym__str_back_ticks] = ACTIONS(2556), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2556), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2556), + [aux_sym_env_var_token1] = ACTIONS(2554), + [anon_sym_CARET] = ACTIONS(2556), + [aux_sym_command_token1] = ACTIONS(2556), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2556), }, [769] = { - [sym_expr_parenthesized] = STATE(1513), - [sym_val_range] = STATE(1771), - [sym__val_range] = STATE(7834), - [sym__val_range_with_end] = STATE(7414), - [sym__value] = STATE(1771), - [sym_val_nothing] = STATE(1798), - [sym_val_bool] = STATE(1575), - [sym_val_variable] = STATE(1529), - [sym_val_number] = STATE(1798), - [sym__val_number_decimal] = STATE(1259), - [sym__val_number] = STATE(1706), - [sym_val_duration] = STATE(1798), - [sym_val_filesize] = STATE(1798), - [sym_val_binary] = STATE(1798), - [sym_val_string] = STATE(1798), - [sym__raw_str] = STATE(1731), - [sym__str_double_quotes] = STATE(1731), - [sym_val_interpolated] = STATE(1798), - [sym__inter_single_quotes] = STATE(1778), - [sym__inter_double_quotes] = STATE(1780), - [sym_val_list] = STATE(1798), - [sym_val_record] = STATE(1798), - [sym_val_table] = STATE(1798), - [sym_val_closure] = STATE(1798), - [sym__flag] = STATE(1771), - [sym_short_flag] = STATE(1765), - [sym_long_flag] = STATE(1765), - [sym_unquoted] = STATE(1570), - [sym__unquoted_with_expr] = STATE(1814), - [sym__unquoted_anonymous_prefix] = STATE(6713), [sym_comment] = STATE(769), - [aux_sym_ctrl_do_repeat2] = STATE(772), - [sym__newline] = ACTIONS(2776), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym_PIPE] = ACTIONS(2776), - [anon_sym_err_GT_PIPE] = ACTIONS(2776), - [anon_sym_out_GT_PIPE] = ACTIONS(2776), - [anon_sym_e_GT_PIPE] = ACTIONS(2776), - [anon_sym_o_GT_PIPE] = ACTIONS(2776), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2776), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2776), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), - [anon_sym_LBRACK] = ACTIONS(2618), - [anon_sym_LPAREN] = ACTIONS(2620), - [anon_sym_RPAREN] = ACTIONS(2776), - [anon_sym_DOLLAR] = ACTIONS(2622), - [anon_sym_DASH_DASH] = ACTIONS(2624), - [anon_sym_DASH2] = ACTIONS(2626), - [anon_sym_LBRACE] = ACTIONS(2628), - [anon_sym_RBRACE] = ACTIONS(2776), - [anon_sym_DOT_DOT] = ACTIONS(2630), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2632), - [anon_sym_DOT_DOT_LT] = ACTIONS(2632), - [anon_sym_null] = ACTIONS(2634), - [anon_sym_true] = ACTIONS(2636), - [anon_sym_false] = ACTIONS(2636), - [aux_sym__val_number_decimal_token1] = ACTIONS(2638), - [aux_sym__val_number_decimal_token2] = ACTIONS(2640), - [aux_sym__val_number_decimal_token3] = ACTIONS(2642), - [aux_sym__val_number_decimal_token4] = ACTIONS(2644), - [aux_sym__val_number_token1] = ACTIONS(2646), - [aux_sym__val_number_token2] = ACTIONS(2646), - [aux_sym__val_number_token3] = ACTIONS(2646), - [aux_sym__val_number_token4] = ACTIONS(2648), - [aux_sym__val_number_token5] = ACTIONS(2648), - [aux_sym__val_number_token6] = ACTIONS(2648), - [anon_sym_0b] = ACTIONS(2650), - [anon_sym_0o] = ACTIONS(2652), - [anon_sym_0x] = ACTIONS(2652), - [sym_val_date] = ACTIONS(2654), - [anon_sym_DQUOTE] = ACTIONS(2656), - [sym__str_single_quotes] = ACTIONS(2658), - [sym__str_back_ticks] = ACTIONS(2658), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2660), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2662), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(2668), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2670), + [ts_builtin_sym_end] = ACTIONS(1514), + [anon_sym_STAR_STAR] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_SLASH] = ACTIONS(1512), + [anon_sym_mod] = ACTIONS(1514), + [anon_sym_SLASH_SLASH] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_bit_DASHshl] = ACTIONS(1514), + [anon_sym_bit_DASHshr] = ACTIONS(1514), + [anon_sym_EQ_TILDE] = ACTIONS(1514), + [anon_sym_BANG_TILDE] = ACTIONS(1514), + [anon_sym_bit_DASHand] = ACTIONS(1514), + [anon_sym_bit_DASHxor] = ACTIONS(1514), + [anon_sym_bit_DASHor] = ACTIONS(1514), + [anon_sym_and] = ACTIONS(1514), + [anon_sym_xor] = ACTIONS(1514), + [anon_sym_or] = ACTIONS(1514), + [anon_sym_in] = ACTIONS(1514), + [anon_sym_not_DASHin] = ACTIONS(1514), + [anon_sym_has] = ACTIONS(1514), + [anon_sym_not_DASHhas] = ACTIONS(1514), + [anon_sym_starts_DASHwith] = ACTIONS(1514), + [anon_sym_ends_DASHwith] = ACTIONS(1514), + [anon_sym_EQ_EQ] = ACTIONS(1514), + [anon_sym_BANG_EQ] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_LT_EQ] = ACTIONS(1514), + [anon_sym_GT] = ACTIONS(1512), + [anon_sym_GT_EQ] = ACTIONS(1514), + [aux_sym_cmd_identifier_token41] = ACTIONS(1512), + [sym__newline] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_err_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_GT_PIPE] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1512), + [anon_sym_GT2] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_in2] = ACTIONS(1512), + [anon_sym_STAR2] = ACTIONS(1512), + [anon_sym_and2] = ACTIONS(1512), + [anon_sym_xor2] = ACTIONS(1512), + [anon_sym_or2] = ACTIONS(1512), + [anon_sym_not_DASHin2] = ACTIONS(1512), + [anon_sym_has2] = ACTIONS(1512), + [anon_sym_not_DASHhas2] = ACTIONS(1512), + [anon_sym_starts_DASHwith2] = ACTIONS(1512), + [anon_sym_ends_DASHwith2] = ACTIONS(1512), + [anon_sym_EQ_EQ2] = ACTIONS(1512), + [anon_sym_BANG_EQ2] = ACTIONS(1512), + [anon_sym_LT2] = ACTIONS(1512), + [anon_sym_LT_EQ2] = ACTIONS(1512), + [anon_sym_GT_EQ2] = ACTIONS(1512), + [anon_sym_EQ_TILDE2] = ACTIONS(1512), + [anon_sym_BANG_TILDE2] = ACTIONS(1512), + [anon_sym_STAR_STAR2] = ACTIONS(1512), + [anon_sym_PLUS_PLUS2] = ACTIONS(1512), + [anon_sym_SLASH2] = ACTIONS(1512), + [anon_sym_mod2] = ACTIONS(1512), + [anon_sym_SLASH_SLASH2] = ACTIONS(1512), + [anon_sym_PLUS2] = ACTIONS(1512), + [anon_sym_bit_DASHshl2] = ACTIONS(1512), + [anon_sym_bit_DASHshr2] = ACTIONS(1512), + [anon_sym_bit_DASHand2] = ACTIONS(1512), + [anon_sym_bit_DASHxor2] = ACTIONS(1512), + [anon_sym_bit_DASHor2] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [aux_sym__immediate_decimal_token2] = ACTIONS(2516), + [sym_filesize_unit] = ACTIONS(1512), + [sym_duration_unit] = ACTIONS(1514), + [anon_sym_err_GT] = ACTIONS(1512), + [anon_sym_out_GT] = ACTIONS(1512), + [anon_sym_e_GT] = ACTIONS(1512), + [anon_sym_o_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT] = ACTIONS(1512), + [anon_sym_err_GT_GT] = ACTIONS(1512), + [anon_sym_out_GT_GT] = ACTIONS(1512), + [anon_sym_e_GT_GT] = ACTIONS(1512), + [anon_sym_o_GT_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(3), }, [770] = { - [sym_expr_parenthesized] = STATE(1513), - [sym_val_range] = STATE(1771), - [sym__val_range] = STATE(7834), - [sym__val_range_with_end] = STATE(7414), - [sym__value] = STATE(1771), - [sym_val_nothing] = STATE(1798), - [sym_val_bool] = STATE(1575), - [sym_val_variable] = STATE(1529), - [sym_val_number] = STATE(1798), - [sym__val_number_decimal] = STATE(1259), - [sym__val_number] = STATE(1706), - [sym_val_duration] = STATE(1798), - [sym_val_filesize] = STATE(1798), - [sym_val_binary] = STATE(1798), - [sym_val_string] = STATE(1798), - [sym__raw_str] = STATE(1731), - [sym__str_double_quotes] = STATE(1731), - [sym_val_interpolated] = STATE(1798), - [sym__inter_single_quotes] = STATE(1778), - [sym__inter_double_quotes] = STATE(1780), - [sym_val_list] = STATE(1798), - [sym_val_record] = STATE(1798), - [sym_val_table] = STATE(1798), - [sym_val_closure] = STATE(1798), - [sym__flag] = STATE(1771), - [sym_short_flag] = STATE(1765), - [sym_long_flag] = STATE(1765), - [sym_unquoted] = STATE(1570), - [sym__unquoted_with_expr] = STATE(1814), - [sym__unquoted_anonymous_prefix] = STATE(6713), [sym_comment] = STATE(770), - [aux_sym_ctrl_do_repeat2] = STATE(773), - [sym__newline] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2778), - [anon_sym_PIPE] = ACTIONS(2778), - [anon_sym_err_GT_PIPE] = ACTIONS(2778), - [anon_sym_out_GT_PIPE] = ACTIONS(2778), - [anon_sym_e_GT_PIPE] = ACTIONS(2778), - [anon_sym_o_GT_PIPE] = ACTIONS(2778), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2778), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2778), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2778), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2618), - [anon_sym_LPAREN] = ACTIONS(2620), - [anon_sym_RPAREN] = ACTIONS(2778), - [anon_sym_DOLLAR] = ACTIONS(2622), - [anon_sym_DASH_DASH] = ACTIONS(2624), - [anon_sym_DASH2] = ACTIONS(2626), - [anon_sym_LBRACE] = ACTIONS(2628), - [anon_sym_RBRACE] = ACTIONS(2778), - [anon_sym_DOT_DOT] = ACTIONS(2630), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2632), - [anon_sym_DOT_DOT_LT] = ACTIONS(2632), - [anon_sym_null] = ACTIONS(2634), - [anon_sym_true] = ACTIONS(2636), - [anon_sym_false] = ACTIONS(2636), - [aux_sym__val_number_decimal_token1] = ACTIONS(2638), - [aux_sym__val_number_decimal_token2] = ACTIONS(2640), - [aux_sym__val_number_decimal_token3] = ACTIONS(2642), - [aux_sym__val_number_decimal_token4] = ACTIONS(2644), - [aux_sym__val_number_token1] = ACTIONS(2646), - [aux_sym__val_number_token2] = ACTIONS(2646), - [aux_sym__val_number_token3] = ACTIONS(2646), - [aux_sym__val_number_token4] = ACTIONS(2648), - [aux_sym__val_number_token5] = ACTIONS(2648), - [aux_sym__val_number_token6] = ACTIONS(2648), - [anon_sym_0b] = ACTIONS(2650), - [anon_sym_0o] = ACTIONS(2652), - [anon_sym_0x] = ACTIONS(2652), - [sym_val_date] = ACTIONS(2654), - [anon_sym_DQUOTE] = ACTIONS(2656), - [sym__str_single_quotes] = ACTIONS(2658), - [sym__str_back_ticks] = ACTIONS(2658), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2660), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2662), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(2668), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2670), + [anon_sym_STAR_STAR] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_SLASH] = ACTIONS(1512), + [anon_sym_mod] = ACTIONS(1514), + [anon_sym_SLASH_SLASH] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_bit_DASHshl] = ACTIONS(1514), + [anon_sym_bit_DASHshr] = ACTIONS(1514), + [anon_sym_EQ_TILDE] = ACTIONS(1514), + [anon_sym_BANG_TILDE] = ACTIONS(1514), + [anon_sym_bit_DASHand] = ACTIONS(1514), + [anon_sym_bit_DASHxor] = ACTIONS(1514), + [anon_sym_bit_DASHor] = ACTIONS(1514), + [anon_sym_and] = ACTIONS(1514), + [anon_sym_xor] = ACTIONS(1514), + [anon_sym_or] = ACTIONS(1514), + [anon_sym_in] = ACTIONS(1514), + [anon_sym_not_DASHin] = ACTIONS(1514), + [anon_sym_has] = ACTIONS(1514), + [anon_sym_not_DASHhas] = ACTIONS(1514), + [anon_sym_starts_DASHwith] = ACTIONS(1514), + [anon_sym_ends_DASHwith] = ACTIONS(1514), + [anon_sym_EQ_EQ] = ACTIONS(1514), + [anon_sym_BANG_EQ] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_LT_EQ] = ACTIONS(1514), + [anon_sym_GT] = ACTIONS(1512), + [anon_sym_GT_EQ] = ACTIONS(1514), + [aux_sym_cmd_identifier_token41] = ACTIONS(1512), + [sym__newline] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_err_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_GT_PIPE] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1512), + [anon_sym_GT2] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_in2] = ACTIONS(1512), + [anon_sym_STAR2] = ACTIONS(1512), + [anon_sym_and2] = ACTIONS(1512), + [anon_sym_xor2] = ACTIONS(1512), + [anon_sym_or2] = ACTIONS(1512), + [anon_sym_not_DASHin2] = ACTIONS(1512), + [anon_sym_has2] = ACTIONS(1512), + [anon_sym_not_DASHhas2] = ACTIONS(1512), + [anon_sym_starts_DASHwith2] = ACTIONS(1512), + [anon_sym_ends_DASHwith2] = ACTIONS(1512), + [anon_sym_EQ_EQ2] = ACTIONS(1512), + [anon_sym_BANG_EQ2] = ACTIONS(1512), + [anon_sym_LT2] = ACTIONS(1512), + [anon_sym_LT_EQ2] = ACTIONS(1512), + [anon_sym_GT_EQ2] = ACTIONS(1512), + [anon_sym_EQ_TILDE2] = ACTIONS(1512), + [anon_sym_BANG_TILDE2] = ACTIONS(1512), + [anon_sym_STAR_STAR2] = ACTIONS(1512), + [anon_sym_PLUS_PLUS2] = ACTIONS(1512), + [anon_sym_SLASH2] = ACTIONS(1512), + [anon_sym_mod2] = ACTIONS(1512), + [anon_sym_SLASH_SLASH2] = ACTIONS(1512), + [anon_sym_PLUS2] = ACTIONS(1512), + [anon_sym_bit_DASHshl2] = ACTIONS(1512), + [anon_sym_bit_DASHshr2] = ACTIONS(1512), + [anon_sym_bit_DASHand2] = ACTIONS(1512), + [anon_sym_bit_DASHxor2] = ACTIONS(1512), + [anon_sym_bit_DASHor2] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT] = ACTIONS(2560), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [aux_sym__immediate_decimal_token2] = ACTIONS(2562), + [sym_filesize_unit] = ACTIONS(1512), + [sym_duration_unit] = ACTIONS(1514), + [anon_sym_err_GT] = ACTIONS(1512), + [anon_sym_out_GT] = ACTIONS(1512), + [anon_sym_e_GT] = ACTIONS(1512), + [anon_sym_o_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT] = ACTIONS(1512), + [anon_sym_err_GT_GT] = ACTIONS(1512), + [anon_sym_out_GT_GT] = ACTIONS(1512), + [anon_sym_e_GT_GT] = ACTIONS(1512), + [anon_sym_o_GT_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(3), }, [771] = { [sym_comment] = STATE(771), - [aux_sym_cmd_identifier_token1] = ACTIONS(1311), - [aux_sym_cmd_identifier_token2] = ACTIONS(1309), - [aux_sym_cmd_identifier_token3] = ACTIONS(1309), - [aux_sym_cmd_identifier_token4] = ACTIONS(1309), - [aux_sym_cmd_identifier_token5] = ACTIONS(1309), - [aux_sym_cmd_identifier_token6] = ACTIONS(1309), - [aux_sym_cmd_identifier_token7] = ACTIONS(1309), - [aux_sym_cmd_identifier_token8] = ACTIONS(1309), - [aux_sym_cmd_identifier_token9] = ACTIONS(1311), - [aux_sym_cmd_identifier_token10] = ACTIONS(1309), - [aux_sym_cmd_identifier_token11] = ACTIONS(1309), - [aux_sym_cmd_identifier_token12] = ACTIONS(1309), - [aux_sym_cmd_identifier_token13] = ACTIONS(1311), - [aux_sym_cmd_identifier_token14] = ACTIONS(1309), - [aux_sym_cmd_identifier_token15] = ACTIONS(1311), - [aux_sym_cmd_identifier_token16] = ACTIONS(1309), - [aux_sym_cmd_identifier_token17] = ACTIONS(1309), - [aux_sym_cmd_identifier_token18] = ACTIONS(1311), - [aux_sym_cmd_identifier_token19] = ACTIONS(1309), - [aux_sym_cmd_identifier_token20] = ACTIONS(1309), - [aux_sym_cmd_identifier_token21] = ACTIONS(1309), - [aux_sym_cmd_identifier_token22] = ACTIONS(1309), - [aux_sym_cmd_identifier_token23] = ACTIONS(1309), - [aux_sym_cmd_identifier_token24] = ACTIONS(1309), - [aux_sym_cmd_identifier_token25] = ACTIONS(1309), - [aux_sym_cmd_identifier_token26] = ACTIONS(1309), - [aux_sym_cmd_identifier_token27] = ACTIONS(1309), - [aux_sym_cmd_identifier_token28] = ACTIONS(1309), - [aux_sym_cmd_identifier_token29] = ACTIONS(1309), - [aux_sym_cmd_identifier_token30] = ACTIONS(1309), - [aux_sym_cmd_identifier_token31] = ACTIONS(1309), - [aux_sym_cmd_identifier_token32] = ACTIONS(1311), - [aux_sym_cmd_identifier_token33] = ACTIONS(1309), - [aux_sym_cmd_identifier_token34] = ACTIONS(1311), - [aux_sym_cmd_identifier_token35] = ACTIONS(1309), - [aux_sym_cmd_identifier_token36] = ACTIONS(1309), - [aux_sym_cmd_identifier_token37] = ACTIONS(1309), - [aux_sym_cmd_identifier_token38] = ACTIONS(1311), - [aux_sym_cmd_identifier_token39] = ACTIONS(1309), - [aux_sym_cmd_identifier_token40] = ACTIONS(1309), - [sym__newline] = ACTIONS(1309), - [anon_sym_PIPE] = ACTIONS(1309), - [anon_sym_err_GT_PIPE] = ACTIONS(1309), - [anon_sym_out_GT_PIPE] = ACTIONS(1309), - [anon_sym_e_GT_PIPE] = ACTIONS(1309), - [anon_sym_o_GT_PIPE] = ACTIONS(1309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1309), - [anon_sym_LBRACK] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(1309), - [anon_sym_DOLLAR] = ACTIONS(1311), - [anon_sym_DASH2] = ACTIONS(1311), - [anon_sym_break] = ACTIONS(1311), - [anon_sym_continue] = ACTIONS(1311), - [anon_sym_do] = ACTIONS(1311), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_match] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_DOT_DOT] = ACTIONS(1311), - [anon_sym_try] = ACTIONS(1311), - [anon_sym_return] = ACTIONS(1311), - [anon_sym_where] = ACTIONS(1309), - [aux_sym_expr_unary_token1] = ACTIONS(1309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1309), - [anon_sym_DOT_DOT_LT] = ACTIONS(1309), - [anon_sym_null] = ACTIONS(1311), - [anon_sym_true] = ACTIONS(1311), - [anon_sym_false] = ACTIONS(1311), - [aux_sym__val_number_decimal_token1] = ACTIONS(1311), - [aux_sym__val_number_decimal_token2] = ACTIONS(1309), - [aux_sym__val_number_decimal_token3] = ACTIONS(1309), - [aux_sym__val_number_decimal_token4] = ACTIONS(1309), - [aux_sym__val_number_token1] = ACTIONS(1309), - [aux_sym__val_number_token2] = ACTIONS(1309), - [aux_sym__val_number_token3] = ACTIONS(1309), - [aux_sym__val_number_token4] = ACTIONS(1311), - [aux_sym__val_number_token5] = ACTIONS(1311), - [aux_sym__val_number_token6] = ACTIONS(1311), - [anon_sym_0b] = ACTIONS(1311), - [anon_sym_0o] = ACTIONS(1311), - [anon_sym_0x] = ACTIONS(1311), - [sym_val_date] = ACTIONS(1309), - [anon_sym_DQUOTE] = ACTIONS(1309), - [sym__str_single_quotes] = ACTIONS(1309), - [sym__str_back_ticks] = ACTIONS(1309), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1309), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1309), - [aux_sym_env_var_token1] = ACTIONS(1311), - [anon_sym_CARET] = ACTIONS(1309), - [aux_sym_command_token1] = ACTIONS(1309), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1309), + [anon_sym_STAR_STAR] = ACTIONS(1620), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1618), + [anon_sym_SLASH] = ACTIONS(1618), + [anon_sym_mod] = ACTIONS(1620), + [anon_sym_SLASH_SLASH] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1618), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_bit_DASHshl] = ACTIONS(1620), + [anon_sym_bit_DASHshr] = ACTIONS(1620), + [anon_sym_EQ_TILDE] = ACTIONS(1620), + [anon_sym_BANG_TILDE] = ACTIONS(1620), + [anon_sym_bit_DASHand] = ACTIONS(1620), + [anon_sym_bit_DASHxor] = ACTIONS(1620), + [anon_sym_bit_DASHor] = ACTIONS(1620), + [anon_sym_and] = ACTIONS(1620), + [anon_sym_xor] = ACTIONS(1620), + [anon_sym_or] = ACTIONS(1620), + [anon_sym_in] = ACTIONS(1620), + [anon_sym_not_DASHin] = ACTIONS(1620), + [anon_sym_has] = ACTIONS(1620), + [anon_sym_not_DASHhas] = ACTIONS(1620), + [anon_sym_starts_DASHwith] = ACTIONS(1620), + [anon_sym_ends_DASHwith] = ACTIONS(1620), + [anon_sym_EQ_EQ] = ACTIONS(1620), + [anon_sym_BANG_EQ] = ACTIONS(1620), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_LT_EQ] = ACTIONS(1620), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_GT_EQ] = ACTIONS(1620), + [aux_sym_cmd_identifier_token41] = ACTIONS(1618), + [sym__newline] = ACTIONS(1618), + [anon_sym_SEMI] = ACTIONS(1618), + [anon_sym_PIPE] = ACTIONS(1618), + [anon_sym_err_GT_PIPE] = ACTIONS(1618), + [anon_sym_out_GT_PIPE] = ACTIONS(1618), + [anon_sym_e_GT_PIPE] = ACTIONS(1618), + [anon_sym_o_GT_PIPE] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1618), + [anon_sym_RPAREN] = ACTIONS(1618), + [anon_sym_GT2] = ACTIONS(1618), + [anon_sym_DASH2] = ACTIONS(1618), + [anon_sym_in2] = ACTIONS(1618), + [anon_sym_STAR2] = ACTIONS(1618), + [anon_sym_and2] = ACTIONS(1618), + [anon_sym_xor2] = ACTIONS(1618), + [anon_sym_or2] = ACTIONS(1618), + [anon_sym_not_DASHin2] = ACTIONS(1618), + [anon_sym_has2] = ACTIONS(1618), + [anon_sym_not_DASHhas2] = ACTIONS(1618), + [anon_sym_starts_DASHwith2] = ACTIONS(1618), + [anon_sym_ends_DASHwith2] = ACTIONS(1618), + [anon_sym_EQ_EQ2] = ACTIONS(1618), + [anon_sym_BANG_EQ2] = ACTIONS(1618), + [anon_sym_LT2] = ACTIONS(1618), + [anon_sym_LT_EQ2] = ACTIONS(1618), + [anon_sym_GT_EQ2] = ACTIONS(1618), + [anon_sym_EQ_TILDE2] = ACTIONS(1618), + [anon_sym_BANG_TILDE2] = ACTIONS(1618), + [anon_sym_STAR_STAR2] = ACTIONS(1618), + [anon_sym_PLUS_PLUS2] = ACTIONS(1618), + [anon_sym_SLASH2] = ACTIONS(1618), + [anon_sym_mod2] = ACTIONS(1618), + [anon_sym_SLASH_SLASH2] = ACTIONS(1618), + [anon_sym_PLUS2] = ACTIONS(1618), + [anon_sym_bit_DASHshl2] = ACTIONS(1618), + [anon_sym_bit_DASHshr2] = ACTIONS(1618), + [anon_sym_bit_DASHand2] = ACTIONS(1618), + [anon_sym_bit_DASHxor2] = ACTIONS(1618), + [anon_sym_bit_DASHor2] = ACTIONS(1618), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [aux_sym__immediate_decimal_token2] = ACTIONS(2564), + [sym_filesize_unit] = ACTIONS(1618), + [sym_duration_unit] = ACTIONS(1620), + [anon_sym_err_GT] = ACTIONS(1618), + [anon_sym_out_GT] = ACTIONS(1618), + [anon_sym_e_GT] = ACTIONS(1618), + [anon_sym_o_GT] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT] = ACTIONS(1618), + [anon_sym_err_GT_GT] = ACTIONS(1618), + [anon_sym_out_GT_GT] = ACTIONS(1618), + [anon_sym_e_GT_GT] = ACTIONS(1618), + [anon_sym_o_GT_GT] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(3), }, [772] = { - [sym_expr_parenthesized] = STATE(1513), - [sym_val_range] = STATE(1771), - [sym__val_range] = STATE(7834), - [sym__val_range_with_end] = STATE(7414), - [sym__value] = STATE(1771), - [sym_val_nothing] = STATE(1798), - [sym_val_bool] = STATE(1575), - [sym_val_variable] = STATE(1529), - [sym_val_number] = STATE(1798), - [sym__val_number_decimal] = STATE(1259), - [sym__val_number] = STATE(1706), - [sym_val_duration] = STATE(1798), - [sym_val_filesize] = STATE(1798), - [sym_val_binary] = STATE(1798), - [sym_val_string] = STATE(1798), - [sym__raw_str] = STATE(1731), - [sym__str_double_quotes] = STATE(1731), - [sym_val_interpolated] = STATE(1798), - [sym__inter_single_quotes] = STATE(1778), - [sym__inter_double_quotes] = STATE(1780), - [sym_val_list] = STATE(1798), - [sym_val_record] = STATE(1798), - [sym_val_table] = STATE(1798), - [sym_val_closure] = STATE(1798), - [sym__flag] = STATE(1771), - [sym_short_flag] = STATE(1765), - [sym_long_flag] = STATE(1765), - [sym_unquoted] = STATE(1570), - [sym__unquoted_with_expr] = STATE(1814), - [sym__unquoted_anonymous_prefix] = STATE(6713), [sym_comment] = STATE(772), - [aux_sym_ctrl_do_repeat2] = STATE(775), - [sym__newline] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2778), - [anon_sym_PIPE] = ACTIONS(2778), - [anon_sym_err_GT_PIPE] = ACTIONS(2778), - [anon_sym_out_GT_PIPE] = ACTIONS(2778), - [anon_sym_e_GT_PIPE] = ACTIONS(2778), - [anon_sym_o_GT_PIPE] = ACTIONS(2778), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2778), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2778), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2778), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2618), - [anon_sym_LPAREN] = ACTIONS(2620), - [anon_sym_RPAREN] = ACTIONS(2778), - [anon_sym_DOLLAR] = ACTIONS(2622), - [anon_sym_DASH_DASH] = ACTIONS(2624), - [anon_sym_DASH2] = ACTIONS(2626), - [anon_sym_LBRACE] = ACTIONS(2628), - [anon_sym_RBRACE] = ACTIONS(2778), - [anon_sym_DOT_DOT] = ACTIONS(2630), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2632), - [anon_sym_DOT_DOT_LT] = ACTIONS(2632), - [anon_sym_null] = ACTIONS(2634), - [anon_sym_true] = ACTIONS(2636), - [anon_sym_false] = ACTIONS(2636), - [aux_sym__val_number_decimal_token1] = ACTIONS(2638), - [aux_sym__val_number_decimal_token2] = ACTIONS(2640), - [aux_sym__val_number_decimal_token3] = ACTIONS(2642), - [aux_sym__val_number_decimal_token4] = ACTIONS(2644), - [aux_sym__val_number_token1] = ACTIONS(2646), - [aux_sym__val_number_token2] = ACTIONS(2646), - [aux_sym__val_number_token3] = ACTIONS(2646), - [aux_sym__val_number_token4] = ACTIONS(2648), - [aux_sym__val_number_token5] = ACTIONS(2648), - [aux_sym__val_number_token6] = ACTIONS(2648), - [anon_sym_0b] = ACTIONS(2650), - [anon_sym_0o] = ACTIONS(2652), - [anon_sym_0x] = ACTIONS(2652), - [sym_val_date] = ACTIONS(2654), - [anon_sym_DQUOTE] = ACTIONS(2656), - [sym__str_single_quotes] = ACTIONS(2658), - [sym__str_back_ticks] = ACTIONS(2658), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2660), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2662), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(2668), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2670), + [anon_sym_STAR_STAR] = ACTIONS(1620), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1618), + [anon_sym_SLASH] = ACTIONS(1618), + [anon_sym_mod] = ACTIONS(1620), + [anon_sym_SLASH_SLASH] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1618), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_bit_DASHshl] = ACTIONS(1620), + [anon_sym_bit_DASHshr] = ACTIONS(1620), + [anon_sym_EQ_TILDE] = ACTIONS(1620), + [anon_sym_BANG_TILDE] = ACTIONS(1620), + [anon_sym_bit_DASHand] = ACTIONS(1620), + [anon_sym_bit_DASHxor] = ACTIONS(1620), + [anon_sym_bit_DASHor] = ACTIONS(1620), + [anon_sym_and] = ACTIONS(1620), + [anon_sym_xor] = ACTIONS(1620), + [anon_sym_or] = ACTIONS(1620), + [anon_sym_in] = ACTIONS(1620), + [anon_sym_not_DASHin] = ACTIONS(1620), + [anon_sym_has] = ACTIONS(1620), + [anon_sym_not_DASHhas] = ACTIONS(1620), + [anon_sym_starts_DASHwith] = ACTIONS(1620), + [anon_sym_ends_DASHwith] = ACTIONS(1620), + [anon_sym_EQ_EQ] = ACTIONS(1620), + [anon_sym_BANG_EQ] = ACTIONS(1620), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_LT_EQ] = ACTIONS(1620), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_GT_EQ] = ACTIONS(1620), + [aux_sym_cmd_identifier_token41] = ACTIONS(1618), + [sym__newline] = ACTIONS(1618), + [anon_sym_SEMI] = ACTIONS(1618), + [anon_sym_PIPE] = ACTIONS(1618), + [anon_sym_err_GT_PIPE] = ACTIONS(1618), + [anon_sym_out_GT_PIPE] = ACTIONS(1618), + [anon_sym_e_GT_PIPE] = ACTIONS(1618), + [anon_sym_o_GT_PIPE] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1618), + [anon_sym_GT2] = ACTIONS(1618), + [anon_sym_DASH2] = ACTIONS(1618), + [anon_sym_in2] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1618), + [anon_sym_STAR2] = ACTIONS(1618), + [anon_sym_and2] = ACTIONS(1618), + [anon_sym_xor2] = ACTIONS(1618), + [anon_sym_or2] = ACTIONS(1618), + [anon_sym_not_DASHin2] = ACTIONS(1618), + [anon_sym_has2] = ACTIONS(1618), + [anon_sym_not_DASHhas2] = ACTIONS(1618), + [anon_sym_starts_DASHwith2] = ACTIONS(1618), + [anon_sym_ends_DASHwith2] = ACTIONS(1618), + [anon_sym_EQ_EQ2] = ACTIONS(1618), + [anon_sym_BANG_EQ2] = ACTIONS(1618), + [anon_sym_LT2] = ACTIONS(1618), + [anon_sym_LT_EQ2] = ACTIONS(1618), + [anon_sym_GT_EQ2] = ACTIONS(1618), + [anon_sym_EQ_TILDE2] = ACTIONS(1618), + [anon_sym_BANG_TILDE2] = ACTIONS(1618), + [anon_sym_STAR_STAR2] = ACTIONS(1618), + [anon_sym_PLUS_PLUS2] = ACTIONS(1618), + [anon_sym_SLASH2] = ACTIONS(1618), + [anon_sym_mod2] = ACTIONS(1618), + [anon_sym_SLASH_SLASH2] = ACTIONS(1618), + [anon_sym_PLUS2] = ACTIONS(1618), + [anon_sym_bit_DASHshl2] = ACTIONS(1618), + [anon_sym_bit_DASHshr2] = ACTIONS(1618), + [anon_sym_bit_DASHand2] = ACTIONS(1618), + [anon_sym_bit_DASHxor2] = ACTIONS(1618), + [anon_sym_bit_DASHor2] = ACTIONS(1618), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [sym_filesize_unit] = ACTIONS(1618), + [sym_duration_unit] = ACTIONS(1620), + [anon_sym_COLON2] = ACTIONS(1618), + [anon_sym_err_GT] = ACTIONS(1618), + [anon_sym_out_GT] = ACTIONS(1618), + [anon_sym_e_GT] = ACTIONS(1618), + [anon_sym_o_GT] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT] = ACTIONS(1618), + [anon_sym_err_GT_GT] = ACTIONS(1618), + [anon_sym_out_GT_GT] = ACTIONS(1618), + [anon_sym_e_GT_GT] = ACTIONS(1618), + [anon_sym_o_GT_GT] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(3), }, [773] = { - [sym_expr_parenthesized] = STATE(1513), - [sym_val_range] = STATE(1771), - [sym__val_range] = STATE(7834), - [sym__val_range_with_end] = STATE(7414), - [sym__value] = STATE(1771), - [sym_val_nothing] = STATE(1798), - [sym_val_bool] = STATE(1575), - [sym_val_variable] = STATE(1529), - [sym_val_number] = STATE(1798), - [sym__val_number_decimal] = STATE(1259), - [sym__val_number] = STATE(1706), - [sym_val_duration] = STATE(1798), - [sym_val_filesize] = STATE(1798), - [sym_val_binary] = STATE(1798), - [sym_val_string] = STATE(1798), - [sym__raw_str] = STATE(1731), - [sym__str_double_quotes] = STATE(1731), - [sym_val_interpolated] = STATE(1798), - [sym__inter_single_quotes] = STATE(1778), - [sym__inter_double_quotes] = STATE(1780), - [sym_val_list] = STATE(1798), - [sym_val_record] = STATE(1798), - [sym_val_table] = STATE(1798), - [sym_val_closure] = STATE(1798), - [sym__flag] = STATE(1771), - [sym_short_flag] = STATE(1765), - [sym_long_flag] = STATE(1765), - [sym_unquoted] = STATE(1570), - [sym__unquoted_with_expr] = STATE(1814), - [sym__unquoted_anonymous_prefix] = STATE(6713), [sym_comment] = STATE(773), - [aux_sym_ctrl_do_repeat2] = STATE(775), - [sym__newline] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym_PIPE] = ACTIONS(2780), - [anon_sym_err_GT_PIPE] = ACTIONS(2780), - [anon_sym_out_GT_PIPE] = ACTIONS(2780), - [anon_sym_e_GT_PIPE] = ACTIONS(2780), - [anon_sym_o_GT_PIPE] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2780), - [anon_sym_LBRACK] = ACTIONS(2618), - [anon_sym_LPAREN] = ACTIONS(2620), - [anon_sym_RPAREN] = ACTIONS(2780), - [anon_sym_DOLLAR] = ACTIONS(2622), - [anon_sym_DASH_DASH] = ACTIONS(2624), - [anon_sym_DASH2] = ACTIONS(2626), - [anon_sym_LBRACE] = ACTIONS(2628), - [anon_sym_RBRACE] = ACTIONS(2780), - [anon_sym_DOT_DOT] = ACTIONS(2630), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2632), - [anon_sym_DOT_DOT_LT] = ACTIONS(2632), - [anon_sym_null] = ACTIONS(2634), - [anon_sym_true] = ACTIONS(2636), - [anon_sym_false] = ACTIONS(2636), - [aux_sym__val_number_decimal_token1] = ACTIONS(2638), - [aux_sym__val_number_decimal_token2] = ACTIONS(2640), - [aux_sym__val_number_decimal_token3] = ACTIONS(2642), - [aux_sym__val_number_decimal_token4] = ACTIONS(2644), - [aux_sym__val_number_token1] = ACTIONS(2646), - [aux_sym__val_number_token2] = ACTIONS(2646), - [aux_sym__val_number_token3] = ACTIONS(2646), - [aux_sym__val_number_token4] = ACTIONS(2648), - [aux_sym__val_number_token5] = ACTIONS(2648), - [aux_sym__val_number_token6] = ACTIONS(2648), - [anon_sym_0b] = ACTIONS(2650), - [anon_sym_0o] = ACTIONS(2652), - [anon_sym_0x] = ACTIONS(2652), - [sym_val_date] = ACTIONS(2654), - [anon_sym_DQUOTE] = ACTIONS(2656), - [sym__str_single_quotes] = ACTIONS(2658), - [sym__str_back_ticks] = ACTIONS(2658), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2660), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2662), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(2668), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2670), + [anon_sym_STAR_STAR] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_SLASH] = ACTIONS(1512), + [anon_sym_mod] = ACTIONS(1514), + [anon_sym_SLASH_SLASH] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_bit_DASHshl] = ACTIONS(1514), + [anon_sym_bit_DASHshr] = ACTIONS(1514), + [anon_sym_EQ_TILDE] = ACTIONS(1514), + [anon_sym_BANG_TILDE] = ACTIONS(1514), + [anon_sym_bit_DASHand] = ACTIONS(1514), + [anon_sym_bit_DASHxor] = ACTIONS(1514), + [anon_sym_bit_DASHor] = ACTIONS(1514), + [anon_sym_and] = ACTIONS(1514), + [anon_sym_xor] = ACTIONS(1514), + [anon_sym_or] = ACTIONS(1514), + [anon_sym_in] = ACTIONS(1514), + [anon_sym_not_DASHin] = ACTIONS(1514), + [anon_sym_has] = ACTIONS(1514), + [anon_sym_not_DASHhas] = ACTIONS(1514), + [anon_sym_starts_DASHwith] = ACTIONS(1514), + [anon_sym_ends_DASHwith] = ACTIONS(1514), + [anon_sym_EQ_EQ] = ACTIONS(1514), + [anon_sym_BANG_EQ] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_LT_EQ] = ACTIONS(1514), + [anon_sym_GT] = ACTIONS(1512), + [anon_sym_GT_EQ] = ACTIONS(1514), + [aux_sym_cmd_identifier_token41] = ACTIONS(1512), + [sym__newline] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_err_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_GT_PIPE] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1512), + [anon_sym_GT2] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_in2] = ACTIONS(1512), + [anon_sym_RBRACE] = ACTIONS(1512), + [anon_sym_STAR2] = ACTIONS(1512), + [anon_sym_and2] = ACTIONS(1512), + [anon_sym_xor2] = ACTIONS(1512), + [anon_sym_or2] = ACTIONS(1512), + [anon_sym_not_DASHin2] = ACTIONS(1512), + [anon_sym_has2] = ACTIONS(1512), + [anon_sym_not_DASHhas2] = ACTIONS(1512), + [anon_sym_starts_DASHwith2] = ACTIONS(1512), + [anon_sym_ends_DASHwith2] = ACTIONS(1512), + [anon_sym_EQ_EQ2] = ACTIONS(1512), + [anon_sym_BANG_EQ2] = ACTIONS(1512), + [anon_sym_LT2] = ACTIONS(1512), + [anon_sym_LT_EQ2] = ACTIONS(1512), + [anon_sym_GT_EQ2] = ACTIONS(1512), + [anon_sym_EQ_TILDE2] = ACTIONS(1512), + [anon_sym_BANG_TILDE2] = ACTIONS(1512), + [anon_sym_STAR_STAR2] = ACTIONS(1512), + [anon_sym_PLUS_PLUS2] = ACTIONS(1512), + [anon_sym_SLASH2] = ACTIONS(1512), + [anon_sym_mod2] = ACTIONS(1512), + [anon_sym_SLASH_SLASH2] = ACTIONS(1512), + [anon_sym_PLUS2] = ACTIONS(1512), + [anon_sym_bit_DASHshl2] = ACTIONS(1512), + [anon_sym_bit_DASHshr2] = ACTIONS(1512), + [anon_sym_bit_DASHand2] = ACTIONS(1512), + [anon_sym_bit_DASHxor2] = ACTIONS(1512), + [anon_sym_bit_DASHor2] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [sym_filesize_unit] = ACTIONS(1512), + [sym_duration_unit] = ACTIONS(1514), + [anon_sym_COLON2] = ACTIONS(1512), + [anon_sym_err_GT] = ACTIONS(1512), + [anon_sym_out_GT] = ACTIONS(1512), + [anon_sym_e_GT] = ACTIONS(1512), + [anon_sym_o_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT] = ACTIONS(1512), + [anon_sym_err_GT_GT] = ACTIONS(1512), + [anon_sym_out_GT_GT] = ACTIONS(1512), + [anon_sym_e_GT_GT] = ACTIONS(1512), + [anon_sym_o_GT_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(3), }, [774] = { [sym_comment] = STATE(774), - [anon_sym_STAR_STAR] = ACTIONS(1552), - [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1550), - [anon_sym_SLASH] = ACTIONS(1550), - [anon_sym_mod] = ACTIONS(1552), - [anon_sym_SLASH_SLASH] = ACTIONS(1552), - [anon_sym_PLUS] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1552), - [anon_sym_bit_DASHshl] = ACTIONS(1552), - [anon_sym_bit_DASHshr] = ACTIONS(1552), - [anon_sym_EQ_TILDE] = ACTIONS(1552), - [anon_sym_BANG_TILDE] = ACTIONS(1552), - [anon_sym_bit_DASHand] = ACTIONS(1552), - [anon_sym_bit_DASHxor] = ACTIONS(1552), - [anon_sym_bit_DASHor] = ACTIONS(1552), - [anon_sym_and] = ACTIONS(1552), - [anon_sym_xor] = ACTIONS(1552), - [anon_sym_or] = ACTIONS(1552), - [anon_sym_in] = ACTIONS(1552), - [anon_sym_not_DASHin] = ACTIONS(1552), - [anon_sym_starts_DASHwith] = ACTIONS(1552), - [anon_sym_ends_DASHwith] = ACTIONS(1552), - [anon_sym_EQ_EQ] = ACTIONS(1552), - [anon_sym_BANG_EQ] = ACTIONS(1552), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_LT_EQ] = ACTIONS(1552), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_GT_EQ] = ACTIONS(1552), - [aux_sym_cmd_identifier_token41] = ACTIONS(1550), - [sym__newline] = ACTIONS(1550), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_err_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_GT_PIPE] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1550), - [anon_sym_GT2] = ACTIONS(1550), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_in2] = ACTIONS(1550), - [anon_sym_RBRACE] = ACTIONS(1550), - [anon_sym_STAR2] = ACTIONS(1550), - [anon_sym_and2] = ACTIONS(1550), - [anon_sym_xor2] = ACTIONS(1550), - [anon_sym_or2] = ACTIONS(1550), - [anon_sym_not_DASHin2] = ACTIONS(1550), - [anon_sym_starts_DASHwith2] = ACTIONS(1550), - [anon_sym_ends_DASHwith2] = ACTIONS(1550), - [anon_sym_EQ_EQ2] = ACTIONS(1550), - [anon_sym_BANG_EQ2] = ACTIONS(1550), - [anon_sym_LT2] = ACTIONS(1550), - [anon_sym_LT_EQ2] = ACTIONS(1550), - [anon_sym_GT_EQ2] = ACTIONS(1550), - [anon_sym_EQ_TILDE2] = ACTIONS(1550), - [anon_sym_BANG_TILDE2] = ACTIONS(1550), - [anon_sym_STAR_STAR2] = ACTIONS(1550), - [anon_sym_PLUS_PLUS2] = ACTIONS(1550), - [anon_sym_SLASH2] = ACTIONS(1550), - [anon_sym_mod2] = ACTIONS(1550), - [anon_sym_SLASH_SLASH2] = ACTIONS(1550), - [anon_sym_PLUS2] = ACTIONS(1550), - [anon_sym_bit_DASHshl2] = ACTIONS(1550), - [anon_sym_bit_DASHshr2] = ACTIONS(1550), - [anon_sym_bit_DASHand2] = ACTIONS(1550), - [anon_sym_bit_DASHxor2] = ACTIONS(1550), - [anon_sym_bit_DASHor2] = ACTIONS(1550), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT] = ACTIONS(2782), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [aux_sym__immediate_decimal_token2] = ACTIONS(2784), - [sym_filesize_unit] = ACTIONS(1550), - [sym_duration_unit] = ACTIONS(1552), - [anon_sym_COLON2] = ACTIONS(1550), - [anon_sym_err_GT] = ACTIONS(1550), - [anon_sym_out_GT] = ACTIONS(1550), - [anon_sym_e_GT] = ACTIONS(1550), - [anon_sym_o_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT] = ACTIONS(1550), - [anon_sym_err_GT_GT] = ACTIONS(1550), - [anon_sym_out_GT_GT] = ACTIONS(1550), - [anon_sym_e_GT_GT] = ACTIONS(1550), - [anon_sym_o_GT_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1550), + [anon_sym_STAR_STAR] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_STAR] = ACTIONS(1504), + [anon_sym_SLASH] = ACTIONS(1504), + [anon_sym_mod] = ACTIONS(1506), + [anon_sym_SLASH_SLASH] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_bit_DASHshl] = ACTIONS(1506), + [anon_sym_bit_DASHshr] = ACTIONS(1506), + [anon_sym_EQ_TILDE] = ACTIONS(1506), + [anon_sym_BANG_TILDE] = ACTIONS(1506), + [anon_sym_bit_DASHand] = ACTIONS(1506), + [anon_sym_bit_DASHxor] = ACTIONS(1506), + [anon_sym_bit_DASHor] = ACTIONS(1506), + [anon_sym_and] = ACTIONS(1506), + [anon_sym_xor] = ACTIONS(1506), + [anon_sym_or] = ACTIONS(1506), + [anon_sym_in] = ACTIONS(1506), + [anon_sym_not_DASHin] = ACTIONS(1506), + [anon_sym_has] = ACTIONS(1506), + [anon_sym_not_DASHhas] = 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_LT] = ACTIONS(1504), + [anon_sym_LT_EQ] = ACTIONS(1506), + [anon_sym_GT] = ACTIONS(1504), + [anon_sym_GT_EQ] = ACTIONS(1506), + [aux_sym_cmd_identifier_token41] = ACTIONS(1504), + [sym__newline] = ACTIONS(1504), + [anon_sym_SEMI] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_err_GT_PIPE] = ACTIONS(1504), + [anon_sym_out_GT_PIPE] = ACTIONS(1504), + [anon_sym_e_GT_PIPE] = ACTIONS(1504), + [anon_sym_o_GT_PIPE] = ACTIONS(1504), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1504), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1504), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1504), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1504), + [anon_sym_GT2] = ACTIONS(1504), + [anon_sym_DASH2] = ACTIONS(1504), + [anon_sym_in2] = ACTIONS(1504), + [anon_sym_RBRACE] = ACTIONS(1504), + [anon_sym_STAR2] = ACTIONS(1504), + [anon_sym_and2] = ACTIONS(1504), + [anon_sym_xor2] = ACTIONS(1504), + [anon_sym_or2] = ACTIONS(1504), + [anon_sym_not_DASHin2] = ACTIONS(1504), + [anon_sym_has2] = ACTIONS(1504), + [anon_sym_not_DASHhas2] = ACTIONS(1504), + [anon_sym_starts_DASHwith2] = ACTIONS(1504), + [anon_sym_ends_DASHwith2] = ACTIONS(1504), + [anon_sym_EQ_EQ2] = ACTIONS(1504), + [anon_sym_BANG_EQ2] = ACTIONS(1504), + [anon_sym_LT2] = ACTIONS(1504), + [anon_sym_LT_EQ2] = ACTIONS(1504), + [anon_sym_GT_EQ2] = ACTIONS(1504), + [anon_sym_EQ_TILDE2] = ACTIONS(1504), + [anon_sym_BANG_TILDE2] = ACTIONS(1504), + [anon_sym_STAR_STAR2] = ACTIONS(1504), + [anon_sym_PLUS_PLUS2] = ACTIONS(1504), + [anon_sym_SLASH2] = ACTIONS(1504), + [anon_sym_mod2] = ACTIONS(1504), + [anon_sym_SLASH_SLASH2] = ACTIONS(1504), + [anon_sym_PLUS2] = ACTIONS(1504), + [anon_sym_bit_DASHshl2] = ACTIONS(1504), + [anon_sym_bit_DASHshr2] = ACTIONS(1504), + [anon_sym_bit_DASHand2] = ACTIONS(1504), + [anon_sym_bit_DASHxor2] = ACTIONS(1504), + [anon_sym_bit_DASHor2] = ACTIONS(1504), + [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_COLON2] = ACTIONS(1504), + [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(1504), + [anon_sym_out_GT_GT] = ACTIONS(1504), + [anon_sym_e_GT_GT] = ACTIONS(1504), + [anon_sym_o_GT_GT] = ACTIONS(1504), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1504), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1504), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1504), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1504), [anon_sym_POUND] = ACTIONS(3), }, [775] = { - [sym_expr_parenthesized] = STATE(1513), - [sym_val_range] = STATE(1771), - [sym__val_range] = STATE(7834), - [sym__val_range_with_end] = STATE(7414), - [sym__value] = STATE(1771), - [sym_val_nothing] = STATE(1798), - [sym_val_bool] = STATE(1575), - [sym_val_variable] = STATE(1529), - [sym_val_number] = STATE(1798), - [sym__val_number_decimal] = STATE(1259), - [sym__val_number] = STATE(1706), - [sym_val_duration] = STATE(1798), - [sym_val_filesize] = STATE(1798), - [sym_val_binary] = STATE(1798), - [sym_val_string] = STATE(1798), - [sym__raw_str] = STATE(1731), - [sym__str_double_quotes] = STATE(1731), - [sym_val_interpolated] = STATE(1798), - [sym__inter_single_quotes] = STATE(1778), - [sym__inter_double_quotes] = STATE(1780), - [sym_val_list] = STATE(1798), - [sym_val_record] = STATE(1798), - [sym_val_table] = STATE(1798), - [sym_val_closure] = STATE(1798), - [sym__flag] = STATE(1771), - [sym_short_flag] = STATE(1765), - [sym_long_flag] = STATE(1765), - [sym_unquoted] = STATE(1570), - [sym__unquoted_with_expr] = STATE(1814), - [sym__unquoted_anonymous_prefix] = STATE(6713), [sym_comment] = STATE(775), - [aux_sym_ctrl_do_repeat2] = STATE(775), - [sym__newline] = ACTIONS(2786), - [anon_sym_SEMI] = ACTIONS(2786), - [anon_sym_PIPE] = ACTIONS(2786), - [anon_sym_err_GT_PIPE] = ACTIONS(2786), - [anon_sym_out_GT_PIPE] = ACTIONS(2786), - [anon_sym_e_GT_PIPE] = ACTIONS(2786), - [anon_sym_o_GT_PIPE] = ACTIONS(2786), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2786), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2786), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2786), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2786), - [anon_sym_LBRACK] = ACTIONS(2788), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(2786), - [anon_sym_DOLLAR] = ACTIONS(2794), - [anon_sym_DASH_DASH] = ACTIONS(2797), - [anon_sym_DASH2] = ACTIONS(2800), - [anon_sym_LBRACE] = ACTIONS(2803), - [anon_sym_RBRACE] = ACTIONS(2786), - [anon_sym_DOT_DOT] = ACTIONS(2806), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2809), - [anon_sym_DOT_DOT_LT] = ACTIONS(2809), - [anon_sym_null] = ACTIONS(2812), - [anon_sym_true] = ACTIONS(2815), - [anon_sym_false] = ACTIONS(2815), - [aux_sym__val_number_decimal_token1] = ACTIONS(2818), - [aux_sym__val_number_decimal_token2] = ACTIONS(2821), - [aux_sym__val_number_decimal_token3] = ACTIONS(2824), - [aux_sym__val_number_decimal_token4] = ACTIONS(2827), - [aux_sym__val_number_token1] = ACTIONS(2830), - [aux_sym__val_number_token2] = ACTIONS(2830), - [aux_sym__val_number_token3] = ACTIONS(2830), - [aux_sym__val_number_token4] = ACTIONS(2833), - [aux_sym__val_number_token5] = ACTIONS(2833), - [aux_sym__val_number_token6] = ACTIONS(2833), - [anon_sym_0b] = ACTIONS(2836), - [anon_sym_0o] = ACTIONS(2839), - [anon_sym_0x] = ACTIONS(2839), - [sym_val_date] = ACTIONS(2842), - [anon_sym_DQUOTE] = ACTIONS(2845), - [sym__str_single_quotes] = ACTIONS(2848), - [sym__str_back_ticks] = ACTIONS(2848), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2851), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2854), - [anon_sym_err_GT] = ACTIONS(2857), - [anon_sym_out_GT] = ACTIONS(2857), - [anon_sym_e_GT] = ACTIONS(2857), - [anon_sym_o_GT] = ACTIONS(2857), - [anon_sym_err_PLUSout_GT] = ACTIONS(2857), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2857), - [anon_sym_o_PLUSe_GT] = ACTIONS(2857), - [anon_sym_e_PLUSo_GT] = ACTIONS(2857), - [anon_sym_err_GT_GT] = ACTIONS(2860), - [anon_sym_out_GT_GT] = ACTIONS(2860), - [anon_sym_e_GT_GT] = ACTIONS(2860), - [anon_sym_o_GT_GT] = ACTIONS(2860), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2860), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2860), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2860), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2860), - [aux_sym_unquoted_token1] = ACTIONS(2863), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2866), + [anon_sym_STAR_STAR] = ACTIONS(1691), + [anon_sym_PLUS_PLUS] = ACTIONS(1691), + [anon_sym_STAR] = ACTIONS(1689), + [anon_sym_SLASH] = ACTIONS(1689), + [anon_sym_mod] = ACTIONS(1691), + [anon_sym_SLASH_SLASH] = ACTIONS(1691), + [anon_sym_PLUS] = ACTIONS(1689), + [anon_sym_DASH] = ACTIONS(1691), + [anon_sym_bit_DASHshl] = ACTIONS(1691), + [anon_sym_bit_DASHshr] = ACTIONS(1691), + [anon_sym_EQ_TILDE] = ACTIONS(1691), + [anon_sym_BANG_TILDE] = ACTIONS(1691), + [anon_sym_bit_DASHand] = ACTIONS(1691), + [anon_sym_bit_DASHxor] = ACTIONS(1691), + [anon_sym_bit_DASHor] = ACTIONS(1691), + [anon_sym_and] = ACTIONS(1691), + [anon_sym_xor] = ACTIONS(1691), + [anon_sym_or] = ACTIONS(1691), + [anon_sym_in] = ACTIONS(1691), + [anon_sym_not_DASHin] = ACTIONS(1691), + [anon_sym_has] = ACTIONS(1691), + [anon_sym_not_DASHhas] = ACTIONS(1691), + [anon_sym_starts_DASHwith] = ACTIONS(1691), + [anon_sym_ends_DASHwith] = ACTIONS(1691), + [anon_sym_EQ_EQ] = ACTIONS(1691), + [anon_sym_BANG_EQ] = ACTIONS(1691), + [anon_sym_LT] = ACTIONS(1689), + [anon_sym_LT_EQ] = ACTIONS(1691), + [anon_sym_GT] = ACTIONS(1689), + [anon_sym_GT_EQ] = ACTIONS(1691), + [aux_sym_cmd_identifier_token41] = ACTIONS(1689), + [sym__newline] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1689), + [anon_sym_PIPE] = ACTIONS(1689), + [anon_sym_err_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_GT_PIPE] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1689), + [anon_sym_GT2] = ACTIONS(1689), + [anon_sym_DASH2] = ACTIONS(1689), + [anon_sym_in2] = ACTIONS(1689), + [anon_sym_RBRACE] = ACTIONS(1689), + [anon_sym_STAR2] = ACTIONS(1689), + [anon_sym_and2] = ACTIONS(1689), + [anon_sym_xor2] = ACTIONS(1689), + [anon_sym_or2] = ACTIONS(1689), + [anon_sym_not_DASHin2] = ACTIONS(1689), + [anon_sym_has2] = ACTIONS(1689), + [anon_sym_not_DASHhas2] = ACTIONS(1689), + [anon_sym_starts_DASHwith2] = ACTIONS(1689), + [anon_sym_ends_DASHwith2] = ACTIONS(1689), + [anon_sym_EQ_EQ2] = ACTIONS(1689), + [anon_sym_BANG_EQ2] = ACTIONS(1689), + [anon_sym_LT2] = ACTIONS(1689), + [anon_sym_LT_EQ2] = ACTIONS(1689), + [anon_sym_GT_EQ2] = ACTIONS(1689), + [anon_sym_EQ_TILDE2] = ACTIONS(1689), + [anon_sym_BANG_TILDE2] = ACTIONS(1689), + [anon_sym_STAR_STAR2] = ACTIONS(1689), + [anon_sym_PLUS_PLUS2] = ACTIONS(1689), + [anon_sym_SLASH2] = ACTIONS(1689), + [anon_sym_mod2] = ACTIONS(1689), + [anon_sym_SLASH_SLASH2] = ACTIONS(1689), + [anon_sym_PLUS2] = ACTIONS(1689), + [anon_sym_bit_DASHshl2] = ACTIONS(1689), + [anon_sym_bit_DASHshr2] = ACTIONS(1689), + [anon_sym_bit_DASHand2] = ACTIONS(1689), + [anon_sym_bit_DASHxor2] = ACTIONS(1689), + [anon_sym_bit_DASHor2] = ACTIONS(1689), + [anon_sym_DOT_DOT2] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1691), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1691), + [sym_filesize_unit] = ACTIONS(1689), + [sym_duration_unit] = ACTIONS(1691), + [anon_sym_COLON2] = ACTIONS(1689), + [anon_sym_err_GT] = ACTIONS(1689), + [anon_sym_out_GT] = ACTIONS(1689), + [anon_sym_e_GT] = ACTIONS(1689), + [anon_sym_o_GT] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT] = ACTIONS(1689), + [anon_sym_err_GT_GT] = ACTIONS(1689), + [anon_sym_out_GT_GT] = ACTIONS(1689), + [anon_sym_e_GT_GT] = ACTIONS(1689), + [anon_sym_o_GT_GT] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1689), + [anon_sym_POUND] = ACTIONS(3), }, [776] = { [sym_comment] = STATE(776), - [aux_sym_cmd_identifier_token1] = ACTIONS(2869), - [aux_sym_cmd_identifier_token2] = ACTIONS(2871), - [aux_sym_cmd_identifier_token3] = ACTIONS(2871), - [aux_sym_cmd_identifier_token4] = ACTIONS(2871), - [aux_sym_cmd_identifier_token5] = ACTIONS(2871), - [aux_sym_cmd_identifier_token6] = ACTIONS(2871), - [aux_sym_cmd_identifier_token7] = ACTIONS(2871), - [aux_sym_cmd_identifier_token8] = ACTIONS(2871), - [aux_sym_cmd_identifier_token9] = ACTIONS(2869), - [aux_sym_cmd_identifier_token10] = ACTIONS(2871), - [aux_sym_cmd_identifier_token11] = ACTIONS(2871), - [aux_sym_cmd_identifier_token12] = ACTIONS(2871), - [aux_sym_cmd_identifier_token13] = ACTIONS(2869), - [aux_sym_cmd_identifier_token14] = ACTIONS(2871), - [aux_sym_cmd_identifier_token15] = ACTIONS(2869), - [aux_sym_cmd_identifier_token16] = ACTIONS(2871), - [aux_sym_cmd_identifier_token17] = ACTIONS(2871), - [aux_sym_cmd_identifier_token18] = ACTIONS(2869), - [aux_sym_cmd_identifier_token19] = ACTIONS(2871), - [aux_sym_cmd_identifier_token20] = ACTIONS(2871), - [aux_sym_cmd_identifier_token21] = ACTIONS(2871), - [aux_sym_cmd_identifier_token22] = ACTIONS(2871), - [aux_sym_cmd_identifier_token23] = ACTIONS(2871), - [aux_sym_cmd_identifier_token24] = ACTIONS(2871), - [aux_sym_cmd_identifier_token25] = ACTIONS(2871), - [aux_sym_cmd_identifier_token26] = ACTIONS(2871), - [aux_sym_cmd_identifier_token27] = ACTIONS(2871), - [aux_sym_cmd_identifier_token28] = ACTIONS(2871), - [aux_sym_cmd_identifier_token29] = ACTIONS(2871), - [aux_sym_cmd_identifier_token30] = ACTIONS(2871), - [aux_sym_cmd_identifier_token31] = ACTIONS(2871), - [aux_sym_cmd_identifier_token32] = ACTIONS(2869), - [aux_sym_cmd_identifier_token33] = ACTIONS(2871), - [aux_sym_cmd_identifier_token34] = ACTIONS(2869), - [aux_sym_cmd_identifier_token35] = ACTIONS(2871), - [aux_sym_cmd_identifier_token36] = ACTIONS(2871), - [aux_sym_cmd_identifier_token37] = ACTIONS(2871), - [aux_sym_cmd_identifier_token38] = ACTIONS(2869), - [aux_sym_cmd_identifier_token39] = ACTIONS(2871), - [aux_sym_cmd_identifier_token40] = ACTIONS(2871), - [sym__newline] = ACTIONS(2871), - [anon_sym_PIPE] = ACTIONS(2871), - [anon_sym_err_GT_PIPE] = ACTIONS(2871), - [anon_sym_out_GT_PIPE] = ACTIONS(2871), - [anon_sym_e_GT_PIPE] = ACTIONS(2871), - [anon_sym_o_GT_PIPE] = ACTIONS(2871), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2871), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2871), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2871), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2871), - [anon_sym_LBRACK] = ACTIONS(2871), - [anon_sym_LPAREN] = ACTIONS(2871), - [anon_sym_DOLLAR] = ACTIONS(2869), - [anon_sym_DASH2] = ACTIONS(2869), - [anon_sym_break] = ACTIONS(2869), - [anon_sym_continue] = ACTIONS(2869), - [anon_sym_do] = ACTIONS(2869), - [anon_sym_if] = ACTIONS(2869), - [anon_sym_match] = ACTIONS(2869), - [anon_sym_LBRACE] = ACTIONS(2871), - [anon_sym_DOT_DOT] = ACTIONS(2869), - [anon_sym_try] = ACTIONS(2869), - [anon_sym_return] = ACTIONS(2869), - [anon_sym_where] = ACTIONS(2871), - [aux_sym_expr_unary_token1] = ACTIONS(2871), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2871), - [anon_sym_DOT_DOT_LT] = ACTIONS(2871), - [anon_sym_null] = ACTIONS(2869), - [anon_sym_true] = ACTIONS(2869), - [anon_sym_false] = ACTIONS(2869), - [aux_sym__val_number_decimal_token1] = ACTIONS(2869), - [aux_sym__val_number_decimal_token2] = ACTIONS(2871), - [aux_sym__val_number_decimal_token3] = ACTIONS(2871), - [aux_sym__val_number_decimal_token4] = ACTIONS(2871), - [aux_sym__val_number_token1] = ACTIONS(2871), - [aux_sym__val_number_token2] = ACTIONS(2871), - [aux_sym__val_number_token3] = ACTIONS(2871), - [aux_sym__val_number_token4] = ACTIONS(2869), - [aux_sym__val_number_token5] = ACTIONS(2869), - [aux_sym__val_number_token6] = ACTIONS(2869), - [anon_sym_0b] = ACTIONS(2869), - [anon_sym_0o] = ACTIONS(2869), - [anon_sym_0x] = ACTIONS(2869), - [sym_val_date] = ACTIONS(2871), - [anon_sym_DQUOTE] = ACTIONS(2871), - [sym__str_single_quotes] = ACTIONS(2871), - [sym__str_back_ticks] = ACTIONS(2871), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2871), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2871), - [aux_sym_env_var_token1] = ACTIONS(2869), - [anon_sym_CARET] = ACTIONS(2871), - [aux_sym_command_token1] = ACTIONS(2871), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2871), + [anon_sym_STAR_STAR] = ACTIONS(1620), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1618), + [anon_sym_SLASH] = ACTIONS(1618), + [anon_sym_mod] = ACTIONS(1620), + [anon_sym_SLASH_SLASH] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1618), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_bit_DASHshl] = ACTIONS(1620), + [anon_sym_bit_DASHshr] = ACTIONS(1620), + [anon_sym_EQ_TILDE] = ACTIONS(1620), + [anon_sym_BANG_TILDE] = ACTIONS(1620), + [anon_sym_bit_DASHand] = ACTIONS(1620), + [anon_sym_bit_DASHxor] = ACTIONS(1620), + [anon_sym_bit_DASHor] = ACTIONS(1620), + [anon_sym_and] = ACTIONS(1620), + [anon_sym_xor] = ACTIONS(1620), + [anon_sym_or] = ACTIONS(1620), + [anon_sym_in] = ACTIONS(1620), + [anon_sym_not_DASHin] = ACTIONS(1620), + [anon_sym_has] = ACTIONS(1620), + [anon_sym_not_DASHhas] = ACTIONS(1620), + [anon_sym_starts_DASHwith] = ACTIONS(1620), + [anon_sym_ends_DASHwith] = ACTIONS(1620), + [anon_sym_EQ_EQ] = ACTIONS(1620), + [anon_sym_BANG_EQ] = ACTIONS(1620), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_LT_EQ] = ACTIONS(1620), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_GT_EQ] = ACTIONS(1620), + [aux_sym_cmd_identifier_token41] = ACTIONS(1618), + [sym__newline] = ACTIONS(1618), + [anon_sym_SEMI] = ACTIONS(1618), + [anon_sym_PIPE] = ACTIONS(1618), + [anon_sym_err_GT_PIPE] = ACTIONS(1618), + [anon_sym_out_GT_PIPE] = ACTIONS(1618), + [anon_sym_e_GT_PIPE] = ACTIONS(1618), + [anon_sym_o_GT_PIPE] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1618), + [anon_sym_GT2] = ACTIONS(1618), + [anon_sym_DASH2] = ACTIONS(1618), + [anon_sym_in2] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1618), + [anon_sym_STAR2] = ACTIONS(1618), + [anon_sym_and2] = ACTIONS(1618), + [anon_sym_xor2] = ACTIONS(1618), + [anon_sym_or2] = ACTIONS(1618), + [anon_sym_not_DASHin2] = ACTIONS(1618), + [anon_sym_has2] = ACTIONS(1618), + [anon_sym_not_DASHhas2] = ACTIONS(1618), + [anon_sym_starts_DASHwith2] = ACTIONS(1618), + [anon_sym_ends_DASHwith2] = ACTIONS(1618), + [anon_sym_EQ_EQ2] = ACTIONS(1618), + [anon_sym_BANG_EQ2] = ACTIONS(1618), + [anon_sym_LT2] = ACTIONS(1618), + [anon_sym_LT_EQ2] = ACTIONS(1618), + [anon_sym_GT_EQ2] = ACTIONS(1618), + [anon_sym_EQ_TILDE2] = ACTIONS(1618), + [anon_sym_BANG_TILDE2] = ACTIONS(1618), + [anon_sym_STAR_STAR2] = ACTIONS(1618), + [anon_sym_PLUS_PLUS2] = ACTIONS(1618), + [anon_sym_SLASH2] = ACTIONS(1618), + [anon_sym_mod2] = ACTIONS(1618), + [anon_sym_SLASH_SLASH2] = ACTIONS(1618), + [anon_sym_PLUS2] = ACTIONS(1618), + [anon_sym_bit_DASHshl2] = ACTIONS(1618), + [anon_sym_bit_DASHshr2] = ACTIONS(1618), + [anon_sym_bit_DASHand2] = ACTIONS(1618), + [anon_sym_bit_DASHxor2] = ACTIONS(1618), + [anon_sym_bit_DASHor2] = ACTIONS(1618), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [aux_sym__immediate_decimal_token2] = ACTIONS(2566), + [sym_filesize_unit] = ACTIONS(1618), + [sym_duration_unit] = ACTIONS(1620), + [anon_sym_err_GT] = ACTIONS(1618), + [anon_sym_out_GT] = ACTIONS(1618), + [anon_sym_e_GT] = ACTIONS(1618), + [anon_sym_o_GT] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT] = ACTIONS(1618), + [anon_sym_err_GT_GT] = ACTIONS(1618), + [anon_sym_out_GT_GT] = ACTIONS(1618), + [anon_sym_e_GT_GT] = ACTIONS(1618), + [anon_sym_o_GT_GT] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(3), }, [777] = { - [sym_expr_parenthesized] = STATE(1552), - [sym_val_range] = STATE(1837), - [sym__val_range] = STATE(7466), - [sym__val_range_with_end] = STATE(7323), - [sym__value] = STATE(1837), - [sym_val_nothing] = STATE(1903), - [sym_val_bool] = STATE(1670), - [sym_val_variable] = STATE(1618), - [sym_val_number] = STATE(1903), - [sym__val_number_decimal] = STATE(1320), - [sym__val_number] = STATE(1904), - [sym_val_duration] = STATE(1903), - [sym_val_filesize] = STATE(1903), - [sym_val_binary] = STATE(1903), - [sym_val_string] = STATE(1903), - [sym__raw_str] = STATE(1876), - [sym__str_double_quotes] = STATE(1876), - [sym_val_interpolated] = STATE(1903), - [sym__inter_single_quotes] = STATE(1874), - [sym__inter_double_quotes] = STATE(1875), - [sym_val_list] = STATE(1903), - [sym_val_record] = STATE(1903), - [sym_val_table] = STATE(1903), - [sym_val_closure] = STATE(1903), - [sym__flag] = STATE(1837), - [sym_short_flag] = STATE(1839), - [sym_long_flag] = STATE(1839), - [sym_unquoted] = STATE(1656), - [sym__unquoted_with_expr] = STATE(1848), - [sym__unquoted_anonymous_prefix] = STATE(6938), [sym_comment] = STATE(777), - [aux_sym_ctrl_do_repeat2] = STATE(779), - [ts_builtin_sym_end] = ACTIONS(2778), - [sym__newline] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2778), - [anon_sym_PIPE] = ACTIONS(2778), - [anon_sym_err_GT_PIPE] = ACTIONS(2778), - [anon_sym_out_GT_PIPE] = ACTIONS(2778), - [anon_sym_e_GT_PIPE] = ACTIONS(2778), - [anon_sym_o_GT_PIPE] = ACTIONS(2778), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2778), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2778), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2778), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2873), - [anon_sym_LPAREN] = ACTIONS(2875), - [anon_sym_DOLLAR] = ACTIONS(2877), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_DASH2] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2883), - [anon_sym_DOT_DOT] = ACTIONS(2885), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2887), - [anon_sym_DOT_DOT_LT] = ACTIONS(2887), - [anon_sym_null] = ACTIONS(2889), - [anon_sym_true] = ACTIONS(2891), - [anon_sym_false] = ACTIONS(2891), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [aux_sym__val_number_decimal_token3] = ACTIONS(2897), - [aux_sym__val_number_decimal_token4] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2901), - [aux_sym__val_number_token2] = ACTIONS(2901), - [aux_sym__val_number_token3] = ACTIONS(2901), - [aux_sym__val_number_token4] = ACTIONS(2903), - [aux_sym__val_number_token5] = ACTIONS(2903), - [aux_sym__val_number_token6] = ACTIONS(2903), - [anon_sym_0b] = ACTIONS(2905), - [anon_sym_0o] = ACTIONS(2907), - [anon_sym_0x] = ACTIONS(2907), - [sym_val_date] = ACTIONS(2909), - [anon_sym_DQUOTE] = ACTIONS(2911), - [sym__str_single_quotes] = ACTIONS(2913), - [sym__str_back_ticks] = ACTIONS(2913), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2915), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2917), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(2919), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2921), + [anon_sym_STAR_STAR] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_SLASH] = ACTIONS(1512), + [anon_sym_mod] = ACTIONS(1514), + [anon_sym_SLASH_SLASH] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_bit_DASHshl] = ACTIONS(1514), + [anon_sym_bit_DASHshr] = ACTIONS(1514), + [anon_sym_EQ_TILDE] = ACTIONS(1514), + [anon_sym_BANG_TILDE] = ACTIONS(1514), + [anon_sym_bit_DASHand] = ACTIONS(1514), + [anon_sym_bit_DASHxor] = ACTIONS(1514), + [anon_sym_bit_DASHor] = ACTIONS(1514), + [anon_sym_and] = ACTIONS(1514), + [anon_sym_xor] = ACTIONS(1514), + [anon_sym_or] = ACTIONS(1514), + [anon_sym_in] = ACTIONS(1514), + [anon_sym_not_DASHin] = ACTIONS(1514), + [anon_sym_has] = ACTIONS(1514), + [anon_sym_not_DASHhas] = ACTIONS(1514), + [anon_sym_starts_DASHwith] = ACTIONS(1514), + [anon_sym_ends_DASHwith] = ACTIONS(1514), + [anon_sym_EQ_EQ] = ACTIONS(1514), + [anon_sym_BANG_EQ] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_LT_EQ] = ACTIONS(1514), + [anon_sym_GT] = ACTIONS(1512), + [anon_sym_GT_EQ] = ACTIONS(1514), + [aux_sym_cmd_identifier_token41] = ACTIONS(1512), + [sym__newline] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_err_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_GT_PIPE] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1512), + [anon_sym_GT2] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_in2] = ACTIONS(1512), + [anon_sym_RBRACE] = ACTIONS(1512), + [anon_sym_STAR2] = ACTIONS(1512), + [anon_sym_and2] = ACTIONS(1512), + [anon_sym_xor2] = ACTIONS(1512), + [anon_sym_or2] = ACTIONS(1512), + [anon_sym_not_DASHin2] = ACTIONS(1512), + [anon_sym_has2] = ACTIONS(1512), + [anon_sym_not_DASHhas2] = ACTIONS(1512), + [anon_sym_starts_DASHwith2] = ACTIONS(1512), + [anon_sym_ends_DASHwith2] = ACTIONS(1512), + [anon_sym_EQ_EQ2] = ACTIONS(1512), + [anon_sym_BANG_EQ2] = ACTIONS(1512), + [anon_sym_LT2] = ACTIONS(1512), + [anon_sym_LT_EQ2] = ACTIONS(1512), + [anon_sym_GT_EQ2] = ACTIONS(1512), + [anon_sym_EQ_TILDE2] = ACTIONS(1512), + [anon_sym_BANG_TILDE2] = ACTIONS(1512), + [anon_sym_STAR_STAR2] = ACTIONS(1512), + [anon_sym_PLUS_PLUS2] = ACTIONS(1512), + [anon_sym_SLASH2] = ACTIONS(1512), + [anon_sym_mod2] = ACTIONS(1512), + [anon_sym_SLASH_SLASH2] = ACTIONS(1512), + [anon_sym_PLUS2] = ACTIONS(1512), + [anon_sym_bit_DASHshl2] = ACTIONS(1512), + [anon_sym_bit_DASHshr2] = ACTIONS(1512), + [anon_sym_bit_DASHand2] = ACTIONS(1512), + [anon_sym_bit_DASHxor2] = ACTIONS(1512), + [anon_sym_bit_DASHor2] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [aux_sym__immediate_decimal_token2] = ACTIONS(2532), + [sym_filesize_unit] = ACTIONS(1512), + [sym_duration_unit] = ACTIONS(1514), + [anon_sym_err_GT] = ACTIONS(1512), + [anon_sym_out_GT] = ACTIONS(1512), + [anon_sym_e_GT] = ACTIONS(1512), + [anon_sym_o_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT] = ACTIONS(1512), + [anon_sym_err_GT_GT] = ACTIONS(1512), + [anon_sym_out_GT_GT] = ACTIONS(1512), + [anon_sym_e_GT_GT] = ACTIONS(1512), + [anon_sym_o_GT_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(3), }, [778] = { + [aux_sym__pipe_separator] = STATE(778), [sym_comment] = STATE(778), - [anon_sym_STAR_STAR] = ACTIONS(1552), - [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1550), - [anon_sym_SLASH] = ACTIONS(1550), - [anon_sym_mod] = ACTIONS(1552), - [anon_sym_SLASH_SLASH] = ACTIONS(1552), - [anon_sym_PLUS] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1552), - [anon_sym_bit_DASHshl] = ACTIONS(1552), - [anon_sym_bit_DASHshr] = ACTIONS(1552), - [anon_sym_EQ_TILDE] = ACTIONS(1552), - [anon_sym_BANG_TILDE] = ACTIONS(1552), - [anon_sym_bit_DASHand] = ACTIONS(1552), - [anon_sym_bit_DASHxor] = ACTIONS(1552), - [anon_sym_bit_DASHor] = ACTIONS(1552), - [anon_sym_and] = ACTIONS(1552), - [anon_sym_xor] = ACTIONS(1552), - [anon_sym_or] = ACTIONS(1552), - [anon_sym_in] = ACTIONS(1552), - [anon_sym_not_DASHin] = ACTIONS(1552), - [anon_sym_starts_DASHwith] = ACTIONS(1552), - [anon_sym_ends_DASHwith] = ACTIONS(1552), - [anon_sym_EQ_EQ] = ACTIONS(1552), - [anon_sym_BANG_EQ] = ACTIONS(1552), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_LT_EQ] = ACTIONS(1552), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_GT_EQ] = ACTIONS(1552), - [aux_sym_cmd_identifier_token41] = ACTIONS(1550), - [sym__newline] = ACTIONS(1550), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_err_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_GT_PIPE] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1550), - [anon_sym_GT2] = ACTIONS(1550), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_in2] = ACTIONS(1550), - [anon_sym_RBRACE] = ACTIONS(1550), - [anon_sym_STAR2] = ACTIONS(1550), - [anon_sym_and2] = ACTIONS(1550), - [anon_sym_xor2] = ACTIONS(1550), - [anon_sym_or2] = ACTIONS(1550), - [anon_sym_not_DASHin2] = ACTIONS(1550), - [anon_sym_starts_DASHwith2] = ACTIONS(1550), - [anon_sym_ends_DASHwith2] = ACTIONS(1550), - [anon_sym_EQ_EQ2] = ACTIONS(1550), - [anon_sym_BANG_EQ2] = ACTIONS(1550), - [anon_sym_LT2] = ACTIONS(1550), - [anon_sym_LT_EQ2] = ACTIONS(1550), - [anon_sym_GT_EQ2] = ACTIONS(1550), - [anon_sym_EQ_TILDE2] = ACTIONS(1550), - [anon_sym_BANG_TILDE2] = ACTIONS(1550), - [anon_sym_STAR_STAR2] = ACTIONS(1550), - [anon_sym_PLUS_PLUS2] = ACTIONS(1550), - [anon_sym_SLASH2] = ACTIONS(1550), - [anon_sym_mod2] = ACTIONS(1550), - [anon_sym_SLASH_SLASH2] = ACTIONS(1550), - [anon_sym_PLUS2] = ACTIONS(1550), - [anon_sym_bit_DASHshl2] = ACTIONS(1550), - [anon_sym_bit_DASHshr2] = ACTIONS(1550), - [anon_sym_bit_DASHand2] = ACTIONS(1550), - [anon_sym_bit_DASHxor2] = ACTIONS(1550), - [anon_sym_bit_DASHor2] = ACTIONS(1550), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT] = ACTIONS(2923), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [aux_sym__immediate_decimal_token2] = ACTIONS(2925), - [sym_filesize_unit] = ACTIONS(1550), - [sym_duration_unit] = ACTIONS(1552), - [anon_sym_err_GT] = ACTIONS(1550), - [anon_sym_out_GT] = ACTIONS(1550), - [anon_sym_e_GT] = ACTIONS(1550), - [anon_sym_o_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT] = ACTIONS(1550), - [anon_sym_err_GT_GT] = ACTIONS(1550), - [anon_sym_out_GT_GT] = ACTIONS(1550), - [anon_sym_e_GT_GT] = ACTIONS(1550), - [anon_sym_o_GT_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1550), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(5142), + [aux_sym_cmd_identifier_token1] = ACTIONS(2568), + [aux_sym_cmd_identifier_token2] = ACTIONS(2570), + [aux_sym_cmd_identifier_token3] = ACTIONS(2570), + [aux_sym_cmd_identifier_token4] = ACTIONS(2570), + [aux_sym_cmd_identifier_token5] = ACTIONS(2570), + [aux_sym_cmd_identifier_token6] = ACTIONS(2570), + [aux_sym_cmd_identifier_token7] = ACTIONS(2570), + [aux_sym_cmd_identifier_token8] = ACTIONS(2570), + [aux_sym_cmd_identifier_token9] = ACTIONS(2568), + [aux_sym_cmd_identifier_token10] = ACTIONS(2570), + [aux_sym_cmd_identifier_token11] = ACTIONS(2570), + [aux_sym_cmd_identifier_token12] = ACTIONS(2570), + [aux_sym_cmd_identifier_token13] = ACTIONS(2568), + [aux_sym_cmd_identifier_token14] = ACTIONS(2570), + [aux_sym_cmd_identifier_token15] = ACTIONS(2568), + [aux_sym_cmd_identifier_token16] = ACTIONS(2570), + [aux_sym_cmd_identifier_token17] = ACTIONS(2570), + [aux_sym_cmd_identifier_token18] = ACTIONS(2568), + [aux_sym_cmd_identifier_token19] = ACTIONS(2570), + [aux_sym_cmd_identifier_token20] = ACTIONS(2570), + [aux_sym_cmd_identifier_token21] = ACTIONS(2570), + [aux_sym_cmd_identifier_token22] = ACTIONS(2570), + [aux_sym_cmd_identifier_token23] = ACTIONS(2570), + [aux_sym_cmd_identifier_token24] = ACTIONS(2570), + [aux_sym_cmd_identifier_token25] = ACTIONS(2570), + [aux_sym_cmd_identifier_token26] = ACTIONS(2570), + [aux_sym_cmd_identifier_token27] = ACTIONS(2570), + [aux_sym_cmd_identifier_token28] = ACTIONS(2570), + [aux_sym_cmd_identifier_token29] = ACTIONS(2570), + [aux_sym_cmd_identifier_token30] = ACTIONS(2570), + [aux_sym_cmd_identifier_token31] = ACTIONS(2570), + [aux_sym_cmd_identifier_token32] = ACTIONS(2568), + [aux_sym_cmd_identifier_token33] = ACTIONS(2570), + [aux_sym_cmd_identifier_token34] = ACTIONS(2568), + [aux_sym_cmd_identifier_token35] = ACTIONS(2570), + [aux_sym_cmd_identifier_token36] = ACTIONS(2570), + [aux_sym_cmd_identifier_token37] = ACTIONS(2570), + [aux_sym_cmd_identifier_token38] = ACTIONS(2568), + [aux_sym_cmd_identifier_token39] = ACTIONS(2570), + [aux_sym_cmd_identifier_token40] = ACTIONS(2570), + [sym__newline] = ACTIONS(2572), + [anon_sym_PIPE] = ACTIONS(2575), + [anon_sym_err_GT_PIPE] = ACTIONS(2575), + [anon_sym_out_GT_PIPE] = ACTIONS(2575), + [anon_sym_e_GT_PIPE] = ACTIONS(2575), + [anon_sym_o_GT_PIPE] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(2570), + [anon_sym_LPAREN] = ACTIONS(2570), + [anon_sym_DOLLAR] = ACTIONS(2568), + [anon_sym_DASH2] = ACTIONS(2568), + [anon_sym_break] = ACTIONS(2568), + [anon_sym_continue] = ACTIONS(2568), + [anon_sym_do] = ACTIONS(2568), + [anon_sym_if] = ACTIONS(2568), + [anon_sym_match] = ACTIONS(2568), + [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_DOT_DOT] = ACTIONS(2568), + [anon_sym_try] = ACTIONS(2568), + [anon_sym_return] = ACTIONS(2568), + [anon_sym_where] = ACTIONS(2570), + [aux_sym_expr_unary_token1] = ACTIONS(2570), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2570), + [anon_sym_DOT_DOT_LT] = ACTIONS(2570), + [anon_sym_null] = ACTIONS(2568), + [anon_sym_true] = ACTIONS(2568), + [anon_sym_false] = ACTIONS(2568), + [aux_sym__val_number_decimal_token1] = ACTIONS(2568), + [aux_sym__val_number_decimal_token2] = ACTIONS(2570), + [aux_sym__val_number_decimal_token3] = ACTIONS(2570), + [aux_sym__val_number_decimal_token4] = ACTIONS(2570), + [aux_sym__val_number_token1] = ACTIONS(2570), + [aux_sym__val_number_token2] = ACTIONS(2570), + [aux_sym__val_number_token3] = ACTIONS(2570), + [aux_sym__val_number_token4] = ACTIONS(2568), + [aux_sym__val_number_token5] = ACTIONS(2568), + [aux_sym__val_number_token6] = ACTIONS(2568), + [anon_sym_0b] = ACTIONS(2568), + [anon_sym_0o] = ACTIONS(2568), + [anon_sym_0x] = ACTIONS(2568), + [sym_val_date] = ACTIONS(2570), + [anon_sym_DQUOTE] = ACTIONS(2570), + [sym__str_single_quotes] = ACTIONS(2570), + [sym__str_back_ticks] = ACTIONS(2570), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2570), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2570), + [aux_sym_env_var_token1] = ACTIONS(2568), + [anon_sym_CARET] = ACTIONS(2570), + [aux_sym_command_token1] = ACTIONS(2570), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2570), }, [779] = { - [sym_expr_parenthesized] = STATE(1552), - [sym_val_range] = STATE(1837), - [sym__val_range] = STATE(7466), - [sym__val_range_with_end] = STATE(7323), - [sym__value] = STATE(1837), - [sym_val_nothing] = STATE(1903), - [sym_val_bool] = STATE(1670), - [sym_val_variable] = STATE(1618), - [sym_val_number] = STATE(1903), - [sym__val_number_decimal] = STATE(1320), - [sym__val_number] = STATE(1904), - [sym_val_duration] = STATE(1903), - [sym_val_filesize] = STATE(1903), - [sym_val_binary] = STATE(1903), - [sym_val_string] = STATE(1903), - [sym__raw_str] = STATE(1876), - [sym__str_double_quotes] = STATE(1876), - [sym_val_interpolated] = STATE(1903), - [sym__inter_single_quotes] = STATE(1874), - [sym__inter_double_quotes] = STATE(1875), - [sym_val_list] = STATE(1903), - [sym_val_record] = STATE(1903), - [sym_val_table] = STATE(1903), - [sym_val_closure] = STATE(1903), - [sym__flag] = STATE(1837), - [sym_short_flag] = STATE(1839), - [sym_long_flag] = STATE(1839), - [sym_unquoted] = STATE(1656), - [sym__unquoted_with_expr] = STATE(1848), - [sym__unquoted_anonymous_prefix] = STATE(6938), [sym_comment] = STATE(779), - [aux_sym_ctrl_do_repeat2] = STATE(789), - [ts_builtin_sym_end] = ACTIONS(2780), - [sym__newline] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym_PIPE] = ACTIONS(2780), - [anon_sym_err_GT_PIPE] = ACTIONS(2780), - [anon_sym_out_GT_PIPE] = ACTIONS(2780), - [anon_sym_e_GT_PIPE] = ACTIONS(2780), - [anon_sym_o_GT_PIPE] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2780), - [anon_sym_LBRACK] = ACTIONS(2873), - [anon_sym_LPAREN] = ACTIONS(2875), - [anon_sym_DOLLAR] = ACTIONS(2877), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_DASH2] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2883), - [anon_sym_DOT_DOT] = ACTIONS(2885), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2887), - [anon_sym_DOT_DOT_LT] = ACTIONS(2887), - [anon_sym_null] = ACTIONS(2889), - [anon_sym_true] = ACTIONS(2891), - [anon_sym_false] = ACTIONS(2891), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [aux_sym__val_number_decimal_token3] = ACTIONS(2897), - [aux_sym__val_number_decimal_token4] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2901), - [aux_sym__val_number_token2] = ACTIONS(2901), - [aux_sym__val_number_token3] = ACTIONS(2901), - [aux_sym__val_number_token4] = ACTIONS(2903), - [aux_sym__val_number_token5] = ACTIONS(2903), - [aux_sym__val_number_token6] = ACTIONS(2903), - [anon_sym_0b] = ACTIONS(2905), - [anon_sym_0o] = ACTIONS(2907), - [anon_sym_0x] = ACTIONS(2907), - [sym_val_date] = ACTIONS(2909), - [anon_sym_DQUOTE] = ACTIONS(2911), - [sym__str_single_quotes] = ACTIONS(2913), - [sym__str_back_ticks] = ACTIONS(2913), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2915), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2917), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(2919), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2921), + [anon_sym_STAR_STAR] = ACTIONS(2578), + [anon_sym_PLUS_PLUS] = ACTIONS(2578), + [anon_sym_STAR] = ACTIONS(2580), + [anon_sym_SLASH] = ACTIONS(2580), + [anon_sym_mod] = ACTIONS(2578), + [anon_sym_SLASH_SLASH] = ACTIONS(2578), + [anon_sym_PLUS] = ACTIONS(2580), + [anon_sym_DASH] = ACTIONS(2578), + [anon_sym_bit_DASHshl] = ACTIONS(2578), + [anon_sym_bit_DASHshr] = ACTIONS(2578), + [anon_sym_EQ_TILDE] = ACTIONS(2578), + [anon_sym_BANG_TILDE] = ACTIONS(2578), + [anon_sym_bit_DASHand] = ACTIONS(2578), + [anon_sym_bit_DASHxor] = ACTIONS(2578), + [anon_sym_bit_DASHor] = ACTIONS(2578), + [anon_sym_and] = ACTIONS(2578), + [anon_sym_xor] = ACTIONS(2578), + [anon_sym_or] = ACTIONS(2578), + [anon_sym_in] = ACTIONS(2578), + [anon_sym_not_DASHin] = ACTIONS(2578), + [anon_sym_has] = ACTIONS(2578), + [anon_sym_not_DASHhas] = ACTIONS(2578), + [anon_sym_starts_DASHwith] = ACTIONS(2578), + [anon_sym_ends_DASHwith] = ACTIONS(2578), + [anon_sym_EQ_EQ] = ACTIONS(2578), + [anon_sym_BANG_EQ] = ACTIONS(2578), + [anon_sym_LT] = ACTIONS(2580), + [anon_sym_LT_EQ] = ACTIONS(2578), + [anon_sym_GT] = ACTIONS(2580), + [anon_sym_GT_EQ] = ACTIONS(2578), + [aux_sym_cmd_identifier_token41] = ACTIONS(2582), + [sym__newline] = ACTIONS(1639), + [anon_sym_SEMI] = ACTIONS(1639), + [anon_sym_PIPE] = ACTIONS(1639), + [anon_sym_err_GT_PIPE] = ACTIONS(1639), + [anon_sym_out_GT_PIPE] = ACTIONS(1639), + [anon_sym_e_GT_PIPE] = ACTIONS(1639), + [anon_sym_o_GT_PIPE] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1639), + [anon_sym_GT2] = ACTIONS(1639), + [anon_sym_DASH2] = ACTIONS(1639), + [anon_sym_in2] = ACTIONS(1639), + [anon_sym_RBRACE] = ACTIONS(1639), + [anon_sym_STAR2] = ACTIONS(1639), + [anon_sym_and2] = ACTIONS(1639), + [anon_sym_xor2] = ACTIONS(1639), + [anon_sym_or2] = ACTIONS(1639), + [anon_sym_not_DASHin2] = ACTIONS(1639), + [anon_sym_has2] = ACTIONS(1639), + [anon_sym_not_DASHhas2] = ACTIONS(1639), + [anon_sym_starts_DASHwith2] = ACTIONS(1639), + [anon_sym_ends_DASHwith2] = ACTIONS(1639), + [anon_sym_EQ_EQ2] = ACTIONS(1639), + [anon_sym_BANG_EQ2] = ACTIONS(1639), + [anon_sym_LT2] = ACTIONS(1639), + [anon_sym_LT_EQ2] = ACTIONS(1639), + [anon_sym_GT_EQ2] = ACTIONS(1639), + [anon_sym_EQ_TILDE2] = ACTIONS(1639), + [anon_sym_BANG_TILDE2] = ACTIONS(1639), + [anon_sym_STAR_STAR2] = ACTIONS(1639), + [anon_sym_PLUS_PLUS2] = ACTIONS(1639), + [anon_sym_SLASH2] = ACTIONS(1639), + [anon_sym_mod2] = ACTIONS(1639), + [anon_sym_SLASH_SLASH2] = ACTIONS(1639), + [anon_sym_PLUS2] = ACTIONS(1639), + [anon_sym_bit_DASHshl2] = ACTIONS(1639), + [anon_sym_bit_DASHshr2] = ACTIONS(1639), + [anon_sym_bit_DASHand2] = ACTIONS(1639), + [anon_sym_bit_DASHxor2] = ACTIONS(1639), + [anon_sym_bit_DASHor2] = ACTIONS(1639), + [anon_sym_DOT_DOT2] = ACTIONS(2584), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2586), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2586), + [sym_filesize_unit] = ACTIONS(2588), + [sym_duration_unit] = ACTIONS(2590), + [anon_sym_COLON2] = ACTIONS(1639), + [anon_sym_err_GT] = ACTIONS(1639), + [anon_sym_out_GT] = ACTIONS(1639), + [anon_sym_e_GT] = ACTIONS(1639), + [anon_sym_o_GT] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT] = ACTIONS(1639), + [anon_sym_err_GT_GT] = ACTIONS(1639), + [anon_sym_out_GT_GT] = ACTIONS(1639), + [anon_sym_e_GT_GT] = ACTIONS(1639), + [anon_sym_o_GT_GT] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1639), + [anon_sym_POUND] = ACTIONS(3), }, [780] = { [sym_comment] = STATE(780), - [ts_builtin_sym_end] = ACTIONS(1544), - [anon_sym_STAR_STAR] = ACTIONS(1544), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_STAR] = ACTIONS(1542), - [anon_sym_SLASH] = ACTIONS(1542), - [anon_sym_mod] = ACTIONS(1544), - [anon_sym_SLASH_SLASH] = ACTIONS(1544), - [anon_sym_PLUS] = ACTIONS(1542), - [anon_sym_DASH] = ACTIONS(1544), - [anon_sym_bit_DASHshl] = ACTIONS(1544), - [anon_sym_bit_DASHshr] = ACTIONS(1544), - [anon_sym_EQ_TILDE] = ACTIONS(1544), - [anon_sym_BANG_TILDE] = ACTIONS(1544), - [anon_sym_bit_DASHand] = ACTIONS(1544), - [anon_sym_bit_DASHxor] = ACTIONS(1544), - [anon_sym_bit_DASHor] = ACTIONS(1544), - [anon_sym_and] = ACTIONS(1544), - [anon_sym_xor] = ACTIONS(1544), - [anon_sym_or] = ACTIONS(1544), - [anon_sym_in] = ACTIONS(1544), - [anon_sym_not_DASHin] = ACTIONS(1544), - [anon_sym_starts_DASHwith] = ACTIONS(1544), - [anon_sym_ends_DASHwith] = ACTIONS(1544), - [anon_sym_EQ_EQ] = ACTIONS(1544), - [anon_sym_BANG_EQ] = ACTIONS(1544), - [anon_sym_LT] = ACTIONS(1542), - [anon_sym_LT_EQ] = ACTIONS(1544), - [anon_sym_GT] = ACTIONS(1542), - [anon_sym_GT_EQ] = ACTIONS(1544), - [aux_sym_cmd_identifier_token41] = ACTIONS(1542), - [sym__newline] = ACTIONS(1542), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_err_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_GT_PIPE] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), - [anon_sym_GT2] = ACTIONS(1542), - [anon_sym_DASH2] = ACTIONS(1542), - [anon_sym_in2] = ACTIONS(1542), - [anon_sym_STAR2] = ACTIONS(1542), - [anon_sym_and2] = ACTIONS(1542), - [anon_sym_xor2] = ACTIONS(1542), - [anon_sym_or2] = ACTIONS(1542), - [anon_sym_not_DASHin2] = ACTIONS(1542), - [anon_sym_starts_DASHwith2] = ACTIONS(1542), - [anon_sym_ends_DASHwith2] = ACTIONS(1542), - [anon_sym_EQ_EQ2] = ACTIONS(1542), - [anon_sym_BANG_EQ2] = ACTIONS(1542), - [anon_sym_LT2] = ACTIONS(1542), - [anon_sym_LT_EQ2] = ACTIONS(1542), - [anon_sym_GT_EQ2] = ACTIONS(1542), - [anon_sym_EQ_TILDE2] = ACTIONS(1542), - [anon_sym_BANG_TILDE2] = ACTIONS(1542), - [anon_sym_STAR_STAR2] = ACTIONS(1542), - [anon_sym_PLUS_PLUS2] = ACTIONS(1542), - [anon_sym_SLASH2] = ACTIONS(1542), - [anon_sym_mod2] = ACTIONS(1542), - [anon_sym_SLASH_SLASH2] = ACTIONS(1542), - [anon_sym_PLUS2] = ACTIONS(1542), - [anon_sym_bit_DASHshl2] = ACTIONS(1542), - [anon_sym_bit_DASHshr2] = ACTIONS(1542), - [anon_sym_bit_DASHand2] = ACTIONS(1542), - [anon_sym_bit_DASHxor2] = ACTIONS(1542), - [anon_sym_bit_DASHor2] = ACTIONS(1542), - [anon_sym_DOT_DOT2] = ACTIONS(1542), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1544), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1544), - [aux_sym__immediate_decimal_token1] = ACTIONS(2927), - [aux_sym__immediate_decimal_token2] = ACTIONS(2929), - [sym_filesize_unit] = ACTIONS(1542), - [sym_duration_unit] = ACTIONS(1544), - [anon_sym_err_GT] = ACTIONS(1542), - [anon_sym_out_GT] = ACTIONS(1542), - [anon_sym_e_GT] = ACTIONS(1542), - [anon_sym_o_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT] = ACTIONS(1542), - [anon_sym_err_GT_GT] = ACTIONS(1542), - [anon_sym_out_GT_GT] = ACTIONS(1542), - [anon_sym_e_GT_GT] = ACTIONS(1542), - [anon_sym_o_GT_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), + [anon_sym_STAR_STAR] = ACTIONS(1620), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1618), + [anon_sym_SLASH] = ACTIONS(1618), + [anon_sym_mod] = ACTIONS(1620), + [anon_sym_SLASH_SLASH] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1618), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_bit_DASHshl] = ACTIONS(1620), + [anon_sym_bit_DASHshr] = ACTIONS(1620), + [anon_sym_EQ_TILDE] = ACTIONS(1620), + [anon_sym_BANG_TILDE] = ACTIONS(1620), + [anon_sym_bit_DASHand] = ACTIONS(1620), + [anon_sym_bit_DASHxor] = ACTIONS(1620), + [anon_sym_bit_DASHor] = ACTIONS(1620), + [anon_sym_and] = ACTIONS(1620), + [anon_sym_xor] = ACTIONS(1620), + [anon_sym_or] = ACTIONS(1620), + [anon_sym_in] = ACTIONS(1620), + [anon_sym_not_DASHin] = ACTIONS(1620), + [anon_sym_has] = ACTIONS(1620), + [anon_sym_not_DASHhas] = ACTIONS(1620), + [anon_sym_starts_DASHwith] = ACTIONS(1620), + [anon_sym_ends_DASHwith] = ACTIONS(1620), + [anon_sym_EQ_EQ] = ACTIONS(1620), + [anon_sym_BANG_EQ] = ACTIONS(1620), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_LT_EQ] = ACTIONS(1620), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_GT_EQ] = ACTIONS(1620), + [aux_sym_cmd_identifier_token41] = ACTIONS(1618), + [sym__newline] = ACTIONS(1618), + [anon_sym_SEMI] = ACTIONS(1618), + [anon_sym_PIPE] = ACTIONS(1618), + [anon_sym_err_GT_PIPE] = ACTIONS(1618), + [anon_sym_out_GT_PIPE] = ACTIONS(1618), + [anon_sym_e_GT_PIPE] = ACTIONS(1618), + [anon_sym_o_GT_PIPE] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1618), + [anon_sym_RPAREN] = ACTIONS(1618), + [anon_sym_GT2] = ACTIONS(1618), + [anon_sym_DASH2] = ACTIONS(1618), + [anon_sym_in2] = ACTIONS(1618), + [anon_sym_STAR2] = ACTIONS(1618), + [anon_sym_and2] = ACTIONS(1618), + [anon_sym_xor2] = ACTIONS(1618), + [anon_sym_or2] = ACTIONS(1618), + [anon_sym_not_DASHin2] = ACTIONS(1618), + [anon_sym_has2] = ACTIONS(1618), + [anon_sym_not_DASHhas2] = ACTIONS(1618), + [anon_sym_starts_DASHwith2] = ACTIONS(1618), + [anon_sym_ends_DASHwith2] = ACTIONS(1618), + [anon_sym_EQ_EQ2] = ACTIONS(1618), + [anon_sym_BANG_EQ2] = ACTIONS(1618), + [anon_sym_LT2] = ACTIONS(1618), + [anon_sym_LT_EQ2] = ACTIONS(1618), + [anon_sym_GT_EQ2] = ACTIONS(1618), + [anon_sym_EQ_TILDE2] = ACTIONS(1618), + [anon_sym_BANG_TILDE2] = ACTIONS(1618), + [anon_sym_STAR_STAR2] = ACTIONS(1618), + [anon_sym_PLUS_PLUS2] = ACTIONS(1618), + [anon_sym_SLASH2] = ACTIONS(1618), + [anon_sym_mod2] = ACTIONS(1618), + [anon_sym_SLASH_SLASH2] = ACTIONS(1618), + [anon_sym_PLUS2] = ACTIONS(1618), + [anon_sym_bit_DASHshl2] = ACTIONS(1618), + [anon_sym_bit_DASHshr2] = ACTIONS(1618), + [anon_sym_bit_DASHand2] = ACTIONS(1618), + [anon_sym_bit_DASHxor2] = ACTIONS(1618), + [anon_sym_bit_DASHor2] = ACTIONS(1618), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [sym_filesize_unit] = ACTIONS(1618), + [sym_duration_unit] = ACTIONS(1620), + [anon_sym_err_GT] = ACTIONS(1618), + [anon_sym_out_GT] = ACTIONS(1618), + [anon_sym_e_GT] = ACTIONS(1618), + [anon_sym_o_GT] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT] = ACTIONS(1618), + [anon_sym_err_GT_GT] = ACTIONS(1618), + [anon_sym_out_GT_GT] = ACTIONS(1618), + [anon_sym_e_GT_GT] = ACTIONS(1618), + [anon_sym_o_GT_GT] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1618), [anon_sym_POUND] = ACTIONS(3), }, [781] = { [sym_comment] = STATE(781), - [anon_sym_STAR_STAR] = ACTIONS(1552), - [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1550), - [anon_sym_SLASH] = ACTIONS(1550), - [anon_sym_mod] = ACTIONS(1552), - [anon_sym_SLASH_SLASH] = ACTIONS(1552), - [anon_sym_PLUS] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1552), - [anon_sym_bit_DASHshl] = ACTIONS(1552), - [anon_sym_bit_DASHshr] = ACTIONS(1552), - [anon_sym_EQ_TILDE] = ACTIONS(1552), - [anon_sym_BANG_TILDE] = ACTIONS(1552), - [anon_sym_bit_DASHand] = ACTIONS(1552), - [anon_sym_bit_DASHxor] = ACTIONS(1552), - [anon_sym_bit_DASHor] = ACTIONS(1552), - [anon_sym_and] = ACTIONS(1552), - [anon_sym_xor] = ACTIONS(1552), - [anon_sym_or] = ACTIONS(1552), - [anon_sym_in] = ACTIONS(1552), - [anon_sym_not_DASHin] = ACTIONS(1552), - [anon_sym_starts_DASHwith] = ACTIONS(1552), - [anon_sym_ends_DASHwith] = ACTIONS(1552), - [anon_sym_EQ_EQ] = ACTIONS(1552), - [anon_sym_BANG_EQ] = ACTIONS(1552), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_LT_EQ] = ACTIONS(1552), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_GT_EQ] = ACTIONS(1552), - [aux_sym_cmd_identifier_token41] = ACTIONS(1550), - [sym__newline] = ACTIONS(1550), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_err_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_GT_PIPE] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1550), - [anon_sym_RPAREN] = ACTIONS(1550), - [anon_sym_GT2] = ACTIONS(1550), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_in2] = ACTIONS(1550), - [anon_sym_STAR2] = ACTIONS(1550), - [anon_sym_and2] = ACTIONS(1550), - [anon_sym_xor2] = ACTIONS(1550), - [anon_sym_or2] = ACTIONS(1550), - [anon_sym_not_DASHin2] = ACTIONS(1550), - [anon_sym_starts_DASHwith2] = ACTIONS(1550), - [anon_sym_ends_DASHwith2] = ACTIONS(1550), - [anon_sym_EQ_EQ2] = ACTIONS(1550), - [anon_sym_BANG_EQ2] = ACTIONS(1550), - [anon_sym_LT2] = ACTIONS(1550), - [anon_sym_LT_EQ2] = ACTIONS(1550), - [anon_sym_GT_EQ2] = ACTIONS(1550), - [anon_sym_EQ_TILDE2] = ACTIONS(1550), - [anon_sym_BANG_TILDE2] = ACTIONS(1550), - [anon_sym_STAR_STAR2] = ACTIONS(1550), - [anon_sym_PLUS_PLUS2] = ACTIONS(1550), - [anon_sym_SLASH2] = ACTIONS(1550), - [anon_sym_mod2] = ACTIONS(1550), - [anon_sym_SLASH_SLASH2] = ACTIONS(1550), - [anon_sym_PLUS2] = ACTIONS(1550), - [anon_sym_bit_DASHshl2] = ACTIONS(1550), - [anon_sym_bit_DASHshr2] = ACTIONS(1550), - [anon_sym_bit_DASHand2] = ACTIONS(1550), - [anon_sym_bit_DASHxor2] = ACTIONS(1550), - [anon_sym_bit_DASHor2] = ACTIONS(1550), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT] = ACTIONS(2931), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [aux_sym__immediate_decimal_token2] = ACTIONS(2933), - [sym_filesize_unit] = ACTIONS(1550), - [sym_duration_unit] = ACTIONS(1552), - [anon_sym_err_GT] = ACTIONS(1550), - [anon_sym_out_GT] = ACTIONS(1550), - [anon_sym_e_GT] = ACTIONS(1550), - [anon_sym_o_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT] = ACTIONS(1550), - [anon_sym_err_GT_GT] = ACTIONS(1550), - [anon_sym_out_GT_GT] = ACTIONS(1550), - [anon_sym_e_GT_GT] = ACTIONS(1550), - [anon_sym_o_GT_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1550), + [anon_sym_STAR_STAR] = ACTIONS(2592), + [anon_sym_PLUS_PLUS] = ACTIONS(2592), + [anon_sym_STAR] = ACTIONS(2594), + [anon_sym_SLASH] = ACTIONS(2594), + [anon_sym_mod] = ACTIONS(2592), + [anon_sym_SLASH_SLASH] = ACTIONS(2592), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2592), + [anon_sym_bit_DASHshl] = ACTIONS(2592), + [anon_sym_bit_DASHshr] = ACTIONS(2592), + [anon_sym_EQ_TILDE] = ACTIONS(2592), + [anon_sym_BANG_TILDE] = ACTIONS(2592), + [anon_sym_bit_DASHand] = ACTIONS(2592), + [anon_sym_bit_DASHxor] = ACTIONS(2592), + [anon_sym_bit_DASHor] = ACTIONS(2592), + [anon_sym_and] = ACTIONS(2592), + [anon_sym_xor] = ACTIONS(2592), + [anon_sym_or] = ACTIONS(2592), + [anon_sym_in] = ACTIONS(2592), + [anon_sym_not_DASHin] = ACTIONS(2592), + [anon_sym_has] = ACTIONS(2592), + [anon_sym_not_DASHhas] = ACTIONS(2592), + [anon_sym_starts_DASHwith] = ACTIONS(2592), + [anon_sym_ends_DASHwith] = ACTIONS(2592), + [anon_sym_EQ_EQ] = ACTIONS(2592), + [anon_sym_BANG_EQ] = ACTIONS(2592), + [anon_sym_LT] = ACTIONS(2594), + [anon_sym_LT_EQ] = ACTIONS(2592), + [anon_sym_GT] = ACTIONS(2594), + [anon_sym_GT_EQ] = ACTIONS(2592), + [aux_sym_cmd_identifier_token41] = ACTIONS(2596), + [sym__newline] = ACTIONS(1639), + [anon_sym_SEMI] = ACTIONS(1639), + [anon_sym_PIPE] = ACTIONS(1639), + [anon_sym_err_GT_PIPE] = ACTIONS(1639), + [anon_sym_out_GT_PIPE] = ACTIONS(1639), + [anon_sym_e_GT_PIPE] = ACTIONS(1639), + [anon_sym_o_GT_PIPE] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1639), + [anon_sym_RPAREN] = ACTIONS(1639), + [anon_sym_GT2] = ACTIONS(1639), + [anon_sym_DASH2] = ACTIONS(1639), + [anon_sym_in2] = ACTIONS(1639), + [anon_sym_STAR2] = ACTIONS(1639), + [anon_sym_and2] = ACTIONS(1639), + [anon_sym_xor2] = ACTIONS(1639), + [anon_sym_or2] = ACTIONS(1639), + [anon_sym_not_DASHin2] = ACTIONS(1639), + [anon_sym_has2] = ACTIONS(1639), + [anon_sym_not_DASHhas2] = ACTIONS(1639), + [anon_sym_starts_DASHwith2] = ACTIONS(1639), + [anon_sym_ends_DASHwith2] = ACTIONS(1639), + [anon_sym_EQ_EQ2] = ACTIONS(1639), + [anon_sym_BANG_EQ2] = ACTIONS(1639), + [anon_sym_LT2] = ACTIONS(1639), + [anon_sym_LT_EQ2] = ACTIONS(1639), + [anon_sym_GT_EQ2] = ACTIONS(1639), + [anon_sym_EQ_TILDE2] = ACTIONS(1639), + [anon_sym_BANG_TILDE2] = ACTIONS(1639), + [anon_sym_STAR_STAR2] = ACTIONS(1639), + [anon_sym_PLUS_PLUS2] = ACTIONS(1639), + [anon_sym_SLASH2] = ACTIONS(1639), + [anon_sym_mod2] = ACTIONS(1639), + [anon_sym_SLASH_SLASH2] = ACTIONS(1639), + [anon_sym_PLUS2] = ACTIONS(1639), + [anon_sym_bit_DASHshl2] = ACTIONS(1639), + [anon_sym_bit_DASHshr2] = ACTIONS(1639), + [anon_sym_bit_DASHand2] = ACTIONS(1639), + [anon_sym_bit_DASHxor2] = ACTIONS(1639), + [anon_sym_bit_DASHor2] = ACTIONS(1639), + [anon_sym_DOT_DOT2] = ACTIONS(2584), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2586), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2586), + [sym_filesize_unit] = ACTIONS(2598), + [sym_duration_unit] = ACTIONS(2600), + [anon_sym_err_GT] = ACTIONS(1639), + [anon_sym_out_GT] = ACTIONS(1639), + [anon_sym_e_GT] = ACTIONS(1639), + [anon_sym_o_GT] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT] = ACTIONS(1639), + [anon_sym_err_GT_GT] = ACTIONS(1639), + [anon_sym_out_GT_GT] = ACTIONS(1639), + [anon_sym_e_GT_GT] = ACTIONS(1639), + [anon_sym_o_GT_GT] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1639), [anon_sym_POUND] = ACTIONS(3), }, [782] = { [sym_comment] = STATE(782), - [anon_sym_STAR_STAR] = ACTIONS(1544), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_STAR] = ACTIONS(1542), - [anon_sym_SLASH] = ACTIONS(1542), - [anon_sym_mod] = ACTIONS(1544), - [anon_sym_SLASH_SLASH] = ACTIONS(1544), - [anon_sym_PLUS] = ACTIONS(1542), - [anon_sym_DASH] = ACTIONS(1544), - [anon_sym_bit_DASHshl] = ACTIONS(1544), - [anon_sym_bit_DASHshr] = ACTIONS(1544), - [anon_sym_EQ_TILDE] = ACTIONS(1544), - [anon_sym_BANG_TILDE] = ACTIONS(1544), - [anon_sym_bit_DASHand] = ACTIONS(1544), - [anon_sym_bit_DASHxor] = ACTIONS(1544), - [anon_sym_bit_DASHor] = ACTIONS(1544), - [anon_sym_and] = ACTIONS(1544), - [anon_sym_xor] = ACTIONS(1544), - [anon_sym_or] = ACTIONS(1544), - [anon_sym_in] = ACTIONS(1544), - [anon_sym_not_DASHin] = ACTIONS(1544), - [anon_sym_starts_DASHwith] = ACTIONS(1544), - [anon_sym_ends_DASHwith] = ACTIONS(1544), - [anon_sym_EQ_EQ] = ACTIONS(1544), - [anon_sym_BANG_EQ] = ACTIONS(1544), - [anon_sym_LT] = ACTIONS(1542), - [anon_sym_LT_EQ] = ACTIONS(1544), - [anon_sym_GT] = ACTIONS(1542), - [anon_sym_GT_EQ] = ACTIONS(1544), - [aux_sym_cmd_identifier_token41] = ACTIONS(1542), - [sym__newline] = ACTIONS(1542), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_err_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_GT_PIPE] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), - [anon_sym_RPAREN] = ACTIONS(1542), - [anon_sym_GT2] = ACTIONS(1542), - [anon_sym_DASH2] = ACTIONS(1542), - [anon_sym_in2] = ACTIONS(1542), - [anon_sym_STAR2] = ACTIONS(1542), - [anon_sym_and2] = ACTIONS(1542), - [anon_sym_xor2] = ACTIONS(1542), - [anon_sym_or2] = ACTIONS(1542), - [anon_sym_not_DASHin2] = ACTIONS(1542), - [anon_sym_starts_DASHwith2] = ACTIONS(1542), - [anon_sym_ends_DASHwith2] = ACTIONS(1542), - [anon_sym_EQ_EQ2] = ACTIONS(1542), - [anon_sym_BANG_EQ2] = ACTIONS(1542), - [anon_sym_LT2] = ACTIONS(1542), - [anon_sym_LT_EQ2] = ACTIONS(1542), - [anon_sym_GT_EQ2] = ACTIONS(1542), - [anon_sym_EQ_TILDE2] = ACTIONS(1542), - [anon_sym_BANG_TILDE2] = ACTIONS(1542), - [anon_sym_STAR_STAR2] = ACTIONS(1542), - [anon_sym_PLUS_PLUS2] = ACTIONS(1542), - [anon_sym_SLASH2] = ACTIONS(1542), - [anon_sym_mod2] = ACTIONS(1542), - [anon_sym_SLASH_SLASH2] = ACTIONS(1542), - [anon_sym_PLUS2] = ACTIONS(1542), - [anon_sym_bit_DASHshl2] = ACTIONS(1542), - [anon_sym_bit_DASHshr2] = ACTIONS(1542), - [anon_sym_bit_DASHand2] = ACTIONS(1542), - [anon_sym_bit_DASHxor2] = ACTIONS(1542), - [anon_sym_bit_DASHor2] = ACTIONS(1542), - [anon_sym_DOT_DOT2] = ACTIONS(1542), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1544), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1544), - [aux_sym__immediate_decimal_token1] = ACTIONS(2935), - [aux_sym__immediate_decimal_token2] = ACTIONS(2937), - [sym_filesize_unit] = ACTIONS(1542), - [sym_duration_unit] = ACTIONS(1544), - [anon_sym_err_GT] = ACTIONS(1542), - [anon_sym_out_GT] = ACTIONS(1542), - [anon_sym_e_GT] = ACTIONS(1542), - [anon_sym_o_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT] = ACTIONS(1542), - [anon_sym_err_GT_GT] = ACTIONS(1542), - [anon_sym_out_GT_GT] = ACTIONS(1542), - [anon_sym_e_GT_GT] = ACTIONS(1542), - [anon_sym_o_GT_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), + [ts_builtin_sym_end] = ACTIONS(1651), + [anon_sym_STAR_STAR] = ACTIONS(2602), + [anon_sym_PLUS_PLUS] = ACTIONS(2602), + [anon_sym_STAR] = ACTIONS(2604), + [anon_sym_SLASH] = ACTIONS(2604), + [anon_sym_mod] = ACTIONS(2602), + [anon_sym_SLASH_SLASH] = ACTIONS(2602), + [anon_sym_PLUS] = ACTIONS(2604), + [anon_sym_DASH] = ACTIONS(2602), + [anon_sym_bit_DASHshl] = ACTIONS(2602), + [anon_sym_bit_DASHshr] = ACTIONS(2602), + [anon_sym_EQ_TILDE] = ACTIONS(2602), + [anon_sym_BANG_TILDE] = ACTIONS(2602), + [anon_sym_bit_DASHand] = ACTIONS(2602), + [anon_sym_bit_DASHxor] = ACTIONS(2602), + [anon_sym_bit_DASHor] = ACTIONS(2602), + [anon_sym_and] = ACTIONS(2602), + [anon_sym_xor] = ACTIONS(2602), + [anon_sym_or] = ACTIONS(2602), + [anon_sym_in] = ACTIONS(2602), + [anon_sym_not_DASHin] = ACTIONS(2602), + [anon_sym_has] = ACTIONS(2602), + [anon_sym_not_DASHhas] = ACTIONS(2602), + [anon_sym_starts_DASHwith] = ACTIONS(2602), + [anon_sym_ends_DASHwith] = ACTIONS(2602), + [anon_sym_EQ_EQ] = ACTIONS(2602), + [anon_sym_BANG_EQ] = ACTIONS(2602), + [anon_sym_LT] = ACTIONS(2604), + [anon_sym_LT_EQ] = ACTIONS(2602), + [anon_sym_GT] = ACTIONS(2604), + [anon_sym_GT_EQ] = ACTIONS(2602), + [aux_sym_cmd_identifier_token41] = ACTIONS(2606), + [sym__newline] = ACTIONS(1639), + [anon_sym_SEMI] = ACTIONS(1639), + [anon_sym_PIPE] = ACTIONS(1639), + [anon_sym_err_GT_PIPE] = ACTIONS(1639), + [anon_sym_out_GT_PIPE] = ACTIONS(1639), + [anon_sym_e_GT_PIPE] = ACTIONS(1639), + [anon_sym_o_GT_PIPE] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1639), + [anon_sym_GT2] = ACTIONS(1639), + [anon_sym_DASH2] = ACTIONS(1639), + [anon_sym_in2] = ACTIONS(1639), + [anon_sym_STAR2] = ACTIONS(1639), + [anon_sym_and2] = ACTIONS(1639), + [anon_sym_xor2] = ACTIONS(1639), + [anon_sym_or2] = ACTIONS(1639), + [anon_sym_not_DASHin2] = ACTIONS(1639), + [anon_sym_has2] = ACTIONS(1639), + [anon_sym_not_DASHhas2] = ACTIONS(1639), + [anon_sym_starts_DASHwith2] = ACTIONS(1639), + [anon_sym_ends_DASHwith2] = ACTIONS(1639), + [anon_sym_EQ_EQ2] = ACTIONS(1639), + [anon_sym_BANG_EQ2] = ACTIONS(1639), + [anon_sym_LT2] = ACTIONS(1639), + [anon_sym_LT_EQ2] = ACTIONS(1639), + [anon_sym_GT_EQ2] = ACTIONS(1639), + [anon_sym_EQ_TILDE2] = ACTIONS(1639), + [anon_sym_BANG_TILDE2] = ACTIONS(1639), + [anon_sym_STAR_STAR2] = ACTIONS(1639), + [anon_sym_PLUS_PLUS2] = ACTIONS(1639), + [anon_sym_SLASH2] = ACTIONS(1639), + [anon_sym_mod2] = ACTIONS(1639), + [anon_sym_SLASH_SLASH2] = ACTIONS(1639), + [anon_sym_PLUS2] = ACTIONS(1639), + [anon_sym_bit_DASHshl2] = ACTIONS(1639), + [anon_sym_bit_DASHshr2] = ACTIONS(1639), + [anon_sym_bit_DASHand2] = ACTIONS(1639), + [anon_sym_bit_DASHxor2] = ACTIONS(1639), + [anon_sym_bit_DASHor2] = ACTIONS(1639), + [anon_sym_DOT_DOT2] = ACTIONS(2608), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2610), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2610), + [sym_filesize_unit] = ACTIONS(2612), + [sym_duration_unit] = ACTIONS(2614), + [anon_sym_err_GT] = ACTIONS(1639), + [anon_sym_out_GT] = ACTIONS(1639), + [anon_sym_e_GT] = ACTIONS(1639), + [anon_sym_o_GT] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT] = ACTIONS(1639), + [anon_sym_err_GT_GT] = ACTIONS(1639), + [anon_sym_out_GT_GT] = ACTIONS(1639), + [anon_sym_e_GT_GT] = ACTIONS(1639), + [anon_sym_o_GT_GT] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1639), [anon_sym_POUND] = ACTIONS(3), }, [783] = { [sym_comment] = STATE(783), - [anon_sym_STAR_STAR] = ACTIONS(1552), - [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1550), - [anon_sym_SLASH] = ACTIONS(1550), - [anon_sym_mod] = ACTIONS(1552), - [anon_sym_SLASH_SLASH] = ACTIONS(1552), - [anon_sym_PLUS] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1552), - [anon_sym_bit_DASHshl] = ACTIONS(1552), - [anon_sym_bit_DASHshr] = ACTIONS(1552), - [anon_sym_EQ_TILDE] = ACTIONS(1552), - [anon_sym_BANG_TILDE] = ACTIONS(1552), - [anon_sym_bit_DASHand] = ACTIONS(1552), - [anon_sym_bit_DASHxor] = ACTIONS(1552), - [anon_sym_bit_DASHor] = ACTIONS(1552), - [anon_sym_and] = ACTIONS(1552), - [anon_sym_xor] = ACTIONS(1552), - [anon_sym_or] = ACTIONS(1552), - [anon_sym_in] = ACTIONS(1552), - [anon_sym_not_DASHin] = ACTIONS(1552), - [anon_sym_starts_DASHwith] = ACTIONS(1552), - [anon_sym_ends_DASHwith] = ACTIONS(1552), - [anon_sym_EQ_EQ] = ACTIONS(1552), - [anon_sym_BANG_EQ] = ACTIONS(1552), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_LT_EQ] = ACTIONS(1552), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_GT_EQ] = ACTIONS(1552), - [aux_sym_cmd_identifier_token41] = ACTIONS(1550), - [sym__newline] = ACTIONS(1550), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_err_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_GT_PIPE] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1550), - [anon_sym_GT2] = ACTIONS(1550), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_in2] = ACTIONS(1550), - [anon_sym_RBRACE] = ACTIONS(1550), - [anon_sym_STAR2] = ACTIONS(1550), - [anon_sym_and2] = ACTIONS(1550), - [anon_sym_xor2] = ACTIONS(1550), - [anon_sym_or2] = ACTIONS(1550), - [anon_sym_not_DASHin2] = ACTIONS(1550), - [anon_sym_starts_DASHwith2] = ACTIONS(1550), - [anon_sym_ends_DASHwith2] = ACTIONS(1550), - [anon_sym_EQ_EQ2] = ACTIONS(1550), - [anon_sym_BANG_EQ2] = ACTIONS(1550), - [anon_sym_LT2] = ACTIONS(1550), - [anon_sym_LT_EQ2] = ACTIONS(1550), - [anon_sym_GT_EQ2] = ACTIONS(1550), - [anon_sym_EQ_TILDE2] = ACTIONS(1550), - [anon_sym_BANG_TILDE2] = ACTIONS(1550), - [anon_sym_STAR_STAR2] = ACTIONS(1550), - [anon_sym_PLUS_PLUS2] = ACTIONS(1550), - [anon_sym_SLASH2] = ACTIONS(1550), - [anon_sym_mod2] = ACTIONS(1550), - [anon_sym_SLASH_SLASH2] = ACTIONS(1550), - [anon_sym_PLUS2] = ACTIONS(1550), - [anon_sym_bit_DASHshl2] = ACTIONS(1550), - [anon_sym_bit_DASHshr2] = ACTIONS(1550), - [anon_sym_bit_DASHand2] = ACTIONS(1550), - [anon_sym_bit_DASHxor2] = ACTIONS(1550), - [anon_sym_bit_DASHor2] = ACTIONS(1550), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [aux_sym__immediate_decimal_token2] = ACTIONS(2784), - [sym_filesize_unit] = ACTIONS(1550), - [sym_duration_unit] = ACTIONS(1552), - [anon_sym_COLON2] = ACTIONS(1550), - [anon_sym_err_GT] = ACTIONS(1550), - [anon_sym_out_GT] = ACTIONS(1550), - [anon_sym_e_GT] = ACTIONS(1550), - [anon_sym_o_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT] = ACTIONS(1550), - [anon_sym_err_GT_GT] = ACTIONS(1550), - [anon_sym_out_GT_GT] = ACTIONS(1550), - [anon_sym_e_GT_GT] = ACTIONS(1550), - [anon_sym_o_GT_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1550), + [ts_builtin_sym_end] = ACTIONS(1620), + [anon_sym_STAR_STAR] = ACTIONS(1620), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1618), + [anon_sym_SLASH] = ACTIONS(1618), + [anon_sym_mod] = ACTIONS(1620), + [anon_sym_SLASH_SLASH] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1618), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_bit_DASHshl] = ACTIONS(1620), + [anon_sym_bit_DASHshr] = ACTIONS(1620), + [anon_sym_EQ_TILDE] = ACTIONS(1620), + [anon_sym_BANG_TILDE] = ACTIONS(1620), + [anon_sym_bit_DASHand] = ACTIONS(1620), + [anon_sym_bit_DASHxor] = ACTIONS(1620), + [anon_sym_bit_DASHor] = ACTIONS(1620), + [anon_sym_and] = ACTIONS(1620), + [anon_sym_xor] = ACTIONS(1620), + [anon_sym_or] = ACTIONS(1620), + [anon_sym_in] = ACTIONS(1620), + [anon_sym_not_DASHin] = ACTIONS(1620), + [anon_sym_has] = ACTIONS(1620), + [anon_sym_not_DASHhas] = ACTIONS(1620), + [anon_sym_starts_DASHwith] = ACTIONS(1620), + [anon_sym_ends_DASHwith] = ACTIONS(1620), + [anon_sym_EQ_EQ] = ACTIONS(1620), + [anon_sym_BANG_EQ] = ACTIONS(1620), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_LT_EQ] = ACTIONS(1620), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_GT_EQ] = ACTIONS(1620), + [aux_sym_cmd_identifier_token41] = ACTIONS(1618), + [sym__newline] = ACTIONS(1618), + [anon_sym_SEMI] = ACTIONS(1618), + [anon_sym_PIPE] = ACTIONS(1618), + [anon_sym_err_GT_PIPE] = ACTIONS(1618), + [anon_sym_out_GT_PIPE] = ACTIONS(1618), + [anon_sym_e_GT_PIPE] = ACTIONS(1618), + [anon_sym_o_GT_PIPE] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1618), + [anon_sym_GT2] = ACTIONS(1618), + [anon_sym_DASH2] = ACTIONS(1618), + [anon_sym_in2] = ACTIONS(1618), + [anon_sym_STAR2] = ACTIONS(1618), + [anon_sym_and2] = ACTIONS(1618), + [anon_sym_xor2] = ACTIONS(1618), + [anon_sym_or2] = ACTIONS(1618), + [anon_sym_not_DASHin2] = ACTIONS(1618), + [anon_sym_has2] = ACTIONS(1618), + [anon_sym_not_DASHhas2] = ACTIONS(1618), + [anon_sym_starts_DASHwith2] = ACTIONS(1618), + [anon_sym_ends_DASHwith2] = ACTIONS(1618), + [anon_sym_EQ_EQ2] = ACTIONS(1618), + [anon_sym_BANG_EQ2] = ACTIONS(1618), + [anon_sym_LT2] = ACTIONS(1618), + [anon_sym_LT_EQ2] = ACTIONS(1618), + [anon_sym_GT_EQ2] = ACTIONS(1618), + [anon_sym_EQ_TILDE2] = ACTIONS(1618), + [anon_sym_BANG_TILDE2] = ACTIONS(1618), + [anon_sym_STAR_STAR2] = ACTIONS(1618), + [anon_sym_PLUS_PLUS2] = ACTIONS(1618), + [anon_sym_SLASH2] = ACTIONS(1618), + [anon_sym_mod2] = ACTIONS(1618), + [anon_sym_SLASH_SLASH2] = ACTIONS(1618), + [anon_sym_PLUS2] = ACTIONS(1618), + [anon_sym_bit_DASHshl2] = ACTIONS(1618), + [anon_sym_bit_DASHshr2] = ACTIONS(1618), + [anon_sym_bit_DASHand2] = ACTIONS(1618), + [anon_sym_bit_DASHxor2] = ACTIONS(1618), + [anon_sym_bit_DASHor2] = ACTIONS(1618), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [sym_filesize_unit] = ACTIONS(1618), + [sym_duration_unit] = ACTIONS(1620), + [anon_sym_err_GT] = ACTIONS(1618), + [anon_sym_out_GT] = ACTIONS(1618), + [anon_sym_e_GT] = ACTIONS(1618), + [anon_sym_o_GT] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT] = ACTIONS(1618), + [anon_sym_err_GT_GT] = ACTIONS(1618), + [anon_sym_out_GT_GT] = ACTIONS(1618), + [anon_sym_e_GT_GT] = ACTIONS(1618), + [anon_sym_o_GT_GT] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1618), [anon_sym_POUND] = ACTIONS(3), }, [784] = { [sym_comment] = STATE(784), - [anon_sym_STAR_STAR] = ACTIONS(1544), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_STAR] = ACTIONS(1542), - [anon_sym_SLASH] = ACTIONS(1542), - [anon_sym_mod] = ACTIONS(1544), - [anon_sym_SLASH_SLASH] = ACTIONS(1544), - [anon_sym_PLUS] = ACTIONS(1542), - [anon_sym_DASH] = ACTIONS(1544), - [anon_sym_bit_DASHshl] = ACTIONS(1544), - [anon_sym_bit_DASHshr] = ACTIONS(1544), - [anon_sym_EQ_TILDE] = ACTIONS(1544), - [anon_sym_BANG_TILDE] = ACTIONS(1544), - [anon_sym_bit_DASHand] = ACTIONS(1544), - [anon_sym_bit_DASHxor] = ACTIONS(1544), - [anon_sym_bit_DASHor] = ACTIONS(1544), - [anon_sym_and] = ACTIONS(1544), - [anon_sym_xor] = ACTIONS(1544), - [anon_sym_or] = ACTIONS(1544), - [anon_sym_in] = ACTIONS(1544), - [anon_sym_not_DASHin] = ACTIONS(1544), - [anon_sym_starts_DASHwith] = ACTIONS(1544), - [anon_sym_ends_DASHwith] = ACTIONS(1544), - [anon_sym_EQ_EQ] = ACTIONS(1544), - [anon_sym_BANG_EQ] = ACTIONS(1544), - [anon_sym_LT] = ACTIONS(1542), - [anon_sym_LT_EQ] = ACTIONS(1544), - [anon_sym_GT] = ACTIONS(1542), - [anon_sym_GT_EQ] = ACTIONS(1544), - [aux_sym_cmd_identifier_token41] = ACTIONS(1542), - [sym__newline] = ACTIONS(1542), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_err_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_GT_PIPE] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), - [anon_sym_GT2] = ACTIONS(1542), - [anon_sym_DASH2] = ACTIONS(1542), - [anon_sym_in2] = ACTIONS(1542), - [anon_sym_RBRACE] = ACTIONS(1542), - [anon_sym_STAR2] = ACTIONS(1542), - [anon_sym_and2] = ACTIONS(1542), - [anon_sym_xor2] = ACTIONS(1542), - [anon_sym_or2] = ACTIONS(1542), - [anon_sym_not_DASHin2] = ACTIONS(1542), - [anon_sym_starts_DASHwith2] = ACTIONS(1542), - [anon_sym_ends_DASHwith2] = ACTIONS(1542), - [anon_sym_EQ_EQ2] = ACTIONS(1542), - [anon_sym_BANG_EQ2] = ACTIONS(1542), - [anon_sym_LT2] = ACTIONS(1542), - [anon_sym_LT_EQ2] = ACTIONS(1542), - [anon_sym_GT_EQ2] = ACTIONS(1542), - [anon_sym_EQ_TILDE2] = ACTIONS(1542), - [anon_sym_BANG_TILDE2] = ACTIONS(1542), - [anon_sym_STAR_STAR2] = ACTIONS(1542), - [anon_sym_PLUS_PLUS2] = ACTIONS(1542), - [anon_sym_SLASH2] = ACTIONS(1542), - [anon_sym_mod2] = ACTIONS(1542), - [anon_sym_SLASH_SLASH2] = ACTIONS(1542), - [anon_sym_PLUS2] = ACTIONS(1542), - [anon_sym_bit_DASHshl2] = ACTIONS(1542), - [anon_sym_bit_DASHshr2] = ACTIONS(1542), - [anon_sym_bit_DASHand2] = ACTIONS(1542), - [anon_sym_bit_DASHxor2] = ACTIONS(1542), - [anon_sym_bit_DASHor2] = ACTIONS(1542), - [anon_sym_DOT_DOT2] = ACTIONS(1542), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1544), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1544), - [aux_sym__immediate_decimal_token1] = ACTIONS(2939), - [aux_sym__immediate_decimal_token2] = ACTIONS(2941), - [sym_filesize_unit] = ACTIONS(1542), - [sym_duration_unit] = ACTIONS(1544), - [anon_sym_err_GT] = ACTIONS(1542), - [anon_sym_out_GT] = ACTIONS(1542), - [anon_sym_e_GT] = ACTIONS(1542), - [anon_sym_o_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT] = ACTIONS(1542), - [anon_sym_err_GT_GT] = ACTIONS(1542), - [anon_sym_out_GT_GT] = ACTIONS(1542), - [anon_sym_e_GT_GT] = ACTIONS(1542), - [anon_sym_o_GT_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), + [ts_builtin_sym_end] = ACTIONS(1514), + [anon_sym_STAR_STAR] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_SLASH] = ACTIONS(1512), + [anon_sym_mod] = ACTIONS(1514), + [anon_sym_SLASH_SLASH] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_bit_DASHshl] = ACTIONS(1514), + [anon_sym_bit_DASHshr] = ACTIONS(1514), + [anon_sym_EQ_TILDE] = ACTIONS(1514), + [anon_sym_BANG_TILDE] = ACTIONS(1514), + [anon_sym_bit_DASHand] = ACTIONS(1514), + [anon_sym_bit_DASHxor] = ACTIONS(1514), + [anon_sym_bit_DASHor] = ACTIONS(1514), + [anon_sym_and] = ACTIONS(1514), + [anon_sym_xor] = ACTIONS(1514), + [anon_sym_or] = ACTIONS(1514), + [anon_sym_in] = ACTIONS(1514), + [anon_sym_not_DASHin] = ACTIONS(1514), + [anon_sym_has] = ACTIONS(1514), + [anon_sym_not_DASHhas] = ACTIONS(1514), + [anon_sym_starts_DASHwith] = ACTIONS(1514), + [anon_sym_ends_DASHwith] = ACTIONS(1514), + [anon_sym_EQ_EQ] = ACTIONS(1514), + [anon_sym_BANG_EQ] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_LT_EQ] = ACTIONS(1514), + [anon_sym_GT] = ACTIONS(1512), + [anon_sym_GT_EQ] = ACTIONS(1514), + [aux_sym_cmd_identifier_token41] = ACTIONS(1512), + [sym__newline] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_err_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_GT_PIPE] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1512), + [anon_sym_GT2] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_in2] = ACTIONS(1512), + [anon_sym_STAR2] = ACTIONS(1512), + [anon_sym_and2] = ACTIONS(1512), + [anon_sym_xor2] = ACTIONS(1512), + [anon_sym_or2] = ACTIONS(1512), + [anon_sym_not_DASHin2] = ACTIONS(1512), + [anon_sym_has2] = ACTIONS(1512), + [anon_sym_not_DASHhas2] = ACTIONS(1512), + [anon_sym_starts_DASHwith2] = ACTIONS(1512), + [anon_sym_ends_DASHwith2] = ACTIONS(1512), + [anon_sym_EQ_EQ2] = ACTIONS(1512), + [anon_sym_BANG_EQ2] = ACTIONS(1512), + [anon_sym_LT2] = ACTIONS(1512), + [anon_sym_LT_EQ2] = ACTIONS(1512), + [anon_sym_GT_EQ2] = ACTIONS(1512), + [anon_sym_EQ_TILDE2] = ACTIONS(1512), + [anon_sym_BANG_TILDE2] = ACTIONS(1512), + [anon_sym_STAR_STAR2] = ACTIONS(1512), + [anon_sym_PLUS_PLUS2] = ACTIONS(1512), + [anon_sym_SLASH2] = ACTIONS(1512), + [anon_sym_mod2] = ACTIONS(1512), + [anon_sym_SLASH_SLASH2] = ACTIONS(1512), + [anon_sym_PLUS2] = ACTIONS(1512), + [anon_sym_bit_DASHshl2] = ACTIONS(1512), + [anon_sym_bit_DASHshr2] = ACTIONS(1512), + [anon_sym_bit_DASHand2] = ACTIONS(1512), + [anon_sym_bit_DASHxor2] = ACTIONS(1512), + [anon_sym_bit_DASHor2] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [sym_filesize_unit] = ACTIONS(1512), + [sym_duration_unit] = ACTIONS(1514), + [anon_sym_err_GT] = ACTIONS(1512), + [anon_sym_out_GT] = ACTIONS(1512), + [anon_sym_e_GT] = ACTIONS(1512), + [anon_sym_o_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT] = ACTIONS(1512), + [anon_sym_err_GT_GT] = ACTIONS(1512), + [anon_sym_out_GT_GT] = ACTIONS(1512), + [anon_sym_e_GT_GT] = ACTIONS(1512), + [anon_sym_o_GT_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1512), [anon_sym_POUND] = ACTIONS(3), }, [785] = { [sym_comment] = STATE(785), - [ts_builtin_sym_end] = ACTIONS(1552), - [anon_sym_STAR_STAR] = ACTIONS(1552), - [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1550), - [anon_sym_SLASH] = ACTIONS(1550), - [anon_sym_mod] = ACTIONS(1552), - [anon_sym_SLASH_SLASH] = ACTIONS(1552), - [anon_sym_PLUS] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1552), - [anon_sym_bit_DASHshl] = ACTIONS(1552), - [anon_sym_bit_DASHshr] = ACTIONS(1552), - [anon_sym_EQ_TILDE] = ACTIONS(1552), - [anon_sym_BANG_TILDE] = ACTIONS(1552), - [anon_sym_bit_DASHand] = ACTIONS(1552), - [anon_sym_bit_DASHxor] = ACTIONS(1552), - [anon_sym_bit_DASHor] = ACTIONS(1552), - [anon_sym_and] = ACTIONS(1552), - [anon_sym_xor] = ACTIONS(1552), - [anon_sym_or] = ACTIONS(1552), - [anon_sym_in] = ACTIONS(1552), - [anon_sym_not_DASHin] = ACTIONS(1552), - [anon_sym_starts_DASHwith] = ACTIONS(1552), - [anon_sym_ends_DASHwith] = ACTIONS(1552), - [anon_sym_EQ_EQ] = ACTIONS(1552), - [anon_sym_BANG_EQ] = ACTIONS(1552), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_LT_EQ] = ACTIONS(1552), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_GT_EQ] = ACTIONS(1552), - [aux_sym_cmd_identifier_token41] = ACTIONS(1550), - [sym__newline] = ACTIONS(1550), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_err_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_GT_PIPE] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1550), - [anon_sym_GT2] = ACTIONS(1550), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_in2] = ACTIONS(1550), - [anon_sym_STAR2] = ACTIONS(1550), - [anon_sym_and2] = ACTIONS(1550), - [anon_sym_xor2] = ACTIONS(1550), - [anon_sym_or2] = ACTIONS(1550), - [anon_sym_not_DASHin2] = ACTIONS(1550), - [anon_sym_starts_DASHwith2] = ACTIONS(1550), - [anon_sym_ends_DASHwith2] = ACTIONS(1550), - [anon_sym_EQ_EQ2] = ACTIONS(1550), - [anon_sym_BANG_EQ2] = ACTIONS(1550), - [anon_sym_LT2] = ACTIONS(1550), - [anon_sym_LT_EQ2] = ACTIONS(1550), - [anon_sym_GT_EQ2] = ACTIONS(1550), - [anon_sym_EQ_TILDE2] = ACTIONS(1550), - [anon_sym_BANG_TILDE2] = ACTIONS(1550), - [anon_sym_STAR_STAR2] = ACTIONS(1550), - [anon_sym_PLUS_PLUS2] = ACTIONS(1550), - [anon_sym_SLASH2] = ACTIONS(1550), - [anon_sym_mod2] = ACTIONS(1550), - [anon_sym_SLASH_SLASH2] = ACTIONS(1550), - [anon_sym_PLUS2] = ACTIONS(1550), - [anon_sym_bit_DASHshl2] = ACTIONS(1550), - [anon_sym_bit_DASHshr2] = ACTIONS(1550), - [anon_sym_bit_DASHand2] = ACTIONS(1550), - [anon_sym_bit_DASHxor2] = ACTIONS(1550), - [anon_sym_bit_DASHor2] = ACTIONS(1550), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT] = ACTIONS(2943), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [aux_sym__immediate_decimal_token2] = ACTIONS(2945), - [sym_filesize_unit] = ACTIONS(1550), - [sym_duration_unit] = ACTIONS(1552), - [anon_sym_err_GT] = ACTIONS(1550), - [anon_sym_out_GT] = ACTIONS(1550), - [anon_sym_e_GT] = ACTIONS(1550), - [anon_sym_o_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT] = ACTIONS(1550), - [anon_sym_err_GT_GT] = ACTIONS(1550), - [anon_sym_out_GT_GT] = ACTIONS(1550), - [anon_sym_e_GT_GT] = ACTIONS(1550), - [anon_sym_o_GT_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1550), + [anon_sym_STAR_STAR] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_SLASH] = ACTIONS(1512), + [anon_sym_mod] = ACTIONS(1514), + [anon_sym_SLASH_SLASH] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_bit_DASHshl] = ACTIONS(1514), + [anon_sym_bit_DASHshr] = ACTIONS(1514), + [anon_sym_EQ_TILDE] = ACTIONS(1514), + [anon_sym_BANG_TILDE] = ACTIONS(1514), + [anon_sym_bit_DASHand] = ACTIONS(1514), + [anon_sym_bit_DASHxor] = ACTIONS(1514), + [anon_sym_bit_DASHor] = ACTIONS(1514), + [anon_sym_and] = ACTIONS(1514), + [anon_sym_xor] = ACTIONS(1514), + [anon_sym_or] = ACTIONS(1514), + [anon_sym_in] = ACTIONS(1514), + [anon_sym_not_DASHin] = ACTIONS(1514), + [anon_sym_has] = ACTIONS(1514), + [anon_sym_not_DASHhas] = ACTIONS(1514), + [anon_sym_starts_DASHwith] = ACTIONS(1514), + [anon_sym_ends_DASHwith] = ACTIONS(1514), + [anon_sym_EQ_EQ] = ACTIONS(1514), + [anon_sym_BANG_EQ] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_LT_EQ] = ACTIONS(1514), + [anon_sym_GT] = ACTIONS(1512), + [anon_sym_GT_EQ] = ACTIONS(1514), + [aux_sym_cmd_identifier_token41] = ACTIONS(1512), + [sym__newline] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_err_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_GT_PIPE] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1512), + [anon_sym_RPAREN] = ACTIONS(1512), + [anon_sym_GT2] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_in2] = ACTIONS(1512), + [anon_sym_STAR2] = ACTIONS(1512), + [anon_sym_and2] = ACTIONS(1512), + [anon_sym_xor2] = ACTIONS(1512), + [anon_sym_or2] = ACTIONS(1512), + [anon_sym_not_DASHin2] = ACTIONS(1512), + [anon_sym_has2] = ACTIONS(1512), + [anon_sym_not_DASHhas2] = ACTIONS(1512), + [anon_sym_starts_DASHwith2] = ACTIONS(1512), + [anon_sym_ends_DASHwith2] = ACTIONS(1512), + [anon_sym_EQ_EQ2] = ACTIONS(1512), + [anon_sym_BANG_EQ2] = ACTIONS(1512), + [anon_sym_LT2] = ACTIONS(1512), + [anon_sym_LT_EQ2] = ACTIONS(1512), + [anon_sym_GT_EQ2] = ACTIONS(1512), + [anon_sym_EQ_TILDE2] = ACTIONS(1512), + [anon_sym_BANG_TILDE2] = ACTIONS(1512), + [anon_sym_STAR_STAR2] = ACTIONS(1512), + [anon_sym_PLUS_PLUS2] = ACTIONS(1512), + [anon_sym_SLASH2] = ACTIONS(1512), + [anon_sym_mod2] = ACTIONS(1512), + [anon_sym_SLASH_SLASH2] = ACTIONS(1512), + [anon_sym_PLUS2] = ACTIONS(1512), + [anon_sym_bit_DASHshl2] = ACTIONS(1512), + [anon_sym_bit_DASHshr2] = ACTIONS(1512), + [anon_sym_bit_DASHand2] = ACTIONS(1512), + [anon_sym_bit_DASHxor2] = ACTIONS(1512), + [anon_sym_bit_DASHor2] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [sym_filesize_unit] = ACTIONS(1512), + [sym_duration_unit] = ACTIONS(1514), + [anon_sym_err_GT] = ACTIONS(1512), + [anon_sym_out_GT] = ACTIONS(1512), + [anon_sym_e_GT] = ACTIONS(1512), + [anon_sym_o_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT] = ACTIONS(1512), + [anon_sym_err_GT_GT] = ACTIONS(1512), + [anon_sym_out_GT_GT] = ACTIONS(1512), + [anon_sym_e_GT_GT] = ACTIONS(1512), + [anon_sym_o_GT_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1512), [anon_sym_POUND] = ACTIONS(3), }, [786] = { - [sym_expr_parenthesized] = STATE(1552), - [sym_val_range] = STATE(1837), - [sym__val_range] = STATE(7466), - [sym__val_range_with_end] = STATE(7323), - [sym__value] = STATE(1837), - [sym_val_nothing] = STATE(1903), - [sym_val_bool] = STATE(1670), - [sym_val_variable] = STATE(1618), - [sym_val_number] = STATE(1903), - [sym__val_number_decimal] = STATE(1320), - [sym__val_number] = STATE(1904), - [sym_val_duration] = STATE(1903), - [sym_val_filesize] = STATE(1903), - [sym_val_binary] = STATE(1903), - [sym_val_string] = STATE(1903), - [sym__raw_str] = STATE(1876), - [sym__str_double_quotes] = STATE(1876), - [sym_val_interpolated] = STATE(1903), - [sym__inter_single_quotes] = STATE(1874), - [sym__inter_double_quotes] = STATE(1875), - [sym_val_list] = STATE(1903), - [sym_val_record] = STATE(1903), - [sym_val_table] = STATE(1903), - [sym_val_closure] = STATE(1903), - [sym__flag] = STATE(1837), - [sym_short_flag] = STATE(1839), - [sym_long_flag] = STATE(1839), - [sym_unquoted] = STATE(1656), - [sym__unquoted_with_expr] = STATE(1848), - [sym__unquoted_anonymous_prefix] = STATE(6938), [sym_comment] = STATE(786), - [aux_sym_ctrl_do_repeat2] = STATE(789), - [ts_builtin_sym_end] = ACTIONS(2778), - [sym__newline] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2778), - [anon_sym_PIPE] = ACTIONS(2778), - [anon_sym_err_GT_PIPE] = ACTIONS(2778), - [anon_sym_out_GT_PIPE] = ACTIONS(2778), - [anon_sym_e_GT_PIPE] = ACTIONS(2778), - [anon_sym_o_GT_PIPE] = ACTIONS(2778), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2778), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2778), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2778), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2873), - [anon_sym_LPAREN] = ACTIONS(2875), - [anon_sym_DOLLAR] = ACTIONS(2877), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_DASH2] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2883), - [anon_sym_DOT_DOT] = ACTIONS(2885), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2887), - [anon_sym_DOT_DOT_LT] = ACTIONS(2887), - [anon_sym_null] = ACTIONS(2889), - [anon_sym_true] = ACTIONS(2891), - [anon_sym_false] = ACTIONS(2891), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [aux_sym__val_number_decimal_token3] = ACTIONS(2897), - [aux_sym__val_number_decimal_token4] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2901), - [aux_sym__val_number_token2] = ACTIONS(2901), - [aux_sym__val_number_token3] = ACTIONS(2901), - [aux_sym__val_number_token4] = ACTIONS(2903), - [aux_sym__val_number_token5] = ACTIONS(2903), - [aux_sym__val_number_token6] = ACTIONS(2903), - [anon_sym_0b] = ACTIONS(2905), - [anon_sym_0o] = ACTIONS(2907), - [anon_sym_0x] = ACTIONS(2907), - [sym_val_date] = ACTIONS(2909), - [anon_sym_DQUOTE] = ACTIONS(2911), - [sym__str_single_quotes] = ACTIONS(2913), - [sym__str_back_ticks] = ACTIONS(2913), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2915), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2917), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(2919), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2921), + [anon_sym_STAR_STAR] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_STAR] = ACTIONS(1504), + [anon_sym_SLASH] = ACTIONS(1504), + [anon_sym_mod] = ACTIONS(1506), + [anon_sym_SLASH_SLASH] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_bit_DASHshl] = ACTIONS(1506), + [anon_sym_bit_DASHshr] = ACTIONS(1506), + [anon_sym_EQ_TILDE] = ACTIONS(1506), + [anon_sym_BANG_TILDE] = ACTIONS(1506), + [anon_sym_bit_DASHand] = ACTIONS(1506), + [anon_sym_bit_DASHxor] = ACTIONS(1506), + [anon_sym_bit_DASHor] = ACTIONS(1506), + [anon_sym_and] = ACTIONS(1506), + [anon_sym_xor] = ACTIONS(1506), + [anon_sym_or] = ACTIONS(1506), + [anon_sym_in] = ACTIONS(1506), + [anon_sym_not_DASHin] = ACTIONS(1506), + [anon_sym_has] = ACTIONS(1506), + [anon_sym_not_DASHhas] = 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_LT] = ACTIONS(1504), + [anon_sym_LT_EQ] = ACTIONS(1506), + [anon_sym_GT] = ACTIONS(1504), + [anon_sym_GT_EQ] = ACTIONS(1506), + [aux_sym_cmd_identifier_token41] = ACTIONS(1504), + [sym__newline] = ACTIONS(1504), + [anon_sym_SEMI] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_err_GT_PIPE] = ACTIONS(1504), + [anon_sym_out_GT_PIPE] = ACTIONS(1504), + [anon_sym_e_GT_PIPE] = ACTIONS(1504), + [anon_sym_o_GT_PIPE] = ACTIONS(1504), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1504), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1504), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1504), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1504), + [anon_sym_RPAREN] = ACTIONS(1504), + [anon_sym_GT2] = ACTIONS(1504), + [anon_sym_DASH2] = ACTIONS(1504), + [anon_sym_in2] = ACTIONS(1504), + [anon_sym_STAR2] = ACTIONS(1504), + [anon_sym_and2] = ACTIONS(1504), + [anon_sym_xor2] = ACTIONS(1504), + [anon_sym_or2] = ACTIONS(1504), + [anon_sym_not_DASHin2] = ACTIONS(1504), + [anon_sym_has2] = ACTIONS(1504), + [anon_sym_not_DASHhas2] = ACTIONS(1504), + [anon_sym_starts_DASHwith2] = ACTIONS(1504), + [anon_sym_ends_DASHwith2] = ACTIONS(1504), + [anon_sym_EQ_EQ2] = ACTIONS(1504), + [anon_sym_BANG_EQ2] = ACTIONS(1504), + [anon_sym_LT2] = ACTIONS(1504), + [anon_sym_LT_EQ2] = ACTIONS(1504), + [anon_sym_GT_EQ2] = ACTIONS(1504), + [anon_sym_EQ_TILDE2] = ACTIONS(1504), + [anon_sym_BANG_TILDE2] = ACTIONS(1504), + [anon_sym_STAR_STAR2] = ACTIONS(1504), + [anon_sym_PLUS_PLUS2] = ACTIONS(1504), + [anon_sym_SLASH2] = ACTIONS(1504), + [anon_sym_mod2] = ACTIONS(1504), + [anon_sym_SLASH_SLASH2] = ACTIONS(1504), + [anon_sym_PLUS2] = ACTIONS(1504), + [anon_sym_bit_DASHshl2] = ACTIONS(1504), + [anon_sym_bit_DASHshr2] = ACTIONS(1504), + [anon_sym_bit_DASHand2] = ACTIONS(1504), + [anon_sym_bit_DASHxor2] = ACTIONS(1504), + [anon_sym_bit_DASHor2] = ACTIONS(1504), + [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(1504), + [anon_sym_out_GT_GT] = ACTIONS(1504), + [anon_sym_e_GT_GT] = ACTIONS(1504), + [anon_sym_o_GT_GT] = ACTIONS(1504), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1504), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1504), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1504), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1504), + [anon_sym_POUND] = ACTIONS(3), }, [787] = { - [sym_expr_parenthesized] = STATE(1552), - [sym_val_range] = STATE(1837), - [sym__val_range] = STATE(7466), - [sym__val_range_with_end] = STATE(7323), - [sym__value] = STATE(1837), - [sym_val_nothing] = STATE(1903), - [sym_val_bool] = STATE(1670), - [sym_val_variable] = STATE(1618), - [sym_val_number] = STATE(1903), - [sym__val_number_decimal] = STATE(1320), - [sym__val_number] = STATE(1904), - [sym_val_duration] = STATE(1903), - [sym_val_filesize] = STATE(1903), - [sym_val_binary] = STATE(1903), - [sym_val_string] = STATE(1903), - [sym__raw_str] = STATE(1876), - [sym__str_double_quotes] = STATE(1876), - [sym_val_interpolated] = STATE(1903), - [sym__inter_single_quotes] = STATE(1874), - [sym__inter_double_quotes] = STATE(1875), - [sym_val_list] = STATE(1903), - [sym_val_record] = STATE(1903), - [sym_val_table] = STATE(1903), - [sym_val_closure] = STATE(1903), - [sym__flag] = STATE(1837), - [sym_short_flag] = STATE(1839), - [sym_long_flag] = STATE(1839), - [sym_unquoted] = STATE(1656), - [sym__unquoted_with_expr] = STATE(1848), - [sym__unquoted_anonymous_prefix] = STATE(6938), [sym_comment] = STATE(787), - [aux_sym_ctrl_do_repeat2] = STATE(786), - [ts_builtin_sym_end] = ACTIONS(2776), - [sym__newline] = ACTIONS(2776), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym_PIPE] = ACTIONS(2776), - [anon_sym_err_GT_PIPE] = ACTIONS(2776), - [anon_sym_out_GT_PIPE] = ACTIONS(2776), - [anon_sym_e_GT_PIPE] = ACTIONS(2776), - [anon_sym_o_GT_PIPE] = ACTIONS(2776), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2776), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2776), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), - [anon_sym_LBRACK] = ACTIONS(2873), - [anon_sym_LPAREN] = ACTIONS(2875), - [anon_sym_DOLLAR] = ACTIONS(2877), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_DASH2] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2883), - [anon_sym_DOT_DOT] = ACTIONS(2885), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2887), - [anon_sym_DOT_DOT_LT] = ACTIONS(2887), - [anon_sym_null] = ACTIONS(2889), - [anon_sym_true] = ACTIONS(2891), - [anon_sym_false] = ACTIONS(2891), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [aux_sym__val_number_decimal_token3] = ACTIONS(2897), - [aux_sym__val_number_decimal_token4] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2901), - [aux_sym__val_number_token2] = ACTIONS(2901), - [aux_sym__val_number_token3] = ACTIONS(2901), - [aux_sym__val_number_token4] = ACTIONS(2903), - [aux_sym__val_number_token5] = ACTIONS(2903), - [aux_sym__val_number_token6] = ACTIONS(2903), - [anon_sym_0b] = ACTIONS(2905), - [anon_sym_0o] = ACTIONS(2907), - [anon_sym_0x] = ACTIONS(2907), - [sym_val_date] = ACTIONS(2909), - [anon_sym_DQUOTE] = ACTIONS(2911), - [sym__str_single_quotes] = ACTIONS(2913), - [sym__str_back_ticks] = ACTIONS(2913), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2915), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2917), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(2919), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2921), + [anon_sym_STAR_STAR] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_STAR] = ACTIONS(1504), + [anon_sym_SLASH] = ACTIONS(1504), + [anon_sym_mod] = ACTIONS(1506), + [anon_sym_SLASH_SLASH] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_bit_DASHshl] = ACTIONS(1506), + [anon_sym_bit_DASHshr] = ACTIONS(1506), + [anon_sym_EQ_TILDE] = ACTIONS(1506), + [anon_sym_BANG_TILDE] = ACTIONS(1506), + [anon_sym_bit_DASHand] = ACTIONS(1506), + [anon_sym_bit_DASHxor] = ACTIONS(1506), + [anon_sym_bit_DASHor] = ACTIONS(1506), + [anon_sym_and] = ACTIONS(1506), + [anon_sym_xor] = ACTIONS(1506), + [anon_sym_or] = ACTIONS(1506), + [anon_sym_in] = ACTIONS(1506), + [anon_sym_not_DASHin] = ACTIONS(1506), + [anon_sym_has] = ACTIONS(1506), + [anon_sym_not_DASHhas] = 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_LT] = ACTIONS(1504), + [anon_sym_LT_EQ] = ACTIONS(1506), + [anon_sym_GT] = ACTIONS(1504), + [anon_sym_GT_EQ] = ACTIONS(1506), + [aux_sym_cmd_identifier_token41] = ACTIONS(1504), + [sym__newline] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_err_GT_PIPE] = ACTIONS(1504), + [anon_sym_out_GT_PIPE] = ACTIONS(1504), + [anon_sym_e_GT_PIPE] = ACTIONS(1504), + [anon_sym_o_GT_PIPE] = ACTIONS(1504), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1504), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1504), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1504), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1504), + [anon_sym_GT2] = ACTIONS(1504), + [anon_sym_DASH2] = ACTIONS(1504), + [anon_sym_in2] = ACTIONS(1504), + [anon_sym_STAR2] = ACTIONS(1504), + [anon_sym_and2] = ACTIONS(1504), + [anon_sym_xor2] = ACTIONS(1504), + [anon_sym_or2] = ACTIONS(1504), + [anon_sym_not_DASHin2] = ACTIONS(1504), + [anon_sym_has2] = ACTIONS(1504), + [anon_sym_not_DASHhas2] = ACTIONS(1504), + [anon_sym_starts_DASHwith2] = ACTIONS(1504), + [anon_sym_ends_DASHwith2] = ACTIONS(1504), + [anon_sym_EQ_EQ2] = ACTIONS(1504), + [anon_sym_BANG_EQ2] = ACTIONS(1504), + [anon_sym_LT2] = ACTIONS(1504), + [anon_sym_LT_EQ2] = ACTIONS(1504), + [anon_sym_GT_EQ2] = ACTIONS(1504), + [anon_sym_EQ_TILDE2] = ACTIONS(1504), + [anon_sym_BANG_TILDE2] = ACTIONS(1504), + [anon_sym_STAR_STAR2] = ACTIONS(1504), + [anon_sym_PLUS_PLUS2] = ACTIONS(1504), + [anon_sym_SLASH2] = ACTIONS(1504), + [anon_sym_mod2] = ACTIONS(1504), + [anon_sym_SLASH_SLASH2] = ACTIONS(1504), + [anon_sym_PLUS2] = ACTIONS(1504), + [anon_sym_bit_DASHshl2] = ACTIONS(1504), + [anon_sym_bit_DASHshr2] = ACTIONS(1504), + [anon_sym_bit_DASHand2] = ACTIONS(1504), + [anon_sym_bit_DASHxor2] = ACTIONS(1504), + [anon_sym_bit_DASHor2] = ACTIONS(1504), + [anon_sym_DOT_DOT2] = ACTIONS(1504), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1506), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1506), + [aux_sym__immediate_decimal_token1] = ACTIONS(2616), + [aux_sym__immediate_decimal_token2] = ACTIONS(2618), + [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(1504), + [anon_sym_out_GT_GT] = ACTIONS(1504), + [anon_sym_e_GT_GT] = ACTIONS(1504), + [anon_sym_o_GT_GT] = ACTIONS(1504), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1504), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1504), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1504), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1504), + [anon_sym_POUND] = ACTIONS(3), }, [788] = { [sym_comment] = STATE(788), - [anon_sym_STAR_STAR] = ACTIONS(1682), - [anon_sym_PLUS_PLUS] = ACTIONS(1682), - [anon_sym_STAR] = ACTIONS(1680), - [anon_sym_SLASH] = ACTIONS(1680), - [anon_sym_mod] = ACTIONS(1682), - [anon_sym_SLASH_SLASH] = ACTIONS(1682), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_DASH] = ACTIONS(1682), - [anon_sym_bit_DASHshl] = ACTIONS(1682), - [anon_sym_bit_DASHshr] = ACTIONS(1682), - [anon_sym_EQ_TILDE] = ACTIONS(1682), - [anon_sym_BANG_TILDE] = ACTIONS(1682), - [anon_sym_bit_DASHand] = ACTIONS(1682), - [anon_sym_bit_DASHxor] = ACTIONS(1682), - [anon_sym_bit_DASHor] = ACTIONS(1682), - [anon_sym_and] = ACTIONS(1682), - [anon_sym_xor] = ACTIONS(1682), - [anon_sym_or] = ACTIONS(1682), - [anon_sym_in] = ACTIONS(1682), - [anon_sym_not_DASHin] = ACTIONS(1682), - [anon_sym_starts_DASHwith] = ACTIONS(1682), - [anon_sym_ends_DASHwith] = ACTIONS(1682), - [anon_sym_EQ_EQ] = ACTIONS(1682), - [anon_sym_BANG_EQ] = ACTIONS(1682), - [anon_sym_LT] = ACTIONS(1680), - [anon_sym_LT_EQ] = ACTIONS(1682), - [anon_sym_GT] = ACTIONS(1680), - [anon_sym_GT_EQ] = ACTIONS(1682), - [aux_sym_cmd_identifier_token41] = ACTIONS(1680), - [sym__newline] = ACTIONS(1680), - [anon_sym_SEMI] = ACTIONS(1680), - [anon_sym_PIPE] = ACTIONS(1680), - [anon_sym_err_GT_PIPE] = ACTIONS(1680), - [anon_sym_out_GT_PIPE] = ACTIONS(1680), - [anon_sym_e_GT_PIPE] = ACTIONS(1680), - [anon_sym_o_GT_PIPE] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1680), - [anon_sym_GT2] = ACTIONS(1680), - [anon_sym_DASH2] = ACTIONS(1680), - [anon_sym_in2] = ACTIONS(1680), - [anon_sym_RBRACE] = ACTIONS(1680), - [anon_sym_STAR2] = ACTIONS(1680), - [anon_sym_and2] = ACTIONS(1680), - [anon_sym_xor2] = ACTIONS(1680), - [anon_sym_or2] = ACTIONS(1680), - [anon_sym_not_DASHin2] = ACTIONS(1680), - [anon_sym_starts_DASHwith2] = ACTIONS(1680), - [anon_sym_ends_DASHwith2] = ACTIONS(1680), - [anon_sym_EQ_EQ2] = ACTIONS(1680), - [anon_sym_BANG_EQ2] = ACTIONS(1680), - [anon_sym_LT2] = ACTIONS(1680), - [anon_sym_LT_EQ2] = ACTIONS(1680), - [anon_sym_GT_EQ2] = ACTIONS(1680), - [anon_sym_EQ_TILDE2] = ACTIONS(1680), - [anon_sym_BANG_TILDE2] = ACTIONS(1680), - [anon_sym_STAR_STAR2] = ACTIONS(1680), - [anon_sym_PLUS_PLUS2] = ACTIONS(1680), - [anon_sym_SLASH2] = ACTIONS(1680), - [anon_sym_mod2] = ACTIONS(1680), - [anon_sym_SLASH_SLASH2] = ACTIONS(1680), - [anon_sym_PLUS2] = ACTIONS(1680), - [anon_sym_bit_DASHshl2] = ACTIONS(1680), - [anon_sym_bit_DASHshr2] = ACTIONS(1680), - [anon_sym_bit_DASHand2] = ACTIONS(1680), - [anon_sym_bit_DASHxor2] = ACTIONS(1680), - [anon_sym_bit_DASHor2] = ACTIONS(1680), - [anon_sym_DOT_DOT2] = ACTIONS(1680), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1682), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1682), - [aux_sym__immediate_decimal_token2] = ACTIONS(2947), - [sym_filesize_unit] = ACTIONS(1680), - [sym_duration_unit] = ACTIONS(1682), - [anon_sym_COLON2] = ACTIONS(1680), - [anon_sym_err_GT] = ACTIONS(1680), - [anon_sym_out_GT] = ACTIONS(1680), - [anon_sym_e_GT] = ACTIONS(1680), - [anon_sym_o_GT] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT] = ACTIONS(1680), - [anon_sym_err_GT_GT] = ACTIONS(1680), - [anon_sym_out_GT_GT] = ACTIONS(1680), - [anon_sym_e_GT_GT] = ACTIONS(1680), - [anon_sym_o_GT_GT] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1680), + [ts_builtin_sym_end] = ACTIONS(1506), + [anon_sym_STAR_STAR] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_STAR] = ACTIONS(1504), + [anon_sym_SLASH] = ACTIONS(1504), + [anon_sym_mod] = ACTIONS(1506), + [anon_sym_SLASH_SLASH] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_bit_DASHshl] = ACTIONS(1506), + [anon_sym_bit_DASHshr] = ACTIONS(1506), + [anon_sym_EQ_TILDE] = ACTIONS(1506), + [anon_sym_BANG_TILDE] = ACTIONS(1506), + [anon_sym_bit_DASHand] = ACTIONS(1506), + [anon_sym_bit_DASHxor] = ACTIONS(1506), + [anon_sym_bit_DASHor] = ACTIONS(1506), + [anon_sym_and] = ACTIONS(1506), + [anon_sym_xor] = ACTIONS(1506), + [anon_sym_or] = ACTIONS(1506), + [anon_sym_in] = ACTIONS(1506), + [anon_sym_not_DASHin] = ACTIONS(1506), + [anon_sym_has] = ACTIONS(1506), + [anon_sym_not_DASHhas] = 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_LT] = ACTIONS(1504), + [anon_sym_LT_EQ] = ACTIONS(1506), + [anon_sym_GT] = ACTIONS(1504), + [anon_sym_GT_EQ] = ACTIONS(1506), + [aux_sym_cmd_identifier_token41] = ACTIONS(1504), + [sym__newline] = ACTIONS(1504), + [anon_sym_SEMI] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_err_GT_PIPE] = ACTIONS(1504), + [anon_sym_out_GT_PIPE] = ACTIONS(1504), + [anon_sym_e_GT_PIPE] = ACTIONS(1504), + [anon_sym_o_GT_PIPE] = ACTIONS(1504), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1504), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1504), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1504), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1504), + [anon_sym_GT2] = ACTIONS(1504), + [anon_sym_DASH2] = ACTIONS(1504), + [anon_sym_in2] = ACTIONS(1504), + [anon_sym_STAR2] = ACTIONS(1504), + [anon_sym_and2] = ACTIONS(1504), + [anon_sym_xor2] = ACTIONS(1504), + [anon_sym_or2] = ACTIONS(1504), + [anon_sym_not_DASHin2] = ACTIONS(1504), + [anon_sym_has2] = ACTIONS(1504), + [anon_sym_not_DASHhas2] = ACTIONS(1504), + [anon_sym_starts_DASHwith2] = ACTIONS(1504), + [anon_sym_ends_DASHwith2] = ACTIONS(1504), + [anon_sym_EQ_EQ2] = ACTIONS(1504), + [anon_sym_BANG_EQ2] = ACTIONS(1504), + [anon_sym_LT2] = ACTIONS(1504), + [anon_sym_LT_EQ2] = ACTIONS(1504), + [anon_sym_GT_EQ2] = ACTIONS(1504), + [anon_sym_EQ_TILDE2] = ACTIONS(1504), + [anon_sym_BANG_TILDE2] = ACTIONS(1504), + [anon_sym_STAR_STAR2] = ACTIONS(1504), + [anon_sym_PLUS_PLUS2] = ACTIONS(1504), + [anon_sym_SLASH2] = ACTIONS(1504), + [anon_sym_mod2] = ACTIONS(1504), + [anon_sym_SLASH_SLASH2] = ACTIONS(1504), + [anon_sym_PLUS2] = ACTIONS(1504), + [anon_sym_bit_DASHshl2] = ACTIONS(1504), + [anon_sym_bit_DASHshr2] = ACTIONS(1504), + [anon_sym_bit_DASHand2] = ACTIONS(1504), + [anon_sym_bit_DASHxor2] = ACTIONS(1504), + [anon_sym_bit_DASHor2] = ACTIONS(1504), + [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(1504), + [anon_sym_out_GT_GT] = ACTIONS(1504), + [anon_sym_e_GT_GT] = ACTIONS(1504), + [anon_sym_o_GT_GT] = ACTIONS(1504), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1504), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1504), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1504), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1504), [anon_sym_POUND] = ACTIONS(3), }, [789] = { - [sym_expr_parenthesized] = STATE(1552), - [sym_val_range] = STATE(1837), - [sym__val_range] = STATE(7466), - [sym__val_range_with_end] = STATE(7323), - [sym__value] = STATE(1837), - [sym_val_nothing] = STATE(1903), - [sym_val_bool] = STATE(1670), - [sym_val_variable] = STATE(1618), - [sym_val_number] = STATE(1903), - [sym__val_number_decimal] = STATE(1320), - [sym__val_number] = STATE(1904), - [sym_val_duration] = STATE(1903), - [sym_val_filesize] = STATE(1903), - [sym_val_binary] = STATE(1903), - [sym_val_string] = STATE(1903), - [sym__raw_str] = STATE(1876), - [sym__str_double_quotes] = STATE(1876), - [sym_val_interpolated] = STATE(1903), - [sym__inter_single_quotes] = STATE(1874), - [sym__inter_double_quotes] = STATE(1875), - [sym_val_list] = STATE(1903), - [sym_val_record] = STATE(1903), - [sym_val_table] = STATE(1903), - [sym_val_closure] = STATE(1903), - [sym__flag] = STATE(1837), - [sym_short_flag] = STATE(1839), - [sym_long_flag] = STATE(1839), - [sym_unquoted] = STATE(1656), - [sym__unquoted_with_expr] = STATE(1848), - [sym__unquoted_anonymous_prefix] = STATE(6938), [sym_comment] = STATE(789), - [aux_sym_ctrl_do_repeat2] = STATE(789), - [ts_builtin_sym_end] = ACTIONS(2786), - [sym__newline] = ACTIONS(2786), - [anon_sym_SEMI] = ACTIONS(2786), - [anon_sym_PIPE] = ACTIONS(2786), - [anon_sym_err_GT_PIPE] = ACTIONS(2786), - [anon_sym_out_GT_PIPE] = ACTIONS(2786), - [anon_sym_e_GT_PIPE] = ACTIONS(2786), - [anon_sym_o_GT_PIPE] = ACTIONS(2786), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2786), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2786), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2786), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2786), - [anon_sym_LBRACK] = ACTIONS(2949), - [anon_sym_LPAREN] = ACTIONS(2952), - [anon_sym_DOLLAR] = ACTIONS(2955), - [anon_sym_DASH_DASH] = ACTIONS(2958), - [anon_sym_DASH2] = ACTIONS(2961), - [anon_sym_LBRACE] = ACTIONS(2964), - [anon_sym_DOT_DOT] = ACTIONS(2967), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2970), - [anon_sym_DOT_DOT_LT] = ACTIONS(2970), - [anon_sym_null] = ACTIONS(2973), - [anon_sym_true] = ACTIONS(2976), - [anon_sym_false] = ACTIONS(2976), - [aux_sym__val_number_decimal_token1] = ACTIONS(2979), - [aux_sym__val_number_decimal_token2] = ACTIONS(2982), - [aux_sym__val_number_decimal_token3] = ACTIONS(2985), - [aux_sym__val_number_decimal_token4] = ACTIONS(2988), - [aux_sym__val_number_token1] = ACTIONS(2991), - [aux_sym__val_number_token2] = ACTIONS(2991), - [aux_sym__val_number_token3] = ACTIONS(2991), - [aux_sym__val_number_token4] = ACTIONS(2994), - [aux_sym__val_number_token5] = ACTIONS(2994), - [aux_sym__val_number_token6] = ACTIONS(2994), - [anon_sym_0b] = ACTIONS(2997), - [anon_sym_0o] = ACTIONS(3000), - [anon_sym_0x] = ACTIONS(3000), - [sym_val_date] = ACTIONS(3003), - [anon_sym_DQUOTE] = ACTIONS(3006), - [sym__str_single_quotes] = ACTIONS(3009), - [sym__str_back_ticks] = ACTIONS(3009), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3012), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3015), - [anon_sym_err_GT] = ACTIONS(2857), - [anon_sym_out_GT] = ACTIONS(2857), - [anon_sym_e_GT] = ACTIONS(2857), - [anon_sym_o_GT] = ACTIONS(2857), - [anon_sym_err_PLUSout_GT] = ACTIONS(2857), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2857), - [anon_sym_o_PLUSe_GT] = ACTIONS(2857), - [anon_sym_e_PLUSo_GT] = ACTIONS(2857), - [anon_sym_err_GT_GT] = ACTIONS(2860), - [anon_sym_out_GT_GT] = ACTIONS(2860), - [anon_sym_e_GT_GT] = ACTIONS(2860), - [anon_sym_o_GT_GT] = ACTIONS(2860), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2860), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2860), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2860), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2860), - [aux_sym_unquoted_token1] = ACTIONS(3018), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3021), + [anon_sym_STAR_STAR] = ACTIONS(1691), + [anon_sym_PLUS_PLUS] = ACTIONS(1691), + [anon_sym_STAR] = ACTIONS(1689), + [anon_sym_SLASH] = ACTIONS(1689), + [anon_sym_mod] = ACTIONS(1691), + [anon_sym_SLASH_SLASH] = ACTIONS(1691), + [anon_sym_PLUS] = ACTIONS(1689), + [anon_sym_DASH] = ACTIONS(1691), + [anon_sym_bit_DASHshl] = ACTIONS(1691), + [anon_sym_bit_DASHshr] = ACTIONS(1691), + [anon_sym_EQ_TILDE] = ACTIONS(1691), + [anon_sym_BANG_TILDE] = ACTIONS(1691), + [anon_sym_bit_DASHand] = ACTIONS(1691), + [anon_sym_bit_DASHxor] = ACTIONS(1691), + [anon_sym_bit_DASHor] = ACTIONS(1691), + [anon_sym_and] = ACTIONS(1691), + [anon_sym_xor] = ACTIONS(1691), + [anon_sym_or] = ACTIONS(1691), + [anon_sym_in] = ACTIONS(1691), + [anon_sym_not_DASHin] = ACTIONS(1691), + [anon_sym_has] = ACTIONS(1691), + [anon_sym_not_DASHhas] = ACTIONS(1691), + [anon_sym_starts_DASHwith] = ACTIONS(1691), + [anon_sym_ends_DASHwith] = ACTIONS(1691), + [anon_sym_EQ_EQ] = ACTIONS(1691), + [anon_sym_BANG_EQ] = ACTIONS(1691), + [anon_sym_LT] = ACTIONS(1689), + [anon_sym_LT_EQ] = ACTIONS(1691), + [anon_sym_GT] = ACTIONS(1689), + [anon_sym_GT_EQ] = ACTIONS(1691), + [aux_sym_cmd_identifier_token41] = ACTIONS(1689), + [sym__newline] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1689), + [anon_sym_PIPE] = ACTIONS(1689), + [anon_sym_err_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_GT_PIPE] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1689), + [anon_sym_RPAREN] = ACTIONS(1689), + [anon_sym_GT2] = ACTIONS(1689), + [anon_sym_DASH2] = ACTIONS(1689), + [anon_sym_in2] = ACTIONS(1689), + [anon_sym_STAR2] = ACTIONS(1689), + [anon_sym_and2] = ACTIONS(1689), + [anon_sym_xor2] = ACTIONS(1689), + [anon_sym_or2] = ACTIONS(1689), + [anon_sym_not_DASHin2] = ACTIONS(1689), + [anon_sym_has2] = ACTIONS(1689), + [anon_sym_not_DASHhas2] = ACTIONS(1689), + [anon_sym_starts_DASHwith2] = ACTIONS(1689), + [anon_sym_ends_DASHwith2] = ACTIONS(1689), + [anon_sym_EQ_EQ2] = ACTIONS(1689), + [anon_sym_BANG_EQ2] = ACTIONS(1689), + [anon_sym_LT2] = ACTIONS(1689), + [anon_sym_LT_EQ2] = ACTIONS(1689), + [anon_sym_GT_EQ2] = ACTIONS(1689), + [anon_sym_EQ_TILDE2] = ACTIONS(1689), + [anon_sym_BANG_TILDE2] = ACTIONS(1689), + [anon_sym_STAR_STAR2] = ACTIONS(1689), + [anon_sym_PLUS_PLUS2] = ACTIONS(1689), + [anon_sym_SLASH2] = ACTIONS(1689), + [anon_sym_mod2] = ACTIONS(1689), + [anon_sym_SLASH_SLASH2] = ACTIONS(1689), + [anon_sym_PLUS2] = ACTIONS(1689), + [anon_sym_bit_DASHshl2] = ACTIONS(1689), + [anon_sym_bit_DASHshr2] = ACTIONS(1689), + [anon_sym_bit_DASHand2] = ACTIONS(1689), + [anon_sym_bit_DASHxor2] = ACTIONS(1689), + [anon_sym_bit_DASHor2] = ACTIONS(1689), + [anon_sym_DOT_DOT2] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1691), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1691), + [sym_filesize_unit] = ACTIONS(1689), + [sym_duration_unit] = ACTIONS(1691), + [anon_sym_err_GT] = ACTIONS(1689), + [anon_sym_out_GT] = ACTIONS(1689), + [anon_sym_e_GT] = ACTIONS(1689), + [anon_sym_o_GT] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT] = ACTIONS(1689), + [anon_sym_err_GT_GT] = ACTIONS(1689), + [anon_sym_out_GT_GT] = ACTIONS(1689), + [anon_sym_e_GT_GT] = ACTIONS(1689), + [anon_sym_o_GT_GT] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1689), + [anon_sym_POUND] = ACTIONS(3), }, [790] = { [sym_comment] = STATE(790), - [ts_builtin_sym_end] = ACTIONS(1682), - [anon_sym_STAR_STAR] = ACTIONS(1682), - [anon_sym_PLUS_PLUS] = ACTIONS(1682), - [anon_sym_STAR] = ACTIONS(1680), - [anon_sym_SLASH] = ACTIONS(1680), - [anon_sym_mod] = ACTIONS(1682), - [anon_sym_SLASH_SLASH] = ACTIONS(1682), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_DASH] = ACTIONS(1682), - [anon_sym_bit_DASHshl] = ACTIONS(1682), - [anon_sym_bit_DASHshr] = ACTIONS(1682), - [anon_sym_EQ_TILDE] = ACTIONS(1682), - [anon_sym_BANG_TILDE] = ACTIONS(1682), - [anon_sym_bit_DASHand] = ACTIONS(1682), - [anon_sym_bit_DASHxor] = ACTIONS(1682), - [anon_sym_bit_DASHor] = ACTIONS(1682), - [anon_sym_and] = ACTIONS(1682), - [anon_sym_xor] = ACTIONS(1682), - [anon_sym_or] = ACTIONS(1682), - [anon_sym_in] = ACTIONS(1682), - [anon_sym_not_DASHin] = ACTIONS(1682), - [anon_sym_starts_DASHwith] = ACTIONS(1682), - [anon_sym_ends_DASHwith] = ACTIONS(1682), - [anon_sym_EQ_EQ] = ACTIONS(1682), - [anon_sym_BANG_EQ] = ACTIONS(1682), - [anon_sym_LT] = ACTIONS(1680), - [anon_sym_LT_EQ] = ACTIONS(1682), - [anon_sym_GT] = ACTIONS(1680), - [anon_sym_GT_EQ] = ACTIONS(1682), - [aux_sym_cmd_identifier_token41] = ACTIONS(1680), - [sym__newline] = ACTIONS(1680), - [anon_sym_SEMI] = ACTIONS(1680), - [anon_sym_PIPE] = ACTIONS(1680), - [anon_sym_err_GT_PIPE] = ACTIONS(1680), - [anon_sym_out_GT_PIPE] = ACTIONS(1680), - [anon_sym_e_GT_PIPE] = ACTIONS(1680), - [anon_sym_o_GT_PIPE] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1680), - [anon_sym_GT2] = ACTIONS(1680), - [anon_sym_DASH2] = ACTIONS(1680), - [anon_sym_in2] = ACTIONS(1680), - [anon_sym_STAR2] = ACTIONS(1680), - [anon_sym_and2] = ACTIONS(1680), - [anon_sym_xor2] = ACTIONS(1680), - [anon_sym_or2] = ACTIONS(1680), - [anon_sym_not_DASHin2] = ACTIONS(1680), - [anon_sym_starts_DASHwith2] = ACTIONS(1680), - [anon_sym_ends_DASHwith2] = ACTIONS(1680), - [anon_sym_EQ_EQ2] = ACTIONS(1680), - [anon_sym_BANG_EQ2] = ACTIONS(1680), - [anon_sym_LT2] = ACTIONS(1680), - [anon_sym_LT_EQ2] = ACTIONS(1680), - [anon_sym_GT_EQ2] = ACTIONS(1680), - [anon_sym_EQ_TILDE2] = ACTIONS(1680), - [anon_sym_BANG_TILDE2] = ACTIONS(1680), - [anon_sym_STAR_STAR2] = ACTIONS(1680), - [anon_sym_PLUS_PLUS2] = ACTIONS(1680), - [anon_sym_SLASH2] = ACTIONS(1680), - [anon_sym_mod2] = ACTIONS(1680), - [anon_sym_SLASH_SLASH2] = ACTIONS(1680), - [anon_sym_PLUS2] = ACTIONS(1680), - [anon_sym_bit_DASHshl2] = ACTIONS(1680), - [anon_sym_bit_DASHshr2] = ACTIONS(1680), - [anon_sym_bit_DASHand2] = ACTIONS(1680), - [anon_sym_bit_DASHxor2] = ACTIONS(1680), - [anon_sym_bit_DASHor2] = ACTIONS(1680), - [anon_sym_DOT_DOT2] = ACTIONS(1680), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1682), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1682), - [aux_sym__immediate_decimal_token2] = ACTIONS(3024), - [sym_filesize_unit] = ACTIONS(1680), - [sym_duration_unit] = ACTIONS(1682), - [anon_sym_err_GT] = ACTIONS(1680), - [anon_sym_out_GT] = ACTIONS(1680), - [anon_sym_e_GT] = ACTIONS(1680), - [anon_sym_o_GT] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT] = ACTIONS(1680), - [anon_sym_err_GT_GT] = ACTIONS(1680), - [anon_sym_out_GT_GT] = ACTIONS(1680), - [anon_sym_e_GT_GT] = ACTIONS(1680), - [anon_sym_o_GT_GT] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1680), + [ts_builtin_sym_end] = ACTIONS(1691), + [anon_sym_STAR_STAR] = ACTIONS(1691), + [anon_sym_PLUS_PLUS] = ACTIONS(1691), + [anon_sym_STAR] = ACTIONS(1689), + [anon_sym_SLASH] = ACTIONS(1689), + [anon_sym_mod] = ACTIONS(1691), + [anon_sym_SLASH_SLASH] = ACTIONS(1691), + [anon_sym_PLUS] = ACTIONS(1689), + [anon_sym_DASH] = ACTIONS(1691), + [anon_sym_bit_DASHshl] = ACTIONS(1691), + [anon_sym_bit_DASHshr] = ACTIONS(1691), + [anon_sym_EQ_TILDE] = ACTIONS(1691), + [anon_sym_BANG_TILDE] = ACTIONS(1691), + [anon_sym_bit_DASHand] = ACTIONS(1691), + [anon_sym_bit_DASHxor] = ACTIONS(1691), + [anon_sym_bit_DASHor] = ACTIONS(1691), + [anon_sym_and] = ACTIONS(1691), + [anon_sym_xor] = ACTIONS(1691), + [anon_sym_or] = ACTIONS(1691), + [anon_sym_in] = ACTIONS(1691), + [anon_sym_not_DASHin] = ACTIONS(1691), + [anon_sym_has] = ACTIONS(1691), + [anon_sym_not_DASHhas] = ACTIONS(1691), + [anon_sym_starts_DASHwith] = ACTIONS(1691), + [anon_sym_ends_DASHwith] = ACTIONS(1691), + [anon_sym_EQ_EQ] = ACTIONS(1691), + [anon_sym_BANG_EQ] = ACTIONS(1691), + [anon_sym_LT] = ACTIONS(1689), + [anon_sym_LT_EQ] = ACTIONS(1691), + [anon_sym_GT] = ACTIONS(1689), + [anon_sym_GT_EQ] = ACTIONS(1691), + [aux_sym_cmd_identifier_token41] = ACTIONS(1689), + [sym__newline] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1689), + [anon_sym_PIPE] = ACTIONS(1689), + [anon_sym_err_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_GT_PIPE] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1689), + [anon_sym_GT2] = ACTIONS(1689), + [anon_sym_DASH2] = ACTIONS(1689), + [anon_sym_in2] = ACTIONS(1689), + [anon_sym_STAR2] = ACTIONS(1689), + [anon_sym_and2] = ACTIONS(1689), + [anon_sym_xor2] = ACTIONS(1689), + [anon_sym_or2] = ACTIONS(1689), + [anon_sym_not_DASHin2] = ACTIONS(1689), + [anon_sym_has2] = ACTIONS(1689), + [anon_sym_not_DASHhas2] = ACTIONS(1689), + [anon_sym_starts_DASHwith2] = ACTIONS(1689), + [anon_sym_ends_DASHwith2] = ACTIONS(1689), + [anon_sym_EQ_EQ2] = ACTIONS(1689), + [anon_sym_BANG_EQ2] = ACTIONS(1689), + [anon_sym_LT2] = ACTIONS(1689), + [anon_sym_LT_EQ2] = ACTIONS(1689), + [anon_sym_GT_EQ2] = ACTIONS(1689), + [anon_sym_EQ_TILDE2] = ACTIONS(1689), + [anon_sym_BANG_TILDE2] = ACTIONS(1689), + [anon_sym_STAR_STAR2] = ACTIONS(1689), + [anon_sym_PLUS_PLUS2] = ACTIONS(1689), + [anon_sym_SLASH2] = ACTIONS(1689), + [anon_sym_mod2] = ACTIONS(1689), + [anon_sym_SLASH_SLASH2] = ACTIONS(1689), + [anon_sym_PLUS2] = ACTIONS(1689), + [anon_sym_bit_DASHshl2] = ACTIONS(1689), + [anon_sym_bit_DASHshr2] = ACTIONS(1689), + [anon_sym_bit_DASHand2] = ACTIONS(1689), + [anon_sym_bit_DASHxor2] = ACTIONS(1689), + [anon_sym_bit_DASHor2] = ACTIONS(1689), + [anon_sym_DOT_DOT2] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1691), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1691), + [sym_filesize_unit] = ACTIONS(1689), + [sym_duration_unit] = ACTIONS(1691), + [anon_sym_err_GT] = ACTIONS(1689), + [anon_sym_out_GT] = ACTIONS(1689), + [anon_sym_e_GT] = ACTIONS(1689), + [anon_sym_o_GT] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT] = ACTIONS(1689), + [anon_sym_err_GT_GT] = ACTIONS(1689), + [anon_sym_out_GT_GT] = ACTIONS(1689), + [anon_sym_e_GT_GT] = ACTIONS(1689), + [anon_sym_o_GT_GT] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1689), [anon_sym_POUND] = ACTIONS(3), }, [791] = { [sym_comment] = STATE(791), - [anon_sym_STAR_STAR] = ACTIONS(1745), - [anon_sym_PLUS_PLUS] = ACTIONS(1745), - [anon_sym_STAR] = ACTIONS(1743), - [anon_sym_SLASH] = ACTIONS(1743), - [anon_sym_mod] = ACTIONS(1745), - [anon_sym_SLASH_SLASH] = ACTIONS(1745), - [anon_sym_PLUS] = ACTIONS(1743), - [anon_sym_DASH] = ACTIONS(1745), - [anon_sym_bit_DASHshl] = ACTIONS(1745), - [anon_sym_bit_DASHshr] = ACTIONS(1745), - [anon_sym_EQ_TILDE] = ACTIONS(1745), - [anon_sym_BANG_TILDE] = ACTIONS(1745), - [anon_sym_bit_DASHand] = ACTIONS(1745), - [anon_sym_bit_DASHxor] = ACTIONS(1745), - [anon_sym_bit_DASHor] = ACTIONS(1745), - [anon_sym_and] = ACTIONS(1745), - [anon_sym_xor] = ACTIONS(1745), - [anon_sym_or] = ACTIONS(1745), - [anon_sym_in] = ACTIONS(1745), - [anon_sym_not_DASHin] = ACTIONS(1745), - [anon_sym_starts_DASHwith] = ACTIONS(1745), - [anon_sym_ends_DASHwith] = ACTIONS(1745), - [anon_sym_EQ_EQ] = ACTIONS(1745), - [anon_sym_BANG_EQ] = ACTIONS(1745), - [anon_sym_LT] = ACTIONS(1743), - [anon_sym_LT_EQ] = ACTIONS(1745), - [anon_sym_GT] = ACTIONS(1743), - [anon_sym_GT_EQ] = ACTIONS(1745), - [aux_sym_cmd_identifier_token41] = ACTIONS(1743), - [sym__newline] = ACTIONS(1743), - [anon_sym_SEMI] = ACTIONS(1743), - [anon_sym_PIPE] = ACTIONS(1743), - [anon_sym_err_GT_PIPE] = ACTIONS(1743), - [anon_sym_out_GT_PIPE] = ACTIONS(1743), - [anon_sym_e_GT_PIPE] = ACTIONS(1743), - [anon_sym_o_GT_PIPE] = ACTIONS(1743), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1743), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1743), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1743), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1743), - [anon_sym_GT2] = ACTIONS(1743), - [anon_sym_DASH2] = ACTIONS(1743), - [anon_sym_in2] = ACTIONS(1743), - [anon_sym_RBRACE] = ACTIONS(1743), - [anon_sym_STAR2] = ACTIONS(1743), - [anon_sym_and2] = ACTIONS(1743), - [anon_sym_xor2] = ACTIONS(1743), - [anon_sym_or2] = ACTIONS(1743), - [anon_sym_not_DASHin2] = ACTIONS(1743), - [anon_sym_starts_DASHwith2] = ACTIONS(1743), - [anon_sym_ends_DASHwith2] = ACTIONS(1743), - [anon_sym_EQ_EQ2] = ACTIONS(1743), - [anon_sym_BANG_EQ2] = ACTIONS(1743), - [anon_sym_LT2] = ACTIONS(1743), - [anon_sym_LT_EQ2] = ACTIONS(1743), - [anon_sym_GT_EQ2] = ACTIONS(1743), - [anon_sym_EQ_TILDE2] = ACTIONS(1743), - [anon_sym_BANG_TILDE2] = ACTIONS(1743), - [anon_sym_STAR_STAR2] = ACTIONS(1743), - [anon_sym_PLUS_PLUS2] = ACTIONS(1743), - [anon_sym_SLASH2] = ACTIONS(1743), - [anon_sym_mod2] = ACTIONS(1743), - [anon_sym_SLASH_SLASH2] = ACTIONS(1743), - [anon_sym_PLUS2] = ACTIONS(1743), - [anon_sym_bit_DASHshl2] = ACTIONS(1743), - [anon_sym_bit_DASHshr2] = ACTIONS(1743), - [anon_sym_bit_DASHand2] = ACTIONS(1743), - [anon_sym_bit_DASHxor2] = ACTIONS(1743), - [anon_sym_bit_DASHor2] = ACTIONS(1743), - [anon_sym_DOT_DOT2] = ACTIONS(1743), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1745), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1745), - [sym_filesize_unit] = ACTIONS(1743), - [sym_duration_unit] = ACTIONS(1745), - [anon_sym_COLON2] = ACTIONS(1743), - [anon_sym_err_GT] = ACTIONS(1743), - [anon_sym_out_GT] = ACTIONS(1743), - [anon_sym_e_GT] = ACTIONS(1743), - [anon_sym_o_GT] = ACTIONS(1743), - [anon_sym_err_PLUSout_GT] = ACTIONS(1743), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1743), - [anon_sym_o_PLUSe_GT] = ACTIONS(1743), - [anon_sym_e_PLUSo_GT] = ACTIONS(1743), - [anon_sym_err_GT_GT] = ACTIONS(1743), - [anon_sym_out_GT_GT] = ACTIONS(1743), - [anon_sym_e_GT_GT] = ACTIONS(1743), - [anon_sym_o_GT_GT] = ACTIONS(1743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1743), + [anon_sym_STAR_STAR] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_SLASH] = ACTIONS(1512), + [anon_sym_mod] = ACTIONS(1514), + [anon_sym_SLASH_SLASH] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_bit_DASHshl] = ACTIONS(1514), + [anon_sym_bit_DASHshr] = ACTIONS(1514), + [anon_sym_EQ_TILDE] = ACTIONS(1514), + [anon_sym_BANG_TILDE] = ACTIONS(1514), + [anon_sym_bit_DASHand] = ACTIONS(1514), + [anon_sym_bit_DASHxor] = ACTIONS(1514), + [anon_sym_bit_DASHor] = ACTIONS(1514), + [anon_sym_and] = ACTIONS(1514), + [anon_sym_xor] = ACTIONS(1514), + [anon_sym_or] = ACTIONS(1514), + [anon_sym_in] = ACTIONS(1514), + [anon_sym_not_DASHin] = ACTIONS(1514), + [anon_sym_has] = ACTIONS(1514), + [anon_sym_not_DASHhas] = ACTIONS(1514), + [anon_sym_starts_DASHwith] = ACTIONS(1514), + [anon_sym_ends_DASHwith] = ACTIONS(1514), + [anon_sym_EQ_EQ] = ACTIONS(1514), + [anon_sym_BANG_EQ] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_LT_EQ] = ACTIONS(1514), + [anon_sym_GT] = ACTIONS(1512), + [anon_sym_GT_EQ] = ACTIONS(1514), + [aux_sym_cmd_identifier_token41] = ACTIONS(1512), + [sym__newline] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_err_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_GT_PIPE] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1512), + [anon_sym_GT2] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_in2] = ACTIONS(1512), + [anon_sym_RBRACE] = ACTIONS(1512), + [anon_sym_STAR2] = ACTIONS(1512), + [anon_sym_and2] = ACTIONS(1512), + [anon_sym_xor2] = ACTIONS(1512), + [anon_sym_or2] = ACTIONS(1512), + [anon_sym_not_DASHin2] = ACTIONS(1512), + [anon_sym_has2] = ACTIONS(1512), + [anon_sym_not_DASHhas2] = ACTIONS(1512), + [anon_sym_starts_DASHwith2] = ACTIONS(1512), + [anon_sym_ends_DASHwith2] = ACTIONS(1512), + [anon_sym_EQ_EQ2] = ACTIONS(1512), + [anon_sym_BANG_EQ2] = ACTIONS(1512), + [anon_sym_LT2] = ACTIONS(1512), + [anon_sym_LT_EQ2] = ACTIONS(1512), + [anon_sym_GT_EQ2] = ACTIONS(1512), + [anon_sym_EQ_TILDE2] = ACTIONS(1512), + [anon_sym_BANG_TILDE2] = ACTIONS(1512), + [anon_sym_STAR_STAR2] = ACTIONS(1512), + [anon_sym_PLUS_PLUS2] = ACTIONS(1512), + [anon_sym_SLASH2] = ACTIONS(1512), + [anon_sym_mod2] = ACTIONS(1512), + [anon_sym_SLASH_SLASH2] = ACTIONS(1512), + [anon_sym_PLUS2] = ACTIONS(1512), + [anon_sym_bit_DASHshl2] = ACTIONS(1512), + [anon_sym_bit_DASHshr2] = ACTIONS(1512), + [anon_sym_bit_DASHand2] = ACTIONS(1512), + [anon_sym_bit_DASHxor2] = ACTIONS(1512), + [anon_sym_bit_DASHor2] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [sym_filesize_unit] = ACTIONS(1512), + [sym_duration_unit] = ACTIONS(1514), + [anon_sym_err_GT] = ACTIONS(1512), + [anon_sym_out_GT] = ACTIONS(1512), + [anon_sym_e_GT] = ACTIONS(1512), + [anon_sym_o_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT] = ACTIONS(1512), + [anon_sym_err_GT_GT] = ACTIONS(1512), + [anon_sym_out_GT_GT] = ACTIONS(1512), + [anon_sym_e_GT_GT] = ACTIONS(1512), + [anon_sym_o_GT_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1512), [anon_sym_POUND] = ACTIONS(3), }, [792] = { [sym_comment] = STATE(792), - [anon_sym_STAR_STAR] = ACTIONS(1682), - [anon_sym_PLUS_PLUS] = ACTIONS(1682), - [anon_sym_STAR] = ACTIONS(1680), - [anon_sym_SLASH] = ACTIONS(1680), - [anon_sym_mod] = ACTIONS(1682), - [anon_sym_SLASH_SLASH] = ACTIONS(1682), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_DASH] = ACTIONS(1682), - [anon_sym_bit_DASHshl] = ACTIONS(1682), - [anon_sym_bit_DASHshr] = ACTIONS(1682), - [anon_sym_EQ_TILDE] = ACTIONS(1682), - [anon_sym_BANG_TILDE] = ACTIONS(1682), - [anon_sym_bit_DASHand] = ACTIONS(1682), - [anon_sym_bit_DASHxor] = ACTIONS(1682), - [anon_sym_bit_DASHor] = ACTIONS(1682), - [anon_sym_and] = ACTIONS(1682), - [anon_sym_xor] = ACTIONS(1682), - [anon_sym_or] = ACTIONS(1682), - [anon_sym_in] = ACTIONS(1682), - [anon_sym_not_DASHin] = ACTIONS(1682), - [anon_sym_starts_DASHwith] = ACTIONS(1682), - [anon_sym_ends_DASHwith] = ACTIONS(1682), - [anon_sym_EQ_EQ] = ACTIONS(1682), - [anon_sym_BANG_EQ] = ACTIONS(1682), - [anon_sym_LT] = ACTIONS(1680), - [anon_sym_LT_EQ] = ACTIONS(1682), - [anon_sym_GT] = ACTIONS(1680), - [anon_sym_GT_EQ] = ACTIONS(1682), - [aux_sym_cmd_identifier_token41] = ACTIONS(1680), - [sym__newline] = ACTIONS(1680), - [anon_sym_SEMI] = ACTIONS(1680), - [anon_sym_PIPE] = ACTIONS(1680), - [anon_sym_err_GT_PIPE] = ACTIONS(1680), - [anon_sym_out_GT_PIPE] = ACTIONS(1680), - [anon_sym_e_GT_PIPE] = ACTIONS(1680), - [anon_sym_o_GT_PIPE] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1680), - [anon_sym_GT2] = ACTIONS(1680), - [anon_sym_DASH2] = ACTIONS(1680), - [anon_sym_in2] = ACTIONS(1680), - [anon_sym_RBRACE] = ACTIONS(1680), - [anon_sym_STAR2] = ACTIONS(1680), - [anon_sym_and2] = ACTIONS(1680), - [anon_sym_xor2] = ACTIONS(1680), - [anon_sym_or2] = ACTIONS(1680), - [anon_sym_not_DASHin2] = ACTIONS(1680), - [anon_sym_starts_DASHwith2] = ACTIONS(1680), - [anon_sym_ends_DASHwith2] = ACTIONS(1680), - [anon_sym_EQ_EQ2] = ACTIONS(1680), - [anon_sym_BANG_EQ2] = ACTIONS(1680), - [anon_sym_LT2] = ACTIONS(1680), - [anon_sym_LT_EQ2] = ACTIONS(1680), - [anon_sym_GT_EQ2] = ACTIONS(1680), - [anon_sym_EQ_TILDE2] = ACTIONS(1680), - [anon_sym_BANG_TILDE2] = ACTIONS(1680), - [anon_sym_STAR_STAR2] = ACTIONS(1680), - [anon_sym_PLUS_PLUS2] = ACTIONS(1680), - [anon_sym_SLASH2] = ACTIONS(1680), - [anon_sym_mod2] = ACTIONS(1680), - [anon_sym_SLASH_SLASH2] = ACTIONS(1680), - [anon_sym_PLUS2] = ACTIONS(1680), - [anon_sym_bit_DASHshl2] = ACTIONS(1680), - [anon_sym_bit_DASHshr2] = ACTIONS(1680), - [anon_sym_bit_DASHand2] = ACTIONS(1680), - [anon_sym_bit_DASHxor2] = ACTIONS(1680), - [anon_sym_bit_DASHor2] = ACTIONS(1680), - [anon_sym_DOT_DOT2] = ACTIONS(1680), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1682), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1682), - [aux_sym__immediate_decimal_token2] = ACTIONS(3026), - [sym_filesize_unit] = ACTIONS(1680), - [sym_duration_unit] = ACTIONS(1682), - [anon_sym_err_GT] = ACTIONS(1680), - [anon_sym_out_GT] = ACTIONS(1680), - [anon_sym_e_GT] = ACTIONS(1680), - [anon_sym_o_GT] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT] = ACTIONS(1680), - [anon_sym_err_GT_GT] = ACTIONS(1680), - [anon_sym_out_GT_GT] = ACTIONS(1680), - [anon_sym_e_GT_GT] = ACTIONS(1680), - [anon_sym_o_GT_GT] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1680), + [anon_sym_STAR_STAR] = ACTIONS(2592), + [anon_sym_PLUS_PLUS] = ACTIONS(2592), + [anon_sym_STAR] = ACTIONS(2594), + [anon_sym_SLASH] = ACTIONS(2594), + [anon_sym_mod] = ACTIONS(2592), + [anon_sym_SLASH_SLASH] = ACTIONS(2592), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2592), + [anon_sym_bit_DASHshl] = ACTIONS(2592), + [anon_sym_bit_DASHshr] = ACTIONS(2592), + [anon_sym_EQ_TILDE] = ACTIONS(2592), + [anon_sym_BANG_TILDE] = ACTIONS(2592), + [anon_sym_bit_DASHand] = ACTIONS(2592), + [anon_sym_bit_DASHxor] = ACTIONS(2592), + [anon_sym_bit_DASHor] = ACTIONS(2592), + [anon_sym_and] = ACTIONS(2592), + [anon_sym_xor] = ACTIONS(2592), + [anon_sym_or] = ACTIONS(2592), + [anon_sym_in] = ACTIONS(2592), + [anon_sym_not_DASHin] = ACTIONS(2592), + [anon_sym_has] = ACTIONS(2592), + [anon_sym_not_DASHhas] = ACTIONS(2592), + [anon_sym_starts_DASHwith] = ACTIONS(2592), + [anon_sym_ends_DASHwith] = ACTIONS(2592), + [anon_sym_EQ_EQ] = ACTIONS(2592), + [anon_sym_BANG_EQ] = ACTIONS(2592), + [anon_sym_LT] = ACTIONS(2594), + [anon_sym_LT_EQ] = ACTIONS(2592), + [anon_sym_GT] = ACTIONS(2594), + [anon_sym_GT_EQ] = ACTIONS(2592), + [aux_sym_cmd_identifier_token41] = ACTIONS(2596), + [sym__newline] = ACTIONS(1639), + [anon_sym_SEMI] = ACTIONS(1639), + [anon_sym_PIPE] = ACTIONS(1639), + [anon_sym_err_GT_PIPE] = ACTIONS(1639), + [anon_sym_out_GT_PIPE] = ACTIONS(1639), + [anon_sym_e_GT_PIPE] = ACTIONS(1639), + [anon_sym_o_GT_PIPE] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1639), + [anon_sym_GT2] = ACTIONS(1639), + [anon_sym_DASH2] = ACTIONS(1639), + [anon_sym_in2] = ACTIONS(1639), + [anon_sym_RBRACE] = ACTIONS(1639), + [anon_sym_STAR2] = ACTIONS(1639), + [anon_sym_and2] = ACTIONS(1639), + [anon_sym_xor2] = ACTIONS(1639), + [anon_sym_or2] = ACTIONS(1639), + [anon_sym_not_DASHin2] = ACTIONS(1639), + [anon_sym_has2] = ACTIONS(1639), + [anon_sym_not_DASHhas2] = ACTIONS(1639), + [anon_sym_starts_DASHwith2] = ACTIONS(1639), + [anon_sym_ends_DASHwith2] = ACTIONS(1639), + [anon_sym_EQ_EQ2] = ACTIONS(1639), + [anon_sym_BANG_EQ2] = ACTIONS(1639), + [anon_sym_LT2] = ACTIONS(1639), + [anon_sym_LT_EQ2] = ACTIONS(1639), + [anon_sym_GT_EQ2] = ACTIONS(1639), + [anon_sym_EQ_TILDE2] = ACTIONS(1639), + [anon_sym_BANG_TILDE2] = ACTIONS(1639), + [anon_sym_STAR_STAR2] = ACTIONS(1639), + [anon_sym_PLUS_PLUS2] = ACTIONS(1639), + [anon_sym_SLASH2] = ACTIONS(1639), + [anon_sym_mod2] = ACTIONS(1639), + [anon_sym_SLASH_SLASH2] = ACTIONS(1639), + [anon_sym_PLUS2] = ACTIONS(1639), + [anon_sym_bit_DASHshl2] = ACTIONS(1639), + [anon_sym_bit_DASHshr2] = ACTIONS(1639), + [anon_sym_bit_DASHand2] = ACTIONS(1639), + [anon_sym_bit_DASHxor2] = ACTIONS(1639), + [anon_sym_bit_DASHor2] = ACTIONS(1639), + [anon_sym_DOT_DOT2] = ACTIONS(2584), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2586), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2586), + [sym_filesize_unit] = ACTIONS(2620), + [sym_duration_unit] = ACTIONS(2622), + [anon_sym_err_GT] = ACTIONS(1639), + [anon_sym_out_GT] = ACTIONS(1639), + [anon_sym_e_GT] = ACTIONS(1639), + [anon_sym_o_GT] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT] = ACTIONS(1639), + [anon_sym_err_GT_GT] = ACTIONS(1639), + [anon_sym_out_GT_GT] = ACTIONS(1639), + [anon_sym_e_GT_GT] = ACTIONS(1639), + [anon_sym_o_GT_GT] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1639), [anon_sym_POUND] = ACTIONS(3), }, [793] = { + [sym__match_pattern_expression] = STATE(3186), + [sym__match_pattern_value] = STATE(3171), + [sym__match_pattern_list] = STATE(3187), + [sym__match_pattern_rest] = STATE(7661), + [sym__match_pattern_record] = STATE(3188), + [sym_expr_parenthesized] = STATE(2868), + [sym__spread_parenthesized] = STATE(7300), + [sym_val_range] = STATE(3102), + [sym__val_range] = STATE(7814), + [sym__val_range_with_end] = STATE(7289), + [sym__value] = STATE(7368), + [sym_val_nothing] = STATE(3110), + [sym_val_bool] = STATE(2930), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(2875), + [sym_val_number] = STATE(3110), + [sym__val_number_decimal] = STATE(2560), + [sym__val_number] = STATE(3114), + [sym_val_duration] = STATE(3110), + [sym_val_filesize] = STATE(3110), + [sym_val_binary] = STATE(3110), + [sym_val_string] = STATE(3110), + [sym__raw_str] = STATE(3119), + [sym__str_double_quotes] = STATE(3119), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(7213), + [sym__spread_list] = STATE(7300), + [sym_list_body] = STATE(7625), + [sym_val_entry] = STATE(7116), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(3110), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_list] = STATE(2952), + [sym__unquoted_in_list_with_expr] = STATE(7368), + [sym__unquoted_anonymous_prefix] = STATE(6951), [sym_comment] = STATE(793), - [anon_sym_STAR_STAR] = ACTIONS(1552), - [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1550), - [anon_sym_SLASH] = ACTIONS(1550), - [anon_sym_mod] = ACTIONS(1552), - [anon_sym_SLASH_SLASH] = ACTIONS(1552), - [anon_sym_PLUS] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1552), - [anon_sym_bit_DASHshl] = ACTIONS(1552), - [anon_sym_bit_DASHshr] = ACTIONS(1552), - [anon_sym_EQ_TILDE] = ACTIONS(1552), - [anon_sym_BANG_TILDE] = ACTIONS(1552), - [anon_sym_bit_DASHand] = ACTIONS(1552), - [anon_sym_bit_DASHxor] = ACTIONS(1552), - [anon_sym_bit_DASHor] = ACTIONS(1552), - [anon_sym_and] = ACTIONS(1552), - [anon_sym_xor] = ACTIONS(1552), - [anon_sym_or] = ACTIONS(1552), - [anon_sym_in] = ACTIONS(1552), - [anon_sym_not_DASHin] = ACTIONS(1552), - [anon_sym_starts_DASHwith] = ACTIONS(1552), - [anon_sym_ends_DASHwith] = ACTIONS(1552), - [anon_sym_EQ_EQ] = ACTIONS(1552), - [anon_sym_BANG_EQ] = ACTIONS(1552), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_LT_EQ] = ACTIONS(1552), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_GT_EQ] = ACTIONS(1552), - [aux_sym_cmd_identifier_token41] = ACTIONS(1550), - [sym__newline] = ACTIONS(1550), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_err_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_GT_PIPE] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1550), - [anon_sym_GT2] = ACTIONS(1550), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_in2] = ACTIONS(1550), - [anon_sym_RBRACE] = ACTIONS(1550), - [anon_sym_STAR2] = ACTIONS(1550), - [anon_sym_and2] = ACTIONS(1550), - [anon_sym_xor2] = ACTIONS(1550), - [anon_sym_or2] = ACTIONS(1550), - [anon_sym_not_DASHin2] = ACTIONS(1550), - [anon_sym_starts_DASHwith2] = ACTIONS(1550), - [anon_sym_ends_DASHwith2] = ACTIONS(1550), - [anon_sym_EQ_EQ2] = ACTIONS(1550), - [anon_sym_BANG_EQ2] = ACTIONS(1550), - [anon_sym_LT2] = ACTIONS(1550), - [anon_sym_LT_EQ2] = ACTIONS(1550), - [anon_sym_GT_EQ2] = ACTIONS(1550), - [anon_sym_EQ_TILDE2] = ACTIONS(1550), - [anon_sym_BANG_TILDE2] = ACTIONS(1550), - [anon_sym_STAR_STAR2] = ACTIONS(1550), - [anon_sym_PLUS_PLUS2] = ACTIONS(1550), - [anon_sym_SLASH2] = ACTIONS(1550), - [anon_sym_mod2] = ACTIONS(1550), - [anon_sym_SLASH_SLASH2] = ACTIONS(1550), - [anon_sym_PLUS2] = ACTIONS(1550), - [anon_sym_bit_DASHshl2] = ACTIONS(1550), - [anon_sym_bit_DASHshr2] = ACTIONS(1550), - [anon_sym_bit_DASHand2] = ACTIONS(1550), - [anon_sym_bit_DASHxor2] = ACTIONS(1550), - [anon_sym_bit_DASHor2] = ACTIONS(1550), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [aux_sym__immediate_decimal_token2] = ACTIONS(2925), - [sym_filesize_unit] = ACTIONS(1550), - [sym_duration_unit] = ACTIONS(1552), - [anon_sym_err_GT] = ACTIONS(1550), - [anon_sym_out_GT] = ACTIONS(1550), - [anon_sym_e_GT] = ACTIONS(1550), - [anon_sym_o_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT] = ACTIONS(1550), - [anon_sym_err_GT_GT] = ACTIONS(1550), - [anon_sym_out_GT_GT] = ACTIONS(1550), - [anon_sym_e_GT_GT] = ACTIONS(1550), - [anon_sym_o_GT_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1550), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(886), + [aux_sym_parameter_repeat2] = STATE(6641), + [aux_sym__match_pattern_list_repeat1] = STATE(1273), + [aux_sym_list_body_repeat1] = STATE(973), + [sym__newline] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(2626), + [anon_sym_RBRACK] = ACTIONS(2628), + [anon_sym_LPAREN] = ACTIONS(2630), + [anon_sym_COMMA] = ACTIONS(2632), + [anon_sym_DOLLAR] = ACTIONS(2634), + [anon_sym_LBRACE] = ACTIONS(2636), + [anon_sym_DOT_DOT] = ACTIONS(2638), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2640), + [anon_sym_DOT_DOT_LT] = ACTIONS(2640), + [anon_sym_null] = ACTIONS(2642), + [anon_sym_true] = ACTIONS(2644), + [anon_sym_false] = ACTIONS(2644), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2646), + [aux_sym__val_number_decimal_token2] = ACTIONS(2648), + [aux_sym__val_number_decimal_token3] = ACTIONS(2650), + [aux_sym__val_number_decimal_token4] = ACTIONS(2652), + [aux_sym__val_number_token1] = ACTIONS(2654), + [aux_sym__val_number_token2] = ACTIONS(2654), + [aux_sym__val_number_token3] = ACTIONS(2654), + [aux_sym__val_number_token4] = ACTIONS(2656), + [aux_sym__val_number_token5] = ACTIONS(2656), + [aux_sym__val_number_token6] = ACTIONS(2656), + [anon_sym_0b] = ACTIONS(2658), + [anon_sym_0o] = ACTIONS(2660), + [anon_sym_0x] = ACTIONS(2660), + [sym_val_date] = ACTIONS(2662), + [anon_sym_DQUOTE] = ACTIONS(2664), + [sym__str_single_quotes] = ACTIONS(2666), + [sym__str_back_ticks] = ACTIONS(2666), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2672), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2678), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2680), }, [794] = { [sym_comment] = STATE(794), - [anon_sym_STAR_STAR] = ACTIONS(1552), - [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1550), - [anon_sym_SLASH] = ACTIONS(1550), - [anon_sym_mod] = ACTIONS(1552), - [anon_sym_SLASH_SLASH] = ACTIONS(1552), - [anon_sym_PLUS] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1552), - [anon_sym_bit_DASHshl] = ACTIONS(1552), - [anon_sym_bit_DASHshr] = ACTIONS(1552), - [anon_sym_EQ_TILDE] = ACTIONS(1552), - [anon_sym_BANG_TILDE] = ACTIONS(1552), - [anon_sym_bit_DASHand] = ACTIONS(1552), - [anon_sym_bit_DASHxor] = ACTIONS(1552), - [anon_sym_bit_DASHor] = ACTIONS(1552), - [anon_sym_and] = ACTIONS(1552), - [anon_sym_xor] = ACTIONS(1552), - [anon_sym_or] = ACTIONS(1552), - [anon_sym_in] = ACTIONS(1552), - [anon_sym_not_DASHin] = ACTIONS(1552), - [anon_sym_starts_DASHwith] = ACTIONS(1552), - [anon_sym_ends_DASHwith] = ACTIONS(1552), - [anon_sym_EQ_EQ] = ACTIONS(1552), - [anon_sym_BANG_EQ] = ACTIONS(1552), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_LT_EQ] = ACTIONS(1552), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_GT_EQ] = ACTIONS(1552), - [aux_sym_cmd_identifier_token41] = ACTIONS(1550), - [sym__newline] = ACTIONS(1550), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_err_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_GT_PIPE] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1550), - [anon_sym_GT2] = ACTIONS(1550), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_in2] = ACTIONS(1550), - [anon_sym_RBRACE] = ACTIONS(1550), - [anon_sym_STAR2] = ACTIONS(1550), - [anon_sym_and2] = ACTIONS(1550), - [anon_sym_xor2] = ACTIONS(1550), - [anon_sym_or2] = ACTIONS(1550), - [anon_sym_not_DASHin2] = ACTIONS(1550), - [anon_sym_starts_DASHwith2] = ACTIONS(1550), - [anon_sym_ends_DASHwith2] = ACTIONS(1550), - [anon_sym_EQ_EQ2] = ACTIONS(1550), - [anon_sym_BANG_EQ2] = ACTIONS(1550), - [anon_sym_LT2] = ACTIONS(1550), - [anon_sym_LT_EQ2] = ACTIONS(1550), - [anon_sym_GT_EQ2] = ACTIONS(1550), - [anon_sym_EQ_TILDE2] = ACTIONS(1550), - [anon_sym_BANG_TILDE2] = ACTIONS(1550), - [anon_sym_STAR_STAR2] = ACTIONS(1550), - [anon_sym_PLUS_PLUS2] = ACTIONS(1550), - [anon_sym_SLASH2] = ACTIONS(1550), - [anon_sym_mod2] = ACTIONS(1550), - [anon_sym_SLASH_SLASH2] = ACTIONS(1550), - [anon_sym_PLUS2] = ACTIONS(1550), - [anon_sym_bit_DASHshl2] = ACTIONS(1550), - [anon_sym_bit_DASHshr2] = ACTIONS(1550), - [anon_sym_bit_DASHand2] = ACTIONS(1550), - [anon_sym_bit_DASHxor2] = ACTIONS(1550), - [anon_sym_bit_DASHor2] = ACTIONS(1550), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [sym_filesize_unit] = ACTIONS(1550), - [sym_duration_unit] = ACTIONS(1552), - [anon_sym_COLON2] = ACTIONS(1550), - [anon_sym_err_GT] = ACTIONS(1550), - [anon_sym_out_GT] = ACTIONS(1550), - [anon_sym_e_GT] = ACTIONS(1550), - [anon_sym_o_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT] = ACTIONS(1550), - [anon_sym_err_GT_GT] = ACTIONS(1550), - [anon_sym_out_GT_GT] = ACTIONS(1550), - [anon_sym_e_GT_GT] = ACTIONS(1550), - [anon_sym_o_GT_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1550), + [anon_sym_STAR_STAR] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_STAR] = ACTIONS(1504), + [anon_sym_SLASH] = ACTIONS(1504), + [anon_sym_mod] = ACTIONS(1506), + [anon_sym_SLASH_SLASH] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_bit_DASHshl] = ACTIONS(1506), + [anon_sym_bit_DASHshr] = ACTIONS(1506), + [anon_sym_EQ_TILDE] = ACTIONS(1506), + [anon_sym_BANG_TILDE] = ACTIONS(1506), + [anon_sym_bit_DASHand] = ACTIONS(1506), + [anon_sym_bit_DASHxor] = ACTIONS(1506), + [anon_sym_bit_DASHor] = ACTIONS(1506), + [anon_sym_and] = ACTIONS(1506), + [anon_sym_xor] = ACTIONS(1506), + [anon_sym_or] = ACTIONS(1506), + [anon_sym_in] = ACTIONS(1506), + [anon_sym_not_DASHin] = ACTIONS(1506), + [anon_sym_has] = ACTIONS(1506), + [anon_sym_not_DASHhas] = 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_LT] = ACTIONS(1504), + [anon_sym_LT_EQ] = ACTIONS(1506), + [anon_sym_GT] = ACTIONS(1504), + [anon_sym_GT_EQ] = ACTIONS(1506), + [aux_sym_cmd_identifier_token41] = ACTIONS(1504), + [sym__newline] = ACTIONS(1504), + [anon_sym_SEMI] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_err_GT_PIPE] = ACTIONS(1504), + [anon_sym_out_GT_PIPE] = ACTIONS(1504), + [anon_sym_e_GT_PIPE] = ACTIONS(1504), + [anon_sym_o_GT_PIPE] = ACTIONS(1504), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1504), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1504), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1504), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1504), + [anon_sym_GT2] = ACTIONS(1504), + [anon_sym_DASH2] = ACTIONS(1504), + [anon_sym_in2] = ACTIONS(1504), + [anon_sym_RBRACE] = ACTIONS(1504), + [anon_sym_STAR2] = ACTIONS(1504), + [anon_sym_and2] = ACTIONS(1504), + [anon_sym_xor2] = ACTIONS(1504), + [anon_sym_or2] = ACTIONS(1504), + [anon_sym_not_DASHin2] = ACTIONS(1504), + [anon_sym_has2] = ACTIONS(1504), + [anon_sym_not_DASHhas2] = ACTIONS(1504), + [anon_sym_starts_DASHwith2] = ACTIONS(1504), + [anon_sym_ends_DASHwith2] = ACTIONS(1504), + [anon_sym_EQ_EQ2] = ACTIONS(1504), + [anon_sym_BANG_EQ2] = ACTIONS(1504), + [anon_sym_LT2] = ACTIONS(1504), + [anon_sym_LT_EQ2] = ACTIONS(1504), + [anon_sym_GT_EQ2] = ACTIONS(1504), + [anon_sym_EQ_TILDE2] = ACTIONS(1504), + [anon_sym_BANG_TILDE2] = ACTIONS(1504), + [anon_sym_STAR_STAR2] = ACTIONS(1504), + [anon_sym_PLUS_PLUS2] = ACTIONS(1504), + [anon_sym_SLASH2] = ACTIONS(1504), + [anon_sym_mod2] = ACTIONS(1504), + [anon_sym_SLASH_SLASH2] = ACTIONS(1504), + [anon_sym_PLUS2] = ACTIONS(1504), + [anon_sym_bit_DASHshl2] = ACTIONS(1504), + [anon_sym_bit_DASHshr2] = ACTIONS(1504), + [anon_sym_bit_DASHand2] = ACTIONS(1504), + [anon_sym_bit_DASHxor2] = ACTIONS(1504), + [anon_sym_bit_DASHor2] = ACTIONS(1504), + [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(1504), + [anon_sym_out_GT_GT] = ACTIONS(1504), + [anon_sym_e_GT_GT] = ACTIONS(1504), + [anon_sym_o_GT_GT] = ACTIONS(1504), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1504), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1504), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1504), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1504), [anon_sym_POUND] = ACTIONS(3), }, [795] = { [sym_comment] = STATE(795), - [ts_builtin_sym_end] = ACTIONS(1552), - [anon_sym_STAR_STAR] = ACTIONS(1552), - [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1550), - [anon_sym_SLASH] = ACTIONS(1550), - [anon_sym_mod] = ACTIONS(1552), - [anon_sym_SLASH_SLASH] = ACTIONS(1552), - [anon_sym_PLUS] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1552), - [anon_sym_bit_DASHshl] = ACTIONS(1552), - [anon_sym_bit_DASHshr] = ACTIONS(1552), - [anon_sym_EQ_TILDE] = ACTIONS(1552), - [anon_sym_BANG_TILDE] = ACTIONS(1552), - [anon_sym_bit_DASHand] = ACTIONS(1552), - [anon_sym_bit_DASHxor] = ACTIONS(1552), - [anon_sym_bit_DASHor] = ACTIONS(1552), - [anon_sym_and] = ACTIONS(1552), - [anon_sym_xor] = ACTIONS(1552), - [anon_sym_or] = ACTIONS(1552), - [anon_sym_in] = ACTIONS(1552), - [anon_sym_not_DASHin] = ACTIONS(1552), - [anon_sym_starts_DASHwith] = ACTIONS(1552), - [anon_sym_ends_DASHwith] = ACTIONS(1552), - [anon_sym_EQ_EQ] = ACTIONS(1552), - [anon_sym_BANG_EQ] = ACTIONS(1552), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_LT_EQ] = ACTIONS(1552), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_GT_EQ] = ACTIONS(1552), - [aux_sym_cmd_identifier_token41] = ACTIONS(1550), - [sym__newline] = ACTIONS(1550), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_err_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_GT_PIPE] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1550), - [anon_sym_GT2] = ACTIONS(1550), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_in2] = ACTIONS(1550), - [anon_sym_STAR2] = ACTIONS(1550), - [anon_sym_and2] = ACTIONS(1550), - [anon_sym_xor2] = ACTIONS(1550), - [anon_sym_or2] = ACTIONS(1550), - [anon_sym_not_DASHin2] = ACTIONS(1550), - [anon_sym_starts_DASHwith2] = ACTIONS(1550), - [anon_sym_ends_DASHwith2] = ACTIONS(1550), - [anon_sym_EQ_EQ2] = ACTIONS(1550), - [anon_sym_BANG_EQ2] = ACTIONS(1550), - [anon_sym_LT2] = ACTIONS(1550), - [anon_sym_LT_EQ2] = ACTIONS(1550), - [anon_sym_GT_EQ2] = ACTIONS(1550), - [anon_sym_EQ_TILDE2] = ACTIONS(1550), - [anon_sym_BANG_TILDE2] = ACTIONS(1550), - [anon_sym_STAR_STAR2] = ACTIONS(1550), - [anon_sym_PLUS_PLUS2] = ACTIONS(1550), - [anon_sym_SLASH2] = ACTIONS(1550), - [anon_sym_mod2] = ACTIONS(1550), - [anon_sym_SLASH_SLASH2] = ACTIONS(1550), - [anon_sym_PLUS2] = ACTIONS(1550), - [anon_sym_bit_DASHshl2] = ACTIONS(1550), - [anon_sym_bit_DASHshr2] = ACTIONS(1550), - [anon_sym_bit_DASHand2] = ACTIONS(1550), - [anon_sym_bit_DASHxor2] = ACTIONS(1550), - [anon_sym_bit_DASHor2] = ACTIONS(1550), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [aux_sym__immediate_decimal_token2] = ACTIONS(2945), - [sym_filesize_unit] = ACTIONS(1550), - [sym_duration_unit] = ACTIONS(1552), - [anon_sym_err_GT] = ACTIONS(1550), - [anon_sym_out_GT] = ACTIONS(1550), - [anon_sym_e_GT] = ACTIONS(1550), - [anon_sym_o_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT] = ACTIONS(1550), - [anon_sym_err_GT_GT] = ACTIONS(1550), - [anon_sym_out_GT_GT] = ACTIONS(1550), - [anon_sym_e_GT_GT] = ACTIONS(1550), - [anon_sym_o_GT_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1550), + [anon_sym_STAR_STAR] = ACTIONS(1620), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1618), + [anon_sym_SLASH] = ACTIONS(1618), + [anon_sym_mod] = ACTIONS(1620), + [anon_sym_SLASH_SLASH] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1618), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_bit_DASHshl] = ACTIONS(1620), + [anon_sym_bit_DASHshr] = ACTIONS(1620), + [anon_sym_EQ_TILDE] = ACTIONS(1620), + [anon_sym_BANG_TILDE] = ACTIONS(1620), + [anon_sym_bit_DASHand] = ACTIONS(1620), + [anon_sym_bit_DASHxor] = ACTIONS(1620), + [anon_sym_bit_DASHor] = ACTIONS(1620), + [anon_sym_and] = ACTIONS(1620), + [anon_sym_xor] = ACTIONS(1620), + [anon_sym_or] = ACTIONS(1620), + [anon_sym_in] = ACTIONS(1620), + [anon_sym_not_DASHin] = ACTIONS(1620), + [anon_sym_has] = ACTIONS(1620), + [anon_sym_not_DASHhas] = ACTIONS(1620), + [anon_sym_starts_DASHwith] = ACTIONS(1620), + [anon_sym_ends_DASHwith] = ACTIONS(1620), + [anon_sym_EQ_EQ] = ACTIONS(1620), + [anon_sym_BANG_EQ] = ACTIONS(1620), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_LT_EQ] = ACTIONS(1620), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_GT_EQ] = ACTIONS(1620), + [aux_sym_cmd_identifier_token41] = ACTIONS(1618), + [sym__newline] = ACTIONS(1618), + [anon_sym_SEMI] = ACTIONS(1618), + [anon_sym_PIPE] = ACTIONS(1618), + [anon_sym_err_GT_PIPE] = ACTIONS(1618), + [anon_sym_out_GT_PIPE] = ACTIONS(1618), + [anon_sym_e_GT_PIPE] = ACTIONS(1618), + [anon_sym_o_GT_PIPE] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1618), + [anon_sym_GT2] = ACTIONS(1618), + [anon_sym_DASH2] = ACTIONS(1618), + [anon_sym_in2] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1618), + [anon_sym_STAR2] = ACTIONS(1618), + [anon_sym_and2] = ACTIONS(1618), + [anon_sym_xor2] = ACTIONS(1618), + [anon_sym_or2] = ACTIONS(1618), + [anon_sym_not_DASHin2] = ACTIONS(1618), + [anon_sym_has2] = ACTIONS(1618), + [anon_sym_not_DASHhas2] = ACTIONS(1618), + [anon_sym_starts_DASHwith2] = ACTIONS(1618), + [anon_sym_ends_DASHwith2] = ACTIONS(1618), + [anon_sym_EQ_EQ2] = ACTIONS(1618), + [anon_sym_BANG_EQ2] = ACTIONS(1618), + [anon_sym_LT2] = ACTIONS(1618), + [anon_sym_LT_EQ2] = ACTIONS(1618), + [anon_sym_GT_EQ2] = ACTIONS(1618), + [anon_sym_EQ_TILDE2] = ACTIONS(1618), + [anon_sym_BANG_TILDE2] = ACTIONS(1618), + [anon_sym_STAR_STAR2] = ACTIONS(1618), + [anon_sym_PLUS_PLUS2] = ACTIONS(1618), + [anon_sym_SLASH2] = ACTIONS(1618), + [anon_sym_mod2] = ACTIONS(1618), + [anon_sym_SLASH_SLASH2] = ACTIONS(1618), + [anon_sym_PLUS2] = ACTIONS(1618), + [anon_sym_bit_DASHshl2] = ACTIONS(1618), + [anon_sym_bit_DASHshr2] = ACTIONS(1618), + [anon_sym_bit_DASHand2] = ACTIONS(1618), + [anon_sym_bit_DASHxor2] = ACTIONS(1618), + [anon_sym_bit_DASHor2] = ACTIONS(1618), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [sym_filesize_unit] = ACTIONS(1618), + [sym_duration_unit] = ACTIONS(1620), + [anon_sym_err_GT] = ACTIONS(1618), + [anon_sym_out_GT] = ACTIONS(1618), + [anon_sym_e_GT] = ACTIONS(1618), + [anon_sym_o_GT] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT] = ACTIONS(1618), + [anon_sym_err_GT_GT] = ACTIONS(1618), + [anon_sym_out_GT_GT] = ACTIONS(1618), + [anon_sym_e_GT_GT] = ACTIONS(1618), + [anon_sym_o_GT_GT] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1618), [anon_sym_POUND] = ACTIONS(3), }, [796] = { [sym_comment] = STATE(796), - [anon_sym_STAR_STAR] = ACTIONS(1544), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_STAR] = ACTIONS(1542), - [anon_sym_SLASH] = ACTIONS(1542), - [anon_sym_mod] = ACTIONS(1544), - [anon_sym_SLASH_SLASH] = ACTIONS(1544), - [anon_sym_PLUS] = ACTIONS(1542), - [anon_sym_DASH] = ACTIONS(1544), - [anon_sym_bit_DASHshl] = ACTIONS(1544), - [anon_sym_bit_DASHshr] = ACTIONS(1544), - [anon_sym_EQ_TILDE] = ACTIONS(1544), - [anon_sym_BANG_TILDE] = ACTIONS(1544), - [anon_sym_bit_DASHand] = ACTIONS(1544), - [anon_sym_bit_DASHxor] = ACTIONS(1544), - [anon_sym_bit_DASHor] = ACTIONS(1544), - [anon_sym_and] = ACTIONS(1544), - [anon_sym_xor] = ACTIONS(1544), - [anon_sym_or] = ACTIONS(1544), - [anon_sym_in] = ACTIONS(1544), - [anon_sym_not_DASHin] = ACTIONS(1544), - [anon_sym_starts_DASHwith] = ACTIONS(1544), - [anon_sym_ends_DASHwith] = ACTIONS(1544), - [anon_sym_EQ_EQ] = ACTIONS(1544), - [anon_sym_BANG_EQ] = ACTIONS(1544), - [anon_sym_LT] = ACTIONS(1542), - [anon_sym_LT_EQ] = ACTIONS(1544), - [anon_sym_GT] = ACTIONS(1542), - [anon_sym_GT_EQ] = ACTIONS(1544), - [aux_sym_cmd_identifier_token41] = ACTIONS(1542), - [sym__newline] = ACTIONS(1542), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_err_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_GT_PIPE] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), - [anon_sym_GT2] = ACTIONS(1542), - [anon_sym_DASH2] = ACTIONS(1542), - [anon_sym_in2] = ACTIONS(1542), - [anon_sym_STAR2] = ACTIONS(1542), - [anon_sym_and2] = ACTIONS(1542), - [anon_sym_xor2] = ACTIONS(1542), - [anon_sym_or2] = ACTIONS(1542), - [anon_sym_not_DASHin2] = ACTIONS(1542), - [anon_sym_starts_DASHwith2] = ACTIONS(1542), - [anon_sym_ends_DASHwith2] = ACTIONS(1542), - [anon_sym_EQ_EQ2] = ACTIONS(1542), - [anon_sym_BANG_EQ2] = ACTIONS(1542), - [anon_sym_LT2] = ACTIONS(1542), - [anon_sym_LT_EQ2] = ACTIONS(1542), - [anon_sym_GT_EQ2] = ACTIONS(1542), - [anon_sym_EQ_TILDE2] = ACTIONS(1542), - [anon_sym_BANG_TILDE2] = ACTIONS(1542), - [anon_sym_STAR_STAR2] = ACTIONS(1542), - [anon_sym_PLUS_PLUS2] = ACTIONS(1542), - [anon_sym_SLASH2] = ACTIONS(1542), - [anon_sym_mod2] = ACTIONS(1542), - [anon_sym_SLASH_SLASH2] = ACTIONS(1542), - [anon_sym_PLUS2] = ACTIONS(1542), - [anon_sym_bit_DASHshl2] = ACTIONS(1542), - [anon_sym_bit_DASHshr2] = ACTIONS(1542), - [anon_sym_bit_DASHand2] = ACTIONS(1542), - [anon_sym_bit_DASHxor2] = ACTIONS(1542), - [anon_sym_bit_DASHor2] = ACTIONS(1542), - [anon_sym_DOT_DOT2] = ACTIONS(1542), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1544), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1544), - [aux_sym__immediate_decimal_token1] = ACTIONS(3028), - [aux_sym__immediate_decimal_token2] = ACTIONS(3030), - [sym_filesize_unit] = ACTIONS(1542), - [sym_duration_unit] = ACTIONS(1544), - [anon_sym_err_GT] = ACTIONS(1542), - [anon_sym_out_GT] = ACTIONS(1542), - [anon_sym_e_GT] = ACTIONS(1542), - [anon_sym_o_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT] = ACTIONS(1542), - [anon_sym_err_GT_GT] = ACTIONS(1542), - [anon_sym_out_GT_GT] = ACTIONS(1542), - [anon_sym_e_GT_GT] = ACTIONS(1542), - [anon_sym_o_GT_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), + [anon_sym_STAR_STAR] = ACTIONS(1691), + [anon_sym_PLUS_PLUS] = ACTIONS(1691), + [anon_sym_STAR] = ACTIONS(1689), + [anon_sym_SLASH] = ACTIONS(1689), + [anon_sym_mod] = ACTIONS(1691), + [anon_sym_SLASH_SLASH] = ACTIONS(1691), + [anon_sym_PLUS] = ACTIONS(1689), + [anon_sym_DASH] = ACTIONS(1691), + [anon_sym_bit_DASHshl] = ACTIONS(1691), + [anon_sym_bit_DASHshr] = ACTIONS(1691), + [anon_sym_EQ_TILDE] = ACTIONS(1691), + [anon_sym_BANG_TILDE] = ACTIONS(1691), + [anon_sym_bit_DASHand] = ACTIONS(1691), + [anon_sym_bit_DASHxor] = ACTIONS(1691), + [anon_sym_bit_DASHor] = ACTIONS(1691), + [anon_sym_and] = ACTIONS(1691), + [anon_sym_xor] = ACTIONS(1691), + [anon_sym_or] = ACTIONS(1691), + [anon_sym_in] = ACTIONS(1691), + [anon_sym_not_DASHin] = ACTIONS(1691), + [anon_sym_has] = ACTIONS(1691), + [anon_sym_not_DASHhas] = ACTIONS(1691), + [anon_sym_starts_DASHwith] = ACTIONS(1691), + [anon_sym_ends_DASHwith] = ACTIONS(1691), + [anon_sym_EQ_EQ] = ACTIONS(1691), + [anon_sym_BANG_EQ] = ACTIONS(1691), + [anon_sym_LT] = ACTIONS(1689), + [anon_sym_LT_EQ] = ACTIONS(1691), + [anon_sym_GT] = ACTIONS(1689), + [anon_sym_GT_EQ] = ACTIONS(1691), + [aux_sym_cmd_identifier_token41] = ACTIONS(1689), + [sym__newline] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1689), + [anon_sym_PIPE] = ACTIONS(1689), + [anon_sym_err_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_GT_PIPE] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1689), + [anon_sym_GT2] = ACTIONS(1689), + [anon_sym_DASH2] = ACTIONS(1689), + [anon_sym_in2] = ACTIONS(1689), + [anon_sym_RBRACE] = ACTIONS(1689), + [anon_sym_STAR2] = ACTIONS(1689), + [anon_sym_and2] = ACTIONS(1689), + [anon_sym_xor2] = ACTIONS(1689), + [anon_sym_or2] = ACTIONS(1689), + [anon_sym_not_DASHin2] = ACTIONS(1689), + [anon_sym_has2] = ACTIONS(1689), + [anon_sym_not_DASHhas2] = ACTIONS(1689), + [anon_sym_starts_DASHwith2] = ACTIONS(1689), + [anon_sym_ends_DASHwith2] = ACTIONS(1689), + [anon_sym_EQ_EQ2] = ACTIONS(1689), + [anon_sym_BANG_EQ2] = ACTIONS(1689), + [anon_sym_LT2] = ACTIONS(1689), + [anon_sym_LT_EQ2] = ACTIONS(1689), + [anon_sym_GT_EQ2] = ACTIONS(1689), + [anon_sym_EQ_TILDE2] = ACTIONS(1689), + [anon_sym_BANG_TILDE2] = ACTIONS(1689), + [anon_sym_STAR_STAR2] = ACTIONS(1689), + [anon_sym_PLUS_PLUS2] = ACTIONS(1689), + [anon_sym_SLASH2] = ACTIONS(1689), + [anon_sym_mod2] = ACTIONS(1689), + [anon_sym_SLASH_SLASH2] = ACTIONS(1689), + [anon_sym_PLUS2] = ACTIONS(1689), + [anon_sym_bit_DASHshl2] = ACTIONS(1689), + [anon_sym_bit_DASHshr2] = ACTIONS(1689), + [anon_sym_bit_DASHand2] = ACTIONS(1689), + [anon_sym_bit_DASHxor2] = ACTIONS(1689), + [anon_sym_bit_DASHor2] = ACTIONS(1689), + [anon_sym_DOT_DOT2] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1691), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1691), + [sym_filesize_unit] = ACTIONS(1689), + [sym_duration_unit] = ACTIONS(1691), + [anon_sym_err_GT] = ACTIONS(1689), + [anon_sym_out_GT] = ACTIONS(1689), + [anon_sym_e_GT] = ACTIONS(1689), + [anon_sym_o_GT] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT] = ACTIONS(1689), + [anon_sym_err_GT_GT] = ACTIONS(1689), + [anon_sym_out_GT_GT] = ACTIONS(1689), + [anon_sym_e_GT_GT] = ACTIONS(1689), + [anon_sym_o_GT_GT] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1689), [anon_sym_POUND] = ACTIONS(3), }, [797] = { [sym_comment] = STATE(797), - [anon_sym_STAR_STAR] = ACTIONS(1552), - [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1550), - [anon_sym_SLASH] = ACTIONS(1550), - [anon_sym_mod] = ACTIONS(1552), - [anon_sym_SLASH_SLASH] = ACTIONS(1552), - [anon_sym_PLUS] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1552), - [anon_sym_bit_DASHshl] = ACTIONS(1552), - [anon_sym_bit_DASHshr] = ACTIONS(1552), - [anon_sym_EQ_TILDE] = ACTIONS(1552), - [anon_sym_BANG_TILDE] = ACTIONS(1552), - [anon_sym_bit_DASHand] = ACTIONS(1552), - [anon_sym_bit_DASHxor] = ACTIONS(1552), - [anon_sym_bit_DASHor] = ACTIONS(1552), - [anon_sym_and] = ACTIONS(1552), - [anon_sym_xor] = ACTIONS(1552), - [anon_sym_or] = ACTIONS(1552), - [anon_sym_in] = ACTIONS(1552), - [anon_sym_not_DASHin] = ACTIONS(1552), - [anon_sym_starts_DASHwith] = ACTIONS(1552), - [anon_sym_ends_DASHwith] = ACTIONS(1552), - [anon_sym_EQ_EQ] = ACTIONS(1552), - [anon_sym_BANG_EQ] = ACTIONS(1552), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_LT_EQ] = ACTIONS(1552), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_GT_EQ] = ACTIONS(1552), - [aux_sym_cmd_identifier_token41] = ACTIONS(1550), - [sym__newline] = ACTIONS(1550), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_err_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_GT_PIPE] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1550), - [anon_sym_RPAREN] = ACTIONS(1550), - [anon_sym_GT2] = ACTIONS(1550), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_in2] = ACTIONS(1550), - [anon_sym_STAR2] = ACTIONS(1550), - [anon_sym_and2] = ACTIONS(1550), - [anon_sym_xor2] = ACTIONS(1550), - [anon_sym_or2] = ACTIONS(1550), - [anon_sym_not_DASHin2] = ACTIONS(1550), - [anon_sym_starts_DASHwith2] = ACTIONS(1550), - [anon_sym_ends_DASHwith2] = ACTIONS(1550), - [anon_sym_EQ_EQ2] = ACTIONS(1550), - [anon_sym_BANG_EQ2] = ACTIONS(1550), - [anon_sym_LT2] = ACTIONS(1550), - [anon_sym_LT_EQ2] = ACTIONS(1550), - [anon_sym_GT_EQ2] = ACTIONS(1550), - [anon_sym_EQ_TILDE2] = ACTIONS(1550), - [anon_sym_BANG_TILDE2] = ACTIONS(1550), - [anon_sym_STAR_STAR2] = ACTIONS(1550), - [anon_sym_PLUS_PLUS2] = ACTIONS(1550), - [anon_sym_SLASH2] = ACTIONS(1550), - [anon_sym_mod2] = ACTIONS(1550), - [anon_sym_SLASH_SLASH2] = ACTIONS(1550), - [anon_sym_PLUS2] = ACTIONS(1550), - [anon_sym_bit_DASHshl2] = ACTIONS(1550), - [anon_sym_bit_DASHshr2] = ACTIONS(1550), - [anon_sym_bit_DASHand2] = ACTIONS(1550), - [anon_sym_bit_DASHxor2] = ACTIONS(1550), - [anon_sym_bit_DASHor2] = ACTIONS(1550), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [aux_sym__immediate_decimal_token2] = ACTIONS(2933), - [sym_filesize_unit] = ACTIONS(1550), - [sym_duration_unit] = ACTIONS(1552), - [anon_sym_err_GT] = ACTIONS(1550), - [anon_sym_out_GT] = ACTIONS(1550), - [anon_sym_e_GT] = ACTIONS(1550), - [anon_sym_o_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT] = ACTIONS(1550), - [anon_sym_err_GT_GT] = ACTIONS(1550), - [anon_sym_out_GT_GT] = ACTIONS(1550), - [anon_sym_e_GT_GT] = ACTIONS(1550), - [anon_sym_o_GT_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1550), + [anon_sym_STAR_STAR] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_SLASH] = ACTIONS(1512), + [anon_sym_mod] = ACTIONS(1514), + [anon_sym_SLASH_SLASH] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_bit_DASHshl] = ACTIONS(1514), + [anon_sym_bit_DASHshr] = ACTIONS(1514), + [anon_sym_EQ_TILDE] = ACTIONS(1514), + [anon_sym_BANG_TILDE] = ACTIONS(1514), + [anon_sym_bit_DASHand] = ACTIONS(1514), + [anon_sym_bit_DASHxor] = ACTIONS(1514), + [anon_sym_bit_DASHor] = ACTIONS(1514), + [anon_sym_and] = ACTIONS(1514), + [anon_sym_xor] = ACTIONS(1514), + [anon_sym_or] = ACTIONS(1514), + [anon_sym_in] = ACTIONS(1514), + [anon_sym_not_DASHin] = ACTIONS(1514), + [anon_sym_has] = ACTIONS(1514), + [anon_sym_not_DASHhas] = ACTIONS(1514), + [anon_sym_starts_DASHwith] = ACTIONS(1514), + [anon_sym_ends_DASHwith] = ACTIONS(1514), + [anon_sym_EQ_EQ] = ACTIONS(1514), + [anon_sym_BANG_EQ] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_LT_EQ] = ACTIONS(1514), + [anon_sym_GT] = ACTIONS(1512), + [anon_sym_GT_EQ] = ACTIONS(1514), + [aux_sym_cmd_identifier_token41] = ACTIONS(1512), + [sym__newline] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_err_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_GT_PIPE] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1512), + [anon_sym_GT2] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_in2] = ACTIONS(1512), + [anon_sym_STAR2] = ACTIONS(1512), + [anon_sym_and2] = ACTIONS(1512), + [anon_sym_xor2] = ACTIONS(1512), + [anon_sym_or2] = ACTIONS(1512), + [anon_sym_not_DASHin2] = ACTIONS(1512), + [anon_sym_has2] = ACTIONS(1512), + [anon_sym_not_DASHhas2] = ACTIONS(1512), + [anon_sym_starts_DASHwith2] = ACTIONS(1512), + [anon_sym_ends_DASHwith2] = ACTIONS(1512), + [anon_sym_EQ_EQ2] = ACTIONS(1512), + [anon_sym_BANG_EQ2] = ACTIONS(1512), + [anon_sym_LT2] = ACTIONS(1512), + [anon_sym_LT_EQ2] = ACTIONS(1512), + [anon_sym_GT_EQ2] = ACTIONS(1512), + [anon_sym_EQ_TILDE2] = ACTIONS(1512), + [anon_sym_BANG_TILDE2] = ACTIONS(1512), + [anon_sym_STAR_STAR2] = ACTIONS(1512), + [anon_sym_PLUS_PLUS2] = ACTIONS(1512), + [anon_sym_SLASH2] = ACTIONS(1512), + [anon_sym_mod2] = ACTIONS(1512), + [anon_sym_SLASH_SLASH2] = ACTIONS(1512), + [anon_sym_PLUS2] = ACTIONS(1512), + [anon_sym_bit_DASHshl2] = ACTIONS(1512), + [anon_sym_bit_DASHshr2] = ACTIONS(1512), + [anon_sym_bit_DASHand2] = ACTIONS(1512), + [anon_sym_bit_DASHxor2] = ACTIONS(1512), + [anon_sym_bit_DASHor2] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT] = ACTIONS(2682), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [aux_sym__immediate_decimal_token2] = ACTIONS(2684), + [sym_filesize_unit] = ACTIONS(1512), + [sym_duration_unit] = ACTIONS(1514), + [anon_sym_err_GT] = ACTIONS(1512), + [anon_sym_out_GT] = ACTIONS(1512), + [anon_sym_e_GT] = ACTIONS(1512), + [anon_sym_o_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT] = ACTIONS(1512), + [anon_sym_err_GT_GT] = ACTIONS(1512), + [anon_sym_out_GT_GT] = ACTIONS(1512), + [anon_sym_e_GT_GT] = ACTIONS(1512), + [anon_sym_o_GT_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1512), [anon_sym_POUND] = ACTIONS(3), }, [798] = { [sym_comment] = STATE(798), - [anon_sym_STAR_STAR] = ACTIONS(1682), - [anon_sym_PLUS_PLUS] = ACTIONS(1682), - [anon_sym_STAR] = ACTIONS(1680), - [anon_sym_SLASH] = ACTIONS(1680), - [anon_sym_mod] = ACTIONS(1682), - [anon_sym_SLASH_SLASH] = ACTIONS(1682), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_DASH] = ACTIONS(1682), - [anon_sym_bit_DASHshl] = ACTIONS(1682), - [anon_sym_bit_DASHshr] = ACTIONS(1682), - [anon_sym_EQ_TILDE] = ACTIONS(1682), - [anon_sym_BANG_TILDE] = ACTIONS(1682), - [anon_sym_bit_DASHand] = ACTIONS(1682), - [anon_sym_bit_DASHxor] = ACTIONS(1682), - [anon_sym_bit_DASHor] = ACTIONS(1682), - [anon_sym_and] = ACTIONS(1682), - [anon_sym_xor] = ACTIONS(1682), - [anon_sym_or] = ACTIONS(1682), - [anon_sym_in] = ACTIONS(1682), - [anon_sym_not_DASHin] = ACTIONS(1682), - [anon_sym_starts_DASHwith] = ACTIONS(1682), - [anon_sym_ends_DASHwith] = ACTIONS(1682), - [anon_sym_EQ_EQ] = ACTIONS(1682), - [anon_sym_BANG_EQ] = ACTIONS(1682), - [anon_sym_LT] = ACTIONS(1680), - [anon_sym_LT_EQ] = ACTIONS(1682), - [anon_sym_GT] = ACTIONS(1680), - [anon_sym_GT_EQ] = ACTIONS(1682), - [aux_sym_cmd_identifier_token41] = ACTIONS(1680), - [sym__newline] = ACTIONS(1680), - [anon_sym_SEMI] = ACTIONS(1680), - [anon_sym_PIPE] = ACTIONS(1680), - [anon_sym_err_GT_PIPE] = ACTIONS(1680), - [anon_sym_out_GT_PIPE] = ACTIONS(1680), - [anon_sym_e_GT_PIPE] = ACTIONS(1680), - [anon_sym_o_GT_PIPE] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1680), - [anon_sym_RPAREN] = ACTIONS(1680), - [anon_sym_GT2] = ACTIONS(1680), - [anon_sym_DASH2] = ACTIONS(1680), - [anon_sym_in2] = ACTIONS(1680), - [anon_sym_STAR2] = ACTIONS(1680), - [anon_sym_and2] = ACTIONS(1680), - [anon_sym_xor2] = ACTIONS(1680), - [anon_sym_or2] = ACTIONS(1680), - [anon_sym_not_DASHin2] = ACTIONS(1680), - [anon_sym_starts_DASHwith2] = ACTIONS(1680), - [anon_sym_ends_DASHwith2] = ACTIONS(1680), - [anon_sym_EQ_EQ2] = ACTIONS(1680), - [anon_sym_BANG_EQ2] = ACTIONS(1680), - [anon_sym_LT2] = ACTIONS(1680), - [anon_sym_LT_EQ2] = ACTIONS(1680), - [anon_sym_GT_EQ2] = ACTIONS(1680), - [anon_sym_EQ_TILDE2] = ACTIONS(1680), - [anon_sym_BANG_TILDE2] = ACTIONS(1680), - [anon_sym_STAR_STAR2] = ACTIONS(1680), - [anon_sym_PLUS_PLUS2] = ACTIONS(1680), - [anon_sym_SLASH2] = ACTIONS(1680), - [anon_sym_mod2] = ACTIONS(1680), - [anon_sym_SLASH_SLASH2] = ACTIONS(1680), - [anon_sym_PLUS2] = ACTIONS(1680), - [anon_sym_bit_DASHshl2] = ACTIONS(1680), - [anon_sym_bit_DASHshr2] = ACTIONS(1680), - [anon_sym_bit_DASHand2] = ACTIONS(1680), - [anon_sym_bit_DASHxor2] = ACTIONS(1680), - [anon_sym_bit_DASHor2] = ACTIONS(1680), - [anon_sym_DOT_DOT2] = ACTIONS(1680), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1682), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1682), - [aux_sym__immediate_decimal_token2] = ACTIONS(3032), - [sym_filesize_unit] = ACTIONS(1680), - [sym_duration_unit] = ACTIONS(1682), - [anon_sym_err_GT] = ACTIONS(1680), - [anon_sym_out_GT] = ACTIONS(1680), - [anon_sym_e_GT] = ACTIONS(1680), - [anon_sym_o_GT] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT] = ACTIONS(1680), - [anon_sym_err_GT_GT] = ACTIONS(1680), - [anon_sym_out_GT_GT] = ACTIONS(1680), - [anon_sym_e_GT_GT] = ACTIONS(1680), - [anon_sym_o_GT_GT] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1680), + [anon_sym_STAR_STAR] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_SLASH] = ACTIONS(1512), + [anon_sym_mod] = ACTIONS(1514), + [anon_sym_SLASH_SLASH] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_bit_DASHshl] = ACTIONS(1514), + [anon_sym_bit_DASHshr] = ACTIONS(1514), + [anon_sym_EQ_TILDE] = ACTIONS(1514), + [anon_sym_BANG_TILDE] = ACTIONS(1514), + [anon_sym_bit_DASHand] = ACTIONS(1514), + [anon_sym_bit_DASHxor] = ACTIONS(1514), + [anon_sym_bit_DASHor] = ACTIONS(1514), + [anon_sym_and] = ACTIONS(1514), + [anon_sym_xor] = ACTIONS(1514), + [anon_sym_or] = ACTIONS(1514), + [anon_sym_in] = ACTIONS(1514), + [anon_sym_not_DASHin] = ACTIONS(1514), + [anon_sym_has] = ACTIONS(1514), + [anon_sym_not_DASHhas] = ACTIONS(1514), + [anon_sym_starts_DASHwith] = ACTIONS(1514), + [anon_sym_ends_DASHwith] = ACTIONS(1514), + [anon_sym_EQ_EQ] = ACTIONS(1514), + [anon_sym_BANG_EQ] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_LT_EQ] = ACTIONS(1514), + [anon_sym_GT] = ACTIONS(1512), + [anon_sym_GT_EQ] = ACTIONS(1514), + [aux_sym_cmd_identifier_token41] = ACTIONS(1512), + [sym__newline] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_err_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_GT_PIPE] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1512), + [anon_sym_GT2] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_in2] = ACTIONS(1512), + [anon_sym_STAR2] = ACTIONS(1512), + [anon_sym_and2] = ACTIONS(1512), + [anon_sym_xor2] = ACTIONS(1512), + [anon_sym_or2] = ACTIONS(1512), + [anon_sym_not_DASHin2] = ACTIONS(1512), + [anon_sym_has2] = ACTIONS(1512), + [anon_sym_not_DASHhas2] = ACTIONS(1512), + [anon_sym_starts_DASHwith2] = ACTIONS(1512), + [anon_sym_ends_DASHwith2] = ACTIONS(1512), + [anon_sym_EQ_EQ2] = ACTIONS(1512), + [anon_sym_BANG_EQ2] = ACTIONS(1512), + [anon_sym_LT2] = ACTIONS(1512), + [anon_sym_LT_EQ2] = ACTIONS(1512), + [anon_sym_GT_EQ2] = ACTIONS(1512), + [anon_sym_EQ_TILDE2] = ACTIONS(1512), + [anon_sym_BANG_TILDE2] = ACTIONS(1512), + [anon_sym_STAR_STAR2] = ACTIONS(1512), + [anon_sym_PLUS_PLUS2] = ACTIONS(1512), + [anon_sym_SLASH2] = ACTIONS(1512), + [anon_sym_mod2] = ACTIONS(1512), + [anon_sym_SLASH_SLASH2] = ACTIONS(1512), + [anon_sym_PLUS2] = ACTIONS(1512), + [anon_sym_bit_DASHshl2] = ACTIONS(1512), + [anon_sym_bit_DASHshr2] = ACTIONS(1512), + [anon_sym_bit_DASHand2] = ACTIONS(1512), + [anon_sym_bit_DASHxor2] = ACTIONS(1512), + [anon_sym_bit_DASHor2] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [aux_sym__immediate_decimal_token2] = ACTIONS(2562), + [sym_filesize_unit] = ACTIONS(1512), + [sym_duration_unit] = ACTIONS(1514), + [anon_sym_err_GT] = ACTIONS(1512), + [anon_sym_out_GT] = ACTIONS(1512), + [anon_sym_e_GT] = ACTIONS(1512), + [anon_sym_o_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT] = ACTIONS(1512), + [anon_sym_err_GT_GT] = ACTIONS(1512), + [anon_sym_out_GT_GT] = ACTIONS(1512), + [anon_sym_e_GT_GT] = ACTIONS(1512), + [anon_sym_o_GT_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1512), [anon_sym_POUND] = ACTIONS(3), }, [799] = { [sym_comment] = STATE(799), - [anon_sym_STAR_STAR] = ACTIONS(1552), - [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1550), - [anon_sym_SLASH] = ACTIONS(1550), - [anon_sym_mod] = ACTIONS(1552), - [anon_sym_SLASH_SLASH] = ACTIONS(1552), - [anon_sym_PLUS] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1552), - [anon_sym_bit_DASHshl] = ACTIONS(1552), - [anon_sym_bit_DASHshr] = ACTIONS(1552), - [anon_sym_EQ_TILDE] = ACTIONS(1552), - [anon_sym_BANG_TILDE] = ACTIONS(1552), - [anon_sym_bit_DASHand] = ACTIONS(1552), - [anon_sym_bit_DASHxor] = ACTIONS(1552), - [anon_sym_bit_DASHor] = ACTIONS(1552), - [anon_sym_and] = ACTIONS(1552), - [anon_sym_xor] = ACTIONS(1552), - [anon_sym_or] = ACTIONS(1552), - [anon_sym_in] = ACTIONS(1552), - [anon_sym_not_DASHin] = ACTIONS(1552), - [anon_sym_starts_DASHwith] = ACTIONS(1552), - [anon_sym_ends_DASHwith] = ACTIONS(1552), - [anon_sym_EQ_EQ] = ACTIONS(1552), - [anon_sym_BANG_EQ] = ACTIONS(1552), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_LT_EQ] = ACTIONS(1552), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_GT_EQ] = ACTIONS(1552), - [aux_sym_cmd_identifier_token41] = ACTIONS(1550), - [sym__newline] = ACTIONS(1550), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_err_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_GT_PIPE] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1550), - [anon_sym_GT2] = ACTIONS(1550), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_in2] = ACTIONS(1550), - [anon_sym_STAR2] = ACTIONS(1550), - [anon_sym_and2] = ACTIONS(1550), - [anon_sym_xor2] = ACTIONS(1550), - [anon_sym_or2] = ACTIONS(1550), - [anon_sym_not_DASHin2] = ACTIONS(1550), - [anon_sym_starts_DASHwith2] = ACTIONS(1550), - [anon_sym_ends_DASHwith2] = ACTIONS(1550), - [anon_sym_EQ_EQ2] = ACTIONS(1550), - [anon_sym_BANG_EQ2] = ACTIONS(1550), - [anon_sym_LT2] = ACTIONS(1550), - [anon_sym_LT_EQ2] = ACTIONS(1550), - [anon_sym_GT_EQ2] = ACTIONS(1550), - [anon_sym_EQ_TILDE2] = ACTIONS(1550), - [anon_sym_BANG_TILDE2] = ACTIONS(1550), - [anon_sym_STAR_STAR2] = ACTIONS(1550), - [anon_sym_PLUS_PLUS2] = ACTIONS(1550), - [anon_sym_SLASH2] = ACTIONS(1550), - [anon_sym_mod2] = ACTIONS(1550), - [anon_sym_SLASH_SLASH2] = ACTIONS(1550), - [anon_sym_PLUS2] = ACTIONS(1550), - [anon_sym_bit_DASHshl2] = ACTIONS(1550), - [anon_sym_bit_DASHshr2] = ACTIONS(1550), - [anon_sym_bit_DASHand2] = ACTIONS(1550), - [anon_sym_bit_DASHxor2] = ACTIONS(1550), - [anon_sym_bit_DASHor2] = ACTIONS(1550), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT] = ACTIONS(3034), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [aux_sym__immediate_decimal_token2] = ACTIONS(3036), - [sym_filesize_unit] = ACTIONS(1550), - [sym_duration_unit] = ACTIONS(1552), - [anon_sym_err_GT] = ACTIONS(1550), - [anon_sym_out_GT] = ACTIONS(1550), - [anon_sym_e_GT] = ACTIONS(1550), - [anon_sym_o_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT] = ACTIONS(1550), - [anon_sym_err_GT_GT] = ACTIONS(1550), - [anon_sym_out_GT_GT] = ACTIONS(1550), - [anon_sym_e_GT_GT] = ACTIONS(1550), - [anon_sym_o_GT_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1550), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(802), + [aux_sym_cmd_identifier_token1] = ACTIONS(2686), + [aux_sym_cmd_identifier_token2] = ACTIONS(2688), + [aux_sym_cmd_identifier_token3] = ACTIONS(2688), + [aux_sym_cmd_identifier_token4] = ACTIONS(2688), + [aux_sym_cmd_identifier_token5] = ACTIONS(2688), + [aux_sym_cmd_identifier_token6] = ACTIONS(2688), + [aux_sym_cmd_identifier_token7] = ACTIONS(2688), + [aux_sym_cmd_identifier_token8] = ACTIONS(2688), + [aux_sym_cmd_identifier_token9] = ACTIONS(2686), + [aux_sym_cmd_identifier_token10] = ACTIONS(2688), + [aux_sym_cmd_identifier_token11] = ACTIONS(2688), + [aux_sym_cmd_identifier_token12] = ACTIONS(2688), + [aux_sym_cmd_identifier_token13] = ACTIONS(2686), + [aux_sym_cmd_identifier_token14] = ACTIONS(2688), + [aux_sym_cmd_identifier_token15] = ACTIONS(2686), + [aux_sym_cmd_identifier_token16] = ACTIONS(2688), + [aux_sym_cmd_identifier_token17] = ACTIONS(2688), + [aux_sym_cmd_identifier_token18] = ACTIONS(2686), + [aux_sym_cmd_identifier_token19] = ACTIONS(2688), + [aux_sym_cmd_identifier_token20] = ACTIONS(2688), + [aux_sym_cmd_identifier_token21] = ACTIONS(2688), + [aux_sym_cmd_identifier_token22] = ACTIONS(2688), + [aux_sym_cmd_identifier_token23] = ACTIONS(2688), + [aux_sym_cmd_identifier_token24] = ACTIONS(2688), + [aux_sym_cmd_identifier_token25] = ACTIONS(2688), + [aux_sym_cmd_identifier_token26] = ACTIONS(2688), + [aux_sym_cmd_identifier_token27] = ACTIONS(2688), + [aux_sym_cmd_identifier_token28] = ACTIONS(2688), + [aux_sym_cmd_identifier_token29] = ACTIONS(2688), + [aux_sym_cmd_identifier_token30] = ACTIONS(2688), + [aux_sym_cmd_identifier_token31] = ACTIONS(2688), + [aux_sym_cmd_identifier_token32] = ACTIONS(2686), + [aux_sym_cmd_identifier_token33] = ACTIONS(2688), + [aux_sym_cmd_identifier_token34] = ACTIONS(2686), + [aux_sym_cmd_identifier_token35] = ACTIONS(2688), + [aux_sym_cmd_identifier_token36] = ACTIONS(2688), + [aux_sym_cmd_identifier_token37] = ACTIONS(2688), + [aux_sym_cmd_identifier_token38] = ACTIONS(2686), + [aux_sym_cmd_identifier_token39] = ACTIONS(2688), + [aux_sym_cmd_identifier_token40] = ACTIONS(2688), + [sym__newline] = ACTIONS(2558), + [anon_sym_PIPE] = ACTIONS(2690), + [anon_sym_err_GT_PIPE] = ACTIONS(2690), + [anon_sym_out_GT_PIPE] = ACTIONS(2690), + [anon_sym_e_GT_PIPE] = ACTIONS(2690), + [anon_sym_o_GT_PIPE] = ACTIONS(2690), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2690), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2690), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2690), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(2688), + [anon_sym_LPAREN] = ACTIONS(2688), + [anon_sym_DOLLAR] = ACTIONS(2686), + [anon_sym_DASH2] = ACTIONS(2686), + [anon_sym_break] = ACTIONS(2686), + [anon_sym_continue] = ACTIONS(2686), + [anon_sym_do] = ACTIONS(2686), + [anon_sym_if] = ACTIONS(2686), + [anon_sym_match] = ACTIONS(2686), + [anon_sym_LBRACE] = ACTIONS(2688), + [anon_sym_DOT_DOT] = ACTIONS(2686), + [anon_sym_try] = ACTIONS(2686), + [anon_sym_return] = ACTIONS(2686), + [anon_sym_where] = ACTIONS(2688), + [aux_sym_expr_unary_token1] = ACTIONS(2688), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2688), + [anon_sym_DOT_DOT_LT] = ACTIONS(2688), + [anon_sym_null] = ACTIONS(2686), + [anon_sym_true] = ACTIONS(2686), + [anon_sym_false] = ACTIONS(2686), + [aux_sym__val_number_decimal_token1] = ACTIONS(2686), + [aux_sym__val_number_decimal_token2] = ACTIONS(2688), + [aux_sym__val_number_decimal_token3] = ACTIONS(2688), + [aux_sym__val_number_decimal_token4] = ACTIONS(2688), + [aux_sym__val_number_token1] = ACTIONS(2688), + [aux_sym__val_number_token2] = ACTIONS(2688), + [aux_sym__val_number_token3] = ACTIONS(2688), + [aux_sym__val_number_token4] = ACTIONS(2686), + [aux_sym__val_number_token5] = ACTIONS(2686), + [aux_sym__val_number_token6] = ACTIONS(2686), + [anon_sym_0b] = ACTIONS(2686), + [anon_sym_0o] = ACTIONS(2686), + [anon_sym_0x] = ACTIONS(2686), + [sym_val_date] = ACTIONS(2688), + [anon_sym_DQUOTE] = ACTIONS(2688), + [sym__str_single_quotes] = ACTIONS(2688), + [sym__str_back_ticks] = ACTIONS(2688), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2688), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2688), + [aux_sym_env_var_token1] = ACTIONS(2686), + [anon_sym_CARET] = ACTIONS(2688), + [aux_sym_command_token1] = ACTIONS(2688), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2688), }, [800] = { + [sym__match_pattern_expression] = STATE(3186), + [sym__match_pattern_value] = STATE(3171), + [sym__match_pattern_list] = STATE(3187), + [sym__match_pattern_rest] = STATE(7661), + [sym__match_pattern_record] = STATE(3188), + [sym_expr_parenthesized] = STATE(2868), + [sym__spread_parenthesized] = STATE(7300), + [sym_val_range] = STATE(3102), + [sym__val_range] = STATE(7814), + [sym__val_range_with_end] = STATE(7289), + [sym__value] = STATE(7368), + [sym_val_nothing] = STATE(3110), + [sym_val_bool] = STATE(2930), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(2875), + [sym_val_number] = STATE(3110), + [sym__val_number_decimal] = STATE(2560), + [sym__val_number] = STATE(3114), + [sym_val_duration] = STATE(3110), + [sym_val_filesize] = STATE(3110), + [sym_val_binary] = STATE(3110), + [sym_val_string] = STATE(3110), + [sym__raw_str] = STATE(3119), + [sym__str_double_quotes] = STATE(3119), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(7237), + [sym__spread_list] = STATE(7300), + [sym_list_body] = STATE(7687), + [sym_val_entry] = STATE(7116), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(3110), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_list] = STATE(2952), + [sym__unquoted_in_list_with_expr] = STATE(7368), + [sym__unquoted_anonymous_prefix] = STATE(6951), [sym_comment] = STATE(800), - [anon_sym_STAR_STAR] = ACTIONS(1544), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_STAR] = ACTIONS(1542), - [anon_sym_SLASH] = ACTIONS(1542), - [anon_sym_mod] = ACTIONS(1544), - [anon_sym_SLASH_SLASH] = ACTIONS(1544), - [anon_sym_PLUS] = ACTIONS(1542), - [anon_sym_DASH] = ACTIONS(1544), - [anon_sym_bit_DASHshl] = ACTIONS(1544), - [anon_sym_bit_DASHshr] = ACTIONS(1544), - [anon_sym_EQ_TILDE] = ACTIONS(1544), - [anon_sym_BANG_TILDE] = ACTIONS(1544), - [anon_sym_bit_DASHand] = ACTIONS(1544), - [anon_sym_bit_DASHxor] = ACTIONS(1544), - [anon_sym_bit_DASHor] = ACTIONS(1544), - [anon_sym_and] = ACTIONS(1544), - [anon_sym_xor] = ACTIONS(1544), - [anon_sym_or] = ACTIONS(1544), - [anon_sym_in] = ACTIONS(1544), - [anon_sym_not_DASHin] = ACTIONS(1544), - [anon_sym_starts_DASHwith] = ACTIONS(1544), - [anon_sym_ends_DASHwith] = ACTIONS(1544), - [anon_sym_EQ_EQ] = ACTIONS(1544), - [anon_sym_BANG_EQ] = ACTIONS(1544), - [anon_sym_LT] = ACTIONS(1542), - [anon_sym_LT_EQ] = ACTIONS(1544), - [anon_sym_GT] = ACTIONS(1542), - [anon_sym_GT_EQ] = ACTIONS(1544), - [aux_sym_cmd_identifier_token41] = ACTIONS(1542), - [sym__newline] = ACTIONS(1542), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_err_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_GT_PIPE] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), - [anon_sym_GT2] = ACTIONS(1542), - [anon_sym_DASH2] = ACTIONS(1542), - [anon_sym_in2] = ACTIONS(1542), - [anon_sym_RBRACE] = ACTIONS(1542), - [anon_sym_STAR2] = ACTIONS(1542), - [anon_sym_and2] = ACTIONS(1542), - [anon_sym_xor2] = ACTIONS(1542), - [anon_sym_or2] = ACTIONS(1542), - [anon_sym_not_DASHin2] = ACTIONS(1542), - [anon_sym_starts_DASHwith2] = ACTIONS(1542), - [anon_sym_ends_DASHwith2] = ACTIONS(1542), - [anon_sym_EQ_EQ2] = ACTIONS(1542), - [anon_sym_BANG_EQ2] = ACTIONS(1542), - [anon_sym_LT2] = ACTIONS(1542), - [anon_sym_LT_EQ2] = ACTIONS(1542), - [anon_sym_GT_EQ2] = ACTIONS(1542), - [anon_sym_EQ_TILDE2] = ACTIONS(1542), - [anon_sym_BANG_TILDE2] = ACTIONS(1542), - [anon_sym_STAR_STAR2] = ACTIONS(1542), - [anon_sym_PLUS_PLUS2] = ACTIONS(1542), - [anon_sym_SLASH2] = ACTIONS(1542), - [anon_sym_mod2] = ACTIONS(1542), - [anon_sym_SLASH_SLASH2] = ACTIONS(1542), - [anon_sym_PLUS2] = ACTIONS(1542), - [anon_sym_bit_DASHshl2] = ACTIONS(1542), - [anon_sym_bit_DASHshr2] = ACTIONS(1542), - [anon_sym_bit_DASHand2] = ACTIONS(1542), - [anon_sym_bit_DASHxor2] = ACTIONS(1542), - [anon_sym_bit_DASHor2] = ACTIONS(1542), - [anon_sym_DOT_DOT2] = ACTIONS(1542), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1544), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1544), - [sym_filesize_unit] = ACTIONS(1542), - [sym_duration_unit] = ACTIONS(1544), - [anon_sym_COLON2] = ACTIONS(1542), - [anon_sym_err_GT] = ACTIONS(1542), - [anon_sym_out_GT] = ACTIONS(1542), - [anon_sym_e_GT] = ACTIONS(1542), - [anon_sym_o_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT] = ACTIONS(1542), - [anon_sym_err_GT_GT] = ACTIONS(1542), - [anon_sym_out_GT_GT] = ACTIONS(1542), - [anon_sym_e_GT_GT] = ACTIONS(1542), - [anon_sym_o_GT_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(889), + [aux_sym_parameter_repeat2] = STATE(6641), + [aux_sym__match_pattern_list_repeat1] = STATE(1273), + [aux_sym_list_body_repeat1] = STATE(973), + [sym__newline] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(2626), + [anon_sym_RBRACK] = ACTIONS(2692), + [anon_sym_LPAREN] = ACTIONS(2630), + [anon_sym_COMMA] = ACTIONS(2632), + [anon_sym_DOLLAR] = ACTIONS(2634), + [anon_sym_LBRACE] = ACTIONS(2636), + [anon_sym_DOT_DOT] = ACTIONS(2638), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2640), + [anon_sym_DOT_DOT_LT] = ACTIONS(2640), + [anon_sym_null] = ACTIONS(2642), + [anon_sym_true] = ACTIONS(2644), + [anon_sym_false] = ACTIONS(2644), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2646), + [aux_sym__val_number_decimal_token2] = ACTIONS(2648), + [aux_sym__val_number_decimal_token3] = ACTIONS(2650), + [aux_sym__val_number_decimal_token4] = ACTIONS(2652), + [aux_sym__val_number_token1] = ACTIONS(2654), + [aux_sym__val_number_token2] = ACTIONS(2654), + [aux_sym__val_number_token3] = ACTIONS(2654), + [aux_sym__val_number_token4] = ACTIONS(2656), + [aux_sym__val_number_token5] = ACTIONS(2656), + [aux_sym__val_number_token6] = ACTIONS(2656), + [anon_sym_0b] = ACTIONS(2658), + [anon_sym_0o] = ACTIONS(2660), + [anon_sym_0x] = ACTIONS(2660), + [sym_val_date] = ACTIONS(2662), + [anon_sym_DQUOTE] = ACTIONS(2664), + [sym__str_single_quotes] = ACTIONS(2666), + [sym__str_back_ticks] = ACTIONS(2666), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2672), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2678), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2680), }, [801] = { [sym_comment] = STATE(801), - [anon_sym_STAR_STAR] = ACTIONS(3038), - [anon_sym_PLUS_PLUS] = ACTIONS(3038), - [anon_sym_STAR] = ACTIONS(3040), - [anon_sym_SLASH] = ACTIONS(3040), - [anon_sym_mod] = ACTIONS(3038), - [anon_sym_SLASH_SLASH] = ACTIONS(3038), - [anon_sym_PLUS] = ACTIONS(3040), - [anon_sym_DASH] = ACTIONS(3038), - [anon_sym_bit_DASHshl] = ACTIONS(3038), - [anon_sym_bit_DASHshr] = ACTIONS(3038), - [anon_sym_EQ_TILDE] = ACTIONS(3038), - [anon_sym_BANG_TILDE] = ACTIONS(3038), - [anon_sym_bit_DASHand] = ACTIONS(3038), - [anon_sym_bit_DASHxor] = ACTIONS(3038), - [anon_sym_bit_DASHor] = ACTIONS(3038), - [anon_sym_and] = ACTIONS(3038), - [anon_sym_xor] = ACTIONS(3038), - [anon_sym_or] = ACTIONS(3038), - [anon_sym_in] = ACTIONS(3038), - [anon_sym_not_DASHin] = ACTIONS(3038), - [anon_sym_starts_DASHwith] = ACTIONS(3038), - [anon_sym_ends_DASHwith] = ACTIONS(3038), - [anon_sym_EQ_EQ] = ACTIONS(3038), - [anon_sym_BANG_EQ] = ACTIONS(3038), - [anon_sym_LT] = ACTIONS(3040), - [anon_sym_LT_EQ] = ACTIONS(3038), - [anon_sym_GT] = ACTIONS(3040), - [anon_sym_GT_EQ] = ACTIONS(3038), - [aux_sym_cmd_identifier_token41] = ACTIONS(3042), - [sym__newline] = ACTIONS(1638), - [anon_sym_SEMI] = ACTIONS(1638), - [anon_sym_PIPE] = ACTIONS(1638), - [anon_sym_err_GT_PIPE] = ACTIONS(1638), - [anon_sym_out_GT_PIPE] = ACTIONS(1638), - [anon_sym_e_GT_PIPE] = ACTIONS(1638), - [anon_sym_o_GT_PIPE] = ACTIONS(1638), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1638), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1638), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1638), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1638), - [anon_sym_GT2] = ACTIONS(1638), - [anon_sym_DASH2] = ACTIONS(1638), - [anon_sym_in2] = ACTIONS(1638), - [anon_sym_RBRACE] = ACTIONS(1638), - [anon_sym_STAR2] = ACTIONS(1638), - [anon_sym_and2] = ACTIONS(1638), - [anon_sym_xor2] = ACTIONS(1638), - [anon_sym_or2] = ACTIONS(1638), - [anon_sym_not_DASHin2] = ACTIONS(1638), - [anon_sym_starts_DASHwith2] = ACTIONS(1638), - [anon_sym_ends_DASHwith2] = ACTIONS(1638), - [anon_sym_EQ_EQ2] = ACTIONS(1638), - [anon_sym_BANG_EQ2] = ACTIONS(1638), - [anon_sym_LT2] = ACTIONS(1638), - [anon_sym_LT_EQ2] = ACTIONS(1638), - [anon_sym_GT_EQ2] = ACTIONS(1638), - [anon_sym_EQ_TILDE2] = ACTIONS(1638), - [anon_sym_BANG_TILDE2] = ACTIONS(1638), - [anon_sym_STAR_STAR2] = ACTIONS(1638), - [anon_sym_PLUS_PLUS2] = ACTIONS(1638), - [anon_sym_SLASH2] = ACTIONS(1638), - [anon_sym_mod2] = ACTIONS(1638), - [anon_sym_SLASH_SLASH2] = ACTIONS(1638), - [anon_sym_PLUS2] = ACTIONS(1638), - [anon_sym_bit_DASHshl2] = ACTIONS(1638), - [anon_sym_bit_DASHshr2] = ACTIONS(1638), - [anon_sym_bit_DASHand2] = ACTIONS(1638), - [anon_sym_bit_DASHxor2] = ACTIONS(1638), - [anon_sym_bit_DASHor2] = ACTIONS(1638), - [anon_sym_DOT_DOT2] = ACTIONS(3044), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3046), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3046), - [sym_filesize_unit] = ACTIONS(3048), - [sym_duration_unit] = ACTIONS(3050), - [anon_sym_COLON2] = ACTIONS(1638), - [anon_sym_err_GT] = ACTIONS(1638), - [anon_sym_out_GT] = ACTIONS(1638), - [anon_sym_e_GT] = ACTIONS(1638), - [anon_sym_o_GT] = ACTIONS(1638), - [anon_sym_err_PLUSout_GT] = ACTIONS(1638), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1638), - [anon_sym_o_PLUSe_GT] = ACTIONS(1638), - [anon_sym_e_PLUSo_GT] = ACTIONS(1638), - [anon_sym_err_GT_GT] = ACTIONS(1638), - [anon_sym_out_GT_GT] = ACTIONS(1638), - [anon_sym_e_GT_GT] = ACTIONS(1638), - [anon_sym_o_GT_GT] = ACTIONS(1638), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1638), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1638), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1638), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1638), + [anon_sym_STAR_STAR] = ACTIONS(1620), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1618), + [anon_sym_SLASH] = ACTIONS(1618), + [anon_sym_mod] = ACTIONS(1620), + [anon_sym_SLASH_SLASH] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1618), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_bit_DASHshl] = ACTIONS(1620), + [anon_sym_bit_DASHshr] = ACTIONS(1620), + [anon_sym_EQ_TILDE] = ACTIONS(1620), + [anon_sym_BANG_TILDE] = ACTIONS(1620), + [anon_sym_bit_DASHand] = ACTIONS(1620), + [anon_sym_bit_DASHxor] = ACTIONS(1620), + [anon_sym_bit_DASHor] = ACTIONS(1620), + [anon_sym_and] = ACTIONS(1620), + [anon_sym_xor] = ACTIONS(1620), + [anon_sym_or] = ACTIONS(1620), + [anon_sym_in] = ACTIONS(1620), + [anon_sym_not_DASHin] = ACTIONS(1620), + [anon_sym_has] = ACTIONS(1620), + [anon_sym_not_DASHhas] = ACTIONS(1620), + [anon_sym_starts_DASHwith] = ACTIONS(1620), + [anon_sym_ends_DASHwith] = ACTIONS(1620), + [anon_sym_EQ_EQ] = ACTIONS(1620), + [anon_sym_BANG_EQ] = ACTIONS(1620), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_LT_EQ] = ACTIONS(1620), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_GT_EQ] = ACTIONS(1620), + [aux_sym_cmd_identifier_token41] = ACTIONS(1618), + [sym__newline] = ACTIONS(1618), + [anon_sym_SEMI] = ACTIONS(1618), + [anon_sym_PIPE] = ACTIONS(1618), + [anon_sym_err_GT_PIPE] = ACTIONS(1618), + [anon_sym_out_GT_PIPE] = ACTIONS(1618), + [anon_sym_e_GT_PIPE] = ACTIONS(1618), + [anon_sym_o_GT_PIPE] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1618), + [anon_sym_GT2] = ACTIONS(1618), + [anon_sym_DASH2] = ACTIONS(1618), + [anon_sym_in2] = ACTIONS(1618), + [anon_sym_STAR2] = ACTIONS(1618), + [anon_sym_and2] = ACTIONS(1618), + [anon_sym_xor2] = ACTIONS(1618), + [anon_sym_or2] = ACTIONS(1618), + [anon_sym_not_DASHin2] = ACTIONS(1618), + [anon_sym_has2] = ACTIONS(1618), + [anon_sym_not_DASHhas2] = ACTIONS(1618), + [anon_sym_starts_DASHwith2] = ACTIONS(1618), + [anon_sym_ends_DASHwith2] = ACTIONS(1618), + [anon_sym_EQ_EQ2] = ACTIONS(1618), + [anon_sym_BANG_EQ2] = ACTIONS(1618), + [anon_sym_LT2] = ACTIONS(1618), + [anon_sym_LT_EQ2] = ACTIONS(1618), + [anon_sym_GT_EQ2] = ACTIONS(1618), + [anon_sym_EQ_TILDE2] = ACTIONS(1618), + [anon_sym_BANG_TILDE2] = ACTIONS(1618), + [anon_sym_STAR_STAR2] = ACTIONS(1618), + [anon_sym_PLUS_PLUS2] = ACTIONS(1618), + [anon_sym_SLASH2] = ACTIONS(1618), + [anon_sym_mod2] = ACTIONS(1618), + [anon_sym_SLASH_SLASH2] = ACTIONS(1618), + [anon_sym_PLUS2] = ACTIONS(1618), + [anon_sym_bit_DASHshl2] = ACTIONS(1618), + [anon_sym_bit_DASHshr2] = ACTIONS(1618), + [anon_sym_bit_DASHand2] = ACTIONS(1618), + [anon_sym_bit_DASHxor2] = ACTIONS(1618), + [anon_sym_bit_DASHor2] = ACTIONS(1618), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [aux_sym__immediate_decimal_token2] = ACTIONS(2694), + [sym_filesize_unit] = ACTIONS(1618), + [sym_duration_unit] = ACTIONS(1620), + [anon_sym_err_GT] = ACTIONS(1618), + [anon_sym_out_GT] = ACTIONS(1618), + [anon_sym_e_GT] = ACTIONS(1618), + [anon_sym_o_GT] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT] = ACTIONS(1618), + [anon_sym_err_GT_GT] = ACTIONS(1618), + [anon_sym_out_GT_GT] = ACTIONS(1618), + [anon_sym_e_GT_GT] = ACTIONS(1618), + [anon_sym_o_GT_GT] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1618), [anon_sym_POUND] = ACTIONS(3), }, [802] = { [sym_comment] = STATE(802), - [anon_sym_STAR_STAR] = ACTIONS(1682), - [anon_sym_PLUS_PLUS] = ACTIONS(1682), - [anon_sym_STAR] = ACTIONS(1680), - [anon_sym_SLASH] = ACTIONS(1680), - [anon_sym_mod] = ACTIONS(1682), - [anon_sym_SLASH_SLASH] = ACTIONS(1682), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_DASH] = ACTIONS(1682), - [anon_sym_bit_DASHshl] = ACTIONS(1682), - [anon_sym_bit_DASHshr] = ACTIONS(1682), - [anon_sym_EQ_TILDE] = ACTIONS(1682), - [anon_sym_BANG_TILDE] = ACTIONS(1682), - [anon_sym_bit_DASHand] = ACTIONS(1682), - [anon_sym_bit_DASHxor] = ACTIONS(1682), - [anon_sym_bit_DASHor] = ACTIONS(1682), - [anon_sym_and] = ACTIONS(1682), - [anon_sym_xor] = ACTIONS(1682), - [anon_sym_or] = ACTIONS(1682), - [anon_sym_in] = ACTIONS(1682), - [anon_sym_not_DASHin] = ACTIONS(1682), - [anon_sym_starts_DASHwith] = ACTIONS(1682), - [anon_sym_ends_DASHwith] = ACTIONS(1682), - [anon_sym_EQ_EQ] = ACTIONS(1682), - [anon_sym_BANG_EQ] = ACTIONS(1682), - [anon_sym_LT] = ACTIONS(1680), - [anon_sym_LT_EQ] = ACTIONS(1682), - [anon_sym_GT] = ACTIONS(1680), - [anon_sym_GT_EQ] = ACTIONS(1682), - [aux_sym_cmd_identifier_token41] = ACTIONS(1680), - [sym__newline] = ACTIONS(1680), - [anon_sym_SEMI] = ACTIONS(1680), - [anon_sym_PIPE] = ACTIONS(1680), - [anon_sym_err_GT_PIPE] = ACTIONS(1680), - [anon_sym_out_GT_PIPE] = ACTIONS(1680), - [anon_sym_e_GT_PIPE] = ACTIONS(1680), - [anon_sym_o_GT_PIPE] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1680), - [anon_sym_GT2] = ACTIONS(1680), - [anon_sym_DASH2] = ACTIONS(1680), - [anon_sym_in2] = ACTIONS(1680), - [anon_sym_RBRACE] = ACTIONS(1680), - [anon_sym_STAR2] = ACTIONS(1680), - [anon_sym_and2] = ACTIONS(1680), - [anon_sym_xor2] = ACTIONS(1680), - [anon_sym_or2] = ACTIONS(1680), - [anon_sym_not_DASHin2] = ACTIONS(1680), - [anon_sym_starts_DASHwith2] = ACTIONS(1680), - [anon_sym_ends_DASHwith2] = ACTIONS(1680), - [anon_sym_EQ_EQ2] = ACTIONS(1680), - [anon_sym_BANG_EQ2] = ACTIONS(1680), - [anon_sym_LT2] = ACTIONS(1680), - [anon_sym_LT_EQ2] = ACTIONS(1680), - [anon_sym_GT_EQ2] = ACTIONS(1680), - [anon_sym_EQ_TILDE2] = ACTIONS(1680), - [anon_sym_BANG_TILDE2] = ACTIONS(1680), - [anon_sym_STAR_STAR2] = ACTIONS(1680), - [anon_sym_PLUS_PLUS2] = ACTIONS(1680), - [anon_sym_SLASH2] = ACTIONS(1680), - [anon_sym_mod2] = ACTIONS(1680), - [anon_sym_SLASH_SLASH2] = ACTIONS(1680), - [anon_sym_PLUS2] = ACTIONS(1680), - [anon_sym_bit_DASHshl2] = ACTIONS(1680), - [anon_sym_bit_DASHshr2] = ACTIONS(1680), - [anon_sym_bit_DASHand2] = ACTIONS(1680), - [anon_sym_bit_DASHxor2] = ACTIONS(1680), - [anon_sym_bit_DASHor2] = ACTIONS(1680), - [anon_sym_DOT_DOT2] = ACTIONS(1680), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1682), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1682), - [sym_filesize_unit] = ACTIONS(1680), - [sym_duration_unit] = ACTIONS(1682), - [anon_sym_COLON2] = ACTIONS(1680), - [anon_sym_err_GT] = ACTIONS(1680), - [anon_sym_out_GT] = ACTIONS(1680), - [anon_sym_e_GT] = ACTIONS(1680), - [anon_sym_o_GT] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT] = ACTIONS(1680), - [anon_sym_err_GT_GT] = ACTIONS(1680), - [anon_sym_out_GT_GT] = ACTIONS(1680), - [anon_sym_e_GT_GT] = ACTIONS(1680), - [anon_sym_o_GT_GT] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1680), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(802), + [aux_sym_cmd_identifier_token1] = ACTIONS(1294), + [aux_sym_cmd_identifier_token2] = ACTIONS(1296), + [aux_sym_cmd_identifier_token3] = ACTIONS(1296), + [aux_sym_cmd_identifier_token4] = ACTIONS(1296), + [aux_sym_cmd_identifier_token5] = ACTIONS(1296), + [aux_sym_cmd_identifier_token6] = ACTIONS(1296), + [aux_sym_cmd_identifier_token7] = ACTIONS(1296), + [aux_sym_cmd_identifier_token8] = ACTIONS(1296), + [aux_sym_cmd_identifier_token9] = ACTIONS(1294), + [aux_sym_cmd_identifier_token10] = ACTIONS(1296), + [aux_sym_cmd_identifier_token11] = ACTIONS(1296), + [aux_sym_cmd_identifier_token12] = ACTIONS(1296), + [aux_sym_cmd_identifier_token13] = ACTIONS(1294), + [aux_sym_cmd_identifier_token14] = ACTIONS(1296), + [aux_sym_cmd_identifier_token15] = ACTIONS(1294), + [aux_sym_cmd_identifier_token16] = ACTIONS(1296), + [aux_sym_cmd_identifier_token17] = ACTIONS(1296), + [aux_sym_cmd_identifier_token18] = ACTIONS(1294), + [aux_sym_cmd_identifier_token19] = ACTIONS(1296), + [aux_sym_cmd_identifier_token20] = ACTIONS(1296), + [aux_sym_cmd_identifier_token21] = ACTIONS(1296), + [aux_sym_cmd_identifier_token22] = ACTIONS(1296), + [aux_sym_cmd_identifier_token23] = ACTIONS(1296), + [aux_sym_cmd_identifier_token24] = ACTIONS(1296), + [aux_sym_cmd_identifier_token25] = ACTIONS(1296), + [aux_sym_cmd_identifier_token26] = ACTIONS(1296), + [aux_sym_cmd_identifier_token27] = ACTIONS(1296), + [aux_sym_cmd_identifier_token28] = ACTIONS(1296), + [aux_sym_cmd_identifier_token29] = ACTIONS(1296), + [aux_sym_cmd_identifier_token30] = ACTIONS(1296), + [aux_sym_cmd_identifier_token31] = ACTIONS(1296), + [aux_sym_cmd_identifier_token32] = ACTIONS(1294), + [aux_sym_cmd_identifier_token33] = ACTIONS(1296), + [aux_sym_cmd_identifier_token34] = ACTIONS(1294), + [aux_sym_cmd_identifier_token35] = ACTIONS(1296), + [aux_sym_cmd_identifier_token36] = ACTIONS(1296), + [aux_sym_cmd_identifier_token37] = ACTIONS(1296), + [aux_sym_cmd_identifier_token38] = ACTIONS(1294), + [aux_sym_cmd_identifier_token39] = ACTIONS(1296), + [aux_sym_cmd_identifier_token40] = ACTIONS(1296), + [sym__newline] = ACTIONS(2696), + [anon_sym_PIPE] = ACTIONS(1296), + [anon_sym_err_GT_PIPE] = ACTIONS(1296), + [anon_sym_out_GT_PIPE] = ACTIONS(1296), + [anon_sym_e_GT_PIPE] = ACTIONS(1296), + [anon_sym_o_GT_PIPE] = ACTIONS(1296), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1296), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1296), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1296), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(1296), + [anon_sym_LPAREN] = ACTIONS(1296), + [anon_sym_DOLLAR] = ACTIONS(1294), + [anon_sym_DASH2] = ACTIONS(1294), + [anon_sym_break] = ACTIONS(1294), + [anon_sym_continue] = ACTIONS(1294), + [anon_sym_do] = ACTIONS(1294), + [anon_sym_if] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1294), + [anon_sym_LBRACE] = ACTIONS(1296), + [anon_sym_DOT_DOT] = ACTIONS(1294), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_return] = ACTIONS(1294), + [anon_sym_where] = ACTIONS(1296), + [aux_sym_expr_unary_token1] = ACTIONS(1296), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1296), + [anon_sym_DOT_DOT_LT] = ACTIONS(1296), + [anon_sym_null] = ACTIONS(1294), + [anon_sym_true] = ACTIONS(1294), + [anon_sym_false] = ACTIONS(1294), + [aux_sym__val_number_decimal_token1] = ACTIONS(1294), + [aux_sym__val_number_decimal_token2] = ACTIONS(1296), + [aux_sym__val_number_decimal_token3] = ACTIONS(1296), + [aux_sym__val_number_decimal_token4] = ACTIONS(1296), + [aux_sym__val_number_token1] = ACTIONS(1296), + [aux_sym__val_number_token2] = ACTIONS(1296), + [aux_sym__val_number_token3] = ACTIONS(1296), + [aux_sym__val_number_token4] = ACTIONS(1294), + [aux_sym__val_number_token5] = ACTIONS(1294), + [aux_sym__val_number_token6] = ACTIONS(1294), + [anon_sym_0b] = ACTIONS(1294), + [anon_sym_0o] = ACTIONS(1294), + [anon_sym_0x] = ACTIONS(1294), + [sym_val_date] = ACTIONS(1296), + [anon_sym_DQUOTE] = ACTIONS(1296), + [sym__str_single_quotes] = ACTIONS(1296), + [sym__str_back_ticks] = ACTIONS(1296), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1296), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1296), + [aux_sym_env_var_token1] = ACTIONS(1294), + [anon_sym_CARET] = ACTIONS(1296), + [aux_sym_command_token1] = ACTIONS(1296), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1296), }, [803] = { + [sym_expr_parenthesized] = STATE(1570), + [sym_val_range] = STATE(1858), + [sym__val_range] = STATE(7756), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(1858), + [sym_val_nothing] = STATE(1832), + [sym_val_bool] = STATE(1602), + [sym_val_variable] = STATE(1533), + [sym_val_number] = STATE(1832), + [sym__val_number_decimal] = STATE(1330), + [sym__val_number] = STATE(1836), + [sym_val_duration] = STATE(1832), + [sym_val_filesize] = STATE(1832), + [sym_val_binary] = STATE(1832), + [sym_val_string] = STATE(1832), + [sym__raw_str] = STATE(1932), + [sym__str_double_quotes] = STATE(1932), + [sym_val_interpolated] = STATE(1832), + [sym__inter_single_quotes] = STATE(1921), + [sym__inter_double_quotes] = STATE(1922), + [sym_val_list] = STATE(1832), + [sym_val_record] = STATE(1832), + [sym_val_table] = STATE(1832), + [sym_val_closure] = STATE(1832), + [sym__flag] = STATE(1858), + [sym_short_flag] = STATE(1764), + [sym_long_flag] = STATE(1764), + [sym_unquoted] = STATE(1635), + [sym__unquoted_with_expr] = STATE(1860), + [sym__unquoted_anonymous_prefix] = STATE(6703), [sym_comment] = STATE(803), - [ts_builtin_sym_end] = ACTIONS(1544), - [anon_sym_STAR_STAR] = ACTIONS(1544), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_STAR] = ACTIONS(1542), - [anon_sym_SLASH] = ACTIONS(1542), - [anon_sym_mod] = ACTIONS(1544), - [anon_sym_SLASH_SLASH] = ACTIONS(1544), - [anon_sym_PLUS] = ACTIONS(1542), - [anon_sym_DASH] = ACTIONS(1544), - [anon_sym_bit_DASHshl] = ACTIONS(1544), - [anon_sym_bit_DASHshr] = ACTIONS(1544), - [anon_sym_EQ_TILDE] = ACTIONS(1544), - [anon_sym_BANG_TILDE] = ACTIONS(1544), - [anon_sym_bit_DASHand] = ACTIONS(1544), - [anon_sym_bit_DASHxor] = ACTIONS(1544), - [anon_sym_bit_DASHor] = ACTIONS(1544), - [anon_sym_and] = ACTIONS(1544), - [anon_sym_xor] = ACTIONS(1544), - [anon_sym_or] = ACTIONS(1544), - [anon_sym_in] = ACTIONS(1544), - [anon_sym_not_DASHin] = ACTIONS(1544), - [anon_sym_starts_DASHwith] = ACTIONS(1544), - [anon_sym_ends_DASHwith] = ACTIONS(1544), - [anon_sym_EQ_EQ] = ACTIONS(1544), - [anon_sym_BANG_EQ] = ACTIONS(1544), - [anon_sym_LT] = ACTIONS(1542), - [anon_sym_LT_EQ] = ACTIONS(1544), - [anon_sym_GT] = ACTIONS(1542), - [anon_sym_GT_EQ] = ACTIONS(1544), - [aux_sym_cmd_identifier_token41] = ACTIONS(1542), - [sym__newline] = ACTIONS(1542), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_err_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_GT_PIPE] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), - [anon_sym_GT2] = ACTIONS(1542), - [anon_sym_DASH2] = ACTIONS(1542), - [anon_sym_in2] = ACTIONS(1542), - [anon_sym_STAR2] = ACTIONS(1542), - [anon_sym_and2] = ACTIONS(1542), - [anon_sym_xor2] = ACTIONS(1542), - [anon_sym_or2] = ACTIONS(1542), - [anon_sym_not_DASHin2] = ACTIONS(1542), - [anon_sym_starts_DASHwith2] = ACTIONS(1542), - [anon_sym_ends_DASHwith2] = ACTIONS(1542), - [anon_sym_EQ_EQ2] = ACTIONS(1542), - [anon_sym_BANG_EQ2] = ACTIONS(1542), - [anon_sym_LT2] = ACTIONS(1542), - [anon_sym_LT_EQ2] = ACTIONS(1542), - [anon_sym_GT_EQ2] = ACTIONS(1542), - [anon_sym_EQ_TILDE2] = ACTIONS(1542), - [anon_sym_BANG_TILDE2] = ACTIONS(1542), - [anon_sym_STAR_STAR2] = ACTIONS(1542), - [anon_sym_PLUS_PLUS2] = ACTIONS(1542), - [anon_sym_SLASH2] = ACTIONS(1542), - [anon_sym_mod2] = ACTIONS(1542), - [anon_sym_SLASH_SLASH2] = ACTIONS(1542), - [anon_sym_PLUS2] = ACTIONS(1542), - [anon_sym_bit_DASHshl2] = ACTIONS(1542), - [anon_sym_bit_DASHshr2] = ACTIONS(1542), - [anon_sym_bit_DASHand2] = ACTIONS(1542), - [anon_sym_bit_DASHxor2] = ACTIONS(1542), - [anon_sym_bit_DASHor2] = ACTIONS(1542), - [anon_sym_DOT_DOT2] = ACTIONS(1542), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1544), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1544), - [sym_filesize_unit] = ACTIONS(1542), - [sym_duration_unit] = ACTIONS(1544), - [anon_sym_err_GT] = ACTIONS(1542), - [anon_sym_out_GT] = ACTIONS(1542), - [anon_sym_e_GT] = ACTIONS(1542), - [anon_sym_o_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT] = ACTIONS(1542), - [anon_sym_err_GT_GT] = ACTIONS(1542), - [anon_sym_out_GT_GT] = ACTIONS(1542), - [anon_sym_e_GT_GT] = ACTIONS(1542), - [anon_sym_o_GT_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_do_repeat2] = STATE(803), + [sym__newline] = ACTIONS(2699), + [anon_sym_SEMI] = ACTIONS(2699), + [anon_sym_PIPE] = ACTIONS(2699), + [anon_sym_err_GT_PIPE] = ACTIONS(2699), + [anon_sym_out_GT_PIPE] = ACTIONS(2699), + [anon_sym_e_GT_PIPE] = ACTIONS(2699), + [anon_sym_o_GT_PIPE] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(2701), + [anon_sym_LPAREN] = ACTIONS(2704), + [anon_sym_RPAREN] = ACTIONS(2699), + [anon_sym_DOLLAR] = ACTIONS(2707), + [anon_sym_DASH_DASH] = ACTIONS(2710), + [anon_sym_DASH2] = ACTIONS(2713), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_RBRACE] = ACTIONS(2699), + [anon_sym_DOT_DOT] = ACTIONS(2719), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2722), + [anon_sym_DOT_DOT_LT] = ACTIONS(2722), + [anon_sym_null] = ACTIONS(2725), + [anon_sym_true] = ACTIONS(2728), + [anon_sym_false] = ACTIONS(2728), + [aux_sym__val_number_decimal_token1] = ACTIONS(2731), + [aux_sym__val_number_decimal_token2] = ACTIONS(2734), + [aux_sym__val_number_decimal_token3] = ACTIONS(2737), + [aux_sym__val_number_decimal_token4] = ACTIONS(2740), + [aux_sym__val_number_token1] = ACTIONS(2743), + [aux_sym__val_number_token2] = ACTIONS(2743), + [aux_sym__val_number_token3] = ACTIONS(2743), + [aux_sym__val_number_token4] = ACTIONS(2746), + [aux_sym__val_number_token5] = ACTIONS(2746), + [aux_sym__val_number_token6] = ACTIONS(2746), + [anon_sym_0b] = ACTIONS(2749), + [anon_sym_0o] = ACTIONS(2752), + [anon_sym_0x] = ACTIONS(2752), + [sym_val_date] = ACTIONS(2755), + [anon_sym_DQUOTE] = ACTIONS(2758), + [sym__str_single_quotes] = ACTIONS(2761), + [sym__str_back_ticks] = ACTIONS(2761), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2764), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2767), + [anon_sym_err_GT] = ACTIONS(2770), + [anon_sym_out_GT] = ACTIONS(2770), + [anon_sym_e_GT] = ACTIONS(2770), + [anon_sym_o_GT] = ACTIONS(2770), + [anon_sym_err_PLUSout_GT] = ACTIONS(2770), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2770), + [anon_sym_o_PLUSe_GT] = ACTIONS(2770), + [anon_sym_e_PLUSo_GT] = ACTIONS(2770), + [anon_sym_err_GT_GT] = ACTIONS(2773), + [anon_sym_out_GT_GT] = ACTIONS(2773), + [anon_sym_e_GT_GT] = ACTIONS(2773), + [anon_sym_o_GT_GT] = ACTIONS(2773), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2773), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2773), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2773), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2773), + [aux_sym_unquoted_token1] = ACTIONS(2776), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2779), }, [804] = { [sym_comment] = STATE(804), - [ts_builtin_sym_end] = ACTIONS(1682), - [anon_sym_STAR_STAR] = ACTIONS(1682), - [anon_sym_PLUS_PLUS] = ACTIONS(1682), - [anon_sym_STAR] = ACTIONS(1680), - [anon_sym_SLASH] = ACTIONS(1680), - [anon_sym_mod] = ACTIONS(1682), - [anon_sym_SLASH_SLASH] = ACTIONS(1682), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_DASH] = ACTIONS(1682), - [anon_sym_bit_DASHshl] = ACTIONS(1682), - [anon_sym_bit_DASHshr] = ACTIONS(1682), - [anon_sym_EQ_TILDE] = ACTIONS(1682), - [anon_sym_BANG_TILDE] = ACTIONS(1682), - [anon_sym_bit_DASHand] = ACTIONS(1682), - [anon_sym_bit_DASHxor] = ACTIONS(1682), - [anon_sym_bit_DASHor] = ACTIONS(1682), - [anon_sym_and] = ACTIONS(1682), - [anon_sym_xor] = ACTIONS(1682), - [anon_sym_or] = ACTIONS(1682), - [anon_sym_in] = ACTIONS(1682), - [anon_sym_not_DASHin] = ACTIONS(1682), - [anon_sym_starts_DASHwith] = ACTIONS(1682), - [anon_sym_ends_DASHwith] = ACTIONS(1682), - [anon_sym_EQ_EQ] = ACTIONS(1682), - [anon_sym_BANG_EQ] = ACTIONS(1682), - [anon_sym_LT] = ACTIONS(1680), - [anon_sym_LT_EQ] = ACTIONS(1682), - [anon_sym_GT] = ACTIONS(1680), - [anon_sym_GT_EQ] = ACTIONS(1682), - [aux_sym_cmd_identifier_token41] = ACTIONS(1680), - [sym__newline] = ACTIONS(1680), - [anon_sym_SEMI] = ACTIONS(1680), - [anon_sym_PIPE] = ACTIONS(1680), - [anon_sym_err_GT_PIPE] = ACTIONS(1680), - [anon_sym_out_GT_PIPE] = ACTIONS(1680), - [anon_sym_e_GT_PIPE] = ACTIONS(1680), - [anon_sym_o_GT_PIPE] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1680), - [anon_sym_GT2] = ACTIONS(1680), - [anon_sym_DASH2] = ACTIONS(1680), - [anon_sym_in2] = ACTIONS(1680), - [anon_sym_STAR2] = ACTIONS(1680), - [anon_sym_and2] = ACTIONS(1680), - [anon_sym_xor2] = ACTIONS(1680), - [anon_sym_or2] = ACTIONS(1680), - [anon_sym_not_DASHin2] = ACTIONS(1680), - [anon_sym_starts_DASHwith2] = ACTIONS(1680), - [anon_sym_ends_DASHwith2] = ACTIONS(1680), - [anon_sym_EQ_EQ2] = ACTIONS(1680), - [anon_sym_BANG_EQ2] = ACTIONS(1680), - [anon_sym_LT2] = ACTIONS(1680), - [anon_sym_LT_EQ2] = ACTIONS(1680), - [anon_sym_GT_EQ2] = ACTIONS(1680), - [anon_sym_EQ_TILDE2] = ACTIONS(1680), - [anon_sym_BANG_TILDE2] = ACTIONS(1680), - [anon_sym_STAR_STAR2] = ACTIONS(1680), - [anon_sym_PLUS_PLUS2] = ACTIONS(1680), - [anon_sym_SLASH2] = ACTIONS(1680), - [anon_sym_mod2] = ACTIONS(1680), - [anon_sym_SLASH_SLASH2] = ACTIONS(1680), - [anon_sym_PLUS2] = ACTIONS(1680), - [anon_sym_bit_DASHshl2] = ACTIONS(1680), - [anon_sym_bit_DASHshr2] = ACTIONS(1680), - [anon_sym_bit_DASHand2] = ACTIONS(1680), - [anon_sym_bit_DASHxor2] = ACTIONS(1680), - [anon_sym_bit_DASHor2] = ACTIONS(1680), - [anon_sym_DOT_DOT2] = ACTIONS(1680), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1682), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1682), - [sym_filesize_unit] = ACTIONS(1680), - [sym_duration_unit] = ACTIONS(1682), - [anon_sym_err_GT] = ACTIONS(1680), - [anon_sym_out_GT] = ACTIONS(1680), - [anon_sym_e_GT] = ACTIONS(1680), - [anon_sym_o_GT] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT] = ACTIONS(1680), - [anon_sym_err_GT_GT] = ACTIONS(1680), - [anon_sym_out_GT_GT] = ACTIONS(1680), - [anon_sym_e_GT_GT] = ACTIONS(1680), - [anon_sym_o_GT_GT] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1680), + [anon_sym_STAR_STAR] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_STAR] = ACTIONS(1504), + [anon_sym_SLASH] = ACTIONS(1504), + [anon_sym_mod] = ACTIONS(1506), + [anon_sym_SLASH_SLASH] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_bit_DASHshl] = ACTIONS(1506), + [anon_sym_bit_DASHshr] = ACTIONS(1506), + [anon_sym_EQ_TILDE] = ACTIONS(1506), + [anon_sym_BANG_TILDE] = ACTIONS(1506), + [anon_sym_bit_DASHand] = ACTIONS(1506), + [anon_sym_bit_DASHxor] = ACTIONS(1506), + [anon_sym_bit_DASHor] = ACTIONS(1506), + [anon_sym_and] = ACTIONS(1506), + [anon_sym_xor] = ACTIONS(1506), + [anon_sym_or] = ACTIONS(1506), + [anon_sym_in] = ACTIONS(1506), + [anon_sym_not_DASHin] = ACTIONS(1506), + [anon_sym_has] = ACTIONS(1506), + [anon_sym_not_DASHhas] = 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_LT] = ACTIONS(1504), + [anon_sym_LT_EQ] = ACTIONS(1506), + [anon_sym_GT] = ACTIONS(1504), + [anon_sym_GT_EQ] = ACTIONS(1506), + [aux_sym_cmd_identifier_token41] = ACTIONS(1504), + [sym__newline] = ACTIONS(1504), + [anon_sym_SEMI] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_err_GT_PIPE] = ACTIONS(1504), + [anon_sym_out_GT_PIPE] = ACTIONS(1504), + [anon_sym_e_GT_PIPE] = ACTIONS(1504), + [anon_sym_o_GT_PIPE] = ACTIONS(1504), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1504), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1504), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1504), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1504), + [anon_sym_GT2] = ACTIONS(1504), + [anon_sym_DASH2] = ACTIONS(1504), + [anon_sym_in2] = ACTIONS(1504), + [anon_sym_STAR2] = ACTIONS(1504), + [anon_sym_and2] = ACTIONS(1504), + [anon_sym_xor2] = ACTIONS(1504), + [anon_sym_or2] = ACTIONS(1504), + [anon_sym_not_DASHin2] = ACTIONS(1504), + [anon_sym_has2] = ACTIONS(1504), + [anon_sym_not_DASHhas2] = ACTIONS(1504), + [anon_sym_starts_DASHwith2] = ACTIONS(1504), + [anon_sym_ends_DASHwith2] = ACTIONS(1504), + [anon_sym_EQ_EQ2] = ACTIONS(1504), + [anon_sym_BANG_EQ2] = ACTIONS(1504), + [anon_sym_LT2] = ACTIONS(1504), + [anon_sym_LT_EQ2] = ACTIONS(1504), + [anon_sym_GT_EQ2] = ACTIONS(1504), + [anon_sym_EQ_TILDE2] = ACTIONS(1504), + [anon_sym_BANG_TILDE2] = ACTIONS(1504), + [anon_sym_STAR_STAR2] = ACTIONS(1504), + [anon_sym_PLUS_PLUS2] = ACTIONS(1504), + [anon_sym_SLASH2] = ACTIONS(1504), + [anon_sym_mod2] = ACTIONS(1504), + [anon_sym_SLASH_SLASH2] = ACTIONS(1504), + [anon_sym_PLUS2] = ACTIONS(1504), + [anon_sym_bit_DASHshl2] = ACTIONS(1504), + [anon_sym_bit_DASHshr2] = ACTIONS(1504), + [anon_sym_bit_DASHand2] = ACTIONS(1504), + [anon_sym_bit_DASHxor2] = ACTIONS(1504), + [anon_sym_bit_DASHor2] = ACTIONS(1504), + [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(1504), + [anon_sym_out_GT_GT] = ACTIONS(1504), + [anon_sym_e_GT_GT] = ACTIONS(1504), + [anon_sym_o_GT_GT] = ACTIONS(1504), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1504), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1504), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1504), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1504), [anon_sym_POUND] = ACTIONS(3), }, [805] = { + [sym_expr_parenthesized] = STATE(1570), + [sym_val_range] = STATE(1858), + [sym__val_range] = STATE(7756), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(1858), + [sym_val_nothing] = STATE(1832), + [sym_val_bool] = STATE(1602), + [sym_val_variable] = STATE(1533), + [sym_val_number] = STATE(1832), + [sym__val_number_decimal] = STATE(1330), + [sym__val_number] = STATE(1836), + [sym_val_duration] = STATE(1832), + [sym_val_filesize] = STATE(1832), + [sym_val_binary] = STATE(1832), + [sym_val_string] = STATE(1832), + [sym__raw_str] = STATE(1932), + [sym__str_double_quotes] = STATE(1932), + [sym_val_interpolated] = STATE(1832), + [sym__inter_single_quotes] = STATE(1921), + [sym__inter_double_quotes] = STATE(1922), + [sym_val_list] = STATE(1832), + [sym_val_record] = STATE(1832), + [sym_val_table] = STATE(1832), + [sym_val_closure] = STATE(1832), + [sym__flag] = STATE(1858), + [sym_short_flag] = STATE(1764), + [sym_long_flag] = STATE(1764), + [sym_unquoted] = STATE(1635), + [sym__unquoted_with_expr] = STATE(1860), + [sym__unquoted_anonymous_prefix] = STATE(6703), [sym_comment] = STATE(805), - [anon_sym_STAR_STAR] = ACTIONS(1544), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_STAR] = ACTIONS(1542), - [anon_sym_SLASH] = ACTIONS(1542), - [anon_sym_mod] = ACTIONS(1544), - [anon_sym_SLASH_SLASH] = ACTIONS(1544), - [anon_sym_PLUS] = ACTIONS(1542), - [anon_sym_DASH] = ACTIONS(1544), - [anon_sym_bit_DASHshl] = ACTIONS(1544), - [anon_sym_bit_DASHshr] = ACTIONS(1544), - [anon_sym_EQ_TILDE] = ACTIONS(1544), - [anon_sym_BANG_TILDE] = ACTIONS(1544), - [anon_sym_bit_DASHand] = ACTIONS(1544), - [anon_sym_bit_DASHxor] = ACTIONS(1544), - [anon_sym_bit_DASHor] = ACTIONS(1544), - [anon_sym_and] = ACTIONS(1544), - [anon_sym_xor] = ACTIONS(1544), - [anon_sym_or] = ACTIONS(1544), - [anon_sym_in] = ACTIONS(1544), - [anon_sym_not_DASHin] = ACTIONS(1544), - [anon_sym_starts_DASHwith] = ACTIONS(1544), - [anon_sym_ends_DASHwith] = ACTIONS(1544), - [anon_sym_EQ_EQ] = ACTIONS(1544), - [anon_sym_BANG_EQ] = ACTIONS(1544), - [anon_sym_LT] = ACTIONS(1542), - [anon_sym_LT_EQ] = ACTIONS(1544), - [anon_sym_GT] = ACTIONS(1542), - [anon_sym_GT_EQ] = ACTIONS(1544), - [aux_sym_cmd_identifier_token41] = ACTIONS(1542), - [sym__newline] = ACTIONS(1542), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_err_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_GT_PIPE] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), - [anon_sym_GT2] = ACTIONS(1542), - [anon_sym_DASH2] = ACTIONS(1542), - [anon_sym_in2] = ACTIONS(1542), - [anon_sym_RBRACE] = ACTIONS(1542), - [anon_sym_STAR2] = ACTIONS(1542), - [anon_sym_and2] = ACTIONS(1542), - [anon_sym_xor2] = ACTIONS(1542), - [anon_sym_or2] = ACTIONS(1542), - [anon_sym_not_DASHin2] = ACTIONS(1542), - [anon_sym_starts_DASHwith2] = ACTIONS(1542), - [anon_sym_ends_DASHwith2] = ACTIONS(1542), - [anon_sym_EQ_EQ2] = ACTIONS(1542), - [anon_sym_BANG_EQ2] = ACTIONS(1542), - [anon_sym_LT2] = ACTIONS(1542), - [anon_sym_LT_EQ2] = ACTIONS(1542), - [anon_sym_GT_EQ2] = ACTIONS(1542), - [anon_sym_EQ_TILDE2] = ACTIONS(1542), - [anon_sym_BANG_TILDE2] = ACTIONS(1542), - [anon_sym_STAR_STAR2] = ACTIONS(1542), - [anon_sym_PLUS_PLUS2] = ACTIONS(1542), - [anon_sym_SLASH2] = ACTIONS(1542), - [anon_sym_mod2] = ACTIONS(1542), - [anon_sym_SLASH_SLASH2] = ACTIONS(1542), - [anon_sym_PLUS2] = ACTIONS(1542), - [anon_sym_bit_DASHshl2] = ACTIONS(1542), - [anon_sym_bit_DASHshr2] = ACTIONS(1542), - [anon_sym_bit_DASHand2] = ACTIONS(1542), - [anon_sym_bit_DASHxor2] = ACTIONS(1542), - [anon_sym_bit_DASHor2] = ACTIONS(1542), - [anon_sym_DOT_DOT2] = ACTIONS(1542), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1544), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1544), - [sym_filesize_unit] = ACTIONS(1542), - [sym_duration_unit] = ACTIONS(1544), - [anon_sym_err_GT] = ACTIONS(1542), - [anon_sym_out_GT] = ACTIONS(1542), - [anon_sym_e_GT] = ACTIONS(1542), - [anon_sym_o_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT] = ACTIONS(1542), - [anon_sym_err_GT_GT] = ACTIONS(1542), - [anon_sym_out_GT_GT] = ACTIONS(1542), - [anon_sym_e_GT_GT] = ACTIONS(1542), - [anon_sym_o_GT_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_do_repeat2] = STATE(803), + [sym__newline] = ACTIONS(2782), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym_PIPE] = ACTIONS(2782), + [anon_sym_err_GT_PIPE] = ACTIONS(2782), + [anon_sym_out_GT_PIPE] = ACTIONS(2782), + [anon_sym_e_GT_PIPE] = ACTIONS(2782), + [anon_sym_o_GT_PIPE] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2782), + [anon_sym_LBRACK] = ACTIONS(2784), + [anon_sym_LPAREN] = ACTIONS(2786), + [anon_sym_RPAREN] = ACTIONS(2782), + [anon_sym_DOLLAR] = ACTIONS(2788), + [anon_sym_DASH_DASH] = ACTIONS(2790), + [anon_sym_DASH2] = ACTIONS(2792), + [anon_sym_LBRACE] = ACTIONS(2794), + [anon_sym_RBRACE] = ACTIONS(2782), + [anon_sym_DOT_DOT] = ACTIONS(2796), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2798), + [anon_sym_DOT_DOT_LT] = ACTIONS(2798), + [anon_sym_null] = ACTIONS(2800), + [anon_sym_true] = ACTIONS(2802), + [anon_sym_false] = ACTIONS(2802), + [aux_sym__val_number_decimal_token1] = ACTIONS(2804), + [aux_sym__val_number_decimal_token2] = ACTIONS(2806), + [aux_sym__val_number_decimal_token3] = ACTIONS(2808), + [aux_sym__val_number_decimal_token4] = ACTIONS(2810), + [aux_sym__val_number_token1] = ACTIONS(2812), + [aux_sym__val_number_token2] = ACTIONS(2812), + [aux_sym__val_number_token3] = ACTIONS(2812), + [aux_sym__val_number_token4] = ACTIONS(2814), + [aux_sym__val_number_token5] = ACTIONS(2814), + [aux_sym__val_number_token6] = ACTIONS(2814), + [anon_sym_0b] = ACTIONS(2816), + [anon_sym_0o] = ACTIONS(2818), + [anon_sym_0x] = ACTIONS(2818), + [sym_val_date] = ACTIONS(2820), + [anon_sym_DQUOTE] = ACTIONS(2822), + [sym__str_single_quotes] = ACTIONS(2824), + [sym__str_back_ticks] = ACTIONS(2824), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2826), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2828), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(2834), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2836), }, [806] = { [sym_comment] = STATE(806), - [anon_sym_STAR_STAR] = ACTIONS(1552), - [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1550), - [anon_sym_SLASH] = ACTIONS(1550), - [anon_sym_mod] = ACTIONS(1552), - [anon_sym_SLASH_SLASH] = ACTIONS(1552), - [anon_sym_PLUS] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1552), - [anon_sym_bit_DASHshl] = ACTIONS(1552), - [anon_sym_bit_DASHshr] = ACTIONS(1552), - [anon_sym_EQ_TILDE] = ACTIONS(1552), - [anon_sym_BANG_TILDE] = ACTIONS(1552), - [anon_sym_bit_DASHand] = ACTIONS(1552), - [anon_sym_bit_DASHxor] = ACTIONS(1552), - [anon_sym_bit_DASHor] = ACTIONS(1552), - [anon_sym_and] = ACTIONS(1552), - [anon_sym_xor] = ACTIONS(1552), - [anon_sym_or] = ACTIONS(1552), - [anon_sym_in] = ACTIONS(1552), - [anon_sym_not_DASHin] = ACTIONS(1552), - [anon_sym_starts_DASHwith] = ACTIONS(1552), - [anon_sym_ends_DASHwith] = ACTIONS(1552), - [anon_sym_EQ_EQ] = ACTIONS(1552), - [anon_sym_BANG_EQ] = ACTIONS(1552), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_LT_EQ] = ACTIONS(1552), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_GT_EQ] = ACTIONS(1552), - [aux_sym_cmd_identifier_token41] = ACTIONS(1550), - [sym__newline] = ACTIONS(1550), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_err_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_GT_PIPE] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1550), - [anon_sym_RPAREN] = ACTIONS(1550), - [anon_sym_GT2] = ACTIONS(1550), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_in2] = ACTIONS(1550), - [anon_sym_STAR2] = ACTIONS(1550), - [anon_sym_and2] = ACTIONS(1550), - [anon_sym_xor2] = ACTIONS(1550), - [anon_sym_or2] = ACTIONS(1550), - [anon_sym_not_DASHin2] = ACTIONS(1550), - [anon_sym_starts_DASHwith2] = ACTIONS(1550), - [anon_sym_ends_DASHwith2] = ACTIONS(1550), - [anon_sym_EQ_EQ2] = ACTIONS(1550), - [anon_sym_BANG_EQ2] = ACTIONS(1550), - [anon_sym_LT2] = ACTIONS(1550), - [anon_sym_LT_EQ2] = ACTIONS(1550), - [anon_sym_GT_EQ2] = ACTIONS(1550), - [anon_sym_EQ_TILDE2] = ACTIONS(1550), - [anon_sym_BANG_TILDE2] = ACTIONS(1550), - [anon_sym_STAR_STAR2] = ACTIONS(1550), - [anon_sym_PLUS_PLUS2] = ACTIONS(1550), - [anon_sym_SLASH2] = ACTIONS(1550), - [anon_sym_mod2] = ACTIONS(1550), - [anon_sym_SLASH_SLASH2] = ACTIONS(1550), - [anon_sym_PLUS2] = ACTIONS(1550), - [anon_sym_bit_DASHshl2] = ACTIONS(1550), - [anon_sym_bit_DASHshr2] = ACTIONS(1550), - [anon_sym_bit_DASHand2] = ACTIONS(1550), - [anon_sym_bit_DASHxor2] = ACTIONS(1550), - [anon_sym_bit_DASHor2] = ACTIONS(1550), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [sym_filesize_unit] = ACTIONS(1550), - [sym_duration_unit] = ACTIONS(1552), - [anon_sym_err_GT] = ACTIONS(1550), - [anon_sym_out_GT] = ACTIONS(1550), - [anon_sym_e_GT] = ACTIONS(1550), - [anon_sym_o_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT] = ACTIONS(1550), - [anon_sym_err_GT_GT] = ACTIONS(1550), - [anon_sym_out_GT_GT] = ACTIONS(1550), - [anon_sym_e_GT_GT] = ACTIONS(1550), - [anon_sym_o_GT_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1550), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token1] = ACTIONS(2838), + [aux_sym_cmd_identifier_token2] = ACTIONS(2840), + [aux_sym_cmd_identifier_token3] = ACTIONS(2840), + [aux_sym_cmd_identifier_token4] = ACTIONS(2840), + [aux_sym_cmd_identifier_token5] = ACTIONS(2840), + [aux_sym_cmd_identifier_token6] = ACTIONS(2840), + [aux_sym_cmd_identifier_token7] = ACTIONS(2840), + [aux_sym_cmd_identifier_token8] = ACTIONS(2840), + [aux_sym_cmd_identifier_token9] = ACTIONS(2838), + [aux_sym_cmd_identifier_token10] = ACTIONS(2840), + [aux_sym_cmd_identifier_token11] = ACTIONS(2840), + [aux_sym_cmd_identifier_token12] = ACTIONS(2840), + [aux_sym_cmd_identifier_token13] = ACTIONS(2838), + [aux_sym_cmd_identifier_token14] = ACTIONS(2840), + [aux_sym_cmd_identifier_token15] = ACTIONS(2838), + [aux_sym_cmd_identifier_token16] = ACTIONS(2840), + [aux_sym_cmd_identifier_token17] = ACTIONS(2840), + [aux_sym_cmd_identifier_token18] = ACTIONS(2838), + [aux_sym_cmd_identifier_token19] = ACTIONS(2840), + [aux_sym_cmd_identifier_token20] = ACTIONS(2840), + [aux_sym_cmd_identifier_token21] = ACTIONS(2840), + [aux_sym_cmd_identifier_token22] = ACTIONS(2840), + [aux_sym_cmd_identifier_token23] = ACTIONS(2840), + [aux_sym_cmd_identifier_token24] = ACTIONS(2840), + [aux_sym_cmd_identifier_token25] = ACTIONS(2840), + [aux_sym_cmd_identifier_token26] = ACTIONS(2840), + [aux_sym_cmd_identifier_token27] = ACTIONS(2840), + [aux_sym_cmd_identifier_token28] = ACTIONS(2840), + [aux_sym_cmd_identifier_token29] = ACTIONS(2840), + [aux_sym_cmd_identifier_token30] = ACTIONS(2840), + [aux_sym_cmd_identifier_token31] = ACTIONS(2840), + [aux_sym_cmd_identifier_token32] = ACTIONS(2838), + [aux_sym_cmd_identifier_token33] = ACTIONS(2840), + [aux_sym_cmd_identifier_token34] = ACTIONS(2838), + [aux_sym_cmd_identifier_token35] = ACTIONS(2840), + [aux_sym_cmd_identifier_token36] = ACTIONS(2840), + [aux_sym_cmd_identifier_token37] = ACTIONS(2840), + [aux_sym_cmd_identifier_token38] = ACTIONS(2838), + [aux_sym_cmd_identifier_token39] = ACTIONS(2840), + [aux_sym_cmd_identifier_token40] = ACTIONS(2840), + [sym__newline] = ACTIONS(1288), + [anon_sym_PIPE] = ACTIONS(1288), + [anon_sym_err_GT_PIPE] = ACTIONS(1288), + [anon_sym_out_GT_PIPE] = ACTIONS(1288), + [anon_sym_e_GT_PIPE] = ACTIONS(1288), + [anon_sym_o_GT_PIPE] = ACTIONS(1288), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1288), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1288), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1288), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1288), + [anon_sym_LBRACK] = ACTIONS(2840), + [anon_sym_LPAREN] = ACTIONS(2840), + [anon_sym_DOLLAR] = ACTIONS(2838), + [anon_sym_DASH2] = ACTIONS(2838), + [anon_sym_break] = ACTIONS(2838), + [anon_sym_continue] = ACTIONS(2838), + [anon_sym_do] = ACTIONS(2838), + [anon_sym_if] = ACTIONS(2838), + [anon_sym_match] = ACTIONS(2838), + [anon_sym_LBRACE] = ACTIONS(2840), + [anon_sym_DOT_DOT] = ACTIONS(2838), + [anon_sym_try] = ACTIONS(2838), + [anon_sym_return] = ACTIONS(2838), + [anon_sym_where] = ACTIONS(2840), + [aux_sym_expr_unary_token1] = ACTIONS(2840), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2840), + [anon_sym_DOT_DOT_LT] = ACTIONS(2840), + [anon_sym_null] = ACTIONS(2838), + [anon_sym_true] = ACTIONS(2838), + [anon_sym_false] = ACTIONS(2838), + [aux_sym__val_number_decimal_token1] = ACTIONS(2838), + [aux_sym__val_number_decimal_token2] = ACTIONS(2840), + [aux_sym__val_number_decimal_token3] = ACTIONS(2840), + [aux_sym__val_number_decimal_token4] = ACTIONS(2840), + [aux_sym__val_number_token1] = ACTIONS(2840), + [aux_sym__val_number_token2] = ACTIONS(2840), + [aux_sym__val_number_token3] = ACTIONS(2840), + [aux_sym__val_number_token4] = ACTIONS(2838), + [aux_sym__val_number_token5] = ACTIONS(2838), + [aux_sym__val_number_token6] = ACTIONS(2838), + [anon_sym_0b] = ACTIONS(2838), + [anon_sym_0o] = ACTIONS(2838), + [anon_sym_0x] = ACTIONS(2838), + [sym_val_date] = ACTIONS(2840), + [anon_sym_DQUOTE] = ACTIONS(2840), + [sym__str_single_quotes] = ACTIONS(2840), + [sym__str_back_ticks] = ACTIONS(2840), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2840), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2840), + [aux_sym_env_var_token1] = ACTIONS(2838), + [anon_sym_CARET] = ACTIONS(2840), + [aux_sym_command_token1] = ACTIONS(2840), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2840), }, [807] = { [sym_comment] = STATE(807), - [anon_sym_STAR_STAR] = ACTIONS(1745), - [anon_sym_PLUS_PLUS] = ACTIONS(1745), - [anon_sym_STAR] = ACTIONS(1743), - [anon_sym_SLASH] = ACTIONS(1743), - [anon_sym_mod] = ACTIONS(1745), - [anon_sym_SLASH_SLASH] = ACTIONS(1745), - [anon_sym_PLUS] = ACTIONS(1743), - [anon_sym_DASH] = ACTIONS(1745), - [anon_sym_bit_DASHshl] = ACTIONS(1745), - [anon_sym_bit_DASHshr] = ACTIONS(1745), - [anon_sym_EQ_TILDE] = ACTIONS(1745), - [anon_sym_BANG_TILDE] = ACTIONS(1745), - [anon_sym_bit_DASHand] = ACTIONS(1745), - [anon_sym_bit_DASHxor] = ACTIONS(1745), - [anon_sym_bit_DASHor] = ACTIONS(1745), - [anon_sym_and] = ACTIONS(1745), - [anon_sym_xor] = ACTIONS(1745), - [anon_sym_or] = ACTIONS(1745), - [anon_sym_in] = ACTIONS(1745), - [anon_sym_not_DASHin] = ACTIONS(1745), - [anon_sym_starts_DASHwith] = ACTIONS(1745), - [anon_sym_ends_DASHwith] = ACTIONS(1745), - [anon_sym_EQ_EQ] = ACTIONS(1745), - [anon_sym_BANG_EQ] = ACTIONS(1745), - [anon_sym_LT] = ACTIONS(1743), - [anon_sym_LT_EQ] = ACTIONS(1745), - [anon_sym_GT] = ACTIONS(1743), - [anon_sym_GT_EQ] = ACTIONS(1745), - [aux_sym_cmd_identifier_token41] = ACTIONS(1743), - [sym__newline] = ACTIONS(1743), - [anon_sym_SEMI] = ACTIONS(1743), - [anon_sym_PIPE] = ACTIONS(1743), - [anon_sym_err_GT_PIPE] = ACTIONS(1743), - [anon_sym_out_GT_PIPE] = ACTIONS(1743), - [anon_sym_e_GT_PIPE] = ACTIONS(1743), - [anon_sym_o_GT_PIPE] = ACTIONS(1743), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1743), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1743), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1743), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1743), - [anon_sym_RPAREN] = ACTIONS(1743), - [anon_sym_GT2] = ACTIONS(1743), - [anon_sym_DASH2] = ACTIONS(1743), - [anon_sym_in2] = ACTIONS(1743), - [anon_sym_STAR2] = ACTIONS(1743), - [anon_sym_and2] = ACTIONS(1743), - [anon_sym_xor2] = ACTIONS(1743), - [anon_sym_or2] = ACTIONS(1743), - [anon_sym_not_DASHin2] = ACTIONS(1743), - [anon_sym_starts_DASHwith2] = ACTIONS(1743), - [anon_sym_ends_DASHwith2] = ACTIONS(1743), - [anon_sym_EQ_EQ2] = ACTIONS(1743), - [anon_sym_BANG_EQ2] = ACTIONS(1743), - [anon_sym_LT2] = ACTIONS(1743), - [anon_sym_LT_EQ2] = ACTIONS(1743), - [anon_sym_GT_EQ2] = ACTIONS(1743), - [anon_sym_EQ_TILDE2] = ACTIONS(1743), - [anon_sym_BANG_TILDE2] = ACTIONS(1743), - [anon_sym_STAR_STAR2] = ACTIONS(1743), - [anon_sym_PLUS_PLUS2] = ACTIONS(1743), - [anon_sym_SLASH2] = ACTIONS(1743), - [anon_sym_mod2] = ACTIONS(1743), - [anon_sym_SLASH_SLASH2] = ACTIONS(1743), - [anon_sym_PLUS2] = ACTIONS(1743), - [anon_sym_bit_DASHshl2] = ACTIONS(1743), - [anon_sym_bit_DASHshr2] = ACTIONS(1743), - [anon_sym_bit_DASHand2] = ACTIONS(1743), - [anon_sym_bit_DASHxor2] = ACTIONS(1743), - [anon_sym_bit_DASHor2] = ACTIONS(1743), - [anon_sym_DOT_DOT2] = ACTIONS(1743), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1745), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1745), - [sym_filesize_unit] = ACTIONS(1743), - [sym_duration_unit] = ACTIONS(1745), - [anon_sym_err_GT] = ACTIONS(1743), - [anon_sym_out_GT] = ACTIONS(1743), - [anon_sym_e_GT] = ACTIONS(1743), - [anon_sym_o_GT] = ACTIONS(1743), - [anon_sym_err_PLUSout_GT] = ACTIONS(1743), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1743), - [anon_sym_o_PLUSe_GT] = ACTIONS(1743), - [anon_sym_e_PLUSo_GT] = ACTIONS(1743), - [anon_sym_err_GT_GT] = ACTIONS(1743), - [anon_sym_out_GT_GT] = ACTIONS(1743), - [anon_sym_e_GT_GT] = ACTIONS(1743), - [anon_sym_o_GT_GT] = ACTIONS(1743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1743), + [anon_sym_STAR_STAR] = ACTIONS(2592), + [anon_sym_PLUS_PLUS] = ACTIONS(2592), + [anon_sym_STAR] = ACTIONS(2594), + [anon_sym_SLASH] = ACTIONS(2594), + [anon_sym_mod] = ACTIONS(2592), + [anon_sym_SLASH_SLASH] = ACTIONS(2592), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2592), + [anon_sym_bit_DASHshl] = ACTIONS(2592), + [anon_sym_bit_DASHshr] = ACTIONS(2592), + [anon_sym_EQ_TILDE] = ACTIONS(2592), + [anon_sym_BANG_TILDE] = ACTIONS(2592), + [anon_sym_bit_DASHand] = ACTIONS(2592), + [anon_sym_bit_DASHxor] = ACTIONS(2592), + [anon_sym_bit_DASHor] = ACTIONS(2592), + [anon_sym_and] = ACTIONS(2592), + [anon_sym_xor] = ACTIONS(2592), + [anon_sym_or] = ACTIONS(2592), + [anon_sym_in] = ACTIONS(2592), + [anon_sym_not_DASHin] = ACTIONS(2592), + [anon_sym_has] = ACTIONS(2592), + [anon_sym_not_DASHhas] = ACTIONS(2592), + [anon_sym_starts_DASHwith] = ACTIONS(2592), + [anon_sym_ends_DASHwith] = ACTIONS(2592), + [anon_sym_EQ_EQ] = ACTIONS(2592), + [anon_sym_BANG_EQ] = ACTIONS(2592), + [anon_sym_LT] = ACTIONS(2594), + [anon_sym_LT_EQ] = ACTIONS(2592), + [anon_sym_GT] = ACTIONS(2594), + [anon_sym_GT_EQ] = ACTIONS(2592), + [aux_sym_cmd_identifier_token41] = ACTIONS(2596), + [sym__newline] = ACTIONS(1639), + [anon_sym_SEMI] = ACTIONS(1639), + [anon_sym_PIPE] = ACTIONS(1639), + [anon_sym_err_GT_PIPE] = ACTIONS(1639), + [anon_sym_out_GT_PIPE] = ACTIONS(1639), + [anon_sym_e_GT_PIPE] = ACTIONS(1639), + [anon_sym_o_GT_PIPE] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1639), + [anon_sym_GT2] = ACTIONS(1639), + [anon_sym_DASH2] = ACTIONS(1639), + [anon_sym_in2] = ACTIONS(1639), + [anon_sym_STAR2] = ACTIONS(1639), + [anon_sym_and2] = ACTIONS(1639), + [anon_sym_xor2] = ACTIONS(1639), + [anon_sym_or2] = ACTIONS(1639), + [anon_sym_not_DASHin2] = ACTIONS(1639), + [anon_sym_has2] = ACTIONS(1639), + [anon_sym_not_DASHhas2] = ACTIONS(1639), + [anon_sym_starts_DASHwith2] = ACTIONS(1639), + [anon_sym_ends_DASHwith2] = ACTIONS(1639), + [anon_sym_EQ_EQ2] = ACTIONS(1639), + [anon_sym_BANG_EQ2] = ACTIONS(1639), + [anon_sym_LT2] = ACTIONS(1639), + [anon_sym_LT_EQ2] = ACTIONS(1639), + [anon_sym_GT_EQ2] = ACTIONS(1639), + [anon_sym_EQ_TILDE2] = ACTIONS(1639), + [anon_sym_BANG_TILDE2] = ACTIONS(1639), + [anon_sym_STAR_STAR2] = ACTIONS(1639), + [anon_sym_PLUS_PLUS2] = ACTIONS(1639), + [anon_sym_SLASH2] = ACTIONS(1639), + [anon_sym_mod2] = ACTIONS(1639), + [anon_sym_SLASH_SLASH2] = ACTIONS(1639), + [anon_sym_PLUS2] = ACTIONS(1639), + [anon_sym_bit_DASHshl2] = ACTIONS(1639), + [anon_sym_bit_DASHshr2] = ACTIONS(1639), + [anon_sym_bit_DASHand2] = ACTIONS(1639), + [anon_sym_bit_DASHxor2] = ACTIONS(1639), + [anon_sym_bit_DASHor2] = ACTIONS(1639), + [anon_sym_DOT_DOT2] = ACTIONS(2584), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2586), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2586), + [sym_filesize_unit] = ACTIONS(2842), + [sym_duration_unit] = ACTIONS(2844), + [anon_sym_err_GT] = ACTIONS(1639), + [anon_sym_out_GT] = ACTIONS(1639), + [anon_sym_e_GT] = ACTIONS(1639), + [anon_sym_o_GT] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT] = ACTIONS(1639), + [anon_sym_err_GT_GT] = ACTIONS(1639), + [anon_sym_out_GT_GT] = ACTIONS(1639), + [anon_sym_e_GT_GT] = ACTIONS(1639), + [anon_sym_o_GT_GT] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1639), [anon_sym_POUND] = ACTIONS(3), }, [808] = { [sym_comment] = STATE(808), - [anon_sym_STAR_STAR] = ACTIONS(1745), - [anon_sym_PLUS_PLUS] = ACTIONS(1745), - [anon_sym_STAR] = ACTIONS(1743), - [anon_sym_SLASH] = ACTIONS(1743), - [anon_sym_mod] = ACTIONS(1745), - [anon_sym_SLASH_SLASH] = ACTIONS(1745), - [anon_sym_PLUS] = ACTIONS(1743), - [anon_sym_DASH] = ACTIONS(1745), - [anon_sym_bit_DASHshl] = ACTIONS(1745), - [anon_sym_bit_DASHshr] = ACTIONS(1745), - [anon_sym_EQ_TILDE] = ACTIONS(1745), - [anon_sym_BANG_TILDE] = ACTIONS(1745), - [anon_sym_bit_DASHand] = ACTIONS(1745), - [anon_sym_bit_DASHxor] = ACTIONS(1745), - [anon_sym_bit_DASHor] = ACTIONS(1745), - [anon_sym_and] = ACTIONS(1745), - [anon_sym_xor] = ACTIONS(1745), - [anon_sym_or] = ACTIONS(1745), - [anon_sym_in] = ACTIONS(1745), - [anon_sym_not_DASHin] = ACTIONS(1745), - [anon_sym_starts_DASHwith] = ACTIONS(1745), - [anon_sym_ends_DASHwith] = ACTIONS(1745), - [anon_sym_EQ_EQ] = ACTIONS(1745), - [anon_sym_BANG_EQ] = ACTIONS(1745), - [anon_sym_LT] = ACTIONS(1743), - [anon_sym_LT_EQ] = ACTIONS(1745), - [anon_sym_GT] = ACTIONS(1743), - [anon_sym_GT_EQ] = ACTIONS(1745), - [aux_sym_cmd_identifier_token41] = ACTIONS(1743), - [sym__newline] = ACTIONS(1743), - [anon_sym_SEMI] = ACTIONS(1743), - [anon_sym_PIPE] = ACTIONS(1743), - [anon_sym_err_GT_PIPE] = ACTIONS(1743), - [anon_sym_out_GT_PIPE] = ACTIONS(1743), - [anon_sym_e_GT_PIPE] = ACTIONS(1743), - [anon_sym_o_GT_PIPE] = ACTIONS(1743), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1743), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1743), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1743), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1743), - [anon_sym_GT2] = ACTIONS(1743), - [anon_sym_DASH2] = ACTIONS(1743), - [anon_sym_in2] = ACTIONS(1743), - [anon_sym_RBRACE] = ACTIONS(1743), - [anon_sym_STAR2] = ACTIONS(1743), - [anon_sym_and2] = ACTIONS(1743), - [anon_sym_xor2] = ACTIONS(1743), - [anon_sym_or2] = ACTIONS(1743), - [anon_sym_not_DASHin2] = ACTIONS(1743), - [anon_sym_starts_DASHwith2] = ACTIONS(1743), - [anon_sym_ends_DASHwith2] = ACTIONS(1743), - [anon_sym_EQ_EQ2] = ACTIONS(1743), - [anon_sym_BANG_EQ2] = ACTIONS(1743), - [anon_sym_LT2] = ACTIONS(1743), - [anon_sym_LT_EQ2] = ACTIONS(1743), - [anon_sym_GT_EQ2] = ACTIONS(1743), - [anon_sym_EQ_TILDE2] = ACTIONS(1743), - [anon_sym_BANG_TILDE2] = ACTIONS(1743), - [anon_sym_STAR_STAR2] = ACTIONS(1743), - [anon_sym_PLUS_PLUS2] = ACTIONS(1743), - [anon_sym_SLASH2] = ACTIONS(1743), - [anon_sym_mod2] = ACTIONS(1743), - [anon_sym_SLASH_SLASH2] = ACTIONS(1743), - [anon_sym_PLUS2] = ACTIONS(1743), - [anon_sym_bit_DASHshl2] = ACTIONS(1743), - [anon_sym_bit_DASHshr2] = ACTIONS(1743), - [anon_sym_bit_DASHand2] = ACTIONS(1743), - [anon_sym_bit_DASHxor2] = ACTIONS(1743), - [anon_sym_bit_DASHor2] = ACTIONS(1743), - [anon_sym_DOT_DOT2] = ACTIONS(1743), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1745), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1745), - [sym_filesize_unit] = ACTIONS(1743), - [sym_duration_unit] = ACTIONS(1745), - [anon_sym_err_GT] = ACTIONS(1743), - [anon_sym_out_GT] = ACTIONS(1743), - [anon_sym_e_GT] = ACTIONS(1743), - [anon_sym_o_GT] = ACTIONS(1743), - [anon_sym_err_PLUSout_GT] = ACTIONS(1743), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1743), - [anon_sym_o_PLUSe_GT] = ACTIONS(1743), - [anon_sym_e_PLUSo_GT] = ACTIONS(1743), - [anon_sym_err_GT_GT] = ACTIONS(1743), - [anon_sym_out_GT_GT] = ACTIONS(1743), - [anon_sym_e_GT_GT] = ACTIONS(1743), - [anon_sym_o_GT_GT] = ACTIONS(1743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1743), + [anon_sym_STAR_STAR] = ACTIONS(1691), + [anon_sym_PLUS_PLUS] = ACTIONS(1691), + [anon_sym_STAR] = ACTIONS(1689), + [anon_sym_SLASH] = ACTIONS(1689), + [anon_sym_mod] = ACTIONS(1691), + [anon_sym_SLASH_SLASH] = ACTIONS(1691), + [anon_sym_PLUS] = ACTIONS(1689), + [anon_sym_DASH] = ACTIONS(1691), + [anon_sym_bit_DASHshl] = ACTIONS(1691), + [anon_sym_bit_DASHshr] = ACTIONS(1691), + [anon_sym_EQ_TILDE] = ACTIONS(1691), + [anon_sym_BANG_TILDE] = ACTIONS(1691), + [anon_sym_bit_DASHand] = ACTIONS(1691), + [anon_sym_bit_DASHxor] = ACTIONS(1691), + [anon_sym_bit_DASHor] = ACTIONS(1691), + [anon_sym_and] = ACTIONS(1691), + [anon_sym_xor] = ACTIONS(1691), + [anon_sym_or] = ACTIONS(1691), + [anon_sym_in] = ACTIONS(1691), + [anon_sym_not_DASHin] = ACTIONS(1691), + [anon_sym_has] = ACTIONS(1691), + [anon_sym_not_DASHhas] = ACTIONS(1691), + [anon_sym_starts_DASHwith] = ACTIONS(1691), + [anon_sym_ends_DASHwith] = ACTIONS(1691), + [anon_sym_EQ_EQ] = ACTIONS(1691), + [anon_sym_BANG_EQ] = ACTIONS(1691), + [anon_sym_LT] = ACTIONS(1689), + [anon_sym_LT_EQ] = ACTIONS(1691), + [anon_sym_GT] = ACTIONS(1689), + [anon_sym_GT_EQ] = ACTIONS(1691), + [aux_sym_cmd_identifier_token41] = ACTIONS(1689), + [sym__newline] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1689), + [anon_sym_PIPE] = ACTIONS(1689), + [anon_sym_err_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_GT_PIPE] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1689), + [anon_sym_GT2] = ACTIONS(1689), + [anon_sym_DASH2] = ACTIONS(1689), + [anon_sym_in2] = ACTIONS(1689), + [anon_sym_STAR2] = ACTIONS(1689), + [anon_sym_and2] = ACTIONS(1689), + [anon_sym_xor2] = ACTIONS(1689), + [anon_sym_or2] = ACTIONS(1689), + [anon_sym_not_DASHin2] = ACTIONS(1689), + [anon_sym_has2] = ACTIONS(1689), + [anon_sym_not_DASHhas2] = ACTIONS(1689), + [anon_sym_starts_DASHwith2] = ACTIONS(1689), + [anon_sym_ends_DASHwith2] = ACTIONS(1689), + [anon_sym_EQ_EQ2] = ACTIONS(1689), + [anon_sym_BANG_EQ2] = ACTIONS(1689), + [anon_sym_LT2] = ACTIONS(1689), + [anon_sym_LT_EQ2] = ACTIONS(1689), + [anon_sym_GT_EQ2] = ACTIONS(1689), + [anon_sym_EQ_TILDE2] = ACTIONS(1689), + [anon_sym_BANG_TILDE2] = ACTIONS(1689), + [anon_sym_STAR_STAR2] = ACTIONS(1689), + [anon_sym_PLUS_PLUS2] = ACTIONS(1689), + [anon_sym_SLASH2] = ACTIONS(1689), + [anon_sym_mod2] = ACTIONS(1689), + [anon_sym_SLASH_SLASH2] = ACTIONS(1689), + [anon_sym_PLUS2] = ACTIONS(1689), + [anon_sym_bit_DASHshl2] = ACTIONS(1689), + [anon_sym_bit_DASHshr2] = ACTIONS(1689), + [anon_sym_bit_DASHand2] = ACTIONS(1689), + [anon_sym_bit_DASHxor2] = ACTIONS(1689), + [anon_sym_bit_DASHor2] = ACTIONS(1689), + [anon_sym_DOT_DOT2] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1691), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1691), + [sym_filesize_unit] = ACTIONS(1689), + [sym_duration_unit] = ACTIONS(1691), + [anon_sym_err_GT] = ACTIONS(1689), + [anon_sym_out_GT] = ACTIONS(1689), + [anon_sym_e_GT] = ACTIONS(1689), + [anon_sym_o_GT] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT] = ACTIONS(1689), + [anon_sym_err_GT_GT] = ACTIONS(1689), + [anon_sym_out_GT_GT] = ACTIONS(1689), + [anon_sym_e_GT_GT] = ACTIONS(1689), + [anon_sym_o_GT_GT] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1689), [anon_sym_POUND] = ACTIONS(3), }, [809] = { [sym_comment] = STATE(809), - [ts_builtin_sym_end] = ACTIONS(1745), - [anon_sym_STAR_STAR] = ACTIONS(1745), - [anon_sym_PLUS_PLUS] = ACTIONS(1745), - [anon_sym_STAR] = ACTIONS(1743), - [anon_sym_SLASH] = ACTIONS(1743), - [anon_sym_mod] = ACTIONS(1745), - [anon_sym_SLASH_SLASH] = ACTIONS(1745), - [anon_sym_PLUS] = ACTIONS(1743), - [anon_sym_DASH] = ACTIONS(1745), - [anon_sym_bit_DASHshl] = ACTIONS(1745), - [anon_sym_bit_DASHshr] = ACTIONS(1745), - [anon_sym_EQ_TILDE] = ACTIONS(1745), - [anon_sym_BANG_TILDE] = ACTIONS(1745), - [anon_sym_bit_DASHand] = ACTIONS(1745), - [anon_sym_bit_DASHxor] = ACTIONS(1745), - [anon_sym_bit_DASHor] = ACTIONS(1745), - [anon_sym_and] = ACTIONS(1745), - [anon_sym_xor] = ACTIONS(1745), - [anon_sym_or] = ACTIONS(1745), - [anon_sym_in] = ACTIONS(1745), - [anon_sym_not_DASHin] = ACTIONS(1745), - [anon_sym_starts_DASHwith] = ACTIONS(1745), - [anon_sym_ends_DASHwith] = ACTIONS(1745), - [anon_sym_EQ_EQ] = ACTIONS(1745), - [anon_sym_BANG_EQ] = ACTIONS(1745), - [anon_sym_LT] = ACTIONS(1743), - [anon_sym_LT_EQ] = ACTIONS(1745), - [anon_sym_GT] = ACTIONS(1743), - [anon_sym_GT_EQ] = ACTIONS(1745), - [aux_sym_cmd_identifier_token41] = ACTIONS(1743), - [sym__newline] = ACTIONS(1743), - [anon_sym_SEMI] = ACTIONS(1743), - [anon_sym_PIPE] = ACTIONS(1743), - [anon_sym_err_GT_PIPE] = ACTIONS(1743), - [anon_sym_out_GT_PIPE] = ACTIONS(1743), - [anon_sym_e_GT_PIPE] = ACTIONS(1743), - [anon_sym_o_GT_PIPE] = ACTIONS(1743), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1743), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1743), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1743), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1743), - [anon_sym_GT2] = ACTIONS(1743), - [anon_sym_DASH2] = ACTIONS(1743), - [anon_sym_in2] = ACTIONS(1743), - [anon_sym_STAR2] = ACTIONS(1743), - [anon_sym_and2] = ACTIONS(1743), - [anon_sym_xor2] = ACTIONS(1743), - [anon_sym_or2] = ACTIONS(1743), - [anon_sym_not_DASHin2] = ACTIONS(1743), - [anon_sym_starts_DASHwith2] = ACTIONS(1743), - [anon_sym_ends_DASHwith2] = ACTIONS(1743), - [anon_sym_EQ_EQ2] = ACTIONS(1743), - [anon_sym_BANG_EQ2] = ACTIONS(1743), - [anon_sym_LT2] = ACTIONS(1743), - [anon_sym_LT_EQ2] = ACTIONS(1743), - [anon_sym_GT_EQ2] = ACTIONS(1743), - [anon_sym_EQ_TILDE2] = ACTIONS(1743), - [anon_sym_BANG_TILDE2] = ACTIONS(1743), - [anon_sym_STAR_STAR2] = ACTIONS(1743), - [anon_sym_PLUS_PLUS2] = ACTIONS(1743), - [anon_sym_SLASH2] = ACTIONS(1743), - [anon_sym_mod2] = ACTIONS(1743), - [anon_sym_SLASH_SLASH2] = ACTIONS(1743), - [anon_sym_PLUS2] = ACTIONS(1743), - [anon_sym_bit_DASHshl2] = ACTIONS(1743), - [anon_sym_bit_DASHshr2] = ACTIONS(1743), - [anon_sym_bit_DASHand2] = ACTIONS(1743), - [anon_sym_bit_DASHxor2] = ACTIONS(1743), - [anon_sym_bit_DASHor2] = ACTIONS(1743), - [anon_sym_DOT_DOT2] = ACTIONS(1743), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1745), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1745), - [sym_filesize_unit] = ACTIONS(1743), - [sym_duration_unit] = ACTIONS(1745), - [anon_sym_err_GT] = ACTIONS(1743), - [anon_sym_out_GT] = ACTIONS(1743), - [anon_sym_e_GT] = ACTIONS(1743), - [anon_sym_o_GT] = ACTIONS(1743), - [anon_sym_err_PLUSout_GT] = ACTIONS(1743), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1743), - [anon_sym_o_PLUSe_GT] = ACTIONS(1743), - [anon_sym_e_PLUSo_GT] = ACTIONS(1743), - [anon_sym_err_GT_GT] = ACTIONS(1743), - [anon_sym_out_GT_GT] = ACTIONS(1743), - [anon_sym_e_GT_GT] = ACTIONS(1743), - [anon_sym_o_GT_GT] = ACTIONS(1743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1743), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token1] = ACTIONS(1290), + [aux_sym_cmd_identifier_token2] = ACTIONS(1288), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [aux_sym_cmd_identifier_token6] = ACTIONS(1288), + [aux_sym_cmd_identifier_token7] = ACTIONS(1288), + [aux_sym_cmd_identifier_token8] = ACTIONS(1288), + [aux_sym_cmd_identifier_token9] = ACTIONS(1290), + [aux_sym_cmd_identifier_token10] = ACTIONS(1288), + [aux_sym_cmd_identifier_token11] = ACTIONS(1288), + [aux_sym_cmd_identifier_token12] = ACTIONS(1288), + [aux_sym_cmd_identifier_token13] = ACTIONS(1290), + [aux_sym_cmd_identifier_token14] = ACTIONS(1288), + [aux_sym_cmd_identifier_token15] = ACTIONS(1290), + [aux_sym_cmd_identifier_token16] = ACTIONS(1288), + [aux_sym_cmd_identifier_token17] = ACTIONS(1288), + [aux_sym_cmd_identifier_token18] = ACTIONS(1290), + [aux_sym_cmd_identifier_token19] = ACTIONS(1288), + [aux_sym_cmd_identifier_token20] = ACTIONS(1288), + [aux_sym_cmd_identifier_token21] = ACTIONS(1288), + [aux_sym_cmd_identifier_token22] = ACTIONS(1288), + [aux_sym_cmd_identifier_token23] = ACTIONS(1288), + [aux_sym_cmd_identifier_token24] = ACTIONS(1288), + [aux_sym_cmd_identifier_token25] = ACTIONS(1288), + [aux_sym_cmd_identifier_token26] = ACTIONS(1288), + [aux_sym_cmd_identifier_token27] = ACTIONS(1288), + [aux_sym_cmd_identifier_token28] = ACTIONS(1288), + [aux_sym_cmd_identifier_token29] = ACTIONS(1288), + [aux_sym_cmd_identifier_token30] = ACTIONS(1288), + [aux_sym_cmd_identifier_token31] = ACTIONS(1288), + [aux_sym_cmd_identifier_token32] = ACTIONS(1290), + [aux_sym_cmd_identifier_token33] = ACTIONS(1288), + [aux_sym_cmd_identifier_token34] = ACTIONS(1290), + [aux_sym_cmd_identifier_token35] = ACTIONS(1288), + [aux_sym_cmd_identifier_token36] = ACTIONS(1288), + [aux_sym_cmd_identifier_token37] = ACTIONS(1288), + [aux_sym_cmd_identifier_token38] = ACTIONS(1290), + [aux_sym_cmd_identifier_token39] = ACTIONS(1288), + [aux_sym_cmd_identifier_token40] = ACTIONS(1288), + [sym__newline] = ACTIONS(1288), + [anon_sym_PIPE] = ACTIONS(1288), + [anon_sym_err_GT_PIPE] = ACTIONS(1288), + [anon_sym_out_GT_PIPE] = ACTIONS(1288), + [anon_sym_e_GT_PIPE] = ACTIONS(1288), + [anon_sym_o_GT_PIPE] = ACTIONS(1288), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1288), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1288), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1288), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1288), + [anon_sym_LBRACK] = ACTIONS(1288), + [anon_sym_LPAREN] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1290), + [anon_sym_DASH2] = ACTIONS(1290), + [anon_sym_break] = ACTIONS(1290), + [anon_sym_continue] = ACTIONS(1290), + [anon_sym_do] = ACTIONS(1290), + [anon_sym_if] = ACTIONS(1290), + [anon_sym_match] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1288), + [anon_sym_DOT_DOT] = ACTIONS(1290), + [anon_sym_try] = ACTIONS(1290), + [anon_sym_return] = ACTIONS(1290), + [anon_sym_where] = ACTIONS(1288), + [aux_sym_expr_unary_token1] = ACTIONS(1288), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1288), + [anon_sym_DOT_DOT_LT] = ACTIONS(1288), + [anon_sym_null] = ACTIONS(1290), + [anon_sym_true] = ACTIONS(1290), + [anon_sym_false] = ACTIONS(1290), + [aux_sym__val_number_decimal_token1] = ACTIONS(1290), + [aux_sym__val_number_decimal_token2] = ACTIONS(1288), + [aux_sym__val_number_decimal_token3] = ACTIONS(1288), + [aux_sym__val_number_decimal_token4] = ACTIONS(1288), + [aux_sym__val_number_token1] = ACTIONS(1288), + [aux_sym__val_number_token2] = ACTIONS(1288), + [aux_sym__val_number_token3] = ACTIONS(1288), + [aux_sym__val_number_token4] = ACTIONS(1290), + [aux_sym__val_number_token5] = ACTIONS(1290), + [aux_sym__val_number_token6] = ACTIONS(1290), + [anon_sym_0b] = ACTIONS(1290), + [anon_sym_0o] = ACTIONS(1290), + [anon_sym_0x] = ACTIONS(1290), + [sym_val_date] = ACTIONS(1288), + [anon_sym_DQUOTE] = ACTIONS(1288), + [sym__str_single_quotes] = ACTIONS(1288), + [sym__str_back_ticks] = ACTIONS(1288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1288), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1288), + [aux_sym_env_var_token1] = ACTIONS(1290), + [anon_sym_CARET] = ACTIONS(1288), + [aux_sym_command_token1] = ACTIONS(1288), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1288), }, [810] = { [sym_comment] = STATE(810), - [anon_sym_STAR_STAR] = ACTIONS(1682), - [anon_sym_PLUS_PLUS] = ACTIONS(1682), - [anon_sym_STAR] = ACTIONS(1680), - [anon_sym_SLASH] = ACTIONS(1680), - [anon_sym_mod] = ACTIONS(1682), - [anon_sym_SLASH_SLASH] = ACTIONS(1682), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_DASH] = ACTIONS(1682), - [anon_sym_bit_DASHshl] = ACTIONS(1682), - [anon_sym_bit_DASHshr] = ACTIONS(1682), - [anon_sym_EQ_TILDE] = ACTIONS(1682), - [anon_sym_BANG_TILDE] = ACTIONS(1682), - [anon_sym_bit_DASHand] = ACTIONS(1682), - [anon_sym_bit_DASHxor] = ACTIONS(1682), - [anon_sym_bit_DASHor] = ACTIONS(1682), - [anon_sym_and] = ACTIONS(1682), - [anon_sym_xor] = ACTIONS(1682), - [anon_sym_or] = ACTIONS(1682), - [anon_sym_in] = ACTIONS(1682), - [anon_sym_not_DASHin] = ACTIONS(1682), - [anon_sym_starts_DASHwith] = ACTIONS(1682), - [anon_sym_ends_DASHwith] = ACTIONS(1682), - [anon_sym_EQ_EQ] = ACTIONS(1682), - [anon_sym_BANG_EQ] = ACTIONS(1682), - [anon_sym_LT] = ACTIONS(1680), - [anon_sym_LT_EQ] = ACTIONS(1682), - [anon_sym_GT] = ACTIONS(1680), - [anon_sym_GT_EQ] = ACTIONS(1682), - [aux_sym_cmd_identifier_token41] = ACTIONS(1680), - [sym__newline] = ACTIONS(1680), - [anon_sym_SEMI] = ACTIONS(1680), - [anon_sym_PIPE] = ACTIONS(1680), - [anon_sym_err_GT_PIPE] = ACTIONS(1680), - [anon_sym_out_GT_PIPE] = ACTIONS(1680), - [anon_sym_e_GT_PIPE] = ACTIONS(1680), - [anon_sym_o_GT_PIPE] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1680), - [anon_sym_GT2] = ACTIONS(1680), - [anon_sym_DASH2] = ACTIONS(1680), - [anon_sym_in2] = ACTIONS(1680), - [anon_sym_STAR2] = ACTIONS(1680), - [anon_sym_and2] = ACTIONS(1680), - [anon_sym_xor2] = ACTIONS(1680), - [anon_sym_or2] = ACTIONS(1680), - [anon_sym_not_DASHin2] = ACTIONS(1680), - [anon_sym_starts_DASHwith2] = ACTIONS(1680), - [anon_sym_ends_DASHwith2] = ACTIONS(1680), - [anon_sym_EQ_EQ2] = ACTIONS(1680), - [anon_sym_BANG_EQ2] = ACTIONS(1680), - [anon_sym_LT2] = ACTIONS(1680), - [anon_sym_LT_EQ2] = ACTIONS(1680), - [anon_sym_GT_EQ2] = ACTIONS(1680), - [anon_sym_EQ_TILDE2] = ACTIONS(1680), - [anon_sym_BANG_TILDE2] = ACTIONS(1680), - [anon_sym_STAR_STAR2] = ACTIONS(1680), - [anon_sym_PLUS_PLUS2] = ACTIONS(1680), - [anon_sym_SLASH2] = ACTIONS(1680), - [anon_sym_mod2] = ACTIONS(1680), - [anon_sym_SLASH_SLASH2] = ACTIONS(1680), - [anon_sym_PLUS2] = ACTIONS(1680), - [anon_sym_bit_DASHshl2] = ACTIONS(1680), - [anon_sym_bit_DASHshr2] = ACTIONS(1680), - [anon_sym_bit_DASHand2] = ACTIONS(1680), - [anon_sym_bit_DASHxor2] = ACTIONS(1680), - [anon_sym_bit_DASHor2] = ACTIONS(1680), - [anon_sym_DOT_DOT2] = ACTIONS(1680), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1682), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1682), - [aux_sym__immediate_decimal_token2] = ACTIONS(3052), - [sym_filesize_unit] = ACTIONS(1680), - [sym_duration_unit] = ACTIONS(1682), - [anon_sym_err_GT] = ACTIONS(1680), - [anon_sym_out_GT] = ACTIONS(1680), - [anon_sym_e_GT] = ACTIONS(1680), - [anon_sym_o_GT] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT] = ACTIONS(1680), - [anon_sym_err_GT_GT] = ACTIONS(1680), - [anon_sym_out_GT_GT] = ACTIONS(1680), - [anon_sym_e_GT_GT] = ACTIONS(1680), - [anon_sym_o_GT_GT] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1680), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token1] = ACTIONS(2568), + [aux_sym_cmd_identifier_token2] = ACTIONS(2570), + [aux_sym_cmd_identifier_token3] = ACTIONS(2570), + [aux_sym_cmd_identifier_token4] = ACTIONS(2570), + [aux_sym_cmd_identifier_token5] = ACTIONS(2570), + [aux_sym_cmd_identifier_token6] = ACTIONS(2570), + [aux_sym_cmd_identifier_token7] = ACTIONS(2570), + [aux_sym_cmd_identifier_token8] = ACTIONS(2570), + [aux_sym_cmd_identifier_token9] = ACTIONS(2568), + [aux_sym_cmd_identifier_token10] = ACTIONS(2570), + [aux_sym_cmd_identifier_token11] = ACTIONS(2570), + [aux_sym_cmd_identifier_token12] = ACTIONS(2570), + [aux_sym_cmd_identifier_token13] = ACTIONS(2568), + [aux_sym_cmd_identifier_token14] = ACTIONS(2570), + [aux_sym_cmd_identifier_token15] = ACTIONS(2568), + [aux_sym_cmd_identifier_token16] = ACTIONS(2570), + [aux_sym_cmd_identifier_token17] = ACTIONS(2570), + [aux_sym_cmd_identifier_token18] = ACTIONS(2568), + [aux_sym_cmd_identifier_token19] = ACTIONS(2570), + [aux_sym_cmd_identifier_token20] = ACTIONS(2570), + [aux_sym_cmd_identifier_token21] = ACTIONS(2570), + [aux_sym_cmd_identifier_token22] = ACTIONS(2570), + [aux_sym_cmd_identifier_token23] = ACTIONS(2570), + [aux_sym_cmd_identifier_token24] = ACTIONS(2570), + [aux_sym_cmd_identifier_token25] = ACTIONS(2570), + [aux_sym_cmd_identifier_token26] = ACTIONS(2570), + [aux_sym_cmd_identifier_token27] = ACTIONS(2570), + [aux_sym_cmd_identifier_token28] = ACTIONS(2570), + [aux_sym_cmd_identifier_token29] = ACTIONS(2570), + [aux_sym_cmd_identifier_token30] = ACTIONS(2570), + [aux_sym_cmd_identifier_token31] = ACTIONS(2570), + [aux_sym_cmd_identifier_token32] = ACTIONS(2568), + [aux_sym_cmd_identifier_token33] = ACTIONS(2570), + [aux_sym_cmd_identifier_token34] = ACTIONS(2568), + [aux_sym_cmd_identifier_token35] = ACTIONS(2570), + [aux_sym_cmd_identifier_token36] = ACTIONS(2570), + [aux_sym_cmd_identifier_token37] = ACTIONS(2570), + [aux_sym_cmd_identifier_token38] = ACTIONS(2568), + [aux_sym_cmd_identifier_token39] = ACTIONS(2570), + [aux_sym_cmd_identifier_token40] = ACTIONS(2570), + [sym__newline] = ACTIONS(2570), + [anon_sym_PIPE] = ACTIONS(2570), + [anon_sym_err_GT_PIPE] = ACTIONS(2570), + [anon_sym_out_GT_PIPE] = ACTIONS(2570), + [anon_sym_e_GT_PIPE] = ACTIONS(2570), + [anon_sym_o_GT_PIPE] = ACTIONS(2570), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2570), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2570), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2570), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2570), + [anon_sym_LBRACK] = ACTIONS(2570), + [anon_sym_LPAREN] = ACTIONS(2570), + [anon_sym_DOLLAR] = ACTIONS(2568), + [anon_sym_DASH2] = ACTIONS(2568), + [anon_sym_break] = ACTIONS(2568), + [anon_sym_continue] = ACTIONS(2568), + [anon_sym_do] = ACTIONS(2568), + [anon_sym_if] = ACTIONS(2568), + [anon_sym_match] = ACTIONS(2568), + [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_DOT_DOT] = ACTIONS(2568), + [anon_sym_try] = ACTIONS(2568), + [anon_sym_return] = ACTIONS(2568), + [anon_sym_where] = ACTIONS(2570), + [aux_sym_expr_unary_token1] = ACTIONS(2570), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2570), + [anon_sym_DOT_DOT_LT] = ACTIONS(2570), + [anon_sym_null] = ACTIONS(2568), + [anon_sym_true] = ACTIONS(2568), + [anon_sym_false] = ACTIONS(2568), + [aux_sym__val_number_decimal_token1] = ACTIONS(2568), + [aux_sym__val_number_decimal_token2] = ACTIONS(2570), + [aux_sym__val_number_decimal_token3] = ACTIONS(2570), + [aux_sym__val_number_decimal_token4] = ACTIONS(2570), + [aux_sym__val_number_token1] = ACTIONS(2570), + [aux_sym__val_number_token2] = ACTIONS(2570), + [aux_sym__val_number_token3] = ACTIONS(2570), + [aux_sym__val_number_token4] = ACTIONS(2568), + [aux_sym__val_number_token5] = ACTIONS(2568), + [aux_sym__val_number_token6] = ACTIONS(2568), + [anon_sym_0b] = ACTIONS(2568), + [anon_sym_0o] = ACTIONS(2568), + [anon_sym_0x] = ACTIONS(2568), + [sym_val_date] = ACTIONS(2570), + [anon_sym_DQUOTE] = ACTIONS(2570), + [sym__str_single_quotes] = ACTIONS(2570), + [sym__str_back_ticks] = ACTIONS(2570), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2570), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2570), + [aux_sym_env_var_token1] = ACTIONS(2568), + [anon_sym_CARET] = ACTIONS(2570), + [aux_sym_command_token1] = ACTIONS(2570), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2570), }, [811] = { + [sym_expr_parenthesized] = STATE(1633), + [sym_val_range] = STATE(2065), + [sym__val_range] = STATE(7756), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2065), + [sym_val_nothing] = STATE(1832), + [sym_val_bool] = STATE(1602), + [sym_val_variable] = STATE(1533), + [sym_val_number] = STATE(1832), + [sym__val_number_decimal] = STATE(1330), + [sym__val_number] = STATE(1836), + [sym_val_duration] = STATE(1832), + [sym_val_filesize] = STATE(1832), + [sym_val_binary] = STATE(1832), + [sym_val_string] = STATE(1832), + [sym__raw_str] = STATE(1932), + [sym__str_double_quotes] = STATE(1932), + [sym_val_interpolated] = STATE(1832), + [sym__inter_single_quotes] = STATE(1921), + [sym__inter_double_quotes] = STATE(1922), + [sym_val_list] = STATE(1832), + [sym_val_record] = STATE(1832), + [sym_val_table] = STATE(1832), + [sym_val_closure] = STATE(1832), + [sym__flag] = STATE(2065), + [sym_short_flag] = STATE(1764), + [sym_long_flag] = STATE(1764), + [sym_unquoted] = STATE(1671), + [sym__unquoted_with_expr] = STATE(2069), + [sym__unquoted_anonymous_prefix] = STATE(6703), [sym_comment] = STATE(811), - [anon_sym_STAR_STAR] = ACTIONS(3054), - [anon_sym_PLUS_PLUS] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3056), - [anon_sym_SLASH] = ACTIONS(3056), - [anon_sym_mod] = ACTIONS(3054), - [anon_sym_SLASH_SLASH] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(3056), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_bit_DASHshl] = ACTIONS(3054), - [anon_sym_bit_DASHshr] = ACTIONS(3054), - [anon_sym_EQ_TILDE] = ACTIONS(3054), - [anon_sym_BANG_TILDE] = ACTIONS(3054), - [anon_sym_bit_DASHand] = ACTIONS(3054), - [anon_sym_bit_DASHxor] = ACTIONS(3054), - [anon_sym_bit_DASHor] = ACTIONS(3054), - [anon_sym_and] = ACTIONS(3054), - [anon_sym_xor] = ACTIONS(3054), - [anon_sym_or] = ACTIONS(3054), - [anon_sym_in] = ACTIONS(3054), - [anon_sym_not_DASHin] = ACTIONS(3054), - [anon_sym_starts_DASHwith] = ACTIONS(3054), - [anon_sym_ends_DASHwith] = ACTIONS(3054), - [anon_sym_EQ_EQ] = ACTIONS(3054), - [anon_sym_BANG_EQ] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_LT_EQ] = ACTIONS(3054), - [anon_sym_GT] = ACTIONS(3056), - [anon_sym_GT_EQ] = ACTIONS(3054), - [aux_sym_cmd_identifier_token41] = ACTIONS(3058), - [sym__newline] = ACTIONS(1638), - [anon_sym_SEMI] = ACTIONS(1638), - [anon_sym_PIPE] = ACTIONS(1638), - [anon_sym_err_GT_PIPE] = ACTIONS(1638), - [anon_sym_out_GT_PIPE] = ACTIONS(1638), - [anon_sym_e_GT_PIPE] = ACTIONS(1638), - [anon_sym_o_GT_PIPE] = ACTIONS(1638), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1638), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1638), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1638), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1638), - [anon_sym_RPAREN] = ACTIONS(1638), - [anon_sym_GT2] = ACTIONS(1638), - [anon_sym_DASH2] = ACTIONS(1638), - [anon_sym_in2] = ACTIONS(1638), - [anon_sym_STAR2] = ACTIONS(1638), - [anon_sym_and2] = ACTIONS(1638), - [anon_sym_xor2] = ACTIONS(1638), - [anon_sym_or2] = ACTIONS(1638), - [anon_sym_not_DASHin2] = ACTIONS(1638), - [anon_sym_starts_DASHwith2] = ACTIONS(1638), - [anon_sym_ends_DASHwith2] = ACTIONS(1638), - [anon_sym_EQ_EQ2] = ACTIONS(1638), - [anon_sym_BANG_EQ2] = ACTIONS(1638), - [anon_sym_LT2] = ACTIONS(1638), - [anon_sym_LT_EQ2] = ACTIONS(1638), - [anon_sym_GT_EQ2] = ACTIONS(1638), - [anon_sym_EQ_TILDE2] = ACTIONS(1638), - [anon_sym_BANG_TILDE2] = ACTIONS(1638), - [anon_sym_STAR_STAR2] = ACTIONS(1638), - [anon_sym_PLUS_PLUS2] = ACTIONS(1638), - [anon_sym_SLASH2] = ACTIONS(1638), - [anon_sym_mod2] = ACTIONS(1638), - [anon_sym_SLASH_SLASH2] = ACTIONS(1638), - [anon_sym_PLUS2] = ACTIONS(1638), - [anon_sym_bit_DASHshl2] = ACTIONS(1638), - [anon_sym_bit_DASHshr2] = ACTIONS(1638), - [anon_sym_bit_DASHand2] = ACTIONS(1638), - [anon_sym_bit_DASHxor2] = ACTIONS(1638), - [anon_sym_bit_DASHor2] = ACTIONS(1638), - [anon_sym_DOT_DOT2] = ACTIONS(3044), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3046), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3046), - [sym_filesize_unit] = ACTIONS(3060), - [sym_duration_unit] = ACTIONS(3062), - [anon_sym_err_GT] = ACTIONS(1638), - [anon_sym_out_GT] = ACTIONS(1638), - [anon_sym_e_GT] = ACTIONS(1638), - [anon_sym_o_GT] = ACTIONS(1638), - [anon_sym_err_PLUSout_GT] = ACTIONS(1638), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1638), - [anon_sym_o_PLUSe_GT] = ACTIONS(1638), - [anon_sym_e_PLUSo_GT] = ACTIONS(1638), - [anon_sym_err_GT_GT] = ACTIONS(1638), - [anon_sym_out_GT_GT] = ACTIONS(1638), - [anon_sym_e_GT_GT] = ACTIONS(1638), - [anon_sym_o_GT_GT] = ACTIONS(1638), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1638), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1638), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1638), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1638), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(1049), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(823), + [sym__newline] = ACTIONS(2846), + [anon_sym_SEMI] = ACTIONS(2849), + [anon_sym_PIPE] = ACTIONS(2849), + [anon_sym_err_GT_PIPE] = ACTIONS(2849), + [anon_sym_out_GT_PIPE] = ACTIONS(2849), + [anon_sym_e_GT_PIPE] = ACTIONS(2849), + [anon_sym_o_GT_PIPE] = ACTIONS(2849), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2849), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2849), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2849), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2849), + [anon_sym_LBRACK] = ACTIONS(2784), + [anon_sym_LPAREN] = ACTIONS(2786), + [anon_sym_RPAREN] = ACTIONS(2849), + [anon_sym_DOLLAR] = ACTIONS(2788), + [anon_sym_DASH_DASH] = ACTIONS(2790), + [anon_sym_DASH2] = ACTIONS(2792), + [anon_sym_LBRACE] = ACTIONS(2794), + [anon_sym_DOT_DOT] = ACTIONS(2796), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2798), + [anon_sym_DOT_DOT_LT] = ACTIONS(2798), + [anon_sym_null] = ACTIONS(2800), + [anon_sym_true] = ACTIONS(2802), + [anon_sym_false] = ACTIONS(2802), + [aux_sym__val_number_decimal_token1] = ACTIONS(2804), + [aux_sym__val_number_decimal_token2] = ACTIONS(2806), + [aux_sym__val_number_decimal_token3] = ACTIONS(2808), + [aux_sym__val_number_decimal_token4] = ACTIONS(2810), + [aux_sym__val_number_token1] = ACTIONS(2812), + [aux_sym__val_number_token2] = ACTIONS(2812), + [aux_sym__val_number_token3] = ACTIONS(2812), + [aux_sym__val_number_token4] = ACTIONS(2814), + [aux_sym__val_number_token5] = ACTIONS(2814), + [aux_sym__val_number_token6] = ACTIONS(2814), + [anon_sym_0b] = ACTIONS(2816), + [anon_sym_0o] = ACTIONS(2818), + [anon_sym_0x] = ACTIONS(2818), + [sym_val_date] = ACTIONS(2820), + [anon_sym_DQUOTE] = ACTIONS(2822), + [sym__str_single_quotes] = ACTIONS(2824), + [sym__str_back_ticks] = ACTIONS(2824), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2826), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2828), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(2834), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2836), }, [812] = { + [sym_expr_parenthesized] = STATE(1633), + [sym_val_range] = STATE(2065), + [sym__val_range] = STATE(7756), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2065), + [sym_val_nothing] = STATE(1832), + [sym_val_bool] = STATE(1602), + [sym_val_variable] = STATE(1533), + [sym_val_number] = STATE(1832), + [sym__val_number_decimal] = STATE(1330), + [sym__val_number] = STATE(1836), + [sym_val_duration] = STATE(1832), + [sym_val_filesize] = STATE(1832), + [sym_val_binary] = STATE(1832), + [sym_val_string] = STATE(1832), + [sym__raw_str] = STATE(1932), + [sym__str_double_quotes] = STATE(1932), + [sym_val_interpolated] = STATE(1832), + [sym__inter_single_quotes] = STATE(1921), + [sym__inter_double_quotes] = STATE(1922), + [sym_val_list] = STATE(1832), + [sym_val_record] = STATE(1832), + [sym_val_table] = STATE(1832), + [sym_val_closure] = STATE(1832), + [sym__flag] = STATE(2065), + [sym_short_flag] = STATE(1764), + [sym_long_flag] = STATE(1764), + [sym_unquoted] = STATE(1671), + [sym__unquoted_with_expr] = STATE(2069), + [sym__unquoted_anonymous_prefix] = STATE(6703), [sym_comment] = STATE(812), - [anon_sym_STAR_STAR] = ACTIONS(1552), - [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1550), - [anon_sym_SLASH] = ACTIONS(1550), - [anon_sym_mod] = ACTIONS(1552), - [anon_sym_SLASH_SLASH] = ACTIONS(1552), - [anon_sym_PLUS] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1552), - [anon_sym_bit_DASHshl] = ACTIONS(1552), - [anon_sym_bit_DASHshr] = ACTIONS(1552), - [anon_sym_EQ_TILDE] = ACTIONS(1552), - [anon_sym_BANG_TILDE] = ACTIONS(1552), - [anon_sym_bit_DASHand] = ACTIONS(1552), - [anon_sym_bit_DASHxor] = ACTIONS(1552), - [anon_sym_bit_DASHor] = ACTIONS(1552), - [anon_sym_and] = ACTIONS(1552), - [anon_sym_xor] = ACTIONS(1552), - [anon_sym_or] = ACTIONS(1552), - [anon_sym_in] = ACTIONS(1552), - [anon_sym_not_DASHin] = ACTIONS(1552), - [anon_sym_starts_DASHwith] = ACTIONS(1552), - [anon_sym_ends_DASHwith] = ACTIONS(1552), - [anon_sym_EQ_EQ] = ACTIONS(1552), - [anon_sym_BANG_EQ] = ACTIONS(1552), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_LT_EQ] = ACTIONS(1552), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_GT_EQ] = ACTIONS(1552), - [aux_sym_cmd_identifier_token41] = ACTIONS(1550), - [sym__newline] = ACTIONS(1550), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_err_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_GT_PIPE] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1550), - [anon_sym_GT2] = ACTIONS(1550), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_in2] = ACTIONS(1550), - [anon_sym_STAR2] = ACTIONS(1550), - [anon_sym_and2] = ACTIONS(1550), - [anon_sym_xor2] = ACTIONS(1550), - [anon_sym_or2] = ACTIONS(1550), - [anon_sym_not_DASHin2] = ACTIONS(1550), - [anon_sym_starts_DASHwith2] = ACTIONS(1550), - [anon_sym_ends_DASHwith2] = ACTIONS(1550), - [anon_sym_EQ_EQ2] = ACTIONS(1550), - [anon_sym_BANG_EQ2] = ACTIONS(1550), - [anon_sym_LT2] = ACTIONS(1550), - [anon_sym_LT_EQ2] = ACTIONS(1550), - [anon_sym_GT_EQ2] = ACTIONS(1550), - [anon_sym_EQ_TILDE2] = ACTIONS(1550), - [anon_sym_BANG_TILDE2] = ACTIONS(1550), - [anon_sym_STAR_STAR2] = ACTIONS(1550), - [anon_sym_PLUS_PLUS2] = ACTIONS(1550), - [anon_sym_SLASH2] = ACTIONS(1550), - [anon_sym_mod2] = ACTIONS(1550), - [anon_sym_SLASH_SLASH2] = ACTIONS(1550), - [anon_sym_PLUS2] = ACTIONS(1550), - [anon_sym_bit_DASHshl2] = ACTIONS(1550), - [anon_sym_bit_DASHshr2] = ACTIONS(1550), - [anon_sym_bit_DASHand2] = ACTIONS(1550), - [anon_sym_bit_DASHxor2] = ACTIONS(1550), - [anon_sym_bit_DASHor2] = ACTIONS(1550), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT] = ACTIONS(3064), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [aux_sym__immediate_decimal_token2] = ACTIONS(3066), - [sym_filesize_unit] = ACTIONS(1550), - [sym_duration_unit] = ACTIONS(1552), - [anon_sym_err_GT] = ACTIONS(1550), - [anon_sym_out_GT] = ACTIONS(1550), - [anon_sym_e_GT] = ACTIONS(1550), - [anon_sym_o_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT] = ACTIONS(1550), - [anon_sym_err_GT_GT] = ACTIONS(1550), - [anon_sym_out_GT_GT] = ACTIONS(1550), - [anon_sym_e_GT_GT] = ACTIONS(1550), - [anon_sym_o_GT_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1550), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(1049), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(812), + [sym__newline] = ACTIONS(2851), + [anon_sym_SEMI] = ACTIONS(2854), + [anon_sym_PIPE] = ACTIONS(2854), + [anon_sym_err_GT_PIPE] = ACTIONS(2854), + [anon_sym_out_GT_PIPE] = ACTIONS(2854), + [anon_sym_e_GT_PIPE] = ACTIONS(2854), + [anon_sym_o_GT_PIPE] = ACTIONS(2854), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2854), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2854), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2854), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2854), + [anon_sym_LBRACK] = ACTIONS(2856), + [anon_sym_LPAREN] = ACTIONS(2859), + [anon_sym_RPAREN] = ACTIONS(2854), + [anon_sym_DOLLAR] = ACTIONS(2862), + [anon_sym_DASH_DASH] = ACTIONS(2865), + [anon_sym_DASH2] = ACTIONS(2868), + [anon_sym_LBRACE] = ACTIONS(2871), + [anon_sym_DOT_DOT] = ACTIONS(2874), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2877), + [anon_sym_DOT_DOT_LT] = ACTIONS(2877), + [anon_sym_null] = ACTIONS(2880), + [anon_sym_true] = ACTIONS(2883), + [anon_sym_false] = ACTIONS(2883), + [aux_sym__val_number_decimal_token1] = ACTIONS(2886), + [aux_sym__val_number_decimal_token2] = ACTIONS(2889), + [aux_sym__val_number_decimal_token3] = ACTIONS(2892), + [aux_sym__val_number_decimal_token4] = ACTIONS(2895), + [aux_sym__val_number_token1] = ACTIONS(2898), + [aux_sym__val_number_token2] = ACTIONS(2898), + [aux_sym__val_number_token3] = ACTIONS(2898), + [aux_sym__val_number_token4] = ACTIONS(2901), + [aux_sym__val_number_token5] = ACTIONS(2901), + [aux_sym__val_number_token6] = ACTIONS(2901), + [anon_sym_0b] = ACTIONS(2904), + [anon_sym_0o] = ACTIONS(2907), + [anon_sym_0x] = ACTIONS(2907), + [sym_val_date] = ACTIONS(2910), + [anon_sym_DQUOTE] = ACTIONS(2913), + [sym__str_single_quotes] = ACTIONS(2916), + [sym__str_back_ticks] = ACTIONS(2916), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2919), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2922), + [anon_sym_err_GT] = ACTIONS(2925), + [anon_sym_out_GT] = ACTIONS(2925), + [anon_sym_e_GT] = ACTIONS(2925), + [anon_sym_o_GT] = ACTIONS(2925), + [anon_sym_err_PLUSout_GT] = ACTIONS(2925), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2925), + [anon_sym_o_PLUSe_GT] = ACTIONS(2925), + [anon_sym_e_PLUSo_GT] = ACTIONS(2925), + [anon_sym_err_GT_GT] = ACTIONS(2928), + [anon_sym_out_GT_GT] = ACTIONS(2928), + [anon_sym_e_GT_GT] = ACTIONS(2928), + [anon_sym_o_GT_GT] = ACTIONS(2928), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2928), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2928), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2928), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2928), + [aux_sym_unquoted_token1] = ACTIONS(2931), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2934), }, [813] = { [sym_comment] = STATE(813), - [ts_builtin_sym_end] = ACTIONS(1650), - [anon_sym_STAR_STAR] = ACTIONS(3068), - [anon_sym_PLUS_PLUS] = ACTIONS(3068), - [anon_sym_STAR] = ACTIONS(3070), - [anon_sym_SLASH] = ACTIONS(3070), - [anon_sym_mod] = ACTIONS(3068), - [anon_sym_SLASH_SLASH] = ACTIONS(3068), - [anon_sym_PLUS] = ACTIONS(3070), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_bit_DASHshl] = ACTIONS(3068), - [anon_sym_bit_DASHshr] = ACTIONS(3068), - [anon_sym_EQ_TILDE] = ACTIONS(3068), - [anon_sym_BANG_TILDE] = ACTIONS(3068), - [anon_sym_bit_DASHand] = ACTIONS(3068), - [anon_sym_bit_DASHxor] = ACTIONS(3068), - [anon_sym_bit_DASHor] = ACTIONS(3068), - [anon_sym_and] = ACTIONS(3068), - [anon_sym_xor] = ACTIONS(3068), - [anon_sym_or] = ACTIONS(3068), - [anon_sym_in] = ACTIONS(3068), - [anon_sym_not_DASHin] = ACTIONS(3068), - [anon_sym_starts_DASHwith] = ACTIONS(3068), - [anon_sym_ends_DASHwith] = ACTIONS(3068), - [anon_sym_EQ_EQ] = ACTIONS(3068), - [anon_sym_BANG_EQ] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_LT_EQ] = ACTIONS(3068), - [anon_sym_GT] = ACTIONS(3070), - [anon_sym_GT_EQ] = ACTIONS(3068), - [aux_sym_cmd_identifier_token41] = ACTIONS(3072), - [sym__newline] = ACTIONS(1638), - [anon_sym_SEMI] = ACTIONS(1638), - [anon_sym_PIPE] = ACTIONS(1638), - [anon_sym_err_GT_PIPE] = ACTIONS(1638), - [anon_sym_out_GT_PIPE] = ACTIONS(1638), - [anon_sym_e_GT_PIPE] = ACTIONS(1638), - [anon_sym_o_GT_PIPE] = ACTIONS(1638), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1638), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1638), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1638), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1638), - [anon_sym_GT2] = ACTIONS(1638), - [anon_sym_DASH2] = ACTIONS(1638), - [anon_sym_in2] = ACTIONS(1638), - [anon_sym_STAR2] = ACTIONS(1638), - [anon_sym_and2] = ACTIONS(1638), - [anon_sym_xor2] = ACTIONS(1638), - [anon_sym_or2] = ACTIONS(1638), - [anon_sym_not_DASHin2] = ACTIONS(1638), - [anon_sym_starts_DASHwith2] = ACTIONS(1638), - [anon_sym_ends_DASHwith2] = ACTIONS(1638), - [anon_sym_EQ_EQ2] = ACTIONS(1638), - [anon_sym_BANG_EQ2] = ACTIONS(1638), - [anon_sym_LT2] = ACTIONS(1638), - [anon_sym_LT_EQ2] = ACTIONS(1638), - [anon_sym_GT_EQ2] = ACTIONS(1638), - [anon_sym_EQ_TILDE2] = ACTIONS(1638), - [anon_sym_BANG_TILDE2] = ACTIONS(1638), - [anon_sym_STAR_STAR2] = ACTIONS(1638), - [anon_sym_PLUS_PLUS2] = ACTIONS(1638), - [anon_sym_SLASH2] = ACTIONS(1638), - [anon_sym_mod2] = ACTIONS(1638), - [anon_sym_SLASH_SLASH2] = ACTIONS(1638), - [anon_sym_PLUS2] = ACTIONS(1638), - [anon_sym_bit_DASHshl2] = ACTIONS(1638), - [anon_sym_bit_DASHshr2] = ACTIONS(1638), - [anon_sym_bit_DASHand2] = ACTIONS(1638), - [anon_sym_bit_DASHxor2] = ACTIONS(1638), - [anon_sym_bit_DASHor2] = ACTIONS(1638), - [anon_sym_DOT_DOT2] = ACTIONS(3074), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3076), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3076), - [sym_filesize_unit] = ACTIONS(3078), - [sym_duration_unit] = ACTIONS(3080), - [anon_sym_err_GT] = ACTIONS(1638), - [anon_sym_out_GT] = ACTIONS(1638), - [anon_sym_e_GT] = ACTIONS(1638), - [anon_sym_o_GT] = ACTIONS(1638), - [anon_sym_err_PLUSout_GT] = ACTIONS(1638), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1638), - [anon_sym_o_PLUSe_GT] = ACTIONS(1638), - [anon_sym_e_PLUSo_GT] = ACTIONS(1638), - [anon_sym_err_GT_GT] = ACTIONS(1638), - [anon_sym_out_GT_GT] = ACTIONS(1638), - [anon_sym_e_GT_GT] = ACTIONS(1638), - [anon_sym_o_GT_GT] = ACTIONS(1638), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1638), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1638), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1638), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1638), + [anon_sym_STAR_STAR] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_SLASH] = ACTIONS(1512), + [anon_sym_mod] = ACTIONS(1514), + [anon_sym_SLASH_SLASH] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_bit_DASHshl] = ACTIONS(1514), + [anon_sym_bit_DASHshr] = ACTIONS(1514), + [anon_sym_EQ_TILDE] = ACTIONS(1514), + [anon_sym_BANG_TILDE] = ACTIONS(1514), + [anon_sym_bit_DASHand] = ACTIONS(1514), + [anon_sym_bit_DASHxor] = ACTIONS(1514), + [anon_sym_bit_DASHor] = ACTIONS(1514), + [anon_sym_and] = ACTIONS(1514), + [anon_sym_xor] = ACTIONS(1514), + [anon_sym_or] = ACTIONS(1514), + [anon_sym_in] = ACTIONS(1514), + [anon_sym_not_DASHin] = ACTIONS(1514), + [anon_sym_has] = ACTIONS(1514), + [anon_sym_not_DASHhas] = ACTIONS(1514), + [anon_sym_starts_DASHwith] = ACTIONS(1514), + [anon_sym_ends_DASHwith] = ACTIONS(1514), + [anon_sym_EQ_EQ] = ACTIONS(1514), + [anon_sym_BANG_EQ] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_LT_EQ] = ACTIONS(1514), + [anon_sym_GT] = ACTIONS(1512), + [anon_sym_GT_EQ] = ACTIONS(1514), + [aux_sym_cmd_identifier_token41] = ACTIONS(1512), + [sym__newline] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_err_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_GT_PIPE] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1512), + [anon_sym_GT2] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_in2] = ACTIONS(1512), + [anon_sym_STAR2] = ACTIONS(1512), + [anon_sym_and2] = ACTIONS(1512), + [anon_sym_xor2] = ACTIONS(1512), + [anon_sym_or2] = ACTIONS(1512), + [anon_sym_not_DASHin2] = ACTIONS(1512), + [anon_sym_has2] = ACTIONS(1512), + [anon_sym_not_DASHhas2] = ACTIONS(1512), + [anon_sym_starts_DASHwith2] = ACTIONS(1512), + [anon_sym_ends_DASHwith2] = ACTIONS(1512), + [anon_sym_EQ_EQ2] = ACTIONS(1512), + [anon_sym_BANG_EQ2] = ACTIONS(1512), + [anon_sym_LT2] = ACTIONS(1512), + [anon_sym_LT_EQ2] = ACTIONS(1512), + [anon_sym_GT_EQ2] = ACTIONS(1512), + [anon_sym_EQ_TILDE2] = ACTIONS(1512), + [anon_sym_BANG_TILDE2] = ACTIONS(1512), + [anon_sym_STAR_STAR2] = ACTIONS(1512), + [anon_sym_PLUS_PLUS2] = ACTIONS(1512), + [anon_sym_SLASH2] = ACTIONS(1512), + [anon_sym_mod2] = ACTIONS(1512), + [anon_sym_SLASH_SLASH2] = ACTIONS(1512), + [anon_sym_PLUS2] = ACTIONS(1512), + [anon_sym_bit_DASHshl2] = ACTIONS(1512), + [anon_sym_bit_DASHshr2] = ACTIONS(1512), + [anon_sym_bit_DASHand2] = ACTIONS(1512), + [anon_sym_bit_DASHxor2] = ACTIONS(1512), + [anon_sym_bit_DASHor2] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [sym_filesize_unit] = ACTIONS(1512), + [sym_duration_unit] = ACTIONS(1514), + [anon_sym_err_GT] = ACTIONS(1512), + [anon_sym_out_GT] = ACTIONS(1512), + [anon_sym_e_GT] = ACTIONS(1512), + [anon_sym_o_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT] = ACTIONS(1512), + [anon_sym_err_GT_GT] = ACTIONS(1512), + [anon_sym_out_GT_GT] = ACTIONS(1512), + [anon_sym_e_GT_GT] = ACTIONS(1512), + [anon_sym_o_GT_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1512), [anon_sym_POUND] = ACTIONS(3), }, [814] = { + [sym_expr_parenthesized] = STATE(1570), + [sym_val_range] = STATE(1858), + [sym__val_range] = STATE(7756), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(1858), + [sym_val_nothing] = STATE(1832), + [sym_val_bool] = STATE(1602), + [sym_val_variable] = STATE(1533), + [sym_val_number] = STATE(1832), + [sym__val_number_decimal] = STATE(1330), + [sym__val_number] = STATE(1836), + [sym_val_duration] = STATE(1832), + [sym_val_filesize] = STATE(1832), + [sym_val_binary] = STATE(1832), + [sym_val_string] = STATE(1832), + [sym__raw_str] = STATE(1932), + [sym__str_double_quotes] = STATE(1932), + [sym_val_interpolated] = STATE(1832), + [sym__inter_single_quotes] = STATE(1921), + [sym__inter_double_quotes] = STATE(1922), + [sym_val_list] = STATE(1832), + [sym_val_record] = STATE(1832), + [sym_val_table] = STATE(1832), + [sym_val_closure] = STATE(1832), + [sym__flag] = STATE(1858), + [sym_short_flag] = STATE(1764), + [sym_long_flag] = STATE(1764), + [sym_unquoted] = STATE(1635), + [sym__unquoted_with_expr] = STATE(1860), + [sym__unquoted_anonymous_prefix] = STATE(6703), [sym_comment] = STATE(814), - [anon_sym_STAR_STAR] = ACTIONS(1544), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_STAR] = ACTIONS(1542), - [anon_sym_SLASH] = ACTIONS(1542), - [anon_sym_mod] = ACTIONS(1544), - [anon_sym_SLASH_SLASH] = ACTIONS(1544), - [anon_sym_PLUS] = ACTIONS(1542), - [anon_sym_DASH] = ACTIONS(1544), - [anon_sym_bit_DASHshl] = ACTIONS(1544), - [anon_sym_bit_DASHshr] = ACTIONS(1544), - [anon_sym_EQ_TILDE] = ACTIONS(1544), - [anon_sym_BANG_TILDE] = ACTIONS(1544), - [anon_sym_bit_DASHand] = ACTIONS(1544), - [anon_sym_bit_DASHxor] = ACTIONS(1544), - [anon_sym_bit_DASHor] = ACTIONS(1544), - [anon_sym_and] = ACTIONS(1544), - [anon_sym_xor] = ACTIONS(1544), - [anon_sym_or] = ACTIONS(1544), - [anon_sym_in] = ACTIONS(1544), - [anon_sym_not_DASHin] = ACTIONS(1544), - [anon_sym_starts_DASHwith] = ACTIONS(1544), - [anon_sym_ends_DASHwith] = ACTIONS(1544), - [anon_sym_EQ_EQ] = ACTIONS(1544), - [anon_sym_BANG_EQ] = ACTIONS(1544), - [anon_sym_LT] = ACTIONS(1542), - [anon_sym_LT_EQ] = ACTIONS(1544), - [anon_sym_GT] = ACTIONS(1542), - [anon_sym_GT_EQ] = ACTIONS(1544), - [aux_sym_cmd_identifier_token41] = ACTIONS(1542), - [sym__newline] = ACTIONS(1542), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_err_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_GT_PIPE] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), - [anon_sym_RPAREN] = ACTIONS(1542), - [anon_sym_GT2] = ACTIONS(1542), - [anon_sym_DASH2] = ACTIONS(1542), - [anon_sym_in2] = ACTIONS(1542), - [anon_sym_STAR2] = ACTIONS(1542), - [anon_sym_and2] = ACTIONS(1542), - [anon_sym_xor2] = ACTIONS(1542), - [anon_sym_or2] = ACTIONS(1542), - [anon_sym_not_DASHin2] = ACTIONS(1542), - [anon_sym_starts_DASHwith2] = ACTIONS(1542), - [anon_sym_ends_DASHwith2] = ACTIONS(1542), - [anon_sym_EQ_EQ2] = ACTIONS(1542), - [anon_sym_BANG_EQ2] = ACTIONS(1542), - [anon_sym_LT2] = ACTIONS(1542), - [anon_sym_LT_EQ2] = ACTIONS(1542), - [anon_sym_GT_EQ2] = ACTIONS(1542), - [anon_sym_EQ_TILDE2] = ACTIONS(1542), - [anon_sym_BANG_TILDE2] = ACTIONS(1542), - [anon_sym_STAR_STAR2] = ACTIONS(1542), - [anon_sym_PLUS_PLUS2] = ACTIONS(1542), - [anon_sym_SLASH2] = ACTIONS(1542), - [anon_sym_mod2] = ACTIONS(1542), - [anon_sym_SLASH_SLASH2] = ACTIONS(1542), - [anon_sym_PLUS2] = ACTIONS(1542), - [anon_sym_bit_DASHshl2] = ACTIONS(1542), - [anon_sym_bit_DASHshr2] = ACTIONS(1542), - [anon_sym_bit_DASHand2] = ACTIONS(1542), - [anon_sym_bit_DASHxor2] = ACTIONS(1542), - [anon_sym_bit_DASHor2] = ACTIONS(1542), - [anon_sym_DOT_DOT2] = ACTIONS(1542), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1544), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1544), - [sym_filesize_unit] = ACTIONS(1542), - [sym_duration_unit] = ACTIONS(1544), - [anon_sym_err_GT] = ACTIONS(1542), - [anon_sym_out_GT] = ACTIONS(1542), - [anon_sym_e_GT] = ACTIONS(1542), - [anon_sym_o_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT] = ACTIONS(1542), - [anon_sym_err_GT_GT] = ACTIONS(1542), - [anon_sym_out_GT_GT] = ACTIONS(1542), - [anon_sym_e_GT_GT] = ACTIONS(1542), - [anon_sym_o_GT_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_do_repeat2] = STATE(822), + [sym__newline] = ACTIONS(2937), + [anon_sym_SEMI] = ACTIONS(2937), + [anon_sym_PIPE] = ACTIONS(2937), + [anon_sym_err_GT_PIPE] = ACTIONS(2937), + [anon_sym_out_GT_PIPE] = ACTIONS(2937), + [anon_sym_e_GT_PIPE] = ACTIONS(2937), + [anon_sym_o_GT_PIPE] = ACTIONS(2937), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2937), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2937), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2937), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2937), + [anon_sym_LBRACK] = ACTIONS(2784), + [anon_sym_LPAREN] = ACTIONS(2786), + [anon_sym_RPAREN] = ACTIONS(2937), + [anon_sym_DOLLAR] = ACTIONS(2788), + [anon_sym_DASH_DASH] = ACTIONS(2790), + [anon_sym_DASH2] = ACTIONS(2792), + [anon_sym_LBRACE] = ACTIONS(2794), + [anon_sym_RBRACE] = ACTIONS(2937), + [anon_sym_DOT_DOT] = ACTIONS(2796), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2798), + [anon_sym_DOT_DOT_LT] = ACTIONS(2798), + [anon_sym_null] = ACTIONS(2800), + [anon_sym_true] = ACTIONS(2802), + [anon_sym_false] = ACTIONS(2802), + [aux_sym__val_number_decimal_token1] = ACTIONS(2804), + [aux_sym__val_number_decimal_token2] = ACTIONS(2806), + [aux_sym__val_number_decimal_token3] = ACTIONS(2808), + [aux_sym__val_number_decimal_token4] = ACTIONS(2810), + [aux_sym__val_number_token1] = ACTIONS(2812), + [aux_sym__val_number_token2] = ACTIONS(2812), + [aux_sym__val_number_token3] = ACTIONS(2812), + [aux_sym__val_number_token4] = ACTIONS(2814), + [aux_sym__val_number_token5] = ACTIONS(2814), + [aux_sym__val_number_token6] = ACTIONS(2814), + [anon_sym_0b] = ACTIONS(2816), + [anon_sym_0o] = ACTIONS(2818), + [anon_sym_0x] = ACTIONS(2818), + [sym_val_date] = ACTIONS(2820), + [anon_sym_DQUOTE] = ACTIONS(2822), + [sym__str_single_quotes] = ACTIONS(2824), + [sym__str_back_ticks] = ACTIONS(2824), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2826), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2828), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(2834), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2836), }, [815] = { + [sym_expr_parenthesized] = STATE(1633), + [sym_val_range] = STATE(2065), + [sym__val_range] = STATE(7756), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2065), + [sym_val_nothing] = STATE(1832), + [sym_val_bool] = STATE(1602), + [sym_val_variable] = STATE(1533), + [sym_val_number] = STATE(1832), + [sym__val_number_decimal] = STATE(1330), + [sym__val_number] = STATE(1836), + [sym_val_duration] = STATE(1832), + [sym_val_filesize] = STATE(1832), + [sym_val_binary] = STATE(1832), + [sym_val_string] = STATE(1832), + [sym__raw_str] = STATE(1932), + [sym__str_double_quotes] = STATE(1932), + [sym_val_interpolated] = STATE(1832), + [sym__inter_single_quotes] = STATE(1921), + [sym__inter_double_quotes] = STATE(1922), + [sym_val_list] = STATE(1832), + [sym_val_record] = STATE(1832), + [sym_val_table] = STATE(1832), + [sym_val_closure] = STATE(1832), + [sym__flag] = STATE(2065), + [sym_short_flag] = STATE(1764), + [sym_long_flag] = STATE(1764), + [sym_unquoted] = STATE(1671), + [sym__unquoted_with_expr] = STATE(2069), + [sym__unquoted_anonymous_prefix] = STATE(6703), [sym_comment] = STATE(815), - [anon_sym_STAR_STAR] = ACTIONS(1552), - [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1550), - [anon_sym_SLASH] = ACTIONS(1550), - [anon_sym_mod] = ACTIONS(1552), - [anon_sym_SLASH_SLASH] = ACTIONS(1552), - [anon_sym_PLUS] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1552), - [anon_sym_bit_DASHshl] = ACTIONS(1552), - [anon_sym_bit_DASHshr] = ACTIONS(1552), - [anon_sym_EQ_TILDE] = ACTIONS(1552), - [anon_sym_BANG_TILDE] = ACTIONS(1552), - [anon_sym_bit_DASHand] = ACTIONS(1552), - [anon_sym_bit_DASHxor] = ACTIONS(1552), - [anon_sym_bit_DASHor] = ACTIONS(1552), - [anon_sym_and] = ACTIONS(1552), - [anon_sym_xor] = ACTIONS(1552), - [anon_sym_or] = ACTIONS(1552), - [anon_sym_in] = ACTIONS(1552), - [anon_sym_not_DASHin] = ACTIONS(1552), - [anon_sym_starts_DASHwith] = ACTIONS(1552), - [anon_sym_ends_DASHwith] = ACTIONS(1552), - [anon_sym_EQ_EQ] = ACTIONS(1552), - [anon_sym_BANG_EQ] = ACTIONS(1552), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_LT_EQ] = ACTIONS(1552), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_GT_EQ] = ACTIONS(1552), - [aux_sym_cmd_identifier_token41] = ACTIONS(1550), - [sym__newline] = ACTIONS(1550), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_err_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_GT_PIPE] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1550), - [anon_sym_GT2] = ACTIONS(1550), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_in2] = ACTIONS(1550), - [anon_sym_RBRACE] = ACTIONS(1550), - [anon_sym_STAR2] = ACTIONS(1550), - [anon_sym_and2] = ACTIONS(1550), - [anon_sym_xor2] = ACTIONS(1550), - [anon_sym_or2] = ACTIONS(1550), - [anon_sym_not_DASHin2] = ACTIONS(1550), - [anon_sym_starts_DASHwith2] = ACTIONS(1550), - [anon_sym_ends_DASHwith2] = ACTIONS(1550), - [anon_sym_EQ_EQ2] = ACTIONS(1550), - [anon_sym_BANG_EQ2] = ACTIONS(1550), - [anon_sym_LT2] = ACTIONS(1550), - [anon_sym_LT_EQ2] = ACTIONS(1550), - [anon_sym_GT_EQ2] = ACTIONS(1550), - [anon_sym_EQ_TILDE2] = ACTIONS(1550), - [anon_sym_BANG_TILDE2] = ACTIONS(1550), - [anon_sym_STAR_STAR2] = ACTIONS(1550), - [anon_sym_PLUS_PLUS2] = ACTIONS(1550), - [anon_sym_SLASH2] = ACTIONS(1550), - [anon_sym_mod2] = ACTIONS(1550), - [anon_sym_SLASH_SLASH2] = ACTIONS(1550), - [anon_sym_PLUS2] = ACTIONS(1550), - [anon_sym_bit_DASHshl2] = ACTIONS(1550), - [anon_sym_bit_DASHshr2] = ACTIONS(1550), - [anon_sym_bit_DASHand2] = ACTIONS(1550), - [anon_sym_bit_DASHxor2] = ACTIONS(1550), - [anon_sym_bit_DASHor2] = ACTIONS(1550), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [sym_filesize_unit] = ACTIONS(1550), - [sym_duration_unit] = ACTIONS(1552), - [anon_sym_err_GT] = ACTIONS(1550), - [anon_sym_out_GT] = ACTIONS(1550), - [anon_sym_e_GT] = ACTIONS(1550), - [anon_sym_o_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT] = ACTIONS(1550), - [anon_sym_err_GT_GT] = ACTIONS(1550), - [anon_sym_out_GT_GT] = ACTIONS(1550), - [anon_sym_e_GT_GT] = ACTIONS(1550), - [anon_sym_o_GT_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1550), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(1049), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(819), + [sym__newline] = ACTIONS(2939), + [anon_sym_SEMI] = ACTIONS(2942), + [anon_sym_PIPE] = ACTIONS(2942), + [anon_sym_err_GT_PIPE] = ACTIONS(2942), + [anon_sym_out_GT_PIPE] = ACTIONS(2942), + [anon_sym_e_GT_PIPE] = ACTIONS(2942), + [anon_sym_o_GT_PIPE] = ACTIONS(2942), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2942), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2942), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2942), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2942), + [anon_sym_LBRACK] = ACTIONS(2784), + [anon_sym_LPAREN] = ACTIONS(2786), + [anon_sym_RPAREN] = ACTIONS(2942), + [anon_sym_DOLLAR] = ACTIONS(2788), + [anon_sym_DASH_DASH] = ACTIONS(2790), + [anon_sym_DASH2] = ACTIONS(2792), + [anon_sym_LBRACE] = ACTIONS(2794), + [anon_sym_DOT_DOT] = ACTIONS(2796), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2798), + [anon_sym_DOT_DOT_LT] = ACTIONS(2798), + [anon_sym_null] = ACTIONS(2800), + [anon_sym_true] = ACTIONS(2802), + [anon_sym_false] = ACTIONS(2802), + [aux_sym__val_number_decimal_token1] = ACTIONS(2804), + [aux_sym__val_number_decimal_token2] = ACTIONS(2806), + [aux_sym__val_number_decimal_token3] = ACTIONS(2808), + [aux_sym__val_number_decimal_token4] = ACTIONS(2810), + [aux_sym__val_number_token1] = ACTIONS(2812), + [aux_sym__val_number_token2] = ACTIONS(2812), + [aux_sym__val_number_token3] = ACTIONS(2812), + [aux_sym__val_number_token4] = ACTIONS(2814), + [aux_sym__val_number_token5] = ACTIONS(2814), + [aux_sym__val_number_token6] = ACTIONS(2814), + [anon_sym_0b] = ACTIONS(2816), + [anon_sym_0o] = ACTIONS(2818), + [anon_sym_0x] = ACTIONS(2818), + [sym_val_date] = ACTIONS(2820), + [anon_sym_DQUOTE] = ACTIONS(2822), + [sym__str_single_quotes] = ACTIONS(2824), + [sym__str_back_ticks] = ACTIONS(2824), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2826), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2828), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(2834), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2836), }, [816] = { [sym_comment] = STATE(816), - [anon_sym_STAR_STAR] = ACTIONS(1544), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_STAR] = ACTIONS(1542), - [anon_sym_SLASH] = ACTIONS(1542), - [anon_sym_mod] = ACTIONS(1544), - [anon_sym_SLASH_SLASH] = ACTIONS(1544), - [anon_sym_PLUS] = ACTIONS(1542), - [anon_sym_DASH] = ACTIONS(1544), - [anon_sym_bit_DASHshl] = ACTIONS(1544), - [anon_sym_bit_DASHshr] = ACTIONS(1544), - [anon_sym_EQ_TILDE] = ACTIONS(1544), - [anon_sym_BANG_TILDE] = ACTIONS(1544), - [anon_sym_bit_DASHand] = ACTIONS(1544), - [anon_sym_bit_DASHxor] = ACTIONS(1544), - [anon_sym_bit_DASHor] = ACTIONS(1544), - [anon_sym_and] = ACTIONS(1544), - [anon_sym_xor] = ACTIONS(1544), - [anon_sym_or] = ACTIONS(1544), - [anon_sym_in] = ACTIONS(1544), - [anon_sym_not_DASHin] = ACTIONS(1544), - [anon_sym_starts_DASHwith] = ACTIONS(1544), - [anon_sym_ends_DASHwith] = ACTIONS(1544), - [anon_sym_EQ_EQ] = ACTIONS(1544), - [anon_sym_BANG_EQ] = ACTIONS(1544), - [anon_sym_LT] = ACTIONS(1542), - [anon_sym_LT_EQ] = ACTIONS(1544), - [anon_sym_GT] = ACTIONS(1542), - [anon_sym_GT_EQ] = ACTIONS(1544), - [aux_sym_cmd_identifier_token41] = ACTIONS(1542), - [sym__newline] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_err_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_GT_PIPE] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), - [anon_sym_GT2] = ACTIONS(1542), - [anon_sym_DASH2] = ACTIONS(1542), - [anon_sym_in2] = ACTIONS(1542), - [anon_sym_STAR2] = ACTIONS(1542), - [anon_sym_and2] = ACTIONS(1542), - [anon_sym_xor2] = ACTIONS(1542), - [anon_sym_or2] = ACTIONS(1542), - [anon_sym_not_DASHin2] = ACTIONS(1542), - [anon_sym_starts_DASHwith2] = ACTIONS(1542), - [anon_sym_ends_DASHwith2] = ACTIONS(1542), - [anon_sym_EQ_EQ2] = ACTIONS(1542), - [anon_sym_BANG_EQ2] = ACTIONS(1542), - [anon_sym_LT2] = ACTIONS(1542), - [anon_sym_LT_EQ2] = ACTIONS(1542), - [anon_sym_GT_EQ2] = ACTIONS(1542), - [anon_sym_EQ_TILDE2] = ACTIONS(1542), - [anon_sym_BANG_TILDE2] = ACTIONS(1542), - [anon_sym_STAR_STAR2] = ACTIONS(1542), - [anon_sym_PLUS_PLUS2] = ACTIONS(1542), - [anon_sym_SLASH2] = ACTIONS(1542), - [anon_sym_mod2] = ACTIONS(1542), - [anon_sym_SLASH_SLASH2] = ACTIONS(1542), - [anon_sym_PLUS2] = ACTIONS(1542), - [anon_sym_bit_DASHshl2] = ACTIONS(1542), - [anon_sym_bit_DASHshr2] = ACTIONS(1542), - [anon_sym_bit_DASHand2] = ACTIONS(1542), - [anon_sym_bit_DASHxor2] = ACTIONS(1542), - [anon_sym_bit_DASHor2] = ACTIONS(1542), - [anon_sym_DOT_DOT2] = ACTIONS(1542), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1544), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1544), - [aux_sym__immediate_decimal_token1] = ACTIONS(3082), - [aux_sym__immediate_decimal_token2] = ACTIONS(3084), - [sym_filesize_unit] = ACTIONS(1542), - [sym_duration_unit] = ACTIONS(1544), - [anon_sym_err_GT] = ACTIONS(1542), - [anon_sym_out_GT] = ACTIONS(1542), - [anon_sym_e_GT] = ACTIONS(1542), - [anon_sym_o_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT] = ACTIONS(1542), - [anon_sym_err_GT_GT] = ACTIONS(1542), - [anon_sym_out_GT_GT] = ACTIONS(1542), - [anon_sym_e_GT_GT] = ACTIONS(1542), - [anon_sym_o_GT_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), + [anon_sym_STAR_STAR] = ACTIONS(1620), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1618), + [anon_sym_SLASH] = ACTIONS(1618), + [anon_sym_mod] = ACTIONS(1620), + [anon_sym_SLASH_SLASH] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1618), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_bit_DASHshl] = ACTIONS(1620), + [anon_sym_bit_DASHshr] = ACTIONS(1620), + [anon_sym_EQ_TILDE] = ACTIONS(1620), + [anon_sym_BANG_TILDE] = ACTIONS(1620), + [anon_sym_bit_DASHand] = ACTIONS(1620), + [anon_sym_bit_DASHxor] = ACTIONS(1620), + [anon_sym_bit_DASHor] = ACTIONS(1620), + [anon_sym_and] = ACTIONS(1620), + [anon_sym_xor] = ACTIONS(1620), + [anon_sym_or] = ACTIONS(1620), + [anon_sym_in] = ACTIONS(1620), + [anon_sym_not_DASHin] = ACTIONS(1620), + [anon_sym_has] = ACTIONS(1620), + [anon_sym_not_DASHhas] = ACTIONS(1620), + [anon_sym_starts_DASHwith] = ACTIONS(1620), + [anon_sym_ends_DASHwith] = ACTIONS(1620), + [anon_sym_EQ_EQ] = ACTIONS(1620), + [anon_sym_BANG_EQ] = ACTIONS(1620), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_LT_EQ] = ACTIONS(1620), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_GT_EQ] = ACTIONS(1620), + [aux_sym_cmd_identifier_token41] = ACTIONS(1618), + [sym__newline] = ACTIONS(1618), + [anon_sym_PIPE] = ACTIONS(1618), + [anon_sym_err_GT_PIPE] = ACTIONS(1618), + [anon_sym_out_GT_PIPE] = ACTIONS(1618), + [anon_sym_e_GT_PIPE] = ACTIONS(1618), + [anon_sym_o_GT_PIPE] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1618), + [anon_sym_GT2] = ACTIONS(1618), + [anon_sym_DASH2] = ACTIONS(1618), + [anon_sym_in2] = ACTIONS(1618), + [anon_sym_STAR2] = ACTIONS(1618), + [anon_sym_and2] = ACTIONS(1618), + [anon_sym_xor2] = ACTIONS(1618), + [anon_sym_or2] = ACTIONS(1618), + [anon_sym_not_DASHin2] = ACTIONS(1618), + [anon_sym_has2] = ACTIONS(1618), + [anon_sym_not_DASHhas2] = ACTIONS(1618), + [anon_sym_starts_DASHwith2] = ACTIONS(1618), + [anon_sym_ends_DASHwith2] = ACTIONS(1618), + [anon_sym_EQ_EQ2] = ACTIONS(1618), + [anon_sym_BANG_EQ2] = ACTIONS(1618), + [anon_sym_LT2] = ACTIONS(1618), + [anon_sym_LT_EQ2] = ACTIONS(1618), + [anon_sym_GT_EQ2] = ACTIONS(1618), + [anon_sym_EQ_TILDE2] = ACTIONS(1618), + [anon_sym_BANG_TILDE2] = ACTIONS(1618), + [anon_sym_STAR_STAR2] = ACTIONS(1618), + [anon_sym_PLUS_PLUS2] = ACTIONS(1618), + [anon_sym_SLASH2] = ACTIONS(1618), + [anon_sym_mod2] = ACTIONS(1618), + [anon_sym_SLASH_SLASH2] = ACTIONS(1618), + [anon_sym_PLUS2] = ACTIONS(1618), + [anon_sym_bit_DASHshl2] = ACTIONS(1618), + [anon_sym_bit_DASHshr2] = ACTIONS(1618), + [anon_sym_bit_DASHand2] = ACTIONS(1618), + [anon_sym_bit_DASHxor2] = ACTIONS(1618), + [anon_sym_bit_DASHor2] = ACTIONS(1618), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [aux_sym__immediate_decimal_token2] = ACTIONS(2944), + [sym_filesize_unit] = ACTIONS(1618), + [sym_duration_unit] = ACTIONS(1620), + [anon_sym_err_GT] = ACTIONS(1618), + [anon_sym_out_GT] = ACTIONS(1618), + [anon_sym_e_GT] = ACTIONS(1618), + [anon_sym_o_GT] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT] = ACTIONS(1618), + [anon_sym_err_GT_GT] = ACTIONS(1618), + [anon_sym_out_GT_GT] = ACTIONS(1618), + [anon_sym_e_GT_GT] = ACTIONS(1618), + [anon_sym_o_GT_GT] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1618), [anon_sym_POUND] = ACTIONS(3), }, [817] = { + [sym_expr_parenthesized] = STATE(1570), + [sym_val_range] = STATE(1858), + [sym__val_range] = STATE(7756), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(1858), + [sym_val_nothing] = STATE(1832), + [sym_val_bool] = STATE(1602), + [sym_val_variable] = STATE(1533), + [sym_val_number] = STATE(1832), + [sym__val_number_decimal] = STATE(1330), + [sym__val_number] = STATE(1836), + [sym_val_duration] = STATE(1832), + [sym_val_filesize] = STATE(1832), + [sym_val_binary] = STATE(1832), + [sym_val_string] = STATE(1832), + [sym__raw_str] = STATE(1932), + [sym__str_double_quotes] = STATE(1932), + [sym_val_interpolated] = STATE(1832), + [sym__inter_single_quotes] = STATE(1921), + [sym__inter_double_quotes] = STATE(1922), + [sym_val_list] = STATE(1832), + [sym_val_record] = STATE(1832), + [sym_val_table] = STATE(1832), + [sym_val_closure] = STATE(1832), + [sym__flag] = STATE(1858), + [sym_short_flag] = STATE(1764), + [sym_long_flag] = STATE(1764), + [sym_unquoted] = STATE(1635), + [sym__unquoted_with_expr] = STATE(1860), + [sym__unquoted_anonymous_prefix] = STATE(6703), [sym_comment] = STATE(817), - [anon_sym_STAR_STAR] = ACTIONS(1682), - [anon_sym_PLUS_PLUS] = ACTIONS(1682), - [anon_sym_STAR] = ACTIONS(1680), - [anon_sym_SLASH] = ACTIONS(1680), - [anon_sym_mod] = ACTIONS(1682), - [anon_sym_SLASH_SLASH] = ACTIONS(1682), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_DASH] = ACTIONS(1682), - [anon_sym_bit_DASHshl] = ACTIONS(1682), - [anon_sym_bit_DASHshr] = ACTIONS(1682), - [anon_sym_EQ_TILDE] = ACTIONS(1682), - [anon_sym_BANG_TILDE] = ACTIONS(1682), - [anon_sym_bit_DASHand] = ACTIONS(1682), - [anon_sym_bit_DASHxor] = ACTIONS(1682), - [anon_sym_bit_DASHor] = ACTIONS(1682), - [anon_sym_and] = ACTIONS(1682), - [anon_sym_xor] = ACTIONS(1682), - [anon_sym_or] = ACTIONS(1682), - [anon_sym_in] = ACTIONS(1682), - [anon_sym_not_DASHin] = ACTIONS(1682), - [anon_sym_starts_DASHwith] = ACTIONS(1682), - [anon_sym_ends_DASHwith] = ACTIONS(1682), - [anon_sym_EQ_EQ] = ACTIONS(1682), - [anon_sym_BANG_EQ] = ACTIONS(1682), - [anon_sym_LT] = ACTIONS(1680), - [anon_sym_LT_EQ] = ACTIONS(1682), - [anon_sym_GT] = ACTIONS(1680), - [anon_sym_GT_EQ] = ACTIONS(1682), - [aux_sym_cmd_identifier_token41] = ACTIONS(1680), - [sym__newline] = ACTIONS(1680), - [anon_sym_SEMI] = ACTIONS(1680), - [anon_sym_PIPE] = ACTIONS(1680), - [anon_sym_err_GT_PIPE] = ACTIONS(1680), - [anon_sym_out_GT_PIPE] = ACTIONS(1680), - [anon_sym_e_GT_PIPE] = ACTIONS(1680), - [anon_sym_o_GT_PIPE] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1680), - [anon_sym_RPAREN] = ACTIONS(1680), - [anon_sym_GT2] = ACTIONS(1680), - [anon_sym_DASH2] = ACTIONS(1680), - [anon_sym_in2] = ACTIONS(1680), - [anon_sym_STAR2] = ACTIONS(1680), - [anon_sym_and2] = ACTIONS(1680), - [anon_sym_xor2] = ACTIONS(1680), - [anon_sym_or2] = ACTIONS(1680), - [anon_sym_not_DASHin2] = ACTIONS(1680), - [anon_sym_starts_DASHwith2] = ACTIONS(1680), - [anon_sym_ends_DASHwith2] = ACTIONS(1680), - [anon_sym_EQ_EQ2] = ACTIONS(1680), - [anon_sym_BANG_EQ2] = ACTIONS(1680), - [anon_sym_LT2] = ACTIONS(1680), - [anon_sym_LT_EQ2] = ACTIONS(1680), - [anon_sym_GT_EQ2] = ACTIONS(1680), - [anon_sym_EQ_TILDE2] = ACTIONS(1680), - [anon_sym_BANG_TILDE2] = ACTIONS(1680), - [anon_sym_STAR_STAR2] = ACTIONS(1680), - [anon_sym_PLUS_PLUS2] = ACTIONS(1680), - [anon_sym_SLASH2] = ACTIONS(1680), - [anon_sym_mod2] = ACTIONS(1680), - [anon_sym_SLASH_SLASH2] = ACTIONS(1680), - [anon_sym_PLUS2] = ACTIONS(1680), - [anon_sym_bit_DASHshl2] = ACTIONS(1680), - [anon_sym_bit_DASHshr2] = ACTIONS(1680), - [anon_sym_bit_DASHand2] = ACTIONS(1680), - [anon_sym_bit_DASHxor2] = ACTIONS(1680), - [anon_sym_bit_DASHor2] = ACTIONS(1680), - [anon_sym_DOT_DOT2] = ACTIONS(1680), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1682), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1682), - [sym_filesize_unit] = ACTIONS(1680), - [sym_duration_unit] = ACTIONS(1682), - [anon_sym_err_GT] = ACTIONS(1680), - [anon_sym_out_GT] = ACTIONS(1680), - [anon_sym_e_GT] = ACTIONS(1680), - [anon_sym_o_GT] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT] = ACTIONS(1680), - [anon_sym_err_GT_GT] = ACTIONS(1680), - [anon_sym_out_GT_GT] = ACTIONS(1680), - [anon_sym_e_GT_GT] = ACTIONS(1680), - [anon_sym_o_GT_GT] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1680), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_do_repeat2] = STATE(805), + [sym__newline] = ACTIONS(2946), + [anon_sym_SEMI] = ACTIONS(2946), + [anon_sym_PIPE] = ACTIONS(2946), + [anon_sym_err_GT_PIPE] = ACTIONS(2946), + [anon_sym_out_GT_PIPE] = ACTIONS(2946), + [anon_sym_e_GT_PIPE] = ACTIONS(2946), + [anon_sym_o_GT_PIPE] = ACTIONS(2946), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2946), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2946), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2946), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2784), + [anon_sym_LPAREN] = ACTIONS(2786), + [anon_sym_RPAREN] = ACTIONS(2946), + [anon_sym_DOLLAR] = ACTIONS(2788), + [anon_sym_DASH_DASH] = ACTIONS(2790), + [anon_sym_DASH2] = ACTIONS(2792), + [anon_sym_LBRACE] = ACTIONS(2794), + [anon_sym_RBRACE] = ACTIONS(2946), + [anon_sym_DOT_DOT] = ACTIONS(2796), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2798), + [anon_sym_DOT_DOT_LT] = ACTIONS(2798), + [anon_sym_null] = ACTIONS(2800), + [anon_sym_true] = ACTIONS(2802), + [anon_sym_false] = ACTIONS(2802), + [aux_sym__val_number_decimal_token1] = ACTIONS(2804), + [aux_sym__val_number_decimal_token2] = ACTIONS(2806), + [aux_sym__val_number_decimal_token3] = ACTIONS(2808), + [aux_sym__val_number_decimal_token4] = ACTIONS(2810), + [aux_sym__val_number_token1] = ACTIONS(2812), + [aux_sym__val_number_token2] = ACTIONS(2812), + [aux_sym__val_number_token3] = ACTIONS(2812), + [aux_sym__val_number_token4] = ACTIONS(2814), + [aux_sym__val_number_token5] = ACTIONS(2814), + [aux_sym__val_number_token6] = ACTIONS(2814), + [anon_sym_0b] = ACTIONS(2816), + [anon_sym_0o] = ACTIONS(2818), + [anon_sym_0x] = ACTIONS(2818), + [sym_val_date] = ACTIONS(2820), + [anon_sym_DQUOTE] = ACTIONS(2822), + [sym__str_single_quotes] = ACTIONS(2824), + [sym__str_back_ticks] = ACTIONS(2824), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2826), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2828), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(2834), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2836), }, [818] = { [sym_comment] = STATE(818), - [anon_sym_STAR_STAR] = ACTIONS(1682), - [anon_sym_PLUS_PLUS] = ACTIONS(1682), - [anon_sym_STAR] = ACTIONS(1680), - [anon_sym_SLASH] = ACTIONS(1680), - [anon_sym_mod] = ACTIONS(1682), - [anon_sym_SLASH_SLASH] = ACTIONS(1682), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_DASH] = ACTIONS(1682), - [anon_sym_bit_DASHshl] = ACTIONS(1682), - [anon_sym_bit_DASHshr] = ACTIONS(1682), - [anon_sym_EQ_TILDE] = ACTIONS(1682), - [anon_sym_BANG_TILDE] = ACTIONS(1682), - [anon_sym_bit_DASHand] = ACTIONS(1682), - [anon_sym_bit_DASHxor] = ACTIONS(1682), - [anon_sym_bit_DASHor] = ACTIONS(1682), - [anon_sym_and] = ACTIONS(1682), - [anon_sym_xor] = ACTIONS(1682), - [anon_sym_or] = ACTIONS(1682), - [anon_sym_in] = ACTIONS(1682), - [anon_sym_not_DASHin] = ACTIONS(1682), - [anon_sym_starts_DASHwith] = ACTIONS(1682), - [anon_sym_ends_DASHwith] = ACTIONS(1682), - [anon_sym_EQ_EQ] = ACTIONS(1682), - [anon_sym_BANG_EQ] = ACTIONS(1682), - [anon_sym_LT] = ACTIONS(1680), - [anon_sym_LT_EQ] = ACTIONS(1682), - [anon_sym_GT] = ACTIONS(1680), - [anon_sym_GT_EQ] = ACTIONS(1682), - [aux_sym_cmd_identifier_token41] = ACTIONS(1680), - [sym__newline] = ACTIONS(1680), - [anon_sym_SEMI] = ACTIONS(1680), - [anon_sym_PIPE] = ACTIONS(1680), - [anon_sym_err_GT_PIPE] = ACTIONS(1680), - [anon_sym_out_GT_PIPE] = ACTIONS(1680), - [anon_sym_e_GT_PIPE] = ACTIONS(1680), - [anon_sym_o_GT_PIPE] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1680), - [anon_sym_GT2] = ACTIONS(1680), - [anon_sym_DASH2] = ACTIONS(1680), - [anon_sym_in2] = ACTIONS(1680), - [anon_sym_RBRACE] = ACTIONS(1680), - [anon_sym_STAR2] = ACTIONS(1680), - [anon_sym_and2] = ACTIONS(1680), - [anon_sym_xor2] = ACTIONS(1680), - [anon_sym_or2] = ACTIONS(1680), - [anon_sym_not_DASHin2] = ACTIONS(1680), - [anon_sym_starts_DASHwith2] = ACTIONS(1680), - [anon_sym_ends_DASHwith2] = ACTIONS(1680), - [anon_sym_EQ_EQ2] = ACTIONS(1680), - [anon_sym_BANG_EQ2] = ACTIONS(1680), - [anon_sym_LT2] = ACTIONS(1680), - [anon_sym_LT_EQ2] = ACTIONS(1680), - [anon_sym_GT_EQ2] = ACTIONS(1680), - [anon_sym_EQ_TILDE2] = ACTIONS(1680), - [anon_sym_BANG_TILDE2] = ACTIONS(1680), - [anon_sym_STAR_STAR2] = ACTIONS(1680), - [anon_sym_PLUS_PLUS2] = ACTIONS(1680), - [anon_sym_SLASH2] = ACTIONS(1680), - [anon_sym_mod2] = ACTIONS(1680), - [anon_sym_SLASH_SLASH2] = ACTIONS(1680), - [anon_sym_PLUS2] = ACTIONS(1680), - [anon_sym_bit_DASHshl2] = ACTIONS(1680), - [anon_sym_bit_DASHshr2] = ACTIONS(1680), - [anon_sym_bit_DASHand2] = ACTIONS(1680), - [anon_sym_bit_DASHxor2] = ACTIONS(1680), - [anon_sym_bit_DASHor2] = ACTIONS(1680), - [anon_sym_DOT_DOT2] = ACTIONS(1680), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1682), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1682), - [sym_filesize_unit] = ACTIONS(1680), - [sym_duration_unit] = ACTIONS(1682), - [anon_sym_err_GT] = ACTIONS(1680), - [anon_sym_out_GT] = ACTIONS(1680), - [anon_sym_e_GT] = ACTIONS(1680), - [anon_sym_o_GT] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT] = ACTIONS(1680), - [anon_sym_err_GT_GT] = ACTIONS(1680), - [anon_sym_out_GT_GT] = ACTIONS(1680), - [anon_sym_e_GT_GT] = ACTIONS(1680), - [anon_sym_o_GT_GT] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1680), + [anon_sym_STAR_STAR] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_SLASH] = ACTIONS(1512), + [anon_sym_mod] = ACTIONS(1514), + [anon_sym_SLASH_SLASH] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_bit_DASHshl] = ACTIONS(1514), + [anon_sym_bit_DASHshr] = ACTIONS(1514), + [anon_sym_EQ_TILDE] = ACTIONS(1514), + [anon_sym_BANG_TILDE] = ACTIONS(1514), + [anon_sym_bit_DASHand] = ACTIONS(1514), + [anon_sym_bit_DASHxor] = ACTIONS(1514), + [anon_sym_bit_DASHor] = ACTIONS(1514), + [anon_sym_and] = ACTIONS(1514), + [anon_sym_xor] = ACTIONS(1514), + [anon_sym_or] = ACTIONS(1514), + [anon_sym_in] = ACTIONS(1514), + [anon_sym_not_DASHin] = ACTIONS(1514), + [anon_sym_has] = ACTIONS(1514), + [anon_sym_not_DASHhas] = ACTIONS(1514), + [anon_sym_starts_DASHwith] = ACTIONS(1514), + [anon_sym_ends_DASHwith] = ACTIONS(1514), + [anon_sym_EQ_EQ] = ACTIONS(1514), + [anon_sym_BANG_EQ] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_LT_EQ] = ACTIONS(1514), + [anon_sym_GT] = ACTIONS(1512), + [anon_sym_GT_EQ] = ACTIONS(1514), + [aux_sym_cmd_identifier_token41] = ACTIONS(1512), + [sym__newline] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_err_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_GT_PIPE] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1512), + [anon_sym_GT2] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_in2] = ACTIONS(1512), + [anon_sym_STAR2] = ACTIONS(1512), + [anon_sym_and2] = ACTIONS(1512), + [anon_sym_xor2] = ACTIONS(1512), + [anon_sym_or2] = ACTIONS(1512), + [anon_sym_not_DASHin2] = ACTIONS(1512), + [anon_sym_has2] = ACTIONS(1512), + [anon_sym_not_DASHhas2] = ACTIONS(1512), + [anon_sym_starts_DASHwith2] = ACTIONS(1512), + [anon_sym_ends_DASHwith2] = ACTIONS(1512), + [anon_sym_EQ_EQ2] = ACTIONS(1512), + [anon_sym_BANG_EQ2] = ACTIONS(1512), + [anon_sym_LT2] = ACTIONS(1512), + [anon_sym_LT_EQ2] = ACTIONS(1512), + [anon_sym_GT_EQ2] = ACTIONS(1512), + [anon_sym_EQ_TILDE2] = ACTIONS(1512), + [anon_sym_BANG_TILDE2] = ACTIONS(1512), + [anon_sym_STAR_STAR2] = ACTIONS(1512), + [anon_sym_PLUS_PLUS2] = ACTIONS(1512), + [anon_sym_SLASH2] = ACTIONS(1512), + [anon_sym_mod2] = ACTIONS(1512), + [anon_sym_SLASH_SLASH2] = ACTIONS(1512), + [anon_sym_PLUS2] = ACTIONS(1512), + [anon_sym_bit_DASHshl2] = ACTIONS(1512), + [anon_sym_bit_DASHshr2] = ACTIONS(1512), + [anon_sym_bit_DASHand2] = ACTIONS(1512), + [anon_sym_bit_DASHxor2] = ACTIONS(1512), + [anon_sym_bit_DASHor2] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [aux_sym__immediate_decimal_token2] = ACTIONS(2684), + [sym_filesize_unit] = ACTIONS(1512), + [sym_duration_unit] = ACTIONS(1514), + [anon_sym_err_GT] = ACTIONS(1512), + [anon_sym_out_GT] = ACTIONS(1512), + [anon_sym_e_GT] = ACTIONS(1512), + [anon_sym_o_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT] = ACTIONS(1512), + [anon_sym_err_GT_GT] = ACTIONS(1512), + [anon_sym_out_GT_GT] = ACTIONS(1512), + [anon_sym_e_GT_GT] = ACTIONS(1512), + [anon_sym_o_GT_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1512), [anon_sym_POUND] = ACTIONS(3), }, [819] = { + [sym_expr_parenthesized] = STATE(1633), + [sym_val_range] = STATE(2065), + [sym__val_range] = STATE(7756), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2065), + [sym_val_nothing] = STATE(1832), + [sym_val_bool] = STATE(1602), + [sym_val_variable] = STATE(1533), + [sym_val_number] = STATE(1832), + [sym__val_number_decimal] = STATE(1330), + [sym__val_number] = STATE(1836), + [sym_val_duration] = STATE(1832), + [sym_val_filesize] = STATE(1832), + [sym_val_binary] = STATE(1832), + [sym_val_string] = STATE(1832), + [sym__raw_str] = STATE(1932), + [sym__str_double_quotes] = STATE(1932), + [sym_val_interpolated] = STATE(1832), + [sym__inter_single_quotes] = STATE(1921), + [sym__inter_double_quotes] = STATE(1922), + [sym_val_list] = STATE(1832), + [sym_val_record] = STATE(1832), + [sym_val_table] = STATE(1832), + [sym_val_closure] = STATE(1832), + [sym__flag] = STATE(2065), + [sym_short_flag] = STATE(1764), + [sym_long_flag] = STATE(1764), + [sym_unquoted] = STATE(1671), + [sym__unquoted_with_expr] = STATE(2069), + [sym__unquoted_anonymous_prefix] = STATE(6703), [sym_comment] = STATE(819), - [anon_sym_STAR_STAR] = ACTIONS(1552), - [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1550), - [anon_sym_SLASH] = ACTIONS(1550), - [anon_sym_mod] = ACTIONS(1552), - [anon_sym_SLASH_SLASH] = ACTIONS(1552), - [anon_sym_PLUS] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1552), - [anon_sym_bit_DASHshl] = ACTIONS(1552), - [anon_sym_bit_DASHshr] = ACTIONS(1552), - [anon_sym_EQ_TILDE] = ACTIONS(1552), - [anon_sym_BANG_TILDE] = ACTIONS(1552), - [anon_sym_bit_DASHand] = ACTIONS(1552), - [anon_sym_bit_DASHxor] = ACTIONS(1552), - [anon_sym_bit_DASHor] = ACTIONS(1552), - [anon_sym_and] = ACTIONS(1552), - [anon_sym_xor] = ACTIONS(1552), - [anon_sym_or] = ACTIONS(1552), - [anon_sym_in] = ACTIONS(1552), - [anon_sym_not_DASHin] = ACTIONS(1552), - [anon_sym_starts_DASHwith] = ACTIONS(1552), - [anon_sym_ends_DASHwith] = ACTIONS(1552), - [anon_sym_EQ_EQ] = ACTIONS(1552), - [anon_sym_BANG_EQ] = ACTIONS(1552), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_LT_EQ] = ACTIONS(1552), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_GT_EQ] = ACTIONS(1552), - [aux_sym_cmd_identifier_token41] = ACTIONS(1550), - [sym__newline] = ACTIONS(1550), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_err_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_GT_PIPE] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1550), - [anon_sym_GT2] = ACTIONS(1550), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_in2] = ACTIONS(1550), - [anon_sym_STAR2] = ACTIONS(1550), - [anon_sym_and2] = ACTIONS(1550), - [anon_sym_xor2] = ACTIONS(1550), - [anon_sym_or2] = ACTIONS(1550), - [anon_sym_not_DASHin2] = ACTIONS(1550), - [anon_sym_starts_DASHwith2] = ACTIONS(1550), - [anon_sym_ends_DASHwith2] = ACTIONS(1550), - [anon_sym_EQ_EQ2] = ACTIONS(1550), - [anon_sym_BANG_EQ2] = ACTIONS(1550), - [anon_sym_LT2] = ACTIONS(1550), - [anon_sym_LT_EQ2] = ACTIONS(1550), - [anon_sym_GT_EQ2] = ACTIONS(1550), - [anon_sym_EQ_TILDE2] = ACTIONS(1550), - [anon_sym_BANG_TILDE2] = ACTIONS(1550), - [anon_sym_STAR_STAR2] = ACTIONS(1550), - [anon_sym_PLUS_PLUS2] = ACTIONS(1550), - [anon_sym_SLASH2] = ACTIONS(1550), - [anon_sym_mod2] = ACTIONS(1550), - [anon_sym_SLASH_SLASH2] = ACTIONS(1550), - [anon_sym_PLUS2] = ACTIONS(1550), - [anon_sym_bit_DASHshl2] = ACTIONS(1550), - [anon_sym_bit_DASHshr2] = ACTIONS(1550), - [anon_sym_bit_DASHand2] = ACTIONS(1550), - [anon_sym_bit_DASHxor2] = ACTIONS(1550), - [anon_sym_bit_DASHor2] = ACTIONS(1550), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [aux_sym__immediate_decimal_token2] = ACTIONS(3036), - [sym_filesize_unit] = ACTIONS(1550), - [sym_duration_unit] = ACTIONS(1552), - [anon_sym_err_GT] = ACTIONS(1550), - [anon_sym_out_GT] = ACTIONS(1550), - [anon_sym_e_GT] = ACTIONS(1550), - [anon_sym_o_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT] = ACTIONS(1550), - [anon_sym_err_GT_GT] = ACTIONS(1550), - [anon_sym_out_GT_GT] = ACTIONS(1550), - [anon_sym_e_GT_GT] = ACTIONS(1550), - [anon_sym_o_GT_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1550), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(1049), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(812), + [sym__newline] = ACTIONS(2846), + [anon_sym_SEMI] = ACTIONS(2849), + [anon_sym_PIPE] = ACTIONS(2849), + [anon_sym_err_GT_PIPE] = ACTIONS(2849), + [anon_sym_out_GT_PIPE] = ACTIONS(2849), + [anon_sym_e_GT_PIPE] = ACTIONS(2849), + [anon_sym_o_GT_PIPE] = ACTIONS(2849), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2849), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2849), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2849), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2849), + [anon_sym_LBRACK] = ACTIONS(2784), + [anon_sym_LPAREN] = ACTIONS(2786), + [anon_sym_RPAREN] = ACTIONS(2849), + [anon_sym_DOLLAR] = ACTIONS(2788), + [anon_sym_DASH_DASH] = ACTIONS(2790), + [anon_sym_DASH2] = ACTIONS(2792), + [anon_sym_LBRACE] = ACTIONS(2794), + [anon_sym_DOT_DOT] = ACTIONS(2796), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2798), + [anon_sym_DOT_DOT_LT] = ACTIONS(2798), + [anon_sym_null] = ACTIONS(2800), + [anon_sym_true] = ACTIONS(2802), + [anon_sym_false] = ACTIONS(2802), + [aux_sym__val_number_decimal_token1] = ACTIONS(2804), + [aux_sym__val_number_decimal_token2] = ACTIONS(2806), + [aux_sym__val_number_decimal_token3] = ACTIONS(2808), + [aux_sym__val_number_decimal_token4] = ACTIONS(2810), + [aux_sym__val_number_token1] = ACTIONS(2812), + [aux_sym__val_number_token2] = ACTIONS(2812), + [aux_sym__val_number_token3] = ACTIONS(2812), + [aux_sym__val_number_token4] = ACTIONS(2814), + [aux_sym__val_number_token5] = ACTIONS(2814), + [aux_sym__val_number_token6] = ACTIONS(2814), + [anon_sym_0b] = ACTIONS(2816), + [anon_sym_0o] = ACTIONS(2818), + [anon_sym_0x] = ACTIONS(2818), + [sym_val_date] = ACTIONS(2820), + [anon_sym_DQUOTE] = ACTIONS(2822), + [sym__str_single_quotes] = ACTIONS(2824), + [sym__str_back_ticks] = ACTIONS(2824), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2826), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2828), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(2834), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2836), }, [820] = { [sym_comment] = STATE(820), - [anon_sym_STAR_STAR] = ACTIONS(3054), - [anon_sym_PLUS_PLUS] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3056), - [anon_sym_SLASH] = ACTIONS(3056), - [anon_sym_mod] = ACTIONS(3054), - [anon_sym_SLASH_SLASH] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(3056), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_bit_DASHshl] = ACTIONS(3054), - [anon_sym_bit_DASHshr] = ACTIONS(3054), - [anon_sym_EQ_TILDE] = ACTIONS(3054), - [anon_sym_BANG_TILDE] = ACTIONS(3054), - [anon_sym_bit_DASHand] = ACTIONS(3054), - [anon_sym_bit_DASHxor] = ACTIONS(3054), - [anon_sym_bit_DASHor] = ACTIONS(3054), - [anon_sym_and] = ACTIONS(3054), - [anon_sym_xor] = ACTIONS(3054), - [anon_sym_or] = ACTIONS(3054), - [anon_sym_in] = ACTIONS(3054), - [anon_sym_not_DASHin] = ACTIONS(3054), - [anon_sym_starts_DASHwith] = ACTIONS(3054), - [anon_sym_ends_DASHwith] = ACTIONS(3054), - [anon_sym_EQ_EQ] = ACTIONS(3054), - [anon_sym_BANG_EQ] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_LT_EQ] = ACTIONS(3054), - [anon_sym_GT] = ACTIONS(3056), - [anon_sym_GT_EQ] = ACTIONS(3054), - [aux_sym_cmd_identifier_token41] = ACTIONS(3058), - [sym__newline] = ACTIONS(1638), - [anon_sym_SEMI] = ACTIONS(1638), - [anon_sym_PIPE] = ACTIONS(1638), - [anon_sym_err_GT_PIPE] = ACTIONS(1638), - [anon_sym_out_GT_PIPE] = ACTIONS(1638), - [anon_sym_e_GT_PIPE] = ACTIONS(1638), - [anon_sym_o_GT_PIPE] = ACTIONS(1638), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1638), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1638), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1638), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1638), - [anon_sym_GT2] = ACTIONS(1638), - [anon_sym_DASH2] = ACTIONS(1638), - [anon_sym_in2] = ACTIONS(1638), - [anon_sym_RBRACE] = ACTIONS(1638), - [anon_sym_STAR2] = ACTIONS(1638), - [anon_sym_and2] = ACTIONS(1638), - [anon_sym_xor2] = ACTIONS(1638), - [anon_sym_or2] = ACTIONS(1638), - [anon_sym_not_DASHin2] = ACTIONS(1638), - [anon_sym_starts_DASHwith2] = ACTIONS(1638), - [anon_sym_ends_DASHwith2] = ACTIONS(1638), - [anon_sym_EQ_EQ2] = ACTIONS(1638), - [anon_sym_BANG_EQ2] = ACTIONS(1638), - [anon_sym_LT2] = ACTIONS(1638), - [anon_sym_LT_EQ2] = ACTIONS(1638), - [anon_sym_GT_EQ2] = ACTIONS(1638), - [anon_sym_EQ_TILDE2] = ACTIONS(1638), - [anon_sym_BANG_TILDE2] = ACTIONS(1638), - [anon_sym_STAR_STAR2] = ACTIONS(1638), - [anon_sym_PLUS_PLUS2] = ACTIONS(1638), - [anon_sym_SLASH2] = ACTIONS(1638), - [anon_sym_mod2] = ACTIONS(1638), - [anon_sym_SLASH_SLASH2] = ACTIONS(1638), - [anon_sym_PLUS2] = ACTIONS(1638), - [anon_sym_bit_DASHshl2] = ACTIONS(1638), - [anon_sym_bit_DASHshr2] = ACTIONS(1638), - [anon_sym_bit_DASHand2] = ACTIONS(1638), - [anon_sym_bit_DASHxor2] = ACTIONS(1638), - [anon_sym_bit_DASHor2] = ACTIONS(1638), - [anon_sym_DOT_DOT2] = ACTIONS(3044), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3046), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3046), - [sym_filesize_unit] = ACTIONS(3086), - [sym_duration_unit] = ACTIONS(3088), - [anon_sym_err_GT] = ACTIONS(1638), - [anon_sym_out_GT] = ACTIONS(1638), - [anon_sym_e_GT] = ACTIONS(1638), - [anon_sym_o_GT] = ACTIONS(1638), - [anon_sym_err_PLUSout_GT] = ACTIONS(1638), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1638), - [anon_sym_o_PLUSe_GT] = ACTIONS(1638), - [anon_sym_e_PLUSo_GT] = ACTIONS(1638), - [anon_sym_err_GT_GT] = ACTIONS(1638), - [anon_sym_out_GT_GT] = ACTIONS(1638), - [anon_sym_e_GT_GT] = ACTIONS(1638), - [anon_sym_o_GT_GT] = ACTIONS(1638), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1638), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1638), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1638), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1638), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token1] = ACTIONS(2948), + [aux_sym_cmd_identifier_token2] = ACTIONS(2950), + [aux_sym_cmd_identifier_token3] = ACTIONS(2950), + [aux_sym_cmd_identifier_token4] = ACTIONS(2950), + [aux_sym_cmd_identifier_token5] = ACTIONS(2950), + [aux_sym_cmd_identifier_token6] = ACTIONS(2950), + [aux_sym_cmd_identifier_token7] = ACTIONS(2950), + [aux_sym_cmd_identifier_token8] = ACTIONS(2950), + [aux_sym_cmd_identifier_token9] = ACTIONS(2948), + [aux_sym_cmd_identifier_token10] = ACTIONS(2950), + [aux_sym_cmd_identifier_token11] = ACTIONS(2950), + [aux_sym_cmd_identifier_token12] = ACTIONS(2950), + [aux_sym_cmd_identifier_token13] = ACTIONS(2948), + [aux_sym_cmd_identifier_token14] = ACTIONS(2950), + [aux_sym_cmd_identifier_token15] = ACTIONS(2948), + [aux_sym_cmd_identifier_token16] = ACTIONS(2950), + [aux_sym_cmd_identifier_token17] = ACTIONS(2950), + [aux_sym_cmd_identifier_token18] = ACTIONS(2948), + [aux_sym_cmd_identifier_token19] = ACTIONS(2950), + [aux_sym_cmd_identifier_token20] = ACTIONS(2950), + [aux_sym_cmd_identifier_token21] = ACTIONS(2950), + [aux_sym_cmd_identifier_token22] = ACTIONS(2950), + [aux_sym_cmd_identifier_token23] = ACTIONS(2950), + [aux_sym_cmd_identifier_token24] = ACTIONS(2950), + [aux_sym_cmd_identifier_token25] = ACTIONS(2950), + [aux_sym_cmd_identifier_token26] = ACTIONS(2950), + [aux_sym_cmd_identifier_token27] = ACTIONS(2950), + [aux_sym_cmd_identifier_token28] = ACTIONS(2950), + [aux_sym_cmd_identifier_token29] = ACTIONS(2950), + [aux_sym_cmd_identifier_token30] = ACTIONS(2950), + [aux_sym_cmd_identifier_token31] = ACTIONS(2950), + [aux_sym_cmd_identifier_token32] = ACTIONS(2948), + [aux_sym_cmd_identifier_token33] = ACTIONS(2950), + [aux_sym_cmd_identifier_token34] = ACTIONS(2948), + [aux_sym_cmd_identifier_token35] = ACTIONS(2950), + [aux_sym_cmd_identifier_token36] = ACTIONS(2950), + [aux_sym_cmd_identifier_token37] = ACTIONS(2950), + [aux_sym_cmd_identifier_token38] = ACTIONS(2948), + [aux_sym_cmd_identifier_token39] = ACTIONS(2950), + [aux_sym_cmd_identifier_token40] = ACTIONS(2950), + [sym__newline] = ACTIONS(2950), + [anon_sym_PIPE] = ACTIONS(2950), + [anon_sym_err_GT_PIPE] = ACTIONS(2950), + [anon_sym_out_GT_PIPE] = ACTIONS(2950), + [anon_sym_e_GT_PIPE] = ACTIONS(2950), + [anon_sym_o_GT_PIPE] = ACTIONS(2950), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2950), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2950), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2950), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2950), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_LPAREN] = ACTIONS(2950), + [anon_sym_DOLLAR] = ACTIONS(2948), + [anon_sym_DASH2] = ACTIONS(2948), + [anon_sym_break] = ACTIONS(2948), + [anon_sym_continue] = ACTIONS(2948), + [anon_sym_do] = ACTIONS(2948), + [anon_sym_if] = ACTIONS(2948), + [anon_sym_match] = ACTIONS(2948), + [anon_sym_LBRACE] = ACTIONS(2950), + [anon_sym_DOT_DOT] = ACTIONS(2948), + [anon_sym_try] = ACTIONS(2948), + [anon_sym_return] = ACTIONS(2948), + [anon_sym_where] = ACTIONS(2950), + [aux_sym_expr_unary_token1] = ACTIONS(2950), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2950), + [anon_sym_DOT_DOT_LT] = ACTIONS(2950), + [anon_sym_null] = ACTIONS(2948), + [anon_sym_true] = ACTIONS(2948), + [anon_sym_false] = ACTIONS(2948), + [aux_sym__val_number_decimal_token1] = ACTIONS(2948), + [aux_sym__val_number_decimal_token2] = ACTIONS(2950), + [aux_sym__val_number_decimal_token3] = ACTIONS(2950), + [aux_sym__val_number_decimal_token4] = ACTIONS(2950), + [aux_sym__val_number_token1] = ACTIONS(2950), + [aux_sym__val_number_token2] = ACTIONS(2950), + [aux_sym__val_number_token3] = ACTIONS(2950), + [aux_sym__val_number_token4] = ACTIONS(2948), + [aux_sym__val_number_token5] = ACTIONS(2948), + [aux_sym__val_number_token6] = ACTIONS(2948), + [anon_sym_0b] = ACTIONS(2948), + [anon_sym_0o] = ACTIONS(2948), + [anon_sym_0x] = ACTIONS(2948), + [sym_val_date] = ACTIONS(2950), + [anon_sym_DQUOTE] = ACTIONS(2950), + [sym__str_single_quotes] = ACTIONS(2950), + [sym__str_back_ticks] = ACTIONS(2950), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2950), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2950), + [aux_sym_env_var_token1] = ACTIONS(2948), + [anon_sym_CARET] = ACTIONS(2950), + [aux_sym_command_token1] = ACTIONS(2950), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2950), }, [821] = { [sym_comment] = STATE(821), - [ts_builtin_sym_end] = ACTIONS(1552), - [anon_sym_STAR_STAR] = ACTIONS(1552), - [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1550), - [anon_sym_SLASH] = ACTIONS(1550), - [anon_sym_mod] = ACTIONS(1552), - [anon_sym_SLASH_SLASH] = ACTIONS(1552), - [anon_sym_PLUS] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1552), - [anon_sym_bit_DASHshl] = ACTIONS(1552), - [anon_sym_bit_DASHshr] = ACTIONS(1552), - [anon_sym_EQ_TILDE] = ACTIONS(1552), - [anon_sym_BANG_TILDE] = ACTIONS(1552), - [anon_sym_bit_DASHand] = ACTIONS(1552), - [anon_sym_bit_DASHxor] = ACTIONS(1552), - [anon_sym_bit_DASHor] = ACTIONS(1552), - [anon_sym_and] = ACTIONS(1552), - [anon_sym_xor] = ACTIONS(1552), - [anon_sym_or] = ACTIONS(1552), - [anon_sym_in] = ACTIONS(1552), - [anon_sym_not_DASHin] = ACTIONS(1552), - [anon_sym_starts_DASHwith] = ACTIONS(1552), - [anon_sym_ends_DASHwith] = ACTIONS(1552), - [anon_sym_EQ_EQ] = ACTIONS(1552), - [anon_sym_BANG_EQ] = ACTIONS(1552), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_LT_EQ] = ACTIONS(1552), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_GT_EQ] = ACTIONS(1552), - [aux_sym_cmd_identifier_token41] = ACTIONS(1550), - [sym__newline] = ACTIONS(1550), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_err_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_GT_PIPE] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1550), - [anon_sym_GT2] = ACTIONS(1550), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_in2] = ACTIONS(1550), - [anon_sym_STAR2] = ACTIONS(1550), - [anon_sym_and2] = ACTIONS(1550), - [anon_sym_xor2] = ACTIONS(1550), - [anon_sym_or2] = ACTIONS(1550), - [anon_sym_not_DASHin2] = ACTIONS(1550), - [anon_sym_starts_DASHwith2] = ACTIONS(1550), - [anon_sym_ends_DASHwith2] = ACTIONS(1550), - [anon_sym_EQ_EQ2] = ACTIONS(1550), - [anon_sym_BANG_EQ2] = ACTIONS(1550), - [anon_sym_LT2] = ACTIONS(1550), - [anon_sym_LT_EQ2] = ACTIONS(1550), - [anon_sym_GT_EQ2] = ACTIONS(1550), - [anon_sym_EQ_TILDE2] = ACTIONS(1550), - [anon_sym_BANG_TILDE2] = ACTIONS(1550), - [anon_sym_STAR_STAR2] = ACTIONS(1550), - [anon_sym_PLUS_PLUS2] = ACTIONS(1550), - [anon_sym_SLASH2] = ACTIONS(1550), - [anon_sym_mod2] = ACTIONS(1550), - [anon_sym_SLASH_SLASH2] = ACTIONS(1550), - [anon_sym_PLUS2] = ACTIONS(1550), - [anon_sym_bit_DASHshl2] = ACTIONS(1550), - [anon_sym_bit_DASHshr2] = ACTIONS(1550), - [anon_sym_bit_DASHand2] = ACTIONS(1550), - [anon_sym_bit_DASHxor2] = ACTIONS(1550), - [anon_sym_bit_DASHor2] = ACTIONS(1550), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [sym_filesize_unit] = ACTIONS(1550), - [sym_duration_unit] = ACTIONS(1552), - [anon_sym_err_GT] = ACTIONS(1550), - [anon_sym_out_GT] = ACTIONS(1550), - [anon_sym_e_GT] = ACTIONS(1550), - [anon_sym_o_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT] = ACTIONS(1550), - [anon_sym_err_GT_GT] = ACTIONS(1550), - [anon_sym_out_GT_GT] = ACTIONS(1550), - [anon_sym_e_GT_GT] = ACTIONS(1550), - [anon_sym_o_GT_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1550), + [anon_sym_STAR_STAR] = ACTIONS(1620), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1618), + [anon_sym_SLASH] = ACTIONS(1618), + [anon_sym_mod] = ACTIONS(1620), + [anon_sym_SLASH_SLASH] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1618), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_bit_DASHshl] = ACTIONS(1620), + [anon_sym_bit_DASHshr] = ACTIONS(1620), + [anon_sym_EQ_TILDE] = ACTIONS(1620), + [anon_sym_BANG_TILDE] = ACTIONS(1620), + [anon_sym_bit_DASHand] = ACTIONS(1620), + [anon_sym_bit_DASHxor] = ACTIONS(1620), + [anon_sym_bit_DASHor] = ACTIONS(1620), + [anon_sym_and] = ACTIONS(1620), + [anon_sym_xor] = ACTIONS(1620), + [anon_sym_or] = ACTIONS(1620), + [anon_sym_in] = ACTIONS(1620), + [anon_sym_not_DASHin] = ACTIONS(1620), + [anon_sym_has] = ACTIONS(1620), + [anon_sym_not_DASHhas] = ACTIONS(1620), + [anon_sym_starts_DASHwith] = ACTIONS(1620), + [anon_sym_ends_DASHwith] = ACTIONS(1620), + [anon_sym_EQ_EQ] = ACTIONS(1620), + [anon_sym_BANG_EQ] = ACTIONS(1620), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_LT_EQ] = ACTIONS(1620), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_GT_EQ] = ACTIONS(1620), + [aux_sym_cmd_identifier_token41] = ACTIONS(1618), + [sym__newline] = ACTIONS(1618), + [anon_sym_SEMI] = ACTIONS(1618), + [anon_sym_PIPE] = ACTIONS(1618), + [anon_sym_err_GT_PIPE] = ACTIONS(1618), + [anon_sym_out_GT_PIPE] = ACTIONS(1618), + [anon_sym_e_GT_PIPE] = ACTIONS(1618), + [anon_sym_o_GT_PIPE] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1618), + [anon_sym_GT2] = ACTIONS(1618), + [anon_sym_DASH2] = ACTIONS(1618), + [anon_sym_in2] = ACTIONS(1618), + [anon_sym_STAR2] = ACTIONS(1618), + [anon_sym_and2] = ACTIONS(1618), + [anon_sym_xor2] = ACTIONS(1618), + [anon_sym_or2] = ACTIONS(1618), + [anon_sym_not_DASHin2] = ACTIONS(1618), + [anon_sym_has2] = ACTIONS(1618), + [anon_sym_not_DASHhas2] = ACTIONS(1618), + [anon_sym_starts_DASHwith2] = ACTIONS(1618), + [anon_sym_ends_DASHwith2] = ACTIONS(1618), + [anon_sym_EQ_EQ2] = ACTIONS(1618), + [anon_sym_BANG_EQ2] = ACTIONS(1618), + [anon_sym_LT2] = ACTIONS(1618), + [anon_sym_LT_EQ2] = ACTIONS(1618), + [anon_sym_GT_EQ2] = ACTIONS(1618), + [anon_sym_EQ_TILDE2] = ACTIONS(1618), + [anon_sym_BANG_TILDE2] = ACTIONS(1618), + [anon_sym_STAR_STAR2] = ACTIONS(1618), + [anon_sym_PLUS_PLUS2] = ACTIONS(1618), + [anon_sym_SLASH2] = ACTIONS(1618), + [anon_sym_mod2] = ACTIONS(1618), + [anon_sym_SLASH_SLASH2] = ACTIONS(1618), + [anon_sym_PLUS2] = ACTIONS(1618), + [anon_sym_bit_DASHshl2] = ACTIONS(1618), + [anon_sym_bit_DASHshr2] = ACTIONS(1618), + [anon_sym_bit_DASHand2] = ACTIONS(1618), + [anon_sym_bit_DASHxor2] = ACTIONS(1618), + [anon_sym_bit_DASHor2] = ACTIONS(1618), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [sym_filesize_unit] = ACTIONS(1618), + [sym_duration_unit] = ACTIONS(1620), + [anon_sym_err_GT] = ACTIONS(1618), + [anon_sym_out_GT] = ACTIONS(1618), + [anon_sym_e_GT] = ACTIONS(1618), + [anon_sym_o_GT] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT] = ACTIONS(1618), + [anon_sym_err_GT_GT] = ACTIONS(1618), + [anon_sym_out_GT_GT] = ACTIONS(1618), + [anon_sym_e_GT_GT] = ACTIONS(1618), + [anon_sym_o_GT_GT] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1618), [anon_sym_POUND] = ACTIONS(3), }, [822] = { + [sym_expr_parenthesized] = STATE(1570), + [sym_val_range] = STATE(1858), + [sym__val_range] = STATE(7756), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(1858), + [sym_val_nothing] = STATE(1832), + [sym_val_bool] = STATE(1602), + [sym_val_variable] = STATE(1533), + [sym_val_number] = STATE(1832), + [sym__val_number_decimal] = STATE(1330), + [sym__val_number] = STATE(1836), + [sym_val_duration] = STATE(1832), + [sym_val_filesize] = STATE(1832), + [sym_val_binary] = STATE(1832), + [sym_val_string] = STATE(1832), + [sym__raw_str] = STATE(1932), + [sym__str_double_quotes] = STATE(1932), + [sym_val_interpolated] = STATE(1832), + [sym__inter_single_quotes] = STATE(1921), + [sym__inter_double_quotes] = STATE(1922), + [sym_val_list] = STATE(1832), + [sym_val_record] = STATE(1832), + [sym_val_table] = STATE(1832), + [sym_val_closure] = STATE(1832), + [sym__flag] = STATE(1858), + [sym_short_flag] = STATE(1764), + [sym_long_flag] = STATE(1764), + [sym_unquoted] = STATE(1635), + [sym__unquoted_with_expr] = STATE(1860), + [sym__unquoted_anonymous_prefix] = STATE(6703), [sym_comment] = STATE(822), - [anon_sym_STAR_STAR] = ACTIONS(3054), - [anon_sym_PLUS_PLUS] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3056), - [anon_sym_SLASH] = ACTIONS(3056), - [anon_sym_mod] = ACTIONS(3054), - [anon_sym_SLASH_SLASH] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(3056), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_bit_DASHshl] = ACTIONS(3054), - [anon_sym_bit_DASHshr] = ACTIONS(3054), - [anon_sym_EQ_TILDE] = ACTIONS(3054), - [anon_sym_BANG_TILDE] = ACTIONS(3054), - [anon_sym_bit_DASHand] = ACTIONS(3054), - [anon_sym_bit_DASHxor] = ACTIONS(3054), - [anon_sym_bit_DASHor] = ACTIONS(3054), - [anon_sym_and] = ACTIONS(3054), - [anon_sym_xor] = ACTIONS(3054), - [anon_sym_or] = ACTIONS(3054), - [anon_sym_in] = ACTIONS(3054), - [anon_sym_not_DASHin] = ACTIONS(3054), - [anon_sym_starts_DASHwith] = ACTIONS(3054), - [anon_sym_ends_DASHwith] = ACTIONS(3054), - [anon_sym_EQ_EQ] = ACTIONS(3054), - [anon_sym_BANG_EQ] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_LT_EQ] = ACTIONS(3054), - [anon_sym_GT] = ACTIONS(3056), - [anon_sym_GT_EQ] = ACTIONS(3054), - [aux_sym_cmd_identifier_token41] = ACTIONS(3058), - [sym__newline] = ACTIONS(1638), - [anon_sym_SEMI] = ACTIONS(1638), - [anon_sym_PIPE] = ACTIONS(1638), - [anon_sym_err_GT_PIPE] = ACTIONS(1638), - [anon_sym_out_GT_PIPE] = ACTIONS(1638), - [anon_sym_e_GT_PIPE] = ACTIONS(1638), - [anon_sym_o_GT_PIPE] = ACTIONS(1638), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1638), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1638), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1638), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1638), - [anon_sym_GT2] = ACTIONS(1638), - [anon_sym_DASH2] = ACTIONS(1638), - [anon_sym_in2] = ACTIONS(1638), - [anon_sym_STAR2] = ACTIONS(1638), - [anon_sym_and2] = ACTIONS(1638), - [anon_sym_xor2] = ACTIONS(1638), - [anon_sym_or2] = ACTIONS(1638), - [anon_sym_not_DASHin2] = ACTIONS(1638), - [anon_sym_starts_DASHwith2] = ACTIONS(1638), - [anon_sym_ends_DASHwith2] = ACTIONS(1638), - [anon_sym_EQ_EQ2] = ACTIONS(1638), - [anon_sym_BANG_EQ2] = ACTIONS(1638), - [anon_sym_LT2] = ACTIONS(1638), - [anon_sym_LT_EQ2] = ACTIONS(1638), - [anon_sym_GT_EQ2] = ACTIONS(1638), - [anon_sym_EQ_TILDE2] = ACTIONS(1638), - [anon_sym_BANG_TILDE2] = ACTIONS(1638), - [anon_sym_STAR_STAR2] = ACTIONS(1638), - [anon_sym_PLUS_PLUS2] = ACTIONS(1638), - [anon_sym_SLASH2] = ACTIONS(1638), - [anon_sym_mod2] = ACTIONS(1638), - [anon_sym_SLASH_SLASH2] = ACTIONS(1638), - [anon_sym_PLUS2] = ACTIONS(1638), - [anon_sym_bit_DASHshl2] = ACTIONS(1638), - [anon_sym_bit_DASHshr2] = ACTIONS(1638), - [anon_sym_bit_DASHand2] = ACTIONS(1638), - [anon_sym_bit_DASHxor2] = ACTIONS(1638), - [anon_sym_bit_DASHor2] = ACTIONS(1638), - [anon_sym_DOT_DOT2] = ACTIONS(3044), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3046), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3046), - [sym_filesize_unit] = ACTIONS(3090), - [sym_duration_unit] = ACTIONS(3092), - [anon_sym_err_GT] = ACTIONS(1638), - [anon_sym_out_GT] = ACTIONS(1638), - [anon_sym_e_GT] = ACTIONS(1638), - [anon_sym_o_GT] = ACTIONS(1638), - [anon_sym_err_PLUSout_GT] = ACTIONS(1638), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1638), - [anon_sym_o_PLUSe_GT] = ACTIONS(1638), - [anon_sym_e_PLUSo_GT] = ACTIONS(1638), - [anon_sym_err_GT_GT] = ACTIONS(1638), - [anon_sym_out_GT_GT] = ACTIONS(1638), - [anon_sym_e_GT_GT] = ACTIONS(1638), - [anon_sym_o_GT_GT] = ACTIONS(1638), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1638), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1638), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1638), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1638), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_do_repeat2] = STATE(803), + [sym__newline] = ACTIONS(2946), + [anon_sym_SEMI] = ACTIONS(2946), + [anon_sym_PIPE] = ACTIONS(2946), + [anon_sym_err_GT_PIPE] = ACTIONS(2946), + [anon_sym_out_GT_PIPE] = ACTIONS(2946), + [anon_sym_e_GT_PIPE] = ACTIONS(2946), + [anon_sym_o_GT_PIPE] = ACTIONS(2946), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2946), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2946), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2946), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2784), + [anon_sym_LPAREN] = ACTIONS(2786), + [anon_sym_RPAREN] = ACTIONS(2946), + [anon_sym_DOLLAR] = ACTIONS(2788), + [anon_sym_DASH_DASH] = ACTIONS(2790), + [anon_sym_DASH2] = ACTIONS(2792), + [anon_sym_LBRACE] = ACTIONS(2794), + [anon_sym_RBRACE] = ACTIONS(2946), + [anon_sym_DOT_DOT] = ACTIONS(2796), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2798), + [anon_sym_DOT_DOT_LT] = ACTIONS(2798), + [anon_sym_null] = ACTIONS(2800), + [anon_sym_true] = ACTIONS(2802), + [anon_sym_false] = ACTIONS(2802), + [aux_sym__val_number_decimal_token1] = ACTIONS(2804), + [aux_sym__val_number_decimal_token2] = ACTIONS(2806), + [aux_sym__val_number_decimal_token3] = ACTIONS(2808), + [aux_sym__val_number_decimal_token4] = ACTIONS(2810), + [aux_sym__val_number_token1] = ACTIONS(2812), + [aux_sym__val_number_token2] = ACTIONS(2812), + [aux_sym__val_number_token3] = ACTIONS(2812), + [aux_sym__val_number_token4] = ACTIONS(2814), + [aux_sym__val_number_token5] = ACTIONS(2814), + [aux_sym__val_number_token6] = ACTIONS(2814), + [anon_sym_0b] = ACTIONS(2816), + [anon_sym_0o] = ACTIONS(2818), + [anon_sym_0x] = ACTIONS(2818), + [sym_val_date] = ACTIONS(2820), + [anon_sym_DQUOTE] = ACTIONS(2822), + [sym__str_single_quotes] = ACTIONS(2824), + [sym__str_back_ticks] = ACTIONS(2824), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2826), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2828), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(2834), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2836), }, [823] = { + [sym_expr_parenthesized] = STATE(1633), + [sym_val_range] = STATE(2065), + [sym__val_range] = STATE(7756), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2065), + [sym_val_nothing] = STATE(1832), + [sym_val_bool] = STATE(1602), + [sym_val_variable] = STATE(1533), + [sym_val_number] = STATE(1832), + [sym__val_number_decimal] = STATE(1330), + [sym__val_number] = STATE(1836), + [sym_val_duration] = STATE(1832), + [sym_val_filesize] = STATE(1832), + [sym_val_binary] = STATE(1832), + [sym_val_string] = STATE(1832), + [sym__raw_str] = STATE(1932), + [sym__str_double_quotes] = STATE(1932), + [sym_val_interpolated] = STATE(1832), + [sym__inter_single_quotes] = STATE(1921), + [sym__inter_double_quotes] = STATE(1922), + [sym_val_list] = STATE(1832), + [sym_val_record] = STATE(1832), + [sym_val_table] = STATE(1832), + [sym_val_closure] = STATE(1832), + [sym__flag] = STATE(2065), + [sym_short_flag] = STATE(1764), + [sym_long_flag] = STATE(1764), + [sym_unquoted] = STATE(1671), + [sym__unquoted_with_expr] = STATE(2069), + [sym__unquoted_anonymous_prefix] = STATE(6703), [sym_comment] = STATE(823), - [anon_sym_STAR_STAR] = ACTIONS(1682), - [anon_sym_PLUS_PLUS] = ACTIONS(1682), - [anon_sym_STAR] = ACTIONS(1680), - [anon_sym_SLASH] = ACTIONS(1680), - [anon_sym_mod] = ACTIONS(1682), - [anon_sym_SLASH_SLASH] = ACTIONS(1682), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_DASH] = ACTIONS(1682), - [anon_sym_bit_DASHshl] = ACTIONS(1682), - [anon_sym_bit_DASHshr] = ACTIONS(1682), - [anon_sym_EQ_TILDE] = ACTIONS(1682), - [anon_sym_BANG_TILDE] = ACTIONS(1682), - [anon_sym_bit_DASHand] = ACTIONS(1682), - [anon_sym_bit_DASHxor] = ACTIONS(1682), - [anon_sym_bit_DASHor] = ACTIONS(1682), - [anon_sym_and] = ACTIONS(1682), - [anon_sym_xor] = ACTIONS(1682), - [anon_sym_or] = ACTIONS(1682), - [anon_sym_in] = ACTIONS(1682), - [anon_sym_not_DASHin] = ACTIONS(1682), - [anon_sym_starts_DASHwith] = ACTIONS(1682), - [anon_sym_ends_DASHwith] = ACTIONS(1682), - [anon_sym_EQ_EQ] = ACTIONS(1682), - [anon_sym_BANG_EQ] = ACTIONS(1682), - [anon_sym_LT] = ACTIONS(1680), - [anon_sym_LT_EQ] = ACTIONS(1682), - [anon_sym_GT] = ACTIONS(1680), - [anon_sym_GT_EQ] = ACTIONS(1682), - [aux_sym_cmd_identifier_token41] = ACTIONS(1680), - [sym__newline] = ACTIONS(1680), - [anon_sym_PIPE] = ACTIONS(1680), - [anon_sym_err_GT_PIPE] = ACTIONS(1680), - [anon_sym_out_GT_PIPE] = ACTIONS(1680), - [anon_sym_e_GT_PIPE] = ACTIONS(1680), - [anon_sym_o_GT_PIPE] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1680), - [anon_sym_GT2] = ACTIONS(1680), - [anon_sym_DASH2] = ACTIONS(1680), - [anon_sym_in2] = ACTIONS(1680), - [anon_sym_STAR2] = ACTIONS(1680), - [anon_sym_and2] = ACTIONS(1680), - [anon_sym_xor2] = ACTIONS(1680), - [anon_sym_or2] = ACTIONS(1680), - [anon_sym_not_DASHin2] = ACTIONS(1680), - [anon_sym_starts_DASHwith2] = ACTIONS(1680), - [anon_sym_ends_DASHwith2] = ACTIONS(1680), - [anon_sym_EQ_EQ2] = ACTIONS(1680), - [anon_sym_BANG_EQ2] = ACTIONS(1680), - [anon_sym_LT2] = ACTIONS(1680), - [anon_sym_LT_EQ2] = ACTIONS(1680), - [anon_sym_GT_EQ2] = ACTIONS(1680), - [anon_sym_EQ_TILDE2] = ACTIONS(1680), - [anon_sym_BANG_TILDE2] = ACTIONS(1680), - [anon_sym_STAR_STAR2] = ACTIONS(1680), - [anon_sym_PLUS_PLUS2] = ACTIONS(1680), - [anon_sym_SLASH2] = ACTIONS(1680), - [anon_sym_mod2] = ACTIONS(1680), - [anon_sym_SLASH_SLASH2] = ACTIONS(1680), - [anon_sym_PLUS2] = ACTIONS(1680), - [anon_sym_bit_DASHshl2] = ACTIONS(1680), - [anon_sym_bit_DASHshr2] = ACTIONS(1680), - [anon_sym_bit_DASHand2] = ACTIONS(1680), - [anon_sym_bit_DASHxor2] = ACTIONS(1680), - [anon_sym_bit_DASHor2] = ACTIONS(1680), - [anon_sym_DOT_DOT2] = ACTIONS(1680), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1682), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1682), - [aux_sym__immediate_decimal_token2] = ACTIONS(3094), - [sym_filesize_unit] = ACTIONS(1680), - [sym_duration_unit] = ACTIONS(1682), - [anon_sym_err_GT] = ACTIONS(1680), - [anon_sym_out_GT] = ACTIONS(1680), - [anon_sym_e_GT] = ACTIONS(1680), - [anon_sym_o_GT] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT] = ACTIONS(1680), - [anon_sym_err_GT_GT] = ACTIONS(1680), - [anon_sym_out_GT_GT] = ACTIONS(1680), - [anon_sym_e_GT_GT] = ACTIONS(1680), - [anon_sym_o_GT_GT] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1680), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(1049), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(812), + [sym__newline] = ACTIONS(2952), + [anon_sym_SEMI] = ACTIONS(2955), + [anon_sym_PIPE] = ACTIONS(2955), + [anon_sym_err_GT_PIPE] = ACTIONS(2955), + [anon_sym_out_GT_PIPE] = ACTIONS(2955), + [anon_sym_e_GT_PIPE] = ACTIONS(2955), + [anon_sym_o_GT_PIPE] = ACTIONS(2955), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2955), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2955), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2955), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2784), + [anon_sym_LPAREN] = ACTIONS(2786), + [anon_sym_RPAREN] = ACTIONS(2955), + [anon_sym_DOLLAR] = ACTIONS(2788), + [anon_sym_DASH_DASH] = ACTIONS(2790), + [anon_sym_DASH2] = ACTIONS(2792), + [anon_sym_LBRACE] = ACTIONS(2794), + [anon_sym_DOT_DOT] = ACTIONS(2796), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2798), + [anon_sym_DOT_DOT_LT] = ACTIONS(2798), + [anon_sym_null] = ACTIONS(2800), + [anon_sym_true] = ACTIONS(2802), + [anon_sym_false] = ACTIONS(2802), + [aux_sym__val_number_decimal_token1] = ACTIONS(2804), + [aux_sym__val_number_decimal_token2] = ACTIONS(2806), + [aux_sym__val_number_decimal_token3] = ACTIONS(2808), + [aux_sym__val_number_decimal_token4] = ACTIONS(2810), + [aux_sym__val_number_token1] = ACTIONS(2812), + [aux_sym__val_number_token2] = ACTIONS(2812), + [aux_sym__val_number_token3] = ACTIONS(2812), + [aux_sym__val_number_token4] = ACTIONS(2814), + [aux_sym__val_number_token5] = ACTIONS(2814), + [aux_sym__val_number_token6] = ACTIONS(2814), + [anon_sym_0b] = ACTIONS(2816), + [anon_sym_0o] = ACTIONS(2818), + [anon_sym_0x] = ACTIONS(2818), + [sym_val_date] = ACTIONS(2820), + [anon_sym_DQUOTE] = ACTIONS(2822), + [sym__str_single_quotes] = ACTIONS(2824), + [sym__str_back_ticks] = ACTIONS(2824), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2826), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2828), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(2834), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2836), }, [824] = { [sym_comment] = STATE(824), - [anon_sym_STAR_STAR] = ACTIONS(1552), - [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1550), - [anon_sym_SLASH] = ACTIONS(1550), - [anon_sym_mod] = ACTIONS(1552), - [anon_sym_SLASH_SLASH] = ACTIONS(1552), - [anon_sym_PLUS] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1552), - [anon_sym_bit_DASHshl] = ACTIONS(1552), - [anon_sym_bit_DASHshr] = ACTIONS(1552), - [anon_sym_EQ_TILDE] = ACTIONS(1552), - [anon_sym_BANG_TILDE] = ACTIONS(1552), - [anon_sym_bit_DASHand] = ACTIONS(1552), - [anon_sym_bit_DASHxor] = ACTIONS(1552), - [anon_sym_bit_DASHor] = ACTIONS(1552), - [anon_sym_and] = ACTIONS(1552), - [anon_sym_xor] = ACTIONS(1552), - [anon_sym_or] = ACTIONS(1552), - [anon_sym_in] = ACTIONS(1552), - [anon_sym_not_DASHin] = ACTIONS(1552), - [anon_sym_starts_DASHwith] = ACTIONS(1552), - [anon_sym_ends_DASHwith] = ACTIONS(1552), - [anon_sym_EQ_EQ] = ACTIONS(1552), - [anon_sym_BANG_EQ] = ACTIONS(1552), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_LT_EQ] = ACTIONS(1552), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_GT_EQ] = ACTIONS(1552), - [aux_sym_cmd_identifier_token41] = ACTIONS(1550), - [sym__newline] = ACTIONS(1550), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_err_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_GT_PIPE] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1550), - [anon_sym_GT2] = ACTIONS(1550), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_in2] = ACTIONS(1550), - [anon_sym_STAR2] = ACTIONS(1550), - [anon_sym_and2] = ACTIONS(1550), - [anon_sym_xor2] = ACTIONS(1550), - [anon_sym_or2] = ACTIONS(1550), - [anon_sym_not_DASHin2] = ACTIONS(1550), - [anon_sym_starts_DASHwith2] = ACTIONS(1550), - [anon_sym_ends_DASHwith2] = ACTIONS(1550), - [anon_sym_EQ_EQ2] = ACTIONS(1550), - [anon_sym_BANG_EQ2] = ACTIONS(1550), - [anon_sym_LT2] = ACTIONS(1550), - [anon_sym_LT_EQ2] = ACTIONS(1550), - [anon_sym_GT_EQ2] = ACTIONS(1550), - [anon_sym_EQ_TILDE2] = ACTIONS(1550), - [anon_sym_BANG_TILDE2] = ACTIONS(1550), - [anon_sym_STAR_STAR2] = ACTIONS(1550), - [anon_sym_PLUS_PLUS2] = ACTIONS(1550), - [anon_sym_SLASH2] = ACTIONS(1550), - [anon_sym_mod2] = ACTIONS(1550), - [anon_sym_SLASH_SLASH2] = ACTIONS(1550), - [anon_sym_PLUS2] = ACTIONS(1550), - [anon_sym_bit_DASHshl2] = ACTIONS(1550), - [anon_sym_bit_DASHshr2] = ACTIONS(1550), - [anon_sym_bit_DASHand2] = ACTIONS(1550), - [anon_sym_bit_DASHxor2] = ACTIONS(1550), - [anon_sym_bit_DASHor2] = ACTIONS(1550), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [aux_sym__immediate_decimal_token2] = ACTIONS(3066), - [sym_filesize_unit] = ACTIONS(1550), - [sym_duration_unit] = ACTIONS(1552), - [anon_sym_err_GT] = ACTIONS(1550), - [anon_sym_out_GT] = ACTIONS(1550), - [anon_sym_e_GT] = ACTIONS(1550), - [anon_sym_o_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT] = ACTIONS(1550), - [anon_sym_err_GT_GT] = ACTIONS(1550), - [anon_sym_out_GT_GT] = ACTIONS(1550), - [anon_sym_e_GT_GT] = ACTIONS(1550), - [anon_sym_o_GT_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1550), + [anon_sym_STAR_STAR] = ACTIONS(1620), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1618), + [anon_sym_SLASH] = ACTIONS(1618), + [anon_sym_mod] = ACTIONS(1620), + [anon_sym_SLASH_SLASH] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1618), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_bit_DASHshl] = ACTIONS(1620), + [anon_sym_bit_DASHshr] = ACTIONS(1620), + [anon_sym_EQ_TILDE] = ACTIONS(1620), + [anon_sym_BANG_TILDE] = ACTIONS(1620), + [anon_sym_bit_DASHand] = ACTIONS(1620), + [anon_sym_bit_DASHxor] = ACTIONS(1620), + [anon_sym_bit_DASHor] = ACTIONS(1620), + [anon_sym_and] = ACTIONS(1620), + [anon_sym_xor] = ACTIONS(1620), + [anon_sym_or] = ACTIONS(1620), + [anon_sym_in] = ACTIONS(1620), + [anon_sym_not_DASHin] = ACTIONS(1620), + [anon_sym_has] = ACTIONS(1620), + [anon_sym_not_DASHhas] = ACTIONS(1620), + [anon_sym_starts_DASHwith] = ACTIONS(1620), + [anon_sym_ends_DASHwith] = ACTIONS(1620), + [anon_sym_EQ_EQ] = ACTIONS(1620), + [anon_sym_BANG_EQ] = ACTIONS(1620), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_LT_EQ] = ACTIONS(1620), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_GT_EQ] = ACTIONS(1620), + [aux_sym_cmd_identifier_token41] = ACTIONS(1618), + [sym__newline] = ACTIONS(1618), + [anon_sym_PIPE] = ACTIONS(1618), + [anon_sym_err_GT_PIPE] = ACTIONS(1618), + [anon_sym_out_GT_PIPE] = ACTIONS(1618), + [anon_sym_e_GT_PIPE] = ACTIONS(1618), + [anon_sym_o_GT_PIPE] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1618), + [anon_sym_GT2] = ACTIONS(1618), + [anon_sym_DASH2] = ACTIONS(1618), + [anon_sym_in2] = ACTIONS(1618), + [anon_sym_STAR2] = ACTIONS(1618), + [anon_sym_and2] = ACTIONS(1618), + [anon_sym_xor2] = ACTIONS(1618), + [anon_sym_or2] = ACTIONS(1618), + [anon_sym_not_DASHin2] = ACTIONS(1618), + [anon_sym_has2] = ACTIONS(1618), + [anon_sym_not_DASHhas2] = ACTIONS(1618), + [anon_sym_starts_DASHwith2] = ACTIONS(1618), + [anon_sym_ends_DASHwith2] = ACTIONS(1618), + [anon_sym_EQ_EQ2] = ACTIONS(1618), + [anon_sym_BANG_EQ2] = ACTIONS(1618), + [anon_sym_LT2] = ACTIONS(1618), + [anon_sym_LT_EQ2] = ACTIONS(1618), + [anon_sym_GT_EQ2] = ACTIONS(1618), + [anon_sym_EQ_TILDE2] = ACTIONS(1618), + [anon_sym_BANG_TILDE2] = ACTIONS(1618), + [anon_sym_STAR_STAR2] = ACTIONS(1618), + [anon_sym_PLUS_PLUS2] = ACTIONS(1618), + [anon_sym_SLASH2] = ACTIONS(1618), + [anon_sym_mod2] = ACTIONS(1618), + [anon_sym_SLASH_SLASH2] = ACTIONS(1618), + [anon_sym_PLUS2] = ACTIONS(1618), + [anon_sym_bit_DASHshl2] = ACTIONS(1618), + [anon_sym_bit_DASHshr2] = ACTIONS(1618), + [anon_sym_bit_DASHand2] = ACTIONS(1618), + [anon_sym_bit_DASHxor2] = ACTIONS(1618), + [anon_sym_bit_DASHor2] = ACTIONS(1618), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [sym_filesize_unit] = ACTIONS(1618), + [sym_duration_unit] = ACTIONS(1620), + [anon_sym_err_GT] = ACTIONS(1618), + [anon_sym_out_GT] = ACTIONS(1618), + [anon_sym_e_GT] = ACTIONS(1618), + [anon_sym_o_GT] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT] = ACTIONS(1618), + [anon_sym_err_GT_GT] = ACTIONS(1618), + [anon_sym_out_GT_GT] = ACTIONS(1618), + [anon_sym_e_GT_GT] = ACTIONS(1618), + [anon_sym_o_GT_GT] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1618), [anon_sym_POUND] = ACTIONS(3), }, [825] = { [sym_comment] = STATE(825), - [anon_sym_STAR_STAR] = ACTIONS(1544), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_STAR] = ACTIONS(1542), - [anon_sym_SLASH] = ACTIONS(1542), - [anon_sym_mod] = ACTIONS(1544), - [anon_sym_SLASH_SLASH] = ACTIONS(1544), - [anon_sym_PLUS] = ACTIONS(1542), - [anon_sym_DASH] = ACTIONS(1544), - [anon_sym_bit_DASHshl] = ACTIONS(1544), - [anon_sym_bit_DASHshr] = ACTIONS(1544), - [anon_sym_EQ_TILDE] = ACTIONS(1544), - [anon_sym_BANG_TILDE] = ACTIONS(1544), - [anon_sym_bit_DASHand] = ACTIONS(1544), - [anon_sym_bit_DASHxor] = ACTIONS(1544), - [anon_sym_bit_DASHor] = ACTIONS(1544), - [anon_sym_and] = ACTIONS(1544), - [anon_sym_xor] = ACTIONS(1544), - [anon_sym_or] = ACTIONS(1544), - [anon_sym_in] = ACTIONS(1544), - [anon_sym_not_DASHin] = ACTIONS(1544), - [anon_sym_starts_DASHwith] = ACTIONS(1544), - [anon_sym_ends_DASHwith] = ACTIONS(1544), - [anon_sym_EQ_EQ] = ACTIONS(1544), - [anon_sym_BANG_EQ] = ACTIONS(1544), - [anon_sym_LT] = ACTIONS(1542), - [anon_sym_LT_EQ] = ACTIONS(1544), - [anon_sym_GT] = ACTIONS(1542), - [anon_sym_GT_EQ] = ACTIONS(1544), - [aux_sym_cmd_identifier_token41] = ACTIONS(1542), - [sym__newline] = ACTIONS(1542), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_err_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_GT_PIPE] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), - [anon_sym_GT2] = ACTIONS(1542), - [anon_sym_DASH2] = ACTIONS(1542), - [anon_sym_in2] = ACTIONS(1542), - [anon_sym_STAR2] = ACTIONS(1542), - [anon_sym_and2] = ACTIONS(1542), - [anon_sym_xor2] = ACTIONS(1542), - [anon_sym_or2] = ACTIONS(1542), - [anon_sym_not_DASHin2] = ACTIONS(1542), - [anon_sym_starts_DASHwith2] = ACTIONS(1542), - [anon_sym_ends_DASHwith2] = ACTIONS(1542), - [anon_sym_EQ_EQ2] = ACTIONS(1542), - [anon_sym_BANG_EQ2] = ACTIONS(1542), - [anon_sym_LT2] = ACTIONS(1542), - [anon_sym_LT_EQ2] = ACTIONS(1542), - [anon_sym_GT_EQ2] = ACTIONS(1542), - [anon_sym_EQ_TILDE2] = ACTIONS(1542), - [anon_sym_BANG_TILDE2] = ACTIONS(1542), - [anon_sym_STAR_STAR2] = ACTIONS(1542), - [anon_sym_PLUS_PLUS2] = ACTIONS(1542), - [anon_sym_SLASH2] = ACTIONS(1542), - [anon_sym_mod2] = ACTIONS(1542), - [anon_sym_SLASH_SLASH2] = ACTIONS(1542), - [anon_sym_PLUS2] = ACTIONS(1542), - [anon_sym_bit_DASHshl2] = ACTIONS(1542), - [anon_sym_bit_DASHshr2] = ACTIONS(1542), - [anon_sym_bit_DASHand2] = ACTIONS(1542), - [anon_sym_bit_DASHxor2] = ACTIONS(1542), - [anon_sym_bit_DASHor2] = ACTIONS(1542), - [anon_sym_DOT_DOT2] = ACTIONS(1542), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1544), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1544), - [sym_filesize_unit] = ACTIONS(1542), - [sym_duration_unit] = ACTIONS(1544), - [anon_sym_err_GT] = ACTIONS(1542), - [anon_sym_out_GT] = ACTIONS(1542), - [anon_sym_e_GT] = ACTIONS(1542), - [anon_sym_o_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT] = ACTIONS(1542), - [anon_sym_err_GT_GT] = ACTIONS(1542), - [anon_sym_out_GT_GT] = ACTIONS(1542), - [anon_sym_e_GT_GT] = ACTIONS(1542), - [anon_sym_o_GT_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), + [anon_sym_STAR_STAR] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_STAR] = ACTIONS(1504), + [anon_sym_SLASH] = ACTIONS(1504), + [anon_sym_mod] = ACTIONS(1506), + [anon_sym_SLASH_SLASH] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_bit_DASHshl] = ACTIONS(1506), + [anon_sym_bit_DASHshr] = ACTIONS(1506), + [anon_sym_EQ_TILDE] = ACTIONS(1506), + [anon_sym_BANG_TILDE] = ACTIONS(1506), + [anon_sym_bit_DASHand] = ACTIONS(1506), + [anon_sym_bit_DASHxor] = ACTIONS(1506), + [anon_sym_bit_DASHor] = ACTIONS(1506), + [anon_sym_and] = ACTIONS(1506), + [anon_sym_xor] = ACTIONS(1506), + [anon_sym_or] = ACTIONS(1506), + [anon_sym_in] = ACTIONS(1506), + [anon_sym_not_DASHin] = ACTIONS(1506), + [anon_sym_has] = ACTIONS(1506), + [anon_sym_not_DASHhas] = 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_LT] = ACTIONS(1504), + [anon_sym_LT_EQ] = ACTIONS(1506), + [anon_sym_GT] = ACTIONS(1504), + [anon_sym_GT_EQ] = ACTIONS(1506), + [aux_sym_cmd_identifier_token41] = ACTIONS(1504), + [sym__newline] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_err_GT_PIPE] = ACTIONS(1504), + [anon_sym_out_GT_PIPE] = ACTIONS(1504), + [anon_sym_e_GT_PIPE] = ACTIONS(1504), + [anon_sym_o_GT_PIPE] = ACTIONS(1504), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1504), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1504), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1504), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1504), + [anon_sym_GT2] = ACTIONS(1504), + [anon_sym_DASH2] = ACTIONS(1504), + [anon_sym_in2] = ACTIONS(1504), + [anon_sym_STAR2] = ACTIONS(1504), + [anon_sym_and2] = ACTIONS(1504), + [anon_sym_xor2] = ACTIONS(1504), + [anon_sym_or2] = ACTIONS(1504), + [anon_sym_not_DASHin2] = ACTIONS(1504), + [anon_sym_has2] = ACTIONS(1504), + [anon_sym_not_DASHhas2] = ACTIONS(1504), + [anon_sym_starts_DASHwith2] = ACTIONS(1504), + [anon_sym_ends_DASHwith2] = ACTIONS(1504), + [anon_sym_EQ_EQ2] = ACTIONS(1504), + [anon_sym_BANG_EQ2] = ACTIONS(1504), + [anon_sym_LT2] = ACTIONS(1504), + [anon_sym_LT_EQ2] = ACTIONS(1504), + [anon_sym_GT_EQ2] = ACTIONS(1504), + [anon_sym_EQ_TILDE2] = ACTIONS(1504), + [anon_sym_BANG_TILDE2] = ACTIONS(1504), + [anon_sym_STAR_STAR2] = ACTIONS(1504), + [anon_sym_PLUS_PLUS2] = ACTIONS(1504), + [anon_sym_SLASH2] = ACTIONS(1504), + [anon_sym_mod2] = ACTIONS(1504), + [anon_sym_SLASH_SLASH2] = ACTIONS(1504), + [anon_sym_PLUS2] = ACTIONS(1504), + [anon_sym_bit_DASHshl2] = ACTIONS(1504), + [anon_sym_bit_DASHshr2] = ACTIONS(1504), + [anon_sym_bit_DASHand2] = ACTIONS(1504), + [anon_sym_bit_DASHxor2] = ACTIONS(1504), + [anon_sym_bit_DASHor2] = ACTIONS(1504), + [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(1504), + [anon_sym_out_GT_GT] = ACTIONS(1504), + [anon_sym_e_GT_GT] = ACTIONS(1504), + [anon_sym_o_GT_GT] = ACTIONS(1504), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1504), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1504), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1504), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1504), [anon_sym_POUND] = ACTIONS(3), }, [826] = { [sym_comment] = STATE(826), - [anon_sym_STAR_STAR] = ACTIONS(1745), - [anon_sym_PLUS_PLUS] = ACTIONS(1745), - [anon_sym_STAR] = ACTIONS(1743), - [anon_sym_SLASH] = ACTIONS(1743), - [anon_sym_mod] = ACTIONS(1745), - [anon_sym_SLASH_SLASH] = ACTIONS(1745), - [anon_sym_PLUS] = ACTIONS(1743), - [anon_sym_DASH] = ACTIONS(1745), - [anon_sym_bit_DASHshl] = ACTIONS(1745), - [anon_sym_bit_DASHshr] = ACTIONS(1745), - [anon_sym_EQ_TILDE] = ACTIONS(1745), - [anon_sym_BANG_TILDE] = ACTIONS(1745), - [anon_sym_bit_DASHand] = ACTIONS(1745), - [anon_sym_bit_DASHxor] = ACTIONS(1745), - [anon_sym_bit_DASHor] = ACTIONS(1745), - [anon_sym_and] = ACTIONS(1745), - [anon_sym_xor] = ACTIONS(1745), - [anon_sym_or] = ACTIONS(1745), - [anon_sym_in] = ACTIONS(1745), - [anon_sym_not_DASHin] = ACTIONS(1745), - [anon_sym_starts_DASHwith] = ACTIONS(1745), - [anon_sym_ends_DASHwith] = ACTIONS(1745), - [anon_sym_EQ_EQ] = ACTIONS(1745), - [anon_sym_BANG_EQ] = ACTIONS(1745), - [anon_sym_LT] = ACTIONS(1743), - [anon_sym_LT_EQ] = ACTIONS(1745), - [anon_sym_GT] = ACTIONS(1743), - [anon_sym_GT_EQ] = ACTIONS(1745), - [aux_sym_cmd_identifier_token41] = ACTIONS(1743), - [sym__newline] = ACTIONS(1743), - [anon_sym_SEMI] = ACTIONS(1743), - [anon_sym_PIPE] = ACTIONS(1743), - [anon_sym_err_GT_PIPE] = ACTIONS(1743), - [anon_sym_out_GT_PIPE] = ACTIONS(1743), - [anon_sym_e_GT_PIPE] = ACTIONS(1743), - [anon_sym_o_GT_PIPE] = ACTIONS(1743), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1743), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1743), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1743), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1743), - [anon_sym_GT2] = ACTIONS(1743), - [anon_sym_DASH2] = ACTIONS(1743), - [anon_sym_in2] = ACTIONS(1743), - [anon_sym_STAR2] = ACTIONS(1743), - [anon_sym_and2] = ACTIONS(1743), - [anon_sym_xor2] = ACTIONS(1743), - [anon_sym_or2] = ACTIONS(1743), - [anon_sym_not_DASHin2] = ACTIONS(1743), - [anon_sym_starts_DASHwith2] = ACTIONS(1743), - [anon_sym_ends_DASHwith2] = ACTIONS(1743), - [anon_sym_EQ_EQ2] = ACTIONS(1743), - [anon_sym_BANG_EQ2] = ACTIONS(1743), - [anon_sym_LT2] = ACTIONS(1743), - [anon_sym_LT_EQ2] = ACTIONS(1743), - [anon_sym_GT_EQ2] = ACTIONS(1743), - [anon_sym_EQ_TILDE2] = ACTIONS(1743), - [anon_sym_BANG_TILDE2] = ACTIONS(1743), - [anon_sym_STAR_STAR2] = ACTIONS(1743), - [anon_sym_PLUS_PLUS2] = ACTIONS(1743), - [anon_sym_SLASH2] = ACTIONS(1743), - [anon_sym_mod2] = ACTIONS(1743), - [anon_sym_SLASH_SLASH2] = ACTIONS(1743), - [anon_sym_PLUS2] = ACTIONS(1743), - [anon_sym_bit_DASHshl2] = ACTIONS(1743), - [anon_sym_bit_DASHshr2] = ACTIONS(1743), - [anon_sym_bit_DASHand2] = ACTIONS(1743), - [anon_sym_bit_DASHxor2] = ACTIONS(1743), - [anon_sym_bit_DASHor2] = ACTIONS(1743), - [anon_sym_DOT_DOT2] = ACTIONS(1743), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1745), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1745), - [sym_filesize_unit] = ACTIONS(1743), - [sym_duration_unit] = ACTIONS(1745), - [anon_sym_err_GT] = ACTIONS(1743), - [anon_sym_out_GT] = ACTIONS(1743), - [anon_sym_e_GT] = ACTIONS(1743), - [anon_sym_o_GT] = ACTIONS(1743), - [anon_sym_err_PLUSout_GT] = ACTIONS(1743), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1743), - [anon_sym_o_PLUSe_GT] = ACTIONS(1743), - [anon_sym_e_PLUSo_GT] = ACTIONS(1743), - [anon_sym_err_GT_GT] = ACTIONS(1743), - [anon_sym_out_GT_GT] = ACTIONS(1743), - [anon_sym_e_GT_GT] = ACTIONS(1743), - [anon_sym_o_GT_GT] = ACTIONS(1743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1743), + [anon_sym_STAR_STAR] = ACTIONS(2592), + [anon_sym_PLUS_PLUS] = ACTIONS(2592), + [anon_sym_STAR] = ACTIONS(2594), + [anon_sym_SLASH] = ACTIONS(2594), + [anon_sym_mod] = ACTIONS(2592), + [anon_sym_SLASH_SLASH] = ACTIONS(2592), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2592), + [anon_sym_bit_DASHshl] = ACTIONS(2592), + [anon_sym_bit_DASHshr] = ACTIONS(2592), + [anon_sym_EQ_TILDE] = ACTIONS(2592), + [anon_sym_BANG_TILDE] = ACTIONS(2592), + [anon_sym_bit_DASHand] = ACTIONS(2592), + [anon_sym_bit_DASHxor] = ACTIONS(2592), + [anon_sym_bit_DASHor] = ACTIONS(2592), + [anon_sym_and] = ACTIONS(2592), + [anon_sym_xor] = ACTIONS(2592), + [anon_sym_or] = ACTIONS(2592), + [anon_sym_in] = ACTIONS(2592), + [anon_sym_not_DASHin] = ACTIONS(2592), + [anon_sym_has] = ACTIONS(2592), + [anon_sym_not_DASHhas] = ACTIONS(2592), + [anon_sym_starts_DASHwith] = ACTIONS(2592), + [anon_sym_ends_DASHwith] = ACTIONS(2592), + [anon_sym_EQ_EQ] = ACTIONS(2592), + [anon_sym_BANG_EQ] = ACTIONS(2592), + [anon_sym_LT] = ACTIONS(2594), + [anon_sym_LT_EQ] = ACTIONS(2592), + [anon_sym_GT] = ACTIONS(2594), + [anon_sym_GT_EQ] = ACTIONS(2592), + [aux_sym_cmd_identifier_token41] = ACTIONS(2596), + [sym__newline] = ACTIONS(1639), + [anon_sym_PIPE] = ACTIONS(1639), + [anon_sym_err_GT_PIPE] = ACTIONS(1639), + [anon_sym_out_GT_PIPE] = ACTIONS(1639), + [anon_sym_e_GT_PIPE] = ACTIONS(1639), + [anon_sym_o_GT_PIPE] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1639), + [anon_sym_GT2] = ACTIONS(1639), + [anon_sym_DASH2] = ACTIONS(1639), + [anon_sym_in2] = ACTIONS(1639), + [anon_sym_STAR2] = ACTIONS(1639), + [anon_sym_and2] = ACTIONS(1639), + [anon_sym_xor2] = ACTIONS(1639), + [anon_sym_or2] = ACTIONS(1639), + [anon_sym_not_DASHin2] = ACTIONS(1639), + [anon_sym_has2] = ACTIONS(1639), + [anon_sym_not_DASHhas2] = ACTIONS(1639), + [anon_sym_starts_DASHwith2] = ACTIONS(1639), + [anon_sym_ends_DASHwith2] = ACTIONS(1639), + [anon_sym_EQ_EQ2] = ACTIONS(1639), + [anon_sym_BANG_EQ2] = ACTIONS(1639), + [anon_sym_LT2] = ACTIONS(1639), + [anon_sym_LT_EQ2] = ACTIONS(1639), + [anon_sym_GT_EQ2] = ACTIONS(1639), + [anon_sym_EQ_TILDE2] = ACTIONS(1639), + [anon_sym_BANG_TILDE2] = ACTIONS(1639), + [anon_sym_STAR_STAR2] = ACTIONS(1639), + [anon_sym_PLUS_PLUS2] = ACTIONS(1639), + [anon_sym_SLASH2] = ACTIONS(1639), + [anon_sym_mod2] = ACTIONS(1639), + [anon_sym_SLASH_SLASH2] = ACTIONS(1639), + [anon_sym_PLUS2] = ACTIONS(1639), + [anon_sym_bit_DASHshl2] = ACTIONS(1639), + [anon_sym_bit_DASHshr2] = ACTIONS(1639), + [anon_sym_bit_DASHand2] = ACTIONS(1639), + [anon_sym_bit_DASHxor2] = ACTIONS(1639), + [anon_sym_bit_DASHor2] = ACTIONS(1639), + [anon_sym_DOT_DOT2] = ACTIONS(2584), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2586), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2586), + [sym_filesize_unit] = ACTIONS(2957), + [sym_duration_unit] = ACTIONS(2959), + [anon_sym_err_GT] = ACTIONS(1639), + [anon_sym_out_GT] = ACTIONS(1639), + [anon_sym_e_GT] = ACTIONS(1639), + [anon_sym_o_GT] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT] = ACTIONS(1639), + [anon_sym_err_GT_GT] = ACTIONS(1639), + [anon_sym_out_GT_GT] = ACTIONS(1639), + [anon_sym_e_GT_GT] = ACTIONS(1639), + [anon_sym_o_GT_GT] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1639), [anon_sym_POUND] = ACTIONS(3), }, [827] = { + [sym_expr_parenthesized] = STATE(1623), + [sym_val_range] = STATE(2074), + [sym__val_range] = STATE(7506), + [sym__val_range_with_end] = STATE(7337), + [sym__value] = STATE(2074), + [sym_val_nothing] = STATE(1994), + [sym_val_bool] = STATE(1722), + [sym_val_variable] = STATE(1612), + [sym_val_number] = STATE(1994), + [sym__val_number_decimal] = STATE(1331), + [sym__val_number] = STATE(1995), + [sym_val_duration] = STATE(1994), + [sym_val_filesize] = STATE(1994), + [sym_val_binary] = STATE(1994), + [sym_val_string] = STATE(1994), + [sym__raw_str] = STATE(2054), + [sym__str_double_quotes] = STATE(2054), + [sym_val_interpolated] = STATE(1994), + [sym__inter_single_quotes] = STATE(1996), + [sym__inter_double_quotes] = STATE(1997), + [sym_val_list] = STATE(1994), + [sym_val_record] = STATE(1994), + [sym_val_table] = STATE(1994), + [sym_val_closure] = STATE(1994), + [sym__flag] = STATE(2074), + [sym_short_flag] = STATE(2070), + [sym_long_flag] = STATE(2070), + [sym_unquoted] = STATE(1729), + [sym__unquoted_with_expr] = STATE(2133), + [sym__unquoted_anonymous_prefix] = STATE(7086), [sym_comment] = STATE(827), - [anon_sym_STAR_STAR] = ACTIONS(1552), - [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1550), - [anon_sym_SLASH] = ACTIONS(1550), - [anon_sym_mod] = ACTIONS(1552), - [anon_sym_SLASH_SLASH] = ACTIONS(1552), - [anon_sym_PLUS] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1552), - [anon_sym_bit_DASHshl] = ACTIONS(1552), - [anon_sym_bit_DASHshr] = ACTIONS(1552), - [anon_sym_EQ_TILDE] = ACTIONS(1552), - [anon_sym_BANG_TILDE] = ACTIONS(1552), - [anon_sym_bit_DASHand] = ACTIONS(1552), - [anon_sym_bit_DASHxor] = ACTIONS(1552), - [anon_sym_bit_DASHor] = ACTIONS(1552), - [anon_sym_and] = ACTIONS(1552), - [anon_sym_xor] = ACTIONS(1552), - [anon_sym_or] = ACTIONS(1552), - [anon_sym_in] = ACTIONS(1552), - [anon_sym_not_DASHin] = ACTIONS(1552), - [anon_sym_starts_DASHwith] = ACTIONS(1552), - [anon_sym_ends_DASHwith] = ACTIONS(1552), - [anon_sym_EQ_EQ] = ACTIONS(1552), - [anon_sym_BANG_EQ] = ACTIONS(1552), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_LT_EQ] = ACTIONS(1552), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_GT_EQ] = ACTIONS(1552), - [aux_sym_cmd_identifier_token41] = ACTIONS(1550), - [sym__newline] = ACTIONS(1550), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_err_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_GT_PIPE] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1550), - [anon_sym_GT2] = ACTIONS(1550), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_in2] = ACTIONS(1550), - [anon_sym_STAR2] = ACTIONS(1550), - [anon_sym_and2] = ACTIONS(1550), - [anon_sym_xor2] = ACTIONS(1550), - [anon_sym_or2] = ACTIONS(1550), - [anon_sym_not_DASHin2] = ACTIONS(1550), - [anon_sym_starts_DASHwith2] = ACTIONS(1550), - [anon_sym_ends_DASHwith2] = ACTIONS(1550), - [anon_sym_EQ_EQ2] = ACTIONS(1550), - [anon_sym_BANG_EQ2] = ACTIONS(1550), - [anon_sym_LT2] = ACTIONS(1550), - [anon_sym_LT_EQ2] = ACTIONS(1550), - [anon_sym_GT_EQ2] = ACTIONS(1550), - [anon_sym_EQ_TILDE2] = ACTIONS(1550), - [anon_sym_BANG_TILDE2] = ACTIONS(1550), - [anon_sym_STAR_STAR2] = ACTIONS(1550), - [anon_sym_PLUS_PLUS2] = ACTIONS(1550), - [anon_sym_SLASH2] = ACTIONS(1550), - [anon_sym_mod2] = ACTIONS(1550), - [anon_sym_SLASH_SLASH2] = ACTIONS(1550), - [anon_sym_PLUS2] = ACTIONS(1550), - [anon_sym_bit_DASHshl2] = ACTIONS(1550), - [anon_sym_bit_DASHshr2] = ACTIONS(1550), - [anon_sym_bit_DASHand2] = ACTIONS(1550), - [anon_sym_bit_DASHxor2] = ACTIONS(1550), - [anon_sym_bit_DASHor2] = ACTIONS(1550), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [sym_filesize_unit] = ACTIONS(1550), - [sym_duration_unit] = ACTIONS(1552), - [anon_sym_err_GT] = ACTIONS(1550), - [anon_sym_out_GT] = ACTIONS(1550), - [anon_sym_e_GT] = ACTIONS(1550), - [anon_sym_o_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT] = ACTIONS(1550), - [anon_sym_err_GT_GT] = ACTIONS(1550), - [anon_sym_out_GT_GT] = ACTIONS(1550), - [anon_sym_e_GT_GT] = ACTIONS(1550), - [anon_sym_o_GT_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1550), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_do_repeat2] = STATE(833), + [ts_builtin_sym_end] = ACTIONS(2946), + [sym__newline] = ACTIONS(2946), + [anon_sym_SEMI] = ACTIONS(2946), + [anon_sym_PIPE] = ACTIONS(2946), + [anon_sym_err_GT_PIPE] = ACTIONS(2946), + [anon_sym_out_GT_PIPE] = ACTIONS(2946), + [anon_sym_e_GT_PIPE] = ACTIONS(2946), + [anon_sym_o_GT_PIPE] = ACTIONS(2946), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2946), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2946), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2946), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_DOLLAR] = ACTIONS(2965), + [anon_sym_DASH_DASH] = ACTIONS(2967), + [anon_sym_DASH2] = ACTIONS(2969), + [anon_sym_LBRACE] = ACTIONS(2971), + [anon_sym_DOT_DOT] = ACTIONS(2973), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2975), + [anon_sym_DOT_DOT_LT] = ACTIONS(2975), + [anon_sym_null] = ACTIONS(2977), + [anon_sym_true] = ACTIONS(2979), + [anon_sym_false] = ACTIONS(2979), + [aux_sym__val_number_decimal_token1] = ACTIONS(2981), + [aux_sym__val_number_decimal_token2] = ACTIONS(2983), + [aux_sym__val_number_decimal_token3] = ACTIONS(2985), + [aux_sym__val_number_decimal_token4] = ACTIONS(2987), + [aux_sym__val_number_token1] = ACTIONS(2989), + [aux_sym__val_number_token2] = ACTIONS(2989), + [aux_sym__val_number_token3] = ACTIONS(2989), + [aux_sym__val_number_token4] = ACTIONS(2991), + [aux_sym__val_number_token5] = ACTIONS(2991), + [aux_sym__val_number_token6] = ACTIONS(2991), + [anon_sym_0b] = ACTIONS(2993), + [anon_sym_0o] = ACTIONS(2995), + [anon_sym_0x] = ACTIONS(2995), + [sym_val_date] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(2999), + [sym__str_single_quotes] = ACTIONS(3001), + [sym__str_back_ticks] = ACTIONS(3001), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3003), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3005), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3007), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3009), }, [828] = { + [sym_expr_parenthesized] = STATE(1623), + [sym_val_range] = STATE(2074), + [sym__val_range] = STATE(7506), + [sym__val_range_with_end] = STATE(7337), + [sym__value] = STATE(2074), + [sym_val_nothing] = STATE(1994), + [sym_val_bool] = STATE(1722), + [sym_val_variable] = STATE(1612), + [sym_val_number] = STATE(1994), + [sym__val_number_decimal] = STATE(1331), + [sym__val_number] = STATE(1995), + [sym_val_duration] = STATE(1994), + [sym_val_filesize] = STATE(1994), + [sym_val_binary] = STATE(1994), + [sym_val_string] = STATE(1994), + [sym__raw_str] = STATE(2054), + [sym__str_double_quotes] = STATE(2054), + [sym_val_interpolated] = STATE(1994), + [sym__inter_single_quotes] = STATE(1996), + [sym__inter_double_quotes] = STATE(1997), + [sym_val_list] = STATE(1994), + [sym_val_record] = STATE(1994), + [sym_val_table] = STATE(1994), + [sym_val_closure] = STATE(1994), + [sym__flag] = STATE(2074), + [sym_short_flag] = STATE(2070), + [sym_long_flag] = STATE(2070), + [sym_unquoted] = STATE(1729), + [sym__unquoted_with_expr] = STATE(2133), + [sym__unquoted_anonymous_prefix] = STATE(7086), [sym_comment] = STATE(828), - [anon_sym_STAR_STAR] = ACTIONS(1682), - [anon_sym_PLUS_PLUS] = ACTIONS(1682), - [anon_sym_STAR] = ACTIONS(1680), - [anon_sym_SLASH] = ACTIONS(1680), - [anon_sym_mod] = ACTIONS(1682), - [anon_sym_SLASH_SLASH] = ACTIONS(1682), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_DASH] = ACTIONS(1682), - [anon_sym_bit_DASHshl] = ACTIONS(1682), - [anon_sym_bit_DASHshr] = ACTIONS(1682), - [anon_sym_EQ_TILDE] = ACTIONS(1682), - [anon_sym_BANG_TILDE] = ACTIONS(1682), - [anon_sym_bit_DASHand] = ACTIONS(1682), - [anon_sym_bit_DASHxor] = ACTIONS(1682), - [anon_sym_bit_DASHor] = ACTIONS(1682), - [anon_sym_and] = ACTIONS(1682), - [anon_sym_xor] = ACTIONS(1682), - [anon_sym_or] = ACTIONS(1682), - [anon_sym_in] = ACTIONS(1682), - [anon_sym_not_DASHin] = ACTIONS(1682), - [anon_sym_starts_DASHwith] = ACTIONS(1682), - [anon_sym_ends_DASHwith] = ACTIONS(1682), - [anon_sym_EQ_EQ] = ACTIONS(1682), - [anon_sym_BANG_EQ] = ACTIONS(1682), - [anon_sym_LT] = ACTIONS(1680), - [anon_sym_LT_EQ] = ACTIONS(1682), - [anon_sym_GT] = ACTIONS(1680), - [anon_sym_GT_EQ] = ACTIONS(1682), - [aux_sym_cmd_identifier_token41] = ACTIONS(1680), - [sym__newline] = ACTIONS(1680), - [anon_sym_SEMI] = ACTIONS(1680), - [anon_sym_PIPE] = ACTIONS(1680), - [anon_sym_err_GT_PIPE] = ACTIONS(1680), - [anon_sym_out_GT_PIPE] = ACTIONS(1680), - [anon_sym_e_GT_PIPE] = ACTIONS(1680), - [anon_sym_o_GT_PIPE] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1680), - [anon_sym_GT2] = ACTIONS(1680), - [anon_sym_DASH2] = ACTIONS(1680), - [anon_sym_in2] = ACTIONS(1680), - [anon_sym_STAR2] = ACTIONS(1680), - [anon_sym_and2] = ACTIONS(1680), - [anon_sym_xor2] = ACTIONS(1680), - [anon_sym_or2] = ACTIONS(1680), - [anon_sym_not_DASHin2] = ACTIONS(1680), - [anon_sym_starts_DASHwith2] = ACTIONS(1680), - [anon_sym_ends_DASHwith2] = ACTIONS(1680), - [anon_sym_EQ_EQ2] = ACTIONS(1680), - [anon_sym_BANG_EQ2] = ACTIONS(1680), - [anon_sym_LT2] = ACTIONS(1680), - [anon_sym_LT_EQ2] = ACTIONS(1680), - [anon_sym_GT_EQ2] = ACTIONS(1680), - [anon_sym_EQ_TILDE2] = ACTIONS(1680), - [anon_sym_BANG_TILDE2] = ACTIONS(1680), - [anon_sym_STAR_STAR2] = ACTIONS(1680), - [anon_sym_PLUS_PLUS2] = ACTIONS(1680), - [anon_sym_SLASH2] = ACTIONS(1680), - [anon_sym_mod2] = ACTIONS(1680), - [anon_sym_SLASH_SLASH2] = ACTIONS(1680), - [anon_sym_PLUS2] = ACTIONS(1680), - [anon_sym_bit_DASHshl2] = ACTIONS(1680), - [anon_sym_bit_DASHshr2] = ACTIONS(1680), - [anon_sym_bit_DASHand2] = ACTIONS(1680), - [anon_sym_bit_DASHxor2] = ACTIONS(1680), - [anon_sym_bit_DASHor2] = ACTIONS(1680), - [anon_sym_DOT_DOT2] = ACTIONS(1680), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1682), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1682), - [sym_filesize_unit] = ACTIONS(1680), - [sym_duration_unit] = ACTIONS(1682), - [anon_sym_err_GT] = ACTIONS(1680), - [anon_sym_out_GT] = ACTIONS(1680), - [anon_sym_e_GT] = ACTIONS(1680), - [anon_sym_o_GT] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT] = ACTIONS(1680), - [anon_sym_err_GT_GT] = ACTIONS(1680), - [anon_sym_out_GT_GT] = ACTIONS(1680), - [anon_sym_e_GT_GT] = ACTIONS(1680), - [anon_sym_o_GT_GT] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1680), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_do_repeat2] = STATE(831), + [ts_builtin_sym_end] = ACTIONS(2937), + [sym__newline] = ACTIONS(2937), + [anon_sym_SEMI] = ACTIONS(2937), + [anon_sym_PIPE] = ACTIONS(2937), + [anon_sym_err_GT_PIPE] = ACTIONS(2937), + [anon_sym_out_GT_PIPE] = ACTIONS(2937), + [anon_sym_e_GT_PIPE] = ACTIONS(2937), + [anon_sym_o_GT_PIPE] = ACTIONS(2937), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2937), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2937), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2937), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2937), + [anon_sym_LBRACK] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_DOLLAR] = ACTIONS(2965), + [anon_sym_DASH_DASH] = ACTIONS(2967), + [anon_sym_DASH2] = ACTIONS(2969), + [anon_sym_LBRACE] = ACTIONS(2971), + [anon_sym_DOT_DOT] = ACTIONS(2973), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2975), + [anon_sym_DOT_DOT_LT] = ACTIONS(2975), + [anon_sym_null] = ACTIONS(2977), + [anon_sym_true] = ACTIONS(2979), + [anon_sym_false] = ACTIONS(2979), + [aux_sym__val_number_decimal_token1] = ACTIONS(2981), + [aux_sym__val_number_decimal_token2] = ACTIONS(2983), + [aux_sym__val_number_decimal_token3] = ACTIONS(2985), + [aux_sym__val_number_decimal_token4] = ACTIONS(2987), + [aux_sym__val_number_token1] = ACTIONS(2989), + [aux_sym__val_number_token2] = ACTIONS(2989), + [aux_sym__val_number_token3] = ACTIONS(2989), + [aux_sym__val_number_token4] = ACTIONS(2991), + [aux_sym__val_number_token5] = ACTIONS(2991), + [aux_sym__val_number_token6] = ACTIONS(2991), + [anon_sym_0b] = ACTIONS(2993), + [anon_sym_0o] = ACTIONS(2995), + [anon_sym_0x] = ACTIONS(2995), + [sym_val_date] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(2999), + [sym__str_single_quotes] = ACTIONS(3001), + [sym__str_back_ticks] = ACTIONS(3001), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3003), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3005), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3007), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3009), }, [829] = { - [sym_expr_parenthesized] = STATE(5958), - [sym__spread_parenthesized] = STATE(7448), - [sym_val_range] = STATE(7451), - [sym__val_range] = STATE(7776), - [sym__val_range_with_end] = STATE(7452), - [sym__value] = STATE(7451), - [sym_val_nothing] = STATE(7049), - [sym_val_bool] = STATE(6510), - [sym__spread_variable] = STATE(7454), - [sym_val_variable] = STATE(5708), - [sym_val_number] = STATE(7049), - [sym__val_number_decimal] = STATE(5233), - [sym__val_number] = STATE(7097), - [sym_val_duration] = STATE(7049), - [sym_val_filesize] = STATE(7049), - [sym_val_binary] = STATE(7049), - [sym_val_string] = STATE(7049), - [sym__raw_str] = STATE(5195), - [sym__str_double_quotes] = STATE(5195), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(7152), - [sym__spread_list] = STATE(7448), - [sym_list_body] = STATE(7732), - [sym_val_entry] = STATE(7036), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(7049), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_list] = STATE(6604), - [sym__unquoted_in_list_with_expr] = STATE(7451), - [sym__unquoted_anonymous_prefix] = STATE(7039), + [sym_expr_parenthesized] = STATE(1623), + [sym_val_range] = STATE(2074), + [sym__val_range] = STATE(7506), + [sym__val_range_with_end] = STATE(7337), + [sym__value] = STATE(2074), + [sym_val_nothing] = STATE(1994), + [sym_val_bool] = STATE(1722), + [sym_val_variable] = STATE(1612), + [sym_val_number] = STATE(1994), + [sym__val_number_decimal] = STATE(1331), + [sym__val_number] = STATE(1995), + [sym_val_duration] = STATE(1994), + [sym_val_filesize] = STATE(1994), + [sym_val_binary] = STATE(1994), + [sym_val_string] = STATE(1994), + [sym__raw_str] = STATE(2054), + [sym__str_double_quotes] = STATE(2054), + [sym_val_interpolated] = STATE(1994), + [sym__inter_single_quotes] = STATE(1996), + [sym__inter_double_quotes] = STATE(1997), + [sym_val_list] = STATE(1994), + [sym_val_record] = STATE(1994), + [sym_val_table] = STATE(1994), + [sym_val_closure] = STATE(1994), + [sym__flag] = STATE(2074), + [sym_short_flag] = STATE(2070), + [sym_long_flag] = STATE(2070), + [sym_unquoted] = STATE(1729), + [sym__unquoted_with_expr] = STATE(2133), + [sym__unquoted_anonymous_prefix] = STATE(7086), [sym_comment] = STATE(829), - [aux_sym_shebang_repeat1] = STATE(873), - [aux_sym_parameter_repeat2] = STATE(6611), - [aux_sym_list_body_repeat1] = STATE(940), - [sym__newline] = ACTIONS(2550), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_RBRACK] = ACTIONS(3098), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_COMMA] = ACTIONS(2558), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3114), - [aux_sym__val_number_decimal_token2] = ACTIONS(3116), - [aux_sym__val_number_decimal_token3] = ACTIONS(3118), - [aux_sym__val_number_decimal_token4] = ACTIONS(3120), - [aux_sym__val_number_token1] = ACTIONS(3122), - [aux_sym__val_number_token2] = ACTIONS(3122), - [aux_sym__val_number_token3] = ACTIONS(3122), - [aux_sym__val_number_token4] = ACTIONS(3124), - [aux_sym__val_number_token5] = ACTIONS(3124), - [aux_sym__val_number_token6] = ACTIONS(3124), - [anon_sym_0b] = ACTIONS(3126), - [anon_sym_0o] = ACTIONS(3128), - [anon_sym_0x] = ACTIONS(3128), - [sym_val_date] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym__str_single_quotes] = ACTIONS(3134), - [sym__str_back_ticks] = ACTIONS(3134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2596), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3136), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3138), + [aux_sym_ctrl_do_repeat2] = STATE(829), + [ts_builtin_sym_end] = ACTIONS(2699), + [sym__newline] = ACTIONS(2699), + [anon_sym_SEMI] = ACTIONS(2699), + [anon_sym_PIPE] = ACTIONS(2699), + [anon_sym_err_GT_PIPE] = ACTIONS(2699), + [anon_sym_out_GT_PIPE] = ACTIONS(2699), + [anon_sym_e_GT_PIPE] = ACTIONS(2699), + [anon_sym_o_GT_PIPE] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3014), + [anon_sym_DOLLAR] = ACTIONS(3017), + [anon_sym_DASH_DASH] = ACTIONS(3020), + [anon_sym_DASH2] = ACTIONS(3023), + [anon_sym_LBRACE] = ACTIONS(3026), + [anon_sym_DOT_DOT] = ACTIONS(3029), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3032), + [anon_sym_DOT_DOT_LT] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3035), + [anon_sym_true] = ACTIONS(3038), + [anon_sym_false] = ACTIONS(3038), + [aux_sym__val_number_decimal_token1] = ACTIONS(3041), + [aux_sym__val_number_decimal_token2] = ACTIONS(3044), + [aux_sym__val_number_decimal_token3] = ACTIONS(3047), + [aux_sym__val_number_decimal_token4] = ACTIONS(3050), + [aux_sym__val_number_token1] = ACTIONS(3053), + [aux_sym__val_number_token2] = ACTIONS(3053), + [aux_sym__val_number_token3] = ACTIONS(3053), + [aux_sym__val_number_token4] = ACTIONS(3056), + [aux_sym__val_number_token5] = ACTIONS(3056), + [aux_sym__val_number_token6] = ACTIONS(3056), + [anon_sym_0b] = ACTIONS(3059), + [anon_sym_0o] = ACTIONS(3062), + [anon_sym_0x] = ACTIONS(3062), + [sym_val_date] = ACTIONS(3065), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3071), + [sym__str_back_ticks] = ACTIONS(3071), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3074), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3077), + [anon_sym_err_GT] = ACTIONS(2770), + [anon_sym_out_GT] = ACTIONS(2770), + [anon_sym_e_GT] = ACTIONS(2770), + [anon_sym_o_GT] = ACTIONS(2770), + [anon_sym_err_PLUSout_GT] = ACTIONS(2770), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2770), + [anon_sym_o_PLUSe_GT] = ACTIONS(2770), + [anon_sym_e_PLUSo_GT] = ACTIONS(2770), + [anon_sym_err_GT_GT] = ACTIONS(2773), + [anon_sym_out_GT_GT] = ACTIONS(2773), + [anon_sym_e_GT_GT] = ACTIONS(2773), + [anon_sym_o_GT_GT] = ACTIONS(2773), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2773), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2773), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2773), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2773), + [aux_sym_unquoted_token1] = ACTIONS(3080), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3083), }, [830] = { - [sym_expr_parenthesized] = STATE(5958), - [sym__spread_parenthesized] = STATE(7448), - [sym_val_range] = STATE(7451), - [sym__val_range] = STATE(7776), - [sym__val_range_with_end] = STATE(7452), - [sym__value] = STATE(7451), - [sym_val_nothing] = STATE(7049), - [sym_val_bool] = STATE(6510), - [sym__spread_variable] = STATE(7454), - [sym_val_variable] = STATE(5708), - [sym_val_number] = STATE(7049), - [sym__val_number_decimal] = STATE(5233), - [sym__val_number] = STATE(7097), - [sym_val_duration] = STATE(7049), - [sym_val_filesize] = STATE(7049), - [sym_val_binary] = STATE(7049), - [sym_val_string] = STATE(7049), - [sym__raw_str] = STATE(5195), - [sym__str_double_quotes] = STATE(5195), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(7195), - [sym__spread_list] = STATE(7448), - [sym_list_body] = STATE(7856), - [sym_val_entry] = STATE(7036), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(7049), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_list] = STATE(6604), - [sym__unquoted_in_list_with_expr] = STATE(7451), - [sym__unquoted_anonymous_prefix] = STATE(7039), [sym_comment] = STATE(830), - [aux_sym_shebang_repeat1] = STATE(878), - [aux_sym_parameter_repeat2] = STATE(6611), - [aux_sym_list_body_repeat1] = STATE(940), - [sym__newline] = ACTIONS(2550), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_RBRACK] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_COMMA] = ACTIONS(2558), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3114), - [aux_sym__val_number_decimal_token2] = ACTIONS(3116), - [aux_sym__val_number_decimal_token3] = ACTIONS(3118), - [aux_sym__val_number_decimal_token4] = ACTIONS(3120), - [aux_sym__val_number_token1] = ACTIONS(3122), - [aux_sym__val_number_token2] = ACTIONS(3122), - [aux_sym__val_number_token3] = ACTIONS(3122), - [aux_sym__val_number_token4] = ACTIONS(3124), - [aux_sym__val_number_token5] = ACTIONS(3124), - [aux_sym__val_number_token6] = ACTIONS(3124), - [anon_sym_0b] = ACTIONS(3126), - [anon_sym_0o] = ACTIONS(3128), - [anon_sym_0x] = ACTIONS(3128), - [sym_val_date] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym__str_single_quotes] = ACTIONS(3134), - [sym__str_back_ticks] = ACTIONS(3134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2596), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3136), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3138), + [anon_sym_STAR_STAR] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_SLASH] = ACTIONS(1512), + [anon_sym_mod] = ACTIONS(1514), + [anon_sym_SLASH_SLASH] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_bit_DASHshl] = ACTIONS(1514), + [anon_sym_bit_DASHshr] = ACTIONS(1514), + [anon_sym_EQ_TILDE] = ACTIONS(1514), + [anon_sym_BANG_TILDE] = ACTIONS(1514), + [anon_sym_bit_DASHand] = ACTIONS(1514), + [anon_sym_bit_DASHxor] = ACTIONS(1514), + [anon_sym_bit_DASHor] = ACTIONS(1514), + [anon_sym_and] = ACTIONS(1514), + [anon_sym_xor] = ACTIONS(1514), + [anon_sym_or] = ACTIONS(1514), + [anon_sym_in] = ACTIONS(1514), + [anon_sym_not_DASHin] = ACTIONS(1514), + [anon_sym_has] = ACTIONS(1514), + [anon_sym_not_DASHhas] = ACTIONS(1514), + [anon_sym_starts_DASHwith] = ACTIONS(1514), + [anon_sym_ends_DASHwith] = ACTIONS(1514), + [anon_sym_EQ_EQ] = ACTIONS(1514), + [anon_sym_BANG_EQ] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_LT_EQ] = ACTIONS(1514), + [anon_sym_GT] = ACTIONS(1512), + [anon_sym_GT_EQ] = ACTIONS(1514), + [aux_sym_cmd_identifier_token41] = ACTIONS(1512), + [sym__newline] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_err_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_GT_PIPE] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1512), + [anon_sym_GT2] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_in2] = ACTIONS(1512), + [anon_sym_STAR2] = ACTIONS(1512), + [anon_sym_and2] = ACTIONS(1512), + [anon_sym_xor2] = ACTIONS(1512), + [anon_sym_or2] = ACTIONS(1512), + [anon_sym_not_DASHin2] = ACTIONS(1512), + [anon_sym_has2] = ACTIONS(1512), + [anon_sym_not_DASHhas2] = ACTIONS(1512), + [anon_sym_starts_DASHwith2] = ACTIONS(1512), + [anon_sym_ends_DASHwith2] = ACTIONS(1512), + [anon_sym_EQ_EQ2] = ACTIONS(1512), + [anon_sym_BANG_EQ2] = ACTIONS(1512), + [anon_sym_LT2] = ACTIONS(1512), + [anon_sym_LT_EQ2] = ACTIONS(1512), + [anon_sym_GT_EQ2] = ACTIONS(1512), + [anon_sym_EQ_TILDE2] = ACTIONS(1512), + [anon_sym_BANG_TILDE2] = ACTIONS(1512), + [anon_sym_STAR_STAR2] = ACTIONS(1512), + [anon_sym_PLUS_PLUS2] = ACTIONS(1512), + [anon_sym_SLASH2] = ACTIONS(1512), + [anon_sym_mod2] = ACTIONS(1512), + [anon_sym_SLASH_SLASH2] = ACTIONS(1512), + [anon_sym_PLUS2] = ACTIONS(1512), + [anon_sym_bit_DASHshl2] = ACTIONS(1512), + [anon_sym_bit_DASHshr2] = ACTIONS(1512), + [anon_sym_bit_DASHand2] = ACTIONS(1512), + [anon_sym_bit_DASHxor2] = ACTIONS(1512), + [anon_sym_bit_DASHor2] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [sym_filesize_unit] = ACTIONS(1512), + [sym_duration_unit] = ACTIONS(1514), + [anon_sym_err_GT] = ACTIONS(1512), + [anon_sym_out_GT] = ACTIONS(1512), + [anon_sym_e_GT] = ACTIONS(1512), + [anon_sym_o_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT] = ACTIONS(1512), + [anon_sym_err_GT_GT] = ACTIONS(1512), + [anon_sym_out_GT_GT] = ACTIONS(1512), + [anon_sym_e_GT_GT] = ACTIONS(1512), + [anon_sym_o_GT_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(3), }, [831] = { + [sym_expr_parenthesized] = STATE(1623), + [sym_val_range] = STATE(2074), + [sym__val_range] = STATE(7506), + [sym__val_range_with_end] = STATE(7337), + [sym__value] = STATE(2074), + [sym_val_nothing] = STATE(1994), + [sym_val_bool] = STATE(1722), + [sym_val_variable] = STATE(1612), + [sym_val_number] = STATE(1994), + [sym__val_number_decimal] = STATE(1331), + [sym__val_number] = STATE(1995), + [sym_val_duration] = STATE(1994), + [sym_val_filesize] = STATE(1994), + [sym_val_binary] = STATE(1994), + [sym_val_string] = STATE(1994), + [sym__raw_str] = STATE(2054), + [sym__str_double_quotes] = STATE(2054), + [sym_val_interpolated] = STATE(1994), + [sym__inter_single_quotes] = STATE(1996), + [sym__inter_double_quotes] = STATE(1997), + [sym_val_list] = STATE(1994), + [sym_val_record] = STATE(1994), + [sym_val_table] = STATE(1994), + [sym_val_closure] = STATE(1994), + [sym__flag] = STATE(2074), + [sym_short_flag] = STATE(2070), + [sym_long_flag] = STATE(2070), + [sym_unquoted] = STATE(1729), + [sym__unquoted_with_expr] = STATE(2133), + [sym__unquoted_anonymous_prefix] = STATE(7086), [sym_comment] = STATE(831), - [anon_sym_STAR_STAR] = ACTIONS(1682), - [anon_sym_PLUS_PLUS] = ACTIONS(1682), - [anon_sym_STAR] = ACTIONS(1680), - [anon_sym_SLASH] = ACTIONS(1680), - [anon_sym_mod] = ACTIONS(1682), - [anon_sym_SLASH_SLASH] = ACTIONS(1682), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_DASH] = ACTIONS(1682), - [anon_sym_bit_DASHshl] = ACTIONS(1682), - [anon_sym_bit_DASHshr] = ACTIONS(1682), - [anon_sym_EQ_TILDE] = ACTIONS(1682), - [anon_sym_BANG_TILDE] = ACTIONS(1682), - [anon_sym_bit_DASHand] = ACTIONS(1682), - [anon_sym_bit_DASHxor] = ACTIONS(1682), - [anon_sym_bit_DASHor] = ACTIONS(1682), - [anon_sym_and] = ACTIONS(1682), - [anon_sym_xor] = ACTIONS(1682), - [anon_sym_or] = ACTIONS(1682), - [anon_sym_in] = ACTIONS(1682), - [anon_sym_not_DASHin] = ACTIONS(1682), - [anon_sym_starts_DASHwith] = ACTIONS(1682), - [anon_sym_ends_DASHwith] = ACTIONS(1682), - [anon_sym_EQ_EQ] = ACTIONS(1682), - [anon_sym_BANG_EQ] = ACTIONS(1682), - [anon_sym_LT] = ACTIONS(1680), - [anon_sym_LT_EQ] = ACTIONS(1682), - [anon_sym_GT] = ACTIONS(1680), - [anon_sym_GT_EQ] = ACTIONS(1682), - [aux_sym_cmd_identifier_token41] = ACTIONS(1680), - [sym__newline] = ACTIONS(1680), - [anon_sym_PIPE] = ACTIONS(1680), - [anon_sym_err_GT_PIPE] = ACTIONS(1680), - [anon_sym_out_GT_PIPE] = ACTIONS(1680), - [anon_sym_e_GT_PIPE] = ACTIONS(1680), - [anon_sym_o_GT_PIPE] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1680), - [anon_sym_GT2] = ACTIONS(1680), - [anon_sym_DASH2] = ACTIONS(1680), - [anon_sym_in2] = ACTIONS(1680), - [anon_sym_STAR2] = ACTIONS(1680), - [anon_sym_and2] = ACTIONS(1680), - [anon_sym_xor2] = ACTIONS(1680), - [anon_sym_or2] = ACTIONS(1680), - [anon_sym_not_DASHin2] = ACTIONS(1680), - [anon_sym_starts_DASHwith2] = ACTIONS(1680), - [anon_sym_ends_DASHwith2] = ACTIONS(1680), - [anon_sym_EQ_EQ2] = ACTIONS(1680), - [anon_sym_BANG_EQ2] = ACTIONS(1680), - [anon_sym_LT2] = ACTIONS(1680), - [anon_sym_LT_EQ2] = ACTIONS(1680), - [anon_sym_GT_EQ2] = ACTIONS(1680), - [anon_sym_EQ_TILDE2] = ACTIONS(1680), - [anon_sym_BANG_TILDE2] = ACTIONS(1680), - [anon_sym_STAR_STAR2] = ACTIONS(1680), - [anon_sym_PLUS_PLUS2] = ACTIONS(1680), - [anon_sym_SLASH2] = ACTIONS(1680), - [anon_sym_mod2] = ACTIONS(1680), - [anon_sym_SLASH_SLASH2] = ACTIONS(1680), - [anon_sym_PLUS2] = ACTIONS(1680), - [anon_sym_bit_DASHshl2] = ACTIONS(1680), - [anon_sym_bit_DASHshr2] = ACTIONS(1680), - [anon_sym_bit_DASHand2] = ACTIONS(1680), - [anon_sym_bit_DASHxor2] = ACTIONS(1680), - [anon_sym_bit_DASHor2] = ACTIONS(1680), - [anon_sym_DOT_DOT2] = ACTIONS(1680), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1682), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1682), - [sym_filesize_unit] = ACTIONS(1680), - [sym_duration_unit] = ACTIONS(1682), - [anon_sym_err_GT] = ACTIONS(1680), - [anon_sym_out_GT] = ACTIONS(1680), - [anon_sym_e_GT] = ACTIONS(1680), - [anon_sym_o_GT] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT] = ACTIONS(1680), - [anon_sym_err_GT_GT] = ACTIONS(1680), - [anon_sym_out_GT_GT] = ACTIONS(1680), - [anon_sym_e_GT_GT] = ACTIONS(1680), - [anon_sym_o_GT_GT] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1680), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_do_repeat2] = STATE(829), + [ts_builtin_sym_end] = ACTIONS(2946), + [sym__newline] = ACTIONS(2946), + [anon_sym_SEMI] = ACTIONS(2946), + [anon_sym_PIPE] = ACTIONS(2946), + [anon_sym_err_GT_PIPE] = ACTIONS(2946), + [anon_sym_out_GT_PIPE] = ACTIONS(2946), + [anon_sym_e_GT_PIPE] = ACTIONS(2946), + [anon_sym_o_GT_PIPE] = ACTIONS(2946), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2946), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2946), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2946), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_DOLLAR] = ACTIONS(2965), + [anon_sym_DASH_DASH] = ACTIONS(2967), + [anon_sym_DASH2] = ACTIONS(2969), + [anon_sym_LBRACE] = ACTIONS(2971), + [anon_sym_DOT_DOT] = ACTIONS(2973), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2975), + [anon_sym_DOT_DOT_LT] = ACTIONS(2975), + [anon_sym_null] = ACTIONS(2977), + [anon_sym_true] = ACTIONS(2979), + [anon_sym_false] = ACTIONS(2979), + [aux_sym__val_number_decimal_token1] = ACTIONS(2981), + [aux_sym__val_number_decimal_token2] = ACTIONS(2983), + [aux_sym__val_number_decimal_token3] = ACTIONS(2985), + [aux_sym__val_number_decimal_token4] = ACTIONS(2987), + [aux_sym__val_number_token1] = ACTIONS(2989), + [aux_sym__val_number_token2] = ACTIONS(2989), + [aux_sym__val_number_token3] = ACTIONS(2989), + [aux_sym__val_number_token4] = ACTIONS(2991), + [aux_sym__val_number_token5] = ACTIONS(2991), + [aux_sym__val_number_token6] = ACTIONS(2991), + [anon_sym_0b] = ACTIONS(2993), + [anon_sym_0o] = ACTIONS(2995), + [anon_sym_0x] = ACTIONS(2995), + [sym_val_date] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(2999), + [sym__str_single_quotes] = ACTIONS(3001), + [sym__str_back_ticks] = ACTIONS(3001), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3003), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3005), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3007), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3009), }, [832] = { - [sym_expr_parenthesized] = STATE(5958), - [sym__spread_parenthesized] = STATE(7448), - [sym_val_range] = STATE(7451), - [sym__val_range] = STATE(7776), - [sym__val_range_with_end] = STATE(7452), - [sym__value] = STATE(7451), - [sym_val_nothing] = STATE(7049), - [sym_val_bool] = STATE(6510), - [sym__spread_variable] = STATE(7454), - [sym_val_variable] = STATE(5708), - [sym_val_number] = STATE(7049), - [sym__val_number_decimal] = STATE(5233), - [sym__val_number] = STATE(7097), - [sym_val_duration] = STATE(7049), - [sym_val_filesize] = STATE(7049), - [sym_val_binary] = STATE(7049), - [sym_val_string] = STATE(7049), - [sym__raw_str] = STATE(5195), - [sym__str_double_quotes] = STATE(5195), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(7049), - [sym__spread_list] = STATE(7448), - [sym_list_body] = STATE(7783), - [sym_val_entry] = STATE(7036), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(7049), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_list] = STATE(6604), - [sym__unquoted_in_list_with_expr] = STATE(7451), - [sym__unquoted_anonymous_prefix] = STATE(7039), [sym_comment] = STATE(832), - [aux_sym_shebang_repeat1] = STATE(870), - [aux_sym_parameter_repeat2] = STATE(6611), - [aux_sym_list_body_repeat1] = STATE(940), - [sym__newline] = ACTIONS(2550), - [anon_sym_LBRACK] = ACTIONS(3142), - [anon_sym_RBRACK] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_COMMA] = ACTIONS(2558), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3114), - [aux_sym__val_number_decimal_token2] = ACTIONS(3116), - [aux_sym__val_number_decimal_token3] = ACTIONS(3118), - [aux_sym__val_number_decimal_token4] = ACTIONS(3120), - [aux_sym__val_number_token1] = ACTIONS(3122), - [aux_sym__val_number_token2] = ACTIONS(3122), - [aux_sym__val_number_token3] = ACTIONS(3122), - [aux_sym__val_number_token4] = ACTIONS(3124), - [aux_sym__val_number_token5] = ACTIONS(3124), - [aux_sym__val_number_token6] = ACTIONS(3124), - [anon_sym_0b] = ACTIONS(3126), - [anon_sym_0o] = ACTIONS(3128), - [anon_sym_0x] = ACTIONS(3128), - [sym_val_date] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym__str_single_quotes] = ACTIONS(3134), - [sym__str_back_ticks] = ACTIONS(3134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2596), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3136), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3138), + [anon_sym_STAR_STAR] = ACTIONS(1691), + [anon_sym_PLUS_PLUS] = ACTIONS(1691), + [anon_sym_STAR] = ACTIONS(1689), + [anon_sym_SLASH] = ACTIONS(1689), + [anon_sym_mod] = ACTIONS(1691), + [anon_sym_SLASH_SLASH] = ACTIONS(1691), + [anon_sym_PLUS] = ACTIONS(1689), + [anon_sym_DASH] = ACTIONS(1691), + [anon_sym_bit_DASHshl] = ACTIONS(1691), + [anon_sym_bit_DASHshr] = ACTIONS(1691), + [anon_sym_EQ_TILDE] = ACTIONS(1691), + [anon_sym_BANG_TILDE] = ACTIONS(1691), + [anon_sym_bit_DASHand] = ACTIONS(1691), + [anon_sym_bit_DASHxor] = ACTIONS(1691), + [anon_sym_bit_DASHor] = ACTIONS(1691), + [anon_sym_and] = ACTIONS(1691), + [anon_sym_xor] = ACTIONS(1691), + [anon_sym_or] = ACTIONS(1691), + [anon_sym_in] = ACTIONS(1691), + [anon_sym_not_DASHin] = ACTIONS(1691), + [anon_sym_has] = ACTIONS(1691), + [anon_sym_not_DASHhas] = ACTIONS(1691), + [anon_sym_starts_DASHwith] = ACTIONS(1691), + [anon_sym_ends_DASHwith] = ACTIONS(1691), + [anon_sym_EQ_EQ] = ACTIONS(1691), + [anon_sym_BANG_EQ] = ACTIONS(1691), + [anon_sym_LT] = ACTIONS(1689), + [anon_sym_LT_EQ] = ACTIONS(1691), + [anon_sym_GT] = ACTIONS(1689), + [anon_sym_GT_EQ] = ACTIONS(1691), + [aux_sym_cmd_identifier_token41] = ACTIONS(1689), + [sym__newline] = ACTIONS(1689), + [anon_sym_PIPE] = ACTIONS(1689), + [anon_sym_err_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_GT_PIPE] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1689), + [anon_sym_GT2] = ACTIONS(1689), + [anon_sym_DASH2] = ACTIONS(1689), + [anon_sym_in2] = ACTIONS(1689), + [anon_sym_STAR2] = ACTIONS(1689), + [anon_sym_and2] = ACTIONS(1689), + [anon_sym_xor2] = ACTIONS(1689), + [anon_sym_or2] = ACTIONS(1689), + [anon_sym_not_DASHin2] = ACTIONS(1689), + [anon_sym_has2] = ACTIONS(1689), + [anon_sym_not_DASHhas2] = ACTIONS(1689), + [anon_sym_starts_DASHwith2] = ACTIONS(1689), + [anon_sym_ends_DASHwith2] = ACTIONS(1689), + [anon_sym_EQ_EQ2] = ACTIONS(1689), + [anon_sym_BANG_EQ2] = ACTIONS(1689), + [anon_sym_LT2] = ACTIONS(1689), + [anon_sym_LT_EQ2] = ACTIONS(1689), + [anon_sym_GT_EQ2] = ACTIONS(1689), + [anon_sym_EQ_TILDE2] = ACTIONS(1689), + [anon_sym_BANG_TILDE2] = ACTIONS(1689), + [anon_sym_STAR_STAR2] = ACTIONS(1689), + [anon_sym_PLUS_PLUS2] = ACTIONS(1689), + [anon_sym_SLASH2] = ACTIONS(1689), + [anon_sym_mod2] = ACTIONS(1689), + [anon_sym_SLASH_SLASH2] = ACTIONS(1689), + [anon_sym_PLUS2] = ACTIONS(1689), + [anon_sym_bit_DASHshl2] = ACTIONS(1689), + [anon_sym_bit_DASHshr2] = ACTIONS(1689), + [anon_sym_bit_DASHand2] = ACTIONS(1689), + [anon_sym_bit_DASHxor2] = ACTIONS(1689), + [anon_sym_bit_DASHor2] = ACTIONS(1689), + [anon_sym_DOT_DOT2] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1691), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1691), + [sym_filesize_unit] = ACTIONS(1689), + [sym_duration_unit] = ACTIONS(1691), + [anon_sym_err_GT] = ACTIONS(1689), + [anon_sym_out_GT] = ACTIONS(1689), + [anon_sym_e_GT] = ACTIONS(1689), + [anon_sym_o_GT] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT] = ACTIONS(1689), + [anon_sym_err_GT_GT] = ACTIONS(1689), + [anon_sym_out_GT_GT] = ACTIONS(1689), + [anon_sym_e_GT_GT] = ACTIONS(1689), + [anon_sym_o_GT_GT] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1689), + [anon_sym_POUND] = ACTIONS(3), }, [833] = { - [sym_expr_parenthesized] = STATE(5958), - [sym__spread_parenthesized] = STATE(7448), - [sym_val_range] = STATE(7451), - [sym__val_range] = STATE(7776), - [sym__val_range_with_end] = STATE(7452), - [sym__value] = STATE(7451), - [sym_val_nothing] = STATE(7049), - [sym_val_bool] = STATE(6510), - [sym__spread_variable] = STATE(7454), - [sym_val_variable] = STATE(5708), - [sym_val_number] = STATE(7049), - [sym__val_number_decimal] = STATE(5233), - [sym__val_number] = STATE(7097), - [sym_val_duration] = STATE(7049), - [sym_val_filesize] = STATE(7049), - [sym_val_binary] = STATE(7049), - [sym_val_string] = STATE(7049), - [sym__raw_str] = STATE(5195), - [sym__str_double_quotes] = STATE(5195), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(7018), - [sym__spread_list] = STATE(7448), - [sym_list_body] = STATE(7478), - [sym_val_entry] = STATE(7036), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(7049), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_list] = STATE(6604), - [sym__unquoted_in_list_with_expr] = STATE(7451), - [sym__unquoted_anonymous_prefix] = STATE(7039), + [sym_expr_parenthesized] = STATE(1623), + [sym_val_range] = STATE(2074), + [sym__val_range] = STATE(7506), + [sym__val_range_with_end] = STATE(7337), + [sym__value] = STATE(2074), + [sym_val_nothing] = STATE(1994), + [sym_val_bool] = STATE(1722), + [sym_val_variable] = STATE(1612), + [sym_val_number] = STATE(1994), + [sym__val_number_decimal] = STATE(1331), + [sym__val_number] = STATE(1995), + [sym_val_duration] = STATE(1994), + [sym_val_filesize] = STATE(1994), + [sym_val_binary] = STATE(1994), + [sym_val_string] = STATE(1994), + [sym__raw_str] = STATE(2054), + [sym__str_double_quotes] = STATE(2054), + [sym_val_interpolated] = STATE(1994), + [sym__inter_single_quotes] = STATE(1996), + [sym__inter_double_quotes] = STATE(1997), + [sym_val_list] = STATE(1994), + [sym_val_record] = STATE(1994), + [sym_val_table] = STATE(1994), + [sym_val_closure] = STATE(1994), + [sym__flag] = STATE(2074), + [sym_short_flag] = STATE(2070), + [sym_long_flag] = STATE(2070), + [sym_unquoted] = STATE(1729), + [sym__unquoted_with_expr] = STATE(2133), + [sym__unquoted_anonymous_prefix] = STATE(7086), [sym_comment] = STATE(833), - [aux_sym_shebang_repeat1] = STATE(871), - [aux_sym_parameter_repeat2] = STATE(6611), - [aux_sym_list_body_repeat1] = STATE(940), - [sym__newline] = ACTIONS(2550), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_RBRACK] = ACTIONS(3146), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_COMMA] = ACTIONS(2558), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3114), - [aux_sym__val_number_decimal_token2] = ACTIONS(3116), - [aux_sym__val_number_decimal_token3] = ACTIONS(3118), - [aux_sym__val_number_decimal_token4] = ACTIONS(3120), - [aux_sym__val_number_token1] = ACTIONS(3122), - [aux_sym__val_number_token2] = ACTIONS(3122), - [aux_sym__val_number_token3] = ACTIONS(3122), - [aux_sym__val_number_token4] = ACTIONS(3124), - [aux_sym__val_number_token5] = ACTIONS(3124), - [aux_sym__val_number_token6] = ACTIONS(3124), - [anon_sym_0b] = ACTIONS(3126), - [anon_sym_0o] = ACTIONS(3128), - [anon_sym_0x] = ACTIONS(3128), - [sym_val_date] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym__str_single_quotes] = ACTIONS(3134), - [sym__str_back_ticks] = ACTIONS(3134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2596), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3136), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3138), + [aux_sym_ctrl_do_repeat2] = STATE(829), + [ts_builtin_sym_end] = ACTIONS(2782), + [sym__newline] = ACTIONS(2782), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym_PIPE] = ACTIONS(2782), + [anon_sym_err_GT_PIPE] = ACTIONS(2782), + [anon_sym_out_GT_PIPE] = ACTIONS(2782), + [anon_sym_e_GT_PIPE] = ACTIONS(2782), + [anon_sym_o_GT_PIPE] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2782), + [anon_sym_LBRACK] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_DOLLAR] = ACTIONS(2965), + [anon_sym_DASH_DASH] = ACTIONS(2967), + [anon_sym_DASH2] = ACTIONS(2969), + [anon_sym_LBRACE] = ACTIONS(2971), + [anon_sym_DOT_DOT] = ACTIONS(2973), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2975), + [anon_sym_DOT_DOT_LT] = ACTIONS(2975), + [anon_sym_null] = ACTIONS(2977), + [anon_sym_true] = ACTIONS(2979), + [anon_sym_false] = ACTIONS(2979), + [aux_sym__val_number_decimal_token1] = ACTIONS(2981), + [aux_sym__val_number_decimal_token2] = ACTIONS(2983), + [aux_sym__val_number_decimal_token3] = ACTIONS(2985), + [aux_sym__val_number_decimal_token4] = ACTIONS(2987), + [aux_sym__val_number_token1] = ACTIONS(2989), + [aux_sym__val_number_token2] = ACTIONS(2989), + [aux_sym__val_number_token3] = ACTIONS(2989), + [aux_sym__val_number_token4] = ACTIONS(2991), + [aux_sym__val_number_token5] = ACTIONS(2991), + [aux_sym__val_number_token6] = ACTIONS(2991), + [anon_sym_0b] = ACTIONS(2993), + [anon_sym_0o] = ACTIONS(2995), + [anon_sym_0x] = ACTIONS(2995), + [sym_val_date] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(2999), + [sym__str_single_quotes] = ACTIONS(3001), + [sym__str_back_ticks] = ACTIONS(3001), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3003), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3005), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3007), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3009), }, [834] = { - [sym_expr_parenthesized] = STATE(5958), - [sym__spread_parenthesized] = STATE(7448), - [sym_val_range] = STATE(7451), - [sym__val_range] = STATE(7776), - [sym__val_range_with_end] = STATE(7452), - [sym__value] = STATE(7451), - [sym_val_nothing] = STATE(7049), - [sym_val_bool] = STATE(6510), - [sym__spread_variable] = STATE(7454), - [sym_val_variable] = STATE(5708), - [sym_val_number] = STATE(7049), - [sym__val_number_decimal] = STATE(5233), - [sym__val_number] = STATE(7097), - [sym_val_duration] = STATE(7049), - [sym_val_filesize] = STATE(7049), - [sym_val_binary] = STATE(7049), - [sym_val_string] = STATE(7049), - [sym__raw_str] = STATE(5195), - [sym__str_double_quotes] = STATE(5195), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(7233), - [sym__spread_list] = STATE(7448), - [sym_list_body] = STATE(7687), - [sym_val_entry] = STATE(7036), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(7049), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_list] = STATE(6604), - [sym__unquoted_in_list_with_expr] = STATE(7451), - [sym__unquoted_anonymous_prefix] = STATE(7039), [sym_comment] = STATE(834), - [aux_sym_shebang_repeat1] = STATE(882), - [aux_sym_parameter_repeat2] = STATE(6611), - [aux_sym_list_body_repeat1] = STATE(940), - [sym__newline] = ACTIONS(2550), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_RBRACK] = ACTIONS(3148), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_COMMA] = ACTIONS(2558), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3114), - [aux_sym__val_number_decimal_token2] = ACTIONS(3116), - [aux_sym__val_number_decimal_token3] = ACTIONS(3118), - [aux_sym__val_number_decimal_token4] = ACTIONS(3120), - [aux_sym__val_number_token1] = ACTIONS(3122), - [aux_sym__val_number_token2] = ACTIONS(3122), - [aux_sym__val_number_token3] = ACTIONS(3122), - [aux_sym__val_number_token4] = ACTIONS(3124), - [aux_sym__val_number_token5] = ACTIONS(3124), - [aux_sym__val_number_token6] = ACTIONS(3124), - [anon_sym_0b] = ACTIONS(3126), - [anon_sym_0o] = ACTIONS(3128), - [anon_sym_0x] = ACTIONS(3128), - [sym_val_date] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym__str_single_quotes] = ACTIONS(3134), - [sym__str_back_ticks] = ACTIONS(3134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2596), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3136), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3138), + [ts_builtin_sym_end] = ACTIONS(2077), + [anon_sym_STAR_STAR] = ACTIONS(3086), + [anon_sym_PLUS_PLUS] = ACTIONS(3086), + [anon_sym_STAR] = ACTIONS(3088), + [anon_sym_SLASH] = ACTIONS(3088), + [anon_sym_mod] = ACTIONS(3086), + [anon_sym_SLASH_SLASH] = ACTIONS(3086), + [anon_sym_PLUS] = ACTIONS(3088), + [anon_sym_DASH] = ACTIONS(3086), + [anon_sym_bit_DASHshl] = ACTIONS(3086), + [anon_sym_bit_DASHshr] = ACTIONS(3086), + [anon_sym_EQ_TILDE] = ACTIONS(3086), + [anon_sym_BANG_TILDE] = ACTIONS(3086), + [anon_sym_bit_DASHand] = ACTIONS(3086), + [anon_sym_bit_DASHxor] = ACTIONS(3086), + [anon_sym_bit_DASHor] = ACTIONS(3086), + [anon_sym_and] = ACTIONS(3086), + [anon_sym_xor] = ACTIONS(3086), + [anon_sym_or] = ACTIONS(3086), + [anon_sym_in] = ACTIONS(3086), + [anon_sym_not_DASHin] = ACTIONS(3086), + [anon_sym_has] = ACTIONS(3086), + [anon_sym_not_DASHhas] = ACTIONS(3086), + [anon_sym_starts_DASHwith] = ACTIONS(3086), + [anon_sym_ends_DASHwith] = ACTIONS(3086), + [anon_sym_EQ_EQ] = ACTIONS(3086), + [anon_sym_BANG_EQ] = ACTIONS(3086), + [anon_sym_LT] = ACTIONS(3088), + [anon_sym_LT_EQ] = ACTIONS(3086), + [anon_sym_GT] = ACTIONS(3088), + [anon_sym_GT_EQ] = ACTIONS(3086), + [aux_sym_cmd_identifier_token41] = ACTIONS(3090), + [sym__newline] = ACTIONS(2073), + [anon_sym_SEMI] = ACTIONS(2073), + [anon_sym_PIPE] = ACTIONS(2073), + [anon_sym_err_GT_PIPE] = ACTIONS(2073), + [anon_sym_out_GT_PIPE] = ACTIONS(2073), + [anon_sym_e_GT_PIPE] = ACTIONS(2073), + [anon_sym_o_GT_PIPE] = ACTIONS(2073), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2073), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2073), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2073), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2073), + [anon_sym_GT2] = ACTIONS(2073), + [anon_sym_DASH2] = ACTIONS(2073), + [anon_sym_in2] = ACTIONS(2073), + [anon_sym_STAR2] = ACTIONS(2073), + [anon_sym_and2] = ACTIONS(2073), + [anon_sym_xor2] = ACTIONS(2073), + [anon_sym_or2] = ACTIONS(2073), + [anon_sym_not_DASHin2] = ACTIONS(2073), + [anon_sym_has2] = ACTIONS(2073), + [anon_sym_not_DASHhas2] = ACTIONS(2073), + [anon_sym_starts_DASHwith2] = ACTIONS(2073), + [anon_sym_ends_DASHwith2] = ACTIONS(2073), + [anon_sym_EQ_EQ2] = ACTIONS(2073), + [anon_sym_BANG_EQ2] = ACTIONS(2073), + [anon_sym_LT2] = ACTIONS(2073), + [anon_sym_LT_EQ2] = ACTIONS(2073), + [anon_sym_GT_EQ2] = ACTIONS(2073), + [anon_sym_EQ_TILDE2] = ACTIONS(2073), + [anon_sym_BANG_TILDE2] = ACTIONS(2073), + [anon_sym_STAR_STAR2] = ACTIONS(2073), + [anon_sym_PLUS_PLUS2] = ACTIONS(2073), + [anon_sym_SLASH2] = ACTIONS(2073), + [anon_sym_mod2] = ACTIONS(2073), + [anon_sym_SLASH_SLASH2] = ACTIONS(2073), + [anon_sym_PLUS2] = ACTIONS(2073), + [anon_sym_bit_DASHshl2] = ACTIONS(2073), + [anon_sym_bit_DASHshr2] = ACTIONS(2073), + [anon_sym_bit_DASHand2] = ACTIONS(2073), + [anon_sym_bit_DASHxor2] = ACTIONS(2073), + [anon_sym_bit_DASHor2] = ACTIONS(2073), + [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), + [anon_sym_POUND] = ACTIONS(3), }, [835] = { - [sym_expr_parenthesized] = STATE(5958), - [sym__spread_parenthesized] = STATE(7448), - [sym_val_range] = STATE(7451), - [sym__val_range] = STATE(7776), - [sym__val_range_with_end] = STATE(7452), - [sym__value] = STATE(7451), - [sym_val_nothing] = STATE(7049), - [sym_val_bool] = STATE(6510), - [sym__spread_variable] = STATE(7454), - [sym_val_variable] = STATE(5708), - [sym_val_number] = STATE(7049), - [sym__val_number_decimal] = STATE(5233), - [sym__val_number] = STATE(7097), - [sym_val_duration] = STATE(7049), - [sym_val_filesize] = STATE(7049), - [sym_val_binary] = STATE(7049), - [sym_val_string] = STATE(7049), - [sym__raw_str] = STATE(5195), - [sym__str_double_quotes] = STATE(5195), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(6985), - [sym__spread_list] = STATE(7448), - [sym_list_body] = STATE(7829), - [sym_val_entry] = STATE(7036), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(7049), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_list] = STATE(6604), - [sym__unquoted_in_list_with_expr] = STATE(7451), - [sym__unquoted_anonymous_prefix] = STATE(7039), [sym_comment] = STATE(835), - [aux_sym_shebang_repeat1] = STATE(869), - [aux_sym_parameter_repeat2] = STATE(6611), - [aux_sym_list_body_repeat1] = STATE(940), - [sym__newline] = ACTIONS(2550), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_RBRACK] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_COMMA] = ACTIONS(2558), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3114), - [aux_sym__val_number_decimal_token2] = ACTIONS(3116), - [aux_sym__val_number_decimal_token3] = ACTIONS(3118), - [aux_sym__val_number_decimal_token4] = ACTIONS(3120), - [aux_sym__val_number_token1] = ACTIONS(3122), - [aux_sym__val_number_token2] = ACTIONS(3122), - [aux_sym__val_number_token3] = ACTIONS(3122), - [aux_sym__val_number_token4] = ACTIONS(3124), - [aux_sym__val_number_token5] = ACTIONS(3124), - [aux_sym__val_number_token6] = ACTIONS(3124), - [anon_sym_0b] = ACTIONS(3126), - [anon_sym_0o] = ACTIONS(3128), - [anon_sym_0x] = ACTIONS(3128), - [sym_val_date] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym__str_single_quotes] = ACTIONS(3134), - [sym__str_back_ticks] = ACTIONS(3134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2596), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3136), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3138), + [anon_sym_STAR_STAR] = ACTIONS(3092), + [anon_sym_PLUS_PLUS] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3094), + [anon_sym_SLASH] = ACTIONS(3094), + [anon_sym_mod] = ACTIONS(3092), + [anon_sym_SLASH_SLASH] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(3094), + [anon_sym_DASH] = ACTIONS(3092), + [anon_sym_bit_DASHshl] = ACTIONS(3092), + [anon_sym_bit_DASHshr] = ACTIONS(3092), + [anon_sym_EQ_TILDE] = ACTIONS(3092), + [anon_sym_BANG_TILDE] = ACTIONS(3092), + [anon_sym_bit_DASHand] = ACTIONS(3092), + [anon_sym_bit_DASHxor] = ACTIONS(3092), + [anon_sym_bit_DASHor] = ACTIONS(3092), + [anon_sym_and] = ACTIONS(3092), + [anon_sym_xor] = ACTIONS(3092), + [anon_sym_or] = ACTIONS(3092), + [anon_sym_in] = ACTIONS(3092), + [anon_sym_not_DASHin] = ACTIONS(3092), + [anon_sym_has] = ACTIONS(3092), + [anon_sym_not_DASHhas] = ACTIONS(3092), + [anon_sym_starts_DASHwith] = ACTIONS(3092), + [anon_sym_ends_DASHwith] = ACTIONS(3092), + [anon_sym_EQ_EQ] = ACTIONS(3092), + [anon_sym_BANG_EQ] = ACTIONS(3092), + [anon_sym_LT] = ACTIONS(3094), + [anon_sym_LT_EQ] = ACTIONS(3092), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_GT_EQ] = ACTIONS(3092), + [aux_sym_cmd_identifier_token41] = ACTIONS(3096), + [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_GT2] = ACTIONS(2081), + [anon_sym_DASH2] = ACTIONS(2081), + [anon_sym_in2] = ACTIONS(2081), + [anon_sym_RBRACE] = ACTIONS(2081), + [anon_sym_STAR2] = ACTIONS(2081), + [anon_sym_and2] = ACTIONS(2081), + [anon_sym_xor2] = ACTIONS(2081), + [anon_sym_or2] = ACTIONS(2081), + [anon_sym_not_DASHin2] = ACTIONS(2081), + [anon_sym_has2] = ACTIONS(2081), + [anon_sym_not_DASHhas2] = ACTIONS(2081), + [anon_sym_starts_DASHwith2] = ACTIONS(2081), + [anon_sym_ends_DASHwith2] = ACTIONS(2081), + [anon_sym_EQ_EQ2] = ACTIONS(2081), + [anon_sym_BANG_EQ2] = ACTIONS(2081), + [anon_sym_LT2] = ACTIONS(2081), + [anon_sym_LT_EQ2] = ACTIONS(2081), + [anon_sym_GT_EQ2] = ACTIONS(2081), + [anon_sym_EQ_TILDE2] = ACTIONS(2081), + [anon_sym_BANG_TILDE2] = ACTIONS(2081), + [anon_sym_STAR_STAR2] = ACTIONS(2081), + [anon_sym_PLUS_PLUS2] = ACTIONS(2081), + [anon_sym_SLASH2] = ACTIONS(2081), + [anon_sym_mod2] = ACTIONS(2081), + [anon_sym_SLASH_SLASH2] = ACTIONS(2081), + [anon_sym_PLUS2] = ACTIONS(2081), + [anon_sym_bit_DASHshl2] = ACTIONS(2081), + [anon_sym_bit_DASHshr2] = ACTIONS(2081), + [anon_sym_bit_DASHand2] = ACTIONS(2081), + [anon_sym_bit_DASHxor2] = ACTIONS(2081), + [anon_sym_bit_DASHor2] = ACTIONS(2081), + [anon_sym_err_GT] = ACTIONS(2081), + [anon_sym_out_GT] = ACTIONS(2081), + [anon_sym_e_GT] = ACTIONS(2081), + [anon_sym_o_GT] = ACTIONS(2081), + [anon_sym_err_PLUSout_GT] = ACTIONS(2081), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2081), + [anon_sym_o_PLUSe_GT] = ACTIONS(2081), + [anon_sym_e_PLUSo_GT] = ACTIONS(2081), + [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), + [anon_sym_POUND] = ACTIONS(3), }, [836] = { - [sym_expr_parenthesized] = STATE(5958), - [sym__spread_parenthesized] = STATE(7448), - [sym_val_range] = STATE(7451), - [sym__val_range] = STATE(7776), - [sym__val_range_with_end] = STATE(7452), - [sym__value] = STATE(7451), - [sym_val_nothing] = STATE(7049), - [sym_val_bool] = STATE(6510), - [sym__spread_variable] = STATE(7454), - [sym_val_variable] = STATE(5708), - [sym_val_number] = STATE(7049), - [sym__val_number_decimal] = STATE(5233), - [sym__val_number] = STATE(7097), - [sym_val_duration] = STATE(7049), - [sym_val_filesize] = STATE(7049), - [sym_val_binary] = STATE(7049), - [sym_val_string] = STATE(7049), - [sym__raw_str] = STATE(5195), - [sym__str_double_quotes] = STATE(5195), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(7205), - [sym__spread_list] = STATE(7448), - [sym_list_body] = STATE(7613), - [sym_val_entry] = STATE(7036), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(7049), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_list] = STATE(6604), - [sym__unquoted_in_list_with_expr] = STATE(7451), - [sym__unquoted_anonymous_prefix] = STATE(7039), [sym_comment] = STATE(836), - [aux_sym_shebang_repeat1] = STATE(879), - [aux_sym_parameter_repeat2] = STATE(6611), - [aux_sym_list_body_repeat1] = STATE(940), - [sym__newline] = ACTIONS(2550), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_RBRACK] = ACTIONS(3152), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_COMMA] = ACTIONS(2558), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3114), - [aux_sym__val_number_decimal_token2] = ACTIONS(3116), - [aux_sym__val_number_decimal_token3] = ACTIONS(3118), - [aux_sym__val_number_decimal_token4] = ACTIONS(3120), - [aux_sym__val_number_token1] = ACTIONS(3122), - [aux_sym__val_number_token2] = ACTIONS(3122), - [aux_sym__val_number_token3] = ACTIONS(3122), - [aux_sym__val_number_token4] = ACTIONS(3124), - [aux_sym__val_number_token5] = ACTIONS(3124), - [aux_sym__val_number_token6] = ACTIONS(3124), - [anon_sym_0b] = ACTIONS(3126), - [anon_sym_0o] = ACTIONS(3128), - [anon_sym_0x] = ACTIONS(3128), - [sym_val_date] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym__str_single_quotes] = ACTIONS(3134), - [sym__str_back_ticks] = ACTIONS(3134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2596), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3136), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3138), + [ts_builtin_sym_end] = ACTIONS(2083), + [anon_sym_STAR_STAR] = ACTIONS(3086), + [anon_sym_PLUS_PLUS] = ACTIONS(3086), + [anon_sym_STAR] = ACTIONS(3088), + [anon_sym_SLASH] = ACTIONS(3088), + [anon_sym_mod] = ACTIONS(3086), + [anon_sym_SLASH_SLASH] = ACTIONS(3086), + [anon_sym_PLUS] = ACTIONS(3088), + [anon_sym_DASH] = ACTIONS(3086), + [anon_sym_bit_DASHshl] = ACTIONS(3086), + [anon_sym_bit_DASHshr] = ACTIONS(3086), + [anon_sym_EQ_TILDE] = ACTIONS(3086), + [anon_sym_BANG_TILDE] = ACTIONS(3086), + [anon_sym_bit_DASHand] = ACTIONS(3086), + [anon_sym_bit_DASHxor] = ACTIONS(3086), + [anon_sym_bit_DASHor] = ACTIONS(3086), + [anon_sym_and] = ACTIONS(3086), + [anon_sym_xor] = ACTIONS(3086), + [anon_sym_or] = ACTIONS(3086), + [anon_sym_in] = ACTIONS(3086), + [anon_sym_not_DASHin] = ACTIONS(3086), + [anon_sym_has] = ACTIONS(3086), + [anon_sym_not_DASHhas] = ACTIONS(3086), + [anon_sym_starts_DASHwith] = ACTIONS(3086), + [anon_sym_ends_DASHwith] = ACTIONS(3086), + [anon_sym_EQ_EQ] = ACTIONS(3086), + [anon_sym_BANG_EQ] = ACTIONS(3086), + [anon_sym_LT] = ACTIONS(3088), + [anon_sym_LT_EQ] = ACTIONS(3086), + [anon_sym_GT] = ACTIONS(3088), + [anon_sym_GT_EQ] = ACTIONS(3086), + [aux_sym_cmd_identifier_token41] = ACTIONS(3090), + [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_GT2] = ACTIONS(2081), + [anon_sym_DASH2] = ACTIONS(2081), + [anon_sym_in2] = ACTIONS(2081), + [anon_sym_STAR2] = ACTIONS(2081), + [anon_sym_and2] = ACTIONS(2081), + [anon_sym_xor2] = ACTIONS(2081), + [anon_sym_or2] = ACTIONS(2081), + [anon_sym_not_DASHin2] = ACTIONS(2081), + [anon_sym_has2] = ACTIONS(2081), + [anon_sym_not_DASHhas2] = ACTIONS(2081), + [anon_sym_starts_DASHwith2] = ACTIONS(2081), + [anon_sym_ends_DASHwith2] = ACTIONS(2081), + [anon_sym_EQ_EQ2] = ACTIONS(2081), + [anon_sym_BANG_EQ2] = ACTIONS(2081), + [anon_sym_LT2] = ACTIONS(2081), + [anon_sym_LT_EQ2] = ACTIONS(2081), + [anon_sym_GT_EQ2] = ACTIONS(2081), + [anon_sym_EQ_TILDE2] = ACTIONS(2081), + [anon_sym_BANG_TILDE2] = ACTIONS(2081), + [anon_sym_STAR_STAR2] = ACTIONS(2081), + [anon_sym_PLUS_PLUS2] = ACTIONS(2081), + [anon_sym_SLASH2] = ACTIONS(2081), + [anon_sym_mod2] = ACTIONS(2081), + [anon_sym_SLASH_SLASH2] = ACTIONS(2081), + [anon_sym_PLUS2] = ACTIONS(2081), + [anon_sym_bit_DASHshl2] = ACTIONS(2081), + [anon_sym_bit_DASHshr2] = ACTIONS(2081), + [anon_sym_bit_DASHand2] = ACTIONS(2081), + [anon_sym_bit_DASHxor2] = ACTIONS(2081), + [anon_sym_bit_DASHor2] = ACTIONS(2081), + [anon_sym_err_GT] = ACTIONS(2081), + [anon_sym_out_GT] = ACTIONS(2081), + [anon_sym_e_GT] = ACTIONS(2081), + [anon_sym_o_GT] = ACTIONS(2081), + [anon_sym_err_PLUSout_GT] = ACTIONS(2081), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2081), + [anon_sym_o_PLUSe_GT] = ACTIONS(2081), + [anon_sym_e_PLUSo_GT] = ACTIONS(2081), + [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), + [anon_sym_POUND] = ACTIONS(3), }, [837] = { - [sym_expr_parenthesized] = STATE(5958), - [sym__spread_parenthesized] = STATE(7448), - [sym_val_range] = STATE(7451), - [sym__val_range] = STATE(7776), - [sym__val_range_with_end] = STATE(7452), - [sym__value] = STATE(7451), - [sym_val_nothing] = STATE(7049), - [sym_val_bool] = STATE(6510), - [sym__spread_variable] = STATE(7454), - [sym_val_variable] = STATE(5708), - [sym_val_number] = STATE(7049), - [sym__val_number_decimal] = STATE(5233), - [sym__val_number] = STATE(7097), - [sym_val_duration] = STATE(7049), - [sym_val_filesize] = STATE(7049), - [sym_val_binary] = STATE(7049), - [sym_val_string] = STATE(7049), - [sym__raw_str] = STATE(5195), - [sym__str_double_quotes] = STATE(5195), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(7170), - [sym__spread_list] = STATE(7448), - [sym_list_body] = STATE(7698), - [sym_val_entry] = STATE(7036), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(7049), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_list] = STATE(6604), - [sym__unquoted_in_list_with_expr] = STATE(7451), - [sym__unquoted_anonymous_prefix] = STATE(7039), [sym_comment] = STATE(837), - [aux_sym_shebang_repeat1] = STATE(875), - [aux_sym_parameter_repeat2] = STATE(6611), - [aux_sym_list_body_repeat1] = STATE(940), - [sym__newline] = ACTIONS(2550), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_RBRACK] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_COMMA] = ACTIONS(2558), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3114), - [aux_sym__val_number_decimal_token2] = ACTIONS(3116), - [aux_sym__val_number_decimal_token3] = ACTIONS(3118), - [aux_sym__val_number_decimal_token4] = ACTIONS(3120), - [aux_sym__val_number_token1] = ACTIONS(3122), - [aux_sym__val_number_token2] = ACTIONS(3122), - [aux_sym__val_number_token3] = ACTIONS(3122), - [aux_sym__val_number_token4] = ACTIONS(3124), - [aux_sym__val_number_token5] = ACTIONS(3124), - [aux_sym__val_number_token6] = ACTIONS(3124), - [anon_sym_0b] = ACTIONS(3126), - [anon_sym_0o] = ACTIONS(3128), - [anon_sym_0x] = ACTIONS(3128), - [sym_val_date] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym__str_single_quotes] = ACTIONS(3134), - [sym__str_back_ticks] = ACTIONS(3134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2596), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3136), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3138), + [anon_sym_STAR_STAR] = ACTIONS(3092), + [anon_sym_PLUS_PLUS] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3094), + [anon_sym_SLASH] = ACTIONS(3094), + [anon_sym_mod] = ACTIONS(3092), + [anon_sym_SLASH_SLASH] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(3094), + [anon_sym_DASH] = ACTIONS(3092), + [anon_sym_bit_DASHshl] = ACTIONS(3092), + [anon_sym_bit_DASHshr] = ACTIONS(3092), + [anon_sym_EQ_TILDE] = ACTIONS(3092), + [anon_sym_BANG_TILDE] = ACTIONS(3092), + [anon_sym_bit_DASHand] = ACTIONS(3092), + [anon_sym_bit_DASHxor] = ACTIONS(3092), + [anon_sym_bit_DASHor] = ACTIONS(3092), + [anon_sym_and] = ACTIONS(3092), + [anon_sym_xor] = ACTIONS(3092), + [anon_sym_or] = ACTIONS(3092), + [anon_sym_in] = ACTIONS(3092), + [anon_sym_not_DASHin] = ACTIONS(3092), + [anon_sym_has] = ACTIONS(3092), + [anon_sym_not_DASHhas] = ACTIONS(3092), + [anon_sym_starts_DASHwith] = ACTIONS(3092), + [anon_sym_ends_DASHwith] = ACTIONS(3092), + [anon_sym_EQ_EQ] = ACTIONS(3092), + [anon_sym_BANG_EQ] = ACTIONS(3092), + [anon_sym_LT] = ACTIONS(3094), + [anon_sym_LT_EQ] = ACTIONS(3092), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_GT_EQ] = ACTIONS(3092), + [aux_sym_cmd_identifier_token41] = ACTIONS(3096), + [sym__newline] = ACTIONS(2073), + [anon_sym_SEMI] = ACTIONS(2073), + [anon_sym_PIPE] = ACTIONS(2073), + [anon_sym_err_GT_PIPE] = ACTIONS(2073), + [anon_sym_out_GT_PIPE] = ACTIONS(2073), + [anon_sym_e_GT_PIPE] = ACTIONS(2073), + [anon_sym_o_GT_PIPE] = ACTIONS(2073), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2073), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2073), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2073), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2073), + [anon_sym_GT2] = ACTIONS(2073), + [anon_sym_DASH2] = ACTIONS(2073), + [anon_sym_in2] = ACTIONS(2073), + [anon_sym_RBRACE] = ACTIONS(2073), + [anon_sym_STAR2] = ACTIONS(2073), + [anon_sym_and2] = ACTIONS(2073), + [anon_sym_xor2] = ACTIONS(2073), + [anon_sym_or2] = ACTIONS(2073), + [anon_sym_not_DASHin2] = ACTIONS(2073), + [anon_sym_has2] = ACTIONS(2073), + [anon_sym_not_DASHhas2] = ACTIONS(2073), + [anon_sym_starts_DASHwith2] = ACTIONS(2073), + [anon_sym_ends_DASHwith2] = ACTIONS(2073), + [anon_sym_EQ_EQ2] = ACTIONS(2073), + [anon_sym_BANG_EQ2] = ACTIONS(2073), + [anon_sym_LT2] = ACTIONS(2073), + [anon_sym_LT_EQ2] = ACTIONS(2073), + [anon_sym_GT_EQ2] = ACTIONS(2073), + [anon_sym_EQ_TILDE2] = ACTIONS(2073), + [anon_sym_BANG_TILDE2] = ACTIONS(2073), + [anon_sym_STAR_STAR2] = ACTIONS(2073), + [anon_sym_PLUS_PLUS2] = ACTIONS(2073), + [anon_sym_SLASH2] = ACTIONS(2073), + [anon_sym_mod2] = ACTIONS(2073), + [anon_sym_SLASH_SLASH2] = ACTIONS(2073), + [anon_sym_PLUS2] = ACTIONS(2073), + [anon_sym_bit_DASHshl2] = ACTIONS(2073), + [anon_sym_bit_DASHshr2] = ACTIONS(2073), + [anon_sym_bit_DASHand2] = ACTIONS(2073), + [anon_sym_bit_DASHxor2] = ACTIONS(2073), + [anon_sym_bit_DASHor2] = ACTIONS(2073), + [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), + [anon_sym_POUND] = ACTIONS(3), }, [838] = { [sym_comment] = STATE(838), - [anon_sym_STAR_STAR] = ACTIONS(1552), - [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1550), - [anon_sym_SLASH] = ACTIONS(1550), - [anon_sym_mod] = ACTIONS(1552), - [anon_sym_SLASH_SLASH] = ACTIONS(1552), - [anon_sym_PLUS] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1552), - [anon_sym_bit_DASHshl] = ACTIONS(1552), - [anon_sym_bit_DASHshr] = ACTIONS(1552), - [anon_sym_EQ_TILDE] = ACTIONS(1552), - [anon_sym_BANG_TILDE] = ACTIONS(1552), - [anon_sym_bit_DASHand] = ACTIONS(1552), - [anon_sym_bit_DASHxor] = ACTIONS(1552), - [anon_sym_bit_DASHor] = ACTIONS(1552), - [anon_sym_and] = ACTIONS(1552), - [anon_sym_xor] = ACTIONS(1552), - [anon_sym_or] = ACTIONS(1552), - [anon_sym_in] = ACTIONS(1552), - [anon_sym_not_DASHin] = ACTIONS(1552), - [anon_sym_starts_DASHwith] = ACTIONS(1552), - [anon_sym_ends_DASHwith] = ACTIONS(1552), - [anon_sym_EQ_EQ] = ACTIONS(1552), - [anon_sym_BANG_EQ] = ACTIONS(1552), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_LT_EQ] = ACTIONS(1552), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_GT_EQ] = ACTIONS(1552), - [aux_sym_cmd_identifier_token41] = ACTIONS(1550), - [sym__newline] = ACTIONS(1550), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_err_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_GT_PIPE] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1550), - [anon_sym_GT2] = ACTIONS(1550), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_in2] = ACTIONS(1550), - [anon_sym_STAR2] = ACTIONS(1550), - [anon_sym_and2] = ACTIONS(1550), - [anon_sym_xor2] = ACTIONS(1550), - [anon_sym_or2] = ACTIONS(1550), - [anon_sym_not_DASHin2] = ACTIONS(1550), - [anon_sym_starts_DASHwith2] = ACTIONS(1550), - [anon_sym_ends_DASHwith2] = ACTIONS(1550), - [anon_sym_EQ_EQ2] = ACTIONS(1550), - [anon_sym_BANG_EQ2] = ACTIONS(1550), - [anon_sym_LT2] = ACTIONS(1550), - [anon_sym_LT_EQ2] = ACTIONS(1550), - [anon_sym_GT_EQ2] = ACTIONS(1550), - [anon_sym_EQ_TILDE2] = ACTIONS(1550), - [anon_sym_BANG_TILDE2] = ACTIONS(1550), - [anon_sym_STAR_STAR2] = ACTIONS(1550), - [anon_sym_PLUS_PLUS2] = ACTIONS(1550), - [anon_sym_SLASH2] = ACTIONS(1550), - [anon_sym_mod2] = ACTIONS(1550), - [anon_sym_SLASH_SLASH2] = ACTIONS(1550), - [anon_sym_PLUS2] = ACTIONS(1550), - [anon_sym_bit_DASHshl2] = ACTIONS(1550), - [anon_sym_bit_DASHshr2] = ACTIONS(1550), - [anon_sym_bit_DASHand2] = ACTIONS(1550), - [anon_sym_bit_DASHxor2] = ACTIONS(1550), - [anon_sym_bit_DASHor2] = ACTIONS(1550), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [sym_filesize_unit] = ACTIONS(1550), - [sym_duration_unit] = ACTIONS(1552), - [anon_sym_err_GT] = ACTIONS(1550), - [anon_sym_out_GT] = ACTIONS(1550), - [anon_sym_e_GT] = ACTIONS(1550), - [anon_sym_o_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT] = ACTIONS(1550), - [anon_sym_err_GT_GT] = ACTIONS(1550), - [anon_sym_out_GT_GT] = ACTIONS(1550), - [anon_sym_e_GT_GT] = ACTIONS(1550), - [anon_sym_o_GT_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1550), + [anon_sym_STAR_STAR] = ACTIONS(3092), + [anon_sym_PLUS_PLUS] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3094), + [anon_sym_SLASH] = ACTIONS(3094), + [anon_sym_mod] = ACTIONS(3092), + [anon_sym_SLASH_SLASH] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(3094), + [anon_sym_DASH] = ACTIONS(3092), + [anon_sym_bit_DASHshl] = ACTIONS(3092), + [anon_sym_bit_DASHshr] = ACTIONS(3092), + [anon_sym_EQ_TILDE] = ACTIONS(3092), + [anon_sym_BANG_TILDE] = ACTIONS(3092), + [anon_sym_bit_DASHand] = ACTIONS(3092), + [anon_sym_bit_DASHxor] = ACTIONS(3092), + [anon_sym_bit_DASHor] = ACTIONS(3092), + [anon_sym_and] = ACTIONS(3092), + [anon_sym_xor] = ACTIONS(3092), + [anon_sym_or] = ACTIONS(3092), + [anon_sym_in] = ACTIONS(3092), + [anon_sym_not_DASHin] = ACTIONS(3092), + [anon_sym_has] = ACTIONS(3092), + [anon_sym_not_DASHhas] = ACTIONS(3092), + [anon_sym_starts_DASHwith] = ACTIONS(3092), + [anon_sym_ends_DASHwith] = ACTIONS(3092), + [anon_sym_EQ_EQ] = ACTIONS(3092), + [anon_sym_BANG_EQ] = ACTIONS(3092), + [anon_sym_LT] = ACTIONS(3094), + [anon_sym_LT_EQ] = ACTIONS(3092), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_GT_EQ] = ACTIONS(3092), + [aux_sym_cmd_identifier_token41] = ACTIONS(3096), + [sym__newline] = ACTIONS(2073), + [anon_sym_SEMI] = ACTIONS(2073), + [anon_sym_PIPE] = ACTIONS(2073), + [anon_sym_err_GT_PIPE] = ACTIONS(2073), + [anon_sym_out_GT_PIPE] = ACTIONS(2073), + [anon_sym_e_GT_PIPE] = ACTIONS(2073), + [anon_sym_o_GT_PIPE] = ACTIONS(2073), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2073), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2073), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2073), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2073), + [anon_sym_RPAREN] = ACTIONS(2073), + [anon_sym_GT2] = ACTIONS(2073), + [anon_sym_DASH2] = ACTIONS(2073), + [anon_sym_in2] = ACTIONS(2073), + [anon_sym_STAR2] = ACTIONS(2073), + [anon_sym_and2] = ACTIONS(2073), + [anon_sym_xor2] = ACTIONS(2073), + [anon_sym_or2] = ACTIONS(2073), + [anon_sym_not_DASHin2] = ACTIONS(2073), + [anon_sym_has2] = ACTIONS(2073), + [anon_sym_not_DASHhas2] = ACTIONS(2073), + [anon_sym_starts_DASHwith2] = ACTIONS(2073), + [anon_sym_ends_DASHwith2] = ACTIONS(2073), + [anon_sym_EQ_EQ2] = ACTIONS(2073), + [anon_sym_BANG_EQ2] = ACTIONS(2073), + [anon_sym_LT2] = ACTIONS(2073), + [anon_sym_LT_EQ2] = ACTIONS(2073), + [anon_sym_GT_EQ2] = ACTIONS(2073), + [anon_sym_EQ_TILDE2] = ACTIONS(2073), + [anon_sym_BANG_TILDE2] = ACTIONS(2073), + [anon_sym_STAR_STAR2] = ACTIONS(2073), + [anon_sym_PLUS_PLUS2] = ACTIONS(2073), + [anon_sym_SLASH2] = ACTIONS(2073), + [anon_sym_mod2] = ACTIONS(2073), + [anon_sym_SLASH_SLASH2] = ACTIONS(2073), + [anon_sym_PLUS2] = ACTIONS(2073), + [anon_sym_bit_DASHshl2] = ACTIONS(2073), + [anon_sym_bit_DASHshr2] = ACTIONS(2073), + [anon_sym_bit_DASHand2] = ACTIONS(2073), + [anon_sym_bit_DASHxor2] = ACTIONS(2073), + [anon_sym_bit_DASHor2] = ACTIONS(2073), + [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), [anon_sym_POUND] = ACTIONS(3), }, [839] = { - [sym_expr_parenthesized] = STATE(5958), - [sym__spread_parenthesized] = STATE(7448), - [sym_val_range] = STATE(7451), - [sym__val_range] = STATE(7776), - [sym__val_range_with_end] = STATE(7452), - [sym__value] = STATE(7451), - [sym_val_nothing] = STATE(7049), - [sym_val_bool] = STATE(6510), - [sym__spread_variable] = STATE(7454), - [sym_val_variable] = STATE(5708), - [sym_val_number] = STATE(7049), - [sym__val_number_decimal] = STATE(5233), - [sym__val_number] = STATE(7097), - [sym_val_duration] = STATE(7049), - [sym_val_filesize] = STATE(7049), - [sym_val_binary] = STATE(7049), - [sym_val_string] = STATE(7049), - [sym__raw_str] = STATE(5195), - [sym__str_double_quotes] = STATE(5195), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(7018), - [sym__spread_list] = STATE(7448), - [sym_list_body] = STATE(7550), - [sym_val_entry] = STATE(7036), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(7049), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_list] = STATE(6604), - [sym__unquoted_in_list_with_expr] = STATE(7451), - [sym__unquoted_anonymous_prefix] = STATE(7039), [sym_comment] = STATE(839), - [aux_sym_shebang_repeat1] = STATE(871), - [aux_sym_parameter_repeat2] = STATE(6611), - [aux_sym_list_body_repeat1] = STATE(940), - [sym__newline] = ACTIONS(2550), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_RBRACK] = ACTIONS(3156), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_COMMA] = ACTIONS(2558), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3114), - [aux_sym__val_number_decimal_token2] = ACTIONS(3116), - [aux_sym__val_number_decimal_token3] = ACTIONS(3118), - [aux_sym__val_number_decimal_token4] = ACTIONS(3120), - [aux_sym__val_number_token1] = ACTIONS(3122), - [aux_sym__val_number_token2] = ACTIONS(3122), - [aux_sym__val_number_token3] = ACTIONS(3122), - [aux_sym__val_number_token4] = ACTIONS(3124), - [aux_sym__val_number_token5] = ACTIONS(3124), - [aux_sym__val_number_token6] = ACTIONS(3124), - [anon_sym_0b] = ACTIONS(3126), - [anon_sym_0o] = ACTIONS(3128), - [anon_sym_0x] = ACTIONS(3128), - [sym_val_date] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym__str_single_quotes] = ACTIONS(3134), - [sym__str_back_ticks] = ACTIONS(3134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2596), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3136), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3138), + [anon_sym_STAR_STAR] = ACTIONS(3092), + [anon_sym_PLUS_PLUS] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3094), + [anon_sym_SLASH] = ACTIONS(3094), + [anon_sym_mod] = ACTIONS(3092), + [anon_sym_SLASH_SLASH] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(3094), + [anon_sym_DASH] = ACTIONS(3092), + [anon_sym_bit_DASHshl] = ACTIONS(3092), + [anon_sym_bit_DASHshr] = ACTIONS(3092), + [anon_sym_EQ_TILDE] = ACTIONS(3092), + [anon_sym_BANG_TILDE] = ACTIONS(3092), + [anon_sym_bit_DASHand] = ACTIONS(3092), + [anon_sym_bit_DASHxor] = ACTIONS(3092), + [anon_sym_bit_DASHor] = ACTIONS(3092), + [anon_sym_and] = ACTIONS(3092), + [anon_sym_xor] = ACTIONS(3092), + [anon_sym_or] = ACTIONS(3092), + [anon_sym_in] = ACTIONS(3092), + [anon_sym_not_DASHin] = ACTIONS(3092), + [anon_sym_has] = ACTIONS(3092), + [anon_sym_not_DASHhas] = ACTIONS(3092), + [anon_sym_starts_DASHwith] = ACTIONS(3092), + [anon_sym_ends_DASHwith] = ACTIONS(3092), + [anon_sym_EQ_EQ] = ACTIONS(3092), + [anon_sym_BANG_EQ] = ACTIONS(3092), + [anon_sym_LT] = ACTIONS(3094), + [anon_sym_LT_EQ] = ACTIONS(3092), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_GT_EQ] = ACTIONS(3092), + [aux_sym_cmd_identifier_token41] = ACTIONS(3096), + [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_RPAREN] = ACTIONS(2081), + [anon_sym_GT2] = ACTIONS(2081), + [anon_sym_DASH2] = ACTIONS(2081), + [anon_sym_in2] = ACTIONS(2081), + [anon_sym_STAR2] = ACTIONS(2081), + [anon_sym_and2] = ACTIONS(2081), + [anon_sym_xor2] = ACTIONS(2081), + [anon_sym_or2] = ACTIONS(2081), + [anon_sym_not_DASHin2] = ACTIONS(2081), + [anon_sym_has2] = ACTIONS(2081), + [anon_sym_not_DASHhas2] = ACTIONS(2081), + [anon_sym_starts_DASHwith2] = ACTIONS(2081), + [anon_sym_ends_DASHwith2] = ACTIONS(2081), + [anon_sym_EQ_EQ2] = ACTIONS(2081), + [anon_sym_BANG_EQ2] = ACTIONS(2081), + [anon_sym_LT2] = ACTIONS(2081), + [anon_sym_LT_EQ2] = ACTIONS(2081), + [anon_sym_GT_EQ2] = ACTIONS(2081), + [anon_sym_EQ_TILDE2] = ACTIONS(2081), + [anon_sym_BANG_TILDE2] = ACTIONS(2081), + [anon_sym_STAR_STAR2] = ACTIONS(2081), + [anon_sym_PLUS_PLUS2] = ACTIONS(2081), + [anon_sym_SLASH2] = ACTIONS(2081), + [anon_sym_mod2] = ACTIONS(2081), + [anon_sym_SLASH_SLASH2] = ACTIONS(2081), + [anon_sym_PLUS2] = ACTIONS(2081), + [anon_sym_bit_DASHshl2] = ACTIONS(2081), + [anon_sym_bit_DASHshr2] = ACTIONS(2081), + [anon_sym_bit_DASHand2] = ACTIONS(2081), + [anon_sym_bit_DASHxor2] = ACTIONS(2081), + [anon_sym_bit_DASHor2] = ACTIONS(2081), + [anon_sym_err_GT] = ACTIONS(2081), + [anon_sym_out_GT] = ACTIONS(2081), + [anon_sym_e_GT] = ACTIONS(2081), + [anon_sym_o_GT] = ACTIONS(2081), + [anon_sym_err_PLUSout_GT] = ACTIONS(2081), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2081), + [anon_sym_o_PLUSe_GT] = ACTIONS(2081), + [anon_sym_e_PLUSo_GT] = ACTIONS(2081), + [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), + [anon_sym_POUND] = ACTIONS(3), }, [840] = { [sym_comment] = STATE(840), - [anon_sym_STAR_STAR] = ACTIONS(1745), - [anon_sym_PLUS_PLUS] = ACTIONS(1745), - [anon_sym_STAR] = ACTIONS(1743), - [anon_sym_SLASH] = ACTIONS(1743), - [anon_sym_mod] = ACTIONS(1745), - [anon_sym_SLASH_SLASH] = ACTIONS(1745), - [anon_sym_PLUS] = ACTIONS(1743), - [anon_sym_DASH] = ACTIONS(1745), - [anon_sym_bit_DASHshl] = ACTIONS(1745), - [anon_sym_bit_DASHshr] = ACTIONS(1745), - [anon_sym_EQ_TILDE] = ACTIONS(1745), - [anon_sym_BANG_TILDE] = ACTIONS(1745), - [anon_sym_bit_DASHand] = ACTIONS(1745), - [anon_sym_bit_DASHxor] = ACTIONS(1745), - [anon_sym_bit_DASHor] = ACTIONS(1745), - [anon_sym_and] = ACTIONS(1745), - [anon_sym_xor] = ACTIONS(1745), - [anon_sym_or] = ACTIONS(1745), - [anon_sym_in] = ACTIONS(1745), - [anon_sym_not_DASHin] = ACTIONS(1745), - [anon_sym_starts_DASHwith] = ACTIONS(1745), - [anon_sym_ends_DASHwith] = ACTIONS(1745), - [anon_sym_EQ_EQ] = ACTIONS(1745), - [anon_sym_BANG_EQ] = ACTIONS(1745), - [anon_sym_LT] = ACTIONS(1743), - [anon_sym_LT_EQ] = ACTIONS(1745), - [anon_sym_GT] = ACTIONS(1743), - [anon_sym_GT_EQ] = ACTIONS(1745), - [aux_sym_cmd_identifier_token41] = ACTIONS(1743), - [sym__newline] = ACTIONS(1743), - [anon_sym_PIPE] = ACTIONS(1743), - [anon_sym_err_GT_PIPE] = ACTIONS(1743), - [anon_sym_out_GT_PIPE] = ACTIONS(1743), - [anon_sym_e_GT_PIPE] = ACTIONS(1743), - [anon_sym_o_GT_PIPE] = ACTIONS(1743), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1743), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1743), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1743), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1743), - [anon_sym_GT2] = ACTIONS(1743), - [anon_sym_DASH2] = ACTIONS(1743), - [anon_sym_in2] = ACTIONS(1743), - [anon_sym_STAR2] = ACTIONS(1743), - [anon_sym_and2] = ACTIONS(1743), - [anon_sym_xor2] = ACTIONS(1743), - [anon_sym_or2] = ACTIONS(1743), - [anon_sym_not_DASHin2] = ACTIONS(1743), - [anon_sym_starts_DASHwith2] = ACTIONS(1743), - [anon_sym_ends_DASHwith2] = ACTIONS(1743), - [anon_sym_EQ_EQ2] = ACTIONS(1743), - [anon_sym_BANG_EQ2] = ACTIONS(1743), - [anon_sym_LT2] = ACTIONS(1743), - [anon_sym_LT_EQ2] = ACTIONS(1743), - [anon_sym_GT_EQ2] = ACTIONS(1743), - [anon_sym_EQ_TILDE2] = ACTIONS(1743), - [anon_sym_BANG_TILDE2] = ACTIONS(1743), - [anon_sym_STAR_STAR2] = ACTIONS(1743), - [anon_sym_PLUS_PLUS2] = ACTIONS(1743), - [anon_sym_SLASH2] = ACTIONS(1743), - [anon_sym_mod2] = ACTIONS(1743), - [anon_sym_SLASH_SLASH2] = ACTIONS(1743), - [anon_sym_PLUS2] = ACTIONS(1743), - [anon_sym_bit_DASHshl2] = ACTIONS(1743), - [anon_sym_bit_DASHshr2] = ACTIONS(1743), - [anon_sym_bit_DASHand2] = ACTIONS(1743), - [anon_sym_bit_DASHxor2] = ACTIONS(1743), - [anon_sym_bit_DASHor2] = ACTIONS(1743), - [anon_sym_DOT_DOT2] = ACTIONS(1743), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1745), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1745), - [sym_filesize_unit] = ACTIONS(1743), - [sym_duration_unit] = ACTIONS(1745), - [anon_sym_err_GT] = ACTIONS(1743), - [anon_sym_out_GT] = ACTIONS(1743), - [anon_sym_e_GT] = ACTIONS(1743), - [anon_sym_o_GT] = ACTIONS(1743), - [anon_sym_err_PLUSout_GT] = ACTIONS(1743), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1743), - [anon_sym_o_PLUSe_GT] = ACTIONS(1743), - [anon_sym_e_PLUSo_GT] = ACTIONS(1743), - [anon_sym_err_GT_GT] = ACTIONS(1743), - [anon_sym_out_GT_GT] = ACTIONS(1743), - [anon_sym_e_GT_GT] = ACTIONS(1743), - [anon_sym_o_GT_GT] = ACTIONS(1743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1743), + [anon_sym_STAR_STAR] = ACTIONS(3098), + [anon_sym_PLUS_PLUS] = ACTIONS(3098), + [anon_sym_STAR] = ACTIONS(3100), + [anon_sym_SLASH] = ACTIONS(3100), + [anon_sym_mod] = ACTIONS(3098), + [anon_sym_SLASH_SLASH] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3098), + [anon_sym_bit_DASHshl] = ACTIONS(3098), + [anon_sym_bit_DASHshr] = ACTIONS(3098), + [anon_sym_EQ_TILDE] = ACTIONS(3098), + [anon_sym_BANG_TILDE] = ACTIONS(3098), + [anon_sym_bit_DASHand] = ACTIONS(3098), + [anon_sym_bit_DASHxor] = ACTIONS(3098), + [anon_sym_bit_DASHor] = ACTIONS(3098), + [anon_sym_and] = ACTIONS(3098), + [anon_sym_xor] = ACTIONS(3098), + [anon_sym_or] = ACTIONS(3098), + [anon_sym_in] = ACTIONS(3098), + [anon_sym_not_DASHin] = ACTIONS(3098), + [anon_sym_has] = ACTIONS(3098), + [anon_sym_not_DASHhas] = ACTIONS(3098), + [anon_sym_starts_DASHwith] = ACTIONS(3098), + [anon_sym_ends_DASHwith] = ACTIONS(3098), + [anon_sym_EQ_EQ] = ACTIONS(3098), + [anon_sym_BANG_EQ] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3100), + [anon_sym_LT_EQ] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3100), + [anon_sym_GT_EQ] = ACTIONS(3098), + [aux_sym_cmd_identifier_token41] = ACTIONS(3102), + [sym__newline] = ACTIONS(2073), + [anon_sym_SEMI] = ACTIONS(2073), + [anon_sym_PIPE] = ACTIONS(2073), + [anon_sym_err_GT_PIPE] = ACTIONS(2073), + [anon_sym_out_GT_PIPE] = ACTIONS(2073), + [anon_sym_e_GT_PIPE] = ACTIONS(2073), + [anon_sym_o_GT_PIPE] = ACTIONS(2073), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2073), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2073), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2073), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2073), + [anon_sym_GT2] = ACTIONS(2073), + [anon_sym_DASH2] = ACTIONS(2073), + [anon_sym_in2] = ACTIONS(2073), + [anon_sym_RBRACE] = ACTIONS(2073), + [anon_sym_STAR2] = ACTIONS(2073), + [anon_sym_and2] = ACTIONS(2073), + [anon_sym_xor2] = ACTIONS(2073), + [anon_sym_or2] = ACTIONS(2073), + [anon_sym_not_DASHin2] = ACTIONS(2073), + [anon_sym_has2] = ACTIONS(2073), + [anon_sym_not_DASHhas2] = ACTIONS(2073), + [anon_sym_starts_DASHwith2] = ACTIONS(2073), + [anon_sym_ends_DASHwith2] = ACTIONS(2073), + [anon_sym_EQ_EQ2] = ACTIONS(2073), + [anon_sym_BANG_EQ2] = ACTIONS(2073), + [anon_sym_LT2] = ACTIONS(2073), + [anon_sym_LT_EQ2] = ACTIONS(2073), + [anon_sym_GT_EQ2] = ACTIONS(2073), + [anon_sym_EQ_TILDE2] = ACTIONS(2073), + [anon_sym_BANG_TILDE2] = ACTIONS(2073), + [anon_sym_STAR_STAR2] = ACTIONS(2073), + [anon_sym_PLUS_PLUS2] = ACTIONS(2073), + [anon_sym_SLASH2] = ACTIONS(2073), + [anon_sym_mod2] = ACTIONS(2073), + [anon_sym_SLASH_SLASH2] = ACTIONS(2073), + [anon_sym_PLUS2] = ACTIONS(2073), + [anon_sym_bit_DASHshl2] = ACTIONS(2073), + [anon_sym_bit_DASHshr2] = ACTIONS(2073), + [anon_sym_bit_DASHand2] = ACTIONS(2073), + [anon_sym_bit_DASHxor2] = ACTIONS(2073), + [anon_sym_bit_DASHor2] = ACTIONS(2073), + [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), [anon_sym_POUND] = ACTIONS(3), }, [841] = { - [sym_expr_parenthesized] = STATE(5958), - [sym__spread_parenthesized] = STATE(7448), - [sym_val_range] = STATE(7451), - [sym__val_range] = STATE(7776), - [sym__val_range_with_end] = STATE(7452), - [sym__value] = STATE(7451), - [sym_val_nothing] = STATE(7049), - [sym_val_bool] = STATE(6510), - [sym__spread_variable] = STATE(7454), - [sym_val_variable] = STATE(5708), - [sym_val_number] = STATE(7049), - [sym__val_number_decimal] = STATE(5233), - [sym__val_number] = STATE(7097), - [sym_val_duration] = STATE(7049), - [sym_val_filesize] = STATE(7049), - [sym_val_binary] = STATE(7049), - [sym_val_string] = STATE(7049), - [sym__raw_str] = STATE(5195), - [sym__str_double_quotes] = STATE(5195), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(7049), - [sym__spread_list] = STATE(7448), - [sym_list_body] = STATE(7709), - [sym_val_entry] = STATE(7036), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(7049), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_list] = STATE(6604), - [sym__unquoted_in_list_with_expr] = STATE(7451), - [sym__unquoted_anonymous_prefix] = STATE(7039), [sym_comment] = STATE(841), - [aux_sym_shebang_repeat1] = STATE(870), - [aux_sym_parameter_repeat2] = STATE(6611), - [aux_sym_list_body_repeat1] = STATE(940), - [sym__newline] = ACTIONS(2550), - [anon_sym_LBRACK] = ACTIONS(3142), - [anon_sym_RBRACK] = ACTIONS(3158), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_COMMA] = ACTIONS(2558), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3114), - [aux_sym__val_number_decimal_token2] = ACTIONS(3116), - [aux_sym__val_number_decimal_token3] = ACTIONS(3118), - [aux_sym__val_number_decimal_token4] = ACTIONS(3120), - [aux_sym__val_number_token1] = ACTIONS(3122), - [aux_sym__val_number_token2] = ACTIONS(3122), - [aux_sym__val_number_token3] = ACTIONS(3122), - [aux_sym__val_number_token4] = ACTIONS(3124), - [aux_sym__val_number_token5] = ACTIONS(3124), - [aux_sym__val_number_token6] = ACTIONS(3124), - [anon_sym_0b] = ACTIONS(3126), - [anon_sym_0o] = ACTIONS(3128), - [anon_sym_0x] = ACTIONS(3128), - [sym_val_date] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym__str_single_quotes] = ACTIONS(3134), - [sym__str_back_ticks] = ACTIONS(3134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2596), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3136), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3138), + [anon_sym_STAR_STAR] = ACTIONS(3098), + [anon_sym_PLUS_PLUS] = ACTIONS(3098), + [anon_sym_STAR] = ACTIONS(3100), + [anon_sym_SLASH] = ACTIONS(3100), + [anon_sym_mod] = ACTIONS(3098), + [anon_sym_SLASH_SLASH] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3098), + [anon_sym_bit_DASHshl] = ACTIONS(3098), + [anon_sym_bit_DASHshr] = ACTIONS(3098), + [anon_sym_EQ_TILDE] = ACTIONS(3098), + [anon_sym_BANG_TILDE] = ACTIONS(3098), + [anon_sym_bit_DASHand] = ACTIONS(3098), + [anon_sym_bit_DASHxor] = ACTIONS(3098), + [anon_sym_bit_DASHor] = ACTIONS(3098), + [anon_sym_and] = ACTIONS(3098), + [anon_sym_xor] = ACTIONS(3098), + [anon_sym_or] = ACTIONS(3098), + [anon_sym_in] = ACTIONS(3098), + [anon_sym_not_DASHin] = ACTIONS(3098), + [anon_sym_has] = ACTIONS(3098), + [anon_sym_not_DASHhas] = ACTIONS(3098), + [anon_sym_starts_DASHwith] = ACTIONS(3098), + [anon_sym_ends_DASHwith] = ACTIONS(3098), + [anon_sym_EQ_EQ] = ACTIONS(3098), + [anon_sym_BANG_EQ] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3100), + [anon_sym_LT_EQ] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3100), + [anon_sym_GT_EQ] = ACTIONS(3098), + [aux_sym_cmd_identifier_token41] = ACTIONS(3102), + [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_GT2] = ACTIONS(2081), + [anon_sym_DASH2] = ACTIONS(2081), + [anon_sym_in2] = ACTIONS(2081), + [anon_sym_RBRACE] = ACTIONS(2081), + [anon_sym_STAR2] = ACTIONS(2081), + [anon_sym_and2] = ACTIONS(2081), + [anon_sym_xor2] = ACTIONS(2081), + [anon_sym_or2] = ACTIONS(2081), + [anon_sym_not_DASHin2] = ACTIONS(2081), + [anon_sym_has2] = ACTIONS(2081), + [anon_sym_not_DASHhas2] = ACTIONS(2081), + [anon_sym_starts_DASHwith2] = ACTIONS(2081), + [anon_sym_ends_DASHwith2] = ACTIONS(2081), + [anon_sym_EQ_EQ2] = ACTIONS(2081), + [anon_sym_BANG_EQ2] = ACTIONS(2081), + [anon_sym_LT2] = ACTIONS(2081), + [anon_sym_LT_EQ2] = ACTIONS(2081), + [anon_sym_GT_EQ2] = ACTIONS(2081), + [anon_sym_EQ_TILDE2] = ACTIONS(2081), + [anon_sym_BANG_TILDE2] = ACTIONS(2081), + [anon_sym_STAR_STAR2] = ACTIONS(2081), + [anon_sym_PLUS_PLUS2] = ACTIONS(2081), + [anon_sym_SLASH2] = ACTIONS(2081), + [anon_sym_mod2] = ACTIONS(2081), + [anon_sym_SLASH_SLASH2] = ACTIONS(2081), + [anon_sym_PLUS2] = ACTIONS(2081), + [anon_sym_bit_DASHshl2] = ACTIONS(2081), + [anon_sym_bit_DASHshr2] = ACTIONS(2081), + [anon_sym_bit_DASHand2] = ACTIONS(2081), + [anon_sym_bit_DASHxor2] = ACTIONS(2081), + [anon_sym_bit_DASHor2] = ACTIONS(2081), + [anon_sym_err_GT] = ACTIONS(2081), + [anon_sym_out_GT] = ACTIONS(2081), + [anon_sym_e_GT] = ACTIONS(2081), + [anon_sym_o_GT] = ACTIONS(2081), + [anon_sym_err_PLUSout_GT] = ACTIONS(2081), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2081), + [anon_sym_o_PLUSe_GT] = ACTIONS(2081), + [anon_sym_e_PLUSo_GT] = ACTIONS(2081), + [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), + [anon_sym_POUND] = ACTIONS(3), }, [842] = { - [sym_expr_parenthesized] = STATE(5958), - [sym__spread_parenthesized] = STATE(7448), - [sym_val_range] = STATE(7451), - [sym__val_range] = STATE(7776), - [sym__val_range_with_end] = STATE(7452), - [sym__value] = STATE(7451), - [sym_val_nothing] = STATE(7049), - [sym_val_bool] = STATE(6510), - [sym__spread_variable] = STATE(7454), - [sym_val_variable] = STATE(5708), - [sym_val_number] = STATE(7049), - [sym__val_number_decimal] = STATE(5233), - [sym__val_number] = STATE(7097), - [sym_val_duration] = STATE(7049), - [sym_val_filesize] = STATE(7049), - [sym_val_binary] = STATE(7049), - [sym_val_string] = STATE(7049), - [sym__raw_str] = STATE(5195), - [sym__str_double_quotes] = STATE(5195), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(7215), - [sym__spread_list] = STATE(7448), - [sym_list_body] = STATE(7496), - [sym_val_entry] = STATE(7036), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(7049), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_list] = STATE(6604), - [sym__unquoted_in_list_with_expr] = STATE(7451), - [sym__unquoted_anonymous_prefix] = STATE(7039), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7300), + [sym_val_range] = STATE(7368), + [sym__val_range] = STATE(7740), + [sym__val_range_with_end] = STATE(7289), + [sym__value] = STATE(7368), + [sym_val_nothing] = STATE(6851), + [sym_val_bool] = STATE(6691), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5759), + [sym_val_number] = STATE(6851), + [sym__val_number_decimal] = STATE(5314), + [sym__val_number] = STATE(6724), + [sym_val_duration] = STATE(6851), + [sym_val_filesize] = STATE(6851), + [sym_val_binary] = STATE(6851), + [sym_val_string] = STATE(6851), + [sym__raw_str] = STATE(5291), + [sym__str_double_quotes] = STATE(5291), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(7191), + [sym__spread_list] = STATE(7300), + [sym_list_body] = STATE(7615), + [sym_val_entry] = STATE(7116), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(6851), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_list] = STATE(6334), + [sym__unquoted_in_list_with_expr] = STATE(7368), + [sym__unquoted_anonymous_prefix] = STATE(6813), [sym_comment] = STATE(842), - [aux_sym_shebang_repeat1] = STATE(880), - [aux_sym_parameter_repeat2] = STATE(6611), - [aux_sym_list_body_repeat1] = STATE(940), - [sym__newline] = ACTIONS(2550), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_RBRACK] = ACTIONS(3160), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_COMMA] = ACTIONS(2558), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3114), - [aux_sym__val_number_decimal_token2] = ACTIONS(3116), - [aux_sym__val_number_decimal_token3] = ACTIONS(3118), - [aux_sym__val_number_decimal_token4] = ACTIONS(3120), - [aux_sym__val_number_token1] = ACTIONS(3122), - [aux_sym__val_number_token2] = ACTIONS(3122), - [aux_sym__val_number_token3] = ACTIONS(3122), - [aux_sym__val_number_token4] = ACTIONS(3124), - [aux_sym__val_number_token5] = ACTIONS(3124), - [aux_sym__val_number_token6] = ACTIONS(3124), - [anon_sym_0b] = ACTIONS(3126), - [anon_sym_0o] = ACTIONS(3128), - [anon_sym_0x] = ACTIONS(3128), - [sym_val_date] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym__str_single_quotes] = ACTIONS(3134), - [sym__str_back_ticks] = ACTIONS(3134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2596), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3136), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3138), + [aux_sym_shebang_repeat1] = STATE(884), + [aux_sym_parameter_repeat2] = STATE(6641), + [aux_sym_list_body_repeat1] = STATE(973), + [sym__newline] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(3104), + [anon_sym_RBRACK] = ACTIONS(3106), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(2632), + [anon_sym_DOLLAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_DOT_DOT] = ACTIONS(3114), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3116), + [anon_sym_DOT_DOT_LT] = ACTIONS(3116), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_true] = ACTIONS(3120), + [anon_sym_false] = ACTIONS(3120), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3122), + [aux_sym__val_number_decimal_token2] = ACTIONS(3124), + [aux_sym__val_number_decimal_token3] = ACTIONS(3126), + [aux_sym__val_number_decimal_token4] = ACTIONS(3128), + [aux_sym__val_number_token1] = ACTIONS(3130), + [aux_sym__val_number_token2] = ACTIONS(3130), + [aux_sym__val_number_token3] = ACTIONS(3130), + [aux_sym__val_number_token4] = ACTIONS(3132), + [aux_sym__val_number_token5] = ACTIONS(3132), + [aux_sym__val_number_token6] = ACTIONS(3132), + [anon_sym_0b] = ACTIONS(3134), + [anon_sym_0o] = ACTIONS(3136), + [anon_sym_0x] = ACTIONS(3136), + [sym_val_date] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym__str_single_quotes] = ACTIONS(3142), + [sym__str_back_ticks] = ACTIONS(3142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2672), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3144), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3146), }, [843] = { + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7300), + [sym_val_range] = STATE(7368), + [sym__val_range] = STATE(7740), + [sym__val_range_with_end] = STATE(7289), + [sym__value] = STATE(7368), + [sym_val_nothing] = STATE(6851), + [sym_val_bool] = STATE(6691), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5759), + [sym_val_number] = STATE(6851), + [sym__val_number_decimal] = STATE(5314), + [sym__val_number] = STATE(6724), + [sym_val_duration] = STATE(6851), + [sym_val_filesize] = STATE(6851), + [sym_val_binary] = STATE(6851), + [sym_val_string] = STATE(6851), + [sym__raw_str] = STATE(5291), + [sym__str_double_quotes] = STATE(5291), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(7164), + [sym__spread_list] = STATE(7300), + [sym_list_body] = STATE(7776), + [sym_val_entry] = STATE(7116), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(6851), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_list] = STATE(6334), + [sym__unquoted_in_list_with_expr] = STATE(7368), + [sym__unquoted_anonymous_prefix] = STATE(6813), [sym_comment] = STATE(843), - [anon_sym_STAR_STAR] = ACTIONS(3054), - [anon_sym_PLUS_PLUS] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3056), - [anon_sym_SLASH] = ACTIONS(3056), - [anon_sym_mod] = ACTIONS(3054), - [anon_sym_SLASH_SLASH] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(3056), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_bit_DASHshl] = ACTIONS(3054), - [anon_sym_bit_DASHshr] = ACTIONS(3054), - [anon_sym_EQ_TILDE] = ACTIONS(3054), - [anon_sym_BANG_TILDE] = ACTIONS(3054), - [anon_sym_bit_DASHand] = ACTIONS(3054), - [anon_sym_bit_DASHxor] = ACTIONS(3054), - [anon_sym_bit_DASHor] = ACTIONS(3054), - [anon_sym_and] = ACTIONS(3054), - [anon_sym_xor] = ACTIONS(3054), - [anon_sym_or] = ACTIONS(3054), - [anon_sym_in] = ACTIONS(3054), - [anon_sym_not_DASHin] = ACTIONS(3054), - [anon_sym_starts_DASHwith] = ACTIONS(3054), - [anon_sym_ends_DASHwith] = ACTIONS(3054), - [anon_sym_EQ_EQ] = ACTIONS(3054), - [anon_sym_BANG_EQ] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_LT_EQ] = ACTIONS(3054), - [anon_sym_GT] = ACTIONS(3056), - [anon_sym_GT_EQ] = ACTIONS(3054), - [aux_sym_cmd_identifier_token41] = ACTIONS(3058), - [sym__newline] = ACTIONS(1638), - [anon_sym_PIPE] = ACTIONS(1638), - [anon_sym_err_GT_PIPE] = ACTIONS(1638), - [anon_sym_out_GT_PIPE] = ACTIONS(1638), - [anon_sym_e_GT_PIPE] = ACTIONS(1638), - [anon_sym_o_GT_PIPE] = ACTIONS(1638), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1638), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1638), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1638), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1638), - [anon_sym_GT2] = ACTIONS(1638), - [anon_sym_DASH2] = ACTIONS(1638), - [anon_sym_in2] = ACTIONS(1638), - [anon_sym_STAR2] = ACTIONS(1638), - [anon_sym_and2] = ACTIONS(1638), - [anon_sym_xor2] = ACTIONS(1638), - [anon_sym_or2] = ACTIONS(1638), - [anon_sym_not_DASHin2] = ACTIONS(1638), - [anon_sym_starts_DASHwith2] = ACTIONS(1638), - [anon_sym_ends_DASHwith2] = ACTIONS(1638), - [anon_sym_EQ_EQ2] = ACTIONS(1638), - [anon_sym_BANG_EQ2] = ACTIONS(1638), - [anon_sym_LT2] = ACTIONS(1638), - [anon_sym_LT_EQ2] = ACTIONS(1638), - [anon_sym_GT_EQ2] = ACTIONS(1638), - [anon_sym_EQ_TILDE2] = ACTIONS(1638), - [anon_sym_BANG_TILDE2] = ACTIONS(1638), - [anon_sym_STAR_STAR2] = ACTIONS(1638), - [anon_sym_PLUS_PLUS2] = ACTIONS(1638), - [anon_sym_SLASH2] = ACTIONS(1638), - [anon_sym_mod2] = ACTIONS(1638), - [anon_sym_SLASH_SLASH2] = ACTIONS(1638), - [anon_sym_PLUS2] = ACTIONS(1638), - [anon_sym_bit_DASHshl2] = ACTIONS(1638), - [anon_sym_bit_DASHshr2] = ACTIONS(1638), - [anon_sym_bit_DASHand2] = ACTIONS(1638), - [anon_sym_bit_DASHxor2] = ACTIONS(1638), - [anon_sym_bit_DASHor2] = ACTIONS(1638), - [anon_sym_DOT_DOT2] = ACTIONS(3044), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3046), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3046), - [sym_filesize_unit] = ACTIONS(3162), - [sym_duration_unit] = ACTIONS(3164), - [anon_sym_err_GT] = ACTIONS(1638), - [anon_sym_out_GT] = ACTIONS(1638), - [anon_sym_e_GT] = ACTIONS(1638), - [anon_sym_o_GT] = ACTIONS(1638), - [anon_sym_err_PLUSout_GT] = ACTIONS(1638), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1638), - [anon_sym_o_PLUSe_GT] = ACTIONS(1638), - [anon_sym_e_PLUSo_GT] = ACTIONS(1638), - [anon_sym_err_GT_GT] = ACTIONS(1638), - [anon_sym_out_GT_GT] = ACTIONS(1638), - [anon_sym_e_GT_GT] = ACTIONS(1638), - [anon_sym_o_GT_GT] = ACTIONS(1638), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1638), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1638), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1638), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1638), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(881), + [aux_sym_parameter_repeat2] = STATE(6641), + [aux_sym_list_body_repeat1] = STATE(973), + [sym__newline] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(3104), + [anon_sym_RBRACK] = ACTIONS(3148), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(2632), + [anon_sym_DOLLAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_DOT_DOT] = ACTIONS(3114), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3116), + [anon_sym_DOT_DOT_LT] = ACTIONS(3116), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_true] = ACTIONS(3120), + [anon_sym_false] = ACTIONS(3120), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3122), + [aux_sym__val_number_decimal_token2] = ACTIONS(3124), + [aux_sym__val_number_decimal_token3] = ACTIONS(3126), + [aux_sym__val_number_decimal_token4] = ACTIONS(3128), + [aux_sym__val_number_token1] = ACTIONS(3130), + [aux_sym__val_number_token2] = ACTIONS(3130), + [aux_sym__val_number_token3] = ACTIONS(3130), + [aux_sym__val_number_token4] = ACTIONS(3132), + [aux_sym__val_number_token5] = ACTIONS(3132), + [aux_sym__val_number_token6] = ACTIONS(3132), + [anon_sym_0b] = ACTIONS(3134), + [anon_sym_0o] = ACTIONS(3136), + [anon_sym_0x] = ACTIONS(3136), + [sym_val_date] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym__str_single_quotes] = ACTIONS(3142), + [sym__str_back_ticks] = ACTIONS(3142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2672), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3144), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3146), }, [844] = { + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7300), + [sym_val_range] = STATE(7368), + [sym__val_range] = STATE(7740), + [sym__val_range_with_end] = STATE(7289), + [sym__value] = STATE(7368), + [sym_val_nothing] = STATE(6851), + [sym_val_bool] = STATE(6691), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5759), + [sym_val_number] = STATE(6851), + [sym__val_number_decimal] = STATE(5314), + [sym__val_number] = STATE(6724), + [sym_val_duration] = STATE(6851), + [sym_val_filesize] = STATE(6851), + [sym_val_binary] = STATE(6851), + [sym_val_string] = STATE(6851), + [sym__raw_str] = STATE(5291), + [sym__str_double_quotes] = STATE(5291), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(6851), + [sym__spread_list] = STATE(7300), + [sym_list_body] = STATE(7527), + [sym_val_entry] = STATE(7116), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(6851), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_list] = STATE(6334), + [sym__unquoted_in_list_with_expr] = STATE(7368), + [sym__unquoted_anonymous_prefix] = STATE(6813), [sym_comment] = STATE(844), - [anon_sym_STAR_STAR] = ACTIONS(1544), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_STAR] = ACTIONS(1542), - [anon_sym_SLASH] = ACTIONS(1542), - [anon_sym_mod] = ACTIONS(1544), - [anon_sym_SLASH_SLASH] = ACTIONS(1544), - [anon_sym_PLUS] = ACTIONS(1542), - [anon_sym_DASH] = ACTIONS(1544), - [anon_sym_bit_DASHshl] = ACTIONS(1544), - [anon_sym_bit_DASHshr] = ACTIONS(1544), - [anon_sym_EQ_TILDE] = ACTIONS(1544), - [anon_sym_BANG_TILDE] = ACTIONS(1544), - [anon_sym_bit_DASHand] = ACTIONS(1544), - [anon_sym_bit_DASHxor] = ACTIONS(1544), - [anon_sym_bit_DASHor] = ACTIONS(1544), - [anon_sym_and] = ACTIONS(1544), - [anon_sym_xor] = ACTIONS(1544), - [anon_sym_or] = ACTIONS(1544), - [anon_sym_in] = ACTIONS(1544), - [anon_sym_not_DASHin] = ACTIONS(1544), - [anon_sym_starts_DASHwith] = ACTIONS(1544), - [anon_sym_ends_DASHwith] = ACTIONS(1544), - [anon_sym_EQ_EQ] = ACTIONS(1544), - [anon_sym_BANG_EQ] = ACTIONS(1544), - [anon_sym_LT] = ACTIONS(1542), - [anon_sym_LT_EQ] = ACTIONS(1544), - [anon_sym_GT] = ACTIONS(1542), - [anon_sym_GT_EQ] = ACTIONS(1544), - [aux_sym_cmd_identifier_token41] = ACTIONS(1542), - [sym__newline] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_err_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_GT_PIPE] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), - [anon_sym_GT2] = ACTIONS(1542), - [anon_sym_DASH2] = ACTIONS(1542), - [anon_sym_in2] = ACTIONS(1542), - [anon_sym_STAR2] = ACTIONS(1542), - [anon_sym_and2] = ACTIONS(1542), - [anon_sym_xor2] = ACTIONS(1542), - [anon_sym_or2] = ACTIONS(1542), - [anon_sym_not_DASHin2] = ACTIONS(1542), - [anon_sym_starts_DASHwith2] = ACTIONS(1542), - [anon_sym_ends_DASHwith2] = ACTIONS(1542), - [anon_sym_EQ_EQ2] = ACTIONS(1542), - [anon_sym_BANG_EQ2] = ACTIONS(1542), - [anon_sym_LT2] = ACTIONS(1542), - [anon_sym_LT_EQ2] = ACTIONS(1542), - [anon_sym_GT_EQ2] = ACTIONS(1542), - [anon_sym_EQ_TILDE2] = ACTIONS(1542), - [anon_sym_BANG_TILDE2] = ACTIONS(1542), - [anon_sym_STAR_STAR2] = ACTIONS(1542), - [anon_sym_PLUS_PLUS2] = ACTIONS(1542), - [anon_sym_SLASH2] = ACTIONS(1542), - [anon_sym_mod2] = ACTIONS(1542), - [anon_sym_SLASH_SLASH2] = ACTIONS(1542), - [anon_sym_PLUS2] = ACTIONS(1542), - [anon_sym_bit_DASHshl2] = ACTIONS(1542), - [anon_sym_bit_DASHshr2] = ACTIONS(1542), - [anon_sym_bit_DASHand2] = ACTIONS(1542), - [anon_sym_bit_DASHxor2] = ACTIONS(1542), - [anon_sym_bit_DASHor2] = ACTIONS(1542), - [anon_sym_DOT_DOT2] = ACTIONS(1542), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1544), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1544), - [sym_filesize_unit] = ACTIONS(1542), - [sym_duration_unit] = ACTIONS(1544), - [anon_sym_err_GT] = ACTIONS(1542), - [anon_sym_out_GT] = ACTIONS(1542), - [anon_sym_e_GT] = ACTIONS(1542), - [anon_sym_o_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT] = ACTIONS(1542), - [anon_sym_err_GT_GT] = ACTIONS(1542), - [anon_sym_out_GT_GT] = ACTIONS(1542), - [anon_sym_e_GT_GT] = ACTIONS(1542), - [anon_sym_o_GT_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(873), + [aux_sym_parameter_repeat2] = STATE(6641), + [aux_sym_list_body_repeat1] = STATE(973), + [sym__newline] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(3150), + [anon_sym_RBRACK] = ACTIONS(3152), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(2632), + [anon_sym_DOLLAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_DOT_DOT] = ACTIONS(3114), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3116), + [anon_sym_DOT_DOT_LT] = ACTIONS(3116), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_true] = ACTIONS(3120), + [anon_sym_false] = ACTIONS(3120), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3122), + [aux_sym__val_number_decimal_token2] = ACTIONS(3124), + [aux_sym__val_number_decimal_token3] = ACTIONS(3126), + [aux_sym__val_number_decimal_token4] = ACTIONS(3128), + [aux_sym__val_number_token1] = ACTIONS(3130), + [aux_sym__val_number_token2] = ACTIONS(3130), + [aux_sym__val_number_token3] = ACTIONS(3130), + [aux_sym__val_number_token4] = ACTIONS(3132), + [aux_sym__val_number_token5] = ACTIONS(3132), + [aux_sym__val_number_token6] = ACTIONS(3132), + [anon_sym_0b] = ACTIONS(3134), + [anon_sym_0o] = ACTIONS(3136), + [anon_sym_0x] = ACTIONS(3136), + [sym_val_date] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym__str_single_quotes] = ACTIONS(3142), + [sym__str_back_ticks] = ACTIONS(3142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2672), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3144), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3146), }, [845] = { - [sym_expr_parenthesized] = STATE(5958), - [sym__spread_parenthesized] = STATE(7448), - [sym_val_range] = STATE(7451), - [sym__val_range] = STATE(7776), - [sym__val_range_with_end] = STATE(7452), - [sym__value] = STATE(7451), - [sym_val_nothing] = STATE(7049), - [sym_val_bool] = STATE(6510), - [sym__spread_variable] = STATE(7454), - [sym_val_variable] = STATE(5708), - [sym_val_number] = STATE(7049), - [sym__val_number_decimal] = STATE(5233), - [sym__val_number] = STATE(7097), - [sym_val_duration] = STATE(7049), - [sym_val_filesize] = STATE(7049), - [sym_val_binary] = STATE(7049), - [sym_val_string] = STATE(7049), - [sym__raw_str] = STATE(5195), - [sym__str_double_quotes] = STATE(5195), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(7241), - [sym__spread_list] = STATE(7448), - [sym_list_body] = STATE(7716), - [sym_val_entry] = STATE(7036), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(7049), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_list] = STATE(6604), - [sym__unquoted_in_list_with_expr] = STATE(7451), - [sym__unquoted_anonymous_prefix] = STATE(7039), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7300), + [sym_val_range] = STATE(7368), + [sym__val_range] = STATE(7740), + [sym__val_range_with_end] = STATE(7289), + [sym__value] = STATE(7368), + [sym_val_nothing] = STATE(6851), + [sym_val_bool] = STATE(6691), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5759), + [sym_val_number] = STATE(6851), + [sym__val_number_decimal] = STATE(5314), + [sym__val_number] = STATE(6724), + [sym_val_duration] = STATE(6851), + [sym_val_filesize] = STATE(6851), + [sym_val_binary] = STATE(6851), + [sym_val_string] = STATE(6851), + [sym__raw_str] = STATE(5291), + [sym__str_double_quotes] = STATE(5291), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(7106), + [sym__spread_list] = STATE(7300), + [sym_list_body] = STATE(7815), + [sym_val_entry] = STATE(7116), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(6851), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_list] = STATE(6334), + [sym__unquoted_in_list_with_expr] = STATE(7368), + [sym__unquoted_anonymous_prefix] = STATE(6813), [sym_comment] = STATE(845), - [aux_sym_shebang_repeat1] = STATE(883), - [aux_sym_parameter_repeat2] = STATE(6611), - [aux_sym_list_body_repeat1] = STATE(940), - [sym__newline] = ACTIONS(2550), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_RBRACK] = ACTIONS(3166), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_COMMA] = ACTIONS(2558), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3114), - [aux_sym__val_number_decimal_token2] = ACTIONS(3116), - [aux_sym__val_number_decimal_token3] = ACTIONS(3118), - [aux_sym__val_number_decimal_token4] = ACTIONS(3120), - [aux_sym__val_number_token1] = ACTIONS(3122), - [aux_sym__val_number_token2] = ACTIONS(3122), - [aux_sym__val_number_token3] = ACTIONS(3122), - [aux_sym__val_number_token4] = ACTIONS(3124), - [aux_sym__val_number_token5] = ACTIONS(3124), - [aux_sym__val_number_token6] = ACTIONS(3124), - [anon_sym_0b] = ACTIONS(3126), - [anon_sym_0o] = ACTIONS(3128), - [anon_sym_0x] = ACTIONS(3128), - [sym_val_date] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym__str_single_quotes] = ACTIONS(3134), - [sym__str_back_ticks] = ACTIONS(3134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2596), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3136), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3138), + [aux_sym_shebang_repeat1] = STATE(878), + [aux_sym_parameter_repeat2] = STATE(6641), + [aux_sym_list_body_repeat1] = STATE(973), + [sym__newline] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(3104), + [anon_sym_RBRACK] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(2632), + [anon_sym_DOLLAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_DOT_DOT] = ACTIONS(3114), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3116), + [anon_sym_DOT_DOT_LT] = ACTIONS(3116), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_true] = ACTIONS(3120), + [anon_sym_false] = ACTIONS(3120), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3122), + [aux_sym__val_number_decimal_token2] = ACTIONS(3124), + [aux_sym__val_number_decimal_token3] = ACTIONS(3126), + [aux_sym__val_number_decimal_token4] = ACTIONS(3128), + [aux_sym__val_number_token1] = ACTIONS(3130), + [aux_sym__val_number_token2] = ACTIONS(3130), + [aux_sym__val_number_token3] = ACTIONS(3130), + [aux_sym__val_number_token4] = ACTIONS(3132), + [aux_sym__val_number_token5] = ACTIONS(3132), + [aux_sym__val_number_token6] = ACTIONS(3132), + [anon_sym_0b] = ACTIONS(3134), + [anon_sym_0o] = ACTIONS(3136), + [anon_sym_0x] = ACTIONS(3136), + [sym_val_date] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym__str_single_quotes] = ACTIONS(3142), + [sym__str_back_ticks] = ACTIONS(3142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2672), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3144), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3146), }, [846] = { - [sym_expr_parenthesized] = STATE(5958), - [sym__spread_parenthesized] = STATE(7448), - [sym_val_range] = STATE(7451), - [sym__val_range] = STATE(7776), - [sym__val_range_with_end] = STATE(7452), - [sym__value] = STATE(7451), - [sym_val_nothing] = STATE(7049), - [sym_val_bool] = STATE(6510), - [sym__spread_variable] = STATE(7454), - [sym_val_variable] = STATE(5708), - [sym_val_number] = STATE(7049), - [sym__val_number_decimal] = STATE(5233), - [sym__val_number] = STATE(7097), - [sym_val_duration] = STATE(7049), - [sym_val_filesize] = STATE(7049), - [sym_val_binary] = STATE(7049), - [sym_val_string] = STATE(7049), - [sym__raw_str] = STATE(5195), - [sym__str_double_quotes] = STATE(5195), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(7178), - [sym__spread_list] = STATE(7448), - [sym_list_body] = STATE(7481), - [sym_val_entry] = STATE(7036), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(7049), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_list] = STATE(6604), - [sym__unquoted_in_list_with_expr] = STATE(7451), - [sym__unquoted_anonymous_prefix] = STATE(7039), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7300), + [sym_val_range] = STATE(7368), + [sym__val_range] = STATE(7740), + [sym__val_range_with_end] = STATE(7289), + [sym__value] = STATE(7368), + [sym_val_nothing] = STATE(6851), + [sym_val_bool] = STATE(6691), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5759), + [sym_val_number] = STATE(6851), + [sym__val_number_decimal] = STATE(5314), + [sym__val_number] = STATE(6724), + [sym_val_duration] = STATE(6851), + [sym_val_filesize] = STATE(6851), + [sym_val_binary] = STATE(6851), + [sym_val_string] = STATE(6851), + [sym__raw_str] = STATE(5291), + [sym__str_double_quotes] = STATE(5291), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(7230), + [sym__spread_list] = STATE(7300), + [sym_list_body] = STATE(7527), + [sym_val_entry] = STATE(7116), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(6851), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_list] = STATE(6334), + [sym__unquoted_in_list_with_expr] = STATE(7368), + [sym__unquoted_anonymous_prefix] = STATE(6813), [sym_comment] = STATE(846), - [aux_sym_shebang_repeat1] = STATE(876), - [aux_sym_parameter_repeat2] = STATE(6611), - [aux_sym_list_body_repeat1] = STATE(940), - [sym__newline] = ACTIONS(2550), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_RBRACK] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_COMMA] = ACTIONS(2558), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3114), - [aux_sym__val_number_decimal_token2] = ACTIONS(3116), - [aux_sym__val_number_decimal_token3] = ACTIONS(3118), - [aux_sym__val_number_decimal_token4] = ACTIONS(3120), - [aux_sym__val_number_token1] = ACTIONS(3122), - [aux_sym__val_number_token2] = ACTIONS(3122), - [aux_sym__val_number_token3] = ACTIONS(3122), - [aux_sym__val_number_token4] = ACTIONS(3124), - [aux_sym__val_number_token5] = ACTIONS(3124), - [aux_sym__val_number_token6] = ACTIONS(3124), - [anon_sym_0b] = ACTIONS(3126), - [anon_sym_0o] = ACTIONS(3128), - [anon_sym_0x] = ACTIONS(3128), - [sym_val_date] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym__str_single_quotes] = ACTIONS(3134), - [sym__str_back_ticks] = ACTIONS(3134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2596), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3136), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3138), + [aux_sym_shebang_repeat1] = STATE(888), + [aux_sym_parameter_repeat2] = STATE(6641), + [aux_sym_list_body_repeat1] = STATE(973), + [sym__newline] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(3104), + [anon_sym_RBRACK] = ACTIONS(3152), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(2632), + [anon_sym_DOLLAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_DOT_DOT] = ACTIONS(3114), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3116), + [anon_sym_DOT_DOT_LT] = ACTIONS(3116), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_true] = ACTIONS(3120), + [anon_sym_false] = ACTIONS(3120), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3122), + [aux_sym__val_number_decimal_token2] = ACTIONS(3124), + [aux_sym__val_number_decimal_token3] = ACTIONS(3126), + [aux_sym__val_number_decimal_token4] = ACTIONS(3128), + [aux_sym__val_number_token1] = ACTIONS(3130), + [aux_sym__val_number_token2] = ACTIONS(3130), + [aux_sym__val_number_token3] = ACTIONS(3130), + [aux_sym__val_number_token4] = ACTIONS(3132), + [aux_sym__val_number_token5] = ACTIONS(3132), + [aux_sym__val_number_token6] = ACTIONS(3132), + [anon_sym_0b] = ACTIONS(3134), + [anon_sym_0o] = ACTIONS(3136), + [anon_sym_0x] = ACTIONS(3136), + [sym_val_date] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym__str_single_quotes] = ACTIONS(3142), + [sym__str_back_ticks] = ACTIONS(3142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2672), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3144), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3146), }, [847] = { - [sym_expr_parenthesized] = STATE(5958), - [sym__spread_parenthesized] = STATE(7448), - [sym_val_range] = STATE(7451), - [sym__val_range] = STATE(7776), - [sym__val_range_with_end] = STATE(7452), - [sym__value] = STATE(7451), - [sym_val_nothing] = STATE(7049), - [sym_val_bool] = STATE(6510), - [sym__spread_variable] = STATE(7454), - [sym_val_variable] = STATE(5708), - [sym_val_number] = STATE(7049), - [sym__val_number_decimal] = STATE(5233), - [sym__val_number] = STATE(7097), - [sym_val_duration] = STATE(7049), - [sym_val_filesize] = STATE(7049), - [sym_val_binary] = STATE(7049), - [sym_val_string] = STATE(7049), - [sym__raw_str] = STATE(5195), - [sym__str_double_quotes] = STATE(5195), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(7117), - [sym__spread_list] = STATE(7448), - [sym_list_body] = STATE(7853), - [sym_val_entry] = STATE(7036), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(7049), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_list] = STATE(6604), - [sym__unquoted_in_list_with_expr] = STATE(7451), - [sym__unquoted_anonymous_prefix] = STATE(7039), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7300), + [sym_val_range] = STATE(7368), + [sym__val_range] = STATE(7740), + [sym__val_range_with_end] = STATE(7289), + [sym__value] = STATE(7368), + [sym_val_nothing] = STATE(6851), + [sym_val_bool] = STATE(6691), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5759), + [sym_val_number] = STATE(6851), + [sym__val_number_decimal] = STATE(5314), + [sym__val_number] = STATE(6724), + [sym_val_duration] = STATE(6851), + [sym_val_filesize] = STATE(6851), + [sym_val_binary] = STATE(6851), + [sym_val_string] = STATE(6851), + [sym__raw_str] = STATE(5291), + [sym__str_double_quotes] = STATE(5291), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(7172), + [sym__spread_list] = STATE(7300), + [sym_list_body] = STATE(7618), + [sym_val_entry] = STATE(7116), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(6851), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_list] = STATE(6334), + [sym__unquoted_in_list_with_expr] = STATE(7368), + [sym__unquoted_anonymous_prefix] = STATE(6813), [sym_comment] = STATE(847), - [aux_sym_shebang_repeat1] = STATE(872), - [aux_sym_parameter_repeat2] = STATE(6611), - [aux_sym_list_body_repeat1] = STATE(940), - [sym__newline] = ACTIONS(2550), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_RBRACK] = ACTIONS(3170), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_COMMA] = ACTIONS(2558), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3114), - [aux_sym__val_number_decimal_token2] = ACTIONS(3116), - [aux_sym__val_number_decimal_token3] = ACTIONS(3118), - [aux_sym__val_number_decimal_token4] = ACTIONS(3120), - [aux_sym__val_number_token1] = ACTIONS(3122), - [aux_sym__val_number_token2] = ACTIONS(3122), - [aux_sym__val_number_token3] = ACTIONS(3122), - [aux_sym__val_number_token4] = ACTIONS(3124), - [aux_sym__val_number_token5] = ACTIONS(3124), - [aux_sym__val_number_token6] = ACTIONS(3124), - [anon_sym_0b] = ACTIONS(3126), - [anon_sym_0o] = ACTIONS(3128), - [anon_sym_0x] = ACTIONS(3128), - [sym_val_date] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym__str_single_quotes] = ACTIONS(3134), - [sym__str_back_ticks] = ACTIONS(3134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2596), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3136), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3138), + [aux_sym_shebang_repeat1] = STATE(882), + [aux_sym_parameter_repeat2] = STATE(6641), + [aux_sym_list_body_repeat1] = STATE(973), + [sym__newline] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(3104), + [anon_sym_RBRACK] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(2632), + [anon_sym_DOLLAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_DOT_DOT] = ACTIONS(3114), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3116), + [anon_sym_DOT_DOT_LT] = ACTIONS(3116), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_true] = ACTIONS(3120), + [anon_sym_false] = ACTIONS(3120), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3122), + [aux_sym__val_number_decimal_token2] = ACTIONS(3124), + [aux_sym__val_number_decimal_token3] = ACTIONS(3126), + [aux_sym__val_number_decimal_token4] = ACTIONS(3128), + [aux_sym__val_number_token1] = ACTIONS(3130), + [aux_sym__val_number_token2] = ACTIONS(3130), + [aux_sym__val_number_token3] = ACTIONS(3130), + [aux_sym__val_number_token4] = ACTIONS(3132), + [aux_sym__val_number_token5] = ACTIONS(3132), + [aux_sym__val_number_token6] = ACTIONS(3132), + [anon_sym_0b] = ACTIONS(3134), + [anon_sym_0o] = ACTIONS(3136), + [anon_sym_0x] = ACTIONS(3136), + [sym_val_date] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym__str_single_quotes] = ACTIONS(3142), + [sym__str_back_ticks] = ACTIONS(3142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2672), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3144), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3146), }, [848] = { - [sym_expr_parenthesized] = STATE(5958), - [sym__spread_parenthesized] = STATE(7448), - [sym_val_range] = STATE(7451), - [sym__val_range] = STATE(7776), - [sym__val_range_with_end] = STATE(7452), - [sym__value] = STATE(7451), - [sym_val_nothing] = STATE(7049), - [sym_val_bool] = STATE(6510), - [sym__spread_variable] = STATE(7454), - [sym_val_variable] = STATE(5708), - [sym_val_number] = STATE(7049), - [sym__val_number_decimal] = STATE(5233), - [sym__val_number] = STATE(7097), - [sym_val_duration] = STATE(7049), - [sym_val_filesize] = STATE(7049), - [sym_val_binary] = STATE(7049), - [sym_val_string] = STATE(7049), - [sym__raw_str] = STATE(5195), - [sym__str_double_quotes] = STATE(5195), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(7255), - [sym__spread_list] = STATE(7448), - [sym_list_body] = STATE(7569), - [sym_val_entry] = STATE(7036), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(7049), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_list] = STATE(6604), - [sym__unquoted_in_list_with_expr] = STATE(7451), - [sym__unquoted_anonymous_prefix] = STATE(7039), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7300), + [sym_val_range] = STATE(7368), + [sym__val_range] = STATE(7740), + [sym__val_range_with_end] = STATE(7289), + [sym__value] = STATE(7368), + [sym_val_nothing] = STATE(6851), + [sym_val_bool] = STATE(6691), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5759), + [sym_val_number] = STATE(6851), + [sym__val_number_decimal] = STATE(5314), + [sym__val_number] = STATE(6724), + [sym_val_duration] = STATE(6851), + [sym_val_filesize] = STATE(6851), + [sym_val_binary] = STATE(6851), + [sym_val_string] = STATE(6851), + [sym__raw_str] = STATE(5291), + [sym__str_double_quotes] = STATE(5291), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(7136), + [sym__spread_list] = STATE(7300), + [sym_list_body] = STATE(7470), + [sym_val_entry] = STATE(7116), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(6851), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_list] = STATE(6334), + [sym__unquoted_in_list_with_expr] = STATE(7368), + [sym__unquoted_anonymous_prefix] = STATE(6813), [sym_comment] = STATE(848), - [aux_sym_shebang_repeat1] = STATE(885), - [aux_sym_parameter_repeat2] = STATE(6611), - [aux_sym_list_body_repeat1] = STATE(940), - [sym__newline] = ACTIONS(2550), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_RBRACK] = ACTIONS(3172), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_COMMA] = ACTIONS(2558), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3114), - [aux_sym__val_number_decimal_token2] = ACTIONS(3116), - [aux_sym__val_number_decimal_token3] = ACTIONS(3118), - [aux_sym__val_number_decimal_token4] = ACTIONS(3120), - [aux_sym__val_number_token1] = ACTIONS(3122), - [aux_sym__val_number_token2] = ACTIONS(3122), - [aux_sym__val_number_token3] = ACTIONS(3122), - [aux_sym__val_number_token4] = ACTIONS(3124), - [aux_sym__val_number_token5] = ACTIONS(3124), - [aux_sym__val_number_token6] = ACTIONS(3124), - [anon_sym_0b] = ACTIONS(3126), - [anon_sym_0o] = ACTIONS(3128), - [anon_sym_0x] = ACTIONS(3128), - [sym_val_date] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym__str_single_quotes] = ACTIONS(3134), - [sym__str_back_ticks] = ACTIONS(3134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2596), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3136), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3138), + [aux_sym_shebang_repeat1] = STATE(879), + [aux_sym_parameter_repeat2] = STATE(6641), + [aux_sym_list_body_repeat1] = STATE(973), + [sym__newline] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(3104), + [anon_sym_RBRACK] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(2632), + [anon_sym_DOLLAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_DOT_DOT] = ACTIONS(3114), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3116), + [anon_sym_DOT_DOT_LT] = ACTIONS(3116), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_true] = ACTIONS(3120), + [anon_sym_false] = ACTIONS(3120), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3122), + [aux_sym__val_number_decimal_token2] = ACTIONS(3124), + [aux_sym__val_number_decimal_token3] = ACTIONS(3126), + [aux_sym__val_number_decimal_token4] = ACTIONS(3128), + [aux_sym__val_number_token1] = ACTIONS(3130), + [aux_sym__val_number_token2] = ACTIONS(3130), + [aux_sym__val_number_token3] = ACTIONS(3130), + [aux_sym__val_number_token4] = ACTIONS(3132), + [aux_sym__val_number_token5] = ACTIONS(3132), + [aux_sym__val_number_token6] = ACTIONS(3132), + [anon_sym_0b] = ACTIONS(3134), + [anon_sym_0o] = ACTIONS(3136), + [anon_sym_0x] = ACTIONS(3136), + [sym_val_date] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym__str_single_quotes] = ACTIONS(3142), + [sym__str_back_ticks] = ACTIONS(3142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2672), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3144), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3146), }, [849] = { - [sym_expr_parenthesized] = STATE(5958), - [sym__spread_parenthesized] = STATE(7448), - [sym_val_range] = STATE(7451), - [sym__val_range] = STATE(7776), - [sym__val_range_with_end] = STATE(7452), - [sym__value] = STATE(7451), - [sym_val_nothing] = STATE(7049), - [sym_val_bool] = STATE(6510), - [sym__spread_variable] = STATE(7454), - [sym_val_variable] = STATE(5708), - [sym_val_number] = STATE(7049), - [sym__val_number_decimal] = STATE(5233), - [sym__val_number] = STATE(7097), - [sym_val_duration] = STATE(7049), - [sym_val_filesize] = STATE(7049), - [sym_val_binary] = STATE(7049), - [sym_val_string] = STATE(7049), - [sym__raw_str] = STATE(5195), - [sym__str_double_quotes] = STATE(5195), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(7049), - [sym__spread_list] = STATE(7448), - [sym_list_body] = STATE(7716), - [sym_val_entry] = STATE(7036), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(7049), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_list] = STATE(6604), - [sym__unquoted_in_list_with_expr] = STATE(7451), - [sym__unquoted_anonymous_prefix] = STATE(7039), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7300), + [sym_val_range] = STATE(7368), + [sym__val_range] = STATE(7740), + [sym__val_range_with_end] = STATE(7289), + [sym__value] = STATE(7368), + [sym_val_nothing] = STATE(6851), + [sym_val_bool] = STATE(6691), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5759), + [sym_val_number] = STATE(6851), + [sym__val_number_decimal] = STATE(5314), + [sym__val_number] = STATE(6724), + [sym_val_duration] = STATE(6851), + [sym_val_filesize] = STATE(6851), + [sym_val_binary] = STATE(6851), + [sym_val_string] = STATE(6851), + [sym__raw_str] = STATE(5291), + [sym__str_double_quotes] = STATE(5291), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(6851), + [sym__spread_list] = STATE(7300), + [sym_list_body] = STATE(7556), + [sym_val_entry] = STATE(7116), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(6851), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_list] = STATE(6334), + [sym__unquoted_in_list_with_expr] = STATE(7368), + [sym__unquoted_anonymous_prefix] = STATE(6813), [sym_comment] = STATE(849), - [aux_sym_shebang_repeat1] = STATE(870), - [aux_sym_parameter_repeat2] = STATE(6611), - [aux_sym_list_body_repeat1] = STATE(940), - [sym__newline] = ACTIONS(2550), - [anon_sym_LBRACK] = ACTIONS(3142), - [anon_sym_RBRACK] = ACTIONS(3166), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_COMMA] = ACTIONS(2558), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3114), - [aux_sym__val_number_decimal_token2] = ACTIONS(3116), - [aux_sym__val_number_decimal_token3] = ACTIONS(3118), - [aux_sym__val_number_decimal_token4] = ACTIONS(3120), - [aux_sym__val_number_token1] = ACTIONS(3122), - [aux_sym__val_number_token2] = ACTIONS(3122), - [aux_sym__val_number_token3] = ACTIONS(3122), - [aux_sym__val_number_token4] = ACTIONS(3124), - [aux_sym__val_number_token5] = ACTIONS(3124), - [aux_sym__val_number_token6] = ACTIONS(3124), - [anon_sym_0b] = ACTIONS(3126), - [anon_sym_0o] = ACTIONS(3128), - [anon_sym_0x] = ACTIONS(3128), - [sym_val_date] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym__str_single_quotes] = ACTIONS(3134), - [sym__str_back_ticks] = ACTIONS(3134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2596), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3136), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3138), + [aux_sym_shebang_repeat1] = STATE(873), + [aux_sym_parameter_repeat2] = STATE(6641), + [aux_sym_list_body_repeat1] = STATE(973), + [sym__newline] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(3150), + [anon_sym_RBRACK] = ACTIONS(3160), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(2632), + [anon_sym_DOLLAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_DOT_DOT] = ACTIONS(3114), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3116), + [anon_sym_DOT_DOT_LT] = ACTIONS(3116), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_true] = ACTIONS(3120), + [anon_sym_false] = ACTIONS(3120), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3122), + [aux_sym__val_number_decimal_token2] = ACTIONS(3124), + [aux_sym__val_number_decimal_token3] = ACTIONS(3126), + [aux_sym__val_number_decimal_token4] = ACTIONS(3128), + [aux_sym__val_number_token1] = ACTIONS(3130), + [aux_sym__val_number_token2] = ACTIONS(3130), + [aux_sym__val_number_token3] = ACTIONS(3130), + [aux_sym__val_number_token4] = ACTIONS(3132), + [aux_sym__val_number_token5] = ACTIONS(3132), + [aux_sym__val_number_token6] = ACTIONS(3132), + [anon_sym_0b] = ACTIONS(3134), + [anon_sym_0o] = ACTIONS(3136), + [anon_sym_0x] = ACTIONS(3136), + [sym_val_date] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym__str_single_quotes] = ACTIONS(3142), + [sym__str_back_ticks] = ACTIONS(3142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2672), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3144), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3146), }, [850] = { - [sym_expr_parenthesized] = STATE(5958), - [sym__spread_parenthesized] = STATE(7448), - [sym_val_range] = STATE(7451), - [sym__val_range] = STATE(7776), - [sym__val_range_with_end] = STATE(7452), - [sym__value] = STATE(7451), - [sym_val_nothing] = STATE(7049), - [sym_val_bool] = STATE(6510), - [sym__spread_variable] = STATE(7454), - [sym_val_variable] = STATE(5708), - [sym_val_number] = STATE(7049), - [sym__val_number_decimal] = STATE(5233), - [sym__val_number] = STATE(7097), - [sym_val_duration] = STATE(7049), - [sym_val_filesize] = STATE(7049), - [sym_val_binary] = STATE(7049), - [sym_val_string] = STATE(7049), - [sym__raw_str] = STATE(5195), - [sym__str_double_quotes] = STATE(5195), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(7161), - [sym__spread_list] = STATE(7448), - [sym_list_body] = STATE(7839), - [sym_val_entry] = STATE(7036), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(7049), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_list] = STATE(6604), - [sym__unquoted_in_list_with_expr] = STATE(7451), - [sym__unquoted_anonymous_prefix] = STATE(7039), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7300), + [sym_val_range] = STATE(7368), + [sym__val_range] = STATE(7740), + [sym__val_range_with_end] = STATE(7289), + [sym__value] = STATE(7368), + [sym_val_nothing] = STATE(6851), + [sym_val_bool] = STATE(6691), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5759), + [sym_val_number] = STATE(6851), + [sym__val_number_decimal] = STATE(5314), + [sym__val_number] = STATE(6724), + [sym_val_duration] = STATE(6851), + [sym_val_filesize] = STATE(6851), + [sym_val_binary] = STATE(6851), + [sym_val_string] = STATE(6851), + [sym__raw_str] = STATE(5291), + [sym__str_double_quotes] = STATE(5291), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(7202), + [sym__spread_list] = STATE(7300), + [sym_list_body] = STATE(7467), + [sym_val_entry] = STATE(7116), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(6851), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_list] = STATE(6334), + [sym__unquoted_in_list_with_expr] = STATE(7368), + [sym__unquoted_anonymous_prefix] = STATE(6813), [sym_comment] = STATE(850), - [aux_sym_shebang_repeat1] = STATE(874), - [aux_sym_parameter_repeat2] = STATE(6611), - [aux_sym_list_body_repeat1] = STATE(940), - [sym__newline] = ACTIONS(2550), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_RBRACK] = ACTIONS(3174), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_COMMA] = ACTIONS(2558), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3114), - [aux_sym__val_number_decimal_token2] = ACTIONS(3116), - [aux_sym__val_number_decimal_token3] = ACTIONS(3118), - [aux_sym__val_number_decimal_token4] = ACTIONS(3120), - [aux_sym__val_number_token1] = ACTIONS(3122), - [aux_sym__val_number_token2] = ACTIONS(3122), - [aux_sym__val_number_token3] = ACTIONS(3122), - [aux_sym__val_number_token4] = ACTIONS(3124), - [aux_sym__val_number_token5] = ACTIONS(3124), - [aux_sym__val_number_token6] = ACTIONS(3124), - [anon_sym_0b] = ACTIONS(3126), - [anon_sym_0o] = ACTIONS(3128), - [anon_sym_0x] = ACTIONS(3128), - [sym_val_date] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym__str_single_quotes] = ACTIONS(3134), - [sym__str_back_ticks] = ACTIONS(3134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2596), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3136), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3138), + [aux_sym_shebang_repeat1] = STATE(885), + [aux_sym_parameter_repeat2] = STATE(6641), + [aux_sym_list_body_repeat1] = STATE(973), + [sym__newline] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(3104), + [anon_sym_RBRACK] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(2632), + [anon_sym_DOLLAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_DOT_DOT] = ACTIONS(3114), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3116), + [anon_sym_DOT_DOT_LT] = ACTIONS(3116), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_true] = ACTIONS(3120), + [anon_sym_false] = ACTIONS(3120), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3122), + [aux_sym__val_number_decimal_token2] = ACTIONS(3124), + [aux_sym__val_number_decimal_token3] = ACTIONS(3126), + [aux_sym__val_number_decimal_token4] = ACTIONS(3128), + [aux_sym__val_number_token1] = ACTIONS(3130), + [aux_sym__val_number_token2] = ACTIONS(3130), + [aux_sym__val_number_token3] = ACTIONS(3130), + [aux_sym__val_number_token4] = ACTIONS(3132), + [aux_sym__val_number_token5] = ACTIONS(3132), + [aux_sym__val_number_token6] = ACTIONS(3132), + [anon_sym_0b] = ACTIONS(3134), + [anon_sym_0o] = ACTIONS(3136), + [anon_sym_0x] = ACTIONS(3136), + [sym_val_date] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym__str_single_quotes] = ACTIONS(3142), + [sym__str_back_ticks] = ACTIONS(3142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2672), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3144), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3146), }, [851] = { - [sym_expr_parenthesized] = STATE(5958), - [sym__spread_parenthesized] = STATE(7448), - [sym_val_range] = STATE(7451), - [sym__val_range] = STATE(7776), - [sym__val_range_with_end] = STATE(7452), - [sym__value] = STATE(7451), - [sym_val_nothing] = STATE(7049), - [sym_val_bool] = STATE(6510), - [sym__spread_variable] = STATE(7454), - [sym_val_variable] = STATE(5708), - [sym_val_number] = STATE(7049), - [sym__val_number_decimal] = STATE(5233), - [sym__val_number] = STATE(7097), - [sym_val_duration] = STATE(7049), - [sym_val_filesize] = STATE(7049), - [sym_val_binary] = STATE(7049), - [sym_val_string] = STATE(7049), - [sym__raw_str] = STATE(5195), - [sym__str_double_quotes] = STATE(5195), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(7049), - [sym__spread_list] = STATE(7448), - [sym_list_body] = STATE(7762), - [sym_val_entry] = STATE(7036), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(7049), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_list] = STATE(6604), - [sym__unquoted_in_list_with_expr] = STATE(7451), - [sym__unquoted_anonymous_prefix] = STATE(7039), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7300), + [sym_val_range] = STATE(7368), + [sym__val_range] = STATE(7740), + [sym__val_range_with_end] = STATE(7289), + [sym__value] = STATE(7368), + [sym_val_nothing] = STATE(6851), + [sym_val_bool] = STATE(6691), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5759), + [sym_val_number] = STATE(6851), + [sym__val_number_decimal] = STATE(5314), + [sym__val_number] = STATE(6724), + [sym_val_duration] = STATE(6851), + [sym_val_filesize] = STATE(6851), + [sym_val_binary] = STATE(6851), + [sym_val_string] = STATE(6851), + [sym__raw_str] = STATE(5291), + [sym__str_double_quotes] = STATE(5291), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(6851), + [sym__spread_list] = STATE(7300), + [sym_list_body] = STATE(7625), + [sym_val_entry] = STATE(7116), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(6851), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_list] = STATE(6334), + [sym__unquoted_in_list_with_expr] = STATE(7368), + [sym__unquoted_anonymous_prefix] = STATE(6813), [sym_comment] = STATE(851), - [aux_sym_shebang_repeat1] = STATE(870), - [aux_sym_parameter_repeat2] = STATE(6611), - [aux_sym_list_body_repeat1] = STATE(940), - [sym__newline] = ACTIONS(2550), - [anon_sym_LBRACK] = ACTIONS(3142), - [anon_sym_RBRACK] = ACTIONS(3176), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_COMMA] = ACTIONS(2558), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3114), - [aux_sym__val_number_decimal_token2] = ACTIONS(3116), - [aux_sym__val_number_decimal_token3] = ACTIONS(3118), - [aux_sym__val_number_decimal_token4] = ACTIONS(3120), - [aux_sym__val_number_token1] = ACTIONS(3122), - [aux_sym__val_number_token2] = ACTIONS(3122), - [aux_sym__val_number_token3] = ACTIONS(3122), - [aux_sym__val_number_token4] = ACTIONS(3124), - [aux_sym__val_number_token5] = ACTIONS(3124), - [aux_sym__val_number_token6] = ACTIONS(3124), - [anon_sym_0b] = ACTIONS(3126), - [anon_sym_0o] = ACTIONS(3128), - [anon_sym_0x] = ACTIONS(3128), - [sym_val_date] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym__str_single_quotes] = ACTIONS(3134), - [sym__str_back_ticks] = ACTIONS(3134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2596), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3136), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3138), + [aux_sym_shebang_repeat1] = STATE(873), + [aux_sym_parameter_repeat2] = STATE(6641), + [aux_sym_list_body_repeat1] = STATE(973), + [sym__newline] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(3150), + [anon_sym_RBRACK] = ACTIONS(3164), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(2632), + [anon_sym_DOLLAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_DOT_DOT] = ACTIONS(3114), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3116), + [anon_sym_DOT_DOT_LT] = ACTIONS(3116), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_true] = ACTIONS(3120), + [anon_sym_false] = ACTIONS(3120), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3122), + [aux_sym__val_number_decimal_token2] = ACTIONS(3124), + [aux_sym__val_number_decimal_token3] = ACTIONS(3126), + [aux_sym__val_number_decimal_token4] = ACTIONS(3128), + [aux_sym__val_number_token1] = ACTIONS(3130), + [aux_sym__val_number_token2] = ACTIONS(3130), + [aux_sym__val_number_token3] = ACTIONS(3130), + [aux_sym__val_number_token4] = ACTIONS(3132), + [aux_sym__val_number_token5] = ACTIONS(3132), + [aux_sym__val_number_token6] = ACTIONS(3132), + [anon_sym_0b] = ACTIONS(3134), + [anon_sym_0o] = ACTIONS(3136), + [anon_sym_0x] = ACTIONS(3136), + [sym_val_date] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym__str_single_quotes] = ACTIONS(3142), + [sym__str_back_ticks] = ACTIONS(3142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2672), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3144), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3146), }, [852] = { - [sym_expr_parenthesized] = STATE(5958), - [sym__spread_parenthesized] = STATE(7448), - [sym_val_range] = STATE(7451), - [sym__val_range] = STATE(7776), - [sym__val_range_with_end] = STATE(7452), - [sym__value] = STATE(7451), - [sym_val_nothing] = STATE(7049), - [sym_val_bool] = STATE(6510), - [sym__spread_variable] = STATE(7454), - [sym_val_variable] = STATE(5708), - [sym_val_number] = STATE(7049), - [sym__val_number_decimal] = STATE(5233), - [sym__val_number] = STATE(7097), - [sym_val_duration] = STATE(7049), - [sym_val_filesize] = STATE(7049), - [sym_val_binary] = STATE(7049), - [sym_val_string] = STATE(7049), - [sym__raw_str] = STATE(5195), - [sym__str_double_quotes] = STATE(5195), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(7262), - [sym__spread_list] = STATE(7448), - [sym_list_body] = STATE(7728), - [sym_val_entry] = STATE(7036), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(7049), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_list] = STATE(6604), - [sym__unquoted_in_list_with_expr] = STATE(7451), - [sym__unquoted_anonymous_prefix] = STATE(7039), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7300), + [sym_val_range] = STATE(7368), + [sym__val_range] = STATE(7740), + [sym__val_range_with_end] = STATE(7289), + [sym__value] = STATE(7368), + [sym_val_nothing] = STATE(6851), + [sym_val_bool] = STATE(6691), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5759), + [sym_val_number] = STATE(6851), + [sym__val_number_decimal] = STATE(5314), + [sym__val_number] = STATE(6724), + [sym_val_duration] = STATE(6851), + [sym_val_filesize] = STATE(6851), + [sym_val_binary] = STATE(6851), + [sym_val_string] = STATE(6851), + [sym__raw_str] = STATE(5291), + [sym__str_double_quotes] = STATE(5291), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(6851), + [sym__spread_list] = STATE(7300), + [sym_list_body] = STATE(7519), + [sym_val_entry] = STATE(7116), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(6851), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_list] = STATE(6334), + [sym__unquoted_in_list_with_expr] = STATE(7368), + [sym__unquoted_anonymous_prefix] = STATE(6813), [sym_comment] = STATE(852), - [aux_sym_shebang_repeat1] = STATE(886), - [aux_sym_parameter_repeat2] = STATE(6611), - [aux_sym_list_body_repeat1] = STATE(940), - [sym__newline] = ACTIONS(2550), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_RBRACK] = ACTIONS(3178), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_COMMA] = ACTIONS(2558), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3114), - [aux_sym__val_number_decimal_token2] = ACTIONS(3116), - [aux_sym__val_number_decimal_token3] = ACTIONS(3118), - [aux_sym__val_number_decimal_token4] = ACTIONS(3120), - [aux_sym__val_number_token1] = ACTIONS(3122), - [aux_sym__val_number_token2] = ACTIONS(3122), - [aux_sym__val_number_token3] = ACTIONS(3122), - [aux_sym__val_number_token4] = ACTIONS(3124), - [aux_sym__val_number_token5] = ACTIONS(3124), - [aux_sym__val_number_token6] = ACTIONS(3124), - [anon_sym_0b] = ACTIONS(3126), - [anon_sym_0o] = ACTIONS(3128), - [anon_sym_0x] = ACTIONS(3128), - [sym_val_date] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym__str_single_quotes] = ACTIONS(3134), - [sym__str_back_ticks] = ACTIONS(3134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2596), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3136), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3138), + [aux_sym_shebang_repeat1] = STATE(873), + [aux_sym_parameter_repeat2] = STATE(6641), + [aux_sym_list_body_repeat1] = STATE(973), + [sym__newline] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(3150), + [anon_sym_RBRACK] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(2632), + [anon_sym_DOLLAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_DOT_DOT] = ACTIONS(3114), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3116), + [anon_sym_DOT_DOT_LT] = ACTIONS(3116), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_true] = ACTIONS(3120), + [anon_sym_false] = ACTIONS(3120), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3122), + [aux_sym__val_number_decimal_token2] = ACTIONS(3124), + [aux_sym__val_number_decimal_token3] = ACTIONS(3126), + [aux_sym__val_number_decimal_token4] = ACTIONS(3128), + [aux_sym__val_number_token1] = ACTIONS(3130), + [aux_sym__val_number_token2] = ACTIONS(3130), + [aux_sym__val_number_token3] = ACTIONS(3130), + [aux_sym__val_number_token4] = ACTIONS(3132), + [aux_sym__val_number_token5] = ACTIONS(3132), + [aux_sym__val_number_token6] = ACTIONS(3132), + [anon_sym_0b] = ACTIONS(3134), + [anon_sym_0o] = ACTIONS(3136), + [anon_sym_0x] = ACTIONS(3136), + [sym_val_date] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym__str_single_quotes] = ACTIONS(3142), + [sym__str_back_ticks] = ACTIONS(3142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2672), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3144), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3146), }, [853] = { - [sym_expr_parenthesized] = STATE(5958), - [sym__spread_parenthesized] = STATE(7448), - [sym_val_range] = STATE(7451), - [sym__val_range] = STATE(7776), - [sym__val_range_with_end] = STATE(7452), - [sym__value] = STATE(7451), - [sym_val_nothing] = STATE(7049), - [sym_val_bool] = STATE(6510), - [sym__spread_variable] = STATE(7454), - [sym_val_variable] = STATE(5708), - [sym_val_number] = STATE(7049), - [sym__val_number_decimal] = STATE(5233), - [sym__val_number] = STATE(7097), - [sym_val_duration] = STATE(7049), - [sym_val_filesize] = STATE(7049), - [sym_val_binary] = STATE(7049), - [sym_val_string] = STATE(7049), - [sym__raw_str] = STATE(5195), - [sym__str_double_quotes] = STATE(5195), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(7049), - [sym__spread_list] = STATE(7448), - [sym_list_body] = STATE(7478), - [sym_val_entry] = STATE(7036), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(7049), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_list] = STATE(6604), - [sym__unquoted_in_list_with_expr] = STATE(7451), - [sym__unquoted_anonymous_prefix] = STATE(7039), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7300), + [sym_val_range] = STATE(7368), + [sym__val_range] = STATE(7740), + [sym__val_range_with_end] = STATE(7289), + [sym__value] = STATE(7368), + [sym_val_nothing] = STATE(6851), + [sym_val_bool] = STATE(6691), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5759), + [sym_val_number] = STATE(6851), + [sym__val_number_decimal] = STATE(5314), + [sym__val_number] = STATE(6724), + [sym_val_duration] = STATE(6851), + [sym_val_filesize] = STATE(6851), + [sym_val_binary] = STATE(6851), + [sym_val_string] = STATE(6851), + [sym__raw_str] = STATE(5291), + [sym__str_double_quotes] = STATE(5291), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(7244), + [sym__spread_list] = STATE(7300), + [sym_list_body] = STATE(7556), + [sym_val_entry] = STATE(7116), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(6851), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_list] = STATE(6334), + [sym__unquoted_in_list_with_expr] = STATE(7368), + [sym__unquoted_anonymous_prefix] = STATE(6813), [sym_comment] = STATE(853), - [aux_sym_shebang_repeat1] = STATE(870), - [aux_sym_parameter_repeat2] = STATE(6611), - [aux_sym_list_body_repeat1] = STATE(940), - [sym__newline] = ACTIONS(2550), - [anon_sym_LBRACK] = ACTIONS(3142), - [anon_sym_RBRACK] = ACTIONS(3146), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_COMMA] = ACTIONS(2558), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3114), - [aux_sym__val_number_decimal_token2] = ACTIONS(3116), - [aux_sym__val_number_decimal_token3] = ACTIONS(3118), - [aux_sym__val_number_decimal_token4] = ACTIONS(3120), - [aux_sym__val_number_token1] = ACTIONS(3122), - [aux_sym__val_number_token2] = ACTIONS(3122), - [aux_sym__val_number_token3] = ACTIONS(3122), - [aux_sym__val_number_token4] = ACTIONS(3124), - [aux_sym__val_number_token5] = ACTIONS(3124), - [aux_sym__val_number_token6] = ACTIONS(3124), - [anon_sym_0b] = ACTIONS(3126), - [anon_sym_0o] = ACTIONS(3128), - [anon_sym_0x] = ACTIONS(3128), - [sym_val_date] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym__str_single_quotes] = ACTIONS(3134), - [sym__str_back_ticks] = ACTIONS(3134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2596), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3136), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3138), + [aux_sym_shebang_repeat1] = STATE(875), + [aux_sym_parameter_repeat2] = STATE(6641), + [aux_sym_list_body_repeat1] = STATE(973), + [sym__newline] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(3104), + [anon_sym_RBRACK] = ACTIONS(3160), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(2632), + [anon_sym_DOLLAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_DOT_DOT] = ACTIONS(3114), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3116), + [anon_sym_DOT_DOT_LT] = ACTIONS(3116), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_true] = ACTIONS(3120), + [anon_sym_false] = ACTIONS(3120), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3122), + [aux_sym__val_number_decimal_token2] = ACTIONS(3124), + [aux_sym__val_number_decimal_token3] = ACTIONS(3126), + [aux_sym__val_number_decimal_token4] = ACTIONS(3128), + [aux_sym__val_number_token1] = ACTIONS(3130), + [aux_sym__val_number_token2] = ACTIONS(3130), + [aux_sym__val_number_token3] = ACTIONS(3130), + [aux_sym__val_number_token4] = ACTIONS(3132), + [aux_sym__val_number_token5] = ACTIONS(3132), + [aux_sym__val_number_token6] = ACTIONS(3132), + [anon_sym_0b] = ACTIONS(3134), + [anon_sym_0o] = ACTIONS(3136), + [anon_sym_0x] = ACTIONS(3136), + [sym_val_date] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym__str_single_quotes] = ACTIONS(3142), + [sym__str_back_ticks] = ACTIONS(3142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2672), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3144), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3146), }, [854] = { - [sym_expr_parenthesized] = STATE(5958), - [sym__spread_parenthesized] = STATE(7448), - [sym_val_range] = STATE(7451), - [sym__val_range] = STATE(7776), - [sym__val_range_with_end] = STATE(7452), - [sym__value] = STATE(7451), - [sym_val_nothing] = STATE(7049), - [sym_val_bool] = STATE(6510), - [sym__spread_variable] = STATE(7454), - [sym_val_variable] = STATE(5708), - [sym_val_number] = STATE(7049), - [sym__val_number_decimal] = STATE(5233), - [sym__val_number] = STATE(7097), - [sym_val_duration] = STATE(7049), - [sym_val_filesize] = STATE(7049), - [sym_val_binary] = STATE(7049), - [sym_val_string] = STATE(7049), - [sym__raw_str] = STATE(5195), - [sym__str_double_quotes] = STATE(5195), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(7269), - [sym__spread_list] = STATE(7448), - [sym_list_body] = STATE(7770), - [sym_val_entry] = STATE(7036), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(7049), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_list] = STATE(6604), - [sym__unquoted_in_list_with_expr] = STATE(7451), - [sym__unquoted_anonymous_prefix] = STATE(7039), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7300), + [sym_val_range] = STATE(7368), + [sym__val_range] = STATE(7740), + [sym__val_range_with_end] = STATE(7289), + [sym__value] = STATE(7368), + [sym_val_nothing] = STATE(6851), + [sym_val_bool] = STATE(6691), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5759), + [sym_val_number] = STATE(6851), + [sym__val_number_decimal] = STATE(5314), + [sym__val_number] = STATE(6724), + [sym_val_duration] = STATE(6851), + [sym_val_filesize] = STATE(6851), + [sym_val_binary] = STATE(6851), + [sym_val_string] = STATE(6851), + [sym__raw_str] = STATE(5291), + [sym__str_double_quotes] = STATE(5291), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(6851), + [sym__spread_list] = STATE(7300), + [sym_list_body] = STATE(7831), + [sym_val_entry] = STATE(7116), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(6851), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_list] = STATE(6334), + [sym__unquoted_in_list_with_expr] = STATE(7368), + [sym__unquoted_anonymous_prefix] = STATE(6813), [sym_comment] = STATE(854), - [aux_sym_shebang_repeat1] = STATE(887), - [aux_sym_parameter_repeat2] = STATE(6611), - [aux_sym_list_body_repeat1] = STATE(940), - [sym__newline] = ACTIONS(2550), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_RBRACK] = ACTIONS(3180), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_COMMA] = ACTIONS(2558), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3114), - [aux_sym__val_number_decimal_token2] = ACTIONS(3116), - [aux_sym__val_number_decimal_token3] = ACTIONS(3118), - [aux_sym__val_number_decimal_token4] = ACTIONS(3120), - [aux_sym__val_number_token1] = ACTIONS(3122), - [aux_sym__val_number_token2] = ACTIONS(3122), - [aux_sym__val_number_token3] = ACTIONS(3122), - [aux_sym__val_number_token4] = ACTIONS(3124), - [aux_sym__val_number_token5] = ACTIONS(3124), - [aux_sym__val_number_token6] = ACTIONS(3124), - [anon_sym_0b] = ACTIONS(3126), - [anon_sym_0o] = ACTIONS(3128), - [anon_sym_0x] = ACTIONS(3128), - [sym_val_date] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym__str_single_quotes] = ACTIONS(3134), - [sym__str_back_ticks] = ACTIONS(3134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2596), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3136), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3138), + [aux_sym_shebang_repeat1] = STATE(873), + [aux_sym_parameter_repeat2] = STATE(6641), + [aux_sym_list_body_repeat1] = STATE(973), + [sym__newline] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(3150), + [anon_sym_RBRACK] = ACTIONS(3168), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(2632), + [anon_sym_DOLLAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_DOT_DOT] = ACTIONS(3114), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3116), + [anon_sym_DOT_DOT_LT] = ACTIONS(3116), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_true] = ACTIONS(3120), + [anon_sym_false] = ACTIONS(3120), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3122), + [aux_sym__val_number_decimal_token2] = ACTIONS(3124), + [aux_sym__val_number_decimal_token3] = ACTIONS(3126), + [aux_sym__val_number_decimal_token4] = ACTIONS(3128), + [aux_sym__val_number_token1] = ACTIONS(3130), + [aux_sym__val_number_token2] = ACTIONS(3130), + [aux_sym__val_number_token3] = ACTIONS(3130), + [aux_sym__val_number_token4] = ACTIONS(3132), + [aux_sym__val_number_token5] = ACTIONS(3132), + [aux_sym__val_number_token6] = ACTIONS(3132), + [anon_sym_0b] = ACTIONS(3134), + [anon_sym_0o] = ACTIONS(3136), + [anon_sym_0x] = ACTIONS(3136), + [sym_val_date] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym__str_single_quotes] = ACTIONS(3142), + [sym__str_back_ticks] = ACTIONS(3142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2672), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3144), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3146), }, [855] = { - [sym_expr_parenthesized] = STATE(5958), - [sym__spread_parenthesized] = STATE(7448), - [sym_val_range] = STATE(7451), - [sym__val_range] = STATE(7776), - [sym__val_range_with_end] = STATE(7452), - [sym__value] = STATE(7451), - [sym_val_nothing] = STATE(7049), - [sym_val_bool] = STATE(6510), - [sym__spread_variable] = STATE(7454), - [sym_val_variable] = STATE(5708), - [sym_val_number] = STATE(7049), - [sym__val_number_decimal] = STATE(5233), - [sym__val_number] = STATE(7097), - [sym_val_duration] = STATE(7049), - [sym_val_filesize] = STATE(7049), - [sym_val_binary] = STATE(7049), - [sym_val_string] = STATE(7049), - [sym__raw_str] = STATE(5195), - [sym__str_double_quotes] = STATE(5195), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(7186), - [sym__spread_list] = STATE(7448), - [sym_list_body] = STATE(7645), - [sym_val_entry] = STATE(7036), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(7049), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_list] = STATE(6604), - [sym__unquoted_in_list_with_expr] = STATE(7451), - [sym__unquoted_anonymous_prefix] = STATE(7039), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7300), + [sym_val_range] = STATE(7368), + [sym__val_range] = STATE(7740), + [sym__val_range_with_end] = STATE(7289), + [sym__value] = STATE(7368), + [sym_val_nothing] = STATE(6851), + [sym_val_bool] = STATE(6691), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5759), + [sym_val_number] = STATE(6851), + [sym__val_number_decimal] = STATE(5314), + [sym__val_number] = STATE(6724), + [sym_val_duration] = STATE(6851), + [sym_val_filesize] = STATE(6851), + [sym_val_binary] = STATE(6851), + [sym_val_string] = STATE(6851), + [sym__raw_str] = STATE(5291), + [sym__str_double_quotes] = STATE(5291), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(6851), + [sym__spread_list] = STATE(7300), + [sym_list_body] = STATE(7848), + [sym_val_entry] = STATE(7116), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(6851), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_list] = STATE(6334), + [sym__unquoted_in_list_with_expr] = STATE(7368), + [sym__unquoted_anonymous_prefix] = STATE(6813), [sym_comment] = STATE(855), - [aux_sym_shebang_repeat1] = STATE(877), - [aux_sym_parameter_repeat2] = STATE(6611), - [aux_sym_list_body_repeat1] = STATE(940), - [sym__newline] = ACTIONS(2550), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_RBRACK] = ACTIONS(3182), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_COMMA] = ACTIONS(2558), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3114), - [aux_sym__val_number_decimal_token2] = ACTIONS(3116), - [aux_sym__val_number_decimal_token3] = ACTIONS(3118), - [aux_sym__val_number_decimal_token4] = ACTIONS(3120), - [aux_sym__val_number_token1] = ACTIONS(3122), - [aux_sym__val_number_token2] = ACTIONS(3122), - [aux_sym__val_number_token3] = ACTIONS(3122), - [aux_sym__val_number_token4] = ACTIONS(3124), - [aux_sym__val_number_token5] = ACTIONS(3124), - [aux_sym__val_number_token6] = ACTIONS(3124), - [anon_sym_0b] = ACTIONS(3126), - [anon_sym_0o] = ACTIONS(3128), - [anon_sym_0x] = ACTIONS(3128), - [sym_val_date] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym__str_single_quotes] = ACTIONS(3134), - [sym__str_back_ticks] = ACTIONS(3134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2596), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3136), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3138), + [aux_sym_shebang_repeat1] = STATE(873), + [aux_sym_parameter_repeat2] = STATE(6641), + [aux_sym_list_body_repeat1] = STATE(973), + [sym__newline] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(3150), + [anon_sym_RBRACK] = ACTIONS(3170), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(2632), + [anon_sym_DOLLAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_DOT_DOT] = ACTIONS(3114), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3116), + [anon_sym_DOT_DOT_LT] = ACTIONS(3116), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_true] = ACTIONS(3120), + [anon_sym_false] = ACTIONS(3120), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3122), + [aux_sym__val_number_decimal_token2] = ACTIONS(3124), + [aux_sym__val_number_decimal_token3] = ACTIONS(3126), + [aux_sym__val_number_decimal_token4] = ACTIONS(3128), + [aux_sym__val_number_token1] = ACTIONS(3130), + [aux_sym__val_number_token2] = ACTIONS(3130), + [aux_sym__val_number_token3] = ACTIONS(3130), + [aux_sym__val_number_token4] = ACTIONS(3132), + [aux_sym__val_number_token5] = ACTIONS(3132), + [aux_sym__val_number_token6] = ACTIONS(3132), + [anon_sym_0b] = ACTIONS(3134), + [anon_sym_0o] = ACTIONS(3136), + [anon_sym_0x] = ACTIONS(3136), + [sym_val_date] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym__str_single_quotes] = ACTIONS(3142), + [sym__str_back_ticks] = ACTIONS(3142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2672), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3144), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3146), }, [856] = { - [sym_expr_parenthesized] = STATE(5958), - [sym__spread_parenthesized] = STATE(7448), - [sym_val_range] = STATE(7451), - [sym__val_range] = STATE(7776), - [sym__val_range_with_end] = STATE(7452), - [sym__value] = STATE(7451), - [sym_val_nothing] = STATE(7049), - [sym_val_bool] = STATE(6510), - [sym__spread_variable] = STATE(7454), - [sym_val_variable] = STATE(5708), - [sym_val_number] = STATE(7049), - [sym__val_number_decimal] = STATE(5233), - [sym__val_number] = STATE(7097), - [sym_val_duration] = STATE(7049), - [sym_val_filesize] = STATE(7049), - [sym_val_binary] = STATE(7049), - [sym_val_string] = STATE(7049), - [sym__raw_str] = STATE(5195), - [sym__str_double_quotes] = STATE(5195), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(7049), - [sym__spread_list] = STATE(7448), - [sym_list_body] = STATE(7856), - [sym_val_entry] = STATE(7036), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(7049), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_list] = STATE(6604), - [sym__unquoted_in_list_with_expr] = STATE(7451), - [sym__unquoted_anonymous_prefix] = STATE(7039), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7300), + [sym_val_range] = STATE(7368), + [sym__val_range] = STATE(7740), + [sym__val_range_with_end] = STATE(7289), + [sym__value] = STATE(7368), + [sym_val_nothing] = STATE(6851), + [sym_val_bool] = STATE(6691), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5759), + [sym_val_number] = STATE(6851), + [sym__val_number_decimal] = STATE(5314), + [sym__val_number] = STATE(6724), + [sym_val_duration] = STATE(6851), + [sym_val_filesize] = STATE(6851), + [sym_val_binary] = STATE(6851), + [sym_val_string] = STATE(6851), + [sym__raw_str] = STATE(5291), + [sym__str_double_quotes] = STATE(5291), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(7009), + [sym__spread_list] = STATE(7300), + [sym_list_body] = STATE(7519), + [sym_val_entry] = STATE(7116), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(6851), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_list] = STATE(6334), + [sym__unquoted_in_list_with_expr] = STATE(7368), + [sym__unquoted_anonymous_prefix] = STATE(6813), [sym_comment] = STATE(856), - [aux_sym_shebang_repeat1] = STATE(870), - [aux_sym_parameter_repeat2] = STATE(6611), - [aux_sym_list_body_repeat1] = STATE(940), - [sym__newline] = ACTIONS(2550), - [anon_sym_LBRACK] = ACTIONS(3142), - [anon_sym_RBRACK] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_COMMA] = ACTIONS(2558), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3114), - [aux_sym__val_number_decimal_token2] = ACTIONS(3116), - [aux_sym__val_number_decimal_token3] = ACTIONS(3118), - [aux_sym__val_number_decimal_token4] = ACTIONS(3120), - [aux_sym__val_number_token1] = ACTIONS(3122), - [aux_sym__val_number_token2] = ACTIONS(3122), - [aux_sym__val_number_token3] = ACTIONS(3122), - [aux_sym__val_number_token4] = ACTIONS(3124), - [aux_sym__val_number_token5] = ACTIONS(3124), - [aux_sym__val_number_token6] = ACTIONS(3124), - [anon_sym_0b] = ACTIONS(3126), - [anon_sym_0o] = ACTIONS(3128), - [anon_sym_0x] = ACTIONS(3128), - [sym_val_date] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym__str_single_quotes] = ACTIONS(3134), - [sym__str_back_ticks] = ACTIONS(3134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2596), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3136), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3138), + [aux_sym_shebang_repeat1] = STATE(877), + [aux_sym_parameter_repeat2] = STATE(6641), + [aux_sym_list_body_repeat1] = STATE(973), + [sym__newline] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(3104), + [anon_sym_RBRACK] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(2632), + [anon_sym_DOLLAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_DOT_DOT] = ACTIONS(3114), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3116), + [anon_sym_DOT_DOT_LT] = ACTIONS(3116), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_true] = ACTIONS(3120), + [anon_sym_false] = ACTIONS(3120), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3122), + [aux_sym__val_number_decimal_token2] = ACTIONS(3124), + [aux_sym__val_number_decimal_token3] = ACTIONS(3126), + [aux_sym__val_number_decimal_token4] = ACTIONS(3128), + [aux_sym__val_number_token1] = ACTIONS(3130), + [aux_sym__val_number_token2] = ACTIONS(3130), + [aux_sym__val_number_token3] = ACTIONS(3130), + [aux_sym__val_number_token4] = ACTIONS(3132), + [aux_sym__val_number_token5] = ACTIONS(3132), + [aux_sym__val_number_token6] = ACTIONS(3132), + [anon_sym_0b] = ACTIONS(3134), + [anon_sym_0o] = ACTIONS(3136), + [anon_sym_0x] = ACTIONS(3136), + [sym_val_date] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym__str_single_quotes] = ACTIONS(3142), + [sym__str_back_ticks] = ACTIONS(3142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2672), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3144), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3146), }, [857] = { - [sym_expr_parenthesized] = STATE(5958), - [sym__spread_parenthesized] = STATE(7448), - [sym_val_range] = STATE(7451), - [sym__val_range] = STATE(7776), - [sym__val_range_with_end] = STATE(7452), - [sym__value] = STATE(7451), - [sym_val_nothing] = STATE(7049), - [sym_val_bool] = STATE(6510), - [sym__spread_variable] = STATE(7454), - [sym_val_variable] = STATE(5708), - [sym_val_number] = STATE(7049), - [sym__val_number_decimal] = STATE(5233), - [sym__val_number] = STATE(7097), - [sym_val_duration] = STATE(7049), - [sym_val_filesize] = STATE(7049), - [sym_val_binary] = STATE(7049), - [sym_val_string] = STATE(7049), - [sym__raw_str] = STATE(5195), - [sym__str_double_quotes] = STATE(5195), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(7049), - [sym__spread_list] = STATE(7448), - [sym_list_body] = STATE(7633), - [sym_val_entry] = STATE(7036), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(7049), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_list] = STATE(6604), - [sym__unquoted_in_list_with_expr] = STATE(7451), - [sym__unquoted_anonymous_prefix] = STATE(7039), [sym_comment] = STATE(857), - [aux_sym_shebang_repeat1] = STATE(870), - [aux_sym_parameter_repeat2] = STATE(6611), - [aux_sym_list_body_repeat1] = STATE(940), - [sym__newline] = ACTIONS(2550), - [anon_sym_LBRACK] = ACTIONS(3142), - [anon_sym_RBRACK] = ACTIONS(3184), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_COMMA] = ACTIONS(2558), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3114), - [aux_sym__val_number_decimal_token2] = ACTIONS(3116), - [aux_sym__val_number_decimal_token3] = ACTIONS(3118), - [aux_sym__val_number_decimal_token4] = ACTIONS(3120), - [aux_sym__val_number_token1] = ACTIONS(3122), - [aux_sym__val_number_token2] = ACTIONS(3122), - [aux_sym__val_number_token3] = ACTIONS(3122), - [aux_sym__val_number_token4] = ACTIONS(3124), - [aux_sym__val_number_token5] = ACTIONS(3124), - [aux_sym__val_number_token6] = ACTIONS(3124), - [anon_sym_0b] = ACTIONS(3126), - [anon_sym_0o] = ACTIONS(3128), - [anon_sym_0x] = ACTIONS(3128), - [sym_val_date] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym__str_single_quotes] = ACTIONS(3134), - [sym__str_back_ticks] = ACTIONS(3134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2596), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3136), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3138), + [anon_sym_STAR_STAR] = ACTIONS(3092), + [anon_sym_PLUS_PLUS] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3094), + [anon_sym_SLASH] = ACTIONS(3094), + [anon_sym_mod] = ACTIONS(3092), + [anon_sym_SLASH_SLASH] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(3094), + [anon_sym_DASH] = ACTIONS(3092), + [anon_sym_bit_DASHshl] = ACTIONS(3092), + [anon_sym_bit_DASHshr] = ACTIONS(3092), + [anon_sym_EQ_TILDE] = ACTIONS(3092), + [anon_sym_BANG_TILDE] = ACTIONS(3092), + [anon_sym_bit_DASHand] = ACTIONS(3092), + [anon_sym_bit_DASHxor] = ACTIONS(3092), + [anon_sym_bit_DASHor] = ACTIONS(3092), + [anon_sym_and] = ACTIONS(3092), + [anon_sym_xor] = ACTIONS(3092), + [anon_sym_or] = ACTIONS(3092), + [anon_sym_in] = ACTIONS(3092), + [anon_sym_not_DASHin] = ACTIONS(3092), + [anon_sym_has] = ACTIONS(3092), + [anon_sym_not_DASHhas] = ACTIONS(3092), + [anon_sym_starts_DASHwith] = ACTIONS(3092), + [anon_sym_ends_DASHwith] = ACTIONS(3092), + [anon_sym_EQ_EQ] = ACTIONS(3092), + [anon_sym_BANG_EQ] = ACTIONS(3092), + [anon_sym_LT] = ACTIONS(3094), + [anon_sym_LT_EQ] = ACTIONS(3092), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_GT_EQ] = ACTIONS(3092), + [aux_sym_cmd_identifier_token41] = ACTIONS(3096), + [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_GT2] = ACTIONS(2081), + [anon_sym_DASH2] = ACTIONS(2081), + [anon_sym_in2] = ACTIONS(2081), + [anon_sym_STAR2] = ACTIONS(2081), + [anon_sym_and2] = ACTIONS(2081), + [anon_sym_xor2] = ACTIONS(2081), + [anon_sym_or2] = ACTIONS(2081), + [anon_sym_not_DASHin2] = ACTIONS(2081), + [anon_sym_has2] = ACTIONS(2081), + [anon_sym_not_DASHhas2] = ACTIONS(2081), + [anon_sym_starts_DASHwith2] = ACTIONS(2081), + [anon_sym_ends_DASHwith2] = ACTIONS(2081), + [anon_sym_EQ_EQ2] = ACTIONS(2081), + [anon_sym_BANG_EQ2] = ACTIONS(2081), + [anon_sym_LT2] = ACTIONS(2081), + [anon_sym_LT_EQ2] = ACTIONS(2081), + [anon_sym_GT_EQ2] = ACTIONS(2081), + [anon_sym_EQ_TILDE2] = ACTIONS(2081), + [anon_sym_BANG_TILDE2] = ACTIONS(2081), + [anon_sym_STAR_STAR2] = ACTIONS(2081), + [anon_sym_PLUS_PLUS2] = ACTIONS(2081), + [anon_sym_SLASH2] = ACTIONS(2081), + [anon_sym_mod2] = ACTIONS(2081), + [anon_sym_SLASH_SLASH2] = ACTIONS(2081), + [anon_sym_PLUS2] = ACTIONS(2081), + [anon_sym_bit_DASHshl2] = ACTIONS(2081), + [anon_sym_bit_DASHshr2] = ACTIONS(2081), + [anon_sym_bit_DASHand2] = ACTIONS(2081), + [anon_sym_bit_DASHxor2] = ACTIONS(2081), + [anon_sym_bit_DASHor2] = ACTIONS(2081), + [anon_sym_err_GT] = ACTIONS(2081), + [anon_sym_out_GT] = ACTIONS(2081), + [anon_sym_e_GT] = ACTIONS(2081), + [anon_sym_o_GT] = ACTIONS(2081), + [anon_sym_err_PLUSout_GT] = ACTIONS(2081), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2081), + [anon_sym_o_PLUSe_GT] = ACTIONS(2081), + [anon_sym_e_PLUSo_GT] = ACTIONS(2081), + [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), + [anon_sym_POUND] = ACTIONS(3), }, [858] = { - [sym_expr_parenthesized] = STATE(5958), - [sym__spread_parenthesized] = STATE(7448), - [sym_val_range] = STATE(7451), - [sym__val_range] = STATE(7776), - [sym__val_range_with_end] = STATE(7452), - [sym__value] = STATE(7451), - [sym_val_nothing] = STATE(7049), - [sym_val_bool] = STATE(6510), - [sym__spread_variable] = STATE(7454), - [sym_val_variable] = STATE(5708), - [sym_val_number] = STATE(7049), - [sym__val_number_decimal] = STATE(5233), - [sym__val_number] = STATE(7097), - [sym_val_duration] = STATE(7049), - [sym_val_filesize] = STATE(7049), - [sym_val_binary] = STATE(7049), - [sym_val_string] = STATE(7049), - [sym__raw_str] = STATE(5195), - [sym__str_double_quotes] = STATE(5195), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(7049), - [sym__spread_list] = STATE(7448), - [sym_list_body] = STATE(7569), - [sym_val_entry] = STATE(7036), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(7049), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_list] = STATE(6604), - [sym__unquoted_in_list_with_expr] = STATE(7451), - [sym__unquoted_anonymous_prefix] = STATE(7039), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7300), + [sym_val_range] = STATE(7368), + [sym__val_range] = STATE(7740), + [sym__val_range_with_end] = STATE(7289), + [sym__value] = STATE(7368), + [sym_val_nothing] = STATE(6851), + [sym_val_bool] = STATE(6691), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5759), + [sym_val_number] = STATE(6851), + [sym__val_number_decimal] = STATE(5314), + [sym__val_number] = STATE(6724), + [sym_val_duration] = STATE(6851), + [sym_val_filesize] = STATE(6851), + [sym_val_binary] = STATE(6851), + [sym_val_string] = STATE(6851), + [sym__raw_str] = STATE(5291), + [sym__str_double_quotes] = STATE(5291), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(7085), + [sym__spread_list] = STATE(7300), + [sym_list_body] = STATE(7499), + [sym_val_entry] = STATE(7116), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(6851), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_list] = STATE(6334), + [sym__unquoted_in_list_with_expr] = STATE(7368), + [sym__unquoted_anonymous_prefix] = STATE(6813), [sym_comment] = STATE(858), - [aux_sym_shebang_repeat1] = STATE(870), - [aux_sym_parameter_repeat2] = STATE(6611), - [aux_sym_list_body_repeat1] = STATE(940), - [sym__newline] = ACTIONS(2550), - [anon_sym_LBRACK] = ACTIONS(3142), + [aux_sym_shebang_repeat1] = STATE(874), + [aux_sym_parameter_repeat2] = STATE(6641), + [aux_sym_list_body_repeat1] = STATE(973), + [sym__newline] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(3104), [anon_sym_RBRACK] = ACTIONS(3172), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_COMMA] = ACTIONS(2558), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3114), - [aux_sym__val_number_decimal_token2] = ACTIONS(3116), - [aux_sym__val_number_decimal_token3] = ACTIONS(3118), - [aux_sym__val_number_decimal_token4] = ACTIONS(3120), - [aux_sym__val_number_token1] = ACTIONS(3122), - [aux_sym__val_number_token2] = ACTIONS(3122), - [aux_sym__val_number_token3] = ACTIONS(3122), - [aux_sym__val_number_token4] = ACTIONS(3124), - [aux_sym__val_number_token5] = ACTIONS(3124), - [aux_sym__val_number_token6] = ACTIONS(3124), - [anon_sym_0b] = ACTIONS(3126), - [anon_sym_0o] = ACTIONS(3128), - [anon_sym_0x] = ACTIONS(3128), - [sym_val_date] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym__str_single_quotes] = ACTIONS(3134), - [sym__str_back_ticks] = ACTIONS(3134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2596), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3136), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(2632), + [anon_sym_DOLLAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_DOT_DOT] = ACTIONS(3114), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3116), + [anon_sym_DOT_DOT_LT] = ACTIONS(3116), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_true] = ACTIONS(3120), + [anon_sym_false] = ACTIONS(3120), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3122), + [aux_sym__val_number_decimal_token2] = ACTIONS(3124), + [aux_sym__val_number_decimal_token3] = ACTIONS(3126), + [aux_sym__val_number_decimal_token4] = ACTIONS(3128), + [aux_sym__val_number_token1] = ACTIONS(3130), + [aux_sym__val_number_token2] = ACTIONS(3130), + [aux_sym__val_number_token3] = ACTIONS(3130), + [aux_sym__val_number_token4] = ACTIONS(3132), + [aux_sym__val_number_token5] = ACTIONS(3132), + [aux_sym__val_number_token6] = ACTIONS(3132), + [anon_sym_0b] = ACTIONS(3134), + [anon_sym_0o] = ACTIONS(3136), + [anon_sym_0x] = ACTIONS(3136), + [sym_val_date] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym__str_single_quotes] = ACTIONS(3142), + [sym__str_back_ticks] = ACTIONS(3142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2672), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3144), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3146), }, [859] = { + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7300), + [sym_val_range] = STATE(7368), + [sym__val_range] = STATE(7740), + [sym__val_range_with_end] = STATE(7289), + [sym__value] = STATE(7368), + [sym_val_nothing] = STATE(6851), + [sym_val_bool] = STATE(6691), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5759), + [sym_val_number] = STATE(6851), + [sym__val_number_decimal] = STATE(5314), + [sym__val_number] = STATE(6724), + [sym_val_duration] = STATE(6851), + [sym_val_filesize] = STATE(6851), + [sym_val_binary] = STATE(6851), + [sym_val_string] = STATE(6851), + [sym__raw_str] = STATE(5291), + [sym__str_double_quotes] = STATE(5291), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(7250), + [sym__spread_list] = STATE(7300), + [sym_list_body] = STATE(7719), + [sym_val_entry] = STATE(7116), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(6851), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_list] = STATE(6334), + [sym__unquoted_in_list_with_expr] = STATE(7368), + [sym__unquoted_anonymous_prefix] = STATE(6813), [sym_comment] = STATE(859), - [anon_sym_STAR_STAR] = ACTIONS(3186), - [anon_sym_PLUS_PLUS] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3188), - [anon_sym_SLASH] = ACTIONS(3188), - [anon_sym_mod] = ACTIONS(3186), - [anon_sym_SLASH_SLASH] = ACTIONS(3186), - [anon_sym_PLUS] = ACTIONS(3188), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_bit_DASHshl] = ACTIONS(3186), - [anon_sym_bit_DASHshr] = ACTIONS(3186), - [anon_sym_EQ_TILDE] = ACTIONS(3186), - [anon_sym_BANG_TILDE] = ACTIONS(3186), - [anon_sym_bit_DASHand] = ACTIONS(3186), - [anon_sym_bit_DASHxor] = ACTIONS(3186), - [anon_sym_bit_DASHor] = ACTIONS(3186), - [anon_sym_and] = ACTIONS(3186), - [anon_sym_xor] = ACTIONS(3186), - [anon_sym_or] = ACTIONS(3186), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_not_DASHin] = ACTIONS(3186), - [anon_sym_starts_DASHwith] = ACTIONS(3186), - [anon_sym_ends_DASHwith] = ACTIONS(3186), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_LT] = ACTIONS(3188), - [anon_sym_LT_EQ] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3188), - [anon_sym_GT_EQ] = ACTIONS(3186), - [aux_sym_cmd_identifier_token41] = ACTIONS(3190), - [sym__newline] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2136), - [anon_sym_err_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_GT_PIPE] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2136), - [anon_sym_GT2] = ACTIONS(2136), - [anon_sym_DASH2] = ACTIONS(2136), - [anon_sym_in2] = ACTIONS(2136), - [anon_sym_RBRACE] = ACTIONS(2136), - [anon_sym_STAR2] = ACTIONS(2136), - [anon_sym_and2] = ACTIONS(2136), - [anon_sym_xor2] = ACTIONS(2136), - [anon_sym_or2] = ACTIONS(2136), - [anon_sym_not_DASHin2] = ACTIONS(2136), - [anon_sym_starts_DASHwith2] = ACTIONS(2136), - [anon_sym_ends_DASHwith2] = ACTIONS(2136), - [anon_sym_EQ_EQ2] = ACTIONS(2136), - [anon_sym_BANG_EQ2] = ACTIONS(2136), - [anon_sym_LT2] = ACTIONS(2136), - [anon_sym_LT_EQ2] = ACTIONS(2136), - [anon_sym_GT_EQ2] = ACTIONS(2136), - [anon_sym_EQ_TILDE2] = ACTIONS(2136), - [anon_sym_BANG_TILDE2] = ACTIONS(2136), - [anon_sym_STAR_STAR2] = ACTIONS(2136), - [anon_sym_PLUS_PLUS2] = ACTIONS(2136), - [anon_sym_SLASH2] = ACTIONS(2136), - [anon_sym_mod2] = ACTIONS(2136), - [anon_sym_SLASH_SLASH2] = ACTIONS(2136), - [anon_sym_PLUS2] = ACTIONS(2136), - [anon_sym_bit_DASHshl2] = ACTIONS(2136), - [anon_sym_bit_DASHshr2] = ACTIONS(2136), - [anon_sym_bit_DASHand2] = ACTIONS(2136), - [anon_sym_bit_DASHxor2] = ACTIONS(2136), - [anon_sym_bit_DASHor2] = ACTIONS(2136), - [anon_sym_err_GT] = ACTIONS(2136), - [anon_sym_out_GT] = ACTIONS(2136), - [anon_sym_e_GT] = ACTIONS(2136), - [anon_sym_o_GT] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT] = ACTIONS(2136), - [anon_sym_err_GT_GT] = ACTIONS(2136), - [anon_sym_out_GT_GT] = ACTIONS(2136), - [anon_sym_e_GT_GT] = ACTIONS(2136), - [anon_sym_o_GT_GT] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2136), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(876), + [aux_sym_parameter_repeat2] = STATE(6641), + [aux_sym_list_body_repeat1] = STATE(973), + [sym__newline] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(3104), + [anon_sym_RBRACK] = ACTIONS(3174), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(2632), + [anon_sym_DOLLAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_DOT_DOT] = ACTIONS(3114), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3116), + [anon_sym_DOT_DOT_LT] = ACTIONS(3116), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_true] = ACTIONS(3120), + [anon_sym_false] = ACTIONS(3120), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3122), + [aux_sym__val_number_decimal_token2] = ACTIONS(3124), + [aux_sym__val_number_decimal_token3] = ACTIONS(3126), + [aux_sym__val_number_decimal_token4] = ACTIONS(3128), + [aux_sym__val_number_token1] = ACTIONS(3130), + [aux_sym__val_number_token2] = ACTIONS(3130), + [aux_sym__val_number_token3] = ACTIONS(3130), + [aux_sym__val_number_token4] = ACTIONS(3132), + [aux_sym__val_number_token5] = ACTIONS(3132), + [aux_sym__val_number_token6] = ACTIONS(3132), + [anon_sym_0b] = ACTIONS(3134), + [anon_sym_0o] = ACTIONS(3136), + [anon_sym_0x] = ACTIONS(3136), + [sym_val_date] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym__str_single_quotes] = ACTIONS(3142), + [sym__str_back_ticks] = ACTIONS(3142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2672), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3144), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3146), }, [860] = { + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7300), + [sym_val_range] = STATE(7368), + [sym__val_range] = STATE(7740), + [sym__val_range_with_end] = STATE(7289), + [sym__value] = STATE(7368), + [sym_val_nothing] = STATE(6851), + [sym_val_bool] = STATE(6691), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5759), + [sym_val_number] = STATE(6851), + [sym__val_number_decimal] = STATE(5314), + [sym__val_number] = STATE(6724), + [sym_val_duration] = STATE(6851), + [sym_val_filesize] = STATE(6851), + [sym_val_binary] = STATE(6851), + [sym_val_string] = STATE(6851), + [sym__raw_str] = STATE(5291), + [sym__str_double_quotes] = STATE(5291), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(7146), + [sym__spread_list] = STATE(7300), + [sym_list_body] = STATE(7820), + [sym_val_entry] = STATE(7116), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(6851), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_list] = STATE(6334), + [sym__unquoted_in_list_with_expr] = STATE(7368), + [sym__unquoted_anonymous_prefix] = STATE(6813), [sym_comment] = STATE(860), - [anon_sym_STAR_STAR] = ACTIONS(3186), - [anon_sym_PLUS_PLUS] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3188), - [anon_sym_SLASH] = ACTIONS(3188), - [anon_sym_mod] = ACTIONS(3186), - [anon_sym_SLASH_SLASH] = ACTIONS(3186), - [anon_sym_PLUS] = ACTIONS(3188), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_bit_DASHshl] = ACTIONS(3186), - [anon_sym_bit_DASHshr] = ACTIONS(3186), - [anon_sym_EQ_TILDE] = ACTIONS(3186), - [anon_sym_BANG_TILDE] = ACTIONS(3186), - [anon_sym_bit_DASHand] = ACTIONS(3186), - [anon_sym_bit_DASHxor] = ACTIONS(3186), - [anon_sym_bit_DASHor] = ACTIONS(3186), - [anon_sym_and] = ACTIONS(3186), - [anon_sym_xor] = ACTIONS(3186), - [anon_sym_or] = ACTIONS(3186), - [anon_sym_in] = ACTIONS(3186), - [anon_sym_not_DASHin] = ACTIONS(3186), - [anon_sym_starts_DASHwith] = ACTIONS(3186), - [anon_sym_ends_DASHwith] = ACTIONS(3186), - [anon_sym_EQ_EQ] = ACTIONS(3186), - [anon_sym_BANG_EQ] = ACTIONS(3186), - [anon_sym_LT] = ACTIONS(3188), - [anon_sym_LT_EQ] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3188), - [anon_sym_GT_EQ] = ACTIONS(3186), - [aux_sym_cmd_identifier_token41] = ACTIONS(3190), - [sym__newline] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2144), - [anon_sym_PIPE] = ACTIONS(2144), - [anon_sym_err_GT_PIPE] = ACTIONS(2144), - [anon_sym_out_GT_PIPE] = ACTIONS(2144), - [anon_sym_e_GT_PIPE] = ACTIONS(2144), - [anon_sym_o_GT_PIPE] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2144), - [anon_sym_GT2] = ACTIONS(2144), - [anon_sym_DASH2] = ACTIONS(2144), - [anon_sym_in2] = ACTIONS(2144), - [anon_sym_RBRACE] = ACTIONS(2144), - [anon_sym_STAR2] = ACTIONS(2144), - [anon_sym_and2] = ACTIONS(2144), - [anon_sym_xor2] = ACTIONS(2144), - [anon_sym_or2] = ACTIONS(2144), - [anon_sym_not_DASHin2] = ACTIONS(2144), - [anon_sym_starts_DASHwith2] = ACTIONS(2144), - [anon_sym_ends_DASHwith2] = ACTIONS(2144), - [anon_sym_EQ_EQ2] = ACTIONS(2144), - [anon_sym_BANG_EQ2] = ACTIONS(2144), - [anon_sym_LT2] = ACTIONS(2144), - [anon_sym_LT_EQ2] = ACTIONS(2144), - [anon_sym_GT_EQ2] = ACTIONS(2144), - [anon_sym_EQ_TILDE2] = ACTIONS(2144), - [anon_sym_BANG_TILDE2] = ACTIONS(2144), - [anon_sym_STAR_STAR2] = ACTIONS(2144), - [anon_sym_PLUS_PLUS2] = ACTIONS(2144), - [anon_sym_SLASH2] = ACTIONS(2144), - [anon_sym_mod2] = ACTIONS(2144), - [anon_sym_SLASH_SLASH2] = ACTIONS(2144), - [anon_sym_PLUS2] = ACTIONS(2144), - [anon_sym_bit_DASHshl2] = ACTIONS(2144), - [anon_sym_bit_DASHshr2] = ACTIONS(2144), - [anon_sym_bit_DASHand2] = ACTIONS(2144), - [anon_sym_bit_DASHxor2] = ACTIONS(2144), - [anon_sym_bit_DASHor2] = ACTIONS(2144), - [anon_sym_err_GT] = ACTIONS(2144), - [anon_sym_out_GT] = ACTIONS(2144), - [anon_sym_e_GT] = ACTIONS(2144), - [anon_sym_o_GT] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT] = ACTIONS(2144), - [anon_sym_err_GT_GT] = ACTIONS(2144), - [anon_sym_out_GT_GT] = ACTIONS(2144), - [anon_sym_e_GT_GT] = ACTIONS(2144), - [anon_sym_o_GT_GT] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2144), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(880), + [aux_sym_parameter_repeat2] = STATE(6641), + [aux_sym_list_body_repeat1] = STATE(973), + [sym__newline] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(3104), + [anon_sym_RBRACK] = ACTIONS(3176), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(2632), + [anon_sym_DOLLAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_DOT_DOT] = ACTIONS(3114), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3116), + [anon_sym_DOT_DOT_LT] = ACTIONS(3116), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_true] = ACTIONS(3120), + [anon_sym_false] = ACTIONS(3120), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3122), + [aux_sym__val_number_decimal_token2] = ACTIONS(3124), + [aux_sym__val_number_decimal_token3] = ACTIONS(3126), + [aux_sym__val_number_decimal_token4] = ACTIONS(3128), + [aux_sym__val_number_token1] = ACTIONS(3130), + [aux_sym__val_number_token2] = ACTIONS(3130), + [aux_sym__val_number_token3] = ACTIONS(3130), + [aux_sym__val_number_token4] = ACTIONS(3132), + [aux_sym__val_number_token5] = ACTIONS(3132), + [aux_sym__val_number_token6] = ACTIONS(3132), + [anon_sym_0b] = ACTIONS(3134), + [anon_sym_0o] = ACTIONS(3136), + [anon_sym_0x] = ACTIONS(3136), + [sym_val_date] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym__str_single_quotes] = ACTIONS(3142), + [sym__str_back_ticks] = ACTIONS(3142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2672), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3144), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3146), }, [861] = { + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7300), + [sym_val_range] = STATE(7368), + [sym__val_range] = STATE(7740), + [sym__val_range_with_end] = STATE(7289), + [sym__value] = STATE(7368), + [sym_val_nothing] = STATE(6851), + [sym_val_bool] = STATE(6691), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5759), + [sym_val_number] = STATE(6851), + [sym__val_number_decimal] = STATE(5314), + [sym__val_number] = STATE(6724), + [sym_val_duration] = STATE(6851), + [sym_val_filesize] = STATE(6851), + [sym_val_binary] = STATE(6851), + [sym_val_string] = STATE(6851), + [sym__raw_str] = STATE(5291), + [sym__str_double_quotes] = STATE(5291), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(7009), + [sym__spread_list] = STATE(7300), + [sym_list_body] = STATE(7687), + [sym_val_entry] = STATE(7116), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(6851), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_list] = STATE(6334), + [sym__unquoted_in_list_with_expr] = STATE(7368), + [sym__unquoted_anonymous_prefix] = STATE(6813), [sym_comment] = STATE(861), - [anon_sym_STAR_STAR] = ACTIONS(3192), - [anon_sym_PLUS_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_mod] = ACTIONS(3192), - [anon_sym_SLASH_SLASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_bit_DASHshl] = ACTIONS(3192), - [anon_sym_bit_DASHshr] = ACTIONS(3192), - [anon_sym_EQ_TILDE] = ACTIONS(3192), - [anon_sym_BANG_TILDE] = ACTIONS(3192), - [anon_sym_bit_DASHand] = ACTIONS(3192), - [anon_sym_bit_DASHxor] = ACTIONS(3192), - [anon_sym_bit_DASHor] = ACTIONS(3192), - [anon_sym_and] = ACTIONS(3192), - [anon_sym_xor] = ACTIONS(3192), - [anon_sym_or] = ACTIONS(3192), - [anon_sym_in] = ACTIONS(3192), - [anon_sym_not_DASHin] = ACTIONS(3192), - [anon_sym_starts_DASHwith] = ACTIONS(3192), - [anon_sym_ends_DASHwith] = ACTIONS(3192), - [anon_sym_EQ_EQ] = ACTIONS(3192), - [anon_sym_BANG_EQ] = ACTIONS(3192), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_LT_EQ] = ACTIONS(3192), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_GT_EQ] = ACTIONS(3192), - [aux_sym_cmd_identifier_token41] = ACTIONS(3196), - [sym__newline] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2136), - [anon_sym_err_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_GT_PIPE] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2136), - [anon_sym_GT2] = ACTIONS(2136), - [anon_sym_DASH2] = ACTIONS(2136), - [anon_sym_in2] = ACTIONS(2136), - [anon_sym_RBRACE] = ACTIONS(2136), - [anon_sym_STAR2] = ACTIONS(2136), - [anon_sym_and2] = ACTIONS(2136), - [anon_sym_xor2] = ACTIONS(2136), - [anon_sym_or2] = ACTIONS(2136), - [anon_sym_not_DASHin2] = ACTIONS(2136), - [anon_sym_starts_DASHwith2] = ACTIONS(2136), - [anon_sym_ends_DASHwith2] = ACTIONS(2136), - [anon_sym_EQ_EQ2] = ACTIONS(2136), - [anon_sym_BANG_EQ2] = ACTIONS(2136), - [anon_sym_LT2] = ACTIONS(2136), - [anon_sym_LT_EQ2] = ACTIONS(2136), - [anon_sym_GT_EQ2] = ACTIONS(2136), - [anon_sym_EQ_TILDE2] = ACTIONS(2136), - [anon_sym_BANG_TILDE2] = ACTIONS(2136), - [anon_sym_STAR_STAR2] = ACTIONS(2136), - [anon_sym_PLUS_PLUS2] = ACTIONS(2136), - [anon_sym_SLASH2] = ACTIONS(2136), - [anon_sym_mod2] = ACTIONS(2136), - [anon_sym_SLASH_SLASH2] = ACTIONS(2136), - [anon_sym_PLUS2] = ACTIONS(2136), - [anon_sym_bit_DASHshl2] = ACTIONS(2136), - [anon_sym_bit_DASHshr2] = ACTIONS(2136), - [anon_sym_bit_DASHand2] = ACTIONS(2136), - [anon_sym_bit_DASHxor2] = ACTIONS(2136), - [anon_sym_bit_DASHor2] = ACTIONS(2136), - [anon_sym_err_GT] = ACTIONS(2136), - [anon_sym_out_GT] = ACTIONS(2136), - [anon_sym_e_GT] = ACTIONS(2136), - [anon_sym_o_GT] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT] = ACTIONS(2136), - [anon_sym_err_GT_GT] = ACTIONS(2136), - [anon_sym_out_GT_GT] = ACTIONS(2136), - [anon_sym_e_GT_GT] = ACTIONS(2136), - [anon_sym_o_GT_GT] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2136), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(877), + [aux_sym_parameter_repeat2] = STATE(6641), + [aux_sym_list_body_repeat1] = STATE(973), + [sym__newline] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(3104), + [anon_sym_RBRACK] = ACTIONS(3178), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(2632), + [anon_sym_DOLLAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_DOT_DOT] = ACTIONS(3114), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3116), + [anon_sym_DOT_DOT_LT] = ACTIONS(3116), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_true] = ACTIONS(3120), + [anon_sym_false] = ACTIONS(3120), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3122), + [aux_sym__val_number_decimal_token2] = ACTIONS(3124), + [aux_sym__val_number_decimal_token3] = ACTIONS(3126), + [aux_sym__val_number_decimal_token4] = ACTIONS(3128), + [aux_sym__val_number_token1] = ACTIONS(3130), + [aux_sym__val_number_token2] = ACTIONS(3130), + [aux_sym__val_number_token3] = ACTIONS(3130), + [aux_sym__val_number_token4] = ACTIONS(3132), + [aux_sym__val_number_token5] = ACTIONS(3132), + [aux_sym__val_number_token6] = ACTIONS(3132), + [anon_sym_0b] = ACTIONS(3134), + [anon_sym_0o] = ACTIONS(3136), + [anon_sym_0x] = ACTIONS(3136), + [sym_val_date] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym__str_single_quotes] = ACTIONS(3142), + [sym__str_back_ticks] = ACTIONS(3142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2672), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3144), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3146), }, [862] = { + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7300), + [sym_val_range] = STATE(7368), + [sym__val_range] = STATE(7740), + [sym__val_range_with_end] = STATE(7289), + [sym__value] = STATE(7368), + [sym_val_nothing] = STATE(6851), + [sym_val_bool] = STATE(6691), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5759), + [sym_val_number] = STATE(6851), + [sym__val_number_decimal] = STATE(5314), + [sym__val_number] = STATE(6724), + [sym_val_duration] = STATE(6851), + [sym_val_filesize] = STATE(6851), + [sym_val_binary] = STATE(6851), + [sym_val_string] = STATE(6851), + [sym__raw_str] = STATE(5291), + [sym__str_double_quotes] = STATE(5291), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(6851), + [sym__spread_list] = STATE(7300), + [sym_list_body] = STATE(7608), + [sym_val_entry] = STATE(7116), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(6851), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_list] = STATE(6334), + [sym__unquoted_in_list_with_expr] = STATE(7368), + [sym__unquoted_anonymous_prefix] = STATE(6813), [sym_comment] = STATE(862), - [ts_builtin_sym_end] = ACTIONS(2146), - [anon_sym_STAR_STAR] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_mod] = ACTIONS(3198), - [anon_sym_SLASH_SLASH] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3198), - [anon_sym_bit_DASHshl] = ACTIONS(3198), - [anon_sym_bit_DASHshr] = ACTIONS(3198), - [anon_sym_EQ_TILDE] = ACTIONS(3198), - [anon_sym_BANG_TILDE] = ACTIONS(3198), - [anon_sym_bit_DASHand] = ACTIONS(3198), - [anon_sym_bit_DASHxor] = ACTIONS(3198), - [anon_sym_bit_DASHor] = ACTIONS(3198), - [anon_sym_and] = ACTIONS(3198), - [anon_sym_xor] = ACTIONS(3198), - [anon_sym_or] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3198), - [anon_sym_not_DASHin] = ACTIONS(3198), - [anon_sym_starts_DASHwith] = ACTIONS(3198), - [anon_sym_ends_DASHwith] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3200), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_GT_EQ] = ACTIONS(3198), - [aux_sym_cmd_identifier_token41] = ACTIONS(3202), - [sym__newline] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2144), - [anon_sym_PIPE] = ACTIONS(2144), - [anon_sym_err_GT_PIPE] = ACTIONS(2144), - [anon_sym_out_GT_PIPE] = ACTIONS(2144), - [anon_sym_e_GT_PIPE] = ACTIONS(2144), - [anon_sym_o_GT_PIPE] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2144), - [anon_sym_GT2] = ACTIONS(2144), - [anon_sym_DASH2] = ACTIONS(2144), - [anon_sym_in2] = ACTIONS(2144), - [anon_sym_STAR2] = ACTIONS(2144), - [anon_sym_and2] = ACTIONS(2144), - [anon_sym_xor2] = ACTIONS(2144), - [anon_sym_or2] = ACTIONS(2144), - [anon_sym_not_DASHin2] = ACTIONS(2144), - [anon_sym_starts_DASHwith2] = ACTIONS(2144), - [anon_sym_ends_DASHwith2] = ACTIONS(2144), - [anon_sym_EQ_EQ2] = ACTIONS(2144), - [anon_sym_BANG_EQ2] = ACTIONS(2144), - [anon_sym_LT2] = ACTIONS(2144), - [anon_sym_LT_EQ2] = ACTIONS(2144), - [anon_sym_GT_EQ2] = ACTIONS(2144), - [anon_sym_EQ_TILDE2] = ACTIONS(2144), - [anon_sym_BANG_TILDE2] = ACTIONS(2144), - [anon_sym_STAR_STAR2] = ACTIONS(2144), - [anon_sym_PLUS_PLUS2] = ACTIONS(2144), - [anon_sym_SLASH2] = ACTIONS(2144), - [anon_sym_mod2] = ACTIONS(2144), - [anon_sym_SLASH_SLASH2] = ACTIONS(2144), - [anon_sym_PLUS2] = ACTIONS(2144), - [anon_sym_bit_DASHshl2] = ACTIONS(2144), - [anon_sym_bit_DASHshr2] = ACTIONS(2144), - [anon_sym_bit_DASHand2] = ACTIONS(2144), - [anon_sym_bit_DASHxor2] = ACTIONS(2144), - [anon_sym_bit_DASHor2] = ACTIONS(2144), - [anon_sym_err_GT] = ACTIONS(2144), - [anon_sym_out_GT] = ACTIONS(2144), - [anon_sym_e_GT] = ACTIONS(2144), - [anon_sym_o_GT] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT] = ACTIONS(2144), - [anon_sym_err_GT_GT] = ACTIONS(2144), - [anon_sym_out_GT_GT] = ACTIONS(2144), - [anon_sym_e_GT_GT] = ACTIONS(2144), - [anon_sym_o_GT_GT] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2144), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(873), + [aux_sym_parameter_repeat2] = STATE(6641), + [aux_sym_list_body_repeat1] = STATE(973), + [sym__newline] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(3150), + [anon_sym_RBRACK] = ACTIONS(3180), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(2632), + [anon_sym_DOLLAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_DOT_DOT] = ACTIONS(3114), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3116), + [anon_sym_DOT_DOT_LT] = ACTIONS(3116), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_true] = ACTIONS(3120), + [anon_sym_false] = ACTIONS(3120), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3122), + [aux_sym__val_number_decimal_token2] = ACTIONS(3124), + [aux_sym__val_number_decimal_token3] = ACTIONS(3126), + [aux_sym__val_number_decimal_token4] = ACTIONS(3128), + [aux_sym__val_number_token1] = ACTIONS(3130), + [aux_sym__val_number_token2] = ACTIONS(3130), + [aux_sym__val_number_token3] = ACTIONS(3130), + [aux_sym__val_number_token4] = ACTIONS(3132), + [aux_sym__val_number_token5] = ACTIONS(3132), + [aux_sym__val_number_token6] = ACTIONS(3132), + [anon_sym_0b] = ACTIONS(3134), + [anon_sym_0o] = ACTIONS(3136), + [anon_sym_0x] = ACTIONS(3136), + [sym_val_date] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym__str_single_quotes] = ACTIONS(3142), + [sym__str_back_ticks] = ACTIONS(3142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2672), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3144), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3146), }, [863] = { + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7300), + [sym_val_range] = STATE(7368), + [sym__val_range] = STATE(7740), + [sym__val_range_with_end] = STATE(7289), + [sym__value] = STATE(7368), + [sym_val_nothing] = STATE(6851), + [sym_val_bool] = STATE(6691), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5759), + [sym_val_number] = STATE(6851), + [sym__val_number_decimal] = STATE(5314), + [sym__val_number] = STATE(6724), + [sym_val_duration] = STATE(6851), + [sym_val_filesize] = STATE(6851), + [sym_val_binary] = STATE(6851), + [sym_val_string] = STATE(6851), + [sym__raw_str] = STATE(5291), + [sym__str_double_quotes] = STATE(5291), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(7156), + [sym__spread_list] = STATE(7300), + [sym_list_body] = STATE(7645), + [sym_val_entry] = STATE(7116), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(6851), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_list] = STATE(6334), + [sym__unquoted_in_list_with_expr] = STATE(7368), + [sym__unquoted_anonymous_prefix] = STATE(6813), [sym_comment] = STATE(863), - [anon_sym_STAR_STAR] = ACTIONS(3192), - [anon_sym_PLUS_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_mod] = ACTIONS(3192), - [anon_sym_SLASH_SLASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_bit_DASHshl] = ACTIONS(3192), - [anon_sym_bit_DASHshr] = ACTIONS(3192), - [anon_sym_EQ_TILDE] = ACTIONS(3192), - [anon_sym_BANG_TILDE] = ACTIONS(3192), - [anon_sym_bit_DASHand] = ACTIONS(3192), - [anon_sym_bit_DASHxor] = ACTIONS(3192), - [anon_sym_bit_DASHor] = ACTIONS(3192), - [anon_sym_and] = ACTIONS(3192), - [anon_sym_xor] = ACTIONS(3192), - [anon_sym_or] = ACTIONS(3192), - [anon_sym_in] = ACTIONS(3192), - [anon_sym_not_DASHin] = ACTIONS(3192), - [anon_sym_starts_DASHwith] = ACTIONS(3192), - [anon_sym_ends_DASHwith] = ACTIONS(3192), - [anon_sym_EQ_EQ] = ACTIONS(3192), - [anon_sym_BANG_EQ] = ACTIONS(3192), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_LT_EQ] = ACTIONS(3192), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_GT_EQ] = ACTIONS(3192), - [aux_sym_cmd_identifier_token41] = ACTIONS(3196), - [sym__newline] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2144), - [anon_sym_PIPE] = ACTIONS(2144), - [anon_sym_err_GT_PIPE] = ACTIONS(2144), - [anon_sym_out_GT_PIPE] = ACTIONS(2144), - [anon_sym_e_GT_PIPE] = ACTIONS(2144), - [anon_sym_o_GT_PIPE] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2144), - [anon_sym_RPAREN] = ACTIONS(2144), - [anon_sym_GT2] = ACTIONS(2144), - [anon_sym_DASH2] = ACTIONS(2144), - [anon_sym_in2] = ACTIONS(2144), - [anon_sym_STAR2] = ACTIONS(2144), - [anon_sym_and2] = ACTIONS(2144), - [anon_sym_xor2] = ACTIONS(2144), - [anon_sym_or2] = ACTIONS(2144), - [anon_sym_not_DASHin2] = ACTIONS(2144), - [anon_sym_starts_DASHwith2] = ACTIONS(2144), - [anon_sym_ends_DASHwith2] = ACTIONS(2144), - [anon_sym_EQ_EQ2] = ACTIONS(2144), - [anon_sym_BANG_EQ2] = ACTIONS(2144), - [anon_sym_LT2] = ACTIONS(2144), - [anon_sym_LT_EQ2] = ACTIONS(2144), - [anon_sym_GT_EQ2] = ACTIONS(2144), - [anon_sym_EQ_TILDE2] = ACTIONS(2144), - [anon_sym_BANG_TILDE2] = ACTIONS(2144), - [anon_sym_STAR_STAR2] = ACTIONS(2144), - [anon_sym_PLUS_PLUS2] = ACTIONS(2144), - [anon_sym_SLASH2] = ACTIONS(2144), - [anon_sym_mod2] = ACTIONS(2144), - [anon_sym_SLASH_SLASH2] = ACTIONS(2144), - [anon_sym_PLUS2] = ACTIONS(2144), - [anon_sym_bit_DASHshl2] = ACTIONS(2144), - [anon_sym_bit_DASHshr2] = ACTIONS(2144), - [anon_sym_bit_DASHand2] = ACTIONS(2144), - [anon_sym_bit_DASHxor2] = ACTIONS(2144), - [anon_sym_bit_DASHor2] = ACTIONS(2144), - [anon_sym_err_GT] = ACTIONS(2144), - [anon_sym_out_GT] = ACTIONS(2144), - [anon_sym_e_GT] = ACTIONS(2144), - [anon_sym_o_GT] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT] = ACTIONS(2144), - [anon_sym_err_GT_GT] = ACTIONS(2144), - [anon_sym_out_GT_GT] = ACTIONS(2144), - [anon_sym_e_GT_GT] = ACTIONS(2144), - [anon_sym_o_GT_GT] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2144), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(871), + [aux_sym_parameter_repeat2] = STATE(6641), + [aux_sym_list_body_repeat1] = STATE(973), + [sym__newline] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(3104), + [anon_sym_RBRACK] = ACTIONS(3182), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(2632), + [anon_sym_DOLLAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_DOT_DOT] = ACTIONS(3114), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3116), + [anon_sym_DOT_DOT_LT] = ACTIONS(3116), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_true] = ACTIONS(3120), + [anon_sym_false] = ACTIONS(3120), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3122), + [aux_sym__val_number_decimal_token2] = ACTIONS(3124), + [aux_sym__val_number_decimal_token3] = ACTIONS(3126), + [aux_sym__val_number_decimal_token4] = ACTIONS(3128), + [aux_sym__val_number_token1] = ACTIONS(3130), + [aux_sym__val_number_token2] = ACTIONS(3130), + [aux_sym__val_number_token3] = ACTIONS(3130), + [aux_sym__val_number_token4] = ACTIONS(3132), + [aux_sym__val_number_token5] = ACTIONS(3132), + [aux_sym__val_number_token6] = ACTIONS(3132), + [anon_sym_0b] = ACTIONS(3134), + [anon_sym_0o] = ACTIONS(3136), + [anon_sym_0x] = ACTIONS(3136), + [sym_val_date] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym__str_single_quotes] = ACTIONS(3142), + [sym__str_back_ticks] = ACTIONS(3142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2672), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3144), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3146), }, [864] = { + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7300), + [sym_val_range] = STATE(7368), + [sym__val_range] = STATE(7740), + [sym__val_range_with_end] = STATE(7289), + [sym__value] = STATE(7368), + [sym_val_nothing] = STATE(6851), + [sym_val_bool] = STATE(6691), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5759), + [sym_val_number] = STATE(6851), + [sym__val_number_decimal] = STATE(5314), + [sym__val_number] = STATE(6724), + [sym_val_duration] = STATE(6851), + [sym_val_filesize] = STATE(6851), + [sym_val_binary] = STATE(6851), + [sym_val_string] = STATE(6851), + [sym__raw_str] = STATE(5291), + [sym__str_double_quotes] = STATE(5291), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(7257), + [sym__spread_list] = STATE(7300), + [sym_list_body] = STATE(7759), + [sym_val_entry] = STATE(7116), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(6851), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_list] = STATE(6334), + [sym__unquoted_in_list_with_expr] = STATE(7368), + [sym__unquoted_anonymous_prefix] = STATE(6813), [sym_comment] = STATE(864), - [anon_sym_STAR_STAR] = ACTIONS(3192), - [anon_sym_PLUS_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_mod] = ACTIONS(3192), - [anon_sym_SLASH_SLASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_bit_DASHshl] = ACTIONS(3192), - [anon_sym_bit_DASHshr] = ACTIONS(3192), - [anon_sym_EQ_TILDE] = ACTIONS(3192), - [anon_sym_BANG_TILDE] = ACTIONS(3192), - [anon_sym_bit_DASHand] = ACTIONS(3192), - [anon_sym_bit_DASHxor] = ACTIONS(3192), - [anon_sym_bit_DASHor] = ACTIONS(3192), - [anon_sym_and] = ACTIONS(3192), - [anon_sym_xor] = ACTIONS(3192), - [anon_sym_or] = ACTIONS(3192), - [anon_sym_in] = ACTIONS(3192), - [anon_sym_not_DASHin] = ACTIONS(3192), - [anon_sym_starts_DASHwith] = ACTIONS(3192), - [anon_sym_ends_DASHwith] = ACTIONS(3192), - [anon_sym_EQ_EQ] = ACTIONS(3192), - [anon_sym_BANG_EQ] = ACTIONS(3192), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_LT_EQ] = ACTIONS(3192), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_GT_EQ] = ACTIONS(3192), - [aux_sym_cmd_identifier_token41] = ACTIONS(3196), - [sym__newline] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2144), - [anon_sym_PIPE] = ACTIONS(2144), - [anon_sym_err_GT_PIPE] = ACTIONS(2144), - [anon_sym_out_GT_PIPE] = ACTIONS(2144), - [anon_sym_e_GT_PIPE] = ACTIONS(2144), - [anon_sym_o_GT_PIPE] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2144), - [anon_sym_GT2] = ACTIONS(2144), - [anon_sym_DASH2] = ACTIONS(2144), - [anon_sym_in2] = ACTIONS(2144), - [anon_sym_RBRACE] = ACTIONS(2144), - [anon_sym_STAR2] = ACTIONS(2144), - [anon_sym_and2] = ACTIONS(2144), - [anon_sym_xor2] = ACTIONS(2144), - [anon_sym_or2] = ACTIONS(2144), - [anon_sym_not_DASHin2] = ACTIONS(2144), - [anon_sym_starts_DASHwith2] = ACTIONS(2144), - [anon_sym_ends_DASHwith2] = ACTIONS(2144), - [anon_sym_EQ_EQ2] = ACTIONS(2144), - [anon_sym_BANG_EQ2] = ACTIONS(2144), - [anon_sym_LT2] = ACTIONS(2144), - [anon_sym_LT_EQ2] = ACTIONS(2144), - [anon_sym_GT_EQ2] = ACTIONS(2144), - [anon_sym_EQ_TILDE2] = ACTIONS(2144), - [anon_sym_BANG_TILDE2] = ACTIONS(2144), - [anon_sym_STAR_STAR2] = ACTIONS(2144), - [anon_sym_PLUS_PLUS2] = ACTIONS(2144), - [anon_sym_SLASH2] = ACTIONS(2144), - [anon_sym_mod2] = ACTIONS(2144), - [anon_sym_SLASH_SLASH2] = ACTIONS(2144), - [anon_sym_PLUS2] = ACTIONS(2144), - [anon_sym_bit_DASHshl2] = ACTIONS(2144), - [anon_sym_bit_DASHshr2] = ACTIONS(2144), - [anon_sym_bit_DASHand2] = ACTIONS(2144), - [anon_sym_bit_DASHxor2] = ACTIONS(2144), - [anon_sym_bit_DASHor2] = ACTIONS(2144), - [anon_sym_err_GT] = ACTIONS(2144), - [anon_sym_out_GT] = ACTIONS(2144), - [anon_sym_e_GT] = ACTIONS(2144), - [anon_sym_o_GT] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT] = ACTIONS(2144), - [anon_sym_err_GT_GT] = ACTIONS(2144), - [anon_sym_out_GT_GT] = ACTIONS(2144), - [anon_sym_e_GT_GT] = ACTIONS(2144), - [anon_sym_o_GT_GT] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2144), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(872), + [aux_sym_parameter_repeat2] = STATE(6641), + [aux_sym_list_body_repeat1] = STATE(973), + [sym__newline] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(3104), + [anon_sym_RBRACK] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(2632), + [anon_sym_DOLLAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_DOT_DOT] = ACTIONS(3114), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3116), + [anon_sym_DOT_DOT_LT] = ACTIONS(3116), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_true] = ACTIONS(3120), + [anon_sym_false] = ACTIONS(3120), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3122), + [aux_sym__val_number_decimal_token2] = ACTIONS(3124), + [aux_sym__val_number_decimal_token3] = ACTIONS(3126), + [aux_sym__val_number_decimal_token4] = ACTIONS(3128), + [aux_sym__val_number_token1] = ACTIONS(3130), + [aux_sym__val_number_token2] = ACTIONS(3130), + [aux_sym__val_number_token3] = ACTIONS(3130), + [aux_sym__val_number_token4] = ACTIONS(3132), + [aux_sym__val_number_token5] = ACTIONS(3132), + [aux_sym__val_number_token6] = ACTIONS(3132), + [anon_sym_0b] = ACTIONS(3134), + [anon_sym_0o] = ACTIONS(3136), + [anon_sym_0x] = ACTIONS(3136), + [sym_val_date] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym__str_single_quotes] = ACTIONS(3142), + [sym__str_back_ticks] = ACTIONS(3142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2672), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3144), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3146), }, [865] = { [sym_comment] = STATE(865), - [anon_sym_STAR_STAR] = ACTIONS(3192), - [anon_sym_PLUS_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_mod] = ACTIONS(3192), - [anon_sym_SLASH_SLASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_bit_DASHshl] = ACTIONS(3192), - [anon_sym_bit_DASHshr] = ACTIONS(3192), - [anon_sym_EQ_TILDE] = ACTIONS(3192), - [anon_sym_BANG_TILDE] = ACTIONS(3192), - [anon_sym_bit_DASHand] = ACTIONS(3192), - [anon_sym_bit_DASHxor] = ACTIONS(3192), - [anon_sym_bit_DASHor] = ACTIONS(3192), - [anon_sym_and] = ACTIONS(3192), - [anon_sym_xor] = ACTIONS(3192), - [anon_sym_or] = ACTIONS(3192), - [anon_sym_in] = ACTIONS(3192), - [anon_sym_not_DASHin] = ACTIONS(3192), - [anon_sym_starts_DASHwith] = ACTIONS(3192), - [anon_sym_ends_DASHwith] = ACTIONS(3192), - [anon_sym_EQ_EQ] = ACTIONS(3192), - [anon_sym_BANG_EQ] = ACTIONS(3192), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_LT_EQ] = ACTIONS(3192), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_GT_EQ] = ACTIONS(3192), - [aux_sym_cmd_identifier_token41] = ACTIONS(3196), - [sym__newline] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2136), - [anon_sym_err_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_GT_PIPE] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2136), - [anon_sym_RPAREN] = ACTIONS(2136), - [anon_sym_GT2] = ACTIONS(2136), - [anon_sym_DASH2] = ACTIONS(2136), - [anon_sym_in2] = ACTIONS(2136), - [anon_sym_STAR2] = ACTIONS(2136), - [anon_sym_and2] = ACTIONS(2136), - [anon_sym_xor2] = ACTIONS(2136), - [anon_sym_or2] = ACTIONS(2136), - [anon_sym_not_DASHin2] = ACTIONS(2136), - [anon_sym_starts_DASHwith2] = ACTIONS(2136), - [anon_sym_ends_DASHwith2] = ACTIONS(2136), - [anon_sym_EQ_EQ2] = ACTIONS(2136), - [anon_sym_BANG_EQ2] = ACTIONS(2136), - [anon_sym_LT2] = ACTIONS(2136), - [anon_sym_LT_EQ2] = ACTIONS(2136), - [anon_sym_GT_EQ2] = ACTIONS(2136), - [anon_sym_EQ_TILDE2] = ACTIONS(2136), - [anon_sym_BANG_TILDE2] = ACTIONS(2136), - [anon_sym_STAR_STAR2] = ACTIONS(2136), - [anon_sym_PLUS_PLUS2] = ACTIONS(2136), - [anon_sym_SLASH2] = ACTIONS(2136), - [anon_sym_mod2] = ACTIONS(2136), - [anon_sym_SLASH_SLASH2] = ACTIONS(2136), - [anon_sym_PLUS2] = ACTIONS(2136), - [anon_sym_bit_DASHshl2] = ACTIONS(2136), - [anon_sym_bit_DASHshr2] = ACTIONS(2136), - [anon_sym_bit_DASHand2] = ACTIONS(2136), - [anon_sym_bit_DASHxor2] = ACTIONS(2136), - [anon_sym_bit_DASHor2] = ACTIONS(2136), - [anon_sym_err_GT] = ACTIONS(2136), - [anon_sym_out_GT] = ACTIONS(2136), - [anon_sym_e_GT] = ACTIONS(2136), - [anon_sym_o_GT] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT] = ACTIONS(2136), - [anon_sym_err_GT_GT] = ACTIONS(2136), - [anon_sym_out_GT_GT] = ACTIONS(2136), - [anon_sym_e_GT_GT] = ACTIONS(2136), - [anon_sym_o_GT_GT] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2136), + [anon_sym_STAR_STAR] = ACTIONS(3092), + [anon_sym_PLUS_PLUS] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3094), + [anon_sym_SLASH] = ACTIONS(3094), + [anon_sym_mod] = ACTIONS(3092), + [anon_sym_SLASH_SLASH] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(3094), + [anon_sym_DASH] = ACTIONS(3092), + [anon_sym_bit_DASHshl] = ACTIONS(3092), + [anon_sym_bit_DASHshr] = ACTIONS(3092), + [anon_sym_EQ_TILDE] = ACTIONS(3092), + [anon_sym_BANG_TILDE] = ACTIONS(3092), + [anon_sym_bit_DASHand] = ACTIONS(3092), + [anon_sym_bit_DASHxor] = ACTIONS(3092), + [anon_sym_bit_DASHor] = ACTIONS(3092), + [anon_sym_and] = ACTIONS(3092), + [anon_sym_xor] = ACTIONS(3092), + [anon_sym_or] = ACTIONS(3092), + [anon_sym_in] = ACTIONS(3092), + [anon_sym_not_DASHin] = ACTIONS(3092), + [anon_sym_has] = ACTIONS(3092), + [anon_sym_not_DASHhas] = ACTIONS(3092), + [anon_sym_starts_DASHwith] = ACTIONS(3092), + [anon_sym_ends_DASHwith] = ACTIONS(3092), + [anon_sym_EQ_EQ] = ACTIONS(3092), + [anon_sym_BANG_EQ] = ACTIONS(3092), + [anon_sym_LT] = ACTIONS(3094), + [anon_sym_LT_EQ] = ACTIONS(3092), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_GT_EQ] = ACTIONS(3092), + [aux_sym_cmd_identifier_token41] = ACTIONS(3096), + [sym__newline] = ACTIONS(2073), + [anon_sym_SEMI] = ACTIONS(2073), + [anon_sym_PIPE] = ACTIONS(2073), + [anon_sym_err_GT_PIPE] = ACTIONS(2073), + [anon_sym_out_GT_PIPE] = ACTIONS(2073), + [anon_sym_e_GT_PIPE] = ACTIONS(2073), + [anon_sym_o_GT_PIPE] = ACTIONS(2073), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2073), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2073), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2073), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2073), + [anon_sym_GT2] = ACTIONS(2073), + [anon_sym_DASH2] = ACTIONS(2073), + [anon_sym_in2] = ACTIONS(2073), + [anon_sym_STAR2] = ACTIONS(2073), + [anon_sym_and2] = ACTIONS(2073), + [anon_sym_xor2] = ACTIONS(2073), + [anon_sym_or2] = ACTIONS(2073), + [anon_sym_not_DASHin2] = ACTIONS(2073), + [anon_sym_has2] = ACTIONS(2073), + [anon_sym_not_DASHhas2] = ACTIONS(2073), + [anon_sym_starts_DASHwith2] = ACTIONS(2073), + [anon_sym_ends_DASHwith2] = ACTIONS(2073), + [anon_sym_EQ_EQ2] = ACTIONS(2073), + [anon_sym_BANG_EQ2] = ACTIONS(2073), + [anon_sym_LT2] = ACTIONS(2073), + [anon_sym_LT_EQ2] = ACTIONS(2073), + [anon_sym_GT_EQ2] = ACTIONS(2073), + [anon_sym_EQ_TILDE2] = ACTIONS(2073), + [anon_sym_BANG_TILDE2] = ACTIONS(2073), + [anon_sym_STAR_STAR2] = ACTIONS(2073), + [anon_sym_PLUS_PLUS2] = ACTIONS(2073), + [anon_sym_SLASH2] = ACTIONS(2073), + [anon_sym_mod2] = ACTIONS(2073), + [anon_sym_SLASH_SLASH2] = ACTIONS(2073), + [anon_sym_PLUS2] = ACTIONS(2073), + [anon_sym_bit_DASHshl2] = ACTIONS(2073), + [anon_sym_bit_DASHshr2] = ACTIONS(2073), + [anon_sym_bit_DASHand2] = ACTIONS(2073), + [anon_sym_bit_DASHxor2] = ACTIONS(2073), + [anon_sym_bit_DASHor2] = ACTIONS(2073), + [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), [anon_sym_POUND] = ACTIONS(3), }, [866] = { + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7300), + [sym_val_range] = STATE(7368), + [sym__val_range] = STATE(7740), + [sym__val_range_with_end] = STATE(7289), + [sym__value] = STATE(7368), + [sym_val_nothing] = STATE(6851), + [sym_val_bool] = STATE(6691), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5759), + [sym_val_number] = STATE(6851), + [sym__val_number_decimal] = STATE(5314), + [sym__val_number] = STATE(6724), + [sym_val_duration] = STATE(6851), + [sym_val_filesize] = STATE(6851), + [sym_val_binary] = STATE(6851), + [sym_val_string] = STATE(6851), + [sym__raw_str] = STATE(5291), + [sym__str_double_quotes] = STATE(5291), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(7221), + [sym__spread_list] = STATE(7300), + [sym_list_body] = STATE(7680), + [sym_val_entry] = STATE(7116), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(6851), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_list] = STATE(6334), + [sym__unquoted_in_list_with_expr] = STATE(7368), + [sym__unquoted_anonymous_prefix] = STATE(6813), [sym_comment] = STATE(866), - [ts_builtin_sym_end] = ACTIONS(2140), - [anon_sym_STAR_STAR] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_mod] = ACTIONS(3198), - [anon_sym_SLASH_SLASH] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3198), - [anon_sym_bit_DASHshl] = ACTIONS(3198), - [anon_sym_bit_DASHshr] = ACTIONS(3198), - [anon_sym_EQ_TILDE] = ACTIONS(3198), - [anon_sym_BANG_TILDE] = ACTIONS(3198), - [anon_sym_bit_DASHand] = ACTIONS(3198), - [anon_sym_bit_DASHxor] = ACTIONS(3198), - [anon_sym_bit_DASHor] = ACTIONS(3198), - [anon_sym_and] = ACTIONS(3198), - [anon_sym_xor] = ACTIONS(3198), - [anon_sym_or] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3198), - [anon_sym_not_DASHin] = ACTIONS(3198), - [anon_sym_starts_DASHwith] = ACTIONS(3198), - [anon_sym_ends_DASHwith] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3200), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_GT_EQ] = ACTIONS(3198), - [aux_sym_cmd_identifier_token41] = ACTIONS(3202), - [sym__newline] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2136), - [anon_sym_err_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_GT_PIPE] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2136), - [anon_sym_GT2] = ACTIONS(2136), - [anon_sym_DASH2] = ACTIONS(2136), - [anon_sym_in2] = ACTIONS(2136), - [anon_sym_STAR2] = ACTIONS(2136), - [anon_sym_and2] = ACTIONS(2136), - [anon_sym_xor2] = ACTIONS(2136), - [anon_sym_or2] = ACTIONS(2136), - [anon_sym_not_DASHin2] = ACTIONS(2136), - [anon_sym_starts_DASHwith2] = ACTIONS(2136), - [anon_sym_ends_DASHwith2] = ACTIONS(2136), - [anon_sym_EQ_EQ2] = ACTIONS(2136), - [anon_sym_BANG_EQ2] = ACTIONS(2136), - [anon_sym_LT2] = ACTIONS(2136), - [anon_sym_LT_EQ2] = ACTIONS(2136), - [anon_sym_GT_EQ2] = ACTIONS(2136), - [anon_sym_EQ_TILDE2] = ACTIONS(2136), - [anon_sym_BANG_TILDE2] = ACTIONS(2136), - [anon_sym_STAR_STAR2] = ACTIONS(2136), - [anon_sym_PLUS_PLUS2] = ACTIONS(2136), - [anon_sym_SLASH2] = ACTIONS(2136), - [anon_sym_mod2] = ACTIONS(2136), - [anon_sym_SLASH_SLASH2] = ACTIONS(2136), - [anon_sym_PLUS2] = ACTIONS(2136), - [anon_sym_bit_DASHshl2] = ACTIONS(2136), - [anon_sym_bit_DASHshr2] = ACTIONS(2136), - [anon_sym_bit_DASHand2] = ACTIONS(2136), - [anon_sym_bit_DASHxor2] = ACTIONS(2136), - [anon_sym_bit_DASHor2] = ACTIONS(2136), - [anon_sym_err_GT] = ACTIONS(2136), - [anon_sym_out_GT] = ACTIONS(2136), - [anon_sym_e_GT] = ACTIONS(2136), - [anon_sym_o_GT] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT] = ACTIONS(2136), - [anon_sym_err_GT_GT] = ACTIONS(2136), - [anon_sym_out_GT_GT] = ACTIONS(2136), - [anon_sym_e_GT_GT] = ACTIONS(2136), - [anon_sym_o_GT_GT] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2136), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(887), + [aux_sym_parameter_repeat2] = STATE(6641), + [aux_sym_list_body_repeat1] = STATE(973), + [sym__newline] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(3104), + [anon_sym_RBRACK] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(2632), + [anon_sym_DOLLAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_DOT_DOT] = ACTIONS(3114), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3116), + [anon_sym_DOT_DOT_LT] = ACTIONS(3116), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_true] = ACTIONS(3120), + [anon_sym_false] = ACTIONS(3120), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3122), + [aux_sym__val_number_decimal_token2] = ACTIONS(3124), + [aux_sym__val_number_decimal_token3] = ACTIONS(3126), + [aux_sym__val_number_decimal_token4] = ACTIONS(3128), + [aux_sym__val_number_token1] = ACTIONS(3130), + [aux_sym__val_number_token2] = ACTIONS(3130), + [aux_sym__val_number_token3] = ACTIONS(3130), + [aux_sym__val_number_token4] = ACTIONS(3132), + [aux_sym__val_number_token5] = ACTIONS(3132), + [aux_sym__val_number_token6] = ACTIONS(3132), + [anon_sym_0b] = ACTIONS(3134), + [anon_sym_0o] = ACTIONS(3136), + [anon_sym_0x] = ACTIONS(3136), + [sym_val_date] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym__str_single_quotes] = ACTIONS(3142), + [sym__str_back_ticks] = ACTIONS(3142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2672), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3144), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3146), }, [867] = { + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7300), + [sym_val_range] = STATE(7368), + [sym__val_range] = STATE(7740), + [sym__val_range_with_end] = STATE(7289), + [sym__value] = STATE(7368), + [sym_val_nothing] = STATE(6851), + [sym_val_bool] = STATE(6691), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5759), + [sym_val_number] = STATE(6851), + [sym__val_number_decimal] = STATE(5314), + [sym__val_number] = STATE(6724), + [sym_val_duration] = STATE(6851), + [sym_val_filesize] = STATE(6851), + [sym_val_binary] = STATE(6851), + [sym_val_string] = STATE(6851), + [sym__raw_str] = STATE(5291), + [sym__str_double_quotes] = STATE(5291), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(7182), + [sym__spread_list] = STATE(7300), + [sym_list_body] = STATE(7764), + [sym_val_entry] = STATE(7116), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(6851), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_list] = STATE(6334), + [sym__unquoted_in_list_with_expr] = STATE(7368), + [sym__unquoted_anonymous_prefix] = STATE(6813), [sym_comment] = STATE(867), - [anon_sym_STAR_STAR] = ACTIONS(3192), - [anon_sym_PLUS_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_mod] = ACTIONS(3192), - [anon_sym_SLASH_SLASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_bit_DASHshl] = ACTIONS(3192), - [anon_sym_bit_DASHshr] = ACTIONS(3192), - [anon_sym_EQ_TILDE] = ACTIONS(3192), - [anon_sym_BANG_TILDE] = ACTIONS(3192), - [anon_sym_bit_DASHand] = ACTIONS(3192), - [anon_sym_bit_DASHxor] = ACTIONS(3192), - [anon_sym_bit_DASHor] = ACTIONS(3192), - [anon_sym_and] = ACTIONS(3192), - [anon_sym_xor] = ACTIONS(3192), - [anon_sym_or] = ACTIONS(3192), - [anon_sym_in] = ACTIONS(3192), - [anon_sym_not_DASHin] = ACTIONS(3192), - [anon_sym_starts_DASHwith] = ACTIONS(3192), - [anon_sym_ends_DASHwith] = ACTIONS(3192), - [anon_sym_EQ_EQ] = ACTIONS(3192), - [anon_sym_BANG_EQ] = ACTIONS(3192), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_LT_EQ] = ACTIONS(3192), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_GT_EQ] = ACTIONS(3192), - [aux_sym_cmd_identifier_token41] = ACTIONS(3196), - [sym__newline] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2144), - [anon_sym_PIPE] = ACTIONS(2144), - [anon_sym_err_GT_PIPE] = ACTIONS(2144), - [anon_sym_out_GT_PIPE] = ACTIONS(2144), - [anon_sym_e_GT_PIPE] = ACTIONS(2144), - [anon_sym_o_GT_PIPE] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2144), - [anon_sym_GT2] = ACTIONS(2144), - [anon_sym_DASH2] = ACTIONS(2144), - [anon_sym_in2] = ACTIONS(2144), - [anon_sym_STAR2] = ACTIONS(2144), - [anon_sym_and2] = ACTIONS(2144), - [anon_sym_xor2] = ACTIONS(2144), - [anon_sym_or2] = ACTIONS(2144), - [anon_sym_not_DASHin2] = ACTIONS(2144), - [anon_sym_starts_DASHwith2] = ACTIONS(2144), - [anon_sym_ends_DASHwith2] = ACTIONS(2144), - [anon_sym_EQ_EQ2] = ACTIONS(2144), - [anon_sym_BANG_EQ2] = ACTIONS(2144), - [anon_sym_LT2] = ACTIONS(2144), - [anon_sym_LT_EQ2] = ACTIONS(2144), - [anon_sym_GT_EQ2] = ACTIONS(2144), - [anon_sym_EQ_TILDE2] = ACTIONS(2144), - [anon_sym_BANG_TILDE2] = ACTIONS(2144), - [anon_sym_STAR_STAR2] = ACTIONS(2144), - [anon_sym_PLUS_PLUS2] = ACTIONS(2144), - [anon_sym_SLASH2] = ACTIONS(2144), - [anon_sym_mod2] = ACTIONS(2144), - [anon_sym_SLASH_SLASH2] = ACTIONS(2144), - [anon_sym_PLUS2] = ACTIONS(2144), - [anon_sym_bit_DASHshl2] = ACTIONS(2144), - [anon_sym_bit_DASHshr2] = ACTIONS(2144), - [anon_sym_bit_DASHand2] = ACTIONS(2144), - [anon_sym_bit_DASHxor2] = ACTIONS(2144), - [anon_sym_bit_DASHor2] = ACTIONS(2144), - [anon_sym_err_GT] = ACTIONS(2144), - [anon_sym_out_GT] = ACTIONS(2144), - [anon_sym_e_GT] = ACTIONS(2144), - [anon_sym_o_GT] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT] = ACTIONS(2144), - [anon_sym_err_GT_GT] = ACTIONS(2144), - [anon_sym_out_GT_GT] = ACTIONS(2144), - [anon_sym_e_GT_GT] = ACTIONS(2144), - [anon_sym_o_GT_GT] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2144), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(883), + [aux_sym_parameter_repeat2] = STATE(6641), + [aux_sym_list_body_repeat1] = STATE(973), + [sym__newline] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(3104), + [anon_sym_RBRACK] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(2632), + [anon_sym_DOLLAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_DOT_DOT] = ACTIONS(3114), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3116), + [anon_sym_DOT_DOT_LT] = ACTIONS(3116), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_true] = ACTIONS(3120), + [anon_sym_false] = ACTIONS(3120), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3122), + [aux_sym__val_number_decimal_token2] = ACTIONS(3124), + [aux_sym__val_number_decimal_token3] = ACTIONS(3126), + [aux_sym__val_number_decimal_token4] = ACTIONS(3128), + [aux_sym__val_number_token1] = ACTIONS(3130), + [aux_sym__val_number_token2] = ACTIONS(3130), + [aux_sym__val_number_token3] = ACTIONS(3130), + [aux_sym__val_number_token4] = ACTIONS(3132), + [aux_sym__val_number_token5] = ACTIONS(3132), + [aux_sym__val_number_token6] = ACTIONS(3132), + [anon_sym_0b] = ACTIONS(3134), + [anon_sym_0o] = ACTIONS(3136), + [anon_sym_0x] = ACTIONS(3136), + [sym_val_date] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym__str_single_quotes] = ACTIONS(3142), + [sym__str_back_ticks] = ACTIONS(3142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2672), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3144), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3146), }, [868] = { + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7300), + [sym_val_range] = STATE(7368), + [sym__val_range] = STATE(7740), + [sym__val_range_with_end] = STATE(7289), + [sym__value] = STATE(7368), + [sym_val_nothing] = STATE(6851), + [sym_val_bool] = STATE(6691), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5759), + [sym_val_number] = STATE(6851), + [sym__val_number_decimal] = STATE(5314), + [sym__val_number] = STATE(6724), + [sym_val_duration] = STATE(6851), + [sym_val_filesize] = STATE(6851), + [sym_val_binary] = STATE(6851), + [sym_val_string] = STATE(6851), + [sym__raw_str] = STATE(5291), + [sym__str_double_quotes] = STATE(5291), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(6851), + [sym__spread_list] = STATE(7300), + [sym_list_body] = STATE(7764), + [sym_val_entry] = STATE(7116), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(6851), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_list] = STATE(6334), + [sym__unquoted_in_list_with_expr] = STATE(7368), + [sym__unquoted_anonymous_prefix] = STATE(6813), [sym_comment] = STATE(868), - [anon_sym_STAR_STAR] = ACTIONS(3192), - [anon_sym_PLUS_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_mod] = ACTIONS(3192), - [anon_sym_SLASH_SLASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_bit_DASHshl] = ACTIONS(3192), - [anon_sym_bit_DASHshr] = ACTIONS(3192), - [anon_sym_EQ_TILDE] = ACTIONS(3192), - [anon_sym_BANG_TILDE] = ACTIONS(3192), - [anon_sym_bit_DASHand] = ACTIONS(3192), - [anon_sym_bit_DASHxor] = ACTIONS(3192), - [anon_sym_bit_DASHor] = ACTIONS(3192), - [anon_sym_and] = ACTIONS(3192), - [anon_sym_xor] = ACTIONS(3192), - [anon_sym_or] = ACTIONS(3192), - [anon_sym_in] = ACTIONS(3192), - [anon_sym_not_DASHin] = ACTIONS(3192), - [anon_sym_starts_DASHwith] = ACTIONS(3192), - [anon_sym_ends_DASHwith] = ACTIONS(3192), - [anon_sym_EQ_EQ] = ACTIONS(3192), - [anon_sym_BANG_EQ] = ACTIONS(3192), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_LT_EQ] = ACTIONS(3192), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_GT_EQ] = ACTIONS(3192), - [aux_sym_cmd_identifier_token41] = ACTIONS(3196), - [sym__newline] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2136), - [anon_sym_err_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_GT_PIPE] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2136), - [anon_sym_GT2] = ACTIONS(2136), - [anon_sym_DASH2] = ACTIONS(2136), - [anon_sym_in2] = ACTIONS(2136), - [anon_sym_STAR2] = ACTIONS(2136), - [anon_sym_and2] = ACTIONS(2136), - [anon_sym_xor2] = ACTIONS(2136), - [anon_sym_or2] = ACTIONS(2136), - [anon_sym_not_DASHin2] = ACTIONS(2136), - [anon_sym_starts_DASHwith2] = ACTIONS(2136), - [anon_sym_ends_DASHwith2] = ACTIONS(2136), - [anon_sym_EQ_EQ2] = ACTIONS(2136), - [anon_sym_BANG_EQ2] = ACTIONS(2136), - [anon_sym_LT2] = ACTIONS(2136), - [anon_sym_LT_EQ2] = ACTIONS(2136), - [anon_sym_GT_EQ2] = ACTIONS(2136), - [anon_sym_EQ_TILDE2] = ACTIONS(2136), - [anon_sym_BANG_TILDE2] = ACTIONS(2136), - [anon_sym_STAR_STAR2] = ACTIONS(2136), - [anon_sym_PLUS_PLUS2] = ACTIONS(2136), - [anon_sym_SLASH2] = ACTIONS(2136), - [anon_sym_mod2] = ACTIONS(2136), - [anon_sym_SLASH_SLASH2] = ACTIONS(2136), - [anon_sym_PLUS2] = ACTIONS(2136), - [anon_sym_bit_DASHshl2] = ACTIONS(2136), - [anon_sym_bit_DASHshr2] = ACTIONS(2136), - [anon_sym_bit_DASHand2] = ACTIONS(2136), - [anon_sym_bit_DASHxor2] = ACTIONS(2136), - [anon_sym_bit_DASHor2] = ACTIONS(2136), - [anon_sym_err_GT] = ACTIONS(2136), - [anon_sym_out_GT] = ACTIONS(2136), - [anon_sym_e_GT] = ACTIONS(2136), - [anon_sym_o_GT] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT] = ACTIONS(2136), - [anon_sym_err_GT_GT] = ACTIONS(2136), - [anon_sym_out_GT_GT] = ACTIONS(2136), - [anon_sym_e_GT_GT] = ACTIONS(2136), - [anon_sym_o_GT_GT] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2136), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(873), + [aux_sym_parameter_repeat2] = STATE(6641), + [aux_sym_list_body_repeat1] = STATE(973), + [sym__newline] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(3150), + [anon_sym_RBRACK] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(2632), + [anon_sym_DOLLAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_DOT_DOT] = ACTIONS(3114), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3116), + [anon_sym_DOT_DOT_LT] = ACTIONS(3116), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_true] = ACTIONS(3120), + [anon_sym_false] = ACTIONS(3120), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3122), + [aux_sym__val_number_decimal_token2] = ACTIONS(3124), + [aux_sym__val_number_decimal_token3] = ACTIONS(3126), + [aux_sym__val_number_decimal_token4] = ACTIONS(3128), + [aux_sym__val_number_token1] = ACTIONS(3130), + [aux_sym__val_number_token2] = ACTIONS(3130), + [aux_sym__val_number_token3] = ACTIONS(3130), + [aux_sym__val_number_token4] = ACTIONS(3132), + [aux_sym__val_number_token5] = ACTIONS(3132), + [aux_sym__val_number_token6] = ACTIONS(3132), + [anon_sym_0b] = ACTIONS(3134), + [anon_sym_0o] = ACTIONS(3136), + [anon_sym_0x] = ACTIONS(3136), + [sym_val_date] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym__str_single_quotes] = ACTIONS(3142), + [sym__str_back_ticks] = ACTIONS(3142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2672), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3144), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3146), }, [869] = { - [sym_expr_parenthesized] = STATE(5958), - [sym__spread_parenthesized] = STATE(7448), - [sym_val_range] = STATE(7451), - [sym__val_range] = STATE(7776), - [sym__val_range_with_end] = STATE(7452), - [sym__value] = STATE(7451), - [sym_val_nothing] = STATE(7049), - [sym_val_bool] = STATE(6510), - [sym__spread_variable] = STATE(7454), - [sym_val_variable] = STATE(5708), - [sym_val_number] = STATE(7049), - [sym__val_number_decimal] = STATE(5233), - [sym__val_number] = STATE(7097), - [sym_val_duration] = STATE(7049), - [sym_val_filesize] = STATE(7049), - [sym_val_binary] = STATE(7049), - [sym_val_string] = STATE(7049), - [sym__raw_str] = STATE(5195), - [sym__str_double_quotes] = STATE(5195), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(7130), - [sym__spread_list] = STATE(7448), - [sym_val_entry] = STATE(7136), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(7049), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_list] = STATE(6604), - [sym__unquoted_in_list_with_expr] = STATE(7451), - [sym__unquoted_anonymous_prefix] = STATE(7039), [sym_comment] = STATE(869), - [aux_sym_shebang_repeat1] = STATE(2785), - [aux_sym_list_body_repeat1] = STATE(925), - [sym__newline] = ACTIONS(3204), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3114), - [aux_sym__val_number_decimal_token2] = ACTIONS(3116), - [aux_sym__val_number_decimal_token3] = ACTIONS(3118), - [aux_sym__val_number_decimal_token4] = ACTIONS(3120), - [aux_sym__val_number_token1] = ACTIONS(3122), - [aux_sym__val_number_token2] = ACTIONS(3122), - [aux_sym__val_number_token3] = ACTIONS(3122), - [aux_sym__val_number_token4] = ACTIONS(3124), - [aux_sym__val_number_token5] = ACTIONS(3124), - [aux_sym__val_number_token6] = ACTIONS(3124), - [anon_sym_0b] = ACTIONS(3126), - [anon_sym_0o] = ACTIONS(3128), - [anon_sym_0x] = ACTIONS(3128), - [sym_val_date] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym__str_single_quotes] = ACTIONS(3134), - [sym__str_back_ticks] = ACTIONS(3134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2596), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3136), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3138), + [anon_sym_STAR_STAR] = ACTIONS(3092), + [anon_sym_PLUS_PLUS] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3094), + [anon_sym_SLASH] = ACTIONS(3094), + [anon_sym_mod] = ACTIONS(3092), + [anon_sym_SLASH_SLASH] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(3094), + [anon_sym_DASH] = ACTIONS(3092), + [anon_sym_bit_DASHshl] = ACTIONS(3092), + [anon_sym_bit_DASHshr] = ACTIONS(3092), + [anon_sym_EQ_TILDE] = ACTIONS(3092), + [anon_sym_BANG_TILDE] = ACTIONS(3092), + [anon_sym_bit_DASHand] = ACTIONS(3092), + [anon_sym_bit_DASHxor] = ACTIONS(3092), + [anon_sym_bit_DASHor] = ACTIONS(3092), + [anon_sym_and] = ACTIONS(3092), + [anon_sym_xor] = ACTIONS(3092), + [anon_sym_or] = ACTIONS(3092), + [anon_sym_in] = ACTIONS(3092), + [anon_sym_not_DASHin] = ACTIONS(3092), + [anon_sym_has] = ACTIONS(3092), + [anon_sym_not_DASHhas] = ACTIONS(3092), + [anon_sym_starts_DASHwith] = ACTIONS(3092), + [anon_sym_ends_DASHwith] = ACTIONS(3092), + [anon_sym_EQ_EQ] = ACTIONS(3092), + [anon_sym_BANG_EQ] = ACTIONS(3092), + [anon_sym_LT] = ACTIONS(3094), + [anon_sym_LT_EQ] = ACTIONS(3092), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_GT_EQ] = ACTIONS(3092), + [aux_sym_cmd_identifier_token41] = ACTIONS(3096), + [sym__newline] = 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_GT2] = ACTIONS(2081), + [anon_sym_DASH2] = ACTIONS(2081), + [anon_sym_in2] = ACTIONS(2081), + [anon_sym_STAR2] = ACTIONS(2081), + [anon_sym_and2] = ACTIONS(2081), + [anon_sym_xor2] = ACTIONS(2081), + [anon_sym_or2] = ACTIONS(2081), + [anon_sym_not_DASHin2] = ACTIONS(2081), + [anon_sym_has2] = ACTIONS(2081), + [anon_sym_not_DASHhas2] = ACTIONS(2081), + [anon_sym_starts_DASHwith2] = ACTIONS(2081), + [anon_sym_ends_DASHwith2] = ACTIONS(2081), + [anon_sym_EQ_EQ2] = ACTIONS(2081), + [anon_sym_BANG_EQ2] = ACTIONS(2081), + [anon_sym_LT2] = ACTIONS(2081), + [anon_sym_LT_EQ2] = ACTIONS(2081), + [anon_sym_GT_EQ2] = ACTIONS(2081), + [anon_sym_EQ_TILDE2] = ACTIONS(2081), + [anon_sym_BANG_TILDE2] = ACTIONS(2081), + [anon_sym_STAR_STAR2] = ACTIONS(2081), + [anon_sym_PLUS_PLUS2] = ACTIONS(2081), + [anon_sym_SLASH2] = ACTIONS(2081), + [anon_sym_mod2] = ACTIONS(2081), + [anon_sym_SLASH_SLASH2] = ACTIONS(2081), + [anon_sym_PLUS2] = ACTIONS(2081), + [anon_sym_bit_DASHshl2] = ACTIONS(2081), + [anon_sym_bit_DASHshr2] = ACTIONS(2081), + [anon_sym_bit_DASHand2] = ACTIONS(2081), + [anon_sym_bit_DASHxor2] = ACTIONS(2081), + [anon_sym_bit_DASHor2] = ACTIONS(2081), + [anon_sym_err_GT] = ACTIONS(2081), + [anon_sym_out_GT] = ACTIONS(2081), + [anon_sym_e_GT] = ACTIONS(2081), + [anon_sym_o_GT] = ACTIONS(2081), + [anon_sym_err_PLUSout_GT] = ACTIONS(2081), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2081), + [anon_sym_o_PLUSe_GT] = ACTIONS(2081), + [anon_sym_e_PLUSo_GT] = ACTIONS(2081), + [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), + [anon_sym_POUND] = ACTIONS(3), }, [870] = { - [sym_expr_parenthesized] = STATE(5958), - [sym__spread_parenthesized] = STATE(7448), - [sym_val_range] = STATE(7451), - [sym__val_range] = STATE(7776), - [sym__val_range_with_end] = STATE(7452), - [sym__value] = STATE(7451), - [sym_val_nothing] = STATE(7049), - [sym_val_bool] = STATE(6510), - [sym__spread_variable] = STATE(7454), - [sym_val_variable] = STATE(5708), - [sym_val_number] = STATE(7049), - [sym__val_number_decimal] = STATE(5233), - [sym__val_number] = STATE(7097), - [sym_val_duration] = STATE(7049), - [sym_val_filesize] = STATE(7049), - [sym_val_binary] = STATE(7049), - [sym_val_string] = STATE(7049), - [sym__raw_str] = STATE(5195), - [sym__str_double_quotes] = STATE(5195), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(7049), - [sym__spread_list] = STATE(7448), - [sym_val_entry] = STATE(7136), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(7049), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_list] = STATE(6604), - [sym__unquoted_in_list_with_expr] = STATE(7451), - [sym__unquoted_anonymous_prefix] = STATE(7039), [sym_comment] = STATE(870), - [aux_sym_shebang_repeat1] = STATE(2785), - [aux_sym_list_body_repeat1] = STATE(925), - [sym__newline] = ACTIONS(3204), - [anon_sym_LBRACK] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3114), - [aux_sym__val_number_decimal_token2] = ACTIONS(3116), - [aux_sym__val_number_decimal_token3] = ACTIONS(3118), - [aux_sym__val_number_decimal_token4] = ACTIONS(3120), - [aux_sym__val_number_token1] = ACTIONS(3122), - [aux_sym__val_number_token2] = ACTIONS(3122), - [aux_sym__val_number_token3] = ACTIONS(3122), - [aux_sym__val_number_token4] = ACTIONS(3124), - [aux_sym__val_number_token5] = ACTIONS(3124), - [aux_sym__val_number_token6] = ACTIONS(3124), - [anon_sym_0b] = ACTIONS(3126), - [anon_sym_0o] = ACTIONS(3128), - [anon_sym_0x] = ACTIONS(3128), - [sym_val_date] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym__str_single_quotes] = ACTIONS(3134), - [sym__str_back_ticks] = ACTIONS(3134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2596), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3136), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3138), + [anon_sym_STAR_STAR] = ACTIONS(3092), + [anon_sym_PLUS_PLUS] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3094), + [anon_sym_SLASH] = ACTIONS(3094), + [anon_sym_mod] = ACTIONS(3092), + [anon_sym_SLASH_SLASH] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(3094), + [anon_sym_DASH] = ACTIONS(3092), + [anon_sym_bit_DASHshl] = ACTIONS(3092), + [anon_sym_bit_DASHshr] = ACTIONS(3092), + [anon_sym_EQ_TILDE] = ACTIONS(3092), + [anon_sym_BANG_TILDE] = ACTIONS(3092), + [anon_sym_bit_DASHand] = ACTIONS(3092), + [anon_sym_bit_DASHxor] = ACTIONS(3092), + [anon_sym_bit_DASHor] = ACTIONS(3092), + [anon_sym_and] = ACTIONS(3092), + [anon_sym_xor] = ACTIONS(3092), + [anon_sym_or] = ACTIONS(3092), + [anon_sym_in] = ACTIONS(3092), + [anon_sym_not_DASHin] = ACTIONS(3092), + [anon_sym_has] = ACTIONS(3092), + [anon_sym_not_DASHhas] = ACTIONS(3092), + [anon_sym_starts_DASHwith] = ACTIONS(3092), + [anon_sym_ends_DASHwith] = ACTIONS(3092), + [anon_sym_EQ_EQ] = ACTIONS(3092), + [anon_sym_BANG_EQ] = ACTIONS(3092), + [anon_sym_LT] = ACTIONS(3094), + [anon_sym_LT_EQ] = ACTIONS(3092), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_GT_EQ] = ACTIONS(3092), + [aux_sym_cmd_identifier_token41] = ACTIONS(3096), + [sym__newline] = ACTIONS(2073), + [anon_sym_PIPE] = ACTIONS(2073), + [anon_sym_err_GT_PIPE] = ACTIONS(2073), + [anon_sym_out_GT_PIPE] = ACTIONS(2073), + [anon_sym_e_GT_PIPE] = ACTIONS(2073), + [anon_sym_o_GT_PIPE] = ACTIONS(2073), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2073), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2073), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2073), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2073), + [anon_sym_GT2] = ACTIONS(2073), + [anon_sym_DASH2] = ACTIONS(2073), + [anon_sym_in2] = ACTIONS(2073), + [anon_sym_STAR2] = ACTIONS(2073), + [anon_sym_and2] = ACTIONS(2073), + [anon_sym_xor2] = ACTIONS(2073), + [anon_sym_or2] = ACTIONS(2073), + [anon_sym_not_DASHin2] = ACTIONS(2073), + [anon_sym_has2] = ACTIONS(2073), + [anon_sym_not_DASHhas2] = ACTIONS(2073), + [anon_sym_starts_DASHwith2] = ACTIONS(2073), + [anon_sym_ends_DASHwith2] = ACTIONS(2073), + [anon_sym_EQ_EQ2] = ACTIONS(2073), + [anon_sym_BANG_EQ2] = ACTIONS(2073), + [anon_sym_LT2] = ACTIONS(2073), + [anon_sym_LT_EQ2] = ACTIONS(2073), + [anon_sym_GT_EQ2] = ACTIONS(2073), + [anon_sym_EQ_TILDE2] = ACTIONS(2073), + [anon_sym_BANG_TILDE2] = ACTIONS(2073), + [anon_sym_STAR_STAR2] = ACTIONS(2073), + [anon_sym_PLUS_PLUS2] = ACTIONS(2073), + [anon_sym_SLASH2] = ACTIONS(2073), + [anon_sym_mod2] = ACTIONS(2073), + [anon_sym_SLASH_SLASH2] = ACTIONS(2073), + [anon_sym_PLUS2] = ACTIONS(2073), + [anon_sym_bit_DASHshl2] = ACTIONS(2073), + [anon_sym_bit_DASHshr2] = ACTIONS(2073), + [anon_sym_bit_DASHand2] = ACTIONS(2073), + [anon_sym_bit_DASHxor2] = ACTIONS(2073), + [anon_sym_bit_DASHor2] = ACTIONS(2073), + [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), + [anon_sym_POUND] = ACTIONS(3), }, [871] = { - [sym_expr_parenthesized] = STATE(5958), - [sym__spread_parenthesized] = STATE(7448), - [sym_val_range] = STATE(7451), - [sym__val_range] = STATE(7776), - [sym__val_range_with_end] = STATE(7452), - [sym__value] = STATE(7451), - [sym_val_nothing] = STATE(7049), - [sym_val_bool] = STATE(6510), - [sym__spread_variable] = STATE(7454), - [sym_val_variable] = STATE(5708), - [sym_val_number] = STATE(7049), - [sym__val_number_decimal] = STATE(5233), - [sym__val_number] = STATE(7097), - [sym_val_duration] = STATE(7049), - [sym_val_filesize] = STATE(7049), - [sym_val_binary] = STATE(7049), - [sym_val_string] = STATE(7049), - [sym__raw_str] = STATE(5195), - [sym__str_double_quotes] = STATE(5195), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(7046), - [sym__spread_list] = STATE(7448), - [sym_val_entry] = STATE(7136), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(7049), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_list] = STATE(6604), - [sym__unquoted_in_list_with_expr] = STATE(7451), - [sym__unquoted_anonymous_prefix] = STATE(7039), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7300), + [sym_val_range] = STATE(7368), + [sym__val_range] = STATE(7740), + [sym__val_range_with_end] = STATE(7289), + [sym__value] = STATE(7368), + [sym_val_nothing] = STATE(6851), + [sym_val_bool] = STATE(6691), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5759), + [sym_val_number] = STATE(6851), + [sym__val_number_decimal] = STATE(5314), + [sym__val_number] = STATE(6724), + [sym_val_duration] = STATE(6851), + [sym_val_filesize] = STATE(6851), + [sym_val_binary] = STATE(6851), + [sym_val_string] = STATE(6851), + [sym__raw_str] = STATE(5291), + [sym__str_double_quotes] = STATE(5291), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(7157), + [sym__spread_list] = STATE(7300), + [sym_val_entry] = STATE(6728), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(6851), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_list] = STATE(6334), + [sym__unquoted_in_list_with_expr] = STATE(7368), + [sym__unquoted_anonymous_prefix] = STATE(6813), [sym_comment] = STATE(871), - [aux_sym_shebang_repeat1] = STATE(2785), - [aux_sym_list_body_repeat1] = STATE(925), - [sym__newline] = ACTIONS(3204), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3114), - [aux_sym__val_number_decimal_token2] = ACTIONS(3116), - [aux_sym__val_number_decimal_token3] = ACTIONS(3118), - [aux_sym__val_number_decimal_token4] = ACTIONS(3120), - [aux_sym__val_number_token1] = ACTIONS(3122), - [aux_sym__val_number_token2] = ACTIONS(3122), - [aux_sym__val_number_token3] = ACTIONS(3122), - [aux_sym__val_number_token4] = ACTIONS(3124), - [aux_sym__val_number_token5] = ACTIONS(3124), - [aux_sym__val_number_token6] = ACTIONS(3124), - [anon_sym_0b] = ACTIONS(3126), - [anon_sym_0o] = ACTIONS(3128), - [anon_sym_0x] = ACTIONS(3128), - [sym_val_date] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym__str_single_quotes] = ACTIONS(3134), - [sym__str_back_ticks] = ACTIONS(3134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2596), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3136), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3138), + [aux_sym_shebang_repeat1] = STATE(2778), + [aux_sym_list_body_repeat1] = STATE(1047), + [sym__newline] = ACTIONS(3190), + [anon_sym_LBRACK] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_DOLLAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_DOT_DOT] = ACTIONS(3114), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3116), + [anon_sym_DOT_DOT_LT] = ACTIONS(3116), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_true] = ACTIONS(3120), + [anon_sym_false] = ACTIONS(3120), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3122), + [aux_sym__val_number_decimal_token2] = ACTIONS(3124), + [aux_sym__val_number_decimal_token3] = ACTIONS(3126), + [aux_sym__val_number_decimal_token4] = ACTIONS(3128), + [aux_sym__val_number_token1] = ACTIONS(3130), + [aux_sym__val_number_token2] = ACTIONS(3130), + [aux_sym__val_number_token3] = ACTIONS(3130), + [aux_sym__val_number_token4] = ACTIONS(3132), + [aux_sym__val_number_token5] = ACTIONS(3132), + [aux_sym__val_number_token6] = ACTIONS(3132), + [anon_sym_0b] = ACTIONS(3134), + [anon_sym_0o] = ACTIONS(3136), + [anon_sym_0x] = ACTIONS(3136), + [sym_val_date] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym__str_single_quotes] = ACTIONS(3142), + [sym__str_back_ticks] = ACTIONS(3142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2672), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3144), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3146), }, [872] = { - [sym_expr_parenthesized] = STATE(5958), - [sym__spread_parenthesized] = STATE(7448), - [sym_val_range] = STATE(7451), - [sym__val_range] = STATE(7776), - [sym__val_range_with_end] = STATE(7452), - [sym__value] = STATE(7451), - [sym_val_nothing] = STATE(7049), - [sym_val_bool] = STATE(6510), - [sym__spread_variable] = STATE(7454), - [sym_val_variable] = STATE(5708), - [sym_val_number] = STATE(7049), - [sym__val_number_decimal] = STATE(5233), - [sym__val_number] = STATE(7097), - [sym_val_duration] = STATE(7049), - [sym_val_filesize] = STATE(7049), - [sym_val_binary] = STATE(7049), - [sym_val_string] = STATE(7049), - [sym__raw_str] = STATE(5195), - [sym__str_double_quotes] = STATE(5195), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(7119), - [sym__spread_list] = STATE(7448), - [sym_val_entry] = STATE(7136), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(7049), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_list] = STATE(6604), - [sym__unquoted_in_list_with_expr] = STATE(7451), - [sym__unquoted_anonymous_prefix] = STATE(7039), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7300), + [sym_val_range] = STATE(7368), + [sym__val_range] = STATE(7740), + [sym__val_range_with_end] = STATE(7289), + [sym__value] = STATE(7368), + [sym_val_nothing] = STATE(6851), + [sym_val_bool] = STATE(6691), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5759), + [sym_val_number] = STATE(6851), + [sym__val_number_decimal] = STATE(5314), + [sym__val_number] = STATE(6724), + [sym_val_duration] = STATE(6851), + [sym_val_filesize] = STATE(6851), + [sym_val_binary] = STATE(6851), + [sym_val_string] = STATE(6851), + [sym__raw_str] = STATE(5291), + [sym__str_double_quotes] = STATE(5291), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(7258), + [sym__spread_list] = STATE(7300), + [sym_val_entry] = STATE(6728), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(6851), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_list] = STATE(6334), + [sym__unquoted_in_list_with_expr] = STATE(7368), + [sym__unquoted_anonymous_prefix] = STATE(6813), [sym_comment] = STATE(872), - [aux_sym_shebang_repeat1] = STATE(2785), - [aux_sym_list_body_repeat1] = STATE(925), - [sym__newline] = ACTIONS(3204), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3114), - [aux_sym__val_number_decimal_token2] = ACTIONS(3116), - [aux_sym__val_number_decimal_token3] = ACTIONS(3118), - [aux_sym__val_number_decimal_token4] = ACTIONS(3120), - [aux_sym__val_number_token1] = ACTIONS(3122), - [aux_sym__val_number_token2] = ACTIONS(3122), - [aux_sym__val_number_token3] = ACTIONS(3122), - [aux_sym__val_number_token4] = ACTIONS(3124), - [aux_sym__val_number_token5] = ACTIONS(3124), - [aux_sym__val_number_token6] = ACTIONS(3124), - [anon_sym_0b] = ACTIONS(3126), - [anon_sym_0o] = ACTIONS(3128), - [anon_sym_0x] = ACTIONS(3128), - [sym_val_date] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym__str_single_quotes] = ACTIONS(3134), - [sym__str_back_ticks] = ACTIONS(3134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2596), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3136), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3138), + [aux_sym_shebang_repeat1] = STATE(2778), + [aux_sym_list_body_repeat1] = STATE(1047), + [sym__newline] = ACTIONS(3190), + [anon_sym_LBRACK] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_DOLLAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_DOT_DOT] = ACTIONS(3114), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3116), + [anon_sym_DOT_DOT_LT] = ACTIONS(3116), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_true] = ACTIONS(3120), + [anon_sym_false] = ACTIONS(3120), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3122), + [aux_sym__val_number_decimal_token2] = ACTIONS(3124), + [aux_sym__val_number_decimal_token3] = ACTIONS(3126), + [aux_sym__val_number_decimal_token4] = ACTIONS(3128), + [aux_sym__val_number_token1] = ACTIONS(3130), + [aux_sym__val_number_token2] = ACTIONS(3130), + [aux_sym__val_number_token3] = ACTIONS(3130), + [aux_sym__val_number_token4] = ACTIONS(3132), + [aux_sym__val_number_token5] = ACTIONS(3132), + [aux_sym__val_number_token6] = ACTIONS(3132), + [anon_sym_0b] = ACTIONS(3134), + [anon_sym_0o] = ACTIONS(3136), + [anon_sym_0x] = ACTIONS(3136), + [sym_val_date] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym__str_single_quotes] = ACTIONS(3142), + [sym__str_back_ticks] = ACTIONS(3142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2672), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3144), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3146), }, [873] = { - [sym_expr_parenthesized] = STATE(5958), - [sym__spread_parenthesized] = STATE(7448), - [sym_val_range] = STATE(7451), - [sym__val_range] = STATE(7776), - [sym__val_range_with_end] = STATE(7452), - [sym__value] = STATE(7451), - [sym_val_nothing] = STATE(7049), - [sym_val_bool] = STATE(6510), - [sym__spread_variable] = STATE(7454), - [sym_val_variable] = STATE(5708), - [sym_val_number] = STATE(7049), - [sym__val_number_decimal] = STATE(5233), - [sym__val_number] = STATE(7097), - [sym_val_duration] = STATE(7049), - [sym_val_filesize] = STATE(7049), - [sym_val_binary] = STATE(7049), - [sym_val_string] = STATE(7049), - [sym__raw_str] = STATE(5195), - [sym__str_double_quotes] = STATE(5195), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(7153), - [sym__spread_list] = STATE(7448), - [sym_val_entry] = STATE(7136), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(7049), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_list] = STATE(6604), - [sym__unquoted_in_list_with_expr] = STATE(7451), - [sym__unquoted_anonymous_prefix] = STATE(7039), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7300), + [sym_val_range] = STATE(7368), + [sym__val_range] = STATE(7740), + [sym__val_range_with_end] = STATE(7289), + [sym__value] = STATE(7368), + [sym_val_nothing] = STATE(6851), + [sym_val_bool] = STATE(6691), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5759), + [sym_val_number] = STATE(6851), + [sym__val_number_decimal] = STATE(5314), + [sym__val_number] = STATE(6724), + [sym_val_duration] = STATE(6851), + [sym_val_filesize] = STATE(6851), + [sym_val_binary] = STATE(6851), + [sym_val_string] = STATE(6851), + [sym__raw_str] = STATE(5291), + [sym__str_double_quotes] = STATE(5291), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(6851), + [sym__spread_list] = STATE(7300), + [sym_val_entry] = STATE(6728), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(6851), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_list] = STATE(6334), + [sym__unquoted_in_list_with_expr] = STATE(7368), + [sym__unquoted_anonymous_prefix] = STATE(6813), [sym_comment] = STATE(873), - [aux_sym_shebang_repeat1] = STATE(2785), - [aux_sym_list_body_repeat1] = STATE(925), - [sym__newline] = ACTIONS(3204), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3114), - [aux_sym__val_number_decimal_token2] = ACTIONS(3116), - [aux_sym__val_number_decimal_token3] = ACTIONS(3118), - [aux_sym__val_number_decimal_token4] = ACTIONS(3120), - [aux_sym__val_number_token1] = ACTIONS(3122), - [aux_sym__val_number_token2] = ACTIONS(3122), - [aux_sym__val_number_token3] = ACTIONS(3122), - [aux_sym__val_number_token4] = ACTIONS(3124), - [aux_sym__val_number_token5] = ACTIONS(3124), - [aux_sym__val_number_token6] = ACTIONS(3124), - [anon_sym_0b] = ACTIONS(3126), - [anon_sym_0o] = ACTIONS(3128), - [anon_sym_0x] = ACTIONS(3128), - [sym_val_date] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym__str_single_quotes] = ACTIONS(3134), - [sym__str_back_ticks] = ACTIONS(3134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2596), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3136), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3138), + [aux_sym_shebang_repeat1] = STATE(2778), + [aux_sym_list_body_repeat1] = STATE(1047), + [sym__newline] = ACTIONS(3190), + [anon_sym_LBRACK] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_DOLLAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_DOT_DOT] = ACTIONS(3114), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3116), + [anon_sym_DOT_DOT_LT] = ACTIONS(3116), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_true] = ACTIONS(3120), + [anon_sym_false] = ACTIONS(3120), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3122), + [aux_sym__val_number_decimal_token2] = ACTIONS(3124), + [aux_sym__val_number_decimal_token3] = ACTIONS(3126), + [aux_sym__val_number_decimal_token4] = ACTIONS(3128), + [aux_sym__val_number_token1] = ACTIONS(3130), + [aux_sym__val_number_token2] = ACTIONS(3130), + [aux_sym__val_number_token3] = ACTIONS(3130), + [aux_sym__val_number_token4] = ACTIONS(3132), + [aux_sym__val_number_token5] = ACTIONS(3132), + [aux_sym__val_number_token6] = ACTIONS(3132), + [anon_sym_0b] = ACTIONS(3134), + [anon_sym_0o] = ACTIONS(3136), + [anon_sym_0x] = ACTIONS(3136), + [sym_val_date] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym__str_single_quotes] = ACTIONS(3142), + [sym__str_back_ticks] = ACTIONS(3142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2672), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3144), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3146), }, [874] = { - [sym_expr_parenthesized] = STATE(5958), - [sym__spread_parenthesized] = STATE(7448), - [sym_val_range] = STATE(7451), - [sym__val_range] = STATE(7776), - [sym__val_range_with_end] = STATE(7452), - [sym__value] = STATE(7451), - [sym_val_nothing] = STATE(7049), - [sym_val_bool] = STATE(6510), - [sym__spread_variable] = STATE(7454), - [sym_val_variable] = STATE(5708), - [sym_val_number] = STATE(7049), - [sym__val_number_decimal] = STATE(5233), - [sym__val_number] = STATE(7097), - [sym_val_duration] = STATE(7049), - [sym_val_filesize] = STATE(7049), - [sym_val_binary] = STATE(7049), - [sym_val_string] = STATE(7049), - [sym__raw_str] = STATE(5195), - [sym__str_double_quotes] = STATE(5195), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(7163), - [sym__spread_list] = STATE(7448), - [sym_val_entry] = STATE(7136), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(7049), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_list] = STATE(6604), - [sym__unquoted_in_list_with_expr] = STATE(7451), - [sym__unquoted_anonymous_prefix] = STATE(7039), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7300), + [sym_val_range] = STATE(7368), + [sym__val_range] = STATE(7740), + [sym__val_range_with_end] = STATE(7289), + [sym__value] = STATE(7368), + [sym_val_nothing] = STATE(6851), + [sym_val_bool] = STATE(6691), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5759), + [sym_val_number] = STATE(6851), + [sym__val_number_decimal] = STATE(5314), + [sym__val_number] = STATE(6724), + [sym_val_duration] = STATE(6851), + [sym_val_filesize] = STATE(6851), + [sym_val_binary] = STATE(6851), + [sym_val_string] = STATE(6851), + [sym__raw_str] = STATE(5291), + [sym__str_double_quotes] = STATE(5291), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(7158), + [sym__spread_list] = STATE(7300), + [sym_val_entry] = STATE(6728), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(6851), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_list] = STATE(6334), + [sym__unquoted_in_list_with_expr] = STATE(7368), + [sym__unquoted_anonymous_prefix] = STATE(6813), [sym_comment] = STATE(874), - [aux_sym_shebang_repeat1] = STATE(2785), - [aux_sym_list_body_repeat1] = STATE(925), - [sym__newline] = ACTIONS(3204), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3114), - [aux_sym__val_number_decimal_token2] = ACTIONS(3116), - [aux_sym__val_number_decimal_token3] = ACTIONS(3118), - [aux_sym__val_number_decimal_token4] = ACTIONS(3120), - [aux_sym__val_number_token1] = ACTIONS(3122), - [aux_sym__val_number_token2] = ACTIONS(3122), - [aux_sym__val_number_token3] = ACTIONS(3122), - [aux_sym__val_number_token4] = ACTIONS(3124), - [aux_sym__val_number_token5] = ACTIONS(3124), - [aux_sym__val_number_token6] = ACTIONS(3124), - [anon_sym_0b] = ACTIONS(3126), - [anon_sym_0o] = ACTIONS(3128), - [anon_sym_0x] = ACTIONS(3128), - [sym_val_date] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym__str_single_quotes] = ACTIONS(3134), - [sym__str_back_ticks] = ACTIONS(3134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2596), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3136), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3138), + [aux_sym_shebang_repeat1] = STATE(2778), + [aux_sym_list_body_repeat1] = STATE(1047), + [sym__newline] = ACTIONS(3190), + [anon_sym_LBRACK] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_DOLLAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_DOT_DOT] = ACTIONS(3114), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3116), + [anon_sym_DOT_DOT_LT] = ACTIONS(3116), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_true] = ACTIONS(3120), + [anon_sym_false] = ACTIONS(3120), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3122), + [aux_sym__val_number_decimal_token2] = ACTIONS(3124), + [aux_sym__val_number_decimal_token3] = ACTIONS(3126), + [aux_sym__val_number_decimal_token4] = ACTIONS(3128), + [aux_sym__val_number_token1] = ACTIONS(3130), + [aux_sym__val_number_token2] = ACTIONS(3130), + [aux_sym__val_number_token3] = ACTIONS(3130), + [aux_sym__val_number_token4] = ACTIONS(3132), + [aux_sym__val_number_token5] = ACTIONS(3132), + [aux_sym__val_number_token6] = ACTIONS(3132), + [anon_sym_0b] = ACTIONS(3134), + [anon_sym_0o] = ACTIONS(3136), + [anon_sym_0x] = ACTIONS(3136), + [sym_val_date] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym__str_single_quotes] = ACTIONS(3142), + [sym__str_back_ticks] = ACTIONS(3142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2672), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3144), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3146), }, [875] = { - [sym_expr_parenthesized] = STATE(5958), - [sym__spread_parenthesized] = STATE(7448), - [sym_val_range] = STATE(7451), - [sym__val_range] = STATE(7776), - [sym__val_range_with_end] = STATE(7452), - [sym__value] = STATE(7451), - [sym_val_nothing] = STATE(7049), - [sym_val_bool] = STATE(6510), - [sym__spread_variable] = STATE(7454), - [sym_val_variable] = STATE(5708), - [sym_val_number] = STATE(7049), - [sym__val_number_decimal] = STATE(5233), - [sym__val_number] = STATE(7097), - [sym_val_duration] = STATE(7049), - [sym_val_filesize] = STATE(7049), - [sym_val_binary] = STATE(7049), - [sym_val_string] = STATE(7049), - [sym__raw_str] = STATE(5195), - [sym__str_double_quotes] = STATE(5195), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(7172), - [sym__spread_list] = STATE(7448), - [sym_val_entry] = STATE(7136), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(7049), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_list] = STATE(6604), - [sym__unquoted_in_list_with_expr] = STATE(7451), - [sym__unquoted_anonymous_prefix] = STATE(7039), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7300), + [sym_val_range] = STATE(7368), + [sym__val_range] = STATE(7740), + [sym__val_range_with_end] = STATE(7289), + [sym__value] = STATE(7368), + [sym_val_nothing] = STATE(6851), + [sym_val_bool] = STATE(6691), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5759), + [sym_val_number] = STATE(6851), + [sym__val_number_decimal] = STATE(5314), + [sym__val_number] = STATE(6724), + [sym_val_duration] = STATE(6851), + [sym_val_filesize] = STATE(6851), + [sym_val_binary] = STATE(6851), + [sym_val_string] = STATE(6851), + [sym__raw_str] = STATE(5291), + [sym__str_double_quotes] = STATE(5291), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(7245), + [sym__spread_list] = STATE(7300), + [sym_val_entry] = STATE(6728), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(6851), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_list] = STATE(6334), + [sym__unquoted_in_list_with_expr] = STATE(7368), + [sym__unquoted_anonymous_prefix] = STATE(6813), [sym_comment] = STATE(875), - [aux_sym_shebang_repeat1] = STATE(2785), - [aux_sym_list_body_repeat1] = STATE(925), - [sym__newline] = ACTIONS(3204), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3114), - [aux_sym__val_number_decimal_token2] = ACTIONS(3116), - [aux_sym__val_number_decimal_token3] = ACTIONS(3118), - [aux_sym__val_number_decimal_token4] = ACTIONS(3120), - [aux_sym__val_number_token1] = ACTIONS(3122), - [aux_sym__val_number_token2] = ACTIONS(3122), - [aux_sym__val_number_token3] = ACTIONS(3122), - [aux_sym__val_number_token4] = ACTIONS(3124), - [aux_sym__val_number_token5] = ACTIONS(3124), - [aux_sym__val_number_token6] = ACTIONS(3124), - [anon_sym_0b] = ACTIONS(3126), - [anon_sym_0o] = ACTIONS(3128), - [anon_sym_0x] = ACTIONS(3128), - [sym_val_date] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym__str_single_quotes] = ACTIONS(3134), - [sym__str_back_ticks] = ACTIONS(3134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2596), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3136), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3138), + [aux_sym_shebang_repeat1] = STATE(2778), + [aux_sym_list_body_repeat1] = STATE(1047), + [sym__newline] = ACTIONS(3190), + [anon_sym_LBRACK] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_DOLLAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_DOT_DOT] = ACTIONS(3114), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3116), + [anon_sym_DOT_DOT_LT] = ACTIONS(3116), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_true] = ACTIONS(3120), + [anon_sym_false] = ACTIONS(3120), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3122), + [aux_sym__val_number_decimal_token2] = ACTIONS(3124), + [aux_sym__val_number_decimal_token3] = ACTIONS(3126), + [aux_sym__val_number_decimal_token4] = ACTIONS(3128), + [aux_sym__val_number_token1] = ACTIONS(3130), + [aux_sym__val_number_token2] = ACTIONS(3130), + [aux_sym__val_number_token3] = ACTIONS(3130), + [aux_sym__val_number_token4] = ACTIONS(3132), + [aux_sym__val_number_token5] = ACTIONS(3132), + [aux_sym__val_number_token6] = ACTIONS(3132), + [anon_sym_0b] = ACTIONS(3134), + [anon_sym_0o] = ACTIONS(3136), + [anon_sym_0x] = ACTIONS(3136), + [sym_val_date] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym__str_single_quotes] = ACTIONS(3142), + [sym__str_back_ticks] = ACTIONS(3142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2672), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3144), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3146), }, [876] = { - [sym_expr_parenthesized] = STATE(5958), - [sym__spread_parenthesized] = STATE(7448), - [sym_val_range] = STATE(7451), - [sym__val_range] = STATE(7776), - [sym__val_range_with_end] = STATE(7452), - [sym__value] = STATE(7451), - [sym_val_nothing] = STATE(7049), - [sym_val_bool] = STATE(6510), - [sym__spread_variable] = STATE(7454), - [sym_val_variable] = STATE(5708), - [sym_val_number] = STATE(7049), - [sym__val_number_decimal] = STATE(5233), - [sym__val_number] = STATE(7097), - [sym_val_duration] = STATE(7049), - [sym_val_filesize] = STATE(7049), - [sym_val_binary] = STATE(7049), - [sym_val_string] = STATE(7049), - [sym__raw_str] = STATE(5195), - [sym__str_double_quotes] = STATE(5195), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(7180), - [sym__spread_list] = STATE(7448), - [sym_val_entry] = STATE(7136), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(7049), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_list] = STATE(6604), - [sym__unquoted_in_list_with_expr] = STATE(7451), - [sym__unquoted_anonymous_prefix] = STATE(7039), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7300), + [sym_val_range] = STATE(7368), + [sym__val_range] = STATE(7740), + [sym__val_range_with_end] = STATE(7289), + [sym__value] = STATE(7368), + [sym_val_nothing] = STATE(6851), + [sym_val_bool] = STATE(6691), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5759), + [sym_val_number] = STATE(6851), + [sym__val_number_decimal] = STATE(5314), + [sym__val_number] = STATE(6724), + [sym_val_duration] = STATE(6851), + [sym_val_filesize] = STATE(6851), + [sym_val_binary] = STATE(6851), + [sym_val_string] = STATE(6851), + [sym__raw_str] = STATE(5291), + [sym__str_double_quotes] = STATE(5291), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(7251), + [sym__spread_list] = STATE(7300), + [sym_val_entry] = STATE(6728), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(6851), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_list] = STATE(6334), + [sym__unquoted_in_list_with_expr] = STATE(7368), + [sym__unquoted_anonymous_prefix] = STATE(6813), [sym_comment] = STATE(876), - [aux_sym_shebang_repeat1] = STATE(2785), - [aux_sym_list_body_repeat1] = STATE(925), - [sym__newline] = ACTIONS(3204), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3114), - [aux_sym__val_number_decimal_token2] = ACTIONS(3116), - [aux_sym__val_number_decimal_token3] = ACTIONS(3118), - [aux_sym__val_number_decimal_token4] = ACTIONS(3120), - [aux_sym__val_number_token1] = ACTIONS(3122), - [aux_sym__val_number_token2] = ACTIONS(3122), - [aux_sym__val_number_token3] = ACTIONS(3122), - [aux_sym__val_number_token4] = ACTIONS(3124), - [aux_sym__val_number_token5] = ACTIONS(3124), - [aux_sym__val_number_token6] = ACTIONS(3124), - [anon_sym_0b] = ACTIONS(3126), - [anon_sym_0o] = ACTIONS(3128), - [anon_sym_0x] = ACTIONS(3128), - [sym_val_date] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym__str_single_quotes] = ACTIONS(3134), - [sym__str_back_ticks] = ACTIONS(3134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2596), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3136), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3138), + [aux_sym_shebang_repeat1] = STATE(2778), + [aux_sym_list_body_repeat1] = STATE(1047), + [sym__newline] = ACTIONS(3190), + [anon_sym_LBRACK] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_DOLLAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_DOT_DOT] = ACTIONS(3114), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3116), + [anon_sym_DOT_DOT_LT] = ACTIONS(3116), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_true] = ACTIONS(3120), + [anon_sym_false] = ACTIONS(3120), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3122), + [aux_sym__val_number_decimal_token2] = ACTIONS(3124), + [aux_sym__val_number_decimal_token3] = ACTIONS(3126), + [aux_sym__val_number_decimal_token4] = ACTIONS(3128), + [aux_sym__val_number_token1] = ACTIONS(3130), + [aux_sym__val_number_token2] = ACTIONS(3130), + [aux_sym__val_number_token3] = ACTIONS(3130), + [aux_sym__val_number_token4] = ACTIONS(3132), + [aux_sym__val_number_token5] = ACTIONS(3132), + [aux_sym__val_number_token6] = ACTIONS(3132), + [anon_sym_0b] = ACTIONS(3134), + [anon_sym_0o] = ACTIONS(3136), + [anon_sym_0x] = ACTIONS(3136), + [sym_val_date] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym__str_single_quotes] = ACTIONS(3142), + [sym__str_back_ticks] = ACTIONS(3142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2672), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3144), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3146), }, [877] = { - [sym_expr_parenthesized] = STATE(5958), - [sym__spread_parenthesized] = STATE(7448), - [sym_val_range] = STATE(7451), - [sym__val_range] = STATE(7776), - [sym__val_range_with_end] = STATE(7452), - [sym__value] = STATE(7451), - [sym_val_nothing] = STATE(7049), - [sym_val_bool] = STATE(6510), - [sym__spread_variable] = STATE(7454), - [sym_val_variable] = STATE(5708), - [sym_val_number] = STATE(7049), - [sym__val_number_decimal] = STATE(5233), - [sym__val_number] = STATE(7097), - [sym_val_duration] = STATE(7049), - [sym_val_filesize] = STATE(7049), - [sym_val_binary] = STATE(7049), - [sym_val_string] = STATE(7049), - [sym__raw_str] = STATE(5195), - [sym__str_double_quotes] = STATE(5195), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(7189), - [sym__spread_list] = STATE(7448), - [sym_val_entry] = STATE(7136), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(7049), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_list] = STATE(6604), - [sym__unquoted_in_list_with_expr] = STATE(7451), - [sym__unquoted_anonymous_prefix] = STATE(7039), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7300), + [sym_val_range] = STATE(7368), + [sym__val_range] = STATE(7740), + [sym__val_range_with_end] = STATE(7289), + [sym__value] = STATE(7368), + [sym_val_nothing] = STATE(6851), + [sym_val_bool] = STATE(6691), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5759), + [sym_val_number] = STATE(6851), + [sym__val_number_decimal] = STATE(5314), + [sym__val_number] = STATE(6724), + [sym_val_duration] = STATE(6851), + [sym_val_filesize] = STATE(6851), + [sym_val_binary] = STATE(6851), + [sym_val_string] = STATE(6851), + [sym__raw_str] = STATE(5291), + [sym__str_double_quotes] = STATE(5291), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(7034), + [sym__spread_list] = STATE(7300), + [sym_val_entry] = STATE(6728), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(6851), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_list] = STATE(6334), + [sym__unquoted_in_list_with_expr] = STATE(7368), + [sym__unquoted_anonymous_prefix] = STATE(6813), [sym_comment] = STATE(877), - [aux_sym_shebang_repeat1] = STATE(2785), - [aux_sym_list_body_repeat1] = STATE(925), - [sym__newline] = ACTIONS(3204), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3114), - [aux_sym__val_number_decimal_token2] = ACTIONS(3116), - [aux_sym__val_number_decimal_token3] = ACTIONS(3118), - [aux_sym__val_number_decimal_token4] = ACTIONS(3120), - [aux_sym__val_number_token1] = ACTIONS(3122), - [aux_sym__val_number_token2] = ACTIONS(3122), - [aux_sym__val_number_token3] = ACTIONS(3122), - [aux_sym__val_number_token4] = ACTIONS(3124), - [aux_sym__val_number_token5] = ACTIONS(3124), - [aux_sym__val_number_token6] = ACTIONS(3124), - [anon_sym_0b] = ACTIONS(3126), - [anon_sym_0o] = ACTIONS(3128), - [anon_sym_0x] = ACTIONS(3128), - [sym_val_date] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym__str_single_quotes] = ACTIONS(3134), - [sym__str_back_ticks] = ACTIONS(3134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2596), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3136), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3138), + [aux_sym_shebang_repeat1] = STATE(2778), + [aux_sym_list_body_repeat1] = STATE(1047), + [sym__newline] = ACTIONS(3190), + [anon_sym_LBRACK] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_DOLLAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_DOT_DOT] = ACTIONS(3114), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3116), + [anon_sym_DOT_DOT_LT] = ACTIONS(3116), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_true] = ACTIONS(3120), + [anon_sym_false] = ACTIONS(3120), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3122), + [aux_sym__val_number_decimal_token2] = ACTIONS(3124), + [aux_sym__val_number_decimal_token3] = ACTIONS(3126), + [aux_sym__val_number_decimal_token4] = ACTIONS(3128), + [aux_sym__val_number_token1] = ACTIONS(3130), + [aux_sym__val_number_token2] = ACTIONS(3130), + [aux_sym__val_number_token3] = ACTIONS(3130), + [aux_sym__val_number_token4] = ACTIONS(3132), + [aux_sym__val_number_token5] = ACTIONS(3132), + [aux_sym__val_number_token6] = ACTIONS(3132), + [anon_sym_0b] = ACTIONS(3134), + [anon_sym_0o] = ACTIONS(3136), + [anon_sym_0x] = ACTIONS(3136), + [sym_val_date] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym__str_single_quotes] = ACTIONS(3142), + [sym__str_back_ticks] = ACTIONS(3142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2672), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3144), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3146), }, [878] = { - [sym_expr_parenthesized] = STATE(5958), - [sym__spread_parenthesized] = STATE(7448), - [sym_val_range] = STATE(7451), - [sym__val_range] = STATE(7776), - [sym__val_range_with_end] = STATE(7452), - [sym__value] = STATE(7451), - [sym_val_nothing] = STATE(7049), - [sym_val_bool] = STATE(6510), - [sym__spread_variable] = STATE(7454), - [sym_val_variable] = STATE(5708), - [sym_val_number] = STATE(7049), - [sym__val_number_decimal] = STATE(5233), - [sym__val_number] = STATE(7097), - [sym_val_duration] = STATE(7049), - [sym_val_filesize] = STATE(7049), - [sym_val_binary] = STATE(7049), - [sym_val_string] = STATE(7049), - [sym__raw_str] = STATE(5195), - [sym__str_double_quotes] = STATE(5195), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(7198), - [sym__spread_list] = STATE(7448), - [sym_val_entry] = STATE(7136), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(7049), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_list] = STATE(6604), - [sym__unquoted_in_list_with_expr] = STATE(7451), - [sym__unquoted_anonymous_prefix] = STATE(7039), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7300), + [sym_val_range] = STATE(7368), + [sym__val_range] = STATE(7740), + [sym__val_range_with_end] = STATE(7289), + [sym__value] = STATE(7368), + [sym_val_nothing] = STATE(6851), + [sym_val_bool] = STATE(6691), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5759), + [sym_val_number] = STATE(6851), + [sym__val_number_decimal] = STATE(5314), + [sym__val_number] = STATE(6724), + [sym_val_duration] = STATE(6851), + [sym_val_filesize] = STATE(6851), + [sym_val_binary] = STATE(6851), + [sym_val_string] = STATE(6851), + [sym__raw_str] = STATE(5291), + [sym__str_double_quotes] = STATE(5291), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(7110), + [sym__spread_list] = STATE(7300), + [sym_val_entry] = STATE(6728), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(6851), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_list] = STATE(6334), + [sym__unquoted_in_list_with_expr] = STATE(7368), + [sym__unquoted_anonymous_prefix] = STATE(6813), [sym_comment] = STATE(878), - [aux_sym_shebang_repeat1] = STATE(2785), - [aux_sym_list_body_repeat1] = STATE(925), - [sym__newline] = ACTIONS(3204), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3114), - [aux_sym__val_number_decimal_token2] = ACTIONS(3116), - [aux_sym__val_number_decimal_token3] = ACTIONS(3118), - [aux_sym__val_number_decimal_token4] = ACTIONS(3120), - [aux_sym__val_number_token1] = ACTIONS(3122), - [aux_sym__val_number_token2] = ACTIONS(3122), - [aux_sym__val_number_token3] = ACTIONS(3122), - [aux_sym__val_number_token4] = ACTIONS(3124), - [aux_sym__val_number_token5] = ACTIONS(3124), - [aux_sym__val_number_token6] = ACTIONS(3124), - [anon_sym_0b] = ACTIONS(3126), - [anon_sym_0o] = ACTIONS(3128), - [anon_sym_0x] = ACTIONS(3128), - [sym_val_date] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym__str_single_quotes] = ACTIONS(3134), - [sym__str_back_ticks] = ACTIONS(3134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2596), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3136), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3138), + [aux_sym_shebang_repeat1] = STATE(2778), + [aux_sym_list_body_repeat1] = STATE(1047), + [sym__newline] = ACTIONS(3190), + [anon_sym_LBRACK] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_DOLLAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_DOT_DOT] = ACTIONS(3114), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3116), + [anon_sym_DOT_DOT_LT] = ACTIONS(3116), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_true] = ACTIONS(3120), + [anon_sym_false] = ACTIONS(3120), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3122), + [aux_sym__val_number_decimal_token2] = ACTIONS(3124), + [aux_sym__val_number_decimal_token3] = ACTIONS(3126), + [aux_sym__val_number_decimal_token4] = ACTIONS(3128), + [aux_sym__val_number_token1] = ACTIONS(3130), + [aux_sym__val_number_token2] = ACTIONS(3130), + [aux_sym__val_number_token3] = ACTIONS(3130), + [aux_sym__val_number_token4] = ACTIONS(3132), + [aux_sym__val_number_token5] = ACTIONS(3132), + [aux_sym__val_number_token6] = ACTIONS(3132), + [anon_sym_0b] = ACTIONS(3134), + [anon_sym_0o] = ACTIONS(3136), + [anon_sym_0x] = ACTIONS(3136), + [sym_val_date] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym__str_single_quotes] = ACTIONS(3142), + [sym__str_back_ticks] = ACTIONS(3142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2672), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3144), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3146), }, [879] = { - [sym_expr_parenthesized] = STATE(5958), - [sym__spread_parenthesized] = STATE(7448), - [sym_val_range] = STATE(7451), - [sym__val_range] = STATE(7776), - [sym__val_range_with_end] = STATE(7452), - [sym__value] = STATE(7451), - [sym_val_nothing] = STATE(7049), - [sym_val_bool] = STATE(6510), - [sym__spread_variable] = STATE(7454), - [sym_val_variable] = STATE(5708), - [sym_val_number] = STATE(7049), - [sym__val_number_decimal] = STATE(5233), - [sym__val_number] = STATE(7097), - [sym_val_duration] = STATE(7049), - [sym_val_filesize] = STATE(7049), - [sym_val_binary] = STATE(7049), - [sym_val_string] = STATE(7049), - [sym__raw_str] = STATE(5195), - [sym__str_double_quotes] = STATE(5195), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(7208), - [sym__spread_list] = STATE(7448), - [sym_val_entry] = STATE(7136), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(7049), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_list] = STATE(6604), - [sym__unquoted_in_list_with_expr] = STATE(7451), - [sym__unquoted_anonymous_prefix] = STATE(7039), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7300), + [sym_val_range] = STATE(7368), + [sym__val_range] = STATE(7740), + [sym__val_range_with_end] = STATE(7289), + [sym__value] = STATE(7368), + [sym_val_nothing] = STATE(6851), + [sym_val_bool] = STATE(6691), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5759), + [sym_val_number] = STATE(6851), + [sym__val_number_decimal] = STATE(5314), + [sym__val_number] = STATE(6724), + [sym_val_duration] = STATE(6851), + [sym_val_filesize] = STATE(6851), + [sym_val_binary] = STATE(6851), + [sym_val_string] = STATE(6851), + [sym__raw_str] = STATE(5291), + [sym__str_double_quotes] = STATE(5291), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(7138), + [sym__spread_list] = STATE(7300), + [sym_val_entry] = STATE(6728), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(6851), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_list] = STATE(6334), + [sym__unquoted_in_list_with_expr] = STATE(7368), + [sym__unquoted_anonymous_prefix] = STATE(6813), [sym_comment] = STATE(879), - [aux_sym_shebang_repeat1] = STATE(2785), - [aux_sym_list_body_repeat1] = STATE(925), - [sym__newline] = ACTIONS(3204), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3114), - [aux_sym__val_number_decimal_token2] = ACTIONS(3116), - [aux_sym__val_number_decimal_token3] = ACTIONS(3118), - [aux_sym__val_number_decimal_token4] = ACTIONS(3120), - [aux_sym__val_number_token1] = ACTIONS(3122), - [aux_sym__val_number_token2] = ACTIONS(3122), - [aux_sym__val_number_token3] = ACTIONS(3122), - [aux_sym__val_number_token4] = ACTIONS(3124), - [aux_sym__val_number_token5] = ACTIONS(3124), - [aux_sym__val_number_token6] = ACTIONS(3124), - [anon_sym_0b] = ACTIONS(3126), - [anon_sym_0o] = ACTIONS(3128), - [anon_sym_0x] = ACTIONS(3128), - [sym_val_date] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym__str_single_quotes] = ACTIONS(3134), - [sym__str_back_ticks] = ACTIONS(3134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2596), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3136), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3138), + [aux_sym_shebang_repeat1] = STATE(2778), + [aux_sym_list_body_repeat1] = STATE(1047), + [sym__newline] = ACTIONS(3190), + [anon_sym_LBRACK] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_DOLLAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_DOT_DOT] = ACTIONS(3114), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3116), + [anon_sym_DOT_DOT_LT] = ACTIONS(3116), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_true] = ACTIONS(3120), + [anon_sym_false] = ACTIONS(3120), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3122), + [aux_sym__val_number_decimal_token2] = ACTIONS(3124), + [aux_sym__val_number_decimal_token3] = ACTIONS(3126), + [aux_sym__val_number_decimal_token4] = ACTIONS(3128), + [aux_sym__val_number_token1] = ACTIONS(3130), + [aux_sym__val_number_token2] = ACTIONS(3130), + [aux_sym__val_number_token3] = ACTIONS(3130), + [aux_sym__val_number_token4] = ACTIONS(3132), + [aux_sym__val_number_token5] = ACTIONS(3132), + [aux_sym__val_number_token6] = ACTIONS(3132), + [anon_sym_0b] = ACTIONS(3134), + [anon_sym_0o] = ACTIONS(3136), + [anon_sym_0x] = ACTIONS(3136), + [sym_val_date] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym__str_single_quotes] = ACTIONS(3142), + [sym__str_back_ticks] = ACTIONS(3142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2672), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3144), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3146), }, [880] = { - [sym_expr_parenthesized] = STATE(5958), - [sym__spread_parenthesized] = STATE(7448), - [sym_val_range] = STATE(7451), - [sym__val_range] = STATE(7776), - [sym__val_range_with_end] = STATE(7452), - [sym__value] = STATE(7451), - [sym_val_nothing] = STATE(7049), - [sym_val_bool] = STATE(6510), - [sym__spread_variable] = STATE(7454), - [sym_val_variable] = STATE(5708), - [sym_val_number] = STATE(7049), - [sym__val_number_decimal] = STATE(5233), - [sym__val_number] = STATE(7097), - [sym_val_duration] = STATE(7049), - [sym_val_filesize] = STATE(7049), - [sym_val_binary] = STATE(7049), - [sym_val_string] = STATE(7049), - [sym__raw_str] = STATE(5195), - [sym__str_double_quotes] = STATE(5195), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(7217), - [sym__spread_list] = STATE(7448), - [sym_val_entry] = STATE(7136), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(7049), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_list] = STATE(6604), - [sym__unquoted_in_list_with_expr] = STATE(7451), - [sym__unquoted_anonymous_prefix] = STATE(7039), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7300), + [sym_val_range] = STATE(7368), + [sym__val_range] = STATE(7740), + [sym__val_range_with_end] = STATE(7289), + [sym__value] = STATE(7368), + [sym_val_nothing] = STATE(6851), + [sym_val_bool] = STATE(6691), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5759), + [sym_val_number] = STATE(6851), + [sym__val_number_decimal] = STATE(5314), + [sym__val_number] = STATE(6724), + [sym_val_duration] = STATE(6851), + [sym_val_filesize] = STATE(6851), + [sym_val_binary] = STATE(6851), + [sym_val_string] = STATE(6851), + [sym__raw_str] = STATE(5291), + [sym__str_double_quotes] = STATE(5291), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(7149), + [sym__spread_list] = STATE(7300), + [sym_val_entry] = STATE(6728), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(6851), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_list] = STATE(6334), + [sym__unquoted_in_list_with_expr] = STATE(7368), + [sym__unquoted_anonymous_prefix] = STATE(6813), [sym_comment] = STATE(880), - [aux_sym_shebang_repeat1] = STATE(2785), - [aux_sym_list_body_repeat1] = STATE(925), - [sym__newline] = ACTIONS(3204), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3114), - [aux_sym__val_number_decimal_token2] = ACTIONS(3116), - [aux_sym__val_number_decimal_token3] = ACTIONS(3118), - [aux_sym__val_number_decimal_token4] = ACTIONS(3120), - [aux_sym__val_number_token1] = ACTIONS(3122), - [aux_sym__val_number_token2] = ACTIONS(3122), - [aux_sym__val_number_token3] = ACTIONS(3122), - [aux_sym__val_number_token4] = ACTIONS(3124), - [aux_sym__val_number_token5] = ACTIONS(3124), - [aux_sym__val_number_token6] = ACTIONS(3124), - [anon_sym_0b] = ACTIONS(3126), - [anon_sym_0o] = ACTIONS(3128), - [anon_sym_0x] = ACTIONS(3128), - [sym_val_date] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym__str_single_quotes] = ACTIONS(3134), - [sym__str_back_ticks] = ACTIONS(3134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2596), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3136), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3138), + [aux_sym_shebang_repeat1] = STATE(2778), + [aux_sym_list_body_repeat1] = STATE(1047), + [sym__newline] = ACTIONS(3190), + [anon_sym_LBRACK] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_DOLLAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_DOT_DOT] = ACTIONS(3114), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3116), + [anon_sym_DOT_DOT_LT] = ACTIONS(3116), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_true] = ACTIONS(3120), + [anon_sym_false] = ACTIONS(3120), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3122), + [aux_sym__val_number_decimal_token2] = ACTIONS(3124), + [aux_sym__val_number_decimal_token3] = ACTIONS(3126), + [aux_sym__val_number_decimal_token4] = ACTIONS(3128), + [aux_sym__val_number_token1] = ACTIONS(3130), + [aux_sym__val_number_token2] = ACTIONS(3130), + [aux_sym__val_number_token3] = ACTIONS(3130), + [aux_sym__val_number_token4] = ACTIONS(3132), + [aux_sym__val_number_token5] = ACTIONS(3132), + [aux_sym__val_number_token6] = ACTIONS(3132), + [anon_sym_0b] = ACTIONS(3134), + [anon_sym_0o] = ACTIONS(3136), + [anon_sym_0x] = ACTIONS(3136), + [sym_val_date] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym__str_single_quotes] = ACTIONS(3142), + [sym__str_back_ticks] = ACTIONS(3142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2672), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3144), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3146), }, [881] = { - [sym_expr_parenthesized] = STATE(5958), - [sym__spread_parenthesized] = STATE(7448), - [sym_val_range] = STATE(7451), - [sym__val_range] = STATE(7776), - [sym__val_range_with_end] = STATE(7452), - [sym__value] = STATE(7451), - [sym_val_nothing] = STATE(7049), - [sym_val_bool] = STATE(6510), - [sym__spread_variable] = STATE(7454), - [sym_val_variable] = STATE(5708), - [sym_val_number] = STATE(7049), - [sym__val_number_decimal] = STATE(5233), - [sym__val_number] = STATE(7097), - [sym_val_duration] = STATE(7049), - [sym_val_filesize] = STATE(7049), - [sym_val_binary] = STATE(7049), - [sym_val_string] = STATE(7049), - [sym__raw_str] = STATE(5195), - [sym__str_double_quotes] = STATE(5195), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(7227), - [sym__spread_list] = STATE(7448), - [sym_val_entry] = STATE(7136), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(7049), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_list] = STATE(6604), - [sym__unquoted_in_list_with_expr] = STATE(7451), - [sym__unquoted_anonymous_prefix] = STATE(7039), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7300), + [sym_val_range] = STATE(7368), + [sym__val_range] = STATE(7740), + [sym__val_range_with_end] = STATE(7289), + [sym__value] = STATE(7368), + [sym_val_nothing] = STATE(6851), + [sym_val_bool] = STATE(6691), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5759), + [sym_val_number] = STATE(6851), + [sym__val_number_decimal] = STATE(5314), + [sym__val_number] = STATE(6724), + [sym_val_duration] = STATE(6851), + [sym_val_filesize] = STATE(6851), + [sym_val_binary] = STATE(6851), + [sym_val_string] = STATE(6851), + [sym__raw_str] = STATE(5291), + [sym__str_double_quotes] = STATE(5291), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(7166), + [sym__spread_list] = STATE(7300), + [sym_val_entry] = STATE(6728), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(6851), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_list] = STATE(6334), + [sym__unquoted_in_list_with_expr] = STATE(7368), + [sym__unquoted_anonymous_prefix] = STATE(6813), [sym_comment] = STATE(881), - [aux_sym_shebang_repeat1] = STATE(2785), - [aux_sym_list_body_repeat1] = STATE(925), - [sym__newline] = ACTIONS(3204), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3114), - [aux_sym__val_number_decimal_token2] = ACTIONS(3116), - [aux_sym__val_number_decimal_token3] = ACTIONS(3118), - [aux_sym__val_number_decimal_token4] = ACTIONS(3120), - [aux_sym__val_number_token1] = ACTIONS(3122), - [aux_sym__val_number_token2] = ACTIONS(3122), - [aux_sym__val_number_token3] = ACTIONS(3122), - [aux_sym__val_number_token4] = ACTIONS(3124), - [aux_sym__val_number_token5] = ACTIONS(3124), - [aux_sym__val_number_token6] = ACTIONS(3124), - [anon_sym_0b] = ACTIONS(3126), - [anon_sym_0o] = ACTIONS(3128), - [anon_sym_0x] = ACTIONS(3128), - [sym_val_date] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym__str_single_quotes] = ACTIONS(3134), - [sym__str_back_ticks] = ACTIONS(3134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2596), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3136), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3138), + [aux_sym_shebang_repeat1] = STATE(2778), + [aux_sym_list_body_repeat1] = STATE(1047), + [sym__newline] = ACTIONS(3190), + [anon_sym_LBRACK] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_DOLLAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_DOT_DOT] = ACTIONS(3114), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3116), + [anon_sym_DOT_DOT_LT] = ACTIONS(3116), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_true] = ACTIONS(3120), + [anon_sym_false] = ACTIONS(3120), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3122), + [aux_sym__val_number_decimal_token2] = ACTIONS(3124), + [aux_sym__val_number_decimal_token3] = ACTIONS(3126), + [aux_sym__val_number_decimal_token4] = ACTIONS(3128), + [aux_sym__val_number_token1] = ACTIONS(3130), + [aux_sym__val_number_token2] = ACTIONS(3130), + [aux_sym__val_number_token3] = ACTIONS(3130), + [aux_sym__val_number_token4] = ACTIONS(3132), + [aux_sym__val_number_token5] = ACTIONS(3132), + [aux_sym__val_number_token6] = ACTIONS(3132), + [anon_sym_0b] = ACTIONS(3134), + [anon_sym_0o] = ACTIONS(3136), + [anon_sym_0x] = ACTIONS(3136), + [sym_val_date] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym__str_single_quotes] = ACTIONS(3142), + [sym__str_back_ticks] = ACTIONS(3142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2672), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3144), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3146), }, [882] = { - [sym_expr_parenthesized] = STATE(5958), - [sym__spread_parenthesized] = STATE(7448), - [sym_val_range] = STATE(7451), - [sym__val_range] = STATE(7776), - [sym__val_range_with_end] = STATE(7452), - [sym__value] = STATE(7451), - [sym_val_nothing] = STATE(7049), - [sym_val_bool] = STATE(6510), - [sym__spread_variable] = STATE(7454), - [sym_val_variable] = STATE(5708), - [sym_val_number] = STATE(7049), - [sym__val_number_decimal] = STATE(5233), - [sym__val_number] = STATE(7097), - [sym_val_duration] = STATE(7049), - [sym_val_filesize] = STATE(7049), - [sym_val_binary] = STATE(7049), - [sym_val_string] = STATE(7049), - [sym__raw_str] = STATE(5195), - [sym__str_double_quotes] = STATE(5195), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(7235), - [sym__spread_list] = STATE(7448), - [sym_val_entry] = STATE(7136), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(7049), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_list] = STATE(6604), - [sym__unquoted_in_list_with_expr] = STATE(7451), - [sym__unquoted_anonymous_prefix] = STATE(7039), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7300), + [sym_val_range] = STATE(7368), + [sym__val_range] = STATE(7740), + [sym__val_range_with_end] = STATE(7289), + [sym__value] = STATE(7368), + [sym_val_nothing] = STATE(6851), + [sym_val_bool] = STATE(6691), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5759), + [sym_val_number] = STATE(6851), + [sym__val_number_decimal] = STATE(5314), + [sym__val_number] = STATE(6724), + [sym_val_duration] = STATE(6851), + [sym_val_filesize] = STATE(6851), + [sym_val_binary] = STATE(6851), + [sym_val_string] = STATE(6851), + [sym__raw_str] = STATE(5291), + [sym__str_double_quotes] = STATE(5291), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(7175), + [sym__spread_list] = STATE(7300), + [sym_val_entry] = STATE(6728), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(6851), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_list] = STATE(6334), + [sym__unquoted_in_list_with_expr] = STATE(7368), + [sym__unquoted_anonymous_prefix] = STATE(6813), [sym_comment] = STATE(882), - [aux_sym_shebang_repeat1] = STATE(2785), - [aux_sym_list_body_repeat1] = STATE(925), - [sym__newline] = ACTIONS(3204), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3114), - [aux_sym__val_number_decimal_token2] = ACTIONS(3116), - [aux_sym__val_number_decimal_token3] = ACTIONS(3118), - [aux_sym__val_number_decimal_token4] = ACTIONS(3120), - [aux_sym__val_number_token1] = ACTIONS(3122), - [aux_sym__val_number_token2] = ACTIONS(3122), - [aux_sym__val_number_token3] = ACTIONS(3122), - [aux_sym__val_number_token4] = ACTIONS(3124), - [aux_sym__val_number_token5] = ACTIONS(3124), - [aux_sym__val_number_token6] = ACTIONS(3124), - [anon_sym_0b] = ACTIONS(3126), - [anon_sym_0o] = ACTIONS(3128), - [anon_sym_0x] = ACTIONS(3128), - [sym_val_date] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym__str_single_quotes] = ACTIONS(3134), - [sym__str_back_ticks] = ACTIONS(3134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2596), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3136), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3138), + [aux_sym_shebang_repeat1] = STATE(2778), + [aux_sym_list_body_repeat1] = STATE(1047), + [sym__newline] = ACTIONS(3190), + [anon_sym_LBRACK] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_DOLLAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_DOT_DOT] = ACTIONS(3114), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3116), + [anon_sym_DOT_DOT_LT] = ACTIONS(3116), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_true] = ACTIONS(3120), + [anon_sym_false] = ACTIONS(3120), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3122), + [aux_sym__val_number_decimal_token2] = ACTIONS(3124), + [aux_sym__val_number_decimal_token3] = ACTIONS(3126), + [aux_sym__val_number_decimal_token4] = ACTIONS(3128), + [aux_sym__val_number_token1] = ACTIONS(3130), + [aux_sym__val_number_token2] = ACTIONS(3130), + [aux_sym__val_number_token3] = ACTIONS(3130), + [aux_sym__val_number_token4] = ACTIONS(3132), + [aux_sym__val_number_token5] = ACTIONS(3132), + [aux_sym__val_number_token6] = ACTIONS(3132), + [anon_sym_0b] = ACTIONS(3134), + [anon_sym_0o] = ACTIONS(3136), + [anon_sym_0x] = ACTIONS(3136), + [sym_val_date] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym__str_single_quotes] = ACTIONS(3142), + [sym__str_back_ticks] = ACTIONS(3142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2672), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3144), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3146), }, [883] = { - [sym_expr_parenthesized] = STATE(5958), - [sym__spread_parenthesized] = STATE(7448), - [sym_val_range] = STATE(7451), - [sym__val_range] = STATE(7776), - [sym__val_range_with_end] = STATE(7452), - [sym__value] = STATE(7451), - [sym_val_nothing] = STATE(7049), - [sym_val_bool] = STATE(6510), - [sym__spread_variable] = STATE(7454), - [sym_val_variable] = STATE(5708), - [sym_val_number] = STATE(7049), - [sym__val_number_decimal] = STATE(5233), - [sym__val_number] = STATE(7097), - [sym_val_duration] = STATE(7049), - [sym_val_filesize] = STATE(7049), - [sym_val_binary] = STATE(7049), - [sym_val_string] = STATE(7049), - [sym__raw_str] = STATE(5195), - [sym__str_double_quotes] = STATE(5195), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(7242), - [sym__spread_list] = STATE(7448), - [sym_val_entry] = STATE(7136), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(7049), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_list] = STATE(6604), - [sym__unquoted_in_list_with_expr] = STATE(7451), - [sym__unquoted_anonymous_prefix] = STATE(7039), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7300), + [sym_val_range] = STATE(7368), + [sym__val_range] = STATE(7740), + [sym__val_range_with_end] = STATE(7289), + [sym__value] = STATE(7368), + [sym_val_nothing] = STATE(6851), + [sym_val_bool] = STATE(6691), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5759), + [sym_val_number] = STATE(6851), + [sym__val_number_decimal] = STATE(5314), + [sym__val_number] = STATE(6724), + [sym_val_duration] = STATE(6851), + [sym_val_filesize] = STATE(6851), + [sym_val_binary] = STATE(6851), + [sym_val_string] = STATE(6851), + [sym__raw_str] = STATE(5291), + [sym__str_double_quotes] = STATE(5291), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(7184), + [sym__spread_list] = STATE(7300), + [sym_val_entry] = STATE(6728), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(6851), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_list] = STATE(6334), + [sym__unquoted_in_list_with_expr] = STATE(7368), + [sym__unquoted_anonymous_prefix] = STATE(6813), [sym_comment] = STATE(883), - [aux_sym_shebang_repeat1] = STATE(2785), - [aux_sym_list_body_repeat1] = STATE(925), - [sym__newline] = ACTIONS(3204), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3114), - [aux_sym__val_number_decimal_token2] = ACTIONS(3116), - [aux_sym__val_number_decimal_token3] = ACTIONS(3118), - [aux_sym__val_number_decimal_token4] = ACTIONS(3120), - [aux_sym__val_number_token1] = ACTIONS(3122), - [aux_sym__val_number_token2] = ACTIONS(3122), - [aux_sym__val_number_token3] = ACTIONS(3122), - [aux_sym__val_number_token4] = ACTIONS(3124), - [aux_sym__val_number_token5] = ACTIONS(3124), - [aux_sym__val_number_token6] = ACTIONS(3124), - [anon_sym_0b] = ACTIONS(3126), - [anon_sym_0o] = ACTIONS(3128), - [anon_sym_0x] = ACTIONS(3128), - [sym_val_date] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym__str_single_quotes] = ACTIONS(3134), - [sym__str_back_ticks] = ACTIONS(3134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2596), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3136), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3138), + [aux_sym_shebang_repeat1] = STATE(2778), + [aux_sym_list_body_repeat1] = STATE(1047), + [sym__newline] = ACTIONS(3190), + [anon_sym_LBRACK] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_DOLLAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_DOT_DOT] = ACTIONS(3114), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3116), + [anon_sym_DOT_DOT_LT] = ACTIONS(3116), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_true] = ACTIONS(3120), + [anon_sym_false] = ACTIONS(3120), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3122), + [aux_sym__val_number_decimal_token2] = ACTIONS(3124), + [aux_sym__val_number_decimal_token3] = ACTIONS(3126), + [aux_sym__val_number_decimal_token4] = ACTIONS(3128), + [aux_sym__val_number_token1] = ACTIONS(3130), + [aux_sym__val_number_token2] = ACTIONS(3130), + [aux_sym__val_number_token3] = ACTIONS(3130), + [aux_sym__val_number_token4] = ACTIONS(3132), + [aux_sym__val_number_token5] = ACTIONS(3132), + [aux_sym__val_number_token6] = ACTIONS(3132), + [anon_sym_0b] = ACTIONS(3134), + [anon_sym_0o] = ACTIONS(3136), + [anon_sym_0x] = ACTIONS(3136), + [sym_val_date] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym__str_single_quotes] = ACTIONS(3142), + [sym__str_back_ticks] = ACTIONS(3142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2672), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3144), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3146), }, [884] = { - [sym_expr_parenthesized] = STATE(5958), - [sym__spread_parenthesized] = STATE(7448), - [sym_val_range] = STATE(7451), - [sym__val_range] = STATE(7776), - [sym__val_range_with_end] = STATE(7452), - [sym__value] = STATE(7451), - [sym_val_nothing] = STATE(7049), - [sym_val_bool] = STATE(6510), - [sym__spread_variable] = STATE(7454), - [sym_val_variable] = STATE(5708), - [sym_val_number] = STATE(7049), - [sym__val_number_decimal] = STATE(5233), - [sym__val_number] = STATE(7097), - [sym_val_duration] = STATE(7049), - [sym_val_filesize] = STATE(7049), - [sym_val_binary] = STATE(7049), - [sym_val_string] = STATE(7049), - [sym__raw_str] = STATE(5195), - [sym__str_double_quotes] = STATE(5195), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(7249), - [sym__spread_list] = STATE(7448), - [sym_val_entry] = STATE(7136), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(7049), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_list] = STATE(6604), - [sym__unquoted_in_list_with_expr] = STATE(7451), - [sym__unquoted_anonymous_prefix] = STATE(7039), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7300), + [sym_val_range] = STATE(7368), + [sym__val_range] = STATE(7740), + [sym__val_range_with_end] = STATE(7289), + [sym__value] = STATE(7368), + [sym_val_nothing] = STATE(6851), + [sym_val_bool] = STATE(6691), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5759), + [sym_val_number] = STATE(6851), + [sym__val_number_decimal] = STATE(5314), + [sym__val_number] = STATE(6724), + [sym_val_duration] = STATE(6851), + [sym_val_filesize] = STATE(6851), + [sym_val_binary] = STATE(6851), + [sym_val_string] = STATE(6851), + [sym__raw_str] = STATE(5291), + [sym__str_double_quotes] = STATE(5291), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(7194), + [sym__spread_list] = STATE(7300), + [sym_val_entry] = STATE(6728), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(6851), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_list] = STATE(6334), + [sym__unquoted_in_list_with_expr] = STATE(7368), + [sym__unquoted_anonymous_prefix] = STATE(6813), [sym_comment] = STATE(884), - [aux_sym_shebang_repeat1] = STATE(2785), - [aux_sym_list_body_repeat1] = STATE(925), - [sym__newline] = ACTIONS(3204), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3114), - [aux_sym__val_number_decimal_token2] = ACTIONS(3116), - [aux_sym__val_number_decimal_token3] = ACTIONS(3118), - [aux_sym__val_number_decimal_token4] = ACTIONS(3120), - [aux_sym__val_number_token1] = ACTIONS(3122), - [aux_sym__val_number_token2] = ACTIONS(3122), - [aux_sym__val_number_token3] = ACTIONS(3122), - [aux_sym__val_number_token4] = ACTIONS(3124), - [aux_sym__val_number_token5] = ACTIONS(3124), - [aux_sym__val_number_token6] = ACTIONS(3124), - [anon_sym_0b] = ACTIONS(3126), - [anon_sym_0o] = ACTIONS(3128), - [anon_sym_0x] = ACTIONS(3128), - [sym_val_date] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym__str_single_quotes] = ACTIONS(3134), - [sym__str_back_ticks] = ACTIONS(3134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2596), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3136), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3138), + [aux_sym_shebang_repeat1] = STATE(2778), + [aux_sym_list_body_repeat1] = STATE(1047), + [sym__newline] = ACTIONS(3190), + [anon_sym_LBRACK] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_DOLLAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_DOT_DOT] = ACTIONS(3114), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3116), + [anon_sym_DOT_DOT_LT] = ACTIONS(3116), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_true] = ACTIONS(3120), + [anon_sym_false] = ACTIONS(3120), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3122), + [aux_sym__val_number_decimal_token2] = ACTIONS(3124), + [aux_sym__val_number_decimal_token3] = ACTIONS(3126), + [aux_sym__val_number_decimal_token4] = ACTIONS(3128), + [aux_sym__val_number_token1] = ACTIONS(3130), + [aux_sym__val_number_token2] = ACTIONS(3130), + [aux_sym__val_number_token3] = ACTIONS(3130), + [aux_sym__val_number_token4] = ACTIONS(3132), + [aux_sym__val_number_token5] = ACTIONS(3132), + [aux_sym__val_number_token6] = ACTIONS(3132), + [anon_sym_0b] = ACTIONS(3134), + [anon_sym_0o] = ACTIONS(3136), + [anon_sym_0x] = ACTIONS(3136), + [sym_val_date] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym__str_single_quotes] = ACTIONS(3142), + [sym__str_back_ticks] = ACTIONS(3142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2672), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3144), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3146), }, [885] = { - [sym_expr_parenthesized] = STATE(5958), - [sym__spread_parenthesized] = STATE(7448), - [sym_val_range] = STATE(7451), - [sym__val_range] = STATE(7776), - [sym__val_range_with_end] = STATE(7452), - [sym__value] = STATE(7451), - [sym_val_nothing] = STATE(7049), - [sym_val_bool] = STATE(6510), - [sym__spread_variable] = STATE(7454), - [sym_val_variable] = STATE(5708), - [sym_val_number] = STATE(7049), - [sym__val_number_decimal] = STATE(5233), - [sym__val_number] = STATE(7097), - [sym_val_duration] = STATE(7049), - [sym_val_filesize] = STATE(7049), - [sym_val_binary] = STATE(7049), - [sym_val_string] = STATE(7049), - [sym__raw_str] = STATE(5195), - [sym__str_double_quotes] = STATE(5195), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(7256), - [sym__spread_list] = STATE(7448), - [sym_val_entry] = STATE(7136), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(7049), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_list] = STATE(6604), - [sym__unquoted_in_list_with_expr] = STATE(7451), - [sym__unquoted_anonymous_prefix] = STATE(7039), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7300), + [sym_val_range] = STATE(7368), + [sym__val_range] = STATE(7740), + [sym__val_range_with_end] = STATE(7289), + [sym__value] = STATE(7368), + [sym_val_nothing] = STATE(6851), + [sym_val_bool] = STATE(6691), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5759), + [sym_val_number] = STATE(6851), + [sym__val_number_decimal] = STATE(5314), + [sym__val_number] = STATE(6724), + [sym_val_duration] = STATE(6851), + [sym_val_filesize] = STATE(6851), + [sym_val_binary] = STATE(6851), + [sym_val_string] = STATE(6851), + [sym__raw_str] = STATE(5291), + [sym__str_double_quotes] = STATE(5291), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(7205), + [sym__spread_list] = STATE(7300), + [sym_val_entry] = STATE(6728), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(6851), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_list] = STATE(6334), + [sym__unquoted_in_list_with_expr] = STATE(7368), + [sym__unquoted_anonymous_prefix] = STATE(6813), [sym_comment] = STATE(885), - [aux_sym_shebang_repeat1] = STATE(2785), - [aux_sym_list_body_repeat1] = STATE(925), - [sym__newline] = ACTIONS(3204), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3114), - [aux_sym__val_number_decimal_token2] = ACTIONS(3116), - [aux_sym__val_number_decimal_token3] = ACTIONS(3118), - [aux_sym__val_number_decimal_token4] = ACTIONS(3120), - [aux_sym__val_number_token1] = ACTIONS(3122), - [aux_sym__val_number_token2] = ACTIONS(3122), - [aux_sym__val_number_token3] = ACTIONS(3122), - [aux_sym__val_number_token4] = ACTIONS(3124), - [aux_sym__val_number_token5] = ACTIONS(3124), - [aux_sym__val_number_token6] = ACTIONS(3124), - [anon_sym_0b] = ACTIONS(3126), - [anon_sym_0o] = ACTIONS(3128), - [anon_sym_0x] = ACTIONS(3128), - [sym_val_date] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym__str_single_quotes] = ACTIONS(3134), - [sym__str_back_ticks] = ACTIONS(3134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2596), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3136), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3138), + [aux_sym_shebang_repeat1] = STATE(2778), + [aux_sym_list_body_repeat1] = STATE(1047), + [sym__newline] = ACTIONS(3190), + [anon_sym_LBRACK] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_DOLLAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_DOT_DOT] = ACTIONS(3114), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3116), + [anon_sym_DOT_DOT_LT] = ACTIONS(3116), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_true] = ACTIONS(3120), + [anon_sym_false] = ACTIONS(3120), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3122), + [aux_sym__val_number_decimal_token2] = ACTIONS(3124), + [aux_sym__val_number_decimal_token3] = ACTIONS(3126), + [aux_sym__val_number_decimal_token4] = ACTIONS(3128), + [aux_sym__val_number_token1] = ACTIONS(3130), + [aux_sym__val_number_token2] = ACTIONS(3130), + [aux_sym__val_number_token3] = ACTIONS(3130), + [aux_sym__val_number_token4] = ACTIONS(3132), + [aux_sym__val_number_token5] = ACTIONS(3132), + [aux_sym__val_number_token6] = ACTIONS(3132), + [anon_sym_0b] = ACTIONS(3134), + [anon_sym_0o] = ACTIONS(3136), + [anon_sym_0x] = ACTIONS(3136), + [sym_val_date] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym__str_single_quotes] = ACTIONS(3142), + [sym__str_back_ticks] = ACTIONS(3142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2672), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3144), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3146), }, [886] = { - [sym_expr_parenthesized] = STATE(5958), - [sym__spread_parenthesized] = STATE(7448), - [sym_val_range] = STATE(7451), - [sym__val_range] = STATE(7776), - [sym__val_range_with_end] = STATE(7452), - [sym__value] = STATE(7451), - [sym_val_nothing] = STATE(7049), - [sym_val_bool] = STATE(6510), - [sym__spread_variable] = STATE(7454), - [sym_val_variable] = STATE(5708), - [sym_val_number] = STATE(7049), - [sym__val_number_decimal] = STATE(5233), - [sym__val_number] = STATE(7097), - [sym_val_duration] = STATE(7049), - [sym_val_filesize] = STATE(7049), - [sym_val_binary] = STATE(7049), - [sym_val_string] = STATE(7049), - [sym__raw_str] = STATE(5195), - [sym__str_double_quotes] = STATE(5195), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(7263), - [sym__spread_list] = STATE(7448), - [sym_val_entry] = STATE(7136), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(7049), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_list] = STATE(6604), - [sym__unquoted_in_list_with_expr] = STATE(7451), - [sym__unquoted_anonymous_prefix] = STATE(7039), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7300), + [sym_val_range] = STATE(7368), + [sym__val_range] = STATE(7740), + [sym__val_range_with_end] = STATE(7289), + [sym__value] = STATE(7368), + [sym_val_nothing] = STATE(6851), + [sym_val_bool] = STATE(6691), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5759), + [sym_val_number] = STATE(6851), + [sym__val_number_decimal] = STATE(5314), + [sym__val_number] = STATE(6724), + [sym_val_duration] = STATE(6851), + [sym_val_filesize] = STATE(6851), + [sym_val_binary] = STATE(6851), + [sym_val_string] = STATE(6851), + [sym__raw_str] = STATE(5291), + [sym__str_double_quotes] = STATE(5291), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(7214), + [sym__spread_list] = STATE(7300), + [sym_val_entry] = STATE(6728), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(6851), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_list] = STATE(6334), + [sym__unquoted_in_list_with_expr] = STATE(7368), + [sym__unquoted_anonymous_prefix] = STATE(6813), [sym_comment] = STATE(886), - [aux_sym_shebang_repeat1] = STATE(2785), - [aux_sym_list_body_repeat1] = STATE(925), - [sym__newline] = ACTIONS(3204), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3114), - [aux_sym__val_number_decimal_token2] = ACTIONS(3116), - [aux_sym__val_number_decimal_token3] = ACTIONS(3118), - [aux_sym__val_number_decimal_token4] = ACTIONS(3120), - [aux_sym__val_number_token1] = ACTIONS(3122), - [aux_sym__val_number_token2] = ACTIONS(3122), - [aux_sym__val_number_token3] = ACTIONS(3122), - [aux_sym__val_number_token4] = ACTIONS(3124), - [aux_sym__val_number_token5] = ACTIONS(3124), - [aux_sym__val_number_token6] = ACTIONS(3124), - [anon_sym_0b] = ACTIONS(3126), - [anon_sym_0o] = ACTIONS(3128), - [anon_sym_0x] = ACTIONS(3128), - [sym_val_date] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym__str_single_quotes] = ACTIONS(3134), - [sym__str_back_ticks] = ACTIONS(3134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2596), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3136), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3138), + [aux_sym_shebang_repeat1] = STATE(2778), + [aux_sym_list_body_repeat1] = STATE(1047), + [sym__newline] = ACTIONS(3190), + [anon_sym_LBRACK] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_DOLLAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_DOT_DOT] = ACTIONS(3114), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3116), + [anon_sym_DOT_DOT_LT] = ACTIONS(3116), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_true] = ACTIONS(3120), + [anon_sym_false] = ACTIONS(3120), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3122), + [aux_sym__val_number_decimal_token2] = ACTIONS(3124), + [aux_sym__val_number_decimal_token3] = ACTIONS(3126), + [aux_sym__val_number_decimal_token4] = ACTIONS(3128), + [aux_sym__val_number_token1] = ACTIONS(3130), + [aux_sym__val_number_token2] = ACTIONS(3130), + [aux_sym__val_number_token3] = ACTIONS(3130), + [aux_sym__val_number_token4] = ACTIONS(3132), + [aux_sym__val_number_token5] = ACTIONS(3132), + [aux_sym__val_number_token6] = ACTIONS(3132), + [anon_sym_0b] = ACTIONS(3134), + [anon_sym_0o] = ACTIONS(3136), + [anon_sym_0x] = ACTIONS(3136), + [sym_val_date] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym__str_single_quotes] = ACTIONS(3142), + [sym__str_back_ticks] = ACTIONS(3142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2672), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3144), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3146), }, [887] = { - [sym_expr_parenthesized] = STATE(5958), - [sym__spread_parenthesized] = STATE(7448), - [sym_val_range] = STATE(7451), - [sym__val_range] = STATE(7776), - [sym__val_range_with_end] = STATE(7452), - [sym__value] = STATE(7451), - [sym_val_nothing] = STATE(7049), - [sym_val_bool] = STATE(6510), - [sym__spread_variable] = STATE(7454), - [sym_val_variable] = STATE(5708), - [sym_val_number] = STATE(7049), - [sym__val_number_decimal] = STATE(5233), - [sym__val_number] = STATE(7097), - [sym_val_duration] = STATE(7049), - [sym_val_filesize] = STATE(7049), - [sym_val_binary] = STATE(7049), - [sym_val_string] = STATE(7049), - [sym__raw_str] = STATE(5195), - [sym__str_double_quotes] = STATE(5195), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(7270), - [sym__spread_list] = STATE(7448), - [sym_val_entry] = STATE(7136), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(7049), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_list] = STATE(6604), - [sym__unquoted_in_list_with_expr] = STATE(7451), - [sym__unquoted_anonymous_prefix] = STATE(7039), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7300), + [sym_val_range] = STATE(7368), + [sym__val_range] = STATE(7740), + [sym__val_range_with_end] = STATE(7289), + [sym__value] = STATE(7368), + [sym_val_nothing] = STATE(6851), + [sym_val_bool] = STATE(6691), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5759), + [sym_val_number] = STATE(6851), + [sym__val_number_decimal] = STATE(5314), + [sym__val_number] = STATE(6724), + [sym_val_duration] = STATE(6851), + [sym_val_filesize] = STATE(6851), + [sym_val_binary] = STATE(6851), + [sym_val_string] = STATE(6851), + [sym__raw_str] = STATE(5291), + [sym__str_double_quotes] = STATE(5291), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(7224), + [sym__spread_list] = STATE(7300), + [sym_val_entry] = STATE(6728), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(6851), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_list] = STATE(6334), + [sym__unquoted_in_list_with_expr] = STATE(7368), + [sym__unquoted_anonymous_prefix] = STATE(6813), [sym_comment] = STATE(887), - [aux_sym_shebang_repeat1] = STATE(2785), - [aux_sym_list_body_repeat1] = STATE(925), - [sym__newline] = ACTIONS(3204), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3114), - [aux_sym__val_number_decimal_token2] = ACTIONS(3116), - [aux_sym__val_number_decimal_token3] = ACTIONS(3118), - [aux_sym__val_number_decimal_token4] = ACTIONS(3120), - [aux_sym__val_number_token1] = ACTIONS(3122), - [aux_sym__val_number_token2] = ACTIONS(3122), - [aux_sym__val_number_token3] = ACTIONS(3122), - [aux_sym__val_number_token4] = ACTIONS(3124), - [aux_sym__val_number_token5] = ACTIONS(3124), - [aux_sym__val_number_token6] = ACTIONS(3124), - [anon_sym_0b] = ACTIONS(3126), - [anon_sym_0o] = ACTIONS(3128), - [anon_sym_0x] = ACTIONS(3128), - [sym_val_date] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym__str_single_quotes] = ACTIONS(3134), - [sym__str_back_ticks] = ACTIONS(3134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2596), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3136), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3138), + [aux_sym_shebang_repeat1] = STATE(2778), + [aux_sym_list_body_repeat1] = STATE(1047), + [sym__newline] = ACTIONS(3190), + [anon_sym_LBRACK] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_DOLLAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_DOT_DOT] = ACTIONS(3114), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3116), + [anon_sym_DOT_DOT_LT] = ACTIONS(3116), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_true] = ACTIONS(3120), + [anon_sym_false] = ACTIONS(3120), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3122), + [aux_sym__val_number_decimal_token2] = ACTIONS(3124), + [aux_sym__val_number_decimal_token3] = ACTIONS(3126), + [aux_sym__val_number_decimal_token4] = ACTIONS(3128), + [aux_sym__val_number_token1] = ACTIONS(3130), + [aux_sym__val_number_token2] = ACTIONS(3130), + [aux_sym__val_number_token3] = ACTIONS(3130), + [aux_sym__val_number_token4] = ACTIONS(3132), + [aux_sym__val_number_token5] = ACTIONS(3132), + [aux_sym__val_number_token6] = ACTIONS(3132), + [anon_sym_0b] = ACTIONS(3134), + [anon_sym_0o] = ACTIONS(3136), + [anon_sym_0x] = ACTIONS(3136), + [sym_val_date] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym__str_single_quotes] = ACTIONS(3142), + [sym__str_back_ticks] = ACTIONS(3142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2672), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3144), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3146), }, [888] = { + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7300), + [sym_val_range] = STATE(7368), + [sym__val_range] = STATE(7740), + [sym__val_range_with_end] = STATE(7289), + [sym__value] = STATE(7368), + [sym_val_nothing] = STATE(6851), + [sym_val_bool] = STATE(6691), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5759), + [sym_val_number] = STATE(6851), + [sym__val_number_decimal] = STATE(5314), + [sym__val_number] = STATE(6724), + [sym_val_duration] = STATE(6851), + [sym_val_filesize] = STATE(6851), + [sym_val_binary] = STATE(6851), + [sym_val_string] = STATE(6851), + [sym__raw_str] = STATE(5291), + [sym__str_double_quotes] = STATE(5291), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(7231), + [sym__spread_list] = STATE(7300), + [sym_val_entry] = STATE(6728), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(6851), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_list] = STATE(6334), + [sym__unquoted_in_list_with_expr] = STATE(7368), + [sym__unquoted_anonymous_prefix] = STATE(6813), [sym_comment] = STATE(888), - [anon_sym_STAR_STAR] = ACTIONS(3192), - [anon_sym_PLUS_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_mod] = ACTIONS(3192), - [anon_sym_SLASH_SLASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_bit_DASHshl] = ACTIONS(3192), - [anon_sym_bit_DASHshr] = ACTIONS(3192), - [anon_sym_EQ_TILDE] = ACTIONS(3192), - [anon_sym_BANG_TILDE] = ACTIONS(3192), - [anon_sym_bit_DASHand] = ACTIONS(3192), - [anon_sym_bit_DASHxor] = ACTIONS(3192), - [anon_sym_bit_DASHor] = ACTIONS(3192), - [anon_sym_and] = ACTIONS(3192), - [anon_sym_xor] = ACTIONS(3192), - [anon_sym_or] = ACTIONS(3192), - [anon_sym_in] = ACTIONS(3192), - [anon_sym_not_DASHin] = ACTIONS(3192), - [anon_sym_starts_DASHwith] = ACTIONS(3192), - [anon_sym_ends_DASHwith] = ACTIONS(3192), - [anon_sym_EQ_EQ] = ACTIONS(3192), - [anon_sym_BANG_EQ] = ACTIONS(3192), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_LT_EQ] = ACTIONS(3192), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_GT_EQ] = ACTIONS(3192), - [aux_sym_cmd_identifier_token41] = ACTIONS(3196), - [sym__newline] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2136), - [anon_sym_err_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_GT_PIPE] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2136), - [anon_sym_GT2] = ACTIONS(2136), - [anon_sym_DASH2] = ACTIONS(2136), - [anon_sym_in2] = ACTIONS(2136), - [anon_sym_STAR2] = ACTIONS(2136), - [anon_sym_and2] = ACTIONS(2136), - [anon_sym_xor2] = ACTIONS(2136), - [anon_sym_or2] = ACTIONS(2136), - [anon_sym_not_DASHin2] = ACTIONS(2136), - [anon_sym_starts_DASHwith2] = ACTIONS(2136), - [anon_sym_ends_DASHwith2] = ACTIONS(2136), - [anon_sym_EQ_EQ2] = ACTIONS(2136), - [anon_sym_BANG_EQ2] = ACTIONS(2136), - [anon_sym_LT2] = ACTIONS(2136), - [anon_sym_LT_EQ2] = ACTIONS(2136), - [anon_sym_GT_EQ2] = ACTIONS(2136), - [anon_sym_EQ_TILDE2] = ACTIONS(2136), - [anon_sym_BANG_TILDE2] = ACTIONS(2136), - [anon_sym_STAR_STAR2] = ACTIONS(2136), - [anon_sym_PLUS_PLUS2] = ACTIONS(2136), - [anon_sym_SLASH2] = ACTIONS(2136), - [anon_sym_mod2] = ACTIONS(2136), - [anon_sym_SLASH_SLASH2] = ACTIONS(2136), - [anon_sym_PLUS2] = ACTIONS(2136), - [anon_sym_bit_DASHshl2] = ACTIONS(2136), - [anon_sym_bit_DASHshr2] = ACTIONS(2136), - [anon_sym_bit_DASHand2] = ACTIONS(2136), - [anon_sym_bit_DASHxor2] = ACTIONS(2136), - [anon_sym_bit_DASHor2] = ACTIONS(2136), - [anon_sym_err_GT] = ACTIONS(2136), - [anon_sym_out_GT] = ACTIONS(2136), - [anon_sym_e_GT] = ACTIONS(2136), - [anon_sym_o_GT] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT] = ACTIONS(2136), - [anon_sym_err_GT_GT] = ACTIONS(2136), - [anon_sym_out_GT_GT] = ACTIONS(2136), - [anon_sym_e_GT_GT] = ACTIONS(2136), - [anon_sym_o_GT_GT] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2136), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2778), + [aux_sym_list_body_repeat1] = STATE(1047), + [sym__newline] = ACTIONS(3190), + [anon_sym_LBRACK] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_DOLLAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_DOT_DOT] = ACTIONS(3114), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3116), + [anon_sym_DOT_DOT_LT] = ACTIONS(3116), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_true] = ACTIONS(3120), + [anon_sym_false] = ACTIONS(3120), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3122), + [aux_sym__val_number_decimal_token2] = ACTIONS(3124), + [aux_sym__val_number_decimal_token3] = ACTIONS(3126), + [aux_sym__val_number_decimal_token4] = ACTIONS(3128), + [aux_sym__val_number_token1] = ACTIONS(3130), + [aux_sym__val_number_token2] = ACTIONS(3130), + [aux_sym__val_number_token3] = ACTIONS(3130), + [aux_sym__val_number_token4] = ACTIONS(3132), + [aux_sym__val_number_token5] = ACTIONS(3132), + [aux_sym__val_number_token6] = ACTIONS(3132), + [anon_sym_0b] = ACTIONS(3134), + [anon_sym_0o] = ACTIONS(3136), + [anon_sym_0x] = ACTIONS(3136), + [sym_val_date] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym__str_single_quotes] = ACTIONS(3142), + [sym__str_back_ticks] = ACTIONS(3142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2672), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3144), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3146), }, [889] = { + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7300), + [sym_val_range] = STATE(7368), + [sym__val_range] = STATE(7740), + [sym__val_range_with_end] = STATE(7289), + [sym__value] = STATE(7368), + [sym_val_nothing] = STATE(6851), + [sym_val_bool] = STATE(6691), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5759), + [sym_val_number] = STATE(6851), + [sym__val_number_decimal] = STATE(5314), + [sym__val_number] = STATE(6724), + [sym_val_duration] = STATE(6851), + [sym_val_filesize] = STATE(6851), + [sym_val_binary] = STATE(6851), + [sym_val_string] = STATE(6851), + [sym__raw_str] = STATE(5291), + [sym__str_double_quotes] = STATE(5291), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(7238), + [sym__spread_list] = STATE(7300), + [sym_val_entry] = STATE(6728), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(6851), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_list] = STATE(6334), + [sym__unquoted_in_list_with_expr] = STATE(7368), + [sym__unquoted_anonymous_prefix] = STATE(6813), [sym_comment] = STATE(889), - [anon_sym_STAR_STAR] = ACTIONS(3192), - [anon_sym_PLUS_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_mod] = ACTIONS(3192), - [anon_sym_SLASH_SLASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_bit_DASHshl] = ACTIONS(3192), - [anon_sym_bit_DASHshr] = ACTIONS(3192), - [anon_sym_EQ_TILDE] = ACTIONS(3192), - [anon_sym_BANG_TILDE] = ACTIONS(3192), - [anon_sym_bit_DASHand] = ACTIONS(3192), - [anon_sym_bit_DASHxor] = ACTIONS(3192), - [anon_sym_bit_DASHor] = ACTIONS(3192), - [anon_sym_and] = ACTIONS(3192), - [anon_sym_xor] = ACTIONS(3192), - [anon_sym_or] = ACTIONS(3192), - [anon_sym_in] = ACTIONS(3192), - [anon_sym_not_DASHin] = ACTIONS(3192), - [anon_sym_starts_DASHwith] = ACTIONS(3192), - [anon_sym_ends_DASHwith] = ACTIONS(3192), - [anon_sym_EQ_EQ] = ACTIONS(3192), - [anon_sym_BANG_EQ] = ACTIONS(3192), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_LT_EQ] = ACTIONS(3192), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_GT_EQ] = ACTIONS(3192), - [aux_sym_cmd_identifier_token41] = ACTIONS(3196), - [sym__newline] = ACTIONS(2144), - [anon_sym_PIPE] = ACTIONS(2144), - [anon_sym_err_GT_PIPE] = ACTIONS(2144), - [anon_sym_out_GT_PIPE] = ACTIONS(2144), - [anon_sym_e_GT_PIPE] = ACTIONS(2144), - [anon_sym_o_GT_PIPE] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2144), - [anon_sym_GT2] = ACTIONS(2144), - [anon_sym_DASH2] = ACTIONS(2144), - [anon_sym_in2] = ACTIONS(2144), - [anon_sym_STAR2] = ACTIONS(2144), - [anon_sym_and2] = ACTIONS(2144), - [anon_sym_xor2] = ACTIONS(2144), - [anon_sym_or2] = ACTIONS(2144), - [anon_sym_not_DASHin2] = ACTIONS(2144), - [anon_sym_starts_DASHwith2] = ACTIONS(2144), - [anon_sym_ends_DASHwith2] = ACTIONS(2144), - [anon_sym_EQ_EQ2] = ACTIONS(2144), - [anon_sym_BANG_EQ2] = ACTIONS(2144), - [anon_sym_LT2] = ACTIONS(2144), - [anon_sym_LT_EQ2] = ACTIONS(2144), - [anon_sym_GT_EQ2] = ACTIONS(2144), - [anon_sym_EQ_TILDE2] = ACTIONS(2144), - [anon_sym_BANG_TILDE2] = ACTIONS(2144), - [anon_sym_STAR_STAR2] = ACTIONS(2144), - [anon_sym_PLUS_PLUS2] = ACTIONS(2144), - [anon_sym_SLASH2] = ACTIONS(2144), - [anon_sym_mod2] = ACTIONS(2144), - [anon_sym_SLASH_SLASH2] = ACTIONS(2144), - [anon_sym_PLUS2] = ACTIONS(2144), - [anon_sym_bit_DASHshl2] = ACTIONS(2144), - [anon_sym_bit_DASHshr2] = ACTIONS(2144), - [anon_sym_bit_DASHand2] = ACTIONS(2144), - [anon_sym_bit_DASHxor2] = ACTIONS(2144), - [anon_sym_bit_DASHor2] = ACTIONS(2144), - [anon_sym_err_GT] = ACTIONS(2144), - [anon_sym_out_GT] = ACTIONS(2144), - [anon_sym_e_GT] = ACTIONS(2144), - [anon_sym_o_GT] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT] = ACTIONS(2144), - [anon_sym_err_GT_GT] = ACTIONS(2144), - [anon_sym_out_GT_GT] = ACTIONS(2144), - [anon_sym_e_GT_GT] = ACTIONS(2144), - [anon_sym_o_GT_GT] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2144), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2778), + [aux_sym_list_body_repeat1] = STATE(1047), + [sym__newline] = ACTIONS(3190), + [anon_sym_LBRACK] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_DOLLAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_DOT_DOT] = ACTIONS(3114), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3116), + [anon_sym_DOT_DOT_LT] = ACTIONS(3116), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_true] = ACTIONS(3120), + [anon_sym_false] = ACTIONS(3120), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3122), + [aux_sym__val_number_decimal_token2] = ACTIONS(3124), + [aux_sym__val_number_decimal_token3] = ACTIONS(3126), + [aux_sym__val_number_decimal_token4] = ACTIONS(3128), + [aux_sym__val_number_token1] = ACTIONS(3130), + [aux_sym__val_number_token2] = ACTIONS(3130), + [aux_sym__val_number_token3] = ACTIONS(3130), + [aux_sym__val_number_token4] = ACTIONS(3132), + [aux_sym__val_number_token5] = ACTIONS(3132), + [aux_sym__val_number_token6] = ACTIONS(3132), + [anon_sym_0b] = ACTIONS(3134), + [anon_sym_0o] = ACTIONS(3136), + [anon_sym_0x] = ACTIONS(3136), + [sym_val_date] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym__str_single_quotes] = ACTIONS(3142), + [sym__str_back_ticks] = ACTIONS(3142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2672), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3144), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3146), }, [890] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2234), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1972), - [sym__unquoted_with_expr] = STATE(2237), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3730), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1813), + [sym__unquoted_with_expr] = STATE(2178), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(890), - [aux_sym_shebang_repeat1] = STATE(920), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [891] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2399), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2061), - [sym__unquoted_with_expr] = STATE(2215), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2313), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1838), + [sym__unquoted_with_expr] = STATE(2155), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(891), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [892] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2401), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2064), - [sym__unquoted_with_expr] = STATE(2221), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2315), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1839), + [sym__unquoted_with_expr] = STATE(2161), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(892), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [893] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2403), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2018), - [sym__unquoted_with_expr] = STATE(2278), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2317), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1840), + [sym__unquoted_with_expr] = STATE(2179), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(893), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [894] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2417), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1947), - [sym__unquoted_with_expr] = STATE(2282), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2319), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1841), + [sym__unquoted_with_expr] = STATE(2190), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(894), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [895] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2291), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1949), - [sym__unquoted_with_expr] = STATE(2295), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2322), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1842), + [sym__unquoted_with_expr] = STATE(2205), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(895), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [896] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2419), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1950), - [sym__unquoted_with_expr] = STATE(2300), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2324), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1843), + [sym__unquoted_with_expr] = STATE(2221), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(896), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [897] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2422), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1953), - [sym__unquoted_with_expr] = STATE(2310), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2331), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1886), + [sym__unquoted_with_expr] = STATE(2274), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(897), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [898] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2425), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1954), - [sym__unquoted_with_expr] = STATE(2159), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1897), + [sym__unquoted_with_expr] = STATE(2195), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(898), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [899] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2427), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1955), - [sym__unquoted_with_expr] = STATE(2162), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2201), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1898), + [sym__unquoted_with_expr] = STATE(2207), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(899), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [900] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2428), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1956), - [sym__unquoted_with_expr] = STATE(2166), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2340), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1899), + [sym__unquoted_with_expr] = STATE(2216), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(900), - [aux_sym_shebang_repeat1] = STATE(912), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [901] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2429), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1958), - [sym__unquoted_with_expr] = STATE(2170), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2342), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1900), + [sym__unquoted_with_expr] = STATE(2231), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(901), - [aux_sym_shebang_repeat1] = STATE(913), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [902] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2431), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1959), - [sym__unquoted_with_expr] = STATE(2176), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2344), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1901), + [sym__unquoted_with_expr] = STATE(2241), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(902), - [aux_sym_shebang_repeat1] = STATE(914), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [903] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2432), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1960), - [sym__unquoted_with_expr] = STATE(2184), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2346), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1902), + [sym__unquoted_with_expr] = STATE(2253), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(903), - [aux_sym_shebang_repeat1] = STATE(915), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [904] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2433), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1962), - [sym__unquoted_with_expr] = STATE(2191), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2347), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1903), + [sym__unquoted_with_expr] = STATE(2146), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(904), - [aux_sym_shebang_repeat1] = STATE(916), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(969), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [905] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2434), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1964), - [sym__unquoted_with_expr] = STATE(2199), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2348), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1910), + [sym__unquoted_with_expr] = STATE(2151), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(905), - [aux_sym_shebang_repeat1] = STATE(917), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(970), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [906] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2436), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1965), - [sym__unquoted_with_expr] = STATE(2216), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2361), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1911), + [sym__unquoted_with_expr] = STATE(2169), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(906), - [aux_sym_shebang_repeat1] = STATE(918), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(971), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [907] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2437), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1971), - [sym__unquoted_with_expr] = STATE(2227), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2363), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1913), + [sym__unquoted_with_expr] = STATE(2183), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(907), - [aux_sym_shebang_repeat1] = STATE(919), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(972), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [908] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2441), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1973), - [sym__unquoted_with_expr] = STATE(2312), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2364), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1914), + [sym__unquoted_with_expr] = STATE(2187), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(908), - [aux_sym_shebang_repeat1] = STATE(921), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(1048), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [909] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2445), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1975), - [sym__unquoted_with_expr] = STATE(2246), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2365), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1920), + [sym__unquoted_with_expr] = STATE(2285), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(909), - [aux_sym_shebang_repeat1] = STATE(922), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(1026), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [910] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2451), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1977), - [sym__unquoted_with_expr] = STATE(2249), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2370), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1937), + [sym__unquoted_with_expr] = STATE(2149), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(910), - [aux_sym_shebang_repeat1] = STATE(923), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(1027), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [911] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2314), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1982), - [sym__unquoted_with_expr] = STATE(2266), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2372), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1938), + [sym__unquoted_with_expr] = STATE(2152), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(911), - [aux_sym_shebang_repeat1] = STATE(924), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(1028), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [912] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2349), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2047), - [sym__unquoted_with_expr] = STATE(2242), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2154), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1939), + [sym__unquoted_with_expr] = STATE(2156), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(912), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(1029), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [913] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2351), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2049), - [sym__unquoted_with_expr] = STATE(2252), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2373), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1941), + [sym__unquoted_with_expr] = STATE(2159), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(913), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(1030), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [914] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2354), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2052), - [sym__unquoted_with_expr] = STATE(2274), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2374), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1942), + [sym__unquoted_with_expr] = STATE(2162), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(914), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(1031), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [915] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2356), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2069), - [sym__unquoted_with_expr] = STATE(2294), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2376), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1943), + [sym__unquoted_with_expr] = STATE(2165), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(915), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(1032), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [916] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2358), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2036), - [sym__unquoted_with_expr] = STATE(2258), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2378), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1946), + [sym__unquoted_with_expr] = STATE(2181), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(916), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(1033), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [917] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2360), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1980), - [sym__unquoted_with_expr] = STATE(2244), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3782), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1953), + [sym__unquoted_with_expr] = STATE(2211), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(917), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(930), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [918] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2362), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2039), - [sym__unquoted_with_expr] = STATE(2158), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3715), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1954), + [sym__unquoted_with_expr] = STATE(2217), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(918), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(931), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [919] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2365), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2059), - [sym__unquoted_with_expr] = STATE(2268), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3722), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1955), + [sym__unquoted_with_expr] = STATE(2138), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(919), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(932), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [920] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2276), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1992), - [sym__unquoted_with_expr] = STATE(2308), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3757), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1958), + [sym__unquoted_with_expr] = STATE(2226), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(920), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(933), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [921] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2367), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1946), - [sym__unquoted_with_expr] = STATE(2198), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3763), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1959), + [sym__unquoted_with_expr] = STATE(2229), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(921), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(934), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [922] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2369), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2080), - [sym__unquoted_with_expr] = STATE(2218), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3690), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1960), + [sym__unquoted_with_expr] = STATE(2232), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(922), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(935), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [923] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2371), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2045), - [sym__unquoted_with_expr] = STATE(2257), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3717), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1961), + [sym__unquoted_with_expr] = STATE(2235), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(923), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(936), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [924] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2373), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1952), - [sym__unquoted_with_expr] = STATE(2309), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3733), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1962), + [sym__unquoted_with_expr] = STATE(2239), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(924), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(937), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [925] = { - [sym_expr_parenthesized] = STATE(5958), - [sym__spread_parenthesized] = STATE(7448), - [sym_val_range] = STATE(7451), - [sym__val_range] = STATE(7776), - [sym__val_range_with_end] = STATE(7452), - [sym__value] = STATE(7451), - [sym_val_nothing] = STATE(7049), - [sym_val_bool] = STATE(6510), - [sym__spread_variable] = STATE(7454), - [sym_val_variable] = STATE(5708), - [sym_val_number] = STATE(7049), - [sym__val_number_decimal] = STATE(5233), - [sym__val_number] = STATE(7097), - [sym_val_duration] = STATE(7049), - [sym_val_filesize] = STATE(7049), - [sym_val_binary] = STATE(7049), - [sym_val_string] = STATE(7049), - [sym__raw_str] = STATE(5195), - [sym__str_double_quotes] = STATE(5195), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(7049), - [sym__spread_list] = STATE(7448), - [sym_val_entry] = STATE(7228), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(7049), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_list] = STATE(6604), - [sym__unquoted_in_list_with_expr] = STATE(7451), - [sym__unquoted_anonymous_prefix] = STATE(7039), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2245), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1968), + [sym__unquoted_with_expr] = STATE(2249), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(925), - [aux_sym_list_body_repeat1] = STATE(926), - [anon_sym_LBRACK] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3114), - [aux_sym__val_number_decimal_token2] = ACTIONS(3116), - [aux_sym__val_number_decimal_token3] = ACTIONS(3118), - [aux_sym__val_number_decimal_token4] = ACTIONS(3120), - [aux_sym__val_number_token1] = ACTIONS(3122), - [aux_sym__val_number_token2] = ACTIONS(3122), - [aux_sym__val_number_token3] = ACTIONS(3122), - [aux_sym__val_number_token4] = ACTIONS(3124), - [aux_sym__val_number_token5] = ACTIONS(3124), - [aux_sym__val_number_token6] = ACTIONS(3124), - [anon_sym_0b] = ACTIONS(3126), - [anon_sym_0o] = ACTIONS(3128), - [anon_sym_0x] = ACTIONS(3128), - [sym_val_date] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym__str_single_quotes] = ACTIONS(3134), - [sym__str_back_ticks] = ACTIONS(3134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2596), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3136), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3138), + [aux_sym_shebang_repeat1] = STATE(938), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [926] = { - [sym_expr_parenthesized] = STATE(5958), - [sym__spread_parenthesized] = STATE(7448), - [sym_val_range] = STATE(7451), - [sym__val_range] = STATE(7776), - [sym__val_range_with_end] = STATE(7452), - [sym__value] = STATE(7451), - [sym_val_nothing] = STATE(7049), - [sym_val_bool] = STATE(6510), - [sym__spread_variable] = STATE(7454), - [sym_val_variable] = STATE(5708), - [sym_val_number] = STATE(7049), - [sym__val_number_decimal] = STATE(5233), - [sym__val_number] = STATE(7097), - [sym_val_duration] = STATE(7049), - [sym_val_filesize] = STATE(7049), - [sym_val_binary] = STATE(7049), - [sym_val_string] = STATE(7049), - [sym__raw_str] = STATE(5195), - [sym__str_double_quotes] = STATE(5195), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(7049), - [sym__spread_list] = STATE(7448), - [sym_val_entry] = STATE(7439), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(7049), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_list] = STATE(6604), - [sym__unquoted_in_list_with_expr] = STATE(7451), - [sym__unquoted_anonymous_prefix] = STATE(7039), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3739), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1969), + [sym__unquoted_with_expr] = STATE(2281), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(926), - [aux_sym_list_body_repeat1] = STATE(926), - [anon_sym_LBRACK] = ACTIONS(3230), - [anon_sym_LPAREN] = ACTIONS(3233), - [anon_sym_DOLLAR] = ACTIONS(3236), - [anon_sym_LBRACE] = ACTIONS(3239), - [anon_sym_DOT_DOT] = ACTIONS(3242), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(3245), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3248), - [anon_sym_DOT_DOT_LT] = ACTIONS(3248), - [anon_sym_null] = ACTIONS(3251), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(3257), - [aux_sym__val_number_decimal_token1] = ACTIONS(3260), - [aux_sym__val_number_decimal_token2] = ACTIONS(3263), - [aux_sym__val_number_decimal_token3] = ACTIONS(3266), - [aux_sym__val_number_decimal_token4] = ACTIONS(3269), - [aux_sym__val_number_token1] = ACTIONS(3272), - [aux_sym__val_number_token2] = ACTIONS(3272), - [aux_sym__val_number_token3] = ACTIONS(3272), - [aux_sym__val_number_token4] = ACTIONS(3275), - [aux_sym__val_number_token5] = ACTIONS(3275), - [aux_sym__val_number_token6] = ACTIONS(3275), - [anon_sym_0b] = ACTIONS(3278), - [anon_sym_0o] = ACTIONS(3281), - [anon_sym_0x] = ACTIONS(3281), - [sym_val_date] = ACTIONS(3284), - [anon_sym_DQUOTE] = ACTIONS(3287), - [sym__str_single_quotes] = ACTIONS(3290), - [sym__str_back_ticks] = ACTIONS(3290), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3293), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3296), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(3299), - [anon_sym_err_GT] = ACTIONS(3302), - [anon_sym_out_GT] = ACTIONS(3302), - [anon_sym_e_GT] = ACTIONS(3302), - [anon_sym_o_GT] = ACTIONS(3302), - [anon_sym_err_PLUSout_GT] = ACTIONS(3302), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3302), - [anon_sym_o_PLUSe_GT] = ACTIONS(3302), - [anon_sym_e_PLUSo_GT] = ACTIONS(3302), - [anon_sym_err_GT_GT] = ACTIONS(3305), - [anon_sym_out_GT_GT] = ACTIONS(3305), - [anon_sym_e_GT_GT] = ACTIONS(3305), - [anon_sym_o_GT_GT] = ACTIONS(3305), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3305), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3305), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3305), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3305), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3308), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3311), + [aux_sym_shebang_repeat1] = STATE(939), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [927] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2439), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2062), - [sym__unquoted_with_expr] = STATE(2273), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3750), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1980), + [sym__unquoted_with_expr] = STATE(2286), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(927), - [aux_sym_shebang_repeat1] = STATE(1046), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(940), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [928] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2440), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2063), - [sym__unquoted_with_expr] = STATE(2280), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3753), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1752), + [sym__unquoted_with_expr] = STATE(2257), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(928), - [aux_sym_shebang_repeat1] = STATE(1047), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(941), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [929] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2446), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2070), - [sym__unquoted_with_expr] = STATE(2298), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3756), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1754), + [sym__unquoted_with_expr] = STATE(2197), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(929), - [aux_sym_shebang_repeat1] = STATE(1045), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(942), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [930] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2442), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1987), - [sym__unquoted_with_expr] = STATE(2269), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3768), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1838), + [sym__unquoted_with_expr] = STATE(2155), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(930), - [aux_sym_shebang_repeat1] = STATE(1048), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [931] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2317), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1993), - [sym__unquoted_with_expr] = STATE(2305), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3771), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1839), + [sym__unquoted_with_expr] = STATE(2161), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(931), - [aux_sym_shebang_repeat1] = STATE(891), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [932] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2319), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2033), - [sym__unquoted_with_expr] = STATE(2238), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3773), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1840), + [sym__unquoted_with_expr] = STATE(2179), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(932), - [aux_sym_shebang_repeat1] = STATE(892), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [933] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2321), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2046), - [sym__unquoted_with_expr] = STATE(2164), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3775), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1841), + [sym__unquoted_with_expr] = STATE(2190), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(933), - [aux_sym_shebang_repeat1] = STATE(893), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [934] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2322), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1978), - [sym__unquoted_with_expr] = STATE(2169), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3663), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1842), + [sym__unquoted_with_expr] = STATE(2205), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(934), - [aux_sym_shebang_repeat1] = STATE(894), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [935] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2304), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2001), - [sym__unquoted_with_expr] = STATE(2175), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3665), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1843), + [sym__unquoted_with_expr] = STATE(2221), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(935), - [aux_sym_shebang_repeat1] = STATE(895), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [936] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2326), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2077), - [sym__unquoted_with_expr] = STATE(2229), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1886), + [sym__unquoted_with_expr] = STATE(2274), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(936), - [aux_sym_shebang_repeat1] = STATE(896), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [937] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2328), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1985), - [sym__unquoted_with_expr] = STATE(2204), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3669), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1897), + [sym__unquoted_with_expr] = STATE(2195), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(937), - [aux_sym_shebang_repeat1] = STATE(897), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [938] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2329), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1963), - [sym__unquoted_with_expr] = STATE(2200), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2201), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1898), + [sym__unquoted_with_expr] = STATE(2207), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(938), - [aux_sym_shebang_repeat1] = STATE(898), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [939] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2330), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1989), - [sym__unquoted_with_expr] = STATE(2286), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3671), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1899), + [sym__unquoted_with_expr] = STATE(2216), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(939), - [aux_sym_shebang_repeat1] = STATE(899), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [940] = { - [sym_expr_parenthesized] = STATE(5958), - [sym__spread_parenthesized] = STATE(7448), - [sym_val_range] = STATE(7451), - [sym__val_range] = STATE(7776), - [sym__val_range_with_end] = STATE(7452), - [sym__value] = STATE(7451), - [sym_val_nothing] = STATE(7049), - [sym_val_bool] = STATE(6510), - [sym__spread_variable] = STATE(7454), - [sym_val_variable] = STATE(5708), - [sym_val_number] = STATE(7049), - [sym__val_number_decimal] = STATE(5233), - [sym__val_number] = STATE(7097), - [sym_val_duration] = STATE(7049), - [sym_val_filesize] = STATE(7049), - [sym_val_binary] = STATE(7049), - [sym_val_string] = STATE(7049), - [sym__raw_str] = STATE(5195), - [sym__str_double_quotes] = STATE(5195), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(7049), - [sym__spread_list] = STATE(7448), - [sym_val_entry] = STATE(7225), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(7049), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_list] = STATE(6604), - [sym__unquoted_in_list_with_expr] = STATE(7451), - [sym__unquoted_anonymous_prefix] = STATE(7039), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1900), + [sym__unquoted_with_expr] = STATE(2231), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(940), - [aux_sym_list_body_repeat1] = STATE(926), - [anon_sym_LBRACK] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_true] = ACTIONS(3112), - [anon_sym_false] = ACTIONS(3112), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3114), - [aux_sym__val_number_decimal_token2] = ACTIONS(3116), - [aux_sym__val_number_decimal_token3] = ACTIONS(3118), - [aux_sym__val_number_decimal_token4] = ACTIONS(3120), - [aux_sym__val_number_token1] = ACTIONS(3122), - [aux_sym__val_number_token2] = ACTIONS(3122), - [aux_sym__val_number_token3] = ACTIONS(3122), - [aux_sym__val_number_token4] = ACTIONS(3124), - [aux_sym__val_number_token5] = ACTIONS(3124), - [aux_sym__val_number_token6] = ACTIONS(3124), - [anon_sym_0b] = ACTIONS(3126), - [anon_sym_0o] = ACTIONS(3128), - [anon_sym_0x] = ACTIONS(3128), - [sym_val_date] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym__str_single_quotes] = ACTIONS(3134), - [sym__str_back_ticks] = ACTIONS(3134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2596), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3136), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3138), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [941] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3721), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2062), - [sym__unquoted_with_expr] = STATE(2273), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3675), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1901), + [sym__unquoted_with_expr] = STATE(2241), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(941), - [aux_sym_shebang_repeat1] = STATE(954), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [942] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3752), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2063), - [sym__unquoted_with_expr] = STATE(2280), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3677), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1902), + [sym__unquoted_with_expr] = STATE(2253), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(942), - [aux_sym_shebang_repeat1] = STATE(955), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [943] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3762), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2070), - [sym__unquoted_with_expr] = STATE(2298), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3678), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1903), + [sym__unquoted_with_expr] = STATE(2146), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(943), [aux_sym_shebang_repeat1] = STATE(956), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [944] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3681), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1987), - [sym__unquoted_with_expr] = STATE(2269), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3679), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1910), + [sym__unquoted_with_expr] = STATE(2151), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(944), [aux_sym_shebang_repeat1] = STATE(957), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [945] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3731), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1993), - [sym__unquoted_with_expr] = STATE(2305), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3680), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1911), + [sym__unquoted_with_expr] = STATE(2169), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(945), [aux_sym_shebang_repeat1] = STATE(958), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [946] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3747), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2033), - [sym__unquoted_with_expr] = STATE(2238), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3681), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1913), + [sym__unquoted_with_expr] = STATE(2183), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(946), [aux_sym_shebang_repeat1] = STATE(959), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [947] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3754), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2046), - [sym__unquoted_with_expr] = STATE(2164), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3682), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1914), + [sym__unquoted_with_expr] = STATE(2187), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(947), [aux_sym_shebang_repeat1] = STATE(960), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [948] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3755), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1978), - [sym__unquoted_with_expr] = STATE(2169), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3683), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1920), + [sym__unquoted_with_expr] = STATE(2285), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(948), [aux_sym_shebang_repeat1] = STATE(961), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [949] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2304), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2001), - [sym__unquoted_with_expr] = STATE(2175), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3684), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1937), + [sym__unquoted_with_expr] = STATE(2149), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(949), [aux_sym_shebang_repeat1] = STATE(962), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [950] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3756), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2077), - [sym__unquoted_with_expr] = STATE(2229), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3685), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1938), + [sym__unquoted_with_expr] = STATE(2152), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(950), [aux_sym_shebang_repeat1] = STATE(963), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [951] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3758), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1985), - [sym__unquoted_with_expr] = STATE(2204), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2154), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1939), + [sym__unquoted_with_expr] = STATE(2156), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(951), [aux_sym_shebang_repeat1] = STATE(964), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [952] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3759), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1963), - [sym__unquoted_with_expr] = STATE(2200), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3686), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1941), + [sym__unquoted_with_expr] = STATE(2159), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(952), [aux_sym_shebang_repeat1] = STATE(965), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [953] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3760), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1989), - [sym__unquoted_with_expr] = STATE(2286), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3687), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1942), + [sym__unquoted_with_expr] = STATE(2162), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(953), - [aux_sym_shebang_repeat1] = STATE(966), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(890), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [954] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3767), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2025), - [sym__unquoted_with_expr] = STATE(2251), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1943), + [sym__unquoted_with_expr] = STATE(2165), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(954), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(967), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [955] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3771), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2027), - [sym__unquoted_with_expr] = STATE(2256), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3689), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1946), + [sym__unquoted_with_expr] = STATE(2181), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(955), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(968), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [956] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3773), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2053), - [sym__unquoted_with_expr] = STATE(2179), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3704), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1758), + [sym__unquoted_with_expr] = STATE(2272), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(956), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [957] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3775), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2058), - [sym__unquoted_with_expr] = STATE(2203), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3706), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1761), + [sym__unquoted_with_expr] = STATE(2247), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(957), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [958] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3781), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2061), - [sym__unquoted_with_expr] = STATE(2215), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3709), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1767), + [sym__unquoted_with_expr] = STATE(2147), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(958), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [959] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3783), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2064), - [sym__unquoted_with_expr] = STATE(2221), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3711), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1768), + [sym__unquoted_with_expr] = STATE(2189), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(959), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [960] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3785), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2018), - [sym__unquoted_with_expr] = STATE(2278), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3713), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1769), + [sym__unquoted_with_expr] = STATE(2150), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(960), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [961] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3789), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1947), - [sym__unquoted_with_expr] = STATE(2282), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3718), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1774), + [sym__unquoted_with_expr] = STATE(2173), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(961), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [962] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2291), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1949), - [sym__unquoted_with_expr] = STATE(2295), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3723), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1779), + [sym__unquoted_with_expr] = STATE(2275), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(962), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [963] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3791), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1950), - [sym__unquoted_with_expr] = STATE(2300), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3725), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1782), + [sym__unquoted_with_expr] = STATE(2166), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(963), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [964] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3672), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1953), - [sym__unquoted_with_expr] = STATE(2310), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2144), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1806), + [sym__unquoted_with_expr] = STATE(2213), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(964), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [965] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3674), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1954), - [sym__unquoted_with_expr] = STATE(2159), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3728), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1808), + [sym__unquoted_with_expr] = STATE(2248), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(965), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [966] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3676), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1955), - [sym__unquoted_with_expr] = STATE(2162), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7300), + [sym_val_range] = STATE(7368), + [sym__val_range] = STATE(7740), + [sym__val_range_with_end] = STATE(7289), + [sym__value] = STATE(7368), + [sym_val_nothing] = STATE(6851), + [sym_val_bool] = STATE(6691), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5759), + [sym_val_number] = STATE(6851), + [sym__val_number_decimal] = STATE(5314), + [sym__val_number] = STATE(6724), + [sym_val_duration] = STATE(6851), + [sym_val_filesize] = STATE(6851), + [sym_val_binary] = STATE(6851), + [sym_val_string] = STATE(6851), + [sym__raw_str] = STATE(5291), + [sym__str_double_quotes] = STATE(5291), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(6851), + [sym__spread_list] = STATE(7300), + [sym_val_entry] = STATE(7323), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(6851), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_list] = STATE(6334), + [sym__unquoted_in_list_with_expr] = STATE(7368), + [sym__unquoted_anonymous_prefix] = STATE(6813), [sym_comment] = STATE(966), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_list_body_repeat1] = STATE(966), + [anon_sym_LBRACK] = ACTIONS(3236), + [anon_sym_LPAREN] = ACTIONS(3239), + [anon_sym_DOLLAR] = ACTIONS(3242), + [anon_sym_LBRACE] = ACTIONS(3245), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(3251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3254), + [anon_sym_DOT_DOT_LT] = ACTIONS(3254), + [anon_sym_null] = ACTIONS(3257), + [anon_sym_true] = ACTIONS(3260), + [anon_sym_false] = ACTIONS(3260), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(3263), + [aux_sym__val_number_decimal_token1] = ACTIONS(3266), + [aux_sym__val_number_decimal_token2] = ACTIONS(3269), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), + [aux_sym__val_number_token1] = ACTIONS(3278), + [aux_sym__val_number_token2] = ACTIONS(3278), + [aux_sym__val_number_token3] = ACTIONS(3278), + [aux_sym__val_number_token4] = ACTIONS(3281), + [aux_sym__val_number_token5] = ACTIONS(3281), + [aux_sym__val_number_token6] = ACTIONS(3281), + [anon_sym_0b] = ACTIONS(3284), + [anon_sym_0o] = ACTIONS(3287), + [anon_sym_0x] = ACTIONS(3287), + [sym_val_date] = ACTIONS(3290), + [anon_sym_DQUOTE] = ACTIONS(3293), + [sym__str_single_quotes] = ACTIONS(3296), + [sym__str_back_ticks] = ACTIONS(3296), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3299), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3302), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(3305), + [anon_sym_err_GT] = ACTIONS(3308), + [anon_sym_out_GT] = ACTIONS(3308), + [anon_sym_e_GT] = ACTIONS(3308), + [anon_sym_o_GT] = ACTIONS(3308), + [anon_sym_err_PLUSout_GT] = ACTIONS(3308), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3308), + [anon_sym_o_PLUSe_GT] = ACTIONS(3308), + [anon_sym_e_PLUSo_GT] = ACTIONS(3308), + [anon_sym_err_GT_GT] = ACTIONS(3311), + [anon_sym_out_GT_GT] = ACTIONS(3311), + [anon_sym_e_GT_GT] = ACTIONS(3311), + [anon_sym_o_GT_GT] = ACTIONS(3311), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3311), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3311), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3311), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3311), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3314), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3317), }, [967] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3677), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1956), - [sym__unquoted_with_expr] = STATE(2166), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3731), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1825), + [sym__unquoted_with_expr] = STATE(2215), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(967), - [aux_sym_shebang_repeat1] = STATE(980), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [968] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3678), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1958), - [sym__unquoted_with_expr] = STATE(2170), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3734), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1846), + [sym__unquoted_with_expr] = STATE(2234), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(968), - [aux_sym_shebang_repeat1] = STATE(981), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [969] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3679), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1959), - [sym__unquoted_with_expr] = STATE(2176), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2318), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1758), + [sym__unquoted_with_expr] = STATE(2272), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(969), - [aux_sym_shebang_repeat1] = STATE(982), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [970] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3680), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1960), - [sym__unquoted_with_expr] = STATE(2184), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2389), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1761), + [sym__unquoted_with_expr] = STATE(2247), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(970), - [aux_sym_shebang_repeat1] = STATE(983), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [971] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1962), - [sym__unquoted_with_expr] = STATE(2191), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2302), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1767), + [sym__unquoted_with_expr] = STATE(2147), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(971), - [aux_sym_shebang_repeat1] = STATE(984), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [972] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3683), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1964), - [sym__unquoted_with_expr] = STATE(2199), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2310), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1768), + [sym__unquoted_with_expr] = STATE(2189), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(972), - [aux_sym_shebang_repeat1] = STATE(985), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [973] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3684), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1965), - [sym__unquoted_with_expr] = STATE(2216), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7300), + [sym_val_range] = STATE(7368), + [sym__val_range] = STATE(7740), + [sym__val_range_with_end] = STATE(7289), + [sym__value] = STATE(7368), + [sym_val_nothing] = STATE(6851), + [sym_val_bool] = STATE(6691), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5759), + [sym_val_number] = STATE(6851), + [sym__val_number_decimal] = STATE(5314), + [sym__val_number] = STATE(6724), + [sym_val_duration] = STATE(6851), + [sym_val_filesize] = STATE(6851), + [sym_val_binary] = STATE(6851), + [sym_val_string] = STATE(6851), + [sym__raw_str] = STATE(5291), + [sym__str_double_quotes] = STATE(5291), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(6851), + [sym__spread_list] = STATE(7300), + [sym_val_entry] = STATE(6752), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(6851), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_list] = STATE(6334), + [sym__unquoted_in_list_with_expr] = STATE(7368), + [sym__unquoted_anonymous_prefix] = STATE(6813), [sym_comment] = STATE(973), - [aux_sym_shebang_repeat1] = STATE(986), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_list_body_repeat1] = STATE(966), + [anon_sym_LBRACK] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_DOLLAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_DOT_DOT] = ACTIONS(3114), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3116), + [anon_sym_DOT_DOT_LT] = ACTIONS(3116), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_true] = ACTIONS(3120), + [anon_sym_false] = ACTIONS(3120), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3122), + [aux_sym__val_number_decimal_token2] = ACTIONS(3124), + [aux_sym__val_number_decimal_token3] = ACTIONS(3126), + [aux_sym__val_number_decimal_token4] = ACTIONS(3128), + [aux_sym__val_number_token1] = ACTIONS(3130), + [aux_sym__val_number_token2] = ACTIONS(3130), + [aux_sym__val_number_token3] = ACTIONS(3130), + [aux_sym__val_number_token4] = ACTIONS(3132), + [aux_sym__val_number_token5] = ACTIONS(3132), + [aux_sym__val_number_token6] = ACTIONS(3132), + [anon_sym_0b] = ACTIONS(3134), + [anon_sym_0o] = ACTIONS(3136), + [anon_sym_0x] = ACTIONS(3136), + [sym_val_date] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym__str_single_quotes] = ACTIONS(3142), + [sym__str_back_ticks] = ACTIONS(3142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2672), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3144), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3146), }, [974] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3685), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1971), - [sym__unquoted_with_expr] = STATE(2227), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3321), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1953), + [sym__unquoted_with_expr] = STATE(2211), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(974), [aux_sym_shebang_repeat1] = STATE(987), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [975] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2234), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1972), - [sym__unquoted_with_expr] = STATE(2237), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3322), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1954), + [sym__unquoted_with_expr] = STATE(2217), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(975), [aux_sym_shebang_repeat1] = STATE(988), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [976] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3686), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1973), - [sym__unquoted_with_expr] = STATE(2312), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3323), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1955), + [sym__unquoted_with_expr] = STATE(2138), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(976), [aux_sym_shebang_repeat1] = STATE(989), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [977] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3687), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1975), - [sym__unquoted_with_expr] = STATE(2246), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3324), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1958), + [sym__unquoted_with_expr] = STATE(2226), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(977), [aux_sym_shebang_repeat1] = STATE(990), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [978] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3688), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1977), - [sym__unquoted_with_expr] = STATE(2249), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3325), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1959), + [sym__unquoted_with_expr] = STATE(2229), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(978), [aux_sym_shebang_repeat1] = STATE(991), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [979] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3689), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1982), - [sym__unquoted_with_expr] = STATE(2266), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3326), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1960), + [sym__unquoted_with_expr] = STATE(2232), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(979), [aux_sym_shebang_repeat1] = STATE(992), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [980] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3707), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2047), - [sym__unquoted_with_expr] = STATE(2242), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3327), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1961), + [sym__unquoted_with_expr] = STATE(2235), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(980), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(993), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [981] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3709), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2049), - [sym__unquoted_with_expr] = STATE(2252), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3328), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1962), + [sym__unquoted_with_expr] = STATE(2239), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(981), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(994), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [982] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3711), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2052), - [sym__unquoted_with_expr] = STATE(2274), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2245), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1968), + [sym__unquoted_with_expr] = STATE(2249), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(982), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(995), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [983] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3713), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2069), - [sym__unquoted_with_expr] = STATE(2294), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3329), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1969), + [sym__unquoted_with_expr] = STATE(2281), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(983), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(996), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [984] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3715), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2036), - [sym__unquoted_with_expr] = STATE(2258), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3330), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1980), + [sym__unquoted_with_expr] = STATE(2286), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(984), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(997), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [985] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3717), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1980), - [sym__unquoted_with_expr] = STATE(2244), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3331), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1752), + [sym__unquoted_with_expr] = STATE(2257), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(985), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(998), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [986] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3719), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2039), - [sym__unquoted_with_expr] = STATE(2158), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3332), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1754), + [sym__unquoted_with_expr] = STATE(2197), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(986), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(999), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [987] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3671), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2059), - [sym__unquoted_with_expr] = STATE(2268), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3334), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1838), + [sym__unquoted_with_expr] = STATE(2155), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(987), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [988] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2276), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1992), - [sym__unquoted_with_expr] = STATE(2308), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3336), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1839), + [sym__unquoted_with_expr] = STATE(2161), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(988), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [989] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3723), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1946), - [sym__unquoted_with_expr] = STATE(2198), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3338), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1840), + [sym__unquoted_with_expr] = STATE(2179), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(989), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [990] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3725), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2080), - [sym__unquoted_with_expr] = STATE(2218), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3310), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1841), + [sym__unquoted_with_expr] = STATE(2190), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(990), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [991] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3727), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2045), - [sym__unquoted_with_expr] = STATE(2257), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3341), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1842), + [sym__unquoted_with_expr] = STATE(2205), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(991), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [992] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3729), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1952), - [sym__unquoted_with_expr] = STATE(2309), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3343), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1843), + [sym__unquoted_with_expr] = STATE(2221), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(992), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [993] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3400), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2062), - [sym__unquoted_with_expr] = STATE(2273), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3345), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1886), + [sym__unquoted_with_expr] = STATE(2274), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(993), - [aux_sym_shebang_repeat1] = STATE(1006), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [994] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3423), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2063), - [sym__unquoted_with_expr] = STATE(2280), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3347), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1897), + [sym__unquoted_with_expr] = STATE(2195), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(994), - [aux_sym_shebang_repeat1] = STATE(1007), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [995] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3407), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2070), - [sym__unquoted_with_expr] = STATE(2298), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2201), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1898), + [sym__unquoted_with_expr] = STATE(2207), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(995), - [aux_sym_shebang_repeat1] = STATE(1008), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [996] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3420), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1987), - [sym__unquoted_with_expr] = STATE(2269), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3349), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1899), + [sym__unquoted_with_expr] = STATE(2216), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(996), - [aux_sym_shebang_repeat1] = STATE(1009), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [997] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3421), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1993), - [sym__unquoted_with_expr] = STATE(2305), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3351), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1900), + [sym__unquoted_with_expr] = STATE(2231), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(997), - [aux_sym_shebang_repeat1] = STATE(1010), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [998] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3396), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2033), - [sym__unquoted_with_expr] = STATE(2238), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3353), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1901), + [sym__unquoted_with_expr] = STATE(2241), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(998), - [aux_sym_shebang_repeat1] = STATE(1011), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [999] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3398), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2046), - [sym__unquoted_with_expr] = STATE(2164), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3355), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1902), + [sym__unquoted_with_expr] = STATE(2253), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(999), - [aux_sym_shebang_repeat1] = STATE(1012), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1000] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3399), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1978), - [sym__unquoted_with_expr] = STATE(2169), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3356), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1903), + [sym__unquoted_with_expr] = STATE(2146), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1000), [aux_sym_shebang_repeat1] = STATE(1013), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1001] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2304), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2001), - [sym__unquoted_with_expr] = STATE(2175), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3357), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1910), + [sym__unquoted_with_expr] = STATE(2151), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1001), [aux_sym_shebang_repeat1] = STATE(1014), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1002] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3402), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2077), - [sym__unquoted_with_expr] = STATE(2229), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3358), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1911), + [sym__unquoted_with_expr] = STATE(2169), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1002), [aux_sym_shebang_repeat1] = STATE(1015), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1003] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3403), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1985), - [sym__unquoted_with_expr] = STATE(2204), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3359), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1913), + [sym__unquoted_with_expr] = STATE(2183), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1003), [aux_sym_shebang_repeat1] = STATE(1016), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1004] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3404), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1963), - [sym__unquoted_with_expr] = STATE(2200), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3360), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1914), + [sym__unquoted_with_expr] = STATE(2187), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1004), [aux_sym_shebang_repeat1] = STATE(1017), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1005] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3406), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1989), - [sym__unquoted_with_expr] = STATE(2286), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3361), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1920), + [sym__unquoted_with_expr] = STATE(2285), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1005), [aux_sym_shebang_repeat1] = STATE(1018), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1006] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3425), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2025), - [sym__unquoted_with_expr] = STATE(2251), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3362), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1937), + [sym__unquoted_with_expr] = STATE(2149), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1006), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(1019), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1007] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3427), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2027), - [sym__unquoted_with_expr] = STATE(2256), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3363), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1938), + [sym__unquoted_with_expr] = STATE(2152), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1007), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(1020), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1008] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3429), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2053), - [sym__unquoted_with_expr] = STATE(2179), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2154), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1939), + [sym__unquoted_with_expr] = STATE(2156), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1008), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(1021), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1009] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3431), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2058), - [sym__unquoted_with_expr] = STATE(2203), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3364), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1941), + [sym__unquoted_with_expr] = STATE(2159), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1009), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(1022), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1010] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3433), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2061), - [sym__unquoted_with_expr] = STATE(2215), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3365), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1942), + [sym__unquoted_with_expr] = STATE(2162), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1010), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(1023), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1011] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3435), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2064), - [sym__unquoted_with_expr] = STATE(2221), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3366), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1943), + [sym__unquoted_with_expr] = STATE(2165), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1011), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(1024), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1012] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3438), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2018), - [sym__unquoted_with_expr] = STATE(2278), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3367), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1946), + [sym__unquoted_with_expr] = STATE(2181), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1012), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(1025), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1013] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3440), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1947), - [sym__unquoted_with_expr] = STATE(2282), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3381), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1758), + [sym__unquoted_with_expr] = STATE(2272), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1013), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1014] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2291), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1949), - [sym__unquoted_with_expr] = STATE(2295), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3383), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1761), + [sym__unquoted_with_expr] = STATE(2247), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1014), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1015] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3442), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1950), - [sym__unquoted_with_expr] = STATE(2300), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3385), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1767), + [sym__unquoted_with_expr] = STATE(2147), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1015), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1016] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3444), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1953), - [sym__unquoted_with_expr] = STATE(2310), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3387), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1768), + [sym__unquoted_with_expr] = STATE(2189), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1016), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1017] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3446), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1954), - [sym__unquoted_with_expr] = STATE(2159), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3389), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1769), + [sym__unquoted_with_expr] = STATE(2150), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1017), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1018] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3449), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1955), - [sym__unquoted_with_expr] = STATE(2162), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3391), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1774), + [sym__unquoted_with_expr] = STATE(2173), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1018), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1019] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3450), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1956), - [sym__unquoted_with_expr] = STATE(2166), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3393), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1779), + [sym__unquoted_with_expr] = STATE(2275), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1019), - [aux_sym_shebang_repeat1] = STATE(1032), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1020] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3451), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1958), - [sym__unquoted_with_expr] = STATE(2170), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3395), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1782), + [sym__unquoted_with_expr] = STATE(2166), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1020), - [aux_sym_shebang_repeat1] = STATE(1033), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1021] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3452), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1959), - [sym__unquoted_with_expr] = STATE(2176), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2144), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1806), + [sym__unquoted_with_expr] = STATE(2213), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1021), - [aux_sym_shebang_repeat1] = STATE(1034), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1022] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3453), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1960), - [sym__unquoted_with_expr] = STATE(2184), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3397), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1808), + [sym__unquoted_with_expr] = STATE(2248), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1022), - [aux_sym_shebang_repeat1] = STATE(1035), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1023] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3455), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1962), - [sym__unquoted_with_expr] = STATE(2191), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3399), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1813), + [sym__unquoted_with_expr] = STATE(2178), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1023), - [aux_sym_shebang_repeat1] = STATE(1036), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1024] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3456), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1964), - [sym__unquoted_with_expr] = STATE(2199), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3401), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1825), + [sym__unquoted_with_expr] = STATE(2215), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1024), - [aux_sym_shebang_repeat1] = STATE(1037), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1025] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3457), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1965), - [sym__unquoted_with_expr] = STATE(2216), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(3403), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1846), + [sym__unquoted_with_expr] = STATE(2234), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1025), - [aux_sym_shebang_repeat1] = STATE(1038), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1026] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3458), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1971), - [sym__unquoted_with_expr] = STATE(2227), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2387), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1774), + [sym__unquoted_with_expr] = STATE(2173), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1026), - [aux_sym_shebang_repeat1] = STATE(1039), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1027] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2234), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1972), - [sym__unquoted_with_expr] = STATE(2237), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2295), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1779), + [sym__unquoted_with_expr] = STATE(2275), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1027), - [aux_sym_shebang_repeat1] = STATE(1040), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1028] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3459), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1973), - [sym__unquoted_with_expr] = STATE(2312), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2303), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1782), + [sym__unquoted_with_expr] = STATE(2166), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1028), - [aux_sym_shebang_repeat1] = STATE(1041), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1029] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3460), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1975), - [sym__unquoted_with_expr] = STATE(2246), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2144), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1806), + [sym__unquoted_with_expr] = STATE(2213), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1029), - [aux_sym_shebang_repeat1] = STATE(1042), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1030] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3461), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1977), - [sym__unquoted_with_expr] = STATE(2249), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2326), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1808), + [sym__unquoted_with_expr] = STATE(2248), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1030), - [aux_sym_shebang_repeat1] = STATE(1043), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1031] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3462), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1982), - [sym__unquoted_with_expr] = STATE(2266), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2367), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1813), + [sym__unquoted_with_expr] = STATE(2178), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1031), - [aux_sym_shebang_repeat1] = STATE(1044), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1032] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3478), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2047), - [sym__unquoted_with_expr] = STATE(2242), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2385), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1825), + [sym__unquoted_with_expr] = STATE(2215), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1032), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1033] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3480), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2049), - [sym__unquoted_with_expr] = STATE(2252), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2415), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1846), + [sym__unquoted_with_expr] = STATE(2234), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1033), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1034] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3482), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2052), - [sym__unquoted_with_expr] = STATE(2274), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2392), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1953), + [sym__unquoted_with_expr] = STATE(2211), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1034), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(891), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1035] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3484), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2069), - [sym__unquoted_with_expr] = STATE(2294), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2394), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1954), + [sym__unquoted_with_expr] = STATE(2217), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1035), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(892), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1036] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3487), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2036), - [sym__unquoted_with_expr] = STATE(2258), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2402), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1955), + [sym__unquoted_with_expr] = STATE(2138), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1036), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(893), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1037] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3489), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1980), - [sym__unquoted_with_expr] = STATE(2244), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2405), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1958), + [sym__unquoted_with_expr] = STATE(2226), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1037), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(894), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1038] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3491), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2039), - [sym__unquoted_with_expr] = STATE(2158), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2410), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1959), + [sym__unquoted_with_expr] = STATE(2229), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1038), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(895), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1039] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3493), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2059), - [sym__unquoted_with_expr] = STATE(2268), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2412), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1960), + [sym__unquoted_with_expr] = STATE(2232), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1039), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(896), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1040] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2276), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1992), - [sym__unquoted_with_expr] = STATE(2308), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2413), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1961), + [sym__unquoted_with_expr] = STATE(2235), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1040), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(897), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1041] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3496), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1946), - [sym__unquoted_with_expr] = STATE(2198), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2414), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1962), + [sym__unquoted_with_expr] = STATE(2239), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1041), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(898), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1042] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3498), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2080), - [sym__unquoted_with_expr] = STATE(2218), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2245), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1968), + [sym__unquoted_with_expr] = STATE(2249), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1042), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(899), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1043] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3380), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2045), - [sym__unquoted_with_expr] = STATE(2257), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2292), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1969), + [sym__unquoted_with_expr] = STATE(2281), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1043), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(900), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1044] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(3382), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1952), - [sym__unquoted_with_expr] = STATE(2309), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2296), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1980), + [sym__unquoted_with_expr] = STATE(2286), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1044), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(901), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1045] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2394), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2053), - [sym__unquoted_with_expr] = STATE(2179), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2297), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1752), + [sym__unquoted_with_expr] = STATE(2257), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1045), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(902), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1046] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2389), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2025), - [sym__unquoted_with_expr] = STATE(2251), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2299), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1754), + [sym__unquoted_with_expr] = STATE(2197), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1046), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(903), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1047] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2392), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2027), - [sym__unquoted_with_expr] = STATE(2256), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7300), + [sym_val_range] = STATE(7368), + [sym__val_range] = STATE(7740), + [sym__val_range_with_end] = STATE(7289), + [sym__value] = STATE(7368), + [sym_val_nothing] = STATE(6851), + [sym_val_bool] = STATE(6691), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5759), + [sym_val_number] = STATE(6851), + [sym__val_number_decimal] = STATE(5314), + [sym__val_number] = STATE(6724), + [sym_val_duration] = STATE(6851), + [sym_val_filesize] = STATE(6851), + [sym_val_binary] = STATE(6851), + [sym_val_string] = STATE(6851), + [sym__raw_str] = STATE(5291), + [sym__str_double_quotes] = STATE(5291), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(6851), + [sym__spread_list] = STATE(7300), + [sym_val_entry] = STATE(6734), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(6851), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_list] = STATE(6334), + [sym__unquoted_in_list_with_expr] = STATE(7368), + [sym__unquoted_anonymous_prefix] = STATE(6813), [sym_comment] = STATE(1047), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_list_body_repeat1] = STATE(966), + [anon_sym_LBRACK] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_DOLLAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_DOT_DOT] = ACTIONS(3114), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3116), + [anon_sym_DOT_DOT_LT] = ACTIONS(3116), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_true] = ACTIONS(3120), + [anon_sym_false] = ACTIONS(3120), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3122), + [aux_sym__val_number_decimal_token2] = ACTIONS(3124), + [aux_sym__val_number_decimal_token3] = ACTIONS(3126), + [aux_sym__val_number_decimal_token4] = ACTIONS(3128), + [aux_sym__val_number_token1] = ACTIONS(3130), + [aux_sym__val_number_token2] = ACTIONS(3130), + [aux_sym__val_number_token3] = ACTIONS(3130), + [aux_sym__val_number_token4] = ACTIONS(3132), + [aux_sym__val_number_token5] = ACTIONS(3132), + [aux_sym__val_number_token6] = ACTIONS(3132), + [anon_sym_0b] = ACTIONS(3134), + [anon_sym_0o] = ACTIONS(3136), + [anon_sym_0x] = ACTIONS(3136), + [sym_val_date] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym__str_single_quotes] = ACTIONS(3142), + [sym__str_back_ticks] = ACTIONS(3142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2672), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3144), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3146), }, [1048] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary_parenthesized] = STATE(2438), - [sym__expr_binary_expression_parenthesized] = STATE(2396), - [sym_expr_parenthesized] = STATE(2050), - [sym_val_range] = STATE(2438), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(2058), - [sym__unquoted_with_expr] = STATE(2203), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2391), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary_parenthesized] = STATE(2391), + [sym__expr_binary_expression_parenthesized] = STATE(2329), + [sym_expr_parenthesized] = STATE(1952), + [sym_val_range] = STATE(2391), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2391), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1769), + [sym__unquoted_with_expr] = STATE(2150), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1048), - [aux_sym_shebang_repeat1] = STATE(2872), - [sym__newline] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2866), + [sym__newline] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1049] = { - [sym_expr_parenthesized] = STATE(1607), - [sym_val_range] = STATE(1893), - [sym__val_range] = STATE(7834), - [sym__val_range_with_end] = STATE(7414), - [sym__value] = STATE(1893), - [sym_val_nothing] = STATE(1798), - [sym_val_bool] = STATE(1575), - [sym_val_variable] = STATE(1529), - [sym_val_number] = STATE(1798), - [sym__val_number_decimal] = STATE(1259), - [sym__val_number] = STATE(1706), - [sym_val_duration] = STATE(1798), - [sym_val_filesize] = STATE(1798), - [sym_val_binary] = STATE(1798), - [sym_val_string] = STATE(1798), - [sym__raw_str] = STATE(1731), - [sym__str_double_quotes] = STATE(1731), - [sym_val_interpolated] = STATE(1798), - [sym__inter_single_quotes] = STATE(1778), - [sym__inter_double_quotes] = STATE(1780), - [sym_val_list] = STATE(1798), - [sym_val_record] = STATE(1798), - [sym_val_table] = STATE(1798), - [sym_val_closure] = STATE(1798), - [sym__flag] = STATE(1893), - [sym_short_flag] = STATE(1765), - [sym_long_flag] = STATE(1765), - [sym_unquoted] = STATE(1693), - [sym__unquoted_with_expr] = STATE(1896), - [sym__unquoted_anonymous_prefix] = STATE(6713), + [sym_expr_parenthesized] = STATE(1645), + [sym_val_range] = STATE(2115), + [sym__val_range] = STATE(7756), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2115), + [sym_val_nothing] = STATE(1832), + [sym_val_bool] = STATE(1602), + [sym_val_variable] = STATE(1533), + [sym_val_number] = STATE(1832), + [sym__val_number_decimal] = STATE(1330), + [sym__val_number] = STATE(1836), + [sym_val_duration] = STATE(1832), + [sym_val_filesize] = STATE(1832), + [sym_val_binary] = STATE(1832), + [sym_val_string] = STATE(1832), + [sym__raw_str] = STATE(1932), + [sym__str_double_quotes] = STATE(1932), + [sym_val_interpolated] = STATE(1832), + [sym__inter_single_quotes] = STATE(1921), + [sym__inter_double_quotes] = STATE(1922), + [sym_val_list] = STATE(1832), + [sym_val_record] = STATE(1832), + [sym_val_table] = STATE(1832), + [sym_val_closure] = STATE(1832), + [sym__flag] = STATE(2115), + [sym_short_flag] = STATE(1764), + [sym_long_flag] = STATE(1764), + [sym_unquoted] = STATE(1715), + [sym__unquoted_with_expr] = STATE(2116), + [sym__unquoted_anonymous_prefix] = STATE(6703), [sym_comment] = STATE(1049), - [aux_sym_shebang_repeat1] = STATE(2823), - [sym__newline] = ACTIONS(3354), - [anon_sym_LBRACK] = ACTIONS(2618), - [anon_sym_LPAREN] = ACTIONS(2620), - [anon_sym_DOLLAR] = ACTIONS(2622), - [anon_sym_DASH_DASH] = ACTIONS(2624), - [anon_sym_DASH2] = ACTIONS(2626), - [anon_sym_LBRACE] = ACTIONS(2628), - [anon_sym_DOT_DOT] = ACTIONS(2630), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2632), - [anon_sym_DOT_DOT_LT] = ACTIONS(2632), - [anon_sym_null] = ACTIONS(2634), - [anon_sym_true] = ACTIONS(2636), - [anon_sym_false] = ACTIONS(2636), - [aux_sym__val_number_decimal_token1] = ACTIONS(2638), - [aux_sym__val_number_decimal_token2] = ACTIONS(2640), - [aux_sym__val_number_decimal_token3] = ACTIONS(2642), - [aux_sym__val_number_decimal_token4] = ACTIONS(2644), - [aux_sym__val_number_token1] = ACTIONS(2646), - [aux_sym__val_number_token2] = ACTIONS(2646), - [aux_sym__val_number_token3] = ACTIONS(2646), - [aux_sym__val_number_token4] = ACTIONS(2648), - [aux_sym__val_number_token5] = ACTIONS(2648), - [aux_sym__val_number_token6] = ACTIONS(2648), - [anon_sym_0b] = ACTIONS(2650), - [anon_sym_0o] = ACTIONS(2652), - [anon_sym_0x] = ACTIONS(2652), - [sym_val_date] = ACTIONS(2654), - [anon_sym_DQUOTE] = ACTIONS(2656), - [sym__str_single_quotes] = ACTIONS(2658), - [sym__str_back_ticks] = ACTIONS(2658), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2660), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2662), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(2668), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2670), + [aux_sym_shebang_repeat1] = STATE(2853), + [sym__newline] = ACTIONS(3340), + [anon_sym_LBRACK] = ACTIONS(2784), + [anon_sym_LPAREN] = ACTIONS(2786), + [anon_sym_DOLLAR] = ACTIONS(2788), + [anon_sym_DASH_DASH] = ACTIONS(2790), + [anon_sym_DASH2] = ACTIONS(2792), + [anon_sym_LBRACE] = ACTIONS(2794), + [anon_sym_DOT_DOT] = ACTIONS(2796), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2798), + [anon_sym_DOT_DOT_LT] = ACTIONS(2798), + [anon_sym_null] = ACTIONS(2800), + [anon_sym_true] = ACTIONS(2802), + [anon_sym_false] = ACTIONS(2802), + [aux_sym__val_number_decimal_token1] = ACTIONS(2804), + [aux_sym__val_number_decimal_token2] = ACTIONS(2806), + [aux_sym__val_number_decimal_token3] = ACTIONS(2808), + [aux_sym__val_number_decimal_token4] = ACTIONS(2810), + [aux_sym__val_number_token1] = ACTIONS(2812), + [aux_sym__val_number_token2] = ACTIONS(2812), + [aux_sym__val_number_token3] = ACTIONS(2812), + [aux_sym__val_number_token4] = ACTIONS(2814), + [aux_sym__val_number_token5] = ACTIONS(2814), + [aux_sym__val_number_token6] = ACTIONS(2814), + [anon_sym_0b] = ACTIONS(2816), + [anon_sym_0o] = ACTIONS(2818), + [anon_sym_0x] = ACTIONS(2818), + [sym_val_date] = ACTIONS(2820), + [anon_sym_DQUOTE] = ACTIONS(2822), + [sym__str_single_quotes] = ACTIONS(2824), + [sym__str_back_ticks] = ACTIONS(2824), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2826), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2828), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(2834), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2836), }, [1050] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(3848), - [sym_expr_parenthesized] = STATE(1902), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1910), - [sym__unquoted_with_expr] = STATE(2098), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(3816), + [sym_expr_parenthesized] = STATE(3650), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3736), + [sym_val_variable] = STATE(3629), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3549), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1717), + [sym__unquoted_with_expr] = STATE(2036), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1050), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3342), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3344), + [anon_sym_DOT_DOT_LT] = ACTIONS(3344), + [anon_sym_null] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3348), + [anon_sym_false] = ACTIONS(3348), + [aux_sym__val_number_decimal_token1] = ACTIONS(3350), + [aux_sym__val_number_decimal_token2] = ACTIONS(3352), + [aux_sym__val_number_decimal_token3] = ACTIONS(3354), + [aux_sym__val_number_decimal_token4] = ACTIONS(3356), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3358), + [aux_sym__val_number_token5] = ACTIONS(3358), + [aux_sym__val_number_token6] = ACTIONS(3358), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3360), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1051] = { - [sym_expr_unary] = STATE(2504), - [sym__expr_unary_minus] = STATE(2458), - [sym_expr_binary] = STATE(2504), - [sym__expr_binary_expression] = STATE(3517), - [sym_expr_parenthesized] = STATE(2150), - [sym_val_range] = STATE(2504), - [sym__val_range] = STATE(7714), - [sym__val_range_with_end] = STATE(7377), - [sym__value] = STATE(2504), - [sym_val_nothing] = STATE(2516), - [sym_val_bool] = STATE(3367), - [sym_val_variable] = STATE(2101), - [sym_val_number] = STATE(2516), - [sym__val_number_decimal] = STATE(3077), - [sym__val_number] = STATE(2512), - [sym_val_duration] = STATE(2516), - [sym_val_filesize] = STATE(2516), - [sym_val_binary] = STATE(2516), - [sym_val_string] = STATE(2516), - [sym__raw_str] = STATE(1732), - [sym__str_double_quotes] = STATE(1732), - [sym_val_interpolated] = STATE(2516), - [sym__inter_single_quotes] = STATE(2527), - [sym__inter_double_quotes] = STATE(2528), - [sym_val_list] = STATE(2516), - [sym_val_record] = STATE(2516), - [sym_val_table] = STATE(2516), - [sym_val_closure] = STATE(2516), - [sym_unquoted] = STATE(2301), - [sym__unquoted_with_expr] = STATE(2529), - [sym__unquoted_anonymous_prefix] = STATE(6993), + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(2349), + [sym_expr_parenthesized] = STATE(1702), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1704), + [sym__unquoted_with_expr] = STATE(2022), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1051), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1044), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3356), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3358), - [anon_sym_DOT_DOT_LT] = ACTIONS(3358), - [anon_sym_null] = ACTIONS(3360), - [anon_sym_true] = ACTIONS(3362), - [anon_sym_false] = ACTIONS(3362), - [aux_sym__val_number_decimal_token1] = ACTIONS(3364), - [aux_sym__val_number_decimal_token2] = ACTIONS(3366), - [aux_sym__val_number_decimal_token3] = ACTIONS(3368), - [aux_sym__val_number_decimal_token4] = ACTIONS(3370), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3372), - [aux_sym__val_number_token5] = ACTIONS(3372), - [aux_sym__val_number_token6] = ACTIONS(3372), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3374), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3376), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1052] = { - [sym_expr_unary] = STATE(2504), - [sym__expr_unary_minus] = STATE(2458), - [sym_expr_binary] = STATE(2504), - [sym__expr_binary_expression] = STATE(3518), - [sym_expr_parenthesized] = STATE(2150), - [sym_val_range] = STATE(2504), - [sym__val_range] = STATE(7714), - [sym__val_range_with_end] = STATE(7377), - [sym__value] = STATE(2504), - [sym_val_nothing] = STATE(2516), - [sym_val_bool] = STATE(3367), - [sym_val_variable] = STATE(2101), - [sym_val_number] = STATE(2516), - [sym__val_number_decimal] = STATE(3077), - [sym__val_number] = STATE(2512), - [sym_val_duration] = STATE(2516), - [sym_val_filesize] = STATE(2516), - [sym_val_binary] = STATE(2516), - [sym_val_string] = STATE(2516), - [sym__raw_str] = STATE(1732), - [sym__str_double_quotes] = STATE(1732), - [sym_val_interpolated] = STATE(2516), - [sym__inter_single_quotes] = STATE(2527), - [sym__inter_double_quotes] = STATE(2528), - [sym_val_list] = STATE(2516), - [sym_val_record] = STATE(2516), - [sym_val_table] = STATE(2516), - [sym_val_closure] = STATE(2516), - [sym_unquoted] = STATE(2168), - [sym__unquoted_with_expr] = STATE(2545), - [sym__unquoted_anonymous_prefix] = STATE(6993), + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(2350), + [sym_expr_parenthesized] = STATE(1702), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1713), + [sym__unquoted_with_expr] = STATE(2030), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1052), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1044), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3356), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3358), - [anon_sym_DOT_DOT_LT] = ACTIONS(3358), - [anon_sym_null] = ACTIONS(3360), - [anon_sym_true] = ACTIONS(3362), - [anon_sym_false] = ACTIONS(3362), - [aux_sym__val_number_decimal_token1] = ACTIONS(3364), - [aux_sym__val_number_decimal_token2] = ACTIONS(3366), - [aux_sym__val_number_decimal_token3] = ACTIONS(3368), - [aux_sym__val_number_decimal_token4] = ACTIONS(3370), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3372), - [aux_sym__val_number_token5] = ACTIONS(3372), - [aux_sym__val_number_token6] = ACTIONS(3372), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3374), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3376), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1053] = { - [sym_expr_unary] = STATE(2504), - [sym__expr_unary_minus] = STATE(2458), - [sym_expr_binary] = STATE(2504), - [sym__expr_binary_expression] = STATE(3519), - [sym_expr_parenthesized] = STATE(2150), - [sym_val_range] = STATE(2504), - [sym__val_range] = STATE(7714), - [sym__val_range_with_end] = STATE(7377), - [sym__value] = STATE(2504), - [sym_val_nothing] = STATE(2516), - [sym_val_bool] = STATE(3367), - [sym_val_variable] = STATE(2101), - [sym_val_number] = STATE(2516), - [sym__val_number_decimal] = STATE(3077), - [sym__val_number] = STATE(2512), - [sym_val_duration] = STATE(2516), - [sym_val_filesize] = STATE(2516), - [sym_val_binary] = STATE(2516), - [sym_val_string] = STATE(2516), - [sym__raw_str] = STATE(1732), - [sym__str_double_quotes] = STATE(1732), - [sym_val_interpolated] = STATE(2516), - [sym__inter_single_quotes] = STATE(2527), - [sym__inter_double_quotes] = STATE(2528), - [sym_val_list] = STATE(2516), - [sym_val_record] = STATE(2516), - [sym_val_table] = STATE(2516), - [sym_val_closure] = STATE(2516), - [sym_unquoted] = STATE(2172), - [sym__unquoted_with_expr] = STATE(2548), - [sym__unquoted_anonymous_prefix] = STATE(6993), + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(2351), + [sym_expr_parenthesized] = STATE(1702), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1717), + [sym__unquoted_with_expr] = STATE(2036), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1053), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1044), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3356), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3358), - [anon_sym_DOT_DOT_LT] = ACTIONS(3358), - [anon_sym_null] = ACTIONS(3360), - [anon_sym_true] = ACTIONS(3362), - [anon_sym_false] = ACTIONS(3362), - [aux_sym__val_number_decimal_token1] = ACTIONS(3364), - [aux_sym__val_number_decimal_token2] = ACTIONS(3366), - [aux_sym__val_number_decimal_token3] = ACTIONS(3368), - [aux_sym__val_number_decimal_token4] = ACTIONS(3370), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3372), - [aux_sym__val_number_token5] = ACTIONS(3372), - [aux_sym__val_number_token6] = ACTIONS(3372), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3374), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3376), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1054] = { - [sym_expr_unary] = STATE(2504), - [sym__expr_unary_minus] = STATE(2458), - [sym_expr_binary] = STATE(2504), - [sym__expr_binary_expression] = STATE(3520), - [sym_expr_parenthesized] = STATE(2150), - [sym_val_range] = STATE(2504), - [sym__val_range] = STATE(7714), - [sym__val_range_with_end] = STATE(7377), - [sym__value] = STATE(2504), - [sym_val_nothing] = STATE(2516), - [sym_val_bool] = STATE(3367), - [sym_val_variable] = STATE(2101), - [sym_val_number] = STATE(2516), - [sym__val_number_decimal] = STATE(3077), - [sym__val_number] = STATE(2512), - [sym_val_duration] = STATE(2516), - [sym_val_filesize] = STATE(2516), - [sym_val_binary] = STATE(2516), - [sym_val_string] = STATE(2516), - [sym__raw_str] = STATE(1732), - [sym__str_double_quotes] = STATE(1732), - [sym_val_interpolated] = STATE(2516), - [sym__inter_single_quotes] = STATE(2527), - [sym__inter_double_quotes] = STATE(2528), - [sym_val_list] = STATE(2516), - [sym_val_record] = STATE(2516), - [sym_val_table] = STATE(2516), - [sym_val_closure] = STATE(2516), - [sym_unquoted] = STATE(2180), - [sym__unquoted_with_expr] = STATE(2454), - [sym__unquoted_anonymous_prefix] = STATE(6993), + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(2352), + [sym_expr_parenthesized] = STATE(1702), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1723), + [sym__unquoted_with_expr] = STATE(2040), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1054), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1044), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3356), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3358), - [anon_sym_DOT_DOT_LT] = ACTIONS(3358), - [anon_sym_null] = ACTIONS(3360), - [anon_sym_true] = ACTIONS(3362), - [anon_sym_false] = ACTIONS(3362), - [aux_sym__val_number_decimal_token1] = ACTIONS(3364), - [aux_sym__val_number_decimal_token2] = ACTIONS(3366), - [aux_sym__val_number_decimal_token3] = ACTIONS(3368), - [aux_sym__val_number_decimal_token4] = ACTIONS(3370), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3372), - [aux_sym__val_number_token5] = ACTIONS(3372), - [aux_sym__val_number_token6] = ACTIONS(3372), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3374), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3376), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1055] = { - [sym_expr_unary] = STATE(2504), - [sym__expr_unary_minus] = STATE(2458), - [sym_expr_binary] = STATE(2504), - [sym__expr_binary_expression] = STATE(3521), - [sym_expr_parenthesized] = STATE(2150), - [sym_val_range] = STATE(2504), - [sym__val_range] = STATE(7714), - [sym__val_range_with_end] = STATE(7377), - [sym__value] = STATE(2504), - [sym_val_nothing] = STATE(2516), - [sym_val_bool] = STATE(3367), - [sym_val_variable] = STATE(2101), - [sym_val_number] = STATE(2516), - [sym__val_number_decimal] = STATE(3077), - [sym__val_number] = STATE(2512), - [sym_val_duration] = STATE(2516), - [sym_val_filesize] = STATE(2516), - [sym_val_binary] = STATE(2516), - [sym_val_string] = STATE(2516), - [sym__raw_str] = STATE(1732), - [sym__str_double_quotes] = STATE(1732), - [sym_val_interpolated] = STATE(2516), - [sym__inter_single_quotes] = STATE(2527), - [sym__inter_double_quotes] = STATE(2528), - [sym_val_list] = STATE(2516), - [sym_val_record] = STATE(2516), - [sym_val_table] = STATE(2516), - [sym_val_closure] = STATE(2516), - [sym_unquoted] = STATE(2182), - [sym__unquoted_with_expr] = STATE(2462), - [sym__unquoted_anonymous_prefix] = STATE(6993), + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(2353), + [sym_expr_parenthesized] = STATE(1702), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1725), + [sym__unquoted_with_expr] = STATE(2046), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1055), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1044), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3356), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3358), - [anon_sym_DOT_DOT_LT] = ACTIONS(3358), - [anon_sym_null] = ACTIONS(3360), - [anon_sym_true] = ACTIONS(3362), - [anon_sym_false] = ACTIONS(3362), - [aux_sym__val_number_decimal_token1] = ACTIONS(3364), - [aux_sym__val_number_decimal_token2] = ACTIONS(3366), - [aux_sym__val_number_decimal_token3] = ACTIONS(3368), - [aux_sym__val_number_decimal_token4] = ACTIONS(3370), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3372), - [aux_sym__val_number_token5] = ACTIONS(3372), - [aux_sym__val_number_token6] = ACTIONS(3372), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3374), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3376), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1056] = { - [sym_expr_unary] = STATE(2504), - [sym__expr_unary_minus] = STATE(2458), - [sym_expr_binary] = STATE(2504), - [sym__expr_binary_expression] = STATE(2463), - [sym_expr_parenthesized] = STATE(2150), - [sym_val_range] = STATE(2504), - [sym__val_range] = STATE(7714), - [sym__val_range_with_end] = STATE(7377), - [sym__value] = STATE(2504), - [sym_val_nothing] = STATE(2516), - [sym_val_bool] = STATE(3367), - [sym_val_variable] = STATE(2101), - [sym_val_number] = STATE(2516), - [sym__val_number_decimal] = STATE(3077), - [sym__val_number] = STATE(2512), - [sym_val_duration] = STATE(2516), - [sym_val_filesize] = STATE(2516), - [sym_val_binary] = STATE(2516), - [sym_val_string] = STATE(2516), - [sym__raw_str] = STATE(1732), - [sym__str_double_quotes] = STATE(1732), - [sym_val_interpolated] = STATE(2516), - [sym__inter_single_quotes] = STATE(2527), - [sym__inter_double_quotes] = STATE(2528), - [sym_val_list] = STATE(2516), - [sym_val_record] = STATE(2516), - [sym_val_table] = STATE(2516), - [sym_val_closure] = STATE(2516), - [sym_unquoted] = STATE(2183), - [sym__unquoted_with_expr] = STATE(2466), - [sym__unquoted_anonymous_prefix] = STATE(6993), + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(2354), + [sym_expr_parenthesized] = STATE(1702), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1726), + [sym__unquoted_with_expr] = STATE(2055), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1056), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1044), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3356), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3358), - [anon_sym_DOT_DOT_LT] = ACTIONS(3358), - [anon_sym_null] = ACTIONS(3360), - [anon_sym_true] = ACTIONS(3362), - [anon_sym_false] = ACTIONS(3362), - [aux_sym__val_number_decimal_token1] = ACTIONS(3364), - [aux_sym__val_number_decimal_token2] = ACTIONS(3366), - [aux_sym__val_number_decimal_token3] = ACTIONS(3368), - [aux_sym__val_number_decimal_token4] = ACTIONS(3370), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3372), - [aux_sym__val_number_token5] = ACTIONS(3372), - [aux_sym__val_number_token6] = ACTIONS(3372), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3374), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3376), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1057] = { - [sym_expr_unary] = STATE(2504), - [sym__expr_unary_minus] = STATE(2458), - [sym_expr_binary] = STATE(2504), - [sym__expr_binary_expression] = STATE(3523), - [sym_expr_parenthesized] = STATE(2150), - [sym_val_range] = STATE(2504), - [sym__val_range] = STATE(7714), - [sym__val_range_with_end] = STATE(7377), - [sym__value] = STATE(2504), - [sym_val_nothing] = STATE(2516), - [sym_val_bool] = STATE(3367), - [sym_val_variable] = STATE(2101), - [sym_val_number] = STATE(2516), - [sym__val_number_decimal] = STATE(3077), - [sym__val_number] = STATE(2512), - [sym_val_duration] = STATE(2516), - [sym_val_filesize] = STATE(2516), - [sym_val_binary] = STATE(2516), - [sym_val_string] = STATE(2516), - [sym__raw_str] = STATE(1732), - [sym__str_double_quotes] = STATE(1732), - [sym_val_interpolated] = STATE(2516), - [sym__inter_single_quotes] = STATE(2527), - [sym__inter_double_quotes] = STATE(2528), - [sym_val_list] = STATE(2516), - [sym_val_record] = STATE(2516), - [sym_val_table] = STATE(2516), - [sym_val_closure] = STATE(2516), - [sym_unquoted] = STATE(2230), - [sym__unquoted_with_expr] = STATE(2473), - [sym__unquoted_anonymous_prefix] = STATE(6993), + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(2355), + [sym_expr_parenthesized] = STATE(1702), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1666), + [sym__unquoted_with_expr] = STATE(2073), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1057), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1044), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3356), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3358), - [anon_sym_DOT_DOT_LT] = ACTIONS(3358), - [anon_sym_null] = ACTIONS(3360), - [anon_sym_true] = ACTIONS(3362), - [anon_sym_false] = ACTIONS(3362), - [aux_sym__val_number_decimal_token1] = ACTIONS(3364), - [aux_sym__val_number_decimal_token2] = ACTIONS(3366), - [aux_sym__val_number_decimal_token3] = ACTIONS(3368), - [aux_sym__val_number_decimal_token4] = ACTIONS(3370), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3372), - [aux_sym__val_number_token5] = ACTIONS(3372), - [aux_sym__val_number_token6] = ACTIONS(3372), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3374), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3376), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1058] = { - [sym_expr_unary] = STATE(2504), - [sym__expr_unary_minus] = STATE(2458), - [sym_expr_binary] = STATE(2504), - [sym__expr_binary_expression] = STATE(3524), - [sym_expr_parenthesized] = STATE(2150), - [sym_val_range] = STATE(2504), - [sym__val_range] = STATE(7714), - [sym__val_range_with_end] = STATE(7377), - [sym__value] = STATE(2504), - [sym_val_nothing] = STATE(2516), - [sym_val_bool] = STATE(3367), - [sym_val_variable] = STATE(2101), - [sym_val_number] = STATE(2516), - [sym__val_number_decimal] = STATE(3077), - [sym__val_number] = STATE(2512), - [sym_val_duration] = STATE(2516), - [sym_val_filesize] = STATE(2516), - [sym_val_binary] = STATE(2516), - [sym_val_string] = STATE(2516), - [sym__raw_str] = STATE(1732), - [sym__str_double_quotes] = STATE(1732), - [sym_val_interpolated] = STATE(2516), - [sym__inter_single_quotes] = STATE(2527), - [sym__inter_double_quotes] = STATE(2528), - [sym_val_list] = STATE(2516), - [sym_val_record] = STATE(2516), - [sym_val_table] = STATE(2516), - [sym_val_closure] = STATE(2516), - [sym_unquoted] = STATE(2205), - [sym__unquoted_with_expr] = STATE(2480), - [sym__unquoted_anonymous_prefix] = STATE(6993), + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(2356), + [sym_expr_parenthesized] = STATE(1702), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1667), + [sym__unquoted_with_expr] = STATE(2080), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1058), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1044), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3356), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3358), - [anon_sym_DOT_DOT_LT] = ACTIONS(3358), - [anon_sym_null] = ACTIONS(3360), - [anon_sym_true] = ACTIONS(3362), - [anon_sym_false] = ACTIONS(3362), - [aux_sym__val_number_decimal_token1] = ACTIONS(3364), - [aux_sym__val_number_decimal_token2] = ACTIONS(3366), - [aux_sym__val_number_decimal_token3] = ACTIONS(3368), - [aux_sym__val_number_decimal_token4] = ACTIONS(3370), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3372), - [aux_sym__val_number_token5] = ACTIONS(3372), - [aux_sym__val_number_token6] = ACTIONS(3372), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3374), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3376), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1059] = { - [sym_expr_unary] = STATE(2504), - [sym__expr_unary_minus] = STATE(2458), - [sym_expr_binary] = STATE(2504), - [sym__expr_binary_expression] = STATE(3525), - [sym_expr_parenthesized] = STATE(2150), - [sym_val_range] = STATE(2504), - [sym__val_range] = STATE(7714), - [sym__val_range_with_end] = STATE(7377), - [sym__value] = STATE(2504), - [sym_val_nothing] = STATE(2516), - [sym_val_bool] = STATE(3367), - [sym_val_variable] = STATE(2101), - [sym_val_number] = STATE(2516), - [sym__val_number_decimal] = STATE(3077), - [sym__val_number] = STATE(2512), - [sym_val_duration] = STATE(2516), - [sym_val_filesize] = STATE(2516), - [sym_val_binary] = STATE(2516), - [sym_val_string] = STATE(2516), - [sym__raw_str] = STATE(1732), - [sym__str_double_quotes] = STATE(1732), - [sym_val_interpolated] = STATE(2516), - [sym__inter_single_quotes] = STATE(2527), - [sym__inter_double_quotes] = STATE(2528), - [sym_val_list] = STATE(2516), - [sym_val_record] = STATE(2516), - [sym_val_table] = STATE(2516), - [sym_val_closure] = STATE(2516), - [sym_unquoted] = STATE(2206), - [sym__unquoted_with_expr] = STATE(2493), - [sym__unquoted_anonymous_prefix] = STATE(6993), + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(2082), + [sym_expr_parenthesized] = STATE(1702), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1678), + [sym__unquoted_with_expr] = STATE(2103), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1059), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1044), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3356), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3358), - [anon_sym_DOT_DOT_LT] = ACTIONS(3358), - [anon_sym_null] = ACTIONS(3360), - [anon_sym_true] = ACTIONS(3362), - [anon_sym_false] = ACTIONS(3362), - [aux_sym__val_number_decimal_token1] = ACTIONS(3364), - [aux_sym__val_number_decimal_token2] = ACTIONS(3366), - [aux_sym__val_number_decimal_token3] = ACTIONS(3368), - [aux_sym__val_number_decimal_token4] = ACTIONS(3370), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3372), - [aux_sym__val_number_token5] = ACTIONS(3372), - [aux_sym__val_number_token6] = ACTIONS(3372), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3374), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3376), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1060] = { - [sym_expr_unary] = STATE(2504), - [sym__expr_unary_minus] = STATE(2458), - [sym_expr_binary] = STATE(2504), - [sym__expr_binary_expression] = STATE(3527), - [sym_expr_parenthesized] = STATE(2150), - [sym_val_range] = STATE(2504), - [sym__val_range] = STATE(7714), - [sym__val_range_with_end] = STATE(7377), - [sym__value] = STATE(2504), - [sym_val_nothing] = STATE(2516), - [sym_val_bool] = STATE(3367), - [sym_val_variable] = STATE(2101), - [sym_val_number] = STATE(2516), - [sym__val_number_decimal] = STATE(3077), - [sym__val_number] = STATE(2512), - [sym_val_duration] = STATE(2516), - [sym_val_filesize] = STATE(2516), - [sym_val_binary] = STATE(2516), - [sym_val_string] = STATE(2516), - [sym__raw_str] = STATE(1732), - [sym__str_double_quotes] = STATE(1732), - [sym_val_interpolated] = STATE(2516), - [sym__inter_single_quotes] = STATE(2527), - [sym__inter_double_quotes] = STATE(2528), - [sym_val_list] = STATE(2516), - [sym_val_record] = STATE(2516), - [sym_val_table] = STATE(2516), - [sym_val_closure] = STATE(2516), - [sym_unquoted] = STATE(2207), - [sym__unquoted_with_expr] = STATE(2496), - [sym__unquoted_anonymous_prefix] = STATE(6993), + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(2357), + [sym_expr_parenthesized] = STATE(1702), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1679), + [sym__unquoted_with_expr] = STATE(2104), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1060), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1044), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3356), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3358), - [anon_sym_DOT_DOT_LT] = ACTIONS(3358), - [anon_sym_null] = ACTIONS(3360), - [anon_sym_true] = ACTIONS(3362), - [anon_sym_false] = ACTIONS(3362), - [aux_sym__val_number_decimal_token1] = ACTIONS(3364), - [aux_sym__val_number_decimal_token2] = ACTIONS(3366), - [aux_sym__val_number_decimal_token3] = ACTIONS(3368), - [aux_sym__val_number_decimal_token4] = ACTIONS(3370), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3372), - [aux_sym__val_number_token5] = ACTIONS(3372), - [aux_sym__val_number_token6] = ACTIONS(3372), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3374), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3376), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1061] = { - [sym_expr_unary] = STATE(2504), - [sym__expr_unary_minus] = STATE(2458), - [sym_expr_binary] = STATE(2504), - [sym__expr_binary_expression] = STATE(2476), - [sym_expr_parenthesized] = STATE(2150), - [sym_val_range] = STATE(2504), - [sym__val_range] = STATE(7714), - [sym__val_range_with_end] = STATE(7377), - [sym__value] = STATE(2504), - [sym_val_nothing] = STATE(2516), - [sym_val_bool] = STATE(2171), - [sym_val_variable] = STATE(2101), - [sym_val_number] = STATE(2516), - [sym__val_number_decimal] = STATE(1587), - [sym__val_number] = STATE(2512), - [sym_val_duration] = STATE(2516), - [sym_val_filesize] = STATE(2516), - [sym_val_binary] = STATE(2516), - [sym_val_string] = STATE(2516), - [sym__raw_str] = STATE(1732), - [sym__str_double_quotes] = STATE(1732), - [sym_val_interpolated] = STATE(2516), - [sym__inter_single_quotes] = STATE(2527), - [sym__inter_double_quotes] = STATE(2528), - [sym_val_list] = STATE(2516), - [sym_val_record] = STATE(2516), - [sym_val_table] = STATE(2516), - [sym_val_closure] = STATE(2516), - [sym_unquoted] = STATE(2205), - [sym__unquoted_with_expr] = STATE(2480), - [sym__unquoted_anonymous_prefix] = STATE(6993), + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(2358), + [sym_expr_parenthesized] = STATE(1702), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1680), + [sym__unquoted_with_expr] = STATE(2107), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1061), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1044), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3378), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3380), - [anon_sym_DOT_DOT_LT] = ACTIONS(3380), - [anon_sym_null] = ACTIONS(3382), - [anon_sym_true] = ACTIONS(3384), - [anon_sym_false] = ACTIONS(3384), - [aux_sym__val_number_decimal_token1] = ACTIONS(3386), - [aux_sym__val_number_decimal_token2] = ACTIONS(3388), - [aux_sym__val_number_decimal_token3] = ACTIONS(3390), - [aux_sym__val_number_decimal_token4] = ACTIONS(3392), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3394), - [aux_sym__val_number_token5] = ACTIONS(3394), - [aux_sym__val_number_token6] = ACTIONS(3394), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3396), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3376), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1062] = { - [sym_expr_unary] = STATE(2504), - [sym__expr_unary_minus] = STATE(2458), - [sym_expr_binary] = STATE(2504), - [sym__expr_binary_expression] = STATE(2482), - [sym_expr_parenthesized] = STATE(2150), - [sym_val_range] = STATE(2504), - [sym__val_range] = STATE(7714), - [sym__val_range_with_end] = STATE(7377), - [sym__value] = STATE(2504), - [sym_val_nothing] = STATE(2516), - [sym_val_bool] = STATE(2171), - [sym_val_variable] = STATE(2101), - [sym_val_number] = STATE(2516), - [sym__val_number_decimal] = STATE(1587), - [sym__val_number] = STATE(2512), - [sym_val_duration] = STATE(2516), - [sym_val_filesize] = STATE(2516), - [sym_val_binary] = STATE(2516), - [sym_val_string] = STATE(2516), - [sym__raw_str] = STATE(1732), - [sym__str_double_quotes] = STATE(1732), - [sym_val_interpolated] = STATE(2516), - [sym__inter_single_quotes] = STATE(2527), - [sym__inter_double_quotes] = STATE(2528), - [sym_val_list] = STATE(2516), - [sym_val_record] = STATE(2516), - [sym_val_table] = STATE(2516), - [sym_val_closure] = STATE(2516), - [sym_unquoted] = STATE(2206), - [sym__unquoted_with_expr] = STATE(2493), - [sym__unquoted_anonymous_prefix] = STATE(6993), + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(2359), + [sym_expr_parenthesized] = STATE(1702), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1682), + [sym__unquoted_with_expr] = STATE(2110), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1062), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1044), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3378), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3380), - [anon_sym_DOT_DOT_LT] = ACTIONS(3380), - [anon_sym_null] = ACTIONS(3382), - [anon_sym_true] = ACTIONS(3384), - [anon_sym_false] = ACTIONS(3384), - [aux_sym__val_number_decimal_token1] = ACTIONS(3386), - [aux_sym__val_number_decimal_token2] = ACTIONS(3388), - [aux_sym__val_number_decimal_token3] = ACTIONS(3390), - [aux_sym__val_number_decimal_token4] = ACTIONS(3392), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3394), - [aux_sym__val_number_token5] = ACTIONS(3394), - [aux_sym__val_number_token6] = ACTIONS(3394), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3396), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3376), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1063] = { - [sym_expr_unary] = STATE(2504), - [sym__expr_unary_minus] = STATE(2458), - [sym_expr_binary] = STATE(2504), - [sym__expr_binary_expression] = STATE(2494), - [sym_expr_parenthesized] = STATE(2150), - [sym_val_range] = STATE(2504), - [sym__val_range] = STATE(7714), - [sym__val_range_with_end] = STATE(7377), - [sym__value] = STATE(2504), - [sym_val_nothing] = STATE(2516), - [sym_val_bool] = STATE(2171), - [sym_val_variable] = STATE(2101), - [sym_val_number] = STATE(2516), - [sym__val_number_decimal] = STATE(1587), - [sym__val_number] = STATE(2512), - [sym_val_duration] = STATE(2516), - [sym_val_filesize] = STATE(2516), - [sym_val_binary] = STATE(2516), - [sym_val_string] = STATE(2516), - [sym__raw_str] = STATE(1732), - [sym__str_double_quotes] = STATE(1732), - [sym_val_interpolated] = STATE(2516), - [sym__inter_single_quotes] = STATE(2527), - [sym__inter_double_quotes] = STATE(2528), - [sym_val_list] = STATE(2516), - [sym_val_record] = STATE(2516), - [sym_val_table] = STATE(2516), - [sym_val_closure] = STATE(2516), - [sym_unquoted] = STATE(2207), - [sym__unquoted_with_expr] = STATE(2496), - [sym__unquoted_anonymous_prefix] = STATE(6993), + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(2360), + [sym_expr_parenthesized] = STATE(1702), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(1999), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(1424), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1688), + [sym__unquoted_with_expr] = STATE(2112), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1063), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1044), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3378), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3380), - [anon_sym_DOT_DOT_LT] = ACTIONS(3380), - [anon_sym_null] = ACTIONS(3382), - [anon_sym_true] = ACTIONS(3384), - [anon_sym_false] = ACTIONS(3384), - [aux_sym__val_number_decimal_token1] = ACTIONS(3386), - [aux_sym__val_number_decimal_token2] = ACTIONS(3388), - [aux_sym__val_number_decimal_token3] = ACTIONS(3390), - [aux_sym__val_number_decimal_token4] = ACTIONS(3392), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3394), - [aux_sym__val_number_token5] = ACTIONS(3394), - [aux_sym__val_number_token6] = ACTIONS(3394), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3396), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3376), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3216), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_LT] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym__val_number_decimal_token1] = ACTIONS(3224), + [aux_sym__val_number_decimal_token2] = ACTIONS(3226), + [aux_sym__val_number_decimal_token3] = ACTIONS(3228), + [aux_sym__val_number_decimal_token4] = ACTIONS(3230), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3232), + [aux_sym__val_number_token5] = ACTIONS(3232), + [aux_sym__val_number_token6] = ACTIONS(3232), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3234), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1064] = { - [sym_ctrl_do] = STATE(4793), - [sym_ctrl_if] = STATE(4793), - [sym_ctrl_match] = STATE(4793), - [sym_ctrl_try] = STATE(4793), - [sym__expression] = STATE(4793), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3876), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3154), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), [sym_comment] = STATE(1064), - [sym__newline] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3398), - [anon_sym_PIPE] = ACTIONS(3398), - [anon_sym_err_GT_PIPE] = ACTIONS(3398), - [anon_sym_out_GT_PIPE] = ACTIONS(3398), - [anon_sym_e_GT_PIPE] = ACTIONS(3398), - [anon_sym_o_GT_PIPE] = ACTIONS(3398), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3398), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3398), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3398), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3398), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_do] = ACTIONS(3400), - [anon_sym_if] = ACTIONS(3402), - [anon_sym_match] = ACTIONS(3404), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(3398), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(3406), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(3408), - [anon_sym_true] = ACTIONS(3410), - [anon_sym_false] = ACTIONS(3410), - [aux_sym__val_number_decimal_token1] = ACTIONS(3412), - [aux_sym__val_number_decimal_token2] = ACTIONS(3414), - [aux_sym__val_number_decimal_token3] = ACTIONS(3416), - [aux_sym__val_number_decimal_token4] = ACTIONS(3418), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_COLON2] = ACTIONS(3420), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_SLASH] = ACTIONS(1512), + [anon_sym_mod] = ACTIONS(1514), + [anon_sym_SLASH_SLASH] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_bit_DASHshl] = ACTIONS(1514), + [anon_sym_bit_DASHshr] = ACTIONS(1514), + [anon_sym_EQ_TILDE] = ACTIONS(1514), + [anon_sym_BANG_TILDE] = ACTIONS(1514), + [anon_sym_bit_DASHand] = ACTIONS(1514), + [anon_sym_bit_DASHxor] = ACTIONS(1514), + [anon_sym_bit_DASHor] = ACTIONS(1514), + [anon_sym_and] = ACTIONS(1514), + [anon_sym_xor] = ACTIONS(1514), + [anon_sym_or] = ACTIONS(1514), + [anon_sym_in] = ACTIONS(1514), + [anon_sym_not_DASHin] = ACTIONS(1514), + [anon_sym_has] = ACTIONS(1514), + [anon_sym_not_DASHhas] = ACTIONS(1514), + [anon_sym_starts_DASHwith] = ACTIONS(1514), + [anon_sym_ends_DASHwith] = ACTIONS(1514), + [anon_sym_EQ_EQ] = ACTIONS(1514), + [anon_sym_BANG_EQ] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_LT_EQ] = ACTIONS(1514), + [anon_sym_GT] = ACTIONS(1512), + [anon_sym_GT_EQ] = ACTIONS(1514), + [aux_sym_cmd_identifier_token41] = ACTIONS(1512), + [sym__newline] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_err_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_GT_PIPE] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1512), + [anon_sym_RPAREN] = ACTIONS(1512), + [anon_sym_GT2] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_in2] = ACTIONS(1512), + [anon_sym_STAR2] = ACTIONS(1512), + [anon_sym_and2] = ACTIONS(1512), + [anon_sym_xor2] = ACTIONS(1512), + [anon_sym_or2] = ACTIONS(1512), + [anon_sym_not_DASHin2] = ACTIONS(1512), + [anon_sym_has2] = ACTIONS(1512), + [anon_sym_not_DASHhas2] = ACTIONS(1512), + [anon_sym_starts_DASHwith2] = ACTIONS(1512), + [anon_sym_ends_DASHwith2] = ACTIONS(1512), + [anon_sym_EQ_EQ2] = ACTIONS(1512), + [anon_sym_BANG_EQ2] = ACTIONS(1512), + [anon_sym_LT2] = ACTIONS(1512), + [anon_sym_LT_EQ2] = ACTIONS(1512), + [anon_sym_GT_EQ2] = ACTIONS(1512), + [anon_sym_EQ_TILDE2] = ACTIONS(1512), + [anon_sym_BANG_TILDE2] = ACTIONS(1512), + [anon_sym_STAR_STAR2] = ACTIONS(1512), + [anon_sym_PLUS_PLUS2] = ACTIONS(1512), + [anon_sym_SLASH2] = ACTIONS(1512), + [anon_sym_mod2] = ACTIONS(1512), + [anon_sym_SLASH_SLASH2] = ACTIONS(1512), + [anon_sym_PLUS2] = ACTIONS(1512), + [anon_sym_bit_DASHshl2] = ACTIONS(1512), + [anon_sym_bit_DASHshr2] = ACTIONS(1512), + [anon_sym_bit_DASHand2] = ACTIONS(1512), + [anon_sym_bit_DASHxor2] = ACTIONS(1512), + [anon_sym_bit_DASHor2] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT] = ACTIONS(3362), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [aux_sym__immediate_decimal_token2] = ACTIONS(3364), + [sym_filesize_unit] = ACTIONS(1512), + [sym_duration_unit] = ACTIONS(1514), + [anon_sym_POUND] = ACTIONS(3), }, [1065] = { - [sym_expr_unary] = STATE(2504), - [sym__expr_unary_minus] = STATE(2458), - [sym_expr_binary] = STATE(2504), - [sym__expr_binary_expression] = STATE(3516), - [sym_expr_parenthesized] = STATE(2150), - [sym_val_range] = STATE(2504), - [sym__val_range] = STATE(7714), - [sym__val_range_with_end] = STATE(7377), - [sym__value] = STATE(2504), - [sym_val_nothing] = STATE(2516), - [sym_val_bool] = STATE(3367), - [sym_val_variable] = STATE(2101), - [sym_val_number] = STATE(2516), - [sym__val_number_decimal] = STATE(3077), - [sym__val_number] = STATE(2512), - [sym_val_duration] = STATE(2516), - [sym_val_filesize] = STATE(2516), - [sym_val_binary] = STATE(2516), - [sym_val_string] = STATE(2516), - [sym__raw_str] = STATE(1732), - [sym__str_double_quotes] = STATE(1732), - [sym_val_interpolated] = STATE(2516), - [sym__inter_single_quotes] = STATE(2527), - [sym__inter_double_quotes] = STATE(2528), - [sym_val_list] = STATE(2516), - [sym_val_record] = STATE(2516), - [sym_val_table] = STATE(2516), - [sym_val_closure] = STATE(2516), - [sym_unquoted] = STATE(2281), - [sym__unquoted_with_expr] = STATE(2525), - [sym__unquoted_anonymous_prefix] = STATE(6993), [sym_comment] = STATE(1065), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1044), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3356), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3358), - [anon_sym_DOT_DOT_LT] = ACTIONS(3358), - [anon_sym_null] = ACTIONS(3360), - [anon_sym_true] = ACTIONS(3362), - [anon_sym_false] = ACTIONS(3362), - [aux_sym__val_number_decimal_token1] = ACTIONS(3364), - [aux_sym__val_number_decimal_token2] = ACTIONS(3366), - [aux_sym__val_number_decimal_token3] = ACTIONS(3368), - [aux_sym__val_number_decimal_token4] = ACTIONS(3370), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3372), - [aux_sym__val_number_token5] = ACTIONS(3372), - [aux_sym__val_number_token6] = ACTIONS(3372), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3374), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3376), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), + [anon_sym_STAR_STAR] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_STAR] = ACTIONS(1504), + [anon_sym_SLASH] = ACTIONS(1504), + [anon_sym_mod] = ACTIONS(1506), + [anon_sym_SLASH_SLASH] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_bit_DASHshl] = ACTIONS(1506), + [anon_sym_bit_DASHshr] = ACTIONS(1506), + [anon_sym_EQ_TILDE] = ACTIONS(1506), + [anon_sym_BANG_TILDE] = ACTIONS(1506), + [anon_sym_bit_DASHand] = ACTIONS(1506), + [anon_sym_bit_DASHxor] = ACTIONS(1506), + [anon_sym_bit_DASHor] = ACTIONS(1506), + [anon_sym_and] = ACTIONS(1506), + [anon_sym_xor] = ACTIONS(1506), + [anon_sym_or] = ACTIONS(1506), + [anon_sym_in] = ACTIONS(1506), + [anon_sym_not_DASHin] = ACTIONS(1506), + [anon_sym_has] = ACTIONS(1506), + [anon_sym_not_DASHhas] = 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_LT] = ACTIONS(1504), + [anon_sym_LT_EQ] = ACTIONS(1506), + [anon_sym_GT] = ACTIONS(1504), + [anon_sym_GT_EQ] = ACTIONS(1506), + [aux_sym_cmd_identifier_token41] = ACTIONS(1504), + [sym__newline] = ACTIONS(1504), + [anon_sym_SEMI] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_err_GT_PIPE] = ACTIONS(1504), + [anon_sym_out_GT_PIPE] = ACTIONS(1504), + [anon_sym_e_GT_PIPE] = ACTIONS(1504), + [anon_sym_o_GT_PIPE] = ACTIONS(1504), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1504), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1504), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1504), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1504), + [anon_sym_GT2] = ACTIONS(1504), + [anon_sym_DASH2] = ACTIONS(1504), + [anon_sym_in2] = ACTIONS(1504), + [anon_sym_RBRACE] = ACTIONS(1504), + [anon_sym_STAR2] = ACTIONS(1504), + [anon_sym_and2] = ACTIONS(1504), + [anon_sym_xor2] = ACTIONS(1504), + [anon_sym_or2] = ACTIONS(1504), + [anon_sym_not_DASHin2] = ACTIONS(1504), + [anon_sym_has2] = ACTIONS(1504), + [anon_sym_not_DASHhas2] = ACTIONS(1504), + [anon_sym_starts_DASHwith2] = ACTIONS(1504), + [anon_sym_ends_DASHwith2] = ACTIONS(1504), + [anon_sym_EQ_EQ2] = ACTIONS(1504), + [anon_sym_BANG_EQ2] = ACTIONS(1504), + [anon_sym_LT2] = ACTIONS(1504), + [anon_sym_LT_EQ2] = ACTIONS(1504), + [anon_sym_GT_EQ2] = ACTIONS(1504), + [anon_sym_EQ_TILDE2] = ACTIONS(1504), + [anon_sym_BANG_TILDE2] = ACTIONS(1504), + [anon_sym_STAR_STAR2] = ACTIONS(1504), + [anon_sym_PLUS_PLUS2] = ACTIONS(1504), + [anon_sym_SLASH2] = ACTIONS(1504), + [anon_sym_mod2] = ACTIONS(1504), + [anon_sym_SLASH_SLASH2] = ACTIONS(1504), + [anon_sym_PLUS2] = ACTIONS(1504), + [anon_sym_bit_DASHshl2] = ACTIONS(1504), + [anon_sym_bit_DASHshr2] = ACTIONS(1504), + [anon_sym_bit_DASHand2] = ACTIONS(1504), + [anon_sym_bit_DASHxor2] = ACTIONS(1504), + [anon_sym_bit_DASHor2] = ACTIONS(1504), + [anon_sym_DOT_DOT2] = ACTIONS(1504), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1506), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1506), + [aux_sym__immediate_decimal_token1] = ACTIONS(3366), + [aux_sym__immediate_decimal_token2] = ACTIONS(3368), + [sym_filesize_unit] = ACTIONS(1504), + [sym_duration_unit] = ACTIONS(1506), + [anon_sym_POUND] = ACTIONS(3), }, [1066] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(2404), - [sym_expr_parenthesized] = STATE(1902), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1905), - [sym__unquoted_with_expr] = STATE(2084), - [sym__unquoted_anonymous_prefix] = STATE(7111), [sym_comment] = STATE(1066), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_SLASH] = ACTIONS(1512), + [anon_sym_mod] = ACTIONS(1514), + [anon_sym_SLASH_SLASH] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_bit_DASHshl] = ACTIONS(1514), + [anon_sym_bit_DASHshr] = ACTIONS(1514), + [anon_sym_EQ_TILDE] = ACTIONS(1514), + [anon_sym_BANG_TILDE] = ACTIONS(1514), + [anon_sym_bit_DASHand] = ACTIONS(1514), + [anon_sym_bit_DASHxor] = ACTIONS(1514), + [anon_sym_bit_DASHor] = ACTIONS(1514), + [anon_sym_and] = ACTIONS(1514), + [anon_sym_xor] = ACTIONS(1514), + [anon_sym_or] = ACTIONS(1514), + [anon_sym_in] = ACTIONS(1514), + [anon_sym_not_DASHin] = ACTIONS(1514), + [anon_sym_has] = ACTIONS(1514), + [anon_sym_not_DASHhas] = ACTIONS(1514), + [anon_sym_starts_DASHwith] = ACTIONS(1514), + [anon_sym_ends_DASHwith] = ACTIONS(1514), + [anon_sym_EQ_EQ] = ACTIONS(1514), + [anon_sym_BANG_EQ] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_LT_EQ] = ACTIONS(1514), + [anon_sym_GT] = ACTIONS(1512), + [anon_sym_GT_EQ] = ACTIONS(1514), + [aux_sym_cmd_identifier_token41] = ACTIONS(1512), + [sym__newline] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_err_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_GT_PIPE] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1512), + [anon_sym_GT2] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_in2] = ACTIONS(1512), + [anon_sym_RBRACE] = ACTIONS(1512), + [anon_sym_STAR2] = ACTIONS(1512), + [anon_sym_and2] = ACTIONS(1512), + [anon_sym_xor2] = ACTIONS(1512), + [anon_sym_or2] = ACTIONS(1512), + [anon_sym_not_DASHin2] = ACTIONS(1512), + [anon_sym_has2] = ACTIONS(1512), + [anon_sym_not_DASHhas2] = ACTIONS(1512), + [anon_sym_starts_DASHwith2] = ACTIONS(1512), + [anon_sym_ends_DASHwith2] = ACTIONS(1512), + [anon_sym_EQ_EQ2] = ACTIONS(1512), + [anon_sym_BANG_EQ2] = ACTIONS(1512), + [anon_sym_LT2] = ACTIONS(1512), + [anon_sym_LT_EQ2] = ACTIONS(1512), + [anon_sym_GT_EQ2] = ACTIONS(1512), + [anon_sym_EQ_TILDE2] = ACTIONS(1512), + [anon_sym_BANG_TILDE2] = ACTIONS(1512), + [anon_sym_STAR_STAR2] = ACTIONS(1512), + [anon_sym_PLUS_PLUS2] = ACTIONS(1512), + [anon_sym_SLASH2] = ACTIONS(1512), + [anon_sym_mod2] = ACTIONS(1512), + [anon_sym_SLASH_SLASH2] = ACTIONS(1512), + [anon_sym_PLUS2] = ACTIONS(1512), + [anon_sym_bit_DASHshl2] = ACTIONS(1512), + [anon_sym_bit_DASHshr2] = ACTIONS(1512), + [anon_sym_bit_DASHand2] = ACTIONS(1512), + [anon_sym_bit_DASHxor2] = ACTIONS(1512), + [anon_sym_bit_DASHor2] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT] = ACTIONS(3370), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [aux_sym__immediate_decimal_token2] = ACTIONS(3372), + [sym_filesize_unit] = ACTIONS(1512), + [sym_duration_unit] = ACTIONS(1514), + [anon_sym_POUND] = ACTIONS(3), }, [1067] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(2405), - [sym_expr_parenthesized] = STATE(1902), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1908), - [sym__unquoted_with_expr] = STATE(2095), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(3812), + [sym_expr_parenthesized] = STATE(1702), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1688), + [sym__unquoted_with_expr] = STATE(2112), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1067), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1068] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(2406), - [sym_expr_parenthesized] = STATE(1902), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1910), - [sym__unquoted_with_expr] = STATE(2098), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2463), + [sym__expr_unary_minus] = STATE(2502), + [sym_expr_binary] = STATE(2463), + [sym__expr_binary_expression] = STATE(3479), + [sym_expr_parenthesized] = STATE(2068), + [sym_val_range] = STATE(2463), + [sym__val_range] = STATE(7517), + [sym__val_range_with_end] = STATE(7363), + [sym__value] = STATE(2463), + [sym_val_nothing] = STATE(2419), + [sym_val_bool] = STATE(3295), + [sym_val_variable] = STATE(2121), + [sym_val_number] = STATE(2419), + [sym__val_number_decimal] = STATE(2938), + [sym__val_number] = STATE(2425), + [sym_val_duration] = STATE(2419), + [sym_val_filesize] = STATE(2419), + [sym_val_binary] = STATE(2419), + [sym_val_string] = STATE(2419), + [sym__raw_str] = STATE(1605), + [sym__str_double_quotes] = STATE(1605), + [sym_val_interpolated] = STATE(2419), + [sym__inter_single_quotes] = STATE(2426), + [sym__inter_double_quotes] = STATE(2421), + [sym_val_list] = STATE(2419), + [sym_val_record] = STATE(2419), + [sym_val_table] = STATE(2419), + [sym_val_closure] = STATE(2419), + [sym_unquoted] = STATE(2141), + [sym__unquoted_with_expr] = STATE(2466), + [sym__unquoted_anonymous_prefix] = STATE(6816), [sym_comment] = STATE(1068), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1018), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3374), + [aux_sym_expr_unary_token1] = ACTIONS(81), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3376), + [anon_sym_DOT_DOT_LT] = ACTIONS(3376), + [anon_sym_null] = ACTIONS(3378), + [anon_sym_true] = ACTIONS(3380), + [anon_sym_false] = ACTIONS(3380), + [aux_sym__val_number_decimal_token1] = ACTIONS(3382), + [aux_sym__val_number_decimal_token2] = ACTIONS(3384), + [aux_sym__val_number_decimal_token3] = ACTIONS(3386), + [aux_sym__val_number_decimal_token4] = ACTIONS(3388), + [aux_sym__val_number_token1] = ACTIONS(97), + [aux_sym__val_number_token2] = ACTIONS(97), + [aux_sym__val_number_token3] = ACTIONS(97), + [aux_sym__val_number_token4] = ACTIONS(3390), + [aux_sym__val_number_token5] = ACTIONS(3390), + [aux_sym__val_number_token6] = ACTIONS(3390), + [anon_sym_0b] = ACTIONS(101), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(3392), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym__str_single_quotes] = ACTIONS(109), + [sym__str_back_ticks] = ACTIONS(109), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3394), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1069] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(2407), - [sym_expr_parenthesized] = STATE(1902), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1911), - [sym__unquoted_with_expr] = STATE(2102), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2463), + [sym__expr_unary_minus] = STATE(2502), + [sym_expr_binary] = STATE(2463), + [sym__expr_binary_expression] = STATE(3480), + [sym_expr_parenthesized] = STATE(2068), + [sym_val_range] = STATE(2463), + [sym__val_range] = STATE(7517), + [sym__val_range_with_end] = STATE(7363), + [sym__value] = STATE(2463), + [sym_val_nothing] = STATE(2419), + [sym_val_bool] = STATE(3295), + [sym_val_variable] = STATE(2121), + [sym_val_number] = STATE(2419), + [sym__val_number_decimal] = STATE(2938), + [sym__val_number] = STATE(2425), + [sym_val_duration] = STATE(2419), + [sym_val_filesize] = STATE(2419), + [sym_val_binary] = STATE(2419), + [sym_val_string] = STATE(2419), + [sym__raw_str] = STATE(1605), + [sym__str_double_quotes] = STATE(1605), + [sym_val_interpolated] = STATE(2419), + [sym__inter_single_quotes] = STATE(2426), + [sym__inter_double_quotes] = STATE(2421), + [sym_val_list] = STATE(2419), + [sym_val_record] = STATE(2419), + [sym_val_table] = STATE(2419), + [sym_val_closure] = STATE(2419), + [sym_unquoted] = STATE(2143), + [sym__unquoted_with_expr] = STATE(2519), + [sym__unquoted_anonymous_prefix] = STATE(6816), [sym_comment] = STATE(1069), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1018), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3374), + [aux_sym_expr_unary_token1] = ACTIONS(81), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3376), + [anon_sym_DOT_DOT_LT] = ACTIONS(3376), + [anon_sym_null] = ACTIONS(3378), + [anon_sym_true] = ACTIONS(3380), + [anon_sym_false] = ACTIONS(3380), + [aux_sym__val_number_decimal_token1] = ACTIONS(3382), + [aux_sym__val_number_decimal_token2] = ACTIONS(3384), + [aux_sym__val_number_decimal_token3] = ACTIONS(3386), + [aux_sym__val_number_decimal_token4] = ACTIONS(3388), + [aux_sym__val_number_token1] = ACTIONS(97), + [aux_sym__val_number_token2] = ACTIONS(97), + [aux_sym__val_number_token3] = ACTIONS(97), + [aux_sym__val_number_token4] = ACTIONS(3390), + [aux_sym__val_number_token5] = ACTIONS(3390), + [aux_sym__val_number_token6] = ACTIONS(3390), + [anon_sym_0b] = ACTIONS(101), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(3392), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym__str_single_quotes] = ACTIONS(109), + [sym__str_back_ticks] = ACTIONS(109), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3394), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1070] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(2408), - [sym_expr_parenthesized] = STATE(1902), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1912), - [sym__unquoted_with_expr] = STATE(2108), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2463), + [sym__expr_unary_minus] = STATE(2502), + [sym_expr_binary] = STATE(2463), + [sym__expr_binary_expression] = STATE(3481), + [sym_expr_parenthesized] = STATE(2068), + [sym_val_range] = STATE(2463), + [sym__val_range] = STATE(7517), + [sym__val_range_with_end] = STATE(7363), + [sym__value] = STATE(2463), + [sym_val_nothing] = STATE(2419), + [sym_val_bool] = STATE(3295), + [sym_val_variable] = STATE(2121), + [sym_val_number] = STATE(2419), + [sym__val_number_decimal] = STATE(2938), + [sym__val_number] = STATE(2425), + [sym_val_duration] = STATE(2419), + [sym_val_filesize] = STATE(2419), + [sym_val_binary] = STATE(2419), + [sym_val_string] = STATE(2419), + [sym__raw_str] = STATE(1605), + [sym__str_double_quotes] = STATE(1605), + [sym_val_interpolated] = STATE(2419), + [sym__inter_single_quotes] = STATE(2426), + [sym__inter_double_quotes] = STATE(2421), + [sym_val_list] = STATE(2419), + [sym_val_record] = STATE(2419), + [sym_val_table] = STATE(2419), + [sym_val_closure] = STATE(2419), + [sym_unquoted] = STATE(2160), + [sym__unquoted_with_expr] = STATE(2471), + [sym__unquoted_anonymous_prefix] = STATE(6816), [sym_comment] = STATE(1070), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1018), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3374), + [aux_sym_expr_unary_token1] = ACTIONS(81), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3376), + [anon_sym_DOT_DOT_LT] = ACTIONS(3376), + [anon_sym_null] = ACTIONS(3378), + [anon_sym_true] = ACTIONS(3380), + [anon_sym_false] = ACTIONS(3380), + [aux_sym__val_number_decimal_token1] = ACTIONS(3382), + [aux_sym__val_number_decimal_token2] = ACTIONS(3384), + [aux_sym__val_number_decimal_token3] = ACTIONS(3386), + [aux_sym__val_number_decimal_token4] = ACTIONS(3388), + [aux_sym__val_number_token1] = ACTIONS(97), + [aux_sym__val_number_token2] = ACTIONS(97), + [aux_sym__val_number_token3] = ACTIONS(97), + [aux_sym__val_number_token4] = ACTIONS(3390), + [aux_sym__val_number_token5] = ACTIONS(3390), + [aux_sym__val_number_token6] = ACTIONS(3390), + [anon_sym_0b] = ACTIONS(101), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(3392), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym__str_single_quotes] = ACTIONS(109), + [sym__str_back_ticks] = ACTIONS(109), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3394), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1071] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(2409), - [sym_expr_parenthesized] = STATE(1902), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1914), - [sym__unquoted_with_expr] = STATE(2115), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2463), + [sym__expr_unary_minus] = STATE(2502), + [sym_expr_binary] = STATE(2463), + [sym__expr_binary_expression] = STATE(3482), + [sym_expr_parenthesized] = STATE(2068), + [sym_val_range] = STATE(2463), + [sym__val_range] = STATE(7517), + [sym__val_range_with_end] = STATE(7363), + [sym__value] = STATE(2463), + [sym_val_nothing] = STATE(2419), + [sym_val_bool] = STATE(3295), + [sym_val_variable] = STATE(2121), + [sym_val_number] = STATE(2419), + [sym__val_number_decimal] = STATE(2938), + [sym__val_number] = STATE(2425), + [sym_val_duration] = STATE(2419), + [sym_val_filesize] = STATE(2419), + [sym_val_binary] = STATE(2419), + [sym_val_string] = STATE(2419), + [sym__raw_str] = STATE(1605), + [sym__str_double_quotes] = STATE(1605), + [sym_val_interpolated] = STATE(2419), + [sym__inter_single_quotes] = STATE(2426), + [sym__inter_double_quotes] = STATE(2421), + [sym_val_list] = STATE(2419), + [sym_val_record] = STATE(2419), + [sym_val_table] = STATE(2419), + [sym_val_closure] = STATE(2419), + [sym_unquoted] = STATE(2163), + [sym__unquoted_with_expr] = STATE(2473), + [sym__unquoted_anonymous_prefix] = STATE(6816), [sym_comment] = STATE(1071), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1018), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3374), + [aux_sym_expr_unary_token1] = ACTIONS(81), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3376), + [anon_sym_DOT_DOT_LT] = ACTIONS(3376), + [anon_sym_null] = ACTIONS(3378), + [anon_sym_true] = ACTIONS(3380), + [anon_sym_false] = ACTIONS(3380), + [aux_sym__val_number_decimal_token1] = ACTIONS(3382), + [aux_sym__val_number_decimal_token2] = ACTIONS(3384), + [aux_sym__val_number_decimal_token3] = ACTIONS(3386), + [aux_sym__val_number_decimal_token4] = ACTIONS(3388), + [aux_sym__val_number_token1] = ACTIONS(97), + [aux_sym__val_number_token2] = ACTIONS(97), + [aux_sym__val_number_token3] = ACTIONS(97), + [aux_sym__val_number_token4] = ACTIONS(3390), + [aux_sym__val_number_token5] = ACTIONS(3390), + [aux_sym__val_number_token6] = ACTIONS(3390), + [anon_sym_0b] = ACTIONS(101), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(3392), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym__str_single_quotes] = ACTIONS(109), + [sym__str_back_ticks] = ACTIONS(109), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3394), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1072] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(2410), - [sym_expr_parenthesized] = STATE(1902), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1919), - [sym__unquoted_with_expr] = STATE(2155), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2463), + [sym__expr_unary_minus] = STATE(2502), + [sym_expr_binary] = STATE(2463), + [sym__expr_binary_expression] = STATE(3483), + [sym_expr_parenthesized] = STATE(2068), + [sym_val_range] = STATE(2463), + [sym__val_range] = STATE(7517), + [sym__val_range_with_end] = STATE(7363), + [sym__value] = STATE(2463), + [sym_val_nothing] = STATE(2419), + [sym_val_bool] = STATE(3295), + [sym_val_variable] = STATE(2121), + [sym_val_number] = STATE(2419), + [sym__val_number_decimal] = STATE(2938), + [sym__val_number] = STATE(2425), + [sym_val_duration] = STATE(2419), + [sym_val_filesize] = STATE(2419), + [sym_val_binary] = STATE(2419), + [sym_val_string] = STATE(2419), + [sym__raw_str] = STATE(1605), + [sym__str_double_quotes] = STATE(1605), + [sym_val_interpolated] = STATE(2419), + [sym__inter_single_quotes] = STATE(2426), + [sym__inter_double_quotes] = STATE(2421), + [sym_val_list] = STATE(2419), + [sym_val_record] = STATE(2419), + [sym_val_table] = STATE(2419), + [sym_val_closure] = STATE(2419), + [sym_unquoted] = STATE(2170), + [sym__unquoted_with_expr] = STATE(2477), + [sym__unquoted_anonymous_prefix] = STATE(6816), [sym_comment] = STATE(1072), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1018), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3374), + [aux_sym_expr_unary_token1] = ACTIONS(81), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3376), + [anon_sym_DOT_DOT_LT] = ACTIONS(3376), + [anon_sym_null] = ACTIONS(3378), + [anon_sym_true] = ACTIONS(3380), + [anon_sym_false] = ACTIONS(3380), + [aux_sym__val_number_decimal_token1] = ACTIONS(3382), + [aux_sym__val_number_decimal_token2] = ACTIONS(3384), + [aux_sym__val_number_decimal_token3] = ACTIONS(3386), + [aux_sym__val_number_decimal_token4] = ACTIONS(3388), + [aux_sym__val_number_token1] = ACTIONS(97), + [aux_sym__val_number_token2] = ACTIONS(97), + [aux_sym__val_number_token3] = ACTIONS(97), + [aux_sym__val_number_token4] = ACTIONS(3390), + [aux_sym__val_number_token5] = ACTIONS(3390), + [aux_sym__val_number_token6] = ACTIONS(3390), + [anon_sym_0b] = ACTIONS(101), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(3392), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym__str_single_quotes] = ACTIONS(109), + [sym__str_back_ticks] = ACTIONS(109), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3394), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1073] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(2411), - [sym_expr_parenthesized] = STATE(1902), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1922), - [sym__unquoted_with_expr] = STATE(2128), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2463), + [sym__expr_unary_minus] = STATE(2502), + [sym_expr_binary] = STATE(2463), + [sym__expr_binary_expression] = STATE(3484), + [sym_expr_parenthesized] = STATE(2068), + [sym_val_range] = STATE(2463), + [sym__val_range] = STATE(7517), + [sym__val_range_with_end] = STATE(7363), + [sym__value] = STATE(2463), + [sym_val_nothing] = STATE(2419), + [sym_val_bool] = STATE(3295), + [sym_val_variable] = STATE(2121), + [sym_val_number] = STATE(2419), + [sym__val_number_decimal] = STATE(2938), + [sym__val_number] = STATE(2425), + [sym_val_duration] = STATE(2419), + [sym_val_filesize] = STATE(2419), + [sym_val_binary] = STATE(2419), + [sym_val_string] = STATE(2419), + [sym__raw_str] = STATE(1605), + [sym__str_double_quotes] = STATE(1605), + [sym_val_interpolated] = STATE(2419), + [sym__inter_single_quotes] = STATE(2426), + [sym__inter_double_quotes] = STATE(2421), + [sym_val_list] = STATE(2419), + [sym_val_record] = STATE(2419), + [sym_val_table] = STATE(2419), + [sym_val_closure] = STATE(2419), + [sym_unquoted] = STATE(2171), + [sym__unquoted_with_expr] = STATE(2479), + [sym__unquoted_anonymous_prefix] = STATE(6816), [sym_comment] = STATE(1073), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1018), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3374), + [aux_sym_expr_unary_token1] = ACTIONS(81), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3376), + [anon_sym_DOT_DOT_LT] = ACTIONS(3376), + [anon_sym_null] = ACTIONS(3378), + [anon_sym_true] = ACTIONS(3380), + [anon_sym_false] = ACTIONS(3380), + [aux_sym__val_number_decimal_token1] = ACTIONS(3382), + [aux_sym__val_number_decimal_token2] = ACTIONS(3384), + [aux_sym__val_number_decimal_token3] = ACTIONS(3386), + [aux_sym__val_number_decimal_token4] = ACTIONS(3388), + [aux_sym__val_number_token1] = ACTIONS(97), + [aux_sym__val_number_token2] = ACTIONS(97), + [aux_sym__val_number_token3] = ACTIONS(97), + [aux_sym__val_number_token4] = ACTIONS(3390), + [aux_sym__val_number_token5] = ACTIONS(3390), + [aux_sym__val_number_token6] = ACTIONS(3390), + [anon_sym_0b] = ACTIONS(101), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(3392), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym__str_single_quotes] = ACTIONS(109), + [sym__str_back_ticks] = ACTIONS(109), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3394), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1074] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(2130), - [sym_expr_parenthesized] = STATE(1902), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1928), - [sym__unquoted_with_expr] = STATE(2137), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2463), + [sym__expr_unary_minus] = STATE(2502), + [sym_expr_binary] = STATE(2463), + [sym__expr_binary_expression] = STATE(3485), + [sym_expr_parenthesized] = STATE(2068), + [sym_val_range] = STATE(2463), + [sym__val_range] = STATE(7517), + [sym__val_range_with_end] = STATE(7363), + [sym__value] = STATE(2463), + [sym_val_nothing] = STATE(2419), + [sym_val_bool] = STATE(3295), + [sym_val_variable] = STATE(2121), + [sym_val_number] = STATE(2419), + [sym__val_number_decimal] = STATE(2938), + [sym__val_number] = STATE(2425), + [sym_val_duration] = STATE(2419), + [sym_val_filesize] = STATE(2419), + [sym_val_binary] = STATE(2419), + [sym_val_string] = STATE(2419), + [sym__raw_str] = STATE(1605), + [sym__str_double_quotes] = STATE(1605), + [sym_val_interpolated] = STATE(2419), + [sym__inter_single_quotes] = STATE(2426), + [sym__inter_double_quotes] = STATE(2421), + [sym_val_list] = STATE(2419), + [sym_val_record] = STATE(2419), + [sym_val_table] = STATE(2419), + [sym_val_closure] = STATE(2419), + [sym_unquoted] = STATE(2172), + [sym__unquoted_with_expr] = STATE(2483), + [sym__unquoted_anonymous_prefix] = STATE(6816), [sym_comment] = STATE(1074), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1018), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3374), + [aux_sym_expr_unary_token1] = ACTIONS(81), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3376), + [anon_sym_DOT_DOT_LT] = ACTIONS(3376), + [anon_sym_null] = ACTIONS(3378), + [anon_sym_true] = ACTIONS(3380), + [anon_sym_false] = ACTIONS(3380), + [aux_sym__val_number_decimal_token1] = ACTIONS(3382), + [aux_sym__val_number_decimal_token2] = ACTIONS(3384), + [aux_sym__val_number_decimal_token3] = ACTIONS(3386), + [aux_sym__val_number_decimal_token4] = ACTIONS(3388), + [aux_sym__val_number_token1] = ACTIONS(97), + [aux_sym__val_number_token2] = ACTIONS(97), + [aux_sym__val_number_token3] = ACTIONS(97), + [aux_sym__val_number_token4] = ACTIONS(3390), + [aux_sym__val_number_token5] = ACTIONS(3390), + [aux_sym__val_number_token6] = ACTIONS(3390), + [anon_sym_0b] = ACTIONS(101), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(3392), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym__str_single_quotes] = ACTIONS(109), + [sym__str_back_ticks] = ACTIONS(109), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3394), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1075] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(2412), - [sym_expr_parenthesized] = STATE(1902), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1945), - [sym__unquoted_with_expr] = STATE(2139), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2463), + [sym__expr_unary_minus] = STATE(2502), + [sym_expr_binary] = STATE(2463), + [sym__expr_binary_expression] = STATE(3487), + [sym_expr_parenthesized] = STATE(2068), + [sym_val_range] = STATE(2463), + [sym__val_range] = STATE(7517), + [sym__val_range_with_end] = STATE(7363), + [sym__value] = STATE(2463), + [sym_val_nothing] = STATE(2419), + [sym_val_bool] = STATE(3295), + [sym_val_variable] = STATE(2121), + [sym_val_number] = STATE(2419), + [sym__val_number_decimal] = STATE(2938), + [sym__val_number] = STATE(2425), + [sym_val_duration] = STATE(2419), + [sym_val_filesize] = STATE(2419), + [sym_val_binary] = STATE(2419), + [sym_val_string] = STATE(2419), + [sym__raw_str] = STATE(1605), + [sym__str_double_quotes] = STATE(1605), + [sym_val_interpolated] = STATE(2419), + [sym__inter_single_quotes] = STATE(2426), + [sym__inter_double_quotes] = STATE(2421), + [sym_val_list] = STATE(2419), + [sym_val_record] = STATE(2419), + [sym_val_table] = STATE(2419), + [sym_val_closure] = STATE(2419), + [sym_unquoted] = STATE(2175), + [sym__unquoted_with_expr] = STATE(2485), + [sym__unquoted_anonymous_prefix] = STATE(6816), [sym_comment] = STATE(1075), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1018), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3374), + [aux_sym_expr_unary_token1] = ACTIONS(81), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3376), + [anon_sym_DOT_DOT_LT] = ACTIONS(3376), + [anon_sym_null] = ACTIONS(3378), + [anon_sym_true] = ACTIONS(3380), + [anon_sym_false] = ACTIONS(3380), + [aux_sym__val_number_decimal_token1] = ACTIONS(3382), + [aux_sym__val_number_decimal_token2] = ACTIONS(3384), + [aux_sym__val_number_decimal_token3] = ACTIONS(3386), + [aux_sym__val_number_decimal_token4] = ACTIONS(3388), + [aux_sym__val_number_token1] = ACTIONS(97), + [aux_sym__val_number_token2] = ACTIONS(97), + [aux_sym__val_number_token3] = ACTIONS(97), + [aux_sym__val_number_token4] = ACTIONS(3390), + [aux_sym__val_number_token5] = ACTIONS(3390), + [aux_sym__val_number_token6] = ACTIONS(3390), + [anon_sym_0b] = ACTIONS(101), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(3392), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym__str_single_quotes] = ACTIONS(109), + [sym__str_back_ticks] = ACTIONS(109), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3394), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1076] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(2413), - [sym_expr_parenthesized] = STATE(1902), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1818), - [sym__unquoted_with_expr] = STATE(2107), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2463), + [sym__expr_unary_minus] = STATE(2502), + [sym_expr_binary] = STATE(2463), + [sym__expr_binary_expression] = STATE(2486), + [sym_expr_parenthesized] = STATE(2068), + [sym_val_range] = STATE(2463), + [sym__val_range] = STATE(7517), + [sym__val_range_with_end] = STATE(7363), + [sym__value] = STATE(2463), + [sym_val_nothing] = STATE(2419), + [sym_val_bool] = STATE(3295), + [sym_val_variable] = STATE(2121), + [sym_val_number] = STATE(2419), + [sym__val_number_decimal] = STATE(2938), + [sym__val_number] = STATE(2425), + [sym_val_duration] = STATE(2419), + [sym_val_filesize] = STATE(2419), + [sym_val_binary] = STATE(2419), + [sym_val_string] = STATE(2419), + [sym__raw_str] = STATE(1605), + [sym__str_double_quotes] = STATE(1605), + [sym_val_interpolated] = STATE(2419), + [sym__inter_single_quotes] = STATE(2426), + [sym__inter_double_quotes] = STATE(2421), + [sym_val_list] = STATE(2419), + [sym_val_record] = STATE(2419), + [sym_val_table] = STATE(2419), + [sym_val_closure] = STATE(2419), + [sym_unquoted] = STATE(2176), + [sym__unquoted_with_expr] = STATE(2487), + [sym__unquoted_anonymous_prefix] = STATE(6816), [sym_comment] = STATE(1076), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1018), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3374), + [aux_sym_expr_unary_token1] = ACTIONS(81), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3376), + [anon_sym_DOT_DOT_LT] = ACTIONS(3376), + [anon_sym_null] = ACTIONS(3378), + [anon_sym_true] = ACTIONS(3380), + [anon_sym_false] = ACTIONS(3380), + [aux_sym__val_number_decimal_token1] = ACTIONS(3382), + [aux_sym__val_number_decimal_token2] = ACTIONS(3384), + [aux_sym__val_number_decimal_token3] = ACTIONS(3386), + [aux_sym__val_number_decimal_token4] = ACTIONS(3388), + [aux_sym__val_number_token1] = ACTIONS(97), + [aux_sym__val_number_token2] = ACTIONS(97), + [aux_sym__val_number_token3] = ACTIONS(97), + [aux_sym__val_number_token4] = ACTIONS(3390), + [aux_sym__val_number_token5] = ACTIONS(3390), + [aux_sym__val_number_token6] = ACTIONS(3390), + [anon_sym_0b] = ACTIONS(101), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(3392), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym__str_single_quotes] = ACTIONS(109), + [sym__str_back_ticks] = ACTIONS(109), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3394), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1077] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(2414), - [sym_expr_parenthesized] = STATE(1902), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1819), - [sym__unquoted_with_expr] = STATE(2110), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2463), + [sym__expr_unary_minus] = STATE(2502), + [sym_expr_binary] = STATE(2463), + [sym__expr_binary_expression] = STATE(3488), + [sym_expr_parenthesized] = STATE(2068), + [sym_val_range] = STATE(2463), + [sym__val_range] = STATE(7517), + [sym__val_range_with_end] = STATE(7363), + [sym__value] = STATE(2463), + [sym_val_nothing] = STATE(2419), + [sym_val_bool] = STATE(3295), + [sym_val_variable] = STATE(2121), + [sym_val_number] = STATE(2419), + [sym__val_number_decimal] = STATE(2938), + [sym__val_number] = STATE(2425), + [sym_val_duration] = STATE(2419), + [sym_val_filesize] = STATE(2419), + [sym_val_binary] = STATE(2419), + [sym_val_string] = STATE(2419), + [sym__raw_str] = STATE(1605), + [sym__str_double_quotes] = STATE(1605), + [sym_val_interpolated] = STATE(2419), + [sym__inter_single_quotes] = STATE(2426), + [sym__inter_double_quotes] = STATE(2421), + [sym_val_list] = STATE(2419), + [sym_val_record] = STATE(2419), + [sym_val_table] = STATE(2419), + [sym_val_closure] = STATE(2419), + [sym_unquoted] = STATE(2177), + [sym__unquoted_with_expr] = STATE(2489), + [sym__unquoted_anonymous_prefix] = STATE(6816), [sym_comment] = STATE(1077), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1018), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3374), + [aux_sym_expr_unary_token1] = ACTIONS(81), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3376), + [anon_sym_DOT_DOT_LT] = ACTIONS(3376), + [anon_sym_null] = ACTIONS(3378), + [anon_sym_true] = ACTIONS(3380), + [anon_sym_false] = ACTIONS(3380), + [aux_sym__val_number_decimal_token1] = ACTIONS(3382), + [aux_sym__val_number_decimal_token2] = ACTIONS(3384), + [aux_sym__val_number_decimal_token3] = ACTIONS(3386), + [aux_sym__val_number_decimal_token4] = ACTIONS(3388), + [aux_sym__val_number_token1] = ACTIONS(97), + [aux_sym__val_number_token2] = ACTIONS(97), + [aux_sym__val_number_token3] = ACTIONS(97), + [aux_sym__val_number_token4] = ACTIONS(3390), + [aux_sym__val_number_token5] = ACTIONS(3390), + [aux_sym__val_number_token6] = ACTIONS(3390), + [anon_sym_0b] = ACTIONS(101), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(3392), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym__str_single_quotes] = ACTIONS(109), + [sym__str_back_ticks] = ACTIONS(109), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3394), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1078] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(2415), - [sym_expr_parenthesized] = STATE(1902), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2135), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(1485), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1820), - [sym__unquoted_with_expr] = STATE(2104), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2463), + [sym__expr_unary_minus] = STATE(2502), + [sym_expr_binary] = STATE(2463), + [sym__expr_binary_expression] = STATE(3489), + [sym_expr_parenthesized] = STATE(2068), + [sym_val_range] = STATE(2463), + [sym__val_range] = STATE(7517), + [sym__val_range_with_end] = STATE(7363), + [sym__value] = STATE(2463), + [sym_val_nothing] = STATE(2419), + [sym_val_bool] = STATE(3295), + [sym_val_variable] = STATE(2121), + [sym_val_number] = STATE(2419), + [sym__val_number_decimal] = STATE(2938), + [sym__val_number] = STATE(2425), + [sym_val_duration] = STATE(2419), + [sym_val_filesize] = STATE(2419), + [sym_val_binary] = STATE(2419), + [sym_val_string] = STATE(2419), + [sym__raw_str] = STATE(1605), + [sym__str_double_quotes] = STATE(1605), + [sym_val_interpolated] = STATE(2419), + [sym__inter_single_quotes] = STATE(2426), + [sym__inter_double_quotes] = STATE(2421), + [sym_val_list] = STATE(2419), + [sym_val_record] = STATE(2419), + [sym_val_table] = STATE(2419), + [sym_val_closure] = STATE(2419), + [sym_unquoted] = STATE(2182), + [sym__unquoted_with_expr] = STATE(2491), + [sym__unquoted_anonymous_prefix] = STATE(6816), [sym_comment] = STATE(1078), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3208), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_LT] = ACTIONS(3210), - [anon_sym_null] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym__val_number_decimal_token1] = ACTIONS(3216), - [aux_sym__val_number_decimal_token2] = ACTIONS(3218), - [aux_sym__val_number_decimal_token3] = ACTIONS(3220), - [aux_sym__val_number_decimal_token4] = ACTIONS(3222), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3224), - [aux_sym__val_number_token5] = ACTIONS(3224), - [aux_sym__val_number_token6] = ACTIONS(3224), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1018), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3374), + [aux_sym_expr_unary_token1] = ACTIONS(81), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3376), + [anon_sym_DOT_DOT_LT] = ACTIONS(3376), + [anon_sym_null] = ACTIONS(3378), + [anon_sym_true] = ACTIONS(3380), + [anon_sym_false] = ACTIONS(3380), + [aux_sym__val_number_decimal_token1] = ACTIONS(3382), + [aux_sym__val_number_decimal_token2] = ACTIONS(3384), + [aux_sym__val_number_decimal_token3] = ACTIONS(3386), + [aux_sym__val_number_decimal_token4] = ACTIONS(3388), + [aux_sym__val_number_token1] = ACTIONS(97), + [aux_sym__val_number_token2] = ACTIONS(97), + [aux_sym__val_number_token3] = ACTIONS(97), + [aux_sym__val_number_token4] = ACTIONS(3390), + [aux_sym__val_number_token5] = ACTIONS(3390), + [aux_sym__val_number_token6] = ACTIONS(3390), + [anon_sym_0b] = ACTIONS(101), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(3392), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym__str_single_quotes] = ACTIONS(109), + [sym__str_back_ticks] = ACTIONS(109), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3394), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1079] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(3844), - [sym_expr_parenthesized] = STATE(1902), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1905), - [sym__unquoted_with_expr] = STATE(2084), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2463), + [sym__expr_unary_minus] = STATE(2502), + [sym_expr_binary] = STATE(2463), + [sym__expr_binary_expression] = STATE(3490), + [sym_expr_parenthesized] = STATE(2068), + [sym_val_range] = STATE(2463), + [sym__val_range] = STATE(7517), + [sym__val_range_with_end] = STATE(7363), + [sym__value] = STATE(2463), + [sym_val_nothing] = STATE(2419), + [sym_val_bool] = STATE(3295), + [sym_val_variable] = STATE(2121), + [sym_val_number] = STATE(2419), + [sym__val_number_decimal] = STATE(2938), + [sym__val_number] = STATE(2425), + [sym_val_duration] = STATE(2419), + [sym_val_filesize] = STATE(2419), + [sym_val_binary] = STATE(2419), + [sym_val_string] = STATE(2419), + [sym__raw_str] = STATE(1605), + [sym__str_double_quotes] = STATE(1605), + [sym_val_interpolated] = STATE(2419), + [sym__inter_single_quotes] = STATE(2426), + [sym__inter_double_quotes] = STATE(2421), + [sym_val_list] = STATE(2419), + [sym_val_record] = STATE(2419), + [sym_val_table] = STATE(2419), + [sym_val_closure] = STATE(2419), + [sym_unquoted] = STATE(2184), + [sym__unquoted_with_expr] = STATE(2493), + [sym__unquoted_anonymous_prefix] = STATE(6816), [sym_comment] = STATE(1079), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1018), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3374), + [aux_sym_expr_unary_token1] = ACTIONS(81), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3376), + [anon_sym_DOT_DOT_LT] = ACTIONS(3376), + [anon_sym_null] = ACTIONS(3378), + [anon_sym_true] = ACTIONS(3380), + [anon_sym_false] = ACTIONS(3380), + [aux_sym__val_number_decimal_token1] = ACTIONS(3382), + [aux_sym__val_number_decimal_token2] = ACTIONS(3384), + [aux_sym__val_number_decimal_token3] = ACTIONS(3386), + [aux_sym__val_number_decimal_token4] = ACTIONS(3388), + [aux_sym__val_number_token1] = ACTIONS(97), + [aux_sym__val_number_token2] = ACTIONS(97), + [aux_sym__val_number_token3] = ACTIONS(97), + [aux_sym__val_number_token4] = ACTIONS(3390), + [aux_sym__val_number_token5] = ACTIONS(3390), + [aux_sym__val_number_token6] = ACTIONS(3390), + [anon_sym_0b] = ACTIONS(101), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(3392), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym__str_single_quotes] = ACTIONS(109), + [sym__str_back_ticks] = ACTIONS(109), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3394), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1080] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(3846), - [sym_expr_parenthesized] = STATE(1902), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1908), - [sym__unquoted_with_expr] = STATE(2095), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2463), + [sym__expr_unary_minus] = STATE(2502), + [sym_expr_binary] = STATE(2463), + [sym__expr_binary_expression] = STATE(3491), + [sym_expr_parenthesized] = STATE(2068), + [sym_val_range] = STATE(2463), + [sym__val_range] = STATE(7517), + [sym__val_range_with_end] = STATE(7363), + [sym__value] = STATE(2463), + [sym_val_nothing] = STATE(2419), + [sym_val_bool] = STATE(3295), + [sym_val_variable] = STATE(2121), + [sym_val_number] = STATE(2419), + [sym__val_number_decimal] = STATE(2938), + [sym__val_number] = STATE(2425), + [sym_val_duration] = STATE(2419), + [sym_val_filesize] = STATE(2419), + [sym_val_binary] = STATE(2419), + [sym_val_string] = STATE(2419), + [sym__raw_str] = STATE(1605), + [sym__str_double_quotes] = STATE(1605), + [sym_val_interpolated] = STATE(2419), + [sym__inter_single_quotes] = STATE(2426), + [sym__inter_double_quotes] = STATE(2421), + [sym_val_list] = STATE(2419), + [sym_val_record] = STATE(2419), + [sym_val_table] = STATE(2419), + [sym_val_closure] = STATE(2419), + [sym_unquoted] = STATE(2188), + [sym__unquoted_with_expr] = STATE(2495), + [sym__unquoted_anonymous_prefix] = STATE(6816), [sym_comment] = STATE(1080), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1018), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3374), + [aux_sym_expr_unary_token1] = ACTIONS(81), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3376), + [anon_sym_DOT_DOT_LT] = ACTIONS(3376), + [anon_sym_null] = ACTIONS(3378), + [anon_sym_true] = ACTIONS(3380), + [anon_sym_false] = ACTIONS(3380), + [aux_sym__val_number_decimal_token1] = ACTIONS(3382), + [aux_sym__val_number_decimal_token2] = ACTIONS(3384), + [aux_sym__val_number_decimal_token3] = ACTIONS(3386), + [aux_sym__val_number_decimal_token4] = ACTIONS(3388), + [aux_sym__val_number_token1] = ACTIONS(97), + [aux_sym__val_number_token2] = ACTIONS(97), + [aux_sym__val_number_token3] = ACTIONS(97), + [aux_sym__val_number_token4] = ACTIONS(3390), + [aux_sym__val_number_token5] = ACTIONS(3390), + [aux_sym__val_number_token6] = ACTIONS(3390), + [anon_sym_0b] = ACTIONS(101), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(3392), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym__str_single_quotes] = ACTIONS(109), + [sym__str_back_ticks] = ACTIONS(109), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3394), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1081] = { - [sym_expr_unary] = STATE(2504), - [sym__expr_unary_minus] = STATE(2458), - [sym_expr_binary] = STATE(2504), - [sym__expr_binary_expression] = STATE(3514), - [sym_expr_parenthesized] = STATE(2150), - [sym_val_range] = STATE(2504), - [sym__val_range] = STATE(7714), - [sym__val_range_with_end] = STATE(7377), - [sym__value] = STATE(2504), - [sym_val_nothing] = STATE(2516), - [sym_val_bool] = STATE(3367), - [sym_val_variable] = STATE(2101), - [sym_val_number] = STATE(2516), - [sym__val_number_decimal] = STATE(3077), - [sym__val_number] = STATE(2512), - [sym_val_duration] = STATE(2516), - [sym_val_filesize] = STATE(2516), - [sym_val_binary] = STATE(2516), - [sym_val_string] = STATE(2516), - [sym__raw_str] = STATE(1732), - [sym__str_double_quotes] = STATE(1732), - [sym_val_interpolated] = STATE(2516), - [sym__inter_single_quotes] = STATE(2527), - [sym__inter_double_quotes] = STATE(2528), - [sym_val_list] = STATE(2516), - [sym_val_record] = STATE(2516), - [sym_val_table] = STATE(2516), - [sym_val_closure] = STATE(2516), - [sym_unquoted] = STATE(2267), - [sym__unquoted_with_expr] = STATE(2509), - [sym__unquoted_anonymous_prefix] = STATE(6993), + [sym_expr_unary] = STATE(2463), + [sym__expr_unary_minus] = STATE(2502), + [sym_expr_binary] = STATE(2463), + [sym__expr_binary_expression] = STATE(2470), + [sym_expr_parenthesized] = STATE(2068), + [sym_val_range] = STATE(2463), + [sym__val_range] = STATE(7517), + [sym__val_range_with_end] = STATE(7363), + [sym__value] = STATE(2463), + [sym_val_nothing] = STATE(2419), + [sym_val_bool] = STATE(2230), + [sym_val_variable] = STATE(2121), + [sym_val_number] = STATE(2419), + [sym__val_number_decimal] = STATE(1453), + [sym__val_number] = STATE(2425), + [sym_val_duration] = STATE(2419), + [sym_val_filesize] = STATE(2419), + [sym_val_binary] = STATE(2419), + [sym_val_string] = STATE(2419), + [sym__raw_str] = STATE(1605), + [sym__str_double_quotes] = STATE(1605), + [sym_val_interpolated] = STATE(2419), + [sym__inter_single_quotes] = STATE(2426), + [sym__inter_double_quotes] = STATE(2421), + [sym_val_list] = STATE(2419), + [sym_val_record] = STATE(2419), + [sym_val_table] = STATE(2419), + [sym_val_closure] = STATE(2419), + [sym_unquoted] = STATE(2160), + [sym__unquoted_with_expr] = STATE(2471), + [sym__unquoted_anonymous_prefix] = STATE(6816), [sym_comment] = STATE(1081), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1044), + [anon_sym_DOLLAR] = ACTIONS(1018), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3356), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3358), - [anon_sym_DOT_DOT_LT] = ACTIONS(3358), - [anon_sym_null] = ACTIONS(3360), - [anon_sym_true] = ACTIONS(3362), - [anon_sym_false] = ACTIONS(3362), - [aux_sym__val_number_decimal_token1] = ACTIONS(3364), - [aux_sym__val_number_decimal_token2] = ACTIONS(3366), - [aux_sym__val_number_decimal_token3] = ACTIONS(3368), - [aux_sym__val_number_decimal_token4] = ACTIONS(3370), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3372), - [aux_sym__val_number_token5] = ACTIONS(3372), - [aux_sym__val_number_token6] = ACTIONS(3372), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3374), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3376), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), + [anon_sym_DOT_DOT] = ACTIONS(3396), + [aux_sym_expr_unary_token1] = ACTIONS(81), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3398), + [anon_sym_DOT_DOT_LT] = ACTIONS(3398), + [anon_sym_null] = ACTIONS(3400), + [anon_sym_true] = ACTIONS(3402), + [anon_sym_false] = ACTIONS(3402), + [aux_sym__val_number_decimal_token1] = ACTIONS(3404), + [aux_sym__val_number_decimal_token2] = ACTIONS(3406), + [aux_sym__val_number_decimal_token3] = ACTIONS(3408), + [aux_sym__val_number_decimal_token4] = ACTIONS(3410), + [aux_sym__val_number_token1] = ACTIONS(97), + [aux_sym__val_number_token2] = ACTIONS(97), + [aux_sym__val_number_token3] = ACTIONS(97), + [aux_sym__val_number_token4] = ACTIONS(3412), + [aux_sym__val_number_token5] = ACTIONS(3412), + [aux_sym__val_number_token6] = ACTIONS(3412), + [anon_sym_0b] = ACTIONS(101), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(3414), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym__str_single_quotes] = ACTIONS(109), + [sym__str_back_ticks] = ACTIONS(109), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3394), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1082] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(3849), - [sym_expr_parenthesized] = STATE(1902), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1911), - [sym__unquoted_with_expr] = STATE(2102), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2463), + [sym__expr_unary_minus] = STATE(2502), + [sym_expr_binary] = STATE(2463), + [sym__expr_binary_expression] = STATE(2472), + [sym_expr_parenthesized] = STATE(2068), + [sym_val_range] = STATE(2463), + [sym__val_range] = STATE(7517), + [sym__val_range_with_end] = STATE(7363), + [sym__value] = STATE(2463), + [sym_val_nothing] = STATE(2419), + [sym_val_bool] = STATE(2230), + [sym_val_variable] = STATE(2121), + [sym_val_number] = STATE(2419), + [sym__val_number_decimal] = STATE(1453), + [sym__val_number] = STATE(2425), + [sym_val_duration] = STATE(2419), + [sym_val_filesize] = STATE(2419), + [sym_val_binary] = STATE(2419), + [sym_val_string] = STATE(2419), + [sym__raw_str] = STATE(1605), + [sym__str_double_quotes] = STATE(1605), + [sym_val_interpolated] = STATE(2419), + [sym__inter_single_quotes] = STATE(2426), + [sym__inter_double_quotes] = STATE(2421), + [sym_val_list] = STATE(2419), + [sym_val_record] = STATE(2419), + [sym_val_table] = STATE(2419), + [sym_val_closure] = STATE(2419), + [sym_unquoted] = STATE(2163), + [sym__unquoted_with_expr] = STATE(2473), + [sym__unquoted_anonymous_prefix] = STATE(6816), [sym_comment] = STATE(1082), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1018), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3396), + [aux_sym_expr_unary_token1] = ACTIONS(81), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3398), + [anon_sym_DOT_DOT_LT] = ACTIONS(3398), + [anon_sym_null] = ACTIONS(3400), + [anon_sym_true] = ACTIONS(3402), + [anon_sym_false] = ACTIONS(3402), + [aux_sym__val_number_decimal_token1] = ACTIONS(3404), + [aux_sym__val_number_decimal_token2] = ACTIONS(3406), + [aux_sym__val_number_decimal_token3] = ACTIONS(3408), + [aux_sym__val_number_decimal_token4] = ACTIONS(3410), + [aux_sym__val_number_token1] = ACTIONS(97), + [aux_sym__val_number_token2] = ACTIONS(97), + [aux_sym__val_number_token3] = ACTIONS(97), + [aux_sym__val_number_token4] = ACTIONS(3412), + [aux_sym__val_number_token5] = ACTIONS(3412), + [aux_sym__val_number_token6] = ACTIONS(3412), + [anon_sym_0b] = ACTIONS(101), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(3414), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym__str_single_quotes] = ACTIONS(109), + [sym__str_back_ticks] = ACTIONS(109), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3394), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1083] = { - [sym_expr_unary] = STATE(2504), - [sym__expr_unary_minus] = STATE(2458), - [sym_expr_binary] = STATE(2504), - [sym__expr_binary_expression] = STATE(3515), - [sym_expr_parenthesized] = STATE(2150), - [sym_val_range] = STATE(2504), - [sym__val_range] = STATE(7714), - [sym__val_range_with_end] = STATE(7377), - [sym__value] = STATE(2504), - [sym_val_nothing] = STATE(2516), - [sym_val_bool] = STATE(3367), - [sym_val_variable] = STATE(2101), - [sym_val_number] = STATE(2516), - [sym__val_number_decimal] = STATE(3077), - [sym__val_number] = STATE(2512), - [sym_val_duration] = STATE(2516), - [sym_val_filesize] = STATE(2516), - [sym_val_binary] = STATE(2516), - [sym_val_string] = STATE(2516), - [sym__raw_str] = STATE(1732), - [sym__str_double_quotes] = STATE(1732), - [sym_val_interpolated] = STATE(2516), - [sym__inter_single_quotes] = STATE(2527), - [sym__inter_double_quotes] = STATE(2528), - [sym_val_list] = STATE(2516), - [sym_val_record] = STATE(2516), - [sym_val_table] = STATE(2516), - [sym_val_closure] = STATE(2516), - [sym_unquoted] = STATE(2271), - [sym__unquoted_with_expr] = STATE(2517), - [sym__unquoted_anonymous_prefix] = STATE(6993), + [sym_expr_unary] = STATE(2463), + [sym__expr_unary_minus] = STATE(2502), + [sym_expr_binary] = STATE(2463), + [sym__expr_binary_expression] = STATE(2476), + [sym_expr_parenthesized] = STATE(2068), + [sym_val_range] = STATE(2463), + [sym__val_range] = STATE(7517), + [sym__val_range_with_end] = STATE(7363), + [sym__value] = STATE(2463), + [sym_val_nothing] = STATE(2419), + [sym_val_bool] = STATE(2230), + [sym_val_variable] = STATE(2121), + [sym_val_number] = STATE(2419), + [sym__val_number_decimal] = STATE(1453), + [sym__val_number] = STATE(2425), + [sym_val_duration] = STATE(2419), + [sym_val_filesize] = STATE(2419), + [sym_val_binary] = STATE(2419), + [sym_val_string] = STATE(2419), + [sym__raw_str] = STATE(1605), + [sym__str_double_quotes] = STATE(1605), + [sym_val_interpolated] = STATE(2419), + [sym__inter_single_quotes] = STATE(2426), + [sym__inter_double_quotes] = STATE(2421), + [sym_val_list] = STATE(2419), + [sym_val_record] = STATE(2419), + [sym_val_table] = STATE(2419), + [sym_val_closure] = STATE(2419), + [sym_unquoted] = STATE(2170), + [sym__unquoted_with_expr] = STATE(2477), + [sym__unquoted_anonymous_prefix] = STATE(6816), [sym_comment] = STATE(1083), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1044), + [anon_sym_DOLLAR] = ACTIONS(1018), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3356), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3358), - [anon_sym_DOT_DOT_LT] = ACTIONS(3358), - [anon_sym_null] = ACTIONS(3360), - [anon_sym_true] = ACTIONS(3362), - [anon_sym_false] = ACTIONS(3362), - [aux_sym__val_number_decimal_token1] = ACTIONS(3364), - [aux_sym__val_number_decimal_token2] = ACTIONS(3366), - [aux_sym__val_number_decimal_token3] = ACTIONS(3368), - [aux_sym__val_number_decimal_token4] = ACTIONS(3370), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3372), - [aux_sym__val_number_token5] = ACTIONS(3372), - [aux_sym__val_number_token6] = ACTIONS(3372), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3374), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3376), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), + [anon_sym_DOT_DOT] = ACTIONS(3396), + [aux_sym_expr_unary_token1] = ACTIONS(81), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3398), + [anon_sym_DOT_DOT_LT] = ACTIONS(3398), + [anon_sym_null] = ACTIONS(3400), + [anon_sym_true] = ACTIONS(3402), + [anon_sym_false] = ACTIONS(3402), + [aux_sym__val_number_decimal_token1] = ACTIONS(3404), + [aux_sym__val_number_decimal_token2] = ACTIONS(3406), + [aux_sym__val_number_decimal_token3] = ACTIONS(3408), + [aux_sym__val_number_decimal_token4] = ACTIONS(3410), + [aux_sym__val_number_token1] = ACTIONS(97), + [aux_sym__val_number_token2] = ACTIONS(97), + [aux_sym__val_number_token3] = ACTIONS(97), + [aux_sym__val_number_token4] = ACTIONS(3412), + [aux_sym__val_number_token5] = ACTIONS(3412), + [aux_sym__val_number_token6] = ACTIONS(3412), + [anon_sym_0b] = ACTIONS(101), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(3414), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym__str_single_quotes] = ACTIONS(109), + [sym__str_back_ticks] = ACTIONS(109), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3394), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1084] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(3852), - [sym_expr_parenthesized] = STATE(1902), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1914), - [sym__unquoted_with_expr] = STATE(2115), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2463), + [sym__expr_unary_minus] = STATE(2502), + [sym_expr_binary] = STATE(2463), + [sym__expr_binary_expression] = STATE(2478), + [sym_expr_parenthesized] = STATE(2068), + [sym_val_range] = STATE(2463), + [sym__val_range] = STATE(7517), + [sym__val_range_with_end] = STATE(7363), + [sym__value] = STATE(2463), + [sym_val_nothing] = STATE(2419), + [sym_val_bool] = STATE(2230), + [sym_val_variable] = STATE(2121), + [sym_val_number] = STATE(2419), + [sym__val_number_decimal] = STATE(1453), + [sym__val_number] = STATE(2425), + [sym_val_duration] = STATE(2419), + [sym_val_filesize] = STATE(2419), + [sym_val_binary] = STATE(2419), + [sym_val_string] = STATE(2419), + [sym__raw_str] = STATE(1605), + [sym__str_double_quotes] = STATE(1605), + [sym_val_interpolated] = STATE(2419), + [sym__inter_single_quotes] = STATE(2426), + [sym__inter_double_quotes] = STATE(2421), + [sym_val_list] = STATE(2419), + [sym_val_record] = STATE(2419), + [sym_val_table] = STATE(2419), + [sym_val_closure] = STATE(2419), + [sym_unquoted] = STATE(2171), + [sym__unquoted_with_expr] = STATE(2479), + [sym__unquoted_anonymous_prefix] = STATE(6816), [sym_comment] = STATE(1084), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1018), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3396), + [aux_sym_expr_unary_token1] = ACTIONS(81), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3398), + [anon_sym_DOT_DOT_LT] = ACTIONS(3398), + [anon_sym_null] = ACTIONS(3400), + [anon_sym_true] = ACTIONS(3402), + [anon_sym_false] = ACTIONS(3402), + [aux_sym__val_number_decimal_token1] = ACTIONS(3404), + [aux_sym__val_number_decimal_token2] = ACTIONS(3406), + [aux_sym__val_number_decimal_token3] = ACTIONS(3408), + [aux_sym__val_number_decimal_token4] = ACTIONS(3410), + [aux_sym__val_number_token1] = ACTIONS(97), + [aux_sym__val_number_token2] = ACTIONS(97), + [aux_sym__val_number_token3] = ACTIONS(97), + [aux_sym__val_number_token4] = ACTIONS(3412), + [aux_sym__val_number_token5] = ACTIONS(3412), + [aux_sym__val_number_token6] = ACTIONS(3412), + [anon_sym_0b] = ACTIONS(101), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(3414), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym__str_single_quotes] = ACTIONS(109), + [sym__str_back_ticks] = ACTIONS(109), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3394), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1085] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(3853), - [sym_expr_parenthesized] = STATE(1902), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1919), - [sym__unquoted_with_expr] = STATE(2155), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2463), + [sym__expr_unary_minus] = STATE(2502), + [sym_expr_binary] = STATE(2463), + [sym__expr_binary_expression] = STATE(2480), + [sym_expr_parenthesized] = STATE(2068), + [sym_val_range] = STATE(2463), + [sym__val_range] = STATE(7517), + [sym__val_range_with_end] = STATE(7363), + [sym__value] = STATE(2463), + [sym_val_nothing] = STATE(2419), + [sym_val_bool] = STATE(2230), + [sym_val_variable] = STATE(2121), + [sym_val_number] = STATE(2419), + [sym__val_number_decimal] = STATE(1453), + [sym__val_number] = STATE(2425), + [sym_val_duration] = STATE(2419), + [sym_val_filesize] = STATE(2419), + [sym_val_binary] = STATE(2419), + [sym_val_string] = STATE(2419), + [sym__raw_str] = STATE(1605), + [sym__str_double_quotes] = STATE(1605), + [sym_val_interpolated] = STATE(2419), + [sym__inter_single_quotes] = STATE(2426), + [sym__inter_double_quotes] = STATE(2421), + [sym_val_list] = STATE(2419), + [sym_val_record] = STATE(2419), + [sym_val_table] = STATE(2419), + [sym_val_closure] = STATE(2419), + [sym_unquoted] = STATE(2172), + [sym__unquoted_with_expr] = STATE(2483), + [sym__unquoted_anonymous_prefix] = STATE(6816), [sym_comment] = STATE(1085), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1018), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3396), + [aux_sym_expr_unary_token1] = ACTIONS(81), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3398), + [anon_sym_DOT_DOT_LT] = ACTIONS(3398), + [anon_sym_null] = ACTIONS(3400), + [anon_sym_true] = ACTIONS(3402), + [anon_sym_false] = ACTIONS(3402), + [aux_sym__val_number_decimal_token1] = ACTIONS(3404), + [aux_sym__val_number_decimal_token2] = ACTIONS(3406), + [aux_sym__val_number_decimal_token3] = ACTIONS(3408), + [aux_sym__val_number_decimal_token4] = ACTIONS(3410), + [aux_sym__val_number_token1] = ACTIONS(97), + [aux_sym__val_number_token2] = ACTIONS(97), + [aux_sym__val_number_token3] = ACTIONS(97), + [aux_sym__val_number_token4] = ACTIONS(3412), + [aux_sym__val_number_token5] = ACTIONS(3412), + [aux_sym__val_number_token6] = ACTIONS(3412), + [anon_sym_0b] = ACTIONS(101), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(3414), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym__str_single_quotes] = ACTIONS(109), + [sym__str_back_ticks] = ACTIONS(109), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3394), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1086] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(3855), - [sym_expr_parenthesized] = STATE(1902), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1922), - [sym__unquoted_with_expr] = STATE(2128), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2463), + [sym__expr_unary_minus] = STATE(2502), + [sym_expr_binary] = STATE(2463), + [sym__expr_binary_expression] = STATE(2484), + [sym_expr_parenthesized] = STATE(2068), + [sym_val_range] = STATE(2463), + [sym__val_range] = STATE(7517), + [sym__val_range_with_end] = STATE(7363), + [sym__value] = STATE(2463), + [sym_val_nothing] = STATE(2419), + [sym_val_bool] = STATE(2230), + [sym_val_variable] = STATE(2121), + [sym_val_number] = STATE(2419), + [sym__val_number_decimal] = STATE(1453), + [sym__val_number] = STATE(2425), + [sym_val_duration] = STATE(2419), + [sym_val_filesize] = STATE(2419), + [sym_val_binary] = STATE(2419), + [sym_val_string] = STATE(2419), + [sym__raw_str] = STATE(1605), + [sym__str_double_quotes] = STATE(1605), + [sym_val_interpolated] = STATE(2419), + [sym__inter_single_quotes] = STATE(2426), + [sym__inter_double_quotes] = STATE(2421), + [sym_val_list] = STATE(2419), + [sym_val_record] = STATE(2419), + [sym_val_table] = STATE(2419), + [sym_val_closure] = STATE(2419), + [sym_unquoted] = STATE(2175), + [sym__unquoted_with_expr] = STATE(2485), + [sym__unquoted_anonymous_prefix] = STATE(6816), [sym_comment] = STATE(1086), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1018), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3396), + [aux_sym_expr_unary_token1] = ACTIONS(81), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3398), + [anon_sym_DOT_DOT_LT] = ACTIONS(3398), + [anon_sym_null] = ACTIONS(3400), + [anon_sym_true] = ACTIONS(3402), + [anon_sym_false] = ACTIONS(3402), + [aux_sym__val_number_decimal_token1] = ACTIONS(3404), + [aux_sym__val_number_decimal_token2] = ACTIONS(3406), + [aux_sym__val_number_decimal_token3] = ACTIONS(3408), + [aux_sym__val_number_decimal_token4] = ACTIONS(3410), + [aux_sym__val_number_token1] = ACTIONS(97), + [aux_sym__val_number_token2] = ACTIONS(97), + [aux_sym__val_number_token3] = ACTIONS(97), + [aux_sym__val_number_token4] = ACTIONS(3412), + [aux_sym__val_number_token5] = ACTIONS(3412), + [aux_sym__val_number_token6] = ACTIONS(3412), + [anon_sym_0b] = ACTIONS(101), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(3414), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym__str_single_quotes] = ACTIONS(109), + [sym__str_back_ticks] = ACTIONS(109), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3394), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1087] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(2130), - [sym_expr_parenthesized] = STATE(1902), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1928), - [sym__unquoted_with_expr] = STATE(2137), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2463), + [sym__expr_unary_minus] = STATE(2502), + [sym_expr_binary] = STATE(2463), + [sym__expr_binary_expression] = STATE(2486), + [sym_expr_parenthesized] = STATE(2068), + [sym_val_range] = STATE(2463), + [sym__val_range] = STATE(7517), + [sym__val_range_with_end] = STATE(7363), + [sym__value] = STATE(2463), + [sym_val_nothing] = STATE(2419), + [sym_val_bool] = STATE(2230), + [sym_val_variable] = STATE(2121), + [sym_val_number] = STATE(2419), + [sym__val_number_decimal] = STATE(1453), + [sym__val_number] = STATE(2425), + [sym_val_duration] = STATE(2419), + [sym_val_filesize] = STATE(2419), + [sym_val_binary] = STATE(2419), + [sym_val_string] = STATE(2419), + [sym__raw_str] = STATE(1605), + [sym__str_double_quotes] = STATE(1605), + [sym_val_interpolated] = STATE(2419), + [sym__inter_single_quotes] = STATE(2426), + [sym__inter_double_quotes] = STATE(2421), + [sym_val_list] = STATE(2419), + [sym_val_record] = STATE(2419), + [sym_val_table] = STATE(2419), + [sym_val_closure] = STATE(2419), + [sym_unquoted] = STATE(2176), + [sym__unquoted_with_expr] = STATE(2487), + [sym__unquoted_anonymous_prefix] = STATE(6816), [sym_comment] = STATE(1087), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1018), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3396), + [aux_sym_expr_unary_token1] = ACTIONS(81), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3398), + [anon_sym_DOT_DOT_LT] = ACTIONS(3398), + [anon_sym_null] = ACTIONS(3400), + [anon_sym_true] = ACTIONS(3402), + [anon_sym_false] = ACTIONS(3402), + [aux_sym__val_number_decimal_token1] = ACTIONS(3404), + [aux_sym__val_number_decimal_token2] = ACTIONS(3406), + [aux_sym__val_number_decimal_token3] = ACTIONS(3408), + [aux_sym__val_number_decimal_token4] = ACTIONS(3410), + [aux_sym__val_number_token1] = ACTIONS(97), + [aux_sym__val_number_token2] = ACTIONS(97), + [aux_sym__val_number_token3] = ACTIONS(97), + [aux_sym__val_number_token4] = ACTIONS(3412), + [aux_sym__val_number_token5] = ACTIONS(3412), + [aux_sym__val_number_token6] = ACTIONS(3412), + [anon_sym_0b] = ACTIONS(101), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(3414), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym__str_single_quotes] = ACTIONS(109), + [sym__str_back_ticks] = ACTIONS(109), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3394), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1088] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(3856), - [sym_expr_parenthesized] = STATE(1902), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1945), - [sym__unquoted_with_expr] = STATE(2139), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2463), + [sym__expr_unary_minus] = STATE(2502), + [sym_expr_binary] = STATE(2463), + [sym__expr_binary_expression] = STATE(2488), + [sym_expr_parenthesized] = STATE(2068), + [sym_val_range] = STATE(2463), + [sym__val_range] = STATE(7517), + [sym__val_range_with_end] = STATE(7363), + [sym__value] = STATE(2463), + [sym_val_nothing] = STATE(2419), + [sym_val_bool] = STATE(2230), + [sym_val_variable] = STATE(2121), + [sym_val_number] = STATE(2419), + [sym__val_number_decimal] = STATE(1453), + [sym__val_number] = STATE(2425), + [sym_val_duration] = STATE(2419), + [sym_val_filesize] = STATE(2419), + [sym_val_binary] = STATE(2419), + [sym_val_string] = STATE(2419), + [sym__raw_str] = STATE(1605), + [sym__str_double_quotes] = STATE(1605), + [sym_val_interpolated] = STATE(2419), + [sym__inter_single_quotes] = STATE(2426), + [sym__inter_double_quotes] = STATE(2421), + [sym_val_list] = STATE(2419), + [sym_val_record] = STATE(2419), + [sym_val_table] = STATE(2419), + [sym_val_closure] = STATE(2419), + [sym_unquoted] = STATE(2177), + [sym__unquoted_with_expr] = STATE(2489), + [sym__unquoted_anonymous_prefix] = STATE(6816), [sym_comment] = STATE(1088), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1018), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3396), + [aux_sym_expr_unary_token1] = ACTIONS(81), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3398), + [anon_sym_DOT_DOT_LT] = ACTIONS(3398), + [anon_sym_null] = ACTIONS(3400), + [anon_sym_true] = ACTIONS(3402), + [anon_sym_false] = ACTIONS(3402), + [aux_sym__val_number_decimal_token1] = ACTIONS(3404), + [aux_sym__val_number_decimal_token2] = ACTIONS(3406), + [aux_sym__val_number_decimal_token3] = ACTIONS(3408), + [aux_sym__val_number_decimal_token4] = ACTIONS(3410), + [aux_sym__val_number_token1] = ACTIONS(97), + [aux_sym__val_number_token2] = ACTIONS(97), + [aux_sym__val_number_token3] = ACTIONS(97), + [aux_sym__val_number_token4] = ACTIONS(3412), + [aux_sym__val_number_token5] = ACTIONS(3412), + [aux_sym__val_number_token6] = ACTIONS(3412), + [anon_sym_0b] = ACTIONS(101), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(3414), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym__str_single_quotes] = ACTIONS(109), + [sym__str_back_ticks] = ACTIONS(109), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3394), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1089] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(3857), - [sym_expr_parenthesized] = STATE(1902), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1818), - [sym__unquoted_with_expr] = STATE(2107), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2463), + [sym__expr_unary_minus] = STATE(2502), + [sym_expr_binary] = STATE(2463), + [sym__expr_binary_expression] = STATE(2490), + [sym_expr_parenthesized] = STATE(2068), + [sym_val_range] = STATE(2463), + [sym__val_range] = STATE(7517), + [sym__val_range_with_end] = STATE(7363), + [sym__value] = STATE(2463), + [sym_val_nothing] = STATE(2419), + [sym_val_bool] = STATE(2230), + [sym_val_variable] = STATE(2121), + [sym_val_number] = STATE(2419), + [sym__val_number_decimal] = STATE(1453), + [sym__val_number] = STATE(2425), + [sym_val_duration] = STATE(2419), + [sym_val_filesize] = STATE(2419), + [sym_val_binary] = STATE(2419), + [sym_val_string] = STATE(2419), + [sym__raw_str] = STATE(1605), + [sym__str_double_quotes] = STATE(1605), + [sym_val_interpolated] = STATE(2419), + [sym__inter_single_quotes] = STATE(2426), + [sym__inter_double_quotes] = STATE(2421), + [sym_val_list] = STATE(2419), + [sym_val_record] = STATE(2419), + [sym_val_table] = STATE(2419), + [sym_val_closure] = STATE(2419), + [sym_unquoted] = STATE(2182), + [sym__unquoted_with_expr] = STATE(2491), + [sym__unquoted_anonymous_prefix] = STATE(6816), [sym_comment] = STATE(1089), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1018), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3396), + [aux_sym_expr_unary_token1] = ACTIONS(81), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3398), + [anon_sym_DOT_DOT_LT] = ACTIONS(3398), + [anon_sym_null] = ACTIONS(3400), + [anon_sym_true] = ACTIONS(3402), + [anon_sym_false] = ACTIONS(3402), + [aux_sym__val_number_decimal_token1] = ACTIONS(3404), + [aux_sym__val_number_decimal_token2] = ACTIONS(3406), + [aux_sym__val_number_decimal_token3] = ACTIONS(3408), + [aux_sym__val_number_decimal_token4] = ACTIONS(3410), + [aux_sym__val_number_token1] = ACTIONS(97), + [aux_sym__val_number_token2] = ACTIONS(97), + [aux_sym__val_number_token3] = ACTIONS(97), + [aux_sym__val_number_token4] = ACTIONS(3412), + [aux_sym__val_number_token5] = ACTIONS(3412), + [aux_sym__val_number_token6] = ACTIONS(3412), + [anon_sym_0b] = ACTIONS(101), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(3414), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym__str_single_quotes] = ACTIONS(109), + [sym__str_back_ticks] = ACTIONS(109), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3394), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1090] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(3858), - [sym_expr_parenthesized] = STATE(1902), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1819), - [sym__unquoted_with_expr] = STATE(2110), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2463), + [sym__expr_unary_minus] = STATE(2502), + [sym_expr_binary] = STATE(2463), + [sym__expr_binary_expression] = STATE(2492), + [sym_expr_parenthesized] = STATE(2068), + [sym_val_range] = STATE(2463), + [sym__val_range] = STATE(7517), + [sym__val_range_with_end] = STATE(7363), + [sym__value] = STATE(2463), + [sym_val_nothing] = STATE(2419), + [sym_val_bool] = STATE(2230), + [sym_val_variable] = STATE(2121), + [sym_val_number] = STATE(2419), + [sym__val_number_decimal] = STATE(1453), + [sym__val_number] = STATE(2425), + [sym_val_duration] = STATE(2419), + [sym_val_filesize] = STATE(2419), + [sym_val_binary] = STATE(2419), + [sym_val_string] = STATE(2419), + [sym__raw_str] = STATE(1605), + [sym__str_double_quotes] = STATE(1605), + [sym_val_interpolated] = STATE(2419), + [sym__inter_single_quotes] = STATE(2426), + [sym__inter_double_quotes] = STATE(2421), + [sym_val_list] = STATE(2419), + [sym_val_record] = STATE(2419), + [sym_val_table] = STATE(2419), + [sym_val_closure] = STATE(2419), + [sym_unquoted] = STATE(2184), + [sym__unquoted_with_expr] = STATE(2493), + [sym__unquoted_anonymous_prefix] = STATE(6816), [sym_comment] = STATE(1090), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1018), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3396), + [aux_sym_expr_unary_token1] = ACTIONS(81), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3398), + [anon_sym_DOT_DOT_LT] = ACTIONS(3398), + [anon_sym_null] = ACTIONS(3400), + [anon_sym_true] = ACTIONS(3402), + [anon_sym_false] = ACTIONS(3402), + [aux_sym__val_number_decimal_token1] = ACTIONS(3404), + [aux_sym__val_number_decimal_token2] = ACTIONS(3406), + [aux_sym__val_number_decimal_token3] = ACTIONS(3408), + [aux_sym__val_number_decimal_token4] = ACTIONS(3410), + [aux_sym__val_number_token1] = ACTIONS(97), + [aux_sym__val_number_token2] = ACTIONS(97), + [aux_sym__val_number_token3] = ACTIONS(97), + [aux_sym__val_number_token4] = ACTIONS(3412), + [aux_sym__val_number_token5] = ACTIONS(3412), + [aux_sym__val_number_token6] = ACTIONS(3412), + [anon_sym_0b] = ACTIONS(101), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(3414), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym__str_single_quotes] = ACTIONS(109), + [sym__str_back_ticks] = ACTIONS(109), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3394), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1091] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(3859), - [sym_expr_parenthesized] = STATE(1902), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1820), - [sym__unquoted_with_expr] = STATE(2104), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2463), + [sym__expr_unary_minus] = STATE(2502), + [sym_expr_binary] = STATE(2463), + [sym__expr_binary_expression] = STATE(2494), + [sym_expr_parenthesized] = STATE(2068), + [sym_val_range] = STATE(2463), + [sym__val_range] = STATE(7517), + [sym__val_range_with_end] = STATE(7363), + [sym__value] = STATE(2463), + [sym_val_nothing] = STATE(2419), + [sym_val_bool] = STATE(2230), + [sym_val_variable] = STATE(2121), + [sym_val_number] = STATE(2419), + [sym__val_number_decimal] = STATE(1453), + [sym__val_number] = STATE(2425), + [sym_val_duration] = STATE(2419), + [sym_val_filesize] = STATE(2419), + [sym_val_binary] = STATE(2419), + [sym_val_string] = STATE(2419), + [sym__raw_str] = STATE(1605), + [sym__str_double_quotes] = STATE(1605), + [sym_val_interpolated] = STATE(2419), + [sym__inter_single_quotes] = STATE(2426), + [sym__inter_double_quotes] = STATE(2421), + [sym_val_list] = STATE(2419), + [sym_val_record] = STATE(2419), + [sym_val_table] = STATE(2419), + [sym_val_closure] = STATE(2419), + [sym_unquoted] = STATE(2188), + [sym__unquoted_with_expr] = STATE(2495), + [sym__unquoted_anonymous_prefix] = STATE(6816), [sym_comment] = STATE(1091), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1018), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3396), + [aux_sym_expr_unary_token1] = ACTIONS(81), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3398), + [anon_sym_DOT_DOT_LT] = ACTIONS(3398), + [anon_sym_null] = ACTIONS(3400), + [anon_sym_true] = ACTIONS(3402), + [anon_sym_false] = ACTIONS(3402), + [aux_sym__val_number_decimal_token1] = ACTIONS(3404), + [aux_sym__val_number_decimal_token2] = ACTIONS(3406), + [aux_sym__val_number_decimal_token3] = ACTIONS(3408), + [aux_sym__val_number_decimal_token4] = ACTIONS(3410), + [aux_sym__val_number_token1] = ACTIONS(97), + [aux_sym__val_number_token2] = ACTIONS(97), + [aux_sym__val_number_token3] = ACTIONS(97), + [aux_sym__val_number_token4] = ACTIONS(3412), + [aux_sym__val_number_token5] = ACTIONS(3412), + [aux_sym__val_number_token6] = ACTIONS(3412), + [anon_sym_0b] = ACTIONS(101), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(3414), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym__str_single_quotes] = ACTIONS(109), + [sym__str_back_ticks] = ACTIONS(109), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3394), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1092] = { - [sym_expr_unary] = STATE(2504), - [sym__expr_unary_minus] = STATE(2458), - [sym_expr_binary] = STATE(2504), - [sym__expr_binary_expression] = STATE(2506), - [sym_expr_parenthesized] = STATE(2150), - [sym_val_range] = STATE(2504), - [sym__val_range] = STATE(7714), - [sym__val_range_with_end] = STATE(7377), - [sym__value] = STATE(2504), - [sym_val_nothing] = STATE(2516), - [sym_val_bool] = STATE(2171), - [sym_val_variable] = STATE(2101), - [sym_val_number] = STATE(2516), - [sym__val_number_decimal] = STATE(1587), - [sym__val_number] = STATE(2512), - [sym_val_duration] = STATE(2516), - [sym_val_filesize] = STATE(2516), - [sym_val_binary] = STATE(2516), - [sym_val_string] = STATE(2516), - [sym__raw_str] = STATE(1732), - [sym__str_double_quotes] = STATE(1732), - [sym_val_interpolated] = STATE(2516), - [sym__inter_single_quotes] = STATE(2527), - [sym__inter_double_quotes] = STATE(2528), - [sym_val_list] = STATE(2516), - [sym_val_record] = STATE(2516), - [sym_val_table] = STATE(2516), - [sym_val_closure] = STATE(2516), - [sym_unquoted] = STATE(2267), - [sym__unquoted_with_expr] = STATE(2509), - [sym__unquoted_anonymous_prefix] = STATE(6993), + [sym_expr_unary] = STATE(2463), + [sym__expr_unary_minus] = STATE(2502), + [sym_expr_binary] = STATE(2463), + [sym__expr_binary_expression] = STATE(2464), + [sym_expr_parenthesized] = STATE(2068), + [sym_val_range] = STATE(2463), + [sym__val_range] = STATE(7517), + [sym__val_range_with_end] = STATE(7363), + [sym__value] = STATE(2463), + [sym_val_nothing] = STATE(2419), + [sym_val_bool] = STATE(2230), + [sym_val_variable] = STATE(2121), + [sym_val_number] = STATE(2419), + [sym__val_number_decimal] = STATE(1453), + [sym__val_number] = STATE(2425), + [sym_val_duration] = STATE(2419), + [sym_val_filesize] = STATE(2419), + [sym_val_binary] = STATE(2419), + [sym_val_string] = STATE(2419), + [sym__raw_str] = STATE(1605), + [sym__str_double_quotes] = STATE(1605), + [sym_val_interpolated] = STATE(2419), + [sym__inter_single_quotes] = STATE(2426), + [sym__inter_double_quotes] = STATE(2421), + [sym_val_list] = STATE(2419), + [sym_val_record] = STATE(2419), + [sym_val_table] = STATE(2419), + [sym_val_closure] = STATE(2419), + [sym_unquoted] = STATE(2141), + [sym__unquoted_with_expr] = STATE(2466), + [sym__unquoted_anonymous_prefix] = STATE(6816), [sym_comment] = STATE(1092), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1044), + [anon_sym_DOLLAR] = ACTIONS(1018), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3378), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3380), - [anon_sym_DOT_DOT_LT] = ACTIONS(3380), - [anon_sym_null] = ACTIONS(3382), - [anon_sym_true] = ACTIONS(3384), - [anon_sym_false] = ACTIONS(3384), - [aux_sym__val_number_decimal_token1] = ACTIONS(3386), - [aux_sym__val_number_decimal_token2] = ACTIONS(3388), - [aux_sym__val_number_decimal_token3] = ACTIONS(3390), - [aux_sym__val_number_decimal_token4] = ACTIONS(3392), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3394), - [aux_sym__val_number_token5] = ACTIONS(3394), - [aux_sym__val_number_token6] = ACTIONS(3394), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3396), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3376), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), + [anon_sym_DOT_DOT] = ACTIONS(3396), + [aux_sym_expr_unary_token1] = ACTIONS(81), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3398), + [anon_sym_DOT_DOT_LT] = ACTIONS(3398), + [anon_sym_null] = ACTIONS(3400), + [anon_sym_true] = ACTIONS(3402), + [anon_sym_false] = ACTIONS(3402), + [aux_sym__val_number_decimal_token1] = ACTIONS(3404), + [aux_sym__val_number_decimal_token2] = ACTIONS(3406), + [aux_sym__val_number_decimal_token3] = ACTIONS(3408), + [aux_sym__val_number_decimal_token4] = ACTIONS(3410), + [aux_sym__val_number_token1] = ACTIONS(97), + [aux_sym__val_number_token2] = ACTIONS(97), + [aux_sym__val_number_token3] = ACTIONS(97), + [aux_sym__val_number_token4] = ACTIONS(3412), + [aux_sym__val_number_token5] = ACTIONS(3412), + [aux_sym__val_number_token6] = ACTIONS(3412), + [anon_sym_0b] = ACTIONS(101), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(3414), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym__str_single_quotes] = ACTIONS(109), + [sym__str_back_ticks] = ACTIONS(109), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3394), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1093] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(3408), - [sym_expr_parenthesized] = STATE(1902), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1905), - [sym__unquoted_with_expr] = STATE(2084), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2463), + [sym__expr_unary_minus] = STATE(2502), + [sym_expr_binary] = STATE(2463), + [sym__expr_binary_expression] = STATE(2467), + [sym_expr_parenthesized] = STATE(2068), + [sym_val_range] = STATE(2463), + [sym__val_range] = STATE(7517), + [sym__val_range_with_end] = STATE(7363), + [sym__value] = STATE(2463), + [sym_val_nothing] = STATE(2419), + [sym_val_bool] = STATE(2230), + [sym_val_variable] = STATE(2121), + [sym_val_number] = STATE(2419), + [sym__val_number_decimal] = STATE(1453), + [sym__val_number] = STATE(2425), + [sym_val_duration] = STATE(2419), + [sym_val_filesize] = STATE(2419), + [sym_val_binary] = STATE(2419), + [sym_val_string] = STATE(2419), + [sym__raw_str] = STATE(1605), + [sym__str_double_quotes] = STATE(1605), + [sym_val_interpolated] = STATE(2419), + [sym__inter_single_quotes] = STATE(2426), + [sym__inter_double_quotes] = STATE(2421), + [sym_val_list] = STATE(2419), + [sym_val_record] = STATE(2419), + [sym_val_table] = STATE(2419), + [sym_val_closure] = STATE(2419), + [sym_unquoted] = STATE(2143), + [sym__unquoted_with_expr] = STATE(2519), + [sym__unquoted_anonymous_prefix] = STATE(6816), [sym_comment] = STATE(1093), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1018), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3396), + [aux_sym_expr_unary_token1] = ACTIONS(81), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3398), + [anon_sym_DOT_DOT_LT] = ACTIONS(3398), + [anon_sym_null] = ACTIONS(3400), + [anon_sym_true] = ACTIONS(3402), + [anon_sym_false] = ACTIONS(3402), + [aux_sym__val_number_decimal_token1] = ACTIONS(3404), + [aux_sym__val_number_decimal_token2] = ACTIONS(3406), + [aux_sym__val_number_decimal_token3] = ACTIONS(3408), + [aux_sym__val_number_decimal_token4] = ACTIONS(3410), + [aux_sym__val_number_token1] = ACTIONS(97), + [aux_sym__val_number_token2] = ACTIONS(97), + [aux_sym__val_number_token3] = ACTIONS(97), + [aux_sym__val_number_token4] = ACTIONS(3412), + [aux_sym__val_number_token5] = ACTIONS(3412), + [aux_sym__val_number_token6] = ACTIONS(3412), + [anon_sym_0b] = ACTIONS(101), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(3414), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym__str_single_quotes] = ACTIONS(109), + [sym__str_back_ticks] = ACTIONS(109), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3394), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1094] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(3409), - [sym_expr_parenthesized] = STATE(1902), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1908), - [sym__unquoted_with_expr] = STATE(2095), - [sym__unquoted_anonymous_prefix] = STATE(7111), [sym_comment] = STATE(1094), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_STAR] = ACTIONS(1504), + [anon_sym_SLASH] = ACTIONS(1504), + [anon_sym_mod] = ACTIONS(1506), + [anon_sym_SLASH_SLASH] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_bit_DASHshl] = ACTIONS(1506), + [anon_sym_bit_DASHshr] = ACTIONS(1506), + [anon_sym_EQ_TILDE] = ACTIONS(1506), + [anon_sym_BANG_TILDE] = ACTIONS(1506), + [anon_sym_bit_DASHand] = ACTIONS(1506), + [anon_sym_bit_DASHxor] = ACTIONS(1506), + [anon_sym_bit_DASHor] = ACTIONS(1506), + [anon_sym_and] = ACTIONS(1506), + [anon_sym_xor] = ACTIONS(1506), + [anon_sym_or] = ACTIONS(1506), + [anon_sym_in] = ACTIONS(1506), + [anon_sym_not_DASHin] = ACTIONS(1506), + [anon_sym_has] = ACTIONS(1506), + [anon_sym_not_DASHhas] = 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_LT] = ACTIONS(1504), + [anon_sym_LT_EQ] = ACTIONS(1506), + [anon_sym_GT] = ACTIONS(1504), + [anon_sym_GT_EQ] = ACTIONS(1506), + [aux_sym_cmd_identifier_token41] = ACTIONS(1504), + [sym__newline] = ACTIONS(1504), + [anon_sym_SEMI] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_err_GT_PIPE] = ACTIONS(1504), + [anon_sym_out_GT_PIPE] = ACTIONS(1504), + [anon_sym_e_GT_PIPE] = ACTIONS(1504), + [anon_sym_o_GT_PIPE] = ACTIONS(1504), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1504), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1504), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1504), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1504), + [anon_sym_RPAREN] = ACTIONS(1504), + [anon_sym_GT2] = ACTIONS(1504), + [anon_sym_DASH2] = ACTIONS(1504), + [anon_sym_in2] = ACTIONS(1504), + [anon_sym_STAR2] = ACTIONS(1504), + [anon_sym_and2] = ACTIONS(1504), + [anon_sym_xor2] = ACTIONS(1504), + [anon_sym_or2] = ACTIONS(1504), + [anon_sym_not_DASHin2] = ACTIONS(1504), + [anon_sym_has2] = ACTIONS(1504), + [anon_sym_not_DASHhas2] = ACTIONS(1504), + [anon_sym_starts_DASHwith2] = ACTIONS(1504), + [anon_sym_ends_DASHwith2] = ACTIONS(1504), + [anon_sym_EQ_EQ2] = ACTIONS(1504), + [anon_sym_BANG_EQ2] = ACTIONS(1504), + [anon_sym_LT2] = ACTIONS(1504), + [anon_sym_LT_EQ2] = ACTIONS(1504), + [anon_sym_GT_EQ2] = ACTIONS(1504), + [anon_sym_EQ_TILDE2] = ACTIONS(1504), + [anon_sym_BANG_TILDE2] = ACTIONS(1504), + [anon_sym_STAR_STAR2] = ACTIONS(1504), + [anon_sym_PLUS_PLUS2] = ACTIONS(1504), + [anon_sym_SLASH2] = ACTIONS(1504), + [anon_sym_mod2] = ACTIONS(1504), + [anon_sym_SLASH_SLASH2] = ACTIONS(1504), + [anon_sym_PLUS2] = ACTIONS(1504), + [anon_sym_bit_DASHshl2] = ACTIONS(1504), + [anon_sym_bit_DASHshr2] = ACTIONS(1504), + [anon_sym_bit_DASHand2] = ACTIONS(1504), + [anon_sym_bit_DASHxor2] = ACTIONS(1504), + [anon_sym_bit_DASHor2] = ACTIONS(1504), + [anon_sym_DOT_DOT2] = ACTIONS(1504), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1506), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1506), + [aux_sym__immediate_decimal_token1] = ACTIONS(3416), + [aux_sym__immediate_decimal_token2] = ACTIONS(3418), + [sym_filesize_unit] = ACTIONS(1504), + [sym_duration_unit] = ACTIONS(1506), + [anon_sym_POUND] = ACTIONS(3), }, [1095] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(3410), - [sym_expr_parenthesized] = STATE(1902), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1910), - [sym__unquoted_with_expr] = STATE(2098), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(3800), + [sym_expr_parenthesized] = STATE(1702), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1713), + [sym__unquoted_with_expr] = STATE(2030), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1095), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1096] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(3411), - [sym_expr_parenthesized] = STATE(1902), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1911), - [sym__unquoted_with_expr] = STATE(2102), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(3801), + [sym_expr_parenthesized] = STATE(1702), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1717), + [sym__unquoted_with_expr] = STATE(2036), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1096), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1097] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(3412), - [sym_expr_parenthesized] = STATE(1902), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1912), - [sym__unquoted_with_expr] = STATE(2108), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(3802), + [sym_expr_parenthesized] = STATE(1702), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1723), + [sym__unquoted_with_expr] = STATE(2040), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1097), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1098] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(3413), - [sym_expr_parenthesized] = STATE(1902), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1914), - [sym__unquoted_with_expr] = STATE(2115), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(3804), + [sym_expr_parenthesized] = STATE(1702), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1725), + [sym__unquoted_with_expr] = STATE(2046), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1098), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1099] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(3414), - [sym_expr_parenthesized] = STATE(1902), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1919), - [sym__unquoted_with_expr] = STATE(2155), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(3805), + [sym_expr_parenthesized] = STATE(1702), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1726), + [sym__unquoted_with_expr] = STATE(2055), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1099), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1100] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(3415), - [sym_expr_parenthesized] = STATE(1902), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1922), - [sym__unquoted_with_expr] = STATE(2128), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(3806), + [sym_expr_parenthesized] = STATE(1702), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1666), + [sym__unquoted_with_expr] = STATE(2073), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1100), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1101] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(2130), - [sym_expr_parenthesized] = STATE(1902), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1928), - [sym__unquoted_with_expr] = STATE(2137), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(3807), + [sym_expr_parenthesized] = STATE(1702), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1667), + [sym__unquoted_with_expr] = STATE(2080), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1101), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1102] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(3416), - [sym_expr_parenthesized] = STATE(1902), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1945), - [sym__unquoted_with_expr] = STATE(2139), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(2082), + [sym_expr_parenthesized] = STATE(1702), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1678), + [sym__unquoted_with_expr] = STATE(2103), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1102), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1103] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(3417), - [sym_expr_parenthesized] = STATE(1902), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1818), - [sym__unquoted_with_expr] = STATE(2107), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(3808), + [sym_expr_parenthesized] = STATE(1702), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1679), + [sym__unquoted_with_expr] = STATE(2104), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1103), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1104] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(3418), - [sym_expr_parenthesized] = STATE(1902), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1819), - [sym__unquoted_with_expr] = STATE(2110), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(3416), + [sym_expr_parenthesized] = STATE(1702), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1704), + [sym__unquoted_with_expr] = STATE(2022), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1104), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1105] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(3419), - [sym_expr_parenthesized] = STATE(1902), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3300), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3033), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1820), - [sym__unquoted_with_expr] = STATE(2104), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(3417), + [sym_expr_parenthesized] = STATE(1702), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1713), + [sym__unquoted_with_expr] = STATE(2030), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1105), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym__val_number_decimal_token1] = ACTIONS(3342), - [aux_sym__val_number_decimal_token2] = ACTIONS(3344), - [aux_sym__val_number_decimal_token3] = ACTIONS(3346), - [aux_sym__val_number_decimal_token4] = ACTIONS(3348), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3350), - [aux_sym__val_number_token5] = ACTIONS(3350), - [aux_sym__val_number_token6] = ACTIONS(3350), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1106] = { - [sym_expr_unary] = STATE(2504), - [sym__expr_unary_minus] = STATE(2458), - [sym_expr_binary] = STATE(2504), - [sym__expr_binary_expression] = STATE(2513), - [sym_expr_parenthesized] = STATE(2150), - [sym_val_range] = STATE(2504), - [sym__val_range] = STATE(7714), - [sym__val_range_with_end] = STATE(7377), - [sym__value] = STATE(2504), - [sym_val_nothing] = STATE(2516), - [sym_val_bool] = STATE(2171), - [sym_val_variable] = STATE(2101), - [sym_val_number] = STATE(2516), - [sym__val_number_decimal] = STATE(1587), - [sym__val_number] = STATE(2512), - [sym_val_duration] = STATE(2516), - [sym_val_filesize] = STATE(2516), - [sym_val_binary] = STATE(2516), - [sym_val_string] = STATE(2516), - [sym__raw_str] = STATE(1732), - [sym__str_double_quotes] = STATE(1732), - [sym_val_interpolated] = STATE(2516), - [sym__inter_single_quotes] = STATE(2527), - [sym__inter_double_quotes] = STATE(2528), - [sym_val_list] = STATE(2516), - [sym_val_record] = STATE(2516), - [sym_val_table] = STATE(2516), - [sym_val_closure] = STATE(2516), - [sym_unquoted] = STATE(2271), - [sym__unquoted_with_expr] = STATE(2517), - [sym__unquoted_anonymous_prefix] = STATE(6993), + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(3418), + [sym_expr_parenthesized] = STATE(1702), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1717), + [sym__unquoted_with_expr] = STATE(2036), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1106), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1044), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3378), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3380), - [anon_sym_DOT_DOT_LT] = ACTIONS(3380), - [anon_sym_null] = ACTIONS(3382), - [anon_sym_true] = ACTIONS(3384), - [anon_sym_false] = ACTIONS(3384), - [aux_sym__val_number_decimal_token1] = ACTIONS(3386), - [aux_sym__val_number_decimal_token2] = ACTIONS(3388), - [aux_sym__val_number_decimal_token3] = ACTIONS(3390), - [aux_sym__val_number_decimal_token4] = ACTIONS(3392), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3394), - [aux_sym__val_number_token5] = ACTIONS(3394), - [aux_sym__val_number_token6] = ACTIONS(3394), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3396), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3376), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1107] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(3833), - [sym_expr_parenthesized] = STATE(3658), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3780), - [sym_val_variable] = STATE(3656), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3589), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1905), - [sym__unquoted_with_expr] = STATE(2084), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(3419), + [sym_expr_parenthesized] = STATE(1702), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1723), + [sym__unquoted_with_expr] = STATE(2040), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1107), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3422), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3424), - [anon_sym_DOT_DOT_LT] = ACTIONS(3424), - [anon_sym_null] = ACTIONS(3426), - [anon_sym_true] = ACTIONS(3428), - [anon_sym_false] = ACTIONS(3428), - [aux_sym__val_number_decimal_token1] = ACTIONS(3430), - [aux_sym__val_number_decimal_token2] = ACTIONS(3432), - [aux_sym__val_number_decimal_token3] = ACTIONS(3434), - [aux_sym__val_number_decimal_token4] = ACTIONS(3436), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3438), - [aux_sym__val_number_token5] = ACTIONS(3438), - [aux_sym__val_number_token6] = ACTIONS(3438), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3440), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1108] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(3834), - [sym_expr_parenthesized] = STATE(3658), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3780), - [sym_val_variable] = STATE(3656), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3589), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1908), - [sym__unquoted_with_expr] = STATE(2095), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(3420), + [sym_expr_parenthesized] = STATE(1702), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1725), + [sym__unquoted_with_expr] = STATE(2046), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1108), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3422), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3424), - [anon_sym_DOT_DOT_LT] = ACTIONS(3424), - [anon_sym_null] = ACTIONS(3426), - [anon_sym_true] = ACTIONS(3428), - [anon_sym_false] = ACTIONS(3428), - [aux_sym__val_number_decimal_token1] = ACTIONS(3430), - [aux_sym__val_number_decimal_token2] = ACTIONS(3432), - [aux_sym__val_number_decimal_token3] = ACTIONS(3434), - [aux_sym__val_number_decimal_token4] = ACTIONS(3436), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3438), - [aux_sym__val_number_token5] = ACTIONS(3438), - [aux_sym__val_number_token6] = ACTIONS(3438), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3440), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1109] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(3835), - [sym_expr_parenthesized] = STATE(3658), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3780), - [sym_val_variable] = STATE(3656), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3589), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1910), - [sym__unquoted_with_expr] = STATE(2098), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(3421), + [sym_expr_parenthesized] = STATE(1702), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1726), + [sym__unquoted_with_expr] = STATE(2055), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1109), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3422), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3424), - [anon_sym_DOT_DOT_LT] = ACTIONS(3424), - [anon_sym_null] = ACTIONS(3426), - [anon_sym_true] = ACTIONS(3428), - [anon_sym_false] = ACTIONS(3428), - [aux_sym__val_number_decimal_token1] = ACTIONS(3430), - [aux_sym__val_number_decimal_token2] = ACTIONS(3432), - [aux_sym__val_number_decimal_token3] = ACTIONS(3434), - [aux_sym__val_number_decimal_token4] = ACTIONS(3436), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3438), - [aux_sym__val_number_token5] = ACTIONS(3438), - [aux_sym__val_number_token6] = ACTIONS(3438), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3440), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1110] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(3658), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3780), - [sym_val_variable] = STATE(3656), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3589), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1911), - [sym__unquoted_with_expr] = STATE(2102), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(3422), + [sym_expr_parenthesized] = STATE(1702), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1666), + [sym__unquoted_with_expr] = STATE(2073), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1110), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3422), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3424), - [anon_sym_DOT_DOT_LT] = ACTIONS(3424), - [anon_sym_null] = ACTIONS(3426), - [anon_sym_true] = ACTIONS(3428), - [anon_sym_false] = ACTIONS(3428), - [aux_sym__val_number_decimal_token1] = ACTIONS(3430), - [aux_sym__val_number_decimal_token2] = ACTIONS(3432), - [aux_sym__val_number_decimal_token3] = ACTIONS(3434), - [aux_sym__val_number_decimal_token4] = ACTIONS(3436), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3438), - [aux_sym__val_number_token5] = ACTIONS(3438), - [aux_sym__val_number_token6] = ACTIONS(3438), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3440), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1111] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(3837), - [sym_expr_parenthesized] = STATE(3658), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3780), - [sym_val_variable] = STATE(3656), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3589), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1912), - [sym__unquoted_with_expr] = STATE(2108), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(3423), + [sym_expr_parenthesized] = STATE(1702), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1667), + [sym__unquoted_with_expr] = STATE(2080), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1111), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3422), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3424), - [anon_sym_DOT_DOT_LT] = ACTIONS(3424), - [anon_sym_null] = ACTIONS(3426), - [anon_sym_true] = ACTIONS(3428), - [anon_sym_false] = ACTIONS(3428), - [aux_sym__val_number_decimal_token1] = ACTIONS(3430), - [aux_sym__val_number_decimal_token2] = ACTIONS(3432), - [aux_sym__val_number_decimal_token3] = ACTIONS(3434), - [aux_sym__val_number_decimal_token4] = ACTIONS(3436), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3438), - [aux_sym__val_number_token5] = ACTIONS(3438), - [aux_sym__val_number_token6] = ACTIONS(3438), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3440), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1112] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(3838), - [sym_expr_parenthesized] = STATE(3658), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3780), - [sym_val_variable] = STATE(3656), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3589), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1914), - [sym__unquoted_with_expr] = STATE(2115), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(2082), + [sym_expr_parenthesized] = STATE(1702), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1678), + [sym__unquoted_with_expr] = STATE(2103), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1112), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3422), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3424), - [anon_sym_DOT_DOT_LT] = ACTIONS(3424), - [anon_sym_null] = ACTIONS(3426), - [anon_sym_true] = ACTIONS(3428), - [anon_sym_false] = ACTIONS(3428), - [aux_sym__val_number_decimal_token1] = ACTIONS(3430), - [aux_sym__val_number_decimal_token2] = ACTIONS(3432), - [aux_sym__val_number_decimal_token3] = ACTIONS(3434), - [aux_sym__val_number_decimal_token4] = ACTIONS(3436), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3438), - [aux_sym__val_number_token5] = ACTIONS(3438), - [aux_sym__val_number_token6] = ACTIONS(3438), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3440), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1113] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(3839), - [sym_expr_parenthesized] = STATE(3658), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3780), - [sym_val_variable] = STATE(3656), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3589), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1919), - [sym__unquoted_with_expr] = STATE(2155), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(3424), + [sym_expr_parenthesized] = STATE(1702), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1679), + [sym__unquoted_with_expr] = STATE(2104), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1113), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3422), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3424), - [anon_sym_DOT_DOT_LT] = ACTIONS(3424), - [anon_sym_null] = ACTIONS(3426), - [anon_sym_true] = ACTIONS(3428), - [anon_sym_false] = ACTIONS(3428), - [aux_sym__val_number_decimal_token1] = ACTIONS(3430), - [aux_sym__val_number_decimal_token2] = ACTIONS(3432), - [aux_sym__val_number_decimal_token3] = ACTIONS(3434), - [aux_sym__val_number_decimal_token4] = ACTIONS(3436), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3438), - [aux_sym__val_number_token5] = ACTIONS(3438), - [aux_sym__val_number_token6] = ACTIONS(3438), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3440), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1114] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(3840), - [sym_expr_parenthesized] = STATE(3658), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3780), - [sym_val_variable] = STATE(3656), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3589), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1922), - [sym__unquoted_with_expr] = STATE(2128), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(3425), + [sym_expr_parenthesized] = STATE(1702), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1680), + [sym__unquoted_with_expr] = STATE(2107), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1114), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3422), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3424), - [anon_sym_DOT_DOT_LT] = ACTIONS(3424), - [anon_sym_null] = ACTIONS(3426), - [anon_sym_true] = ACTIONS(3428), - [anon_sym_false] = ACTIONS(3428), - [aux_sym__val_number_decimal_token1] = ACTIONS(3430), - [aux_sym__val_number_decimal_token2] = ACTIONS(3432), - [aux_sym__val_number_decimal_token3] = ACTIONS(3434), - [aux_sym__val_number_decimal_token4] = ACTIONS(3436), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3438), - [aux_sym__val_number_token5] = ACTIONS(3438), - [aux_sym__val_number_token6] = ACTIONS(3438), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3440), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1115] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(2130), - [sym_expr_parenthesized] = STATE(3658), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3780), - [sym_val_variable] = STATE(3656), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3589), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1928), - [sym__unquoted_with_expr] = STATE(2137), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(3426), + [sym_expr_parenthesized] = STATE(1702), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1682), + [sym__unquoted_with_expr] = STATE(2110), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1115), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3422), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3424), - [anon_sym_DOT_DOT_LT] = ACTIONS(3424), - [anon_sym_null] = ACTIONS(3426), - [anon_sym_true] = ACTIONS(3428), - [anon_sym_false] = ACTIONS(3428), - [aux_sym__val_number_decimal_token1] = ACTIONS(3430), - [aux_sym__val_number_decimal_token2] = ACTIONS(3432), - [aux_sym__val_number_decimal_token3] = ACTIONS(3434), - [aux_sym__val_number_decimal_token4] = ACTIONS(3436), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3438), - [aux_sym__val_number_token5] = ACTIONS(3438), - [aux_sym__val_number_token6] = ACTIONS(3438), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3440), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1116] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(3841), - [sym_expr_parenthesized] = STATE(3658), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3780), - [sym_val_variable] = STATE(3656), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3589), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1945), - [sym__unquoted_with_expr] = STATE(2139), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(3427), + [sym_expr_parenthesized] = STATE(1702), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3283), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2842), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1688), + [sym__unquoted_with_expr] = STATE(2112), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1116), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3422), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3424), - [anon_sym_DOT_DOT_LT] = ACTIONS(3424), - [anon_sym_null] = ACTIONS(3426), - [anon_sym_true] = ACTIONS(3428), - [anon_sym_false] = ACTIONS(3428), - [aux_sym__val_number_decimal_token1] = ACTIONS(3430), - [aux_sym__val_number_decimal_token2] = ACTIONS(3432), - [aux_sym__val_number_decimal_token3] = ACTIONS(3434), - [aux_sym__val_number_decimal_token4] = ACTIONS(3436), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3438), - [aux_sym__val_number_token5] = ACTIONS(3438), - [aux_sym__val_number_token6] = ACTIONS(3438), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3440), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_LT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [aux_sym__val_number_decimal_token1] = ACTIONS(3328), + [aux_sym__val_number_decimal_token2] = ACTIONS(3330), + [aux_sym__val_number_decimal_token3] = ACTIONS(3332), + [aux_sym__val_number_decimal_token4] = ACTIONS(3334), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3336), + [aux_sym__val_number_token5] = ACTIONS(3336), + [aux_sym__val_number_token6] = ACTIONS(3336), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3338), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1117] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(3829), - [sym_expr_parenthesized] = STATE(3658), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3780), - [sym_val_variable] = STATE(3656), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3589), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1818), + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(3809), + [sym_expr_parenthesized] = STATE(1702), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1680), [sym__unquoted_with_expr] = STATE(2107), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1117), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3422), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3424), - [anon_sym_DOT_DOT_LT] = ACTIONS(3424), - [anon_sym_null] = ACTIONS(3426), - [anon_sym_true] = ACTIONS(3428), - [anon_sym_false] = ACTIONS(3428), - [aux_sym__val_number_decimal_token1] = ACTIONS(3430), - [aux_sym__val_number_decimal_token2] = ACTIONS(3432), - [aux_sym__val_number_decimal_token3] = ACTIONS(3434), - [aux_sym__val_number_decimal_token4] = ACTIONS(3436), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3438), - [aux_sym__val_number_token5] = ACTIONS(3438), - [aux_sym__val_number_token6] = ACTIONS(3438), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3440), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1118] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(3842), - [sym_expr_parenthesized] = STATE(3658), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3780), - [sym_val_variable] = STATE(3656), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3589), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1819), - [sym__unquoted_with_expr] = STATE(2110), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_ctrl_do] = STATE(4954), + [sym_ctrl_if] = STATE(4954), + [sym_ctrl_match] = STATE(4954), + [sym_ctrl_try] = STATE(4954), + [sym__expression] = STATE(4954), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3838), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2975), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), [sym_comment] = STATE(1118), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3422), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3424), - [anon_sym_DOT_DOT_LT] = ACTIONS(3424), - [anon_sym_null] = ACTIONS(3426), - [anon_sym_true] = ACTIONS(3428), - [anon_sym_false] = ACTIONS(3428), - [aux_sym__val_number_decimal_token1] = ACTIONS(3430), - [aux_sym__val_number_decimal_token2] = ACTIONS(3432), - [aux_sym__val_number_decimal_token3] = ACTIONS(3434), - [aux_sym__val_number_decimal_token4] = ACTIONS(3436), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3438), - [aux_sym__val_number_token5] = ACTIONS(3438), - [aux_sym__val_number_token6] = ACTIONS(3438), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3440), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [sym__newline] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3420), + [anon_sym_PIPE] = ACTIONS(3420), + [anon_sym_err_GT_PIPE] = ACTIONS(3420), + [anon_sym_out_GT_PIPE] = ACTIONS(3420), + [anon_sym_e_GT_PIPE] = ACTIONS(3420), + [anon_sym_o_GT_PIPE] = ACTIONS(3420), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3420), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3420), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3420), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3420), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_do] = ACTIONS(3422), + [anon_sym_if] = ACTIONS(3424), + [anon_sym_match] = ACTIONS(3426), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(3428), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(3430), + [anon_sym_true] = ACTIONS(3432), + [anon_sym_false] = ACTIONS(3432), + [aux_sym__val_number_decimal_token1] = ACTIONS(3434), + [aux_sym__val_number_decimal_token2] = ACTIONS(3436), + [aux_sym__val_number_decimal_token3] = ACTIONS(3438), + [aux_sym__val_number_decimal_token4] = ACTIONS(3440), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(223), + [aux_sym__val_number_token5] = ACTIONS(223), + [aux_sym__val_number_token6] = ACTIONS(223), + [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_COLON2] = ACTIONS(3442), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1119] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(3843), - [sym_expr_parenthesized] = STATE(3658), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3780), - [sym_val_variable] = STATE(3656), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3589), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1820), - [sym__unquoted_with_expr] = STATE(2104), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(3814), + [sym_expr_parenthesized] = STATE(3650), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3736), + [sym_val_variable] = STATE(3629), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3549), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1704), + [sym__unquoted_with_expr] = STATE(2022), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1119), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3422), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3424), - [anon_sym_DOT_DOT_LT] = ACTIONS(3424), - [anon_sym_null] = ACTIONS(3426), - [anon_sym_true] = ACTIONS(3428), - [anon_sym_false] = ACTIONS(3428), - [aux_sym__val_number_decimal_token1] = ACTIONS(3430), - [aux_sym__val_number_decimal_token2] = ACTIONS(3432), - [aux_sym__val_number_decimal_token3] = ACTIONS(3434), - [aux_sym__val_number_decimal_token4] = ACTIONS(3436), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3438), - [aux_sym__val_number_token5] = ACTIONS(3438), - [aux_sym__val_number_token6] = ACTIONS(3438), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3440), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3342), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3344), + [anon_sym_DOT_DOT_LT] = ACTIONS(3344), + [anon_sym_null] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3348), + [anon_sym_false] = ACTIONS(3348), + [aux_sym__val_number_decimal_token1] = ACTIONS(3350), + [aux_sym__val_number_decimal_token2] = ACTIONS(3352), + [aux_sym__val_number_decimal_token3] = ACTIONS(3354), + [aux_sym__val_number_decimal_token4] = ACTIONS(3356), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3358), + [aux_sym__val_number_token5] = ACTIONS(3358), + [aux_sym__val_number_token6] = ACTIONS(3358), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3360), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1120] = { - [sym_expr_unary] = STATE(2504), - [sym__expr_unary_minus] = STATE(2458), - [sym_expr_binary] = STATE(2504), - [sym__expr_binary_expression] = STATE(2518), - [sym_expr_parenthesized] = STATE(2150), - [sym_val_range] = STATE(2504), - [sym__val_range] = STATE(7714), - [sym__val_range_with_end] = STATE(7377), - [sym__value] = STATE(2504), - [sym_val_nothing] = STATE(2516), - [sym_val_bool] = STATE(2171), - [sym_val_variable] = STATE(2101), - [sym_val_number] = STATE(2516), - [sym__val_number_decimal] = STATE(1587), - [sym__val_number] = STATE(2512), - [sym_val_duration] = STATE(2516), - [sym_val_filesize] = STATE(2516), - [sym_val_binary] = STATE(2516), - [sym_val_string] = STATE(2516), - [sym__raw_str] = STATE(1732), - [sym__str_double_quotes] = STATE(1732), - [sym_val_interpolated] = STATE(2516), - [sym__inter_single_quotes] = STATE(2527), - [sym__inter_double_quotes] = STATE(2528), - [sym_val_list] = STATE(2516), - [sym_val_record] = STATE(2516), - [sym_val_table] = STATE(2516), - [sym_val_closure] = STATE(2516), - [sym_unquoted] = STATE(2281), - [sym__unquoted_with_expr] = STATE(2525), - [sym__unquoted_anonymous_prefix] = STATE(6993), + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(3815), + [sym_expr_parenthesized] = STATE(3650), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3736), + [sym_val_variable] = STATE(3629), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3549), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1713), + [sym__unquoted_with_expr] = STATE(2030), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1120), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1044), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3378), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3380), - [anon_sym_DOT_DOT_LT] = ACTIONS(3380), - [anon_sym_null] = ACTIONS(3382), - [anon_sym_true] = ACTIONS(3384), - [anon_sym_false] = ACTIONS(3384), - [aux_sym__val_number_decimal_token1] = ACTIONS(3386), - [aux_sym__val_number_decimal_token2] = ACTIONS(3388), - [aux_sym__val_number_decimal_token3] = ACTIONS(3390), - [aux_sym__val_number_decimal_token4] = ACTIONS(3392), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3394), - [aux_sym__val_number_token5] = ACTIONS(3394), - [aux_sym__val_number_token6] = ACTIONS(3394), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3396), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3376), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3342), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3344), + [anon_sym_DOT_DOT_LT] = ACTIONS(3344), + [anon_sym_null] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3348), + [anon_sym_false] = ACTIONS(3348), + [aux_sym__val_number_decimal_token1] = ACTIONS(3350), + [aux_sym__val_number_decimal_token2] = ACTIONS(3352), + [aux_sym__val_number_decimal_token3] = ACTIONS(3354), + [aux_sym__val_number_decimal_token4] = ACTIONS(3356), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3358), + [aux_sym__val_number_token5] = ACTIONS(3358), + [aux_sym__val_number_token6] = ACTIONS(3358), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3360), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1121] = { - [sym_expr_unary] = STATE(2504), - [sym__expr_unary_minus] = STATE(2458), - [sym_expr_binary] = STATE(2504), - [sym__expr_binary_expression] = STATE(2526), - [sym_expr_parenthesized] = STATE(2150), - [sym_val_range] = STATE(2504), - [sym__val_range] = STATE(7714), - [sym__val_range_with_end] = STATE(7377), - [sym__value] = STATE(2504), - [sym_val_nothing] = STATE(2516), - [sym_val_bool] = STATE(2171), - [sym_val_variable] = STATE(2101), - [sym_val_number] = STATE(2516), - [sym__val_number_decimal] = STATE(1587), - [sym__val_number] = STATE(2512), - [sym_val_duration] = STATE(2516), - [sym_val_filesize] = STATE(2516), - [sym_val_binary] = STATE(2516), - [sym_val_string] = STATE(2516), - [sym__raw_str] = STATE(1732), - [sym__str_double_quotes] = STATE(1732), - [sym_val_interpolated] = STATE(2516), - [sym__inter_single_quotes] = STATE(2527), - [sym__inter_double_quotes] = STATE(2528), - [sym_val_list] = STATE(2516), - [sym_val_record] = STATE(2516), - [sym_val_table] = STATE(2516), - [sym_val_closure] = STATE(2516), - [sym_unquoted] = STATE(2301), - [sym__unquoted_with_expr] = STATE(2529), - [sym__unquoted_anonymous_prefix] = STATE(6993), + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(3810), + [sym_expr_parenthesized] = STATE(1702), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1682), + [sym__unquoted_with_expr] = STATE(2110), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1121), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1044), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3378), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3380), - [anon_sym_DOT_DOT_LT] = ACTIONS(3380), - [anon_sym_null] = ACTIONS(3382), - [anon_sym_true] = ACTIONS(3384), - [anon_sym_false] = ACTIONS(3384), - [aux_sym__val_number_decimal_token1] = ACTIONS(3386), - [aux_sym__val_number_decimal_token2] = ACTIONS(3388), - [aux_sym__val_number_decimal_token3] = ACTIONS(3390), - [aux_sym__val_number_decimal_token4] = ACTIONS(3392), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3394), - [aux_sym__val_number_token5] = ACTIONS(3394), - [aux_sym__val_number_token6] = ACTIONS(3394), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3396), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3376), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1122] = { - [sym_expr_unary] = STATE(2504), - [sym__expr_unary_minus] = STATE(2458), - [sym_expr_binary] = STATE(2504), - [sym__expr_binary_expression] = STATE(2543), - [sym_expr_parenthesized] = STATE(2150), - [sym_val_range] = STATE(2504), - [sym__val_range] = STATE(7714), - [sym__val_range_with_end] = STATE(7377), - [sym__value] = STATE(2504), - [sym_val_nothing] = STATE(2516), - [sym_val_bool] = STATE(2171), - [sym_val_variable] = STATE(2101), - [sym_val_number] = STATE(2516), - [sym__val_number_decimal] = STATE(1587), - [sym__val_number] = STATE(2512), - [sym_val_duration] = STATE(2516), - [sym_val_filesize] = STATE(2516), - [sym_val_binary] = STATE(2516), - [sym_val_string] = STATE(2516), - [sym__raw_str] = STATE(1732), - [sym__str_double_quotes] = STATE(1732), - [sym_val_interpolated] = STATE(2516), - [sym__inter_single_quotes] = STATE(2527), - [sym__inter_double_quotes] = STATE(2528), - [sym_val_list] = STATE(2516), - [sym_val_record] = STATE(2516), - [sym_val_table] = STATE(2516), - [sym_val_closure] = STATE(2516), - [sym_unquoted] = STATE(2168), - [sym__unquoted_with_expr] = STATE(2545), - [sym__unquoted_anonymous_prefix] = STATE(6993), + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(3817), + [sym_expr_parenthesized] = STATE(3650), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3736), + [sym_val_variable] = STATE(3629), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3549), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1723), + [sym__unquoted_with_expr] = STATE(2040), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1122), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1044), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3378), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3380), - [anon_sym_DOT_DOT_LT] = ACTIONS(3380), - [anon_sym_null] = ACTIONS(3382), - [anon_sym_true] = ACTIONS(3384), - [anon_sym_false] = ACTIONS(3384), - [aux_sym__val_number_decimal_token1] = ACTIONS(3386), - [aux_sym__val_number_decimal_token2] = ACTIONS(3388), - [aux_sym__val_number_decimal_token3] = ACTIONS(3390), - [aux_sym__val_number_decimal_token4] = ACTIONS(3392), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3394), - [aux_sym__val_number_token5] = ACTIONS(3394), - [aux_sym__val_number_token6] = ACTIONS(3394), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3396), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3376), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3342), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3344), + [anon_sym_DOT_DOT_LT] = ACTIONS(3344), + [anon_sym_null] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3348), + [anon_sym_false] = ACTIONS(3348), + [aux_sym__val_number_decimal_token1] = ACTIONS(3350), + [aux_sym__val_number_decimal_token2] = ACTIONS(3352), + [aux_sym__val_number_decimal_token3] = ACTIONS(3354), + [aux_sym__val_number_decimal_token4] = ACTIONS(3356), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3358), + [aux_sym__val_number_token5] = ACTIONS(3358), + [aux_sym__val_number_token6] = ACTIONS(3358), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3360), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1123] = { - [sym_expr_unary] = STATE(2504), - [sym__expr_unary_minus] = STATE(2458), - [sym_expr_binary] = STATE(2504), - [sym__expr_binary_expression] = STATE(2546), - [sym_expr_parenthesized] = STATE(2150), - [sym_val_range] = STATE(2504), - [sym__val_range] = STATE(7714), - [sym__val_range_with_end] = STATE(7377), - [sym__value] = STATE(2504), - [sym_val_nothing] = STATE(2516), - [sym_val_bool] = STATE(2171), - [sym_val_variable] = STATE(2101), - [sym_val_number] = STATE(2516), - [sym__val_number_decimal] = STATE(1587), - [sym__val_number] = STATE(2512), - [sym_val_duration] = STATE(2516), - [sym_val_filesize] = STATE(2516), - [sym_val_binary] = STATE(2516), - [sym_val_string] = STATE(2516), - [sym__raw_str] = STATE(1732), - [sym__str_double_quotes] = STATE(1732), - [sym_val_interpolated] = STATE(2516), - [sym__inter_single_quotes] = STATE(2527), - [sym__inter_double_quotes] = STATE(2528), - [sym_val_list] = STATE(2516), - [sym_val_record] = STATE(2516), - [sym_val_table] = STATE(2516), - [sym_val_closure] = STATE(2516), - [sym_unquoted] = STATE(2172), - [sym__unquoted_with_expr] = STATE(2548), - [sym__unquoted_anonymous_prefix] = STATE(6993), + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(3818), + [sym_expr_parenthesized] = STATE(3650), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3736), + [sym_val_variable] = STATE(3629), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3549), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1725), + [sym__unquoted_with_expr] = STATE(2046), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1123), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1044), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3378), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3380), - [anon_sym_DOT_DOT_LT] = ACTIONS(3380), - [anon_sym_null] = ACTIONS(3382), - [anon_sym_true] = ACTIONS(3384), - [anon_sym_false] = ACTIONS(3384), - [aux_sym__val_number_decimal_token1] = ACTIONS(3386), - [aux_sym__val_number_decimal_token2] = ACTIONS(3388), - [aux_sym__val_number_decimal_token3] = ACTIONS(3390), - [aux_sym__val_number_decimal_token4] = ACTIONS(3392), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3394), - [aux_sym__val_number_token5] = ACTIONS(3394), - [aux_sym__val_number_token6] = ACTIONS(3394), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3396), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3376), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3342), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3344), + [anon_sym_DOT_DOT_LT] = ACTIONS(3344), + [anon_sym_null] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3348), + [anon_sym_false] = ACTIONS(3348), + [aux_sym__val_number_decimal_token1] = ACTIONS(3350), + [aux_sym__val_number_decimal_token2] = ACTIONS(3352), + [aux_sym__val_number_decimal_token3] = ACTIONS(3354), + [aux_sym__val_number_decimal_token4] = ACTIONS(3356), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3358), + [aux_sym__val_number_token5] = ACTIONS(3358), + [aux_sym__val_number_token6] = ACTIONS(3358), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3360), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1124] = { - [sym_expr_unary] = STATE(2504), - [sym__expr_unary_minus] = STATE(2458), - [sym_expr_binary] = STATE(2504), - [sym__expr_binary_expression] = STATE(2550), - [sym_expr_parenthesized] = STATE(2150), - [sym_val_range] = STATE(2504), - [sym__val_range] = STATE(7714), - [sym__val_range_with_end] = STATE(7377), - [sym__value] = STATE(2504), - [sym_val_nothing] = STATE(2516), - [sym_val_bool] = STATE(2171), - [sym_val_variable] = STATE(2101), - [sym_val_number] = STATE(2516), - [sym__val_number_decimal] = STATE(1587), - [sym__val_number] = STATE(2512), - [sym_val_duration] = STATE(2516), - [sym_val_filesize] = STATE(2516), - [sym_val_binary] = STATE(2516), - [sym_val_string] = STATE(2516), - [sym__raw_str] = STATE(1732), - [sym__str_double_quotes] = STATE(1732), - [sym_val_interpolated] = STATE(2516), - [sym__inter_single_quotes] = STATE(2527), - [sym__inter_double_quotes] = STATE(2528), - [sym_val_list] = STATE(2516), - [sym_val_record] = STATE(2516), - [sym_val_table] = STATE(2516), - [sym_val_closure] = STATE(2516), - [sym_unquoted] = STATE(2180), - [sym__unquoted_with_expr] = STATE(2454), - [sym__unquoted_anonymous_prefix] = STATE(6993), + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(3819), + [sym_expr_parenthesized] = STATE(3650), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3736), + [sym_val_variable] = STATE(3629), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3549), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1726), + [sym__unquoted_with_expr] = STATE(2055), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1124), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1044), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3378), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3380), - [anon_sym_DOT_DOT_LT] = ACTIONS(3380), - [anon_sym_null] = ACTIONS(3382), - [anon_sym_true] = ACTIONS(3384), - [anon_sym_false] = ACTIONS(3384), - [aux_sym__val_number_decimal_token1] = ACTIONS(3386), - [aux_sym__val_number_decimal_token2] = ACTIONS(3388), - [aux_sym__val_number_decimal_token3] = ACTIONS(3390), - [aux_sym__val_number_decimal_token4] = ACTIONS(3392), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3394), - [aux_sym__val_number_token5] = ACTIONS(3394), - [aux_sym__val_number_token6] = ACTIONS(3394), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3396), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3376), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3342), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3344), + [anon_sym_DOT_DOT_LT] = ACTIONS(3344), + [anon_sym_null] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3348), + [anon_sym_false] = ACTIONS(3348), + [aux_sym__val_number_decimal_token1] = ACTIONS(3350), + [aux_sym__val_number_decimal_token2] = ACTIONS(3352), + [aux_sym__val_number_decimal_token3] = ACTIONS(3354), + [aux_sym__val_number_decimal_token4] = ACTIONS(3356), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3358), + [aux_sym__val_number_token5] = ACTIONS(3358), + [aux_sym__val_number_token6] = ACTIONS(3358), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3360), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1125] = { - [sym_ctrl_do] = STATE(4793), - [sym_ctrl_if] = STATE(4793), - [sym_ctrl_match] = STATE(4793), - [sym_ctrl_try] = STATE(4793), - [sym__expression] = STATE(4793), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3876), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3154), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(3820), + [sym_expr_parenthesized] = STATE(3650), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3736), + [sym_val_variable] = STATE(3629), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3549), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1666), + [sym__unquoted_with_expr] = STATE(2073), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1125), - [sym__newline] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3398), - [anon_sym_PIPE] = ACTIONS(3398), - [anon_sym_err_GT_PIPE] = ACTIONS(3398), - [anon_sym_out_GT_PIPE] = ACTIONS(3398), - [anon_sym_e_GT_PIPE] = ACTIONS(3398), - [anon_sym_o_GT_PIPE] = ACTIONS(3398), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3398), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3398), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3398), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3398), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_do] = ACTIONS(3400), - [anon_sym_if] = ACTIONS(3402), - [anon_sym_match] = ACTIONS(3404), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(3398), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(3406), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(3408), - [anon_sym_true] = ACTIONS(3410), - [anon_sym_false] = ACTIONS(3410), - [aux_sym__val_number_decimal_token1] = ACTIONS(3412), - [aux_sym__val_number_decimal_token2] = ACTIONS(3414), - [aux_sym__val_number_decimal_token3] = ACTIONS(3416), - [aux_sym__val_number_decimal_token4] = ACTIONS(3418), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_COLON2] = ACTIONS(3442), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3342), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3344), + [anon_sym_DOT_DOT_LT] = ACTIONS(3344), + [anon_sym_null] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3348), + [anon_sym_false] = ACTIONS(3348), + [aux_sym__val_number_decimal_token1] = ACTIONS(3350), + [aux_sym__val_number_decimal_token2] = ACTIONS(3352), + [aux_sym__val_number_decimal_token3] = ACTIONS(3354), + [aux_sym__val_number_decimal_token4] = ACTIONS(3356), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3358), + [aux_sym__val_number_token5] = ACTIONS(3358), + [aux_sym__val_number_token6] = ACTIONS(3358), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3360), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1126] = { - [sym_expr_unary] = STATE(2504), - [sym__expr_unary_minus] = STATE(2458), - [sym_expr_binary] = STATE(2504), - [sym__expr_binary_expression] = STATE(2457), - [sym_expr_parenthesized] = STATE(2150), - [sym_val_range] = STATE(2504), - [sym__val_range] = STATE(7714), - [sym__val_range_with_end] = STATE(7377), - [sym__value] = STATE(2504), - [sym_val_nothing] = STATE(2516), - [sym_val_bool] = STATE(2171), - [sym_val_variable] = STATE(2101), - [sym_val_number] = STATE(2516), - [sym__val_number_decimal] = STATE(1587), - [sym__val_number] = STATE(2512), - [sym_val_duration] = STATE(2516), - [sym_val_filesize] = STATE(2516), - [sym_val_binary] = STATE(2516), - [sym_val_string] = STATE(2516), - [sym__raw_str] = STATE(1732), - [sym__str_double_quotes] = STATE(1732), - [sym_val_interpolated] = STATE(2516), - [sym__inter_single_quotes] = STATE(2527), - [sym__inter_double_quotes] = STATE(2528), - [sym_val_list] = STATE(2516), - [sym_val_record] = STATE(2516), - [sym_val_table] = STATE(2516), - [sym_val_closure] = STATE(2516), - [sym_unquoted] = STATE(2182), - [sym__unquoted_with_expr] = STATE(2462), - [sym__unquoted_anonymous_prefix] = STATE(6993), + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(3821), + [sym_expr_parenthesized] = STATE(3650), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3736), + [sym_val_variable] = STATE(3629), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3549), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1667), + [sym__unquoted_with_expr] = STATE(2080), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1126), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1044), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3378), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3380), - [anon_sym_DOT_DOT_LT] = ACTIONS(3380), - [anon_sym_null] = ACTIONS(3382), - [anon_sym_true] = ACTIONS(3384), - [anon_sym_false] = ACTIONS(3384), - [aux_sym__val_number_decimal_token1] = ACTIONS(3386), - [aux_sym__val_number_decimal_token2] = ACTIONS(3388), - [aux_sym__val_number_decimal_token3] = ACTIONS(3390), - [aux_sym__val_number_decimal_token4] = ACTIONS(3392), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3394), - [aux_sym__val_number_token5] = ACTIONS(3394), - [aux_sym__val_number_token6] = ACTIONS(3394), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3396), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3376), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3342), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3344), + [anon_sym_DOT_DOT_LT] = ACTIONS(3344), + [anon_sym_null] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3348), + [anon_sym_false] = ACTIONS(3348), + [aux_sym__val_number_decimal_token1] = ACTIONS(3350), + [aux_sym__val_number_decimal_token2] = ACTIONS(3352), + [aux_sym__val_number_decimal_token3] = ACTIONS(3354), + [aux_sym__val_number_decimal_token4] = ACTIONS(3356), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3358), + [aux_sym__val_number_token5] = ACTIONS(3358), + [aux_sym__val_number_token6] = ACTIONS(3358), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3360), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1127] = { - [sym_expr_unary] = STATE(2504), - [sym__expr_unary_minus] = STATE(2458), - [sym_expr_binary] = STATE(2504), - [sym__expr_binary_expression] = STATE(2463), - [sym_expr_parenthesized] = STATE(2150), - [sym_val_range] = STATE(2504), - [sym__val_range] = STATE(7714), - [sym__val_range_with_end] = STATE(7377), - [sym__value] = STATE(2504), - [sym_val_nothing] = STATE(2516), - [sym_val_bool] = STATE(2171), - [sym_val_variable] = STATE(2101), - [sym_val_number] = STATE(2516), - [sym__val_number_decimal] = STATE(1587), - [sym__val_number] = STATE(2512), - [sym_val_duration] = STATE(2516), - [sym_val_filesize] = STATE(2516), - [sym_val_binary] = STATE(2516), - [sym_val_string] = STATE(2516), - [sym__raw_str] = STATE(1732), - [sym__str_double_quotes] = STATE(1732), - [sym_val_interpolated] = STATE(2516), - [sym__inter_single_quotes] = STATE(2527), - [sym__inter_double_quotes] = STATE(2528), - [sym_val_list] = STATE(2516), - [sym_val_record] = STATE(2516), - [sym_val_table] = STATE(2516), - [sym_val_closure] = STATE(2516), - [sym_unquoted] = STATE(2183), - [sym__unquoted_with_expr] = STATE(2466), - [sym__unquoted_anonymous_prefix] = STATE(6993), + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(2082), + [sym_expr_parenthesized] = STATE(3650), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3736), + [sym_val_variable] = STATE(3629), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3549), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1678), + [sym__unquoted_with_expr] = STATE(2103), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1127), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1044), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3378), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3380), - [anon_sym_DOT_DOT_LT] = ACTIONS(3380), - [anon_sym_null] = ACTIONS(3382), - [anon_sym_true] = ACTIONS(3384), - [anon_sym_false] = ACTIONS(3384), - [aux_sym__val_number_decimal_token1] = ACTIONS(3386), - [aux_sym__val_number_decimal_token2] = ACTIONS(3388), - [aux_sym__val_number_decimal_token3] = ACTIONS(3390), - [aux_sym__val_number_decimal_token4] = ACTIONS(3392), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3394), - [aux_sym__val_number_token5] = ACTIONS(3394), - [aux_sym__val_number_token6] = ACTIONS(3394), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3396), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3376), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3342), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3344), + [anon_sym_DOT_DOT_LT] = ACTIONS(3344), + [anon_sym_null] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3348), + [anon_sym_false] = ACTIONS(3348), + [aux_sym__val_number_decimal_token1] = ACTIONS(3350), + [aux_sym__val_number_decimal_token2] = ACTIONS(3352), + [aux_sym__val_number_decimal_token3] = ACTIONS(3354), + [aux_sym__val_number_decimal_token4] = ACTIONS(3356), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3358), + [aux_sym__val_number_token5] = ACTIONS(3358), + [aux_sym__val_number_token6] = ACTIONS(3358), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3360), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1128] = { - [sym_expr_unary] = STATE(2504), - [sym__expr_unary_minus] = STATE(2458), - [sym_expr_binary] = STATE(2504), - [sym__expr_binary_expression] = STATE(2472), - [sym_expr_parenthesized] = STATE(2150), - [sym_val_range] = STATE(2504), - [sym__val_range] = STATE(7714), - [sym__val_range_with_end] = STATE(7377), - [sym__value] = STATE(2504), - [sym_val_nothing] = STATE(2516), - [sym_val_bool] = STATE(2171), - [sym_val_variable] = STATE(2101), - [sym_val_number] = STATE(2516), - [sym__val_number_decimal] = STATE(1587), - [sym__val_number] = STATE(2512), - [sym_val_duration] = STATE(2516), - [sym_val_filesize] = STATE(2516), - [sym_val_binary] = STATE(2516), - [sym_val_string] = STATE(2516), - [sym__raw_str] = STATE(1732), - [sym__str_double_quotes] = STATE(1732), - [sym_val_interpolated] = STATE(2516), - [sym__inter_single_quotes] = STATE(2527), - [sym__inter_double_quotes] = STATE(2528), - [sym_val_list] = STATE(2516), - [sym_val_record] = STATE(2516), - [sym_val_table] = STATE(2516), - [sym_val_closure] = STATE(2516), - [sym_unquoted] = STATE(2230), - [sym__unquoted_with_expr] = STATE(2473), - [sym__unquoted_anonymous_prefix] = STATE(6993), + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(3822), + [sym_expr_parenthesized] = STATE(3650), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3736), + [sym_val_variable] = STATE(3629), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3549), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1679), + [sym__unquoted_with_expr] = STATE(2104), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1128), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1044), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3378), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3380), - [anon_sym_DOT_DOT_LT] = ACTIONS(3380), - [anon_sym_null] = ACTIONS(3382), - [anon_sym_true] = ACTIONS(3384), - [anon_sym_false] = ACTIONS(3384), - [aux_sym__val_number_decimal_token1] = ACTIONS(3386), - [aux_sym__val_number_decimal_token2] = ACTIONS(3388), - [aux_sym__val_number_decimal_token3] = ACTIONS(3390), - [aux_sym__val_number_decimal_token4] = ACTIONS(3392), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3394), - [aux_sym__val_number_token5] = ACTIONS(3394), - [aux_sym__val_number_token6] = ACTIONS(3394), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3396), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3376), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3342), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3344), + [anon_sym_DOT_DOT_LT] = ACTIONS(3344), + [anon_sym_null] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3348), + [anon_sym_false] = ACTIONS(3348), + [aux_sym__val_number_decimal_token1] = ACTIONS(3350), + [aux_sym__val_number_decimal_token2] = ACTIONS(3352), + [aux_sym__val_number_decimal_token3] = ACTIONS(3354), + [aux_sym__val_number_decimal_token4] = ACTIONS(3356), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3358), + [aux_sym__val_number_token5] = ACTIONS(3358), + [aux_sym__val_number_token6] = ACTIONS(3358), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3360), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1129] = { - [sym_expr_unary] = STATE(2142), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2142), - [sym__expr_binary_expression] = STATE(3851), - [sym_expr_parenthesized] = STATE(1902), - [sym_val_range] = STATE(2142), - [sym__val_range] = STATE(7638), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(2142), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(3646), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3576), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(1912), - [sym__unquoted_with_expr] = STATE(2108), - [sym__unquoted_anonymous_prefix] = STATE(7111), + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(3823), + [sym_expr_parenthesized] = STATE(3650), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3736), + [sym_val_variable] = STATE(3629), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3549), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1680), + [sym__unquoted_with_expr] = STATE(2107), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1129), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_LT] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym__val_number_decimal_token1] = ACTIONS(3322), - [aux_sym__val_number_decimal_token2] = ACTIONS(3324), - [aux_sym__val_number_decimal_token3] = ACTIONS(3326), - [aux_sym__val_number_decimal_token4] = ACTIONS(3328), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3330), - [aux_sym__val_number_token5] = ACTIONS(3330), - [aux_sym__val_number_token6] = ACTIONS(3330), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3228), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3342), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3344), + [anon_sym_DOT_DOT_LT] = ACTIONS(3344), + [anon_sym_null] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3348), + [anon_sym_false] = ACTIONS(3348), + [aux_sym__val_number_decimal_token1] = ACTIONS(3350), + [aux_sym__val_number_decimal_token2] = ACTIONS(3352), + [aux_sym__val_number_decimal_token3] = ACTIONS(3354), + [aux_sym__val_number_decimal_token4] = ACTIONS(3356), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3358), + [aux_sym__val_number_token5] = ACTIONS(3358), + [aux_sym__val_number_token6] = ACTIONS(3358), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3360), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1130] = { - [sym_ctrl_do] = STATE(4793), - [sym_ctrl_if] = STATE(4793), - [sym_ctrl_match] = STATE(4793), - [sym_ctrl_try] = STATE(4793), - [sym__expression] = STATE(4793), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3876), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3154), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(3824), + [sym_expr_parenthesized] = STATE(3650), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3736), + [sym_val_variable] = STATE(3629), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3549), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1682), + [sym__unquoted_with_expr] = STATE(2110), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1130), - [sym__newline] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3398), - [anon_sym_PIPE] = ACTIONS(3398), - [anon_sym_err_GT_PIPE] = ACTIONS(3398), - [anon_sym_out_GT_PIPE] = ACTIONS(3398), - [anon_sym_e_GT_PIPE] = ACTIONS(3398), - [anon_sym_o_GT_PIPE] = ACTIONS(3398), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3398), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3398), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3398), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3398), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_do] = ACTIONS(3400), - [anon_sym_if] = ACTIONS(3402), - [anon_sym_match] = ACTIONS(3404), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(3398), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(3406), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(3408), - [anon_sym_true] = ACTIONS(3410), - [anon_sym_false] = ACTIONS(3410), - [aux_sym__val_number_decimal_token1] = ACTIONS(3412), - [aux_sym__val_number_decimal_token2] = ACTIONS(3414), - [aux_sym__val_number_decimal_token3] = ACTIONS(3416), - [aux_sym__val_number_decimal_token4] = ACTIONS(3418), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3342), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3344), + [anon_sym_DOT_DOT_LT] = ACTIONS(3344), + [anon_sym_null] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3348), + [anon_sym_false] = ACTIONS(3348), + [aux_sym__val_number_decimal_token1] = ACTIONS(3350), + [aux_sym__val_number_decimal_token2] = ACTIONS(3352), + [aux_sym__val_number_decimal_token3] = ACTIONS(3354), + [aux_sym__val_number_decimal_token4] = ACTIONS(3356), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3358), + [aux_sym__val_number_token5] = ACTIONS(3358), + [aux_sym__val_number_token6] = ACTIONS(3358), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3360), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1131] = { - [sym_ctrl_do] = STATE(5084), - [sym_ctrl_if] = STATE(5084), - [sym_ctrl_match] = STATE(5084), - [sym_ctrl_try] = STATE(5084), - [sym__expression] = STATE(5084), - [sym_expr_unary] = STATE(2492), - [sym__expr_unary_minus] = STATE(2458), - [sym_expr_binary] = STATE(2492), - [sym__expr_binary_expression] = STATE(3882), - [sym_expr_parenthesized] = STATE(2094), - [sym_val_range] = STATE(2492), - [sym__value] = STATE(2492), - [sym_val_nothing] = STATE(2516), - [sym_val_bool] = STATE(2516), - [sym_val_variable] = STATE(2101), - [sym_val_number] = STATE(2516), - [sym__val_number_decimal] = STATE(3242), - [sym__val_number] = STATE(2512), - [sym_val_duration] = STATE(2516), - [sym_val_filesize] = STATE(2516), - [sym_val_binary] = STATE(2516), - [sym_val_string] = STATE(2516), - [sym__raw_str] = STATE(1732), - [sym__str_double_quotes] = STATE(1732), - [sym_val_interpolated] = STATE(2516), - [sym__inter_single_quotes] = STATE(2527), - [sym__inter_double_quotes] = STATE(2528), - [sym_val_list] = STATE(2516), - [sym_val_record] = STATE(2516), - [sym_val_table] = STATE(2516), - [sym_val_closure] = STATE(2516), + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(3825), + [sym_expr_parenthesized] = STATE(3650), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3736), + [sym_val_variable] = STATE(3629), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3549), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1688), + [sym__unquoted_with_expr] = STATE(2112), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1131), - [ts_builtin_sym_end] = ACTIONS(3398), - [sym__newline] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3398), - [anon_sym_PIPE] = ACTIONS(3398), - [anon_sym_err_GT_PIPE] = ACTIONS(3398), - [anon_sym_out_GT_PIPE] = ACTIONS(3398), - [anon_sym_e_GT_PIPE] = ACTIONS(3398), - [anon_sym_o_GT_PIPE] = ACTIONS(3398), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3398), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3398), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3398), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3398), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1044), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_do] = ACTIONS(3444), - [anon_sym_if] = ACTIONS(3446), - [anon_sym_match] = ACTIONS(3448), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(65), - [anon_sym_try] = ACTIONS(3450), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(85), - [anon_sym_DOT_DOT_LT] = ACTIONS(85), - [anon_sym_null] = ACTIONS(3452), - [anon_sym_true] = ACTIONS(3454), - [anon_sym_false] = ACTIONS(3454), - [aux_sym__val_number_decimal_token1] = ACTIONS(3386), - [aux_sym__val_number_decimal_token2] = ACTIONS(3388), - [aux_sym__val_number_decimal_token3] = ACTIONS(3390), - [aux_sym__val_number_decimal_token4] = ACTIONS(3392), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(99), - [aux_sym__val_number_token5] = ACTIONS(99), - [aux_sym__val_number_token6] = ACTIONS(99), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3342), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3344), + [anon_sym_DOT_DOT_LT] = ACTIONS(3344), + [anon_sym_null] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3348), + [anon_sym_false] = ACTIONS(3348), + [aux_sym__val_number_decimal_token1] = ACTIONS(3350), + [aux_sym__val_number_decimal_token2] = ACTIONS(3352), + [aux_sym__val_number_decimal_token3] = ACTIONS(3354), + [aux_sym__val_number_decimal_token4] = ACTIONS(3356), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3358), + [aux_sym__val_number_token5] = ACTIONS(3358), + [aux_sym__val_number_token6] = ACTIONS(3358), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3360), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1132] = { - [sym_ctrl_do] = STATE(4793), - [sym_ctrl_if] = STATE(4793), - [sym_ctrl_match] = STATE(4793), - [sym_ctrl_try] = STATE(4793), - [sym__expression] = STATE(4793), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3876), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3154), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), + [sym_ctrl_do] = STATE(4954), + [sym_ctrl_if] = STATE(4954), + [sym_ctrl_match] = STATE(4954), + [sym_ctrl_try] = STATE(4954), + [sym__expression] = STATE(4954), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3838), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2975), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), [sym_comment] = STATE(1132), - [sym__newline] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3398), - [anon_sym_PIPE] = ACTIONS(3398), - [anon_sym_err_GT_PIPE] = ACTIONS(3398), - [anon_sym_out_GT_PIPE] = ACTIONS(3398), - [anon_sym_e_GT_PIPE] = ACTIONS(3398), - [anon_sym_o_GT_PIPE] = ACTIONS(3398), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3398), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3398), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3398), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3398), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(3398), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_do] = ACTIONS(3400), - [anon_sym_if] = ACTIONS(3456), - [anon_sym_match] = ACTIONS(3404), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(3406), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(3408), - [anon_sym_true] = ACTIONS(3410), - [anon_sym_false] = ACTIONS(3410), - [aux_sym__val_number_decimal_token1] = ACTIONS(3412), - [aux_sym__val_number_decimal_token2] = ACTIONS(3414), - [aux_sym__val_number_decimal_token3] = ACTIONS(3416), - [aux_sym__val_number_decimal_token4] = ACTIONS(3418), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [sym__newline] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3420), + [anon_sym_PIPE] = ACTIONS(3420), + [anon_sym_err_GT_PIPE] = ACTIONS(3420), + [anon_sym_out_GT_PIPE] = ACTIONS(3420), + [anon_sym_e_GT_PIPE] = ACTIONS(3420), + [anon_sym_o_GT_PIPE] = ACTIONS(3420), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3420), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3420), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3420), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3420), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_do] = ACTIONS(3422), + [anon_sym_if] = ACTIONS(3424), + [anon_sym_match] = ACTIONS(3426), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(3428), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(3430), + [anon_sym_true] = ACTIONS(3432), + [anon_sym_false] = ACTIONS(3432), + [aux_sym__val_number_decimal_token1] = ACTIONS(3434), + [aux_sym__val_number_decimal_token2] = ACTIONS(3436), + [aux_sym__val_number_decimal_token3] = ACTIONS(3438), + [aux_sym__val_number_decimal_token4] = ACTIONS(3440), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(223), + [aux_sym__val_number_token5] = ACTIONS(223), + [aux_sym__val_number_token6] = ACTIONS(223), + [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_COLON2] = ACTIONS(3444), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1133] = { - [sym_ctrl_do] = STATE(4793), - [sym_ctrl_if] = STATE(4793), - [sym_ctrl_match] = STATE(4793), - [sym_ctrl_try] = STATE(4793), - [sym__expression] = STATE(4793), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3876), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3154), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), [sym_comment] = STATE(1133), - [sym__newline] = ACTIONS(3398), - [anon_sym_SEMI] = ACTIONS(3398), - [anon_sym_PIPE] = ACTIONS(3398), - [anon_sym_err_GT_PIPE] = ACTIONS(3398), - [anon_sym_out_GT_PIPE] = ACTIONS(3398), - [anon_sym_e_GT_PIPE] = ACTIONS(3398), - [anon_sym_o_GT_PIPE] = ACTIONS(3398), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3398), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3398), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3398), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3398), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_do] = ACTIONS(3400), - [anon_sym_if] = ACTIONS(3458), - [anon_sym_match] = ACTIONS(3404), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(3406), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(3408), - [anon_sym_true] = ACTIONS(3410), - [anon_sym_false] = ACTIONS(3410), - [aux_sym__val_number_decimal_token1] = ACTIONS(3412), - [aux_sym__val_number_decimal_token2] = ACTIONS(3414), - [aux_sym__val_number_decimal_token3] = ACTIONS(3416), - [aux_sym__val_number_decimal_token4] = ACTIONS(3418), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [ts_builtin_sym_end] = ACTIONS(1506), + [anon_sym_STAR_STAR] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_STAR] = ACTIONS(1504), + [anon_sym_SLASH] = ACTIONS(1504), + [anon_sym_mod] = ACTIONS(1506), + [anon_sym_SLASH_SLASH] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_bit_DASHshl] = ACTIONS(1506), + [anon_sym_bit_DASHshr] = ACTIONS(1506), + [anon_sym_EQ_TILDE] = ACTIONS(1506), + [anon_sym_BANG_TILDE] = ACTIONS(1506), + [anon_sym_bit_DASHand] = ACTIONS(1506), + [anon_sym_bit_DASHxor] = ACTIONS(1506), + [anon_sym_bit_DASHor] = ACTIONS(1506), + [anon_sym_and] = ACTIONS(1506), + [anon_sym_xor] = ACTIONS(1506), + [anon_sym_or] = ACTIONS(1506), + [anon_sym_in] = ACTIONS(1506), + [anon_sym_not_DASHin] = ACTIONS(1506), + [anon_sym_has] = ACTIONS(1506), + [anon_sym_not_DASHhas] = 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_LT] = ACTIONS(1504), + [anon_sym_LT_EQ] = ACTIONS(1506), + [anon_sym_GT] = ACTIONS(1504), + [anon_sym_GT_EQ] = ACTIONS(1506), + [aux_sym_cmd_identifier_token41] = ACTIONS(1504), + [sym__newline] = ACTIONS(1504), + [anon_sym_SEMI] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_err_GT_PIPE] = ACTIONS(1504), + [anon_sym_out_GT_PIPE] = ACTIONS(1504), + [anon_sym_e_GT_PIPE] = ACTIONS(1504), + [anon_sym_o_GT_PIPE] = ACTIONS(1504), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1504), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1504), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1504), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1504), + [anon_sym_GT2] = ACTIONS(1504), + [anon_sym_DASH2] = ACTIONS(1504), + [anon_sym_in2] = ACTIONS(1504), + [anon_sym_STAR2] = ACTIONS(1504), + [anon_sym_and2] = ACTIONS(1504), + [anon_sym_xor2] = ACTIONS(1504), + [anon_sym_or2] = ACTIONS(1504), + [anon_sym_not_DASHin2] = ACTIONS(1504), + [anon_sym_has2] = ACTIONS(1504), + [anon_sym_not_DASHhas2] = ACTIONS(1504), + [anon_sym_starts_DASHwith2] = ACTIONS(1504), + [anon_sym_ends_DASHwith2] = ACTIONS(1504), + [anon_sym_EQ_EQ2] = ACTIONS(1504), + [anon_sym_BANG_EQ2] = ACTIONS(1504), + [anon_sym_LT2] = ACTIONS(1504), + [anon_sym_LT_EQ2] = ACTIONS(1504), + [anon_sym_GT_EQ2] = ACTIONS(1504), + [anon_sym_EQ_TILDE2] = ACTIONS(1504), + [anon_sym_BANG_TILDE2] = ACTIONS(1504), + [anon_sym_STAR_STAR2] = ACTIONS(1504), + [anon_sym_PLUS_PLUS2] = ACTIONS(1504), + [anon_sym_SLASH2] = ACTIONS(1504), + [anon_sym_mod2] = ACTIONS(1504), + [anon_sym_SLASH_SLASH2] = ACTIONS(1504), + [anon_sym_PLUS2] = ACTIONS(1504), + [anon_sym_bit_DASHshl2] = ACTIONS(1504), + [anon_sym_bit_DASHshr2] = ACTIONS(1504), + [anon_sym_bit_DASHand2] = ACTIONS(1504), + [anon_sym_bit_DASHxor2] = ACTIONS(1504), + [anon_sym_bit_DASHor2] = ACTIONS(1504), + [anon_sym_DOT_DOT2] = ACTIONS(1504), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1506), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1506), + [aux_sym__immediate_decimal_token1] = ACTIONS(3446), + [aux_sym__immediate_decimal_token2] = ACTIONS(3448), + [sym_filesize_unit] = ACTIONS(1504), + [sym_duration_unit] = ACTIONS(1506), + [anon_sym_POUND] = ACTIONS(3), }, [1134] = { - [sym_expr_unary] = STATE(4255), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_parenthesized] = STATE(4081), - [sym_val_range] = STATE(4255), - [sym__val_range] = STATE(7519), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(4255), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(4088), - [sym_val_variable] = STATE(4075), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3911), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(3668), - [sym__str_double_quotes] = STATE(3668), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(4113), - [sym__unquoted_with_expr] = STATE(4458), - [sym__unquoted_anonymous_prefix] = STATE(6767), [sym_comment] = STATE(1134), - [anon_sym_LBRACK] = ACTIONS(3460), - [anon_sym_LPAREN] = ACTIONS(3462), - [anon_sym_DOLLAR] = ACTIONS(3464), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(3466), - [anon_sym_DOT_DOT] = ACTIONS(3468), - [aux_sym_expr_unary_token1] = ACTIONS(3470), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3472), - [anon_sym_DOT_DOT_LT] = ACTIONS(3472), - [anon_sym_null] = ACTIONS(3474), - [anon_sym_true] = ACTIONS(3476), - [anon_sym_false] = ACTIONS(3476), - [aux_sym__val_number_decimal_token1] = ACTIONS(3478), - [aux_sym__val_number_decimal_token2] = ACTIONS(3480), - [aux_sym__val_number_decimal_token3] = ACTIONS(3482), - [aux_sym__val_number_decimal_token4] = ACTIONS(3484), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3486), - [aux_sym__val_number_token5] = ACTIONS(3486), - [aux_sym__val_number_token6] = ACTIONS(3486), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3488), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym__str_single_quotes] = ACTIONS(1288), - [sym__str_back_ticks] = ACTIONS(1288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3490), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1290), + [ts_builtin_sym_end] = ACTIONS(1514), + [anon_sym_STAR_STAR] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_SLASH] = ACTIONS(1512), + [anon_sym_mod] = ACTIONS(1514), + [anon_sym_SLASH_SLASH] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_bit_DASHshl] = ACTIONS(1514), + [anon_sym_bit_DASHshr] = ACTIONS(1514), + [anon_sym_EQ_TILDE] = ACTIONS(1514), + [anon_sym_BANG_TILDE] = ACTIONS(1514), + [anon_sym_bit_DASHand] = ACTIONS(1514), + [anon_sym_bit_DASHxor] = ACTIONS(1514), + [anon_sym_bit_DASHor] = ACTIONS(1514), + [anon_sym_and] = ACTIONS(1514), + [anon_sym_xor] = ACTIONS(1514), + [anon_sym_or] = ACTIONS(1514), + [anon_sym_in] = ACTIONS(1514), + [anon_sym_not_DASHin] = ACTIONS(1514), + [anon_sym_has] = ACTIONS(1514), + [anon_sym_not_DASHhas] = ACTIONS(1514), + [anon_sym_starts_DASHwith] = ACTIONS(1514), + [anon_sym_ends_DASHwith] = ACTIONS(1514), + [anon_sym_EQ_EQ] = ACTIONS(1514), + [anon_sym_BANG_EQ] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_LT_EQ] = ACTIONS(1514), + [anon_sym_GT] = ACTIONS(1512), + [anon_sym_GT_EQ] = ACTIONS(1514), + [aux_sym_cmd_identifier_token41] = ACTIONS(1512), + [sym__newline] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_err_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_GT_PIPE] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1512), + [anon_sym_GT2] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_in2] = ACTIONS(1512), + [anon_sym_STAR2] = ACTIONS(1512), + [anon_sym_and2] = ACTIONS(1512), + [anon_sym_xor2] = ACTIONS(1512), + [anon_sym_or2] = ACTIONS(1512), + [anon_sym_not_DASHin2] = ACTIONS(1512), + [anon_sym_has2] = ACTIONS(1512), + [anon_sym_not_DASHhas2] = ACTIONS(1512), + [anon_sym_starts_DASHwith2] = ACTIONS(1512), + [anon_sym_ends_DASHwith2] = ACTIONS(1512), + [anon_sym_EQ_EQ2] = ACTIONS(1512), + [anon_sym_BANG_EQ2] = ACTIONS(1512), + [anon_sym_LT2] = ACTIONS(1512), + [anon_sym_LT_EQ2] = ACTIONS(1512), + [anon_sym_GT_EQ2] = ACTIONS(1512), + [anon_sym_EQ_TILDE2] = ACTIONS(1512), + [anon_sym_BANG_TILDE2] = ACTIONS(1512), + [anon_sym_STAR_STAR2] = ACTIONS(1512), + [anon_sym_PLUS_PLUS2] = ACTIONS(1512), + [anon_sym_SLASH2] = ACTIONS(1512), + [anon_sym_mod2] = ACTIONS(1512), + [anon_sym_SLASH_SLASH2] = ACTIONS(1512), + [anon_sym_PLUS2] = ACTIONS(1512), + [anon_sym_bit_DASHshl2] = ACTIONS(1512), + [anon_sym_bit_DASHshr2] = ACTIONS(1512), + [anon_sym_bit_DASHand2] = ACTIONS(1512), + [anon_sym_bit_DASHxor2] = ACTIONS(1512), + [anon_sym_bit_DASHor2] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT] = ACTIONS(3450), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [aux_sym__immediate_decimal_token2] = ACTIONS(3452), + [sym_filesize_unit] = ACTIONS(1512), + [sym_duration_unit] = ACTIONS(1514), + [anon_sym_POUND] = ACTIONS(3), }, [1135] = { + [sym_expr_unary] = STATE(2014), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2014), + [sym__expr_binary_expression] = STATE(3799), + [sym_expr_parenthesized] = STATE(1702), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(7610), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(3643), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3525), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(1704), + [sym__unquoted_with_expr] = STATE(2022), + [sym__unquoted_anonymous_prefix] = STATE(7121), [sym_comment] = STATE(1135), - [aux_sym_ctrl_do_parenthesized_repeat2] = STATE(1137), - [aux_sym_cmd_identifier_token1] = ACTIONS(3492), - [aux_sym_cmd_identifier_token2] = ACTIONS(3492), - [aux_sym_cmd_identifier_token3] = ACTIONS(3492), - [aux_sym_cmd_identifier_token4] = ACTIONS(3492), - [aux_sym_cmd_identifier_token5] = ACTIONS(3492), - [aux_sym_cmd_identifier_token6] = ACTIONS(3492), - [aux_sym_cmd_identifier_token7] = ACTIONS(3492), - [aux_sym_cmd_identifier_token8] = ACTIONS(3492), - [aux_sym_cmd_identifier_token9] = ACTIONS(3492), - [aux_sym_cmd_identifier_token10] = ACTIONS(3492), - [aux_sym_cmd_identifier_token11] = ACTIONS(3492), - [aux_sym_cmd_identifier_token12] = ACTIONS(3492), - [aux_sym_cmd_identifier_token13] = ACTIONS(3492), - [aux_sym_cmd_identifier_token14] = ACTIONS(3492), - [aux_sym_cmd_identifier_token15] = ACTIONS(3492), - [aux_sym_cmd_identifier_token16] = ACTIONS(3492), - [aux_sym_cmd_identifier_token17] = ACTIONS(3492), - [aux_sym_cmd_identifier_token18] = ACTIONS(3492), - [aux_sym_cmd_identifier_token19] = ACTIONS(3492), - [aux_sym_cmd_identifier_token20] = ACTIONS(3492), - [aux_sym_cmd_identifier_token21] = ACTIONS(3492), - [aux_sym_cmd_identifier_token22] = ACTIONS(3492), - [aux_sym_cmd_identifier_token23] = ACTIONS(3492), - [aux_sym_cmd_identifier_token24] = ACTIONS(3492), - [aux_sym_cmd_identifier_token25] = ACTIONS(3492), - [aux_sym_cmd_identifier_token26] = ACTIONS(3492), - [aux_sym_cmd_identifier_token27] = ACTIONS(3492), - [aux_sym_cmd_identifier_token28] = ACTIONS(3492), - [aux_sym_cmd_identifier_token29] = ACTIONS(3492), - [aux_sym_cmd_identifier_token30] = ACTIONS(3492), - [aux_sym_cmd_identifier_token31] = ACTIONS(3492), - [aux_sym_cmd_identifier_token32] = ACTIONS(3492), - [aux_sym_cmd_identifier_token33] = ACTIONS(3492), - [aux_sym_cmd_identifier_token34] = ACTIONS(3492), - [aux_sym_cmd_identifier_token35] = ACTIONS(3492), - [aux_sym_cmd_identifier_token36] = ACTIONS(3492), - [aux_sym_cmd_identifier_token37] = ACTIONS(3492), - [aux_sym_cmd_identifier_token38] = ACTIONS(3492), - [aux_sym_cmd_identifier_token39] = ACTIONS(3492), - [aux_sym_cmd_identifier_token40] = ACTIONS(3492), - [sym__newline] = ACTIONS(3494), - [sym__space] = ACTIONS(3496), - [anon_sym_LBRACK] = ACTIONS(3492), - [anon_sym_LPAREN] = ACTIONS(3492), - [anon_sym_DOLLAR] = ACTIONS(3492), - [anon_sym_DASH2] = ACTIONS(3492), - [anon_sym_LBRACE] = ACTIONS(3492), - [anon_sym_DOT_DOT] = ACTIONS(3492), - [aux_sym_expr_unary_token1] = ACTIONS(3492), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3492), - [anon_sym_DOT_DOT_LT] = ACTIONS(3492), - [anon_sym_null] = ACTIONS(3492), - [anon_sym_true] = ACTIONS(3492), - [anon_sym_false] = ACTIONS(3492), - [aux_sym__val_number_decimal_token1] = ACTIONS(3492), - [aux_sym__val_number_decimal_token2] = ACTIONS(3492), - [aux_sym__val_number_decimal_token3] = ACTIONS(3492), - [aux_sym__val_number_decimal_token4] = ACTIONS(3492), - [aux_sym__val_number_token1] = ACTIONS(3492), - [aux_sym__val_number_token2] = ACTIONS(3492), - [aux_sym__val_number_token3] = ACTIONS(3492), - [aux_sym__val_number_token4] = ACTIONS(3492), - [aux_sym__val_number_token5] = ACTIONS(3492), - [aux_sym__val_number_token6] = ACTIONS(3492), - [anon_sym_0b] = ACTIONS(3492), - [anon_sym_0o] = ACTIONS(3492), - [anon_sym_0x] = ACTIONS(3492), - [sym_val_date] = ACTIONS(3492), - [anon_sym_DQUOTE] = ACTIONS(3492), - [sym__str_single_quotes] = ACTIONS(3492), - [sym__str_back_ticks] = ACTIONS(3492), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3492), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3492), - [aux_sym_env_var_token1] = ACTIONS(3492), - [anon_sym_CARET] = ACTIONS(3492), - [aux_sym_command_token1] = ACTIONS(3492), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3498), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3196), + [anon_sym_DOT_DOT_LT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3204), + [aux_sym__val_number_decimal_token3] = ACTIONS(3206), + [aux_sym__val_number_decimal_token4] = ACTIONS(3208), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3210), + [aux_sym__val_number_token5] = ACTIONS(3210), + [aux_sym__val_number_token6] = ACTIONS(3210), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3212), + [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(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1136] = { - [sym_expr_unary] = STATE(4319), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_parenthesized] = STATE(4079), - [sym_val_range] = STATE(4319), - [sym__val_range] = STATE(7519), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(4319), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(4088), - [sym_val_variable] = STATE(4075), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3911), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(3668), - [sym__str_double_quotes] = STATE(3668), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(4148), - [sym__unquoted_with_expr] = STATE(4433), - [sym__unquoted_anonymous_prefix] = STATE(6767), + [sym_ctrl_do] = STATE(4954), + [sym_ctrl_if] = STATE(4954), + [sym_ctrl_match] = STATE(4954), + [sym_ctrl_try] = STATE(4954), + [sym__expression] = STATE(4954), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3838), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2975), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), [sym_comment] = STATE(1136), - [anon_sym_LBRACK] = ACTIONS(3460), - [anon_sym_LPAREN] = ACTIONS(3462), - [anon_sym_DOLLAR] = ACTIONS(3464), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(3466), - [anon_sym_DOT_DOT] = ACTIONS(3468), - [aux_sym_expr_unary_token1] = ACTIONS(3470), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3472), - [anon_sym_DOT_DOT_LT] = ACTIONS(3472), - [anon_sym_null] = ACTIONS(3474), - [anon_sym_true] = ACTIONS(3476), - [anon_sym_false] = ACTIONS(3476), - [aux_sym__val_number_decimal_token1] = ACTIONS(3478), - [aux_sym__val_number_decimal_token2] = ACTIONS(3480), - [aux_sym__val_number_decimal_token3] = ACTIONS(3482), - [aux_sym__val_number_decimal_token4] = ACTIONS(3484), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3486), - [aux_sym__val_number_token5] = ACTIONS(3486), - [aux_sym__val_number_token6] = ACTIONS(3486), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3488), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym__str_single_quotes] = ACTIONS(1288), - [sym__str_back_ticks] = ACTIONS(1288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3490), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1290), + [sym__newline] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3420), + [anon_sym_PIPE] = ACTIONS(3420), + [anon_sym_err_GT_PIPE] = ACTIONS(3420), + [anon_sym_out_GT_PIPE] = ACTIONS(3420), + [anon_sym_e_GT_PIPE] = ACTIONS(3420), + [anon_sym_o_GT_PIPE] = ACTIONS(3420), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3420), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3420), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3420), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3420), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_do] = ACTIONS(3422), + [anon_sym_if] = ACTIONS(3424), + [anon_sym_match] = ACTIONS(3426), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(3420), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(3428), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(3430), + [anon_sym_true] = ACTIONS(3432), + [anon_sym_false] = ACTIONS(3432), + [aux_sym__val_number_decimal_token1] = ACTIONS(3434), + [aux_sym__val_number_decimal_token2] = ACTIONS(3436), + [aux_sym__val_number_decimal_token3] = ACTIONS(3438), + [aux_sym__val_number_decimal_token4] = ACTIONS(3440), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(223), + [aux_sym__val_number_token5] = ACTIONS(223), + [aux_sym__val_number_token6] = ACTIONS(223), + [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_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1137] = { [sym_comment] = STATE(1137), - [aux_sym_ctrl_do_parenthesized_repeat2] = STATE(1137), - [aux_sym_cmd_identifier_token1] = ACTIONS(3500), - [aux_sym_cmd_identifier_token2] = ACTIONS(3500), - [aux_sym_cmd_identifier_token3] = ACTIONS(3500), - [aux_sym_cmd_identifier_token4] = ACTIONS(3500), - [aux_sym_cmd_identifier_token5] = ACTIONS(3500), - [aux_sym_cmd_identifier_token6] = ACTIONS(3500), - [aux_sym_cmd_identifier_token7] = ACTIONS(3500), - [aux_sym_cmd_identifier_token8] = ACTIONS(3500), - [aux_sym_cmd_identifier_token9] = ACTIONS(3500), - [aux_sym_cmd_identifier_token10] = ACTIONS(3500), - [aux_sym_cmd_identifier_token11] = ACTIONS(3500), - [aux_sym_cmd_identifier_token12] = ACTIONS(3500), - [aux_sym_cmd_identifier_token13] = ACTIONS(3500), - [aux_sym_cmd_identifier_token14] = ACTIONS(3500), - [aux_sym_cmd_identifier_token15] = ACTIONS(3500), - [aux_sym_cmd_identifier_token16] = ACTIONS(3500), - [aux_sym_cmd_identifier_token17] = ACTIONS(3500), - [aux_sym_cmd_identifier_token18] = ACTIONS(3500), - [aux_sym_cmd_identifier_token19] = ACTIONS(3500), - [aux_sym_cmd_identifier_token20] = ACTIONS(3500), - [aux_sym_cmd_identifier_token21] = ACTIONS(3500), - [aux_sym_cmd_identifier_token22] = ACTIONS(3500), - [aux_sym_cmd_identifier_token23] = ACTIONS(3500), - [aux_sym_cmd_identifier_token24] = ACTIONS(3500), - [aux_sym_cmd_identifier_token25] = ACTIONS(3500), - [aux_sym_cmd_identifier_token26] = ACTIONS(3500), - [aux_sym_cmd_identifier_token27] = ACTIONS(3500), - [aux_sym_cmd_identifier_token28] = ACTIONS(3500), - [aux_sym_cmd_identifier_token29] = ACTIONS(3500), - [aux_sym_cmd_identifier_token30] = ACTIONS(3500), - [aux_sym_cmd_identifier_token31] = ACTIONS(3500), - [aux_sym_cmd_identifier_token32] = ACTIONS(3500), - [aux_sym_cmd_identifier_token33] = ACTIONS(3500), - [aux_sym_cmd_identifier_token34] = ACTIONS(3500), - [aux_sym_cmd_identifier_token35] = ACTIONS(3500), - [aux_sym_cmd_identifier_token36] = ACTIONS(3500), - [aux_sym_cmd_identifier_token37] = ACTIONS(3500), - [aux_sym_cmd_identifier_token38] = ACTIONS(3500), - [aux_sym_cmd_identifier_token39] = ACTIONS(3500), - [aux_sym_cmd_identifier_token40] = ACTIONS(3500), - [sym__newline] = ACTIONS(3502), - [sym__space] = ACTIONS(3505), - [anon_sym_LBRACK] = ACTIONS(3500), - [anon_sym_LPAREN] = ACTIONS(3500), - [anon_sym_DOLLAR] = ACTIONS(3500), - [anon_sym_DASH2] = ACTIONS(3500), - [anon_sym_LBRACE] = ACTIONS(3500), - [anon_sym_DOT_DOT] = ACTIONS(3500), - [aux_sym_expr_unary_token1] = ACTIONS(3500), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3500), - [anon_sym_DOT_DOT_LT] = ACTIONS(3500), - [anon_sym_null] = ACTIONS(3500), - [anon_sym_true] = ACTIONS(3500), - [anon_sym_false] = ACTIONS(3500), - [aux_sym__val_number_decimal_token1] = ACTIONS(3500), - [aux_sym__val_number_decimal_token2] = ACTIONS(3500), - [aux_sym__val_number_decimal_token3] = ACTIONS(3500), - [aux_sym__val_number_decimal_token4] = ACTIONS(3500), - [aux_sym__val_number_token1] = ACTIONS(3500), - [aux_sym__val_number_token2] = ACTIONS(3500), - [aux_sym__val_number_token3] = ACTIONS(3500), - [aux_sym__val_number_token4] = ACTIONS(3500), - [aux_sym__val_number_token5] = ACTIONS(3500), - [aux_sym__val_number_token6] = ACTIONS(3500), - [anon_sym_0b] = ACTIONS(3500), - [anon_sym_0o] = ACTIONS(3500), - [anon_sym_0x] = ACTIONS(3500), - [sym_val_date] = ACTIONS(3500), - [anon_sym_DQUOTE] = ACTIONS(3500), - [sym__str_single_quotes] = ACTIONS(3500), - [sym__str_back_ticks] = ACTIONS(3500), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3500), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3500), - [aux_sym_env_var_token1] = ACTIONS(3500), - [anon_sym_CARET] = ACTIONS(3500), - [aux_sym_command_token1] = ACTIONS(3500), + [anon_sym_STAR_STAR] = ACTIONS(1620), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1618), + [anon_sym_SLASH] = ACTIONS(1618), + [anon_sym_mod] = ACTIONS(1620), + [anon_sym_SLASH_SLASH] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1618), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_bit_DASHshl] = ACTIONS(1620), + [anon_sym_bit_DASHshr] = ACTIONS(1620), + [anon_sym_EQ_TILDE] = ACTIONS(1620), + [anon_sym_BANG_TILDE] = ACTIONS(1620), + [anon_sym_bit_DASHand] = ACTIONS(1620), + [anon_sym_bit_DASHxor] = ACTIONS(1620), + [anon_sym_bit_DASHor] = ACTIONS(1620), + [anon_sym_and] = ACTIONS(1620), + [anon_sym_xor] = ACTIONS(1620), + [anon_sym_or] = ACTIONS(1620), + [anon_sym_in] = ACTIONS(1620), + [anon_sym_not_DASHin] = ACTIONS(1620), + [anon_sym_has] = ACTIONS(1620), + [anon_sym_not_DASHhas] = ACTIONS(1620), + [anon_sym_starts_DASHwith] = ACTIONS(1620), + [anon_sym_ends_DASHwith] = ACTIONS(1620), + [anon_sym_EQ_EQ] = ACTIONS(1620), + [anon_sym_BANG_EQ] = ACTIONS(1620), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_LT_EQ] = ACTIONS(1620), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_GT_EQ] = ACTIONS(1620), + [aux_sym_cmd_identifier_token41] = ACTIONS(1618), + [sym__newline] = ACTIONS(1618), + [anon_sym_SEMI] = ACTIONS(1618), + [anon_sym_PIPE] = ACTIONS(1618), + [anon_sym_err_GT_PIPE] = ACTIONS(1618), + [anon_sym_out_GT_PIPE] = ACTIONS(1618), + [anon_sym_e_GT_PIPE] = ACTIONS(1618), + [anon_sym_o_GT_PIPE] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1618), + [anon_sym_RPAREN] = ACTIONS(1618), + [anon_sym_GT2] = ACTIONS(1618), + [anon_sym_DASH2] = ACTIONS(1618), + [anon_sym_in2] = ACTIONS(1618), + [anon_sym_STAR2] = ACTIONS(1618), + [anon_sym_and2] = ACTIONS(1618), + [anon_sym_xor2] = ACTIONS(1618), + [anon_sym_or2] = ACTIONS(1618), + [anon_sym_not_DASHin2] = ACTIONS(1618), + [anon_sym_has2] = ACTIONS(1618), + [anon_sym_not_DASHhas2] = ACTIONS(1618), + [anon_sym_starts_DASHwith2] = ACTIONS(1618), + [anon_sym_ends_DASHwith2] = ACTIONS(1618), + [anon_sym_EQ_EQ2] = ACTIONS(1618), + [anon_sym_BANG_EQ2] = ACTIONS(1618), + [anon_sym_LT2] = ACTIONS(1618), + [anon_sym_LT_EQ2] = ACTIONS(1618), + [anon_sym_GT_EQ2] = ACTIONS(1618), + [anon_sym_EQ_TILDE2] = ACTIONS(1618), + [anon_sym_BANG_TILDE2] = ACTIONS(1618), + [anon_sym_STAR_STAR2] = ACTIONS(1618), + [anon_sym_PLUS_PLUS2] = ACTIONS(1618), + [anon_sym_SLASH2] = ACTIONS(1618), + [anon_sym_mod2] = ACTIONS(1618), + [anon_sym_SLASH_SLASH2] = ACTIONS(1618), + [anon_sym_PLUS2] = ACTIONS(1618), + [anon_sym_bit_DASHshl2] = ACTIONS(1618), + [anon_sym_bit_DASHshr2] = ACTIONS(1618), + [anon_sym_bit_DASHand2] = ACTIONS(1618), + [anon_sym_bit_DASHxor2] = ACTIONS(1618), + [anon_sym_bit_DASHor2] = ACTIONS(1618), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [aux_sym__immediate_decimal_token2] = ACTIONS(3454), + [sym_filesize_unit] = ACTIONS(1618), + [sym_duration_unit] = ACTIONS(1620), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3508), }, [1138] = { - [sym_expr_unary] = STATE(4485), - [sym__expr_unary_minus] = STATE(2458), - [sym_expr_parenthesized] = STATE(4155), - [sym_val_range] = STATE(4485), - [sym__val_range] = STATE(7836), - [sym__val_range_with_end] = STATE(7377), - [sym__value] = STATE(4485), - [sym_val_nothing] = STATE(2516), - [sym_val_bool] = STATE(4212), - [sym_val_variable] = STATE(4115), - [sym_val_number] = STATE(2516), - [sym__val_number_decimal] = STATE(3936), - [sym__val_number] = STATE(2512), - [sym_val_duration] = STATE(2516), - [sym_val_filesize] = STATE(2516), - [sym_val_binary] = STATE(2516), - [sym_val_string] = STATE(2516), - [sym__raw_str] = STATE(1732), - [sym__str_double_quotes] = STATE(1732), - [sym_val_interpolated] = STATE(2516), - [sym__inter_single_quotes] = STATE(2527), - [sym__inter_double_quotes] = STATE(2528), - [sym_val_list] = STATE(2516), - [sym_val_record] = STATE(2516), - [sym_val_table] = STATE(2516), - [sym_val_closure] = STATE(2516), - [sym_unquoted] = STATE(4177), - [sym__unquoted_with_expr] = STATE(4486), - [sym__unquoted_anonymous_prefix] = STATE(6735), + [sym_ctrl_do] = STATE(5125), + [sym_ctrl_if] = STATE(5125), + [sym_ctrl_match] = STATE(5125), + [sym_ctrl_try] = STATE(5125), + [sym__expression] = STATE(5125), + [sym_expr_unary] = STATE(2443), + [sym__expr_unary_minus] = STATE(2502), + [sym_expr_binary] = STATE(2443), + [sym__expr_binary_expression] = STATE(3849), + [sym_expr_parenthesized] = STATE(2049), + [sym_val_range] = STATE(2443), + [sym__value] = STATE(2443), + [sym_val_nothing] = STATE(2419), + [sym_val_bool] = STATE(2419), + [sym_val_variable] = STATE(2121), + [sym_val_number] = STATE(2419), + [sym__val_number_decimal] = STATE(3190), + [sym__val_number] = STATE(2425), + [sym_val_duration] = STATE(2419), + [sym_val_filesize] = STATE(2419), + [sym_val_binary] = STATE(2419), + [sym_val_string] = STATE(2419), + [sym__raw_str] = STATE(1605), + [sym__str_double_quotes] = STATE(1605), + [sym_val_interpolated] = STATE(2419), + [sym__inter_single_quotes] = STATE(2426), + [sym__inter_double_quotes] = STATE(2421), + [sym_val_list] = STATE(2419), + [sym_val_record] = STATE(2419), + [sym_val_table] = STATE(2419), + [sym_val_closure] = STATE(2419), [sym_comment] = STATE(1138), + [ts_builtin_sym_end] = ACTIONS(3420), + [sym__newline] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3420), + [anon_sym_PIPE] = ACTIONS(3420), + [anon_sym_err_GT_PIPE] = ACTIONS(3420), + [anon_sym_out_GT_PIPE] = ACTIONS(3420), + [anon_sym_e_GT_PIPE] = ACTIONS(3420), + [anon_sym_o_GT_PIPE] = ACTIONS(3420), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3420), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3420), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3420), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3420), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(3510), + [anon_sym_DOLLAR] = ACTIONS(1018), [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_do] = ACTIONS(3456), + [anon_sym_if] = ACTIONS(3458), + [anon_sym_match] = ACTIONS(3460), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3512), - [aux_sym_expr_unary_token1] = ACTIONS(3514), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3516), - [anon_sym_DOT_DOT_LT] = ACTIONS(3516), - [anon_sym_null] = ACTIONS(3518), - [anon_sym_true] = ACTIONS(3520), - [anon_sym_false] = ACTIONS(3520), - [aux_sym__val_number_decimal_token1] = ACTIONS(3522), - [aux_sym__val_number_decimal_token2] = ACTIONS(3524), - [aux_sym__val_number_decimal_token3] = ACTIONS(3526), - [aux_sym__val_number_decimal_token4] = ACTIONS(3528), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3530), - [aux_sym__val_number_token5] = ACTIONS(3530), - [aux_sym__val_number_token6] = ACTIONS(3530), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3532), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3534), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), + [anon_sym_DOT_DOT] = ACTIONS(65), + [anon_sym_try] = ACTIONS(3462), + [aux_sym_expr_unary_token1] = ACTIONS(81), + [anon_sym_DOT_DOT_EQ] = ACTIONS(83), + [anon_sym_DOT_DOT_LT] = ACTIONS(83), + [anon_sym_null] = ACTIONS(3464), + [anon_sym_true] = ACTIONS(3466), + [anon_sym_false] = ACTIONS(3466), + [aux_sym__val_number_decimal_token1] = ACTIONS(3404), + [aux_sym__val_number_decimal_token2] = ACTIONS(3406), + [aux_sym__val_number_decimal_token3] = ACTIONS(3408), + [aux_sym__val_number_decimal_token4] = ACTIONS(3410), + [aux_sym__val_number_token1] = ACTIONS(97), + [aux_sym__val_number_token2] = ACTIONS(97), + [aux_sym__val_number_token3] = ACTIONS(97), + [aux_sym__val_number_token4] = ACTIONS(97), + [aux_sym__val_number_token5] = ACTIONS(97), + [aux_sym__val_number_token6] = ACTIONS(97), + [anon_sym_0b] = ACTIONS(101), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym__str_single_quotes] = ACTIONS(109), + [sym__str_back_ticks] = ACTIONS(109), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1139] = { - [sym_expr_unary] = STATE(4306), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_parenthesized] = STATE(4074), - [sym_val_range] = STATE(4306), - [sym__val_range] = STATE(7519), - [sym__val_range_with_end] = STATE(7412), - [sym__value] = STATE(4306), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(4088), - [sym_val_variable] = STATE(4075), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3911), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(3668), - [sym__str_double_quotes] = STATE(3668), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(4130), - [sym__unquoted_with_expr] = STATE(4435), - [sym__unquoted_anonymous_prefix] = STATE(6767), [sym_comment] = STATE(1139), - [anon_sym_LBRACK] = ACTIONS(3460), - [anon_sym_LPAREN] = ACTIONS(3462), - [anon_sym_DOLLAR] = ACTIONS(3464), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(3466), - [anon_sym_DOT_DOT] = ACTIONS(3468), - [aux_sym_expr_unary_token1] = ACTIONS(3470), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3472), - [anon_sym_DOT_DOT_LT] = ACTIONS(3472), - [anon_sym_null] = ACTIONS(3474), - [anon_sym_true] = ACTIONS(3476), - [anon_sym_false] = ACTIONS(3476), - [aux_sym__val_number_decimal_token1] = ACTIONS(3478), - [aux_sym__val_number_decimal_token2] = ACTIONS(3480), - [aux_sym__val_number_decimal_token3] = ACTIONS(3482), - [aux_sym__val_number_decimal_token4] = ACTIONS(3484), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3486), - [aux_sym__val_number_token5] = ACTIONS(3486), - [aux_sym__val_number_token6] = ACTIONS(3486), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3488), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym__str_single_quotes] = ACTIONS(1288), - [sym__str_back_ticks] = ACTIONS(1288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3490), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1290), + [anon_sym_STAR_STAR] = ACTIONS(1620), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1618), + [anon_sym_SLASH] = ACTIONS(1618), + [anon_sym_mod] = ACTIONS(1620), + [anon_sym_SLASH_SLASH] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1618), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_bit_DASHshl] = ACTIONS(1620), + [anon_sym_bit_DASHshr] = ACTIONS(1620), + [anon_sym_EQ_TILDE] = ACTIONS(1620), + [anon_sym_BANG_TILDE] = ACTIONS(1620), + [anon_sym_bit_DASHand] = ACTIONS(1620), + [anon_sym_bit_DASHxor] = ACTIONS(1620), + [anon_sym_bit_DASHor] = ACTIONS(1620), + [anon_sym_and] = ACTIONS(1620), + [anon_sym_xor] = ACTIONS(1620), + [anon_sym_or] = ACTIONS(1620), + [anon_sym_in] = ACTIONS(1620), + [anon_sym_not_DASHin] = ACTIONS(1620), + [anon_sym_has] = ACTIONS(1620), + [anon_sym_not_DASHhas] = ACTIONS(1620), + [anon_sym_starts_DASHwith] = ACTIONS(1620), + [anon_sym_ends_DASHwith] = ACTIONS(1620), + [anon_sym_EQ_EQ] = ACTIONS(1620), + [anon_sym_BANG_EQ] = ACTIONS(1620), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_LT_EQ] = ACTIONS(1620), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_GT_EQ] = ACTIONS(1620), + [aux_sym_cmd_identifier_token41] = ACTIONS(1618), + [sym__newline] = ACTIONS(1618), + [anon_sym_SEMI] = ACTIONS(1618), + [anon_sym_PIPE] = ACTIONS(1618), + [anon_sym_err_GT_PIPE] = ACTIONS(1618), + [anon_sym_out_GT_PIPE] = ACTIONS(1618), + [anon_sym_e_GT_PIPE] = ACTIONS(1618), + [anon_sym_o_GT_PIPE] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1618), + [anon_sym_GT2] = ACTIONS(1618), + [anon_sym_DASH2] = ACTIONS(1618), + [anon_sym_in2] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1618), + [anon_sym_STAR2] = ACTIONS(1618), + [anon_sym_and2] = ACTIONS(1618), + [anon_sym_xor2] = ACTIONS(1618), + [anon_sym_or2] = ACTIONS(1618), + [anon_sym_not_DASHin2] = ACTIONS(1618), + [anon_sym_has2] = ACTIONS(1618), + [anon_sym_not_DASHhas2] = ACTIONS(1618), + [anon_sym_starts_DASHwith2] = ACTIONS(1618), + [anon_sym_ends_DASHwith2] = ACTIONS(1618), + [anon_sym_EQ_EQ2] = ACTIONS(1618), + [anon_sym_BANG_EQ2] = ACTIONS(1618), + [anon_sym_LT2] = ACTIONS(1618), + [anon_sym_LT_EQ2] = ACTIONS(1618), + [anon_sym_GT_EQ2] = ACTIONS(1618), + [anon_sym_EQ_TILDE2] = ACTIONS(1618), + [anon_sym_BANG_TILDE2] = ACTIONS(1618), + [anon_sym_STAR_STAR2] = ACTIONS(1618), + [anon_sym_PLUS_PLUS2] = ACTIONS(1618), + [anon_sym_SLASH2] = ACTIONS(1618), + [anon_sym_mod2] = ACTIONS(1618), + [anon_sym_SLASH_SLASH2] = ACTIONS(1618), + [anon_sym_PLUS2] = ACTIONS(1618), + [anon_sym_bit_DASHshl2] = ACTIONS(1618), + [anon_sym_bit_DASHshr2] = ACTIONS(1618), + [anon_sym_bit_DASHand2] = ACTIONS(1618), + [anon_sym_bit_DASHxor2] = ACTIONS(1618), + [anon_sym_bit_DASHor2] = ACTIONS(1618), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [aux_sym__immediate_decimal_token2] = ACTIONS(3468), + [sym_filesize_unit] = ACTIONS(1618), + [sym_duration_unit] = ACTIONS(1620), + [anon_sym_POUND] = ACTIONS(3), }, [1140] = { - [sym_expr_unary] = STATE(4487), - [sym__expr_unary_minus] = STATE(2458), - [sym_expr_parenthesized] = STATE(4084), - [sym_val_range] = STATE(4487), - [sym__val_range] = STATE(7836), - [sym__val_range_with_end] = STATE(7377), - [sym__value] = STATE(4487), - [sym_val_nothing] = STATE(2516), - [sym_val_bool] = STATE(4212), - [sym_val_variable] = STATE(4115), - [sym_val_number] = STATE(2516), - [sym__val_number_decimal] = STATE(3936), - [sym__val_number] = STATE(2512), - [sym_val_duration] = STATE(2516), - [sym_val_filesize] = STATE(2516), - [sym_val_binary] = STATE(2516), - [sym_val_string] = STATE(2516), - [sym__raw_str] = STATE(1732), - [sym__str_double_quotes] = STATE(1732), - [sym_val_interpolated] = STATE(2516), - [sym__inter_single_quotes] = STATE(2527), - [sym__inter_double_quotes] = STATE(2528), - [sym_val_list] = STATE(2516), - [sym_val_record] = STATE(2516), - [sym_val_table] = STATE(2516), - [sym_val_closure] = STATE(2516), - [sym_unquoted] = STATE(4220), - [sym__unquoted_with_expr] = STATE(4488), - [sym__unquoted_anonymous_prefix] = STATE(6735), [sym_comment] = STATE(1140), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(3510), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3512), - [aux_sym_expr_unary_token1] = ACTIONS(3514), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3516), - [anon_sym_DOT_DOT_LT] = ACTIONS(3516), - [anon_sym_null] = ACTIONS(3518), - [anon_sym_true] = ACTIONS(3520), - [anon_sym_false] = ACTIONS(3520), - [aux_sym__val_number_decimal_token1] = ACTIONS(3522), - [aux_sym__val_number_decimal_token2] = ACTIONS(3524), - [aux_sym__val_number_decimal_token3] = ACTIONS(3526), - [aux_sym__val_number_decimal_token4] = ACTIONS(3528), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3530), - [aux_sym__val_number_token5] = ACTIONS(3530), - [aux_sym__val_number_token6] = ACTIONS(3530), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3532), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3534), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), + [anon_sym_STAR_STAR] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_SLASH] = ACTIONS(1512), + [anon_sym_mod] = ACTIONS(1514), + [anon_sym_SLASH_SLASH] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_bit_DASHshl] = ACTIONS(1514), + [anon_sym_bit_DASHshr] = ACTIONS(1514), + [anon_sym_EQ_TILDE] = ACTIONS(1514), + [anon_sym_BANG_TILDE] = ACTIONS(1514), + [anon_sym_bit_DASHand] = ACTIONS(1514), + [anon_sym_bit_DASHxor] = ACTIONS(1514), + [anon_sym_bit_DASHor] = ACTIONS(1514), + [anon_sym_and] = ACTIONS(1514), + [anon_sym_xor] = ACTIONS(1514), + [anon_sym_or] = ACTIONS(1514), + [anon_sym_in] = ACTIONS(1514), + [anon_sym_not_DASHin] = ACTIONS(1514), + [anon_sym_has] = ACTIONS(1514), + [anon_sym_not_DASHhas] = ACTIONS(1514), + [anon_sym_starts_DASHwith] = ACTIONS(1514), + [anon_sym_ends_DASHwith] = ACTIONS(1514), + [anon_sym_EQ_EQ] = ACTIONS(1514), + [anon_sym_BANG_EQ] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_LT_EQ] = ACTIONS(1514), + [anon_sym_GT] = ACTIONS(1512), + [anon_sym_GT_EQ] = ACTIONS(1514), + [aux_sym_cmd_identifier_token41] = ACTIONS(1512), + [sym__newline] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_err_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_GT_PIPE] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1512), + [anon_sym_GT2] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_in2] = ACTIONS(1512), + [anon_sym_RBRACE] = ACTIONS(1512), + [anon_sym_STAR2] = ACTIONS(1512), + [anon_sym_and2] = ACTIONS(1512), + [anon_sym_xor2] = ACTIONS(1512), + [anon_sym_or2] = ACTIONS(1512), + [anon_sym_not_DASHin2] = ACTIONS(1512), + [anon_sym_has2] = ACTIONS(1512), + [anon_sym_not_DASHhas2] = ACTIONS(1512), + [anon_sym_starts_DASHwith2] = ACTIONS(1512), + [anon_sym_ends_DASHwith2] = ACTIONS(1512), + [anon_sym_EQ_EQ2] = ACTIONS(1512), + [anon_sym_BANG_EQ2] = ACTIONS(1512), + [anon_sym_LT2] = ACTIONS(1512), + [anon_sym_LT_EQ2] = ACTIONS(1512), + [anon_sym_GT_EQ2] = ACTIONS(1512), + [anon_sym_EQ_TILDE2] = ACTIONS(1512), + [anon_sym_BANG_TILDE2] = ACTIONS(1512), + [anon_sym_STAR_STAR2] = ACTIONS(1512), + [anon_sym_PLUS_PLUS2] = ACTIONS(1512), + [anon_sym_SLASH2] = ACTIONS(1512), + [anon_sym_mod2] = ACTIONS(1512), + [anon_sym_SLASH_SLASH2] = ACTIONS(1512), + [anon_sym_PLUS2] = ACTIONS(1512), + [anon_sym_bit_DASHshl2] = ACTIONS(1512), + [anon_sym_bit_DASHshr2] = ACTIONS(1512), + [anon_sym_bit_DASHand2] = ACTIONS(1512), + [anon_sym_bit_DASHxor2] = ACTIONS(1512), + [anon_sym_bit_DASHor2] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [aux_sym__immediate_decimal_token2] = ACTIONS(3372), + [sym_filesize_unit] = ACTIONS(1512), + [sym_duration_unit] = ACTIONS(1514), + [anon_sym_POUND] = ACTIONS(3), }, [1141] = { - [sym_expr_unary] = STATE(4489), - [sym__expr_unary_minus] = STATE(2458), - [sym_expr_parenthesized] = STATE(4106), - [sym_val_range] = STATE(4489), - [sym__val_range] = STATE(7836), - [sym__val_range_with_end] = STATE(7377), - [sym__value] = STATE(4489), - [sym_val_nothing] = STATE(2516), - [sym_val_bool] = STATE(4212), - [sym_val_variable] = STATE(4115), - [sym_val_number] = STATE(2516), - [sym__val_number_decimal] = STATE(3936), - [sym__val_number] = STATE(2512), - [sym_val_duration] = STATE(2516), - [sym_val_filesize] = STATE(2516), - [sym_val_binary] = STATE(2516), - [sym_val_string] = STATE(2516), - [sym__raw_str] = STATE(1732), - [sym__str_double_quotes] = STATE(1732), - [sym_val_interpolated] = STATE(2516), - [sym__inter_single_quotes] = STATE(2527), - [sym__inter_double_quotes] = STATE(2528), - [sym_val_list] = STATE(2516), - [sym_val_record] = STATE(2516), - [sym_val_table] = STATE(2516), - [sym_val_closure] = STATE(2516), - [sym_unquoted] = STATE(4188), - [sym__unquoted_with_expr] = STATE(4490), - [sym__unquoted_anonymous_prefix] = STATE(6735), [sym_comment] = STATE(1141), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(3510), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3512), - [aux_sym_expr_unary_token1] = ACTIONS(3514), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3516), - [anon_sym_DOT_DOT_LT] = ACTIONS(3516), - [anon_sym_null] = ACTIONS(3518), - [anon_sym_true] = ACTIONS(3520), - [anon_sym_false] = ACTIONS(3520), - [aux_sym__val_number_decimal_token1] = ACTIONS(3522), - [aux_sym__val_number_decimal_token2] = ACTIONS(3524), - [aux_sym__val_number_decimal_token3] = ACTIONS(3526), - [aux_sym__val_number_decimal_token4] = ACTIONS(3528), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3530), - [aux_sym__val_number_token5] = ACTIONS(3530), - [aux_sym__val_number_token6] = ACTIONS(3530), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3532), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3534), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), + [anon_sym_STAR_STAR] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_STAR] = ACTIONS(1504), + [anon_sym_SLASH] = ACTIONS(1504), + [anon_sym_mod] = ACTIONS(1506), + [anon_sym_SLASH_SLASH] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_bit_DASHshl] = ACTIONS(1506), + [anon_sym_bit_DASHshr] = ACTIONS(1506), + [anon_sym_EQ_TILDE] = ACTIONS(1506), + [anon_sym_BANG_TILDE] = ACTIONS(1506), + [anon_sym_bit_DASHand] = ACTIONS(1506), + [anon_sym_bit_DASHxor] = ACTIONS(1506), + [anon_sym_bit_DASHor] = ACTIONS(1506), + [anon_sym_and] = ACTIONS(1506), + [anon_sym_xor] = ACTIONS(1506), + [anon_sym_or] = ACTIONS(1506), + [anon_sym_in] = ACTIONS(1506), + [anon_sym_not_DASHin] = ACTIONS(1506), + [anon_sym_has] = ACTIONS(1506), + [anon_sym_not_DASHhas] = 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_LT] = ACTIONS(1504), + [anon_sym_LT_EQ] = ACTIONS(1506), + [anon_sym_GT] = ACTIONS(1504), + [anon_sym_GT_EQ] = ACTIONS(1506), + [aux_sym_cmd_identifier_token41] = ACTIONS(1504), + [sym__newline] = ACTIONS(1504), + [anon_sym_SEMI] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_err_GT_PIPE] = ACTIONS(1504), + [anon_sym_out_GT_PIPE] = ACTIONS(1504), + [anon_sym_e_GT_PIPE] = ACTIONS(1504), + [anon_sym_o_GT_PIPE] = ACTIONS(1504), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1504), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1504), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1504), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1504), + [anon_sym_GT2] = ACTIONS(1504), + [anon_sym_DASH2] = ACTIONS(1504), + [anon_sym_in2] = ACTIONS(1504), + [anon_sym_STAR2] = ACTIONS(1504), + [anon_sym_and2] = ACTIONS(1504), + [anon_sym_xor2] = ACTIONS(1504), + [anon_sym_or2] = ACTIONS(1504), + [anon_sym_not_DASHin2] = ACTIONS(1504), + [anon_sym_has2] = ACTIONS(1504), + [anon_sym_not_DASHhas2] = ACTIONS(1504), + [anon_sym_starts_DASHwith2] = ACTIONS(1504), + [anon_sym_ends_DASHwith2] = ACTIONS(1504), + [anon_sym_EQ_EQ2] = ACTIONS(1504), + [anon_sym_BANG_EQ2] = ACTIONS(1504), + [anon_sym_LT2] = ACTIONS(1504), + [anon_sym_LT_EQ2] = ACTIONS(1504), + [anon_sym_GT_EQ2] = ACTIONS(1504), + [anon_sym_EQ_TILDE2] = ACTIONS(1504), + [anon_sym_BANG_TILDE2] = ACTIONS(1504), + [anon_sym_STAR_STAR2] = ACTIONS(1504), + [anon_sym_PLUS_PLUS2] = ACTIONS(1504), + [anon_sym_SLASH2] = ACTIONS(1504), + [anon_sym_mod2] = ACTIONS(1504), + [anon_sym_SLASH_SLASH2] = ACTIONS(1504), + [anon_sym_PLUS2] = ACTIONS(1504), + [anon_sym_bit_DASHshl2] = ACTIONS(1504), + [anon_sym_bit_DASHshr2] = ACTIONS(1504), + [anon_sym_bit_DASHand2] = ACTIONS(1504), + [anon_sym_bit_DASHxor2] = ACTIONS(1504), + [anon_sym_bit_DASHor2] = ACTIONS(1504), + [anon_sym_DOT_DOT2] = ACTIONS(1504), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1506), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1506), + [aux_sym__immediate_decimal_token1] = ACTIONS(3470), + [aux_sym__immediate_decimal_token2] = ACTIONS(3472), + [sym_filesize_unit] = ACTIONS(1504), + [sym_duration_unit] = ACTIONS(1506), + [anon_sym_POUND] = ACTIONS(3), }, [1142] = { + [sym_ctrl_do] = STATE(4954), + [sym_ctrl_if] = STATE(4954), + [sym_ctrl_match] = STATE(4954), + [sym_ctrl_try] = STATE(4954), + [sym__expression] = STATE(4954), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3838), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2975), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), [sym_comment] = STATE(1142), - [aux_sym_cmd_identifier_token1] = ACTIONS(2120), - [aux_sym_cmd_identifier_token2] = ACTIONS(2120), - [aux_sym_cmd_identifier_token3] = ACTIONS(2120), - [aux_sym_cmd_identifier_token4] = ACTIONS(2120), - [aux_sym_cmd_identifier_token5] = ACTIONS(2120), - [aux_sym_cmd_identifier_token6] = ACTIONS(2120), - [aux_sym_cmd_identifier_token7] = ACTIONS(2120), - [aux_sym_cmd_identifier_token8] = ACTIONS(2120), - [aux_sym_cmd_identifier_token9] = ACTIONS(2120), - [aux_sym_cmd_identifier_token10] = ACTIONS(2120), - [aux_sym_cmd_identifier_token11] = ACTIONS(2120), - [aux_sym_cmd_identifier_token12] = ACTIONS(2120), - [aux_sym_cmd_identifier_token13] = ACTIONS(2120), - [aux_sym_cmd_identifier_token14] = ACTIONS(2120), - [aux_sym_cmd_identifier_token15] = ACTIONS(2120), - [aux_sym_cmd_identifier_token16] = ACTIONS(2120), - [aux_sym_cmd_identifier_token17] = ACTIONS(2120), - [aux_sym_cmd_identifier_token18] = ACTIONS(2120), - [aux_sym_cmd_identifier_token19] = ACTIONS(2120), - [aux_sym_cmd_identifier_token20] = ACTIONS(2120), - [aux_sym_cmd_identifier_token21] = ACTIONS(2120), - [aux_sym_cmd_identifier_token22] = ACTIONS(2120), - [aux_sym_cmd_identifier_token23] = ACTIONS(2120), - [aux_sym_cmd_identifier_token24] = ACTIONS(2120), - [aux_sym_cmd_identifier_token25] = ACTIONS(2120), - [aux_sym_cmd_identifier_token26] = ACTIONS(2120), - [aux_sym_cmd_identifier_token27] = ACTIONS(2120), - [aux_sym_cmd_identifier_token28] = ACTIONS(2120), - [aux_sym_cmd_identifier_token29] = ACTIONS(2120), - [aux_sym_cmd_identifier_token30] = ACTIONS(2120), - [aux_sym_cmd_identifier_token31] = ACTIONS(2120), - [aux_sym_cmd_identifier_token32] = ACTIONS(2120), - [aux_sym_cmd_identifier_token33] = ACTIONS(2120), - [aux_sym_cmd_identifier_token34] = ACTIONS(2120), - [aux_sym_cmd_identifier_token35] = ACTIONS(2120), - [aux_sym_cmd_identifier_token36] = ACTIONS(2120), - [aux_sym_cmd_identifier_token37] = ACTIONS(2120), - [aux_sym_cmd_identifier_token38] = ACTIONS(2120), - [aux_sym_cmd_identifier_token39] = ACTIONS(2120), - [aux_sym_cmd_identifier_token40] = ACTIONS(2120), - [sym__newline] = ACTIONS(2120), - [sym__space] = ACTIONS(3536), - [anon_sym_LBRACK] = ACTIONS(2120), - [anon_sym_LPAREN] = ACTIONS(2120), - [anon_sym_DOLLAR] = ACTIONS(2120), - [anon_sym_DASH2] = ACTIONS(2120), - [anon_sym_LBRACE] = ACTIONS(2120), - [anon_sym_DOT_DOT] = ACTIONS(2120), - [aux_sym_expr_unary_token1] = ACTIONS(2120), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2120), - [anon_sym_DOT_DOT_LT] = ACTIONS(2120), - [anon_sym_null] = ACTIONS(2120), - [anon_sym_true] = ACTIONS(2120), - [anon_sym_false] = ACTIONS(2120), - [aux_sym__val_number_decimal_token1] = ACTIONS(2120), - [aux_sym__val_number_decimal_token2] = ACTIONS(2120), - [aux_sym__val_number_decimal_token3] = ACTIONS(2120), - [aux_sym__val_number_decimal_token4] = ACTIONS(2120), - [aux_sym__val_number_token1] = ACTIONS(2120), - [aux_sym__val_number_token2] = ACTIONS(2120), - [aux_sym__val_number_token3] = ACTIONS(2120), - [aux_sym__val_number_token4] = ACTIONS(2120), - [aux_sym__val_number_token5] = ACTIONS(2120), - [aux_sym__val_number_token6] = ACTIONS(2120), - [anon_sym_0b] = ACTIONS(2120), - [anon_sym_0o] = ACTIONS(2120), - [anon_sym_0x] = ACTIONS(2120), - [sym_val_date] = ACTIONS(2120), - [anon_sym_DQUOTE] = ACTIONS(2120), - [sym__str_single_quotes] = ACTIONS(2120), - [sym__str_back_ticks] = ACTIONS(2120), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2120), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2120), - [aux_sym_env_var_token1] = ACTIONS(2120), - [anon_sym_CARET] = ACTIONS(2120), - [aux_sym_command_token1] = ACTIONS(2120), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3536), + [sym__newline] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3420), + [anon_sym_PIPE] = ACTIONS(3420), + [anon_sym_err_GT_PIPE] = ACTIONS(3420), + [anon_sym_out_GT_PIPE] = ACTIONS(3420), + [anon_sym_e_GT_PIPE] = ACTIONS(3420), + [anon_sym_o_GT_PIPE] = ACTIONS(3420), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3420), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3420), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3420), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3420), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(3420), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_do] = ACTIONS(3422), + [anon_sym_if] = ACTIONS(3474), + [anon_sym_match] = ACTIONS(3426), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(3428), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(3430), + [anon_sym_true] = ACTIONS(3432), + [anon_sym_false] = ACTIONS(3432), + [aux_sym__val_number_decimal_token1] = ACTIONS(3434), + [aux_sym__val_number_decimal_token2] = ACTIONS(3436), + [aux_sym__val_number_decimal_token3] = ACTIONS(3438), + [aux_sym__val_number_decimal_token4] = ACTIONS(3440), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(223), + [aux_sym__val_number_token5] = ACTIONS(223), + [aux_sym__val_number_token6] = ACTIONS(223), + [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_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1143] = { - [sym_ctrl_do] = STATE(4793), - [sym_ctrl_if] = STATE(4793), - [sym_ctrl_match] = STATE(4793), - [sym_ctrl_try] = STATE(4793), - [sym__expression] = STATE(4793), - [sym_expr_unary] = STATE(2141), - [sym__expr_unary_minus] = STATE(2143), - [sym_expr_binary] = STATE(2141), - [sym__expr_binary_expression] = STATE(3876), - [sym_expr_parenthesized] = STATE(1888), - [sym_val_range] = STATE(2141), - [sym__value] = STATE(2141), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(2085), - [sym_val_variable] = STATE(1833), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(3154), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), [sym_comment] = STATE(1143), - [sym__newline] = ACTIONS(3398), - [anon_sym_PIPE] = ACTIONS(3398), - [anon_sym_err_GT_PIPE] = ACTIONS(3398), - [anon_sym_out_GT_PIPE] = ACTIONS(3398), - [anon_sym_e_GT_PIPE] = ACTIONS(3398), - [anon_sym_o_GT_PIPE] = ACTIONS(3398), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3398), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3398), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3398), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3398), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(383), - [anon_sym_do] = ACTIONS(3400), - [anon_sym_if] = ACTIONS(3538), - [anon_sym_match] = ACTIONS(3404), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(3406), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(3408), - [anon_sym_true] = ACTIONS(3410), - [anon_sym_false] = ACTIONS(3410), - [aux_sym__val_number_decimal_token1] = ACTIONS(3412), - [aux_sym__val_number_decimal_token2] = ACTIONS(3414), - [aux_sym__val_number_decimal_token3] = ACTIONS(3416), - [aux_sym__val_number_decimal_token4] = ACTIONS(3418), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [ts_builtin_sym_end] = ACTIONS(1514), + [anon_sym_STAR_STAR] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_SLASH] = ACTIONS(1512), + [anon_sym_mod] = ACTIONS(1514), + [anon_sym_SLASH_SLASH] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_bit_DASHshl] = ACTIONS(1514), + [anon_sym_bit_DASHshr] = ACTIONS(1514), + [anon_sym_EQ_TILDE] = ACTIONS(1514), + [anon_sym_BANG_TILDE] = ACTIONS(1514), + [anon_sym_bit_DASHand] = ACTIONS(1514), + [anon_sym_bit_DASHxor] = ACTIONS(1514), + [anon_sym_bit_DASHor] = ACTIONS(1514), + [anon_sym_and] = ACTIONS(1514), + [anon_sym_xor] = ACTIONS(1514), + [anon_sym_or] = ACTIONS(1514), + [anon_sym_in] = ACTIONS(1514), + [anon_sym_not_DASHin] = ACTIONS(1514), + [anon_sym_has] = ACTIONS(1514), + [anon_sym_not_DASHhas] = ACTIONS(1514), + [anon_sym_starts_DASHwith] = ACTIONS(1514), + [anon_sym_ends_DASHwith] = ACTIONS(1514), + [anon_sym_EQ_EQ] = ACTIONS(1514), + [anon_sym_BANG_EQ] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_LT_EQ] = ACTIONS(1514), + [anon_sym_GT] = ACTIONS(1512), + [anon_sym_GT_EQ] = ACTIONS(1514), + [aux_sym_cmd_identifier_token41] = ACTIONS(1512), + [sym__newline] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_err_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_GT_PIPE] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1512), + [anon_sym_GT2] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_in2] = ACTIONS(1512), + [anon_sym_STAR2] = ACTIONS(1512), + [anon_sym_and2] = ACTIONS(1512), + [anon_sym_xor2] = ACTIONS(1512), + [anon_sym_or2] = ACTIONS(1512), + [anon_sym_not_DASHin2] = ACTIONS(1512), + [anon_sym_has2] = ACTIONS(1512), + [anon_sym_not_DASHhas2] = ACTIONS(1512), + [anon_sym_starts_DASHwith2] = ACTIONS(1512), + [anon_sym_ends_DASHwith2] = ACTIONS(1512), + [anon_sym_EQ_EQ2] = ACTIONS(1512), + [anon_sym_BANG_EQ2] = ACTIONS(1512), + [anon_sym_LT2] = ACTIONS(1512), + [anon_sym_LT_EQ2] = ACTIONS(1512), + [anon_sym_GT_EQ2] = ACTIONS(1512), + [anon_sym_EQ_TILDE2] = ACTIONS(1512), + [anon_sym_BANG_TILDE2] = ACTIONS(1512), + [anon_sym_STAR_STAR2] = ACTIONS(1512), + [anon_sym_PLUS_PLUS2] = ACTIONS(1512), + [anon_sym_SLASH2] = ACTIONS(1512), + [anon_sym_mod2] = ACTIONS(1512), + [anon_sym_SLASH_SLASH2] = ACTIONS(1512), + [anon_sym_PLUS2] = ACTIONS(1512), + [anon_sym_bit_DASHshl2] = ACTIONS(1512), + [anon_sym_bit_DASHshr2] = ACTIONS(1512), + [anon_sym_bit_DASHand2] = ACTIONS(1512), + [anon_sym_bit_DASHxor2] = ACTIONS(1512), + [anon_sym_bit_DASHor2] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [aux_sym__immediate_decimal_token2] = ACTIONS(3452), + [sym_filesize_unit] = ACTIONS(1512), + [sym_duration_unit] = ACTIONS(1514), + [anon_sym_POUND] = ACTIONS(3), }, [1144] = { [sym_comment] = STATE(1144), - [aux_sym_pipe_element_repeat1] = STATE(1144), - [aux_sym_cmd_identifier_token1] = ACTIONS(3540), - [aux_sym_cmd_identifier_token2] = ACTIONS(3540), - [aux_sym_cmd_identifier_token3] = ACTIONS(3540), - [aux_sym_cmd_identifier_token4] = ACTIONS(3540), - [aux_sym_cmd_identifier_token5] = ACTIONS(3540), - [aux_sym_cmd_identifier_token6] = ACTIONS(3540), - [aux_sym_cmd_identifier_token7] = ACTIONS(3540), - [aux_sym_cmd_identifier_token8] = ACTIONS(3540), - [aux_sym_cmd_identifier_token9] = ACTIONS(3540), - [aux_sym_cmd_identifier_token10] = ACTIONS(3540), - [aux_sym_cmd_identifier_token11] = ACTIONS(3540), - [aux_sym_cmd_identifier_token12] = ACTIONS(3540), - [aux_sym_cmd_identifier_token13] = ACTIONS(3540), - [aux_sym_cmd_identifier_token14] = ACTIONS(3540), - [aux_sym_cmd_identifier_token15] = ACTIONS(3540), - [aux_sym_cmd_identifier_token16] = ACTIONS(3540), - [aux_sym_cmd_identifier_token17] = ACTIONS(3540), - [aux_sym_cmd_identifier_token18] = ACTIONS(3540), - [aux_sym_cmd_identifier_token19] = ACTIONS(3540), - [aux_sym_cmd_identifier_token20] = ACTIONS(3540), - [aux_sym_cmd_identifier_token21] = ACTIONS(3540), - [aux_sym_cmd_identifier_token22] = ACTIONS(3540), - [aux_sym_cmd_identifier_token23] = ACTIONS(3540), - [aux_sym_cmd_identifier_token24] = ACTIONS(3540), - [aux_sym_cmd_identifier_token25] = ACTIONS(3540), - [aux_sym_cmd_identifier_token26] = ACTIONS(3540), - [aux_sym_cmd_identifier_token27] = ACTIONS(3540), - [aux_sym_cmd_identifier_token28] = ACTIONS(3540), - [aux_sym_cmd_identifier_token29] = ACTIONS(3540), - [aux_sym_cmd_identifier_token30] = ACTIONS(3540), - [aux_sym_cmd_identifier_token31] = ACTIONS(3540), - [aux_sym_cmd_identifier_token32] = ACTIONS(3540), - [aux_sym_cmd_identifier_token33] = ACTIONS(3540), - [aux_sym_cmd_identifier_token34] = ACTIONS(3540), - [aux_sym_cmd_identifier_token35] = ACTIONS(3540), - [aux_sym_cmd_identifier_token36] = ACTIONS(3540), - [aux_sym_cmd_identifier_token37] = ACTIONS(3540), - [aux_sym_cmd_identifier_token38] = ACTIONS(3540), - [aux_sym_cmd_identifier_token39] = ACTIONS(3540), - [aux_sym_cmd_identifier_token40] = ACTIONS(3540), - [sym__space] = ACTIONS(3542), - [anon_sym_LBRACK] = ACTIONS(3540), - [anon_sym_LPAREN] = ACTIONS(3540), - [anon_sym_DOLLAR] = ACTIONS(3540), - [anon_sym_DASH2] = ACTIONS(3540), - [anon_sym_LBRACE] = ACTIONS(3540), - [anon_sym_DOT_DOT] = ACTIONS(3540), - [aux_sym_expr_unary_token1] = ACTIONS(3540), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3540), - [anon_sym_DOT_DOT_LT] = ACTIONS(3540), - [anon_sym_null] = ACTIONS(3540), - [anon_sym_true] = ACTIONS(3540), - [anon_sym_false] = ACTIONS(3540), - [aux_sym__val_number_decimal_token1] = ACTIONS(3540), - [aux_sym__val_number_decimal_token2] = ACTIONS(3540), - [aux_sym__val_number_decimal_token3] = ACTIONS(3540), - [aux_sym__val_number_decimal_token4] = ACTIONS(3540), - [aux_sym__val_number_token1] = ACTIONS(3540), - [aux_sym__val_number_token2] = ACTIONS(3540), - [aux_sym__val_number_token3] = ACTIONS(3540), - [aux_sym__val_number_token4] = ACTIONS(3540), - [aux_sym__val_number_token5] = ACTIONS(3540), - [aux_sym__val_number_token6] = ACTIONS(3540), - [anon_sym_0b] = ACTIONS(3540), - [anon_sym_0o] = ACTIONS(3540), - [anon_sym_0x] = ACTIONS(3540), - [sym_val_date] = ACTIONS(3540), - [anon_sym_DQUOTE] = ACTIONS(3540), - [sym__str_single_quotes] = ACTIONS(3540), - [sym__str_back_ticks] = ACTIONS(3540), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3540), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3540), - [aux_sym_env_var_token1] = ACTIONS(3540), - [anon_sym_CARET] = ACTIONS(3540), - [aux_sym_command_token1] = ACTIONS(3540), + [anon_sym_STAR_STAR] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_SLASH] = ACTIONS(1512), + [anon_sym_mod] = ACTIONS(1514), + [anon_sym_SLASH_SLASH] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_bit_DASHshl] = ACTIONS(1514), + [anon_sym_bit_DASHshr] = ACTIONS(1514), + [anon_sym_EQ_TILDE] = ACTIONS(1514), + [anon_sym_BANG_TILDE] = ACTIONS(1514), + [anon_sym_bit_DASHand] = ACTIONS(1514), + [anon_sym_bit_DASHxor] = ACTIONS(1514), + [anon_sym_bit_DASHor] = ACTIONS(1514), + [anon_sym_and] = ACTIONS(1514), + [anon_sym_xor] = ACTIONS(1514), + [anon_sym_or] = ACTIONS(1514), + [anon_sym_in] = ACTIONS(1514), + [anon_sym_not_DASHin] = ACTIONS(1514), + [anon_sym_has] = ACTIONS(1514), + [anon_sym_not_DASHhas] = ACTIONS(1514), + [anon_sym_starts_DASHwith] = ACTIONS(1514), + [anon_sym_ends_DASHwith] = ACTIONS(1514), + [anon_sym_EQ_EQ] = ACTIONS(1514), + [anon_sym_BANG_EQ] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_LT_EQ] = ACTIONS(1514), + [anon_sym_GT] = ACTIONS(1512), + [anon_sym_GT_EQ] = ACTIONS(1514), + [aux_sym_cmd_identifier_token41] = ACTIONS(1512), + [sym__newline] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_err_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_GT_PIPE] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1512), + [anon_sym_GT2] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_in2] = ACTIONS(1512), + [anon_sym_STAR2] = ACTIONS(1512), + [anon_sym_and2] = ACTIONS(1512), + [anon_sym_xor2] = ACTIONS(1512), + [anon_sym_or2] = ACTIONS(1512), + [anon_sym_not_DASHin2] = ACTIONS(1512), + [anon_sym_has2] = ACTIONS(1512), + [anon_sym_not_DASHhas2] = ACTIONS(1512), + [anon_sym_starts_DASHwith2] = ACTIONS(1512), + [anon_sym_ends_DASHwith2] = ACTIONS(1512), + [anon_sym_EQ_EQ2] = ACTIONS(1512), + [anon_sym_BANG_EQ2] = ACTIONS(1512), + [anon_sym_LT2] = ACTIONS(1512), + [anon_sym_LT_EQ2] = ACTIONS(1512), + [anon_sym_GT_EQ2] = ACTIONS(1512), + [anon_sym_EQ_TILDE2] = ACTIONS(1512), + [anon_sym_BANG_TILDE2] = ACTIONS(1512), + [anon_sym_STAR_STAR2] = ACTIONS(1512), + [anon_sym_PLUS_PLUS2] = ACTIONS(1512), + [anon_sym_SLASH2] = ACTIONS(1512), + [anon_sym_mod2] = ACTIONS(1512), + [anon_sym_SLASH_SLASH2] = ACTIONS(1512), + [anon_sym_PLUS2] = ACTIONS(1512), + [anon_sym_bit_DASHshl2] = ACTIONS(1512), + [anon_sym_bit_DASHshr2] = ACTIONS(1512), + [anon_sym_bit_DASHand2] = ACTIONS(1512), + [anon_sym_bit_DASHxor2] = ACTIONS(1512), + [anon_sym_bit_DASHor2] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT] = ACTIONS(3476), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [aux_sym__immediate_decimal_token2] = ACTIONS(3478), + [sym_filesize_unit] = ACTIONS(1512), + [sym_duration_unit] = ACTIONS(1514), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3545), }, [1145] = { [sym_comment] = STATE(1145), - [aux_sym_pipe_element_repeat1] = STATE(1144), - [aux_sym_cmd_identifier_token1] = ACTIONS(3547), - [aux_sym_cmd_identifier_token2] = ACTIONS(3547), - [aux_sym_cmd_identifier_token3] = ACTIONS(3547), - [aux_sym_cmd_identifier_token4] = ACTIONS(3547), - [aux_sym_cmd_identifier_token5] = ACTIONS(3547), - [aux_sym_cmd_identifier_token6] = ACTIONS(3547), - [aux_sym_cmd_identifier_token7] = ACTIONS(3547), - [aux_sym_cmd_identifier_token8] = ACTIONS(3547), - [aux_sym_cmd_identifier_token9] = ACTIONS(3547), - [aux_sym_cmd_identifier_token10] = ACTIONS(3547), - [aux_sym_cmd_identifier_token11] = ACTIONS(3547), - [aux_sym_cmd_identifier_token12] = ACTIONS(3547), - [aux_sym_cmd_identifier_token13] = ACTIONS(3547), - [aux_sym_cmd_identifier_token14] = ACTIONS(3547), - [aux_sym_cmd_identifier_token15] = ACTIONS(3547), - [aux_sym_cmd_identifier_token16] = ACTIONS(3547), - [aux_sym_cmd_identifier_token17] = ACTIONS(3547), - [aux_sym_cmd_identifier_token18] = ACTIONS(3547), - [aux_sym_cmd_identifier_token19] = ACTIONS(3547), - [aux_sym_cmd_identifier_token20] = ACTIONS(3547), - [aux_sym_cmd_identifier_token21] = ACTIONS(3547), - [aux_sym_cmd_identifier_token22] = ACTIONS(3547), - [aux_sym_cmd_identifier_token23] = ACTIONS(3547), - [aux_sym_cmd_identifier_token24] = ACTIONS(3547), - [aux_sym_cmd_identifier_token25] = ACTIONS(3547), - [aux_sym_cmd_identifier_token26] = ACTIONS(3547), - [aux_sym_cmd_identifier_token27] = ACTIONS(3547), - [aux_sym_cmd_identifier_token28] = ACTIONS(3547), - [aux_sym_cmd_identifier_token29] = ACTIONS(3547), - [aux_sym_cmd_identifier_token30] = ACTIONS(3547), - [aux_sym_cmd_identifier_token31] = ACTIONS(3547), - [aux_sym_cmd_identifier_token32] = ACTIONS(3547), - [aux_sym_cmd_identifier_token33] = ACTIONS(3547), - [aux_sym_cmd_identifier_token34] = ACTIONS(3547), - [aux_sym_cmd_identifier_token35] = ACTIONS(3547), - [aux_sym_cmd_identifier_token36] = ACTIONS(3547), - [aux_sym_cmd_identifier_token37] = ACTIONS(3547), - [aux_sym_cmd_identifier_token38] = ACTIONS(3547), - [aux_sym_cmd_identifier_token39] = ACTIONS(3547), - [aux_sym_cmd_identifier_token40] = ACTIONS(3547), - [sym__space] = ACTIONS(3549), - [anon_sym_LBRACK] = ACTIONS(3547), - [anon_sym_LPAREN] = ACTIONS(3547), - [anon_sym_DOLLAR] = ACTIONS(3547), - [anon_sym_DASH2] = ACTIONS(3547), - [anon_sym_LBRACE] = ACTIONS(3547), - [anon_sym_DOT_DOT] = ACTIONS(3547), - [aux_sym_expr_unary_token1] = ACTIONS(3547), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3547), - [anon_sym_DOT_DOT_LT] = ACTIONS(3547), - [anon_sym_null] = ACTIONS(3547), - [anon_sym_true] = ACTIONS(3547), - [anon_sym_false] = ACTIONS(3547), - [aux_sym__val_number_decimal_token1] = ACTIONS(3547), - [aux_sym__val_number_decimal_token2] = ACTIONS(3547), - [aux_sym__val_number_decimal_token3] = ACTIONS(3547), - [aux_sym__val_number_decimal_token4] = ACTIONS(3547), - [aux_sym__val_number_token1] = ACTIONS(3547), - [aux_sym__val_number_token2] = ACTIONS(3547), - [aux_sym__val_number_token3] = ACTIONS(3547), - [aux_sym__val_number_token4] = ACTIONS(3547), - [aux_sym__val_number_token5] = ACTIONS(3547), - [aux_sym__val_number_token6] = ACTIONS(3547), - [anon_sym_0b] = ACTIONS(3547), - [anon_sym_0o] = ACTIONS(3547), - [anon_sym_0x] = ACTIONS(3547), - [sym_val_date] = ACTIONS(3547), - [anon_sym_DQUOTE] = ACTIONS(3547), - [sym__str_single_quotes] = ACTIONS(3547), - [sym__str_back_ticks] = ACTIONS(3547), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3547), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3547), - [aux_sym_env_var_token1] = ACTIONS(3547), - [anon_sym_CARET] = ACTIONS(3547), - [aux_sym_command_token1] = ACTIONS(3547), + [ts_builtin_sym_end] = ACTIONS(1620), + [anon_sym_STAR_STAR] = ACTIONS(1620), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1618), + [anon_sym_SLASH] = ACTIONS(1618), + [anon_sym_mod] = ACTIONS(1620), + [anon_sym_SLASH_SLASH] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1618), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_bit_DASHshl] = ACTIONS(1620), + [anon_sym_bit_DASHshr] = ACTIONS(1620), + [anon_sym_EQ_TILDE] = ACTIONS(1620), + [anon_sym_BANG_TILDE] = ACTIONS(1620), + [anon_sym_bit_DASHand] = ACTIONS(1620), + [anon_sym_bit_DASHxor] = ACTIONS(1620), + [anon_sym_bit_DASHor] = ACTIONS(1620), + [anon_sym_and] = ACTIONS(1620), + [anon_sym_xor] = ACTIONS(1620), + [anon_sym_or] = ACTIONS(1620), + [anon_sym_in] = ACTIONS(1620), + [anon_sym_not_DASHin] = ACTIONS(1620), + [anon_sym_has] = ACTIONS(1620), + [anon_sym_not_DASHhas] = ACTIONS(1620), + [anon_sym_starts_DASHwith] = ACTIONS(1620), + [anon_sym_ends_DASHwith] = ACTIONS(1620), + [anon_sym_EQ_EQ] = ACTIONS(1620), + [anon_sym_BANG_EQ] = ACTIONS(1620), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_LT_EQ] = ACTIONS(1620), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_GT_EQ] = ACTIONS(1620), + [aux_sym_cmd_identifier_token41] = ACTIONS(1618), + [sym__newline] = ACTIONS(1618), + [anon_sym_SEMI] = ACTIONS(1618), + [anon_sym_PIPE] = ACTIONS(1618), + [anon_sym_err_GT_PIPE] = ACTIONS(1618), + [anon_sym_out_GT_PIPE] = ACTIONS(1618), + [anon_sym_e_GT_PIPE] = ACTIONS(1618), + [anon_sym_o_GT_PIPE] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1618), + [anon_sym_GT2] = ACTIONS(1618), + [anon_sym_DASH2] = ACTIONS(1618), + [anon_sym_in2] = ACTIONS(1618), + [anon_sym_STAR2] = ACTIONS(1618), + [anon_sym_and2] = ACTIONS(1618), + [anon_sym_xor2] = ACTIONS(1618), + [anon_sym_or2] = ACTIONS(1618), + [anon_sym_not_DASHin2] = ACTIONS(1618), + [anon_sym_has2] = ACTIONS(1618), + [anon_sym_not_DASHhas2] = ACTIONS(1618), + [anon_sym_starts_DASHwith2] = ACTIONS(1618), + [anon_sym_ends_DASHwith2] = ACTIONS(1618), + [anon_sym_EQ_EQ2] = ACTIONS(1618), + [anon_sym_BANG_EQ2] = ACTIONS(1618), + [anon_sym_LT2] = ACTIONS(1618), + [anon_sym_LT_EQ2] = ACTIONS(1618), + [anon_sym_GT_EQ2] = ACTIONS(1618), + [anon_sym_EQ_TILDE2] = ACTIONS(1618), + [anon_sym_BANG_TILDE2] = ACTIONS(1618), + [anon_sym_STAR_STAR2] = ACTIONS(1618), + [anon_sym_PLUS_PLUS2] = ACTIONS(1618), + [anon_sym_SLASH2] = ACTIONS(1618), + [anon_sym_mod2] = ACTIONS(1618), + [anon_sym_SLASH_SLASH2] = ACTIONS(1618), + [anon_sym_PLUS2] = ACTIONS(1618), + [anon_sym_bit_DASHshl2] = ACTIONS(1618), + [anon_sym_bit_DASHshr2] = ACTIONS(1618), + [anon_sym_bit_DASHand2] = ACTIONS(1618), + [anon_sym_bit_DASHxor2] = ACTIONS(1618), + [anon_sym_bit_DASHor2] = ACTIONS(1618), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [aux_sym__immediate_decimal_token2] = ACTIONS(3480), + [sym_filesize_unit] = ACTIONS(1618), + [sym_duration_unit] = ACTIONS(1620), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3551), }, [1146] = { [sym_comment] = STATE(1146), - [aux_sym_shebang_repeat1] = STATE(1146), - [aux_sym_cmd_identifier_token1] = ACTIONS(1296), - [aux_sym_cmd_identifier_token2] = ACTIONS(1298), - [aux_sym_cmd_identifier_token3] = ACTIONS(1298), - [aux_sym_cmd_identifier_token4] = ACTIONS(1298), - [aux_sym_cmd_identifier_token5] = ACTIONS(1298), - [aux_sym_cmd_identifier_token6] = ACTIONS(1298), - [aux_sym_cmd_identifier_token7] = ACTIONS(1298), - [aux_sym_cmd_identifier_token8] = ACTIONS(1298), - [aux_sym_cmd_identifier_token9] = ACTIONS(1296), - [aux_sym_cmd_identifier_token10] = ACTIONS(1298), - [aux_sym_cmd_identifier_token11] = ACTIONS(1298), - [aux_sym_cmd_identifier_token12] = ACTIONS(1298), - [aux_sym_cmd_identifier_token13] = ACTIONS(1296), - [aux_sym_cmd_identifier_token14] = ACTIONS(1298), - [aux_sym_cmd_identifier_token15] = ACTIONS(1296), - [aux_sym_cmd_identifier_token16] = ACTIONS(1298), - [aux_sym_cmd_identifier_token17] = ACTIONS(1298), - [aux_sym_cmd_identifier_token18] = ACTIONS(1296), - [aux_sym_cmd_identifier_token19] = ACTIONS(1298), - [aux_sym_cmd_identifier_token20] = ACTIONS(1298), - [aux_sym_cmd_identifier_token21] = ACTIONS(1298), - [aux_sym_cmd_identifier_token22] = ACTIONS(1298), - [aux_sym_cmd_identifier_token23] = ACTIONS(1298), - [aux_sym_cmd_identifier_token24] = ACTIONS(1298), - [aux_sym_cmd_identifier_token25] = ACTIONS(1298), - [aux_sym_cmd_identifier_token26] = ACTIONS(1298), - [aux_sym_cmd_identifier_token27] = ACTIONS(1298), - [aux_sym_cmd_identifier_token28] = ACTIONS(1298), - [aux_sym_cmd_identifier_token29] = ACTIONS(1298), - [aux_sym_cmd_identifier_token30] = ACTIONS(1298), - [aux_sym_cmd_identifier_token31] = ACTIONS(1298), - [aux_sym_cmd_identifier_token32] = ACTIONS(1296), - [aux_sym_cmd_identifier_token33] = ACTIONS(1298), - [aux_sym_cmd_identifier_token34] = ACTIONS(1296), - [aux_sym_cmd_identifier_token35] = ACTIONS(1298), - [aux_sym_cmd_identifier_token36] = ACTIONS(1298), - [aux_sym_cmd_identifier_token37] = ACTIONS(1298), - [aux_sym_cmd_identifier_token38] = ACTIONS(1296), - [aux_sym_cmd_identifier_token39] = ACTIONS(1298), - [aux_sym_cmd_identifier_token40] = ACTIONS(1298), - [sym__newline] = ACTIONS(3553), - [anon_sym_LBRACK] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1298), - [anon_sym_DOLLAR] = ACTIONS(1296), - [anon_sym_DASH2] = ACTIONS(1296), - [anon_sym_if] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_DOT_DOT] = ACTIONS(1296), - [aux_sym_expr_unary_token1] = ACTIONS(1298), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1298), - [anon_sym_DOT_DOT_LT] = ACTIONS(1298), - [anon_sym_null] = ACTIONS(1296), - [anon_sym_true] = ACTIONS(1296), - [anon_sym_false] = ACTIONS(1296), - [aux_sym__val_number_decimal_token1] = ACTIONS(1296), - [aux_sym__val_number_decimal_token2] = ACTIONS(1298), - [aux_sym__val_number_decimal_token3] = ACTIONS(1298), - [aux_sym__val_number_decimal_token4] = ACTIONS(1298), - [aux_sym__val_number_token1] = ACTIONS(1298), - [aux_sym__val_number_token2] = ACTIONS(1298), - [aux_sym__val_number_token3] = ACTIONS(1298), - [aux_sym__val_number_token4] = ACTIONS(1296), - [aux_sym__val_number_token5] = ACTIONS(1296), - [aux_sym__val_number_token6] = ACTIONS(1296), - [anon_sym_0b] = ACTIONS(1296), - [anon_sym_0o] = ACTIONS(1296), - [anon_sym_0x] = ACTIONS(1296), - [sym_val_date] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1298), - [sym__str_single_quotes] = ACTIONS(1298), - [sym__str_back_ticks] = ACTIONS(1298), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1298), - [anon_sym_CARET] = ACTIONS(1298), - [aux_sym_command_token1] = ACTIONS(1298), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1298), + [anon_sym_STAR_STAR] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_SLASH] = ACTIONS(1512), + [anon_sym_mod] = ACTIONS(1514), + [anon_sym_SLASH_SLASH] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_bit_DASHshl] = ACTIONS(1514), + [anon_sym_bit_DASHshr] = ACTIONS(1514), + [anon_sym_EQ_TILDE] = ACTIONS(1514), + [anon_sym_BANG_TILDE] = ACTIONS(1514), + [anon_sym_bit_DASHand] = ACTIONS(1514), + [anon_sym_bit_DASHxor] = ACTIONS(1514), + [anon_sym_bit_DASHor] = ACTIONS(1514), + [anon_sym_and] = ACTIONS(1514), + [anon_sym_xor] = ACTIONS(1514), + [anon_sym_or] = ACTIONS(1514), + [anon_sym_in] = ACTIONS(1514), + [anon_sym_not_DASHin] = ACTIONS(1514), + [anon_sym_has] = ACTIONS(1514), + [anon_sym_not_DASHhas] = ACTIONS(1514), + [anon_sym_starts_DASHwith] = ACTIONS(1514), + [anon_sym_ends_DASHwith] = ACTIONS(1514), + [anon_sym_EQ_EQ] = ACTIONS(1514), + [anon_sym_BANG_EQ] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_LT_EQ] = ACTIONS(1514), + [anon_sym_GT] = ACTIONS(1512), + [anon_sym_GT_EQ] = ACTIONS(1514), + [aux_sym_cmd_identifier_token41] = ACTIONS(1512), + [sym__newline] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_err_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_GT_PIPE] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1512), + [anon_sym_RPAREN] = ACTIONS(1512), + [anon_sym_GT2] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_in2] = ACTIONS(1512), + [anon_sym_STAR2] = ACTIONS(1512), + [anon_sym_and2] = ACTIONS(1512), + [anon_sym_xor2] = ACTIONS(1512), + [anon_sym_or2] = ACTIONS(1512), + [anon_sym_not_DASHin2] = ACTIONS(1512), + [anon_sym_has2] = ACTIONS(1512), + [anon_sym_not_DASHhas2] = ACTIONS(1512), + [anon_sym_starts_DASHwith2] = ACTIONS(1512), + [anon_sym_ends_DASHwith2] = ACTIONS(1512), + [anon_sym_EQ_EQ2] = ACTIONS(1512), + [anon_sym_BANG_EQ2] = ACTIONS(1512), + [anon_sym_LT2] = ACTIONS(1512), + [anon_sym_LT_EQ2] = ACTIONS(1512), + [anon_sym_GT_EQ2] = ACTIONS(1512), + [anon_sym_EQ_TILDE2] = ACTIONS(1512), + [anon_sym_BANG_TILDE2] = ACTIONS(1512), + [anon_sym_STAR_STAR2] = ACTIONS(1512), + [anon_sym_PLUS_PLUS2] = ACTIONS(1512), + [anon_sym_SLASH2] = ACTIONS(1512), + [anon_sym_mod2] = ACTIONS(1512), + [anon_sym_SLASH_SLASH2] = ACTIONS(1512), + [anon_sym_PLUS2] = ACTIONS(1512), + [anon_sym_bit_DASHshl2] = ACTIONS(1512), + [anon_sym_bit_DASHshr2] = ACTIONS(1512), + [anon_sym_bit_DASHand2] = ACTIONS(1512), + [anon_sym_bit_DASHxor2] = ACTIONS(1512), + [anon_sym_bit_DASHor2] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [aux_sym__immediate_decimal_token2] = ACTIONS(3364), + [sym_filesize_unit] = ACTIONS(1512), + [sym_duration_unit] = ACTIONS(1514), + [anon_sym_POUND] = ACTIONS(3), }, [1147] = { - [sym_env_var] = STATE(6935), + [sym_expr_unary] = STATE(4469), + [sym__expr_unary_minus] = STATE(2502), + [sym_expr_parenthesized] = STATE(4094), + [sym_val_range] = STATE(4469), + [sym__val_range] = STATE(7806), + [sym__val_range_with_end] = STATE(7363), + [sym__value] = STATE(4469), + [sym_val_nothing] = STATE(2419), + [sym_val_bool] = STATE(4186), + [sym_val_variable] = STATE(4099), + [sym_val_number] = STATE(2419), + [sym__val_number_decimal] = STATE(3925), + [sym__val_number] = STATE(2425), + [sym_val_duration] = STATE(2419), + [sym_val_filesize] = STATE(2419), + [sym_val_binary] = STATE(2419), + [sym_val_string] = STATE(2419), + [sym__raw_str] = STATE(1605), + [sym__str_double_quotes] = STATE(1605), + [sym_val_interpolated] = STATE(2419), + [sym__inter_single_quotes] = STATE(2426), + [sym__inter_double_quotes] = STATE(2421), + [sym_val_list] = STATE(2419), + [sym_val_record] = STATE(2419), + [sym_val_table] = STATE(2419), + [sym_val_closure] = STATE(2419), + [sym_unquoted] = STATE(4227), + [sym__unquoted_with_expr] = STATE(4502), + [sym__unquoted_anonymous_prefix] = STATE(6737), [sym_comment] = STATE(1147), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1147), - [aux_sym_cmd_identifier_token1] = ACTIONS(3492), - [aux_sym_cmd_identifier_token2] = ACTIONS(3498), - [aux_sym_cmd_identifier_token3] = ACTIONS(3498), - [aux_sym_cmd_identifier_token4] = ACTIONS(3498), - [aux_sym_cmd_identifier_token5] = ACTIONS(3498), - [aux_sym_cmd_identifier_token6] = ACTIONS(3498), - [aux_sym_cmd_identifier_token7] = ACTIONS(3498), - [aux_sym_cmd_identifier_token8] = ACTIONS(3498), - [aux_sym_cmd_identifier_token9] = ACTIONS(3492), - [aux_sym_cmd_identifier_token10] = ACTIONS(3498), - [aux_sym_cmd_identifier_token11] = ACTIONS(3498), - [aux_sym_cmd_identifier_token12] = ACTIONS(3498), - [aux_sym_cmd_identifier_token13] = ACTIONS(3492), - [aux_sym_cmd_identifier_token14] = ACTIONS(3498), - [aux_sym_cmd_identifier_token15] = ACTIONS(3492), - [aux_sym_cmd_identifier_token16] = ACTIONS(3498), - [aux_sym_cmd_identifier_token17] = ACTIONS(3498), - [aux_sym_cmd_identifier_token18] = ACTIONS(3492), - [aux_sym_cmd_identifier_token19] = ACTIONS(3498), - [aux_sym_cmd_identifier_token20] = ACTIONS(3498), - [aux_sym_cmd_identifier_token21] = ACTIONS(3498), - [aux_sym_cmd_identifier_token22] = ACTIONS(3498), - [aux_sym_cmd_identifier_token23] = ACTIONS(3498), - [aux_sym_cmd_identifier_token24] = ACTIONS(3498), - [aux_sym_cmd_identifier_token25] = ACTIONS(3498), - [aux_sym_cmd_identifier_token26] = ACTIONS(3498), - [aux_sym_cmd_identifier_token27] = ACTIONS(3498), - [aux_sym_cmd_identifier_token28] = ACTIONS(3498), - [aux_sym_cmd_identifier_token29] = ACTIONS(3498), - [aux_sym_cmd_identifier_token30] = ACTIONS(3498), - [aux_sym_cmd_identifier_token31] = ACTIONS(3498), - [aux_sym_cmd_identifier_token32] = ACTIONS(3492), - [aux_sym_cmd_identifier_token33] = ACTIONS(3498), - [aux_sym_cmd_identifier_token34] = ACTIONS(3492), - [aux_sym_cmd_identifier_token35] = ACTIONS(3498), - [aux_sym_cmd_identifier_token36] = ACTIONS(3498), - [aux_sym_cmd_identifier_token37] = ACTIONS(3498), - [aux_sym_cmd_identifier_token38] = ACTIONS(3492), - [aux_sym_cmd_identifier_token39] = ACTIONS(3498), - [aux_sym_cmd_identifier_token40] = ACTIONS(3498), - [anon_sym_LBRACK] = ACTIONS(3498), - [anon_sym_LPAREN] = ACTIONS(3498), - [anon_sym_DOLLAR] = ACTIONS(3492), - [anon_sym_DASH2] = ACTIONS(3492), - [anon_sym_LBRACE] = ACTIONS(3498), - [anon_sym_DOT_DOT] = ACTIONS(3492), - [aux_sym_expr_unary_token1] = ACTIONS(3498), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3498), - [anon_sym_DOT_DOT_LT] = ACTIONS(3498), - [anon_sym_null] = ACTIONS(3492), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(3482), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3484), + [aux_sym_expr_unary_token1] = ACTIONS(3486), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3488), + [anon_sym_DOT_DOT_LT] = ACTIONS(3488), + [anon_sym_null] = ACTIONS(3490), [anon_sym_true] = ACTIONS(3492), [anon_sym_false] = ACTIONS(3492), - [aux_sym__val_number_decimal_token1] = ACTIONS(3492), - [aux_sym__val_number_decimal_token2] = ACTIONS(3498), + [aux_sym__val_number_decimal_token1] = ACTIONS(3494), + [aux_sym__val_number_decimal_token2] = ACTIONS(3496), [aux_sym__val_number_decimal_token3] = ACTIONS(3498), - [aux_sym__val_number_decimal_token4] = ACTIONS(3498), - [aux_sym__val_number_token1] = ACTIONS(3498), - [aux_sym__val_number_token2] = ACTIONS(3498), - [aux_sym__val_number_token3] = ACTIONS(3498), - [aux_sym__val_number_token4] = ACTIONS(3492), - [aux_sym__val_number_token5] = ACTIONS(3492), - [aux_sym__val_number_token6] = ACTIONS(3492), - [anon_sym_0b] = ACTIONS(3492), - [anon_sym_0o] = ACTIONS(3492), - [anon_sym_0x] = ACTIONS(3492), - [sym_val_date] = ACTIONS(3498), - [anon_sym_DQUOTE] = ACTIONS(3498), - [sym__str_single_quotes] = ACTIONS(3498), - [sym__str_back_ticks] = ACTIONS(3498), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3498), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3498), - [aux_sym_env_var_token1] = ACTIONS(3556), - [anon_sym_CARET] = ACTIONS(3498), - [aux_sym_command_token1] = ACTIONS(3498), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3498), + [aux_sym__val_number_decimal_token4] = ACTIONS(3500), + [aux_sym__val_number_token1] = ACTIONS(97), + [aux_sym__val_number_token2] = ACTIONS(97), + [aux_sym__val_number_token3] = ACTIONS(97), + [aux_sym__val_number_token4] = ACTIONS(3502), + [aux_sym__val_number_token5] = ACTIONS(3502), + [aux_sym__val_number_token6] = ACTIONS(3502), + [anon_sym_0b] = ACTIONS(101), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(3504), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym__str_single_quotes] = ACTIONS(109), + [sym__str_back_ticks] = ACTIONS(109), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3506), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1148] = { - [sym_env_var] = STATE(7385), + [sym_expr_unary] = STATE(4306), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_parenthesized] = STATE(4046), + [sym_val_range] = STATE(4306), + [sym__val_range] = STATE(7833), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(4306), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(4102), + [sym_val_variable] = STATE(4075), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3908), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(3793), + [sym__str_double_quotes] = STATE(3793), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(4084), + [sym__unquoted_with_expr] = STATE(4313), + [sym__unquoted_anonymous_prefix] = STATE(6764), [sym_comment] = STATE(1148), - [aux_sym_pipe_element_repeat2] = STATE(1148), - [aux_sym_cmd_identifier_token1] = ACTIONS(3547), - [aux_sym_cmd_identifier_token2] = ACTIONS(3551), - [aux_sym_cmd_identifier_token3] = ACTIONS(3551), - [aux_sym_cmd_identifier_token4] = ACTIONS(3551), - [aux_sym_cmd_identifier_token5] = ACTIONS(3551), - [aux_sym_cmd_identifier_token6] = ACTIONS(3551), - [aux_sym_cmd_identifier_token7] = ACTIONS(3551), - [aux_sym_cmd_identifier_token8] = ACTIONS(3551), - [aux_sym_cmd_identifier_token9] = ACTIONS(3547), - [aux_sym_cmd_identifier_token10] = ACTIONS(3551), - [aux_sym_cmd_identifier_token11] = ACTIONS(3551), - [aux_sym_cmd_identifier_token12] = ACTIONS(3551), - [aux_sym_cmd_identifier_token13] = ACTIONS(3547), - [aux_sym_cmd_identifier_token14] = ACTIONS(3551), - [aux_sym_cmd_identifier_token15] = ACTIONS(3547), - [aux_sym_cmd_identifier_token16] = ACTIONS(3551), - [aux_sym_cmd_identifier_token17] = ACTIONS(3551), - [aux_sym_cmd_identifier_token18] = ACTIONS(3547), - [aux_sym_cmd_identifier_token19] = ACTIONS(3551), - [aux_sym_cmd_identifier_token20] = ACTIONS(3551), - [aux_sym_cmd_identifier_token21] = ACTIONS(3551), - [aux_sym_cmd_identifier_token22] = ACTIONS(3551), - [aux_sym_cmd_identifier_token23] = ACTIONS(3551), - [aux_sym_cmd_identifier_token24] = ACTIONS(3551), - [aux_sym_cmd_identifier_token25] = ACTIONS(3551), - [aux_sym_cmd_identifier_token26] = ACTIONS(3551), - [aux_sym_cmd_identifier_token27] = ACTIONS(3551), - [aux_sym_cmd_identifier_token28] = ACTIONS(3551), - [aux_sym_cmd_identifier_token29] = ACTIONS(3551), - [aux_sym_cmd_identifier_token30] = ACTIONS(3551), - [aux_sym_cmd_identifier_token31] = ACTIONS(3551), - [aux_sym_cmd_identifier_token32] = ACTIONS(3547), - [aux_sym_cmd_identifier_token33] = ACTIONS(3551), - [aux_sym_cmd_identifier_token34] = ACTIONS(3547), - [aux_sym_cmd_identifier_token35] = ACTIONS(3551), - [aux_sym_cmd_identifier_token36] = ACTIONS(3551), - [aux_sym_cmd_identifier_token37] = ACTIONS(3551), - [aux_sym_cmd_identifier_token38] = ACTIONS(3547), - [aux_sym_cmd_identifier_token39] = ACTIONS(3551), - [aux_sym_cmd_identifier_token40] = ACTIONS(3551), - [anon_sym_LBRACK] = ACTIONS(3551), - [anon_sym_LPAREN] = ACTIONS(3551), - [anon_sym_DOLLAR] = ACTIONS(3547), - [anon_sym_DASH2] = ACTIONS(3547), - [anon_sym_LBRACE] = ACTIONS(3551), - [anon_sym_DOT_DOT] = ACTIONS(3547), - [aux_sym_expr_unary_token1] = ACTIONS(3551), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3551), - [anon_sym_DOT_DOT_LT] = ACTIONS(3551), - [anon_sym_null] = ACTIONS(3547), - [anon_sym_true] = ACTIONS(3547), - [anon_sym_false] = ACTIONS(3547), - [aux_sym__val_number_decimal_token1] = ACTIONS(3547), - [aux_sym__val_number_decimal_token2] = ACTIONS(3551), - [aux_sym__val_number_decimal_token3] = ACTIONS(3551), - [aux_sym__val_number_decimal_token4] = ACTIONS(3551), - [aux_sym__val_number_token1] = ACTIONS(3551), - [aux_sym__val_number_token2] = ACTIONS(3551), - [aux_sym__val_number_token3] = ACTIONS(3551), - [aux_sym__val_number_token4] = ACTIONS(3547), - [aux_sym__val_number_token5] = ACTIONS(3547), - [aux_sym__val_number_token6] = ACTIONS(3547), - [anon_sym_0b] = ACTIONS(3547), - [anon_sym_0o] = ACTIONS(3547), - [anon_sym_0x] = ACTIONS(3547), - [sym_val_date] = ACTIONS(3551), - [anon_sym_DQUOTE] = ACTIONS(3551), - [sym__str_single_quotes] = ACTIONS(3551), - [sym__str_back_ticks] = ACTIONS(3551), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3551), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3551), - [aux_sym_env_var_token1] = ACTIONS(3559), - [anon_sym_CARET] = ACTIONS(3551), - [aux_sym_command_token1] = ACTIONS(3551), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3551), + [anon_sym_LBRACK] = ACTIONS(3508), + [anon_sym_LPAREN] = ACTIONS(3510), + [anon_sym_DOLLAR] = ACTIONS(3512), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(3514), + [anon_sym_DOT_DOT] = ACTIONS(3516), + [aux_sym_expr_unary_token1] = ACTIONS(3518), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3520), + [anon_sym_DOT_DOT_LT] = ACTIONS(3520), + [anon_sym_null] = ACTIONS(3522), + [anon_sym_true] = ACTIONS(3524), + [anon_sym_false] = ACTIONS(3524), + [aux_sym__val_number_decimal_token1] = ACTIONS(3526), + [aux_sym__val_number_decimal_token2] = ACTIONS(3528), + [aux_sym__val_number_decimal_token3] = ACTIONS(3530), + [aux_sym__val_number_decimal_token4] = ACTIONS(3532), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3534), + [aux_sym__val_number_token5] = ACTIONS(3534), + [aux_sym__val_number_token6] = ACTIONS(3534), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3536), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym__str_single_quotes] = ACTIONS(1274), + [sym__str_back_ticks] = ACTIONS(1274), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3538), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1276), }, [1149] = { [sym_comment] = STATE(1149), - [anon_sym_STAR_STAR] = ACTIONS(1552), - [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1550), - [anon_sym_SLASH] = ACTIONS(1550), - [anon_sym_mod] = ACTIONS(1552), - [anon_sym_SLASH_SLASH] = ACTIONS(1552), - [anon_sym_PLUS] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1552), - [anon_sym_bit_DASHshl] = ACTIONS(1552), - [anon_sym_bit_DASHshr] = ACTIONS(1552), - [anon_sym_EQ_TILDE] = ACTIONS(1552), - [anon_sym_BANG_TILDE] = ACTIONS(1552), - [anon_sym_bit_DASHand] = ACTIONS(1552), - [anon_sym_bit_DASHxor] = ACTIONS(1552), - [anon_sym_bit_DASHor] = ACTIONS(1552), - [anon_sym_and] = ACTIONS(1552), - [anon_sym_xor] = ACTIONS(1552), - [anon_sym_or] = ACTIONS(1552), - [anon_sym_in] = ACTIONS(1552), - [anon_sym_not_DASHin] = ACTIONS(1552), - [anon_sym_starts_DASHwith] = ACTIONS(1552), - [anon_sym_ends_DASHwith] = ACTIONS(1552), - [anon_sym_EQ_EQ] = ACTIONS(1552), - [anon_sym_BANG_EQ] = ACTIONS(1552), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_LT_EQ] = ACTIONS(1552), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_GT_EQ] = ACTIONS(1552), - [aux_sym_cmd_identifier_token41] = ACTIONS(1550), - [sym__newline] = ACTIONS(1550), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_err_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_GT_PIPE] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1550), - [anon_sym_RPAREN] = ACTIONS(1550), - [anon_sym_GT2] = ACTIONS(1550), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_in2] = ACTIONS(1550), - [anon_sym_STAR2] = ACTIONS(1550), - [anon_sym_and2] = ACTIONS(1550), - [anon_sym_xor2] = ACTIONS(1550), - [anon_sym_or2] = ACTIONS(1550), - [anon_sym_not_DASHin2] = ACTIONS(1550), - [anon_sym_starts_DASHwith2] = ACTIONS(1550), - [anon_sym_ends_DASHwith2] = ACTIONS(1550), - [anon_sym_EQ_EQ2] = ACTIONS(1550), - [anon_sym_BANG_EQ2] = ACTIONS(1550), - [anon_sym_LT2] = ACTIONS(1550), - [anon_sym_LT_EQ2] = ACTIONS(1550), - [anon_sym_GT_EQ2] = ACTIONS(1550), - [anon_sym_EQ_TILDE2] = ACTIONS(1550), - [anon_sym_BANG_TILDE2] = ACTIONS(1550), - [anon_sym_STAR_STAR2] = ACTIONS(1550), - [anon_sym_PLUS_PLUS2] = ACTIONS(1550), - [anon_sym_SLASH2] = ACTIONS(1550), - [anon_sym_mod2] = ACTIONS(1550), - [anon_sym_SLASH_SLASH2] = ACTIONS(1550), - [anon_sym_PLUS2] = ACTIONS(1550), - [anon_sym_bit_DASHshl2] = ACTIONS(1550), - [anon_sym_bit_DASHshr2] = ACTIONS(1550), - [anon_sym_bit_DASHand2] = ACTIONS(1550), - [anon_sym_bit_DASHxor2] = ACTIONS(1550), - [anon_sym_bit_DASHor2] = ACTIONS(1550), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT] = ACTIONS(3562), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [aux_sym__immediate_decimal_token2] = ACTIONS(3564), - [sym_filesize_unit] = ACTIONS(1550), - [sym_duration_unit] = ACTIONS(1552), + [anon_sym_STAR_STAR] = ACTIONS(1691), + [anon_sym_PLUS_PLUS] = ACTIONS(1691), + [anon_sym_STAR] = ACTIONS(1689), + [anon_sym_SLASH] = ACTIONS(1689), + [anon_sym_mod] = ACTIONS(1691), + [anon_sym_SLASH_SLASH] = ACTIONS(1691), + [anon_sym_PLUS] = ACTIONS(1689), + [anon_sym_DASH] = ACTIONS(1691), + [anon_sym_bit_DASHshl] = ACTIONS(1691), + [anon_sym_bit_DASHshr] = ACTIONS(1691), + [anon_sym_EQ_TILDE] = ACTIONS(1691), + [anon_sym_BANG_TILDE] = ACTIONS(1691), + [anon_sym_bit_DASHand] = ACTIONS(1691), + [anon_sym_bit_DASHxor] = ACTIONS(1691), + [anon_sym_bit_DASHor] = ACTIONS(1691), + [anon_sym_and] = ACTIONS(1691), + [anon_sym_xor] = ACTIONS(1691), + [anon_sym_or] = ACTIONS(1691), + [anon_sym_in] = ACTIONS(1691), + [anon_sym_not_DASHin] = ACTIONS(1691), + [anon_sym_has] = ACTIONS(1691), + [anon_sym_not_DASHhas] = ACTIONS(1691), + [anon_sym_starts_DASHwith] = ACTIONS(1691), + [anon_sym_ends_DASHwith] = ACTIONS(1691), + [anon_sym_EQ_EQ] = ACTIONS(1691), + [anon_sym_BANG_EQ] = ACTIONS(1691), + [anon_sym_LT] = ACTIONS(1689), + [anon_sym_LT_EQ] = ACTIONS(1691), + [anon_sym_GT] = ACTIONS(1689), + [anon_sym_GT_EQ] = ACTIONS(1691), + [aux_sym_cmd_identifier_token41] = ACTIONS(1689), + [sym__newline] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1689), + [anon_sym_PIPE] = ACTIONS(1689), + [anon_sym_err_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_GT_PIPE] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1689), + [anon_sym_GT2] = ACTIONS(1689), + [anon_sym_DASH2] = ACTIONS(1689), + [anon_sym_in2] = ACTIONS(1689), + [anon_sym_RBRACE] = ACTIONS(1689), + [anon_sym_STAR2] = ACTIONS(1689), + [anon_sym_and2] = ACTIONS(1689), + [anon_sym_xor2] = ACTIONS(1689), + [anon_sym_or2] = ACTIONS(1689), + [anon_sym_not_DASHin2] = ACTIONS(1689), + [anon_sym_has2] = ACTIONS(1689), + [anon_sym_not_DASHhas2] = ACTIONS(1689), + [anon_sym_starts_DASHwith2] = ACTIONS(1689), + [anon_sym_ends_DASHwith2] = ACTIONS(1689), + [anon_sym_EQ_EQ2] = ACTIONS(1689), + [anon_sym_BANG_EQ2] = ACTIONS(1689), + [anon_sym_LT2] = ACTIONS(1689), + [anon_sym_LT_EQ2] = ACTIONS(1689), + [anon_sym_GT_EQ2] = ACTIONS(1689), + [anon_sym_EQ_TILDE2] = ACTIONS(1689), + [anon_sym_BANG_TILDE2] = ACTIONS(1689), + [anon_sym_STAR_STAR2] = ACTIONS(1689), + [anon_sym_PLUS_PLUS2] = ACTIONS(1689), + [anon_sym_SLASH2] = ACTIONS(1689), + [anon_sym_mod2] = ACTIONS(1689), + [anon_sym_SLASH_SLASH2] = ACTIONS(1689), + [anon_sym_PLUS2] = ACTIONS(1689), + [anon_sym_bit_DASHshl2] = ACTIONS(1689), + [anon_sym_bit_DASHshr2] = ACTIONS(1689), + [anon_sym_bit_DASHand2] = ACTIONS(1689), + [anon_sym_bit_DASHxor2] = ACTIONS(1689), + [anon_sym_bit_DASHor2] = ACTIONS(1689), + [anon_sym_DOT_DOT2] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1691), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1691), + [sym_filesize_unit] = ACTIONS(1689), + [sym_duration_unit] = ACTIONS(1691), [anon_sym_POUND] = ACTIONS(3), }, [1150] = { [sym_comment] = STATE(1150), - [aux_sym_cmd_identifier_token1] = ACTIONS(3566), - [aux_sym_cmd_identifier_token2] = ACTIONS(3566), - [aux_sym_cmd_identifier_token3] = ACTIONS(3566), - [aux_sym_cmd_identifier_token4] = ACTIONS(3566), - [aux_sym_cmd_identifier_token5] = ACTIONS(3566), - [aux_sym_cmd_identifier_token6] = ACTIONS(3566), - [aux_sym_cmd_identifier_token7] = ACTIONS(3566), - [aux_sym_cmd_identifier_token8] = ACTIONS(3566), - [aux_sym_cmd_identifier_token9] = ACTIONS(3566), - [aux_sym_cmd_identifier_token10] = ACTIONS(3566), - [aux_sym_cmd_identifier_token11] = ACTIONS(3566), - [aux_sym_cmd_identifier_token12] = ACTIONS(3566), - [aux_sym_cmd_identifier_token13] = ACTIONS(3566), - [aux_sym_cmd_identifier_token14] = ACTIONS(3566), - [aux_sym_cmd_identifier_token15] = ACTIONS(3566), - [aux_sym_cmd_identifier_token16] = ACTIONS(3566), - [aux_sym_cmd_identifier_token17] = ACTIONS(3566), - [aux_sym_cmd_identifier_token18] = ACTIONS(3566), - [aux_sym_cmd_identifier_token19] = ACTIONS(3566), - [aux_sym_cmd_identifier_token20] = ACTIONS(3566), - [aux_sym_cmd_identifier_token21] = ACTIONS(3566), - [aux_sym_cmd_identifier_token22] = ACTIONS(3566), - [aux_sym_cmd_identifier_token23] = ACTIONS(3566), - [aux_sym_cmd_identifier_token24] = ACTIONS(3566), - [aux_sym_cmd_identifier_token25] = ACTIONS(3566), - [aux_sym_cmd_identifier_token26] = ACTIONS(3566), - [aux_sym_cmd_identifier_token27] = ACTIONS(3566), - [aux_sym_cmd_identifier_token28] = ACTIONS(3566), - [aux_sym_cmd_identifier_token29] = ACTIONS(3566), - [aux_sym_cmd_identifier_token30] = ACTIONS(3566), - [aux_sym_cmd_identifier_token31] = ACTIONS(3566), - [aux_sym_cmd_identifier_token32] = ACTIONS(3566), - [aux_sym_cmd_identifier_token33] = ACTIONS(3566), - [aux_sym_cmd_identifier_token34] = ACTIONS(3566), - [aux_sym_cmd_identifier_token35] = ACTIONS(3566), - [aux_sym_cmd_identifier_token36] = ACTIONS(3566), - [aux_sym_cmd_identifier_token37] = ACTIONS(3566), - [aux_sym_cmd_identifier_token38] = ACTIONS(3566), - [aux_sym_cmd_identifier_token39] = ACTIONS(3566), - [aux_sym_cmd_identifier_token40] = ACTIONS(3566), - [sym__space] = ACTIONS(3568), - [anon_sym_LBRACK] = ACTIONS(3566), - [anon_sym_LPAREN] = ACTIONS(3566), - [anon_sym_DOLLAR] = ACTIONS(3566), - [anon_sym_DASH2] = ACTIONS(3566), - [anon_sym_LBRACE] = ACTIONS(3566), - [anon_sym_DOT_DOT] = ACTIONS(3566), - [aux_sym_expr_unary_token1] = ACTIONS(3566), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3566), - [anon_sym_DOT_DOT_LT] = ACTIONS(3566), - [anon_sym_null] = ACTIONS(3566), - [anon_sym_true] = ACTIONS(3566), - [anon_sym_false] = ACTIONS(3566), - [aux_sym__val_number_decimal_token1] = ACTIONS(3566), - [aux_sym__val_number_decimal_token2] = ACTIONS(3566), - [aux_sym__val_number_decimal_token3] = ACTIONS(3566), - [aux_sym__val_number_decimal_token4] = ACTIONS(3566), - [aux_sym__val_number_token1] = ACTIONS(3566), - [aux_sym__val_number_token2] = ACTIONS(3566), - [aux_sym__val_number_token3] = ACTIONS(3566), - [aux_sym__val_number_token4] = ACTIONS(3566), - [aux_sym__val_number_token5] = ACTIONS(3566), - [aux_sym__val_number_token6] = ACTIONS(3566), - [anon_sym_0b] = ACTIONS(3566), - [anon_sym_0o] = ACTIONS(3566), - [anon_sym_0x] = ACTIONS(3566), - [sym_val_date] = ACTIONS(3566), - [anon_sym_DQUOTE] = ACTIONS(3566), - [sym__str_single_quotes] = ACTIONS(3566), - [sym__str_back_ticks] = ACTIONS(3566), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3566), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3566), - [aux_sym_env_var_token1] = ACTIONS(3566), - [anon_sym_CARET] = ACTIONS(3566), - [aux_sym_command_token1] = ACTIONS(3566), + [anon_sym_STAR_STAR] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_STAR] = ACTIONS(1504), + [anon_sym_SLASH] = ACTIONS(1504), + [anon_sym_mod] = ACTIONS(1506), + [anon_sym_SLASH_SLASH] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_bit_DASHshl] = ACTIONS(1506), + [anon_sym_bit_DASHshr] = ACTIONS(1506), + [anon_sym_EQ_TILDE] = ACTIONS(1506), + [anon_sym_BANG_TILDE] = ACTIONS(1506), + [anon_sym_bit_DASHand] = ACTIONS(1506), + [anon_sym_bit_DASHxor] = ACTIONS(1506), + [anon_sym_bit_DASHor] = ACTIONS(1506), + [anon_sym_and] = ACTIONS(1506), + [anon_sym_xor] = ACTIONS(1506), + [anon_sym_or] = ACTIONS(1506), + [anon_sym_in] = ACTIONS(1506), + [anon_sym_not_DASHin] = ACTIONS(1506), + [anon_sym_has] = ACTIONS(1506), + [anon_sym_not_DASHhas] = 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_LT] = ACTIONS(1504), + [anon_sym_LT_EQ] = ACTIONS(1506), + [anon_sym_GT] = ACTIONS(1504), + [anon_sym_GT_EQ] = ACTIONS(1506), + [aux_sym_cmd_identifier_token41] = ACTIONS(1504), + [sym__newline] = ACTIONS(1504), + [anon_sym_SEMI] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_err_GT_PIPE] = ACTIONS(1504), + [anon_sym_out_GT_PIPE] = ACTIONS(1504), + [anon_sym_e_GT_PIPE] = ACTIONS(1504), + [anon_sym_o_GT_PIPE] = ACTIONS(1504), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1504), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1504), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1504), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1504), + [anon_sym_GT2] = ACTIONS(1504), + [anon_sym_DASH2] = ACTIONS(1504), + [anon_sym_in2] = ACTIONS(1504), + [anon_sym_RBRACE] = ACTIONS(1504), + [anon_sym_STAR2] = ACTIONS(1504), + [anon_sym_and2] = ACTIONS(1504), + [anon_sym_xor2] = ACTIONS(1504), + [anon_sym_or2] = ACTIONS(1504), + [anon_sym_not_DASHin2] = ACTIONS(1504), + [anon_sym_has2] = ACTIONS(1504), + [anon_sym_not_DASHhas2] = ACTIONS(1504), + [anon_sym_starts_DASHwith2] = ACTIONS(1504), + [anon_sym_ends_DASHwith2] = ACTIONS(1504), + [anon_sym_EQ_EQ2] = ACTIONS(1504), + [anon_sym_BANG_EQ2] = ACTIONS(1504), + [anon_sym_LT2] = ACTIONS(1504), + [anon_sym_LT_EQ2] = ACTIONS(1504), + [anon_sym_GT_EQ2] = ACTIONS(1504), + [anon_sym_EQ_TILDE2] = ACTIONS(1504), + [anon_sym_BANG_TILDE2] = ACTIONS(1504), + [anon_sym_STAR_STAR2] = ACTIONS(1504), + [anon_sym_PLUS_PLUS2] = ACTIONS(1504), + [anon_sym_SLASH2] = ACTIONS(1504), + [anon_sym_mod2] = ACTIONS(1504), + [anon_sym_SLASH_SLASH2] = ACTIONS(1504), + [anon_sym_PLUS2] = ACTIONS(1504), + [anon_sym_bit_DASHshl2] = ACTIONS(1504), + [anon_sym_bit_DASHshr2] = ACTIONS(1504), + [anon_sym_bit_DASHand2] = ACTIONS(1504), + [anon_sym_bit_DASHxor2] = ACTIONS(1504), + [anon_sym_bit_DASHor2] = ACTIONS(1504), + [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_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3568), }, [1151] = { + [sym_expr_unary] = STATE(4543), + [sym__expr_unary_minus] = STATE(2502), + [sym_expr_parenthesized] = STATE(4145), + [sym_val_range] = STATE(4543), + [sym__val_range] = STATE(7806), + [sym__val_range_with_end] = STATE(7363), + [sym__value] = STATE(4543), + [sym_val_nothing] = STATE(2419), + [sym_val_bool] = STATE(4186), + [sym_val_variable] = STATE(4099), + [sym_val_number] = STATE(2419), + [sym__val_number_decimal] = STATE(3925), + [sym__val_number] = STATE(2425), + [sym_val_duration] = STATE(2419), + [sym_val_filesize] = STATE(2419), + [sym_val_binary] = STATE(2419), + [sym_val_string] = STATE(2419), + [sym__raw_str] = STATE(1605), + [sym__str_double_quotes] = STATE(1605), + [sym_val_interpolated] = STATE(2419), + [sym__inter_single_quotes] = STATE(2426), + [sym__inter_double_quotes] = STATE(2421), + [sym_val_list] = STATE(2419), + [sym_val_record] = STATE(2419), + [sym_val_table] = STATE(2419), + [sym_val_closure] = STATE(2419), + [sym_unquoted] = STATE(4190), + [sym__unquoted_with_expr] = STATE(4476), + [sym__unquoted_anonymous_prefix] = STATE(6737), [sym_comment] = STATE(1151), - [ts_builtin_sym_end] = ACTIONS(1552), - [anon_sym_STAR_STAR] = ACTIONS(1552), - [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1550), - [anon_sym_SLASH] = ACTIONS(1550), - [anon_sym_mod] = ACTIONS(1552), - [anon_sym_SLASH_SLASH] = ACTIONS(1552), - [anon_sym_PLUS] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1552), - [anon_sym_bit_DASHshl] = ACTIONS(1552), - [anon_sym_bit_DASHshr] = ACTIONS(1552), - [anon_sym_EQ_TILDE] = ACTIONS(1552), - [anon_sym_BANG_TILDE] = ACTIONS(1552), - [anon_sym_bit_DASHand] = ACTIONS(1552), - [anon_sym_bit_DASHxor] = ACTIONS(1552), - [anon_sym_bit_DASHor] = ACTIONS(1552), - [anon_sym_and] = ACTIONS(1552), - [anon_sym_xor] = ACTIONS(1552), - [anon_sym_or] = ACTIONS(1552), - [anon_sym_in] = ACTIONS(1552), - [anon_sym_not_DASHin] = ACTIONS(1552), - [anon_sym_starts_DASHwith] = ACTIONS(1552), - [anon_sym_ends_DASHwith] = ACTIONS(1552), - [anon_sym_EQ_EQ] = ACTIONS(1552), - [anon_sym_BANG_EQ] = ACTIONS(1552), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_LT_EQ] = ACTIONS(1552), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_GT_EQ] = ACTIONS(1552), - [aux_sym_cmd_identifier_token41] = ACTIONS(1550), - [sym__newline] = ACTIONS(1550), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_err_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_GT_PIPE] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1550), - [anon_sym_GT2] = ACTIONS(1550), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_in2] = ACTIONS(1550), - [anon_sym_STAR2] = ACTIONS(1550), - [anon_sym_and2] = ACTIONS(1550), - [anon_sym_xor2] = ACTIONS(1550), - [anon_sym_or2] = ACTIONS(1550), - [anon_sym_not_DASHin2] = ACTIONS(1550), - [anon_sym_starts_DASHwith2] = ACTIONS(1550), - [anon_sym_ends_DASHwith2] = ACTIONS(1550), - [anon_sym_EQ_EQ2] = ACTIONS(1550), - [anon_sym_BANG_EQ2] = ACTIONS(1550), - [anon_sym_LT2] = ACTIONS(1550), - [anon_sym_LT_EQ2] = ACTIONS(1550), - [anon_sym_GT_EQ2] = ACTIONS(1550), - [anon_sym_EQ_TILDE2] = ACTIONS(1550), - [anon_sym_BANG_TILDE2] = ACTIONS(1550), - [anon_sym_STAR_STAR2] = ACTIONS(1550), - [anon_sym_PLUS_PLUS2] = ACTIONS(1550), - [anon_sym_SLASH2] = ACTIONS(1550), - [anon_sym_mod2] = ACTIONS(1550), - [anon_sym_SLASH_SLASH2] = ACTIONS(1550), - [anon_sym_PLUS2] = ACTIONS(1550), - [anon_sym_bit_DASHshl2] = ACTIONS(1550), - [anon_sym_bit_DASHshr2] = ACTIONS(1550), - [anon_sym_bit_DASHand2] = ACTIONS(1550), - [anon_sym_bit_DASHxor2] = ACTIONS(1550), - [anon_sym_bit_DASHor2] = ACTIONS(1550), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT] = ACTIONS(3570), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [aux_sym__immediate_decimal_token2] = ACTIONS(3572), - [sym_filesize_unit] = ACTIONS(1550), - [sym_duration_unit] = ACTIONS(1552), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(3482), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3484), + [aux_sym_expr_unary_token1] = ACTIONS(3486), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3488), + [anon_sym_DOT_DOT_LT] = ACTIONS(3488), + [anon_sym_null] = ACTIONS(3490), + [anon_sym_true] = ACTIONS(3492), + [anon_sym_false] = ACTIONS(3492), + [aux_sym__val_number_decimal_token1] = ACTIONS(3494), + [aux_sym__val_number_decimal_token2] = ACTIONS(3496), + [aux_sym__val_number_decimal_token3] = ACTIONS(3498), + [aux_sym__val_number_decimal_token4] = ACTIONS(3500), + [aux_sym__val_number_token1] = ACTIONS(97), + [aux_sym__val_number_token2] = ACTIONS(97), + [aux_sym__val_number_token3] = ACTIONS(97), + [aux_sym__val_number_token4] = ACTIONS(3502), + [aux_sym__val_number_token5] = ACTIONS(3502), + [aux_sym__val_number_token6] = ACTIONS(3502), + [anon_sym_0b] = ACTIONS(101), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(3504), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym__str_single_quotes] = ACTIONS(109), + [sym__str_back_ticks] = ACTIONS(109), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3506), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1152] = { - [sym_expr_parenthesized] = STATE(4543), - [sym_val_range] = STATE(5034), - [sym__val_range] = STATE(7565), - [sym__val_range_with_end] = STATE(7339), - [sym__value] = STATE(5034), - [sym_val_nothing] = STATE(4353), - [sym_val_bool] = STATE(4671), - [sym_val_variable] = STATE(4517), - [sym_val_number] = STATE(4353), - [sym__val_number_decimal] = STATE(4023), - [sym__val_number] = STATE(4251), - [sym_val_duration] = STATE(4353), - [sym_val_filesize] = STATE(4353), - [sym_val_binary] = STATE(4353), - [sym_val_string] = STATE(4353), - [sym__raw_str] = STATE(4208), - [sym__str_double_quotes] = STATE(4208), - [sym_val_interpolated] = STATE(4353), - [sym__inter_single_quotes] = STATE(5076), - [sym__inter_double_quotes] = STATE(5077), - [sym_val_list] = STATE(4353), - [sym_val_record] = STATE(4353), - [sym_val_table] = STATE(4353), - [sym_val_closure] = STATE(4353), - [sym__unquoted_in_record] = STATE(4679), - [sym__unquoted_in_record_with_expr] = STATE(5034), - [sym__unquoted_anonymous_prefix] = STATE(6716), + [sym_expr_unary] = STATE(4479), + [sym__expr_unary_minus] = STATE(2502), + [sym_expr_parenthesized] = STATE(4109), + [sym_val_range] = STATE(4479), + [sym__val_range] = STATE(7806), + [sym__val_range_with_end] = STATE(7363), + [sym__value] = STATE(4479), + [sym_val_nothing] = STATE(2419), + [sym_val_bool] = STATE(4186), + [sym_val_variable] = STATE(4099), + [sym_val_number] = STATE(2419), + [sym__val_number_decimal] = STATE(3925), + [sym__val_number] = STATE(2425), + [sym_val_duration] = STATE(2419), + [sym_val_filesize] = STATE(2419), + [sym_val_binary] = STATE(2419), + [sym_val_string] = STATE(2419), + [sym__raw_str] = STATE(1605), + [sym__str_double_quotes] = STATE(1605), + [sym_val_interpolated] = STATE(2419), + [sym__inter_single_quotes] = STATE(2426), + [sym__inter_double_quotes] = STATE(2421), + [sym_val_list] = STATE(2419), + [sym_val_record] = STATE(2419), + [sym_val_table] = STATE(2419), + [sym_val_closure] = STATE(2419), + [sym_unquoted] = STATE(4175), + [sym__unquoted_with_expr] = STATE(4498), + [sym__unquoted_anonymous_prefix] = STATE(6737), [sym_comment] = STATE(1152), - [aux_sym_shebang_repeat1] = STATE(1161), - [sym__newline] = ACTIONS(3574), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_DOLLAR] = ACTIONS(3580), - [anon_sym_LBRACE] = ACTIONS(3582), - [anon_sym_DOT_DOT] = ACTIONS(3584), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3586), - [anon_sym_DOT_DOT_LT] = ACTIONS(3586), - [anon_sym_null] = ACTIONS(3588), - [anon_sym_true] = ACTIONS(3590), - [anon_sym_false] = ACTIONS(3590), - [aux_sym__val_number_decimal_token1] = ACTIONS(3592), - [aux_sym__val_number_decimal_token2] = ACTIONS(3594), - [aux_sym__val_number_decimal_token3] = ACTIONS(3596), - [aux_sym__val_number_decimal_token4] = ACTIONS(3598), - [aux_sym__val_number_token1] = ACTIONS(3600), - [aux_sym__val_number_token2] = ACTIONS(3600), - [aux_sym__val_number_token3] = ACTIONS(3600), - [aux_sym__val_number_token4] = ACTIONS(3602), - [aux_sym__val_number_token5] = ACTIONS(3602), - [aux_sym__val_number_token6] = ACTIONS(3602), - [anon_sym_0b] = ACTIONS(3604), - [anon_sym_0o] = ACTIONS(3606), - [anon_sym_0x] = ACTIONS(3606), - [sym_val_date] = ACTIONS(3608), - [anon_sym_DQUOTE] = ACTIONS(3610), - [sym__str_single_quotes] = ACTIONS(3612), - [sym__str_back_ticks] = ACTIONS(3612), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3614), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3616), - [anon_sym_err_GT] = ACTIONS(3618), - [anon_sym_out_GT] = ACTIONS(3618), - [anon_sym_e_GT] = ACTIONS(3618), - [anon_sym_o_GT] = ACTIONS(3618), - [anon_sym_err_PLUSout_GT] = ACTIONS(3618), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3618), - [anon_sym_o_PLUSe_GT] = ACTIONS(3618), - [anon_sym_e_PLUSo_GT] = ACTIONS(3618), - [anon_sym_err_GT_GT] = ACTIONS(3620), - [anon_sym_out_GT_GT] = ACTIONS(3620), - [anon_sym_e_GT_GT] = ACTIONS(3620), - [anon_sym_o_GT_GT] = ACTIONS(3620), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3620), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3620), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3620), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3620), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3622), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3624), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(3482), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3484), + [aux_sym_expr_unary_token1] = ACTIONS(3486), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3488), + [anon_sym_DOT_DOT_LT] = ACTIONS(3488), + [anon_sym_null] = ACTIONS(3490), + [anon_sym_true] = ACTIONS(3492), + [anon_sym_false] = ACTIONS(3492), + [aux_sym__val_number_decimal_token1] = ACTIONS(3494), + [aux_sym__val_number_decimal_token2] = ACTIONS(3496), + [aux_sym__val_number_decimal_token3] = ACTIONS(3498), + [aux_sym__val_number_decimal_token4] = ACTIONS(3500), + [aux_sym__val_number_token1] = ACTIONS(97), + [aux_sym__val_number_token2] = ACTIONS(97), + [aux_sym__val_number_token3] = ACTIONS(97), + [aux_sym__val_number_token4] = ACTIONS(3502), + [aux_sym__val_number_token5] = ACTIONS(3502), + [aux_sym__val_number_token6] = ACTIONS(3502), + [anon_sym_0b] = ACTIONS(101), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(3504), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym__str_single_quotes] = ACTIONS(109), + [sym__str_back_ticks] = ACTIONS(109), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3506), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1153] = { - [sym_match_arm] = STATE(7190), - [sym_default_arm] = STATE(7190), - [sym_match_pattern] = STATE(7704), - [sym__match_pattern] = STATE(6020), - [sym__match_pattern_expression] = STATE(7226), - [sym__match_pattern_value] = STATE(7259), - [sym__match_pattern_list] = STATE(7280), - [sym__match_pattern_record] = STATE(6737), - [sym_expr_parenthesized] = STATE(5787), - [sym_val_range] = STATE(7259), - [sym__val_range] = STATE(7519), - [sym_val_nothing] = STATE(6734), - [sym_val_bool] = STATE(6677), - [sym_val_variable] = STATE(5731), - [sym_val_number] = STATE(6734), - [sym__val_number_decimal] = STATE(5363), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(6734), - [sym_val_filesize] = STATE(6734), - [sym_val_binary] = STATE(6734), - [sym_val_string] = STATE(6734), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_table] = STATE(6734), - [sym_unquoted] = STATE(7105), - [sym__unquoted_anonymous_prefix] = STATE(7789), [sym_comment] = STATE(1153), - [aux_sym_shebang_repeat1] = STATE(1175), - [aux_sym_ctrl_match_repeat1] = STATE(1209), - [sym__newline] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3630), - [anon_sym_LBRACE] = ACTIONS(3632), - [anon_sym_RBRACE] = ACTIONS(3634), - [anon_sym__] = ACTIONS(3636), - [anon_sym_DOT_DOT] = ACTIONS(3638), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3640), - [anon_sym_DOT_DOT_LT] = ACTIONS(3640), - [anon_sym_null] = ACTIONS(3642), - [anon_sym_true] = ACTIONS(3644), - [anon_sym_false] = ACTIONS(3644), - [aux_sym__val_number_decimal_token1] = ACTIONS(3646), - [aux_sym__val_number_decimal_token2] = ACTIONS(3648), - [aux_sym__val_number_decimal_token3] = ACTIONS(3650), - [aux_sym__val_number_decimal_token4] = ACTIONS(3652), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3654), - [aux_sym__val_number_token5] = ACTIONS(3654), - [aux_sym__val_number_token6] = ACTIONS(3654), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3656), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3490), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(1691), + [anon_sym_PLUS_PLUS] = ACTIONS(1691), + [anon_sym_STAR] = ACTIONS(1689), + [anon_sym_SLASH] = ACTIONS(1689), + [anon_sym_mod] = ACTIONS(1691), + [anon_sym_SLASH_SLASH] = ACTIONS(1691), + [anon_sym_PLUS] = ACTIONS(1689), + [anon_sym_DASH] = ACTIONS(1691), + [anon_sym_bit_DASHshl] = ACTIONS(1691), + [anon_sym_bit_DASHshr] = ACTIONS(1691), + [anon_sym_EQ_TILDE] = ACTIONS(1691), + [anon_sym_BANG_TILDE] = ACTIONS(1691), + [anon_sym_bit_DASHand] = ACTIONS(1691), + [anon_sym_bit_DASHxor] = ACTIONS(1691), + [anon_sym_bit_DASHor] = ACTIONS(1691), + [anon_sym_and] = ACTIONS(1691), + [anon_sym_xor] = ACTIONS(1691), + [anon_sym_or] = ACTIONS(1691), + [anon_sym_in] = ACTIONS(1691), + [anon_sym_not_DASHin] = ACTIONS(1691), + [anon_sym_has] = ACTIONS(1691), + [anon_sym_not_DASHhas] = ACTIONS(1691), + [anon_sym_starts_DASHwith] = ACTIONS(1691), + [anon_sym_ends_DASHwith] = ACTIONS(1691), + [anon_sym_EQ_EQ] = ACTIONS(1691), + [anon_sym_BANG_EQ] = ACTIONS(1691), + [anon_sym_LT] = ACTIONS(1689), + [anon_sym_LT_EQ] = ACTIONS(1691), + [anon_sym_GT] = ACTIONS(1689), + [anon_sym_GT_EQ] = ACTIONS(1691), + [aux_sym_cmd_identifier_token41] = ACTIONS(1689), + [sym__newline] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1689), + [anon_sym_PIPE] = ACTIONS(1689), + [anon_sym_err_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_GT_PIPE] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1689), + [anon_sym_RPAREN] = ACTIONS(1689), + [anon_sym_GT2] = ACTIONS(1689), + [anon_sym_DASH2] = ACTIONS(1689), + [anon_sym_in2] = ACTIONS(1689), + [anon_sym_STAR2] = ACTIONS(1689), + [anon_sym_and2] = ACTIONS(1689), + [anon_sym_xor2] = ACTIONS(1689), + [anon_sym_or2] = ACTIONS(1689), + [anon_sym_not_DASHin2] = ACTIONS(1689), + [anon_sym_has2] = ACTIONS(1689), + [anon_sym_not_DASHhas2] = ACTIONS(1689), + [anon_sym_starts_DASHwith2] = ACTIONS(1689), + [anon_sym_ends_DASHwith2] = ACTIONS(1689), + [anon_sym_EQ_EQ2] = ACTIONS(1689), + [anon_sym_BANG_EQ2] = ACTIONS(1689), + [anon_sym_LT2] = ACTIONS(1689), + [anon_sym_LT_EQ2] = ACTIONS(1689), + [anon_sym_GT_EQ2] = ACTIONS(1689), + [anon_sym_EQ_TILDE2] = ACTIONS(1689), + [anon_sym_BANG_TILDE2] = ACTIONS(1689), + [anon_sym_STAR_STAR2] = ACTIONS(1689), + [anon_sym_PLUS_PLUS2] = ACTIONS(1689), + [anon_sym_SLASH2] = ACTIONS(1689), + [anon_sym_mod2] = ACTIONS(1689), + [anon_sym_SLASH_SLASH2] = ACTIONS(1689), + [anon_sym_PLUS2] = ACTIONS(1689), + [anon_sym_bit_DASHshl2] = ACTIONS(1689), + [anon_sym_bit_DASHshr2] = ACTIONS(1689), + [anon_sym_bit_DASHand2] = ACTIONS(1689), + [anon_sym_bit_DASHxor2] = ACTIONS(1689), + [anon_sym_bit_DASHor2] = ACTIONS(1689), + [anon_sym_DOT_DOT2] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1691), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1691), + [sym_filesize_unit] = ACTIONS(1689), + [sym_duration_unit] = ACTIONS(1691), + [anon_sym_POUND] = ACTIONS(3), }, [1154] = { - [sym_match_arm] = STATE(6815), - [sym_default_arm] = STATE(6815), - [sym_match_pattern] = STATE(7704), - [sym__match_pattern] = STATE(6020), - [sym__match_pattern_expression] = STATE(7226), - [sym__match_pattern_value] = STATE(7259), - [sym__match_pattern_list] = STATE(7280), - [sym__match_pattern_record] = STATE(6737), - [sym_expr_parenthesized] = STATE(5787), - [sym_val_range] = STATE(7259), - [sym__val_range] = STATE(7519), - [sym_val_nothing] = STATE(6734), - [sym_val_bool] = STATE(6677), - [sym_val_variable] = STATE(5731), - [sym_val_number] = STATE(6734), - [sym__val_number_decimal] = STATE(5363), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(6734), - [sym_val_filesize] = STATE(6734), - [sym_val_binary] = STATE(6734), - [sym_val_string] = STATE(6734), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_table] = STATE(6734), - [sym_unquoted] = STATE(7105), - [sym__unquoted_anonymous_prefix] = STATE(7789), [sym_comment] = STATE(1154), - [aux_sym_shebang_repeat1] = STATE(1169), - [aux_sym_ctrl_match_repeat1] = STATE(1223), - [sym__newline] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3630), - [anon_sym_LBRACE] = ACTIONS(3632), - [anon_sym_RBRACE] = ACTIONS(3658), - [anon_sym__] = ACTIONS(3636), - [anon_sym_DOT_DOT] = ACTIONS(3638), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3640), - [anon_sym_DOT_DOT_LT] = ACTIONS(3640), - [anon_sym_null] = ACTIONS(3642), - [anon_sym_true] = ACTIONS(3644), - [anon_sym_false] = ACTIONS(3644), - [aux_sym__val_number_decimal_token1] = ACTIONS(3646), - [aux_sym__val_number_decimal_token2] = ACTIONS(3648), - [aux_sym__val_number_decimal_token3] = ACTIONS(3650), - [aux_sym__val_number_decimal_token4] = ACTIONS(3652), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3654), - [aux_sym__val_number_token5] = ACTIONS(3654), - [aux_sym__val_number_token6] = ACTIONS(3654), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3656), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3490), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_STAR] = ACTIONS(1504), + [anon_sym_SLASH] = ACTIONS(1504), + [anon_sym_mod] = ACTIONS(1506), + [anon_sym_SLASH_SLASH] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_bit_DASHshl] = ACTIONS(1506), + [anon_sym_bit_DASHshr] = ACTIONS(1506), + [anon_sym_EQ_TILDE] = ACTIONS(1506), + [anon_sym_BANG_TILDE] = ACTIONS(1506), + [anon_sym_bit_DASHand] = ACTIONS(1506), + [anon_sym_bit_DASHxor] = ACTIONS(1506), + [anon_sym_bit_DASHor] = ACTIONS(1506), + [anon_sym_and] = ACTIONS(1506), + [anon_sym_xor] = ACTIONS(1506), + [anon_sym_or] = ACTIONS(1506), + [anon_sym_in] = ACTIONS(1506), + [anon_sym_not_DASHin] = ACTIONS(1506), + [anon_sym_has] = ACTIONS(1506), + [anon_sym_not_DASHhas] = 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_LT] = ACTIONS(1504), + [anon_sym_LT_EQ] = ACTIONS(1506), + [anon_sym_GT] = ACTIONS(1504), + [anon_sym_GT_EQ] = ACTIONS(1506), + [aux_sym_cmd_identifier_token41] = ACTIONS(1504), + [sym__newline] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_err_GT_PIPE] = ACTIONS(1504), + [anon_sym_out_GT_PIPE] = ACTIONS(1504), + [anon_sym_e_GT_PIPE] = ACTIONS(1504), + [anon_sym_o_GT_PIPE] = ACTIONS(1504), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1504), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1504), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1504), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1504), + [anon_sym_GT2] = ACTIONS(1504), + [anon_sym_DASH2] = ACTIONS(1504), + [anon_sym_in2] = ACTIONS(1504), + [anon_sym_STAR2] = ACTIONS(1504), + [anon_sym_and2] = ACTIONS(1504), + [anon_sym_xor2] = ACTIONS(1504), + [anon_sym_or2] = ACTIONS(1504), + [anon_sym_not_DASHin2] = ACTIONS(1504), + [anon_sym_has2] = ACTIONS(1504), + [anon_sym_not_DASHhas2] = ACTIONS(1504), + [anon_sym_starts_DASHwith2] = ACTIONS(1504), + [anon_sym_ends_DASHwith2] = ACTIONS(1504), + [anon_sym_EQ_EQ2] = ACTIONS(1504), + [anon_sym_BANG_EQ2] = ACTIONS(1504), + [anon_sym_LT2] = ACTIONS(1504), + [anon_sym_LT_EQ2] = ACTIONS(1504), + [anon_sym_GT_EQ2] = ACTIONS(1504), + [anon_sym_EQ_TILDE2] = ACTIONS(1504), + [anon_sym_BANG_TILDE2] = ACTIONS(1504), + [anon_sym_STAR_STAR2] = ACTIONS(1504), + [anon_sym_PLUS_PLUS2] = ACTIONS(1504), + [anon_sym_SLASH2] = ACTIONS(1504), + [anon_sym_mod2] = ACTIONS(1504), + [anon_sym_SLASH_SLASH2] = ACTIONS(1504), + [anon_sym_PLUS2] = ACTIONS(1504), + [anon_sym_bit_DASHshl2] = ACTIONS(1504), + [anon_sym_bit_DASHshr2] = ACTIONS(1504), + [anon_sym_bit_DASHand2] = ACTIONS(1504), + [anon_sym_bit_DASHxor2] = ACTIONS(1504), + [anon_sym_bit_DASHor2] = ACTIONS(1504), + [anon_sym_DOT_DOT2] = ACTIONS(1504), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1506), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1506), + [aux_sym__immediate_decimal_token1] = ACTIONS(3540), + [aux_sym__immediate_decimal_token2] = ACTIONS(3542), + [sym_filesize_unit] = ACTIONS(1504), + [sym_duration_unit] = ACTIONS(1506), + [anon_sym_POUND] = ACTIONS(3), }, [1155] = { [sym_comment] = STATE(1155), - [ts_builtin_sym_end] = ACTIONS(1544), - [anon_sym_STAR_STAR] = ACTIONS(1544), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_STAR] = ACTIONS(1542), - [anon_sym_SLASH] = ACTIONS(1542), - [anon_sym_mod] = ACTIONS(1544), - [anon_sym_SLASH_SLASH] = ACTIONS(1544), - [anon_sym_PLUS] = ACTIONS(1542), - [anon_sym_DASH] = ACTIONS(1544), - [anon_sym_bit_DASHshl] = ACTIONS(1544), - [anon_sym_bit_DASHshr] = ACTIONS(1544), - [anon_sym_EQ_TILDE] = ACTIONS(1544), - [anon_sym_BANG_TILDE] = ACTIONS(1544), - [anon_sym_bit_DASHand] = ACTIONS(1544), - [anon_sym_bit_DASHxor] = ACTIONS(1544), - [anon_sym_bit_DASHor] = ACTIONS(1544), - [anon_sym_and] = ACTIONS(1544), - [anon_sym_xor] = ACTIONS(1544), - [anon_sym_or] = ACTIONS(1544), - [anon_sym_in] = ACTIONS(1544), - [anon_sym_not_DASHin] = ACTIONS(1544), - [anon_sym_starts_DASHwith] = ACTIONS(1544), - [anon_sym_ends_DASHwith] = ACTIONS(1544), - [anon_sym_EQ_EQ] = ACTIONS(1544), - [anon_sym_BANG_EQ] = ACTIONS(1544), - [anon_sym_LT] = ACTIONS(1542), - [anon_sym_LT_EQ] = ACTIONS(1544), - [anon_sym_GT] = ACTIONS(1542), - [anon_sym_GT_EQ] = ACTIONS(1544), - [aux_sym_cmd_identifier_token41] = ACTIONS(1542), - [sym__newline] = ACTIONS(1542), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_err_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_GT_PIPE] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), - [anon_sym_GT2] = ACTIONS(1542), - [anon_sym_DASH2] = ACTIONS(1542), - [anon_sym_in2] = ACTIONS(1542), - [anon_sym_STAR2] = ACTIONS(1542), - [anon_sym_and2] = ACTIONS(1542), - [anon_sym_xor2] = ACTIONS(1542), - [anon_sym_or2] = ACTIONS(1542), - [anon_sym_not_DASHin2] = ACTIONS(1542), - [anon_sym_starts_DASHwith2] = ACTIONS(1542), - [anon_sym_ends_DASHwith2] = ACTIONS(1542), - [anon_sym_EQ_EQ2] = ACTIONS(1542), - [anon_sym_BANG_EQ2] = ACTIONS(1542), - [anon_sym_LT2] = ACTIONS(1542), - [anon_sym_LT_EQ2] = ACTIONS(1542), - [anon_sym_GT_EQ2] = ACTIONS(1542), - [anon_sym_EQ_TILDE2] = ACTIONS(1542), - [anon_sym_BANG_TILDE2] = ACTIONS(1542), - [anon_sym_STAR_STAR2] = ACTIONS(1542), - [anon_sym_PLUS_PLUS2] = ACTIONS(1542), - [anon_sym_SLASH2] = ACTIONS(1542), - [anon_sym_mod2] = ACTIONS(1542), - [anon_sym_SLASH_SLASH2] = ACTIONS(1542), - [anon_sym_PLUS2] = ACTIONS(1542), - [anon_sym_bit_DASHshl2] = ACTIONS(1542), - [anon_sym_bit_DASHshr2] = ACTIONS(1542), - [anon_sym_bit_DASHand2] = ACTIONS(1542), - [anon_sym_bit_DASHxor2] = ACTIONS(1542), - [anon_sym_bit_DASHor2] = ACTIONS(1542), - [anon_sym_DOT_DOT2] = ACTIONS(1542), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1544), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1544), - [aux_sym__immediate_decimal_token1] = ACTIONS(3660), - [aux_sym__immediate_decimal_token2] = ACTIONS(3662), - [sym_filesize_unit] = ACTIONS(1542), - [sym_duration_unit] = ACTIONS(1544), + [anon_sym_STAR_STAR] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_SLASH] = ACTIONS(1512), + [anon_sym_mod] = ACTIONS(1514), + [anon_sym_SLASH_SLASH] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_bit_DASHshl] = ACTIONS(1514), + [anon_sym_bit_DASHshr] = ACTIONS(1514), + [anon_sym_EQ_TILDE] = ACTIONS(1514), + [anon_sym_BANG_TILDE] = ACTIONS(1514), + [anon_sym_bit_DASHand] = ACTIONS(1514), + [anon_sym_bit_DASHxor] = ACTIONS(1514), + [anon_sym_bit_DASHor] = ACTIONS(1514), + [anon_sym_and] = ACTIONS(1514), + [anon_sym_xor] = ACTIONS(1514), + [anon_sym_or] = ACTIONS(1514), + [anon_sym_in] = ACTIONS(1514), + [anon_sym_not_DASHin] = ACTIONS(1514), + [anon_sym_has] = ACTIONS(1514), + [anon_sym_not_DASHhas] = ACTIONS(1514), + [anon_sym_starts_DASHwith] = ACTIONS(1514), + [anon_sym_ends_DASHwith] = ACTIONS(1514), + [anon_sym_EQ_EQ] = ACTIONS(1514), + [anon_sym_BANG_EQ] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_LT_EQ] = ACTIONS(1514), + [anon_sym_GT] = ACTIONS(1512), + [anon_sym_GT_EQ] = ACTIONS(1514), + [aux_sym_cmd_identifier_token41] = ACTIONS(1512), + [sym__newline] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_err_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_GT_PIPE] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1512), + [anon_sym_GT2] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_in2] = ACTIONS(1512), + [anon_sym_STAR2] = ACTIONS(1512), + [anon_sym_and2] = ACTIONS(1512), + [anon_sym_xor2] = ACTIONS(1512), + [anon_sym_or2] = ACTIONS(1512), + [anon_sym_not_DASHin2] = ACTIONS(1512), + [anon_sym_has2] = ACTIONS(1512), + [anon_sym_not_DASHhas2] = ACTIONS(1512), + [anon_sym_starts_DASHwith2] = ACTIONS(1512), + [anon_sym_ends_DASHwith2] = ACTIONS(1512), + [anon_sym_EQ_EQ2] = ACTIONS(1512), + [anon_sym_BANG_EQ2] = ACTIONS(1512), + [anon_sym_LT2] = ACTIONS(1512), + [anon_sym_LT_EQ2] = ACTIONS(1512), + [anon_sym_GT_EQ2] = ACTIONS(1512), + [anon_sym_EQ_TILDE2] = ACTIONS(1512), + [anon_sym_BANG_TILDE2] = ACTIONS(1512), + [anon_sym_STAR_STAR2] = ACTIONS(1512), + [anon_sym_PLUS_PLUS2] = ACTIONS(1512), + [anon_sym_SLASH2] = ACTIONS(1512), + [anon_sym_mod2] = ACTIONS(1512), + [anon_sym_SLASH_SLASH2] = ACTIONS(1512), + [anon_sym_PLUS2] = ACTIONS(1512), + [anon_sym_bit_DASHshl2] = ACTIONS(1512), + [anon_sym_bit_DASHshr2] = ACTIONS(1512), + [anon_sym_bit_DASHand2] = ACTIONS(1512), + [anon_sym_bit_DASHxor2] = ACTIONS(1512), + [anon_sym_bit_DASHor2] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT] = ACTIONS(3544), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [aux_sym__immediate_decimal_token2] = ACTIONS(3546), + [sym_filesize_unit] = ACTIONS(1512), + [sym_duration_unit] = ACTIONS(1514), [anon_sym_POUND] = ACTIONS(3), }, [1156] = { [sym_comment] = STATE(1156), - [anon_sym_STAR_STAR] = ACTIONS(1544), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_STAR] = ACTIONS(1542), - [anon_sym_SLASH] = ACTIONS(1542), - [anon_sym_mod] = ACTIONS(1544), - [anon_sym_SLASH_SLASH] = ACTIONS(1544), - [anon_sym_PLUS] = ACTIONS(1542), - [anon_sym_DASH] = ACTIONS(1544), - [anon_sym_bit_DASHshl] = ACTIONS(1544), - [anon_sym_bit_DASHshr] = ACTIONS(1544), - [anon_sym_EQ_TILDE] = ACTIONS(1544), - [anon_sym_BANG_TILDE] = ACTIONS(1544), - [anon_sym_bit_DASHand] = ACTIONS(1544), - [anon_sym_bit_DASHxor] = ACTIONS(1544), - [anon_sym_bit_DASHor] = ACTIONS(1544), - [anon_sym_and] = ACTIONS(1544), - [anon_sym_xor] = ACTIONS(1544), - [anon_sym_or] = ACTIONS(1544), - [anon_sym_in] = ACTIONS(1544), - [anon_sym_not_DASHin] = ACTIONS(1544), - [anon_sym_starts_DASHwith] = ACTIONS(1544), - [anon_sym_ends_DASHwith] = ACTIONS(1544), - [anon_sym_EQ_EQ] = ACTIONS(1544), - [anon_sym_BANG_EQ] = ACTIONS(1544), - [anon_sym_LT] = ACTIONS(1542), - [anon_sym_LT_EQ] = ACTIONS(1544), - [anon_sym_GT] = ACTIONS(1542), - [anon_sym_GT_EQ] = ACTIONS(1544), - [aux_sym_cmd_identifier_token41] = ACTIONS(1542), - [sym__newline] = ACTIONS(1542), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_err_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_GT_PIPE] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), - [anon_sym_GT2] = ACTIONS(1542), - [anon_sym_DASH2] = ACTIONS(1542), - [anon_sym_in2] = ACTIONS(1542), - [anon_sym_RBRACE] = ACTIONS(1542), - [anon_sym_STAR2] = ACTIONS(1542), - [anon_sym_and2] = ACTIONS(1542), - [anon_sym_xor2] = ACTIONS(1542), - [anon_sym_or2] = ACTIONS(1542), - [anon_sym_not_DASHin2] = ACTIONS(1542), - [anon_sym_starts_DASHwith2] = ACTIONS(1542), - [anon_sym_ends_DASHwith2] = ACTIONS(1542), - [anon_sym_EQ_EQ2] = ACTIONS(1542), - [anon_sym_BANG_EQ2] = ACTIONS(1542), - [anon_sym_LT2] = ACTIONS(1542), - [anon_sym_LT_EQ2] = ACTIONS(1542), - [anon_sym_GT_EQ2] = ACTIONS(1542), - [anon_sym_EQ_TILDE2] = ACTIONS(1542), - [anon_sym_BANG_TILDE2] = ACTIONS(1542), - [anon_sym_STAR_STAR2] = ACTIONS(1542), - [anon_sym_PLUS_PLUS2] = ACTIONS(1542), - [anon_sym_SLASH2] = ACTIONS(1542), - [anon_sym_mod2] = ACTIONS(1542), - [anon_sym_SLASH_SLASH2] = ACTIONS(1542), - [anon_sym_PLUS2] = ACTIONS(1542), - [anon_sym_bit_DASHshl2] = ACTIONS(1542), - [anon_sym_bit_DASHshr2] = ACTIONS(1542), - [anon_sym_bit_DASHand2] = ACTIONS(1542), - [anon_sym_bit_DASHxor2] = ACTIONS(1542), - [anon_sym_bit_DASHor2] = ACTIONS(1542), - [anon_sym_DOT_DOT2] = ACTIONS(1542), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1544), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1544), - [aux_sym__immediate_decimal_token1] = ACTIONS(3664), - [aux_sym__immediate_decimal_token2] = ACTIONS(3666), - [sym_filesize_unit] = ACTIONS(1542), - [sym_duration_unit] = ACTIONS(1544), + [anon_sym_STAR_STAR] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_SLASH] = ACTIONS(1512), + [anon_sym_mod] = ACTIONS(1514), + [anon_sym_SLASH_SLASH] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_bit_DASHshl] = ACTIONS(1514), + [anon_sym_bit_DASHshr] = ACTIONS(1514), + [anon_sym_EQ_TILDE] = ACTIONS(1514), + [anon_sym_BANG_TILDE] = ACTIONS(1514), + [anon_sym_bit_DASHand] = ACTIONS(1514), + [anon_sym_bit_DASHxor] = ACTIONS(1514), + [anon_sym_bit_DASHor] = ACTIONS(1514), + [anon_sym_and] = ACTIONS(1514), + [anon_sym_xor] = ACTIONS(1514), + [anon_sym_or] = ACTIONS(1514), + [anon_sym_in] = ACTIONS(1514), + [anon_sym_not_DASHin] = ACTIONS(1514), + [anon_sym_has] = ACTIONS(1514), + [anon_sym_not_DASHhas] = ACTIONS(1514), + [anon_sym_starts_DASHwith] = ACTIONS(1514), + [anon_sym_ends_DASHwith] = ACTIONS(1514), + [anon_sym_EQ_EQ] = ACTIONS(1514), + [anon_sym_BANG_EQ] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_LT_EQ] = ACTIONS(1514), + [anon_sym_GT] = ACTIONS(1512), + [anon_sym_GT_EQ] = ACTIONS(1514), + [aux_sym_cmd_identifier_token41] = ACTIONS(1512), + [sym__newline] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_err_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_GT_PIPE] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1512), + [anon_sym_GT2] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_in2] = ACTIONS(1512), + [anon_sym_STAR2] = ACTIONS(1512), + [anon_sym_and2] = ACTIONS(1512), + [anon_sym_xor2] = ACTIONS(1512), + [anon_sym_or2] = ACTIONS(1512), + [anon_sym_not_DASHin2] = ACTIONS(1512), + [anon_sym_has2] = ACTIONS(1512), + [anon_sym_not_DASHhas2] = ACTIONS(1512), + [anon_sym_starts_DASHwith2] = ACTIONS(1512), + [anon_sym_ends_DASHwith2] = ACTIONS(1512), + [anon_sym_EQ_EQ2] = ACTIONS(1512), + [anon_sym_BANG_EQ2] = ACTIONS(1512), + [anon_sym_LT2] = ACTIONS(1512), + [anon_sym_LT_EQ2] = ACTIONS(1512), + [anon_sym_GT_EQ2] = ACTIONS(1512), + [anon_sym_EQ_TILDE2] = ACTIONS(1512), + [anon_sym_BANG_TILDE2] = ACTIONS(1512), + [anon_sym_STAR_STAR2] = ACTIONS(1512), + [anon_sym_PLUS_PLUS2] = ACTIONS(1512), + [anon_sym_SLASH2] = ACTIONS(1512), + [anon_sym_mod2] = ACTIONS(1512), + [anon_sym_SLASH_SLASH2] = ACTIONS(1512), + [anon_sym_PLUS2] = ACTIONS(1512), + [anon_sym_bit_DASHshl2] = ACTIONS(1512), + [anon_sym_bit_DASHshr2] = ACTIONS(1512), + [anon_sym_bit_DASHand2] = ACTIONS(1512), + [anon_sym_bit_DASHxor2] = ACTIONS(1512), + [anon_sym_bit_DASHor2] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [aux_sym__immediate_decimal_token2] = ACTIONS(3478), + [sym_filesize_unit] = ACTIONS(1512), + [sym_duration_unit] = ACTIONS(1514), [anon_sym_POUND] = ACTIONS(3), }, [1157] = { - [sym_expr_parenthesized] = STATE(4482), - [sym_val_range] = STATE(4983), - [sym__val_range] = STATE(7565), - [sym__val_range_with_end] = STATE(7339), - [sym__value] = STATE(4983), - [sym_val_nothing] = STATE(4353), - [sym_val_bool] = STATE(4671), - [sym_val_variable] = STATE(4517), - [sym_val_number] = STATE(4353), - [sym__val_number_decimal] = STATE(4023), - [sym__val_number] = STATE(4251), - [sym_val_duration] = STATE(4353), - [sym_val_filesize] = STATE(4353), - [sym_val_binary] = STATE(4353), - [sym_val_string] = STATE(4353), - [sym__raw_str] = STATE(4208), - [sym__str_double_quotes] = STATE(4208), - [sym_val_interpolated] = STATE(4353), - [sym__inter_single_quotes] = STATE(5076), - [sym__inter_double_quotes] = STATE(5077), - [sym_val_list] = STATE(4353), - [sym_val_record] = STATE(4353), - [sym_val_table] = STATE(4353), - [sym_val_closure] = STATE(4353), - [sym__unquoted_in_record] = STATE(4675), - [sym__unquoted_in_record_with_expr] = STATE(4983), - [sym__unquoted_anonymous_prefix] = STATE(6716), + [sym_expr_unary] = STATE(4316), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_parenthesized] = STATE(4057), + [sym_val_range] = STATE(4316), + [sym__val_range] = STATE(7833), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(4316), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(4102), + [sym_val_variable] = STATE(4075), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3908), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(3793), + [sym__str_double_quotes] = STATE(3793), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(4098), + [sym__unquoted_with_expr] = STATE(4336), + [sym__unquoted_anonymous_prefix] = STATE(6764), [sym_comment] = STATE(1157), - [aux_sym_shebang_repeat1] = STATE(1164), - [sym__newline] = ACTIONS(3574), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_DOLLAR] = ACTIONS(3580), - [anon_sym_LBRACE] = ACTIONS(3582), - [anon_sym_DOT_DOT] = ACTIONS(3584), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3586), - [anon_sym_DOT_DOT_LT] = ACTIONS(3586), - [anon_sym_null] = ACTIONS(3588), - [anon_sym_true] = ACTIONS(3590), - [anon_sym_false] = ACTIONS(3590), - [aux_sym__val_number_decimal_token1] = ACTIONS(3592), - [aux_sym__val_number_decimal_token2] = ACTIONS(3594), - [aux_sym__val_number_decimal_token3] = ACTIONS(3596), - [aux_sym__val_number_decimal_token4] = ACTIONS(3598), - [aux_sym__val_number_token1] = ACTIONS(3600), - [aux_sym__val_number_token2] = ACTIONS(3600), - [aux_sym__val_number_token3] = ACTIONS(3600), - [aux_sym__val_number_token4] = ACTIONS(3602), - [aux_sym__val_number_token5] = ACTIONS(3602), - [aux_sym__val_number_token6] = ACTIONS(3602), - [anon_sym_0b] = ACTIONS(3604), - [anon_sym_0o] = ACTIONS(3606), - [anon_sym_0x] = ACTIONS(3606), - [sym_val_date] = ACTIONS(3608), - [anon_sym_DQUOTE] = ACTIONS(3610), - [sym__str_single_quotes] = ACTIONS(3612), - [sym__str_back_ticks] = ACTIONS(3612), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3614), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3616), - [anon_sym_err_GT] = ACTIONS(3618), - [anon_sym_out_GT] = ACTIONS(3618), - [anon_sym_e_GT] = ACTIONS(3618), - [anon_sym_o_GT] = ACTIONS(3618), - [anon_sym_err_PLUSout_GT] = ACTIONS(3618), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3618), - [anon_sym_o_PLUSe_GT] = ACTIONS(3618), - [anon_sym_e_PLUSo_GT] = ACTIONS(3618), - [anon_sym_err_GT_GT] = ACTIONS(3620), - [anon_sym_out_GT_GT] = ACTIONS(3620), - [anon_sym_e_GT_GT] = ACTIONS(3620), - [anon_sym_o_GT_GT] = ACTIONS(3620), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3620), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3620), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3620), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3620), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3622), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3624), + [anon_sym_LBRACK] = ACTIONS(3508), + [anon_sym_LPAREN] = ACTIONS(3510), + [anon_sym_DOLLAR] = ACTIONS(3512), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(3514), + [anon_sym_DOT_DOT] = ACTIONS(3516), + [aux_sym_expr_unary_token1] = ACTIONS(3518), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3520), + [anon_sym_DOT_DOT_LT] = ACTIONS(3520), + [anon_sym_null] = ACTIONS(3522), + [anon_sym_true] = ACTIONS(3524), + [anon_sym_false] = ACTIONS(3524), + [aux_sym__val_number_decimal_token1] = ACTIONS(3526), + [aux_sym__val_number_decimal_token2] = ACTIONS(3528), + [aux_sym__val_number_decimal_token3] = ACTIONS(3530), + [aux_sym__val_number_decimal_token4] = ACTIONS(3532), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3534), + [aux_sym__val_number_token5] = ACTIONS(3534), + [aux_sym__val_number_token6] = ACTIONS(3534), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3536), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym__str_single_quotes] = ACTIONS(1274), + [sym__str_back_ticks] = ACTIONS(1274), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3538), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1276), }, [1158] = { [sym_comment] = STATE(1158), - [anon_sym_STAR_STAR] = ACTIONS(1544), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_STAR] = ACTIONS(1542), - [anon_sym_SLASH] = ACTIONS(1542), - [anon_sym_mod] = ACTIONS(1544), - [anon_sym_SLASH_SLASH] = ACTIONS(1544), - [anon_sym_PLUS] = ACTIONS(1542), - [anon_sym_DASH] = ACTIONS(1544), - [anon_sym_bit_DASHshl] = ACTIONS(1544), - [anon_sym_bit_DASHshr] = ACTIONS(1544), - [anon_sym_EQ_TILDE] = ACTIONS(1544), - [anon_sym_BANG_TILDE] = ACTIONS(1544), - [anon_sym_bit_DASHand] = ACTIONS(1544), - [anon_sym_bit_DASHxor] = ACTIONS(1544), - [anon_sym_bit_DASHor] = ACTIONS(1544), - [anon_sym_and] = ACTIONS(1544), - [anon_sym_xor] = ACTIONS(1544), - [anon_sym_or] = ACTIONS(1544), - [anon_sym_in] = ACTIONS(1544), - [anon_sym_not_DASHin] = ACTIONS(1544), - [anon_sym_starts_DASHwith] = ACTIONS(1544), - [anon_sym_ends_DASHwith] = ACTIONS(1544), - [anon_sym_EQ_EQ] = ACTIONS(1544), - [anon_sym_BANG_EQ] = ACTIONS(1544), - [anon_sym_LT] = ACTIONS(1542), - [anon_sym_LT_EQ] = ACTIONS(1544), - [anon_sym_GT] = ACTIONS(1542), - [anon_sym_GT_EQ] = ACTIONS(1544), - [aux_sym_cmd_identifier_token41] = ACTIONS(1542), - [sym__newline] = ACTIONS(1542), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_err_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_GT_PIPE] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), - [anon_sym_RPAREN] = ACTIONS(1542), - [anon_sym_GT2] = ACTIONS(1542), - [anon_sym_DASH2] = ACTIONS(1542), - [anon_sym_in2] = ACTIONS(1542), - [anon_sym_STAR2] = ACTIONS(1542), - [anon_sym_and2] = ACTIONS(1542), - [anon_sym_xor2] = ACTIONS(1542), - [anon_sym_or2] = ACTIONS(1542), - [anon_sym_not_DASHin2] = ACTIONS(1542), - [anon_sym_starts_DASHwith2] = ACTIONS(1542), - [anon_sym_ends_DASHwith2] = ACTIONS(1542), - [anon_sym_EQ_EQ2] = ACTIONS(1542), - [anon_sym_BANG_EQ2] = ACTIONS(1542), - [anon_sym_LT2] = ACTIONS(1542), - [anon_sym_LT_EQ2] = ACTIONS(1542), - [anon_sym_GT_EQ2] = ACTIONS(1542), - [anon_sym_EQ_TILDE2] = ACTIONS(1542), - [anon_sym_BANG_TILDE2] = ACTIONS(1542), - [anon_sym_STAR_STAR2] = ACTIONS(1542), - [anon_sym_PLUS_PLUS2] = ACTIONS(1542), - [anon_sym_SLASH2] = ACTIONS(1542), - [anon_sym_mod2] = ACTIONS(1542), - [anon_sym_SLASH_SLASH2] = ACTIONS(1542), - [anon_sym_PLUS2] = ACTIONS(1542), - [anon_sym_bit_DASHshl2] = ACTIONS(1542), - [anon_sym_bit_DASHshr2] = ACTIONS(1542), - [anon_sym_bit_DASHand2] = ACTIONS(1542), - [anon_sym_bit_DASHxor2] = ACTIONS(1542), - [anon_sym_bit_DASHor2] = ACTIONS(1542), - [anon_sym_DOT_DOT2] = ACTIONS(1542), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1544), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1544), - [aux_sym__immediate_decimal_token1] = ACTIONS(3668), - [aux_sym__immediate_decimal_token2] = ACTIONS(3670), - [sym_filesize_unit] = ACTIONS(1542), - [sym_duration_unit] = ACTIONS(1544), + [anon_sym_STAR_STAR] = ACTIONS(1620), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1618), + [anon_sym_SLASH] = ACTIONS(1618), + [anon_sym_mod] = ACTIONS(1620), + [anon_sym_SLASH_SLASH] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1618), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_bit_DASHshl] = ACTIONS(1620), + [anon_sym_bit_DASHshr] = ACTIONS(1620), + [anon_sym_EQ_TILDE] = ACTIONS(1620), + [anon_sym_BANG_TILDE] = ACTIONS(1620), + [anon_sym_bit_DASHand] = ACTIONS(1620), + [anon_sym_bit_DASHxor] = ACTIONS(1620), + [anon_sym_bit_DASHor] = ACTIONS(1620), + [anon_sym_and] = ACTIONS(1620), + [anon_sym_xor] = ACTIONS(1620), + [anon_sym_or] = ACTIONS(1620), + [anon_sym_in] = ACTIONS(1620), + [anon_sym_not_DASHin] = ACTIONS(1620), + [anon_sym_has] = ACTIONS(1620), + [anon_sym_not_DASHhas] = ACTIONS(1620), + [anon_sym_starts_DASHwith] = ACTIONS(1620), + [anon_sym_ends_DASHwith] = ACTIONS(1620), + [anon_sym_EQ_EQ] = ACTIONS(1620), + [anon_sym_BANG_EQ] = ACTIONS(1620), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_LT_EQ] = ACTIONS(1620), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_GT_EQ] = ACTIONS(1620), + [aux_sym_cmd_identifier_token41] = ACTIONS(1618), + [sym__newline] = ACTIONS(1618), + [anon_sym_SEMI] = ACTIONS(1618), + [anon_sym_PIPE] = ACTIONS(1618), + [anon_sym_err_GT_PIPE] = ACTIONS(1618), + [anon_sym_out_GT_PIPE] = ACTIONS(1618), + [anon_sym_e_GT_PIPE] = ACTIONS(1618), + [anon_sym_o_GT_PIPE] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1618), + [anon_sym_GT2] = ACTIONS(1618), + [anon_sym_DASH2] = ACTIONS(1618), + [anon_sym_in2] = ACTIONS(1618), + [anon_sym_STAR2] = ACTIONS(1618), + [anon_sym_and2] = ACTIONS(1618), + [anon_sym_xor2] = ACTIONS(1618), + [anon_sym_or2] = ACTIONS(1618), + [anon_sym_not_DASHin2] = ACTIONS(1618), + [anon_sym_has2] = ACTIONS(1618), + [anon_sym_not_DASHhas2] = ACTIONS(1618), + [anon_sym_starts_DASHwith2] = ACTIONS(1618), + [anon_sym_ends_DASHwith2] = ACTIONS(1618), + [anon_sym_EQ_EQ2] = ACTIONS(1618), + [anon_sym_BANG_EQ2] = ACTIONS(1618), + [anon_sym_LT2] = ACTIONS(1618), + [anon_sym_LT_EQ2] = ACTIONS(1618), + [anon_sym_GT_EQ2] = ACTIONS(1618), + [anon_sym_EQ_TILDE2] = ACTIONS(1618), + [anon_sym_BANG_TILDE2] = ACTIONS(1618), + [anon_sym_STAR_STAR2] = ACTIONS(1618), + [anon_sym_PLUS_PLUS2] = ACTIONS(1618), + [anon_sym_SLASH2] = ACTIONS(1618), + [anon_sym_mod2] = ACTIONS(1618), + [anon_sym_SLASH_SLASH2] = ACTIONS(1618), + [anon_sym_PLUS2] = ACTIONS(1618), + [anon_sym_bit_DASHshl2] = ACTIONS(1618), + [anon_sym_bit_DASHshr2] = ACTIONS(1618), + [anon_sym_bit_DASHand2] = ACTIONS(1618), + [anon_sym_bit_DASHxor2] = ACTIONS(1618), + [anon_sym_bit_DASHor2] = ACTIONS(1618), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [aux_sym__immediate_decimal_token2] = ACTIONS(3548), + [sym_filesize_unit] = ACTIONS(1618), + [sym_duration_unit] = ACTIONS(1620), [anon_sym_POUND] = ACTIONS(3), }, [1159] = { - [sym_match_arm] = STATE(7288), - [sym_default_arm] = STATE(7288), - [sym_match_pattern] = STATE(7704), - [sym__match_pattern] = STATE(6020), - [sym__match_pattern_expression] = STATE(7226), - [sym__match_pattern_value] = STATE(7259), - [sym__match_pattern_list] = STATE(7280), - [sym__match_pattern_record] = STATE(6737), - [sym_expr_parenthesized] = STATE(5787), - [sym_val_range] = STATE(7259), - [sym__val_range] = STATE(7519), - [sym_val_nothing] = STATE(6734), - [sym_val_bool] = STATE(6677), - [sym_val_variable] = STATE(5731), - [sym_val_number] = STATE(6734), - [sym__val_number_decimal] = STATE(5363), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(6734), - [sym_val_filesize] = STATE(6734), - [sym_val_binary] = STATE(6734), - [sym_val_string] = STATE(6734), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_table] = STATE(6734), - [sym_unquoted] = STATE(7105), - [sym__unquoted_anonymous_prefix] = STATE(7789), [sym_comment] = STATE(1159), - [aux_sym_shebang_repeat1] = STATE(1173), - [aux_sym_ctrl_match_repeat1] = STATE(1218), - [sym__newline] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3630), - [anon_sym_LBRACE] = ACTIONS(3632), - [anon_sym_RBRACE] = ACTIONS(3672), - [anon_sym__] = ACTIONS(3636), - [anon_sym_DOT_DOT] = ACTIONS(3638), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3640), - [anon_sym_DOT_DOT_LT] = ACTIONS(3640), - [anon_sym_null] = ACTIONS(3642), - [anon_sym_true] = ACTIONS(3644), - [anon_sym_false] = ACTIONS(3644), - [aux_sym__val_number_decimal_token1] = ACTIONS(3646), - [aux_sym__val_number_decimal_token2] = ACTIONS(3648), - [aux_sym__val_number_decimal_token3] = ACTIONS(3650), - [aux_sym__val_number_decimal_token4] = ACTIONS(3652), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3654), - [aux_sym__val_number_token5] = ACTIONS(3654), - [aux_sym__val_number_token6] = ACTIONS(3654), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3656), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3490), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [ts_builtin_sym_end] = ACTIONS(1514), + [anon_sym_STAR_STAR] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_SLASH] = ACTIONS(1512), + [anon_sym_mod] = ACTIONS(1514), + [anon_sym_SLASH_SLASH] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_bit_DASHshl] = ACTIONS(1514), + [anon_sym_bit_DASHshr] = ACTIONS(1514), + [anon_sym_EQ_TILDE] = ACTIONS(1514), + [anon_sym_BANG_TILDE] = ACTIONS(1514), + [anon_sym_bit_DASHand] = ACTIONS(1514), + [anon_sym_bit_DASHxor] = ACTIONS(1514), + [anon_sym_bit_DASHor] = ACTIONS(1514), + [anon_sym_and] = ACTIONS(1514), + [anon_sym_xor] = ACTIONS(1514), + [anon_sym_or] = ACTIONS(1514), + [anon_sym_in] = ACTIONS(1514), + [anon_sym_not_DASHin] = ACTIONS(1514), + [anon_sym_has] = ACTIONS(1514), + [anon_sym_not_DASHhas] = ACTIONS(1514), + [anon_sym_starts_DASHwith] = ACTIONS(1514), + [anon_sym_ends_DASHwith] = ACTIONS(1514), + [anon_sym_EQ_EQ] = ACTIONS(1514), + [anon_sym_BANG_EQ] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_LT_EQ] = ACTIONS(1514), + [anon_sym_GT] = ACTIONS(1512), + [anon_sym_GT_EQ] = ACTIONS(1514), + [aux_sym_cmd_identifier_token41] = ACTIONS(1512), + [sym__newline] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_err_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_GT_PIPE] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1512), + [anon_sym_GT2] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_in2] = ACTIONS(1512), + [anon_sym_STAR2] = ACTIONS(1512), + [anon_sym_and2] = ACTIONS(1512), + [anon_sym_xor2] = ACTIONS(1512), + [anon_sym_or2] = ACTIONS(1512), + [anon_sym_not_DASHin2] = ACTIONS(1512), + [anon_sym_has2] = ACTIONS(1512), + [anon_sym_not_DASHhas2] = ACTIONS(1512), + [anon_sym_starts_DASHwith2] = ACTIONS(1512), + [anon_sym_ends_DASHwith2] = ACTIONS(1512), + [anon_sym_EQ_EQ2] = ACTIONS(1512), + [anon_sym_BANG_EQ2] = ACTIONS(1512), + [anon_sym_LT2] = ACTIONS(1512), + [anon_sym_LT_EQ2] = ACTIONS(1512), + [anon_sym_GT_EQ2] = ACTIONS(1512), + [anon_sym_EQ_TILDE2] = ACTIONS(1512), + [anon_sym_BANG_TILDE2] = ACTIONS(1512), + [anon_sym_STAR_STAR2] = ACTIONS(1512), + [anon_sym_PLUS_PLUS2] = ACTIONS(1512), + [anon_sym_SLASH2] = ACTIONS(1512), + [anon_sym_mod2] = ACTIONS(1512), + [anon_sym_SLASH_SLASH2] = ACTIONS(1512), + [anon_sym_PLUS2] = ACTIONS(1512), + [anon_sym_bit_DASHshl2] = ACTIONS(1512), + [anon_sym_bit_DASHshr2] = ACTIONS(1512), + [anon_sym_bit_DASHand2] = ACTIONS(1512), + [anon_sym_bit_DASHxor2] = ACTIONS(1512), + [anon_sym_bit_DASHor2] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [sym_filesize_unit] = ACTIONS(1512), + [sym_duration_unit] = ACTIONS(1514), + [anon_sym_POUND] = ACTIONS(3), }, [1160] = { [sym_comment] = STATE(1160), - [aux_sym_cmd_identifier_token1] = ACTIONS(1311), - [aux_sym_cmd_identifier_token2] = ACTIONS(1309), - [aux_sym_cmd_identifier_token3] = ACTIONS(1309), - [aux_sym_cmd_identifier_token4] = ACTIONS(1309), - [aux_sym_cmd_identifier_token5] = ACTIONS(1309), - [aux_sym_cmd_identifier_token6] = ACTIONS(1309), - [aux_sym_cmd_identifier_token7] = ACTIONS(1309), - [aux_sym_cmd_identifier_token8] = ACTIONS(1309), - [aux_sym_cmd_identifier_token9] = ACTIONS(1311), - [aux_sym_cmd_identifier_token10] = ACTIONS(1309), - [aux_sym_cmd_identifier_token11] = ACTIONS(1309), - [aux_sym_cmd_identifier_token12] = ACTIONS(1309), - [aux_sym_cmd_identifier_token13] = ACTIONS(1311), - [aux_sym_cmd_identifier_token14] = ACTIONS(1309), - [aux_sym_cmd_identifier_token15] = ACTIONS(1311), - [aux_sym_cmd_identifier_token16] = ACTIONS(1309), - [aux_sym_cmd_identifier_token17] = ACTIONS(1309), - [aux_sym_cmd_identifier_token18] = ACTIONS(1311), - [aux_sym_cmd_identifier_token19] = ACTIONS(1309), - [aux_sym_cmd_identifier_token20] = ACTIONS(1309), - [aux_sym_cmd_identifier_token21] = ACTIONS(1309), - [aux_sym_cmd_identifier_token22] = ACTIONS(1309), - [aux_sym_cmd_identifier_token23] = ACTIONS(1309), - [aux_sym_cmd_identifier_token24] = ACTIONS(1309), - [aux_sym_cmd_identifier_token25] = ACTIONS(1309), - [aux_sym_cmd_identifier_token26] = ACTIONS(1309), - [aux_sym_cmd_identifier_token27] = ACTIONS(1309), - [aux_sym_cmd_identifier_token28] = ACTIONS(1309), - [aux_sym_cmd_identifier_token29] = ACTIONS(1309), - [aux_sym_cmd_identifier_token30] = ACTIONS(1309), - [aux_sym_cmd_identifier_token31] = ACTIONS(1309), - [aux_sym_cmd_identifier_token32] = ACTIONS(1311), - [aux_sym_cmd_identifier_token33] = ACTIONS(1309), - [aux_sym_cmd_identifier_token34] = ACTIONS(1311), - [aux_sym_cmd_identifier_token35] = ACTIONS(1309), - [aux_sym_cmd_identifier_token36] = ACTIONS(1309), - [aux_sym_cmd_identifier_token37] = ACTIONS(1309), - [aux_sym_cmd_identifier_token38] = ACTIONS(1311), - [aux_sym_cmd_identifier_token39] = ACTIONS(1309), - [aux_sym_cmd_identifier_token40] = ACTIONS(1309), - [sym__newline] = ACTIONS(1309), - [anon_sym_LBRACK] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(1309), - [anon_sym_DOLLAR] = ACTIONS(1311), - [anon_sym_DASH2] = ACTIONS(1311), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_DOT_DOT] = ACTIONS(1311), - [aux_sym_expr_unary_token1] = ACTIONS(1309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1309), - [anon_sym_DOT_DOT_LT] = ACTIONS(1309), - [anon_sym_null] = ACTIONS(1311), - [anon_sym_true] = ACTIONS(1311), - [anon_sym_false] = ACTIONS(1311), - [aux_sym__val_number_decimal_token1] = ACTIONS(1311), - [aux_sym__val_number_decimal_token2] = ACTIONS(1309), - [aux_sym__val_number_decimal_token3] = ACTIONS(1309), - [aux_sym__val_number_decimal_token4] = ACTIONS(1309), - [aux_sym__val_number_token1] = ACTIONS(1309), - [aux_sym__val_number_token2] = ACTIONS(1309), - [aux_sym__val_number_token3] = ACTIONS(1309), - [aux_sym__val_number_token4] = ACTIONS(1311), - [aux_sym__val_number_token5] = ACTIONS(1311), - [aux_sym__val_number_token6] = ACTIONS(1311), - [anon_sym_0b] = ACTIONS(1311), - [anon_sym_0o] = ACTIONS(1311), - [anon_sym_0x] = ACTIONS(1311), - [sym_val_date] = ACTIONS(1309), - [anon_sym_DQUOTE] = ACTIONS(1309), - [sym__str_single_quotes] = ACTIONS(1309), - [sym__str_back_ticks] = ACTIONS(1309), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1309), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1309), - [anon_sym_CARET] = ACTIONS(1309), - [aux_sym_command_token1] = ACTIONS(1309), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1309), + [aux_sym_ctrl_do_parenthesized_repeat2] = STATE(1160), + [aux_sym_cmd_identifier_token1] = ACTIONS(3550), + [aux_sym_cmd_identifier_token2] = ACTIONS(3550), + [aux_sym_cmd_identifier_token3] = ACTIONS(3550), + [aux_sym_cmd_identifier_token4] = ACTIONS(3550), + [aux_sym_cmd_identifier_token5] = ACTIONS(3550), + [aux_sym_cmd_identifier_token6] = ACTIONS(3550), + [aux_sym_cmd_identifier_token7] = ACTIONS(3550), + [aux_sym_cmd_identifier_token8] = ACTIONS(3550), + [aux_sym_cmd_identifier_token9] = ACTIONS(3550), + [aux_sym_cmd_identifier_token10] = ACTIONS(3550), + [aux_sym_cmd_identifier_token11] = ACTIONS(3550), + [aux_sym_cmd_identifier_token12] = ACTIONS(3550), + [aux_sym_cmd_identifier_token13] = ACTIONS(3550), + [aux_sym_cmd_identifier_token14] = ACTIONS(3550), + [aux_sym_cmd_identifier_token15] = ACTIONS(3550), + [aux_sym_cmd_identifier_token16] = ACTIONS(3550), + [aux_sym_cmd_identifier_token17] = ACTIONS(3550), + [aux_sym_cmd_identifier_token18] = ACTIONS(3550), + [aux_sym_cmd_identifier_token19] = ACTIONS(3550), + [aux_sym_cmd_identifier_token20] = ACTIONS(3550), + [aux_sym_cmd_identifier_token21] = ACTIONS(3550), + [aux_sym_cmd_identifier_token22] = ACTIONS(3550), + [aux_sym_cmd_identifier_token23] = ACTIONS(3550), + [aux_sym_cmd_identifier_token24] = ACTIONS(3550), + [aux_sym_cmd_identifier_token25] = ACTIONS(3550), + [aux_sym_cmd_identifier_token26] = ACTIONS(3550), + [aux_sym_cmd_identifier_token27] = ACTIONS(3550), + [aux_sym_cmd_identifier_token28] = ACTIONS(3550), + [aux_sym_cmd_identifier_token29] = ACTIONS(3550), + [aux_sym_cmd_identifier_token30] = ACTIONS(3550), + [aux_sym_cmd_identifier_token31] = ACTIONS(3550), + [aux_sym_cmd_identifier_token32] = ACTIONS(3550), + [aux_sym_cmd_identifier_token33] = ACTIONS(3550), + [aux_sym_cmd_identifier_token34] = ACTIONS(3550), + [aux_sym_cmd_identifier_token35] = ACTIONS(3550), + [aux_sym_cmd_identifier_token36] = ACTIONS(3550), + [aux_sym_cmd_identifier_token37] = ACTIONS(3550), + [aux_sym_cmd_identifier_token38] = ACTIONS(3550), + [aux_sym_cmd_identifier_token39] = ACTIONS(3550), + [aux_sym_cmd_identifier_token40] = ACTIONS(3550), + [sym__newline] = ACTIONS(3552), + [sym__space] = ACTIONS(3555), + [anon_sym_LBRACK] = ACTIONS(3550), + [anon_sym_LPAREN] = ACTIONS(3550), + [anon_sym_DOLLAR] = ACTIONS(3550), + [anon_sym_DASH2] = ACTIONS(3550), + [anon_sym_LBRACE] = ACTIONS(3550), + [anon_sym_DOT_DOT] = ACTIONS(3550), + [aux_sym_expr_unary_token1] = ACTIONS(3550), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3550), + [anon_sym_DOT_DOT_LT] = ACTIONS(3550), + [anon_sym_null] = ACTIONS(3550), + [anon_sym_true] = ACTIONS(3550), + [anon_sym_false] = ACTIONS(3550), + [aux_sym__val_number_decimal_token1] = ACTIONS(3550), + [aux_sym__val_number_decimal_token2] = ACTIONS(3550), + [aux_sym__val_number_decimal_token3] = ACTIONS(3550), + [aux_sym__val_number_decimal_token4] = ACTIONS(3550), + [aux_sym__val_number_token1] = ACTIONS(3550), + [aux_sym__val_number_token2] = ACTIONS(3550), + [aux_sym__val_number_token3] = ACTIONS(3550), + [aux_sym__val_number_token4] = ACTIONS(3550), + [aux_sym__val_number_token5] = ACTIONS(3550), + [aux_sym__val_number_token6] = ACTIONS(3550), + [anon_sym_0b] = ACTIONS(3550), + [anon_sym_0o] = ACTIONS(3550), + [anon_sym_0x] = ACTIONS(3550), + [sym_val_date] = ACTIONS(3550), + [anon_sym_DQUOTE] = ACTIONS(3550), + [sym__str_single_quotes] = ACTIONS(3550), + [sym__str_back_ticks] = ACTIONS(3550), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3550), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3550), + [aux_sym_env_var_token1] = ACTIONS(3550), + [anon_sym_CARET] = ACTIONS(3550), + [aux_sym_command_token1] = ACTIONS(3550), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(3558), }, [1161] = { - [sym_expr_parenthesized] = STATE(4482), - [sym_val_range] = STATE(4983), - [sym__val_range] = STATE(7565), - [sym__val_range_with_end] = STATE(7339), - [sym__value] = STATE(4983), - [sym_val_nothing] = STATE(4353), - [sym_val_bool] = STATE(4671), - [sym_val_variable] = STATE(4517), - [sym_val_number] = STATE(4353), - [sym__val_number_decimal] = STATE(4023), - [sym__val_number] = STATE(4251), - [sym_val_duration] = STATE(4353), - [sym_val_filesize] = STATE(4353), - [sym_val_binary] = STATE(4353), - [sym_val_string] = STATE(4353), - [sym__raw_str] = STATE(4208), - [sym__str_double_quotes] = STATE(4208), - [sym_val_interpolated] = STATE(4353), - [sym__inter_single_quotes] = STATE(5076), - [sym__inter_double_quotes] = STATE(5077), - [sym_val_list] = STATE(4353), - [sym_val_record] = STATE(4353), - [sym_val_table] = STATE(4353), - [sym_val_closure] = STATE(4353), - [sym__unquoted_in_record] = STATE(4675), - [sym__unquoted_in_record_with_expr] = STATE(4983), - [sym__unquoted_anonymous_prefix] = STATE(6716), [sym_comment] = STATE(1161), - [aux_sym_shebang_repeat1] = STATE(3010), - [sym__newline] = ACTIONS(3574), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_DOLLAR] = ACTIONS(3580), - [anon_sym_LBRACE] = ACTIONS(3582), - [anon_sym_DOT_DOT] = ACTIONS(3584), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3586), - [anon_sym_DOT_DOT_LT] = ACTIONS(3586), - [anon_sym_null] = ACTIONS(3588), - [anon_sym_true] = ACTIONS(3590), - [anon_sym_false] = ACTIONS(3590), - [aux_sym__val_number_decimal_token1] = ACTIONS(3592), - [aux_sym__val_number_decimal_token2] = ACTIONS(3594), - [aux_sym__val_number_decimal_token3] = ACTIONS(3596), - [aux_sym__val_number_decimal_token4] = ACTIONS(3598), - [aux_sym__val_number_token1] = ACTIONS(3600), - [aux_sym__val_number_token2] = ACTIONS(3600), - [aux_sym__val_number_token3] = ACTIONS(3600), - [aux_sym__val_number_token4] = ACTIONS(3602), - [aux_sym__val_number_token5] = ACTIONS(3602), - [aux_sym__val_number_token6] = ACTIONS(3602), - [anon_sym_0b] = ACTIONS(3604), - [anon_sym_0o] = ACTIONS(3606), - [anon_sym_0x] = ACTIONS(3606), - [sym_val_date] = ACTIONS(3608), - [anon_sym_DQUOTE] = ACTIONS(3610), - [sym__str_single_quotes] = ACTIONS(3612), - [sym__str_back_ticks] = ACTIONS(3612), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3614), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3616), - [anon_sym_err_GT] = ACTIONS(3618), - [anon_sym_out_GT] = ACTIONS(3618), - [anon_sym_e_GT] = ACTIONS(3618), - [anon_sym_o_GT] = ACTIONS(3618), - [anon_sym_err_PLUSout_GT] = ACTIONS(3618), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3618), - [anon_sym_o_PLUSe_GT] = ACTIONS(3618), - [anon_sym_e_PLUSo_GT] = ACTIONS(3618), - [anon_sym_err_GT_GT] = ACTIONS(3620), - [anon_sym_out_GT_GT] = ACTIONS(3620), - [anon_sym_e_GT_GT] = ACTIONS(3620), - [anon_sym_o_GT_GT] = ACTIONS(3620), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3620), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3620), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3620), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3620), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3622), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3624), + [anon_sym_STAR_STAR] = ACTIONS(1620), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1618), + [anon_sym_SLASH] = ACTIONS(1618), + [anon_sym_mod] = ACTIONS(1620), + [anon_sym_SLASH_SLASH] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1618), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_bit_DASHshl] = ACTIONS(1620), + [anon_sym_bit_DASHshr] = ACTIONS(1620), + [anon_sym_EQ_TILDE] = ACTIONS(1620), + [anon_sym_BANG_TILDE] = ACTIONS(1620), + [anon_sym_bit_DASHand] = ACTIONS(1620), + [anon_sym_bit_DASHxor] = ACTIONS(1620), + [anon_sym_bit_DASHor] = ACTIONS(1620), + [anon_sym_and] = ACTIONS(1620), + [anon_sym_xor] = ACTIONS(1620), + [anon_sym_or] = ACTIONS(1620), + [anon_sym_in] = ACTIONS(1620), + [anon_sym_not_DASHin] = ACTIONS(1620), + [anon_sym_has] = ACTIONS(1620), + [anon_sym_not_DASHhas] = ACTIONS(1620), + [anon_sym_starts_DASHwith] = ACTIONS(1620), + [anon_sym_ends_DASHwith] = ACTIONS(1620), + [anon_sym_EQ_EQ] = ACTIONS(1620), + [anon_sym_BANG_EQ] = ACTIONS(1620), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_LT_EQ] = ACTIONS(1620), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_GT_EQ] = ACTIONS(1620), + [aux_sym_cmd_identifier_token41] = ACTIONS(1618), + [sym__newline] = ACTIONS(1618), + [anon_sym_SEMI] = ACTIONS(1618), + [anon_sym_PIPE] = ACTIONS(1618), + [anon_sym_err_GT_PIPE] = ACTIONS(1618), + [anon_sym_out_GT_PIPE] = ACTIONS(1618), + [anon_sym_e_GT_PIPE] = ACTIONS(1618), + [anon_sym_o_GT_PIPE] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1618), + [anon_sym_GT2] = ACTIONS(1618), + [anon_sym_DASH2] = ACTIONS(1618), + [anon_sym_in2] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1618), + [anon_sym_STAR2] = ACTIONS(1618), + [anon_sym_and2] = ACTIONS(1618), + [anon_sym_xor2] = ACTIONS(1618), + [anon_sym_or2] = ACTIONS(1618), + [anon_sym_not_DASHin2] = ACTIONS(1618), + [anon_sym_has2] = ACTIONS(1618), + [anon_sym_not_DASHhas2] = ACTIONS(1618), + [anon_sym_starts_DASHwith2] = ACTIONS(1618), + [anon_sym_ends_DASHwith2] = ACTIONS(1618), + [anon_sym_EQ_EQ2] = ACTIONS(1618), + [anon_sym_BANG_EQ2] = ACTIONS(1618), + [anon_sym_LT2] = ACTIONS(1618), + [anon_sym_LT_EQ2] = ACTIONS(1618), + [anon_sym_GT_EQ2] = ACTIONS(1618), + [anon_sym_EQ_TILDE2] = ACTIONS(1618), + [anon_sym_BANG_TILDE2] = ACTIONS(1618), + [anon_sym_STAR_STAR2] = ACTIONS(1618), + [anon_sym_PLUS_PLUS2] = ACTIONS(1618), + [anon_sym_SLASH2] = ACTIONS(1618), + [anon_sym_mod2] = ACTIONS(1618), + [anon_sym_SLASH_SLASH2] = ACTIONS(1618), + [anon_sym_PLUS2] = ACTIONS(1618), + [anon_sym_bit_DASHshl2] = ACTIONS(1618), + [anon_sym_bit_DASHshr2] = ACTIONS(1618), + [anon_sym_bit_DASHand2] = ACTIONS(1618), + [anon_sym_bit_DASHxor2] = ACTIONS(1618), + [anon_sym_bit_DASHor2] = ACTIONS(1618), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [sym_filesize_unit] = ACTIONS(1618), + [sym_duration_unit] = ACTIONS(1620), + [anon_sym_POUND] = ACTIONS(3), }, [1162] = { [sym_comment] = STATE(1162), - [anon_sym_STAR_STAR] = ACTIONS(1552), - [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1550), - [anon_sym_SLASH] = ACTIONS(1550), - [anon_sym_mod] = ACTIONS(1552), - [anon_sym_SLASH_SLASH] = ACTIONS(1552), - [anon_sym_PLUS] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1552), - [anon_sym_bit_DASHshl] = ACTIONS(1552), - [anon_sym_bit_DASHshr] = ACTIONS(1552), - [anon_sym_EQ_TILDE] = ACTIONS(1552), - [anon_sym_BANG_TILDE] = ACTIONS(1552), - [anon_sym_bit_DASHand] = ACTIONS(1552), - [anon_sym_bit_DASHxor] = ACTIONS(1552), - [anon_sym_bit_DASHor] = ACTIONS(1552), - [anon_sym_and] = ACTIONS(1552), - [anon_sym_xor] = ACTIONS(1552), - [anon_sym_or] = ACTIONS(1552), - [anon_sym_in] = ACTIONS(1552), - [anon_sym_not_DASHin] = ACTIONS(1552), - [anon_sym_starts_DASHwith] = ACTIONS(1552), - [anon_sym_ends_DASHwith] = ACTIONS(1552), - [anon_sym_EQ_EQ] = ACTIONS(1552), - [anon_sym_BANG_EQ] = ACTIONS(1552), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_LT_EQ] = ACTIONS(1552), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_GT_EQ] = ACTIONS(1552), - [aux_sym_cmd_identifier_token41] = ACTIONS(1550), - [sym__newline] = ACTIONS(1550), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_err_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_GT_PIPE] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1550), - [anon_sym_GT2] = ACTIONS(1550), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_in2] = ACTIONS(1550), - [anon_sym_RBRACE] = ACTIONS(1550), - [anon_sym_STAR2] = ACTIONS(1550), - [anon_sym_and2] = ACTIONS(1550), - [anon_sym_xor2] = ACTIONS(1550), - [anon_sym_or2] = ACTIONS(1550), - [anon_sym_not_DASHin2] = ACTIONS(1550), - [anon_sym_starts_DASHwith2] = ACTIONS(1550), - [anon_sym_ends_DASHwith2] = ACTIONS(1550), - [anon_sym_EQ_EQ2] = ACTIONS(1550), - [anon_sym_BANG_EQ2] = ACTIONS(1550), - [anon_sym_LT2] = ACTIONS(1550), - [anon_sym_LT_EQ2] = ACTIONS(1550), - [anon_sym_GT_EQ2] = ACTIONS(1550), - [anon_sym_EQ_TILDE2] = ACTIONS(1550), - [anon_sym_BANG_TILDE2] = ACTIONS(1550), - [anon_sym_STAR_STAR2] = ACTIONS(1550), - [anon_sym_PLUS_PLUS2] = ACTIONS(1550), - [anon_sym_SLASH2] = ACTIONS(1550), - [anon_sym_mod2] = ACTIONS(1550), - [anon_sym_SLASH_SLASH2] = ACTIONS(1550), - [anon_sym_PLUS2] = ACTIONS(1550), - [anon_sym_bit_DASHshl2] = ACTIONS(1550), - [anon_sym_bit_DASHshr2] = ACTIONS(1550), - [anon_sym_bit_DASHand2] = ACTIONS(1550), - [anon_sym_bit_DASHxor2] = ACTIONS(1550), - [anon_sym_bit_DASHor2] = ACTIONS(1550), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT] = ACTIONS(3674), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [aux_sym__immediate_decimal_token2] = ACTIONS(3676), - [sym_filesize_unit] = ACTIONS(1550), - [sym_duration_unit] = ACTIONS(1552), + [aux_sym_ctrl_do_parenthesized_repeat2] = STATE(1160), + [aux_sym_cmd_identifier_token1] = ACTIONS(3560), + [aux_sym_cmd_identifier_token2] = ACTIONS(3560), + [aux_sym_cmd_identifier_token3] = ACTIONS(3560), + [aux_sym_cmd_identifier_token4] = ACTIONS(3560), + [aux_sym_cmd_identifier_token5] = ACTIONS(3560), + [aux_sym_cmd_identifier_token6] = ACTIONS(3560), + [aux_sym_cmd_identifier_token7] = ACTIONS(3560), + [aux_sym_cmd_identifier_token8] = ACTIONS(3560), + [aux_sym_cmd_identifier_token9] = ACTIONS(3560), + [aux_sym_cmd_identifier_token10] = ACTIONS(3560), + [aux_sym_cmd_identifier_token11] = ACTIONS(3560), + [aux_sym_cmd_identifier_token12] = ACTIONS(3560), + [aux_sym_cmd_identifier_token13] = ACTIONS(3560), + [aux_sym_cmd_identifier_token14] = ACTIONS(3560), + [aux_sym_cmd_identifier_token15] = ACTIONS(3560), + [aux_sym_cmd_identifier_token16] = ACTIONS(3560), + [aux_sym_cmd_identifier_token17] = ACTIONS(3560), + [aux_sym_cmd_identifier_token18] = ACTIONS(3560), + [aux_sym_cmd_identifier_token19] = ACTIONS(3560), + [aux_sym_cmd_identifier_token20] = ACTIONS(3560), + [aux_sym_cmd_identifier_token21] = ACTIONS(3560), + [aux_sym_cmd_identifier_token22] = ACTIONS(3560), + [aux_sym_cmd_identifier_token23] = ACTIONS(3560), + [aux_sym_cmd_identifier_token24] = ACTIONS(3560), + [aux_sym_cmd_identifier_token25] = ACTIONS(3560), + [aux_sym_cmd_identifier_token26] = ACTIONS(3560), + [aux_sym_cmd_identifier_token27] = ACTIONS(3560), + [aux_sym_cmd_identifier_token28] = ACTIONS(3560), + [aux_sym_cmd_identifier_token29] = ACTIONS(3560), + [aux_sym_cmd_identifier_token30] = ACTIONS(3560), + [aux_sym_cmd_identifier_token31] = ACTIONS(3560), + [aux_sym_cmd_identifier_token32] = ACTIONS(3560), + [aux_sym_cmd_identifier_token33] = ACTIONS(3560), + [aux_sym_cmd_identifier_token34] = ACTIONS(3560), + [aux_sym_cmd_identifier_token35] = ACTIONS(3560), + [aux_sym_cmd_identifier_token36] = ACTIONS(3560), + [aux_sym_cmd_identifier_token37] = ACTIONS(3560), + [aux_sym_cmd_identifier_token38] = ACTIONS(3560), + [aux_sym_cmd_identifier_token39] = ACTIONS(3560), + [aux_sym_cmd_identifier_token40] = ACTIONS(3560), + [sym__newline] = ACTIONS(3562), + [sym__space] = ACTIONS(3564), + [anon_sym_LBRACK] = ACTIONS(3560), + [anon_sym_LPAREN] = ACTIONS(3560), + [anon_sym_DOLLAR] = ACTIONS(3560), + [anon_sym_DASH2] = ACTIONS(3560), + [anon_sym_LBRACE] = ACTIONS(3560), + [anon_sym_DOT_DOT] = ACTIONS(3560), + [aux_sym_expr_unary_token1] = ACTIONS(3560), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3560), + [anon_sym_DOT_DOT_LT] = ACTIONS(3560), + [anon_sym_null] = ACTIONS(3560), + [anon_sym_true] = ACTIONS(3560), + [anon_sym_false] = ACTIONS(3560), + [aux_sym__val_number_decimal_token1] = ACTIONS(3560), + [aux_sym__val_number_decimal_token2] = ACTIONS(3560), + [aux_sym__val_number_decimal_token3] = ACTIONS(3560), + [aux_sym__val_number_decimal_token4] = ACTIONS(3560), + [aux_sym__val_number_token1] = ACTIONS(3560), + [aux_sym__val_number_token2] = ACTIONS(3560), + [aux_sym__val_number_token3] = ACTIONS(3560), + [aux_sym__val_number_token4] = ACTIONS(3560), + [aux_sym__val_number_token5] = ACTIONS(3560), + [aux_sym__val_number_token6] = ACTIONS(3560), + [anon_sym_0b] = ACTIONS(3560), + [anon_sym_0o] = ACTIONS(3560), + [anon_sym_0x] = ACTIONS(3560), + [sym_val_date] = ACTIONS(3560), + [anon_sym_DQUOTE] = ACTIONS(3560), + [sym__str_single_quotes] = ACTIONS(3560), + [sym__str_back_ticks] = ACTIONS(3560), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3560), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3560), + [aux_sym_env_var_token1] = ACTIONS(3560), + [anon_sym_CARET] = ACTIONS(3560), + [aux_sym_command_token1] = ACTIONS(3560), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(3566), }, [1163] = { - [sym_match_arm] = STATE(7292), - [sym_default_arm] = STATE(7292), - [sym_match_pattern] = STATE(7704), - [sym__match_pattern] = STATE(6020), - [sym__match_pattern_expression] = STATE(7226), - [sym__match_pattern_value] = STATE(7259), - [sym__match_pattern_list] = STATE(7280), - [sym__match_pattern_record] = STATE(6737), - [sym_expr_parenthesized] = STATE(5787), - [sym_val_range] = STATE(7259), - [sym__val_range] = STATE(7519), - [sym_val_nothing] = STATE(6734), - [sym_val_bool] = STATE(6677), - [sym_val_variable] = STATE(5731), - [sym_val_number] = STATE(6734), - [sym__val_number_decimal] = STATE(5363), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(6734), - [sym_val_filesize] = STATE(6734), - [sym_val_binary] = STATE(6734), - [sym_val_string] = STATE(6734), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_table] = STATE(6734), - [sym_unquoted] = STATE(7105), - [sym__unquoted_anonymous_prefix] = STATE(7789), + [sym_ctrl_do] = STATE(4954), + [sym_ctrl_if] = STATE(4954), + [sym_ctrl_match] = STATE(4954), + [sym_ctrl_try] = STATE(4954), + [sym__expression] = STATE(4954), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3838), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2975), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), [sym_comment] = STATE(1163), - [aux_sym_shebang_repeat1] = STATE(1174), - [aux_sym_ctrl_match_repeat1] = STATE(1220), - [sym__newline] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3630), - [anon_sym_LBRACE] = ACTIONS(3632), - [anon_sym_RBRACE] = ACTIONS(3678), - [anon_sym__] = ACTIONS(3636), - [anon_sym_DOT_DOT] = ACTIONS(3638), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3640), - [anon_sym_DOT_DOT_LT] = ACTIONS(3640), - [anon_sym_null] = ACTIONS(3642), - [anon_sym_true] = ACTIONS(3644), - [anon_sym_false] = ACTIONS(3644), - [aux_sym__val_number_decimal_token1] = ACTIONS(3646), - [aux_sym__val_number_decimal_token2] = ACTIONS(3648), - [aux_sym__val_number_decimal_token3] = ACTIONS(3650), - [aux_sym__val_number_decimal_token4] = ACTIONS(3652), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3654), - [aux_sym__val_number_token5] = ACTIONS(3654), - [aux_sym__val_number_token6] = ACTIONS(3654), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3656), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3490), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [sym__newline] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3420), + [anon_sym_PIPE] = ACTIONS(3420), + [anon_sym_err_GT_PIPE] = ACTIONS(3420), + [anon_sym_out_GT_PIPE] = ACTIONS(3420), + [anon_sym_e_GT_PIPE] = ACTIONS(3420), + [anon_sym_o_GT_PIPE] = ACTIONS(3420), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3420), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3420), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3420), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3420), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_do] = ACTIONS(3422), + [anon_sym_if] = ACTIONS(3568), + [anon_sym_match] = ACTIONS(3426), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(3428), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(3430), + [anon_sym_true] = ACTIONS(3432), + [anon_sym_false] = ACTIONS(3432), + [aux_sym__val_number_decimal_token1] = ACTIONS(3434), + [aux_sym__val_number_decimal_token2] = ACTIONS(3436), + [aux_sym__val_number_decimal_token3] = ACTIONS(3438), + [aux_sym__val_number_decimal_token4] = ACTIONS(3440), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(223), + [aux_sym__val_number_token5] = ACTIONS(223), + [aux_sym__val_number_token6] = ACTIONS(223), + [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_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1164] = { - [sym_expr_parenthesized] = STATE(4503), - [sym_val_range] = STATE(5027), - [sym__val_range] = STATE(7565), - [sym__val_range_with_end] = STATE(7339), - [sym__value] = STATE(5027), - [sym_val_nothing] = STATE(4353), - [sym_val_bool] = STATE(4671), - [sym_val_variable] = STATE(4517), - [sym_val_number] = STATE(4353), - [sym__val_number_decimal] = STATE(4023), - [sym__val_number] = STATE(4251), - [sym_val_duration] = STATE(4353), - [sym_val_filesize] = STATE(4353), - [sym_val_binary] = STATE(4353), - [sym_val_string] = STATE(4353), - [sym__raw_str] = STATE(4208), - [sym__str_double_quotes] = STATE(4208), - [sym_val_interpolated] = STATE(4353), - [sym__inter_single_quotes] = STATE(5076), - [sym__inter_double_quotes] = STATE(5077), - [sym_val_list] = STATE(4353), - [sym_val_record] = STATE(4353), - [sym_val_table] = STATE(4353), - [sym_val_closure] = STATE(4353), - [sym__unquoted_in_record] = STATE(4678), - [sym__unquoted_in_record_with_expr] = STATE(5027), - [sym__unquoted_anonymous_prefix] = STATE(6716), [sym_comment] = STATE(1164), - [aux_sym_shebang_repeat1] = STATE(3010), - [sym__newline] = ACTIONS(3574), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_DOLLAR] = ACTIONS(3580), - [anon_sym_LBRACE] = ACTIONS(3582), - [anon_sym_DOT_DOT] = ACTIONS(3584), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3586), - [anon_sym_DOT_DOT_LT] = ACTIONS(3586), - [anon_sym_null] = ACTIONS(3588), - [anon_sym_true] = ACTIONS(3590), - [anon_sym_false] = ACTIONS(3590), - [aux_sym__val_number_decimal_token1] = ACTIONS(3592), - [aux_sym__val_number_decimal_token2] = ACTIONS(3594), - [aux_sym__val_number_decimal_token3] = ACTIONS(3596), - [aux_sym__val_number_decimal_token4] = ACTIONS(3598), - [aux_sym__val_number_token1] = ACTIONS(3600), - [aux_sym__val_number_token2] = ACTIONS(3600), - [aux_sym__val_number_token3] = ACTIONS(3600), - [aux_sym__val_number_token4] = ACTIONS(3602), - [aux_sym__val_number_token5] = ACTIONS(3602), - [aux_sym__val_number_token6] = ACTIONS(3602), - [anon_sym_0b] = ACTIONS(3604), - [anon_sym_0o] = ACTIONS(3606), - [anon_sym_0x] = ACTIONS(3606), - [sym_val_date] = ACTIONS(3608), - [anon_sym_DQUOTE] = ACTIONS(3610), - [sym__str_single_quotes] = ACTIONS(3612), - [sym__str_back_ticks] = ACTIONS(3612), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3614), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3616), - [anon_sym_err_GT] = ACTIONS(3618), - [anon_sym_out_GT] = ACTIONS(3618), - [anon_sym_e_GT] = ACTIONS(3618), - [anon_sym_o_GT] = ACTIONS(3618), - [anon_sym_err_PLUSout_GT] = ACTIONS(3618), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3618), - [anon_sym_o_PLUSe_GT] = ACTIONS(3618), - [anon_sym_e_PLUSo_GT] = ACTIONS(3618), - [anon_sym_err_GT_GT] = ACTIONS(3620), - [anon_sym_out_GT_GT] = ACTIONS(3620), - [anon_sym_e_GT_GT] = ACTIONS(3620), - [anon_sym_o_GT_GT] = ACTIONS(3620), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3620), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3620), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3620), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3620), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3622), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3624), + [ts_builtin_sym_end] = ACTIONS(1506), + [anon_sym_STAR_STAR] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_STAR] = ACTIONS(1504), + [anon_sym_SLASH] = ACTIONS(1504), + [anon_sym_mod] = ACTIONS(1506), + [anon_sym_SLASH_SLASH] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_bit_DASHshl] = ACTIONS(1506), + [anon_sym_bit_DASHshr] = ACTIONS(1506), + [anon_sym_EQ_TILDE] = ACTIONS(1506), + [anon_sym_BANG_TILDE] = ACTIONS(1506), + [anon_sym_bit_DASHand] = ACTIONS(1506), + [anon_sym_bit_DASHxor] = ACTIONS(1506), + [anon_sym_bit_DASHor] = ACTIONS(1506), + [anon_sym_and] = ACTIONS(1506), + [anon_sym_xor] = ACTIONS(1506), + [anon_sym_or] = ACTIONS(1506), + [anon_sym_in] = ACTIONS(1506), + [anon_sym_not_DASHin] = ACTIONS(1506), + [anon_sym_has] = ACTIONS(1506), + [anon_sym_not_DASHhas] = 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_LT] = ACTIONS(1504), + [anon_sym_LT_EQ] = ACTIONS(1506), + [anon_sym_GT] = ACTIONS(1504), + [anon_sym_GT_EQ] = ACTIONS(1506), + [aux_sym_cmd_identifier_token41] = ACTIONS(1504), + [sym__newline] = ACTIONS(1504), + [anon_sym_SEMI] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_err_GT_PIPE] = ACTIONS(1504), + [anon_sym_out_GT_PIPE] = ACTIONS(1504), + [anon_sym_e_GT_PIPE] = ACTIONS(1504), + [anon_sym_o_GT_PIPE] = ACTIONS(1504), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1504), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1504), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1504), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1504), + [anon_sym_GT2] = ACTIONS(1504), + [anon_sym_DASH2] = ACTIONS(1504), + [anon_sym_in2] = ACTIONS(1504), + [anon_sym_STAR2] = ACTIONS(1504), + [anon_sym_and2] = ACTIONS(1504), + [anon_sym_xor2] = ACTIONS(1504), + [anon_sym_or2] = ACTIONS(1504), + [anon_sym_not_DASHin2] = ACTIONS(1504), + [anon_sym_has2] = ACTIONS(1504), + [anon_sym_not_DASHhas2] = ACTIONS(1504), + [anon_sym_starts_DASHwith2] = ACTIONS(1504), + [anon_sym_ends_DASHwith2] = ACTIONS(1504), + [anon_sym_EQ_EQ2] = ACTIONS(1504), + [anon_sym_BANG_EQ2] = ACTIONS(1504), + [anon_sym_LT2] = ACTIONS(1504), + [anon_sym_LT_EQ2] = ACTIONS(1504), + [anon_sym_GT_EQ2] = ACTIONS(1504), + [anon_sym_EQ_TILDE2] = ACTIONS(1504), + [anon_sym_BANG_TILDE2] = ACTIONS(1504), + [anon_sym_STAR_STAR2] = ACTIONS(1504), + [anon_sym_PLUS_PLUS2] = ACTIONS(1504), + [anon_sym_SLASH2] = ACTIONS(1504), + [anon_sym_mod2] = ACTIONS(1504), + [anon_sym_SLASH_SLASH2] = ACTIONS(1504), + [anon_sym_PLUS2] = ACTIONS(1504), + [anon_sym_bit_DASHshl2] = ACTIONS(1504), + [anon_sym_bit_DASHshr2] = ACTIONS(1504), + [anon_sym_bit_DASHand2] = ACTIONS(1504), + [anon_sym_bit_DASHxor2] = ACTIONS(1504), + [anon_sym_bit_DASHor2] = ACTIONS(1504), + [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_POUND] = ACTIONS(3), }, [1165] = { [sym_comment] = STATE(1165), - [anon_sym_STAR_STAR] = ACTIONS(1682), - [anon_sym_PLUS_PLUS] = ACTIONS(1682), - [anon_sym_STAR] = ACTIONS(1680), - [anon_sym_SLASH] = ACTIONS(1680), - [anon_sym_mod] = ACTIONS(1682), - [anon_sym_SLASH_SLASH] = ACTIONS(1682), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_DASH] = ACTIONS(1682), - [anon_sym_bit_DASHshl] = ACTIONS(1682), - [anon_sym_bit_DASHshr] = ACTIONS(1682), - [anon_sym_EQ_TILDE] = ACTIONS(1682), - [anon_sym_BANG_TILDE] = ACTIONS(1682), - [anon_sym_bit_DASHand] = ACTIONS(1682), - [anon_sym_bit_DASHxor] = ACTIONS(1682), - [anon_sym_bit_DASHor] = ACTIONS(1682), - [anon_sym_and] = ACTIONS(1682), - [anon_sym_xor] = ACTIONS(1682), - [anon_sym_or] = ACTIONS(1682), - [anon_sym_in] = ACTIONS(1682), - [anon_sym_not_DASHin] = ACTIONS(1682), - [anon_sym_starts_DASHwith] = ACTIONS(1682), - [anon_sym_ends_DASHwith] = ACTIONS(1682), - [anon_sym_EQ_EQ] = ACTIONS(1682), - [anon_sym_BANG_EQ] = ACTIONS(1682), - [anon_sym_LT] = ACTIONS(1680), - [anon_sym_LT_EQ] = ACTIONS(1682), - [anon_sym_GT] = ACTIONS(1680), - [anon_sym_GT_EQ] = ACTIONS(1682), - [aux_sym_cmd_identifier_token41] = ACTIONS(1680), - [sym__newline] = ACTIONS(1680), - [anon_sym_SEMI] = ACTIONS(1680), - [anon_sym_PIPE] = ACTIONS(1680), - [anon_sym_err_GT_PIPE] = ACTIONS(1680), - [anon_sym_out_GT_PIPE] = ACTIONS(1680), - [anon_sym_e_GT_PIPE] = ACTIONS(1680), - [anon_sym_o_GT_PIPE] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1680), - [anon_sym_RPAREN] = ACTIONS(1680), - [anon_sym_GT2] = ACTIONS(1680), - [anon_sym_DASH2] = ACTIONS(1680), - [anon_sym_in2] = ACTIONS(1680), - [anon_sym_STAR2] = ACTIONS(1680), - [anon_sym_and2] = ACTIONS(1680), - [anon_sym_xor2] = ACTIONS(1680), - [anon_sym_or2] = ACTIONS(1680), - [anon_sym_not_DASHin2] = ACTIONS(1680), - [anon_sym_starts_DASHwith2] = ACTIONS(1680), - [anon_sym_ends_DASHwith2] = ACTIONS(1680), - [anon_sym_EQ_EQ2] = ACTIONS(1680), - [anon_sym_BANG_EQ2] = ACTIONS(1680), - [anon_sym_LT2] = ACTIONS(1680), - [anon_sym_LT_EQ2] = ACTIONS(1680), - [anon_sym_GT_EQ2] = ACTIONS(1680), - [anon_sym_EQ_TILDE2] = ACTIONS(1680), - [anon_sym_BANG_TILDE2] = ACTIONS(1680), - [anon_sym_STAR_STAR2] = ACTIONS(1680), - [anon_sym_PLUS_PLUS2] = ACTIONS(1680), - [anon_sym_SLASH2] = ACTIONS(1680), - [anon_sym_mod2] = ACTIONS(1680), - [anon_sym_SLASH_SLASH2] = ACTIONS(1680), - [anon_sym_PLUS2] = ACTIONS(1680), - [anon_sym_bit_DASHshl2] = ACTIONS(1680), - [anon_sym_bit_DASHshr2] = ACTIONS(1680), - [anon_sym_bit_DASHand2] = ACTIONS(1680), - [anon_sym_bit_DASHxor2] = ACTIONS(1680), - [anon_sym_bit_DASHor2] = ACTIONS(1680), - [anon_sym_DOT_DOT2] = ACTIONS(1680), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1682), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1682), - [aux_sym__immediate_decimal_token2] = ACTIONS(3680), - [sym_filesize_unit] = ACTIONS(1680), - [sym_duration_unit] = ACTIONS(1682), + [ts_builtin_sym_end] = ACTIONS(1651), + [anon_sym_STAR_STAR] = ACTIONS(2602), + [anon_sym_PLUS_PLUS] = ACTIONS(2602), + [anon_sym_STAR] = ACTIONS(2604), + [anon_sym_SLASH] = ACTIONS(2604), + [anon_sym_mod] = ACTIONS(2602), + [anon_sym_SLASH_SLASH] = ACTIONS(2602), + [anon_sym_PLUS] = ACTIONS(2604), + [anon_sym_DASH] = ACTIONS(2602), + [anon_sym_bit_DASHshl] = ACTIONS(2602), + [anon_sym_bit_DASHshr] = ACTIONS(2602), + [anon_sym_EQ_TILDE] = ACTIONS(2602), + [anon_sym_BANG_TILDE] = ACTIONS(2602), + [anon_sym_bit_DASHand] = ACTIONS(2602), + [anon_sym_bit_DASHxor] = ACTIONS(2602), + [anon_sym_bit_DASHor] = ACTIONS(2602), + [anon_sym_and] = ACTIONS(2602), + [anon_sym_xor] = ACTIONS(2602), + [anon_sym_or] = ACTIONS(2602), + [anon_sym_in] = ACTIONS(2602), + [anon_sym_not_DASHin] = ACTIONS(2602), + [anon_sym_has] = ACTIONS(2602), + [anon_sym_not_DASHhas] = ACTIONS(2602), + [anon_sym_starts_DASHwith] = ACTIONS(2602), + [anon_sym_ends_DASHwith] = ACTIONS(2602), + [anon_sym_EQ_EQ] = ACTIONS(2602), + [anon_sym_BANG_EQ] = ACTIONS(2602), + [anon_sym_LT] = ACTIONS(2604), + [anon_sym_LT_EQ] = ACTIONS(2602), + [anon_sym_GT] = ACTIONS(2604), + [anon_sym_GT_EQ] = ACTIONS(2602), + [aux_sym_cmd_identifier_token41] = ACTIONS(2606), + [sym__newline] = ACTIONS(1639), + [anon_sym_SEMI] = ACTIONS(1639), + [anon_sym_PIPE] = ACTIONS(1639), + [anon_sym_err_GT_PIPE] = ACTIONS(1639), + [anon_sym_out_GT_PIPE] = ACTIONS(1639), + [anon_sym_e_GT_PIPE] = ACTIONS(1639), + [anon_sym_o_GT_PIPE] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1639), + [anon_sym_GT2] = ACTIONS(1639), + [anon_sym_DASH2] = ACTIONS(1639), + [anon_sym_in2] = ACTIONS(1639), + [anon_sym_STAR2] = ACTIONS(1639), + [anon_sym_and2] = ACTIONS(1639), + [anon_sym_xor2] = ACTIONS(1639), + [anon_sym_or2] = ACTIONS(1639), + [anon_sym_not_DASHin2] = ACTIONS(1639), + [anon_sym_has2] = ACTIONS(1639), + [anon_sym_not_DASHhas2] = ACTIONS(1639), + [anon_sym_starts_DASHwith2] = ACTIONS(1639), + [anon_sym_ends_DASHwith2] = ACTIONS(1639), + [anon_sym_EQ_EQ2] = ACTIONS(1639), + [anon_sym_BANG_EQ2] = ACTIONS(1639), + [anon_sym_LT2] = ACTIONS(1639), + [anon_sym_LT_EQ2] = ACTIONS(1639), + [anon_sym_GT_EQ2] = ACTIONS(1639), + [anon_sym_EQ_TILDE2] = ACTIONS(1639), + [anon_sym_BANG_TILDE2] = ACTIONS(1639), + [anon_sym_STAR_STAR2] = ACTIONS(1639), + [anon_sym_PLUS_PLUS2] = ACTIONS(1639), + [anon_sym_SLASH2] = ACTIONS(1639), + [anon_sym_mod2] = ACTIONS(1639), + [anon_sym_SLASH_SLASH2] = ACTIONS(1639), + [anon_sym_PLUS2] = ACTIONS(1639), + [anon_sym_bit_DASHshl2] = ACTIONS(1639), + [anon_sym_bit_DASHshr2] = ACTIONS(1639), + [anon_sym_bit_DASHand2] = ACTIONS(1639), + [anon_sym_bit_DASHxor2] = ACTIONS(1639), + [anon_sym_bit_DASHor2] = ACTIONS(1639), + [anon_sym_DOT_DOT2] = ACTIONS(2608), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2610), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2610), + [sym_filesize_unit] = ACTIONS(3570), + [sym_duration_unit] = ACTIONS(3572), [anon_sym_POUND] = ACTIONS(3), }, [1166] = { [sym_comment] = STATE(1166), - [anon_sym_STAR_STAR] = ACTIONS(1682), - [anon_sym_PLUS_PLUS] = ACTIONS(1682), - [anon_sym_STAR] = ACTIONS(1680), - [anon_sym_SLASH] = ACTIONS(1680), - [anon_sym_mod] = ACTIONS(1682), - [anon_sym_SLASH_SLASH] = ACTIONS(1682), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_DASH] = ACTIONS(1682), - [anon_sym_bit_DASHshl] = ACTIONS(1682), - [anon_sym_bit_DASHshr] = ACTIONS(1682), - [anon_sym_EQ_TILDE] = ACTIONS(1682), - [anon_sym_BANG_TILDE] = ACTIONS(1682), - [anon_sym_bit_DASHand] = ACTIONS(1682), - [anon_sym_bit_DASHxor] = ACTIONS(1682), - [anon_sym_bit_DASHor] = ACTIONS(1682), - [anon_sym_and] = ACTIONS(1682), - [anon_sym_xor] = ACTIONS(1682), - [anon_sym_or] = ACTIONS(1682), - [anon_sym_in] = ACTIONS(1682), - [anon_sym_not_DASHin] = ACTIONS(1682), - [anon_sym_starts_DASHwith] = ACTIONS(1682), - [anon_sym_ends_DASHwith] = ACTIONS(1682), - [anon_sym_EQ_EQ] = ACTIONS(1682), - [anon_sym_BANG_EQ] = ACTIONS(1682), - [anon_sym_LT] = ACTIONS(1680), - [anon_sym_LT_EQ] = ACTIONS(1682), - [anon_sym_GT] = ACTIONS(1680), - [anon_sym_GT_EQ] = ACTIONS(1682), - [aux_sym_cmd_identifier_token41] = ACTIONS(1680), - [sym__newline] = ACTIONS(1680), - [anon_sym_SEMI] = ACTIONS(1680), - [anon_sym_PIPE] = ACTIONS(1680), - [anon_sym_err_GT_PIPE] = ACTIONS(1680), - [anon_sym_out_GT_PIPE] = ACTIONS(1680), - [anon_sym_e_GT_PIPE] = ACTIONS(1680), - [anon_sym_o_GT_PIPE] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1680), - [anon_sym_GT2] = ACTIONS(1680), - [anon_sym_DASH2] = ACTIONS(1680), - [anon_sym_in2] = ACTIONS(1680), - [anon_sym_RBRACE] = ACTIONS(1680), - [anon_sym_STAR2] = ACTIONS(1680), - [anon_sym_and2] = ACTIONS(1680), - [anon_sym_xor2] = ACTIONS(1680), - [anon_sym_or2] = ACTIONS(1680), - [anon_sym_not_DASHin2] = ACTIONS(1680), - [anon_sym_starts_DASHwith2] = ACTIONS(1680), - [anon_sym_ends_DASHwith2] = ACTIONS(1680), - [anon_sym_EQ_EQ2] = ACTIONS(1680), - [anon_sym_BANG_EQ2] = ACTIONS(1680), - [anon_sym_LT2] = ACTIONS(1680), - [anon_sym_LT_EQ2] = ACTIONS(1680), - [anon_sym_GT_EQ2] = ACTIONS(1680), - [anon_sym_EQ_TILDE2] = ACTIONS(1680), - [anon_sym_BANG_TILDE2] = ACTIONS(1680), - [anon_sym_STAR_STAR2] = ACTIONS(1680), - [anon_sym_PLUS_PLUS2] = ACTIONS(1680), - [anon_sym_SLASH2] = ACTIONS(1680), - [anon_sym_mod2] = ACTIONS(1680), - [anon_sym_SLASH_SLASH2] = ACTIONS(1680), - [anon_sym_PLUS2] = ACTIONS(1680), - [anon_sym_bit_DASHshl2] = ACTIONS(1680), - [anon_sym_bit_DASHshr2] = ACTIONS(1680), - [anon_sym_bit_DASHand2] = ACTIONS(1680), - [anon_sym_bit_DASHxor2] = ACTIONS(1680), - [anon_sym_bit_DASHor2] = ACTIONS(1680), - [anon_sym_DOT_DOT2] = ACTIONS(1680), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1682), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1682), - [aux_sym__immediate_decimal_token2] = ACTIONS(3682), - [sym_filesize_unit] = ACTIONS(1680), - [sym_duration_unit] = ACTIONS(1682), + [ts_builtin_sym_end] = ACTIONS(1620), + [anon_sym_STAR_STAR] = ACTIONS(1620), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1618), + [anon_sym_SLASH] = ACTIONS(1618), + [anon_sym_mod] = ACTIONS(1620), + [anon_sym_SLASH_SLASH] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1618), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_bit_DASHshl] = ACTIONS(1620), + [anon_sym_bit_DASHshr] = ACTIONS(1620), + [anon_sym_EQ_TILDE] = ACTIONS(1620), + [anon_sym_BANG_TILDE] = ACTIONS(1620), + [anon_sym_bit_DASHand] = ACTIONS(1620), + [anon_sym_bit_DASHxor] = ACTIONS(1620), + [anon_sym_bit_DASHor] = ACTIONS(1620), + [anon_sym_and] = ACTIONS(1620), + [anon_sym_xor] = ACTIONS(1620), + [anon_sym_or] = ACTIONS(1620), + [anon_sym_in] = ACTIONS(1620), + [anon_sym_not_DASHin] = ACTIONS(1620), + [anon_sym_has] = ACTIONS(1620), + [anon_sym_not_DASHhas] = ACTIONS(1620), + [anon_sym_starts_DASHwith] = ACTIONS(1620), + [anon_sym_ends_DASHwith] = ACTIONS(1620), + [anon_sym_EQ_EQ] = ACTIONS(1620), + [anon_sym_BANG_EQ] = ACTIONS(1620), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_LT_EQ] = ACTIONS(1620), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_GT_EQ] = ACTIONS(1620), + [aux_sym_cmd_identifier_token41] = ACTIONS(1618), + [sym__newline] = ACTIONS(1618), + [anon_sym_SEMI] = ACTIONS(1618), + [anon_sym_PIPE] = ACTIONS(1618), + [anon_sym_err_GT_PIPE] = ACTIONS(1618), + [anon_sym_out_GT_PIPE] = ACTIONS(1618), + [anon_sym_e_GT_PIPE] = ACTIONS(1618), + [anon_sym_o_GT_PIPE] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1618), + [anon_sym_GT2] = ACTIONS(1618), + [anon_sym_DASH2] = ACTIONS(1618), + [anon_sym_in2] = ACTIONS(1618), + [anon_sym_STAR2] = ACTIONS(1618), + [anon_sym_and2] = ACTIONS(1618), + [anon_sym_xor2] = ACTIONS(1618), + [anon_sym_or2] = ACTIONS(1618), + [anon_sym_not_DASHin2] = ACTIONS(1618), + [anon_sym_has2] = ACTIONS(1618), + [anon_sym_not_DASHhas2] = ACTIONS(1618), + [anon_sym_starts_DASHwith2] = ACTIONS(1618), + [anon_sym_ends_DASHwith2] = ACTIONS(1618), + [anon_sym_EQ_EQ2] = ACTIONS(1618), + [anon_sym_BANG_EQ2] = ACTIONS(1618), + [anon_sym_LT2] = ACTIONS(1618), + [anon_sym_LT_EQ2] = ACTIONS(1618), + [anon_sym_GT_EQ2] = ACTIONS(1618), + [anon_sym_EQ_TILDE2] = ACTIONS(1618), + [anon_sym_BANG_TILDE2] = ACTIONS(1618), + [anon_sym_STAR_STAR2] = ACTIONS(1618), + [anon_sym_PLUS_PLUS2] = ACTIONS(1618), + [anon_sym_SLASH2] = ACTIONS(1618), + [anon_sym_mod2] = ACTIONS(1618), + [anon_sym_SLASH_SLASH2] = ACTIONS(1618), + [anon_sym_PLUS2] = ACTIONS(1618), + [anon_sym_bit_DASHshl2] = ACTIONS(1618), + [anon_sym_bit_DASHshr2] = ACTIONS(1618), + [anon_sym_bit_DASHand2] = ACTIONS(1618), + [anon_sym_bit_DASHxor2] = ACTIONS(1618), + [anon_sym_bit_DASHor2] = ACTIONS(1618), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [sym_filesize_unit] = ACTIONS(1618), + [sym_duration_unit] = ACTIONS(1620), [anon_sym_POUND] = ACTIONS(3), }, [1167] = { [sym_comment] = STATE(1167), - [ts_builtin_sym_end] = ACTIONS(1552), - [anon_sym_STAR_STAR] = ACTIONS(1552), - [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1550), - [anon_sym_SLASH] = ACTIONS(1550), - [anon_sym_mod] = ACTIONS(1552), - [anon_sym_SLASH_SLASH] = ACTIONS(1552), - [anon_sym_PLUS] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1552), - [anon_sym_bit_DASHshl] = ACTIONS(1552), - [anon_sym_bit_DASHshr] = ACTIONS(1552), - [anon_sym_EQ_TILDE] = ACTIONS(1552), - [anon_sym_BANG_TILDE] = ACTIONS(1552), - [anon_sym_bit_DASHand] = ACTIONS(1552), - [anon_sym_bit_DASHxor] = ACTIONS(1552), - [anon_sym_bit_DASHor] = ACTIONS(1552), - [anon_sym_and] = ACTIONS(1552), - [anon_sym_xor] = ACTIONS(1552), - [anon_sym_or] = ACTIONS(1552), - [anon_sym_in] = ACTIONS(1552), - [anon_sym_not_DASHin] = ACTIONS(1552), - [anon_sym_starts_DASHwith] = ACTIONS(1552), - [anon_sym_ends_DASHwith] = ACTIONS(1552), - [anon_sym_EQ_EQ] = ACTIONS(1552), - [anon_sym_BANG_EQ] = ACTIONS(1552), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_LT_EQ] = ACTIONS(1552), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_GT_EQ] = ACTIONS(1552), - [aux_sym_cmd_identifier_token41] = ACTIONS(1550), - [sym__newline] = ACTIONS(1550), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_err_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_GT_PIPE] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1550), - [anon_sym_GT2] = ACTIONS(1550), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_in2] = ACTIONS(1550), - [anon_sym_STAR2] = ACTIONS(1550), - [anon_sym_and2] = ACTIONS(1550), - [anon_sym_xor2] = ACTIONS(1550), - [anon_sym_or2] = ACTIONS(1550), - [anon_sym_not_DASHin2] = ACTIONS(1550), - [anon_sym_starts_DASHwith2] = ACTIONS(1550), - [anon_sym_ends_DASHwith2] = ACTIONS(1550), - [anon_sym_EQ_EQ2] = ACTIONS(1550), - [anon_sym_BANG_EQ2] = ACTIONS(1550), - [anon_sym_LT2] = ACTIONS(1550), - [anon_sym_LT_EQ2] = ACTIONS(1550), - [anon_sym_GT_EQ2] = ACTIONS(1550), - [anon_sym_EQ_TILDE2] = ACTIONS(1550), - [anon_sym_BANG_TILDE2] = ACTIONS(1550), - [anon_sym_STAR_STAR2] = ACTIONS(1550), - [anon_sym_PLUS_PLUS2] = ACTIONS(1550), - [anon_sym_SLASH2] = ACTIONS(1550), - [anon_sym_mod2] = ACTIONS(1550), - [anon_sym_SLASH_SLASH2] = ACTIONS(1550), - [anon_sym_PLUS2] = ACTIONS(1550), - [anon_sym_bit_DASHshl2] = ACTIONS(1550), - [anon_sym_bit_DASHshr2] = ACTIONS(1550), - [anon_sym_bit_DASHand2] = ACTIONS(1550), - [anon_sym_bit_DASHxor2] = ACTIONS(1550), - [anon_sym_bit_DASHor2] = ACTIONS(1550), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [aux_sym__immediate_decimal_token2] = ACTIONS(3572), - [sym_filesize_unit] = ACTIONS(1550), - [sym_duration_unit] = ACTIONS(1552), + [ts_builtin_sym_end] = ACTIONS(1691), + [anon_sym_STAR_STAR] = ACTIONS(1691), + [anon_sym_PLUS_PLUS] = ACTIONS(1691), + [anon_sym_STAR] = ACTIONS(1689), + [anon_sym_SLASH] = ACTIONS(1689), + [anon_sym_mod] = ACTIONS(1691), + [anon_sym_SLASH_SLASH] = ACTIONS(1691), + [anon_sym_PLUS] = ACTIONS(1689), + [anon_sym_DASH] = ACTIONS(1691), + [anon_sym_bit_DASHshl] = ACTIONS(1691), + [anon_sym_bit_DASHshr] = ACTIONS(1691), + [anon_sym_EQ_TILDE] = ACTIONS(1691), + [anon_sym_BANG_TILDE] = ACTIONS(1691), + [anon_sym_bit_DASHand] = ACTIONS(1691), + [anon_sym_bit_DASHxor] = ACTIONS(1691), + [anon_sym_bit_DASHor] = ACTIONS(1691), + [anon_sym_and] = ACTIONS(1691), + [anon_sym_xor] = ACTIONS(1691), + [anon_sym_or] = ACTIONS(1691), + [anon_sym_in] = ACTIONS(1691), + [anon_sym_not_DASHin] = ACTIONS(1691), + [anon_sym_has] = ACTIONS(1691), + [anon_sym_not_DASHhas] = ACTIONS(1691), + [anon_sym_starts_DASHwith] = ACTIONS(1691), + [anon_sym_ends_DASHwith] = ACTIONS(1691), + [anon_sym_EQ_EQ] = ACTIONS(1691), + [anon_sym_BANG_EQ] = ACTIONS(1691), + [anon_sym_LT] = ACTIONS(1689), + [anon_sym_LT_EQ] = ACTIONS(1691), + [anon_sym_GT] = ACTIONS(1689), + [anon_sym_GT_EQ] = ACTIONS(1691), + [aux_sym_cmd_identifier_token41] = ACTIONS(1689), + [sym__newline] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1689), + [anon_sym_PIPE] = ACTIONS(1689), + [anon_sym_err_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_GT_PIPE] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1689), + [anon_sym_GT2] = ACTIONS(1689), + [anon_sym_DASH2] = ACTIONS(1689), + [anon_sym_in2] = ACTIONS(1689), + [anon_sym_STAR2] = ACTIONS(1689), + [anon_sym_and2] = ACTIONS(1689), + [anon_sym_xor2] = ACTIONS(1689), + [anon_sym_or2] = ACTIONS(1689), + [anon_sym_not_DASHin2] = ACTIONS(1689), + [anon_sym_has2] = ACTIONS(1689), + [anon_sym_not_DASHhas2] = ACTIONS(1689), + [anon_sym_starts_DASHwith2] = ACTIONS(1689), + [anon_sym_ends_DASHwith2] = ACTIONS(1689), + [anon_sym_EQ_EQ2] = ACTIONS(1689), + [anon_sym_BANG_EQ2] = ACTIONS(1689), + [anon_sym_LT2] = ACTIONS(1689), + [anon_sym_LT_EQ2] = ACTIONS(1689), + [anon_sym_GT_EQ2] = ACTIONS(1689), + [anon_sym_EQ_TILDE2] = ACTIONS(1689), + [anon_sym_BANG_TILDE2] = ACTIONS(1689), + [anon_sym_STAR_STAR2] = ACTIONS(1689), + [anon_sym_PLUS_PLUS2] = ACTIONS(1689), + [anon_sym_SLASH2] = ACTIONS(1689), + [anon_sym_mod2] = ACTIONS(1689), + [anon_sym_SLASH_SLASH2] = ACTIONS(1689), + [anon_sym_PLUS2] = ACTIONS(1689), + [anon_sym_bit_DASHshl2] = ACTIONS(1689), + [anon_sym_bit_DASHshr2] = ACTIONS(1689), + [anon_sym_bit_DASHand2] = ACTIONS(1689), + [anon_sym_bit_DASHxor2] = ACTIONS(1689), + [anon_sym_bit_DASHor2] = ACTIONS(1689), + [anon_sym_DOT_DOT2] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1691), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1691), + [sym_filesize_unit] = ACTIONS(1689), + [sym_duration_unit] = ACTIONS(1691), [anon_sym_POUND] = ACTIONS(3), }, [1168] = { [sym_comment] = STATE(1168), - [ts_builtin_sym_end] = ACTIONS(1682), - [anon_sym_STAR_STAR] = ACTIONS(1682), - [anon_sym_PLUS_PLUS] = ACTIONS(1682), - [anon_sym_STAR] = ACTIONS(1680), - [anon_sym_SLASH] = ACTIONS(1680), - [anon_sym_mod] = ACTIONS(1682), - [anon_sym_SLASH_SLASH] = ACTIONS(1682), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_DASH] = ACTIONS(1682), - [anon_sym_bit_DASHshl] = ACTIONS(1682), - [anon_sym_bit_DASHshr] = ACTIONS(1682), - [anon_sym_EQ_TILDE] = ACTIONS(1682), - [anon_sym_BANG_TILDE] = ACTIONS(1682), - [anon_sym_bit_DASHand] = ACTIONS(1682), - [anon_sym_bit_DASHxor] = ACTIONS(1682), - [anon_sym_bit_DASHor] = ACTIONS(1682), - [anon_sym_and] = ACTIONS(1682), - [anon_sym_xor] = ACTIONS(1682), - [anon_sym_or] = ACTIONS(1682), - [anon_sym_in] = ACTIONS(1682), - [anon_sym_not_DASHin] = ACTIONS(1682), - [anon_sym_starts_DASHwith] = ACTIONS(1682), - [anon_sym_ends_DASHwith] = ACTIONS(1682), - [anon_sym_EQ_EQ] = ACTIONS(1682), - [anon_sym_BANG_EQ] = ACTIONS(1682), - [anon_sym_LT] = ACTIONS(1680), - [anon_sym_LT_EQ] = ACTIONS(1682), - [anon_sym_GT] = ACTIONS(1680), - [anon_sym_GT_EQ] = ACTIONS(1682), - [aux_sym_cmd_identifier_token41] = ACTIONS(1680), - [sym__newline] = ACTIONS(1680), - [anon_sym_SEMI] = ACTIONS(1680), - [anon_sym_PIPE] = ACTIONS(1680), - [anon_sym_err_GT_PIPE] = ACTIONS(1680), - [anon_sym_out_GT_PIPE] = ACTIONS(1680), - [anon_sym_e_GT_PIPE] = ACTIONS(1680), - [anon_sym_o_GT_PIPE] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1680), - [anon_sym_GT2] = ACTIONS(1680), - [anon_sym_DASH2] = ACTIONS(1680), - [anon_sym_in2] = ACTIONS(1680), - [anon_sym_STAR2] = ACTIONS(1680), - [anon_sym_and2] = ACTIONS(1680), - [anon_sym_xor2] = ACTIONS(1680), - [anon_sym_or2] = ACTIONS(1680), - [anon_sym_not_DASHin2] = ACTIONS(1680), - [anon_sym_starts_DASHwith2] = ACTIONS(1680), - [anon_sym_ends_DASHwith2] = ACTIONS(1680), - [anon_sym_EQ_EQ2] = ACTIONS(1680), - [anon_sym_BANG_EQ2] = ACTIONS(1680), - [anon_sym_LT2] = ACTIONS(1680), - [anon_sym_LT_EQ2] = ACTIONS(1680), - [anon_sym_GT_EQ2] = ACTIONS(1680), - [anon_sym_EQ_TILDE2] = ACTIONS(1680), - [anon_sym_BANG_TILDE2] = ACTIONS(1680), - [anon_sym_STAR_STAR2] = ACTIONS(1680), - [anon_sym_PLUS_PLUS2] = ACTIONS(1680), - [anon_sym_SLASH2] = ACTIONS(1680), - [anon_sym_mod2] = ACTIONS(1680), - [anon_sym_SLASH_SLASH2] = ACTIONS(1680), - [anon_sym_PLUS2] = ACTIONS(1680), - [anon_sym_bit_DASHshl2] = ACTIONS(1680), - [anon_sym_bit_DASHshr2] = ACTIONS(1680), - [anon_sym_bit_DASHand2] = ACTIONS(1680), - [anon_sym_bit_DASHxor2] = ACTIONS(1680), - [anon_sym_bit_DASHor2] = ACTIONS(1680), - [anon_sym_DOT_DOT2] = ACTIONS(1680), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1682), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1682), - [aux_sym__immediate_decimal_token2] = ACTIONS(3684), - [sym_filesize_unit] = ACTIONS(1680), - [sym_duration_unit] = ACTIONS(1682), + [anon_sym_STAR_STAR] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_SLASH] = ACTIONS(1512), + [anon_sym_mod] = ACTIONS(1514), + [anon_sym_SLASH_SLASH] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_bit_DASHshl] = ACTIONS(1514), + [anon_sym_bit_DASHshr] = ACTIONS(1514), + [anon_sym_EQ_TILDE] = ACTIONS(1514), + [anon_sym_BANG_TILDE] = ACTIONS(1514), + [anon_sym_bit_DASHand] = ACTIONS(1514), + [anon_sym_bit_DASHxor] = ACTIONS(1514), + [anon_sym_bit_DASHor] = ACTIONS(1514), + [anon_sym_and] = ACTIONS(1514), + [anon_sym_xor] = ACTIONS(1514), + [anon_sym_or] = ACTIONS(1514), + [anon_sym_in] = ACTIONS(1514), + [anon_sym_not_DASHin] = ACTIONS(1514), + [anon_sym_has] = ACTIONS(1514), + [anon_sym_not_DASHhas] = ACTIONS(1514), + [anon_sym_starts_DASHwith] = ACTIONS(1514), + [anon_sym_ends_DASHwith] = ACTIONS(1514), + [anon_sym_EQ_EQ] = ACTIONS(1514), + [anon_sym_BANG_EQ] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_LT_EQ] = ACTIONS(1514), + [anon_sym_GT] = ACTIONS(1512), + [anon_sym_GT_EQ] = ACTIONS(1514), + [aux_sym_cmd_identifier_token41] = ACTIONS(1512), + [sym__newline] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_err_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_GT_PIPE] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1512), + [anon_sym_GT2] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_in2] = ACTIONS(1512), + [anon_sym_RBRACE] = ACTIONS(1512), + [anon_sym_STAR2] = ACTIONS(1512), + [anon_sym_and2] = ACTIONS(1512), + [anon_sym_xor2] = ACTIONS(1512), + [anon_sym_or2] = ACTIONS(1512), + [anon_sym_not_DASHin2] = ACTIONS(1512), + [anon_sym_has2] = ACTIONS(1512), + [anon_sym_not_DASHhas2] = ACTIONS(1512), + [anon_sym_starts_DASHwith2] = ACTIONS(1512), + [anon_sym_ends_DASHwith2] = ACTIONS(1512), + [anon_sym_EQ_EQ2] = ACTIONS(1512), + [anon_sym_BANG_EQ2] = ACTIONS(1512), + [anon_sym_LT2] = ACTIONS(1512), + [anon_sym_LT_EQ2] = ACTIONS(1512), + [anon_sym_GT_EQ2] = ACTIONS(1512), + [anon_sym_EQ_TILDE2] = ACTIONS(1512), + [anon_sym_BANG_TILDE2] = ACTIONS(1512), + [anon_sym_STAR_STAR2] = ACTIONS(1512), + [anon_sym_PLUS_PLUS2] = ACTIONS(1512), + [anon_sym_SLASH2] = ACTIONS(1512), + [anon_sym_mod2] = ACTIONS(1512), + [anon_sym_SLASH_SLASH2] = ACTIONS(1512), + [anon_sym_PLUS2] = ACTIONS(1512), + [anon_sym_bit_DASHshl2] = ACTIONS(1512), + [anon_sym_bit_DASHshr2] = ACTIONS(1512), + [anon_sym_bit_DASHand2] = ACTIONS(1512), + [anon_sym_bit_DASHxor2] = ACTIONS(1512), + [anon_sym_bit_DASHor2] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [sym_filesize_unit] = ACTIONS(1512), + [sym_duration_unit] = ACTIONS(1514), [anon_sym_POUND] = ACTIONS(3), }, [1169] = { - [sym_match_arm] = STATE(6899), - [sym_default_arm] = STATE(6899), - [sym_match_pattern] = STATE(7704), - [sym__match_pattern] = STATE(6020), - [sym__match_pattern_expression] = STATE(7226), - [sym__match_pattern_value] = STATE(7259), - [sym__match_pattern_list] = STATE(7280), - [sym__match_pattern_record] = STATE(6737), - [sym_expr_parenthesized] = STATE(5787), - [sym_val_range] = STATE(7259), - [sym__val_range] = STATE(7519), - [sym_val_nothing] = STATE(6734), - [sym_val_bool] = STATE(6677), - [sym_val_variable] = STATE(5731), - [sym_val_number] = STATE(6734), - [sym__val_number_decimal] = STATE(5363), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(6734), - [sym_val_filesize] = STATE(6734), - [sym_val_binary] = STATE(6734), - [sym_val_string] = STATE(6734), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_table] = STATE(6734), - [sym_unquoted] = STATE(7105), - [sym__unquoted_anonymous_prefix] = STATE(7789), [sym_comment] = STATE(1169), - [aux_sym_shebang_repeat1] = STATE(3105), - [aux_sym_ctrl_match_repeat1] = STATE(1205), - [sym__newline] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3630), - [anon_sym_LBRACE] = ACTIONS(3632), - [anon_sym__] = ACTIONS(3636), - [anon_sym_DOT_DOT] = ACTIONS(3638), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3640), - [anon_sym_DOT_DOT_LT] = ACTIONS(3640), - [anon_sym_null] = ACTIONS(3642), - [anon_sym_true] = ACTIONS(3644), - [anon_sym_false] = ACTIONS(3644), - [aux_sym__val_number_decimal_token1] = ACTIONS(3646), - [aux_sym__val_number_decimal_token2] = ACTIONS(3648), - [aux_sym__val_number_decimal_token3] = ACTIONS(3650), - [aux_sym__val_number_decimal_token4] = ACTIONS(3652), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3654), - [aux_sym__val_number_token5] = ACTIONS(3654), - [aux_sym__val_number_token6] = ACTIONS(3654), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3656), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3490), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_SLASH] = ACTIONS(1512), + [anon_sym_mod] = ACTIONS(1514), + [anon_sym_SLASH_SLASH] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_bit_DASHshl] = ACTIONS(1514), + [anon_sym_bit_DASHshr] = ACTIONS(1514), + [anon_sym_EQ_TILDE] = ACTIONS(1514), + [anon_sym_BANG_TILDE] = ACTIONS(1514), + [anon_sym_bit_DASHand] = ACTIONS(1514), + [anon_sym_bit_DASHxor] = ACTIONS(1514), + [anon_sym_bit_DASHor] = ACTIONS(1514), + [anon_sym_and] = ACTIONS(1514), + [anon_sym_xor] = ACTIONS(1514), + [anon_sym_or] = ACTIONS(1514), + [anon_sym_in] = ACTIONS(1514), + [anon_sym_not_DASHin] = ACTIONS(1514), + [anon_sym_has] = ACTIONS(1514), + [anon_sym_not_DASHhas] = ACTIONS(1514), + [anon_sym_starts_DASHwith] = ACTIONS(1514), + [anon_sym_ends_DASHwith] = ACTIONS(1514), + [anon_sym_EQ_EQ] = ACTIONS(1514), + [anon_sym_BANG_EQ] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_LT_EQ] = ACTIONS(1514), + [anon_sym_GT] = ACTIONS(1512), + [anon_sym_GT_EQ] = ACTIONS(1514), + [aux_sym_cmd_identifier_token41] = ACTIONS(1512), + [sym__newline] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_err_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_GT_PIPE] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1512), + [anon_sym_RPAREN] = ACTIONS(1512), + [anon_sym_GT2] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_in2] = ACTIONS(1512), + [anon_sym_STAR2] = ACTIONS(1512), + [anon_sym_and2] = ACTIONS(1512), + [anon_sym_xor2] = ACTIONS(1512), + [anon_sym_or2] = ACTIONS(1512), + [anon_sym_not_DASHin2] = ACTIONS(1512), + [anon_sym_has2] = ACTIONS(1512), + [anon_sym_not_DASHhas2] = ACTIONS(1512), + [anon_sym_starts_DASHwith2] = ACTIONS(1512), + [anon_sym_ends_DASHwith2] = ACTIONS(1512), + [anon_sym_EQ_EQ2] = ACTIONS(1512), + [anon_sym_BANG_EQ2] = ACTIONS(1512), + [anon_sym_LT2] = ACTIONS(1512), + [anon_sym_LT_EQ2] = ACTIONS(1512), + [anon_sym_GT_EQ2] = ACTIONS(1512), + [anon_sym_EQ_TILDE2] = ACTIONS(1512), + [anon_sym_BANG_TILDE2] = ACTIONS(1512), + [anon_sym_STAR_STAR2] = ACTIONS(1512), + [anon_sym_PLUS_PLUS2] = ACTIONS(1512), + [anon_sym_SLASH2] = ACTIONS(1512), + [anon_sym_mod2] = ACTIONS(1512), + [anon_sym_SLASH_SLASH2] = ACTIONS(1512), + [anon_sym_PLUS2] = ACTIONS(1512), + [anon_sym_bit_DASHshl2] = ACTIONS(1512), + [anon_sym_bit_DASHshr2] = ACTIONS(1512), + [anon_sym_bit_DASHand2] = ACTIONS(1512), + [anon_sym_bit_DASHxor2] = ACTIONS(1512), + [anon_sym_bit_DASHor2] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [sym_filesize_unit] = ACTIONS(1512), + [sym_duration_unit] = ACTIONS(1514), + [anon_sym_POUND] = ACTIONS(3), }, [1170] = { [sym_comment] = STATE(1170), - [anon_sym_STAR_STAR] = ACTIONS(1544), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_STAR] = ACTIONS(1542), - [anon_sym_SLASH] = ACTIONS(1542), - [anon_sym_mod] = ACTIONS(1544), - [anon_sym_SLASH_SLASH] = ACTIONS(1544), - [anon_sym_PLUS] = ACTIONS(1542), - [anon_sym_DASH] = ACTIONS(1544), - [anon_sym_bit_DASHshl] = ACTIONS(1544), - [anon_sym_bit_DASHshr] = ACTIONS(1544), - [anon_sym_EQ_TILDE] = ACTIONS(1544), - [anon_sym_BANG_TILDE] = ACTIONS(1544), - [anon_sym_bit_DASHand] = ACTIONS(1544), - [anon_sym_bit_DASHxor] = ACTIONS(1544), - [anon_sym_bit_DASHor] = ACTIONS(1544), - [anon_sym_and] = ACTIONS(1544), - [anon_sym_xor] = ACTIONS(1544), - [anon_sym_or] = ACTIONS(1544), - [anon_sym_in] = ACTIONS(1544), - [anon_sym_not_DASHin] = ACTIONS(1544), - [anon_sym_starts_DASHwith] = ACTIONS(1544), - [anon_sym_ends_DASHwith] = ACTIONS(1544), - [anon_sym_EQ_EQ] = ACTIONS(1544), - [anon_sym_BANG_EQ] = ACTIONS(1544), - [anon_sym_LT] = ACTIONS(1542), - [anon_sym_LT_EQ] = ACTIONS(1544), - [anon_sym_GT] = ACTIONS(1542), - [anon_sym_GT_EQ] = ACTIONS(1544), - [aux_sym_cmd_identifier_token41] = ACTIONS(1542), - [sym__newline] = ACTIONS(1542), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_err_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_GT_PIPE] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), - [anon_sym_GT2] = ACTIONS(1542), - [anon_sym_DASH2] = ACTIONS(1542), - [anon_sym_in2] = ACTIONS(1542), - [anon_sym_STAR2] = ACTIONS(1542), - [anon_sym_and2] = ACTIONS(1542), - [anon_sym_xor2] = ACTIONS(1542), - [anon_sym_or2] = ACTIONS(1542), - [anon_sym_not_DASHin2] = ACTIONS(1542), - [anon_sym_starts_DASHwith2] = ACTIONS(1542), - [anon_sym_ends_DASHwith2] = ACTIONS(1542), - [anon_sym_EQ_EQ2] = ACTIONS(1542), - [anon_sym_BANG_EQ2] = ACTIONS(1542), - [anon_sym_LT2] = ACTIONS(1542), - [anon_sym_LT_EQ2] = ACTIONS(1542), - [anon_sym_GT_EQ2] = ACTIONS(1542), - [anon_sym_EQ_TILDE2] = ACTIONS(1542), - [anon_sym_BANG_TILDE2] = ACTIONS(1542), - [anon_sym_STAR_STAR2] = ACTIONS(1542), - [anon_sym_PLUS_PLUS2] = ACTIONS(1542), - [anon_sym_SLASH2] = ACTIONS(1542), - [anon_sym_mod2] = ACTIONS(1542), - [anon_sym_SLASH_SLASH2] = ACTIONS(1542), - [anon_sym_PLUS2] = ACTIONS(1542), - [anon_sym_bit_DASHshl2] = ACTIONS(1542), - [anon_sym_bit_DASHshr2] = ACTIONS(1542), - [anon_sym_bit_DASHand2] = ACTIONS(1542), - [anon_sym_bit_DASHxor2] = ACTIONS(1542), - [anon_sym_bit_DASHor2] = ACTIONS(1542), - [anon_sym_DOT_DOT2] = ACTIONS(1542), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1544), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1544), - [aux_sym__immediate_decimal_token1] = ACTIONS(3686), - [aux_sym__immediate_decimal_token2] = ACTIONS(3688), - [sym_filesize_unit] = ACTIONS(1542), - [sym_duration_unit] = ACTIONS(1544), + [anon_sym_STAR_STAR] = ACTIONS(2592), + [anon_sym_PLUS_PLUS] = ACTIONS(2592), + [anon_sym_STAR] = ACTIONS(2594), + [anon_sym_SLASH] = ACTIONS(2594), + [anon_sym_mod] = ACTIONS(2592), + [anon_sym_SLASH_SLASH] = ACTIONS(2592), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2592), + [anon_sym_bit_DASHshl] = ACTIONS(2592), + [anon_sym_bit_DASHshr] = ACTIONS(2592), + [anon_sym_EQ_TILDE] = ACTIONS(2592), + [anon_sym_BANG_TILDE] = ACTIONS(2592), + [anon_sym_bit_DASHand] = ACTIONS(2592), + [anon_sym_bit_DASHxor] = ACTIONS(2592), + [anon_sym_bit_DASHor] = ACTIONS(2592), + [anon_sym_and] = ACTIONS(2592), + [anon_sym_xor] = ACTIONS(2592), + [anon_sym_or] = ACTIONS(2592), + [anon_sym_in] = ACTIONS(2592), + [anon_sym_not_DASHin] = ACTIONS(2592), + [anon_sym_has] = ACTIONS(2592), + [anon_sym_not_DASHhas] = ACTIONS(2592), + [anon_sym_starts_DASHwith] = ACTIONS(2592), + [anon_sym_ends_DASHwith] = ACTIONS(2592), + [anon_sym_EQ_EQ] = ACTIONS(2592), + [anon_sym_BANG_EQ] = ACTIONS(2592), + [anon_sym_LT] = ACTIONS(2594), + [anon_sym_LT_EQ] = ACTIONS(2592), + [anon_sym_GT] = ACTIONS(2594), + [anon_sym_GT_EQ] = ACTIONS(2592), + [aux_sym_cmd_identifier_token41] = ACTIONS(2596), + [sym__newline] = ACTIONS(1639), + [anon_sym_SEMI] = ACTIONS(1639), + [anon_sym_PIPE] = ACTIONS(1639), + [anon_sym_err_GT_PIPE] = ACTIONS(1639), + [anon_sym_out_GT_PIPE] = ACTIONS(1639), + [anon_sym_e_GT_PIPE] = ACTIONS(1639), + [anon_sym_o_GT_PIPE] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1639), + [anon_sym_RPAREN] = ACTIONS(1639), + [anon_sym_GT2] = ACTIONS(1639), + [anon_sym_DASH2] = ACTIONS(1639), + [anon_sym_in2] = ACTIONS(1639), + [anon_sym_STAR2] = ACTIONS(1639), + [anon_sym_and2] = ACTIONS(1639), + [anon_sym_xor2] = ACTIONS(1639), + [anon_sym_or2] = ACTIONS(1639), + [anon_sym_not_DASHin2] = ACTIONS(1639), + [anon_sym_has2] = ACTIONS(1639), + [anon_sym_not_DASHhas2] = ACTIONS(1639), + [anon_sym_starts_DASHwith2] = ACTIONS(1639), + [anon_sym_ends_DASHwith2] = ACTIONS(1639), + [anon_sym_EQ_EQ2] = ACTIONS(1639), + [anon_sym_BANG_EQ2] = ACTIONS(1639), + [anon_sym_LT2] = ACTIONS(1639), + [anon_sym_LT_EQ2] = ACTIONS(1639), + [anon_sym_GT_EQ2] = ACTIONS(1639), + [anon_sym_EQ_TILDE2] = ACTIONS(1639), + [anon_sym_BANG_TILDE2] = ACTIONS(1639), + [anon_sym_STAR_STAR2] = ACTIONS(1639), + [anon_sym_PLUS_PLUS2] = ACTIONS(1639), + [anon_sym_SLASH2] = ACTIONS(1639), + [anon_sym_mod2] = ACTIONS(1639), + [anon_sym_SLASH_SLASH2] = ACTIONS(1639), + [anon_sym_PLUS2] = ACTIONS(1639), + [anon_sym_bit_DASHshl2] = ACTIONS(1639), + [anon_sym_bit_DASHshr2] = ACTIONS(1639), + [anon_sym_bit_DASHand2] = ACTIONS(1639), + [anon_sym_bit_DASHxor2] = ACTIONS(1639), + [anon_sym_bit_DASHor2] = ACTIONS(1639), + [anon_sym_DOT_DOT2] = ACTIONS(2584), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2586), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2586), + [sym_filesize_unit] = ACTIONS(3574), + [sym_duration_unit] = ACTIONS(3576), [anon_sym_POUND] = ACTIONS(3), }, [1171] = { + [sym_expr_unary] = STATE(4294), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_parenthesized] = STATE(4064), + [sym_val_range] = STATE(4294), + [sym__val_range] = STATE(7833), + [sym__val_range_with_end] = STATE(7394), + [sym__value] = STATE(4294), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(4102), + [sym_val_variable] = STATE(4075), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(3908), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(3793), + [sym__str_double_quotes] = STATE(3793), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(4142), + [sym__unquoted_with_expr] = STATE(4304), + [sym__unquoted_anonymous_prefix] = STATE(6764), [sym_comment] = STATE(1171), - [anon_sym_STAR_STAR] = ACTIONS(1552), - [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1550), - [anon_sym_SLASH] = ACTIONS(1550), - [anon_sym_mod] = ACTIONS(1552), - [anon_sym_SLASH_SLASH] = ACTIONS(1552), - [anon_sym_PLUS] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1552), - [anon_sym_bit_DASHshl] = ACTIONS(1552), - [anon_sym_bit_DASHshr] = ACTIONS(1552), - [anon_sym_EQ_TILDE] = ACTIONS(1552), - [anon_sym_BANG_TILDE] = ACTIONS(1552), - [anon_sym_bit_DASHand] = ACTIONS(1552), - [anon_sym_bit_DASHxor] = ACTIONS(1552), - [anon_sym_bit_DASHor] = ACTIONS(1552), - [anon_sym_and] = ACTIONS(1552), - [anon_sym_xor] = ACTIONS(1552), - [anon_sym_or] = ACTIONS(1552), - [anon_sym_in] = ACTIONS(1552), - [anon_sym_not_DASHin] = ACTIONS(1552), - [anon_sym_starts_DASHwith] = ACTIONS(1552), - [anon_sym_ends_DASHwith] = ACTIONS(1552), - [anon_sym_EQ_EQ] = ACTIONS(1552), - [anon_sym_BANG_EQ] = ACTIONS(1552), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_LT_EQ] = ACTIONS(1552), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_GT_EQ] = ACTIONS(1552), - [aux_sym_cmd_identifier_token41] = ACTIONS(1550), - [sym__newline] = ACTIONS(1550), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_err_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_GT_PIPE] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1550), - [anon_sym_GT2] = ACTIONS(1550), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_in2] = ACTIONS(1550), - [anon_sym_STAR2] = ACTIONS(1550), - [anon_sym_and2] = ACTIONS(1550), - [anon_sym_xor2] = ACTIONS(1550), - [anon_sym_or2] = ACTIONS(1550), - [anon_sym_not_DASHin2] = ACTIONS(1550), - [anon_sym_starts_DASHwith2] = ACTIONS(1550), - [anon_sym_ends_DASHwith2] = ACTIONS(1550), - [anon_sym_EQ_EQ2] = ACTIONS(1550), - [anon_sym_BANG_EQ2] = ACTIONS(1550), - [anon_sym_LT2] = ACTIONS(1550), - [anon_sym_LT_EQ2] = ACTIONS(1550), - [anon_sym_GT_EQ2] = ACTIONS(1550), - [anon_sym_EQ_TILDE2] = ACTIONS(1550), - [anon_sym_BANG_TILDE2] = ACTIONS(1550), - [anon_sym_STAR_STAR2] = ACTIONS(1550), - [anon_sym_PLUS_PLUS2] = ACTIONS(1550), - [anon_sym_SLASH2] = ACTIONS(1550), - [anon_sym_mod2] = ACTIONS(1550), - [anon_sym_SLASH_SLASH2] = ACTIONS(1550), - [anon_sym_PLUS2] = ACTIONS(1550), - [anon_sym_bit_DASHshl2] = ACTIONS(1550), - [anon_sym_bit_DASHshr2] = ACTIONS(1550), - [anon_sym_bit_DASHand2] = ACTIONS(1550), - [anon_sym_bit_DASHxor2] = ACTIONS(1550), - [anon_sym_bit_DASHor2] = ACTIONS(1550), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT] = ACTIONS(3690), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [aux_sym__immediate_decimal_token2] = ACTIONS(3692), - [sym_filesize_unit] = ACTIONS(1550), - [sym_duration_unit] = ACTIONS(1552), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3508), + [anon_sym_LPAREN] = ACTIONS(3510), + [anon_sym_DOLLAR] = ACTIONS(3512), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(3514), + [anon_sym_DOT_DOT] = ACTIONS(3516), + [aux_sym_expr_unary_token1] = ACTIONS(3518), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3520), + [anon_sym_DOT_DOT_LT] = ACTIONS(3520), + [anon_sym_null] = ACTIONS(3522), + [anon_sym_true] = ACTIONS(3524), + [anon_sym_false] = ACTIONS(3524), + [aux_sym__val_number_decimal_token1] = ACTIONS(3526), + [aux_sym__val_number_decimal_token2] = ACTIONS(3528), + [aux_sym__val_number_decimal_token3] = ACTIONS(3530), + [aux_sym__val_number_decimal_token4] = ACTIONS(3532), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3534), + [aux_sym__val_number_token5] = ACTIONS(3534), + [aux_sym__val_number_token6] = ACTIONS(3534), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3536), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym__str_single_quotes] = ACTIONS(1274), + [sym__str_back_ticks] = ACTIONS(1274), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3538), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1276), }, [1172] = { [sym_comment] = STATE(1172), - [anon_sym_STAR_STAR] = ACTIONS(1552), - [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1550), - [anon_sym_SLASH] = ACTIONS(1550), - [anon_sym_mod] = ACTIONS(1552), - [anon_sym_SLASH_SLASH] = ACTIONS(1552), - [anon_sym_PLUS] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1552), - [anon_sym_bit_DASHshl] = ACTIONS(1552), - [anon_sym_bit_DASHshr] = ACTIONS(1552), - [anon_sym_EQ_TILDE] = ACTIONS(1552), - [anon_sym_BANG_TILDE] = ACTIONS(1552), - [anon_sym_bit_DASHand] = ACTIONS(1552), - [anon_sym_bit_DASHxor] = ACTIONS(1552), - [anon_sym_bit_DASHor] = ACTIONS(1552), - [anon_sym_and] = ACTIONS(1552), - [anon_sym_xor] = ACTIONS(1552), - [anon_sym_or] = ACTIONS(1552), - [anon_sym_in] = ACTIONS(1552), - [anon_sym_not_DASHin] = ACTIONS(1552), - [anon_sym_starts_DASHwith] = ACTIONS(1552), - [anon_sym_ends_DASHwith] = ACTIONS(1552), - [anon_sym_EQ_EQ] = ACTIONS(1552), - [anon_sym_BANG_EQ] = ACTIONS(1552), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_LT_EQ] = ACTIONS(1552), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_GT_EQ] = ACTIONS(1552), - [aux_sym_cmd_identifier_token41] = ACTIONS(1550), - [sym__newline] = ACTIONS(1550), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_err_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_GT_PIPE] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1550), - [anon_sym_RPAREN] = ACTIONS(1550), - [anon_sym_GT2] = ACTIONS(1550), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_in2] = ACTIONS(1550), - [anon_sym_STAR2] = ACTIONS(1550), - [anon_sym_and2] = ACTIONS(1550), - [anon_sym_xor2] = ACTIONS(1550), - [anon_sym_or2] = ACTIONS(1550), - [anon_sym_not_DASHin2] = ACTIONS(1550), - [anon_sym_starts_DASHwith2] = ACTIONS(1550), - [anon_sym_ends_DASHwith2] = ACTIONS(1550), - [anon_sym_EQ_EQ2] = ACTIONS(1550), - [anon_sym_BANG_EQ2] = ACTIONS(1550), - [anon_sym_LT2] = ACTIONS(1550), - [anon_sym_LT_EQ2] = ACTIONS(1550), - [anon_sym_GT_EQ2] = ACTIONS(1550), - [anon_sym_EQ_TILDE2] = ACTIONS(1550), - [anon_sym_BANG_TILDE2] = ACTIONS(1550), - [anon_sym_STAR_STAR2] = ACTIONS(1550), - [anon_sym_PLUS_PLUS2] = ACTIONS(1550), - [anon_sym_SLASH2] = ACTIONS(1550), - [anon_sym_mod2] = ACTIONS(1550), - [anon_sym_SLASH_SLASH2] = ACTIONS(1550), - [anon_sym_PLUS2] = ACTIONS(1550), - [anon_sym_bit_DASHshl2] = ACTIONS(1550), - [anon_sym_bit_DASHshr2] = ACTIONS(1550), - [anon_sym_bit_DASHand2] = ACTIONS(1550), - [anon_sym_bit_DASHxor2] = ACTIONS(1550), - [anon_sym_bit_DASHor2] = ACTIONS(1550), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [aux_sym__immediate_decimal_token2] = ACTIONS(3564), - [sym_filesize_unit] = ACTIONS(1550), - [sym_duration_unit] = ACTIONS(1552), + [anon_sym_STAR_STAR] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_STAR] = ACTIONS(1504), + [anon_sym_SLASH] = ACTIONS(1504), + [anon_sym_mod] = ACTIONS(1506), + [anon_sym_SLASH_SLASH] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_bit_DASHshl] = ACTIONS(1506), + [anon_sym_bit_DASHshr] = ACTIONS(1506), + [anon_sym_EQ_TILDE] = ACTIONS(1506), + [anon_sym_BANG_TILDE] = ACTIONS(1506), + [anon_sym_bit_DASHand] = ACTIONS(1506), + [anon_sym_bit_DASHxor] = ACTIONS(1506), + [anon_sym_bit_DASHor] = ACTIONS(1506), + [anon_sym_and] = ACTIONS(1506), + [anon_sym_xor] = ACTIONS(1506), + [anon_sym_or] = ACTIONS(1506), + [anon_sym_in] = ACTIONS(1506), + [anon_sym_not_DASHin] = ACTIONS(1506), + [anon_sym_has] = ACTIONS(1506), + [anon_sym_not_DASHhas] = 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_LT] = ACTIONS(1504), + [anon_sym_LT_EQ] = ACTIONS(1506), + [anon_sym_GT] = ACTIONS(1504), + [anon_sym_GT_EQ] = ACTIONS(1506), + [aux_sym_cmd_identifier_token41] = ACTIONS(1504), + [sym__newline] = ACTIONS(1504), + [anon_sym_SEMI] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_err_GT_PIPE] = ACTIONS(1504), + [anon_sym_out_GT_PIPE] = ACTIONS(1504), + [anon_sym_e_GT_PIPE] = ACTIONS(1504), + [anon_sym_o_GT_PIPE] = ACTIONS(1504), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1504), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1504), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1504), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1504), + [anon_sym_RPAREN] = ACTIONS(1504), + [anon_sym_GT2] = ACTIONS(1504), + [anon_sym_DASH2] = ACTIONS(1504), + [anon_sym_in2] = ACTIONS(1504), + [anon_sym_STAR2] = ACTIONS(1504), + [anon_sym_and2] = ACTIONS(1504), + [anon_sym_xor2] = ACTIONS(1504), + [anon_sym_or2] = ACTIONS(1504), + [anon_sym_not_DASHin2] = ACTIONS(1504), + [anon_sym_has2] = ACTIONS(1504), + [anon_sym_not_DASHhas2] = ACTIONS(1504), + [anon_sym_starts_DASHwith2] = ACTIONS(1504), + [anon_sym_ends_DASHwith2] = ACTIONS(1504), + [anon_sym_EQ_EQ2] = ACTIONS(1504), + [anon_sym_BANG_EQ2] = ACTIONS(1504), + [anon_sym_LT2] = ACTIONS(1504), + [anon_sym_LT_EQ2] = ACTIONS(1504), + [anon_sym_GT_EQ2] = ACTIONS(1504), + [anon_sym_EQ_TILDE2] = ACTIONS(1504), + [anon_sym_BANG_TILDE2] = ACTIONS(1504), + [anon_sym_STAR_STAR2] = ACTIONS(1504), + [anon_sym_PLUS_PLUS2] = ACTIONS(1504), + [anon_sym_SLASH2] = ACTIONS(1504), + [anon_sym_mod2] = ACTIONS(1504), + [anon_sym_SLASH_SLASH2] = ACTIONS(1504), + [anon_sym_PLUS2] = ACTIONS(1504), + [anon_sym_bit_DASHshl2] = ACTIONS(1504), + [anon_sym_bit_DASHshr2] = ACTIONS(1504), + [anon_sym_bit_DASHand2] = ACTIONS(1504), + [anon_sym_bit_DASHxor2] = ACTIONS(1504), + [anon_sym_bit_DASHor2] = ACTIONS(1504), + [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_POUND] = ACTIONS(3), }, [1173] = { - [sym_match_arm] = STATE(6861), - [sym_default_arm] = STATE(6861), - [sym_match_pattern] = STATE(7704), - [sym__match_pattern] = STATE(6020), - [sym__match_pattern_expression] = STATE(7226), - [sym__match_pattern_value] = STATE(7259), - [sym__match_pattern_list] = STATE(7280), - [sym__match_pattern_record] = STATE(6737), - [sym_expr_parenthesized] = STATE(5787), - [sym_val_range] = STATE(7259), - [sym__val_range] = STATE(7519), - [sym_val_nothing] = STATE(6734), - [sym_val_bool] = STATE(6677), - [sym_val_variable] = STATE(5731), - [sym_val_number] = STATE(6734), - [sym__val_number_decimal] = STATE(5363), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(6734), - [sym_val_filesize] = STATE(6734), - [sym_val_binary] = STATE(6734), - [sym_val_string] = STATE(6734), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_table] = STATE(6734), - [sym_unquoted] = STATE(7105), - [sym__unquoted_anonymous_prefix] = STATE(7789), [sym_comment] = STATE(1173), - [aux_sym_shebang_repeat1] = STATE(3105), - [aux_sym_ctrl_match_repeat1] = STATE(1221), - [sym__newline] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3630), - [anon_sym_LBRACE] = ACTIONS(3632), - [anon_sym__] = ACTIONS(3636), - [anon_sym_DOT_DOT] = ACTIONS(3638), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3640), - [anon_sym_DOT_DOT_LT] = ACTIONS(3640), - [anon_sym_null] = ACTIONS(3642), - [anon_sym_true] = ACTIONS(3644), - [anon_sym_false] = ACTIONS(3644), - [aux_sym__val_number_decimal_token1] = ACTIONS(3646), - [aux_sym__val_number_decimal_token2] = ACTIONS(3648), - [aux_sym__val_number_decimal_token3] = ACTIONS(3650), - [aux_sym__val_number_decimal_token4] = ACTIONS(3652), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3654), - [aux_sym__val_number_token5] = ACTIONS(3654), - [aux_sym__val_number_token6] = ACTIONS(3654), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3656), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3490), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(2592), + [anon_sym_PLUS_PLUS] = ACTIONS(2592), + [anon_sym_STAR] = ACTIONS(2594), + [anon_sym_SLASH] = ACTIONS(2594), + [anon_sym_mod] = ACTIONS(2592), + [anon_sym_SLASH_SLASH] = ACTIONS(2592), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2592), + [anon_sym_bit_DASHshl] = ACTIONS(2592), + [anon_sym_bit_DASHshr] = ACTIONS(2592), + [anon_sym_EQ_TILDE] = ACTIONS(2592), + [anon_sym_BANG_TILDE] = ACTIONS(2592), + [anon_sym_bit_DASHand] = ACTIONS(2592), + [anon_sym_bit_DASHxor] = ACTIONS(2592), + [anon_sym_bit_DASHor] = ACTIONS(2592), + [anon_sym_and] = ACTIONS(2592), + [anon_sym_xor] = ACTIONS(2592), + [anon_sym_or] = ACTIONS(2592), + [anon_sym_in] = ACTIONS(2592), + [anon_sym_not_DASHin] = ACTIONS(2592), + [anon_sym_has] = ACTIONS(2592), + [anon_sym_not_DASHhas] = ACTIONS(2592), + [anon_sym_starts_DASHwith] = ACTIONS(2592), + [anon_sym_ends_DASHwith] = ACTIONS(2592), + [anon_sym_EQ_EQ] = ACTIONS(2592), + [anon_sym_BANG_EQ] = ACTIONS(2592), + [anon_sym_LT] = ACTIONS(2594), + [anon_sym_LT_EQ] = ACTIONS(2592), + [anon_sym_GT] = ACTIONS(2594), + [anon_sym_GT_EQ] = ACTIONS(2592), + [aux_sym_cmd_identifier_token41] = ACTIONS(2596), + [sym__newline] = ACTIONS(1639), + [anon_sym_SEMI] = ACTIONS(1639), + [anon_sym_PIPE] = ACTIONS(1639), + [anon_sym_err_GT_PIPE] = ACTIONS(1639), + [anon_sym_out_GT_PIPE] = ACTIONS(1639), + [anon_sym_e_GT_PIPE] = ACTIONS(1639), + [anon_sym_o_GT_PIPE] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1639), + [anon_sym_GT2] = ACTIONS(1639), + [anon_sym_DASH2] = ACTIONS(1639), + [anon_sym_in2] = ACTIONS(1639), + [anon_sym_RBRACE] = ACTIONS(1639), + [anon_sym_STAR2] = ACTIONS(1639), + [anon_sym_and2] = ACTIONS(1639), + [anon_sym_xor2] = ACTIONS(1639), + [anon_sym_or2] = ACTIONS(1639), + [anon_sym_not_DASHin2] = ACTIONS(1639), + [anon_sym_has2] = ACTIONS(1639), + [anon_sym_not_DASHhas2] = ACTIONS(1639), + [anon_sym_starts_DASHwith2] = ACTIONS(1639), + [anon_sym_ends_DASHwith2] = ACTIONS(1639), + [anon_sym_EQ_EQ2] = ACTIONS(1639), + [anon_sym_BANG_EQ2] = ACTIONS(1639), + [anon_sym_LT2] = ACTIONS(1639), + [anon_sym_LT_EQ2] = ACTIONS(1639), + [anon_sym_GT_EQ2] = ACTIONS(1639), + [anon_sym_EQ_TILDE2] = ACTIONS(1639), + [anon_sym_BANG_TILDE2] = ACTIONS(1639), + [anon_sym_STAR_STAR2] = ACTIONS(1639), + [anon_sym_PLUS_PLUS2] = ACTIONS(1639), + [anon_sym_SLASH2] = ACTIONS(1639), + [anon_sym_mod2] = ACTIONS(1639), + [anon_sym_SLASH_SLASH2] = ACTIONS(1639), + [anon_sym_PLUS2] = ACTIONS(1639), + [anon_sym_bit_DASHshl2] = ACTIONS(1639), + [anon_sym_bit_DASHshr2] = ACTIONS(1639), + [anon_sym_bit_DASHand2] = ACTIONS(1639), + [anon_sym_bit_DASHxor2] = ACTIONS(1639), + [anon_sym_bit_DASHor2] = ACTIONS(1639), + [anon_sym_DOT_DOT2] = ACTIONS(2584), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2586), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2586), + [sym_filesize_unit] = ACTIONS(3578), + [sym_duration_unit] = ACTIONS(3580), + [anon_sym_POUND] = ACTIONS(3), }, [1174] = { - [sym_match_arm] = STATE(6865), - [sym_default_arm] = STATE(6865), - [sym_match_pattern] = STATE(7704), - [sym__match_pattern] = STATE(6020), - [sym__match_pattern_expression] = STATE(7226), - [sym__match_pattern_value] = STATE(7259), - [sym__match_pattern_list] = STATE(7280), - [sym__match_pattern_record] = STATE(6737), - [sym_expr_parenthesized] = STATE(5787), - [sym_val_range] = STATE(7259), - [sym__val_range] = STATE(7519), - [sym_val_nothing] = STATE(6734), - [sym_val_bool] = STATE(6677), - [sym_val_variable] = STATE(5731), - [sym_val_number] = STATE(6734), - [sym__val_number_decimal] = STATE(5363), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(6734), - [sym_val_filesize] = STATE(6734), - [sym_val_binary] = STATE(6734), - [sym_val_string] = STATE(6734), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_table] = STATE(6734), - [sym_unquoted] = STATE(7105), - [sym__unquoted_anonymous_prefix] = STATE(7789), [sym_comment] = STATE(1174), - [aux_sym_shebang_repeat1] = STATE(3105), - [aux_sym_ctrl_match_repeat1] = STATE(1222), - [sym__newline] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3630), - [anon_sym_LBRACE] = ACTIONS(3632), - [anon_sym__] = ACTIONS(3636), - [anon_sym_DOT_DOT] = ACTIONS(3638), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3640), - [anon_sym_DOT_DOT_LT] = ACTIONS(3640), - [anon_sym_null] = ACTIONS(3642), - [anon_sym_true] = ACTIONS(3644), - [anon_sym_false] = ACTIONS(3644), - [aux_sym__val_number_decimal_token1] = ACTIONS(3646), - [aux_sym__val_number_decimal_token2] = ACTIONS(3648), - [aux_sym__val_number_decimal_token3] = ACTIONS(3650), - [aux_sym__val_number_decimal_token4] = ACTIONS(3652), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3654), - [aux_sym__val_number_token5] = ACTIONS(3654), - [aux_sym__val_number_token6] = ACTIONS(3654), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3656), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3490), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(1620), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1618), + [anon_sym_SLASH] = ACTIONS(1618), + [anon_sym_mod] = ACTIONS(1620), + [anon_sym_SLASH_SLASH] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1618), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_bit_DASHshl] = ACTIONS(1620), + [anon_sym_bit_DASHshr] = ACTIONS(1620), + [anon_sym_EQ_TILDE] = ACTIONS(1620), + [anon_sym_BANG_TILDE] = ACTIONS(1620), + [anon_sym_bit_DASHand] = ACTIONS(1620), + [anon_sym_bit_DASHxor] = ACTIONS(1620), + [anon_sym_bit_DASHor] = ACTIONS(1620), + [anon_sym_and] = ACTIONS(1620), + [anon_sym_xor] = ACTIONS(1620), + [anon_sym_or] = ACTIONS(1620), + [anon_sym_in] = ACTIONS(1620), + [anon_sym_not_DASHin] = ACTIONS(1620), + [anon_sym_has] = ACTIONS(1620), + [anon_sym_not_DASHhas] = ACTIONS(1620), + [anon_sym_starts_DASHwith] = ACTIONS(1620), + [anon_sym_ends_DASHwith] = ACTIONS(1620), + [anon_sym_EQ_EQ] = ACTIONS(1620), + [anon_sym_BANG_EQ] = ACTIONS(1620), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_LT_EQ] = ACTIONS(1620), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_GT_EQ] = ACTIONS(1620), + [aux_sym_cmd_identifier_token41] = ACTIONS(1618), + [sym__newline] = ACTIONS(1618), + [anon_sym_SEMI] = ACTIONS(1618), + [anon_sym_PIPE] = ACTIONS(1618), + [anon_sym_err_GT_PIPE] = ACTIONS(1618), + [anon_sym_out_GT_PIPE] = ACTIONS(1618), + [anon_sym_e_GT_PIPE] = ACTIONS(1618), + [anon_sym_o_GT_PIPE] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1618), + [anon_sym_RPAREN] = ACTIONS(1618), + [anon_sym_GT2] = ACTIONS(1618), + [anon_sym_DASH2] = ACTIONS(1618), + [anon_sym_in2] = ACTIONS(1618), + [anon_sym_STAR2] = ACTIONS(1618), + [anon_sym_and2] = ACTIONS(1618), + [anon_sym_xor2] = ACTIONS(1618), + [anon_sym_or2] = ACTIONS(1618), + [anon_sym_not_DASHin2] = ACTIONS(1618), + [anon_sym_has2] = ACTIONS(1618), + [anon_sym_not_DASHhas2] = ACTIONS(1618), + [anon_sym_starts_DASHwith2] = ACTIONS(1618), + [anon_sym_ends_DASHwith2] = ACTIONS(1618), + [anon_sym_EQ_EQ2] = ACTIONS(1618), + [anon_sym_BANG_EQ2] = ACTIONS(1618), + [anon_sym_LT2] = ACTIONS(1618), + [anon_sym_LT_EQ2] = ACTIONS(1618), + [anon_sym_GT_EQ2] = ACTIONS(1618), + [anon_sym_EQ_TILDE2] = ACTIONS(1618), + [anon_sym_BANG_TILDE2] = ACTIONS(1618), + [anon_sym_STAR_STAR2] = ACTIONS(1618), + [anon_sym_PLUS_PLUS2] = ACTIONS(1618), + [anon_sym_SLASH2] = ACTIONS(1618), + [anon_sym_mod2] = ACTIONS(1618), + [anon_sym_SLASH_SLASH2] = ACTIONS(1618), + [anon_sym_PLUS2] = ACTIONS(1618), + [anon_sym_bit_DASHshl2] = ACTIONS(1618), + [anon_sym_bit_DASHshr2] = ACTIONS(1618), + [anon_sym_bit_DASHand2] = ACTIONS(1618), + [anon_sym_bit_DASHxor2] = ACTIONS(1618), + [anon_sym_bit_DASHor2] = ACTIONS(1618), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [sym_filesize_unit] = ACTIONS(1618), + [sym_duration_unit] = ACTIONS(1620), + [anon_sym_POUND] = ACTIONS(3), }, [1175] = { - [sym_match_arm] = STATE(6802), - [sym_default_arm] = STATE(6802), - [sym_match_pattern] = STATE(7704), - [sym__match_pattern] = STATE(6020), - [sym__match_pattern_expression] = STATE(7226), - [sym__match_pattern_value] = STATE(7259), - [sym__match_pattern_list] = STATE(7280), - [sym__match_pattern_record] = STATE(6737), - [sym_expr_parenthesized] = STATE(5787), - [sym_val_range] = STATE(7259), - [sym__val_range] = STATE(7519), - [sym_val_nothing] = STATE(6734), - [sym_val_bool] = STATE(6677), - [sym_val_variable] = STATE(5731), - [sym_val_number] = STATE(6734), - [sym__val_number_decimal] = STATE(5363), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(6734), - [sym_val_filesize] = STATE(6734), - [sym_val_binary] = STATE(6734), - [sym_val_string] = STATE(6734), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_table] = STATE(6734), - [sym_unquoted] = STATE(7105), - [sym__unquoted_anonymous_prefix] = STATE(7789), [sym_comment] = STATE(1175), - [aux_sym_shebang_repeat1] = STATE(3105), - [aux_sym_ctrl_match_repeat1] = STATE(1212), - [sym__newline] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3630), - [anon_sym_LBRACE] = ACTIONS(3632), - [anon_sym__] = ACTIONS(3636), - [anon_sym_DOT_DOT] = ACTIONS(3638), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3640), - [anon_sym_DOT_DOT_LT] = ACTIONS(3640), - [anon_sym_null] = ACTIONS(3642), - [anon_sym_true] = ACTIONS(3644), - [anon_sym_false] = ACTIONS(3644), - [aux_sym__val_number_decimal_token1] = ACTIONS(3646), - [aux_sym__val_number_decimal_token2] = ACTIONS(3648), - [aux_sym__val_number_decimal_token3] = ACTIONS(3650), - [aux_sym__val_number_decimal_token4] = ACTIONS(3652), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3654), - [aux_sym__val_number_token5] = ACTIONS(3654), - [aux_sym__val_number_token6] = ACTIONS(3654), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3656), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3490), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_pipe_element_repeat1] = STATE(1178), + [aux_sym_cmd_identifier_token1] = ACTIONS(3582), + [aux_sym_cmd_identifier_token2] = ACTIONS(3582), + [aux_sym_cmd_identifier_token3] = ACTIONS(3582), + [aux_sym_cmd_identifier_token4] = ACTIONS(3582), + [aux_sym_cmd_identifier_token5] = ACTIONS(3582), + [aux_sym_cmd_identifier_token6] = ACTIONS(3582), + [aux_sym_cmd_identifier_token7] = ACTIONS(3582), + [aux_sym_cmd_identifier_token8] = ACTIONS(3582), + [aux_sym_cmd_identifier_token9] = ACTIONS(3582), + [aux_sym_cmd_identifier_token10] = ACTIONS(3582), + [aux_sym_cmd_identifier_token11] = ACTIONS(3582), + [aux_sym_cmd_identifier_token12] = ACTIONS(3582), + [aux_sym_cmd_identifier_token13] = ACTIONS(3582), + [aux_sym_cmd_identifier_token14] = ACTIONS(3582), + [aux_sym_cmd_identifier_token15] = ACTIONS(3582), + [aux_sym_cmd_identifier_token16] = ACTIONS(3582), + [aux_sym_cmd_identifier_token17] = ACTIONS(3582), + [aux_sym_cmd_identifier_token18] = ACTIONS(3582), + [aux_sym_cmd_identifier_token19] = ACTIONS(3582), + [aux_sym_cmd_identifier_token20] = ACTIONS(3582), + [aux_sym_cmd_identifier_token21] = ACTIONS(3582), + [aux_sym_cmd_identifier_token22] = ACTIONS(3582), + [aux_sym_cmd_identifier_token23] = ACTIONS(3582), + [aux_sym_cmd_identifier_token24] = ACTIONS(3582), + [aux_sym_cmd_identifier_token25] = ACTIONS(3582), + [aux_sym_cmd_identifier_token26] = ACTIONS(3582), + [aux_sym_cmd_identifier_token27] = ACTIONS(3582), + [aux_sym_cmd_identifier_token28] = ACTIONS(3582), + [aux_sym_cmd_identifier_token29] = ACTIONS(3582), + [aux_sym_cmd_identifier_token30] = ACTIONS(3582), + [aux_sym_cmd_identifier_token31] = ACTIONS(3582), + [aux_sym_cmd_identifier_token32] = ACTIONS(3582), + [aux_sym_cmd_identifier_token33] = ACTIONS(3582), + [aux_sym_cmd_identifier_token34] = ACTIONS(3582), + [aux_sym_cmd_identifier_token35] = ACTIONS(3582), + [aux_sym_cmd_identifier_token36] = ACTIONS(3582), + [aux_sym_cmd_identifier_token37] = ACTIONS(3582), + [aux_sym_cmd_identifier_token38] = ACTIONS(3582), + [aux_sym_cmd_identifier_token39] = ACTIONS(3582), + [aux_sym_cmd_identifier_token40] = ACTIONS(3582), + [sym__space] = ACTIONS(3584), + [anon_sym_LBRACK] = ACTIONS(3582), + [anon_sym_LPAREN] = ACTIONS(3582), + [anon_sym_DOLLAR] = ACTIONS(3582), + [anon_sym_DASH2] = ACTIONS(3582), + [anon_sym_LBRACE] = ACTIONS(3582), + [anon_sym_DOT_DOT] = ACTIONS(3582), + [aux_sym_expr_unary_token1] = ACTIONS(3582), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3582), + [anon_sym_DOT_DOT_LT] = ACTIONS(3582), + [anon_sym_null] = ACTIONS(3582), + [anon_sym_true] = ACTIONS(3582), + [anon_sym_false] = ACTIONS(3582), + [aux_sym__val_number_decimal_token1] = ACTIONS(3582), + [aux_sym__val_number_decimal_token2] = ACTIONS(3582), + [aux_sym__val_number_decimal_token3] = ACTIONS(3582), + [aux_sym__val_number_decimal_token4] = ACTIONS(3582), + [aux_sym__val_number_token1] = ACTIONS(3582), + [aux_sym__val_number_token2] = ACTIONS(3582), + [aux_sym__val_number_token3] = ACTIONS(3582), + [aux_sym__val_number_token4] = ACTIONS(3582), + [aux_sym__val_number_token5] = ACTIONS(3582), + [aux_sym__val_number_token6] = ACTIONS(3582), + [anon_sym_0b] = ACTIONS(3582), + [anon_sym_0o] = ACTIONS(3582), + [anon_sym_0x] = ACTIONS(3582), + [sym_val_date] = ACTIONS(3582), + [anon_sym_DQUOTE] = ACTIONS(3582), + [sym__str_single_quotes] = ACTIONS(3582), + [sym__str_back_ticks] = ACTIONS(3582), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3582), + [aux_sym_env_var_token1] = ACTIONS(3582), + [anon_sym_CARET] = ACTIONS(3582), + [aux_sym_command_token1] = ACTIONS(3582), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(3586), }, [1176] = { + [sym_ctrl_do] = STATE(4954), + [sym_ctrl_if] = STATE(4954), + [sym_ctrl_match] = STATE(4954), + [sym_ctrl_try] = STATE(4954), + [sym__expression] = STATE(4954), + [sym_expr_unary] = STATE(2132), + [sym__expr_unary_minus] = STATE(2002), + [sym_expr_binary] = STATE(2132), + [sym__expr_binary_expression] = STATE(3838), + [sym_expr_parenthesized] = STATE(1690), + [sym_val_range] = STATE(2132), + [sym__value] = STATE(2132), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(2105), + [sym_val_variable] = STATE(1714), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(2975), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), [sym_comment] = STATE(1176), - [anon_sym_STAR_STAR] = ACTIONS(1552), - [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1550), - [anon_sym_SLASH] = ACTIONS(1550), - [anon_sym_mod] = ACTIONS(1552), - [anon_sym_SLASH_SLASH] = ACTIONS(1552), - [anon_sym_PLUS] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1552), - [anon_sym_bit_DASHshl] = ACTIONS(1552), - [anon_sym_bit_DASHshr] = ACTIONS(1552), - [anon_sym_EQ_TILDE] = ACTIONS(1552), - [anon_sym_BANG_TILDE] = ACTIONS(1552), - [anon_sym_bit_DASHand] = ACTIONS(1552), - [anon_sym_bit_DASHxor] = ACTIONS(1552), - [anon_sym_bit_DASHor] = ACTIONS(1552), - [anon_sym_and] = ACTIONS(1552), - [anon_sym_xor] = ACTIONS(1552), - [anon_sym_or] = ACTIONS(1552), - [anon_sym_in] = ACTIONS(1552), - [anon_sym_not_DASHin] = ACTIONS(1552), - [anon_sym_starts_DASHwith] = ACTIONS(1552), - [anon_sym_ends_DASHwith] = ACTIONS(1552), - [anon_sym_EQ_EQ] = ACTIONS(1552), - [anon_sym_BANG_EQ] = ACTIONS(1552), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_LT_EQ] = ACTIONS(1552), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_GT_EQ] = ACTIONS(1552), - [aux_sym_cmd_identifier_token41] = ACTIONS(1550), - [sym__newline] = ACTIONS(1550), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_err_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_GT_PIPE] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1550), - [anon_sym_GT2] = ACTIONS(1550), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_in2] = ACTIONS(1550), - [anon_sym_RBRACE] = ACTIONS(1550), - [anon_sym_STAR2] = ACTIONS(1550), - [anon_sym_and2] = ACTIONS(1550), - [anon_sym_xor2] = ACTIONS(1550), - [anon_sym_or2] = ACTIONS(1550), - [anon_sym_not_DASHin2] = ACTIONS(1550), - [anon_sym_starts_DASHwith2] = ACTIONS(1550), - [anon_sym_ends_DASHwith2] = ACTIONS(1550), - [anon_sym_EQ_EQ2] = ACTIONS(1550), - [anon_sym_BANG_EQ2] = ACTIONS(1550), - [anon_sym_LT2] = ACTIONS(1550), - [anon_sym_LT_EQ2] = ACTIONS(1550), - [anon_sym_GT_EQ2] = ACTIONS(1550), - [anon_sym_EQ_TILDE2] = ACTIONS(1550), - [anon_sym_BANG_TILDE2] = ACTIONS(1550), - [anon_sym_STAR_STAR2] = ACTIONS(1550), - [anon_sym_PLUS_PLUS2] = ACTIONS(1550), - [anon_sym_SLASH2] = ACTIONS(1550), - [anon_sym_mod2] = ACTIONS(1550), - [anon_sym_SLASH_SLASH2] = ACTIONS(1550), - [anon_sym_PLUS2] = ACTIONS(1550), - [anon_sym_bit_DASHshl2] = ACTIONS(1550), - [anon_sym_bit_DASHshr2] = ACTIONS(1550), - [anon_sym_bit_DASHand2] = ACTIONS(1550), - [anon_sym_bit_DASHxor2] = ACTIONS(1550), - [anon_sym_bit_DASHor2] = ACTIONS(1550), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [aux_sym__immediate_decimal_token2] = ACTIONS(3676), - [sym_filesize_unit] = ACTIONS(1550), - [sym_duration_unit] = ACTIONS(1552), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(3420), + [anon_sym_PIPE] = ACTIONS(3420), + [anon_sym_err_GT_PIPE] = ACTIONS(3420), + [anon_sym_out_GT_PIPE] = ACTIONS(3420), + [anon_sym_e_GT_PIPE] = ACTIONS(3420), + [anon_sym_o_GT_PIPE] = ACTIONS(3420), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3420), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3420), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3420), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3420), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(377), + [anon_sym_do] = ACTIONS(3422), + [anon_sym_if] = ACTIONS(3588), + [anon_sym_match] = ACTIONS(3426), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(3428), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(3430), + [anon_sym_true] = ACTIONS(3432), + [anon_sym_false] = ACTIONS(3432), + [aux_sym__val_number_decimal_token1] = ACTIONS(3434), + [aux_sym__val_number_decimal_token2] = ACTIONS(3436), + [aux_sym__val_number_decimal_token3] = ACTIONS(3438), + [aux_sym__val_number_decimal_token4] = ACTIONS(3440), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(223), + [aux_sym__val_number_token5] = ACTIONS(223), + [aux_sym__val_number_token6] = ACTIONS(223), + [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_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1177] = { [sym_comment] = STATE(1177), - [anon_sym_STAR_STAR] = ACTIONS(1682), - [anon_sym_PLUS_PLUS] = ACTIONS(1682), - [anon_sym_STAR] = ACTIONS(1680), - [anon_sym_SLASH] = ACTIONS(1680), - [anon_sym_mod] = ACTIONS(1682), - [anon_sym_SLASH_SLASH] = ACTIONS(1682), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_DASH] = ACTIONS(1682), - [anon_sym_bit_DASHshl] = ACTIONS(1682), - [anon_sym_bit_DASHshr] = ACTIONS(1682), - [anon_sym_EQ_TILDE] = ACTIONS(1682), - [anon_sym_BANG_TILDE] = ACTIONS(1682), - [anon_sym_bit_DASHand] = ACTIONS(1682), - [anon_sym_bit_DASHxor] = ACTIONS(1682), - [anon_sym_bit_DASHor] = ACTIONS(1682), - [anon_sym_and] = ACTIONS(1682), - [anon_sym_xor] = ACTIONS(1682), - [anon_sym_or] = ACTIONS(1682), - [anon_sym_in] = ACTIONS(1682), - [anon_sym_not_DASHin] = ACTIONS(1682), - [anon_sym_starts_DASHwith] = ACTIONS(1682), - [anon_sym_ends_DASHwith] = ACTIONS(1682), - [anon_sym_EQ_EQ] = ACTIONS(1682), - [anon_sym_BANG_EQ] = ACTIONS(1682), - [anon_sym_LT] = ACTIONS(1680), - [anon_sym_LT_EQ] = ACTIONS(1682), - [anon_sym_GT] = ACTIONS(1680), - [anon_sym_GT_EQ] = ACTIONS(1682), - [aux_sym_cmd_identifier_token41] = ACTIONS(1680), - [sym__newline] = ACTIONS(1680), - [anon_sym_SEMI] = ACTIONS(1680), - [anon_sym_PIPE] = ACTIONS(1680), - [anon_sym_err_GT_PIPE] = ACTIONS(1680), - [anon_sym_out_GT_PIPE] = ACTIONS(1680), - [anon_sym_e_GT_PIPE] = ACTIONS(1680), - [anon_sym_o_GT_PIPE] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1680), - [anon_sym_RPAREN] = ACTIONS(1680), - [anon_sym_GT2] = ACTIONS(1680), - [anon_sym_DASH2] = ACTIONS(1680), - [anon_sym_in2] = ACTIONS(1680), - [anon_sym_STAR2] = ACTIONS(1680), - [anon_sym_and2] = ACTIONS(1680), - [anon_sym_xor2] = ACTIONS(1680), - [anon_sym_or2] = ACTIONS(1680), - [anon_sym_not_DASHin2] = ACTIONS(1680), - [anon_sym_starts_DASHwith2] = ACTIONS(1680), - [anon_sym_ends_DASHwith2] = ACTIONS(1680), - [anon_sym_EQ_EQ2] = ACTIONS(1680), - [anon_sym_BANG_EQ2] = ACTIONS(1680), - [anon_sym_LT2] = ACTIONS(1680), - [anon_sym_LT_EQ2] = ACTIONS(1680), - [anon_sym_GT_EQ2] = ACTIONS(1680), - [anon_sym_EQ_TILDE2] = ACTIONS(1680), - [anon_sym_BANG_TILDE2] = ACTIONS(1680), - [anon_sym_STAR_STAR2] = ACTIONS(1680), - [anon_sym_PLUS_PLUS2] = ACTIONS(1680), - [anon_sym_SLASH2] = ACTIONS(1680), - [anon_sym_mod2] = ACTIONS(1680), - [anon_sym_SLASH_SLASH2] = ACTIONS(1680), - [anon_sym_PLUS2] = ACTIONS(1680), - [anon_sym_bit_DASHshl2] = ACTIONS(1680), - [anon_sym_bit_DASHshr2] = ACTIONS(1680), - [anon_sym_bit_DASHand2] = ACTIONS(1680), - [anon_sym_bit_DASHxor2] = ACTIONS(1680), - [anon_sym_bit_DASHor2] = ACTIONS(1680), - [anon_sym_DOT_DOT2] = ACTIONS(1680), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1682), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1682), - [sym_filesize_unit] = ACTIONS(1680), - [sym_duration_unit] = ACTIONS(1682), + [anon_sym_STAR_STAR] = ACTIONS(2592), + [anon_sym_PLUS_PLUS] = ACTIONS(2592), + [anon_sym_STAR] = ACTIONS(2594), + [anon_sym_SLASH] = ACTIONS(2594), + [anon_sym_mod] = ACTIONS(2592), + [anon_sym_SLASH_SLASH] = ACTIONS(2592), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2592), + [anon_sym_bit_DASHshl] = ACTIONS(2592), + [anon_sym_bit_DASHshr] = ACTIONS(2592), + [anon_sym_EQ_TILDE] = ACTIONS(2592), + [anon_sym_BANG_TILDE] = ACTIONS(2592), + [anon_sym_bit_DASHand] = ACTIONS(2592), + [anon_sym_bit_DASHxor] = ACTIONS(2592), + [anon_sym_bit_DASHor] = ACTIONS(2592), + [anon_sym_and] = ACTIONS(2592), + [anon_sym_xor] = ACTIONS(2592), + [anon_sym_or] = ACTIONS(2592), + [anon_sym_in] = ACTIONS(2592), + [anon_sym_not_DASHin] = ACTIONS(2592), + [anon_sym_has] = ACTIONS(2592), + [anon_sym_not_DASHhas] = ACTIONS(2592), + [anon_sym_starts_DASHwith] = ACTIONS(2592), + [anon_sym_ends_DASHwith] = ACTIONS(2592), + [anon_sym_EQ_EQ] = ACTIONS(2592), + [anon_sym_BANG_EQ] = ACTIONS(2592), + [anon_sym_LT] = ACTIONS(2594), + [anon_sym_LT_EQ] = ACTIONS(2592), + [anon_sym_GT] = ACTIONS(2594), + [anon_sym_GT_EQ] = ACTIONS(2592), + [aux_sym_cmd_identifier_token41] = ACTIONS(2596), + [sym__newline] = ACTIONS(1639), + [anon_sym_SEMI] = ACTIONS(1639), + [anon_sym_PIPE] = ACTIONS(1639), + [anon_sym_err_GT_PIPE] = ACTIONS(1639), + [anon_sym_out_GT_PIPE] = ACTIONS(1639), + [anon_sym_e_GT_PIPE] = ACTIONS(1639), + [anon_sym_o_GT_PIPE] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1639), + [anon_sym_GT2] = ACTIONS(1639), + [anon_sym_DASH2] = ACTIONS(1639), + [anon_sym_in2] = ACTIONS(1639), + [anon_sym_STAR2] = ACTIONS(1639), + [anon_sym_and2] = ACTIONS(1639), + [anon_sym_xor2] = ACTIONS(1639), + [anon_sym_or2] = ACTIONS(1639), + [anon_sym_not_DASHin2] = ACTIONS(1639), + [anon_sym_has2] = ACTIONS(1639), + [anon_sym_not_DASHhas2] = ACTIONS(1639), + [anon_sym_starts_DASHwith2] = ACTIONS(1639), + [anon_sym_ends_DASHwith2] = ACTIONS(1639), + [anon_sym_EQ_EQ2] = ACTIONS(1639), + [anon_sym_BANG_EQ2] = ACTIONS(1639), + [anon_sym_LT2] = ACTIONS(1639), + [anon_sym_LT_EQ2] = ACTIONS(1639), + [anon_sym_GT_EQ2] = ACTIONS(1639), + [anon_sym_EQ_TILDE2] = ACTIONS(1639), + [anon_sym_BANG_TILDE2] = ACTIONS(1639), + [anon_sym_STAR_STAR2] = ACTIONS(1639), + [anon_sym_PLUS_PLUS2] = ACTIONS(1639), + [anon_sym_SLASH2] = ACTIONS(1639), + [anon_sym_mod2] = ACTIONS(1639), + [anon_sym_SLASH_SLASH2] = ACTIONS(1639), + [anon_sym_PLUS2] = ACTIONS(1639), + [anon_sym_bit_DASHshl2] = ACTIONS(1639), + [anon_sym_bit_DASHshr2] = ACTIONS(1639), + [anon_sym_bit_DASHand2] = ACTIONS(1639), + [anon_sym_bit_DASHxor2] = ACTIONS(1639), + [anon_sym_bit_DASHor2] = ACTIONS(1639), + [anon_sym_DOT_DOT2] = ACTIONS(2584), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2586), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2586), + [sym_filesize_unit] = ACTIONS(3590), + [sym_duration_unit] = ACTIONS(3592), [anon_sym_POUND] = ACTIONS(3), }, [1178] = { - [sym_expr_parenthesized] = STATE(465), - [sym_val_range] = STATE(673), - [sym__val_range] = STATE(7473), - [sym__val_range_with_end] = STATE(7406), - [sym__value] = STATE(673), - [sym_val_nothing] = STATE(637), - [sym_val_bool] = STATE(528), - [sym_val_variable] = STATE(472), - [sym_val_number] = STATE(637), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(665), - [sym_val_duration] = STATE(637), - [sym_val_filesize] = STATE(637), - [sym_val_binary] = STATE(637), - [sym_val_string] = STATE(637), - [sym__raw_str] = STATE(658), - [sym__str_double_quotes] = STATE(658), - [sym_val_interpolated] = STATE(637), - [sym__inter_single_quotes] = STATE(610), - [sym__inter_double_quotes] = STATE(611), - [sym_val_list] = STATE(637), - [sym_val_record] = STATE(637), - [sym_val_table] = STATE(637), - [sym_val_closure] = STATE(637), - [sym__unquoted_in_record] = STATE(547), - [sym__unquoted_in_record_with_expr] = STATE(673), - [sym__unquoted_anonymous_prefix] = STATE(6997), [sym_comment] = STATE(1178), - [anon_sym_LBRACK] = ACTIONS(3694), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_DOLLAR] = ACTIONS(1463), - [anon_sym_LBRACE] = ACTIONS(3698), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3702), - [anon_sym_DOT_DOT_LT] = ACTIONS(3702), - [anon_sym_null] = ACTIONS(3704), - [anon_sym_true] = ACTIONS(3706), - [anon_sym_false] = ACTIONS(3706), - [aux_sym__val_number_decimal_token1] = ACTIONS(3708), - [aux_sym__val_number_decimal_token2] = ACTIONS(3710), - [aux_sym__val_number_decimal_token3] = ACTIONS(3712), - [aux_sym__val_number_decimal_token4] = ACTIONS(3714), - [aux_sym__val_number_token1] = ACTIONS(3716), - [aux_sym__val_number_token2] = ACTIONS(3716), - [aux_sym__val_number_token3] = ACTIONS(3716), - [aux_sym__val_number_token4] = ACTIONS(3718), - [aux_sym__val_number_token5] = ACTIONS(3718), - [aux_sym__val_number_token6] = ACTIONS(3718), - [anon_sym_0b] = ACTIONS(3720), - [anon_sym_0o] = ACTIONS(3722), - [anon_sym_0x] = ACTIONS(3722), - [sym_val_date] = ACTIONS(3724), - [anon_sym_DQUOTE] = ACTIONS(3726), - [sym__str_single_quotes] = ACTIONS(3728), - [sym__str_back_ticks] = ACTIONS(3728), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3730), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3732), - [anon_sym_err_GT] = ACTIONS(3618), - [anon_sym_out_GT] = ACTIONS(3618), - [anon_sym_e_GT] = ACTIONS(3618), - [anon_sym_o_GT] = ACTIONS(3618), - [anon_sym_err_PLUSout_GT] = ACTIONS(3618), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3618), - [anon_sym_o_PLUSe_GT] = ACTIONS(3618), - [anon_sym_e_PLUSo_GT] = ACTIONS(3618), - [anon_sym_err_GT_GT] = ACTIONS(3620), - [anon_sym_out_GT_GT] = ACTIONS(3620), - [anon_sym_e_GT_GT] = ACTIONS(3620), - [anon_sym_o_GT_GT] = ACTIONS(3620), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3620), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3620), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3620), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3620), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3734), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3736), + [aux_sym_pipe_element_repeat1] = STATE(1178), + [aux_sym_cmd_identifier_token1] = ACTIONS(3594), + [aux_sym_cmd_identifier_token2] = ACTIONS(3594), + [aux_sym_cmd_identifier_token3] = ACTIONS(3594), + [aux_sym_cmd_identifier_token4] = ACTIONS(3594), + [aux_sym_cmd_identifier_token5] = ACTIONS(3594), + [aux_sym_cmd_identifier_token6] = ACTIONS(3594), + [aux_sym_cmd_identifier_token7] = ACTIONS(3594), + [aux_sym_cmd_identifier_token8] = ACTIONS(3594), + [aux_sym_cmd_identifier_token9] = ACTIONS(3594), + [aux_sym_cmd_identifier_token10] = ACTIONS(3594), + [aux_sym_cmd_identifier_token11] = ACTIONS(3594), + [aux_sym_cmd_identifier_token12] = ACTIONS(3594), + [aux_sym_cmd_identifier_token13] = ACTIONS(3594), + [aux_sym_cmd_identifier_token14] = ACTIONS(3594), + [aux_sym_cmd_identifier_token15] = ACTIONS(3594), + [aux_sym_cmd_identifier_token16] = ACTIONS(3594), + [aux_sym_cmd_identifier_token17] = ACTIONS(3594), + [aux_sym_cmd_identifier_token18] = ACTIONS(3594), + [aux_sym_cmd_identifier_token19] = ACTIONS(3594), + [aux_sym_cmd_identifier_token20] = ACTIONS(3594), + [aux_sym_cmd_identifier_token21] = ACTIONS(3594), + [aux_sym_cmd_identifier_token22] = ACTIONS(3594), + [aux_sym_cmd_identifier_token23] = ACTIONS(3594), + [aux_sym_cmd_identifier_token24] = ACTIONS(3594), + [aux_sym_cmd_identifier_token25] = ACTIONS(3594), + [aux_sym_cmd_identifier_token26] = ACTIONS(3594), + [aux_sym_cmd_identifier_token27] = ACTIONS(3594), + [aux_sym_cmd_identifier_token28] = ACTIONS(3594), + [aux_sym_cmd_identifier_token29] = ACTIONS(3594), + [aux_sym_cmd_identifier_token30] = ACTIONS(3594), + [aux_sym_cmd_identifier_token31] = ACTIONS(3594), + [aux_sym_cmd_identifier_token32] = ACTIONS(3594), + [aux_sym_cmd_identifier_token33] = ACTIONS(3594), + [aux_sym_cmd_identifier_token34] = ACTIONS(3594), + [aux_sym_cmd_identifier_token35] = ACTIONS(3594), + [aux_sym_cmd_identifier_token36] = ACTIONS(3594), + [aux_sym_cmd_identifier_token37] = ACTIONS(3594), + [aux_sym_cmd_identifier_token38] = ACTIONS(3594), + [aux_sym_cmd_identifier_token39] = ACTIONS(3594), + [aux_sym_cmd_identifier_token40] = ACTIONS(3594), + [sym__space] = ACTIONS(3596), + [anon_sym_LBRACK] = ACTIONS(3594), + [anon_sym_LPAREN] = ACTIONS(3594), + [anon_sym_DOLLAR] = ACTIONS(3594), + [anon_sym_DASH2] = ACTIONS(3594), + [anon_sym_LBRACE] = ACTIONS(3594), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [aux_sym_expr_unary_token1] = ACTIONS(3594), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3594), + [anon_sym_DOT_DOT_LT] = ACTIONS(3594), + [anon_sym_null] = ACTIONS(3594), + [anon_sym_true] = ACTIONS(3594), + [anon_sym_false] = ACTIONS(3594), + [aux_sym__val_number_decimal_token1] = ACTIONS(3594), + [aux_sym__val_number_decimal_token2] = ACTIONS(3594), + [aux_sym__val_number_decimal_token3] = ACTIONS(3594), + [aux_sym__val_number_decimal_token4] = ACTIONS(3594), + [aux_sym__val_number_token1] = ACTIONS(3594), + [aux_sym__val_number_token2] = ACTIONS(3594), + [aux_sym__val_number_token3] = ACTIONS(3594), + [aux_sym__val_number_token4] = ACTIONS(3594), + [aux_sym__val_number_token5] = ACTIONS(3594), + [aux_sym__val_number_token6] = ACTIONS(3594), + [anon_sym_0b] = ACTIONS(3594), + [anon_sym_0o] = ACTIONS(3594), + [anon_sym_0x] = ACTIONS(3594), + [sym_val_date] = ACTIONS(3594), + [anon_sym_DQUOTE] = ACTIONS(3594), + [sym__str_single_quotes] = ACTIONS(3594), + [sym__str_back_ticks] = ACTIONS(3594), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3594), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3594), + [aux_sym_env_var_token1] = ACTIONS(3594), + [anon_sym_CARET] = ACTIONS(3594), + [aux_sym_command_token1] = ACTIONS(3594), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(3599), }, [1179] = { - [sym_expr_parenthesized] = STATE(6104), - [sym_val_range] = STATE(7366), - [sym__val_range] = STATE(7589), - [sym__val_range_with_end] = STATE(7407), - [sym__value] = STATE(7366), - [sym_val_nothing] = STATE(7049), - [sym_val_bool] = STATE(6191), - [sym_val_variable] = STATE(5708), - [sym_val_number] = STATE(7049), - [sym__val_number_decimal] = STATE(5218), - [sym__val_number] = STATE(7097), - [sym_val_duration] = STATE(7049), - [sym_val_filesize] = STATE(7049), - [sym_val_binary] = STATE(7049), - [sym_val_string] = STATE(7049), - [sym__raw_str] = STATE(5195), - [sym__str_double_quotes] = STATE(5195), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(7049), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(7049), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_record] = STATE(6643), - [sym__unquoted_in_record_with_expr] = STATE(7366), - [sym__unquoted_anonymous_prefix] = STATE(6941), [sym_comment] = STATE(1179), - [anon_sym_LBRACK] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_DOT_DOT] = ACTIONS(3738), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3740), - [anon_sym_DOT_DOT_LT] = ACTIONS(3740), - [anon_sym_null] = ACTIONS(3742), - [anon_sym_true] = ACTIONS(3744), - [anon_sym_false] = ACTIONS(3744), - [aux_sym__val_number_decimal_token1] = ACTIONS(3746), - [aux_sym__val_number_decimal_token2] = ACTIONS(3748), - [aux_sym__val_number_decimal_token3] = ACTIONS(3750), - [aux_sym__val_number_decimal_token4] = ACTIONS(3752), - [aux_sym__val_number_token1] = ACTIONS(3122), - [aux_sym__val_number_token2] = ACTIONS(3122), - [aux_sym__val_number_token3] = ACTIONS(3122), - [aux_sym__val_number_token4] = ACTIONS(3754), - [aux_sym__val_number_token5] = ACTIONS(3754), - [aux_sym__val_number_token6] = ACTIONS(3754), - [anon_sym_0b] = ACTIONS(3126), - [anon_sym_0o] = ACTIONS(3128), - [anon_sym_0x] = ACTIONS(3128), - [sym_val_date] = ACTIONS(3756), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym__str_single_quotes] = ACTIONS(3134), - [sym__str_back_ticks] = ACTIONS(3134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2596), - [anon_sym_err_GT] = ACTIONS(3618), - [anon_sym_out_GT] = ACTIONS(3618), - [anon_sym_e_GT] = ACTIONS(3618), - [anon_sym_o_GT] = ACTIONS(3618), - [anon_sym_err_PLUSout_GT] = ACTIONS(3618), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3618), - [anon_sym_o_PLUSe_GT] = ACTIONS(3618), - [anon_sym_e_PLUSo_GT] = ACTIONS(3618), - [anon_sym_err_GT_GT] = ACTIONS(3620), - [anon_sym_out_GT_GT] = ACTIONS(3620), - [anon_sym_e_GT_GT] = ACTIONS(3620), - [anon_sym_o_GT_GT] = ACTIONS(3620), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3620), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3620), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3620), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3620), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3758), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3138), + [aux_sym_shebang_repeat1] = STATE(1179), + [aux_sym_cmd_identifier_token1] = ACTIONS(1294), + [aux_sym_cmd_identifier_token2] = ACTIONS(1296), + [aux_sym_cmd_identifier_token3] = ACTIONS(1296), + [aux_sym_cmd_identifier_token4] = ACTIONS(1296), + [aux_sym_cmd_identifier_token5] = ACTIONS(1296), + [aux_sym_cmd_identifier_token6] = ACTIONS(1296), + [aux_sym_cmd_identifier_token7] = ACTIONS(1296), + [aux_sym_cmd_identifier_token8] = ACTIONS(1296), + [aux_sym_cmd_identifier_token9] = ACTIONS(1294), + [aux_sym_cmd_identifier_token10] = ACTIONS(1296), + [aux_sym_cmd_identifier_token11] = ACTIONS(1296), + [aux_sym_cmd_identifier_token12] = ACTIONS(1296), + [aux_sym_cmd_identifier_token13] = ACTIONS(1294), + [aux_sym_cmd_identifier_token14] = ACTIONS(1296), + [aux_sym_cmd_identifier_token15] = ACTIONS(1294), + [aux_sym_cmd_identifier_token16] = ACTIONS(1296), + [aux_sym_cmd_identifier_token17] = ACTIONS(1296), + [aux_sym_cmd_identifier_token18] = ACTIONS(1294), + [aux_sym_cmd_identifier_token19] = ACTIONS(1296), + [aux_sym_cmd_identifier_token20] = ACTIONS(1296), + [aux_sym_cmd_identifier_token21] = ACTIONS(1296), + [aux_sym_cmd_identifier_token22] = ACTIONS(1296), + [aux_sym_cmd_identifier_token23] = ACTIONS(1296), + [aux_sym_cmd_identifier_token24] = ACTIONS(1296), + [aux_sym_cmd_identifier_token25] = ACTIONS(1296), + [aux_sym_cmd_identifier_token26] = ACTIONS(1296), + [aux_sym_cmd_identifier_token27] = ACTIONS(1296), + [aux_sym_cmd_identifier_token28] = ACTIONS(1296), + [aux_sym_cmd_identifier_token29] = ACTIONS(1296), + [aux_sym_cmd_identifier_token30] = ACTIONS(1296), + [aux_sym_cmd_identifier_token31] = ACTIONS(1296), + [aux_sym_cmd_identifier_token32] = ACTIONS(1294), + [aux_sym_cmd_identifier_token33] = ACTIONS(1296), + [aux_sym_cmd_identifier_token34] = ACTIONS(1294), + [aux_sym_cmd_identifier_token35] = ACTIONS(1296), + [aux_sym_cmd_identifier_token36] = ACTIONS(1296), + [aux_sym_cmd_identifier_token37] = ACTIONS(1296), + [aux_sym_cmd_identifier_token38] = ACTIONS(1294), + [aux_sym_cmd_identifier_token39] = ACTIONS(1296), + [aux_sym_cmd_identifier_token40] = ACTIONS(1296), + [sym__newline] = ACTIONS(3601), + [anon_sym_LBRACK] = ACTIONS(1296), + [anon_sym_LPAREN] = ACTIONS(1296), + [anon_sym_DOLLAR] = ACTIONS(1294), + [anon_sym_DASH2] = ACTIONS(1294), + [anon_sym_if] = ACTIONS(1294), + [anon_sym_LBRACE] = ACTIONS(1296), + [anon_sym_DOT_DOT] = ACTIONS(1294), + [aux_sym_expr_unary_token1] = ACTIONS(1296), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1296), + [anon_sym_DOT_DOT_LT] = ACTIONS(1296), + [anon_sym_null] = ACTIONS(1294), + [anon_sym_true] = ACTIONS(1294), + [anon_sym_false] = ACTIONS(1294), + [aux_sym__val_number_decimal_token1] = ACTIONS(1294), + [aux_sym__val_number_decimal_token2] = ACTIONS(1296), + [aux_sym__val_number_decimal_token3] = ACTIONS(1296), + [aux_sym__val_number_decimal_token4] = ACTIONS(1296), + [aux_sym__val_number_token1] = ACTIONS(1296), + [aux_sym__val_number_token2] = ACTIONS(1296), + [aux_sym__val_number_token3] = ACTIONS(1296), + [aux_sym__val_number_token4] = ACTIONS(1294), + [aux_sym__val_number_token5] = ACTIONS(1294), + [aux_sym__val_number_token6] = ACTIONS(1294), + [anon_sym_0b] = ACTIONS(1294), + [anon_sym_0o] = ACTIONS(1294), + [anon_sym_0x] = ACTIONS(1294), + [sym_val_date] = ACTIONS(1296), + [anon_sym_DQUOTE] = ACTIONS(1296), + [sym__str_single_quotes] = ACTIONS(1296), + [sym__str_back_ticks] = ACTIONS(1296), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1296), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1296), + [anon_sym_CARET] = ACTIONS(1296), + [aux_sym_command_token1] = ACTIONS(1296), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1296), }, [1180] = { - [sym_expr_parenthesized] = STATE(541), - [sym_val_range] = STATE(675), - [sym__val_range] = STATE(7524), - [sym__val_range_with_end] = STATE(7379), - [sym__value] = STATE(675), - [sym_val_nothing] = STATE(751), - [sym_val_bool] = STATE(565), - [sym_val_variable] = STATE(522), - [sym_val_number] = STATE(751), - [sym__val_number_decimal] = STATE(354), - [sym__val_number] = STATE(709), - [sym_val_duration] = STATE(751), - [sym_val_filesize] = STATE(751), - [sym_val_binary] = STATE(751), - [sym_val_string] = STATE(751), - [sym__raw_str] = STATE(708), - [sym__str_double_quotes] = STATE(708), - [sym_val_interpolated] = STATE(751), - [sym__inter_single_quotes] = STATE(744), - [sym__inter_double_quotes] = STATE(746), - [sym_val_list] = STATE(751), - [sym_val_record] = STATE(751), - [sym_val_table] = STATE(751), - [sym_val_closure] = STATE(751), - [sym__unquoted_in_record] = STATE(576), - [sym__unquoted_in_record_with_expr] = STATE(675), - [sym__unquoted_anonymous_prefix] = STATE(6858), + [sym_env_var] = STATE(7436), [sym_comment] = STATE(1180), - [anon_sym_LBRACK] = ACTIONS(3760), - [anon_sym_LPAREN] = ACTIONS(3762), - [anon_sym_DOLLAR] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(3764), - [anon_sym_DOT_DOT] = ACTIONS(3766), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3768), - [anon_sym_DOT_DOT_LT] = ACTIONS(3768), - [anon_sym_null] = ACTIONS(3770), - [anon_sym_true] = ACTIONS(3772), - [anon_sym_false] = ACTIONS(3772), - [aux_sym__val_number_decimal_token1] = ACTIONS(3774), - [aux_sym__val_number_decimal_token2] = ACTIONS(3776), - [aux_sym__val_number_decimal_token3] = ACTIONS(3778), - [aux_sym__val_number_decimal_token4] = ACTIONS(3780), - [aux_sym__val_number_token1] = ACTIONS(3782), - [aux_sym__val_number_token2] = ACTIONS(3782), - [aux_sym__val_number_token3] = ACTIONS(3782), - [aux_sym__val_number_token4] = ACTIONS(3784), - [aux_sym__val_number_token5] = ACTIONS(3784), - [aux_sym__val_number_token6] = ACTIONS(3784), - [anon_sym_0b] = ACTIONS(3786), - [anon_sym_0o] = ACTIONS(3788), - [anon_sym_0x] = ACTIONS(3788), - [sym_val_date] = ACTIONS(3790), - [anon_sym_DQUOTE] = ACTIONS(3792), - [sym__str_single_quotes] = ACTIONS(3794), - [sym__str_back_ticks] = ACTIONS(3794), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3796), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3798), - [anon_sym_err_GT] = ACTIONS(3618), - [anon_sym_out_GT] = ACTIONS(3618), - [anon_sym_e_GT] = ACTIONS(3618), - [anon_sym_o_GT] = ACTIONS(3618), - [anon_sym_err_PLUSout_GT] = ACTIONS(3618), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3618), - [anon_sym_o_PLUSe_GT] = ACTIONS(3618), - [anon_sym_e_PLUSo_GT] = ACTIONS(3618), - [anon_sym_err_GT_GT] = ACTIONS(3620), - [anon_sym_out_GT_GT] = ACTIONS(3620), - [anon_sym_e_GT_GT] = ACTIONS(3620), - [anon_sym_o_GT_GT] = ACTIONS(3620), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3620), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3620), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3620), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3620), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3800), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3802), + [aux_sym_pipe_element_repeat2] = STATE(1180), + [aux_sym_cmd_identifier_token1] = ACTIONS(3582), + [aux_sym_cmd_identifier_token2] = ACTIONS(3586), + [aux_sym_cmd_identifier_token3] = ACTIONS(3586), + [aux_sym_cmd_identifier_token4] = ACTIONS(3586), + [aux_sym_cmd_identifier_token5] = ACTIONS(3586), + [aux_sym_cmd_identifier_token6] = ACTIONS(3586), + [aux_sym_cmd_identifier_token7] = ACTIONS(3586), + [aux_sym_cmd_identifier_token8] = ACTIONS(3586), + [aux_sym_cmd_identifier_token9] = ACTIONS(3582), + [aux_sym_cmd_identifier_token10] = ACTIONS(3586), + [aux_sym_cmd_identifier_token11] = ACTIONS(3586), + [aux_sym_cmd_identifier_token12] = ACTIONS(3586), + [aux_sym_cmd_identifier_token13] = ACTIONS(3582), + [aux_sym_cmd_identifier_token14] = ACTIONS(3586), + [aux_sym_cmd_identifier_token15] = ACTIONS(3582), + [aux_sym_cmd_identifier_token16] = ACTIONS(3586), + [aux_sym_cmd_identifier_token17] = ACTIONS(3586), + [aux_sym_cmd_identifier_token18] = ACTIONS(3582), + [aux_sym_cmd_identifier_token19] = ACTIONS(3586), + [aux_sym_cmd_identifier_token20] = ACTIONS(3586), + [aux_sym_cmd_identifier_token21] = ACTIONS(3586), + [aux_sym_cmd_identifier_token22] = ACTIONS(3586), + [aux_sym_cmd_identifier_token23] = ACTIONS(3586), + [aux_sym_cmd_identifier_token24] = ACTIONS(3586), + [aux_sym_cmd_identifier_token25] = ACTIONS(3586), + [aux_sym_cmd_identifier_token26] = ACTIONS(3586), + [aux_sym_cmd_identifier_token27] = ACTIONS(3586), + [aux_sym_cmd_identifier_token28] = ACTIONS(3586), + [aux_sym_cmd_identifier_token29] = ACTIONS(3586), + [aux_sym_cmd_identifier_token30] = ACTIONS(3586), + [aux_sym_cmd_identifier_token31] = ACTIONS(3586), + [aux_sym_cmd_identifier_token32] = ACTIONS(3582), + [aux_sym_cmd_identifier_token33] = ACTIONS(3586), + [aux_sym_cmd_identifier_token34] = ACTIONS(3582), + [aux_sym_cmd_identifier_token35] = ACTIONS(3586), + [aux_sym_cmd_identifier_token36] = ACTIONS(3586), + [aux_sym_cmd_identifier_token37] = ACTIONS(3586), + [aux_sym_cmd_identifier_token38] = ACTIONS(3582), + [aux_sym_cmd_identifier_token39] = ACTIONS(3586), + [aux_sym_cmd_identifier_token40] = ACTIONS(3586), + [anon_sym_LBRACK] = ACTIONS(3586), + [anon_sym_LPAREN] = ACTIONS(3586), + [anon_sym_DOLLAR] = ACTIONS(3582), + [anon_sym_DASH2] = ACTIONS(3582), + [anon_sym_LBRACE] = ACTIONS(3586), + [anon_sym_DOT_DOT] = ACTIONS(3582), + [aux_sym_expr_unary_token1] = ACTIONS(3586), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3586), + [anon_sym_DOT_DOT_LT] = ACTIONS(3586), + [anon_sym_null] = ACTIONS(3582), + [anon_sym_true] = ACTIONS(3582), + [anon_sym_false] = ACTIONS(3582), + [aux_sym__val_number_decimal_token1] = ACTIONS(3582), + [aux_sym__val_number_decimal_token2] = ACTIONS(3586), + [aux_sym__val_number_decimal_token3] = ACTIONS(3586), + [aux_sym__val_number_decimal_token4] = ACTIONS(3586), + [aux_sym__val_number_token1] = ACTIONS(3586), + [aux_sym__val_number_token2] = ACTIONS(3586), + [aux_sym__val_number_token3] = ACTIONS(3586), + [aux_sym__val_number_token4] = ACTIONS(3582), + [aux_sym__val_number_token5] = ACTIONS(3582), + [aux_sym__val_number_token6] = ACTIONS(3582), + [anon_sym_0b] = ACTIONS(3582), + [anon_sym_0o] = ACTIONS(3582), + [anon_sym_0x] = ACTIONS(3582), + [sym_val_date] = ACTIONS(3586), + [anon_sym_DQUOTE] = ACTIONS(3586), + [sym__str_single_quotes] = ACTIONS(3586), + [sym__str_back_ticks] = ACTIONS(3586), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3586), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3586), + [aux_sym_env_var_token1] = ACTIONS(3604), + [anon_sym_CARET] = ACTIONS(3586), + [aux_sym_command_token1] = ACTIONS(3586), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3586), }, [1181] = { [sym_comment] = STATE(1181), - [anon_sym_STAR_STAR] = ACTIONS(1745), - [anon_sym_PLUS_PLUS] = ACTIONS(1745), - [anon_sym_STAR] = ACTIONS(1743), - [anon_sym_SLASH] = ACTIONS(1743), - [anon_sym_mod] = ACTIONS(1745), - [anon_sym_SLASH_SLASH] = ACTIONS(1745), - [anon_sym_PLUS] = ACTIONS(1743), - [anon_sym_DASH] = ACTIONS(1745), - [anon_sym_bit_DASHshl] = ACTIONS(1745), - [anon_sym_bit_DASHshr] = ACTIONS(1745), - [anon_sym_EQ_TILDE] = ACTIONS(1745), - [anon_sym_BANG_TILDE] = ACTIONS(1745), - [anon_sym_bit_DASHand] = ACTIONS(1745), - [anon_sym_bit_DASHxor] = ACTIONS(1745), - [anon_sym_bit_DASHor] = ACTIONS(1745), - [anon_sym_and] = ACTIONS(1745), - [anon_sym_xor] = ACTIONS(1745), - [anon_sym_or] = ACTIONS(1745), - [anon_sym_in] = ACTIONS(1745), - [anon_sym_not_DASHin] = ACTIONS(1745), - [anon_sym_starts_DASHwith] = ACTIONS(1745), - [anon_sym_ends_DASHwith] = ACTIONS(1745), - [anon_sym_EQ_EQ] = ACTIONS(1745), - [anon_sym_BANG_EQ] = ACTIONS(1745), - [anon_sym_LT] = ACTIONS(1743), - [anon_sym_LT_EQ] = ACTIONS(1745), - [anon_sym_GT] = ACTIONS(1743), - [anon_sym_GT_EQ] = ACTIONS(1745), - [aux_sym_cmd_identifier_token41] = ACTIONS(1743), - [sym__newline] = ACTIONS(1743), - [anon_sym_SEMI] = ACTIONS(1743), - [anon_sym_PIPE] = ACTIONS(1743), - [anon_sym_err_GT_PIPE] = ACTIONS(1743), - [anon_sym_out_GT_PIPE] = ACTIONS(1743), - [anon_sym_e_GT_PIPE] = ACTIONS(1743), - [anon_sym_o_GT_PIPE] = ACTIONS(1743), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1743), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1743), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1743), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1743), - [anon_sym_RPAREN] = ACTIONS(1743), - [anon_sym_GT2] = ACTIONS(1743), - [anon_sym_DASH2] = ACTIONS(1743), - [anon_sym_in2] = ACTIONS(1743), - [anon_sym_STAR2] = ACTIONS(1743), - [anon_sym_and2] = ACTIONS(1743), - [anon_sym_xor2] = ACTIONS(1743), - [anon_sym_or2] = ACTIONS(1743), - [anon_sym_not_DASHin2] = ACTIONS(1743), - [anon_sym_starts_DASHwith2] = ACTIONS(1743), - [anon_sym_ends_DASHwith2] = ACTIONS(1743), - [anon_sym_EQ_EQ2] = ACTIONS(1743), - [anon_sym_BANG_EQ2] = ACTIONS(1743), - [anon_sym_LT2] = ACTIONS(1743), - [anon_sym_LT_EQ2] = ACTIONS(1743), - [anon_sym_GT_EQ2] = ACTIONS(1743), - [anon_sym_EQ_TILDE2] = ACTIONS(1743), - [anon_sym_BANG_TILDE2] = ACTIONS(1743), - [anon_sym_STAR_STAR2] = ACTIONS(1743), - [anon_sym_PLUS_PLUS2] = ACTIONS(1743), - [anon_sym_SLASH2] = ACTIONS(1743), - [anon_sym_mod2] = ACTIONS(1743), - [anon_sym_SLASH_SLASH2] = ACTIONS(1743), - [anon_sym_PLUS2] = ACTIONS(1743), - [anon_sym_bit_DASHshl2] = ACTIONS(1743), - [anon_sym_bit_DASHshr2] = ACTIONS(1743), - [anon_sym_bit_DASHand2] = ACTIONS(1743), - [anon_sym_bit_DASHxor2] = ACTIONS(1743), - [anon_sym_bit_DASHor2] = ACTIONS(1743), - [anon_sym_DOT_DOT2] = ACTIONS(1743), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1745), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1745), - [sym_filesize_unit] = ACTIONS(1743), - [sym_duration_unit] = ACTIONS(1745), + [anon_sym_STAR_STAR] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_SLASH] = ACTIONS(1512), + [anon_sym_mod] = ACTIONS(1514), + [anon_sym_SLASH_SLASH] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_bit_DASHshl] = ACTIONS(1514), + [anon_sym_bit_DASHshr] = ACTIONS(1514), + [anon_sym_EQ_TILDE] = ACTIONS(1514), + [anon_sym_BANG_TILDE] = ACTIONS(1514), + [anon_sym_bit_DASHand] = ACTIONS(1514), + [anon_sym_bit_DASHxor] = ACTIONS(1514), + [anon_sym_bit_DASHor] = ACTIONS(1514), + [anon_sym_and] = ACTIONS(1514), + [anon_sym_xor] = ACTIONS(1514), + [anon_sym_or] = ACTIONS(1514), + [anon_sym_in] = ACTIONS(1514), + [anon_sym_not_DASHin] = ACTIONS(1514), + [anon_sym_has] = ACTIONS(1514), + [anon_sym_not_DASHhas] = ACTIONS(1514), + [anon_sym_starts_DASHwith] = ACTIONS(1514), + [anon_sym_ends_DASHwith] = ACTIONS(1514), + [anon_sym_EQ_EQ] = ACTIONS(1514), + [anon_sym_BANG_EQ] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_LT_EQ] = ACTIONS(1514), + [anon_sym_GT] = ACTIONS(1512), + [anon_sym_GT_EQ] = ACTIONS(1514), + [aux_sym_cmd_identifier_token41] = ACTIONS(1512), + [sym__newline] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_err_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_GT_PIPE] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1512), + [anon_sym_GT2] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_in2] = ACTIONS(1512), + [anon_sym_STAR2] = ACTIONS(1512), + [anon_sym_and2] = ACTIONS(1512), + [anon_sym_xor2] = ACTIONS(1512), + [anon_sym_or2] = ACTIONS(1512), + [anon_sym_not_DASHin2] = ACTIONS(1512), + [anon_sym_has2] = ACTIONS(1512), + [anon_sym_not_DASHhas2] = ACTIONS(1512), + [anon_sym_starts_DASHwith2] = ACTIONS(1512), + [anon_sym_ends_DASHwith2] = ACTIONS(1512), + [anon_sym_EQ_EQ2] = ACTIONS(1512), + [anon_sym_BANG_EQ2] = ACTIONS(1512), + [anon_sym_LT2] = ACTIONS(1512), + [anon_sym_LT_EQ2] = ACTIONS(1512), + [anon_sym_GT_EQ2] = ACTIONS(1512), + [anon_sym_EQ_TILDE2] = ACTIONS(1512), + [anon_sym_BANG_TILDE2] = ACTIONS(1512), + [anon_sym_STAR_STAR2] = ACTIONS(1512), + [anon_sym_PLUS_PLUS2] = ACTIONS(1512), + [anon_sym_SLASH2] = ACTIONS(1512), + [anon_sym_mod2] = ACTIONS(1512), + [anon_sym_SLASH_SLASH2] = ACTIONS(1512), + [anon_sym_PLUS2] = ACTIONS(1512), + [anon_sym_bit_DASHshl2] = ACTIONS(1512), + [anon_sym_bit_DASHshr2] = ACTIONS(1512), + [anon_sym_bit_DASHand2] = ACTIONS(1512), + [anon_sym_bit_DASHxor2] = ACTIONS(1512), + [anon_sym_bit_DASHor2] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [aux_sym__immediate_decimal_token2] = ACTIONS(3546), + [sym_filesize_unit] = ACTIONS(1512), + [sym_duration_unit] = ACTIONS(1514), [anon_sym_POUND] = ACTIONS(3), }, [1182] = { [sym_comment] = STATE(1182), - [anon_sym_STAR_STAR] = ACTIONS(1544), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_STAR] = ACTIONS(1542), - [anon_sym_SLASH] = ACTIONS(1542), - [anon_sym_mod] = ACTIONS(1544), - [anon_sym_SLASH_SLASH] = ACTIONS(1544), - [anon_sym_PLUS] = ACTIONS(1542), - [anon_sym_DASH] = ACTIONS(1544), - [anon_sym_bit_DASHshl] = ACTIONS(1544), - [anon_sym_bit_DASHshr] = ACTIONS(1544), - [anon_sym_EQ_TILDE] = ACTIONS(1544), - [anon_sym_BANG_TILDE] = ACTIONS(1544), - [anon_sym_bit_DASHand] = ACTIONS(1544), - [anon_sym_bit_DASHxor] = ACTIONS(1544), - [anon_sym_bit_DASHor] = ACTIONS(1544), - [anon_sym_and] = ACTIONS(1544), - [anon_sym_xor] = ACTIONS(1544), - [anon_sym_or] = ACTIONS(1544), - [anon_sym_in] = ACTIONS(1544), - [anon_sym_not_DASHin] = ACTIONS(1544), - [anon_sym_starts_DASHwith] = ACTIONS(1544), - [anon_sym_ends_DASHwith] = ACTIONS(1544), - [anon_sym_EQ_EQ] = ACTIONS(1544), - [anon_sym_BANG_EQ] = ACTIONS(1544), - [anon_sym_LT] = ACTIONS(1542), - [anon_sym_LT_EQ] = ACTIONS(1544), - [anon_sym_GT] = ACTIONS(1542), - [anon_sym_GT_EQ] = ACTIONS(1544), - [aux_sym_cmd_identifier_token41] = ACTIONS(1542), - [sym__newline] = ACTIONS(1542), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_err_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_GT_PIPE] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), - [anon_sym_GT2] = ACTIONS(1542), - [anon_sym_DASH2] = ACTIONS(1542), - [anon_sym_in2] = ACTIONS(1542), - [anon_sym_RBRACE] = ACTIONS(1542), - [anon_sym_STAR2] = ACTIONS(1542), - [anon_sym_and2] = ACTIONS(1542), - [anon_sym_xor2] = ACTIONS(1542), - [anon_sym_or2] = ACTIONS(1542), - [anon_sym_not_DASHin2] = ACTIONS(1542), - [anon_sym_starts_DASHwith2] = ACTIONS(1542), - [anon_sym_ends_DASHwith2] = ACTIONS(1542), - [anon_sym_EQ_EQ2] = ACTIONS(1542), - [anon_sym_BANG_EQ2] = ACTIONS(1542), - [anon_sym_LT2] = ACTIONS(1542), - [anon_sym_LT_EQ2] = ACTIONS(1542), - [anon_sym_GT_EQ2] = ACTIONS(1542), - [anon_sym_EQ_TILDE2] = ACTIONS(1542), - [anon_sym_BANG_TILDE2] = ACTIONS(1542), - [anon_sym_STAR_STAR2] = ACTIONS(1542), - [anon_sym_PLUS_PLUS2] = ACTIONS(1542), - [anon_sym_SLASH2] = ACTIONS(1542), - [anon_sym_mod2] = ACTIONS(1542), - [anon_sym_SLASH_SLASH2] = ACTIONS(1542), - [anon_sym_PLUS2] = ACTIONS(1542), - [anon_sym_bit_DASHshl2] = ACTIONS(1542), - [anon_sym_bit_DASHshr2] = ACTIONS(1542), - [anon_sym_bit_DASHand2] = ACTIONS(1542), - [anon_sym_bit_DASHxor2] = ACTIONS(1542), - [anon_sym_bit_DASHor2] = ACTIONS(1542), - [anon_sym_DOT_DOT2] = ACTIONS(1542), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1544), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1544), - [sym_filesize_unit] = ACTIONS(1542), - [sym_duration_unit] = ACTIONS(1544), + [anon_sym_STAR_STAR] = ACTIONS(1620), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1618), + [anon_sym_SLASH] = ACTIONS(1618), + [anon_sym_mod] = ACTIONS(1620), + [anon_sym_SLASH_SLASH] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1618), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_bit_DASHshl] = ACTIONS(1620), + [anon_sym_bit_DASHshr] = ACTIONS(1620), + [anon_sym_EQ_TILDE] = ACTIONS(1620), + [anon_sym_BANG_TILDE] = ACTIONS(1620), + [anon_sym_bit_DASHand] = ACTIONS(1620), + [anon_sym_bit_DASHxor] = ACTIONS(1620), + [anon_sym_bit_DASHor] = ACTIONS(1620), + [anon_sym_and] = ACTIONS(1620), + [anon_sym_xor] = ACTIONS(1620), + [anon_sym_or] = ACTIONS(1620), + [anon_sym_in] = ACTIONS(1620), + [anon_sym_not_DASHin] = ACTIONS(1620), + [anon_sym_has] = ACTIONS(1620), + [anon_sym_not_DASHhas] = ACTIONS(1620), + [anon_sym_starts_DASHwith] = ACTIONS(1620), + [anon_sym_ends_DASHwith] = ACTIONS(1620), + [anon_sym_EQ_EQ] = ACTIONS(1620), + [anon_sym_BANG_EQ] = ACTIONS(1620), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_LT_EQ] = ACTIONS(1620), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_GT_EQ] = ACTIONS(1620), + [aux_sym_cmd_identifier_token41] = ACTIONS(1618), + [sym__newline] = ACTIONS(1618), + [anon_sym_PIPE] = ACTIONS(1618), + [anon_sym_err_GT_PIPE] = ACTIONS(1618), + [anon_sym_out_GT_PIPE] = ACTIONS(1618), + [anon_sym_e_GT_PIPE] = ACTIONS(1618), + [anon_sym_o_GT_PIPE] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1618), + [anon_sym_GT2] = ACTIONS(1618), + [anon_sym_DASH2] = ACTIONS(1618), + [anon_sym_in2] = ACTIONS(1618), + [anon_sym_STAR2] = ACTIONS(1618), + [anon_sym_and2] = ACTIONS(1618), + [anon_sym_xor2] = ACTIONS(1618), + [anon_sym_or2] = ACTIONS(1618), + [anon_sym_not_DASHin2] = ACTIONS(1618), + [anon_sym_has2] = ACTIONS(1618), + [anon_sym_not_DASHhas2] = ACTIONS(1618), + [anon_sym_starts_DASHwith2] = ACTIONS(1618), + [anon_sym_ends_DASHwith2] = ACTIONS(1618), + [anon_sym_EQ_EQ2] = ACTIONS(1618), + [anon_sym_BANG_EQ2] = ACTIONS(1618), + [anon_sym_LT2] = ACTIONS(1618), + [anon_sym_LT_EQ2] = ACTIONS(1618), + [anon_sym_GT_EQ2] = ACTIONS(1618), + [anon_sym_EQ_TILDE2] = ACTIONS(1618), + [anon_sym_BANG_TILDE2] = ACTIONS(1618), + [anon_sym_STAR_STAR2] = ACTIONS(1618), + [anon_sym_PLUS_PLUS2] = ACTIONS(1618), + [anon_sym_SLASH2] = ACTIONS(1618), + [anon_sym_mod2] = ACTIONS(1618), + [anon_sym_SLASH_SLASH2] = ACTIONS(1618), + [anon_sym_PLUS2] = ACTIONS(1618), + [anon_sym_bit_DASHshl2] = ACTIONS(1618), + [anon_sym_bit_DASHshr2] = ACTIONS(1618), + [anon_sym_bit_DASHand2] = ACTIONS(1618), + [anon_sym_bit_DASHxor2] = ACTIONS(1618), + [anon_sym_bit_DASHor2] = ACTIONS(1618), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [aux_sym__immediate_decimal_token2] = ACTIONS(3607), + [sym_filesize_unit] = ACTIONS(1618), + [sym_duration_unit] = ACTIONS(1620), [anon_sym_POUND] = ACTIONS(3), }, [1183] = { - [sym_expr_parenthesized] = STATE(489), - [sym_val_range] = STATE(666), - [sym__val_range] = STATE(7473), - [sym__val_range_with_end] = STATE(7406), - [sym__value] = STATE(666), - [sym_val_nothing] = STATE(637), - [sym_val_bool] = STATE(528), - [sym_val_variable] = STATE(472), - [sym_val_number] = STATE(637), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(665), - [sym_val_duration] = STATE(637), - [sym_val_filesize] = STATE(637), - [sym_val_binary] = STATE(637), - [sym_val_string] = STATE(637), - [sym__raw_str] = STATE(658), - [sym__str_double_quotes] = STATE(658), - [sym_val_interpolated] = STATE(637), - [sym__inter_single_quotes] = STATE(610), - [sym__inter_double_quotes] = STATE(611), - [sym_val_list] = STATE(637), - [sym_val_record] = STATE(637), - [sym_val_table] = STATE(637), - [sym_val_closure] = STATE(637), - [sym__unquoted_in_record] = STATE(537), - [sym__unquoted_in_record_with_expr] = STATE(666), - [sym__unquoted_anonymous_prefix] = STATE(6997), [sym_comment] = STATE(1183), - [anon_sym_LBRACK] = ACTIONS(3694), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_DOLLAR] = ACTIONS(1463), - [anon_sym_LBRACE] = ACTIONS(3698), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3702), - [anon_sym_DOT_DOT_LT] = ACTIONS(3702), - [anon_sym_null] = ACTIONS(3704), - [anon_sym_true] = ACTIONS(3706), - [anon_sym_false] = ACTIONS(3706), - [aux_sym__val_number_decimal_token1] = ACTIONS(3708), - [aux_sym__val_number_decimal_token2] = ACTIONS(3710), - [aux_sym__val_number_decimal_token3] = ACTIONS(3712), - [aux_sym__val_number_decimal_token4] = ACTIONS(3714), - [aux_sym__val_number_token1] = ACTIONS(3716), - [aux_sym__val_number_token2] = ACTIONS(3716), - [aux_sym__val_number_token3] = ACTIONS(3716), - [aux_sym__val_number_token4] = ACTIONS(3718), - [aux_sym__val_number_token5] = ACTIONS(3718), - [aux_sym__val_number_token6] = ACTIONS(3718), - [anon_sym_0b] = ACTIONS(3720), - [anon_sym_0o] = ACTIONS(3722), - [anon_sym_0x] = ACTIONS(3722), - [sym_val_date] = ACTIONS(3724), - [anon_sym_DQUOTE] = ACTIONS(3726), - [sym__str_single_quotes] = ACTIONS(3728), - [sym__str_back_ticks] = ACTIONS(3728), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3730), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3732), - [anon_sym_err_GT] = ACTIONS(3618), - [anon_sym_out_GT] = ACTIONS(3618), - [anon_sym_e_GT] = ACTIONS(3618), - [anon_sym_o_GT] = ACTIONS(3618), - [anon_sym_err_PLUSout_GT] = ACTIONS(3618), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3618), - [anon_sym_o_PLUSe_GT] = ACTIONS(3618), - [anon_sym_e_PLUSo_GT] = ACTIONS(3618), - [anon_sym_err_GT_GT] = ACTIONS(3620), - [anon_sym_out_GT_GT] = ACTIONS(3620), - [anon_sym_e_GT_GT] = ACTIONS(3620), - [anon_sym_o_GT_GT] = ACTIONS(3620), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3620), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3620), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3620), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3620), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3734), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3736), + [anon_sym_STAR_STAR] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_SLASH] = ACTIONS(1512), + [anon_sym_mod] = ACTIONS(1514), + [anon_sym_SLASH_SLASH] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_bit_DASHshl] = ACTIONS(1514), + [anon_sym_bit_DASHshr] = ACTIONS(1514), + [anon_sym_EQ_TILDE] = ACTIONS(1514), + [anon_sym_BANG_TILDE] = ACTIONS(1514), + [anon_sym_bit_DASHand] = ACTIONS(1514), + [anon_sym_bit_DASHxor] = ACTIONS(1514), + [anon_sym_bit_DASHor] = ACTIONS(1514), + [anon_sym_and] = ACTIONS(1514), + [anon_sym_xor] = ACTIONS(1514), + [anon_sym_or] = ACTIONS(1514), + [anon_sym_in] = ACTIONS(1514), + [anon_sym_not_DASHin] = ACTIONS(1514), + [anon_sym_has] = ACTIONS(1514), + [anon_sym_not_DASHhas] = ACTIONS(1514), + [anon_sym_starts_DASHwith] = ACTIONS(1514), + [anon_sym_ends_DASHwith] = ACTIONS(1514), + [anon_sym_EQ_EQ] = ACTIONS(1514), + [anon_sym_BANG_EQ] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_LT_EQ] = ACTIONS(1514), + [anon_sym_GT] = ACTIONS(1512), + [anon_sym_GT_EQ] = ACTIONS(1514), + [aux_sym_cmd_identifier_token41] = ACTIONS(1512), + [sym__newline] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_err_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_GT_PIPE] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1512), + [anon_sym_GT2] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_in2] = ACTIONS(1512), + [anon_sym_STAR2] = ACTIONS(1512), + [anon_sym_and2] = ACTIONS(1512), + [anon_sym_xor2] = ACTIONS(1512), + [anon_sym_or2] = ACTIONS(1512), + [anon_sym_not_DASHin2] = ACTIONS(1512), + [anon_sym_has2] = ACTIONS(1512), + [anon_sym_not_DASHhas2] = ACTIONS(1512), + [anon_sym_starts_DASHwith2] = ACTIONS(1512), + [anon_sym_ends_DASHwith2] = ACTIONS(1512), + [anon_sym_EQ_EQ2] = ACTIONS(1512), + [anon_sym_BANG_EQ2] = ACTIONS(1512), + [anon_sym_LT2] = ACTIONS(1512), + [anon_sym_LT_EQ2] = ACTIONS(1512), + [anon_sym_GT_EQ2] = ACTIONS(1512), + [anon_sym_EQ_TILDE2] = ACTIONS(1512), + [anon_sym_BANG_TILDE2] = ACTIONS(1512), + [anon_sym_STAR_STAR2] = ACTIONS(1512), + [anon_sym_PLUS_PLUS2] = ACTIONS(1512), + [anon_sym_SLASH2] = ACTIONS(1512), + [anon_sym_mod2] = ACTIONS(1512), + [anon_sym_SLASH_SLASH2] = ACTIONS(1512), + [anon_sym_PLUS2] = ACTIONS(1512), + [anon_sym_bit_DASHshl2] = ACTIONS(1512), + [anon_sym_bit_DASHshr2] = ACTIONS(1512), + [anon_sym_bit_DASHand2] = ACTIONS(1512), + [anon_sym_bit_DASHxor2] = ACTIONS(1512), + [anon_sym_bit_DASHor2] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [sym_filesize_unit] = ACTIONS(1512), + [sym_duration_unit] = ACTIONS(1514), + [anon_sym_POUND] = ACTIONS(3), }, [1184] = { - [sym_expr_parenthesized] = STATE(6159), - [sym_val_range] = STATE(7463), - [sym__val_range] = STATE(7589), - [sym__val_range_with_end] = STATE(7407), - [sym__value] = STATE(7463), - [sym_val_nothing] = STATE(7049), - [sym_val_bool] = STATE(6191), - [sym_val_variable] = STATE(5708), - [sym_val_number] = STATE(7049), - [sym__val_number_decimal] = STATE(5218), - [sym__val_number] = STATE(7097), - [sym_val_duration] = STATE(7049), - [sym_val_filesize] = STATE(7049), - [sym_val_binary] = STATE(7049), - [sym_val_string] = STATE(7049), - [sym__raw_str] = STATE(5195), - [sym__str_double_quotes] = STATE(5195), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(7049), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(7049), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_record] = STATE(6222), - [sym__unquoted_in_record_with_expr] = STATE(7463), - [sym__unquoted_anonymous_prefix] = STATE(6941), [sym_comment] = STATE(1184), - [anon_sym_LBRACK] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_DOT_DOT] = ACTIONS(3738), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3740), - [anon_sym_DOT_DOT_LT] = ACTIONS(3740), - [anon_sym_null] = ACTIONS(3742), - [anon_sym_true] = ACTIONS(3744), - [anon_sym_false] = ACTIONS(3744), - [aux_sym__val_number_decimal_token1] = ACTIONS(3746), - [aux_sym__val_number_decimal_token2] = ACTIONS(3748), - [aux_sym__val_number_decimal_token3] = ACTIONS(3750), - [aux_sym__val_number_decimal_token4] = ACTIONS(3752), - [aux_sym__val_number_token1] = ACTIONS(3122), - [aux_sym__val_number_token2] = ACTIONS(3122), - [aux_sym__val_number_token3] = ACTIONS(3122), - [aux_sym__val_number_token4] = ACTIONS(3754), - [aux_sym__val_number_token5] = ACTIONS(3754), - [aux_sym__val_number_token6] = ACTIONS(3754), - [anon_sym_0b] = ACTIONS(3126), - [anon_sym_0o] = ACTIONS(3128), - [anon_sym_0x] = ACTIONS(3128), - [sym_val_date] = ACTIONS(3756), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym__str_single_quotes] = ACTIONS(3134), - [sym__str_back_ticks] = ACTIONS(3134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2596), - [anon_sym_err_GT] = ACTIONS(3618), - [anon_sym_out_GT] = ACTIONS(3618), - [anon_sym_e_GT] = ACTIONS(3618), - [anon_sym_o_GT] = ACTIONS(3618), - [anon_sym_err_PLUSout_GT] = ACTIONS(3618), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3618), - [anon_sym_o_PLUSe_GT] = ACTIONS(3618), - [anon_sym_e_PLUSo_GT] = ACTIONS(3618), - [anon_sym_err_GT_GT] = ACTIONS(3620), - [anon_sym_out_GT_GT] = ACTIONS(3620), - [anon_sym_e_GT_GT] = ACTIONS(3620), - [anon_sym_o_GT_GT] = ACTIONS(3620), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3620), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3620), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3620), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3620), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3758), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3138), + [anon_sym_STAR_STAR] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_STAR] = ACTIONS(1504), + [anon_sym_SLASH] = ACTIONS(1504), + [anon_sym_mod] = ACTIONS(1506), + [anon_sym_SLASH_SLASH] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_bit_DASHshl] = ACTIONS(1506), + [anon_sym_bit_DASHshr] = ACTIONS(1506), + [anon_sym_EQ_TILDE] = ACTIONS(1506), + [anon_sym_BANG_TILDE] = ACTIONS(1506), + [anon_sym_bit_DASHand] = ACTIONS(1506), + [anon_sym_bit_DASHxor] = ACTIONS(1506), + [anon_sym_bit_DASHor] = ACTIONS(1506), + [anon_sym_and] = ACTIONS(1506), + [anon_sym_xor] = ACTIONS(1506), + [anon_sym_or] = ACTIONS(1506), + [anon_sym_in] = ACTIONS(1506), + [anon_sym_not_DASHin] = ACTIONS(1506), + [anon_sym_has] = ACTIONS(1506), + [anon_sym_not_DASHhas] = 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_LT] = ACTIONS(1504), + [anon_sym_LT_EQ] = ACTIONS(1506), + [anon_sym_GT] = ACTIONS(1504), + [anon_sym_GT_EQ] = ACTIONS(1506), + [aux_sym_cmd_identifier_token41] = ACTIONS(1504), + [sym__newline] = ACTIONS(1504), + [anon_sym_SEMI] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_err_GT_PIPE] = ACTIONS(1504), + [anon_sym_out_GT_PIPE] = ACTIONS(1504), + [anon_sym_e_GT_PIPE] = ACTIONS(1504), + [anon_sym_o_GT_PIPE] = ACTIONS(1504), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1504), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1504), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1504), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1504), + [anon_sym_GT2] = ACTIONS(1504), + [anon_sym_DASH2] = ACTIONS(1504), + [anon_sym_in2] = ACTIONS(1504), + [anon_sym_STAR2] = ACTIONS(1504), + [anon_sym_and2] = ACTIONS(1504), + [anon_sym_xor2] = ACTIONS(1504), + [anon_sym_or2] = ACTIONS(1504), + [anon_sym_not_DASHin2] = ACTIONS(1504), + [anon_sym_has2] = ACTIONS(1504), + [anon_sym_not_DASHhas2] = ACTIONS(1504), + [anon_sym_starts_DASHwith2] = ACTIONS(1504), + [anon_sym_ends_DASHwith2] = ACTIONS(1504), + [anon_sym_EQ_EQ2] = ACTIONS(1504), + [anon_sym_BANG_EQ2] = ACTIONS(1504), + [anon_sym_LT2] = ACTIONS(1504), + [anon_sym_LT_EQ2] = ACTIONS(1504), + [anon_sym_GT_EQ2] = ACTIONS(1504), + [anon_sym_EQ_TILDE2] = ACTIONS(1504), + [anon_sym_BANG_TILDE2] = ACTIONS(1504), + [anon_sym_STAR_STAR2] = ACTIONS(1504), + [anon_sym_PLUS_PLUS2] = ACTIONS(1504), + [anon_sym_SLASH2] = ACTIONS(1504), + [anon_sym_mod2] = ACTIONS(1504), + [anon_sym_SLASH_SLASH2] = ACTIONS(1504), + [anon_sym_PLUS2] = ACTIONS(1504), + [anon_sym_bit_DASHshl2] = ACTIONS(1504), + [anon_sym_bit_DASHshr2] = ACTIONS(1504), + [anon_sym_bit_DASHand2] = ACTIONS(1504), + [anon_sym_bit_DASHxor2] = ACTIONS(1504), + [anon_sym_bit_DASHor2] = ACTIONS(1504), + [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_POUND] = ACTIONS(3), }, [1185] = { [sym_comment] = STATE(1185), - [anon_sym_STAR_STAR] = ACTIONS(1682), - [anon_sym_PLUS_PLUS] = ACTIONS(1682), - [anon_sym_STAR] = ACTIONS(1680), - [anon_sym_SLASH] = ACTIONS(1680), - [anon_sym_mod] = ACTIONS(1682), - [anon_sym_SLASH_SLASH] = ACTIONS(1682), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_DASH] = ACTIONS(1682), - [anon_sym_bit_DASHshl] = ACTIONS(1682), - [anon_sym_bit_DASHshr] = ACTIONS(1682), - [anon_sym_EQ_TILDE] = ACTIONS(1682), - [anon_sym_BANG_TILDE] = ACTIONS(1682), - [anon_sym_bit_DASHand] = ACTIONS(1682), - [anon_sym_bit_DASHxor] = ACTIONS(1682), - [anon_sym_bit_DASHor] = ACTIONS(1682), - [anon_sym_and] = ACTIONS(1682), - [anon_sym_xor] = ACTIONS(1682), - [anon_sym_or] = ACTIONS(1682), - [anon_sym_in] = ACTIONS(1682), - [anon_sym_not_DASHin] = ACTIONS(1682), - [anon_sym_starts_DASHwith] = ACTIONS(1682), - [anon_sym_ends_DASHwith] = ACTIONS(1682), - [anon_sym_EQ_EQ] = ACTIONS(1682), - [anon_sym_BANG_EQ] = ACTIONS(1682), - [anon_sym_LT] = ACTIONS(1680), - [anon_sym_LT_EQ] = ACTIONS(1682), - [anon_sym_GT] = ACTIONS(1680), - [anon_sym_GT_EQ] = ACTIONS(1682), - [aux_sym_cmd_identifier_token41] = ACTIONS(1680), - [sym__newline] = ACTIONS(1680), - [anon_sym_SEMI] = ACTIONS(1680), - [anon_sym_PIPE] = ACTIONS(1680), - [anon_sym_err_GT_PIPE] = ACTIONS(1680), - [anon_sym_out_GT_PIPE] = ACTIONS(1680), - [anon_sym_e_GT_PIPE] = ACTIONS(1680), - [anon_sym_o_GT_PIPE] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1680), - [anon_sym_GT2] = ACTIONS(1680), - [anon_sym_DASH2] = ACTIONS(1680), - [anon_sym_in2] = ACTIONS(1680), - [anon_sym_RBRACE] = ACTIONS(1680), - [anon_sym_STAR2] = ACTIONS(1680), - [anon_sym_and2] = ACTIONS(1680), - [anon_sym_xor2] = ACTIONS(1680), - [anon_sym_or2] = ACTIONS(1680), - [anon_sym_not_DASHin2] = ACTIONS(1680), - [anon_sym_starts_DASHwith2] = ACTIONS(1680), - [anon_sym_ends_DASHwith2] = ACTIONS(1680), - [anon_sym_EQ_EQ2] = ACTIONS(1680), - [anon_sym_BANG_EQ2] = ACTIONS(1680), - [anon_sym_LT2] = ACTIONS(1680), - [anon_sym_LT_EQ2] = ACTIONS(1680), - [anon_sym_GT_EQ2] = ACTIONS(1680), - [anon_sym_EQ_TILDE2] = ACTIONS(1680), - [anon_sym_BANG_TILDE2] = ACTIONS(1680), - [anon_sym_STAR_STAR2] = ACTIONS(1680), - [anon_sym_PLUS_PLUS2] = ACTIONS(1680), - [anon_sym_SLASH2] = ACTIONS(1680), - [anon_sym_mod2] = ACTIONS(1680), - [anon_sym_SLASH_SLASH2] = ACTIONS(1680), - [anon_sym_PLUS2] = ACTIONS(1680), - [anon_sym_bit_DASHshl2] = ACTIONS(1680), - [anon_sym_bit_DASHshr2] = ACTIONS(1680), - [anon_sym_bit_DASHand2] = ACTIONS(1680), - [anon_sym_bit_DASHxor2] = ACTIONS(1680), - [anon_sym_bit_DASHor2] = ACTIONS(1680), - [anon_sym_DOT_DOT2] = ACTIONS(1680), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1682), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1682), - [sym_filesize_unit] = ACTIONS(1680), - [sym_duration_unit] = ACTIONS(1682), + [anon_sym_STAR_STAR] = ACTIONS(1620), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1618), + [anon_sym_SLASH] = ACTIONS(1618), + [anon_sym_mod] = ACTIONS(1620), + [anon_sym_SLASH_SLASH] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1618), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_bit_DASHshl] = ACTIONS(1620), + [anon_sym_bit_DASHshr] = ACTIONS(1620), + [anon_sym_EQ_TILDE] = ACTIONS(1620), + [anon_sym_BANG_TILDE] = ACTIONS(1620), + [anon_sym_bit_DASHand] = ACTIONS(1620), + [anon_sym_bit_DASHxor] = ACTIONS(1620), + [anon_sym_bit_DASHor] = ACTIONS(1620), + [anon_sym_and] = ACTIONS(1620), + [anon_sym_xor] = ACTIONS(1620), + [anon_sym_or] = ACTIONS(1620), + [anon_sym_in] = ACTIONS(1620), + [anon_sym_not_DASHin] = ACTIONS(1620), + [anon_sym_has] = ACTIONS(1620), + [anon_sym_not_DASHhas] = ACTIONS(1620), + [anon_sym_starts_DASHwith] = ACTIONS(1620), + [anon_sym_ends_DASHwith] = ACTIONS(1620), + [anon_sym_EQ_EQ] = ACTIONS(1620), + [anon_sym_BANG_EQ] = ACTIONS(1620), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_LT_EQ] = ACTIONS(1620), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_GT_EQ] = ACTIONS(1620), + [aux_sym_cmd_identifier_token41] = ACTIONS(1618), + [sym__newline] = ACTIONS(1618), + [anon_sym_SEMI] = ACTIONS(1618), + [anon_sym_PIPE] = ACTIONS(1618), + [anon_sym_err_GT_PIPE] = ACTIONS(1618), + [anon_sym_out_GT_PIPE] = ACTIONS(1618), + [anon_sym_e_GT_PIPE] = ACTIONS(1618), + [anon_sym_o_GT_PIPE] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1618), + [anon_sym_GT2] = ACTIONS(1618), + [anon_sym_DASH2] = ACTIONS(1618), + [anon_sym_in2] = ACTIONS(1618), + [anon_sym_STAR2] = ACTIONS(1618), + [anon_sym_and2] = ACTIONS(1618), + [anon_sym_xor2] = ACTIONS(1618), + [anon_sym_or2] = ACTIONS(1618), + [anon_sym_not_DASHin2] = ACTIONS(1618), + [anon_sym_has2] = ACTIONS(1618), + [anon_sym_not_DASHhas2] = ACTIONS(1618), + [anon_sym_starts_DASHwith2] = ACTIONS(1618), + [anon_sym_ends_DASHwith2] = ACTIONS(1618), + [anon_sym_EQ_EQ2] = ACTIONS(1618), + [anon_sym_BANG_EQ2] = ACTIONS(1618), + [anon_sym_LT2] = ACTIONS(1618), + [anon_sym_LT_EQ2] = ACTIONS(1618), + [anon_sym_GT_EQ2] = ACTIONS(1618), + [anon_sym_EQ_TILDE2] = ACTIONS(1618), + [anon_sym_BANG_TILDE2] = ACTIONS(1618), + [anon_sym_STAR_STAR2] = ACTIONS(1618), + [anon_sym_PLUS_PLUS2] = ACTIONS(1618), + [anon_sym_SLASH2] = ACTIONS(1618), + [anon_sym_mod2] = ACTIONS(1618), + [anon_sym_SLASH_SLASH2] = ACTIONS(1618), + [anon_sym_PLUS2] = ACTIONS(1618), + [anon_sym_bit_DASHshl2] = ACTIONS(1618), + [anon_sym_bit_DASHshr2] = ACTIONS(1618), + [anon_sym_bit_DASHand2] = ACTIONS(1618), + [anon_sym_bit_DASHxor2] = ACTIONS(1618), + [anon_sym_bit_DASHor2] = ACTIONS(1618), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [sym_filesize_unit] = ACTIONS(1618), + [sym_duration_unit] = ACTIONS(1620), [anon_sym_POUND] = ACTIONS(3), }, [1186] = { [sym_comment] = STATE(1186), - [ts_builtin_sym_end] = ACTIONS(1552), - [anon_sym_STAR_STAR] = ACTIONS(1552), - [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1550), - [anon_sym_SLASH] = ACTIONS(1550), - [anon_sym_mod] = ACTIONS(1552), - [anon_sym_SLASH_SLASH] = ACTIONS(1552), - [anon_sym_PLUS] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1552), - [anon_sym_bit_DASHshl] = ACTIONS(1552), - [anon_sym_bit_DASHshr] = ACTIONS(1552), - [anon_sym_EQ_TILDE] = ACTIONS(1552), - [anon_sym_BANG_TILDE] = ACTIONS(1552), - [anon_sym_bit_DASHand] = ACTIONS(1552), - [anon_sym_bit_DASHxor] = ACTIONS(1552), - [anon_sym_bit_DASHor] = ACTIONS(1552), - [anon_sym_and] = ACTIONS(1552), - [anon_sym_xor] = ACTIONS(1552), - [anon_sym_or] = ACTIONS(1552), - [anon_sym_in] = ACTIONS(1552), - [anon_sym_not_DASHin] = ACTIONS(1552), - [anon_sym_starts_DASHwith] = ACTIONS(1552), - [anon_sym_ends_DASHwith] = ACTIONS(1552), - [anon_sym_EQ_EQ] = ACTIONS(1552), - [anon_sym_BANG_EQ] = ACTIONS(1552), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_LT_EQ] = ACTIONS(1552), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_GT_EQ] = ACTIONS(1552), - [aux_sym_cmd_identifier_token41] = ACTIONS(1550), - [sym__newline] = ACTIONS(1550), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_err_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_GT_PIPE] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1550), - [anon_sym_GT2] = ACTIONS(1550), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_in2] = ACTIONS(1550), - [anon_sym_STAR2] = ACTIONS(1550), - [anon_sym_and2] = ACTIONS(1550), - [anon_sym_xor2] = ACTIONS(1550), - [anon_sym_or2] = ACTIONS(1550), - [anon_sym_not_DASHin2] = ACTIONS(1550), - [anon_sym_starts_DASHwith2] = ACTIONS(1550), - [anon_sym_ends_DASHwith2] = ACTIONS(1550), - [anon_sym_EQ_EQ2] = ACTIONS(1550), - [anon_sym_BANG_EQ2] = ACTIONS(1550), - [anon_sym_LT2] = ACTIONS(1550), - [anon_sym_LT_EQ2] = ACTIONS(1550), - [anon_sym_GT_EQ2] = ACTIONS(1550), - [anon_sym_EQ_TILDE2] = ACTIONS(1550), - [anon_sym_BANG_TILDE2] = ACTIONS(1550), - [anon_sym_STAR_STAR2] = ACTIONS(1550), - [anon_sym_PLUS_PLUS2] = ACTIONS(1550), - [anon_sym_SLASH2] = ACTIONS(1550), - [anon_sym_mod2] = ACTIONS(1550), - [anon_sym_SLASH_SLASH2] = ACTIONS(1550), - [anon_sym_PLUS2] = ACTIONS(1550), - [anon_sym_bit_DASHshl2] = ACTIONS(1550), - [anon_sym_bit_DASHshr2] = ACTIONS(1550), - [anon_sym_bit_DASHand2] = ACTIONS(1550), - [anon_sym_bit_DASHxor2] = ACTIONS(1550), - [anon_sym_bit_DASHor2] = ACTIONS(1550), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [sym_filesize_unit] = ACTIONS(1550), - [sym_duration_unit] = ACTIONS(1552), + [anon_sym_STAR_STAR] = ACTIONS(1691), + [anon_sym_PLUS_PLUS] = ACTIONS(1691), + [anon_sym_STAR] = ACTIONS(1689), + [anon_sym_SLASH] = ACTIONS(1689), + [anon_sym_mod] = ACTIONS(1691), + [anon_sym_SLASH_SLASH] = ACTIONS(1691), + [anon_sym_PLUS] = ACTIONS(1689), + [anon_sym_DASH] = ACTIONS(1691), + [anon_sym_bit_DASHshl] = ACTIONS(1691), + [anon_sym_bit_DASHshr] = ACTIONS(1691), + [anon_sym_EQ_TILDE] = ACTIONS(1691), + [anon_sym_BANG_TILDE] = ACTIONS(1691), + [anon_sym_bit_DASHand] = ACTIONS(1691), + [anon_sym_bit_DASHxor] = ACTIONS(1691), + [anon_sym_bit_DASHor] = ACTIONS(1691), + [anon_sym_and] = ACTIONS(1691), + [anon_sym_xor] = ACTIONS(1691), + [anon_sym_or] = ACTIONS(1691), + [anon_sym_in] = ACTIONS(1691), + [anon_sym_not_DASHin] = ACTIONS(1691), + [anon_sym_has] = ACTIONS(1691), + [anon_sym_not_DASHhas] = ACTIONS(1691), + [anon_sym_starts_DASHwith] = ACTIONS(1691), + [anon_sym_ends_DASHwith] = ACTIONS(1691), + [anon_sym_EQ_EQ] = ACTIONS(1691), + [anon_sym_BANG_EQ] = ACTIONS(1691), + [anon_sym_LT] = ACTIONS(1689), + [anon_sym_LT_EQ] = ACTIONS(1691), + [anon_sym_GT] = ACTIONS(1689), + [anon_sym_GT_EQ] = ACTIONS(1691), + [aux_sym_cmd_identifier_token41] = ACTIONS(1689), + [sym__newline] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1689), + [anon_sym_PIPE] = ACTIONS(1689), + [anon_sym_err_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_GT_PIPE] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1689), + [anon_sym_GT2] = ACTIONS(1689), + [anon_sym_DASH2] = ACTIONS(1689), + [anon_sym_in2] = ACTIONS(1689), + [anon_sym_STAR2] = ACTIONS(1689), + [anon_sym_and2] = ACTIONS(1689), + [anon_sym_xor2] = ACTIONS(1689), + [anon_sym_or2] = ACTIONS(1689), + [anon_sym_not_DASHin2] = ACTIONS(1689), + [anon_sym_has2] = ACTIONS(1689), + [anon_sym_not_DASHhas2] = ACTIONS(1689), + [anon_sym_starts_DASHwith2] = ACTIONS(1689), + [anon_sym_ends_DASHwith2] = ACTIONS(1689), + [anon_sym_EQ_EQ2] = ACTIONS(1689), + [anon_sym_BANG_EQ2] = ACTIONS(1689), + [anon_sym_LT2] = ACTIONS(1689), + [anon_sym_LT_EQ2] = ACTIONS(1689), + [anon_sym_GT_EQ2] = ACTIONS(1689), + [anon_sym_EQ_TILDE2] = ACTIONS(1689), + [anon_sym_BANG_TILDE2] = ACTIONS(1689), + [anon_sym_STAR_STAR2] = ACTIONS(1689), + [anon_sym_PLUS_PLUS2] = ACTIONS(1689), + [anon_sym_SLASH2] = ACTIONS(1689), + [anon_sym_mod2] = ACTIONS(1689), + [anon_sym_SLASH_SLASH2] = ACTIONS(1689), + [anon_sym_PLUS2] = ACTIONS(1689), + [anon_sym_bit_DASHshl2] = ACTIONS(1689), + [anon_sym_bit_DASHshr2] = ACTIONS(1689), + [anon_sym_bit_DASHand2] = ACTIONS(1689), + [anon_sym_bit_DASHxor2] = ACTIONS(1689), + [anon_sym_bit_DASHor2] = ACTIONS(1689), + [anon_sym_DOT_DOT2] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1691), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1691), + [sym_filesize_unit] = ACTIONS(1689), + [sym_duration_unit] = ACTIONS(1691), [anon_sym_POUND] = ACTIONS(3), }, [1187] = { [sym_comment] = STATE(1187), - [ts_builtin_sym_end] = ACTIONS(1544), - [anon_sym_STAR_STAR] = ACTIONS(1544), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_STAR] = ACTIONS(1542), - [anon_sym_SLASH] = ACTIONS(1542), - [anon_sym_mod] = ACTIONS(1544), - [anon_sym_SLASH_SLASH] = ACTIONS(1544), - [anon_sym_PLUS] = ACTIONS(1542), - [anon_sym_DASH] = ACTIONS(1544), - [anon_sym_bit_DASHshl] = ACTIONS(1544), - [anon_sym_bit_DASHshr] = ACTIONS(1544), - [anon_sym_EQ_TILDE] = ACTIONS(1544), - [anon_sym_BANG_TILDE] = ACTIONS(1544), - [anon_sym_bit_DASHand] = ACTIONS(1544), - [anon_sym_bit_DASHxor] = ACTIONS(1544), - [anon_sym_bit_DASHor] = ACTIONS(1544), - [anon_sym_and] = ACTIONS(1544), - [anon_sym_xor] = ACTIONS(1544), - [anon_sym_or] = ACTIONS(1544), - [anon_sym_in] = ACTIONS(1544), - [anon_sym_not_DASHin] = ACTIONS(1544), - [anon_sym_starts_DASHwith] = ACTIONS(1544), - [anon_sym_ends_DASHwith] = ACTIONS(1544), - [anon_sym_EQ_EQ] = ACTIONS(1544), - [anon_sym_BANG_EQ] = ACTIONS(1544), - [anon_sym_LT] = ACTIONS(1542), - [anon_sym_LT_EQ] = ACTIONS(1544), - [anon_sym_GT] = ACTIONS(1542), - [anon_sym_GT_EQ] = ACTIONS(1544), - [aux_sym_cmd_identifier_token41] = ACTIONS(1542), - [sym__newline] = ACTIONS(1542), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_err_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_GT_PIPE] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), - [anon_sym_GT2] = ACTIONS(1542), - [anon_sym_DASH2] = ACTIONS(1542), - [anon_sym_in2] = ACTIONS(1542), - [anon_sym_STAR2] = ACTIONS(1542), - [anon_sym_and2] = ACTIONS(1542), - [anon_sym_xor2] = ACTIONS(1542), - [anon_sym_or2] = ACTIONS(1542), - [anon_sym_not_DASHin2] = ACTIONS(1542), - [anon_sym_starts_DASHwith2] = ACTIONS(1542), - [anon_sym_ends_DASHwith2] = ACTIONS(1542), - [anon_sym_EQ_EQ2] = ACTIONS(1542), - [anon_sym_BANG_EQ2] = ACTIONS(1542), - [anon_sym_LT2] = ACTIONS(1542), - [anon_sym_LT_EQ2] = ACTIONS(1542), - [anon_sym_GT_EQ2] = ACTIONS(1542), - [anon_sym_EQ_TILDE2] = ACTIONS(1542), - [anon_sym_BANG_TILDE2] = ACTIONS(1542), - [anon_sym_STAR_STAR2] = ACTIONS(1542), - [anon_sym_PLUS_PLUS2] = ACTIONS(1542), - [anon_sym_SLASH2] = ACTIONS(1542), - [anon_sym_mod2] = ACTIONS(1542), - [anon_sym_SLASH_SLASH2] = ACTIONS(1542), - [anon_sym_PLUS2] = ACTIONS(1542), - [anon_sym_bit_DASHshl2] = ACTIONS(1542), - [anon_sym_bit_DASHshr2] = ACTIONS(1542), - [anon_sym_bit_DASHand2] = ACTIONS(1542), - [anon_sym_bit_DASHxor2] = ACTIONS(1542), - [anon_sym_bit_DASHor2] = ACTIONS(1542), - [anon_sym_DOT_DOT2] = ACTIONS(1542), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1544), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1544), - [sym_filesize_unit] = ACTIONS(1542), - [sym_duration_unit] = ACTIONS(1544), + [aux_sym_cmd_identifier_token1] = ACTIONS(2154), + [aux_sym_cmd_identifier_token2] = ACTIONS(2154), + [aux_sym_cmd_identifier_token3] = ACTIONS(2154), + [aux_sym_cmd_identifier_token4] = ACTIONS(2154), + [aux_sym_cmd_identifier_token5] = ACTIONS(2154), + [aux_sym_cmd_identifier_token6] = ACTIONS(2154), + [aux_sym_cmd_identifier_token7] = ACTIONS(2154), + [aux_sym_cmd_identifier_token8] = ACTIONS(2154), + [aux_sym_cmd_identifier_token9] = ACTIONS(2154), + [aux_sym_cmd_identifier_token10] = ACTIONS(2154), + [aux_sym_cmd_identifier_token11] = ACTIONS(2154), + [aux_sym_cmd_identifier_token12] = ACTIONS(2154), + [aux_sym_cmd_identifier_token13] = ACTIONS(2154), + [aux_sym_cmd_identifier_token14] = ACTIONS(2154), + [aux_sym_cmd_identifier_token15] = ACTIONS(2154), + [aux_sym_cmd_identifier_token16] = ACTIONS(2154), + [aux_sym_cmd_identifier_token17] = ACTIONS(2154), + [aux_sym_cmd_identifier_token18] = ACTIONS(2154), + [aux_sym_cmd_identifier_token19] = ACTIONS(2154), + [aux_sym_cmd_identifier_token20] = ACTIONS(2154), + [aux_sym_cmd_identifier_token21] = ACTIONS(2154), + [aux_sym_cmd_identifier_token22] = ACTIONS(2154), + [aux_sym_cmd_identifier_token23] = ACTIONS(2154), + [aux_sym_cmd_identifier_token24] = ACTIONS(2154), + [aux_sym_cmd_identifier_token25] = ACTIONS(2154), + [aux_sym_cmd_identifier_token26] = ACTIONS(2154), + [aux_sym_cmd_identifier_token27] = ACTIONS(2154), + [aux_sym_cmd_identifier_token28] = ACTIONS(2154), + [aux_sym_cmd_identifier_token29] = ACTIONS(2154), + [aux_sym_cmd_identifier_token30] = ACTIONS(2154), + [aux_sym_cmd_identifier_token31] = ACTIONS(2154), + [aux_sym_cmd_identifier_token32] = ACTIONS(2154), + [aux_sym_cmd_identifier_token33] = ACTIONS(2154), + [aux_sym_cmd_identifier_token34] = ACTIONS(2154), + [aux_sym_cmd_identifier_token35] = ACTIONS(2154), + [aux_sym_cmd_identifier_token36] = ACTIONS(2154), + [aux_sym_cmd_identifier_token37] = ACTIONS(2154), + [aux_sym_cmd_identifier_token38] = ACTIONS(2154), + [aux_sym_cmd_identifier_token39] = ACTIONS(2154), + [aux_sym_cmd_identifier_token40] = ACTIONS(2154), + [sym__newline] = ACTIONS(2154), + [sym__space] = ACTIONS(3609), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_LPAREN] = ACTIONS(2154), + [anon_sym_DOLLAR] = ACTIONS(2154), + [anon_sym_DASH2] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_DOT_DOT] = ACTIONS(2154), + [aux_sym_expr_unary_token1] = ACTIONS(2154), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2154), + [anon_sym_DOT_DOT_LT] = ACTIONS(2154), + [anon_sym_null] = ACTIONS(2154), + [anon_sym_true] = ACTIONS(2154), + [anon_sym_false] = ACTIONS(2154), + [aux_sym__val_number_decimal_token1] = ACTIONS(2154), + [aux_sym__val_number_decimal_token2] = ACTIONS(2154), + [aux_sym__val_number_decimal_token3] = ACTIONS(2154), + [aux_sym__val_number_decimal_token4] = ACTIONS(2154), + [aux_sym__val_number_token1] = ACTIONS(2154), + [aux_sym__val_number_token2] = ACTIONS(2154), + [aux_sym__val_number_token3] = ACTIONS(2154), + [aux_sym__val_number_token4] = ACTIONS(2154), + [aux_sym__val_number_token5] = ACTIONS(2154), + [aux_sym__val_number_token6] = ACTIONS(2154), + [anon_sym_0b] = ACTIONS(2154), + [anon_sym_0o] = ACTIONS(2154), + [anon_sym_0x] = ACTIONS(2154), + [sym_val_date] = ACTIONS(2154), + [anon_sym_DQUOTE] = ACTIONS(2154), + [sym__str_single_quotes] = ACTIONS(2154), + [sym__str_back_ticks] = ACTIONS(2154), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2154), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2154), + [aux_sym_env_var_token1] = ACTIONS(2154), + [anon_sym_CARET] = ACTIONS(2154), + [aux_sym_command_token1] = ACTIONS(2154), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(3609), }, [1188] = { + [sym_env_var] = STATE(6928), [sym_comment] = STATE(1188), - [anon_sym_STAR_STAR] = ACTIONS(1745), - [anon_sym_PLUS_PLUS] = ACTIONS(1745), - [anon_sym_STAR] = ACTIONS(1743), - [anon_sym_SLASH] = ACTIONS(1743), - [anon_sym_mod] = ACTIONS(1745), - [anon_sym_SLASH_SLASH] = ACTIONS(1745), - [anon_sym_PLUS] = ACTIONS(1743), - [anon_sym_DASH] = ACTIONS(1745), - [anon_sym_bit_DASHshl] = ACTIONS(1745), - [anon_sym_bit_DASHshr] = ACTIONS(1745), - [anon_sym_EQ_TILDE] = ACTIONS(1745), - [anon_sym_BANG_TILDE] = ACTIONS(1745), - [anon_sym_bit_DASHand] = ACTIONS(1745), - [anon_sym_bit_DASHxor] = ACTIONS(1745), - [anon_sym_bit_DASHor] = ACTIONS(1745), - [anon_sym_and] = ACTIONS(1745), - [anon_sym_xor] = ACTIONS(1745), - [anon_sym_or] = ACTIONS(1745), - [anon_sym_in] = ACTIONS(1745), - [anon_sym_not_DASHin] = ACTIONS(1745), - [anon_sym_starts_DASHwith] = ACTIONS(1745), - [anon_sym_ends_DASHwith] = ACTIONS(1745), - [anon_sym_EQ_EQ] = ACTIONS(1745), - [anon_sym_BANG_EQ] = ACTIONS(1745), - [anon_sym_LT] = ACTIONS(1743), - [anon_sym_LT_EQ] = ACTIONS(1745), - [anon_sym_GT] = ACTIONS(1743), - [anon_sym_GT_EQ] = ACTIONS(1745), - [aux_sym_cmd_identifier_token41] = ACTIONS(1743), - [sym__newline] = ACTIONS(1743), - [anon_sym_SEMI] = ACTIONS(1743), - [anon_sym_PIPE] = ACTIONS(1743), - [anon_sym_err_GT_PIPE] = ACTIONS(1743), - [anon_sym_out_GT_PIPE] = ACTIONS(1743), - [anon_sym_e_GT_PIPE] = ACTIONS(1743), - [anon_sym_o_GT_PIPE] = ACTIONS(1743), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1743), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1743), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1743), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1743), - [anon_sym_GT2] = ACTIONS(1743), - [anon_sym_DASH2] = ACTIONS(1743), - [anon_sym_in2] = ACTIONS(1743), - [anon_sym_RBRACE] = ACTIONS(1743), - [anon_sym_STAR2] = ACTIONS(1743), - [anon_sym_and2] = ACTIONS(1743), - [anon_sym_xor2] = ACTIONS(1743), - [anon_sym_or2] = ACTIONS(1743), - [anon_sym_not_DASHin2] = ACTIONS(1743), - [anon_sym_starts_DASHwith2] = ACTIONS(1743), - [anon_sym_ends_DASHwith2] = ACTIONS(1743), - [anon_sym_EQ_EQ2] = ACTIONS(1743), - [anon_sym_BANG_EQ2] = ACTIONS(1743), - [anon_sym_LT2] = ACTIONS(1743), - [anon_sym_LT_EQ2] = ACTIONS(1743), - [anon_sym_GT_EQ2] = ACTIONS(1743), - [anon_sym_EQ_TILDE2] = ACTIONS(1743), - [anon_sym_BANG_TILDE2] = ACTIONS(1743), - [anon_sym_STAR_STAR2] = ACTIONS(1743), - [anon_sym_PLUS_PLUS2] = ACTIONS(1743), - [anon_sym_SLASH2] = ACTIONS(1743), - [anon_sym_mod2] = ACTIONS(1743), - [anon_sym_SLASH_SLASH2] = ACTIONS(1743), - [anon_sym_PLUS2] = ACTIONS(1743), - [anon_sym_bit_DASHshl2] = ACTIONS(1743), - [anon_sym_bit_DASHshr2] = ACTIONS(1743), - [anon_sym_bit_DASHand2] = ACTIONS(1743), - [anon_sym_bit_DASHxor2] = ACTIONS(1743), - [anon_sym_bit_DASHor2] = ACTIONS(1743), - [anon_sym_DOT_DOT2] = ACTIONS(1743), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1745), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1745), - [sym_filesize_unit] = ACTIONS(1743), - [sym_duration_unit] = ACTIONS(1745), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1188), + [aux_sym_cmd_identifier_token1] = ACTIONS(3560), + [aux_sym_cmd_identifier_token2] = ACTIONS(3566), + [aux_sym_cmd_identifier_token3] = ACTIONS(3566), + [aux_sym_cmd_identifier_token4] = ACTIONS(3566), + [aux_sym_cmd_identifier_token5] = ACTIONS(3566), + [aux_sym_cmd_identifier_token6] = ACTIONS(3566), + [aux_sym_cmd_identifier_token7] = ACTIONS(3566), + [aux_sym_cmd_identifier_token8] = ACTIONS(3566), + [aux_sym_cmd_identifier_token9] = ACTIONS(3560), + [aux_sym_cmd_identifier_token10] = ACTIONS(3566), + [aux_sym_cmd_identifier_token11] = ACTIONS(3566), + [aux_sym_cmd_identifier_token12] = ACTIONS(3566), + [aux_sym_cmd_identifier_token13] = ACTIONS(3560), + [aux_sym_cmd_identifier_token14] = ACTIONS(3566), + [aux_sym_cmd_identifier_token15] = ACTIONS(3560), + [aux_sym_cmd_identifier_token16] = ACTIONS(3566), + [aux_sym_cmd_identifier_token17] = ACTIONS(3566), + [aux_sym_cmd_identifier_token18] = ACTIONS(3560), + [aux_sym_cmd_identifier_token19] = ACTIONS(3566), + [aux_sym_cmd_identifier_token20] = ACTIONS(3566), + [aux_sym_cmd_identifier_token21] = ACTIONS(3566), + [aux_sym_cmd_identifier_token22] = ACTIONS(3566), + [aux_sym_cmd_identifier_token23] = ACTIONS(3566), + [aux_sym_cmd_identifier_token24] = ACTIONS(3566), + [aux_sym_cmd_identifier_token25] = ACTIONS(3566), + [aux_sym_cmd_identifier_token26] = ACTIONS(3566), + [aux_sym_cmd_identifier_token27] = ACTIONS(3566), + [aux_sym_cmd_identifier_token28] = ACTIONS(3566), + [aux_sym_cmd_identifier_token29] = ACTIONS(3566), + [aux_sym_cmd_identifier_token30] = ACTIONS(3566), + [aux_sym_cmd_identifier_token31] = ACTIONS(3566), + [aux_sym_cmd_identifier_token32] = ACTIONS(3560), + [aux_sym_cmd_identifier_token33] = ACTIONS(3566), + [aux_sym_cmd_identifier_token34] = ACTIONS(3560), + [aux_sym_cmd_identifier_token35] = ACTIONS(3566), + [aux_sym_cmd_identifier_token36] = ACTIONS(3566), + [aux_sym_cmd_identifier_token37] = ACTIONS(3566), + [aux_sym_cmd_identifier_token38] = ACTIONS(3560), + [aux_sym_cmd_identifier_token39] = ACTIONS(3566), + [aux_sym_cmd_identifier_token40] = ACTIONS(3566), + [anon_sym_LBRACK] = ACTIONS(3566), + [anon_sym_LPAREN] = ACTIONS(3566), + [anon_sym_DOLLAR] = ACTIONS(3560), + [anon_sym_DASH2] = ACTIONS(3560), + [anon_sym_LBRACE] = ACTIONS(3566), + [anon_sym_DOT_DOT] = ACTIONS(3560), + [aux_sym_expr_unary_token1] = ACTIONS(3566), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3566), + [anon_sym_DOT_DOT_LT] = ACTIONS(3566), + [anon_sym_null] = ACTIONS(3560), + [anon_sym_true] = ACTIONS(3560), + [anon_sym_false] = ACTIONS(3560), + [aux_sym__val_number_decimal_token1] = ACTIONS(3560), + [aux_sym__val_number_decimal_token2] = ACTIONS(3566), + [aux_sym__val_number_decimal_token3] = ACTIONS(3566), + [aux_sym__val_number_decimal_token4] = ACTIONS(3566), + [aux_sym__val_number_token1] = ACTIONS(3566), + [aux_sym__val_number_token2] = ACTIONS(3566), + [aux_sym__val_number_token3] = ACTIONS(3566), + [aux_sym__val_number_token4] = ACTIONS(3560), + [aux_sym__val_number_token5] = ACTIONS(3560), + [aux_sym__val_number_token6] = ACTIONS(3560), + [anon_sym_0b] = ACTIONS(3560), + [anon_sym_0o] = ACTIONS(3560), + [anon_sym_0x] = ACTIONS(3560), + [sym_val_date] = ACTIONS(3566), + [anon_sym_DQUOTE] = ACTIONS(3566), + [sym__str_single_quotes] = ACTIONS(3566), + [sym__str_back_ticks] = ACTIONS(3566), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3566), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3566), + [aux_sym_env_var_token1] = ACTIONS(3611), + [anon_sym_CARET] = ACTIONS(3566), + [aux_sym_command_token1] = ACTIONS(3566), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3566), }, [1189] = { [sym_comment] = STATE(1189), - [ts_builtin_sym_end] = ACTIONS(1682), - [anon_sym_STAR_STAR] = ACTIONS(1682), - [anon_sym_PLUS_PLUS] = ACTIONS(1682), - [anon_sym_STAR] = ACTIONS(1680), - [anon_sym_SLASH] = ACTIONS(1680), - [anon_sym_mod] = ACTIONS(1682), - [anon_sym_SLASH_SLASH] = ACTIONS(1682), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_DASH] = ACTIONS(1682), - [anon_sym_bit_DASHshl] = ACTIONS(1682), - [anon_sym_bit_DASHshr] = ACTIONS(1682), - [anon_sym_EQ_TILDE] = ACTIONS(1682), - [anon_sym_BANG_TILDE] = ACTIONS(1682), - [anon_sym_bit_DASHand] = ACTIONS(1682), - [anon_sym_bit_DASHxor] = ACTIONS(1682), - [anon_sym_bit_DASHor] = ACTIONS(1682), - [anon_sym_and] = ACTIONS(1682), - [anon_sym_xor] = ACTIONS(1682), - [anon_sym_or] = ACTIONS(1682), - [anon_sym_in] = ACTIONS(1682), - [anon_sym_not_DASHin] = ACTIONS(1682), - [anon_sym_starts_DASHwith] = ACTIONS(1682), - [anon_sym_ends_DASHwith] = ACTIONS(1682), - [anon_sym_EQ_EQ] = ACTIONS(1682), - [anon_sym_BANG_EQ] = ACTIONS(1682), - [anon_sym_LT] = ACTIONS(1680), - [anon_sym_LT_EQ] = ACTIONS(1682), - [anon_sym_GT] = ACTIONS(1680), - [anon_sym_GT_EQ] = ACTIONS(1682), - [aux_sym_cmd_identifier_token41] = ACTIONS(1680), - [sym__newline] = ACTIONS(1680), - [anon_sym_SEMI] = ACTIONS(1680), - [anon_sym_PIPE] = ACTIONS(1680), - [anon_sym_err_GT_PIPE] = ACTIONS(1680), - [anon_sym_out_GT_PIPE] = ACTIONS(1680), - [anon_sym_e_GT_PIPE] = ACTIONS(1680), - [anon_sym_o_GT_PIPE] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1680), - [anon_sym_GT2] = ACTIONS(1680), - [anon_sym_DASH2] = ACTIONS(1680), - [anon_sym_in2] = ACTIONS(1680), - [anon_sym_STAR2] = ACTIONS(1680), - [anon_sym_and2] = ACTIONS(1680), - [anon_sym_xor2] = ACTIONS(1680), - [anon_sym_or2] = ACTIONS(1680), - [anon_sym_not_DASHin2] = ACTIONS(1680), - [anon_sym_starts_DASHwith2] = ACTIONS(1680), - [anon_sym_ends_DASHwith2] = ACTIONS(1680), - [anon_sym_EQ_EQ2] = ACTIONS(1680), - [anon_sym_BANG_EQ2] = ACTIONS(1680), - [anon_sym_LT2] = ACTIONS(1680), - [anon_sym_LT_EQ2] = ACTIONS(1680), - [anon_sym_GT_EQ2] = ACTIONS(1680), - [anon_sym_EQ_TILDE2] = ACTIONS(1680), - [anon_sym_BANG_TILDE2] = ACTIONS(1680), - [anon_sym_STAR_STAR2] = ACTIONS(1680), - [anon_sym_PLUS_PLUS2] = ACTIONS(1680), - [anon_sym_SLASH2] = ACTIONS(1680), - [anon_sym_mod2] = ACTIONS(1680), - [anon_sym_SLASH_SLASH2] = ACTIONS(1680), - [anon_sym_PLUS2] = ACTIONS(1680), - [anon_sym_bit_DASHshl2] = ACTIONS(1680), - [anon_sym_bit_DASHshr2] = ACTIONS(1680), - [anon_sym_bit_DASHand2] = ACTIONS(1680), - [anon_sym_bit_DASHxor2] = ACTIONS(1680), - [anon_sym_bit_DASHor2] = ACTIONS(1680), - [anon_sym_DOT_DOT2] = ACTIONS(1680), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1682), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1682), - [sym_filesize_unit] = ACTIONS(1680), - [sym_duration_unit] = ACTIONS(1682), + [anon_sym_STAR_STAR] = ACTIONS(1691), + [anon_sym_PLUS_PLUS] = ACTIONS(1691), + [anon_sym_STAR] = ACTIONS(1689), + [anon_sym_SLASH] = ACTIONS(1689), + [anon_sym_mod] = ACTIONS(1691), + [anon_sym_SLASH_SLASH] = ACTIONS(1691), + [anon_sym_PLUS] = ACTIONS(1689), + [anon_sym_DASH] = ACTIONS(1691), + [anon_sym_bit_DASHshl] = ACTIONS(1691), + [anon_sym_bit_DASHshr] = ACTIONS(1691), + [anon_sym_EQ_TILDE] = ACTIONS(1691), + [anon_sym_BANG_TILDE] = ACTIONS(1691), + [anon_sym_bit_DASHand] = ACTIONS(1691), + [anon_sym_bit_DASHxor] = ACTIONS(1691), + [anon_sym_bit_DASHor] = ACTIONS(1691), + [anon_sym_and] = ACTIONS(1691), + [anon_sym_xor] = ACTIONS(1691), + [anon_sym_or] = ACTIONS(1691), + [anon_sym_in] = ACTIONS(1691), + [anon_sym_not_DASHin] = ACTIONS(1691), + [anon_sym_has] = ACTIONS(1691), + [anon_sym_not_DASHhas] = ACTIONS(1691), + [anon_sym_starts_DASHwith] = ACTIONS(1691), + [anon_sym_ends_DASHwith] = ACTIONS(1691), + [anon_sym_EQ_EQ] = ACTIONS(1691), + [anon_sym_BANG_EQ] = ACTIONS(1691), + [anon_sym_LT] = ACTIONS(1689), + [anon_sym_LT_EQ] = ACTIONS(1691), + [anon_sym_GT] = ACTIONS(1689), + [anon_sym_GT_EQ] = ACTIONS(1691), + [aux_sym_cmd_identifier_token41] = ACTIONS(1689), + [sym__newline] = ACTIONS(1689), + [anon_sym_PIPE] = ACTIONS(1689), + [anon_sym_err_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_GT_PIPE] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1689), + [anon_sym_GT2] = ACTIONS(1689), + [anon_sym_DASH2] = ACTIONS(1689), + [anon_sym_in2] = ACTIONS(1689), + [anon_sym_STAR2] = ACTIONS(1689), + [anon_sym_and2] = ACTIONS(1689), + [anon_sym_xor2] = ACTIONS(1689), + [anon_sym_or2] = ACTIONS(1689), + [anon_sym_not_DASHin2] = ACTIONS(1689), + [anon_sym_has2] = ACTIONS(1689), + [anon_sym_not_DASHhas2] = ACTIONS(1689), + [anon_sym_starts_DASHwith2] = ACTIONS(1689), + [anon_sym_ends_DASHwith2] = ACTIONS(1689), + [anon_sym_EQ_EQ2] = ACTIONS(1689), + [anon_sym_BANG_EQ2] = ACTIONS(1689), + [anon_sym_LT2] = ACTIONS(1689), + [anon_sym_LT_EQ2] = ACTIONS(1689), + [anon_sym_GT_EQ2] = ACTIONS(1689), + [anon_sym_EQ_TILDE2] = ACTIONS(1689), + [anon_sym_BANG_TILDE2] = ACTIONS(1689), + [anon_sym_STAR_STAR2] = ACTIONS(1689), + [anon_sym_PLUS_PLUS2] = ACTIONS(1689), + [anon_sym_SLASH2] = ACTIONS(1689), + [anon_sym_mod2] = ACTIONS(1689), + [anon_sym_SLASH_SLASH2] = ACTIONS(1689), + [anon_sym_PLUS2] = ACTIONS(1689), + [anon_sym_bit_DASHshl2] = ACTIONS(1689), + [anon_sym_bit_DASHshr2] = ACTIONS(1689), + [anon_sym_bit_DASHand2] = ACTIONS(1689), + [anon_sym_bit_DASHxor2] = ACTIONS(1689), + [anon_sym_bit_DASHor2] = ACTIONS(1689), + [anon_sym_DOT_DOT2] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1691), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1691), + [sym_filesize_unit] = ACTIONS(1689), + [sym_duration_unit] = ACTIONS(1691), [anon_sym_POUND] = ACTIONS(3), }, [1190] = { + [sym_match_arm] = STATE(7111), + [sym_default_arm] = STATE(7111), + [sym_match_pattern] = STATE(7845), + [sym__match_pattern] = STATE(6156), + [sym__match_pattern_expression] = STATE(7277), + [sym__match_pattern_value] = STATE(7278), + [sym__match_pattern_list] = STATE(7279), + [sym__match_pattern_record] = STATE(7280), + [sym_expr_parenthesized] = STATE(5921), + [sym_val_range] = STATE(7278), + [sym__val_range] = STATE(7833), + [sym_val_nothing] = STATE(7282), + [sym_val_bool] = STATE(6697), + [sym_val_variable] = STATE(5881), + [sym_val_number] = STATE(7282), + [sym__val_number_decimal] = STATE(5377), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(7282), + [sym_val_filesize] = STATE(7282), + [sym_val_binary] = STATE(7282), + [sym_val_string] = STATE(7282), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_table] = STATE(7282), + [sym_unquoted] = STATE(6981), + [sym__unquoted_anonymous_prefix] = STATE(7649), [sym_comment] = STATE(1190), - [anon_sym_STAR_STAR] = ACTIONS(3054), - [anon_sym_PLUS_PLUS] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3056), - [anon_sym_SLASH] = ACTIONS(3056), - [anon_sym_mod] = ACTIONS(3054), - [anon_sym_SLASH_SLASH] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(3056), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_bit_DASHshl] = ACTIONS(3054), - [anon_sym_bit_DASHshr] = ACTIONS(3054), - [anon_sym_EQ_TILDE] = ACTIONS(3054), - [anon_sym_BANG_TILDE] = ACTIONS(3054), - [anon_sym_bit_DASHand] = ACTIONS(3054), - [anon_sym_bit_DASHxor] = ACTIONS(3054), - [anon_sym_bit_DASHor] = ACTIONS(3054), - [anon_sym_and] = ACTIONS(3054), - [anon_sym_xor] = ACTIONS(3054), - [anon_sym_or] = ACTIONS(3054), - [anon_sym_in] = ACTIONS(3054), - [anon_sym_not_DASHin] = ACTIONS(3054), - [anon_sym_starts_DASHwith] = ACTIONS(3054), - [anon_sym_ends_DASHwith] = ACTIONS(3054), - [anon_sym_EQ_EQ] = ACTIONS(3054), - [anon_sym_BANG_EQ] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_LT_EQ] = ACTIONS(3054), - [anon_sym_GT] = ACTIONS(3056), - [anon_sym_GT_EQ] = ACTIONS(3054), - [aux_sym_cmd_identifier_token41] = ACTIONS(3058), - [sym__newline] = ACTIONS(1638), - [anon_sym_SEMI] = ACTIONS(1638), - [anon_sym_PIPE] = ACTIONS(1638), - [anon_sym_err_GT_PIPE] = ACTIONS(1638), - [anon_sym_out_GT_PIPE] = ACTIONS(1638), - [anon_sym_e_GT_PIPE] = ACTIONS(1638), - [anon_sym_o_GT_PIPE] = ACTIONS(1638), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1638), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1638), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1638), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1638), - [anon_sym_RPAREN] = ACTIONS(1638), - [anon_sym_GT2] = ACTIONS(1638), - [anon_sym_DASH2] = ACTIONS(1638), - [anon_sym_in2] = ACTIONS(1638), - [anon_sym_STAR2] = ACTIONS(1638), - [anon_sym_and2] = ACTIONS(1638), - [anon_sym_xor2] = ACTIONS(1638), - [anon_sym_or2] = ACTIONS(1638), - [anon_sym_not_DASHin2] = ACTIONS(1638), - [anon_sym_starts_DASHwith2] = ACTIONS(1638), - [anon_sym_ends_DASHwith2] = ACTIONS(1638), - [anon_sym_EQ_EQ2] = ACTIONS(1638), - [anon_sym_BANG_EQ2] = ACTIONS(1638), - [anon_sym_LT2] = ACTIONS(1638), - [anon_sym_LT_EQ2] = ACTIONS(1638), - [anon_sym_GT_EQ2] = ACTIONS(1638), - [anon_sym_EQ_TILDE2] = ACTIONS(1638), - [anon_sym_BANG_TILDE2] = ACTIONS(1638), - [anon_sym_STAR_STAR2] = ACTIONS(1638), - [anon_sym_PLUS_PLUS2] = ACTIONS(1638), - [anon_sym_SLASH2] = ACTIONS(1638), - [anon_sym_mod2] = ACTIONS(1638), - [anon_sym_SLASH_SLASH2] = ACTIONS(1638), - [anon_sym_PLUS2] = ACTIONS(1638), - [anon_sym_bit_DASHshl2] = ACTIONS(1638), - [anon_sym_bit_DASHshr2] = ACTIONS(1638), - [anon_sym_bit_DASHand2] = ACTIONS(1638), - [anon_sym_bit_DASHxor2] = ACTIONS(1638), - [anon_sym_bit_DASHor2] = ACTIONS(1638), - [anon_sym_DOT_DOT2] = ACTIONS(3044), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3046), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3046), - [sym_filesize_unit] = ACTIONS(3804), - [sym_duration_unit] = ACTIONS(3806), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(1206), + [aux_sym_ctrl_match_repeat1] = STATE(1233), + [sym__newline] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(3616), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym_RBRACE] = ACTIONS(3622), + [anon_sym__] = ACTIONS(3624), + [anon_sym_DOT_DOT] = ACTIONS(3626), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3628), + [anon_sym_DOT_DOT_LT] = ACTIONS(3628), + [anon_sym_null] = ACTIONS(3630), + [anon_sym_true] = ACTIONS(3632), + [anon_sym_false] = ACTIONS(3632), + [aux_sym__val_number_decimal_token1] = ACTIONS(3634), + [aux_sym__val_number_decimal_token2] = ACTIONS(3636), + [aux_sym__val_number_decimal_token3] = ACTIONS(3638), + [aux_sym__val_number_decimal_token4] = ACTIONS(3640), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3642), + [aux_sym__val_number_token5] = ACTIONS(3642), + [aux_sym__val_number_token6] = ACTIONS(3642), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3644), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3538), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1191] = { [sym_comment] = STATE(1191), - [ts_builtin_sym_end] = ACTIONS(1745), - [anon_sym_STAR_STAR] = ACTIONS(1745), - [anon_sym_PLUS_PLUS] = ACTIONS(1745), - [anon_sym_STAR] = ACTIONS(1743), - [anon_sym_SLASH] = ACTIONS(1743), - [anon_sym_mod] = ACTIONS(1745), - [anon_sym_SLASH_SLASH] = ACTIONS(1745), - [anon_sym_PLUS] = ACTIONS(1743), - [anon_sym_DASH] = ACTIONS(1745), - [anon_sym_bit_DASHshl] = ACTIONS(1745), - [anon_sym_bit_DASHshr] = ACTIONS(1745), - [anon_sym_EQ_TILDE] = ACTIONS(1745), - [anon_sym_BANG_TILDE] = ACTIONS(1745), - [anon_sym_bit_DASHand] = ACTIONS(1745), - [anon_sym_bit_DASHxor] = ACTIONS(1745), - [anon_sym_bit_DASHor] = ACTIONS(1745), - [anon_sym_and] = ACTIONS(1745), - [anon_sym_xor] = ACTIONS(1745), - [anon_sym_or] = ACTIONS(1745), - [anon_sym_in] = ACTIONS(1745), - [anon_sym_not_DASHin] = ACTIONS(1745), - [anon_sym_starts_DASHwith] = ACTIONS(1745), - [anon_sym_ends_DASHwith] = ACTIONS(1745), - [anon_sym_EQ_EQ] = ACTIONS(1745), - [anon_sym_BANG_EQ] = ACTIONS(1745), - [anon_sym_LT] = ACTIONS(1743), - [anon_sym_LT_EQ] = ACTIONS(1745), - [anon_sym_GT] = ACTIONS(1743), - [anon_sym_GT_EQ] = ACTIONS(1745), - [aux_sym_cmd_identifier_token41] = ACTIONS(1743), - [sym__newline] = ACTIONS(1743), - [anon_sym_SEMI] = ACTIONS(1743), - [anon_sym_PIPE] = ACTIONS(1743), - [anon_sym_err_GT_PIPE] = ACTIONS(1743), - [anon_sym_out_GT_PIPE] = ACTIONS(1743), - [anon_sym_e_GT_PIPE] = ACTIONS(1743), - [anon_sym_o_GT_PIPE] = ACTIONS(1743), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1743), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1743), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1743), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1743), - [anon_sym_GT2] = ACTIONS(1743), - [anon_sym_DASH2] = ACTIONS(1743), - [anon_sym_in2] = ACTIONS(1743), - [anon_sym_STAR2] = ACTIONS(1743), - [anon_sym_and2] = ACTIONS(1743), - [anon_sym_xor2] = ACTIONS(1743), - [anon_sym_or2] = ACTIONS(1743), - [anon_sym_not_DASHin2] = ACTIONS(1743), - [anon_sym_starts_DASHwith2] = ACTIONS(1743), - [anon_sym_ends_DASHwith2] = ACTIONS(1743), - [anon_sym_EQ_EQ2] = ACTIONS(1743), - [anon_sym_BANG_EQ2] = ACTIONS(1743), - [anon_sym_LT2] = ACTIONS(1743), - [anon_sym_LT_EQ2] = ACTIONS(1743), - [anon_sym_GT_EQ2] = ACTIONS(1743), - [anon_sym_EQ_TILDE2] = ACTIONS(1743), - [anon_sym_BANG_TILDE2] = ACTIONS(1743), - [anon_sym_STAR_STAR2] = ACTIONS(1743), - [anon_sym_PLUS_PLUS2] = ACTIONS(1743), - [anon_sym_SLASH2] = ACTIONS(1743), - [anon_sym_mod2] = ACTIONS(1743), - [anon_sym_SLASH_SLASH2] = ACTIONS(1743), - [anon_sym_PLUS2] = ACTIONS(1743), - [anon_sym_bit_DASHshl2] = ACTIONS(1743), - [anon_sym_bit_DASHshr2] = ACTIONS(1743), - [anon_sym_bit_DASHand2] = ACTIONS(1743), - [anon_sym_bit_DASHxor2] = ACTIONS(1743), - [anon_sym_bit_DASHor2] = ACTIONS(1743), - [anon_sym_DOT_DOT2] = ACTIONS(1743), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1745), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1745), - [sym_filesize_unit] = ACTIONS(1743), - [sym_duration_unit] = ACTIONS(1745), + [anon_sym_STAR_STAR] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_SLASH] = ACTIONS(1512), + [anon_sym_mod] = ACTIONS(1514), + [anon_sym_SLASH_SLASH] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_bit_DASHshl] = ACTIONS(1514), + [anon_sym_bit_DASHshr] = ACTIONS(1514), + [anon_sym_EQ_TILDE] = ACTIONS(1514), + [anon_sym_BANG_TILDE] = ACTIONS(1514), + [anon_sym_bit_DASHand] = ACTIONS(1514), + [anon_sym_bit_DASHxor] = ACTIONS(1514), + [anon_sym_bit_DASHor] = ACTIONS(1514), + [anon_sym_and] = ACTIONS(1514), + [anon_sym_xor] = ACTIONS(1514), + [anon_sym_or] = ACTIONS(1514), + [anon_sym_in] = ACTIONS(1514), + [anon_sym_not_DASHin] = ACTIONS(1514), + [anon_sym_has] = ACTIONS(1514), + [anon_sym_not_DASHhas] = ACTIONS(1514), + [anon_sym_starts_DASHwith] = ACTIONS(1514), + [anon_sym_ends_DASHwith] = ACTIONS(1514), + [anon_sym_EQ_EQ] = ACTIONS(1514), + [anon_sym_BANG_EQ] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_LT_EQ] = ACTIONS(1514), + [anon_sym_GT] = ACTIONS(1512), + [anon_sym_GT_EQ] = ACTIONS(1514), + [aux_sym_cmd_identifier_token41] = ACTIONS(1512), + [sym__newline] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_err_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_GT_PIPE] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1512), + [anon_sym_GT2] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_in2] = ACTIONS(1512), + [anon_sym_STAR2] = ACTIONS(1512), + [anon_sym_and2] = ACTIONS(1512), + [anon_sym_xor2] = ACTIONS(1512), + [anon_sym_or2] = ACTIONS(1512), + [anon_sym_not_DASHin2] = ACTIONS(1512), + [anon_sym_has2] = ACTIONS(1512), + [anon_sym_not_DASHhas2] = ACTIONS(1512), + [anon_sym_starts_DASHwith2] = ACTIONS(1512), + [anon_sym_ends_DASHwith2] = ACTIONS(1512), + [anon_sym_EQ_EQ2] = ACTIONS(1512), + [anon_sym_BANG_EQ2] = ACTIONS(1512), + [anon_sym_LT2] = ACTIONS(1512), + [anon_sym_LT_EQ2] = ACTIONS(1512), + [anon_sym_GT_EQ2] = ACTIONS(1512), + [anon_sym_EQ_TILDE2] = ACTIONS(1512), + [anon_sym_BANG_TILDE2] = ACTIONS(1512), + [anon_sym_STAR_STAR2] = ACTIONS(1512), + [anon_sym_PLUS_PLUS2] = ACTIONS(1512), + [anon_sym_SLASH2] = ACTIONS(1512), + [anon_sym_mod2] = ACTIONS(1512), + [anon_sym_SLASH_SLASH2] = ACTIONS(1512), + [anon_sym_PLUS2] = ACTIONS(1512), + [anon_sym_bit_DASHshl2] = ACTIONS(1512), + [anon_sym_bit_DASHshr2] = ACTIONS(1512), + [anon_sym_bit_DASHand2] = ACTIONS(1512), + [anon_sym_bit_DASHxor2] = ACTIONS(1512), + [anon_sym_bit_DASHor2] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [sym_filesize_unit] = ACTIONS(1512), + [sym_duration_unit] = ACTIONS(1514), [anon_sym_POUND] = ACTIONS(3), }, [1192] = { - [sym_expr_parenthesized] = STATE(6057), - [sym_val_range] = STATE(7383), - [sym__val_range] = STATE(7589), - [sym__val_range_with_end] = STATE(7407), - [sym__value] = STATE(7383), - [sym_val_nothing] = STATE(7049), - [sym_val_bool] = STATE(6191), - [sym_val_variable] = STATE(5708), - [sym_val_number] = STATE(7049), - [sym__val_number_decimal] = STATE(5218), - [sym__val_number] = STATE(7097), - [sym_val_duration] = STATE(7049), - [sym_val_filesize] = STATE(7049), - [sym_val_binary] = STATE(7049), - [sym_val_string] = STATE(7049), - [sym__raw_str] = STATE(5195), - [sym__str_double_quotes] = STATE(5195), - [sym_val_interpolated] = STATE(7049), - [sym__inter_single_quotes] = STATE(6792), - [sym__inter_double_quotes] = STATE(6795), - [sym_val_list] = STATE(7049), - [sym_val_record] = STATE(7049), - [sym_val_table] = STATE(7049), - [sym_val_closure] = STATE(7049), - [sym__unquoted_in_record] = STATE(6275), - [sym__unquoted_in_record_with_expr] = STATE(7383), - [sym__unquoted_anonymous_prefix] = STATE(6941), [sym_comment] = STATE(1192), - [anon_sym_LBRACK] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_DOT_DOT] = ACTIONS(3738), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3740), - [anon_sym_DOT_DOT_LT] = ACTIONS(3740), - [anon_sym_null] = ACTIONS(3742), - [anon_sym_true] = ACTIONS(3744), - [anon_sym_false] = ACTIONS(3744), - [aux_sym__val_number_decimal_token1] = ACTIONS(3746), - [aux_sym__val_number_decimal_token2] = ACTIONS(3748), - [aux_sym__val_number_decimal_token3] = ACTIONS(3750), - [aux_sym__val_number_decimal_token4] = ACTIONS(3752), - [aux_sym__val_number_token1] = ACTIONS(3122), - [aux_sym__val_number_token2] = ACTIONS(3122), - [aux_sym__val_number_token3] = ACTIONS(3122), - [aux_sym__val_number_token4] = ACTIONS(3754), - [aux_sym__val_number_token5] = ACTIONS(3754), - [aux_sym__val_number_token6] = ACTIONS(3754), - [anon_sym_0b] = ACTIONS(3126), - [anon_sym_0o] = ACTIONS(3128), - [anon_sym_0x] = ACTIONS(3128), - [sym_val_date] = ACTIONS(3756), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym__str_single_quotes] = ACTIONS(3134), - [sym__str_back_ticks] = ACTIONS(3134), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2596), - [anon_sym_err_GT] = ACTIONS(3618), - [anon_sym_out_GT] = ACTIONS(3618), - [anon_sym_e_GT] = ACTIONS(3618), - [anon_sym_o_GT] = ACTIONS(3618), - [anon_sym_err_PLUSout_GT] = ACTIONS(3618), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3618), - [anon_sym_o_PLUSe_GT] = ACTIONS(3618), - [anon_sym_e_PLUSo_GT] = ACTIONS(3618), - [anon_sym_err_GT_GT] = ACTIONS(3620), - [anon_sym_out_GT_GT] = ACTIONS(3620), - [anon_sym_e_GT_GT] = ACTIONS(3620), - [anon_sym_o_GT_GT] = ACTIONS(3620), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3620), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3620), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3620), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3620), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3758), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3138), + [aux_sym_cmd_identifier_token1] = ACTIONS(1290), + [aux_sym_cmd_identifier_token2] = ACTIONS(1288), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [aux_sym_cmd_identifier_token6] = ACTIONS(1288), + [aux_sym_cmd_identifier_token7] = ACTIONS(1288), + [aux_sym_cmd_identifier_token8] = ACTIONS(1288), + [aux_sym_cmd_identifier_token9] = ACTIONS(1290), + [aux_sym_cmd_identifier_token10] = ACTIONS(1288), + [aux_sym_cmd_identifier_token11] = ACTIONS(1288), + [aux_sym_cmd_identifier_token12] = ACTIONS(1288), + [aux_sym_cmd_identifier_token13] = ACTIONS(1290), + [aux_sym_cmd_identifier_token14] = ACTIONS(1288), + [aux_sym_cmd_identifier_token15] = ACTIONS(1290), + [aux_sym_cmd_identifier_token16] = ACTIONS(1288), + [aux_sym_cmd_identifier_token17] = ACTIONS(1288), + [aux_sym_cmd_identifier_token18] = ACTIONS(1290), + [aux_sym_cmd_identifier_token19] = ACTIONS(1288), + [aux_sym_cmd_identifier_token20] = ACTIONS(1288), + [aux_sym_cmd_identifier_token21] = ACTIONS(1288), + [aux_sym_cmd_identifier_token22] = ACTIONS(1288), + [aux_sym_cmd_identifier_token23] = ACTIONS(1288), + [aux_sym_cmd_identifier_token24] = ACTIONS(1288), + [aux_sym_cmd_identifier_token25] = ACTIONS(1288), + [aux_sym_cmd_identifier_token26] = ACTIONS(1288), + [aux_sym_cmd_identifier_token27] = ACTIONS(1288), + [aux_sym_cmd_identifier_token28] = ACTIONS(1288), + [aux_sym_cmd_identifier_token29] = ACTIONS(1288), + [aux_sym_cmd_identifier_token30] = ACTIONS(1288), + [aux_sym_cmd_identifier_token31] = ACTIONS(1288), + [aux_sym_cmd_identifier_token32] = ACTIONS(1290), + [aux_sym_cmd_identifier_token33] = ACTIONS(1288), + [aux_sym_cmd_identifier_token34] = ACTIONS(1290), + [aux_sym_cmd_identifier_token35] = ACTIONS(1288), + [aux_sym_cmd_identifier_token36] = ACTIONS(1288), + [aux_sym_cmd_identifier_token37] = ACTIONS(1288), + [aux_sym_cmd_identifier_token38] = ACTIONS(1290), + [aux_sym_cmd_identifier_token39] = ACTIONS(1288), + [aux_sym_cmd_identifier_token40] = ACTIONS(1288), + [sym__newline] = ACTIONS(1288), + [anon_sym_LBRACK] = ACTIONS(1288), + [anon_sym_LPAREN] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1290), + [anon_sym_DASH2] = ACTIONS(1290), + [anon_sym_if] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1288), + [anon_sym_DOT_DOT] = ACTIONS(1290), + [aux_sym_expr_unary_token1] = ACTIONS(1288), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1288), + [anon_sym_DOT_DOT_LT] = ACTIONS(1288), + [anon_sym_null] = ACTIONS(1290), + [anon_sym_true] = ACTIONS(1290), + [anon_sym_false] = ACTIONS(1290), + [aux_sym__val_number_decimal_token1] = ACTIONS(1290), + [aux_sym__val_number_decimal_token2] = ACTIONS(1288), + [aux_sym__val_number_decimal_token3] = ACTIONS(1288), + [aux_sym__val_number_decimal_token4] = ACTIONS(1288), + [aux_sym__val_number_token1] = ACTIONS(1288), + [aux_sym__val_number_token2] = ACTIONS(1288), + [aux_sym__val_number_token3] = ACTIONS(1288), + [aux_sym__val_number_token4] = ACTIONS(1290), + [aux_sym__val_number_token5] = ACTIONS(1290), + [aux_sym__val_number_token6] = ACTIONS(1290), + [anon_sym_0b] = ACTIONS(1290), + [anon_sym_0o] = ACTIONS(1290), + [anon_sym_0x] = ACTIONS(1290), + [sym_val_date] = ACTIONS(1288), + [anon_sym_DQUOTE] = ACTIONS(1288), + [sym__str_single_quotes] = ACTIONS(1288), + [sym__str_back_ticks] = ACTIONS(1288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1288), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1288), + [anon_sym_CARET] = ACTIONS(1288), + [aux_sym_command_token1] = ACTIONS(1288), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1288), }, [1193] = { [sym_comment] = STATE(1193), - [ts_builtin_sym_end] = ACTIONS(1650), - [anon_sym_STAR_STAR] = ACTIONS(3068), - [anon_sym_PLUS_PLUS] = ACTIONS(3068), - [anon_sym_STAR] = ACTIONS(3070), - [anon_sym_SLASH] = ACTIONS(3070), - [anon_sym_mod] = ACTIONS(3068), - [anon_sym_SLASH_SLASH] = ACTIONS(3068), - [anon_sym_PLUS] = ACTIONS(3070), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_bit_DASHshl] = ACTIONS(3068), - [anon_sym_bit_DASHshr] = ACTIONS(3068), - [anon_sym_EQ_TILDE] = ACTIONS(3068), - [anon_sym_BANG_TILDE] = ACTIONS(3068), - [anon_sym_bit_DASHand] = ACTIONS(3068), - [anon_sym_bit_DASHxor] = ACTIONS(3068), - [anon_sym_bit_DASHor] = ACTIONS(3068), - [anon_sym_and] = ACTIONS(3068), - [anon_sym_xor] = ACTIONS(3068), - [anon_sym_or] = ACTIONS(3068), - [anon_sym_in] = ACTIONS(3068), - [anon_sym_not_DASHin] = ACTIONS(3068), - [anon_sym_starts_DASHwith] = ACTIONS(3068), - [anon_sym_ends_DASHwith] = ACTIONS(3068), - [anon_sym_EQ_EQ] = ACTIONS(3068), - [anon_sym_BANG_EQ] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_LT_EQ] = ACTIONS(3068), - [anon_sym_GT] = ACTIONS(3070), - [anon_sym_GT_EQ] = ACTIONS(3068), - [aux_sym_cmd_identifier_token41] = ACTIONS(3072), - [sym__newline] = ACTIONS(1638), - [anon_sym_SEMI] = ACTIONS(1638), - [anon_sym_PIPE] = ACTIONS(1638), - [anon_sym_err_GT_PIPE] = ACTIONS(1638), - [anon_sym_out_GT_PIPE] = ACTIONS(1638), - [anon_sym_e_GT_PIPE] = ACTIONS(1638), - [anon_sym_o_GT_PIPE] = ACTIONS(1638), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1638), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1638), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1638), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1638), - [anon_sym_GT2] = ACTIONS(1638), - [anon_sym_DASH2] = ACTIONS(1638), - [anon_sym_in2] = ACTIONS(1638), - [anon_sym_STAR2] = ACTIONS(1638), - [anon_sym_and2] = ACTIONS(1638), - [anon_sym_xor2] = ACTIONS(1638), - [anon_sym_or2] = ACTIONS(1638), - [anon_sym_not_DASHin2] = ACTIONS(1638), - [anon_sym_starts_DASHwith2] = ACTIONS(1638), - [anon_sym_ends_DASHwith2] = ACTIONS(1638), - [anon_sym_EQ_EQ2] = ACTIONS(1638), - [anon_sym_BANG_EQ2] = ACTIONS(1638), - [anon_sym_LT2] = ACTIONS(1638), - [anon_sym_LT_EQ2] = ACTIONS(1638), - [anon_sym_GT_EQ2] = ACTIONS(1638), - [anon_sym_EQ_TILDE2] = ACTIONS(1638), - [anon_sym_BANG_TILDE2] = ACTIONS(1638), - [anon_sym_STAR_STAR2] = ACTIONS(1638), - [anon_sym_PLUS_PLUS2] = ACTIONS(1638), - [anon_sym_SLASH2] = ACTIONS(1638), - [anon_sym_mod2] = ACTIONS(1638), - [anon_sym_SLASH_SLASH2] = ACTIONS(1638), - [anon_sym_PLUS2] = ACTIONS(1638), - [anon_sym_bit_DASHshl2] = ACTIONS(1638), - [anon_sym_bit_DASHshr2] = ACTIONS(1638), - [anon_sym_bit_DASHand2] = ACTIONS(1638), - [anon_sym_bit_DASHxor2] = ACTIONS(1638), - [anon_sym_bit_DASHor2] = ACTIONS(1638), - [anon_sym_DOT_DOT2] = ACTIONS(3074), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3076), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3076), - [sym_filesize_unit] = ACTIONS(3808), - [sym_duration_unit] = ACTIONS(3810), + [anon_sym_STAR_STAR] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_STAR] = ACTIONS(1504), + [anon_sym_SLASH] = ACTIONS(1504), + [anon_sym_mod] = ACTIONS(1506), + [anon_sym_SLASH_SLASH] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_bit_DASHshl] = ACTIONS(1506), + [anon_sym_bit_DASHshr] = ACTIONS(1506), + [anon_sym_EQ_TILDE] = ACTIONS(1506), + [anon_sym_BANG_TILDE] = ACTIONS(1506), + [anon_sym_bit_DASHand] = ACTIONS(1506), + [anon_sym_bit_DASHxor] = ACTIONS(1506), + [anon_sym_bit_DASHor] = ACTIONS(1506), + [anon_sym_and] = ACTIONS(1506), + [anon_sym_xor] = ACTIONS(1506), + [anon_sym_or] = ACTIONS(1506), + [anon_sym_in] = ACTIONS(1506), + [anon_sym_not_DASHin] = ACTIONS(1506), + [anon_sym_has] = ACTIONS(1506), + [anon_sym_not_DASHhas] = 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_LT] = ACTIONS(1504), + [anon_sym_LT_EQ] = ACTIONS(1506), + [anon_sym_GT] = ACTIONS(1504), + [anon_sym_GT_EQ] = ACTIONS(1506), + [aux_sym_cmd_identifier_token41] = ACTIONS(1504), + [sym__newline] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_err_GT_PIPE] = ACTIONS(1504), + [anon_sym_out_GT_PIPE] = ACTIONS(1504), + [anon_sym_e_GT_PIPE] = ACTIONS(1504), + [anon_sym_o_GT_PIPE] = ACTIONS(1504), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1504), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1504), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1504), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1504), + [anon_sym_GT2] = ACTIONS(1504), + [anon_sym_DASH2] = ACTIONS(1504), + [anon_sym_in2] = ACTIONS(1504), + [anon_sym_STAR2] = ACTIONS(1504), + [anon_sym_and2] = ACTIONS(1504), + [anon_sym_xor2] = ACTIONS(1504), + [anon_sym_or2] = ACTIONS(1504), + [anon_sym_not_DASHin2] = ACTIONS(1504), + [anon_sym_has2] = ACTIONS(1504), + [anon_sym_not_DASHhas2] = ACTIONS(1504), + [anon_sym_starts_DASHwith2] = ACTIONS(1504), + [anon_sym_ends_DASHwith2] = ACTIONS(1504), + [anon_sym_EQ_EQ2] = ACTIONS(1504), + [anon_sym_BANG_EQ2] = ACTIONS(1504), + [anon_sym_LT2] = ACTIONS(1504), + [anon_sym_LT_EQ2] = ACTIONS(1504), + [anon_sym_GT_EQ2] = ACTIONS(1504), + [anon_sym_EQ_TILDE2] = ACTIONS(1504), + [anon_sym_BANG_TILDE2] = ACTIONS(1504), + [anon_sym_STAR_STAR2] = ACTIONS(1504), + [anon_sym_PLUS_PLUS2] = ACTIONS(1504), + [anon_sym_SLASH2] = ACTIONS(1504), + [anon_sym_mod2] = ACTIONS(1504), + [anon_sym_SLASH_SLASH2] = ACTIONS(1504), + [anon_sym_PLUS2] = ACTIONS(1504), + [anon_sym_bit_DASHshl2] = ACTIONS(1504), + [anon_sym_bit_DASHshr2] = ACTIONS(1504), + [anon_sym_bit_DASHand2] = ACTIONS(1504), + [anon_sym_bit_DASHxor2] = ACTIONS(1504), + [anon_sym_bit_DASHor2] = ACTIONS(1504), + [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_POUND] = ACTIONS(3), }, [1194] = { + [sym_match_arm] = STATE(7105), + [sym_default_arm] = STATE(7105), + [sym_match_pattern] = STATE(7845), + [sym__match_pattern] = STATE(6156), + [sym__match_pattern_expression] = STATE(7277), + [sym__match_pattern_value] = STATE(7278), + [sym__match_pattern_list] = STATE(7279), + [sym__match_pattern_record] = STATE(7280), + [sym_expr_parenthesized] = STATE(5921), + [sym_val_range] = STATE(7278), + [sym__val_range] = STATE(7833), + [sym_val_nothing] = STATE(7282), + [sym_val_bool] = STATE(6697), + [sym_val_variable] = STATE(5881), + [sym_val_number] = STATE(7282), + [sym__val_number_decimal] = STATE(5377), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(7282), + [sym_val_filesize] = STATE(7282), + [sym_val_binary] = STATE(7282), + [sym_val_string] = STATE(7282), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_table] = STATE(7282), + [sym_unquoted] = STATE(6981), + [sym__unquoted_anonymous_prefix] = STATE(7649), [sym_comment] = STATE(1194), - [anon_sym_STAR_STAR] = ACTIONS(1552), - [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1550), - [anon_sym_SLASH] = ACTIONS(1550), - [anon_sym_mod] = ACTIONS(1552), - [anon_sym_SLASH_SLASH] = ACTIONS(1552), - [anon_sym_PLUS] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1552), - [anon_sym_bit_DASHshl] = ACTIONS(1552), - [anon_sym_bit_DASHshr] = ACTIONS(1552), - [anon_sym_EQ_TILDE] = ACTIONS(1552), - [anon_sym_BANG_TILDE] = ACTIONS(1552), - [anon_sym_bit_DASHand] = ACTIONS(1552), - [anon_sym_bit_DASHxor] = ACTIONS(1552), - [anon_sym_bit_DASHor] = ACTIONS(1552), - [anon_sym_and] = ACTIONS(1552), - [anon_sym_xor] = ACTIONS(1552), - [anon_sym_or] = ACTIONS(1552), - [anon_sym_in] = ACTIONS(1552), - [anon_sym_not_DASHin] = ACTIONS(1552), - [anon_sym_starts_DASHwith] = ACTIONS(1552), - [anon_sym_ends_DASHwith] = ACTIONS(1552), - [anon_sym_EQ_EQ] = ACTIONS(1552), - [anon_sym_BANG_EQ] = ACTIONS(1552), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_LT_EQ] = ACTIONS(1552), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_GT_EQ] = ACTIONS(1552), - [aux_sym_cmd_identifier_token41] = ACTIONS(1550), - [sym__newline] = ACTIONS(1550), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_err_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_GT_PIPE] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1550), - [anon_sym_RPAREN] = ACTIONS(1550), - [anon_sym_GT2] = ACTIONS(1550), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_in2] = ACTIONS(1550), - [anon_sym_STAR2] = ACTIONS(1550), - [anon_sym_and2] = ACTIONS(1550), - [anon_sym_xor2] = ACTIONS(1550), - [anon_sym_or2] = ACTIONS(1550), - [anon_sym_not_DASHin2] = ACTIONS(1550), - [anon_sym_starts_DASHwith2] = ACTIONS(1550), - [anon_sym_ends_DASHwith2] = ACTIONS(1550), - [anon_sym_EQ_EQ2] = ACTIONS(1550), - [anon_sym_BANG_EQ2] = ACTIONS(1550), - [anon_sym_LT2] = ACTIONS(1550), - [anon_sym_LT_EQ2] = ACTIONS(1550), - [anon_sym_GT_EQ2] = ACTIONS(1550), - [anon_sym_EQ_TILDE2] = ACTIONS(1550), - [anon_sym_BANG_TILDE2] = ACTIONS(1550), - [anon_sym_STAR_STAR2] = ACTIONS(1550), - [anon_sym_PLUS_PLUS2] = ACTIONS(1550), - [anon_sym_SLASH2] = ACTIONS(1550), - [anon_sym_mod2] = ACTIONS(1550), - [anon_sym_SLASH_SLASH2] = ACTIONS(1550), - [anon_sym_PLUS2] = ACTIONS(1550), - [anon_sym_bit_DASHshl2] = ACTIONS(1550), - [anon_sym_bit_DASHshr2] = ACTIONS(1550), - [anon_sym_bit_DASHand2] = ACTIONS(1550), - [anon_sym_bit_DASHxor2] = ACTIONS(1550), - [anon_sym_bit_DASHor2] = ACTIONS(1550), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [sym_filesize_unit] = ACTIONS(1550), - [sym_duration_unit] = ACTIONS(1552), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(1207), + [aux_sym_ctrl_match_repeat1] = STATE(1234), + [sym__newline] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(3616), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym_RBRACE] = ACTIONS(3646), + [anon_sym__] = ACTIONS(3624), + [anon_sym_DOT_DOT] = ACTIONS(3626), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3628), + [anon_sym_DOT_DOT_LT] = ACTIONS(3628), + [anon_sym_null] = ACTIONS(3630), + [anon_sym_true] = ACTIONS(3632), + [anon_sym_false] = ACTIONS(3632), + [aux_sym__val_number_decimal_token1] = ACTIONS(3634), + [aux_sym__val_number_decimal_token2] = ACTIONS(3636), + [aux_sym__val_number_decimal_token3] = ACTIONS(3638), + [aux_sym__val_number_decimal_token4] = ACTIONS(3640), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3642), + [aux_sym__val_number_token5] = ACTIONS(3642), + [aux_sym__val_number_token6] = ACTIONS(3642), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3644), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3538), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1195] = { [sym_comment] = STATE(1195), - [anon_sym_STAR_STAR] = ACTIONS(1544), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_STAR] = ACTIONS(1542), - [anon_sym_SLASH] = ACTIONS(1542), - [anon_sym_mod] = ACTIONS(1544), - [anon_sym_SLASH_SLASH] = ACTIONS(1544), - [anon_sym_PLUS] = ACTIONS(1542), - [anon_sym_DASH] = ACTIONS(1544), - [anon_sym_bit_DASHshl] = ACTIONS(1544), - [anon_sym_bit_DASHshr] = ACTIONS(1544), - [anon_sym_EQ_TILDE] = ACTIONS(1544), - [anon_sym_BANG_TILDE] = ACTIONS(1544), - [anon_sym_bit_DASHand] = ACTIONS(1544), - [anon_sym_bit_DASHxor] = ACTIONS(1544), - [anon_sym_bit_DASHor] = ACTIONS(1544), - [anon_sym_and] = ACTIONS(1544), - [anon_sym_xor] = ACTIONS(1544), - [anon_sym_or] = ACTIONS(1544), - [anon_sym_in] = ACTIONS(1544), - [anon_sym_not_DASHin] = ACTIONS(1544), - [anon_sym_starts_DASHwith] = ACTIONS(1544), - [anon_sym_ends_DASHwith] = ACTIONS(1544), - [anon_sym_EQ_EQ] = ACTIONS(1544), - [anon_sym_BANG_EQ] = ACTIONS(1544), - [anon_sym_LT] = ACTIONS(1542), - [anon_sym_LT_EQ] = ACTIONS(1544), - [anon_sym_GT] = ACTIONS(1542), - [anon_sym_GT_EQ] = ACTIONS(1544), - [aux_sym_cmd_identifier_token41] = ACTIONS(1542), - [sym__newline] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_err_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_GT_PIPE] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), - [anon_sym_GT2] = ACTIONS(1542), - [anon_sym_DASH2] = ACTIONS(1542), - [anon_sym_in2] = ACTIONS(1542), - [anon_sym_STAR2] = ACTIONS(1542), - [anon_sym_and2] = ACTIONS(1542), - [anon_sym_xor2] = ACTIONS(1542), - [anon_sym_or2] = ACTIONS(1542), - [anon_sym_not_DASHin2] = ACTIONS(1542), - [anon_sym_starts_DASHwith2] = ACTIONS(1542), - [anon_sym_ends_DASHwith2] = ACTIONS(1542), - [anon_sym_EQ_EQ2] = ACTIONS(1542), - [anon_sym_BANG_EQ2] = ACTIONS(1542), - [anon_sym_LT2] = ACTIONS(1542), - [anon_sym_LT_EQ2] = ACTIONS(1542), - [anon_sym_GT_EQ2] = ACTIONS(1542), - [anon_sym_EQ_TILDE2] = ACTIONS(1542), - [anon_sym_BANG_TILDE2] = ACTIONS(1542), - [anon_sym_STAR_STAR2] = ACTIONS(1542), - [anon_sym_PLUS_PLUS2] = ACTIONS(1542), - [anon_sym_SLASH2] = ACTIONS(1542), - [anon_sym_mod2] = ACTIONS(1542), - [anon_sym_SLASH_SLASH2] = ACTIONS(1542), - [anon_sym_PLUS2] = ACTIONS(1542), - [anon_sym_bit_DASHshl2] = ACTIONS(1542), - [anon_sym_bit_DASHshr2] = ACTIONS(1542), - [anon_sym_bit_DASHand2] = ACTIONS(1542), - [anon_sym_bit_DASHxor2] = ACTIONS(1542), - [anon_sym_bit_DASHor2] = ACTIONS(1542), - [anon_sym_DOT_DOT2] = ACTIONS(1542), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1544), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1544), - [aux_sym__immediate_decimal_token1] = ACTIONS(3812), - [aux_sym__immediate_decimal_token2] = ACTIONS(3814), - [sym_filesize_unit] = ACTIONS(1542), - [sym_duration_unit] = ACTIONS(1544), + [anon_sym_STAR_STAR] = ACTIONS(1620), + [anon_sym_PLUS_PLUS] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1618), + [anon_sym_SLASH] = ACTIONS(1618), + [anon_sym_mod] = ACTIONS(1620), + [anon_sym_SLASH_SLASH] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1618), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_bit_DASHshl] = ACTIONS(1620), + [anon_sym_bit_DASHshr] = ACTIONS(1620), + [anon_sym_EQ_TILDE] = ACTIONS(1620), + [anon_sym_BANG_TILDE] = ACTIONS(1620), + [anon_sym_bit_DASHand] = ACTIONS(1620), + [anon_sym_bit_DASHxor] = ACTIONS(1620), + [anon_sym_bit_DASHor] = ACTIONS(1620), + [anon_sym_and] = ACTIONS(1620), + [anon_sym_xor] = ACTIONS(1620), + [anon_sym_or] = ACTIONS(1620), + [anon_sym_in] = ACTIONS(1620), + [anon_sym_not_DASHin] = ACTIONS(1620), + [anon_sym_has] = ACTIONS(1620), + [anon_sym_not_DASHhas] = ACTIONS(1620), + [anon_sym_starts_DASHwith] = ACTIONS(1620), + [anon_sym_ends_DASHwith] = ACTIONS(1620), + [anon_sym_EQ_EQ] = ACTIONS(1620), + [anon_sym_BANG_EQ] = ACTIONS(1620), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_LT_EQ] = ACTIONS(1620), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_GT_EQ] = ACTIONS(1620), + [aux_sym_cmd_identifier_token41] = ACTIONS(1618), + [sym__newline] = ACTIONS(1618), + [anon_sym_PIPE] = ACTIONS(1618), + [anon_sym_err_GT_PIPE] = ACTIONS(1618), + [anon_sym_out_GT_PIPE] = ACTIONS(1618), + [anon_sym_e_GT_PIPE] = ACTIONS(1618), + [anon_sym_o_GT_PIPE] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1618), + [anon_sym_GT2] = ACTIONS(1618), + [anon_sym_DASH2] = ACTIONS(1618), + [anon_sym_in2] = ACTIONS(1618), + [anon_sym_STAR2] = ACTIONS(1618), + [anon_sym_and2] = ACTIONS(1618), + [anon_sym_xor2] = ACTIONS(1618), + [anon_sym_or2] = ACTIONS(1618), + [anon_sym_not_DASHin2] = ACTIONS(1618), + [anon_sym_has2] = ACTIONS(1618), + [anon_sym_not_DASHhas2] = ACTIONS(1618), + [anon_sym_starts_DASHwith2] = ACTIONS(1618), + [anon_sym_ends_DASHwith2] = ACTIONS(1618), + [anon_sym_EQ_EQ2] = ACTIONS(1618), + [anon_sym_BANG_EQ2] = ACTIONS(1618), + [anon_sym_LT2] = ACTIONS(1618), + [anon_sym_LT_EQ2] = ACTIONS(1618), + [anon_sym_GT_EQ2] = ACTIONS(1618), + [anon_sym_EQ_TILDE2] = ACTIONS(1618), + [anon_sym_BANG_TILDE2] = ACTIONS(1618), + [anon_sym_STAR_STAR2] = ACTIONS(1618), + [anon_sym_PLUS_PLUS2] = ACTIONS(1618), + [anon_sym_SLASH2] = ACTIONS(1618), + [anon_sym_mod2] = ACTIONS(1618), + [anon_sym_SLASH_SLASH2] = ACTIONS(1618), + [anon_sym_PLUS2] = ACTIONS(1618), + [anon_sym_bit_DASHshl2] = ACTIONS(1618), + [anon_sym_bit_DASHshr2] = ACTIONS(1618), + [anon_sym_bit_DASHand2] = ACTIONS(1618), + [anon_sym_bit_DASHxor2] = ACTIONS(1618), + [anon_sym_bit_DASHor2] = ACTIONS(1618), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [sym_filesize_unit] = ACTIONS(1618), + [sym_duration_unit] = ACTIONS(1620), [anon_sym_POUND] = ACTIONS(3), }, [1196] = { + [sym_match_arm] = STATE(7188), + [sym_default_arm] = STATE(7188), + [sym_match_pattern] = STATE(7845), + [sym__match_pattern] = STATE(6156), + [sym__match_pattern_expression] = STATE(7277), + [sym__match_pattern_value] = STATE(7278), + [sym__match_pattern_list] = STATE(7279), + [sym__match_pattern_record] = STATE(7280), + [sym_expr_parenthesized] = STATE(5921), + [sym_val_range] = STATE(7278), + [sym__val_range] = STATE(7833), + [sym_val_nothing] = STATE(7282), + [sym_val_bool] = STATE(6697), + [sym_val_variable] = STATE(5881), + [sym_val_number] = STATE(7282), + [sym__val_number_decimal] = STATE(5377), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(7282), + [sym_val_filesize] = STATE(7282), + [sym_val_binary] = STATE(7282), + [sym_val_string] = STATE(7282), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_table] = STATE(7282), + [sym_unquoted] = STATE(6981), + [sym__unquoted_anonymous_prefix] = STATE(7649), [sym_comment] = STATE(1196), - [anon_sym_STAR_STAR] = ACTIONS(1544), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_STAR] = ACTIONS(1542), - [anon_sym_SLASH] = ACTIONS(1542), - [anon_sym_mod] = ACTIONS(1544), - [anon_sym_SLASH_SLASH] = ACTIONS(1544), - [anon_sym_PLUS] = ACTIONS(1542), - [anon_sym_DASH] = ACTIONS(1544), - [anon_sym_bit_DASHshl] = ACTIONS(1544), - [anon_sym_bit_DASHshr] = ACTIONS(1544), - [anon_sym_EQ_TILDE] = ACTIONS(1544), - [anon_sym_BANG_TILDE] = ACTIONS(1544), - [anon_sym_bit_DASHand] = ACTIONS(1544), - [anon_sym_bit_DASHxor] = ACTIONS(1544), - [anon_sym_bit_DASHor] = ACTIONS(1544), - [anon_sym_and] = ACTIONS(1544), - [anon_sym_xor] = ACTIONS(1544), - [anon_sym_or] = ACTIONS(1544), - [anon_sym_in] = ACTIONS(1544), - [anon_sym_not_DASHin] = ACTIONS(1544), - [anon_sym_starts_DASHwith] = ACTIONS(1544), - [anon_sym_ends_DASHwith] = ACTIONS(1544), - [anon_sym_EQ_EQ] = ACTIONS(1544), - [anon_sym_BANG_EQ] = ACTIONS(1544), - [anon_sym_LT] = ACTIONS(1542), - [anon_sym_LT_EQ] = ACTIONS(1544), - [anon_sym_GT] = ACTIONS(1542), - [anon_sym_GT_EQ] = ACTIONS(1544), - [aux_sym_cmd_identifier_token41] = ACTIONS(1542), - [sym__newline] = ACTIONS(1542), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_err_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_GT_PIPE] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), - [anon_sym_RPAREN] = ACTIONS(1542), - [anon_sym_GT2] = ACTIONS(1542), - [anon_sym_DASH2] = ACTIONS(1542), - [anon_sym_in2] = ACTIONS(1542), - [anon_sym_STAR2] = ACTIONS(1542), - [anon_sym_and2] = ACTIONS(1542), - [anon_sym_xor2] = ACTIONS(1542), - [anon_sym_or2] = ACTIONS(1542), - [anon_sym_not_DASHin2] = ACTIONS(1542), - [anon_sym_starts_DASHwith2] = ACTIONS(1542), - [anon_sym_ends_DASHwith2] = ACTIONS(1542), - [anon_sym_EQ_EQ2] = ACTIONS(1542), - [anon_sym_BANG_EQ2] = ACTIONS(1542), - [anon_sym_LT2] = ACTIONS(1542), - [anon_sym_LT_EQ2] = ACTIONS(1542), - [anon_sym_GT_EQ2] = ACTIONS(1542), - [anon_sym_EQ_TILDE2] = ACTIONS(1542), - [anon_sym_BANG_TILDE2] = ACTIONS(1542), - [anon_sym_STAR_STAR2] = ACTIONS(1542), - [anon_sym_PLUS_PLUS2] = ACTIONS(1542), - [anon_sym_SLASH2] = ACTIONS(1542), - [anon_sym_mod2] = ACTIONS(1542), - [anon_sym_SLASH_SLASH2] = ACTIONS(1542), - [anon_sym_PLUS2] = ACTIONS(1542), - [anon_sym_bit_DASHshl2] = ACTIONS(1542), - [anon_sym_bit_DASHshr2] = ACTIONS(1542), - [anon_sym_bit_DASHand2] = ACTIONS(1542), - [anon_sym_bit_DASHxor2] = ACTIONS(1542), - [anon_sym_bit_DASHor2] = ACTIONS(1542), - [anon_sym_DOT_DOT2] = ACTIONS(1542), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1544), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1544), - [sym_filesize_unit] = ACTIONS(1542), - [sym_duration_unit] = ACTIONS(1544), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(1205), + [aux_sym_ctrl_match_repeat1] = STATE(1223), + [sym__newline] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(3616), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym_RBRACE] = ACTIONS(3648), + [anon_sym__] = ACTIONS(3624), + [anon_sym_DOT_DOT] = ACTIONS(3626), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3628), + [anon_sym_DOT_DOT_LT] = ACTIONS(3628), + [anon_sym_null] = ACTIONS(3630), + [anon_sym_true] = ACTIONS(3632), + [anon_sym_false] = ACTIONS(3632), + [aux_sym__val_number_decimal_token1] = ACTIONS(3634), + [aux_sym__val_number_decimal_token2] = ACTIONS(3636), + [aux_sym__val_number_decimal_token3] = ACTIONS(3638), + [aux_sym__val_number_decimal_token4] = ACTIONS(3640), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3642), + [aux_sym__val_number_token5] = ACTIONS(3642), + [aux_sym__val_number_token6] = ACTIONS(3642), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3644), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3538), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1197] = { + [sym_expr_parenthesized] = STATE(4511), + [sym_val_range] = STATE(5100), + [sym__val_range] = STATE(7588), + [sym__val_range_with_end] = STATE(7327), + [sym__value] = STATE(5100), + [sym_val_nothing] = STATE(4275), + [sym_val_bool] = STATE(4647), + [sym_val_variable] = STATE(4480), + [sym_val_number] = STATE(4275), + [sym__val_number_decimal] = STATE(4005), + [sym__val_number] = STATE(4276), + [sym_val_duration] = STATE(4275), + [sym_val_filesize] = STATE(4275), + [sym_val_binary] = STATE(4275), + [sym_val_string] = STATE(4275), + [sym__raw_str] = STATE(4206), + [sym__str_double_quotes] = STATE(4206), + [sym_val_interpolated] = STATE(4275), + [sym__inter_single_quotes] = STATE(5061), + [sym__inter_double_quotes] = STATE(5062), + [sym_val_list] = STATE(4275), + [sym_val_record] = STATE(4275), + [sym_val_table] = STATE(4275), + [sym_val_closure] = STATE(4275), + [sym__unquoted_in_record] = STATE(4574), + [sym__unquoted_in_record_with_expr] = STATE(5100), + [sym__unquoted_anonymous_prefix] = STATE(7134), [sym_comment] = STATE(1197), - [anon_sym_STAR_STAR] = ACTIONS(3054), - [anon_sym_PLUS_PLUS] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3056), - [anon_sym_SLASH] = ACTIONS(3056), - [anon_sym_mod] = ACTIONS(3054), - [anon_sym_SLASH_SLASH] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(3056), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_bit_DASHshl] = ACTIONS(3054), - [anon_sym_bit_DASHshr] = ACTIONS(3054), - [anon_sym_EQ_TILDE] = ACTIONS(3054), - [anon_sym_BANG_TILDE] = ACTIONS(3054), - [anon_sym_bit_DASHand] = ACTIONS(3054), - [anon_sym_bit_DASHxor] = ACTIONS(3054), - [anon_sym_bit_DASHor] = ACTIONS(3054), - [anon_sym_and] = ACTIONS(3054), - [anon_sym_xor] = ACTIONS(3054), - [anon_sym_or] = ACTIONS(3054), - [anon_sym_in] = ACTIONS(3054), - [anon_sym_not_DASHin] = ACTIONS(3054), - [anon_sym_starts_DASHwith] = ACTIONS(3054), - [anon_sym_ends_DASHwith] = ACTIONS(3054), - [anon_sym_EQ_EQ] = ACTIONS(3054), - [anon_sym_BANG_EQ] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_LT_EQ] = ACTIONS(3054), - [anon_sym_GT] = ACTIONS(3056), - [anon_sym_GT_EQ] = ACTIONS(3054), - [aux_sym_cmd_identifier_token41] = ACTIONS(3058), - [sym__newline] = ACTIONS(1638), - [anon_sym_SEMI] = ACTIONS(1638), - [anon_sym_PIPE] = ACTIONS(1638), - [anon_sym_err_GT_PIPE] = ACTIONS(1638), - [anon_sym_out_GT_PIPE] = ACTIONS(1638), - [anon_sym_e_GT_PIPE] = ACTIONS(1638), - [anon_sym_o_GT_PIPE] = ACTIONS(1638), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1638), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1638), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1638), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1638), - [anon_sym_GT2] = ACTIONS(1638), - [anon_sym_DASH2] = ACTIONS(1638), - [anon_sym_in2] = ACTIONS(1638), - [anon_sym_RBRACE] = ACTIONS(1638), - [anon_sym_STAR2] = ACTIONS(1638), - [anon_sym_and2] = ACTIONS(1638), - [anon_sym_xor2] = ACTIONS(1638), - [anon_sym_or2] = ACTIONS(1638), - [anon_sym_not_DASHin2] = ACTIONS(1638), - [anon_sym_starts_DASHwith2] = ACTIONS(1638), - [anon_sym_ends_DASHwith2] = ACTIONS(1638), - [anon_sym_EQ_EQ2] = ACTIONS(1638), - [anon_sym_BANG_EQ2] = ACTIONS(1638), - [anon_sym_LT2] = ACTIONS(1638), - [anon_sym_LT_EQ2] = ACTIONS(1638), - [anon_sym_GT_EQ2] = ACTIONS(1638), - [anon_sym_EQ_TILDE2] = ACTIONS(1638), - [anon_sym_BANG_TILDE2] = ACTIONS(1638), - [anon_sym_STAR_STAR2] = ACTIONS(1638), - [anon_sym_PLUS_PLUS2] = ACTIONS(1638), - [anon_sym_SLASH2] = ACTIONS(1638), - [anon_sym_mod2] = ACTIONS(1638), - [anon_sym_SLASH_SLASH2] = ACTIONS(1638), - [anon_sym_PLUS2] = ACTIONS(1638), - [anon_sym_bit_DASHshl2] = ACTIONS(1638), - [anon_sym_bit_DASHshr2] = ACTIONS(1638), - [anon_sym_bit_DASHand2] = ACTIONS(1638), - [anon_sym_bit_DASHxor2] = ACTIONS(1638), - [anon_sym_bit_DASHor2] = ACTIONS(1638), - [anon_sym_DOT_DOT2] = ACTIONS(3044), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3046), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3046), - [sym_filesize_unit] = ACTIONS(3816), - [sym_duration_unit] = ACTIONS(3818), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(1200), + [sym__newline] = ACTIONS(3650), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_LPAREN] = ACTIONS(3654), + [anon_sym_DOLLAR] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3658), + [anon_sym_DOT_DOT] = ACTIONS(3660), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3662), + [anon_sym_DOT_DOT_LT] = ACTIONS(3662), + [anon_sym_null] = ACTIONS(3664), + [anon_sym_true] = ACTIONS(3666), + [anon_sym_false] = ACTIONS(3666), + [aux_sym__val_number_decimal_token1] = ACTIONS(3668), + [aux_sym__val_number_decimal_token2] = ACTIONS(3670), + [aux_sym__val_number_decimal_token3] = ACTIONS(3672), + [aux_sym__val_number_decimal_token4] = ACTIONS(3674), + [aux_sym__val_number_token1] = ACTIONS(3676), + [aux_sym__val_number_token2] = ACTIONS(3676), + [aux_sym__val_number_token3] = ACTIONS(3676), + [aux_sym__val_number_token4] = ACTIONS(3678), + [aux_sym__val_number_token5] = ACTIONS(3678), + [aux_sym__val_number_token6] = ACTIONS(3678), + [anon_sym_0b] = ACTIONS(3680), + [anon_sym_0o] = ACTIONS(3682), + [anon_sym_0x] = ACTIONS(3682), + [sym_val_date] = ACTIONS(3684), + [anon_sym_DQUOTE] = ACTIONS(3686), + [sym__str_single_quotes] = ACTIONS(3688), + [sym__str_back_ticks] = ACTIONS(3688), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3690), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3692), + [anon_sym_err_GT] = ACTIONS(3694), + [anon_sym_out_GT] = ACTIONS(3694), + [anon_sym_e_GT] = ACTIONS(3694), + [anon_sym_o_GT] = ACTIONS(3694), + [anon_sym_err_PLUSout_GT] = ACTIONS(3694), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3694), + [anon_sym_o_PLUSe_GT] = ACTIONS(3694), + [anon_sym_e_PLUSo_GT] = ACTIONS(3694), + [anon_sym_err_GT_GT] = ACTIONS(3696), + [anon_sym_out_GT_GT] = ACTIONS(3696), + [anon_sym_e_GT_GT] = ACTIONS(3696), + [anon_sym_o_GT_GT] = ACTIONS(3696), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3696), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3696), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3696), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3696), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3698), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3700), }, [1198] = { [sym_comment] = STATE(1198), - [anon_sym_STAR_STAR] = ACTIONS(1552), - [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1550), - [anon_sym_SLASH] = ACTIONS(1550), - [anon_sym_mod] = ACTIONS(1552), - [anon_sym_SLASH_SLASH] = ACTIONS(1552), - [anon_sym_PLUS] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1552), - [anon_sym_bit_DASHshl] = ACTIONS(1552), - [anon_sym_bit_DASHshr] = ACTIONS(1552), - [anon_sym_EQ_TILDE] = ACTIONS(1552), - [anon_sym_BANG_TILDE] = ACTIONS(1552), - [anon_sym_bit_DASHand] = ACTIONS(1552), - [anon_sym_bit_DASHxor] = ACTIONS(1552), - [anon_sym_bit_DASHor] = ACTIONS(1552), - [anon_sym_and] = ACTIONS(1552), - [anon_sym_xor] = ACTIONS(1552), - [anon_sym_or] = ACTIONS(1552), - [anon_sym_in] = ACTIONS(1552), - [anon_sym_not_DASHin] = ACTIONS(1552), - [anon_sym_starts_DASHwith] = ACTIONS(1552), - [anon_sym_ends_DASHwith] = ACTIONS(1552), - [anon_sym_EQ_EQ] = ACTIONS(1552), - [anon_sym_BANG_EQ] = ACTIONS(1552), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_LT_EQ] = ACTIONS(1552), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_GT_EQ] = ACTIONS(1552), - [aux_sym_cmd_identifier_token41] = ACTIONS(1550), - [sym__newline] = ACTIONS(1550), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_err_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_GT_PIPE] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1550), - [anon_sym_GT2] = ACTIONS(1550), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_in2] = ACTIONS(1550), - [anon_sym_STAR2] = ACTIONS(1550), - [anon_sym_and2] = ACTIONS(1550), - [anon_sym_xor2] = ACTIONS(1550), - [anon_sym_or2] = ACTIONS(1550), - [anon_sym_not_DASHin2] = ACTIONS(1550), - [anon_sym_starts_DASHwith2] = ACTIONS(1550), - [anon_sym_ends_DASHwith2] = ACTIONS(1550), - [anon_sym_EQ_EQ2] = ACTIONS(1550), - [anon_sym_BANG_EQ2] = ACTIONS(1550), - [anon_sym_LT2] = ACTIONS(1550), - [anon_sym_LT_EQ2] = ACTIONS(1550), - [anon_sym_GT_EQ2] = ACTIONS(1550), - [anon_sym_EQ_TILDE2] = ACTIONS(1550), - [anon_sym_BANG_TILDE2] = ACTIONS(1550), - [anon_sym_STAR_STAR2] = ACTIONS(1550), - [anon_sym_PLUS_PLUS2] = ACTIONS(1550), - [anon_sym_SLASH2] = ACTIONS(1550), - [anon_sym_mod2] = ACTIONS(1550), - [anon_sym_SLASH_SLASH2] = ACTIONS(1550), - [anon_sym_PLUS2] = ACTIONS(1550), - [anon_sym_bit_DASHshl2] = ACTIONS(1550), - [anon_sym_bit_DASHshr2] = ACTIONS(1550), - [anon_sym_bit_DASHand2] = ACTIONS(1550), - [anon_sym_bit_DASHxor2] = ACTIONS(1550), - [anon_sym_bit_DASHor2] = ACTIONS(1550), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT] = ACTIONS(3820), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [aux_sym__immediate_decimal_token2] = ACTIONS(3822), - [sym_filesize_unit] = ACTIONS(1550), - [sym_duration_unit] = ACTIONS(1552), + [aux_sym_cmd_identifier_token1] = ACTIONS(3702), + [aux_sym_cmd_identifier_token2] = ACTIONS(3702), + [aux_sym_cmd_identifier_token3] = ACTIONS(3702), + [aux_sym_cmd_identifier_token4] = ACTIONS(3702), + [aux_sym_cmd_identifier_token5] = ACTIONS(3702), + [aux_sym_cmd_identifier_token6] = ACTIONS(3702), + [aux_sym_cmd_identifier_token7] = ACTIONS(3702), + [aux_sym_cmd_identifier_token8] = ACTIONS(3702), + [aux_sym_cmd_identifier_token9] = ACTIONS(3702), + [aux_sym_cmd_identifier_token10] = ACTIONS(3702), + [aux_sym_cmd_identifier_token11] = ACTIONS(3702), + [aux_sym_cmd_identifier_token12] = ACTIONS(3702), + [aux_sym_cmd_identifier_token13] = ACTIONS(3702), + [aux_sym_cmd_identifier_token14] = ACTIONS(3702), + [aux_sym_cmd_identifier_token15] = ACTIONS(3702), + [aux_sym_cmd_identifier_token16] = ACTIONS(3702), + [aux_sym_cmd_identifier_token17] = ACTIONS(3702), + [aux_sym_cmd_identifier_token18] = ACTIONS(3702), + [aux_sym_cmd_identifier_token19] = ACTIONS(3702), + [aux_sym_cmd_identifier_token20] = ACTIONS(3702), + [aux_sym_cmd_identifier_token21] = ACTIONS(3702), + [aux_sym_cmd_identifier_token22] = ACTIONS(3702), + [aux_sym_cmd_identifier_token23] = ACTIONS(3702), + [aux_sym_cmd_identifier_token24] = ACTIONS(3702), + [aux_sym_cmd_identifier_token25] = ACTIONS(3702), + [aux_sym_cmd_identifier_token26] = ACTIONS(3702), + [aux_sym_cmd_identifier_token27] = ACTIONS(3702), + [aux_sym_cmd_identifier_token28] = ACTIONS(3702), + [aux_sym_cmd_identifier_token29] = ACTIONS(3702), + [aux_sym_cmd_identifier_token30] = ACTIONS(3702), + [aux_sym_cmd_identifier_token31] = ACTIONS(3702), + [aux_sym_cmd_identifier_token32] = ACTIONS(3702), + [aux_sym_cmd_identifier_token33] = ACTIONS(3702), + [aux_sym_cmd_identifier_token34] = ACTIONS(3702), + [aux_sym_cmd_identifier_token35] = ACTIONS(3702), + [aux_sym_cmd_identifier_token36] = ACTIONS(3702), + [aux_sym_cmd_identifier_token37] = ACTIONS(3702), + [aux_sym_cmd_identifier_token38] = ACTIONS(3702), + [aux_sym_cmd_identifier_token39] = ACTIONS(3702), + [aux_sym_cmd_identifier_token40] = ACTIONS(3702), + [sym__space] = ACTIONS(3704), + [anon_sym_LBRACK] = ACTIONS(3702), + [anon_sym_LPAREN] = ACTIONS(3702), + [anon_sym_DOLLAR] = ACTIONS(3702), + [anon_sym_DASH2] = ACTIONS(3702), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_DOT_DOT] = ACTIONS(3702), + [aux_sym_expr_unary_token1] = ACTIONS(3702), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3702), + [anon_sym_DOT_DOT_LT] = ACTIONS(3702), + [anon_sym_null] = ACTIONS(3702), + [anon_sym_true] = ACTIONS(3702), + [anon_sym_false] = ACTIONS(3702), + [aux_sym__val_number_decimal_token1] = ACTIONS(3702), + [aux_sym__val_number_decimal_token2] = ACTIONS(3702), + [aux_sym__val_number_decimal_token3] = ACTIONS(3702), + [aux_sym__val_number_decimal_token4] = ACTIONS(3702), + [aux_sym__val_number_token1] = ACTIONS(3702), + [aux_sym__val_number_token2] = ACTIONS(3702), + [aux_sym__val_number_token3] = ACTIONS(3702), + [aux_sym__val_number_token4] = ACTIONS(3702), + [aux_sym__val_number_token5] = ACTIONS(3702), + [aux_sym__val_number_token6] = ACTIONS(3702), + [anon_sym_0b] = ACTIONS(3702), + [anon_sym_0o] = ACTIONS(3702), + [anon_sym_0x] = ACTIONS(3702), + [sym_val_date] = ACTIONS(3702), + [anon_sym_DQUOTE] = ACTIONS(3702), + [sym__str_single_quotes] = ACTIONS(3702), + [sym__str_back_ticks] = ACTIONS(3702), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3702), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3702), + [aux_sym_env_var_token1] = ACTIONS(3702), + [anon_sym_CARET] = ACTIONS(3702), + [aux_sym_command_token1] = ACTIONS(3702), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(3704), }, [1199] = { + [sym_match_arm] = STATE(7275), + [sym_default_arm] = STATE(7275), + [sym_match_pattern] = STATE(7845), + [sym__match_pattern] = STATE(6156), + [sym__match_pattern_expression] = STATE(7277), + [sym__match_pattern_value] = STATE(7278), + [sym__match_pattern_list] = STATE(7279), + [sym__match_pattern_record] = STATE(7280), + [sym_expr_parenthesized] = STATE(5921), + [sym_val_range] = STATE(7278), + [sym__val_range] = STATE(7833), + [sym_val_nothing] = STATE(7282), + [sym_val_bool] = STATE(6697), + [sym_val_variable] = STATE(5881), + [sym_val_number] = STATE(7282), + [sym__val_number_decimal] = STATE(5377), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(7282), + [sym_val_filesize] = STATE(7282), + [sym_val_binary] = STATE(7282), + [sym_val_string] = STATE(7282), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_table] = STATE(7282), + [sym_unquoted] = STATE(6981), + [sym__unquoted_anonymous_prefix] = STATE(7649), [sym_comment] = STATE(1199), - [anon_sym_STAR_STAR] = ACTIONS(1552), - [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1550), - [anon_sym_SLASH] = ACTIONS(1550), - [anon_sym_mod] = ACTIONS(1552), - [anon_sym_SLASH_SLASH] = ACTIONS(1552), - [anon_sym_PLUS] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1552), - [anon_sym_bit_DASHshl] = ACTIONS(1552), - [anon_sym_bit_DASHshr] = ACTIONS(1552), - [anon_sym_EQ_TILDE] = ACTIONS(1552), - [anon_sym_BANG_TILDE] = ACTIONS(1552), - [anon_sym_bit_DASHand] = ACTIONS(1552), - [anon_sym_bit_DASHxor] = ACTIONS(1552), - [anon_sym_bit_DASHor] = ACTIONS(1552), - [anon_sym_and] = ACTIONS(1552), - [anon_sym_xor] = ACTIONS(1552), - [anon_sym_or] = ACTIONS(1552), - [anon_sym_in] = ACTIONS(1552), - [anon_sym_not_DASHin] = ACTIONS(1552), - [anon_sym_starts_DASHwith] = ACTIONS(1552), - [anon_sym_ends_DASHwith] = ACTIONS(1552), - [anon_sym_EQ_EQ] = ACTIONS(1552), - [anon_sym_BANG_EQ] = ACTIONS(1552), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_LT_EQ] = ACTIONS(1552), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_GT_EQ] = ACTIONS(1552), - [aux_sym_cmd_identifier_token41] = ACTIONS(1550), - [sym__newline] = ACTIONS(1550), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_err_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_GT_PIPE] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1550), - [anon_sym_GT2] = ACTIONS(1550), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_in2] = ACTIONS(1550), - [anon_sym_STAR2] = ACTIONS(1550), - [anon_sym_and2] = ACTIONS(1550), - [anon_sym_xor2] = ACTIONS(1550), - [anon_sym_or2] = ACTIONS(1550), - [anon_sym_not_DASHin2] = ACTIONS(1550), - [anon_sym_starts_DASHwith2] = ACTIONS(1550), - [anon_sym_ends_DASHwith2] = ACTIONS(1550), - [anon_sym_EQ_EQ2] = ACTIONS(1550), - [anon_sym_BANG_EQ2] = ACTIONS(1550), - [anon_sym_LT2] = ACTIONS(1550), - [anon_sym_LT_EQ2] = ACTIONS(1550), - [anon_sym_GT_EQ2] = ACTIONS(1550), - [anon_sym_EQ_TILDE2] = ACTIONS(1550), - [anon_sym_BANG_TILDE2] = ACTIONS(1550), - [anon_sym_STAR_STAR2] = ACTIONS(1550), - [anon_sym_PLUS_PLUS2] = ACTIONS(1550), - [anon_sym_SLASH2] = ACTIONS(1550), - [anon_sym_mod2] = ACTIONS(1550), - [anon_sym_SLASH_SLASH2] = ACTIONS(1550), - [anon_sym_PLUS2] = ACTIONS(1550), - [anon_sym_bit_DASHshl2] = ACTIONS(1550), - [anon_sym_bit_DASHshr2] = ACTIONS(1550), - [anon_sym_bit_DASHand2] = ACTIONS(1550), - [anon_sym_bit_DASHxor2] = ACTIONS(1550), - [anon_sym_bit_DASHor2] = ACTIONS(1550), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [aux_sym__immediate_decimal_token2] = ACTIONS(3692), - [sym_filesize_unit] = ACTIONS(1550), - [sym_duration_unit] = ACTIONS(1552), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(1204), + [aux_sym_ctrl_match_repeat1] = STATE(1221), + [sym__newline] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(3616), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym_RBRACE] = ACTIONS(3706), + [anon_sym__] = ACTIONS(3624), + [anon_sym_DOT_DOT] = ACTIONS(3626), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3628), + [anon_sym_DOT_DOT_LT] = ACTIONS(3628), + [anon_sym_null] = ACTIONS(3630), + [anon_sym_true] = ACTIONS(3632), + [anon_sym_false] = ACTIONS(3632), + [aux_sym__val_number_decimal_token1] = ACTIONS(3634), + [aux_sym__val_number_decimal_token2] = ACTIONS(3636), + [aux_sym__val_number_decimal_token3] = ACTIONS(3638), + [aux_sym__val_number_decimal_token4] = ACTIONS(3640), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3642), + [aux_sym__val_number_token5] = ACTIONS(3642), + [aux_sym__val_number_token6] = ACTIONS(3642), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3644), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3538), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1200] = { - [sym_expr_parenthesized] = STATE(492), - [sym_val_range] = STATE(672), - [sym__val_range] = STATE(7473), - [sym__val_range_with_end] = STATE(7406), - [sym__value] = STATE(672), - [sym_val_nothing] = STATE(637), - [sym_val_bool] = STATE(528), - [sym_val_variable] = STATE(472), - [sym_val_number] = STATE(637), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(665), - [sym_val_duration] = STATE(637), - [sym_val_filesize] = STATE(637), - [sym_val_binary] = STATE(637), - [sym_val_string] = STATE(637), - [sym__raw_str] = STATE(658), - [sym__str_double_quotes] = STATE(658), - [sym_val_interpolated] = STATE(637), - [sym__inter_single_quotes] = STATE(610), - [sym__inter_double_quotes] = STATE(611), - [sym_val_list] = STATE(637), - [sym_val_record] = STATE(637), - [sym_val_table] = STATE(637), - [sym_val_closure] = STATE(637), - [sym__unquoted_in_record] = STATE(546), - [sym__unquoted_in_record_with_expr] = STATE(672), - [sym__unquoted_anonymous_prefix] = STATE(6997), + [sym_expr_parenthesized] = STATE(4530), + [sym_val_range] = STATE(5003), + [sym__val_range] = STATE(7588), + [sym__val_range_with_end] = STATE(7327), + [sym__value] = STATE(5003), + [sym_val_nothing] = STATE(4275), + [sym_val_bool] = STATE(4647), + [sym_val_variable] = STATE(4480), + [sym_val_number] = STATE(4275), + [sym__val_number_decimal] = STATE(4005), + [sym__val_number] = STATE(4276), + [sym_val_duration] = STATE(4275), + [sym_val_filesize] = STATE(4275), + [sym_val_binary] = STATE(4275), + [sym_val_string] = STATE(4275), + [sym__raw_str] = STATE(4206), + [sym__str_double_quotes] = STATE(4206), + [sym_val_interpolated] = STATE(4275), + [sym__inter_single_quotes] = STATE(5061), + [sym__inter_double_quotes] = STATE(5062), + [sym_val_list] = STATE(4275), + [sym_val_record] = STATE(4275), + [sym_val_table] = STATE(4275), + [sym_val_closure] = STATE(4275), + [sym__unquoted_in_record] = STATE(4700), + [sym__unquoted_in_record_with_expr] = STATE(5003), + [sym__unquoted_anonymous_prefix] = STATE(7134), [sym_comment] = STATE(1200), - [anon_sym_LBRACK] = ACTIONS(3694), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_DOLLAR] = ACTIONS(1463), - [anon_sym_LBRACE] = ACTIONS(3698), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3702), - [anon_sym_DOT_DOT_LT] = ACTIONS(3702), - [anon_sym_null] = ACTIONS(3704), - [anon_sym_true] = ACTIONS(3706), - [anon_sym_false] = ACTIONS(3706), - [aux_sym__val_number_decimal_token1] = ACTIONS(3708), - [aux_sym__val_number_decimal_token2] = ACTIONS(3710), - [aux_sym__val_number_decimal_token3] = ACTIONS(3712), - [aux_sym__val_number_decimal_token4] = ACTIONS(3714), - [aux_sym__val_number_token1] = ACTIONS(3716), - [aux_sym__val_number_token2] = ACTIONS(3716), - [aux_sym__val_number_token3] = ACTIONS(3716), - [aux_sym__val_number_token4] = ACTIONS(3718), - [aux_sym__val_number_token5] = ACTIONS(3718), - [aux_sym__val_number_token6] = ACTIONS(3718), - [anon_sym_0b] = ACTIONS(3720), - [anon_sym_0o] = ACTIONS(3722), - [anon_sym_0x] = ACTIONS(3722), - [sym_val_date] = ACTIONS(3724), - [anon_sym_DQUOTE] = ACTIONS(3726), - [sym__str_single_quotes] = ACTIONS(3728), - [sym__str_back_ticks] = ACTIONS(3728), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3730), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3732), - [anon_sym_err_GT] = ACTIONS(3618), - [anon_sym_out_GT] = ACTIONS(3618), - [anon_sym_e_GT] = ACTIONS(3618), - [anon_sym_o_GT] = ACTIONS(3618), - [anon_sym_err_PLUSout_GT] = ACTIONS(3618), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3618), - [anon_sym_o_PLUSe_GT] = ACTIONS(3618), - [anon_sym_e_PLUSo_GT] = ACTIONS(3618), - [anon_sym_err_GT_GT] = ACTIONS(3620), - [anon_sym_out_GT_GT] = ACTIONS(3620), - [anon_sym_e_GT_GT] = ACTIONS(3620), - [anon_sym_o_GT_GT] = ACTIONS(3620), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3620), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3620), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3620), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3620), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3734), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3736), + [aux_sym_shebang_repeat1] = STATE(3002), + [sym__newline] = ACTIONS(3650), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_LPAREN] = ACTIONS(3654), + [anon_sym_DOLLAR] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3658), + [anon_sym_DOT_DOT] = ACTIONS(3660), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3662), + [anon_sym_DOT_DOT_LT] = ACTIONS(3662), + [anon_sym_null] = ACTIONS(3664), + [anon_sym_true] = ACTIONS(3666), + [anon_sym_false] = ACTIONS(3666), + [aux_sym__val_number_decimal_token1] = ACTIONS(3668), + [aux_sym__val_number_decimal_token2] = ACTIONS(3670), + [aux_sym__val_number_decimal_token3] = ACTIONS(3672), + [aux_sym__val_number_decimal_token4] = ACTIONS(3674), + [aux_sym__val_number_token1] = ACTIONS(3676), + [aux_sym__val_number_token2] = ACTIONS(3676), + [aux_sym__val_number_token3] = ACTIONS(3676), + [aux_sym__val_number_token4] = ACTIONS(3678), + [aux_sym__val_number_token5] = ACTIONS(3678), + [aux_sym__val_number_token6] = ACTIONS(3678), + [anon_sym_0b] = ACTIONS(3680), + [anon_sym_0o] = ACTIONS(3682), + [anon_sym_0x] = ACTIONS(3682), + [sym_val_date] = ACTIONS(3684), + [anon_sym_DQUOTE] = ACTIONS(3686), + [sym__str_single_quotes] = ACTIONS(3688), + [sym__str_back_ticks] = ACTIONS(3688), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3690), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3692), + [anon_sym_err_GT] = ACTIONS(3694), + [anon_sym_out_GT] = ACTIONS(3694), + [anon_sym_e_GT] = ACTIONS(3694), + [anon_sym_o_GT] = ACTIONS(3694), + [anon_sym_err_PLUSout_GT] = ACTIONS(3694), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3694), + [anon_sym_o_PLUSe_GT] = ACTIONS(3694), + [anon_sym_e_PLUSo_GT] = ACTIONS(3694), + [anon_sym_err_GT_GT] = ACTIONS(3696), + [anon_sym_out_GT_GT] = ACTIONS(3696), + [anon_sym_e_GT_GT] = ACTIONS(3696), + [anon_sym_o_GT_GT] = ACTIONS(3696), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3696), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3696), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3696), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3696), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3698), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3700), }, [1201] = { - [sym_expr_parenthesized] = STATE(539), - [sym_val_range] = STATE(742), - [sym__val_range] = STATE(7524), - [sym__val_range_with_end] = STATE(7379), - [sym__value] = STATE(742), - [sym_val_nothing] = STATE(751), - [sym_val_bool] = STATE(565), - [sym_val_variable] = STATE(522), - [sym_val_number] = STATE(751), - [sym__val_number_decimal] = STATE(354), - [sym__val_number] = STATE(709), - [sym_val_duration] = STATE(751), - [sym_val_filesize] = STATE(751), - [sym_val_binary] = STATE(751), - [sym_val_string] = STATE(751), - [sym__raw_str] = STATE(708), - [sym__str_double_quotes] = STATE(708), - [sym_val_interpolated] = STATE(751), - [sym__inter_single_quotes] = STATE(744), - [sym__inter_double_quotes] = STATE(746), - [sym_val_list] = STATE(751), - [sym_val_record] = STATE(751), - [sym_val_table] = STATE(751), - [sym_val_closure] = STATE(751), - [sym__unquoted_in_record] = STATE(573), - [sym__unquoted_in_record_with_expr] = STATE(742), - [sym__unquoted_anonymous_prefix] = STATE(6858), + [sym_expr_parenthesized] = STATE(4509), + [sym_val_range] = STATE(5033), + [sym__val_range] = STATE(7588), + [sym__val_range_with_end] = STATE(7327), + [sym__value] = STATE(5033), + [sym_val_nothing] = STATE(4275), + [sym_val_bool] = STATE(4647), + [sym_val_variable] = STATE(4480), + [sym_val_number] = STATE(4275), + [sym__val_number_decimal] = STATE(4005), + [sym__val_number] = STATE(4276), + [sym_val_duration] = STATE(4275), + [sym_val_filesize] = STATE(4275), + [sym_val_binary] = STATE(4275), + [sym_val_string] = STATE(4275), + [sym__raw_str] = STATE(4206), + [sym__str_double_quotes] = STATE(4206), + [sym_val_interpolated] = STATE(4275), + [sym__inter_single_quotes] = STATE(5061), + [sym__inter_double_quotes] = STATE(5062), + [sym_val_list] = STATE(4275), + [sym_val_record] = STATE(4275), + [sym_val_table] = STATE(4275), + [sym_val_closure] = STATE(4275), + [sym__unquoted_in_record] = STATE(4571), + [sym__unquoted_in_record_with_expr] = STATE(5033), + [sym__unquoted_anonymous_prefix] = STATE(7134), [sym_comment] = STATE(1201), - [anon_sym_LBRACK] = ACTIONS(3760), - [anon_sym_LPAREN] = ACTIONS(3762), - [anon_sym_DOLLAR] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(3764), - [anon_sym_DOT_DOT] = ACTIONS(3766), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3768), - [anon_sym_DOT_DOT_LT] = ACTIONS(3768), - [anon_sym_null] = ACTIONS(3770), - [anon_sym_true] = ACTIONS(3772), - [anon_sym_false] = ACTIONS(3772), - [aux_sym__val_number_decimal_token1] = ACTIONS(3774), - [aux_sym__val_number_decimal_token2] = ACTIONS(3776), - [aux_sym__val_number_decimal_token3] = ACTIONS(3778), - [aux_sym__val_number_decimal_token4] = ACTIONS(3780), - [aux_sym__val_number_token1] = ACTIONS(3782), - [aux_sym__val_number_token2] = ACTIONS(3782), - [aux_sym__val_number_token3] = ACTIONS(3782), - [aux_sym__val_number_token4] = ACTIONS(3784), - [aux_sym__val_number_token5] = ACTIONS(3784), - [aux_sym__val_number_token6] = ACTIONS(3784), - [anon_sym_0b] = ACTIONS(3786), - [anon_sym_0o] = ACTIONS(3788), - [anon_sym_0x] = ACTIONS(3788), - [sym_val_date] = ACTIONS(3790), - [anon_sym_DQUOTE] = ACTIONS(3792), - [sym__str_single_quotes] = ACTIONS(3794), - [sym__str_back_ticks] = ACTIONS(3794), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3796), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3798), - [anon_sym_err_GT] = ACTIONS(3618), - [anon_sym_out_GT] = ACTIONS(3618), - [anon_sym_e_GT] = ACTIONS(3618), - [anon_sym_o_GT] = ACTIONS(3618), - [anon_sym_err_PLUSout_GT] = ACTIONS(3618), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3618), - [anon_sym_o_PLUSe_GT] = ACTIONS(3618), - [anon_sym_e_PLUSo_GT] = ACTIONS(3618), - [anon_sym_err_GT_GT] = ACTIONS(3620), - [anon_sym_out_GT_GT] = ACTIONS(3620), - [anon_sym_e_GT_GT] = ACTIONS(3620), - [anon_sym_o_GT_GT] = ACTIONS(3620), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3620), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3620), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3620), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3620), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3800), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3802), + [aux_sym_shebang_repeat1] = STATE(3002), + [sym__newline] = ACTIONS(3650), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_LPAREN] = ACTIONS(3654), + [anon_sym_DOLLAR] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3658), + [anon_sym_DOT_DOT] = ACTIONS(3660), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3662), + [anon_sym_DOT_DOT_LT] = ACTIONS(3662), + [anon_sym_null] = ACTIONS(3664), + [anon_sym_true] = ACTIONS(3666), + [anon_sym_false] = ACTIONS(3666), + [aux_sym__val_number_decimal_token1] = ACTIONS(3668), + [aux_sym__val_number_decimal_token2] = ACTIONS(3670), + [aux_sym__val_number_decimal_token3] = ACTIONS(3672), + [aux_sym__val_number_decimal_token4] = ACTIONS(3674), + [aux_sym__val_number_token1] = ACTIONS(3676), + [aux_sym__val_number_token2] = ACTIONS(3676), + [aux_sym__val_number_token3] = ACTIONS(3676), + [aux_sym__val_number_token4] = ACTIONS(3678), + [aux_sym__val_number_token5] = ACTIONS(3678), + [aux_sym__val_number_token6] = ACTIONS(3678), + [anon_sym_0b] = ACTIONS(3680), + [anon_sym_0o] = ACTIONS(3682), + [anon_sym_0x] = ACTIONS(3682), + [sym_val_date] = ACTIONS(3684), + [anon_sym_DQUOTE] = ACTIONS(3686), + [sym__str_single_quotes] = ACTIONS(3688), + [sym__str_back_ticks] = ACTIONS(3688), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3690), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3692), + [anon_sym_err_GT] = ACTIONS(3694), + [anon_sym_out_GT] = ACTIONS(3694), + [anon_sym_e_GT] = ACTIONS(3694), + [anon_sym_o_GT] = ACTIONS(3694), + [anon_sym_err_PLUSout_GT] = ACTIONS(3694), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3694), + [anon_sym_o_PLUSe_GT] = ACTIONS(3694), + [anon_sym_e_PLUSo_GT] = ACTIONS(3694), + [anon_sym_err_GT_GT] = ACTIONS(3696), + [anon_sym_out_GT_GT] = ACTIONS(3696), + [anon_sym_e_GT_GT] = ACTIONS(3696), + [anon_sym_o_GT_GT] = ACTIONS(3696), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3696), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3696), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3696), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3696), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3698), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3700), }, [1202] = { + [sym_expr_parenthesized] = STATE(4530), + [sym_val_range] = STATE(5003), + [sym__val_range] = STATE(7588), + [sym__val_range_with_end] = STATE(7327), + [sym__value] = STATE(5003), + [sym_val_nothing] = STATE(4275), + [sym_val_bool] = STATE(4647), + [sym_val_variable] = STATE(4480), + [sym_val_number] = STATE(4275), + [sym__val_number_decimal] = STATE(4005), + [sym__val_number] = STATE(4276), + [sym_val_duration] = STATE(4275), + [sym_val_filesize] = STATE(4275), + [sym_val_binary] = STATE(4275), + [sym_val_string] = STATE(4275), + [sym__raw_str] = STATE(4206), + [sym__str_double_quotes] = STATE(4206), + [sym_val_interpolated] = STATE(4275), + [sym__inter_single_quotes] = STATE(5061), + [sym__inter_double_quotes] = STATE(5062), + [sym_val_list] = STATE(4275), + [sym_val_record] = STATE(4275), + [sym_val_table] = STATE(4275), + [sym_val_closure] = STATE(4275), + [sym__unquoted_in_record] = STATE(4700), + [sym__unquoted_in_record_with_expr] = STATE(5003), + [sym__unquoted_anonymous_prefix] = STATE(7134), [sym_comment] = STATE(1202), - [anon_sym_STAR_STAR] = ACTIONS(1682), - [anon_sym_PLUS_PLUS] = ACTIONS(1682), - [anon_sym_STAR] = ACTIONS(1680), - [anon_sym_SLASH] = ACTIONS(1680), - [anon_sym_mod] = ACTIONS(1682), - [anon_sym_SLASH_SLASH] = ACTIONS(1682), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_DASH] = ACTIONS(1682), - [anon_sym_bit_DASHshl] = ACTIONS(1682), - [anon_sym_bit_DASHshr] = ACTIONS(1682), - [anon_sym_EQ_TILDE] = ACTIONS(1682), - [anon_sym_BANG_TILDE] = ACTIONS(1682), - [anon_sym_bit_DASHand] = ACTIONS(1682), - [anon_sym_bit_DASHxor] = ACTIONS(1682), - [anon_sym_bit_DASHor] = ACTIONS(1682), - [anon_sym_and] = ACTIONS(1682), - [anon_sym_xor] = ACTIONS(1682), - [anon_sym_or] = ACTIONS(1682), - [anon_sym_in] = ACTIONS(1682), - [anon_sym_not_DASHin] = ACTIONS(1682), - [anon_sym_starts_DASHwith] = ACTIONS(1682), - [anon_sym_ends_DASHwith] = ACTIONS(1682), - [anon_sym_EQ_EQ] = ACTIONS(1682), - [anon_sym_BANG_EQ] = ACTIONS(1682), - [anon_sym_LT] = ACTIONS(1680), - [anon_sym_LT_EQ] = ACTIONS(1682), - [anon_sym_GT] = ACTIONS(1680), - [anon_sym_GT_EQ] = ACTIONS(1682), - [aux_sym_cmd_identifier_token41] = ACTIONS(1680), - [sym__newline] = ACTIONS(1680), - [anon_sym_SEMI] = ACTIONS(1680), - [anon_sym_PIPE] = ACTIONS(1680), - [anon_sym_err_GT_PIPE] = ACTIONS(1680), - [anon_sym_out_GT_PIPE] = ACTIONS(1680), - [anon_sym_e_GT_PIPE] = ACTIONS(1680), - [anon_sym_o_GT_PIPE] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1680), - [anon_sym_GT2] = ACTIONS(1680), - [anon_sym_DASH2] = ACTIONS(1680), - [anon_sym_in2] = ACTIONS(1680), - [anon_sym_STAR2] = ACTIONS(1680), - [anon_sym_and2] = ACTIONS(1680), - [anon_sym_xor2] = ACTIONS(1680), - [anon_sym_or2] = ACTIONS(1680), - [anon_sym_not_DASHin2] = ACTIONS(1680), - [anon_sym_starts_DASHwith2] = ACTIONS(1680), - [anon_sym_ends_DASHwith2] = ACTIONS(1680), - [anon_sym_EQ_EQ2] = ACTIONS(1680), - [anon_sym_BANG_EQ2] = ACTIONS(1680), - [anon_sym_LT2] = ACTIONS(1680), - [anon_sym_LT_EQ2] = ACTIONS(1680), - [anon_sym_GT_EQ2] = ACTIONS(1680), - [anon_sym_EQ_TILDE2] = ACTIONS(1680), - [anon_sym_BANG_TILDE2] = ACTIONS(1680), - [anon_sym_STAR_STAR2] = ACTIONS(1680), - [anon_sym_PLUS_PLUS2] = ACTIONS(1680), - [anon_sym_SLASH2] = ACTIONS(1680), - [anon_sym_mod2] = ACTIONS(1680), - [anon_sym_SLASH_SLASH2] = ACTIONS(1680), - [anon_sym_PLUS2] = ACTIONS(1680), - [anon_sym_bit_DASHshl2] = ACTIONS(1680), - [anon_sym_bit_DASHshr2] = ACTIONS(1680), - [anon_sym_bit_DASHand2] = ACTIONS(1680), - [anon_sym_bit_DASHxor2] = ACTIONS(1680), - [anon_sym_bit_DASHor2] = ACTIONS(1680), - [anon_sym_DOT_DOT2] = ACTIONS(1680), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1682), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1682), - [aux_sym__immediate_decimal_token2] = ACTIONS(3824), - [sym_filesize_unit] = ACTIONS(1680), - [sym_duration_unit] = ACTIONS(1682), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(1201), + [sym__newline] = ACTIONS(3650), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_LPAREN] = ACTIONS(3654), + [anon_sym_DOLLAR] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3658), + [anon_sym_DOT_DOT] = ACTIONS(3660), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3662), + [anon_sym_DOT_DOT_LT] = ACTIONS(3662), + [anon_sym_null] = ACTIONS(3664), + [anon_sym_true] = ACTIONS(3666), + [anon_sym_false] = ACTIONS(3666), + [aux_sym__val_number_decimal_token1] = ACTIONS(3668), + [aux_sym__val_number_decimal_token2] = ACTIONS(3670), + [aux_sym__val_number_decimal_token3] = ACTIONS(3672), + [aux_sym__val_number_decimal_token4] = ACTIONS(3674), + [aux_sym__val_number_token1] = ACTIONS(3676), + [aux_sym__val_number_token2] = ACTIONS(3676), + [aux_sym__val_number_token3] = ACTIONS(3676), + [aux_sym__val_number_token4] = ACTIONS(3678), + [aux_sym__val_number_token5] = ACTIONS(3678), + [aux_sym__val_number_token6] = ACTIONS(3678), + [anon_sym_0b] = ACTIONS(3680), + [anon_sym_0o] = ACTIONS(3682), + [anon_sym_0x] = ACTIONS(3682), + [sym_val_date] = ACTIONS(3684), + [anon_sym_DQUOTE] = ACTIONS(3686), + [sym__str_single_quotes] = ACTIONS(3688), + [sym__str_back_ticks] = ACTIONS(3688), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3690), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3692), + [anon_sym_err_GT] = ACTIONS(3694), + [anon_sym_out_GT] = ACTIONS(3694), + [anon_sym_e_GT] = ACTIONS(3694), + [anon_sym_o_GT] = ACTIONS(3694), + [anon_sym_err_PLUSout_GT] = ACTIONS(3694), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3694), + [anon_sym_o_PLUSe_GT] = ACTIONS(3694), + [anon_sym_e_PLUSo_GT] = ACTIONS(3694), + [anon_sym_err_GT_GT] = ACTIONS(3696), + [anon_sym_out_GT_GT] = ACTIONS(3696), + [anon_sym_e_GT_GT] = ACTIONS(3696), + [anon_sym_o_GT_GT] = ACTIONS(3696), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3696), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3696), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3696), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3696), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3698), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3700), }, [1203] = { - [sym_expr_parenthesized] = STATE(542), - [sym_val_range] = STATE(747), - [sym__val_range] = STATE(7524), - [sym__val_range_with_end] = STATE(7379), - [sym__value] = STATE(747), - [sym_val_nothing] = STATE(751), - [sym_val_bool] = STATE(565), - [sym_val_variable] = STATE(522), - [sym_val_number] = STATE(751), - [sym__val_number_decimal] = STATE(354), - [sym__val_number] = STATE(709), - [sym_val_duration] = STATE(751), - [sym_val_filesize] = STATE(751), - [sym_val_binary] = STATE(751), - [sym_val_string] = STATE(751), - [sym__raw_str] = STATE(708), - [sym__str_double_quotes] = STATE(708), - [sym_val_interpolated] = STATE(751), - [sym__inter_single_quotes] = STATE(744), - [sym__inter_double_quotes] = STATE(746), - [sym_val_list] = STATE(751), - [sym_val_record] = STATE(751), - [sym_val_table] = STATE(751), - [sym_val_closure] = STATE(751), - [sym__unquoted_in_record] = STATE(579), - [sym__unquoted_in_record_with_expr] = STATE(747), - [sym__unquoted_anonymous_prefix] = STATE(6858), [sym_comment] = STATE(1203), - [anon_sym_LBRACK] = ACTIONS(3760), - [anon_sym_LPAREN] = ACTIONS(3762), - [anon_sym_DOLLAR] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(3764), - [anon_sym_DOT_DOT] = ACTIONS(3766), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3768), - [anon_sym_DOT_DOT_LT] = ACTIONS(3768), - [anon_sym_null] = ACTIONS(3770), - [anon_sym_true] = ACTIONS(3772), - [anon_sym_false] = ACTIONS(3772), - [aux_sym__val_number_decimal_token1] = ACTIONS(3774), - [aux_sym__val_number_decimal_token2] = ACTIONS(3776), - [aux_sym__val_number_decimal_token3] = ACTIONS(3778), - [aux_sym__val_number_decimal_token4] = ACTIONS(3780), - [aux_sym__val_number_token1] = ACTIONS(3782), - [aux_sym__val_number_token2] = ACTIONS(3782), - [aux_sym__val_number_token3] = ACTIONS(3782), - [aux_sym__val_number_token4] = ACTIONS(3784), - [aux_sym__val_number_token5] = ACTIONS(3784), - [aux_sym__val_number_token6] = ACTIONS(3784), - [anon_sym_0b] = ACTIONS(3786), - [anon_sym_0o] = ACTIONS(3788), - [anon_sym_0x] = ACTIONS(3788), - [sym_val_date] = ACTIONS(3790), - [anon_sym_DQUOTE] = ACTIONS(3792), - [sym__str_single_quotes] = ACTIONS(3794), - [sym__str_back_ticks] = ACTIONS(3794), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3796), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3798), - [anon_sym_err_GT] = ACTIONS(3618), - [anon_sym_out_GT] = ACTIONS(3618), - [anon_sym_e_GT] = ACTIONS(3618), - [anon_sym_o_GT] = ACTIONS(3618), - [anon_sym_err_PLUSout_GT] = ACTIONS(3618), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3618), - [anon_sym_o_PLUSe_GT] = ACTIONS(3618), - [anon_sym_e_PLUSo_GT] = ACTIONS(3618), - [anon_sym_err_GT_GT] = ACTIONS(3620), - [anon_sym_out_GT_GT] = ACTIONS(3620), - [anon_sym_e_GT_GT] = ACTIONS(3620), - [anon_sym_o_GT_GT] = ACTIONS(3620), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3620), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3620), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3620), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3620), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3800), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3802), + [anon_sym_STAR_STAR] = ACTIONS(2592), + [anon_sym_PLUS_PLUS] = ACTIONS(2592), + [anon_sym_STAR] = ACTIONS(2594), + [anon_sym_SLASH] = ACTIONS(2594), + [anon_sym_mod] = ACTIONS(2592), + [anon_sym_SLASH_SLASH] = ACTIONS(2592), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2592), + [anon_sym_bit_DASHshl] = ACTIONS(2592), + [anon_sym_bit_DASHshr] = ACTIONS(2592), + [anon_sym_EQ_TILDE] = ACTIONS(2592), + [anon_sym_BANG_TILDE] = ACTIONS(2592), + [anon_sym_bit_DASHand] = ACTIONS(2592), + [anon_sym_bit_DASHxor] = ACTIONS(2592), + [anon_sym_bit_DASHor] = ACTIONS(2592), + [anon_sym_and] = ACTIONS(2592), + [anon_sym_xor] = ACTIONS(2592), + [anon_sym_or] = ACTIONS(2592), + [anon_sym_in] = ACTIONS(2592), + [anon_sym_not_DASHin] = ACTIONS(2592), + [anon_sym_has] = ACTIONS(2592), + [anon_sym_not_DASHhas] = ACTIONS(2592), + [anon_sym_starts_DASHwith] = ACTIONS(2592), + [anon_sym_ends_DASHwith] = ACTIONS(2592), + [anon_sym_EQ_EQ] = ACTIONS(2592), + [anon_sym_BANG_EQ] = ACTIONS(2592), + [anon_sym_LT] = ACTIONS(2594), + [anon_sym_LT_EQ] = ACTIONS(2592), + [anon_sym_GT] = ACTIONS(2594), + [anon_sym_GT_EQ] = ACTIONS(2592), + [aux_sym_cmd_identifier_token41] = ACTIONS(2596), + [sym__newline] = ACTIONS(1639), + [anon_sym_PIPE] = ACTIONS(1639), + [anon_sym_err_GT_PIPE] = ACTIONS(1639), + [anon_sym_out_GT_PIPE] = ACTIONS(1639), + [anon_sym_e_GT_PIPE] = ACTIONS(1639), + [anon_sym_o_GT_PIPE] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1639), + [anon_sym_GT2] = ACTIONS(1639), + [anon_sym_DASH2] = ACTIONS(1639), + [anon_sym_in2] = ACTIONS(1639), + [anon_sym_STAR2] = ACTIONS(1639), + [anon_sym_and2] = ACTIONS(1639), + [anon_sym_xor2] = ACTIONS(1639), + [anon_sym_or2] = ACTIONS(1639), + [anon_sym_not_DASHin2] = ACTIONS(1639), + [anon_sym_has2] = ACTIONS(1639), + [anon_sym_not_DASHhas2] = ACTIONS(1639), + [anon_sym_starts_DASHwith2] = ACTIONS(1639), + [anon_sym_ends_DASHwith2] = ACTIONS(1639), + [anon_sym_EQ_EQ2] = ACTIONS(1639), + [anon_sym_BANG_EQ2] = ACTIONS(1639), + [anon_sym_LT2] = ACTIONS(1639), + [anon_sym_LT_EQ2] = ACTIONS(1639), + [anon_sym_GT_EQ2] = ACTIONS(1639), + [anon_sym_EQ_TILDE2] = ACTIONS(1639), + [anon_sym_BANG_TILDE2] = ACTIONS(1639), + [anon_sym_STAR_STAR2] = ACTIONS(1639), + [anon_sym_PLUS_PLUS2] = ACTIONS(1639), + [anon_sym_SLASH2] = ACTIONS(1639), + [anon_sym_mod2] = ACTIONS(1639), + [anon_sym_SLASH_SLASH2] = ACTIONS(1639), + [anon_sym_PLUS2] = ACTIONS(1639), + [anon_sym_bit_DASHshl2] = ACTIONS(1639), + [anon_sym_bit_DASHshr2] = ACTIONS(1639), + [anon_sym_bit_DASHand2] = ACTIONS(1639), + [anon_sym_bit_DASHxor2] = ACTIONS(1639), + [anon_sym_bit_DASHor2] = ACTIONS(1639), + [anon_sym_DOT_DOT2] = ACTIONS(2584), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2586), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2586), + [sym_filesize_unit] = ACTIONS(3708), + [sym_duration_unit] = ACTIONS(3710), + [anon_sym_POUND] = ACTIONS(3), }, [1204] = { + [sym_match_arm] = STATE(6984), + [sym_default_arm] = STATE(6984), + [sym_match_pattern] = STATE(7845), + [sym__match_pattern] = STATE(6156), + [sym__match_pattern_expression] = STATE(7277), + [sym__match_pattern_value] = STATE(7278), + [sym__match_pattern_list] = STATE(7279), + [sym__match_pattern_record] = STATE(7280), + [sym_expr_parenthesized] = STATE(5921), + [sym_val_range] = STATE(7278), + [sym__val_range] = STATE(7833), + [sym_val_nothing] = STATE(7282), + [sym_val_bool] = STATE(6697), + [sym_val_variable] = STATE(5881), + [sym_val_number] = STATE(7282), + [sym__val_number_decimal] = STATE(5377), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(7282), + [sym_val_filesize] = STATE(7282), + [sym_val_binary] = STATE(7282), + [sym_val_string] = STATE(7282), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_table] = STATE(7282), + [sym_unquoted] = STATE(6981), + [sym__unquoted_anonymous_prefix] = STATE(7649), [sym_comment] = STATE(1204), - [anon_sym_STAR_STAR] = ACTIONS(1552), - [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1550), - [anon_sym_SLASH] = ACTIONS(1550), - [anon_sym_mod] = ACTIONS(1552), - [anon_sym_SLASH_SLASH] = ACTIONS(1552), - [anon_sym_PLUS] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1552), - [anon_sym_bit_DASHshl] = ACTIONS(1552), - [anon_sym_bit_DASHshr] = ACTIONS(1552), - [anon_sym_EQ_TILDE] = ACTIONS(1552), - [anon_sym_BANG_TILDE] = ACTIONS(1552), - [anon_sym_bit_DASHand] = ACTIONS(1552), - [anon_sym_bit_DASHxor] = ACTIONS(1552), - [anon_sym_bit_DASHor] = ACTIONS(1552), - [anon_sym_and] = ACTIONS(1552), - [anon_sym_xor] = ACTIONS(1552), - [anon_sym_or] = ACTIONS(1552), - [anon_sym_in] = ACTIONS(1552), - [anon_sym_not_DASHin] = ACTIONS(1552), - [anon_sym_starts_DASHwith] = ACTIONS(1552), - [anon_sym_ends_DASHwith] = ACTIONS(1552), - [anon_sym_EQ_EQ] = ACTIONS(1552), - [anon_sym_BANG_EQ] = ACTIONS(1552), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_LT_EQ] = ACTIONS(1552), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_GT_EQ] = ACTIONS(1552), - [aux_sym_cmd_identifier_token41] = ACTIONS(1550), - [sym__newline] = ACTIONS(1550), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_err_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_GT_PIPE] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1550), - [anon_sym_GT2] = ACTIONS(1550), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_in2] = ACTIONS(1550), - [anon_sym_RBRACE] = ACTIONS(1550), - [anon_sym_STAR2] = ACTIONS(1550), - [anon_sym_and2] = ACTIONS(1550), - [anon_sym_xor2] = ACTIONS(1550), - [anon_sym_or2] = ACTIONS(1550), - [anon_sym_not_DASHin2] = ACTIONS(1550), - [anon_sym_starts_DASHwith2] = ACTIONS(1550), - [anon_sym_ends_DASHwith2] = ACTIONS(1550), - [anon_sym_EQ_EQ2] = ACTIONS(1550), - [anon_sym_BANG_EQ2] = ACTIONS(1550), - [anon_sym_LT2] = ACTIONS(1550), - [anon_sym_LT_EQ2] = ACTIONS(1550), - [anon_sym_GT_EQ2] = ACTIONS(1550), - [anon_sym_EQ_TILDE2] = ACTIONS(1550), - [anon_sym_BANG_TILDE2] = ACTIONS(1550), - [anon_sym_STAR_STAR2] = ACTIONS(1550), - [anon_sym_PLUS_PLUS2] = ACTIONS(1550), - [anon_sym_SLASH2] = ACTIONS(1550), - [anon_sym_mod2] = ACTIONS(1550), - [anon_sym_SLASH_SLASH2] = ACTIONS(1550), - [anon_sym_PLUS2] = ACTIONS(1550), - [anon_sym_bit_DASHshl2] = ACTIONS(1550), - [anon_sym_bit_DASHshr2] = ACTIONS(1550), - [anon_sym_bit_DASHand2] = ACTIONS(1550), - [anon_sym_bit_DASHxor2] = ACTIONS(1550), - [anon_sym_bit_DASHor2] = ACTIONS(1550), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [sym_filesize_unit] = ACTIONS(1550), - [sym_duration_unit] = ACTIONS(1552), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(3135), + [aux_sym_ctrl_match_repeat1] = STATE(1230), + [sym__newline] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(3616), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym__] = ACTIONS(3624), + [anon_sym_DOT_DOT] = ACTIONS(3626), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3628), + [anon_sym_DOT_DOT_LT] = ACTIONS(3628), + [anon_sym_null] = ACTIONS(3630), + [anon_sym_true] = ACTIONS(3632), + [anon_sym_false] = ACTIONS(3632), + [aux_sym__val_number_decimal_token1] = ACTIONS(3634), + [aux_sym__val_number_decimal_token2] = ACTIONS(3636), + [aux_sym__val_number_decimal_token3] = ACTIONS(3638), + [aux_sym__val_number_decimal_token4] = ACTIONS(3640), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3642), + [aux_sym__val_number_token5] = ACTIONS(3642), + [aux_sym__val_number_token6] = ACTIONS(3642), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3644), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3538), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1205] = { - [sym_match_arm] = STATE(6812), - [sym_default_arm] = STATE(6812), - [sym_match_pattern] = STATE(7704), - [sym__match_pattern] = STATE(6020), - [sym__match_pattern_expression] = STATE(7226), - [sym__match_pattern_value] = STATE(7259), - [sym__match_pattern_list] = STATE(7280), - [sym__match_pattern_record] = STATE(6737), - [sym_expr_parenthesized] = STATE(5787), - [sym_val_range] = STATE(7259), - [sym__val_range] = STATE(7519), - [sym_val_nothing] = STATE(6734), - [sym_val_bool] = STATE(6677), - [sym_val_variable] = STATE(5731), - [sym_val_number] = STATE(6734), - [sym__val_number_decimal] = STATE(5363), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(6734), - [sym_val_filesize] = STATE(6734), - [sym_val_binary] = STATE(6734), - [sym_val_string] = STATE(6734), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_table] = STATE(6734), - [sym_unquoted] = STATE(7105), - [sym__unquoted_anonymous_prefix] = STATE(7789), + [sym_match_arm] = STATE(6998), + [sym_default_arm] = STATE(6998), + [sym_match_pattern] = STATE(7845), + [sym__match_pattern] = STATE(6156), + [sym__match_pattern_expression] = STATE(7277), + [sym__match_pattern_value] = STATE(7278), + [sym__match_pattern_list] = STATE(7279), + [sym__match_pattern_record] = STATE(7280), + [sym_expr_parenthesized] = STATE(5921), + [sym_val_range] = STATE(7278), + [sym__val_range] = STATE(7833), + [sym_val_nothing] = STATE(7282), + [sym_val_bool] = STATE(6697), + [sym_val_variable] = STATE(5881), + [sym_val_number] = STATE(7282), + [sym__val_number_decimal] = STATE(5377), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(7282), + [sym_val_filesize] = STATE(7282), + [sym_val_binary] = STATE(7282), + [sym_val_string] = STATE(7282), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_table] = STATE(7282), + [sym_unquoted] = STATE(6981), + [sym__unquoted_anonymous_prefix] = STATE(7649), [sym_comment] = STATE(1205), - [aux_sym_ctrl_match_repeat1] = STATE(1213), - [anon_sym_LBRACK] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3630), - [anon_sym_LBRACE] = ACTIONS(3632), - [anon_sym__] = ACTIONS(3636), - [anon_sym_DOT_DOT] = ACTIONS(3638), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3640), - [anon_sym_DOT_DOT_LT] = ACTIONS(3640), - [anon_sym_null] = ACTIONS(3642), - [anon_sym_true] = ACTIONS(3644), - [anon_sym_false] = ACTIONS(3644), - [aux_sym__val_number_decimal_token1] = ACTIONS(3646), - [aux_sym__val_number_decimal_token2] = ACTIONS(3648), - [aux_sym__val_number_decimal_token3] = ACTIONS(3650), - [aux_sym__val_number_decimal_token4] = ACTIONS(3652), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3654), - [aux_sym__val_number_token5] = ACTIONS(3654), - [aux_sym__val_number_token6] = ACTIONS(3654), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3656), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3490), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(3135), + [aux_sym_ctrl_match_repeat1] = STATE(1232), + [sym__newline] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(3616), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym__] = ACTIONS(3624), + [anon_sym_DOT_DOT] = ACTIONS(3626), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3628), + [anon_sym_DOT_DOT_LT] = ACTIONS(3628), + [anon_sym_null] = ACTIONS(3630), + [anon_sym_true] = ACTIONS(3632), + [anon_sym_false] = ACTIONS(3632), + [aux_sym__val_number_decimal_token1] = ACTIONS(3634), + [aux_sym__val_number_decimal_token2] = ACTIONS(3636), + [aux_sym__val_number_decimal_token3] = ACTIONS(3638), + [aux_sym__val_number_decimal_token4] = ACTIONS(3640), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3642), + [aux_sym__val_number_token5] = ACTIONS(3642), + [aux_sym__val_number_token6] = ACTIONS(3642), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3644), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3538), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1206] = { + [sym_match_arm] = STATE(6833), + [sym_default_arm] = STATE(6833), + [sym_match_pattern] = STATE(7845), + [sym__match_pattern] = STATE(6156), + [sym__match_pattern_expression] = STATE(7277), + [sym__match_pattern_value] = STATE(7278), + [sym__match_pattern_list] = STATE(7279), + [sym__match_pattern_record] = STATE(7280), + [sym_expr_parenthesized] = STATE(5921), + [sym_val_range] = STATE(7278), + [sym__val_range] = STATE(7833), + [sym_val_nothing] = STATE(7282), + [sym_val_bool] = STATE(6697), + [sym_val_variable] = STATE(5881), + [sym_val_number] = STATE(7282), + [sym__val_number_decimal] = STATE(5377), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(7282), + [sym_val_filesize] = STATE(7282), + [sym_val_binary] = STATE(7282), + [sym_val_string] = STATE(7282), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_table] = STATE(7282), + [sym_unquoted] = STATE(6981), + [sym__unquoted_anonymous_prefix] = STATE(7649), [sym_comment] = STATE(1206), - [anon_sym_STAR_STAR] = ACTIONS(1745), - [anon_sym_PLUS_PLUS] = ACTIONS(1745), - [anon_sym_STAR] = ACTIONS(1743), - [anon_sym_SLASH] = ACTIONS(1743), - [anon_sym_mod] = ACTIONS(1745), - [anon_sym_SLASH_SLASH] = ACTIONS(1745), - [anon_sym_PLUS] = ACTIONS(1743), - [anon_sym_DASH] = ACTIONS(1745), - [anon_sym_bit_DASHshl] = ACTIONS(1745), - [anon_sym_bit_DASHshr] = ACTIONS(1745), - [anon_sym_EQ_TILDE] = ACTIONS(1745), - [anon_sym_BANG_TILDE] = ACTIONS(1745), - [anon_sym_bit_DASHand] = ACTIONS(1745), - [anon_sym_bit_DASHxor] = ACTIONS(1745), - [anon_sym_bit_DASHor] = ACTIONS(1745), - [anon_sym_and] = ACTIONS(1745), - [anon_sym_xor] = ACTIONS(1745), - [anon_sym_or] = ACTIONS(1745), - [anon_sym_in] = ACTIONS(1745), - [anon_sym_not_DASHin] = ACTIONS(1745), - [anon_sym_starts_DASHwith] = ACTIONS(1745), - [anon_sym_ends_DASHwith] = ACTIONS(1745), - [anon_sym_EQ_EQ] = ACTIONS(1745), - [anon_sym_BANG_EQ] = ACTIONS(1745), - [anon_sym_LT] = ACTIONS(1743), - [anon_sym_LT_EQ] = ACTIONS(1745), - [anon_sym_GT] = ACTIONS(1743), - [anon_sym_GT_EQ] = ACTIONS(1745), - [aux_sym_cmd_identifier_token41] = ACTIONS(1743), - [sym__newline] = ACTIONS(1743), - [anon_sym_SEMI] = ACTIONS(1743), - [anon_sym_PIPE] = ACTIONS(1743), - [anon_sym_err_GT_PIPE] = ACTIONS(1743), - [anon_sym_out_GT_PIPE] = ACTIONS(1743), - [anon_sym_e_GT_PIPE] = ACTIONS(1743), - [anon_sym_o_GT_PIPE] = ACTIONS(1743), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1743), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1743), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1743), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1743), - [anon_sym_GT2] = ACTIONS(1743), - [anon_sym_DASH2] = ACTIONS(1743), - [anon_sym_in2] = ACTIONS(1743), - [anon_sym_STAR2] = ACTIONS(1743), - [anon_sym_and2] = ACTIONS(1743), - [anon_sym_xor2] = ACTIONS(1743), - [anon_sym_or2] = ACTIONS(1743), - [anon_sym_not_DASHin2] = ACTIONS(1743), - [anon_sym_starts_DASHwith2] = ACTIONS(1743), - [anon_sym_ends_DASHwith2] = ACTIONS(1743), - [anon_sym_EQ_EQ2] = ACTIONS(1743), - [anon_sym_BANG_EQ2] = ACTIONS(1743), - [anon_sym_LT2] = ACTIONS(1743), - [anon_sym_LT_EQ2] = ACTIONS(1743), - [anon_sym_GT_EQ2] = ACTIONS(1743), - [anon_sym_EQ_TILDE2] = ACTIONS(1743), - [anon_sym_BANG_TILDE2] = ACTIONS(1743), - [anon_sym_STAR_STAR2] = ACTIONS(1743), - [anon_sym_PLUS_PLUS2] = ACTIONS(1743), - [anon_sym_SLASH2] = ACTIONS(1743), - [anon_sym_mod2] = ACTIONS(1743), - [anon_sym_SLASH_SLASH2] = ACTIONS(1743), - [anon_sym_PLUS2] = ACTIONS(1743), - [anon_sym_bit_DASHshl2] = ACTIONS(1743), - [anon_sym_bit_DASHshr2] = ACTIONS(1743), - [anon_sym_bit_DASHand2] = ACTIONS(1743), - [anon_sym_bit_DASHxor2] = ACTIONS(1743), - [anon_sym_bit_DASHor2] = ACTIONS(1743), - [anon_sym_DOT_DOT2] = ACTIONS(1743), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1745), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1745), - [sym_filesize_unit] = ACTIONS(1743), - [sym_duration_unit] = ACTIONS(1745), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(3135), + [aux_sym_ctrl_match_repeat1] = STATE(1235), + [sym__newline] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(3616), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym__] = ACTIONS(3624), + [anon_sym_DOT_DOT] = ACTIONS(3626), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3628), + [anon_sym_DOT_DOT_LT] = ACTIONS(3628), + [anon_sym_null] = ACTIONS(3630), + [anon_sym_true] = ACTIONS(3632), + [anon_sym_false] = ACTIONS(3632), + [aux_sym__val_number_decimal_token1] = ACTIONS(3634), + [aux_sym__val_number_decimal_token2] = ACTIONS(3636), + [aux_sym__val_number_decimal_token3] = ACTIONS(3638), + [aux_sym__val_number_decimal_token4] = ACTIONS(3640), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3642), + [aux_sym__val_number_token5] = ACTIONS(3642), + [aux_sym__val_number_token6] = ACTIONS(3642), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3644), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3538), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1207] = { - [sym__match_pattern_expression] = STATE(3162), - [sym__match_pattern_value] = STATE(3176), - [sym__match_pattern_list] = STATE(3183), - [sym__match_pattern_rest] = STATE(7579), - [sym__match_pattern_record] = STATE(3151), - [sym_expr_parenthesized] = STATE(2934), - [sym_val_range] = STATE(3176), - [sym__val_range] = STATE(7541), - [sym_val_nothing] = STATE(3167), - [sym_val_bool] = STATE(3060), - [sym_val_variable] = STATE(2912), - [sym_val_number] = STATE(3167), - [sym__val_number_decimal] = STATE(2702), - [sym__val_number] = STATE(3161), - [sym_val_duration] = STATE(3167), - [sym_val_filesize] = STATE(3167), - [sym_val_binary] = STATE(3167), - [sym_val_string] = STATE(3167), - [sym__raw_str] = STATE(3174), - [sym__str_double_quotes] = STATE(3174), - [sym_val_list] = STATE(7525), - [sym_val_table] = STATE(3167), - [sym__unquoted_in_list] = STATE(3162), - [sym__unquoted_anonymous_prefix] = STATE(7637), + [sym_match_arm] = STATE(6830), + [sym_default_arm] = STATE(6830), + [sym_match_pattern] = STATE(7845), + [sym__match_pattern] = STATE(6156), + [sym__match_pattern_expression] = STATE(7277), + [sym__match_pattern_value] = STATE(7278), + [sym__match_pattern_list] = STATE(7279), + [sym__match_pattern_record] = STATE(7280), + [sym_expr_parenthesized] = STATE(5921), + [sym_val_range] = STATE(7278), + [sym__val_range] = STATE(7833), + [sym_val_nothing] = STATE(7282), + [sym_val_bool] = STATE(6697), + [sym_val_variable] = STATE(5881), + [sym_val_number] = STATE(7282), + [sym__val_number_decimal] = STATE(5377), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(7282), + [sym_val_filesize] = STATE(7282), + [sym_val_binary] = STATE(7282), + [sym_val_string] = STATE(7282), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_table] = STATE(7282), + [sym_unquoted] = STATE(6981), + [sym__unquoted_anonymous_prefix] = STATE(7649), [sym_comment] = STATE(1207), - [aux_sym_shebang_repeat1] = STATE(6174), - [aux_sym__match_pattern_list_repeat1] = STATE(1273), - [sym__newline] = ACTIONS(3826), - [anon_sym_LBRACK] = ACTIONS(3828), - [anon_sym_RBRACK] = ACTIONS(3830), - [anon_sym_LPAREN] = ACTIONS(3832), - [anon_sym_DOLLAR] = ACTIONS(3834), - [anon_sym_LBRACE] = ACTIONS(3836), - [anon_sym_DOT_DOT] = ACTIONS(3838), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3840), - [anon_sym_DOT_DOT_LT] = ACTIONS(3840), - [anon_sym_null] = ACTIONS(3842), - [anon_sym_true] = ACTIONS(3844), - [anon_sym_false] = ACTIONS(3844), - [aux_sym__val_number_decimal_token1] = ACTIONS(3846), - [aux_sym__val_number_decimal_token2] = ACTIONS(3848), - [aux_sym__val_number_decimal_token3] = ACTIONS(3850), - [aux_sym__val_number_decimal_token4] = ACTIONS(3852), - [aux_sym__val_number_token1] = ACTIONS(3854), - [aux_sym__val_number_token2] = ACTIONS(3854), - [aux_sym__val_number_token3] = ACTIONS(3854), - [aux_sym__val_number_token4] = ACTIONS(3856), - [aux_sym__val_number_token5] = ACTIONS(3856), - [aux_sym__val_number_token6] = ACTIONS(3856), - [anon_sym_0b] = ACTIONS(3858), - [anon_sym_0o] = ACTIONS(3860), - [anon_sym_0x] = ACTIONS(3860), - [sym_val_date] = ACTIONS(3862), - [anon_sym_DQUOTE] = ACTIONS(3864), - [sym__str_single_quotes] = ACTIONS(3866), - [sym__str_back_ticks] = ACTIONS(3866), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3868), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3870), + [aux_sym_shebang_repeat1] = STATE(3135), + [aux_sym_ctrl_match_repeat1] = STATE(1236), + [sym__newline] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(3616), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym__] = ACTIONS(3624), + [anon_sym_DOT_DOT] = ACTIONS(3626), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3628), + [anon_sym_DOT_DOT_LT] = ACTIONS(3628), + [anon_sym_null] = ACTIONS(3630), + [anon_sym_true] = ACTIONS(3632), + [anon_sym_false] = ACTIONS(3632), + [aux_sym__val_number_decimal_token1] = ACTIONS(3634), + [aux_sym__val_number_decimal_token2] = ACTIONS(3636), + [aux_sym__val_number_decimal_token3] = ACTIONS(3638), + [aux_sym__val_number_decimal_token4] = ACTIONS(3640), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3642), + [aux_sym__val_number_token5] = ACTIONS(3642), + [aux_sym__val_number_token6] = ACTIONS(3642), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3644), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3538), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1208] = { + [sym_expr_parenthesized] = STATE(6085), + [sym_val_range] = STATE(7384), + [sym__val_range] = STATE(7504), + [sym__val_range_with_end] = STATE(7414), + [sym__value] = STATE(7384), + [sym_val_nothing] = STATE(6851), + [sym_val_bool] = STATE(6662), + [sym_val_variable] = STATE(5759), + [sym_val_number] = STATE(6851), + [sym__val_number_decimal] = STATE(5278), + [sym__val_number] = STATE(6724), + [sym_val_duration] = STATE(6851), + [sym_val_filesize] = STATE(6851), + [sym_val_binary] = STATE(6851), + [sym_val_string] = STATE(6851), + [sym__raw_str] = STATE(5291), + [sym__str_double_quotes] = STATE(5291), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(6851), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(6851), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_record] = STATE(6332), + [sym__unquoted_in_record_with_expr] = STATE(7384), + [sym__unquoted_anonymous_prefix] = STATE(6980), [sym_comment] = STATE(1208), - [anon_sym_STAR_STAR] = ACTIONS(1552), - [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1550), - [anon_sym_SLASH] = ACTIONS(1550), - [anon_sym_mod] = ACTIONS(1552), - [anon_sym_SLASH_SLASH] = ACTIONS(1552), - [anon_sym_PLUS] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1552), - [anon_sym_bit_DASHshl] = ACTIONS(1552), - [anon_sym_bit_DASHshr] = ACTIONS(1552), - [anon_sym_EQ_TILDE] = ACTIONS(1552), - [anon_sym_BANG_TILDE] = ACTIONS(1552), - [anon_sym_bit_DASHand] = ACTIONS(1552), - [anon_sym_bit_DASHxor] = ACTIONS(1552), - [anon_sym_bit_DASHor] = ACTIONS(1552), - [anon_sym_and] = ACTIONS(1552), - [anon_sym_xor] = ACTIONS(1552), - [anon_sym_or] = ACTIONS(1552), - [anon_sym_in] = ACTIONS(1552), - [anon_sym_not_DASHin] = ACTIONS(1552), - [anon_sym_starts_DASHwith] = ACTIONS(1552), - [anon_sym_ends_DASHwith] = ACTIONS(1552), - [anon_sym_EQ_EQ] = ACTIONS(1552), - [anon_sym_BANG_EQ] = ACTIONS(1552), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_LT_EQ] = ACTIONS(1552), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_GT_EQ] = ACTIONS(1552), - [aux_sym_cmd_identifier_token41] = ACTIONS(1550), - [sym__newline] = ACTIONS(1550), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_err_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_GT_PIPE] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1550), - [anon_sym_GT2] = ACTIONS(1550), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_in2] = ACTIONS(1550), - [anon_sym_STAR2] = ACTIONS(1550), - [anon_sym_and2] = ACTIONS(1550), - [anon_sym_xor2] = ACTIONS(1550), - [anon_sym_or2] = ACTIONS(1550), - [anon_sym_not_DASHin2] = ACTIONS(1550), - [anon_sym_starts_DASHwith2] = ACTIONS(1550), - [anon_sym_ends_DASHwith2] = ACTIONS(1550), - [anon_sym_EQ_EQ2] = ACTIONS(1550), - [anon_sym_BANG_EQ2] = ACTIONS(1550), - [anon_sym_LT2] = ACTIONS(1550), - [anon_sym_LT_EQ2] = ACTIONS(1550), - [anon_sym_GT_EQ2] = ACTIONS(1550), - [anon_sym_EQ_TILDE2] = ACTIONS(1550), - [anon_sym_BANG_TILDE2] = ACTIONS(1550), - [anon_sym_STAR_STAR2] = ACTIONS(1550), - [anon_sym_PLUS_PLUS2] = ACTIONS(1550), - [anon_sym_SLASH2] = ACTIONS(1550), - [anon_sym_mod2] = ACTIONS(1550), - [anon_sym_SLASH_SLASH2] = ACTIONS(1550), - [anon_sym_PLUS2] = ACTIONS(1550), - [anon_sym_bit_DASHshl2] = ACTIONS(1550), - [anon_sym_bit_DASHshr2] = ACTIONS(1550), - [anon_sym_bit_DASHand2] = ACTIONS(1550), - [anon_sym_bit_DASHxor2] = ACTIONS(1550), - [anon_sym_bit_DASHor2] = ACTIONS(1550), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [aux_sym__immediate_decimal_token2] = ACTIONS(3822), - [sym_filesize_unit] = ACTIONS(1550), - [sym_duration_unit] = ACTIONS(1552), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_DOLLAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_DOT_DOT] = ACTIONS(3712), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3714), + [anon_sym_DOT_DOT_LT] = ACTIONS(3714), + [anon_sym_null] = ACTIONS(3716), + [anon_sym_true] = ACTIONS(3718), + [anon_sym_false] = ACTIONS(3718), + [aux_sym__val_number_decimal_token1] = ACTIONS(3720), + [aux_sym__val_number_decimal_token2] = ACTIONS(3722), + [aux_sym__val_number_decimal_token3] = ACTIONS(3724), + [aux_sym__val_number_decimal_token4] = ACTIONS(3726), + [aux_sym__val_number_token1] = ACTIONS(3130), + [aux_sym__val_number_token2] = ACTIONS(3130), + [aux_sym__val_number_token3] = ACTIONS(3130), + [aux_sym__val_number_token4] = ACTIONS(3728), + [aux_sym__val_number_token5] = ACTIONS(3728), + [aux_sym__val_number_token6] = ACTIONS(3728), + [anon_sym_0b] = ACTIONS(3134), + [anon_sym_0o] = ACTIONS(3136), + [anon_sym_0x] = ACTIONS(3136), + [sym_val_date] = ACTIONS(3730), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym__str_single_quotes] = ACTIONS(3142), + [sym__str_back_ticks] = ACTIONS(3142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_err_GT] = ACTIONS(3694), + [anon_sym_out_GT] = ACTIONS(3694), + [anon_sym_e_GT] = ACTIONS(3694), + [anon_sym_o_GT] = ACTIONS(3694), + [anon_sym_err_PLUSout_GT] = ACTIONS(3694), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3694), + [anon_sym_o_PLUSe_GT] = ACTIONS(3694), + [anon_sym_e_PLUSo_GT] = ACTIONS(3694), + [anon_sym_err_GT_GT] = ACTIONS(3696), + [anon_sym_out_GT_GT] = ACTIONS(3696), + [anon_sym_e_GT_GT] = ACTIONS(3696), + [anon_sym_o_GT_GT] = ACTIONS(3696), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3696), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3696), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3696), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3696), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3732), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3146), }, [1209] = { - [sym_match_arm] = STATE(6802), - [sym_default_arm] = STATE(6802), - [sym_match_pattern] = STATE(7704), - [sym__match_pattern] = STATE(6020), - [sym__match_pattern_expression] = STATE(7226), - [sym__match_pattern_value] = STATE(7259), - [sym__match_pattern_list] = STATE(7280), - [sym__match_pattern_record] = STATE(6737), - [sym_expr_parenthesized] = STATE(5787), - [sym_val_range] = STATE(7259), - [sym__val_range] = STATE(7519), - [sym_val_nothing] = STATE(6734), - [sym_val_bool] = STATE(6677), - [sym_val_variable] = STATE(5731), - [sym_val_number] = STATE(6734), - [sym__val_number_decimal] = STATE(5363), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(6734), - [sym_val_filesize] = STATE(6734), - [sym_val_binary] = STATE(6734), - [sym_val_string] = STATE(6734), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_table] = STATE(6734), - [sym_unquoted] = STATE(7105), - [sym__unquoted_anonymous_prefix] = STATE(7789), + [sym_expr_parenthesized] = STATE(6020), + [sym_val_range] = STATE(7358), + [sym__val_range] = STATE(7504), + [sym__val_range_with_end] = STATE(7414), + [sym__value] = STATE(7358), + [sym_val_nothing] = STATE(6851), + [sym_val_bool] = STATE(6662), + [sym_val_variable] = STATE(5759), + [sym_val_number] = STATE(6851), + [sym__val_number_decimal] = STATE(5278), + [sym__val_number] = STATE(6724), + [sym_val_duration] = STATE(6851), + [sym_val_filesize] = STATE(6851), + [sym_val_binary] = STATE(6851), + [sym_val_string] = STATE(6851), + [sym__raw_str] = STATE(5291), + [sym__str_double_quotes] = STATE(5291), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(6851), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(6851), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_record] = STATE(6237), + [sym__unquoted_in_record_with_expr] = STATE(7358), + [sym__unquoted_anonymous_prefix] = STATE(6980), [sym_comment] = STATE(1209), - [aux_sym_ctrl_match_repeat1] = STATE(1213), - [anon_sym_LBRACK] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3630), - [anon_sym_LBRACE] = ACTIONS(3632), - [anon_sym__] = ACTIONS(3636), - [anon_sym_DOT_DOT] = ACTIONS(3638), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3640), - [anon_sym_DOT_DOT_LT] = ACTIONS(3640), - [anon_sym_null] = ACTIONS(3642), - [anon_sym_true] = ACTIONS(3644), - [anon_sym_false] = ACTIONS(3644), - [aux_sym__val_number_decimal_token1] = ACTIONS(3646), - [aux_sym__val_number_decimal_token2] = ACTIONS(3648), - [aux_sym__val_number_decimal_token3] = ACTIONS(3650), - [aux_sym__val_number_decimal_token4] = ACTIONS(3652), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3654), - [aux_sym__val_number_token5] = ACTIONS(3654), - [aux_sym__val_number_token6] = ACTIONS(3654), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3656), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3490), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_DOLLAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_DOT_DOT] = ACTIONS(3712), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3714), + [anon_sym_DOT_DOT_LT] = ACTIONS(3714), + [anon_sym_null] = ACTIONS(3716), + [anon_sym_true] = ACTIONS(3718), + [anon_sym_false] = ACTIONS(3718), + [aux_sym__val_number_decimal_token1] = ACTIONS(3720), + [aux_sym__val_number_decimal_token2] = ACTIONS(3722), + [aux_sym__val_number_decimal_token3] = ACTIONS(3724), + [aux_sym__val_number_decimal_token4] = ACTIONS(3726), + [aux_sym__val_number_token1] = ACTIONS(3130), + [aux_sym__val_number_token2] = ACTIONS(3130), + [aux_sym__val_number_token3] = ACTIONS(3130), + [aux_sym__val_number_token4] = ACTIONS(3728), + [aux_sym__val_number_token5] = ACTIONS(3728), + [aux_sym__val_number_token6] = ACTIONS(3728), + [anon_sym_0b] = ACTIONS(3134), + [anon_sym_0o] = ACTIONS(3136), + [anon_sym_0x] = ACTIONS(3136), + [sym_val_date] = ACTIONS(3730), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym__str_single_quotes] = ACTIONS(3142), + [sym__str_back_ticks] = ACTIONS(3142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_err_GT] = ACTIONS(3694), + [anon_sym_out_GT] = ACTIONS(3694), + [anon_sym_e_GT] = ACTIONS(3694), + [anon_sym_o_GT] = ACTIONS(3694), + [anon_sym_err_PLUSout_GT] = ACTIONS(3694), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3694), + [anon_sym_o_PLUSe_GT] = ACTIONS(3694), + [anon_sym_e_PLUSo_GT] = ACTIONS(3694), + [anon_sym_err_GT_GT] = ACTIONS(3696), + [anon_sym_out_GT_GT] = ACTIONS(3696), + [anon_sym_e_GT_GT] = ACTIONS(3696), + [anon_sym_o_GT_GT] = ACTIONS(3696), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3696), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3696), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3696), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3696), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3732), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3146), }, [1210] = { + [sym_expr_parenthesized] = STATE(5983), + [sym_val_range] = STATE(7375), + [sym__val_range] = STATE(7504), + [sym__val_range_with_end] = STATE(7414), + [sym__value] = STATE(7375), + [sym_val_nothing] = STATE(6851), + [sym_val_bool] = STATE(6662), + [sym_val_variable] = STATE(5759), + [sym_val_number] = STATE(6851), + [sym__val_number_decimal] = STATE(5278), + [sym__val_number] = STATE(6724), + [sym_val_duration] = STATE(6851), + [sym_val_filesize] = STATE(6851), + [sym_val_binary] = STATE(6851), + [sym_val_string] = STATE(6851), + [sym__raw_str] = STATE(5291), + [sym__str_double_quotes] = STATE(5291), + [sym_val_interpolated] = STATE(6851), + [sym__inter_single_quotes] = STATE(7039), + [sym__inter_double_quotes] = STATE(6713), + [sym_val_list] = STATE(6851), + [sym_val_record] = STATE(6851), + [sym_val_table] = STATE(6851), + [sym_val_closure] = STATE(6851), + [sym__unquoted_in_record] = STATE(6300), + [sym__unquoted_in_record_with_expr] = STATE(7375), + [sym__unquoted_anonymous_prefix] = STATE(6980), [sym_comment] = STATE(1210), - [anon_sym_STAR_STAR] = ACTIONS(3054), - [anon_sym_PLUS_PLUS] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3056), - [anon_sym_SLASH] = ACTIONS(3056), - [anon_sym_mod] = ACTIONS(3054), - [anon_sym_SLASH_SLASH] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(3056), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_bit_DASHshl] = ACTIONS(3054), - [anon_sym_bit_DASHshr] = ACTIONS(3054), - [anon_sym_EQ_TILDE] = ACTIONS(3054), - [anon_sym_BANG_TILDE] = ACTIONS(3054), - [anon_sym_bit_DASHand] = ACTIONS(3054), - [anon_sym_bit_DASHxor] = ACTIONS(3054), - [anon_sym_bit_DASHor] = ACTIONS(3054), - [anon_sym_and] = ACTIONS(3054), - [anon_sym_xor] = ACTIONS(3054), - [anon_sym_or] = ACTIONS(3054), - [anon_sym_in] = ACTIONS(3054), - [anon_sym_not_DASHin] = ACTIONS(3054), - [anon_sym_starts_DASHwith] = ACTIONS(3054), - [anon_sym_ends_DASHwith] = ACTIONS(3054), - [anon_sym_EQ_EQ] = ACTIONS(3054), - [anon_sym_BANG_EQ] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_LT_EQ] = ACTIONS(3054), - [anon_sym_GT] = ACTIONS(3056), - [anon_sym_GT_EQ] = ACTIONS(3054), - [aux_sym_cmd_identifier_token41] = ACTIONS(3058), - [sym__newline] = ACTIONS(1638), - [anon_sym_SEMI] = ACTIONS(1638), - [anon_sym_PIPE] = ACTIONS(1638), - [anon_sym_err_GT_PIPE] = ACTIONS(1638), - [anon_sym_out_GT_PIPE] = ACTIONS(1638), - [anon_sym_e_GT_PIPE] = ACTIONS(1638), - [anon_sym_o_GT_PIPE] = ACTIONS(1638), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1638), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1638), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1638), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1638), - [anon_sym_GT2] = ACTIONS(1638), - [anon_sym_DASH2] = ACTIONS(1638), - [anon_sym_in2] = ACTIONS(1638), - [anon_sym_STAR2] = ACTIONS(1638), - [anon_sym_and2] = ACTIONS(1638), - [anon_sym_xor2] = ACTIONS(1638), - [anon_sym_or2] = ACTIONS(1638), - [anon_sym_not_DASHin2] = ACTIONS(1638), - [anon_sym_starts_DASHwith2] = ACTIONS(1638), - [anon_sym_ends_DASHwith2] = ACTIONS(1638), - [anon_sym_EQ_EQ2] = ACTIONS(1638), - [anon_sym_BANG_EQ2] = ACTIONS(1638), - [anon_sym_LT2] = ACTIONS(1638), - [anon_sym_LT_EQ2] = ACTIONS(1638), - [anon_sym_GT_EQ2] = ACTIONS(1638), - [anon_sym_EQ_TILDE2] = ACTIONS(1638), - [anon_sym_BANG_TILDE2] = ACTIONS(1638), - [anon_sym_STAR_STAR2] = ACTIONS(1638), - [anon_sym_PLUS_PLUS2] = ACTIONS(1638), - [anon_sym_SLASH2] = ACTIONS(1638), - [anon_sym_mod2] = ACTIONS(1638), - [anon_sym_SLASH_SLASH2] = ACTIONS(1638), - [anon_sym_PLUS2] = ACTIONS(1638), - [anon_sym_bit_DASHshl2] = ACTIONS(1638), - [anon_sym_bit_DASHshr2] = ACTIONS(1638), - [anon_sym_bit_DASHand2] = ACTIONS(1638), - [anon_sym_bit_DASHxor2] = ACTIONS(1638), - [anon_sym_bit_DASHor2] = ACTIONS(1638), - [anon_sym_DOT_DOT2] = ACTIONS(3044), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3046), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3046), - [sym_filesize_unit] = ACTIONS(3872), - [sym_duration_unit] = ACTIONS(3874), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_DOLLAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_DOT_DOT] = ACTIONS(3712), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3714), + [anon_sym_DOT_DOT_LT] = ACTIONS(3714), + [anon_sym_null] = ACTIONS(3716), + [anon_sym_true] = ACTIONS(3718), + [anon_sym_false] = ACTIONS(3718), + [aux_sym__val_number_decimal_token1] = ACTIONS(3720), + [aux_sym__val_number_decimal_token2] = ACTIONS(3722), + [aux_sym__val_number_decimal_token3] = ACTIONS(3724), + [aux_sym__val_number_decimal_token4] = ACTIONS(3726), + [aux_sym__val_number_token1] = ACTIONS(3130), + [aux_sym__val_number_token2] = ACTIONS(3130), + [aux_sym__val_number_token3] = ACTIONS(3130), + [aux_sym__val_number_token4] = ACTIONS(3728), + [aux_sym__val_number_token5] = ACTIONS(3728), + [aux_sym__val_number_token6] = ACTIONS(3728), + [anon_sym_0b] = ACTIONS(3134), + [anon_sym_0o] = ACTIONS(3136), + [anon_sym_0x] = ACTIONS(3136), + [sym_val_date] = ACTIONS(3730), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym__str_single_quotes] = ACTIONS(3142), + [sym__str_back_ticks] = ACTIONS(3142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_err_GT] = ACTIONS(3694), + [anon_sym_out_GT] = ACTIONS(3694), + [anon_sym_e_GT] = ACTIONS(3694), + [anon_sym_o_GT] = ACTIONS(3694), + [anon_sym_err_PLUSout_GT] = ACTIONS(3694), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3694), + [anon_sym_o_PLUSe_GT] = ACTIONS(3694), + [anon_sym_e_PLUSo_GT] = ACTIONS(3694), + [anon_sym_err_GT_GT] = ACTIONS(3696), + [anon_sym_out_GT_GT] = ACTIONS(3696), + [anon_sym_e_GT_GT] = ACTIONS(3696), + [anon_sym_o_GT_GT] = ACTIONS(3696), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3696), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3696), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3696), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3696), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3732), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3146), }, [1211] = { + [sym_expr_parenthesized] = STATE(477), + [sym_val_range] = STATE(643), + [sym__val_range] = STATE(7502), + [sym__val_range_with_end] = STATE(7388), + [sym__value] = STATE(643), + [sym_val_nothing] = STATE(673), + [sym_val_bool] = STATE(499), + [sym_val_variable] = STATE(491), + [sym_val_number] = STATE(673), + [sym__val_number_decimal] = STATE(312), + [sym__val_number] = STATE(652), + [sym_val_duration] = STATE(673), + [sym_val_filesize] = STATE(673), + [sym_val_binary] = STATE(673), + [sym_val_string] = STATE(673), + [sym__raw_str] = STATE(605), + [sym__str_double_quotes] = STATE(605), + [sym_val_interpolated] = STATE(673), + [sym__inter_single_quotes] = STATE(655), + [sym__inter_double_quotes] = STATE(657), + [sym_val_list] = STATE(673), + [sym_val_record] = STATE(673), + [sym_val_table] = STATE(673), + [sym_val_closure] = STATE(673), + [sym__unquoted_in_record] = STATE(534), + [sym__unquoted_in_record_with_expr] = STATE(643), + [sym__unquoted_anonymous_prefix] = STATE(7007), [sym_comment] = STATE(1211), - [anon_sym_STAR_STAR] = ACTIONS(1682), - [anon_sym_PLUS_PLUS] = ACTIONS(1682), - [anon_sym_STAR] = ACTIONS(1680), - [anon_sym_SLASH] = ACTIONS(1680), - [anon_sym_mod] = ACTIONS(1682), - [anon_sym_SLASH_SLASH] = ACTIONS(1682), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_DASH] = ACTIONS(1682), - [anon_sym_bit_DASHshl] = ACTIONS(1682), - [anon_sym_bit_DASHshr] = ACTIONS(1682), - [anon_sym_EQ_TILDE] = ACTIONS(1682), - [anon_sym_BANG_TILDE] = ACTIONS(1682), - [anon_sym_bit_DASHand] = ACTIONS(1682), - [anon_sym_bit_DASHxor] = ACTIONS(1682), - [anon_sym_bit_DASHor] = ACTIONS(1682), - [anon_sym_and] = ACTIONS(1682), - [anon_sym_xor] = ACTIONS(1682), - [anon_sym_or] = ACTIONS(1682), - [anon_sym_in] = ACTIONS(1682), - [anon_sym_not_DASHin] = ACTIONS(1682), - [anon_sym_starts_DASHwith] = ACTIONS(1682), - [anon_sym_ends_DASHwith] = ACTIONS(1682), - [anon_sym_EQ_EQ] = ACTIONS(1682), - [anon_sym_BANG_EQ] = ACTIONS(1682), - [anon_sym_LT] = ACTIONS(1680), - [anon_sym_LT_EQ] = ACTIONS(1682), - [anon_sym_GT] = ACTIONS(1680), - [anon_sym_GT_EQ] = ACTIONS(1682), - [aux_sym_cmd_identifier_token41] = ACTIONS(1680), - [sym__newline] = ACTIONS(1680), - [anon_sym_PIPE] = ACTIONS(1680), - [anon_sym_err_GT_PIPE] = ACTIONS(1680), - [anon_sym_out_GT_PIPE] = ACTIONS(1680), - [anon_sym_e_GT_PIPE] = ACTIONS(1680), - [anon_sym_o_GT_PIPE] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1680), - [anon_sym_GT2] = ACTIONS(1680), - [anon_sym_DASH2] = ACTIONS(1680), - [anon_sym_in2] = ACTIONS(1680), - [anon_sym_STAR2] = ACTIONS(1680), - [anon_sym_and2] = ACTIONS(1680), - [anon_sym_xor2] = ACTIONS(1680), - [anon_sym_or2] = ACTIONS(1680), - [anon_sym_not_DASHin2] = ACTIONS(1680), - [anon_sym_starts_DASHwith2] = ACTIONS(1680), - [anon_sym_ends_DASHwith2] = ACTIONS(1680), - [anon_sym_EQ_EQ2] = ACTIONS(1680), - [anon_sym_BANG_EQ2] = ACTIONS(1680), - [anon_sym_LT2] = ACTIONS(1680), - [anon_sym_LT_EQ2] = ACTIONS(1680), - [anon_sym_GT_EQ2] = ACTIONS(1680), - [anon_sym_EQ_TILDE2] = ACTIONS(1680), - [anon_sym_BANG_TILDE2] = ACTIONS(1680), - [anon_sym_STAR_STAR2] = ACTIONS(1680), - [anon_sym_PLUS_PLUS2] = ACTIONS(1680), - [anon_sym_SLASH2] = ACTIONS(1680), - [anon_sym_mod2] = ACTIONS(1680), - [anon_sym_SLASH_SLASH2] = ACTIONS(1680), - [anon_sym_PLUS2] = ACTIONS(1680), - [anon_sym_bit_DASHshl2] = ACTIONS(1680), - [anon_sym_bit_DASHshr2] = ACTIONS(1680), - [anon_sym_bit_DASHand2] = ACTIONS(1680), - [anon_sym_bit_DASHxor2] = ACTIONS(1680), - [anon_sym_bit_DASHor2] = ACTIONS(1680), - [anon_sym_DOT_DOT2] = ACTIONS(1680), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1682), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1682), - [aux_sym__immediate_decimal_token2] = ACTIONS(3876), - [sym_filesize_unit] = ACTIONS(1680), - [sym_duration_unit] = ACTIONS(1682), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3734), + [anon_sym_LPAREN] = ACTIONS(3736), + [anon_sym_DOLLAR] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(3738), + [anon_sym_DOT_DOT] = ACTIONS(3740), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3742), + [anon_sym_DOT_DOT_LT] = ACTIONS(3742), + [anon_sym_null] = ACTIONS(3744), + [anon_sym_true] = ACTIONS(3746), + [anon_sym_false] = ACTIONS(3746), + [aux_sym__val_number_decimal_token1] = ACTIONS(3748), + [aux_sym__val_number_decimal_token2] = ACTIONS(3750), + [aux_sym__val_number_decimal_token3] = ACTIONS(3752), + [aux_sym__val_number_decimal_token4] = ACTIONS(3754), + [aux_sym__val_number_token1] = ACTIONS(3756), + [aux_sym__val_number_token2] = ACTIONS(3756), + [aux_sym__val_number_token3] = ACTIONS(3756), + [aux_sym__val_number_token4] = ACTIONS(3758), + [aux_sym__val_number_token5] = ACTIONS(3758), + [aux_sym__val_number_token6] = ACTIONS(3758), + [anon_sym_0b] = ACTIONS(3760), + [anon_sym_0o] = ACTIONS(3762), + [anon_sym_0x] = ACTIONS(3762), + [sym_val_date] = ACTIONS(3764), + [anon_sym_DQUOTE] = ACTIONS(3766), + [sym__str_single_quotes] = ACTIONS(3768), + [sym__str_back_ticks] = ACTIONS(3768), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3772), + [anon_sym_err_GT] = ACTIONS(3694), + [anon_sym_out_GT] = ACTIONS(3694), + [anon_sym_e_GT] = ACTIONS(3694), + [anon_sym_o_GT] = ACTIONS(3694), + [anon_sym_err_PLUSout_GT] = ACTIONS(3694), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3694), + [anon_sym_o_PLUSe_GT] = ACTIONS(3694), + [anon_sym_e_PLUSo_GT] = ACTIONS(3694), + [anon_sym_err_GT_GT] = ACTIONS(3696), + [anon_sym_out_GT_GT] = ACTIONS(3696), + [anon_sym_e_GT_GT] = ACTIONS(3696), + [anon_sym_o_GT_GT] = ACTIONS(3696), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3696), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3696), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3696), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3696), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3774), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3776), }, [1212] = { - [sym_match_arm] = STATE(6712), - [sym_default_arm] = STATE(6712), - [sym_match_pattern] = STATE(7704), - [sym__match_pattern] = STATE(6020), - [sym__match_pattern_expression] = STATE(7226), - [sym__match_pattern_value] = STATE(7259), - [sym__match_pattern_list] = STATE(7280), - [sym__match_pattern_record] = STATE(6737), - [sym_expr_parenthesized] = STATE(5787), - [sym_val_range] = STATE(7259), - [sym__val_range] = STATE(7519), - [sym_val_nothing] = STATE(6734), - [sym_val_bool] = STATE(6677), - [sym_val_variable] = STATE(5731), - [sym_val_number] = STATE(6734), - [sym__val_number_decimal] = STATE(5363), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(6734), - [sym_val_filesize] = STATE(6734), - [sym_val_binary] = STATE(6734), - [sym_val_string] = STATE(6734), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_table] = STATE(6734), - [sym_unquoted] = STATE(7105), - [sym__unquoted_anonymous_prefix] = STATE(7789), + [sym_expr_parenthesized] = STATE(471), + [sym_val_range] = STATE(634), + [sym__val_range] = STATE(7502), + [sym__val_range_with_end] = STATE(7388), + [sym__value] = STATE(634), + [sym_val_nothing] = STATE(673), + [sym_val_bool] = STATE(499), + [sym_val_variable] = STATE(491), + [sym_val_number] = STATE(673), + [sym__val_number_decimal] = STATE(312), + [sym__val_number] = STATE(652), + [sym_val_duration] = STATE(673), + [sym_val_filesize] = STATE(673), + [sym_val_binary] = STATE(673), + [sym_val_string] = STATE(673), + [sym__raw_str] = STATE(605), + [sym__str_double_quotes] = STATE(605), + [sym_val_interpolated] = STATE(673), + [sym__inter_single_quotes] = STATE(655), + [sym__inter_double_quotes] = STATE(657), + [sym_val_list] = STATE(673), + [sym_val_record] = STATE(673), + [sym_val_table] = STATE(673), + [sym_val_closure] = STATE(673), + [sym__unquoted_in_record] = STATE(531), + [sym__unquoted_in_record_with_expr] = STATE(634), + [sym__unquoted_anonymous_prefix] = STATE(7007), [sym_comment] = STATE(1212), - [aux_sym_ctrl_match_repeat1] = STATE(1213), - [anon_sym_LBRACK] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3630), - [anon_sym_LBRACE] = ACTIONS(3632), - [anon_sym__] = ACTIONS(3636), - [anon_sym_DOT_DOT] = ACTIONS(3638), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3640), - [anon_sym_DOT_DOT_LT] = ACTIONS(3640), - [anon_sym_null] = ACTIONS(3642), - [anon_sym_true] = ACTIONS(3644), - [anon_sym_false] = ACTIONS(3644), - [aux_sym__val_number_decimal_token1] = ACTIONS(3646), - [aux_sym__val_number_decimal_token2] = ACTIONS(3648), - [aux_sym__val_number_decimal_token3] = ACTIONS(3650), - [aux_sym__val_number_decimal_token4] = ACTIONS(3652), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3654), - [aux_sym__val_number_token5] = ACTIONS(3654), - [aux_sym__val_number_token6] = ACTIONS(3654), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3656), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3490), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(3734), + [anon_sym_LPAREN] = ACTIONS(3736), + [anon_sym_DOLLAR] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(3738), + [anon_sym_DOT_DOT] = ACTIONS(3740), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3742), + [anon_sym_DOT_DOT_LT] = ACTIONS(3742), + [anon_sym_null] = ACTIONS(3744), + [anon_sym_true] = ACTIONS(3746), + [anon_sym_false] = ACTIONS(3746), + [aux_sym__val_number_decimal_token1] = ACTIONS(3748), + [aux_sym__val_number_decimal_token2] = ACTIONS(3750), + [aux_sym__val_number_decimal_token3] = ACTIONS(3752), + [aux_sym__val_number_decimal_token4] = ACTIONS(3754), + [aux_sym__val_number_token1] = ACTIONS(3756), + [aux_sym__val_number_token2] = ACTIONS(3756), + [aux_sym__val_number_token3] = ACTIONS(3756), + [aux_sym__val_number_token4] = ACTIONS(3758), + [aux_sym__val_number_token5] = ACTIONS(3758), + [aux_sym__val_number_token6] = ACTIONS(3758), + [anon_sym_0b] = ACTIONS(3760), + [anon_sym_0o] = ACTIONS(3762), + [anon_sym_0x] = ACTIONS(3762), + [sym_val_date] = ACTIONS(3764), + [anon_sym_DQUOTE] = ACTIONS(3766), + [sym__str_single_quotes] = ACTIONS(3768), + [sym__str_back_ticks] = ACTIONS(3768), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3772), + [anon_sym_err_GT] = ACTIONS(3694), + [anon_sym_out_GT] = ACTIONS(3694), + [anon_sym_e_GT] = ACTIONS(3694), + [anon_sym_o_GT] = ACTIONS(3694), + [anon_sym_err_PLUSout_GT] = ACTIONS(3694), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3694), + [anon_sym_o_PLUSe_GT] = ACTIONS(3694), + [anon_sym_e_PLUSo_GT] = ACTIONS(3694), + [anon_sym_err_GT_GT] = ACTIONS(3696), + [anon_sym_out_GT_GT] = ACTIONS(3696), + [anon_sym_e_GT_GT] = ACTIONS(3696), + [anon_sym_o_GT_GT] = ACTIONS(3696), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3696), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3696), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3696), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3696), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3774), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3776), }, [1213] = { - [sym_match_arm] = STATE(7389), - [sym_default_arm] = STATE(7389), - [sym_match_pattern] = STATE(7704), - [sym__match_pattern] = STATE(6020), - [sym__match_pattern_expression] = STATE(7226), - [sym__match_pattern_value] = STATE(7259), - [sym__match_pattern_list] = STATE(7280), - [sym__match_pattern_record] = STATE(6737), - [sym_expr_parenthesized] = STATE(5787), - [sym_val_range] = STATE(7259), - [sym__val_range] = STATE(7519), - [sym_val_nothing] = STATE(6734), - [sym_val_bool] = STATE(6677), - [sym_val_variable] = STATE(5731), - [sym_val_number] = STATE(6734), - [sym__val_number_decimal] = STATE(5363), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(6734), - [sym_val_filesize] = STATE(6734), - [sym_val_binary] = STATE(6734), - [sym_val_string] = STATE(6734), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_table] = STATE(6734), - [sym_unquoted] = STATE(7105), - [sym__unquoted_anonymous_prefix] = STATE(7789), + [sym_expr_parenthesized] = STATE(475), + [sym_val_range] = STATE(639), + [sym__val_range] = STATE(7502), + [sym__val_range_with_end] = STATE(7388), + [sym__value] = STATE(639), + [sym_val_nothing] = STATE(673), + [sym_val_bool] = STATE(499), + [sym_val_variable] = STATE(491), + [sym_val_number] = STATE(673), + [sym__val_number_decimal] = STATE(312), + [sym__val_number] = STATE(652), + [sym_val_duration] = STATE(673), + [sym_val_filesize] = STATE(673), + [sym_val_binary] = STATE(673), + [sym_val_string] = STATE(673), + [sym__raw_str] = STATE(605), + [sym__str_double_quotes] = STATE(605), + [sym_val_interpolated] = STATE(673), + [sym__inter_single_quotes] = STATE(655), + [sym__inter_double_quotes] = STATE(657), + [sym_val_list] = STATE(673), + [sym_val_record] = STATE(673), + [sym_val_table] = STATE(673), + [sym_val_closure] = STATE(673), + [sym__unquoted_in_record] = STATE(533), + [sym__unquoted_in_record_with_expr] = STATE(639), + [sym__unquoted_anonymous_prefix] = STATE(7007), [sym_comment] = STATE(1213), - [aux_sym_ctrl_match_repeat1] = STATE(1213), - [anon_sym_LBRACK] = ACTIONS(3878), - [anon_sym_LPAREN] = ACTIONS(3881), - [anon_sym_DOLLAR] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3887), - [anon_sym__] = ACTIONS(3890), - [anon_sym_DOT_DOT] = ACTIONS(3893), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3896), - [anon_sym_DOT_DOT_LT] = ACTIONS(3896), - [anon_sym_null] = ACTIONS(3899), - [anon_sym_true] = ACTIONS(3902), - [anon_sym_false] = ACTIONS(3902), - [aux_sym__val_number_decimal_token1] = ACTIONS(3905), - [aux_sym__val_number_decimal_token2] = ACTIONS(3908), - [aux_sym__val_number_decimal_token3] = ACTIONS(3911), - [aux_sym__val_number_decimal_token4] = ACTIONS(3914), - [aux_sym__val_number_token1] = ACTIONS(3917), - [aux_sym__val_number_token2] = ACTIONS(3917), - [aux_sym__val_number_token3] = ACTIONS(3917), - [aux_sym__val_number_token4] = ACTIONS(3920), - [aux_sym__val_number_token5] = ACTIONS(3920), - [aux_sym__val_number_token6] = ACTIONS(3920), - [anon_sym_0b] = ACTIONS(3923), - [anon_sym_0o] = ACTIONS(3926), - [anon_sym_0x] = ACTIONS(3926), - [sym_val_date] = ACTIONS(3929), - [anon_sym_DQUOTE] = ACTIONS(3932), - [sym__str_single_quotes] = ACTIONS(3935), - [sym__str_back_ticks] = ACTIONS(3935), - [anon_sym_err_GT] = ACTIONS(3938), - [anon_sym_out_GT] = ACTIONS(3938), - [anon_sym_e_GT] = ACTIONS(3938), - [anon_sym_o_GT] = ACTIONS(3938), - [anon_sym_err_PLUSout_GT] = ACTIONS(3938), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3938), - [anon_sym_o_PLUSe_GT] = ACTIONS(3938), - [anon_sym_e_PLUSo_GT] = ACTIONS(3938), - [anon_sym_err_GT_GT] = ACTIONS(3941), - [anon_sym_out_GT_GT] = ACTIONS(3941), - [anon_sym_e_GT_GT] = ACTIONS(3941), - [anon_sym_o_GT_GT] = ACTIONS(3941), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3941), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3941), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3941), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3941), - [aux_sym_unquoted_token1] = ACTIONS(3944), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3947), + [anon_sym_LBRACK] = ACTIONS(3734), + [anon_sym_LPAREN] = ACTIONS(3736), + [anon_sym_DOLLAR] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(3738), + [anon_sym_DOT_DOT] = ACTIONS(3740), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3742), + [anon_sym_DOT_DOT_LT] = ACTIONS(3742), + [anon_sym_null] = ACTIONS(3744), + [anon_sym_true] = ACTIONS(3746), + [anon_sym_false] = ACTIONS(3746), + [aux_sym__val_number_decimal_token1] = ACTIONS(3748), + [aux_sym__val_number_decimal_token2] = ACTIONS(3750), + [aux_sym__val_number_decimal_token3] = ACTIONS(3752), + [aux_sym__val_number_decimal_token4] = ACTIONS(3754), + [aux_sym__val_number_token1] = ACTIONS(3756), + [aux_sym__val_number_token2] = ACTIONS(3756), + [aux_sym__val_number_token3] = ACTIONS(3756), + [aux_sym__val_number_token4] = ACTIONS(3758), + [aux_sym__val_number_token5] = ACTIONS(3758), + [aux_sym__val_number_token6] = ACTIONS(3758), + [anon_sym_0b] = ACTIONS(3760), + [anon_sym_0o] = ACTIONS(3762), + [anon_sym_0x] = ACTIONS(3762), + [sym_val_date] = ACTIONS(3764), + [anon_sym_DQUOTE] = ACTIONS(3766), + [sym__str_single_quotes] = ACTIONS(3768), + [sym__str_back_ticks] = ACTIONS(3768), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3772), + [anon_sym_err_GT] = ACTIONS(3694), + [anon_sym_out_GT] = ACTIONS(3694), + [anon_sym_e_GT] = ACTIONS(3694), + [anon_sym_o_GT] = ACTIONS(3694), + [anon_sym_err_PLUSout_GT] = ACTIONS(3694), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3694), + [anon_sym_o_PLUSe_GT] = ACTIONS(3694), + [anon_sym_e_PLUSo_GT] = ACTIONS(3694), + [anon_sym_err_GT_GT] = ACTIONS(3696), + [anon_sym_out_GT_GT] = ACTIONS(3696), + [anon_sym_e_GT_GT] = ACTIONS(3696), + [anon_sym_o_GT_GT] = ACTIONS(3696), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3696), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3696), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3696), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3696), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3774), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3776), }, [1214] = { - [sym_expr_parenthesized] = STATE(6595), - [sym_val_range] = STATE(7561), - [sym__val_range] = STATE(7519), - [sym__value] = STATE(7561), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(7415), - [sym_val_variable] = STATE(6654), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(5640), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(3668), - [sym__str_double_quotes] = STATE(3668), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(7562), - [sym__unquoted_anonymous_prefix] = STATE(7789), + [sym_expr_parenthesized] = STATE(529), + [sym_val_range] = STATE(698), + [sym__val_range] = STATE(7594), + [sym__val_range_with_end] = STATE(7365), + [sym__value] = STATE(698), + [sym_val_nothing] = STATE(747), + [sym_val_bool] = STATE(557), + [sym_val_variable] = STATE(494), + [sym_val_number] = STATE(747), + [sym__val_number_decimal] = STATE(345), + [sym__val_number] = STATE(688), + [sym_val_duration] = STATE(747), + [sym_val_filesize] = STATE(747), + [sym_val_binary] = STATE(747), + [sym_val_string] = STATE(747), + [sym__raw_str] = STATE(716), + [sym__str_double_quotes] = STATE(716), + [sym_val_interpolated] = STATE(747), + [sym__inter_single_quotes] = STATE(680), + [sym__inter_double_quotes] = STATE(683), + [sym_val_list] = STATE(747), + [sym_val_record] = STATE(747), + [sym_val_table] = STATE(747), + [sym_val_closure] = STATE(747), + [sym__unquoted_in_record] = STATE(574), + [sym__unquoted_in_record_with_expr] = STATE(698), + [sym__unquoted_anonymous_prefix] = STATE(6871), [sym_comment] = STATE(1214), - [anon_sym_LBRACK] = ACTIONS(3460), - [anon_sym_LPAREN] = ACTIONS(3462), - [anon_sym_DOLLAR] = ACTIONS(3464), - [anon_sym_LBRACE] = ACTIONS(3466), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3952), - [anon_sym_DOT_DOT_LT] = ACTIONS(3952), - [anon_sym_null] = ACTIONS(3954), - [anon_sym_true] = ACTIONS(3956), - [anon_sym_false] = ACTIONS(3956), - [aux_sym__val_number_decimal_token1] = ACTIONS(3958), - [aux_sym__val_number_decimal_token2] = ACTIONS(3960), - [aux_sym__val_number_decimal_token3] = ACTIONS(3962), - [aux_sym__val_number_decimal_token4] = ACTIONS(3964), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3966), - [aux_sym__val_number_token5] = ACTIONS(3966), - [aux_sym__val_number_token6] = ACTIONS(3966), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3968), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym__str_single_quotes] = ACTIONS(1288), - [sym__str_back_ticks] = ACTIONS(1288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_COLON2] = ACTIONS(3420), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3490), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1290), + [anon_sym_LBRACK] = ACTIONS(3778), + [anon_sym_LPAREN] = ACTIONS(3780), + [anon_sym_DOLLAR] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(3782), + [anon_sym_DOT_DOT] = ACTIONS(3784), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3786), + [anon_sym_DOT_DOT_LT] = ACTIONS(3786), + [anon_sym_null] = ACTIONS(3788), + [anon_sym_true] = ACTIONS(3790), + [anon_sym_false] = ACTIONS(3790), + [aux_sym__val_number_decimal_token1] = ACTIONS(3792), + [aux_sym__val_number_decimal_token2] = ACTIONS(3794), + [aux_sym__val_number_decimal_token3] = ACTIONS(3796), + [aux_sym__val_number_decimal_token4] = ACTIONS(3798), + [aux_sym__val_number_token1] = ACTIONS(3800), + [aux_sym__val_number_token2] = ACTIONS(3800), + [aux_sym__val_number_token3] = ACTIONS(3800), + [aux_sym__val_number_token4] = ACTIONS(3802), + [aux_sym__val_number_token5] = ACTIONS(3802), + [aux_sym__val_number_token6] = ACTIONS(3802), + [anon_sym_0b] = ACTIONS(3804), + [anon_sym_0o] = ACTIONS(3806), + [anon_sym_0x] = ACTIONS(3806), + [sym_val_date] = ACTIONS(3808), + [anon_sym_DQUOTE] = ACTIONS(3810), + [sym__str_single_quotes] = ACTIONS(3812), + [sym__str_back_ticks] = ACTIONS(3812), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3814), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3816), + [anon_sym_err_GT] = ACTIONS(3694), + [anon_sym_out_GT] = ACTIONS(3694), + [anon_sym_e_GT] = ACTIONS(3694), + [anon_sym_o_GT] = ACTIONS(3694), + [anon_sym_err_PLUSout_GT] = ACTIONS(3694), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3694), + [anon_sym_o_PLUSe_GT] = ACTIONS(3694), + [anon_sym_e_PLUSo_GT] = ACTIONS(3694), + [anon_sym_err_GT_GT] = ACTIONS(3696), + [anon_sym_out_GT_GT] = ACTIONS(3696), + [anon_sym_e_GT_GT] = ACTIONS(3696), + [anon_sym_o_GT_GT] = ACTIONS(3696), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3696), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3696), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3696), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3696), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3818), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3820), }, [1215] = { - [sym_expr_parenthesized] = STATE(6595), - [sym_val_range] = STATE(7561), - [sym__val_range] = STATE(7519), - [sym__value] = STATE(7561), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(7415), - [sym_val_variable] = STATE(6654), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(5640), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(3668), - [sym__str_double_quotes] = STATE(3668), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(7562), - [sym__unquoted_anonymous_prefix] = STATE(7789), + [sym_expr_parenthesized] = STATE(530), + [sym_val_range] = STATE(703), + [sym__val_range] = STATE(7594), + [sym__val_range_with_end] = STATE(7365), + [sym__value] = STATE(703), + [sym_val_nothing] = STATE(747), + [sym_val_bool] = STATE(557), + [sym_val_variable] = STATE(494), + [sym_val_number] = STATE(747), + [sym__val_number_decimal] = STATE(345), + [sym__val_number] = STATE(688), + [sym_val_duration] = STATE(747), + [sym_val_filesize] = STATE(747), + [sym_val_binary] = STATE(747), + [sym_val_string] = STATE(747), + [sym__raw_str] = STATE(716), + [sym__str_double_quotes] = STATE(716), + [sym_val_interpolated] = STATE(747), + [sym__inter_single_quotes] = STATE(680), + [sym__inter_double_quotes] = STATE(683), + [sym_val_list] = STATE(747), + [sym_val_record] = STATE(747), + [sym_val_table] = STATE(747), + [sym_val_closure] = STATE(747), + [sym__unquoted_in_record] = STATE(576), + [sym__unquoted_in_record_with_expr] = STATE(703), + [sym__unquoted_anonymous_prefix] = STATE(6871), [sym_comment] = STATE(1215), - [anon_sym_LBRACK] = ACTIONS(3460), - [anon_sym_LPAREN] = ACTIONS(3462), - [anon_sym_DOLLAR] = ACTIONS(3464), - [anon_sym_LBRACE] = ACTIONS(3466), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3952), - [anon_sym_DOT_DOT_LT] = ACTIONS(3952), - [anon_sym_null] = ACTIONS(3954), - [anon_sym_true] = ACTIONS(3956), - [anon_sym_false] = ACTIONS(3956), - [aux_sym__val_number_decimal_token1] = ACTIONS(3958), - [aux_sym__val_number_decimal_token2] = ACTIONS(3960), - [aux_sym__val_number_decimal_token3] = ACTIONS(3962), - [aux_sym__val_number_decimal_token4] = ACTIONS(3964), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3966), - [aux_sym__val_number_token5] = ACTIONS(3966), - [aux_sym__val_number_token6] = ACTIONS(3966), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3968), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym__str_single_quotes] = ACTIONS(1288), - [sym__str_back_ticks] = ACTIONS(1288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_COLON2] = ACTIONS(3442), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3490), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1290), + [anon_sym_LBRACK] = ACTIONS(3778), + [anon_sym_LPAREN] = ACTIONS(3780), + [anon_sym_DOLLAR] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(3782), + [anon_sym_DOT_DOT] = ACTIONS(3784), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3786), + [anon_sym_DOT_DOT_LT] = ACTIONS(3786), + [anon_sym_null] = ACTIONS(3788), + [anon_sym_true] = ACTIONS(3790), + [anon_sym_false] = ACTIONS(3790), + [aux_sym__val_number_decimal_token1] = ACTIONS(3792), + [aux_sym__val_number_decimal_token2] = ACTIONS(3794), + [aux_sym__val_number_decimal_token3] = ACTIONS(3796), + [aux_sym__val_number_decimal_token4] = ACTIONS(3798), + [aux_sym__val_number_token1] = ACTIONS(3800), + [aux_sym__val_number_token2] = ACTIONS(3800), + [aux_sym__val_number_token3] = ACTIONS(3800), + [aux_sym__val_number_token4] = ACTIONS(3802), + [aux_sym__val_number_token5] = ACTIONS(3802), + [aux_sym__val_number_token6] = ACTIONS(3802), + [anon_sym_0b] = ACTIONS(3804), + [anon_sym_0o] = ACTIONS(3806), + [anon_sym_0x] = ACTIONS(3806), + [sym_val_date] = ACTIONS(3808), + [anon_sym_DQUOTE] = ACTIONS(3810), + [sym__str_single_quotes] = ACTIONS(3812), + [sym__str_back_ticks] = ACTIONS(3812), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3814), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3816), + [anon_sym_err_GT] = ACTIONS(3694), + [anon_sym_out_GT] = ACTIONS(3694), + [anon_sym_e_GT] = ACTIONS(3694), + [anon_sym_o_GT] = ACTIONS(3694), + [anon_sym_err_PLUSout_GT] = ACTIONS(3694), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3694), + [anon_sym_o_PLUSe_GT] = ACTIONS(3694), + [anon_sym_e_PLUSo_GT] = ACTIONS(3694), + [anon_sym_err_GT_GT] = ACTIONS(3696), + [anon_sym_out_GT_GT] = ACTIONS(3696), + [anon_sym_e_GT_GT] = ACTIONS(3696), + [anon_sym_o_GT_GT] = ACTIONS(3696), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3696), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3696), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3696), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3696), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3818), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3820), }, [1216] = { + [sym_expr_parenthesized] = STATE(528), + [sym_val_range] = STATE(694), + [sym__val_range] = STATE(7594), + [sym__val_range_with_end] = STATE(7365), + [sym__value] = STATE(694), + [sym_val_nothing] = STATE(747), + [sym_val_bool] = STATE(557), + [sym_val_variable] = STATE(494), + [sym_val_number] = STATE(747), + [sym__val_number_decimal] = STATE(345), + [sym__val_number] = STATE(688), + [sym_val_duration] = STATE(747), + [sym_val_filesize] = STATE(747), + [sym_val_binary] = STATE(747), + [sym_val_string] = STATE(747), + [sym__raw_str] = STATE(716), + [sym__str_double_quotes] = STATE(716), + [sym_val_interpolated] = STATE(747), + [sym__inter_single_quotes] = STATE(680), + [sym__inter_double_quotes] = STATE(683), + [sym_val_list] = STATE(747), + [sym_val_record] = STATE(747), + [sym_val_table] = STATE(747), + [sym_val_closure] = STATE(747), + [sym__unquoted_in_record] = STATE(573), + [sym__unquoted_in_record_with_expr] = STATE(694), + [sym__unquoted_anonymous_prefix] = STATE(6871), [sym_comment] = STATE(1216), - [anon_sym_STAR_STAR] = ACTIONS(1552), - [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1550), - [anon_sym_SLASH] = ACTIONS(1550), - [anon_sym_mod] = ACTIONS(1552), - [anon_sym_SLASH_SLASH] = ACTIONS(1552), - [anon_sym_PLUS] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1552), - [anon_sym_bit_DASHshl] = ACTIONS(1552), - [anon_sym_bit_DASHshr] = ACTIONS(1552), - [anon_sym_EQ_TILDE] = ACTIONS(1552), - [anon_sym_BANG_TILDE] = ACTIONS(1552), - [anon_sym_bit_DASHand] = ACTIONS(1552), - [anon_sym_bit_DASHxor] = ACTIONS(1552), - [anon_sym_bit_DASHor] = ACTIONS(1552), - [anon_sym_and] = ACTIONS(1552), - [anon_sym_xor] = ACTIONS(1552), - [anon_sym_or] = ACTIONS(1552), - [anon_sym_in] = ACTIONS(1552), - [anon_sym_not_DASHin] = ACTIONS(1552), - [anon_sym_starts_DASHwith] = ACTIONS(1552), - [anon_sym_ends_DASHwith] = ACTIONS(1552), - [anon_sym_EQ_EQ] = ACTIONS(1552), - [anon_sym_BANG_EQ] = ACTIONS(1552), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_LT_EQ] = ACTIONS(1552), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_GT_EQ] = ACTIONS(1552), - [aux_sym_cmd_identifier_token41] = ACTIONS(1550), - [sym__newline] = ACTIONS(1550), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_err_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_GT_PIPE] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1550), - [anon_sym_GT2] = ACTIONS(1550), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_in2] = ACTIONS(1550), - [anon_sym_STAR2] = ACTIONS(1550), - [anon_sym_and2] = ACTIONS(1550), - [anon_sym_xor2] = ACTIONS(1550), - [anon_sym_or2] = ACTIONS(1550), - [anon_sym_not_DASHin2] = ACTIONS(1550), - [anon_sym_starts_DASHwith2] = ACTIONS(1550), - [anon_sym_ends_DASHwith2] = ACTIONS(1550), - [anon_sym_EQ_EQ2] = ACTIONS(1550), - [anon_sym_BANG_EQ2] = ACTIONS(1550), - [anon_sym_LT2] = ACTIONS(1550), - [anon_sym_LT_EQ2] = ACTIONS(1550), - [anon_sym_GT_EQ2] = ACTIONS(1550), - [anon_sym_EQ_TILDE2] = ACTIONS(1550), - [anon_sym_BANG_TILDE2] = ACTIONS(1550), - [anon_sym_STAR_STAR2] = ACTIONS(1550), - [anon_sym_PLUS_PLUS2] = ACTIONS(1550), - [anon_sym_SLASH2] = ACTIONS(1550), - [anon_sym_mod2] = ACTIONS(1550), - [anon_sym_SLASH_SLASH2] = ACTIONS(1550), - [anon_sym_PLUS2] = ACTIONS(1550), - [anon_sym_bit_DASHshl2] = ACTIONS(1550), - [anon_sym_bit_DASHshr2] = ACTIONS(1550), - [anon_sym_bit_DASHand2] = ACTIONS(1550), - [anon_sym_bit_DASHxor2] = ACTIONS(1550), - [anon_sym_bit_DASHor2] = ACTIONS(1550), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [sym_filesize_unit] = ACTIONS(1550), - [sym_duration_unit] = ACTIONS(1552), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3778), + [anon_sym_LPAREN] = ACTIONS(3780), + [anon_sym_DOLLAR] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(3782), + [anon_sym_DOT_DOT] = ACTIONS(3784), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3786), + [anon_sym_DOT_DOT_LT] = ACTIONS(3786), + [anon_sym_null] = ACTIONS(3788), + [anon_sym_true] = ACTIONS(3790), + [anon_sym_false] = ACTIONS(3790), + [aux_sym__val_number_decimal_token1] = ACTIONS(3792), + [aux_sym__val_number_decimal_token2] = ACTIONS(3794), + [aux_sym__val_number_decimal_token3] = ACTIONS(3796), + [aux_sym__val_number_decimal_token4] = ACTIONS(3798), + [aux_sym__val_number_token1] = ACTIONS(3800), + [aux_sym__val_number_token2] = ACTIONS(3800), + [aux_sym__val_number_token3] = ACTIONS(3800), + [aux_sym__val_number_token4] = ACTIONS(3802), + [aux_sym__val_number_token5] = ACTIONS(3802), + [aux_sym__val_number_token6] = ACTIONS(3802), + [anon_sym_0b] = ACTIONS(3804), + [anon_sym_0o] = ACTIONS(3806), + [anon_sym_0x] = ACTIONS(3806), + [sym_val_date] = ACTIONS(3808), + [anon_sym_DQUOTE] = ACTIONS(3810), + [sym__str_single_quotes] = ACTIONS(3812), + [sym__str_back_ticks] = ACTIONS(3812), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3814), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3816), + [anon_sym_err_GT] = ACTIONS(3694), + [anon_sym_out_GT] = ACTIONS(3694), + [anon_sym_e_GT] = ACTIONS(3694), + [anon_sym_o_GT] = ACTIONS(3694), + [anon_sym_err_PLUSout_GT] = ACTIONS(3694), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3694), + [anon_sym_o_PLUSe_GT] = ACTIONS(3694), + [anon_sym_e_PLUSo_GT] = ACTIONS(3694), + [anon_sym_err_GT_GT] = ACTIONS(3696), + [anon_sym_out_GT_GT] = ACTIONS(3696), + [anon_sym_e_GT_GT] = ACTIONS(3696), + [anon_sym_o_GT_GT] = ACTIONS(3696), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3696), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3696), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3696), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3696), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3818), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3820), }, [1217] = { - [sym__match_pattern_expression] = STATE(3162), - [sym__match_pattern_value] = STATE(3176), - [sym__match_pattern_list] = STATE(3183), - [sym__match_pattern_rest] = STATE(7587), - [sym__match_pattern_record] = STATE(3151), - [sym_expr_parenthesized] = STATE(2934), - [sym_val_range] = STATE(3176), - [sym__val_range] = STATE(7541), - [sym_val_nothing] = STATE(3167), - [sym_val_bool] = STATE(3060), - [sym_val_variable] = STATE(2912), - [sym_val_number] = STATE(3167), - [sym__val_number_decimal] = STATE(2702), - [sym__val_number] = STATE(3161), - [sym_val_duration] = STATE(3167), - [sym_val_filesize] = STATE(3167), - [sym_val_binary] = STATE(3167), - [sym_val_string] = STATE(3167), - [sym__raw_str] = STATE(3174), - [sym__str_double_quotes] = STATE(3174), - [sym_val_list] = STATE(7769), - [sym_val_table] = STATE(3167), - [sym__unquoted_in_list] = STATE(3162), - [sym__unquoted_anonymous_prefix] = STATE(7637), + [sym_expr_parenthesized] = STATE(6558), + [sym_val_range] = STATE(7555), + [sym__val_range] = STATE(7833), + [sym__value] = STATE(7555), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(7418), + [sym_val_variable] = STATE(6613), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(5595), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(3793), + [sym__str_double_quotes] = STATE(3793), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(7559), + [sym__unquoted_anonymous_prefix] = STATE(7649), [sym_comment] = STATE(1217), - [aux_sym_shebang_repeat1] = STATE(6697), - [aux_sym__match_pattern_list_repeat1] = STATE(1248), - [sym__newline] = ACTIONS(3826), - [anon_sym_LBRACK] = ACTIONS(3828), - [anon_sym_RBRACK] = ACTIONS(3970), - [anon_sym_LPAREN] = ACTIONS(3832), - [anon_sym_DOLLAR] = ACTIONS(3834), - [anon_sym_LBRACE] = ACTIONS(3836), - [anon_sym_DOT_DOT] = ACTIONS(3972), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3840), - [anon_sym_DOT_DOT_LT] = ACTIONS(3840), - [anon_sym_null] = ACTIONS(3842), - [anon_sym_true] = ACTIONS(3844), - [anon_sym_false] = ACTIONS(3844), - [aux_sym__val_number_decimal_token1] = ACTIONS(3846), - [aux_sym__val_number_decimal_token2] = ACTIONS(3848), - [aux_sym__val_number_decimal_token3] = ACTIONS(3850), - [aux_sym__val_number_decimal_token4] = ACTIONS(3852), - [aux_sym__val_number_token1] = ACTIONS(3854), - [aux_sym__val_number_token2] = ACTIONS(3854), - [aux_sym__val_number_token3] = ACTIONS(3854), - [aux_sym__val_number_token4] = ACTIONS(3856), - [aux_sym__val_number_token5] = ACTIONS(3856), - [aux_sym__val_number_token6] = ACTIONS(3856), - [anon_sym_0b] = ACTIONS(3858), - [anon_sym_0o] = ACTIONS(3860), - [anon_sym_0x] = ACTIONS(3860), - [sym_val_date] = ACTIONS(3862), - [anon_sym_DQUOTE] = ACTIONS(3864), - [sym__str_single_quotes] = ACTIONS(3866), - [sym__str_back_ticks] = ACTIONS(3866), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3868), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3870), + [anon_sym_LBRACK] = ACTIONS(3508), + [anon_sym_LPAREN] = ACTIONS(3510), + [anon_sym_DOLLAR] = ACTIONS(3512), + [anon_sym_LBRACE] = ACTIONS(3514), + [anon_sym_DOT_DOT] = ACTIONS(3822), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3824), + [anon_sym_DOT_DOT_LT] = ACTIONS(3824), + [anon_sym_null] = ACTIONS(3826), + [anon_sym_true] = ACTIONS(3828), + [anon_sym_false] = ACTIONS(3828), + [aux_sym__val_number_decimal_token1] = ACTIONS(3830), + [aux_sym__val_number_decimal_token2] = ACTIONS(3832), + [aux_sym__val_number_decimal_token3] = ACTIONS(3834), + [aux_sym__val_number_decimal_token4] = ACTIONS(3836), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3838), + [aux_sym__val_number_token5] = ACTIONS(3838), + [aux_sym__val_number_token6] = ACTIONS(3838), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3840), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym__str_single_quotes] = ACTIONS(1274), + [sym__str_back_ticks] = ACTIONS(1274), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_COLON2] = ACTIONS(3444), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3538), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1276), }, [1218] = { - [sym_match_arm] = STATE(6861), - [sym_default_arm] = STATE(6861), - [sym_match_pattern] = STATE(7704), - [sym__match_pattern] = STATE(6020), - [sym__match_pattern_expression] = STATE(7226), - [sym__match_pattern_value] = STATE(7259), - [sym__match_pattern_list] = STATE(7280), - [sym__match_pattern_record] = STATE(6737), - [sym_expr_parenthesized] = STATE(5787), - [sym_val_range] = STATE(7259), - [sym__val_range] = STATE(7519), - [sym_val_nothing] = STATE(6734), - [sym_val_bool] = STATE(6677), - [sym_val_variable] = STATE(5731), - [sym_val_number] = STATE(6734), - [sym__val_number_decimal] = STATE(5363), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(6734), - [sym_val_filesize] = STATE(6734), - [sym_val_binary] = STATE(6734), - [sym_val_string] = STATE(6734), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_table] = STATE(6734), - [sym_unquoted] = STATE(7105), - [sym__unquoted_anonymous_prefix] = STATE(7789), [sym_comment] = STATE(1218), - [aux_sym_ctrl_match_repeat1] = STATE(1213), - [anon_sym_LBRACK] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3630), - [anon_sym_LBRACE] = ACTIONS(3632), - [anon_sym__] = ACTIONS(3636), - [anon_sym_DOT_DOT] = ACTIONS(3638), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3640), - [anon_sym_DOT_DOT_LT] = ACTIONS(3640), - [anon_sym_null] = ACTIONS(3642), - [anon_sym_true] = ACTIONS(3644), - [anon_sym_false] = ACTIONS(3644), - [aux_sym__val_number_decimal_token1] = ACTIONS(3646), - [aux_sym__val_number_decimal_token2] = ACTIONS(3648), - [aux_sym__val_number_decimal_token3] = ACTIONS(3650), - [aux_sym__val_number_decimal_token4] = ACTIONS(3652), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3654), - [aux_sym__val_number_token5] = ACTIONS(3654), - [aux_sym__val_number_token6] = ACTIONS(3654), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3656), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3490), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [ts_builtin_sym_end] = ACTIONS(2083), + [anon_sym_STAR_STAR] = ACTIONS(3086), + [anon_sym_PLUS_PLUS] = ACTIONS(3086), + [anon_sym_STAR] = ACTIONS(3088), + [anon_sym_SLASH] = ACTIONS(3088), + [anon_sym_mod] = ACTIONS(3086), + [anon_sym_SLASH_SLASH] = ACTIONS(3086), + [anon_sym_PLUS] = ACTIONS(3088), + [anon_sym_DASH] = ACTIONS(3086), + [anon_sym_bit_DASHshl] = ACTIONS(3086), + [anon_sym_bit_DASHshr] = ACTIONS(3086), + [anon_sym_EQ_TILDE] = ACTIONS(3086), + [anon_sym_BANG_TILDE] = ACTIONS(3086), + [anon_sym_bit_DASHand] = ACTIONS(3086), + [anon_sym_bit_DASHxor] = ACTIONS(3086), + [anon_sym_bit_DASHor] = ACTIONS(3086), + [anon_sym_and] = ACTIONS(3086), + [anon_sym_xor] = ACTIONS(3086), + [anon_sym_or] = ACTIONS(3086), + [anon_sym_in] = ACTIONS(3086), + [anon_sym_not_DASHin] = ACTIONS(3086), + [anon_sym_has] = ACTIONS(3086), + [anon_sym_not_DASHhas] = ACTIONS(3086), + [anon_sym_starts_DASHwith] = ACTIONS(3086), + [anon_sym_ends_DASHwith] = ACTIONS(3086), + [anon_sym_EQ_EQ] = ACTIONS(3086), + [anon_sym_BANG_EQ] = ACTIONS(3086), + [anon_sym_LT] = ACTIONS(3088), + [anon_sym_LT_EQ] = ACTIONS(3086), + [anon_sym_GT] = ACTIONS(3088), + [anon_sym_GT_EQ] = ACTIONS(3086), + [aux_sym_cmd_identifier_token41] = ACTIONS(3090), + [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_GT2] = ACTIONS(2081), + [anon_sym_DASH2] = ACTIONS(2081), + [anon_sym_in2] = ACTIONS(2081), + [anon_sym_STAR2] = ACTIONS(2081), + [anon_sym_and2] = ACTIONS(2081), + [anon_sym_xor2] = ACTIONS(2081), + [anon_sym_or2] = ACTIONS(2081), + [anon_sym_not_DASHin2] = ACTIONS(2081), + [anon_sym_has2] = ACTIONS(2081), + [anon_sym_not_DASHhas2] = ACTIONS(2081), + [anon_sym_starts_DASHwith2] = ACTIONS(2081), + [anon_sym_ends_DASHwith2] = ACTIONS(2081), + [anon_sym_EQ_EQ2] = ACTIONS(2081), + [anon_sym_BANG_EQ2] = ACTIONS(2081), + [anon_sym_LT2] = ACTIONS(2081), + [anon_sym_LT_EQ2] = ACTIONS(2081), + [anon_sym_GT_EQ2] = ACTIONS(2081), + [anon_sym_EQ_TILDE2] = ACTIONS(2081), + [anon_sym_BANG_TILDE2] = ACTIONS(2081), + [anon_sym_STAR_STAR2] = ACTIONS(2081), + [anon_sym_PLUS_PLUS2] = ACTIONS(2081), + [anon_sym_SLASH2] = ACTIONS(2081), + [anon_sym_mod2] = ACTIONS(2081), + [anon_sym_SLASH_SLASH2] = ACTIONS(2081), + [anon_sym_PLUS2] = ACTIONS(2081), + [anon_sym_bit_DASHshl2] = ACTIONS(2081), + [anon_sym_bit_DASHshr2] = ACTIONS(2081), + [anon_sym_bit_DASHand2] = ACTIONS(2081), + [anon_sym_bit_DASHxor2] = ACTIONS(2081), + [anon_sym_bit_DASHor2] = ACTIONS(2081), + [anon_sym_POUND] = ACTIONS(3), }, [1219] = { + [sym__match_pattern_expression] = STATE(3186), + [sym__match_pattern_value] = STATE(3171), + [sym__match_pattern_list] = STATE(3187), + [sym__match_pattern_rest] = STATE(7619), + [sym__match_pattern_record] = STATE(3188), + [sym_expr_parenthesized] = STATE(2937), + [sym_val_range] = STATE(3171), + [sym__val_range] = STATE(7677), + [sym_val_nothing] = STATE(3178), + [sym_val_bool] = STATE(3081), + [sym_val_variable] = STATE(2920), + [sym_val_number] = STATE(3178), + [sym__val_number_decimal] = STATE(2695), + [sym__val_number] = STATE(3189), + [sym_val_duration] = STATE(3178), + [sym_val_filesize] = STATE(3178), + [sym_val_binary] = STATE(3178), + [sym_val_string] = STATE(3178), + [sym__raw_str] = STATE(3169), + [sym__str_double_quotes] = STATE(3169), + [sym_val_list] = STATE(7675), + [sym_val_table] = STATE(3178), + [sym__unquoted_in_list] = STATE(3186), + [sym__unquoted_anonymous_prefix] = STATE(7685), [sym_comment] = STATE(1219), - [anon_sym_STAR_STAR] = ACTIONS(1544), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_STAR] = ACTIONS(1542), - [anon_sym_SLASH] = ACTIONS(1542), - [anon_sym_mod] = ACTIONS(1544), - [anon_sym_SLASH_SLASH] = ACTIONS(1544), - [anon_sym_PLUS] = ACTIONS(1542), - [anon_sym_DASH] = ACTIONS(1544), - [anon_sym_bit_DASHshl] = ACTIONS(1544), - [anon_sym_bit_DASHshr] = ACTIONS(1544), - [anon_sym_EQ_TILDE] = ACTIONS(1544), - [anon_sym_BANG_TILDE] = ACTIONS(1544), - [anon_sym_bit_DASHand] = ACTIONS(1544), - [anon_sym_bit_DASHxor] = ACTIONS(1544), - [anon_sym_bit_DASHor] = ACTIONS(1544), - [anon_sym_and] = ACTIONS(1544), - [anon_sym_xor] = ACTIONS(1544), - [anon_sym_or] = ACTIONS(1544), - [anon_sym_in] = ACTIONS(1544), - [anon_sym_not_DASHin] = ACTIONS(1544), - [anon_sym_starts_DASHwith] = ACTIONS(1544), - [anon_sym_ends_DASHwith] = ACTIONS(1544), - [anon_sym_EQ_EQ] = ACTIONS(1544), - [anon_sym_BANG_EQ] = ACTIONS(1544), - [anon_sym_LT] = ACTIONS(1542), - [anon_sym_LT_EQ] = ACTIONS(1544), - [anon_sym_GT] = ACTIONS(1542), - [anon_sym_GT_EQ] = ACTIONS(1544), - [aux_sym_cmd_identifier_token41] = ACTIONS(1542), - [sym__newline] = ACTIONS(1542), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_err_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_GT_PIPE] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), - [anon_sym_GT2] = ACTIONS(1542), - [anon_sym_DASH2] = ACTIONS(1542), - [anon_sym_in2] = ACTIONS(1542), - [anon_sym_STAR2] = ACTIONS(1542), - [anon_sym_and2] = ACTIONS(1542), - [anon_sym_xor2] = ACTIONS(1542), - [anon_sym_or2] = ACTIONS(1542), - [anon_sym_not_DASHin2] = ACTIONS(1542), - [anon_sym_starts_DASHwith2] = ACTIONS(1542), - [anon_sym_ends_DASHwith2] = ACTIONS(1542), - [anon_sym_EQ_EQ2] = ACTIONS(1542), - [anon_sym_BANG_EQ2] = ACTIONS(1542), - [anon_sym_LT2] = ACTIONS(1542), - [anon_sym_LT_EQ2] = ACTIONS(1542), - [anon_sym_GT_EQ2] = ACTIONS(1542), - [anon_sym_EQ_TILDE2] = ACTIONS(1542), - [anon_sym_BANG_TILDE2] = ACTIONS(1542), - [anon_sym_STAR_STAR2] = ACTIONS(1542), - [anon_sym_PLUS_PLUS2] = ACTIONS(1542), - [anon_sym_SLASH2] = ACTIONS(1542), - [anon_sym_mod2] = ACTIONS(1542), - [anon_sym_SLASH_SLASH2] = ACTIONS(1542), - [anon_sym_PLUS2] = ACTIONS(1542), - [anon_sym_bit_DASHshl2] = ACTIONS(1542), - [anon_sym_bit_DASHshr2] = ACTIONS(1542), - [anon_sym_bit_DASHand2] = ACTIONS(1542), - [anon_sym_bit_DASHxor2] = ACTIONS(1542), - [anon_sym_bit_DASHor2] = ACTIONS(1542), - [anon_sym_DOT_DOT2] = ACTIONS(1542), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1544), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1544), - [sym_filesize_unit] = ACTIONS(1542), - [sym_duration_unit] = ACTIONS(1544), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(6259), + [aux_sym__match_pattern_list_repeat1] = STATE(1288), + [sym__newline] = ACTIONS(3842), + [anon_sym_LBRACK] = ACTIONS(3844), + [anon_sym_RBRACK] = ACTIONS(3846), + [anon_sym_LPAREN] = ACTIONS(3848), + [anon_sym_DOLLAR] = ACTIONS(3850), + [anon_sym_LBRACE] = ACTIONS(3852), + [anon_sym_DOT_DOT] = ACTIONS(3854), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3856), + [anon_sym_DOT_DOT_LT] = ACTIONS(3856), + [anon_sym_null] = ACTIONS(3858), + [anon_sym_true] = ACTIONS(3860), + [anon_sym_false] = ACTIONS(3860), + [aux_sym__val_number_decimal_token1] = ACTIONS(3862), + [aux_sym__val_number_decimal_token2] = ACTIONS(3864), + [aux_sym__val_number_decimal_token3] = ACTIONS(3866), + [aux_sym__val_number_decimal_token4] = ACTIONS(3868), + [aux_sym__val_number_token1] = ACTIONS(3870), + [aux_sym__val_number_token2] = ACTIONS(3870), + [aux_sym__val_number_token3] = ACTIONS(3870), + [aux_sym__val_number_token4] = ACTIONS(3872), + [aux_sym__val_number_token5] = ACTIONS(3872), + [aux_sym__val_number_token6] = ACTIONS(3872), + [anon_sym_0b] = ACTIONS(3874), + [anon_sym_0o] = ACTIONS(3876), + [anon_sym_0x] = ACTIONS(3876), + [sym_val_date] = ACTIONS(3878), + [anon_sym_DQUOTE] = ACTIONS(3880), + [sym__str_single_quotes] = ACTIONS(3882), + [sym__str_back_ticks] = ACTIONS(3882), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3884), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3886), }, [1220] = { - [sym_match_arm] = STATE(6865), - [sym_default_arm] = STATE(6865), - [sym_match_pattern] = STATE(7704), - [sym__match_pattern] = STATE(6020), - [sym__match_pattern_expression] = STATE(7226), - [sym__match_pattern_value] = STATE(7259), - [sym__match_pattern_list] = STATE(7280), - [sym__match_pattern_record] = STATE(6737), - [sym_expr_parenthesized] = STATE(5787), - [sym_val_range] = STATE(7259), - [sym__val_range] = STATE(7519), - [sym_val_nothing] = STATE(6734), - [sym_val_bool] = STATE(6677), - [sym_val_variable] = STATE(5731), - [sym_val_number] = STATE(6734), - [sym__val_number_decimal] = STATE(5363), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(6734), - [sym_val_filesize] = STATE(6734), - [sym_val_binary] = STATE(6734), - [sym_val_string] = STATE(6734), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_table] = STATE(6734), - [sym_unquoted] = STATE(7105), - [sym__unquoted_anonymous_prefix] = STATE(7789), + [sym_cell_path] = STATE(1358), + [sym_path] = STATE(1282), [sym_comment] = STATE(1220), - [aux_sym_ctrl_match_repeat1] = STATE(1213), - [anon_sym_LBRACK] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3630), - [anon_sym_LBRACE] = ACTIONS(3632), - [anon_sym__] = ACTIONS(3636), - [anon_sym_DOT_DOT] = ACTIONS(3638), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3640), - [anon_sym_DOT_DOT_LT] = ACTIONS(3640), - [anon_sym_null] = ACTIONS(3642), - [anon_sym_true] = ACTIONS(3644), - [anon_sym_false] = ACTIONS(3644), - [aux_sym__val_number_decimal_token1] = ACTIONS(3646), - [aux_sym__val_number_decimal_token2] = ACTIONS(3648), - [aux_sym__val_number_decimal_token3] = ACTIONS(3650), - [aux_sym__val_number_decimal_token4] = ACTIONS(3652), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3654), - [aux_sym__val_number_token5] = ACTIONS(3654), - [aux_sym__val_number_token6] = ACTIONS(3654), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3656), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3490), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_cell_path_repeat1] = STATE(1240), + [anon_sym_EQ] = ACTIONS(929), + [anon_sym_PLUS_EQ] = ACTIONS(931), + [anon_sym_DASH_EQ] = ACTIONS(931), + [anon_sym_STAR_EQ] = ACTIONS(931), + [anon_sym_SLASH_EQ] = ACTIONS(931), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(931), + [sym__newline] = ACTIONS(931), + [anon_sym_SEMI] = ACTIONS(931), + [anon_sym_PIPE] = ACTIONS(931), + [anon_sym_err_GT_PIPE] = ACTIONS(931), + [anon_sym_out_GT_PIPE] = ACTIONS(931), + [anon_sym_e_GT_PIPE] = ACTIONS(931), + [anon_sym_o_GT_PIPE] = ACTIONS(931), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(931), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(931), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(931), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(931), + [anon_sym_GT2] = ACTIONS(929), + [anon_sym_DASH2] = ACTIONS(929), + [anon_sym_in2] = ACTIONS(931), + [anon_sym_RBRACE] = ACTIONS(931), + [anon_sym_STAR2] = ACTIONS(929), + [anon_sym_and2] = ACTIONS(931), + [anon_sym_xor2] = ACTIONS(931), + [anon_sym_or2] = ACTIONS(931), + [anon_sym_not_DASHin2] = ACTIONS(931), + [anon_sym_has2] = ACTIONS(931), + [anon_sym_not_DASHhas2] = ACTIONS(931), + [anon_sym_starts_DASHwith2] = ACTIONS(931), + [anon_sym_ends_DASHwith2] = ACTIONS(931), + [anon_sym_EQ_EQ2] = ACTIONS(931), + [anon_sym_BANG_EQ2] = ACTIONS(931), + [anon_sym_LT2] = ACTIONS(929), + [anon_sym_LT_EQ2] = ACTIONS(931), + [anon_sym_GT_EQ2] = ACTIONS(931), + [anon_sym_EQ_TILDE2] = ACTIONS(931), + [anon_sym_BANG_TILDE2] = ACTIONS(931), + [anon_sym_STAR_STAR2] = ACTIONS(931), + [anon_sym_PLUS_PLUS2] = ACTIONS(929), + [anon_sym_SLASH2] = ACTIONS(929), + [anon_sym_mod2] = ACTIONS(931), + [anon_sym_SLASH_SLASH2] = ACTIONS(931), + [anon_sym_PLUS2] = ACTIONS(929), + [anon_sym_bit_DASHshl2] = ACTIONS(931), + [anon_sym_bit_DASHshr2] = ACTIONS(931), + [anon_sym_bit_DASHand2] = ACTIONS(931), + [anon_sym_bit_DASHxor2] = ACTIONS(931), + [anon_sym_bit_DASHor2] = ACTIONS(931), + [anon_sym_DOT_DOT2] = ACTIONS(929), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(931), + [anon_sym_DOT_DOT_LT2] = ACTIONS(931), + [anon_sym_COLON2] = ACTIONS(931), + [anon_sym_DOT2] = ACTIONS(3888), + [anon_sym_err_GT] = ACTIONS(929), + [anon_sym_out_GT] = ACTIONS(929), + [anon_sym_e_GT] = ACTIONS(929), + [anon_sym_o_GT] = ACTIONS(929), + [anon_sym_err_PLUSout_GT] = ACTIONS(929), + [anon_sym_out_PLUSerr_GT] = ACTIONS(929), + [anon_sym_o_PLUSe_GT] = ACTIONS(929), + [anon_sym_e_PLUSo_GT] = ACTIONS(929), + [anon_sym_err_GT_GT] = ACTIONS(931), + [anon_sym_out_GT_GT] = ACTIONS(931), + [anon_sym_e_GT_GT] = ACTIONS(931), + [anon_sym_o_GT_GT] = ACTIONS(931), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(931), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(931), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(931), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(931), + [anon_sym_POUND] = ACTIONS(247), }, [1221] = { - [sym_match_arm] = STATE(6996), - [sym_default_arm] = STATE(6996), - [sym_match_pattern] = STATE(7704), - [sym__match_pattern] = STATE(6020), - [sym__match_pattern_expression] = STATE(7226), - [sym__match_pattern_value] = STATE(7259), - [sym__match_pattern_list] = STATE(7280), - [sym__match_pattern_record] = STATE(6737), - [sym_expr_parenthesized] = STATE(5787), - [sym_val_range] = STATE(7259), - [sym__val_range] = STATE(7519), - [sym_val_nothing] = STATE(6734), - [sym_val_bool] = STATE(6677), - [sym_val_variable] = STATE(5731), - [sym_val_number] = STATE(6734), - [sym__val_number_decimal] = STATE(5363), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(6734), - [sym_val_filesize] = STATE(6734), - [sym_val_binary] = STATE(6734), - [sym_val_string] = STATE(6734), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_table] = STATE(6734), - [sym_unquoted] = STATE(7105), - [sym__unquoted_anonymous_prefix] = STATE(7789), + [sym_match_arm] = STATE(6984), + [sym_default_arm] = STATE(6984), + [sym_match_pattern] = STATE(7845), + [sym__match_pattern] = STATE(6156), + [sym__match_pattern_expression] = STATE(7277), + [sym__match_pattern_value] = STATE(7278), + [sym__match_pattern_list] = STATE(7279), + [sym__match_pattern_record] = STATE(7280), + [sym_expr_parenthesized] = STATE(5921), + [sym_val_range] = STATE(7278), + [sym__val_range] = STATE(7833), + [sym_val_nothing] = STATE(7282), + [sym_val_bool] = STATE(6697), + [sym_val_variable] = STATE(5881), + [sym_val_number] = STATE(7282), + [sym__val_number_decimal] = STATE(5377), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(7282), + [sym_val_filesize] = STATE(7282), + [sym_val_binary] = STATE(7282), + [sym_val_string] = STATE(7282), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_table] = STATE(7282), + [sym_unquoted] = STATE(6981), + [sym__unquoted_anonymous_prefix] = STATE(7649), [sym_comment] = STATE(1221), - [aux_sym_ctrl_match_repeat1] = STATE(1213), - [anon_sym_LBRACK] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3630), - [anon_sym_LBRACE] = ACTIONS(3632), - [anon_sym__] = ACTIONS(3636), - [anon_sym_DOT_DOT] = ACTIONS(3638), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3640), - [anon_sym_DOT_DOT_LT] = ACTIONS(3640), - [anon_sym_null] = ACTIONS(3642), - [anon_sym_true] = ACTIONS(3644), - [anon_sym_false] = ACTIONS(3644), - [aux_sym__val_number_decimal_token1] = ACTIONS(3646), - [aux_sym__val_number_decimal_token2] = ACTIONS(3648), - [aux_sym__val_number_decimal_token3] = ACTIONS(3650), - [aux_sym__val_number_decimal_token4] = ACTIONS(3652), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3654), - [aux_sym__val_number_token5] = ACTIONS(3654), - [aux_sym__val_number_token6] = ACTIONS(3654), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3656), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3490), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_ctrl_match_repeat1] = STATE(1231), + [anon_sym_LBRACK] = ACTIONS(3616), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym__] = ACTIONS(3624), + [anon_sym_DOT_DOT] = ACTIONS(3626), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3628), + [anon_sym_DOT_DOT_LT] = ACTIONS(3628), + [anon_sym_null] = ACTIONS(3630), + [anon_sym_true] = ACTIONS(3632), + [anon_sym_false] = ACTIONS(3632), + [aux_sym__val_number_decimal_token1] = ACTIONS(3634), + [aux_sym__val_number_decimal_token2] = ACTIONS(3636), + [aux_sym__val_number_decimal_token3] = ACTIONS(3638), + [aux_sym__val_number_decimal_token4] = ACTIONS(3640), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3642), + [aux_sym__val_number_token5] = ACTIONS(3642), + [aux_sym__val_number_token6] = ACTIONS(3642), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3644), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3538), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1222] = { - [sym_match_arm] = STATE(7012), - [sym_default_arm] = STATE(7012), - [sym_match_pattern] = STATE(7704), - [sym__match_pattern] = STATE(6020), - [sym__match_pattern_expression] = STATE(7226), - [sym__match_pattern_value] = STATE(7259), - [sym__match_pattern_list] = STATE(7280), - [sym__match_pattern_record] = STATE(6737), - [sym_expr_parenthesized] = STATE(5787), - [sym_val_range] = STATE(7259), - [sym__val_range] = STATE(7519), - [sym_val_nothing] = STATE(6734), - [sym_val_bool] = STATE(6677), - [sym_val_variable] = STATE(5731), - [sym_val_number] = STATE(6734), - [sym__val_number_decimal] = STATE(5363), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(6734), - [sym_val_filesize] = STATE(6734), - [sym_val_binary] = STATE(6734), - [sym_val_string] = STATE(6734), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_table] = STATE(6734), - [sym_unquoted] = STATE(7105), - [sym__unquoted_anonymous_prefix] = STATE(7789), [sym_comment] = STATE(1222), - [aux_sym_ctrl_match_repeat1] = STATE(1213), - [anon_sym_LBRACK] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3630), - [anon_sym_LBRACE] = ACTIONS(3632), - [anon_sym__] = ACTIONS(3636), - [anon_sym_DOT_DOT] = ACTIONS(3638), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3640), - [anon_sym_DOT_DOT_LT] = ACTIONS(3640), - [anon_sym_null] = ACTIONS(3642), - [anon_sym_true] = ACTIONS(3644), - [anon_sym_false] = ACTIONS(3644), - [aux_sym__val_number_decimal_token1] = ACTIONS(3646), - [aux_sym__val_number_decimal_token2] = ACTIONS(3648), - [aux_sym__val_number_decimal_token3] = ACTIONS(3650), - [aux_sym__val_number_decimal_token4] = ACTIONS(3652), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3654), - [aux_sym__val_number_token5] = ACTIONS(3654), - [aux_sym__val_number_token6] = ACTIONS(3654), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3656), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3490), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [ts_builtin_sym_end] = ACTIONS(2077), + [anon_sym_STAR_STAR] = ACTIONS(3086), + [anon_sym_PLUS_PLUS] = ACTIONS(3086), + [anon_sym_STAR] = ACTIONS(3088), + [anon_sym_SLASH] = ACTIONS(3088), + [anon_sym_mod] = ACTIONS(3086), + [anon_sym_SLASH_SLASH] = ACTIONS(3086), + [anon_sym_PLUS] = ACTIONS(3088), + [anon_sym_DASH] = ACTIONS(3086), + [anon_sym_bit_DASHshl] = ACTIONS(3086), + [anon_sym_bit_DASHshr] = ACTIONS(3086), + [anon_sym_EQ_TILDE] = ACTIONS(3086), + [anon_sym_BANG_TILDE] = ACTIONS(3086), + [anon_sym_bit_DASHand] = ACTIONS(3086), + [anon_sym_bit_DASHxor] = ACTIONS(3086), + [anon_sym_bit_DASHor] = ACTIONS(3086), + [anon_sym_and] = ACTIONS(3086), + [anon_sym_xor] = ACTIONS(3086), + [anon_sym_or] = ACTIONS(3086), + [anon_sym_in] = ACTIONS(3086), + [anon_sym_not_DASHin] = ACTIONS(3086), + [anon_sym_has] = ACTIONS(3086), + [anon_sym_not_DASHhas] = ACTIONS(3086), + [anon_sym_starts_DASHwith] = ACTIONS(3086), + [anon_sym_ends_DASHwith] = ACTIONS(3086), + [anon_sym_EQ_EQ] = ACTIONS(3086), + [anon_sym_BANG_EQ] = ACTIONS(3086), + [anon_sym_LT] = ACTIONS(3088), + [anon_sym_LT_EQ] = ACTIONS(3086), + [anon_sym_GT] = ACTIONS(3088), + [anon_sym_GT_EQ] = ACTIONS(3086), + [aux_sym_cmd_identifier_token41] = ACTIONS(3090), + [sym__newline] = ACTIONS(2073), + [anon_sym_SEMI] = ACTIONS(2073), + [anon_sym_PIPE] = ACTIONS(2073), + [anon_sym_err_GT_PIPE] = ACTIONS(2073), + [anon_sym_out_GT_PIPE] = ACTIONS(2073), + [anon_sym_e_GT_PIPE] = ACTIONS(2073), + [anon_sym_o_GT_PIPE] = ACTIONS(2073), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2073), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2073), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2073), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2073), + [anon_sym_GT2] = ACTIONS(2073), + [anon_sym_DASH2] = ACTIONS(2073), + [anon_sym_in2] = ACTIONS(2073), + [anon_sym_STAR2] = ACTIONS(2073), + [anon_sym_and2] = ACTIONS(2073), + [anon_sym_xor2] = ACTIONS(2073), + [anon_sym_or2] = ACTIONS(2073), + [anon_sym_not_DASHin2] = ACTIONS(2073), + [anon_sym_has2] = ACTIONS(2073), + [anon_sym_not_DASHhas2] = ACTIONS(2073), + [anon_sym_starts_DASHwith2] = ACTIONS(2073), + [anon_sym_ends_DASHwith2] = ACTIONS(2073), + [anon_sym_EQ_EQ2] = ACTIONS(2073), + [anon_sym_BANG_EQ2] = ACTIONS(2073), + [anon_sym_LT2] = ACTIONS(2073), + [anon_sym_LT_EQ2] = ACTIONS(2073), + [anon_sym_GT_EQ2] = ACTIONS(2073), + [anon_sym_EQ_TILDE2] = ACTIONS(2073), + [anon_sym_BANG_TILDE2] = ACTIONS(2073), + [anon_sym_STAR_STAR2] = ACTIONS(2073), + [anon_sym_PLUS_PLUS2] = ACTIONS(2073), + [anon_sym_SLASH2] = ACTIONS(2073), + [anon_sym_mod2] = ACTIONS(2073), + [anon_sym_SLASH_SLASH2] = ACTIONS(2073), + [anon_sym_PLUS2] = ACTIONS(2073), + [anon_sym_bit_DASHshl2] = ACTIONS(2073), + [anon_sym_bit_DASHshr2] = ACTIONS(2073), + [anon_sym_bit_DASHand2] = ACTIONS(2073), + [anon_sym_bit_DASHxor2] = ACTIONS(2073), + [anon_sym_bit_DASHor2] = ACTIONS(2073), + [anon_sym_POUND] = ACTIONS(3), }, [1223] = { - [sym_match_arm] = STATE(6899), - [sym_default_arm] = STATE(6899), - [sym_match_pattern] = STATE(7704), - [sym__match_pattern] = STATE(6020), - [sym__match_pattern_expression] = STATE(7226), - [sym__match_pattern_value] = STATE(7259), - [sym__match_pattern_list] = STATE(7280), - [sym__match_pattern_record] = STATE(6737), - [sym_expr_parenthesized] = STATE(5787), - [sym_val_range] = STATE(7259), - [sym__val_range] = STATE(7519), - [sym_val_nothing] = STATE(6734), - [sym_val_bool] = STATE(6677), - [sym_val_variable] = STATE(5731), - [sym_val_number] = STATE(6734), - [sym__val_number_decimal] = STATE(5363), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(6734), - [sym_val_filesize] = STATE(6734), - [sym_val_binary] = STATE(6734), - [sym_val_string] = STATE(6734), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_table] = STATE(6734), - [sym_unquoted] = STATE(7105), - [sym__unquoted_anonymous_prefix] = STATE(7789), + [sym_match_arm] = STATE(6998), + [sym_default_arm] = STATE(6998), + [sym_match_pattern] = STATE(7845), + [sym__match_pattern] = STATE(6156), + [sym__match_pattern_expression] = STATE(7277), + [sym__match_pattern_value] = STATE(7278), + [sym__match_pattern_list] = STATE(7279), + [sym__match_pattern_record] = STATE(7280), + [sym_expr_parenthesized] = STATE(5921), + [sym_val_range] = STATE(7278), + [sym__val_range] = STATE(7833), + [sym_val_nothing] = STATE(7282), + [sym_val_bool] = STATE(6697), + [sym_val_variable] = STATE(5881), + [sym_val_number] = STATE(7282), + [sym__val_number_decimal] = STATE(5377), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(7282), + [sym_val_filesize] = STATE(7282), + [sym_val_binary] = STATE(7282), + [sym_val_string] = STATE(7282), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_table] = STATE(7282), + [sym_unquoted] = STATE(6981), + [sym__unquoted_anonymous_prefix] = STATE(7649), [sym_comment] = STATE(1223), - [aux_sym_ctrl_match_repeat1] = STATE(1213), - [anon_sym_LBRACK] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3630), - [anon_sym_LBRACE] = ACTIONS(3632), - [anon_sym__] = ACTIONS(3636), - [anon_sym_DOT_DOT] = ACTIONS(3638), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3640), - [anon_sym_DOT_DOT_LT] = ACTIONS(3640), - [anon_sym_null] = ACTIONS(3642), - [anon_sym_true] = ACTIONS(3644), - [anon_sym_false] = ACTIONS(3644), - [aux_sym__val_number_decimal_token1] = ACTIONS(3646), - [aux_sym__val_number_decimal_token2] = ACTIONS(3648), - [aux_sym__val_number_decimal_token3] = ACTIONS(3650), - [aux_sym__val_number_decimal_token4] = ACTIONS(3652), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3654), - [aux_sym__val_number_token5] = ACTIONS(3654), - [aux_sym__val_number_token6] = ACTIONS(3654), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3656), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3490), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_ctrl_match_repeat1] = STATE(1231), + [anon_sym_LBRACK] = ACTIONS(3616), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym__] = ACTIONS(3624), + [anon_sym_DOT_DOT] = ACTIONS(3626), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3628), + [anon_sym_DOT_DOT_LT] = ACTIONS(3628), + [anon_sym_null] = ACTIONS(3630), + [anon_sym_true] = ACTIONS(3632), + [anon_sym_false] = ACTIONS(3632), + [aux_sym__val_number_decimal_token1] = ACTIONS(3634), + [aux_sym__val_number_decimal_token2] = ACTIONS(3636), + [aux_sym__val_number_decimal_token3] = ACTIONS(3638), + [aux_sym__val_number_decimal_token4] = ACTIONS(3640), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3642), + [aux_sym__val_number_token5] = ACTIONS(3642), + [aux_sym__val_number_token6] = ACTIONS(3642), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3644), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3538), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1224] = { + [sym__match_pattern_expression] = STATE(3186), + [sym__match_pattern_value] = STATE(3171), + [sym__match_pattern_list] = STATE(3187), + [sym__match_pattern_rest] = STATE(7661), + [sym__match_pattern_record] = STATE(3188), + [sym_expr_parenthesized] = STATE(2937), + [sym_val_range] = STATE(3171), + [sym__val_range] = STATE(7677), + [sym_val_nothing] = STATE(3178), + [sym_val_bool] = STATE(3081), + [sym_val_variable] = STATE(2920), + [sym_val_number] = STATE(3178), + [sym__val_number_decimal] = STATE(2695), + [sym__val_number] = STATE(3189), + [sym_val_duration] = STATE(3178), + [sym_val_filesize] = STATE(3178), + [sym_val_binary] = STATE(3178), + [sym_val_string] = STATE(3178), + [sym__raw_str] = STATE(3169), + [sym__str_double_quotes] = STATE(3169), + [sym_val_list] = STATE(7802), + [sym_val_table] = STATE(3178), + [sym__unquoted_in_list] = STATE(3186), + [sym__unquoted_anonymous_prefix] = STATE(7685), [sym_comment] = STATE(1224), - [anon_sym_STAR_STAR] = ACTIONS(1682), - [anon_sym_PLUS_PLUS] = ACTIONS(1682), - [anon_sym_STAR] = ACTIONS(1680), - [anon_sym_SLASH] = ACTIONS(1680), - [anon_sym_mod] = ACTIONS(1682), - [anon_sym_SLASH_SLASH] = ACTIONS(1682), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_DASH] = ACTIONS(1682), - [anon_sym_bit_DASHshl] = ACTIONS(1682), - [anon_sym_bit_DASHshr] = ACTIONS(1682), - [anon_sym_EQ_TILDE] = ACTIONS(1682), - [anon_sym_BANG_TILDE] = ACTIONS(1682), - [anon_sym_bit_DASHand] = ACTIONS(1682), - [anon_sym_bit_DASHxor] = ACTIONS(1682), - [anon_sym_bit_DASHor] = ACTIONS(1682), - [anon_sym_and] = ACTIONS(1682), - [anon_sym_xor] = ACTIONS(1682), - [anon_sym_or] = ACTIONS(1682), - [anon_sym_in] = ACTIONS(1682), - [anon_sym_not_DASHin] = ACTIONS(1682), - [anon_sym_starts_DASHwith] = ACTIONS(1682), - [anon_sym_ends_DASHwith] = ACTIONS(1682), - [anon_sym_EQ_EQ] = ACTIONS(1682), - [anon_sym_BANG_EQ] = ACTIONS(1682), - [anon_sym_LT] = ACTIONS(1680), - [anon_sym_LT_EQ] = ACTIONS(1682), - [anon_sym_GT] = ACTIONS(1680), - [anon_sym_GT_EQ] = ACTIONS(1682), - [aux_sym_cmd_identifier_token41] = ACTIONS(1680), - [sym__newline] = ACTIONS(1680), - [anon_sym_SEMI] = ACTIONS(1680), - [anon_sym_PIPE] = ACTIONS(1680), - [anon_sym_err_GT_PIPE] = ACTIONS(1680), - [anon_sym_out_GT_PIPE] = ACTIONS(1680), - [anon_sym_e_GT_PIPE] = ACTIONS(1680), - [anon_sym_o_GT_PIPE] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1680), - [anon_sym_GT2] = ACTIONS(1680), - [anon_sym_DASH2] = ACTIONS(1680), - [anon_sym_in2] = ACTIONS(1680), - [anon_sym_STAR2] = ACTIONS(1680), - [anon_sym_and2] = ACTIONS(1680), - [anon_sym_xor2] = ACTIONS(1680), - [anon_sym_or2] = ACTIONS(1680), - [anon_sym_not_DASHin2] = ACTIONS(1680), - [anon_sym_starts_DASHwith2] = ACTIONS(1680), - [anon_sym_ends_DASHwith2] = ACTIONS(1680), - [anon_sym_EQ_EQ2] = ACTIONS(1680), - [anon_sym_BANG_EQ2] = ACTIONS(1680), - [anon_sym_LT2] = ACTIONS(1680), - [anon_sym_LT_EQ2] = ACTIONS(1680), - [anon_sym_GT_EQ2] = ACTIONS(1680), - [anon_sym_EQ_TILDE2] = ACTIONS(1680), - [anon_sym_BANG_TILDE2] = ACTIONS(1680), - [anon_sym_STAR_STAR2] = ACTIONS(1680), - [anon_sym_PLUS_PLUS2] = ACTIONS(1680), - [anon_sym_SLASH2] = ACTIONS(1680), - [anon_sym_mod2] = ACTIONS(1680), - [anon_sym_SLASH_SLASH2] = ACTIONS(1680), - [anon_sym_PLUS2] = ACTIONS(1680), - [anon_sym_bit_DASHshl2] = ACTIONS(1680), - [anon_sym_bit_DASHshr2] = ACTIONS(1680), - [anon_sym_bit_DASHand2] = ACTIONS(1680), - [anon_sym_bit_DASHxor2] = ACTIONS(1680), - [anon_sym_bit_DASHor2] = ACTIONS(1680), - [anon_sym_DOT_DOT2] = ACTIONS(1680), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1682), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1682), - [sym_filesize_unit] = ACTIONS(1680), - [sym_duration_unit] = ACTIONS(1682), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(6688), + [aux_sym__match_pattern_list_repeat1] = STATE(1273), + [sym__newline] = ACTIONS(3842), + [anon_sym_LBRACK] = ACTIONS(3844), + [anon_sym_RBRACK] = ACTIONS(3890), + [anon_sym_LPAREN] = ACTIONS(3848), + [anon_sym_DOLLAR] = ACTIONS(3850), + [anon_sym_LBRACE] = ACTIONS(3852), + [anon_sym_DOT_DOT] = ACTIONS(3892), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3856), + [anon_sym_DOT_DOT_LT] = ACTIONS(3856), + [anon_sym_null] = ACTIONS(3858), + [anon_sym_true] = ACTIONS(3860), + [anon_sym_false] = ACTIONS(3860), + [aux_sym__val_number_decimal_token1] = ACTIONS(3862), + [aux_sym__val_number_decimal_token2] = ACTIONS(3864), + [aux_sym__val_number_decimal_token3] = ACTIONS(3866), + [aux_sym__val_number_decimal_token4] = ACTIONS(3868), + [aux_sym__val_number_token1] = ACTIONS(3870), + [aux_sym__val_number_token2] = ACTIONS(3870), + [aux_sym__val_number_token3] = ACTIONS(3870), + [aux_sym__val_number_token4] = ACTIONS(3872), + [aux_sym__val_number_token5] = ACTIONS(3872), + [aux_sym__val_number_token6] = ACTIONS(3872), + [anon_sym_0b] = ACTIONS(3874), + [anon_sym_0o] = ACTIONS(3876), + [anon_sym_0x] = ACTIONS(3876), + [sym_val_date] = ACTIONS(3878), + [anon_sym_DQUOTE] = ACTIONS(3880), + [sym__str_single_quotes] = ACTIONS(3882), + [sym__str_back_ticks] = ACTIONS(3882), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3884), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3886), }, [1225] = { [sym_comment] = STATE(1225), - [anon_sym_STAR_STAR] = ACTIONS(1745), - [anon_sym_PLUS_PLUS] = ACTIONS(1745), - [anon_sym_STAR] = ACTIONS(1743), - [anon_sym_SLASH] = ACTIONS(1743), - [anon_sym_mod] = ACTIONS(1745), - [anon_sym_SLASH_SLASH] = ACTIONS(1745), - [anon_sym_PLUS] = ACTIONS(1743), - [anon_sym_DASH] = ACTIONS(1745), - [anon_sym_bit_DASHshl] = ACTIONS(1745), - [anon_sym_bit_DASHshr] = ACTIONS(1745), - [anon_sym_EQ_TILDE] = ACTIONS(1745), - [anon_sym_BANG_TILDE] = ACTIONS(1745), - [anon_sym_bit_DASHand] = ACTIONS(1745), - [anon_sym_bit_DASHxor] = ACTIONS(1745), - [anon_sym_bit_DASHor] = ACTIONS(1745), - [anon_sym_and] = ACTIONS(1745), - [anon_sym_xor] = ACTIONS(1745), - [anon_sym_or] = ACTIONS(1745), - [anon_sym_in] = ACTIONS(1745), - [anon_sym_not_DASHin] = ACTIONS(1745), - [anon_sym_starts_DASHwith] = ACTIONS(1745), - [anon_sym_ends_DASHwith] = ACTIONS(1745), - [anon_sym_EQ_EQ] = ACTIONS(1745), - [anon_sym_BANG_EQ] = ACTIONS(1745), - [anon_sym_LT] = ACTIONS(1743), - [anon_sym_LT_EQ] = ACTIONS(1745), - [anon_sym_GT] = ACTIONS(1743), - [anon_sym_GT_EQ] = ACTIONS(1745), - [aux_sym_cmd_identifier_token41] = ACTIONS(1743), - [sym__newline] = ACTIONS(1743), - [anon_sym_PIPE] = ACTIONS(1743), - [anon_sym_err_GT_PIPE] = ACTIONS(1743), - [anon_sym_out_GT_PIPE] = ACTIONS(1743), - [anon_sym_e_GT_PIPE] = ACTIONS(1743), - [anon_sym_o_GT_PIPE] = ACTIONS(1743), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1743), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1743), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1743), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1743), - [anon_sym_GT2] = ACTIONS(1743), - [anon_sym_DASH2] = ACTIONS(1743), - [anon_sym_in2] = ACTIONS(1743), - [anon_sym_STAR2] = ACTIONS(1743), - [anon_sym_and2] = ACTIONS(1743), - [anon_sym_xor2] = ACTIONS(1743), - [anon_sym_or2] = ACTIONS(1743), - [anon_sym_not_DASHin2] = ACTIONS(1743), - [anon_sym_starts_DASHwith2] = ACTIONS(1743), - [anon_sym_ends_DASHwith2] = ACTIONS(1743), - [anon_sym_EQ_EQ2] = ACTIONS(1743), - [anon_sym_BANG_EQ2] = ACTIONS(1743), - [anon_sym_LT2] = ACTIONS(1743), - [anon_sym_LT_EQ2] = ACTIONS(1743), - [anon_sym_GT_EQ2] = ACTIONS(1743), - [anon_sym_EQ_TILDE2] = ACTIONS(1743), - [anon_sym_BANG_TILDE2] = ACTIONS(1743), - [anon_sym_STAR_STAR2] = ACTIONS(1743), - [anon_sym_PLUS_PLUS2] = ACTIONS(1743), - [anon_sym_SLASH2] = ACTIONS(1743), - [anon_sym_mod2] = ACTIONS(1743), - [anon_sym_SLASH_SLASH2] = ACTIONS(1743), - [anon_sym_PLUS2] = ACTIONS(1743), - [anon_sym_bit_DASHshl2] = ACTIONS(1743), - [anon_sym_bit_DASHshr2] = ACTIONS(1743), - [anon_sym_bit_DASHand2] = ACTIONS(1743), - [anon_sym_bit_DASHxor2] = ACTIONS(1743), - [anon_sym_bit_DASHor2] = ACTIONS(1743), - [anon_sym_DOT_DOT2] = ACTIONS(1743), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1745), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1745), - [sym_filesize_unit] = ACTIONS(1743), - [sym_duration_unit] = ACTIONS(1745), + [anon_sym_STAR_STAR] = ACTIONS(3092), + [anon_sym_PLUS_PLUS] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3094), + [anon_sym_SLASH] = ACTIONS(3094), + [anon_sym_mod] = ACTIONS(3092), + [anon_sym_SLASH_SLASH] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(3094), + [anon_sym_DASH] = ACTIONS(3092), + [anon_sym_bit_DASHshl] = ACTIONS(3092), + [anon_sym_bit_DASHshr] = ACTIONS(3092), + [anon_sym_EQ_TILDE] = ACTIONS(3092), + [anon_sym_BANG_TILDE] = ACTIONS(3092), + [anon_sym_bit_DASHand] = ACTIONS(3092), + [anon_sym_bit_DASHxor] = ACTIONS(3092), + [anon_sym_bit_DASHor] = ACTIONS(3092), + [anon_sym_and] = ACTIONS(3092), + [anon_sym_xor] = ACTIONS(3092), + [anon_sym_or] = ACTIONS(3092), + [anon_sym_in] = ACTIONS(3092), + [anon_sym_not_DASHin] = ACTIONS(3092), + [anon_sym_has] = ACTIONS(3092), + [anon_sym_not_DASHhas] = ACTIONS(3092), + [anon_sym_starts_DASHwith] = ACTIONS(3092), + [anon_sym_ends_DASHwith] = ACTIONS(3092), + [anon_sym_EQ_EQ] = ACTIONS(3092), + [anon_sym_BANG_EQ] = ACTIONS(3092), + [anon_sym_LT] = ACTIONS(3094), + [anon_sym_LT_EQ] = ACTIONS(3092), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_GT_EQ] = ACTIONS(3092), + [aux_sym_cmd_identifier_token41] = ACTIONS(3096), + [sym__newline] = ACTIONS(2073), + [anon_sym_SEMI] = ACTIONS(2073), + [anon_sym_PIPE] = ACTIONS(2073), + [anon_sym_err_GT_PIPE] = ACTIONS(2073), + [anon_sym_out_GT_PIPE] = ACTIONS(2073), + [anon_sym_e_GT_PIPE] = ACTIONS(2073), + [anon_sym_o_GT_PIPE] = ACTIONS(2073), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2073), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2073), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2073), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2073), + [anon_sym_RPAREN] = ACTIONS(2073), + [anon_sym_GT2] = ACTIONS(2073), + [anon_sym_DASH2] = ACTIONS(2073), + [anon_sym_in2] = ACTIONS(2073), + [anon_sym_STAR2] = ACTIONS(2073), + [anon_sym_and2] = ACTIONS(2073), + [anon_sym_xor2] = ACTIONS(2073), + [anon_sym_or2] = ACTIONS(2073), + [anon_sym_not_DASHin2] = ACTIONS(2073), + [anon_sym_has2] = ACTIONS(2073), + [anon_sym_not_DASHhas2] = ACTIONS(2073), + [anon_sym_starts_DASHwith2] = ACTIONS(2073), + [anon_sym_ends_DASHwith2] = ACTIONS(2073), + [anon_sym_EQ_EQ2] = ACTIONS(2073), + [anon_sym_BANG_EQ2] = ACTIONS(2073), + [anon_sym_LT2] = ACTIONS(2073), + [anon_sym_LT_EQ2] = ACTIONS(2073), + [anon_sym_GT_EQ2] = ACTIONS(2073), + [anon_sym_EQ_TILDE2] = ACTIONS(2073), + [anon_sym_BANG_TILDE2] = ACTIONS(2073), + [anon_sym_STAR_STAR2] = ACTIONS(2073), + [anon_sym_PLUS_PLUS2] = ACTIONS(2073), + [anon_sym_SLASH2] = ACTIONS(2073), + [anon_sym_mod2] = ACTIONS(2073), + [anon_sym_SLASH_SLASH2] = ACTIONS(2073), + [anon_sym_PLUS2] = ACTIONS(2073), + [anon_sym_bit_DASHshl2] = ACTIONS(2073), + [anon_sym_bit_DASHshr2] = ACTIONS(2073), + [anon_sym_bit_DASHand2] = ACTIONS(2073), + [anon_sym_bit_DASHxor2] = ACTIONS(2073), + [anon_sym_bit_DASHor2] = ACTIONS(2073), [anon_sym_POUND] = ACTIONS(3), }, [1226] = { [sym_comment] = STATE(1226), - [anon_sym_STAR_STAR] = ACTIONS(3054), - [anon_sym_PLUS_PLUS] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3056), - [anon_sym_SLASH] = ACTIONS(3056), - [anon_sym_mod] = ACTIONS(3054), - [anon_sym_SLASH_SLASH] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(3056), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_bit_DASHshl] = ACTIONS(3054), - [anon_sym_bit_DASHshr] = ACTIONS(3054), - [anon_sym_EQ_TILDE] = ACTIONS(3054), - [anon_sym_BANG_TILDE] = ACTIONS(3054), - [anon_sym_bit_DASHand] = ACTIONS(3054), - [anon_sym_bit_DASHxor] = ACTIONS(3054), - [anon_sym_bit_DASHor] = ACTIONS(3054), - [anon_sym_and] = ACTIONS(3054), - [anon_sym_xor] = ACTIONS(3054), - [anon_sym_or] = ACTIONS(3054), - [anon_sym_in] = ACTIONS(3054), - [anon_sym_not_DASHin] = ACTIONS(3054), - [anon_sym_starts_DASHwith] = ACTIONS(3054), - [anon_sym_ends_DASHwith] = ACTIONS(3054), - [anon_sym_EQ_EQ] = ACTIONS(3054), - [anon_sym_BANG_EQ] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_LT_EQ] = ACTIONS(3054), - [anon_sym_GT] = ACTIONS(3056), - [anon_sym_GT_EQ] = ACTIONS(3054), - [aux_sym_cmd_identifier_token41] = ACTIONS(3058), - [sym__newline] = ACTIONS(1638), - [anon_sym_PIPE] = ACTIONS(1638), - [anon_sym_err_GT_PIPE] = ACTIONS(1638), - [anon_sym_out_GT_PIPE] = ACTIONS(1638), - [anon_sym_e_GT_PIPE] = ACTIONS(1638), - [anon_sym_o_GT_PIPE] = ACTIONS(1638), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1638), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1638), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1638), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1638), - [anon_sym_GT2] = ACTIONS(1638), - [anon_sym_DASH2] = ACTIONS(1638), - [anon_sym_in2] = ACTIONS(1638), - [anon_sym_STAR2] = ACTIONS(1638), - [anon_sym_and2] = ACTIONS(1638), - [anon_sym_xor2] = ACTIONS(1638), - [anon_sym_or2] = ACTIONS(1638), - [anon_sym_not_DASHin2] = ACTIONS(1638), - [anon_sym_starts_DASHwith2] = ACTIONS(1638), - [anon_sym_ends_DASHwith2] = ACTIONS(1638), - [anon_sym_EQ_EQ2] = ACTIONS(1638), - [anon_sym_BANG_EQ2] = ACTIONS(1638), - [anon_sym_LT2] = ACTIONS(1638), - [anon_sym_LT_EQ2] = ACTIONS(1638), - [anon_sym_GT_EQ2] = ACTIONS(1638), - [anon_sym_EQ_TILDE2] = ACTIONS(1638), - [anon_sym_BANG_TILDE2] = ACTIONS(1638), - [anon_sym_STAR_STAR2] = ACTIONS(1638), - [anon_sym_PLUS_PLUS2] = ACTIONS(1638), - [anon_sym_SLASH2] = ACTIONS(1638), - [anon_sym_mod2] = ACTIONS(1638), - [anon_sym_SLASH_SLASH2] = ACTIONS(1638), - [anon_sym_PLUS2] = ACTIONS(1638), - [anon_sym_bit_DASHshl2] = ACTIONS(1638), - [anon_sym_bit_DASHshr2] = ACTIONS(1638), - [anon_sym_bit_DASHand2] = ACTIONS(1638), - [anon_sym_bit_DASHxor2] = ACTIONS(1638), - [anon_sym_bit_DASHor2] = ACTIONS(1638), - [anon_sym_DOT_DOT2] = ACTIONS(3044), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3046), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3046), - [sym_filesize_unit] = ACTIONS(3974), - [sym_duration_unit] = ACTIONS(3976), + [anon_sym_STAR_STAR] = ACTIONS(3092), + [anon_sym_PLUS_PLUS] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3094), + [anon_sym_SLASH] = ACTIONS(3094), + [anon_sym_mod] = ACTIONS(3092), + [anon_sym_SLASH_SLASH] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(3094), + [anon_sym_DASH] = ACTIONS(3092), + [anon_sym_bit_DASHshl] = ACTIONS(3092), + [anon_sym_bit_DASHshr] = ACTIONS(3092), + [anon_sym_EQ_TILDE] = ACTIONS(3092), + [anon_sym_BANG_TILDE] = ACTIONS(3092), + [anon_sym_bit_DASHand] = ACTIONS(3092), + [anon_sym_bit_DASHxor] = ACTIONS(3092), + [anon_sym_bit_DASHor] = ACTIONS(3092), + [anon_sym_and] = ACTIONS(3092), + [anon_sym_xor] = ACTIONS(3092), + [anon_sym_or] = ACTIONS(3092), + [anon_sym_in] = ACTIONS(3092), + [anon_sym_not_DASHin] = ACTIONS(3092), + [anon_sym_has] = ACTIONS(3092), + [anon_sym_not_DASHhas] = ACTIONS(3092), + [anon_sym_starts_DASHwith] = ACTIONS(3092), + [anon_sym_ends_DASHwith] = ACTIONS(3092), + [anon_sym_EQ_EQ] = ACTIONS(3092), + [anon_sym_BANG_EQ] = ACTIONS(3092), + [anon_sym_LT] = ACTIONS(3094), + [anon_sym_LT_EQ] = ACTIONS(3092), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_GT_EQ] = ACTIONS(3092), + [aux_sym_cmd_identifier_token41] = ACTIONS(3096), + [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_RPAREN] = ACTIONS(2081), + [anon_sym_GT2] = ACTIONS(2081), + [anon_sym_DASH2] = ACTIONS(2081), + [anon_sym_in2] = ACTIONS(2081), + [anon_sym_STAR2] = ACTIONS(2081), + [anon_sym_and2] = ACTIONS(2081), + [anon_sym_xor2] = ACTIONS(2081), + [anon_sym_or2] = ACTIONS(2081), + [anon_sym_not_DASHin2] = ACTIONS(2081), + [anon_sym_has2] = ACTIONS(2081), + [anon_sym_not_DASHhas2] = ACTIONS(2081), + [anon_sym_starts_DASHwith2] = ACTIONS(2081), + [anon_sym_ends_DASHwith2] = ACTIONS(2081), + [anon_sym_EQ_EQ2] = ACTIONS(2081), + [anon_sym_BANG_EQ2] = ACTIONS(2081), + [anon_sym_LT2] = ACTIONS(2081), + [anon_sym_LT_EQ2] = ACTIONS(2081), + [anon_sym_GT_EQ2] = ACTIONS(2081), + [anon_sym_EQ_TILDE2] = ACTIONS(2081), + [anon_sym_BANG_TILDE2] = ACTIONS(2081), + [anon_sym_STAR_STAR2] = ACTIONS(2081), + [anon_sym_PLUS_PLUS2] = ACTIONS(2081), + [anon_sym_SLASH2] = ACTIONS(2081), + [anon_sym_mod2] = ACTIONS(2081), + [anon_sym_SLASH_SLASH2] = ACTIONS(2081), + [anon_sym_PLUS2] = ACTIONS(2081), + [anon_sym_bit_DASHshl2] = ACTIONS(2081), + [anon_sym_bit_DASHshr2] = ACTIONS(2081), + [anon_sym_bit_DASHand2] = ACTIONS(2081), + [anon_sym_bit_DASHxor2] = ACTIONS(2081), + [anon_sym_bit_DASHor2] = ACTIONS(2081), [anon_sym_POUND] = ACTIONS(3), }, [1227] = { + [sym_expr_parenthesized] = STATE(6558), + [sym_val_range] = STATE(7555), + [sym__val_range] = STATE(7833), + [sym__value] = STATE(7555), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(7418), + [sym_val_variable] = STATE(6613), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(5595), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(3793), + [sym__str_double_quotes] = STATE(3793), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(7559), + [sym__unquoted_anonymous_prefix] = STATE(7649), [sym_comment] = STATE(1227), - [anon_sym_STAR_STAR] = ACTIONS(1544), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_STAR] = ACTIONS(1542), - [anon_sym_SLASH] = ACTIONS(1542), - [anon_sym_mod] = ACTIONS(1544), - [anon_sym_SLASH_SLASH] = ACTIONS(1544), - [anon_sym_PLUS] = ACTIONS(1542), - [anon_sym_DASH] = ACTIONS(1544), - [anon_sym_bit_DASHshl] = ACTIONS(1544), - [anon_sym_bit_DASHshr] = ACTIONS(1544), - [anon_sym_EQ_TILDE] = ACTIONS(1544), - [anon_sym_BANG_TILDE] = ACTIONS(1544), - [anon_sym_bit_DASHand] = ACTIONS(1544), - [anon_sym_bit_DASHxor] = ACTIONS(1544), - [anon_sym_bit_DASHor] = ACTIONS(1544), - [anon_sym_and] = ACTIONS(1544), - [anon_sym_xor] = ACTIONS(1544), - [anon_sym_or] = ACTIONS(1544), - [anon_sym_in] = ACTIONS(1544), - [anon_sym_not_DASHin] = ACTIONS(1544), - [anon_sym_starts_DASHwith] = ACTIONS(1544), - [anon_sym_ends_DASHwith] = ACTIONS(1544), - [anon_sym_EQ_EQ] = ACTIONS(1544), - [anon_sym_BANG_EQ] = ACTIONS(1544), - [anon_sym_LT] = ACTIONS(1542), - [anon_sym_LT_EQ] = ACTIONS(1544), - [anon_sym_GT] = ACTIONS(1542), - [anon_sym_GT_EQ] = ACTIONS(1544), - [aux_sym_cmd_identifier_token41] = ACTIONS(1542), - [sym__newline] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_err_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_GT_PIPE] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), - [anon_sym_GT2] = ACTIONS(1542), - [anon_sym_DASH2] = ACTIONS(1542), - [anon_sym_in2] = ACTIONS(1542), - [anon_sym_STAR2] = ACTIONS(1542), - [anon_sym_and2] = ACTIONS(1542), - [anon_sym_xor2] = ACTIONS(1542), - [anon_sym_or2] = ACTIONS(1542), - [anon_sym_not_DASHin2] = ACTIONS(1542), - [anon_sym_starts_DASHwith2] = ACTIONS(1542), - [anon_sym_ends_DASHwith2] = ACTIONS(1542), - [anon_sym_EQ_EQ2] = ACTIONS(1542), - [anon_sym_BANG_EQ2] = ACTIONS(1542), - [anon_sym_LT2] = ACTIONS(1542), - [anon_sym_LT_EQ2] = ACTIONS(1542), - [anon_sym_GT_EQ2] = ACTIONS(1542), - [anon_sym_EQ_TILDE2] = ACTIONS(1542), - [anon_sym_BANG_TILDE2] = ACTIONS(1542), - [anon_sym_STAR_STAR2] = ACTIONS(1542), - [anon_sym_PLUS_PLUS2] = ACTIONS(1542), - [anon_sym_SLASH2] = ACTIONS(1542), - [anon_sym_mod2] = ACTIONS(1542), - [anon_sym_SLASH_SLASH2] = ACTIONS(1542), - [anon_sym_PLUS2] = ACTIONS(1542), - [anon_sym_bit_DASHshl2] = ACTIONS(1542), - [anon_sym_bit_DASHshr2] = ACTIONS(1542), - [anon_sym_bit_DASHand2] = ACTIONS(1542), - [anon_sym_bit_DASHxor2] = ACTIONS(1542), - [anon_sym_bit_DASHor2] = ACTIONS(1542), - [anon_sym_DOT_DOT2] = ACTIONS(1542), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1544), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1544), - [sym_filesize_unit] = ACTIONS(1542), - [sym_duration_unit] = ACTIONS(1544), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3508), + [anon_sym_LPAREN] = ACTIONS(3510), + [anon_sym_DOLLAR] = ACTIONS(3512), + [anon_sym_LBRACE] = ACTIONS(3514), + [anon_sym_DOT_DOT] = ACTIONS(3822), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3824), + [anon_sym_DOT_DOT_LT] = ACTIONS(3824), + [anon_sym_null] = ACTIONS(3826), + [anon_sym_true] = ACTIONS(3828), + [anon_sym_false] = ACTIONS(3828), + [aux_sym__val_number_decimal_token1] = ACTIONS(3830), + [aux_sym__val_number_decimal_token2] = ACTIONS(3832), + [aux_sym__val_number_decimal_token3] = ACTIONS(3834), + [aux_sym__val_number_decimal_token4] = ACTIONS(3836), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3838), + [aux_sym__val_number_token5] = ACTIONS(3838), + [aux_sym__val_number_token6] = ACTIONS(3838), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3840), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym__str_single_quotes] = ACTIONS(1274), + [sym__str_back_ticks] = ACTIONS(1274), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_COLON2] = ACTIONS(3442), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3538), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1276), }, [1228] = { - [sym__expr_parenthesized_immediate] = STATE(1542), - [sym__immediate_decimal] = STATE(1403), - [sym_val_variable] = STATE(1542), [sym_comment] = STATE(1228), - [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(1461), - [anon_sym_RPAREN] = ACTIONS(1475), - [anon_sym_DOLLAR] = ACTIONS(2622), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_DASH2] = ACTIONS(1461), - [anon_sym_LBRACE] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym_DOT_DOT] = ACTIONS(1461), - [anon_sym_LPAREN2] = ACTIONS(3978), - [anon_sym_DOT] = ACTIONS(3980), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1475), - [anon_sym_DOT_DOT_LT] = ACTIONS(1475), - [aux_sym__immediate_decimal_token1] = ACTIONS(3982), - [aux_sym__immediate_decimal_token3] = ACTIONS(3984), - [aux_sym__immediate_decimal_token4] = ACTIONS(3986), - [aux_sym__immediate_decimal_token5] = ACTIONS(3988), - [anon_sym_null] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [aux_sym__val_number_decimal_token1] = ACTIONS(1461), - [aux_sym__val_number_decimal_token2] = ACTIONS(1461), - [aux_sym__val_number_decimal_token3] = ACTIONS(1461), - [aux_sym__val_number_decimal_token4] = ACTIONS(1461), - [aux_sym__val_number_token1] = ACTIONS(1475), - [aux_sym__val_number_token2] = ACTIONS(1475), - [aux_sym__val_number_token3] = ACTIONS(1475), - [aux_sym__val_number_token4] = ACTIONS(1475), - [aux_sym__val_number_token5] = ACTIONS(1475), - [aux_sym__val_number_token6] = ACTIONS(1475), - [anon_sym_0b] = ACTIONS(1461), - [anon_sym_0o] = ACTIONS(1461), - [anon_sym_0x] = ACTIONS(1461), - [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(1461), - [anon_sym_out_GT] = ACTIONS(1461), - [anon_sym_e_GT] = ACTIONS(1461), - [anon_sym_o_GT] = ACTIONS(1461), - [anon_sym_err_PLUSout_GT] = ACTIONS(1461), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1461), - [anon_sym_o_PLUSe_GT] = ACTIONS(1461), - [anon_sym_e_PLUSo_GT] = ACTIONS(1461), - [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(1461), - [aux_sym_unquoted_token2] = ACTIONS(1477), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1475), + [anon_sym_STAR_STAR] = ACTIONS(3092), + [anon_sym_PLUS_PLUS] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3094), + [anon_sym_SLASH] = ACTIONS(3094), + [anon_sym_mod] = ACTIONS(3092), + [anon_sym_SLASH_SLASH] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(3094), + [anon_sym_DASH] = ACTIONS(3092), + [anon_sym_bit_DASHshl] = ACTIONS(3092), + [anon_sym_bit_DASHshr] = ACTIONS(3092), + [anon_sym_EQ_TILDE] = ACTIONS(3092), + [anon_sym_BANG_TILDE] = ACTIONS(3092), + [anon_sym_bit_DASHand] = ACTIONS(3092), + [anon_sym_bit_DASHxor] = ACTIONS(3092), + [anon_sym_bit_DASHor] = ACTIONS(3092), + [anon_sym_and] = ACTIONS(3092), + [anon_sym_xor] = ACTIONS(3092), + [anon_sym_or] = ACTIONS(3092), + [anon_sym_in] = ACTIONS(3092), + [anon_sym_not_DASHin] = ACTIONS(3092), + [anon_sym_has] = ACTIONS(3092), + [anon_sym_not_DASHhas] = ACTIONS(3092), + [anon_sym_starts_DASHwith] = ACTIONS(3092), + [anon_sym_ends_DASHwith] = ACTIONS(3092), + [anon_sym_EQ_EQ] = ACTIONS(3092), + [anon_sym_BANG_EQ] = ACTIONS(3092), + [anon_sym_LT] = ACTIONS(3094), + [anon_sym_LT_EQ] = ACTIONS(3092), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_GT_EQ] = ACTIONS(3092), + [aux_sym_cmd_identifier_token41] = ACTIONS(3096), + [sym__newline] = ACTIONS(2073), + [anon_sym_SEMI] = ACTIONS(2073), + [anon_sym_PIPE] = ACTIONS(2073), + [anon_sym_err_GT_PIPE] = ACTIONS(2073), + [anon_sym_out_GT_PIPE] = ACTIONS(2073), + [anon_sym_e_GT_PIPE] = ACTIONS(2073), + [anon_sym_o_GT_PIPE] = ACTIONS(2073), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2073), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2073), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2073), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2073), + [anon_sym_GT2] = ACTIONS(2073), + [anon_sym_DASH2] = ACTIONS(2073), + [anon_sym_in2] = ACTIONS(2073), + [anon_sym_RBRACE] = ACTIONS(2073), + [anon_sym_STAR2] = ACTIONS(2073), + [anon_sym_and2] = ACTIONS(2073), + [anon_sym_xor2] = ACTIONS(2073), + [anon_sym_or2] = ACTIONS(2073), + [anon_sym_not_DASHin2] = ACTIONS(2073), + [anon_sym_has2] = ACTIONS(2073), + [anon_sym_not_DASHhas2] = ACTIONS(2073), + [anon_sym_starts_DASHwith2] = ACTIONS(2073), + [anon_sym_ends_DASHwith2] = ACTIONS(2073), + [anon_sym_EQ_EQ2] = ACTIONS(2073), + [anon_sym_BANG_EQ2] = ACTIONS(2073), + [anon_sym_LT2] = ACTIONS(2073), + [anon_sym_LT_EQ2] = ACTIONS(2073), + [anon_sym_GT_EQ2] = ACTIONS(2073), + [anon_sym_EQ_TILDE2] = ACTIONS(2073), + [anon_sym_BANG_TILDE2] = ACTIONS(2073), + [anon_sym_STAR_STAR2] = ACTIONS(2073), + [anon_sym_PLUS_PLUS2] = ACTIONS(2073), + [anon_sym_SLASH2] = ACTIONS(2073), + [anon_sym_mod2] = ACTIONS(2073), + [anon_sym_SLASH_SLASH2] = ACTIONS(2073), + [anon_sym_PLUS2] = ACTIONS(2073), + [anon_sym_bit_DASHshl2] = ACTIONS(2073), + [anon_sym_bit_DASHshr2] = ACTIONS(2073), + [anon_sym_bit_DASHand2] = ACTIONS(2073), + [anon_sym_bit_DASHxor2] = ACTIONS(2073), + [anon_sym_bit_DASHor2] = ACTIONS(2073), + [anon_sym_POUND] = ACTIONS(3), }, [1229] = { [sym_comment] = STATE(1229), - [anon_sym_STAR_STAR] = ACTIONS(1682), - [anon_sym_PLUS_PLUS] = ACTIONS(1682), - [anon_sym_STAR] = ACTIONS(1680), - [anon_sym_SLASH] = ACTIONS(1680), - [anon_sym_mod] = ACTIONS(1682), - [anon_sym_SLASH_SLASH] = ACTIONS(1682), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_DASH] = ACTIONS(1682), - [anon_sym_bit_DASHshl] = ACTIONS(1682), - [anon_sym_bit_DASHshr] = ACTIONS(1682), - [anon_sym_EQ_TILDE] = ACTIONS(1682), - [anon_sym_BANG_TILDE] = ACTIONS(1682), - [anon_sym_bit_DASHand] = ACTIONS(1682), - [anon_sym_bit_DASHxor] = ACTIONS(1682), - [anon_sym_bit_DASHor] = ACTIONS(1682), - [anon_sym_and] = ACTIONS(1682), - [anon_sym_xor] = ACTIONS(1682), - [anon_sym_or] = ACTIONS(1682), - [anon_sym_in] = ACTIONS(1682), - [anon_sym_not_DASHin] = ACTIONS(1682), - [anon_sym_starts_DASHwith] = ACTIONS(1682), - [anon_sym_ends_DASHwith] = ACTIONS(1682), - [anon_sym_EQ_EQ] = ACTIONS(1682), - [anon_sym_BANG_EQ] = ACTIONS(1682), - [anon_sym_LT] = ACTIONS(1680), - [anon_sym_LT_EQ] = ACTIONS(1682), - [anon_sym_GT] = ACTIONS(1680), - [anon_sym_GT_EQ] = ACTIONS(1682), - [aux_sym_cmd_identifier_token41] = ACTIONS(1680), - [sym__newline] = ACTIONS(1680), - [anon_sym_PIPE] = ACTIONS(1680), - [anon_sym_err_GT_PIPE] = ACTIONS(1680), - [anon_sym_out_GT_PIPE] = ACTIONS(1680), - [anon_sym_e_GT_PIPE] = ACTIONS(1680), - [anon_sym_o_GT_PIPE] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1680), - [anon_sym_GT2] = ACTIONS(1680), - [anon_sym_DASH2] = ACTIONS(1680), - [anon_sym_in2] = ACTIONS(1680), - [anon_sym_STAR2] = ACTIONS(1680), - [anon_sym_and2] = ACTIONS(1680), - [anon_sym_xor2] = ACTIONS(1680), - [anon_sym_or2] = ACTIONS(1680), - [anon_sym_not_DASHin2] = ACTIONS(1680), - [anon_sym_starts_DASHwith2] = ACTIONS(1680), - [anon_sym_ends_DASHwith2] = ACTIONS(1680), - [anon_sym_EQ_EQ2] = ACTIONS(1680), - [anon_sym_BANG_EQ2] = ACTIONS(1680), - [anon_sym_LT2] = ACTIONS(1680), - [anon_sym_LT_EQ2] = ACTIONS(1680), - [anon_sym_GT_EQ2] = ACTIONS(1680), - [anon_sym_EQ_TILDE2] = ACTIONS(1680), - [anon_sym_BANG_TILDE2] = ACTIONS(1680), - [anon_sym_STAR_STAR2] = ACTIONS(1680), - [anon_sym_PLUS_PLUS2] = ACTIONS(1680), - [anon_sym_SLASH2] = ACTIONS(1680), - [anon_sym_mod2] = ACTIONS(1680), - [anon_sym_SLASH_SLASH2] = ACTIONS(1680), - [anon_sym_PLUS2] = ACTIONS(1680), - [anon_sym_bit_DASHshl2] = ACTIONS(1680), - [anon_sym_bit_DASHshr2] = ACTIONS(1680), - [anon_sym_bit_DASHand2] = ACTIONS(1680), - [anon_sym_bit_DASHxor2] = ACTIONS(1680), - [anon_sym_bit_DASHor2] = ACTIONS(1680), - [anon_sym_DOT_DOT2] = ACTIONS(1680), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1682), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1682), - [sym_filesize_unit] = ACTIONS(1680), - [sym_duration_unit] = ACTIONS(1682), + [anon_sym_STAR_STAR] = ACTIONS(3092), + [anon_sym_PLUS_PLUS] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3094), + [anon_sym_SLASH] = ACTIONS(3094), + [anon_sym_mod] = ACTIONS(3092), + [anon_sym_SLASH_SLASH] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(3094), + [anon_sym_DASH] = ACTIONS(3092), + [anon_sym_bit_DASHshl] = ACTIONS(3092), + [anon_sym_bit_DASHshr] = ACTIONS(3092), + [anon_sym_EQ_TILDE] = ACTIONS(3092), + [anon_sym_BANG_TILDE] = ACTIONS(3092), + [anon_sym_bit_DASHand] = ACTIONS(3092), + [anon_sym_bit_DASHxor] = ACTIONS(3092), + [anon_sym_bit_DASHor] = ACTIONS(3092), + [anon_sym_and] = ACTIONS(3092), + [anon_sym_xor] = ACTIONS(3092), + [anon_sym_or] = ACTIONS(3092), + [anon_sym_in] = ACTIONS(3092), + [anon_sym_not_DASHin] = ACTIONS(3092), + [anon_sym_has] = ACTIONS(3092), + [anon_sym_not_DASHhas] = ACTIONS(3092), + [anon_sym_starts_DASHwith] = ACTIONS(3092), + [anon_sym_ends_DASHwith] = ACTIONS(3092), + [anon_sym_EQ_EQ] = ACTIONS(3092), + [anon_sym_BANG_EQ] = ACTIONS(3092), + [anon_sym_LT] = ACTIONS(3094), + [anon_sym_LT_EQ] = ACTIONS(3092), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_GT_EQ] = ACTIONS(3092), + [aux_sym_cmd_identifier_token41] = ACTIONS(3096), + [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_GT2] = ACTIONS(2081), + [anon_sym_DASH2] = ACTIONS(2081), + [anon_sym_in2] = ACTIONS(2081), + [anon_sym_RBRACE] = ACTIONS(2081), + [anon_sym_STAR2] = ACTIONS(2081), + [anon_sym_and2] = ACTIONS(2081), + [anon_sym_xor2] = ACTIONS(2081), + [anon_sym_or2] = ACTIONS(2081), + [anon_sym_not_DASHin2] = ACTIONS(2081), + [anon_sym_has2] = ACTIONS(2081), + [anon_sym_not_DASHhas2] = ACTIONS(2081), + [anon_sym_starts_DASHwith2] = ACTIONS(2081), + [anon_sym_ends_DASHwith2] = ACTIONS(2081), + [anon_sym_EQ_EQ2] = ACTIONS(2081), + [anon_sym_BANG_EQ2] = ACTIONS(2081), + [anon_sym_LT2] = ACTIONS(2081), + [anon_sym_LT_EQ2] = ACTIONS(2081), + [anon_sym_GT_EQ2] = ACTIONS(2081), + [anon_sym_EQ_TILDE2] = ACTIONS(2081), + [anon_sym_BANG_TILDE2] = ACTIONS(2081), + [anon_sym_STAR_STAR2] = ACTIONS(2081), + [anon_sym_PLUS_PLUS2] = ACTIONS(2081), + [anon_sym_SLASH2] = ACTIONS(2081), + [anon_sym_mod2] = ACTIONS(2081), + [anon_sym_SLASH_SLASH2] = ACTIONS(2081), + [anon_sym_PLUS2] = ACTIONS(2081), + [anon_sym_bit_DASHshl2] = ACTIONS(2081), + [anon_sym_bit_DASHshr2] = ACTIONS(2081), + [anon_sym_bit_DASHand2] = ACTIONS(2081), + [anon_sym_bit_DASHxor2] = ACTIONS(2081), + [anon_sym_bit_DASHor2] = ACTIONS(2081), [anon_sym_POUND] = ACTIONS(3), }, [1230] = { + [sym_match_arm] = STATE(6924), + [sym_default_arm] = STATE(6924), + [sym_match_pattern] = STATE(7845), + [sym__match_pattern] = STATE(6156), + [sym__match_pattern_expression] = STATE(7277), + [sym__match_pattern_value] = STATE(7278), + [sym__match_pattern_list] = STATE(7279), + [sym__match_pattern_record] = STATE(7280), + [sym_expr_parenthesized] = STATE(5921), + [sym_val_range] = STATE(7278), + [sym__val_range] = STATE(7833), + [sym_val_nothing] = STATE(7282), + [sym_val_bool] = STATE(6697), + [sym_val_variable] = STATE(5881), + [sym_val_number] = STATE(7282), + [sym__val_number_decimal] = STATE(5377), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(7282), + [sym_val_filesize] = STATE(7282), + [sym_val_binary] = STATE(7282), + [sym_val_string] = STATE(7282), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_table] = STATE(7282), + [sym_unquoted] = STATE(6981), + [sym__unquoted_anonymous_prefix] = STATE(7649), [sym_comment] = STATE(1230), - [anon_sym_STAR_STAR] = ACTIONS(1552), - [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1550), - [anon_sym_SLASH] = ACTIONS(1550), - [anon_sym_mod] = ACTIONS(1552), - [anon_sym_SLASH_SLASH] = ACTIONS(1552), - [anon_sym_PLUS] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1552), - [anon_sym_bit_DASHshl] = ACTIONS(1552), - [anon_sym_bit_DASHshr] = ACTIONS(1552), - [anon_sym_EQ_TILDE] = ACTIONS(1552), - [anon_sym_BANG_TILDE] = ACTIONS(1552), - [anon_sym_bit_DASHand] = ACTIONS(1552), - [anon_sym_bit_DASHxor] = ACTIONS(1552), - [anon_sym_bit_DASHor] = ACTIONS(1552), - [anon_sym_and] = ACTIONS(1552), - [anon_sym_xor] = ACTIONS(1552), - [anon_sym_or] = ACTIONS(1552), - [anon_sym_in] = ACTIONS(1552), - [anon_sym_not_DASHin] = ACTIONS(1552), - [anon_sym_starts_DASHwith] = ACTIONS(1552), - [anon_sym_ends_DASHwith] = ACTIONS(1552), - [anon_sym_EQ_EQ] = ACTIONS(1552), - [anon_sym_BANG_EQ] = ACTIONS(1552), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_LT_EQ] = ACTIONS(1552), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_GT_EQ] = ACTIONS(1552), - [aux_sym_cmd_identifier_token41] = ACTIONS(1550), - [sym__newline] = ACTIONS(1550), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_err_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_GT_PIPE] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1550), - [anon_sym_GT2] = ACTIONS(1550), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_in2] = ACTIONS(1550), - [anon_sym_STAR2] = ACTIONS(1550), - [anon_sym_and2] = ACTIONS(1550), - [anon_sym_xor2] = ACTIONS(1550), - [anon_sym_or2] = ACTIONS(1550), - [anon_sym_not_DASHin2] = ACTIONS(1550), - [anon_sym_starts_DASHwith2] = ACTIONS(1550), - [anon_sym_ends_DASHwith2] = ACTIONS(1550), - [anon_sym_EQ_EQ2] = ACTIONS(1550), - [anon_sym_BANG_EQ2] = ACTIONS(1550), - [anon_sym_LT2] = ACTIONS(1550), - [anon_sym_LT_EQ2] = ACTIONS(1550), - [anon_sym_GT_EQ2] = ACTIONS(1550), - [anon_sym_EQ_TILDE2] = ACTIONS(1550), - [anon_sym_BANG_TILDE2] = ACTIONS(1550), - [anon_sym_STAR_STAR2] = ACTIONS(1550), - [anon_sym_PLUS_PLUS2] = ACTIONS(1550), - [anon_sym_SLASH2] = ACTIONS(1550), - [anon_sym_mod2] = ACTIONS(1550), - [anon_sym_SLASH_SLASH2] = ACTIONS(1550), - [anon_sym_PLUS2] = ACTIONS(1550), - [anon_sym_bit_DASHshl2] = ACTIONS(1550), - [anon_sym_bit_DASHshr2] = ACTIONS(1550), - [anon_sym_bit_DASHand2] = ACTIONS(1550), - [anon_sym_bit_DASHxor2] = ACTIONS(1550), - [anon_sym_bit_DASHor2] = ACTIONS(1550), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [sym_filesize_unit] = ACTIONS(1550), - [sym_duration_unit] = ACTIONS(1552), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_match_repeat1] = STATE(1231), + [anon_sym_LBRACK] = ACTIONS(3616), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym__] = ACTIONS(3624), + [anon_sym_DOT_DOT] = ACTIONS(3626), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3628), + [anon_sym_DOT_DOT_LT] = ACTIONS(3628), + [anon_sym_null] = ACTIONS(3630), + [anon_sym_true] = ACTIONS(3632), + [anon_sym_false] = ACTIONS(3632), + [aux_sym__val_number_decimal_token1] = ACTIONS(3634), + [aux_sym__val_number_decimal_token2] = ACTIONS(3636), + [aux_sym__val_number_decimal_token3] = ACTIONS(3638), + [aux_sym__val_number_decimal_token4] = ACTIONS(3640), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3642), + [aux_sym__val_number_token5] = ACTIONS(3642), + [aux_sym__val_number_token6] = ACTIONS(3642), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3644), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3538), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1231] = { - [sym_expr_parenthesized] = STATE(6189), - [sym_val_range] = STATE(7640), - [sym__val_range] = STATE(7519), - [sym__value] = STATE(7640), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(7415), - [sym_val_variable] = STATE(6654), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(5640), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(3668), - [sym__str_double_quotes] = STATE(3668), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(7763), - [sym__unquoted_anonymous_prefix] = STATE(7789), + [sym_match_arm] = STATE(7395), + [sym_default_arm] = STATE(7395), + [sym_match_pattern] = STATE(7845), + [sym__match_pattern] = STATE(6156), + [sym__match_pattern_expression] = STATE(7277), + [sym__match_pattern_value] = STATE(7278), + [sym__match_pattern_list] = STATE(7279), + [sym__match_pattern_record] = STATE(7280), + [sym_expr_parenthesized] = STATE(5921), + [sym_val_range] = STATE(7278), + [sym__val_range] = STATE(7833), + [sym_val_nothing] = STATE(7282), + [sym_val_bool] = STATE(6697), + [sym_val_variable] = STATE(5881), + [sym_val_number] = STATE(7282), + [sym__val_number_decimal] = STATE(5377), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(7282), + [sym_val_filesize] = STATE(7282), + [sym_val_binary] = STATE(7282), + [sym_val_string] = STATE(7282), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_table] = STATE(7282), + [sym_unquoted] = STATE(6981), + [sym__unquoted_anonymous_prefix] = STATE(7649), [sym_comment] = STATE(1231), - [anon_sym_LBRACK] = ACTIONS(3460), - [anon_sym_LPAREN] = ACTIONS(3462), - [anon_sym_DOLLAR] = ACTIONS(3464), - [anon_sym_LBRACE] = ACTIONS(3466), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3952), - [anon_sym_DOT_DOT_LT] = ACTIONS(3952), - [anon_sym_null] = ACTIONS(3954), - [anon_sym_true] = ACTIONS(3956), - [anon_sym_false] = ACTIONS(3956), - [aux_sym__val_number_decimal_token1] = ACTIONS(3958), - [aux_sym__val_number_decimal_token2] = ACTIONS(3960), - [aux_sym__val_number_decimal_token3] = ACTIONS(3962), - [aux_sym__val_number_decimal_token4] = ACTIONS(3964), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3966), - [aux_sym__val_number_token5] = ACTIONS(3966), - [aux_sym__val_number_token6] = ACTIONS(3966), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3968), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym__str_single_quotes] = ACTIONS(1288), - [sym__str_back_ticks] = ACTIONS(1288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3490), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1290), + [aux_sym_ctrl_match_repeat1] = STATE(1231), + [anon_sym_LBRACK] = ACTIONS(3894), + [anon_sym_LPAREN] = ACTIONS(3897), + [anon_sym_DOLLAR] = ACTIONS(3900), + [anon_sym_LBRACE] = ACTIONS(3903), + [anon_sym__] = ACTIONS(3906), + [anon_sym_DOT_DOT] = ACTIONS(3909), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3912), + [anon_sym_DOT_DOT_LT] = ACTIONS(3912), + [anon_sym_null] = ACTIONS(3915), + [anon_sym_true] = ACTIONS(3918), + [anon_sym_false] = ACTIONS(3918), + [aux_sym__val_number_decimal_token1] = ACTIONS(3921), + [aux_sym__val_number_decimal_token2] = ACTIONS(3924), + [aux_sym__val_number_decimal_token3] = ACTIONS(3927), + [aux_sym__val_number_decimal_token4] = ACTIONS(3930), + [aux_sym__val_number_token1] = ACTIONS(3933), + [aux_sym__val_number_token2] = ACTIONS(3933), + [aux_sym__val_number_token3] = ACTIONS(3933), + [aux_sym__val_number_token4] = ACTIONS(3936), + [aux_sym__val_number_token5] = ACTIONS(3936), + [aux_sym__val_number_token6] = ACTIONS(3936), + [anon_sym_0b] = ACTIONS(3939), + [anon_sym_0o] = ACTIONS(3942), + [anon_sym_0x] = ACTIONS(3942), + [sym_val_date] = ACTIONS(3945), + [anon_sym_DQUOTE] = ACTIONS(3948), + [sym__str_single_quotes] = ACTIONS(3951), + [sym__str_back_ticks] = ACTIONS(3951), + [anon_sym_err_GT] = ACTIONS(3954), + [anon_sym_out_GT] = ACTIONS(3954), + [anon_sym_e_GT] = ACTIONS(3954), + [anon_sym_o_GT] = ACTIONS(3954), + [anon_sym_err_PLUSout_GT] = ACTIONS(3954), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3954), + [anon_sym_o_PLUSe_GT] = ACTIONS(3954), + [anon_sym_e_PLUSo_GT] = ACTIONS(3954), + [anon_sym_err_GT_GT] = ACTIONS(3957), + [anon_sym_out_GT_GT] = ACTIONS(3957), + [anon_sym_e_GT_GT] = ACTIONS(3957), + [anon_sym_o_GT_GT] = ACTIONS(3957), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3957), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3957), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3957), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3957), + [aux_sym_unquoted_token1] = ACTIONS(3960), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3963), }, [1232] = { - [sym_expr_parenthesized] = STATE(6595), - [sym_val_range] = STATE(7561), - [sym__val_range] = STATE(7519), - [sym__value] = STATE(7561), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(7415), - [sym_val_variable] = STATE(6654), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(5640), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(3668), - [sym__str_double_quotes] = STATE(3668), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(7562), - [sym__unquoted_anonymous_prefix] = STATE(7789), + [sym_match_arm] = STATE(6944), + [sym_default_arm] = STATE(6944), + [sym_match_pattern] = STATE(7845), + [sym__match_pattern] = STATE(6156), + [sym__match_pattern_expression] = STATE(7277), + [sym__match_pattern_value] = STATE(7278), + [sym__match_pattern_list] = STATE(7279), + [sym__match_pattern_record] = STATE(7280), + [sym_expr_parenthesized] = STATE(5921), + [sym_val_range] = STATE(7278), + [sym__val_range] = STATE(7833), + [sym_val_nothing] = STATE(7282), + [sym_val_bool] = STATE(6697), + [sym_val_variable] = STATE(5881), + [sym_val_number] = STATE(7282), + [sym__val_number_decimal] = STATE(5377), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(7282), + [sym_val_filesize] = STATE(7282), + [sym_val_binary] = STATE(7282), + [sym_val_string] = STATE(7282), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_table] = STATE(7282), + [sym_unquoted] = STATE(6981), + [sym__unquoted_anonymous_prefix] = STATE(7649), [sym_comment] = STATE(1232), - [anon_sym_LBRACK] = ACTIONS(3460), - [anon_sym_LPAREN] = ACTIONS(3462), - [anon_sym_DOLLAR] = ACTIONS(3464), - [anon_sym_LBRACE] = ACTIONS(3466), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3952), - [anon_sym_DOT_DOT_LT] = ACTIONS(3952), - [anon_sym_null] = ACTIONS(3954), - [anon_sym_true] = ACTIONS(3956), - [anon_sym_false] = ACTIONS(3956), - [aux_sym__val_number_decimal_token1] = ACTIONS(3958), - [aux_sym__val_number_decimal_token2] = ACTIONS(3960), - [aux_sym__val_number_decimal_token3] = ACTIONS(3962), - [aux_sym__val_number_decimal_token4] = ACTIONS(3964), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3966), - [aux_sym__val_number_token5] = ACTIONS(3966), - [aux_sym__val_number_token6] = ACTIONS(3966), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3968), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym__str_single_quotes] = ACTIONS(1288), - [sym__str_back_ticks] = ACTIONS(1288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3490), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1290), + [aux_sym_ctrl_match_repeat1] = STATE(1231), + [anon_sym_LBRACK] = ACTIONS(3616), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym__] = ACTIONS(3624), + [anon_sym_DOT_DOT] = ACTIONS(3626), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3628), + [anon_sym_DOT_DOT_LT] = ACTIONS(3628), + [anon_sym_null] = ACTIONS(3630), + [anon_sym_true] = ACTIONS(3632), + [anon_sym_false] = ACTIONS(3632), + [aux_sym__val_number_decimal_token1] = ACTIONS(3634), + [aux_sym__val_number_decimal_token2] = ACTIONS(3636), + [aux_sym__val_number_decimal_token3] = ACTIONS(3638), + [aux_sym__val_number_decimal_token4] = ACTIONS(3640), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3642), + [aux_sym__val_number_token5] = ACTIONS(3642), + [aux_sym__val_number_token6] = ACTIONS(3642), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3644), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3538), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1233] = { + [sym_match_arm] = STATE(6833), + [sym_default_arm] = STATE(6833), + [sym_match_pattern] = STATE(7845), + [sym__match_pattern] = STATE(6156), + [sym__match_pattern_expression] = STATE(7277), + [sym__match_pattern_value] = STATE(7278), + [sym__match_pattern_list] = STATE(7279), + [sym__match_pattern_record] = STATE(7280), + [sym_expr_parenthesized] = STATE(5921), + [sym_val_range] = STATE(7278), + [sym__val_range] = STATE(7833), + [sym_val_nothing] = STATE(7282), + [sym_val_bool] = STATE(6697), + [sym_val_variable] = STATE(5881), + [sym_val_number] = STATE(7282), + [sym__val_number_decimal] = STATE(5377), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(7282), + [sym_val_filesize] = STATE(7282), + [sym_val_binary] = STATE(7282), + [sym_val_string] = STATE(7282), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_table] = STATE(7282), + [sym_unquoted] = STATE(6981), + [sym__unquoted_anonymous_prefix] = STATE(7649), [sym_comment] = STATE(1233), - [sym__newline] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1552), - [anon_sym_PIPE] = ACTIONS(1552), - [anon_sym_err_GT_PIPE] = ACTIONS(1552), - [anon_sym_out_GT_PIPE] = ACTIONS(1552), - [anon_sym_e_GT_PIPE] = ACTIONS(1552), - [anon_sym_o_GT_PIPE] = ACTIONS(1552), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1552), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1552), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1552), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1552), - [anon_sym_LBRACK] = ACTIONS(1552), - [anon_sym_LPAREN] = ACTIONS(1550), - [anon_sym_RPAREN] = ACTIONS(1552), - [anon_sym_DOLLAR] = ACTIONS(1550), - [anon_sym_DASH_DASH] = ACTIONS(1552), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_LBRACE] = ACTIONS(1552), - [anon_sym_RBRACE] = ACTIONS(1552), - [anon_sym_DOT_DOT] = ACTIONS(1550), - [anon_sym_LPAREN2] = ACTIONS(1552), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT] = ACTIONS(3990), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1550), - [anon_sym_DOT_DOT_LT] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [aux_sym__immediate_decimal_token2] = ACTIONS(3992), - [anon_sym_null] = ACTIONS(1552), - [anon_sym_true] = ACTIONS(1552), - [anon_sym_false] = ACTIONS(1552), - [aux_sym__val_number_decimal_token1] = ACTIONS(1550), - [aux_sym__val_number_decimal_token2] = ACTIONS(1552), - [aux_sym__val_number_decimal_token3] = ACTIONS(1552), - [aux_sym__val_number_decimal_token4] = ACTIONS(1552), - [aux_sym__val_number_token1] = ACTIONS(1552), - [aux_sym__val_number_token2] = ACTIONS(1552), - [aux_sym__val_number_token3] = ACTIONS(1552), - [aux_sym__val_number_token4] = ACTIONS(1552), - [aux_sym__val_number_token5] = ACTIONS(1552), - [aux_sym__val_number_token6] = ACTIONS(1552), - [anon_sym_0b] = ACTIONS(1550), - [sym_filesize_unit] = ACTIONS(1552), - [sym_duration_unit] = ACTIONS(1552), - [anon_sym_0o] = ACTIONS(1550), - [anon_sym_0x] = ACTIONS(1550), - [sym_val_date] = ACTIONS(1552), - [anon_sym_DQUOTE] = ACTIONS(1552), - [sym__str_single_quotes] = ACTIONS(1552), - [sym__str_back_ticks] = ACTIONS(1552), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1552), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1552), - [anon_sym_err_GT] = ACTIONS(1550), - [anon_sym_out_GT] = ACTIONS(1550), - [anon_sym_e_GT] = ACTIONS(1550), - [anon_sym_o_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT] = ACTIONS(1550), - [anon_sym_err_GT_GT] = ACTIONS(1552), - [anon_sym_out_GT_GT] = ACTIONS(1552), - [anon_sym_e_GT_GT] = ACTIONS(1552), - [anon_sym_o_GT_GT] = ACTIONS(1552), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1552), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1552), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1552), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1552), - [aux_sym_unquoted_token1] = ACTIONS(1550), - [aux_sym_unquoted_token2] = ACTIONS(1550), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1552), + [aux_sym_ctrl_match_repeat1] = STATE(1231), + [anon_sym_LBRACK] = ACTIONS(3616), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym__] = ACTIONS(3624), + [anon_sym_DOT_DOT] = ACTIONS(3626), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3628), + [anon_sym_DOT_DOT_LT] = ACTIONS(3628), + [anon_sym_null] = ACTIONS(3630), + [anon_sym_true] = ACTIONS(3632), + [anon_sym_false] = ACTIONS(3632), + [aux_sym__val_number_decimal_token1] = ACTIONS(3634), + [aux_sym__val_number_decimal_token2] = ACTIONS(3636), + [aux_sym__val_number_decimal_token3] = ACTIONS(3638), + [aux_sym__val_number_decimal_token4] = ACTIONS(3640), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3642), + [aux_sym__val_number_token5] = ACTIONS(3642), + [aux_sym__val_number_token6] = ACTIONS(3642), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3644), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3538), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1234] = { - [sym__expr_parenthesized_immediate] = STATE(1624), - [sym__immediate_decimal] = STATE(1440), - [sym_val_variable] = STATE(1624), + [sym_match_arm] = STATE(6830), + [sym_default_arm] = STATE(6830), + [sym_match_pattern] = STATE(7845), + [sym__match_pattern] = STATE(6156), + [sym__match_pattern_expression] = STATE(7277), + [sym__match_pattern_value] = STATE(7278), + [sym__match_pattern_list] = STATE(7279), + [sym__match_pattern_record] = STATE(7280), + [sym_expr_parenthesized] = STATE(5921), + [sym_val_range] = STATE(7278), + [sym__val_range] = STATE(7833), + [sym_val_nothing] = STATE(7282), + [sym_val_bool] = STATE(6697), + [sym_val_variable] = STATE(5881), + [sym_val_number] = STATE(7282), + [sym__val_number_decimal] = STATE(5377), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(7282), + [sym_val_filesize] = STATE(7282), + [sym_val_binary] = STATE(7282), + [sym_val_string] = STATE(7282), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_table] = STATE(7282), + [sym_unquoted] = STATE(6981), + [sym__unquoted_anonymous_prefix] = STATE(7649), [sym_comment] = STATE(1234), - [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_LBRACK] = ACTIONS(1475), - [anon_sym_LPAREN] = ACTIONS(1461), - [anon_sym_DOLLAR] = ACTIONS(2877), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_DASH2] = ACTIONS(1461), - [anon_sym_LBRACE] = ACTIONS(1475), - [anon_sym_DOT_DOT] = ACTIONS(1461), - [anon_sym_LPAREN2] = ACTIONS(3994), - [anon_sym_DOT] = ACTIONS(3996), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1475), - [anon_sym_DOT_DOT_LT] = ACTIONS(1475), - [aux_sym__immediate_decimal_token1] = ACTIONS(3998), - [aux_sym__immediate_decimal_token3] = ACTIONS(4000), - [aux_sym__immediate_decimal_token4] = ACTIONS(4002), - [aux_sym__immediate_decimal_token5] = ACTIONS(4004), - [anon_sym_null] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [aux_sym__val_number_decimal_token1] = ACTIONS(1461), - [aux_sym__val_number_decimal_token2] = ACTIONS(1461), - [aux_sym__val_number_decimal_token3] = ACTIONS(1461), - [aux_sym__val_number_decimal_token4] = ACTIONS(1461), - [aux_sym__val_number_token1] = ACTIONS(1475), - [aux_sym__val_number_token2] = ACTIONS(1475), - [aux_sym__val_number_token3] = ACTIONS(1475), - [aux_sym__val_number_token4] = ACTIONS(1475), - [aux_sym__val_number_token5] = ACTIONS(1475), - [aux_sym__val_number_token6] = ACTIONS(1475), - [anon_sym_0b] = ACTIONS(1461), - [anon_sym_0o] = ACTIONS(1461), - [anon_sym_0x] = ACTIONS(1461), - [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(1461), - [anon_sym_out_GT] = ACTIONS(1461), - [anon_sym_e_GT] = ACTIONS(1461), - [anon_sym_o_GT] = ACTIONS(1461), - [anon_sym_err_PLUSout_GT] = ACTIONS(1461), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1461), - [anon_sym_o_PLUSe_GT] = ACTIONS(1461), - [anon_sym_e_PLUSo_GT] = ACTIONS(1461), - [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(1461), - [aux_sym_unquoted_token2] = ACTIONS(1477), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1475), + [aux_sym_ctrl_match_repeat1] = STATE(1231), + [anon_sym_LBRACK] = ACTIONS(3616), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym__] = ACTIONS(3624), + [anon_sym_DOT_DOT] = ACTIONS(3626), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3628), + [anon_sym_DOT_DOT_LT] = ACTIONS(3628), + [anon_sym_null] = ACTIONS(3630), + [anon_sym_true] = ACTIONS(3632), + [anon_sym_false] = ACTIONS(3632), + [aux_sym__val_number_decimal_token1] = ACTIONS(3634), + [aux_sym__val_number_decimal_token2] = ACTIONS(3636), + [aux_sym__val_number_decimal_token3] = ACTIONS(3638), + [aux_sym__val_number_decimal_token4] = ACTIONS(3640), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3642), + [aux_sym__val_number_token5] = ACTIONS(3642), + [aux_sym__val_number_token6] = ACTIONS(3642), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3644), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3538), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1235] = { + [sym_match_arm] = STATE(6965), + [sym_default_arm] = STATE(6965), + [sym_match_pattern] = STATE(7845), + [sym__match_pattern] = STATE(6156), + [sym__match_pattern_expression] = STATE(7277), + [sym__match_pattern_value] = STATE(7278), + [sym__match_pattern_list] = STATE(7279), + [sym__match_pattern_record] = STATE(7280), + [sym_expr_parenthesized] = STATE(5921), + [sym_val_range] = STATE(7278), + [sym__val_range] = STATE(7833), + [sym_val_nothing] = STATE(7282), + [sym_val_bool] = STATE(6697), + [sym_val_variable] = STATE(5881), + [sym_val_number] = STATE(7282), + [sym__val_number_decimal] = STATE(5377), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(7282), + [sym_val_filesize] = STATE(7282), + [sym_val_binary] = STATE(7282), + [sym_val_string] = STATE(7282), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_table] = STATE(7282), + [sym_unquoted] = STATE(6981), + [sym__unquoted_anonymous_prefix] = STATE(7649), [sym_comment] = STATE(1235), - [sym__newline] = ACTIONS(1544), - [anon_sym_SEMI] = ACTIONS(1544), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_err_GT_PIPE] = ACTIONS(1544), - [anon_sym_out_GT_PIPE] = ACTIONS(1544), - [anon_sym_e_GT_PIPE] = ACTIONS(1544), - [anon_sym_o_GT_PIPE] = ACTIONS(1544), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1544), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1544), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1544), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1544), - [anon_sym_LPAREN] = ACTIONS(1542), - [anon_sym_RPAREN] = ACTIONS(1544), - [anon_sym_DOLLAR] = ACTIONS(1542), - [anon_sym_DASH_DASH] = ACTIONS(1544), - [anon_sym_DASH2] = ACTIONS(1542), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_RBRACE] = ACTIONS(1544), - [anon_sym_DOT_DOT] = ACTIONS(1542), - [anon_sym_LPAREN2] = ACTIONS(1544), - [anon_sym_DOT_DOT2] = ACTIONS(1542), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1542), - [anon_sym_DOT_DOT_LT] = ACTIONS(1542), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1544), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1544), - [aux_sym__immediate_decimal_token1] = ACTIONS(4006), - [aux_sym__immediate_decimal_token2] = ACTIONS(4008), - [anon_sym_null] = ACTIONS(1544), - [anon_sym_true] = ACTIONS(1544), - [anon_sym_false] = ACTIONS(1544), - [aux_sym__val_number_decimal_token1] = ACTIONS(1542), - [aux_sym__val_number_decimal_token2] = ACTIONS(1544), - [aux_sym__val_number_decimal_token3] = ACTIONS(1544), - [aux_sym__val_number_decimal_token4] = ACTIONS(1544), - [aux_sym__val_number_token1] = ACTIONS(1544), - [aux_sym__val_number_token2] = ACTIONS(1544), - [aux_sym__val_number_token3] = ACTIONS(1544), - [aux_sym__val_number_token4] = ACTIONS(1544), - [aux_sym__val_number_token5] = ACTIONS(1544), - [aux_sym__val_number_token6] = ACTIONS(1544), - [anon_sym_0b] = ACTIONS(1542), - [sym_filesize_unit] = ACTIONS(1544), - [sym_duration_unit] = ACTIONS(1544), - [anon_sym_0o] = ACTIONS(1542), - [anon_sym_0x] = ACTIONS(1542), - [sym_val_date] = ACTIONS(1544), - [anon_sym_DQUOTE] = ACTIONS(1544), - [sym__str_single_quotes] = ACTIONS(1544), - [sym__str_back_ticks] = ACTIONS(1544), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1544), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1544), - [anon_sym_err_GT] = ACTIONS(1542), - [anon_sym_out_GT] = ACTIONS(1542), - [anon_sym_e_GT] = ACTIONS(1542), - [anon_sym_o_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT] = ACTIONS(1542), - [anon_sym_err_GT_GT] = ACTIONS(1544), - [anon_sym_out_GT_GT] = ACTIONS(1544), - [anon_sym_e_GT_GT] = ACTIONS(1544), - [anon_sym_o_GT_GT] = ACTIONS(1544), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1544), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1544), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1544), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1544), - [aux_sym_unquoted_token1] = ACTIONS(1542), - [aux_sym_unquoted_token2] = ACTIONS(1542), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1544), + [aux_sym_ctrl_match_repeat1] = STATE(1231), + [anon_sym_LBRACK] = ACTIONS(3616), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym__] = ACTIONS(3624), + [anon_sym_DOT_DOT] = ACTIONS(3626), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3628), + [anon_sym_DOT_DOT_LT] = ACTIONS(3628), + [anon_sym_null] = ACTIONS(3630), + [anon_sym_true] = ACTIONS(3632), + [anon_sym_false] = ACTIONS(3632), + [aux_sym__val_number_decimal_token1] = ACTIONS(3634), + [aux_sym__val_number_decimal_token2] = ACTIONS(3636), + [aux_sym__val_number_decimal_token3] = ACTIONS(3638), + [aux_sym__val_number_decimal_token4] = ACTIONS(3640), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3642), + [aux_sym__val_number_token5] = ACTIONS(3642), + [aux_sym__val_number_token6] = ACTIONS(3642), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3644), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3538), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1236] = { - [sym__expr_parenthesized_immediate] = STATE(1540), - [sym__immediate_decimal] = STATE(1541), - [sym_val_variable] = STATE(1540), + [sym_match_arm] = STATE(6962), + [sym_default_arm] = STATE(6962), + [sym_match_pattern] = STATE(7845), + [sym__match_pattern] = STATE(6156), + [sym__match_pattern_expression] = STATE(7277), + [sym__match_pattern_value] = STATE(7278), + [sym__match_pattern_list] = STATE(7279), + [sym__match_pattern_record] = STATE(7280), + [sym_expr_parenthesized] = STATE(5921), + [sym_val_range] = STATE(7278), + [sym__val_range] = STATE(7833), + [sym_val_nothing] = STATE(7282), + [sym_val_bool] = STATE(6697), + [sym_val_variable] = STATE(5881), + [sym_val_number] = STATE(7282), + [sym__val_number_decimal] = STATE(5377), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(7282), + [sym_val_filesize] = STATE(7282), + [sym_val_binary] = STATE(7282), + [sym_val_string] = STATE(7282), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_table] = STATE(7282), + [sym_unquoted] = STATE(6981), + [sym__unquoted_anonymous_prefix] = STATE(7649), [sym_comment] = STATE(1236), - [sym__newline] = ACTIONS(1510), - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1510), - [anon_sym_err_GT_PIPE] = ACTIONS(1510), - [anon_sym_out_GT_PIPE] = ACTIONS(1510), - [anon_sym_e_GT_PIPE] = ACTIONS(1510), - [anon_sym_o_GT_PIPE] = ACTIONS(1510), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1510), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1510), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1510), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1500), - [anon_sym_RPAREN] = ACTIONS(1510), - [anon_sym_DOLLAR] = ACTIONS(2622), - [anon_sym_DASH_DASH] = ACTIONS(1510), - [anon_sym_DASH2] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1510), - [anon_sym_RBRACE] = ACTIONS(1510), - [anon_sym_DOT_DOT] = ACTIONS(1500), - [anon_sym_LPAREN2] = ACTIONS(3978), - [anon_sym_DOT] = ACTIONS(4010), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1510), - [anon_sym_DOT_DOT_LT] = ACTIONS(1510), - [aux_sym__immediate_decimal_token1] = ACTIONS(4012), - [aux_sym__immediate_decimal_token3] = ACTIONS(4014), - [aux_sym__immediate_decimal_token4] = ACTIONS(4016), - [aux_sym__immediate_decimal_token5] = ACTIONS(4018), - [anon_sym_null] = ACTIONS(1510), - [anon_sym_true] = ACTIONS(1510), - [anon_sym_false] = ACTIONS(1510), - [aux_sym__val_number_decimal_token1] = ACTIONS(1500), - [aux_sym__val_number_decimal_token2] = ACTIONS(1500), - [aux_sym__val_number_decimal_token3] = ACTIONS(1500), - [aux_sym__val_number_decimal_token4] = ACTIONS(1500), - [aux_sym__val_number_token1] = ACTIONS(1510), - [aux_sym__val_number_token2] = ACTIONS(1510), - [aux_sym__val_number_token3] = ACTIONS(1510), - [aux_sym__val_number_token4] = ACTIONS(1510), - [aux_sym__val_number_token5] = ACTIONS(1510), - [aux_sym__val_number_token6] = ACTIONS(1510), - [anon_sym_0b] = ACTIONS(1500), - [anon_sym_0o] = ACTIONS(1500), - [anon_sym_0x] = ACTIONS(1500), - [sym_val_date] = ACTIONS(1510), - [anon_sym_DQUOTE] = ACTIONS(1510), - [sym__str_single_quotes] = ACTIONS(1510), - [sym__str_back_ticks] = ACTIONS(1510), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1510), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1510), - [anon_sym_err_GT] = ACTIONS(1500), - [anon_sym_out_GT] = ACTIONS(1500), - [anon_sym_e_GT] = ACTIONS(1500), - [anon_sym_o_GT] = ACTIONS(1500), - [anon_sym_err_PLUSout_GT] = ACTIONS(1500), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1500), - [anon_sym_o_PLUSe_GT] = ACTIONS(1500), - [anon_sym_e_PLUSo_GT] = ACTIONS(1500), - [anon_sym_err_GT_GT] = ACTIONS(1510), - [anon_sym_out_GT_GT] = ACTIONS(1510), - [anon_sym_e_GT_GT] = ACTIONS(1510), - [anon_sym_o_GT_GT] = ACTIONS(1510), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1510), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1510), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1510), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1510), - [aux_sym_unquoted_token1] = ACTIONS(1500), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1510), + [aux_sym_ctrl_match_repeat1] = STATE(1231), + [anon_sym_LBRACK] = ACTIONS(3616), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym__] = ACTIONS(3624), + [anon_sym_DOT_DOT] = ACTIONS(3626), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3628), + [anon_sym_DOT_DOT_LT] = ACTIONS(3628), + [anon_sym_null] = ACTIONS(3630), + [anon_sym_true] = ACTIONS(3632), + [anon_sym_false] = ACTIONS(3632), + [aux_sym__val_number_decimal_token1] = ACTIONS(3634), + [aux_sym__val_number_decimal_token2] = ACTIONS(3636), + [aux_sym__val_number_decimal_token3] = ACTIONS(3638), + [aux_sym__val_number_decimal_token4] = ACTIONS(3640), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3642), + [aux_sym__val_number_token5] = ACTIONS(3642), + [aux_sym__val_number_token6] = ACTIONS(3642), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3644), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3538), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1237] = { - [sym_cell_path] = STATE(1399), - [sym_path] = STATE(1357), + [sym_expr_parenthesized] = STATE(6217), + [sym_val_range] = STATE(7562), + [sym__val_range] = STATE(7833), + [sym__value] = STATE(7562), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(7418), + [sym_val_variable] = STATE(6613), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(5595), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(3793), + [sym__str_double_quotes] = STATE(3793), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(7654), + [sym__unquoted_anonymous_prefix] = STATE(7649), [sym_comment] = STATE(1237), - [aux_sym_cell_path_repeat1] = STATE(1251), - [anon_sym_EQ] = ACTIONS(943), - [anon_sym_PLUS_EQ] = ACTIONS(945), - [anon_sym_DASH_EQ] = ACTIONS(945), - [anon_sym_STAR_EQ] = ACTIONS(945), - [anon_sym_SLASH_EQ] = ACTIONS(945), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(945), - [sym__newline] = ACTIONS(945), - [anon_sym_SEMI] = ACTIONS(945), - [anon_sym_PIPE] = ACTIONS(945), - [anon_sym_err_GT_PIPE] = ACTIONS(945), - [anon_sym_out_GT_PIPE] = ACTIONS(945), - [anon_sym_e_GT_PIPE] = ACTIONS(945), - [anon_sym_o_GT_PIPE] = ACTIONS(945), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(945), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(945), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(945), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(945), - [anon_sym_RPAREN] = ACTIONS(945), - [anon_sym_GT2] = ACTIONS(943), - [anon_sym_DASH2] = ACTIONS(943), - [anon_sym_in2] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(945), - [anon_sym_STAR2] = ACTIONS(943), - [anon_sym_and2] = ACTIONS(945), - [anon_sym_xor2] = ACTIONS(945), - [anon_sym_or2] = ACTIONS(945), - [anon_sym_not_DASHin2] = ACTIONS(945), - [anon_sym_starts_DASHwith2] = ACTIONS(945), - [anon_sym_ends_DASHwith2] = ACTIONS(945), - [anon_sym_EQ_EQ2] = ACTIONS(945), - [anon_sym_BANG_EQ2] = ACTIONS(945), - [anon_sym_LT2] = ACTIONS(943), - [anon_sym_LT_EQ2] = ACTIONS(945), - [anon_sym_GT_EQ2] = ACTIONS(945), - [anon_sym_EQ_TILDE2] = ACTIONS(945), - [anon_sym_BANG_TILDE2] = ACTIONS(945), - [anon_sym_STAR_STAR2] = ACTIONS(945), - [anon_sym_PLUS_PLUS2] = ACTIONS(943), - [anon_sym_SLASH2] = ACTIONS(943), - [anon_sym_mod2] = ACTIONS(945), - [anon_sym_SLASH_SLASH2] = ACTIONS(945), - [anon_sym_PLUS2] = ACTIONS(943), - [anon_sym_bit_DASHshl2] = ACTIONS(945), - [anon_sym_bit_DASHshr2] = ACTIONS(945), - [anon_sym_bit_DASHand2] = ACTIONS(945), - [anon_sym_bit_DASHxor2] = ACTIONS(945), - [anon_sym_bit_DASHor2] = ACTIONS(945), - [anon_sym_DOT_DOT2] = ACTIONS(943), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(945), - [anon_sym_DOT_DOT_LT2] = ACTIONS(945), - [anon_sym_COLON2] = ACTIONS(945), - [anon_sym_DOT2] = ACTIONS(4020), - [anon_sym_err_GT] = ACTIONS(943), - [anon_sym_out_GT] = ACTIONS(943), - [anon_sym_e_GT] = ACTIONS(943), - [anon_sym_o_GT] = ACTIONS(943), - [anon_sym_err_PLUSout_GT] = ACTIONS(943), - [anon_sym_out_PLUSerr_GT] = ACTIONS(943), - [anon_sym_o_PLUSe_GT] = ACTIONS(943), - [anon_sym_e_PLUSo_GT] = ACTIONS(943), - [anon_sym_err_GT_GT] = ACTIONS(945), - [anon_sym_out_GT_GT] = ACTIONS(945), - [anon_sym_e_GT_GT] = ACTIONS(945), - [anon_sym_o_GT_GT] = ACTIONS(945), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(945), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(945), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(945), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(945), - [anon_sym_POUND] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(3508), + [anon_sym_LPAREN] = ACTIONS(3510), + [anon_sym_DOLLAR] = ACTIONS(3512), + [anon_sym_LBRACE] = ACTIONS(3514), + [anon_sym_DOT_DOT] = ACTIONS(3822), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3824), + [anon_sym_DOT_DOT_LT] = ACTIONS(3824), + [anon_sym_null] = ACTIONS(3826), + [anon_sym_true] = ACTIONS(3828), + [anon_sym_false] = ACTIONS(3828), + [aux_sym__val_number_decimal_token1] = ACTIONS(3830), + [aux_sym__val_number_decimal_token2] = ACTIONS(3832), + [aux_sym__val_number_decimal_token3] = ACTIONS(3834), + [aux_sym__val_number_decimal_token4] = ACTIONS(3836), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3838), + [aux_sym__val_number_token5] = ACTIONS(3838), + [aux_sym__val_number_token6] = ACTIONS(3838), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3840), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym__str_single_quotes] = ACTIONS(1274), + [sym__str_back_ticks] = ACTIONS(1274), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3538), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1276), }, [1238] = { - [sym__expr_parenthesized_immediate] = STATE(1786), - [sym__immediate_decimal] = STATE(1555), - [sym_val_variable] = STATE(1786), + [sym__expr_parenthesized_immediate] = STATE(1546), + [sym__immediate_decimal] = STATE(1421), + [sym_val_variable] = STATE(1546), [sym_comment] = STATE(1238), - [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(1461), - [anon_sym_RPAREN] = ACTIONS(1475), - [anon_sym_DOLLAR] = ACTIONS(4022), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_DASH2] = ACTIONS(1461), - [anon_sym_LBRACE] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym_DOT_DOT] = ACTIONS(1461), - [anon_sym_LPAREN2] = ACTIONS(4024), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1475), - [anon_sym_DOT_DOT_LT] = ACTIONS(1475), - [aux_sym__immediate_decimal_token1] = ACTIONS(4026), - [aux_sym__immediate_decimal_token3] = ACTIONS(4028), - [aux_sym__immediate_decimal_token4] = ACTIONS(4030), - [aux_sym__immediate_decimal_token5] = ACTIONS(4032), - [anon_sym_null] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [aux_sym__val_number_decimal_token1] = ACTIONS(1461), - [aux_sym__val_number_decimal_token2] = ACTIONS(1461), - [aux_sym__val_number_decimal_token3] = ACTIONS(1461), - [aux_sym__val_number_decimal_token4] = ACTIONS(1461), - [aux_sym__val_number_token1] = ACTIONS(1475), - [aux_sym__val_number_token2] = ACTIONS(1475), - [aux_sym__val_number_token3] = ACTIONS(1475), - [aux_sym__val_number_token4] = ACTIONS(1475), - [aux_sym__val_number_token5] = ACTIONS(1475), - [aux_sym__val_number_token6] = ACTIONS(1475), - [anon_sym_0b] = ACTIONS(1461), - [anon_sym_0o] = ACTIONS(1461), - [anon_sym_0x] = ACTIONS(1461), - [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(1461), - [anon_sym_out_GT] = ACTIONS(1461), - [anon_sym_e_GT] = ACTIONS(1461), - [anon_sym_o_GT] = ACTIONS(1461), - [anon_sym_err_PLUSout_GT] = ACTIONS(1461), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1461), - [anon_sym_o_PLUSe_GT] = ACTIONS(1461), - [anon_sym_e_PLUSo_GT] = ACTIONS(1461), - [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(1461), - [aux_sym_unquoted_token2] = ACTIONS(1477), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1475), + [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(1441), + [anon_sym_RPAREN] = ACTIONS(1455), + [anon_sym_DOLLAR] = ACTIONS(2788), + [anon_sym_DASH_DASH] = ACTIONS(1455), + [anon_sym_DASH2] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1455), + [anon_sym_RBRACE] = ACTIONS(1455), + [anon_sym_DOT_DOT] = ACTIONS(1441), + [anon_sym_LPAREN2] = ACTIONS(3966), + [anon_sym_DOT] = ACTIONS(3968), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1455), + [anon_sym_DOT_DOT_LT] = ACTIONS(1455), + [aux_sym__immediate_decimal_token1] = ACTIONS(3970), + [aux_sym__immediate_decimal_token3] = ACTIONS(3972), + [aux_sym__immediate_decimal_token4] = ACTIONS(3974), + [aux_sym__immediate_decimal_token5] = ACTIONS(3976), + [anon_sym_null] = ACTIONS(1455), + [anon_sym_true] = ACTIONS(1455), + [anon_sym_false] = ACTIONS(1455), + [aux_sym__val_number_decimal_token1] = ACTIONS(1441), + [aux_sym__val_number_decimal_token2] = ACTIONS(1441), + [aux_sym__val_number_decimal_token3] = ACTIONS(1441), + [aux_sym__val_number_decimal_token4] = ACTIONS(1441), + [aux_sym__val_number_token1] = ACTIONS(1455), + [aux_sym__val_number_token2] = ACTIONS(1455), + [aux_sym__val_number_token3] = ACTIONS(1455), + [aux_sym__val_number_token4] = ACTIONS(1455), + [aux_sym__val_number_token5] = ACTIONS(1455), + [aux_sym__val_number_token6] = ACTIONS(1455), + [anon_sym_0b] = ACTIONS(1441), + [anon_sym_0o] = ACTIONS(1441), + [anon_sym_0x] = ACTIONS(1441), + [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(1441), + [anon_sym_out_GT] = ACTIONS(1441), + [anon_sym_e_GT] = ACTIONS(1441), + [anon_sym_o_GT] = ACTIONS(1441), + [anon_sym_err_PLUSout_GT] = ACTIONS(1441), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1441), + [anon_sym_o_PLUSe_GT] = ACTIONS(1441), + [anon_sym_e_PLUSo_GT] = ACTIONS(1441), + [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(1441), + [aux_sym_unquoted_token2] = ACTIONS(1457), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1455), }, [1239] = { - [sym__expr_parenthesized_immediate] = STATE(1792), - [sym__immediate_decimal] = STATE(1558), - [sym_val_variable] = STATE(1792), [sym_comment] = STATE(1239), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_LBRACK] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1536), - [anon_sym_RPAREN] = ACTIONS(1538), - [anon_sym_DOLLAR] = ACTIONS(4022), - [anon_sym_DASH_DASH] = ACTIONS(1538), - [anon_sym_DASH2] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1538), - [anon_sym_RBRACE] = ACTIONS(1538), - [anon_sym_DOT_DOT] = ACTIONS(1536), - [anon_sym_LPAREN2] = ACTIONS(4024), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT] = ACTIONS(1538), - [aux_sym__immediate_decimal_token1] = ACTIONS(4026), - [aux_sym__immediate_decimal_token3] = ACTIONS(4028), - [aux_sym__immediate_decimal_token4] = ACTIONS(4030), - [aux_sym__immediate_decimal_token5] = ACTIONS(4032), - [anon_sym_null] = ACTIONS(1538), - [anon_sym_true] = ACTIONS(1538), - [anon_sym_false] = ACTIONS(1538), - [aux_sym__val_number_decimal_token1] = ACTIONS(1536), - [aux_sym__val_number_decimal_token2] = ACTIONS(1536), - [aux_sym__val_number_decimal_token3] = ACTIONS(1536), - [aux_sym__val_number_decimal_token4] = ACTIONS(1536), - [aux_sym__val_number_token1] = ACTIONS(1538), - [aux_sym__val_number_token2] = ACTIONS(1538), - [aux_sym__val_number_token3] = ACTIONS(1538), - [aux_sym__val_number_token4] = ACTIONS(1538), - [aux_sym__val_number_token5] = ACTIONS(1538), - [aux_sym__val_number_token6] = ACTIONS(1538), - [anon_sym_0b] = ACTIONS(1536), - [anon_sym_0o] = ACTIONS(1536), - [anon_sym_0x] = ACTIONS(1536), - [sym_val_date] = ACTIONS(1538), - [anon_sym_DQUOTE] = ACTIONS(1538), - [sym__str_single_quotes] = ACTIONS(1538), - [sym__str_back_ticks] = ACTIONS(1538), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1538), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1538), - [anon_sym_err_GT] = ACTIONS(1536), - [anon_sym_out_GT] = ACTIONS(1536), - [anon_sym_e_GT] = ACTIONS(1536), - [anon_sym_o_GT] = ACTIONS(1536), - [anon_sym_err_PLUSout_GT] = ACTIONS(1536), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), - [anon_sym_o_PLUSe_GT] = ACTIONS(1536), - [anon_sym_e_PLUSo_GT] = ACTIONS(1536), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), - [aux_sym_unquoted_token1] = ACTIONS(1536), - [aux_sym_unquoted_token2] = ACTIONS(1540), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1538), + [anon_sym_STAR_STAR] = ACTIONS(3092), + [anon_sym_PLUS_PLUS] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3094), + [anon_sym_SLASH] = ACTIONS(3094), + [anon_sym_mod] = ACTIONS(3092), + [anon_sym_SLASH_SLASH] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(3094), + [anon_sym_DASH] = ACTIONS(3092), + [anon_sym_bit_DASHshl] = ACTIONS(3092), + [anon_sym_bit_DASHshr] = ACTIONS(3092), + [anon_sym_EQ_TILDE] = ACTIONS(3092), + [anon_sym_BANG_TILDE] = ACTIONS(3092), + [anon_sym_bit_DASHand] = ACTIONS(3092), + [anon_sym_bit_DASHxor] = ACTIONS(3092), + [anon_sym_bit_DASHor] = ACTIONS(3092), + [anon_sym_and] = ACTIONS(3092), + [anon_sym_xor] = ACTIONS(3092), + [anon_sym_or] = ACTIONS(3092), + [anon_sym_in] = ACTIONS(3092), + [anon_sym_not_DASHin] = ACTIONS(3092), + [anon_sym_has] = ACTIONS(3092), + [anon_sym_not_DASHhas] = ACTIONS(3092), + [anon_sym_starts_DASHwith] = ACTIONS(3092), + [anon_sym_ends_DASHwith] = ACTIONS(3092), + [anon_sym_EQ_EQ] = ACTIONS(3092), + [anon_sym_BANG_EQ] = ACTIONS(3092), + [anon_sym_LT] = ACTIONS(3094), + [anon_sym_LT_EQ] = ACTIONS(3092), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_GT_EQ] = ACTIONS(3092), + [aux_sym_cmd_identifier_token41] = ACTIONS(3096), + [sym__newline] = ACTIONS(2073), + [anon_sym_SEMI] = ACTIONS(2073), + [anon_sym_PIPE] = ACTIONS(2073), + [anon_sym_err_GT_PIPE] = ACTIONS(2073), + [anon_sym_out_GT_PIPE] = ACTIONS(2073), + [anon_sym_e_GT_PIPE] = ACTIONS(2073), + [anon_sym_o_GT_PIPE] = ACTIONS(2073), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2073), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2073), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2073), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2073), + [anon_sym_GT2] = ACTIONS(2073), + [anon_sym_DASH2] = ACTIONS(2073), + [anon_sym_in2] = ACTIONS(2073), + [anon_sym_STAR2] = ACTIONS(2073), + [anon_sym_and2] = ACTIONS(2073), + [anon_sym_xor2] = ACTIONS(2073), + [anon_sym_or2] = ACTIONS(2073), + [anon_sym_not_DASHin2] = ACTIONS(2073), + [anon_sym_has2] = ACTIONS(2073), + [anon_sym_not_DASHhas2] = ACTIONS(2073), + [anon_sym_starts_DASHwith2] = ACTIONS(2073), + [anon_sym_ends_DASHwith2] = ACTIONS(2073), + [anon_sym_EQ_EQ2] = ACTIONS(2073), + [anon_sym_BANG_EQ2] = ACTIONS(2073), + [anon_sym_LT2] = ACTIONS(2073), + [anon_sym_LT_EQ2] = ACTIONS(2073), + [anon_sym_GT_EQ2] = ACTIONS(2073), + [anon_sym_EQ_TILDE2] = ACTIONS(2073), + [anon_sym_BANG_TILDE2] = ACTIONS(2073), + [anon_sym_STAR_STAR2] = ACTIONS(2073), + [anon_sym_PLUS_PLUS2] = ACTIONS(2073), + [anon_sym_SLASH2] = ACTIONS(2073), + [anon_sym_mod2] = ACTIONS(2073), + [anon_sym_SLASH_SLASH2] = ACTIONS(2073), + [anon_sym_PLUS2] = ACTIONS(2073), + [anon_sym_bit_DASHshl2] = ACTIONS(2073), + [anon_sym_bit_DASHshr2] = ACTIONS(2073), + [anon_sym_bit_DASHand2] = ACTIONS(2073), + [anon_sym_bit_DASHxor2] = ACTIONS(2073), + [anon_sym_bit_DASHor2] = ACTIONS(2073), + [anon_sym_POUND] = ACTIONS(3), }, [1240] = { - [sym__val_range] = STATE(7632), - [sym__value] = STATE(1789), - [sym_val_nothing] = STATE(1798), - [sym_val_bool] = STATE(1649), - [sym_val_variable] = STATE(1798), - [sym_val_number] = STATE(1798), - [sym__val_number_decimal] = STATE(1365), - [sym__val_number] = STATE(1706), - [sym_val_duration] = STATE(1798), - [sym_val_filesize] = STATE(1798), - [sym_val_binary] = STATE(1798), - [sym_val_string] = STATE(1798), - [sym__raw_str] = STATE(1731), - [sym__str_double_quotes] = STATE(1731), - [sym_val_interpolated] = STATE(1798), - [sym__inter_single_quotes] = STATE(1778), - [sym__inter_double_quotes] = STATE(1780), - [sym_val_list] = STATE(1798), - [sym_val_record] = STATE(1798), - [sym_val_table] = STATE(1798), - [sym_val_closure] = STATE(1798), - [sym_unquoted] = STATE(1790), - [sym__unquoted_anonymous_prefix] = STATE(7838), + [sym_path] = STATE(1282), [sym_comment] = STATE(1240), - [anon_sym_LBRACK] = ACTIONS(2618), - [anon_sym_LPAREN] = ACTIONS(4034), - [anon_sym_DOLLAR] = ACTIONS(4022), - [anon_sym_LBRACE] = ACTIONS(2628), - [anon_sym_DOT_DOT] = ACTIONS(4036), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4038), - [anon_sym_DOT_DOT_LT] = ACTIONS(4038), - [anon_sym_null] = ACTIONS(4040), - [anon_sym_true] = ACTIONS(4042), - [anon_sym_false] = ACTIONS(4042), - [aux_sym__val_number_decimal_token1] = ACTIONS(4044), - [aux_sym__val_number_decimal_token2] = ACTIONS(4046), - [aux_sym__val_number_decimal_token3] = ACTIONS(4048), - [aux_sym__val_number_decimal_token4] = ACTIONS(4050), - [aux_sym__val_number_token1] = ACTIONS(2646), - [aux_sym__val_number_token2] = ACTIONS(2646), - [aux_sym__val_number_token3] = ACTIONS(2646), - [aux_sym__val_number_token4] = ACTIONS(4052), - [aux_sym__val_number_token5] = ACTIONS(4052), - [aux_sym__val_number_token6] = ACTIONS(4052), - [anon_sym_0b] = ACTIONS(2650), - [anon_sym_0o] = ACTIONS(2652), - [anon_sym_0x] = ACTIONS(2652), - [sym_val_date] = ACTIONS(4054), - [anon_sym_DQUOTE] = ACTIONS(2656), - [sym__str_single_quotes] = ACTIONS(2658), - [sym__str_back_ticks] = ACTIONS(2658), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2660), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2662), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(4056), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2670), + [aux_sym_cell_path_repeat1] = STATE(1243), + [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(944), + [anon_sym_SEMI] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(944), + [anon_sym_err_GT_PIPE] = ACTIONS(944), + [anon_sym_out_GT_PIPE] = ACTIONS(944), + [anon_sym_e_GT_PIPE] = ACTIONS(944), + [anon_sym_o_GT_PIPE] = ACTIONS(944), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(944), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(944), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(944), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(944), + [anon_sym_RPAREN] = ACTIONS(944), + [anon_sym_GT2] = ACTIONS(942), + [anon_sym_DASH2] = ACTIONS(942), + [anon_sym_in2] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(944), + [anon_sym_STAR2] = ACTIONS(942), + [anon_sym_and2] = ACTIONS(944), + [anon_sym_xor2] = ACTIONS(944), + [anon_sym_or2] = ACTIONS(944), + [anon_sym_not_DASHin2] = ACTIONS(944), + [anon_sym_has2] = ACTIONS(944), + [anon_sym_not_DASHhas2] = ACTIONS(944), + [anon_sym_starts_DASHwith2] = ACTIONS(944), + [anon_sym_ends_DASHwith2] = ACTIONS(944), + [anon_sym_EQ_EQ2] = ACTIONS(944), + [anon_sym_BANG_EQ2] = ACTIONS(944), + [anon_sym_LT2] = ACTIONS(942), + [anon_sym_LT_EQ2] = ACTIONS(944), + [anon_sym_GT_EQ2] = ACTIONS(944), + [anon_sym_EQ_TILDE2] = ACTIONS(944), + [anon_sym_BANG_TILDE2] = ACTIONS(944), + [anon_sym_STAR_STAR2] = ACTIONS(944), + [anon_sym_PLUS_PLUS2] = ACTIONS(942), + [anon_sym_SLASH2] = ACTIONS(942), + [anon_sym_mod2] = ACTIONS(944), + [anon_sym_SLASH_SLASH2] = ACTIONS(944), + [anon_sym_PLUS2] = ACTIONS(942), + [anon_sym_bit_DASHshl2] = ACTIONS(944), + [anon_sym_bit_DASHshr2] = ACTIONS(944), + [anon_sym_bit_DASHand2] = ACTIONS(944), + [anon_sym_bit_DASHxor2] = ACTIONS(944), + [anon_sym_bit_DASHor2] = ACTIONS(944), + [anon_sym_DOT_DOT2] = ACTIONS(942), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(944), + [anon_sym_DOT_DOT_LT2] = ACTIONS(944), + [anon_sym_COLON2] = ACTIONS(944), + [anon_sym_DOT2] = ACTIONS(3888), + [anon_sym_err_GT] = ACTIONS(942), + [anon_sym_out_GT] = ACTIONS(942), + [anon_sym_e_GT] = ACTIONS(942), + [anon_sym_o_GT] = ACTIONS(942), + [anon_sym_err_PLUSout_GT] = ACTIONS(942), + [anon_sym_out_PLUSerr_GT] = ACTIONS(942), + [anon_sym_o_PLUSe_GT] = ACTIONS(942), + [anon_sym_e_PLUSo_GT] = ACTIONS(942), + [anon_sym_err_GT_GT] = ACTIONS(944), + [anon_sym_out_GT_GT] = ACTIONS(944), + [anon_sym_e_GT_GT] = ACTIONS(944), + [anon_sym_o_GT_GT] = ACTIONS(944), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(944), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(944), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(944), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(944), + [anon_sym_POUND] = ACTIONS(247), }, [1241] = { [sym_comment] = STATE(1241), - [sym__newline] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1552), - [anon_sym_PIPE] = ACTIONS(1552), - [anon_sym_err_GT_PIPE] = ACTIONS(1552), - [anon_sym_out_GT_PIPE] = ACTIONS(1552), - [anon_sym_e_GT_PIPE] = ACTIONS(1552), - [anon_sym_o_GT_PIPE] = ACTIONS(1552), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1552), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1552), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1552), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1552), - [anon_sym_LBRACK] = ACTIONS(1552), - [anon_sym_LPAREN] = ACTIONS(1550), - [anon_sym_RPAREN] = ACTIONS(1552), - [anon_sym_DOLLAR] = ACTIONS(1550), - [anon_sym_DASH_DASH] = ACTIONS(1552), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_LBRACE] = ACTIONS(1552), - [anon_sym_RBRACE] = ACTIONS(1552), - [anon_sym_DOT_DOT] = ACTIONS(1550), - [anon_sym_LPAREN2] = ACTIONS(1552), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1550), - [anon_sym_DOT_DOT_LT] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [aux_sym__immediate_decimal_token2] = ACTIONS(3992), - [anon_sym_null] = ACTIONS(1552), - [anon_sym_true] = ACTIONS(1552), - [anon_sym_false] = ACTIONS(1552), - [aux_sym__val_number_decimal_token1] = ACTIONS(1550), - [aux_sym__val_number_decimal_token2] = ACTIONS(1552), - [aux_sym__val_number_decimal_token3] = ACTIONS(1552), - [aux_sym__val_number_decimal_token4] = ACTIONS(1552), - [aux_sym__val_number_token1] = ACTIONS(1552), - [aux_sym__val_number_token2] = ACTIONS(1552), - [aux_sym__val_number_token3] = ACTIONS(1552), - [aux_sym__val_number_token4] = ACTIONS(1552), - [aux_sym__val_number_token5] = ACTIONS(1552), - [aux_sym__val_number_token6] = ACTIONS(1552), - [anon_sym_0b] = ACTIONS(1550), - [sym_filesize_unit] = ACTIONS(1552), - [sym_duration_unit] = ACTIONS(1552), - [anon_sym_0o] = ACTIONS(1550), - [anon_sym_0x] = ACTIONS(1550), - [sym_val_date] = ACTIONS(1552), - [anon_sym_DQUOTE] = ACTIONS(1552), - [sym__str_single_quotes] = ACTIONS(1552), - [sym__str_back_ticks] = ACTIONS(1552), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1552), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1552), - [anon_sym_err_GT] = ACTIONS(1550), - [anon_sym_out_GT] = ACTIONS(1550), - [anon_sym_e_GT] = ACTIONS(1550), - [anon_sym_o_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT] = ACTIONS(1550), - [anon_sym_err_GT_GT] = ACTIONS(1552), - [anon_sym_out_GT_GT] = ACTIONS(1552), - [anon_sym_e_GT_GT] = ACTIONS(1552), - [anon_sym_o_GT_GT] = ACTIONS(1552), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1552), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1552), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1552), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1552), - [aux_sym_unquoted_token1] = ACTIONS(1550), - [aux_sym_unquoted_token2] = ACTIONS(1550), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1552), + [anon_sym_STAR_STAR] = ACTIONS(3092), + [anon_sym_PLUS_PLUS] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3094), + [anon_sym_SLASH] = ACTIONS(3094), + [anon_sym_mod] = ACTIONS(3092), + [anon_sym_SLASH_SLASH] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(3094), + [anon_sym_DASH] = ACTIONS(3092), + [anon_sym_bit_DASHshl] = ACTIONS(3092), + [anon_sym_bit_DASHshr] = ACTIONS(3092), + [anon_sym_EQ_TILDE] = ACTIONS(3092), + [anon_sym_BANG_TILDE] = ACTIONS(3092), + [anon_sym_bit_DASHand] = ACTIONS(3092), + [anon_sym_bit_DASHxor] = ACTIONS(3092), + [anon_sym_bit_DASHor] = ACTIONS(3092), + [anon_sym_and] = ACTIONS(3092), + [anon_sym_xor] = ACTIONS(3092), + [anon_sym_or] = ACTIONS(3092), + [anon_sym_in] = ACTIONS(3092), + [anon_sym_not_DASHin] = ACTIONS(3092), + [anon_sym_has] = ACTIONS(3092), + [anon_sym_not_DASHhas] = ACTIONS(3092), + [anon_sym_starts_DASHwith] = ACTIONS(3092), + [anon_sym_ends_DASHwith] = ACTIONS(3092), + [anon_sym_EQ_EQ] = ACTIONS(3092), + [anon_sym_BANG_EQ] = ACTIONS(3092), + [anon_sym_LT] = ACTIONS(3094), + [anon_sym_LT_EQ] = ACTIONS(3092), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_GT_EQ] = ACTIONS(3092), + [aux_sym_cmd_identifier_token41] = ACTIONS(3096), + [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_GT2] = ACTIONS(2081), + [anon_sym_DASH2] = ACTIONS(2081), + [anon_sym_in2] = ACTIONS(2081), + [anon_sym_STAR2] = ACTIONS(2081), + [anon_sym_and2] = ACTIONS(2081), + [anon_sym_xor2] = ACTIONS(2081), + [anon_sym_or2] = ACTIONS(2081), + [anon_sym_not_DASHin2] = ACTIONS(2081), + [anon_sym_has2] = ACTIONS(2081), + [anon_sym_not_DASHhas2] = ACTIONS(2081), + [anon_sym_starts_DASHwith2] = ACTIONS(2081), + [anon_sym_ends_DASHwith2] = ACTIONS(2081), + [anon_sym_EQ_EQ2] = ACTIONS(2081), + [anon_sym_BANG_EQ2] = ACTIONS(2081), + [anon_sym_LT2] = ACTIONS(2081), + [anon_sym_LT_EQ2] = ACTIONS(2081), + [anon_sym_GT_EQ2] = ACTIONS(2081), + [anon_sym_EQ_TILDE2] = ACTIONS(2081), + [anon_sym_BANG_TILDE2] = ACTIONS(2081), + [anon_sym_STAR_STAR2] = ACTIONS(2081), + [anon_sym_PLUS_PLUS2] = ACTIONS(2081), + [anon_sym_SLASH2] = ACTIONS(2081), + [anon_sym_mod2] = ACTIONS(2081), + [anon_sym_SLASH_SLASH2] = ACTIONS(2081), + [anon_sym_PLUS2] = ACTIONS(2081), + [anon_sym_bit_DASHshl2] = ACTIONS(2081), + [anon_sym_bit_DASHshr2] = ACTIONS(2081), + [anon_sym_bit_DASHand2] = ACTIONS(2081), + [anon_sym_bit_DASHxor2] = ACTIONS(2081), + [anon_sym_bit_DASHor2] = ACTIONS(2081), + [anon_sym_POUND] = ACTIONS(3), }, [1242] = { + [sym_expr_parenthesized] = STATE(6558), + [sym_val_range] = STATE(7555), + [sym__val_range] = STATE(7833), + [sym__value] = STATE(7555), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(7418), + [sym_val_variable] = STATE(6613), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(5595), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(3793), + [sym__str_double_quotes] = STATE(3793), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(7559), + [sym__unquoted_anonymous_prefix] = STATE(7649), [sym_comment] = STATE(1242), - [sym__newline] = ACTIONS(1682), - [anon_sym_SEMI] = ACTIONS(1682), - [anon_sym_PIPE] = ACTIONS(1682), - [anon_sym_err_GT_PIPE] = ACTIONS(1682), - [anon_sym_out_GT_PIPE] = ACTIONS(1682), - [anon_sym_e_GT_PIPE] = ACTIONS(1682), - [anon_sym_o_GT_PIPE] = ACTIONS(1682), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1682), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1682), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1682), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1682), - [anon_sym_LBRACK] = ACTIONS(1682), - [anon_sym_LPAREN] = ACTIONS(1680), - [anon_sym_RPAREN] = ACTIONS(1682), - [anon_sym_DOLLAR] = ACTIONS(1680), - [anon_sym_DASH_DASH] = ACTIONS(1682), - [anon_sym_DASH2] = ACTIONS(1680), - [anon_sym_LBRACE] = ACTIONS(1682), - [anon_sym_RBRACE] = ACTIONS(1682), - [anon_sym_DOT_DOT] = ACTIONS(1680), - [anon_sym_LPAREN2] = ACTIONS(1682), - [anon_sym_DOT_DOT2] = ACTIONS(1680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1680), - [anon_sym_DOT_DOT_LT] = ACTIONS(1680), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1682), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1682), - [aux_sym__immediate_decimal_token2] = ACTIONS(4058), - [anon_sym_null] = ACTIONS(1682), - [anon_sym_true] = ACTIONS(1682), - [anon_sym_false] = ACTIONS(1682), - [aux_sym__val_number_decimal_token1] = ACTIONS(1680), - [aux_sym__val_number_decimal_token2] = ACTIONS(1682), - [aux_sym__val_number_decimal_token3] = ACTIONS(1682), - [aux_sym__val_number_decimal_token4] = ACTIONS(1682), - [aux_sym__val_number_token1] = ACTIONS(1682), - [aux_sym__val_number_token2] = ACTIONS(1682), - [aux_sym__val_number_token3] = ACTIONS(1682), - [aux_sym__val_number_token4] = ACTIONS(1682), - [aux_sym__val_number_token5] = ACTIONS(1682), - [aux_sym__val_number_token6] = ACTIONS(1682), - [anon_sym_0b] = ACTIONS(1680), - [sym_filesize_unit] = ACTIONS(1682), - [sym_duration_unit] = ACTIONS(1682), - [anon_sym_0o] = ACTIONS(1680), - [anon_sym_0x] = ACTIONS(1680), - [sym_val_date] = ACTIONS(1682), - [anon_sym_DQUOTE] = ACTIONS(1682), - [sym__str_single_quotes] = ACTIONS(1682), - [sym__str_back_ticks] = ACTIONS(1682), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1682), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1682), - [anon_sym_err_GT] = ACTIONS(1680), - [anon_sym_out_GT] = ACTIONS(1680), - [anon_sym_e_GT] = ACTIONS(1680), - [anon_sym_o_GT] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT] = ACTIONS(1680), - [anon_sym_err_GT_GT] = ACTIONS(1682), - [anon_sym_out_GT_GT] = ACTIONS(1682), - [anon_sym_e_GT_GT] = ACTIONS(1682), - [anon_sym_o_GT_GT] = ACTIONS(1682), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1682), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1682), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1682), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1682), - [aux_sym_unquoted_token1] = ACTIONS(1680), - [aux_sym_unquoted_token2] = ACTIONS(1680), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1682), + [anon_sym_LBRACK] = ACTIONS(3508), + [anon_sym_LPAREN] = ACTIONS(3510), + [anon_sym_DOLLAR] = ACTIONS(3512), + [anon_sym_LBRACE] = ACTIONS(3514), + [anon_sym_DOT_DOT] = ACTIONS(3822), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3824), + [anon_sym_DOT_DOT_LT] = ACTIONS(3824), + [anon_sym_null] = ACTIONS(3826), + [anon_sym_true] = ACTIONS(3828), + [anon_sym_false] = ACTIONS(3828), + [aux_sym__val_number_decimal_token1] = ACTIONS(3830), + [aux_sym__val_number_decimal_token2] = ACTIONS(3832), + [aux_sym__val_number_decimal_token3] = ACTIONS(3834), + [aux_sym__val_number_decimal_token4] = ACTIONS(3836), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3838), + [aux_sym__val_number_token5] = ACTIONS(3838), + [aux_sym__val_number_token6] = ACTIONS(3838), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3840), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym__str_single_quotes] = ACTIONS(1274), + [sym__str_back_ticks] = ACTIONS(1274), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3538), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1276), }, [1243] = { - [sym__val_range] = STATE(7612), - [sym__value] = STATE(5239), - [sym_val_nothing] = STATE(4353), - [sym_val_bool] = STATE(5750), - [sym_val_variable] = STATE(4353), - [sym_val_number] = STATE(4353), - [sym__val_number_decimal] = STATE(5316), - [sym__val_number] = STATE(4251), - [sym_val_duration] = STATE(4353), - [sym_val_filesize] = STATE(4353), - [sym_val_binary] = STATE(4353), - [sym_val_string] = STATE(4353), - [sym__raw_str] = STATE(5611), - [sym__str_double_quotes] = STATE(5611), - [sym_val_interpolated] = STATE(4353), - [sym__inter_single_quotes] = STATE(5076), - [sym__inter_double_quotes] = STATE(5077), - [sym_val_list] = STATE(4353), - [sym_val_record] = STATE(4353), - [sym_val_table] = STATE(4353), - [sym_val_closure] = STATE(4353), - [sym_unquoted] = STATE(5241), - [sym__unquoted_anonymous_prefix] = STATE(7833), + [sym_path] = STATE(1282), [sym_comment] = STATE(1243), - [anon_sym_LBRACK] = ACTIONS(4060), - [anon_sym_LPAREN] = ACTIONS(4062), - [anon_sym_DOLLAR] = ACTIONS(4064), - [anon_sym_LBRACE] = ACTIONS(4066), - [anon_sym_DOT_DOT] = ACTIONS(4068), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4070), - [anon_sym_DOT_DOT_LT] = ACTIONS(4070), - [anon_sym_null] = ACTIONS(4072), - [anon_sym_true] = ACTIONS(4074), - [anon_sym_false] = ACTIONS(4074), - [aux_sym__val_number_decimal_token1] = ACTIONS(4076), - [aux_sym__val_number_decimal_token2] = ACTIONS(4078), - [aux_sym__val_number_decimal_token3] = ACTIONS(4080), - [aux_sym__val_number_decimal_token4] = ACTIONS(4082), - [aux_sym__val_number_token1] = ACTIONS(3600), - [aux_sym__val_number_token2] = ACTIONS(3600), - [aux_sym__val_number_token3] = ACTIONS(3600), - [aux_sym__val_number_token4] = ACTIONS(4084), - [aux_sym__val_number_token5] = ACTIONS(4084), - [aux_sym__val_number_token6] = ACTIONS(4084), - [anon_sym_0b] = ACTIONS(3604), - [anon_sym_0o] = ACTIONS(3606), - [anon_sym_0x] = ACTIONS(3606), - [sym_val_date] = ACTIONS(4086), - [anon_sym_DQUOTE] = ACTIONS(4088), - [sym__str_single_quotes] = ACTIONS(4090), - [sym__str_back_ticks] = ACTIONS(4090), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3614), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3616), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(4092), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4094), + [aux_sym_cell_path_repeat1] = STATE(1243), + [anon_sym_EQ] = ACTIONS(935), + [anon_sym_PLUS_EQ] = ACTIONS(937), + [anon_sym_DASH_EQ] = ACTIONS(937), + [anon_sym_STAR_EQ] = ACTIONS(937), + [anon_sym_SLASH_EQ] = ACTIONS(937), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(937), + [sym__newline] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(937), + [anon_sym_err_GT_PIPE] = ACTIONS(937), + [anon_sym_out_GT_PIPE] = ACTIONS(937), + [anon_sym_e_GT_PIPE] = ACTIONS(937), + [anon_sym_o_GT_PIPE] = ACTIONS(937), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(937), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(937), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(937), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(937), + [anon_sym_RPAREN] = ACTIONS(937), + [anon_sym_GT2] = ACTIONS(935), + [anon_sym_DASH2] = ACTIONS(935), + [anon_sym_in2] = ACTIONS(937), + [anon_sym_RBRACE] = ACTIONS(937), + [anon_sym_STAR2] = ACTIONS(935), + [anon_sym_and2] = ACTIONS(937), + [anon_sym_xor2] = ACTIONS(937), + [anon_sym_or2] = ACTIONS(937), + [anon_sym_not_DASHin2] = ACTIONS(937), + [anon_sym_has2] = ACTIONS(937), + [anon_sym_not_DASHhas2] = ACTIONS(937), + [anon_sym_starts_DASHwith2] = ACTIONS(937), + [anon_sym_ends_DASHwith2] = ACTIONS(937), + [anon_sym_EQ_EQ2] = ACTIONS(937), + [anon_sym_BANG_EQ2] = ACTIONS(937), + [anon_sym_LT2] = ACTIONS(935), + [anon_sym_LT_EQ2] = ACTIONS(937), + [anon_sym_GT_EQ2] = ACTIONS(937), + [anon_sym_EQ_TILDE2] = ACTIONS(937), + [anon_sym_BANG_TILDE2] = ACTIONS(937), + [anon_sym_STAR_STAR2] = ACTIONS(937), + [anon_sym_PLUS_PLUS2] = ACTIONS(935), + [anon_sym_SLASH2] = ACTIONS(935), + [anon_sym_mod2] = ACTIONS(937), + [anon_sym_SLASH_SLASH2] = ACTIONS(937), + [anon_sym_PLUS2] = ACTIONS(935), + [anon_sym_bit_DASHshl2] = ACTIONS(937), + [anon_sym_bit_DASHshr2] = ACTIONS(937), + [anon_sym_bit_DASHand2] = ACTIONS(937), + [anon_sym_bit_DASHxor2] = ACTIONS(937), + [anon_sym_bit_DASHor2] = ACTIONS(937), + [anon_sym_DOT_DOT2] = ACTIONS(935), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(937), + [anon_sym_DOT_DOT_LT2] = ACTIONS(937), + [anon_sym_COLON2] = ACTIONS(937), + [anon_sym_DOT2] = ACTIONS(3978), + [anon_sym_err_GT] = ACTIONS(935), + [anon_sym_out_GT] = ACTIONS(935), + [anon_sym_e_GT] = ACTIONS(935), + [anon_sym_o_GT] = ACTIONS(935), + [anon_sym_err_PLUSout_GT] = ACTIONS(935), + [anon_sym_out_PLUSerr_GT] = ACTIONS(935), + [anon_sym_o_PLUSe_GT] = ACTIONS(935), + [anon_sym_e_PLUSo_GT] = ACTIONS(935), + [anon_sym_err_GT_GT] = ACTIONS(937), + [anon_sym_out_GT_GT] = ACTIONS(937), + [anon_sym_e_GT_GT] = ACTIONS(937), + [anon_sym_o_GT_GT] = ACTIONS(937), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(937), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(937), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(937), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(937), + [anon_sym_POUND] = ACTIONS(247), }, [1244] = { - [sym__val_range] = STATE(7519), - [sym__value] = STATE(5270), - [sym_val_nothing] = STATE(4353), - [sym_val_bool] = STATE(5750), - [sym_val_variable] = STATE(4353), - [sym_val_number] = STATE(4353), - [sym__val_number_decimal] = STATE(5237), - [sym__val_number] = STATE(4251), - [sym_val_duration] = STATE(4353), - [sym_val_filesize] = STATE(4353), - [sym_val_binary] = STATE(4353), - [sym_val_string] = STATE(4353), - [sym__raw_str] = STATE(3668), - [sym__str_double_quotes] = STATE(3668), - [sym_val_interpolated] = STATE(4353), - [sym__inter_single_quotes] = STATE(5264), - [sym__inter_double_quotes] = STATE(5265), - [sym_val_list] = STATE(4353), - [sym_val_record] = STATE(4353), - [sym_val_table] = STATE(4353), - [sym_val_closure] = STATE(4353), - [sym_unquoted] = STATE(5271), - [sym__unquoted_anonymous_prefix] = STATE(7789), [sym_comment] = STATE(1244), - [anon_sym_LBRACK] = ACTIONS(4096), - [anon_sym_LPAREN] = ACTIONS(4062), - [anon_sym_DOLLAR] = ACTIONS(4098), - [anon_sym_LBRACE] = ACTIONS(4100), - [anon_sym_DOT_DOT] = ACTIONS(4102), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4104), - [anon_sym_DOT_DOT_LT] = ACTIONS(4104), - [anon_sym_null] = ACTIONS(4072), - [anon_sym_true] = ACTIONS(4074), - [anon_sym_false] = ACTIONS(4074), - [aux_sym__val_number_decimal_token1] = ACTIONS(4106), - [aux_sym__val_number_decimal_token2] = ACTIONS(4108), - [aux_sym__val_number_decimal_token3] = ACTIONS(4110), - [aux_sym__val_number_decimal_token4] = ACTIONS(4112), - [aux_sym__val_number_token1] = ACTIONS(3600), - [aux_sym__val_number_token2] = ACTIONS(3600), - [aux_sym__val_number_token3] = ACTIONS(3600), - [aux_sym__val_number_token4] = ACTIONS(4114), - [aux_sym__val_number_token5] = ACTIONS(4114), - [aux_sym__val_number_token6] = ACTIONS(4114), - [anon_sym_0b] = ACTIONS(3604), - [anon_sym_0o] = ACTIONS(3606), - [anon_sym_0x] = ACTIONS(3606), - [sym_val_date] = ACTIONS(4086), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym__str_single_quotes] = ACTIONS(1288), - [sym__str_back_ticks] = ACTIONS(1288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4116), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4118), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3490), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1290), + [anon_sym_EQ] = ACTIONS(964), + [anon_sym_PLUS_EQ] = ACTIONS(966), + [anon_sym_DASH_EQ] = ACTIONS(966), + [anon_sym_STAR_EQ] = ACTIONS(966), + [anon_sym_SLASH_EQ] = ACTIONS(966), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(966), + [sym__newline] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_PIPE] = ACTIONS(966), + [anon_sym_err_GT_PIPE] = ACTIONS(966), + [anon_sym_out_GT_PIPE] = ACTIONS(966), + [anon_sym_e_GT_PIPE] = ACTIONS(966), + [anon_sym_o_GT_PIPE] = ACTIONS(966), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(966), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(966), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(966), + [anon_sym_RPAREN] = ACTIONS(966), + [anon_sym_GT2] = ACTIONS(964), + [anon_sym_DASH2] = ACTIONS(964), + [anon_sym_in2] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_STAR2] = ACTIONS(964), + [anon_sym_QMARK2] = ACTIONS(966), + [anon_sym_and2] = ACTIONS(966), + [anon_sym_xor2] = ACTIONS(966), + [anon_sym_or2] = ACTIONS(966), + [anon_sym_not_DASHin2] = ACTIONS(966), + [anon_sym_has2] = ACTIONS(966), + [anon_sym_not_DASHhas2] = ACTIONS(966), + [anon_sym_starts_DASHwith2] = ACTIONS(966), + [anon_sym_ends_DASHwith2] = ACTIONS(966), + [anon_sym_EQ_EQ2] = ACTIONS(966), + [anon_sym_BANG_EQ2] = ACTIONS(966), + [anon_sym_LT2] = ACTIONS(964), + [anon_sym_LT_EQ2] = ACTIONS(966), + [anon_sym_GT_EQ2] = ACTIONS(966), + [anon_sym_EQ_TILDE2] = ACTIONS(966), + [anon_sym_BANG_TILDE2] = ACTIONS(966), + [anon_sym_STAR_STAR2] = ACTIONS(966), + [anon_sym_PLUS_PLUS2] = ACTIONS(964), + [anon_sym_SLASH2] = ACTIONS(964), + [anon_sym_mod2] = ACTIONS(966), + [anon_sym_SLASH_SLASH2] = ACTIONS(966), + [anon_sym_PLUS2] = ACTIONS(964), + [anon_sym_bit_DASHshl2] = ACTIONS(966), + [anon_sym_bit_DASHshr2] = ACTIONS(966), + [anon_sym_bit_DASHand2] = ACTIONS(966), + [anon_sym_bit_DASHxor2] = ACTIONS(966), + [anon_sym_bit_DASHor2] = ACTIONS(966), + [anon_sym_DOT_DOT2] = ACTIONS(964), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(966), + [anon_sym_DOT_DOT_LT2] = ACTIONS(966), + [anon_sym_COLON2] = ACTIONS(966), + [anon_sym_DOT2] = ACTIONS(964), + [anon_sym_err_GT] = ACTIONS(964), + [anon_sym_out_GT] = ACTIONS(964), + [anon_sym_e_GT] = ACTIONS(964), + [anon_sym_o_GT] = ACTIONS(964), + [anon_sym_err_PLUSout_GT] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT] = ACTIONS(964), + [anon_sym_o_PLUSe_GT] = ACTIONS(964), + [anon_sym_e_PLUSo_GT] = ACTIONS(964), + [anon_sym_err_GT_GT] = ACTIONS(966), + [anon_sym_out_GT_GT] = ACTIONS(966), + [anon_sym_e_GT_GT] = ACTIONS(966), + [anon_sym_o_GT_GT] = ACTIONS(966), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(966), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(966), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(966), + [anon_sym_POUND] = ACTIONS(247), }, [1245] = { - [sym__val_range] = STATE(7612), - [sym__value] = STATE(5242), - [sym_val_nothing] = STATE(4353), - [sym_val_bool] = STATE(5750), - [sym_val_variable] = STATE(4353), - [sym_val_number] = STATE(4353), - [sym__val_number_decimal] = STATE(5316), - [sym__val_number] = STATE(4251), - [sym_val_duration] = STATE(4353), - [sym_val_filesize] = STATE(4353), - [sym_val_binary] = STATE(4353), - [sym_val_string] = STATE(4353), - [sym__raw_str] = STATE(5611), - [sym__str_double_quotes] = STATE(5611), - [sym_val_interpolated] = STATE(4353), - [sym__inter_single_quotes] = STATE(5076), - [sym__inter_double_quotes] = STATE(5077), - [sym_val_list] = STATE(4353), - [sym_val_record] = STATE(4353), - [sym_val_table] = STATE(4353), - [sym_val_closure] = STATE(4353), - [sym_unquoted] = STATE(5243), - [sym__unquoted_anonymous_prefix] = STATE(7833), [sym_comment] = STATE(1245), - [anon_sym_LBRACK] = ACTIONS(4060), - [anon_sym_LPAREN] = ACTIONS(4062), - [anon_sym_DOLLAR] = ACTIONS(4064), - [anon_sym_LBRACE] = ACTIONS(4066), - [anon_sym_DOT_DOT] = ACTIONS(4068), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4070), - [anon_sym_DOT_DOT_LT] = ACTIONS(4070), - [anon_sym_null] = ACTIONS(4072), - [anon_sym_true] = ACTIONS(4074), - [anon_sym_false] = ACTIONS(4074), - [aux_sym__val_number_decimal_token1] = ACTIONS(4076), - [aux_sym__val_number_decimal_token2] = ACTIONS(4078), - [aux_sym__val_number_decimal_token3] = ACTIONS(4080), - [aux_sym__val_number_decimal_token4] = ACTIONS(4082), - [aux_sym__val_number_token1] = ACTIONS(3600), - [aux_sym__val_number_token2] = ACTIONS(3600), - [aux_sym__val_number_token3] = ACTIONS(3600), - [aux_sym__val_number_token4] = ACTIONS(4084), - [aux_sym__val_number_token5] = ACTIONS(4084), - [aux_sym__val_number_token6] = ACTIONS(4084), - [anon_sym_0b] = ACTIONS(3604), - [anon_sym_0o] = ACTIONS(3606), - [anon_sym_0x] = ACTIONS(3606), - [sym_val_date] = ACTIONS(4086), - [anon_sym_DQUOTE] = ACTIONS(4088), - [sym__str_single_quotes] = ACTIONS(4090), - [sym__str_back_ticks] = ACTIONS(4090), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3614), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3616), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(4092), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4094), + [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_DASH2] = ACTIONS(1504), + [anon_sym_LBRACE] = 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_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__immediate_decimal_token1] = ACTIONS(3981), + [aux_sym__immediate_decimal_token2] = ACTIONS(3983), + [anon_sym_null] = ACTIONS(1506), + [anon_sym_true] = ACTIONS(1506), + [anon_sym_false] = ACTIONS(1506), + [aux_sym__val_number_decimal_token1] = ACTIONS(1504), + [aux_sym__val_number_decimal_token2] = ACTIONS(1506), + [aux_sym__val_number_decimal_token3] = ACTIONS(1506), + [aux_sym__val_number_decimal_token4] = ACTIONS(1506), + [aux_sym__val_number_token1] = ACTIONS(1506), + [aux_sym__val_number_token2] = ACTIONS(1506), + [aux_sym__val_number_token3] = ACTIONS(1506), + [aux_sym__val_number_token4] = ACTIONS(1506), + [aux_sym__val_number_token5] = ACTIONS(1506), + [aux_sym__val_number_token6] = 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_token2] = ACTIONS(1504), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1506), }, [1246] = { - [sym__expr_parenthesized_immediate] = STATE(1941), - [sym__immediate_decimal] = STATE(1665), - [sym_val_variable] = STATE(1941), [sym_comment] = STATE(1246), - [ts_builtin_sym_end] = ACTIONS(1538), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_LBRACK] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1536), - [anon_sym_DOLLAR] = ACTIONS(4120), - [anon_sym_DASH_DASH] = ACTIONS(1538), - [anon_sym_DASH2] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1538), - [anon_sym_DOT_DOT] = ACTIONS(1536), - [anon_sym_LPAREN2] = ACTIONS(4122), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT] = ACTIONS(1538), - [aux_sym__immediate_decimal_token1] = ACTIONS(4124), - [aux_sym__immediate_decimal_token3] = ACTIONS(4126), - [aux_sym__immediate_decimal_token4] = ACTIONS(4128), - [aux_sym__immediate_decimal_token5] = ACTIONS(4130), - [anon_sym_null] = ACTIONS(1538), - [anon_sym_true] = ACTIONS(1538), - [anon_sym_false] = ACTIONS(1538), - [aux_sym__val_number_decimal_token1] = ACTIONS(1536), - [aux_sym__val_number_decimal_token2] = ACTIONS(1536), - [aux_sym__val_number_decimal_token3] = ACTIONS(1536), - [aux_sym__val_number_decimal_token4] = ACTIONS(1536), - [aux_sym__val_number_token1] = ACTIONS(1538), - [aux_sym__val_number_token2] = ACTIONS(1538), - [aux_sym__val_number_token3] = ACTIONS(1538), - [aux_sym__val_number_token4] = ACTIONS(1538), - [aux_sym__val_number_token5] = ACTIONS(1538), - [aux_sym__val_number_token6] = ACTIONS(1538), - [anon_sym_0b] = ACTIONS(1536), - [anon_sym_0o] = ACTIONS(1536), - [anon_sym_0x] = ACTIONS(1536), - [sym_val_date] = ACTIONS(1538), - [anon_sym_DQUOTE] = ACTIONS(1538), - [sym__str_single_quotes] = ACTIONS(1538), - [sym__str_back_ticks] = ACTIONS(1538), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1538), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1538), - [anon_sym_err_GT] = ACTIONS(1536), - [anon_sym_out_GT] = ACTIONS(1536), - [anon_sym_e_GT] = ACTIONS(1536), - [anon_sym_o_GT] = ACTIONS(1536), - [anon_sym_err_PLUSout_GT] = ACTIONS(1536), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), - [anon_sym_o_PLUSe_GT] = ACTIONS(1536), - [anon_sym_e_PLUSo_GT] = ACTIONS(1536), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), - [aux_sym_unquoted_token1] = ACTIONS(1536), - [aux_sym_unquoted_token2] = ACTIONS(1540), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1538), + [anon_sym_STAR_STAR] = ACTIONS(3092), + [anon_sym_PLUS_PLUS] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3094), + [anon_sym_SLASH] = ACTIONS(3094), + [anon_sym_mod] = ACTIONS(3092), + [anon_sym_SLASH_SLASH] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(3094), + [anon_sym_DASH] = ACTIONS(3092), + [anon_sym_bit_DASHshl] = ACTIONS(3092), + [anon_sym_bit_DASHshr] = ACTIONS(3092), + [anon_sym_EQ_TILDE] = ACTIONS(3092), + [anon_sym_BANG_TILDE] = ACTIONS(3092), + [anon_sym_bit_DASHand] = ACTIONS(3092), + [anon_sym_bit_DASHxor] = ACTIONS(3092), + [anon_sym_bit_DASHor] = ACTIONS(3092), + [anon_sym_and] = ACTIONS(3092), + [anon_sym_xor] = ACTIONS(3092), + [anon_sym_or] = ACTIONS(3092), + [anon_sym_in] = ACTIONS(3092), + [anon_sym_not_DASHin] = ACTIONS(3092), + [anon_sym_has] = ACTIONS(3092), + [anon_sym_not_DASHhas] = ACTIONS(3092), + [anon_sym_starts_DASHwith] = ACTIONS(3092), + [anon_sym_ends_DASHwith] = ACTIONS(3092), + [anon_sym_EQ_EQ] = ACTIONS(3092), + [anon_sym_BANG_EQ] = ACTIONS(3092), + [anon_sym_LT] = ACTIONS(3094), + [anon_sym_LT_EQ] = ACTIONS(3092), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_GT_EQ] = ACTIONS(3092), + [aux_sym_cmd_identifier_token41] = ACTIONS(3096), + [sym__newline] = 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_GT2] = ACTIONS(2081), + [anon_sym_DASH2] = ACTIONS(2081), + [anon_sym_in2] = ACTIONS(2081), + [anon_sym_STAR2] = ACTIONS(2081), + [anon_sym_and2] = ACTIONS(2081), + [anon_sym_xor2] = ACTIONS(2081), + [anon_sym_or2] = ACTIONS(2081), + [anon_sym_not_DASHin2] = ACTIONS(2081), + [anon_sym_has2] = ACTIONS(2081), + [anon_sym_not_DASHhas2] = ACTIONS(2081), + [anon_sym_starts_DASHwith2] = ACTIONS(2081), + [anon_sym_ends_DASHwith2] = ACTIONS(2081), + [anon_sym_EQ_EQ2] = ACTIONS(2081), + [anon_sym_BANG_EQ2] = ACTIONS(2081), + [anon_sym_LT2] = ACTIONS(2081), + [anon_sym_LT_EQ2] = ACTIONS(2081), + [anon_sym_GT_EQ2] = ACTIONS(2081), + [anon_sym_EQ_TILDE2] = ACTIONS(2081), + [anon_sym_BANG_TILDE2] = ACTIONS(2081), + [anon_sym_STAR_STAR2] = ACTIONS(2081), + [anon_sym_PLUS_PLUS2] = ACTIONS(2081), + [anon_sym_SLASH2] = ACTIONS(2081), + [anon_sym_mod2] = ACTIONS(2081), + [anon_sym_SLASH_SLASH2] = ACTIONS(2081), + [anon_sym_PLUS2] = ACTIONS(2081), + [anon_sym_bit_DASHshl2] = ACTIONS(2081), + [anon_sym_bit_DASHshr2] = ACTIONS(2081), + [anon_sym_bit_DASHand2] = ACTIONS(2081), + [anon_sym_bit_DASHxor2] = ACTIONS(2081), + [anon_sym_bit_DASHor2] = ACTIONS(2081), + [anon_sym_POUND] = ACTIONS(3), }, [1247] = { + [sym__expr_parenthesized_immediate] = STATE(1787), + [sym__immediate_decimal] = STATE(1599), + [sym_val_variable] = STATE(1787), [sym_comment] = STATE(1247), - [ts_builtin_sym_end] = ACTIONS(1544), - [sym__newline] = ACTIONS(1544), - [anon_sym_SEMI] = ACTIONS(1544), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_err_GT_PIPE] = ACTIONS(1544), - [anon_sym_out_GT_PIPE] = ACTIONS(1544), - [anon_sym_e_GT_PIPE] = ACTIONS(1544), - [anon_sym_o_GT_PIPE] = ACTIONS(1544), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1544), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1544), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1544), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1544), - [anon_sym_LPAREN] = ACTIONS(1542), - [anon_sym_DOLLAR] = ACTIONS(1542), - [anon_sym_DASH_DASH] = ACTIONS(1544), - [anon_sym_DASH2] = ACTIONS(1542), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_DOT_DOT] = ACTIONS(1542), - [anon_sym_LPAREN2] = ACTIONS(1544), - [anon_sym_DOT_DOT2] = ACTIONS(1542), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1542), - [anon_sym_DOT_DOT_LT] = ACTIONS(1542), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1544), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1544), - [aux_sym__immediate_decimal_token1] = ACTIONS(4132), - [aux_sym__immediate_decimal_token2] = ACTIONS(4134), - [anon_sym_null] = ACTIONS(1544), - [anon_sym_true] = ACTIONS(1544), - [anon_sym_false] = ACTIONS(1544), - [aux_sym__val_number_decimal_token1] = ACTIONS(1542), - [aux_sym__val_number_decimal_token2] = ACTIONS(1544), - [aux_sym__val_number_decimal_token3] = ACTIONS(1544), - [aux_sym__val_number_decimal_token4] = ACTIONS(1544), - [aux_sym__val_number_token1] = ACTIONS(1544), - [aux_sym__val_number_token2] = ACTIONS(1544), - [aux_sym__val_number_token3] = ACTIONS(1544), - [aux_sym__val_number_token4] = ACTIONS(1544), - [aux_sym__val_number_token5] = ACTIONS(1544), - [aux_sym__val_number_token6] = ACTIONS(1544), - [anon_sym_0b] = ACTIONS(1542), - [sym_filesize_unit] = ACTIONS(1544), - [sym_duration_unit] = ACTIONS(1544), - [anon_sym_0o] = ACTIONS(1542), - [anon_sym_0x] = ACTIONS(1542), - [sym_val_date] = ACTIONS(1544), - [anon_sym_DQUOTE] = ACTIONS(1544), - [sym__str_single_quotes] = ACTIONS(1544), - [sym__str_back_ticks] = ACTIONS(1544), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1544), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1544), - [anon_sym_err_GT] = ACTIONS(1542), - [anon_sym_out_GT] = ACTIONS(1542), - [anon_sym_e_GT] = ACTIONS(1542), - [anon_sym_o_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT] = ACTIONS(1542), - [anon_sym_err_GT_GT] = ACTIONS(1544), - [anon_sym_out_GT_GT] = ACTIONS(1544), - [anon_sym_e_GT_GT] = ACTIONS(1544), - [anon_sym_o_GT_GT] = ACTIONS(1544), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1544), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1544), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1544), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1544), - [aux_sym_unquoted_token1] = ACTIONS(1542), - [aux_sym_unquoted_token2] = ACTIONS(1542), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1544), + [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(1441), + [anon_sym_RPAREN] = ACTIONS(1455), + [anon_sym_DOLLAR] = ACTIONS(3985), + [anon_sym_DASH_DASH] = ACTIONS(1455), + [anon_sym_DASH2] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1455), + [anon_sym_RBRACE] = ACTIONS(1455), + [anon_sym_DOT_DOT] = ACTIONS(1441), + [anon_sym_LPAREN2] = ACTIONS(3987), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1455), + [anon_sym_DOT_DOT_LT] = ACTIONS(1455), + [aux_sym__immediate_decimal_token1] = ACTIONS(3989), + [aux_sym__immediate_decimal_token3] = ACTIONS(3991), + [aux_sym__immediate_decimal_token4] = ACTIONS(3993), + [aux_sym__immediate_decimal_token5] = ACTIONS(3995), + [anon_sym_null] = ACTIONS(1455), + [anon_sym_true] = ACTIONS(1455), + [anon_sym_false] = ACTIONS(1455), + [aux_sym__val_number_decimal_token1] = ACTIONS(1441), + [aux_sym__val_number_decimal_token2] = ACTIONS(1441), + [aux_sym__val_number_decimal_token3] = ACTIONS(1441), + [aux_sym__val_number_decimal_token4] = ACTIONS(1441), + [aux_sym__val_number_token1] = ACTIONS(1455), + [aux_sym__val_number_token2] = ACTIONS(1455), + [aux_sym__val_number_token3] = ACTIONS(1455), + [aux_sym__val_number_token4] = ACTIONS(1455), + [aux_sym__val_number_token5] = ACTIONS(1455), + [aux_sym__val_number_token6] = ACTIONS(1455), + [anon_sym_0b] = ACTIONS(1441), + [anon_sym_0o] = ACTIONS(1441), + [anon_sym_0x] = ACTIONS(1441), + [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(1441), + [anon_sym_out_GT] = ACTIONS(1441), + [anon_sym_e_GT] = ACTIONS(1441), + [anon_sym_o_GT] = ACTIONS(1441), + [anon_sym_err_PLUSout_GT] = ACTIONS(1441), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1441), + [anon_sym_o_PLUSe_GT] = ACTIONS(1441), + [anon_sym_e_PLUSo_GT] = ACTIONS(1441), + [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(1441), + [aux_sym_unquoted_token2] = ACTIONS(1457), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1455), }, [1248] = { - [sym__match_pattern_expression] = STATE(3162), - [sym__match_pattern_value] = STATE(3176), - [sym__match_pattern_list] = STATE(3183), - [sym__match_pattern_rest] = STATE(7608), - [sym__match_pattern_record] = STATE(3151), - [sym_expr_parenthesized] = STATE(2934), - [sym_val_range] = STATE(3176), - [sym__val_range] = STATE(7541), - [sym_val_nothing] = STATE(3167), - [sym_val_bool] = STATE(3060), - [sym_val_variable] = STATE(2912), - [sym_val_number] = STATE(3167), - [sym__val_number_decimal] = STATE(2702), - [sym__val_number] = STATE(3161), - [sym_val_duration] = STATE(3167), - [sym_val_filesize] = STATE(3167), - [sym_val_binary] = STATE(3167), - [sym_val_string] = STATE(3167), - [sym__raw_str] = STATE(3174), - [sym__str_double_quotes] = STATE(3174), - [sym_val_table] = STATE(3167), - [sym__unquoted_in_list] = STATE(3162), - [sym__unquoted_anonymous_prefix] = STATE(7637), + [sym_cell_path] = STATE(1408), + [sym_path] = STATE(1391), [sym_comment] = STATE(1248), - [aux_sym__match_pattern_list_repeat1] = STATE(1322), - [anon_sym_LBRACK] = ACTIONS(4136), - [anon_sym_RBRACK] = ACTIONS(4138), - [anon_sym_LPAREN] = ACTIONS(3832), - [anon_sym_DOLLAR] = ACTIONS(3834), - [anon_sym_LBRACE] = ACTIONS(3836), - [anon_sym_DOT_DOT] = ACTIONS(4140), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3840), - [anon_sym_DOT_DOT_LT] = ACTIONS(3840), - [anon_sym_null] = ACTIONS(3842), - [anon_sym_true] = ACTIONS(3844), - [anon_sym_false] = ACTIONS(3844), - [aux_sym__val_number_decimal_token1] = ACTIONS(3846), - [aux_sym__val_number_decimal_token2] = ACTIONS(3848), - [aux_sym__val_number_decimal_token3] = ACTIONS(3850), - [aux_sym__val_number_decimal_token4] = ACTIONS(3852), - [aux_sym__val_number_token1] = ACTIONS(3854), - [aux_sym__val_number_token2] = ACTIONS(3854), - [aux_sym__val_number_token3] = ACTIONS(3854), - [aux_sym__val_number_token4] = ACTIONS(3856), - [aux_sym__val_number_token5] = ACTIONS(3856), - [aux_sym__val_number_token6] = ACTIONS(3856), - [anon_sym_0b] = ACTIONS(3858), - [anon_sym_0o] = ACTIONS(3860), - [anon_sym_0x] = ACTIONS(3860), - [sym_val_date] = ACTIONS(3862), - [anon_sym_DQUOTE] = ACTIONS(3864), - [sym__str_single_quotes] = ACTIONS(3866), - [sym__str_back_ticks] = ACTIONS(3866), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3868), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3870), + [aux_sym_cell_path_repeat1] = STATE(1272), + [ts_builtin_sym_end] = ACTIONS(931), + [anon_sym_EQ] = ACTIONS(929), + [anon_sym_PLUS_EQ] = ACTIONS(931), + [anon_sym_DASH_EQ] = ACTIONS(931), + [anon_sym_STAR_EQ] = ACTIONS(931), + [anon_sym_SLASH_EQ] = ACTIONS(931), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(931), + [sym__newline] = ACTIONS(931), + [anon_sym_SEMI] = ACTIONS(931), + [anon_sym_PIPE] = ACTIONS(931), + [anon_sym_err_GT_PIPE] = ACTIONS(931), + [anon_sym_out_GT_PIPE] = ACTIONS(931), + [anon_sym_e_GT_PIPE] = ACTIONS(931), + [anon_sym_o_GT_PIPE] = ACTIONS(931), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(931), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(931), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(931), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(931), + [anon_sym_GT2] = ACTIONS(929), + [anon_sym_DASH2] = ACTIONS(929), + [anon_sym_in2] = ACTIONS(931), + [anon_sym_STAR2] = ACTIONS(929), + [anon_sym_and2] = ACTIONS(931), + [anon_sym_xor2] = ACTIONS(931), + [anon_sym_or2] = ACTIONS(931), + [anon_sym_not_DASHin2] = ACTIONS(931), + [anon_sym_has2] = ACTIONS(931), + [anon_sym_not_DASHhas2] = ACTIONS(931), + [anon_sym_starts_DASHwith2] = ACTIONS(931), + [anon_sym_ends_DASHwith2] = ACTIONS(931), + [anon_sym_EQ_EQ2] = ACTIONS(931), + [anon_sym_BANG_EQ2] = ACTIONS(931), + [anon_sym_LT2] = ACTIONS(929), + [anon_sym_LT_EQ2] = ACTIONS(931), + [anon_sym_GT_EQ2] = ACTIONS(931), + [anon_sym_EQ_TILDE2] = ACTIONS(931), + [anon_sym_BANG_TILDE2] = ACTIONS(931), + [anon_sym_STAR_STAR2] = ACTIONS(931), + [anon_sym_PLUS_PLUS2] = ACTIONS(929), + [anon_sym_SLASH2] = ACTIONS(929), + [anon_sym_mod2] = ACTIONS(931), + [anon_sym_SLASH_SLASH2] = ACTIONS(931), + [anon_sym_PLUS2] = ACTIONS(929), + [anon_sym_bit_DASHshl2] = ACTIONS(931), + [anon_sym_bit_DASHshr2] = ACTIONS(931), + [anon_sym_bit_DASHand2] = ACTIONS(931), + [anon_sym_bit_DASHxor2] = ACTIONS(931), + [anon_sym_bit_DASHor2] = ACTIONS(931), + [anon_sym_DOT_DOT2] = ACTIONS(929), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(931), + [anon_sym_DOT_DOT_LT2] = ACTIONS(931), + [anon_sym_DOT2] = ACTIONS(3997), + [anon_sym_err_GT] = ACTIONS(929), + [anon_sym_out_GT] = ACTIONS(929), + [anon_sym_e_GT] = ACTIONS(929), + [anon_sym_o_GT] = ACTIONS(929), + [anon_sym_err_PLUSout_GT] = ACTIONS(929), + [anon_sym_out_PLUSerr_GT] = ACTIONS(929), + [anon_sym_o_PLUSe_GT] = ACTIONS(929), + [anon_sym_e_PLUSo_GT] = ACTIONS(929), + [anon_sym_err_GT_GT] = ACTIONS(931), + [anon_sym_out_GT_GT] = ACTIONS(931), + [anon_sym_e_GT_GT] = ACTIONS(931), + [anon_sym_o_GT_GT] = ACTIONS(931), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(931), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(931), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(931), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(931), + [anon_sym_POUND] = ACTIONS(247), }, [1249] = { - [sym__val_range] = STATE(7612), - [sym__value] = STATE(5236), - [sym_val_nothing] = STATE(4353), - [sym_val_bool] = STATE(5750), - [sym_val_variable] = STATE(4353), - [sym_val_number] = STATE(4353), - [sym__val_number_decimal] = STATE(5316), - [sym__val_number] = STATE(4251), - [sym_val_duration] = STATE(4353), - [sym_val_filesize] = STATE(4353), - [sym_val_binary] = STATE(4353), - [sym_val_string] = STATE(4353), - [sym__raw_str] = STATE(5611), - [sym__str_double_quotes] = STATE(5611), - [sym_val_interpolated] = STATE(4353), - [sym__inter_single_quotes] = STATE(5076), - [sym__inter_double_quotes] = STATE(5077), - [sym_val_list] = STATE(4353), - [sym_val_record] = STATE(4353), - [sym_val_table] = STATE(4353), - [sym_val_closure] = STATE(4353), - [sym_unquoted] = STATE(5238), - [sym__unquoted_anonymous_prefix] = STATE(7833), [sym_comment] = STATE(1249), - [anon_sym_LBRACK] = ACTIONS(4060), - [anon_sym_LPAREN] = ACTIONS(4062), - [anon_sym_DOLLAR] = ACTIONS(4064), - [anon_sym_LBRACE] = ACTIONS(4066), - [anon_sym_DOT_DOT] = ACTIONS(4068), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4070), - [anon_sym_DOT_DOT_LT] = ACTIONS(4070), - [anon_sym_null] = ACTIONS(4072), - [anon_sym_true] = ACTIONS(4074), - [anon_sym_false] = ACTIONS(4074), - [aux_sym__val_number_decimal_token1] = ACTIONS(4076), - [aux_sym__val_number_decimal_token2] = ACTIONS(4078), - [aux_sym__val_number_decimal_token3] = ACTIONS(4080), - [aux_sym__val_number_decimal_token4] = ACTIONS(4082), - [aux_sym__val_number_token1] = ACTIONS(3600), - [aux_sym__val_number_token2] = ACTIONS(3600), - [aux_sym__val_number_token3] = ACTIONS(3600), - [aux_sym__val_number_token4] = ACTIONS(4084), - [aux_sym__val_number_token5] = ACTIONS(4084), - [aux_sym__val_number_token6] = ACTIONS(4084), - [anon_sym_0b] = ACTIONS(3604), - [anon_sym_0o] = ACTIONS(3606), - [anon_sym_0x] = ACTIONS(3606), - [sym_val_date] = ACTIONS(4086), - [anon_sym_DQUOTE] = ACTIONS(4088), - [sym__str_single_quotes] = ACTIONS(4090), - [sym__str_back_ticks] = ACTIONS(4090), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3614), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3616), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(4092), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4094), + [anon_sym_EQ] = ACTIONS(956), + [anon_sym_PLUS_EQ] = ACTIONS(958), + [anon_sym_DASH_EQ] = ACTIONS(958), + [anon_sym_STAR_EQ] = ACTIONS(958), + [anon_sym_SLASH_EQ] = ACTIONS(958), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(958), + [sym__newline] = ACTIONS(958), + [anon_sym_SEMI] = ACTIONS(958), + [anon_sym_PIPE] = ACTIONS(958), + [anon_sym_err_GT_PIPE] = ACTIONS(958), + [anon_sym_out_GT_PIPE] = ACTIONS(958), + [anon_sym_e_GT_PIPE] = ACTIONS(958), + [anon_sym_o_GT_PIPE] = ACTIONS(958), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(958), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(958), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(958), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(958), + [anon_sym_RPAREN] = ACTIONS(958), + [anon_sym_GT2] = ACTIONS(956), + [anon_sym_DASH2] = ACTIONS(956), + [anon_sym_in2] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(958), + [anon_sym_STAR2] = ACTIONS(956), + [anon_sym_QMARK2] = ACTIONS(958), + [anon_sym_and2] = ACTIONS(958), + [anon_sym_xor2] = ACTIONS(958), + [anon_sym_or2] = ACTIONS(958), + [anon_sym_not_DASHin2] = ACTIONS(958), + [anon_sym_has2] = ACTIONS(958), + [anon_sym_not_DASHhas2] = ACTIONS(958), + [anon_sym_starts_DASHwith2] = ACTIONS(958), + [anon_sym_ends_DASHwith2] = ACTIONS(958), + [anon_sym_EQ_EQ2] = ACTIONS(958), + [anon_sym_BANG_EQ2] = ACTIONS(958), + [anon_sym_LT2] = ACTIONS(956), + [anon_sym_LT_EQ2] = ACTIONS(958), + [anon_sym_GT_EQ2] = ACTIONS(958), + [anon_sym_EQ_TILDE2] = ACTIONS(958), + [anon_sym_BANG_TILDE2] = ACTIONS(958), + [anon_sym_STAR_STAR2] = ACTIONS(958), + [anon_sym_PLUS_PLUS2] = ACTIONS(956), + [anon_sym_SLASH2] = ACTIONS(956), + [anon_sym_mod2] = ACTIONS(958), + [anon_sym_SLASH_SLASH2] = ACTIONS(958), + [anon_sym_PLUS2] = ACTIONS(956), + [anon_sym_bit_DASHshl2] = ACTIONS(958), + [anon_sym_bit_DASHshr2] = ACTIONS(958), + [anon_sym_bit_DASHand2] = ACTIONS(958), + [anon_sym_bit_DASHxor2] = ACTIONS(958), + [anon_sym_bit_DASHor2] = ACTIONS(958), + [anon_sym_DOT_DOT2] = ACTIONS(956), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(958), + [anon_sym_DOT_DOT_LT2] = ACTIONS(958), + [anon_sym_COLON2] = ACTIONS(958), + [anon_sym_DOT2] = ACTIONS(956), + [anon_sym_err_GT] = ACTIONS(956), + [anon_sym_out_GT] = ACTIONS(956), + [anon_sym_e_GT] = ACTIONS(956), + [anon_sym_o_GT] = ACTIONS(956), + [anon_sym_err_PLUSout_GT] = ACTIONS(956), + [anon_sym_out_PLUSerr_GT] = ACTIONS(956), + [anon_sym_o_PLUSe_GT] = ACTIONS(956), + [anon_sym_e_PLUSo_GT] = ACTIONS(956), + [anon_sym_err_GT_GT] = ACTIONS(958), + [anon_sym_out_GT_GT] = ACTIONS(958), + [anon_sym_e_GT_GT] = ACTIONS(958), + [anon_sym_o_GT_GT] = ACTIONS(958), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(958), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(958), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(958), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(958), + [anon_sym_POUND] = ACTIONS(247), }, [1250] = { - [sym__val_range] = STATE(7519), - [sym__value] = STATE(5239), - [sym_val_nothing] = STATE(4353), - [sym_val_bool] = STATE(5750), - [sym_val_variable] = STATE(4353), - [sym_val_number] = STATE(4353), - [sym__val_number_decimal] = STATE(5237), - [sym__val_number] = STATE(4251), - [sym_val_duration] = STATE(4353), - [sym_val_filesize] = STATE(4353), - [sym_val_binary] = STATE(4353), - [sym_val_string] = STATE(4353), - [sym__raw_str] = STATE(3668), - [sym__str_double_quotes] = STATE(3668), - [sym_val_interpolated] = STATE(4353), - [sym__inter_single_quotes] = STATE(5264), - [sym__inter_double_quotes] = STATE(5265), - [sym_val_list] = STATE(4353), - [sym_val_record] = STATE(4353), - [sym_val_table] = STATE(4353), - [sym_val_closure] = STATE(4353), - [sym_unquoted] = STATE(5241), - [sym__unquoted_anonymous_prefix] = STATE(7789), [sym_comment] = STATE(1250), - [anon_sym_LBRACK] = ACTIONS(4096), - [anon_sym_LPAREN] = ACTIONS(4062), - [anon_sym_DOLLAR] = ACTIONS(4098), - [anon_sym_LBRACE] = ACTIONS(4100), - [anon_sym_DOT_DOT] = ACTIONS(4102), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4104), - [anon_sym_DOT_DOT_LT] = ACTIONS(4104), - [anon_sym_null] = ACTIONS(4072), - [anon_sym_true] = ACTIONS(4074), - [anon_sym_false] = ACTIONS(4074), - [aux_sym__val_number_decimal_token1] = ACTIONS(4106), - [aux_sym__val_number_decimal_token2] = ACTIONS(4108), - [aux_sym__val_number_decimal_token3] = ACTIONS(4110), - [aux_sym__val_number_decimal_token4] = ACTIONS(4112), - [aux_sym__val_number_token1] = ACTIONS(3600), - [aux_sym__val_number_token2] = ACTIONS(3600), - [aux_sym__val_number_token3] = ACTIONS(3600), - [aux_sym__val_number_token4] = ACTIONS(4114), - [aux_sym__val_number_token5] = ACTIONS(4114), - [aux_sym__val_number_token6] = ACTIONS(4114), - [anon_sym_0b] = ACTIONS(3604), - [anon_sym_0o] = ACTIONS(3606), - [anon_sym_0x] = ACTIONS(3606), - [sym_val_date] = ACTIONS(4086), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym__str_single_quotes] = ACTIONS(1288), - [sym__str_back_ticks] = ACTIONS(1288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4116), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4118), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3490), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1290), + [anon_sym_EQ] = ACTIONS(960), + [anon_sym_PLUS_EQ] = ACTIONS(962), + [anon_sym_DASH_EQ] = ACTIONS(962), + [anon_sym_STAR_EQ] = ACTIONS(962), + [anon_sym_SLASH_EQ] = ACTIONS(962), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(962), + [sym__newline] = ACTIONS(962), + [anon_sym_SEMI] = ACTIONS(962), + [anon_sym_PIPE] = ACTIONS(962), + [anon_sym_err_GT_PIPE] = ACTIONS(962), + [anon_sym_out_GT_PIPE] = ACTIONS(962), + [anon_sym_e_GT_PIPE] = ACTIONS(962), + [anon_sym_o_GT_PIPE] = ACTIONS(962), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(962), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(962), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(962), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(962), + [anon_sym_RPAREN] = ACTIONS(962), + [anon_sym_GT2] = ACTIONS(960), + [anon_sym_DASH2] = ACTIONS(960), + [anon_sym_in2] = ACTIONS(962), + [anon_sym_RBRACE] = ACTIONS(962), + [anon_sym_STAR2] = ACTIONS(960), + [anon_sym_QMARK2] = ACTIONS(962), + [anon_sym_and2] = ACTIONS(962), + [anon_sym_xor2] = ACTIONS(962), + [anon_sym_or2] = ACTIONS(962), + [anon_sym_not_DASHin2] = ACTIONS(962), + [anon_sym_has2] = ACTIONS(962), + [anon_sym_not_DASHhas2] = ACTIONS(962), + [anon_sym_starts_DASHwith2] = ACTIONS(962), + [anon_sym_ends_DASHwith2] = ACTIONS(962), + [anon_sym_EQ_EQ2] = ACTIONS(962), + [anon_sym_BANG_EQ2] = ACTIONS(962), + [anon_sym_LT2] = ACTIONS(960), + [anon_sym_LT_EQ2] = ACTIONS(962), + [anon_sym_GT_EQ2] = ACTIONS(962), + [anon_sym_EQ_TILDE2] = ACTIONS(962), + [anon_sym_BANG_TILDE2] = ACTIONS(962), + [anon_sym_STAR_STAR2] = ACTIONS(962), + [anon_sym_PLUS_PLUS2] = ACTIONS(960), + [anon_sym_SLASH2] = ACTIONS(960), + [anon_sym_mod2] = ACTIONS(962), + [anon_sym_SLASH_SLASH2] = ACTIONS(962), + [anon_sym_PLUS2] = ACTIONS(960), + [anon_sym_bit_DASHshl2] = ACTIONS(962), + [anon_sym_bit_DASHshr2] = ACTIONS(962), + [anon_sym_bit_DASHand2] = ACTIONS(962), + [anon_sym_bit_DASHxor2] = ACTIONS(962), + [anon_sym_bit_DASHor2] = ACTIONS(962), + [anon_sym_DOT_DOT2] = ACTIONS(960), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(962), + [anon_sym_DOT_DOT_LT2] = ACTIONS(962), + [anon_sym_COLON2] = ACTIONS(962), + [anon_sym_DOT2] = ACTIONS(960), + [anon_sym_err_GT] = ACTIONS(960), + [anon_sym_out_GT] = ACTIONS(960), + [anon_sym_e_GT] = ACTIONS(960), + [anon_sym_o_GT] = ACTIONS(960), + [anon_sym_err_PLUSout_GT] = ACTIONS(960), + [anon_sym_out_PLUSerr_GT] = ACTIONS(960), + [anon_sym_o_PLUSe_GT] = ACTIONS(960), + [anon_sym_e_PLUSo_GT] = ACTIONS(960), + [anon_sym_err_GT_GT] = ACTIONS(962), + [anon_sym_out_GT_GT] = ACTIONS(962), + [anon_sym_e_GT_GT] = ACTIONS(962), + [anon_sym_o_GT_GT] = ACTIONS(962), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(962), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(962), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(962), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(962), + [anon_sym_POUND] = ACTIONS(247), }, [1251] = { - [sym_path] = STATE(1357), + [sym__expr_parenthesized_immediate] = STATE(1804), + [sym__immediate_decimal] = STATE(1631), + [sym_val_variable] = STATE(1804), [sym_comment] = STATE(1251), - [aux_sym_cell_path_repeat1] = STATE(1252), - [anon_sym_EQ] = ACTIONS(949), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(951), - [sym__newline] = ACTIONS(951), - [anon_sym_SEMI] = ACTIONS(951), - [anon_sym_PIPE] = ACTIONS(951), - [anon_sym_err_GT_PIPE] = ACTIONS(951), - [anon_sym_out_GT_PIPE] = ACTIONS(951), - [anon_sym_e_GT_PIPE] = ACTIONS(951), - [anon_sym_o_GT_PIPE] = ACTIONS(951), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(951), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(951), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(951), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(951), - [anon_sym_RPAREN] = ACTIONS(951), - [anon_sym_GT2] = ACTIONS(949), - [anon_sym_DASH2] = ACTIONS(949), - [anon_sym_in2] = ACTIONS(951), - [anon_sym_RBRACE] = ACTIONS(951), - [anon_sym_STAR2] = ACTIONS(949), - [anon_sym_and2] = ACTIONS(951), - [anon_sym_xor2] = ACTIONS(951), - [anon_sym_or2] = ACTIONS(951), - [anon_sym_not_DASHin2] = ACTIONS(951), - [anon_sym_starts_DASHwith2] = ACTIONS(951), - [anon_sym_ends_DASHwith2] = ACTIONS(951), - [anon_sym_EQ_EQ2] = ACTIONS(951), - [anon_sym_BANG_EQ2] = ACTIONS(951), - [anon_sym_LT2] = ACTIONS(949), - [anon_sym_LT_EQ2] = ACTIONS(951), - [anon_sym_GT_EQ2] = ACTIONS(951), - [anon_sym_EQ_TILDE2] = ACTIONS(951), - [anon_sym_BANG_TILDE2] = ACTIONS(951), - [anon_sym_STAR_STAR2] = ACTIONS(951), - [anon_sym_PLUS_PLUS2] = ACTIONS(949), - [anon_sym_SLASH2] = ACTIONS(949), - [anon_sym_mod2] = ACTIONS(951), - [anon_sym_SLASH_SLASH2] = ACTIONS(951), - [anon_sym_PLUS2] = ACTIONS(949), - [anon_sym_bit_DASHshl2] = ACTIONS(951), - [anon_sym_bit_DASHshr2] = ACTIONS(951), - [anon_sym_bit_DASHand2] = ACTIONS(951), - [anon_sym_bit_DASHxor2] = ACTIONS(951), - [anon_sym_bit_DASHor2] = ACTIONS(951), - [anon_sym_DOT_DOT2] = ACTIONS(949), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(951), - [anon_sym_DOT_DOT_LT2] = ACTIONS(951), - [anon_sym_COLON2] = ACTIONS(951), - [anon_sym_DOT2] = ACTIONS(4020), - [anon_sym_err_GT] = ACTIONS(949), - [anon_sym_out_GT] = ACTIONS(949), - [anon_sym_e_GT] = ACTIONS(949), - [anon_sym_o_GT] = ACTIONS(949), - [anon_sym_err_PLUSout_GT] = ACTIONS(949), - [anon_sym_out_PLUSerr_GT] = ACTIONS(949), - [anon_sym_o_PLUSe_GT] = ACTIONS(949), - [anon_sym_e_PLUSo_GT] = ACTIONS(949), - [anon_sym_err_GT_GT] = ACTIONS(951), - [anon_sym_out_GT_GT] = ACTIONS(951), - [anon_sym_e_GT_GT] = ACTIONS(951), - [anon_sym_o_GT_GT] = ACTIONS(951), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(951), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(951), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(951), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(951), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(1560), + [anon_sym_SEMI] = ACTIONS(1560), + [anon_sym_PIPE] = ACTIONS(1560), + [anon_sym_err_GT_PIPE] = ACTIONS(1560), + [anon_sym_out_GT_PIPE] = ACTIONS(1560), + [anon_sym_e_GT_PIPE] = ACTIONS(1560), + [anon_sym_o_GT_PIPE] = ACTIONS(1560), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1560), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1560), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1560), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1560), + [anon_sym_LPAREN] = ACTIONS(1558), + [anon_sym_RPAREN] = ACTIONS(1560), + [anon_sym_DOLLAR] = ACTIONS(3985), + [anon_sym_DASH_DASH] = ACTIONS(1560), + [anon_sym_DASH2] = ACTIONS(1558), + [anon_sym_LBRACE] = ACTIONS(1560), + [anon_sym_RBRACE] = ACTIONS(1560), + [anon_sym_DOT_DOT] = ACTIONS(1558), + [anon_sym_LPAREN2] = ACTIONS(3987), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1560), + [anon_sym_DOT_DOT_LT] = ACTIONS(1560), + [aux_sym__immediate_decimal_token1] = ACTIONS(3989), + [aux_sym__immediate_decimal_token3] = ACTIONS(3991), + [aux_sym__immediate_decimal_token4] = ACTIONS(3993), + [aux_sym__immediate_decimal_token5] = ACTIONS(3995), + [anon_sym_null] = ACTIONS(1560), + [anon_sym_true] = ACTIONS(1560), + [anon_sym_false] = ACTIONS(1560), + [aux_sym__val_number_decimal_token1] = ACTIONS(1558), + [aux_sym__val_number_decimal_token2] = ACTIONS(1558), + [aux_sym__val_number_decimal_token3] = ACTIONS(1558), + [aux_sym__val_number_decimal_token4] = ACTIONS(1558), + [aux_sym__val_number_token1] = ACTIONS(1560), + [aux_sym__val_number_token2] = ACTIONS(1560), + [aux_sym__val_number_token3] = ACTIONS(1560), + [aux_sym__val_number_token4] = ACTIONS(1560), + [aux_sym__val_number_token5] = ACTIONS(1560), + [aux_sym__val_number_token6] = ACTIONS(1560), + [anon_sym_0b] = ACTIONS(1558), + [anon_sym_0o] = ACTIONS(1558), + [anon_sym_0x] = ACTIONS(1558), + [sym_val_date] = ACTIONS(1560), + [anon_sym_DQUOTE] = ACTIONS(1560), + [sym__str_single_quotes] = ACTIONS(1560), + [sym__str_back_ticks] = ACTIONS(1560), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1560), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1560), + [anon_sym_err_GT] = ACTIONS(1558), + [anon_sym_out_GT] = ACTIONS(1558), + [anon_sym_e_GT] = ACTIONS(1558), + [anon_sym_o_GT] = ACTIONS(1558), + [anon_sym_err_PLUSout_GT] = ACTIONS(1558), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1558), + [anon_sym_o_PLUSe_GT] = ACTIONS(1558), + [anon_sym_e_PLUSo_GT] = ACTIONS(1558), + [anon_sym_err_GT_GT] = ACTIONS(1560), + [anon_sym_out_GT_GT] = ACTIONS(1560), + [anon_sym_e_GT_GT] = ACTIONS(1560), + [anon_sym_o_GT_GT] = ACTIONS(1560), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1560), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1560), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1560), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1560), + [aux_sym_unquoted_token1] = ACTIONS(1558), + [aux_sym_unquoted_token2] = ACTIONS(1562), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1560), }, [1252] = { - [sym_path] = STATE(1357), [sym_comment] = STATE(1252), - [aux_sym_cell_path_repeat1] = STATE(1252), - [anon_sym_EQ] = ACTIONS(953), - [anon_sym_PLUS_EQ] = ACTIONS(955), - [anon_sym_DASH_EQ] = ACTIONS(955), - [anon_sym_STAR_EQ] = ACTIONS(955), - [anon_sym_SLASH_EQ] = ACTIONS(955), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(955), - [sym__newline] = ACTIONS(955), - [anon_sym_SEMI] = ACTIONS(955), - [anon_sym_PIPE] = ACTIONS(955), - [anon_sym_err_GT_PIPE] = ACTIONS(955), - [anon_sym_out_GT_PIPE] = ACTIONS(955), - [anon_sym_e_GT_PIPE] = ACTIONS(955), - [anon_sym_o_GT_PIPE] = ACTIONS(955), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(955), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(955), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(955), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(955), - [anon_sym_RPAREN] = ACTIONS(955), - [anon_sym_GT2] = ACTIONS(953), - [anon_sym_DASH2] = ACTIONS(953), - [anon_sym_in2] = ACTIONS(955), - [anon_sym_RBRACE] = ACTIONS(955), - [anon_sym_STAR2] = ACTIONS(953), - [anon_sym_and2] = ACTIONS(955), - [anon_sym_xor2] = ACTIONS(955), - [anon_sym_or2] = ACTIONS(955), - [anon_sym_not_DASHin2] = ACTIONS(955), - [anon_sym_starts_DASHwith2] = ACTIONS(955), - [anon_sym_ends_DASHwith2] = ACTIONS(955), - [anon_sym_EQ_EQ2] = ACTIONS(955), - [anon_sym_BANG_EQ2] = ACTIONS(955), - [anon_sym_LT2] = ACTIONS(953), - [anon_sym_LT_EQ2] = ACTIONS(955), - [anon_sym_GT_EQ2] = ACTIONS(955), - [anon_sym_EQ_TILDE2] = ACTIONS(955), - [anon_sym_BANG_TILDE2] = ACTIONS(955), - [anon_sym_STAR_STAR2] = ACTIONS(955), - [anon_sym_PLUS_PLUS2] = ACTIONS(953), - [anon_sym_SLASH2] = ACTIONS(953), - [anon_sym_mod2] = ACTIONS(955), - [anon_sym_SLASH_SLASH2] = ACTIONS(955), - [anon_sym_PLUS2] = ACTIONS(953), - [anon_sym_bit_DASHshl2] = ACTIONS(955), - [anon_sym_bit_DASHshr2] = ACTIONS(955), - [anon_sym_bit_DASHand2] = ACTIONS(955), - [anon_sym_bit_DASHxor2] = ACTIONS(955), - [anon_sym_bit_DASHor2] = ACTIONS(955), - [anon_sym_DOT_DOT2] = ACTIONS(953), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(955), - [anon_sym_DOT_DOT_LT2] = ACTIONS(955), - [anon_sym_COLON2] = ACTIONS(955), - [anon_sym_DOT2] = ACTIONS(4142), - [anon_sym_err_GT] = ACTIONS(953), - [anon_sym_out_GT] = ACTIONS(953), - [anon_sym_e_GT] = ACTIONS(953), - [anon_sym_o_GT] = ACTIONS(953), - [anon_sym_err_PLUSout_GT] = ACTIONS(953), - [anon_sym_out_PLUSerr_GT] = ACTIONS(953), - [anon_sym_o_PLUSe_GT] = ACTIONS(953), - [anon_sym_e_PLUSo_GT] = ACTIONS(953), - [anon_sym_err_GT_GT] = ACTIONS(955), - [anon_sym_out_GT_GT] = ACTIONS(955), - [anon_sym_e_GT_GT] = ACTIONS(955), - [anon_sym_o_GT_GT] = ACTIONS(955), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(955), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(955), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(955), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(955), - [anon_sym_POUND] = ACTIONS(251), + [anon_sym_EQ] = ACTIONS(950), + [anon_sym_PLUS_EQ] = ACTIONS(952), + [anon_sym_DASH_EQ] = ACTIONS(952), + [anon_sym_STAR_EQ] = ACTIONS(952), + [anon_sym_SLASH_EQ] = ACTIONS(952), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(952), + [sym__newline] = ACTIONS(952), + [anon_sym_SEMI] = ACTIONS(952), + [anon_sym_PIPE] = ACTIONS(952), + [anon_sym_err_GT_PIPE] = ACTIONS(952), + [anon_sym_out_GT_PIPE] = ACTIONS(952), + [anon_sym_e_GT_PIPE] = ACTIONS(952), + [anon_sym_o_GT_PIPE] = ACTIONS(952), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(952), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(952), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(952), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(952), + [anon_sym_RPAREN] = ACTIONS(952), + [anon_sym_GT2] = ACTIONS(950), + [anon_sym_DASH2] = ACTIONS(950), + [anon_sym_in2] = ACTIONS(952), + [anon_sym_RBRACE] = ACTIONS(952), + [anon_sym_STAR2] = ACTIONS(950), + [anon_sym_QMARK2] = ACTIONS(3999), + [anon_sym_and2] = ACTIONS(952), + [anon_sym_xor2] = ACTIONS(952), + [anon_sym_or2] = ACTIONS(952), + [anon_sym_not_DASHin2] = ACTIONS(952), + [anon_sym_has2] = ACTIONS(952), + [anon_sym_not_DASHhas2] = ACTIONS(952), + [anon_sym_starts_DASHwith2] = ACTIONS(952), + [anon_sym_ends_DASHwith2] = ACTIONS(952), + [anon_sym_EQ_EQ2] = ACTIONS(952), + [anon_sym_BANG_EQ2] = ACTIONS(952), + [anon_sym_LT2] = ACTIONS(950), + [anon_sym_LT_EQ2] = ACTIONS(952), + [anon_sym_GT_EQ2] = ACTIONS(952), + [anon_sym_EQ_TILDE2] = ACTIONS(952), + [anon_sym_BANG_TILDE2] = ACTIONS(952), + [anon_sym_STAR_STAR2] = ACTIONS(952), + [anon_sym_PLUS_PLUS2] = ACTIONS(950), + [anon_sym_SLASH2] = ACTIONS(950), + [anon_sym_mod2] = ACTIONS(952), + [anon_sym_SLASH_SLASH2] = ACTIONS(952), + [anon_sym_PLUS2] = ACTIONS(950), + [anon_sym_bit_DASHshl2] = ACTIONS(952), + [anon_sym_bit_DASHshr2] = ACTIONS(952), + [anon_sym_bit_DASHand2] = ACTIONS(952), + [anon_sym_bit_DASHxor2] = ACTIONS(952), + [anon_sym_bit_DASHor2] = ACTIONS(952), + [anon_sym_DOT_DOT2] = ACTIONS(950), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(952), + [anon_sym_DOT_DOT_LT2] = ACTIONS(952), + [anon_sym_COLON2] = ACTIONS(952), + [anon_sym_DOT2] = ACTIONS(950), + [anon_sym_err_GT] = ACTIONS(950), + [anon_sym_out_GT] = ACTIONS(950), + [anon_sym_e_GT] = ACTIONS(950), + [anon_sym_o_GT] = ACTIONS(950), + [anon_sym_err_PLUSout_GT] = ACTIONS(950), + [anon_sym_out_PLUSerr_GT] = ACTIONS(950), + [anon_sym_o_PLUSe_GT] = ACTIONS(950), + [anon_sym_e_PLUSo_GT] = ACTIONS(950), + [anon_sym_err_GT_GT] = ACTIONS(952), + [anon_sym_out_GT_GT] = ACTIONS(952), + [anon_sym_e_GT_GT] = ACTIONS(952), + [anon_sym_o_GT_GT] = ACTIONS(952), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(952), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(952), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(952), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(952), + [anon_sym_POUND] = ACTIONS(247), }, [1253] = { [sym_comment] = STATE(1253), - [ts_builtin_sym_end] = ACTIONS(1552), - [sym__newline] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1552), - [anon_sym_PIPE] = ACTIONS(1552), - [anon_sym_err_GT_PIPE] = ACTIONS(1552), - [anon_sym_out_GT_PIPE] = ACTIONS(1552), - [anon_sym_e_GT_PIPE] = ACTIONS(1552), - [anon_sym_o_GT_PIPE] = ACTIONS(1552), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1552), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1552), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1552), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1552), - [anon_sym_LBRACK] = ACTIONS(1552), - [anon_sym_LPAREN] = ACTIONS(1550), - [anon_sym_DOLLAR] = ACTIONS(1550), - [anon_sym_DASH_DASH] = ACTIONS(1552), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_LBRACE] = ACTIONS(1552), - [anon_sym_DOT_DOT] = ACTIONS(1550), - [anon_sym_LPAREN2] = ACTIONS(1552), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT] = ACTIONS(4145), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1550), - [anon_sym_DOT_DOT_LT] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [aux_sym__immediate_decimal_token2] = ACTIONS(4147), - [anon_sym_null] = ACTIONS(1552), - [anon_sym_true] = ACTIONS(1552), - [anon_sym_false] = ACTIONS(1552), - [aux_sym__val_number_decimal_token1] = ACTIONS(1550), - [aux_sym__val_number_decimal_token2] = ACTIONS(1552), - [aux_sym__val_number_decimal_token3] = ACTIONS(1552), - [aux_sym__val_number_decimal_token4] = ACTIONS(1552), - [aux_sym__val_number_token1] = ACTIONS(1552), - [aux_sym__val_number_token2] = ACTIONS(1552), - [aux_sym__val_number_token3] = ACTIONS(1552), - [aux_sym__val_number_token4] = ACTIONS(1552), - [aux_sym__val_number_token5] = ACTIONS(1552), - [aux_sym__val_number_token6] = ACTIONS(1552), - [anon_sym_0b] = ACTIONS(1550), - [sym_filesize_unit] = ACTIONS(1552), - [sym_duration_unit] = ACTIONS(1552), - [anon_sym_0o] = ACTIONS(1550), - [anon_sym_0x] = ACTIONS(1550), - [sym_val_date] = ACTIONS(1552), - [anon_sym_DQUOTE] = ACTIONS(1552), - [sym__str_single_quotes] = ACTIONS(1552), - [sym__str_back_ticks] = ACTIONS(1552), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1552), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1552), - [anon_sym_err_GT] = ACTIONS(1550), - [anon_sym_out_GT] = ACTIONS(1550), - [anon_sym_e_GT] = ACTIONS(1550), - [anon_sym_o_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT] = ACTIONS(1550), - [anon_sym_err_GT_GT] = ACTIONS(1552), - [anon_sym_out_GT_GT] = ACTIONS(1552), - [anon_sym_e_GT_GT] = ACTIONS(1552), - [anon_sym_o_GT_GT] = ACTIONS(1552), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1552), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1552), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1552), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1552), - [aux_sym_unquoted_token1] = ACTIONS(1550), - [aux_sym_unquoted_token2] = ACTIONS(1550), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1552), + [anon_sym_STAR_STAR] = ACTIONS(3092), + [anon_sym_PLUS_PLUS] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3094), + [anon_sym_SLASH] = ACTIONS(3094), + [anon_sym_mod] = ACTIONS(3092), + [anon_sym_SLASH_SLASH] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(3094), + [anon_sym_DASH] = ACTIONS(3092), + [anon_sym_bit_DASHshl] = ACTIONS(3092), + [anon_sym_bit_DASHshr] = ACTIONS(3092), + [anon_sym_EQ_TILDE] = ACTIONS(3092), + [anon_sym_BANG_TILDE] = ACTIONS(3092), + [anon_sym_bit_DASHand] = ACTIONS(3092), + [anon_sym_bit_DASHxor] = ACTIONS(3092), + [anon_sym_bit_DASHor] = ACTIONS(3092), + [anon_sym_and] = ACTIONS(3092), + [anon_sym_xor] = ACTIONS(3092), + [anon_sym_or] = ACTIONS(3092), + [anon_sym_in] = ACTIONS(3092), + [anon_sym_not_DASHin] = ACTIONS(3092), + [anon_sym_has] = ACTIONS(3092), + [anon_sym_not_DASHhas] = ACTIONS(3092), + [anon_sym_starts_DASHwith] = ACTIONS(3092), + [anon_sym_ends_DASHwith] = ACTIONS(3092), + [anon_sym_EQ_EQ] = ACTIONS(3092), + [anon_sym_BANG_EQ] = ACTIONS(3092), + [anon_sym_LT] = ACTIONS(3094), + [anon_sym_LT_EQ] = ACTIONS(3092), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_GT_EQ] = ACTIONS(3092), + [aux_sym_cmd_identifier_token41] = ACTIONS(3096), + [sym__newline] = ACTIONS(2073), + [anon_sym_PIPE] = ACTIONS(2073), + [anon_sym_err_GT_PIPE] = ACTIONS(2073), + [anon_sym_out_GT_PIPE] = ACTIONS(2073), + [anon_sym_e_GT_PIPE] = ACTIONS(2073), + [anon_sym_o_GT_PIPE] = ACTIONS(2073), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2073), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2073), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2073), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2073), + [anon_sym_GT2] = ACTIONS(2073), + [anon_sym_DASH2] = ACTIONS(2073), + [anon_sym_in2] = ACTIONS(2073), + [anon_sym_STAR2] = ACTIONS(2073), + [anon_sym_and2] = ACTIONS(2073), + [anon_sym_xor2] = ACTIONS(2073), + [anon_sym_or2] = ACTIONS(2073), + [anon_sym_not_DASHin2] = ACTIONS(2073), + [anon_sym_has2] = ACTIONS(2073), + [anon_sym_not_DASHhas2] = ACTIONS(2073), + [anon_sym_starts_DASHwith2] = ACTIONS(2073), + [anon_sym_ends_DASHwith2] = ACTIONS(2073), + [anon_sym_EQ_EQ2] = ACTIONS(2073), + [anon_sym_BANG_EQ2] = ACTIONS(2073), + [anon_sym_LT2] = ACTIONS(2073), + [anon_sym_LT_EQ2] = ACTIONS(2073), + [anon_sym_GT_EQ2] = ACTIONS(2073), + [anon_sym_EQ_TILDE2] = ACTIONS(2073), + [anon_sym_BANG_TILDE2] = ACTIONS(2073), + [anon_sym_STAR_STAR2] = ACTIONS(2073), + [anon_sym_PLUS_PLUS2] = ACTIONS(2073), + [anon_sym_SLASH2] = ACTIONS(2073), + [anon_sym_mod2] = ACTIONS(2073), + [anon_sym_SLASH_SLASH2] = ACTIONS(2073), + [anon_sym_PLUS2] = ACTIONS(2073), + [anon_sym_bit_DASHshl2] = ACTIONS(2073), + [anon_sym_bit_DASHshr2] = ACTIONS(2073), + [anon_sym_bit_DASHand2] = ACTIONS(2073), + [anon_sym_bit_DASHxor2] = ACTIONS(2073), + [anon_sym_bit_DASHor2] = ACTIONS(2073), + [anon_sym_POUND] = ACTIONS(3), }, [1254] = { - [sym__val_range] = STATE(7490), - [sym__value] = STATE(1828), - [sym_val_nothing] = STATE(1903), - [sym_val_bool] = STATE(1794), - [sym_val_variable] = STATE(1903), - [sym_val_number] = STATE(1903), - [sym__val_number_decimal] = STATE(1375), - [sym__val_number] = STATE(1904), - [sym_val_duration] = STATE(1903), - [sym_val_filesize] = STATE(1903), - [sym_val_binary] = STATE(1903), - [sym_val_string] = STATE(1903), - [sym__raw_str] = STATE(1876), - [sym__str_double_quotes] = STATE(1876), - [sym_val_interpolated] = STATE(1903), - [sym__inter_single_quotes] = STATE(1874), - [sym__inter_double_quotes] = STATE(1875), - [sym_val_list] = STATE(1903), - [sym_val_record] = STATE(1903), - [sym_val_table] = STATE(1903), - [sym_val_closure] = STATE(1903), - [sym_unquoted] = STATE(1829), - [sym__unquoted_anonymous_prefix] = STATE(7715), + [sym__expr_parenthesized_immediate] = STATE(1544), + [sym__immediate_decimal] = STATE(1545), + [sym_val_variable] = STATE(1544), [sym_comment] = STATE(1254), - [anon_sym_LBRACK] = ACTIONS(2873), - [anon_sym_LPAREN] = ACTIONS(4149), - [anon_sym_DOLLAR] = ACTIONS(4120), - [anon_sym_LBRACE] = ACTIONS(2883), - [anon_sym_DOT_DOT] = ACTIONS(4151), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4153), - [anon_sym_DOT_DOT_LT] = ACTIONS(4153), - [anon_sym_null] = ACTIONS(4155), - [anon_sym_true] = ACTIONS(4157), - [anon_sym_false] = ACTIONS(4157), - [aux_sym__val_number_decimal_token1] = ACTIONS(4159), - [aux_sym__val_number_decimal_token2] = ACTIONS(4161), - [aux_sym__val_number_decimal_token3] = ACTIONS(4163), - [aux_sym__val_number_decimal_token4] = ACTIONS(4165), - [aux_sym__val_number_token1] = ACTIONS(2901), - [aux_sym__val_number_token2] = ACTIONS(2901), - [aux_sym__val_number_token3] = ACTIONS(2901), - [aux_sym__val_number_token4] = ACTIONS(4167), - [aux_sym__val_number_token5] = ACTIONS(4167), - [aux_sym__val_number_token6] = ACTIONS(4167), - [anon_sym_0b] = ACTIONS(2905), - [anon_sym_0o] = ACTIONS(2907), - [anon_sym_0x] = ACTIONS(2907), - [sym_val_date] = ACTIONS(4169), - [anon_sym_DQUOTE] = ACTIONS(2911), - [sym__str_single_quotes] = ACTIONS(2913), - [sym__str_back_ticks] = ACTIONS(2913), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2915), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2917), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(4171), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2921), + [sym__newline] = ACTIONS(1532), + [anon_sym_SEMI] = ACTIONS(1532), + [anon_sym_PIPE] = ACTIONS(1532), + [anon_sym_err_GT_PIPE] = ACTIONS(1532), + [anon_sym_out_GT_PIPE] = ACTIONS(1532), + [anon_sym_e_GT_PIPE] = ACTIONS(1532), + [anon_sym_o_GT_PIPE] = ACTIONS(1532), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1532), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1532), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1532), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1532), + [anon_sym_LBRACK] = ACTIONS(1532), + [anon_sym_LPAREN] = ACTIONS(1522), + [anon_sym_RPAREN] = ACTIONS(1532), + [anon_sym_DOLLAR] = ACTIONS(2788), + [anon_sym_DASH_DASH] = ACTIONS(1532), + [anon_sym_DASH2] = ACTIONS(1522), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_RBRACE] = ACTIONS(1532), + [anon_sym_DOT_DOT] = ACTIONS(1522), + [anon_sym_LPAREN2] = ACTIONS(3966), + [anon_sym_DOT] = ACTIONS(4001), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1532), + [anon_sym_DOT_DOT_LT] = ACTIONS(1532), + [aux_sym__immediate_decimal_token1] = ACTIONS(4003), + [aux_sym__immediate_decimal_token3] = ACTIONS(4005), + [aux_sym__immediate_decimal_token4] = ACTIONS(4007), + [aux_sym__immediate_decimal_token5] = ACTIONS(4009), + [anon_sym_null] = ACTIONS(1532), + [anon_sym_true] = ACTIONS(1532), + [anon_sym_false] = ACTIONS(1532), + [aux_sym__val_number_decimal_token1] = ACTIONS(1522), + [aux_sym__val_number_decimal_token2] = ACTIONS(1522), + [aux_sym__val_number_decimal_token3] = ACTIONS(1522), + [aux_sym__val_number_decimal_token4] = ACTIONS(1522), + [aux_sym__val_number_token1] = ACTIONS(1532), + [aux_sym__val_number_token2] = ACTIONS(1532), + [aux_sym__val_number_token3] = ACTIONS(1532), + [aux_sym__val_number_token4] = ACTIONS(1532), + [aux_sym__val_number_token5] = ACTIONS(1532), + [aux_sym__val_number_token6] = ACTIONS(1532), + [anon_sym_0b] = ACTIONS(1522), + [anon_sym_0o] = ACTIONS(1522), + [anon_sym_0x] = ACTIONS(1522), + [sym_val_date] = ACTIONS(1532), + [anon_sym_DQUOTE] = ACTIONS(1532), + [sym__str_single_quotes] = ACTIONS(1532), + [sym__str_back_ticks] = ACTIONS(1532), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1532), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1532), + [anon_sym_err_GT] = ACTIONS(1522), + [anon_sym_out_GT] = ACTIONS(1522), + [anon_sym_e_GT] = ACTIONS(1522), + [anon_sym_o_GT] = ACTIONS(1522), + [anon_sym_err_PLUSout_GT] = ACTIONS(1522), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1522), + [anon_sym_o_PLUSe_GT] = ACTIONS(1522), + [anon_sym_e_PLUSo_GT] = ACTIONS(1522), + [anon_sym_err_GT_GT] = ACTIONS(1532), + [anon_sym_out_GT_GT] = ACTIONS(1532), + [anon_sym_e_GT_GT] = ACTIONS(1532), + [anon_sym_o_GT_GT] = ACTIONS(1532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1532), + [aux_sym_unquoted_token1] = ACTIONS(1522), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1532), }, [1255] = { - [sym__val_range] = STATE(7612), - [sym__value] = STATE(5270), - [sym_val_nothing] = STATE(4353), - [sym_val_bool] = STATE(5750), - [sym_val_variable] = STATE(4353), - [sym_val_number] = STATE(4353), - [sym__val_number_decimal] = STATE(5316), - [sym__val_number] = STATE(4251), - [sym_val_duration] = STATE(4353), - [sym_val_filesize] = STATE(4353), - [sym_val_binary] = STATE(4353), - [sym_val_string] = STATE(4353), - [sym__raw_str] = STATE(5611), - [sym__str_double_quotes] = STATE(5611), - [sym_val_interpolated] = STATE(4353), - [sym__inter_single_quotes] = STATE(5076), - [sym__inter_double_quotes] = STATE(5077), - [sym_val_list] = STATE(4353), - [sym_val_record] = STATE(4353), - [sym_val_table] = STATE(4353), - [sym_val_closure] = STATE(4353), - [sym_unquoted] = STATE(5271), - [sym__unquoted_anonymous_prefix] = STATE(7833), [sym_comment] = STATE(1255), - [anon_sym_LBRACK] = ACTIONS(4060), - [anon_sym_LPAREN] = ACTIONS(4062), - [anon_sym_DOLLAR] = ACTIONS(4064), - [anon_sym_LBRACE] = ACTIONS(4066), - [anon_sym_DOT_DOT] = ACTIONS(4068), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4070), - [anon_sym_DOT_DOT_LT] = ACTIONS(4070), - [anon_sym_null] = ACTIONS(4072), - [anon_sym_true] = ACTIONS(4074), - [anon_sym_false] = ACTIONS(4074), - [aux_sym__val_number_decimal_token1] = ACTIONS(4076), - [aux_sym__val_number_decimal_token2] = ACTIONS(4078), - [aux_sym__val_number_decimal_token3] = ACTIONS(4080), - [aux_sym__val_number_decimal_token4] = ACTIONS(4082), - [aux_sym__val_number_token1] = ACTIONS(3600), - [aux_sym__val_number_token2] = ACTIONS(3600), - [aux_sym__val_number_token3] = ACTIONS(3600), - [aux_sym__val_number_token4] = ACTIONS(4084), - [aux_sym__val_number_token5] = ACTIONS(4084), - [aux_sym__val_number_token6] = ACTIONS(4084), - [anon_sym_0b] = ACTIONS(3604), - [anon_sym_0o] = ACTIONS(3606), - [anon_sym_0x] = ACTIONS(3606), - [sym_val_date] = ACTIONS(4086), - [anon_sym_DQUOTE] = ACTIONS(4088), - [sym__str_single_quotes] = ACTIONS(4090), - [sym__str_back_ticks] = ACTIONS(4090), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3614), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3616), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(4092), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4094), + [anon_sym_EQ] = ACTIONS(968), + [anon_sym_PLUS_EQ] = ACTIONS(970), + [anon_sym_DASH_EQ] = ACTIONS(970), + [anon_sym_STAR_EQ] = ACTIONS(970), + [anon_sym_SLASH_EQ] = ACTIONS(970), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(970), + [sym__newline] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(970), + [anon_sym_PIPE] = ACTIONS(970), + [anon_sym_err_GT_PIPE] = ACTIONS(970), + [anon_sym_out_GT_PIPE] = ACTIONS(970), + [anon_sym_e_GT_PIPE] = ACTIONS(970), + [anon_sym_o_GT_PIPE] = ACTIONS(970), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(970), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(970), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(970), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(970), + [anon_sym_RPAREN] = ACTIONS(970), + [anon_sym_GT2] = ACTIONS(968), + [anon_sym_DASH2] = ACTIONS(968), + [anon_sym_in2] = ACTIONS(970), + [anon_sym_RBRACE] = ACTIONS(970), + [anon_sym_STAR2] = ACTIONS(968), + [anon_sym_QMARK2] = ACTIONS(4011), + [anon_sym_and2] = ACTIONS(970), + [anon_sym_xor2] = ACTIONS(970), + [anon_sym_or2] = ACTIONS(970), + [anon_sym_not_DASHin2] = ACTIONS(970), + [anon_sym_has2] = ACTIONS(970), + [anon_sym_not_DASHhas2] = ACTIONS(970), + [anon_sym_starts_DASHwith2] = ACTIONS(970), + [anon_sym_ends_DASHwith2] = ACTIONS(970), + [anon_sym_EQ_EQ2] = ACTIONS(970), + [anon_sym_BANG_EQ2] = ACTIONS(970), + [anon_sym_LT2] = ACTIONS(968), + [anon_sym_LT_EQ2] = ACTIONS(970), + [anon_sym_GT_EQ2] = ACTIONS(970), + [anon_sym_EQ_TILDE2] = ACTIONS(970), + [anon_sym_BANG_TILDE2] = ACTIONS(970), + [anon_sym_STAR_STAR2] = ACTIONS(970), + [anon_sym_PLUS_PLUS2] = ACTIONS(968), + [anon_sym_SLASH2] = ACTIONS(968), + [anon_sym_mod2] = ACTIONS(970), + [anon_sym_SLASH_SLASH2] = ACTIONS(970), + [anon_sym_PLUS2] = ACTIONS(968), + [anon_sym_bit_DASHshl2] = ACTIONS(970), + [anon_sym_bit_DASHshr2] = ACTIONS(970), + [anon_sym_bit_DASHand2] = ACTIONS(970), + [anon_sym_bit_DASHxor2] = ACTIONS(970), + [anon_sym_bit_DASHor2] = ACTIONS(970), + [anon_sym_DOT_DOT2] = ACTIONS(968), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(970), + [anon_sym_DOT_DOT_LT2] = ACTIONS(970), + [anon_sym_COLON2] = ACTIONS(970), + [anon_sym_DOT2] = ACTIONS(968), + [anon_sym_err_GT] = ACTIONS(968), + [anon_sym_out_GT] = ACTIONS(968), + [anon_sym_e_GT] = ACTIONS(968), + [anon_sym_o_GT] = ACTIONS(968), + [anon_sym_err_PLUSout_GT] = ACTIONS(968), + [anon_sym_out_PLUSerr_GT] = ACTIONS(968), + [anon_sym_o_PLUSe_GT] = ACTIONS(968), + [anon_sym_e_PLUSo_GT] = ACTIONS(968), + [anon_sym_err_GT_GT] = ACTIONS(970), + [anon_sym_out_GT_GT] = ACTIONS(970), + [anon_sym_e_GT_GT] = ACTIONS(970), + [anon_sym_o_GT_GT] = ACTIONS(970), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(970), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(970), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(970), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(970), + [anon_sym_POUND] = ACTIONS(247), }, [1256] = { [sym_comment] = STATE(1256), - [sym__newline] = ACTIONS(1544), - [anon_sym_SEMI] = ACTIONS(1544), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_err_GT_PIPE] = ACTIONS(1544), - [anon_sym_out_GT_PIPE] = ACTIONS(1544), - [anon_sym_e_GT_PIPE] = ACTIONS(1544), - [anon_sym_o_GT_PIPE] = ACTIONS(1544), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1544), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1544), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1544), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1544), - [anon_sym_LPAREN] = ACTIONS(1544), - [anon_sym_RPAREN] = ACTIONS(1544), - [anon_sym_DOLLAR] = ACTIONS(1542), - [anon_sym_DASH_DASH] = ACTIONS(1544), - [anon_sym_DASH2] = ACTIONS(1542), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_RBRACE] = ACTIONS(1544), - [anon_sym_DOT_DOT] = ACTIONS(1542), - [anon_sym_DOT_DOT2] = ACTIONS(1542), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1542), - [anon_sym_DOT_DOT_LT] = ACTIONS(1542), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1544), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1544), - [aux_sym__immediate_decimal_token1] = ACTIONS(4173), - [aux_sym__immediate_decimal_token2] = ACTIONS(4175), - [anon_sym_null] = ACTIONS(1544), - [anon_sym_true] = ACTIONS(1544), - [anon_sym_false] = ACTIONS(1544), - [aux_sym__val_number_decimal_token1] = ACTIONS(1542), - [aux_sym__val_number_decimal_token2] = ACTIONS(1544), - [aux_sym__val_number_decimal_token3] = ACTIONS(1544), - [aux_sym__val_number_decimal_token4] = ACTIONS(1544), - [aux_sym__val_number_token1] = ACTIONS(1544), - [aux_sym__val_number_token2] = ACTIONS(1544), - [aux_sym__val_number_token3] = ACTIONS(1544), - [aux_sym__val_number_token4] = ACTIONS(1544), - [aux_sym__val_number_token5] = ACTIONS(1544), - [aux_sym__val_number_token6] = ACTIONS(1544), - [anon_sym_0b] = ACTIONS(1542), - [sym_filesize_unit] = ACTIONS(1544), - [sym_duration_unit] = ACTIONS(1544), - [anon_sym_0o] = ACTIONS(1542), - [anon_sym_0x] = ACTIONS(1542), - [sym_val_date] = ACTIONS(1544), - [anon_sym_DQUOTE] = ACTIONS(1544), - [sym__str_single_quotes] = ACTIONS(1544), - [sym__str_back_ticks] = ACTIONS(1544), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1544), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1544), - [anon_sym_err_GT] = ACTIONS(1542), - [anon_sym_out_GT] = ACTIONS(1542), - [anon_sym_e_GT] = ACTIONS(1542), - [anon_sym_o_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT] = ACTIONS(1542), - [anon_sym_err_GT_GT] = ACTIONS(1544), - [anon_sym_out_GT_GT] = ACTIONS(1544), - [anon_sym_e_GT_GT] = ACTIONS(1544), - [anon_sym_o_GT_GT] = ACTIONS(1544), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1544), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1544), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1544), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1544), - [aux_sym_unquoted_token1] = ACTIONS(1542), - [aux_sym_unquoted_token2] = ACTIONS(1542), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1544), + [sym__newline] = ACTIONS(1514), + [anon_sym_SEMI] = ACTIONS(1514), + [anon_sym_PIPE] = ACTIONS(1514), + [anon_sym_err_GT_PIPE] = ACTIONS(1514), + [anon_sym_out_GT_PIPE] = ACTIONS(1514), + [anon_sym_e_GT_PIPE] = ACTIONS(1514), + [anon_sym_o_GT_PIPE] = ACTIONS(1514), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1514), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1514), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1514), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1514), + [anon_sym_LBRACK] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_RPAREN] = ACTIONS(1514), + [anon_sym_DOLLAR] = ACTIONS(1512), + [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_RBRACE] = ACTIONS(1514), + [anon_sym_DOT_DOT] = ACTIONS(1512), + [anon_sym_LPAREN2] = ACTIONS(1514), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT] = ACTIONS(4013), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [aux_sym__immediate_decimal_token2] = ACTIONS(4015), + [anon_sym_null] = ACTIONS(1514), + [anon_sym_true] = ACTIONS(1514), + [anon_sym_false] = ACTIONS(1514), + [aux_sym__val_number_decimal_token1] = ACTIONS(1512), + [aux_sym__val_number_decimal_token2] = ACTIONS(1514), + [aux_sym__val_number_decimal_token3] = ACTIONS(1514), + [aux_sym__val_number_decimal_token4] = ACTIONS(1514), + [aux_sym__val_number_token1] = ACTIONS(1514), + [aux_sym__val_number_token2] = ACTIONS(1514), + [aux_sym__val_number_token3] = ACTIONS(1514), + [aux_sym__val_number_token4] = ACTIONS(1514), + [aux_sym__val_number_token5] = ACTIONS(1514), + [aux_sym__val_number_token6] = ACTIONS(1514), + [anon_sym_0b] = ACTIONS(1512), + [sym_filesize_unit] = ACTIONS(1514), + [sym_duration_unit] = ACTIONS(1514), + [anon_sym_0o] = ACTIONS(1512), + [anon_sym_0x] = ACTIONS(1512), + [sym_val_date] = ACTIONS(1514), + [anon_sym_DQUOTE] = ACTIONS(1514), + [sym__str_single_quotes] = ACTIONS(1514), + [sym__str_back_ticks] = ACTIONS(1514), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1514), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1514), + [anon_sym_err_GT] = ACTIONS(1512), + [anon_sym_out_GT] = ACTIONS(1512), + [anon_sym_e_GT] = ACTIONS(1512), + [anon_sym_o_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT] = ACTIONS(1512), + [anon_sym_err_GT_GT] = ACTIONS(1514), + [anon_sym_out_GT_GT] = ACTIONS(1514), + [anon_sym_e_GT_GT] = ACTIONS(1514), + [anon_sym_o_GT_GT] = ACTIONS(1514), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1514), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1514), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1514), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1514), + [aux_sym_unquoted_token1] = ACTIONS(1512), + [aux_sym_unquoted_token2] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1514), }, [1257] = { + [sym__expr_parenthesized_immediate] = STATE(1624), + [sym__immediate_decimal] = STATE(1508), + [sym_val_variable] = STATE(1624), [sym_comment] = STATE(1257), - [sym__newline] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1552), - [anon_sym_PIPE] = ACTIONS(1552), - [anon_sym_err_GT_PIPE] = ACTIONS(1552), - [anon_sym_out_GT_PIPE] = ACTIONS(1552), - [anon_sym_e_GT_PIPE] = ACTIONS(1552), - [anon_sym_o_GT_PIPE] = ACTIONS(1552), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1552), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1552), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1552), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1552), - [anon_sym_LBRACK] = ACTIONS(1552), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_RPAREN] = ACTIONS(1552), - [anon_sym_DOLLAR] = ACTIONS(1550), - [anon_sym_DASH_DASH] = ACTIONS(1552), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_LBRACE] = ACTIONS(1552), - [anon_sym_RBRACE] = ACTIONS(1552), - [anon_sym_DOT_DOT] = ACTIONS(1550), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT] = ACTIONS(4177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1550), - [anon_sym_DOT_DOT_LT] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [aux_sym__immediate_decimal_token2] = ACTIONS(4179), - [anon_sym_null] = ACTIONS(1552), - [anon_sym_true] = ACTIONS(1552), - [anon_sym_false] = ACTIONS(1552), - [aux_sym__val_number_decimal_token1] = ACTIONS(1550), - [aux_sym__val_number_decimal_token2] = ACTIONS(1552), - [aux_sym__val_number_decimal_token3] = ACTIONS(1552), - [aux_sym__val_number_decimal_token4] = ACTIONS(1552), - [aux_sym__val_number_token1] = ACTIONS(1552), - [aux_sym__val_number_token2] = ACTIONS(1552), - [aux_sym__val_number_token3] = ACTIONS(1552), - [aux_sym__val_number_token4] = ACTIONS(1552), - [aux_sym__val_number_token5] = ACTIONS(1552), - [aux_sym__val_number_token6] = ACTIONS(1552), - [anon_sym_0b] = ACTIONS(1550), - [sym_filesize_unit] = ACTIONS(1552), - [sym_duration_unit] = ACTIONS(1552), - [anon_sym_0o] = ACTIONS(1550), - [anon_sym_0x] = ACTIONS(1550), - [sym_val_date] = ACTIONS(1552), - [anon_sym_DQUOTE] = ACTIONS(1552), - [sym__str_single_quotes] = ACTIONS(1552), - [sym__str_back_ticks] = ACTIONS(1552), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1552), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1552), - [anon_sym_err_GT] = ACTIONS(1550), - [anon_sym_out_GT] = ACTIONS(1550), - [anon_sym_e_GT] = ACTIONS(1550), - [anon_sym_o_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT] = ACTIONS(1550), - [anon_sym_err_GT_GT] = ACTIONS(1552), - [anon_sym_out_GT_GT] = ACTIONS(1552), - [anon_sym_e_GT_GT] = ACTIONS(1552), - [anon_sym_o_GT_GT] = ACTIONS(1552), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1552), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1552), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1552), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1552), - [aux_sym_unquoted_token1] = ACTIONS(1550), - [aux_sym_unquoted_token2] = ACTIONS(1550), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1552), + [ts_builtin_sym_end] = 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(1441), + [anon_sym_DOLLAR] = ACTIONS(2965), + [anon_sym_DASH_DASH] = ACTIONS(1455), + [anon_sym_DASH2] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1455), + [anon_sym_DOT_DOT] = ACTIONS(1441), + [anon_sym_LPAREN2] = ACTIONS(4017), + [anon_sym_DOT] = ACTIONS(4019), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1455), + [anon_sym_DOT_DOT_LT] = ACTIONS(1455), + [aux_sym__immediate_decimal_token1] = ACTIONS(4021), + [aux_sym__immediate_decimal_token3] = ACTIONS(4023), + [aux_sym__immediate_decimal_token4] = ACTIONS(4025), + [aux_sym__immediate_decimal_token5] = ACTIONS(4027), + [anon_sym_null] = ACTIONS(1455), + [anon_sym_true] = ACTIONS(1455), + [anon_sym_false] = ACTIONS(1455), + [aux_sym__val_number_decimal_token1] = ACTIONS(1441), + [aux_sym__val_number_decimal_token2] = ACTIONS(1441), + [aux_sym__val_number_decimal_token3] = ACTIONS(1441), + [aux_sym__val_number_decimal_token4] = ACTIONS(1441), + [aux_sym__val_number_token1] = ACTIONS(1455), + [aux_sym__val_number_token2] = ACTIONS(1455), + [aux_sym__val_number_token3] = ACTIONS(1455), + [aux_sym__val_number_token4] = ACTIONS(1455), + [aux_sym__val_number_token5] = ACTIONS(1455), + [aux_sym__val_number_token6] = ACTIONS(1455), + [anon_sym_0b] = ACTIONS(1441), + [anon_sym_0o] = ACTIONS(1441), + [anon_sym_0x] = ACTIONS(1441), + [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(1441), + [anon_sym_out_GT] = ACTIONS(1441), + [anon_sym_e_GT] = ACTIONS(1441), + [anon_sym_o_GT] = ACTIONS(1441), + [anon_sym_err_PLUSout_GT] = ACTIONS(1441), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1441), + [anon_sym_o_PLUSe_GT] = ACTIONS(1441), + [anon_sym_e_PLUSo_GT] = ACTIONS(1441), + [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(1441), + [aux_sym_unquoted_token2] = ACTIONS(1457), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1455), }, [1258] = { - [sym__val_range] = STATE(7519), - [sym__value] = STATE(5242), - [sym_val_nothing] = STATE(4353), - [sym_val_bool] = STATE(5750), - [sym_val_variable] = STATE(4353), - [sym_val_number] = STATE(4353), - [sym__val_number_decimal] = STATE(5237), - [sym__val_number] = STATE(4251), - [sym_val_duration] = STATE(4353), - [sym_val_filesize] = STATE(4353), - [sym_val_binary] = STATE(4353), - [sym_val_string] = STATE(4353), - [sym__raw_str] = STATE(3668), - [sym__str_double_quotes] = STATE(3668), - [sym_val_interpolated] = STATE(4353), - [sym__inter_single_quotes] = STATE(5264), - [sym__inter_double_quotes] = STATE(5265), - [sym_val_list] = STATE(4353), - [sym_val_record] = STATE(4353), - [sym_val_table] = STATE(4353), - [sym_val_closure] = STATE(4353), - [sym_unquoted] = STATE(5243), - [sym__unquoted_anonymous_prefix] = STATE(7789), [sym_comment] = STATE(1258), - [anon_sym_LBRACK] = ACTIONS(4096), - [anon_sym_LPAREN] = ACTIONS(4062), - [anon_sym_DOLLAR] = ACTIONS(4098), - [anon_sym_LBRACE] = ACTIONS(4100), - [anon_sym_DOT_DOT] = ACTIONS(4102), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4104), - [anon_sym_DOT_DOT_LT] = ACTIONS(4104), - [anon_sym_null] = ACTIONS(4072), - [anon_sym_true] = ACTIONS(4074), - [anon_sym_false] = ACTIONS(4074), - [aux_sym__val_number_decimal_token1] = ACTIONS(4106), - [aux_sym__val_number_decimal_token2] = ACTIONS(4108), - [aux_sym__val_number_decimal_token3] = ACTIONS(4110), - [aux_sym__val_number_decimal_token4] = ACTIONS(4112), - [aux_sym__val_number_token1] = ACTIONS(3600), - [aux_sym__val_number_token2] = ACTIONS(3600), - [aux_sym__val_number_token3] = ACTIONS(3600), - [aux_sym__val_number_token4] = ACTIONS(4114), - [aux_sym__val_number_token5] = ACTIONS(4114), - [aux_sym__val_number_token6] = ACTIONS(4114), - [anon_sym_0b] = ACTIONS(3604), - [anon_sym_0o] = ACTIONS(3606), - [anon_sym_0x] = ACTIONS(3606), - [sym_val_date] = ACTIONS(4086), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym__str_single_quotes] = ACTIONS(1288), - [sym__str_back_ticks] = ACTIONS(1288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4116), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4118), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3490), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1290), + [anon_sym_EQ] = ACTIONS(946), + [anon_sym_PLUS_EQ] = ACTIONS(948), + [anon_sym_DASH_EQ] = ACTIONS(948), + [anon_sym_STAR_EQ] = ACTIONS(948), + [anon_sym_SLASH_EQ] = ACTIONS(948), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(948), + [sym__newline] = ACTIONS(948), + [anon_sym_SEMI] = ACTIONS(948), + [anon_sym_PIPE] = ACTIONS(948), + [anon_sym_err_GT_PIPE] = ACTIONS(948), + [anon_sym_out_GT_PIPE] = ACTIONS(948), + [anon_sym_e_GT_PIPE] = ACTIONS(948), + [anon_sym_o_GT_PIPE] = ACTIONS(948), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(948), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(948), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(948), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(948), + [anon_sym_RPAREN] = ACTIONS(948), + [anon_sym_GT2] = ACTIONS(946), + [anon_sym_DASH2] = ACTIONS(946), + [anon_sym_in2] = ACTIONS(948), + [anon_sym_RBRACE] = ACTIONS(948), + [anon_sym_STAR2] = ACTIONS(946), + [anon_sym_QMARK2] = ACTIONS(948), + [anon_sym_and2] = ACTIONS(948), + [anon_sym_xor2] = ACTIONS(948), + [anon_sym_or2] = ACTIONS(948), + [anon_sym_not_DASHin2] = ACTIONS(948), + [anon_sym_has2] = ACTIONS(948), + [anon_sym_not_DASHhas2] = ACTIONS(948), + [anon_sym_starts_DASHwith2] = ACTIONS(948), + [anon_sym_ends_DASHwith2] = ACTIONS(948), + [anon_sym_EQ_EQ2] = ACTIONS(948), + [anon_sym_BANG_EQ2] = ACTIONS(948), + [anon_sym_LT2] = ACTIONS(946), + [anon_sym_LT_EQ2] = ACTIONS(948), + [anon_sym_GT_EQ2] = ACTIONS(948), + [anon_sym_EQ_TILDE2] = ACTIONS(948), + [anon_sym_BANG_TILDE2] = ACTIONS(948), + [anon_sym_STAR_STAR2] = ACTIONS(948), + [anon_sym_PLUS_PLUS2] = ACTIONS(946), + [anon_sym_SLASH2] = ACTIONS(946), + [anon_sym_mod2] = ACTIONS(948), + [anon_sym_SLASH_SLASH2] = ACTIONS(948), + [anon_sym_PLUS2] = ACTIONS(946), + [anon_sym_bit_DASHshl2] = ACTIONS(948), + [anon_sym_bit_DASHshr2] = ACTIONS(948), + [anon_sym_bit_DASHand2] = ACTIONS(948), + [anon_sym_bit_DASHxor2] = ACTIONS(948), + [anon_sym_bit_DASHor2] = ACTIONS(948), + [anon_sym_DOT_DOT2] = ACTIONS(946), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(948), + [anon_sym_DOT_DOT_LT2] = ACTIONS(948), + [anon_sym_COLON2] = ACTIONS(948), + [anon_sym_DOT2] = ACTIONS(946), + [anon_sym_err_GT] = ACTIONS(946), + [anon_sym_out_GT] = ACTIONS(946), + [anon_sym_e_GT] = ACTIONS(946), + [anon_sym_o_GT] = ACTIONS(946), + [anon_sym_err_PLUSout_GT] = ACTIONS(946), + [anon_sym_out_PLUSerr_GT] = ACTIONS(946), + [anon_sym_o_PLUSe_GT] = ACTIONS(946), + [anon_sym_e_PLUSo_GT] = ACTIONS(946), + [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), + [anon_sym_POUND] = ACTIONS(247), }, [1259] = { - [sym__expr_parenthesized_immediate] = STATE(7378), + [sym__expr_parenthesized_immediate] = STATE(1802), + [sym__immediate_decimal] = STATE(1803), + [sym_val_variable] = STATE(1802), [sym_comment] = STATE(1259), - [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(1638), - [anon_sym_RPAREN] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1638), - [anon_sym_DASH_DASH] = ACTIONS(1650), - [anon_sym_DASH2] = ACTIONS(1638), - [anon_sym_LBRACE] = ACTIONS(1650), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_DOT_DOT] = ACTIONS(1638), - [anon_sym_LPAREN2] = ACTIONS(4181), - [anon_sym_DOT_DOT2] = ACTIONS(4183), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1638), - [anon_sym_DOT_DOT_LT] = ACTIONS(1638), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4185), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4185), - [anon_sym_null] = ACTIONS(1650), - [anon_sym_true] = ACTIONS(1650), - [anon_sym_false] = ACTIONS(1650), - [aux_sym__val_number_decimal_token1] = ACTIONS(1638), - [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), - [aux_sym__val_number_token4] = ACTIONS(1650), - [aux_sym__val_number_token5] = ACTIONS(1650), - [aux_sym__val_number_token6] = ACTIONS(1650), - [anon_sym_0b] = ACTIONS(1638), - [sym_filesize_unit] = ACTIONS(4187), - [sym_duration_unit] = ACTIONS(4189), - [anon_sym_0o] = ACTIONS(1638), - [anon_sym_0x] = ACTIONS(1638), - [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(1638), - [anon_sym_out_GT] = ACTIONS(1638), - [anon_sym_e_GT] = ACTIONS(1638), - [anon_sym_o_GT] = ACTIONS(1638), - [anon_sym_err_PLUSout_GT] = ACTIONS(1638), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1638), - [anon_sym_o_PLUSe_GT] = ACTIONS(1638), - [anon_sym_e_PLUSo_GT] = ACTIONS(1638), - [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(1638), - [aux_sym_unquoted_token2] = ACTIONS(4191), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1650), + [sym__newline] = ACTIONS(1590), + [anon_sym_SEMI] = ACTIONS(1590), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_err_GT_PIPE] = ACTIONS(1590), + [anon_sym_out_GT_PIPE] = ACTIONS(1590), + [anon_sym_e_GT_PIPE] = ACTIONS(1590), + [anon_sym_o_GT_PIPE] = ACTIONS(1590), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1590), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1590), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1590), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(1588), + [anon_sym_RPAREN] = ACTIONS(1590), + [anon_sym_DOLLAR] = ACTIONS(3985), + [anon_sym_DASH_DASH] = ACTIONS(1590), + [anon_sym_DASH2] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1590), + [anon_sym_DOT_DOT] = ACTIONS(1588), + [anon_sym_LPAREN2] = ACTIONS(3987), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1590), + [anon_sym_DOT_DOT_LT] = ACTIONS(1590), + [aux_sym__immediate_decimal_token1] = ACTIONS(4029), + [aux_sym__immediate_decimal_token3] = ACTIONS(4031), + [aux_sym__immediate_decimal_token4] = ACTIONS(4033), + [aux_sym__immediate_decimal_token5] = ACTIONS(4035), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_true] = ACTIONS(1590), + [anon_sym_false] = ACTIONS(1590), + [aux_sym__val_number_decimal_token1] = ACTIONS(1588), + [aux_sym__val_number_decimal_token2] = ACTIONS(1588), + [aux_sym__val_number_decimal_token3] = ACTIONS(1588), + [aux_sym__val_number_decimal_token4] = ACTIONS(1588), + [aux_sym__val_number_token1] = ACTIONS(1590), + [aux_sym__val_number_token2] = ACTIONS(1590), + [aux_sym__val_number_token3] = ACTIONS(1590), + [aux_sym__val_number_token4] = ACTIONS(1590), + [aux_sym__val_number_token5] = ACTIONS(1590), + [aux_sym__val_number_token6] = ACTIONS(1590), + [anon_sym_0b] = ACTIONS(1588), + [anon_sym_0o] = ACTIONS(1588), + [anon_sym_0x] = ACTIONS(1588), + [sym_val_date] = ACTIONS(1590), + [anon_sym_DQUOTE] = ACTIONS(1590), + [sym__str_single_quotes] = ACTIONS(1590), + [sym__str_back_ticks] = ACTIONS(1590), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1590), + [anon_sym_err_GT] = ACTIONS(1588), + [anon_sym_out_GT] = ACTIONS(1588), + [anon_sym_e_GT] = ACTIONS(1588), + [anon_sym_o_GT] = ACTIONS(1588), + [anon_sym_err_PLUSout_GT] = ACTIONS(1588), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1588), + [anon_sym_o_PLUSe_GT] = ACTIONS(1588), + [anon_sym_e_PLUSo_GT] = ACTIONS(1588), + [anon_sym_err_GT_GT] = ACTIONS(1590), + [anon_sym_out_GT_GT] = ACTIONS(1590), + [anon_sym_e_GT_GT] = ACTIONS(1590), + [anon_sym_o_GT_GT] = ACTIONS(1590), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1590), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1590), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1590), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1590), + [aux_sym_unquoted_token1] = ACTIONS(1588), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1590), }, [1260] = { - [sym__expr_parenthesized_immediate] = STATE(1773), - [sym__immediate_decimal] = STATE(1774), - [sym_val_variable] = STATE(1773), + [sym__expr_parenthesized_immediate] = STATE(1800), + [sym__immediate_decimal] = STATE(1801), + [sym_val_variable] = STATE(1800), [sym_comment] = STATE(1260), - [sym__newline] = ACTIONS(1510), - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1510), - [anon_sym_err_GT_PIPE] = ACTIONS(1510), - [anon_sym_out_GT_PIPE] = ACTIONS(1510), - [anon_sym_e_GT_PIPE] = ACTIONS(1510), - [anon_sym_o_GT_PIPE] = ACTIONS(1510), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1510), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1510), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1510), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1500), - [anon_sym_RPAREN] = ACTIONS(1510), - [anon_sym_DOLLAR] = ACTIONS(4022), - [anon_sym_DASH_DASH] = ACTIONS(1510), - [anon_sym_DASH2] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1510), - [anon_sym_RBRACE] = ACTIONS(1510), - [anon_sym_DOT_DOT] = ACTIONS(1500), - [anon_sym_LPAREN2] = ACTIONS(4024), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1510), - [anon_sym_DOT_DOT_LT] = ACTIONS(1510), - [aux_sym__immediate_decimal_token1] = ACTIONS(4193), - [aux_sym__immediate_decimal_token3] = ACTIONS(4195), - [aux_sym__immediate_decimal_token4] = ACTIONS(4197), - [aux_sym__immediate_decimal_token5] = ACTIONS(4199), - [anon_sym_null] = ACTIONS(1510), - [anon_sym_true] = ACTIONS(1510), - [anon_sym_false] = ACTIONS(1510), - [aux_sym__val_number_decimal_token1] = ACTIONS(1500), - [aux_sym__val_number_decimal_token2] = ACTIONS(1500), - [aux_sym__val_number_decimal_token3] = ACTIONS(1500), - [aux_sym__val_number_decimal_token4] = ACTIONS(1500), - [aux_sym__val_number_token1] = ACTIONS(1510), - [aux_sym__val_number_token2] = ACTIONS(1510), - [aux_sym__val_number_token3] = ACTIONS(1510), - [aux_sym__val_number_token4] = ACTIONS(1510), - [aux_sym__val_number_token5] = ACTIONS(1510), - [aux_sym__val_number_token6] = ACTIONS(1510), - [anon_sym_0b] = ACTIONS(1500), - [anon_sym_0o] = ACTIONS(1500), - [anon_sym_0x] = ACTIONS(1500), - [sym_val_date] = ACTIONS(1510), - [anon_sym_DQUOTE] = ACTIONS(1510), - [sym__str_single_quotes] = ACTIONS(1510), - [sym__str_back_ticks] = ACTIONS(1510), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1510), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1510), - [anon_sym_err_GT] = ACTIONS(1500), - [anon_sym_out_GT] = ACTIONS(1500), - [anon_sym_e_GT] = ACTIONS(1500), - [anon_sym_o_GT] = ACTIONS(1500), - [anon_sym_err_PLUSout_GT] = ACTIONS(1500), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1500), - [anon_sym_o_PLUSe_GT] = ACTIONS(1500), - [anon_sym_e_PLUSo_GT] = ACTIONS(1500), - [anon_sym_err_GT_GT] = ACTIONS(1510), - [anon_sym_out_GT_GT] = ACTIONS(1510), - [anon_sym_e_GT_GT] = ACTIONS(1510), - [anon_sym_o_GT_GT] = ACTIONS(1510), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1510), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1510), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1510), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1510), - [aux_sym_unquoted_token1] = ACTIONS(1500), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1510), + [sym__newline] = ACTIONS(1586), + [anon_sym_SEMI] = ACTIONS(1586), + [anon_sym_PIPE] = ACTIONS(1586), + [anon_sym_err_GT_PIPE] = ACTIONS(1586), + [anon_sym_out_GT_PIPE] = ACTIONS(1586), + [anon_sym_e_GT_PIPE] = ACTIONS(1586), + [anon_sym_o_GT_PIPE] = ACTIONS(1586), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1586), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1586), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1586), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1586), + [anon_sym_LBRACK] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_RPAREN] = ACTIONS(1586), + [anon_sym_DOLLAR] = ACTIONS(3985), + [anon_sym_DASH_DASH] = ACTIONS(1586), + [anon_sym_DASH2] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1586), + [anon_sym_DOT_DOT] = ACTIONS(1584), + [anon_sym_LPAREN2] = ACTIONS(3987), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1586), + [anon_sym_DOT_DOT_LT] = ACTIONS(1586), + [aux_sym__immediate_decimal_token1] = ACTIONS(4029), + [aux_sym__immediate_decimal_token3] = ACTIONS(4031), + [aux_sym__immediate_decimal_token4] = ACTIONS(4033), + [aux_sym__immediate_decimal_token5] = ACTIONS(4035), + [anon_sym_null] = ACTIONS(1586), + [anon_sym_true] = ACTIONS(1586), + [anon_sym_false] = ACTIONS(1586), + [aux_sym__val_number_decimal_token1] = ACTIONS(1584), + [aux_sym__val_number_decimal_token2] = ACTIONS(1584), + [aux_sym__val_number_decimal_token3] = ACTIONS(1584), + [aux_sym__val_number_decimal_token4] = ACTIONS(1584), + [aux_sym__val_number_token1] = ACTIONS(1586), + [aux_sym__val_number_token2] = ACTIONS(1586), + [aux_sym__val_number_token3] = ACTIONS(1586), + [aux_sym__val_number_token4] = ACTIONS(1586), + [aux_sym__val_number_token5] = ACTIONS(1586), + [aux_sym__val_number_token6] = ACTIONS(1586), + [anon_sym_0b] = ACTIONS(1584), + [anon_sym_0o] = ACTIONS(1584), + [anon_sym_0x] = ACTIONS(1584), + [sym_val_date] = ACTIONS(1586), + [anon_sym_DQUOTE] = ACTIONS(1586), + [sym__str_single_quotes] = ACTIONS(1586), + [sym__str_back_ticks] = ACTIONS(1586), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1586), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1586), + [anon_sym_err_GT] = ACTIONS(1584), + [anon_sym_out_GT] = ACTIONS(1584), + [anon_sym_e_GT] = ACTIONS(1584), + [anon_sym_o_GT] = ACTIONS(1584), + [anon_sym_err_PLUSout_GT] = ACTIONS(1584), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1584), + [anon_sym_o_PLUSe_GT] = ACTIONS(1584), + [anon_sym_e_PLUSo_GT] = ACTIONS(1584), + [anon_sym_err_GT_GT] = ACTIONS(1586), + [anon_sym_out_GT_GT] = ACTIONS(1586), + [anon_sym_e_GT_GT] = ACTIONS(1586), + [anon_sym_o_GT_GT] = ACTIONS(1586), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1586), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1586), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1586), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1586), + [aux_sym_unquoted_token1] = ACTIONS(1584), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1586), }, [1261] = { - [sym__val_range] = STATE(7490), - [sym__value] = STATE(1861), - [sym_val_nothing] = STATE(1903), - [sym_val_bool] = STATE(1794), - [sym_val_variable] = STATE(1903), - [sym_val_number] = STATE(1903), - [sym__val_number_decimal] = STATE(1375), - [sym__val_number] = STATE(1904), - [sym_val_duration] = STATE(1903), - [sym_val_filesize] = STATE(1903), - [sym_val_binary] = STATE(1903), - [sym_val_string] = STATE(1903), - [sym__raw_str] = STATE(1876), - [sym__str_double_quotes] = STATE(1876), - [sym_val_interpolated] = STATE(1903), - [sym__inter_single_quotes] = STATE(1874), - [sym__inter_double_quotes] = STATE(1875), - [sym_val_list] = STATE(1903), - [sym_val_record] = STATE(1903), - [sym_val_table] = STATE(1903), - [sym_val_closure] = STATE(1903), - [sym_unquoted] = STATE(1862), - [sym__unquoted_anonymous_prefix] = STATE(7715), + [sym__val_range] = STATE(7601), + [sym__value] = STATE(2998), + [sym_val_nothing] = STATE(2964), + [sym_val_bool] = STATE(2936), + [sym_val_variable] = STATE(2964), + [sym_val_number] = STATE(2964), + [sym__val_number_decimal] = STATE(2589), + [sym__val_number] = STATE(2969), + [sym_val_duration] = STATE(2964), + [sym_val_filesize] = STATE(2964), + [sym_val_binary] = STATE(2964), + [sym_val_string] = STATE(2964), + [sym__raw_str] = STATE(3014), + [sym__str_double_quotes] = STATE(3014), + [sym_val_interpolated] = STATE(2964), + [sym__inter_single_quotes] = STATE(3044), + [sym__inter_double_quotes] = STATE(3050), + [sym_val_list] = STATE(2964), + [sym_val_record] = STATE(2964), + [sym_val_table] = STATE(2964), + [sym_val_closure] = STATE(2964), + [sym_unquoted] = STATE(3000), + [sym__unquoted_anonymous_prefix] = STATE(7510), [sym_comment] = STATE(1261), - [anon_sym_LBRACK] = ACTIONS(2873), - [anon_sym_LPAREN] = ACTIONS(4149), - [anon_sym_DOLLAR] = ACTIONS(4120), - [anon_sym_LBRACE] = ACTIONS(2883), - [anon_sym_DOT_DOT] = ACTIONS(4151), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4153), - [anon_sym_DOT_DOT_LT] = ACTIONS(4153), - [anon_sym_null] = ACTIONS(4155), - [anon_sym_true] = ACTIONS(4157), - [anon_sym_false] = ACTIONS(4157), - [aux_sym__val_number_decimal_token1] = ACTIONS(4159), - [aux_sym__val_number_decimal_token2] = ACTIONS(4161), - [aux_sym__val_number_decimal_token3] = ACTIONS(4163), - [aux_sym__val_number_decimal_token4] = ACTIONS(4165), - [aux_sym__val_number_token1] = ACTIONS(2901), - [aux_sym__val_number_token2] = ACTIONS(2901), - [aux_sym__val_number_token3] = ACTIONS(2901), - [aux_sym__val_number_token4] = ACTIONS(4167), - [aux_sym__val_number_token5] = ACTIONS(4167), - [aux_sym__val_number_token6] = ACTIONS(4167), - [anon_sym_0b] = ACTIONS(2905), - [anon_sym_0o] = ACTIONS(2907), - [anon_sym_0x] = ACTIONS(2907), - [sym_val_date] = ACTIONS(4169), - [anon_sym_DQUOTE] = ACTIONS(2911), - [sym__str_single_quotes] = ACTIONS(2913), - [sym__str_back_ticks] = ACTIONS(2913), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2915), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2917), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(4171), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2921), + [anon_sym_LBRACK] = ACTIONS(4037), + [anon_sym_LPAREN] = ACTIONS(4039), + [anon_sym_DOLLAR] = ACTIONS(4041), + [anon_sym_LBRACE] = ACTIONS(4043), + [anon_sym_DOT_DOT] = ACTIONS(4045), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4047), + [anon_sym_DOT_DOT_LT] = ACTIONS(4047), + [anon_sym_null] = ACTIONS(4049), + [anon_sym_true] = ACTIONS(4051), + [anon_sym_false] = ACTIONS(4051), + [aux_sym__val_number_decimal_token1] = ACTIONS(4053), + [aux_sym__val_number_decimal_token2] = ACTIONS(4055), + [aux_sym__val_number_decimal_token3] = ACTIONS(4057), + [aux_sym__val_number_decimal_token4] = ACTIONS(4059), + [aux_sym__val_number_token1] = ACTIONS(4061), + [aux_sym__val_number_token2] = ACTIONS(4061), + [aux_sym__val_number_token3] = ACTIONS(4061), + [aux_sym__val_number_token4] = ACTIONS(4063), + [aux_sym__val_number_token5] = ACTIONS(4063), + [aux_sym__val_number_token6] = ACTIONS(4063), + [anon_sym_0b] = ACTIONS(4065), + [anon_sym_0o] = ACTIONS(4067), + [anon_sym_0x] = ACTIONS(4067), + [sym_val_date] = ACTIONS(4069), + [anon_sym_DQUOTE] = ACTIONS(4071), + [sym__str_single_quotes] = ACTIONS(4073), + [sym__str_back_ticks] = ACTIONS(4073), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4075), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4077), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(4079), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4081), }, [1262] = { - [sym__expr_parenthesized_immediate] = STATE(1812), - [sym__immediate_decimal] = STATE(1751), - [sym_val_variable] = STATE(1812), + [sym__val_range] = STATE(7833), + [sym__value] = STATE(5230), + [sym_val_nothing] = STATE(4275), + [sym_val_bool] = STATE(5805), + [sym_val_variable] = STATE(4275), + [sym_val_number] = STATE(4275), + [sym__val_number_decimal] = STATE(5282), + [sym__val_number] = STATE(4276), + [sym_val_duration] = STATE(4275), + [sym_val_filesize] = STATE(4275), + [sym_val_binary] = STATE(4275), + [sym_val_string] = STATE(4275), + [sym__raw_str] = STATE(3793), + [sym__str_double_quotes] = STATE(3793), + [sym_val_interpolated] = STATE(4275), + [sym__inter_single_quotes] = STATE(5297), + [sym__inter_double_quotes] = STATE(5300), + [sym_val_list] = STATE(4275), + [sym_val_record] = STATE(4275), + [sym_val_table] = STATE(4275), + [sym_val_closure] = STATE(4275), + [sym_unquoted] = STATE(5231), + [sym__unquoted_anonymous_prefix] = STATE(7649), [sym_comment] = STATE(1262), - [sym__newline] = ACTIONS(1626), - [anon_sym_SEMI] = ACTIONS(1626), - [anon_sym_PIPE] = ACTIONS(1626), - [anon_sym_err_GT_PIPE] = ACTIONS(1626), - [anon_sym_out_GT_PIPE] = ACTIONS(1626), - [anon_sym_e_GT_PIPE] = ACTIONS(1626), - [anon_sym_o_GT_PIPE] = ACTIONS(1626), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1626), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1626), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1626), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1626), - [anon_sym_LBRACK] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(1624), - [anon_sym_RPAREN] = ACTIONS(1626), - [anon_sym_DOLLAR] = ACTIONS(4022), - [anon_sym_DASH_DASH] = ACTIONS(1626), - [anon_sym_DASH2] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1626), - [anon_sym_DOT_DOT] = ACTIONS(1624), - [anon_sym_LPAREN2] = ACTIONS(4024), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1626), - [anon_sym_DOT_DOT_LT] = ACTIONS(1626), - [aux_sym__immediate_decimal_token1] = ACTIONS(4193), - [aux_sym__immediate_decimal_token3] = ACTIONS(4195), - [aux_sym__immediate_decimal_token4] = ACTIONS(4197), - [aux_sym__immediate_decimal_token5] = ACTIONS(4199), - [anon_sym_null] = ACTIONS(1626), - [anon_sym_true] = ACTIONS(1626), - [anon_sym_false] = ACTIONS(1626), - [aux_sym__val_number_decimal_token1] = ACTIONS(1624), - [aux_sym__val_number_decimal_token2] = ACTIONS(1624), - [aux_sym__val_number_decimal_token3] = ACTIONS(1624), - [aux_sym__val_number_decimal_token4] = ACTIONS(1624), - [aux_sym__val_number_token1] = ACTIONS(1626), - [aux_sym__val_number_token2] = ACTIONS(1626), - [aux_sym__val_number_token3] = ACTIONS(1626), - [aux_sym__val_number_token4] = ACTIONS(1626), - [aux_sym__val_number_token5] = ACTIONS(1626), - [aux_sym__val_number_token6] = ACTIONS(1626), - [anon_sym_0b] = ACTIONS(1624), - [anon_sym_0o] = ACTIONS(1624), - [anon_sym_0x] = ACTIONS(1624), - [sym_val_date] = ACTIONS(1626), - [anon_sym_DQUOTE] = ACTIONS(1626), - [sym__str_single_quotes] = ACTIONS(1626), - [sym__str_back_ticks] = ACTIONS(1626), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1626), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1626), - [anon_sym_err_GT] = ACTIONS(1624), - [anon_sym_out_GT] = ACTIONS(1624), - [anon_sym_e_GT] = ACTIONS(1624), - [anon_sym_o_GT] = ACTIONS(1624), - [anon_sym_err_PLUSout_GT] = ACTIONS(1624), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1624), - [anon_sym_o_PLUSe_GT] = ACTIONS(1624), - [anon_sym_e_PLUSo_GT] = ACTIONS(1624), - [anon_sym_err_GT_GT] = ACTIONS(1626), - [anon_sym_out_GT_GT] = ACTIONS(1626), - [anon_sym_e_GT_GT] = ACTIONS(1626), - [anon_sym_o_GT_GT] = ACTIONS(1626), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1626), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1626), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1626), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1626), - [aux_sym_unquoted_token1] = ACTIONS(1624), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1626), + [anon_sym_LBRACK] = ACTIONS(4083), + [anon_sym_LPAREN] = ACTIONS(4085), + [anon_sym_DOLLAR] = ACTIONS(4087), + [anon_sym_LBRACE] = ACTIONS(4089), + [anon_sym_DOT_DOT] = ACTIONS(4091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4093), + [anon_sym_DOT_DOT_LT] = ACTIONS(4093), + [anon_sym_null] = ACTIONS(4095), + [anon_sym_true] = ACTIONS(4097), + [anon_sym_false] = ACTIONS(4097), + [aux_sym__val_number_decimal_token1] = ACTIONS(4099), + [aux_sym__val_number_decimal_token2] = ACTIONS(4101), + [aux_sym__val_number_decimal_token3] = ACTIONS(4103), + [aux_sym__val_number_decimal_token4] = ACTIONS(4105), + [aux_sym__val_number_token1] = ACTIONS(3676), + [aux_sym__val_number_token2] = ACTIONS(3676), + [aux_sym__val_number_token3] = ACTIONS(3676), + [aux_sym__val_number_token4] = ACTIONS(4107), + [aux_sym__val_number_token5] = ACTIONS(4107), + [aux_sym__val_number_token6] = ACTIONS(4107), + [anon_sym_0b] = ACTIONS(3680), + [anon_sym_0o] = ACTIONS(3682), + [anon_sym_0x] = ACTIONS(3682), + [sym_val_date] = ACTIONS(4109), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym__str_single_quotes] = ACTIONS(1274), + [sym__str_back_ticks] = ACTIONS(1274), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4113), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3538), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1276), }, [1263] = { - [sym__expr_parenthesized_immediate] = STATE(1721), - [sym__immediate_decimal] = STATE(1748), - [sym_val_variable] = STATE(1721), + [sym__val_range] = STATE(7833), + [sym__value] = STATE(5281), + [sym_val_nothing] = STATE(4275), + [sym_val_bool] = STATE(5805), + [sym_val_variable] = STATE(4275), + [sym_val_number] = STATE(4275), + [sym__val_number_decimal] = STATE(5282), + [sym__val_number] = STATE(4276), + [sym_val_duration] = STATE(4275), + [sym_val_filesize] = STATE(4275), + [sym_val_binary] = STATE(4275), + [sym_val_string] = STATE(4275), + [sym__raw_str] = STATE(3793), + [sym__str_double_quotes] = STATE(3793), + [sym_val_interpolated] = STATE(4275), + [sym__inter_single_quotes] = STATE(5297), + [sym__inter_double_quotes] = STATE(5300), + [sym_val_list] = STATE(4275), + [sym_val_record] = STATE(4275), + [sym_val_table] = STATE(4275), + [sym_val_closure] = STATE(4275), + [sym_unquoted] = STATE(5285), + [sym__unquoted_anonymous_prefix] = STATE(7649), [sym_comment] = STATE(1263), - [sym__newline] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_err_GT_PIPE] = ACTIONS(1656), - [anon_sym_out_GT_PIPE] = ACTIONS(1656), - [anon_sym_e_GT_PIPE] = ACTIONS(1656), - [anon_sym_o_GT_PIPE] = ACTIONS(1656), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1656), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1656), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1656), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1656), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_LPAREN] = ACTIONS(1654), - [anon_sym_RPAREN] = ACTIONS(1656), - [anon_sym_DOLLAR] = ACTIONS(4022), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_DASH2] = ACTIONS(1654), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_RBRACE] = ACTIONS(1656), - [anon_sym_DOT_DOT] = ACTIONS(1654), - [anon_sym_LPAREN2] = ACTIONS(4024), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1656), - [anon_sym_DOT_DOT_LT] = ACTIONS(1656), - [aux_sym__immediate_decimal_token1] = ACTIONS(4193), - [aux_sym__immediate_decimal_token3] = ACTIONS(4195), - [aux_sym__immediate_decimal_token4] = ACTIONS(4197), - [aux_sym__immediate_decimal_token5] = ACTIONS(4199), - [anon_sym_null] = ACTIONS(1656), - [anon_sym_true] = ACTIONS(1656), - [anon_sym_false] = ACTIONS(1656), - [aux_sym__val_number_decimal_token1] = ACTIONS(1654), - [aux_sym__val_number_decimal_token2] = ACTIONS(1654), - [aux_sym__val_number_decimal_token3] = ACTIONS(1654), - [aux_sym__val_number_decimal_token4] = ACTIONS(1654), - [aux_sym__val_number_token1] = ACTIONS(1656), - [aux_sym__val_number_token2] = ACTIONS(1656), - [aux_sym__val_number_token3] = ACTIONS(1656), - [aux_sym__val_number_token4] = ACTIONS(1656), - [aux_sym__val_number_token5] = ACTIONS(1656), - [aux_sym__val_number_token6] = ACTIONS(1656), - [anon_sym_0b] = ACTIONS(1654), - [anon_sym_0o] = ACTIONS(1654), - [anon_sym_0x] = ACTIONS(1654), - [sym_val_date] = ACTIONS(1656), - [anon_sym_DQUOTE] = ACTIONS(1656), - [sym__str_single_quotes] = ACTIONS(1656), - [sym__str_back_ticks] = ACTIONS(1656), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1656), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1656), - [anon_sym_err_GT] = ACTIONS(1654), - [anon_sym_out_GT] = ACTIONS(1654), - [anon_sym_e_GT] = ACTIONS(1654), - [anon_sym_o_GT] = ACTIONS(1654), - [anon_sym_err_PLUSout_GT] = ACTIONS(1654), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1654), - [anon_sym_o_PLUSe_GT] = ACTIONS(1654), - [anon_sym_e_PLUSo_GT] = ACTIONS(1654), - [anon_sym_err_GT_GT] = ACTIONS(1656), - [anon_sym_out_GT_GT] = ACTIONS(1656), - [anon_sym_e_GT_GT] = ACTIONS(1656), - [anon_sym_o_GT_GT] = ACTIONS(1656), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1656), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1656), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1656), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1656), - [aux_sym_unquoted_token1] = ACTIONS(1654), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1656), + [anon_sym_LBRACK] = ACTIONS(4083), + [anon_sym_LPAREN] = ACTIONS(4085), + [anon_sym_DOLLAR] = ACTIONS(4087), + [anon_sym_LBRACE] = ACTIONS(4089), + [anon_sym_DOT_DOT] = ACTIONS(4091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4093), + [anon_sym_DOT_DOT_LT] = ACTIONS(4093), + [anon_sym_null] = ACTIONS(4095), + [anon_sym_true] = ACTIONS(4097), + [anon_sym_false] = ACTIONS(4097), + [aux_sym__val_number_decimal_token1] = ACTIONS(4099), + [aux_sym__val_number_decimal_token2] = ACTIONS(4101), + [aux_sym__val_number_decimal_token3] = ACTIONS(4103), + [aux_sym__val_number_decimal_token4] = ACTIONS(4105), + [aux_sym__val_number_token1] = ACTIONS(3676), + [aux_sym__val_number_token2] = ACTIONS(3676), + [aux_sym__val_number_token3] = ACTIONS(3676), + [aux_sym__val_number_token4] = ACTIONS(4107), + [aux_sym__val_number_token5] = ACTIONS(4107), + [aux_sym__val_number_token6] = ACTIONS(4107), + [anon_sym_0b] = ACTIONS(3680), + [anon_sym_0o] = ACTIONS(3682), + [anon_sym_0x] = ACTIONS(3682), + [sym_val_date] = ACTIONS(4109), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym__str_single_quotes] = ACTIONS(1274), + [sym__str_back_ticks] = ACTIONS(1274), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4113), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3538), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1276), }, [1264] = { - [sym__expr_parenthesized_immediate] = STATE(1760), - [sym__immediate_decimal] = STATE(1783), - [sym_val_variable] = STATE(1760), + [sym__val_range] = STATE(7613), + [sym__value] = STATE(5317), + [sym_val_nothing] = STATE(4275), + [sym_val_bool] = STATE(5805), + [sym_val_variable] = STATE(4275), + [sym_val_number] = STATE(4275), + [sym__val_number_decimal] = STATE(5302), + [sym__val_number] = STATE(4276), + [sym_val_duration] = STATE(4275), + [sym_val_filesize] = STATE(4275), + [sym_val_binary] = STATE(4275), + [sym_val_string] = STATE(4275), + [sym__raw_str] = STATE(5689), + [sym__str_double_quotes] = STATE(5689), + [sym_val_interpolated] = STATE(4275), + [sym__inter_single_quotes] = STATE(5061), + [sym__inter_double_quotes] = STATE(5062), + [sym_val_list] = STATE(4275), + [sym_val_record] = STATE(4275), + [sym_val_table] = STATE(4275), + [sym_val_closure] = STATE(4275), + [sym_unquoted] = STATE(5318), + [sym__unquoted_anonymous_prefix] = STATE(7819), [sym_comment] = STATE(1264), - [sym__newline] = ACTIONS(1612), - [anon_sym_SEMI] = ACTIONS(1612), - [anon_sym_PIPE] = ACTIONS(1612), - [anon_sym_err_GT_PIPE] = ACTIONS(1612), - [anon_sym_out_GT_PIPE] = ACTIONS(1612), - [anon_sym_e_GT_PIPE] = ACTIONS(1612), - [anon_sym_o_GT_PIPE] = ACTIONS(1612), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1612), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1612), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1612), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1612), - [anon_sym_LBRACK] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(1604), - [anon_sym_RPAREN] = ACTIONS(1612), - [anon_sym_DOLLAR] = ACTIONS(4022), - [anon_sym_DASH_DASH] = ACTIONS(1612), - [anon_sym_DASH2] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1612), - [anon_sym_DOT_DOT] = ACTIONS(1604), - [anon_sym_LPAREN2] = ACTIONS(4024), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1612), - [anon_sym_DOT_DOT_LT] = ACTIONS(1612), - [aux_sym__immediate_decimal_token1] = ACTIONS(4193), - [aux_sym__immediate_decimal_token3] = ACTIONS(4195), - [aux_sym__immediate_decimal_token4] = ACTIONS(4197), - [aux_sym__immediate_decimal_token5] = ACTIONS(4199), - [anon_sym_null] = ACTIONS(1612), - [anon_sym_true] = ACTIONS(1612), - [anon_sym_false] = ACTIONS(1612), - [aux_sym__val_number_decimal_token1] = ACTIONS(1604), - [aux_sym__val_number_decimal_token2] = ACTIONS(1604), - [aux_sym__val_number_decimal_token3] = ACTIONS(1604), - [aux_sym__val_number_decimal_token4] = ACTIONS(1604), - [aux_sym__val_number_token1] = ACTIONS(1612), - [aux_sym__val_number_token2] = ACTIONS(1612), - [aux_sym__val_number_token3] = ACTIONS(1612), - [aux_sym__val_number_token4] = ACTIONS(1612), - [aux_sym__val_number_token5] = ACTIONS(1612), - [aux_sym__val_number_token6] = ACTIONS(1612), - [anon_sym_0b] = ACTIONS(1604), - [anon_sym_0o] = ACTIONS(1604), - [anon_sym_0x] = ACTIONS(1604), - [sym_val_date] = ACTIONS(1612), - [anon_sym_DQUOTE] = ACTIONS(1612), - [sym__str_single_quotes] = ACTIONS(1612), - [sym__str_back_ticks] = ACTIONS(1612), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1612), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1612), - [anon_sym_err_GT] = ACTIONS(1604), - [anon_sym_out_GT] = ACTIONS(1604), - [anon_sym_e_GT] = ACTIONS(1604), - [anon_sym_o_GT] = ACTIONS(1604), - [anon_sym_err_PLUSout_GT] = ACTIONS(1604), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1604), - [anon_sym_o_PLUSe_GT] = ACTIONS(1604), - [anon_sym_e_PLUSo_GT] = ACTIONS(1604), - [anon_sym_err_GT_GT] = ACTIONS(1612), - [anon_sym_out_GT_GT] = ACTIONS(1612), - [anon_sym_e_GT_GT] = ACTIONS(1612), - [anon_sym_o_GT_GT] = ACTIONS(1612), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1612), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1612), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1612), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1612), - [aux_sym_unquoted_token1] = ACTIONS(1604), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(4115), + [anon_sym_LPAREN] = ACTIONS(4085), + [anon_sym_DOLLAR] = ACTIONS(4117), + [anon_sym_LBRACE] = ACTIONS(4119), + [anon_sym_DOT_DOT] = ACTIONS(4121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4123), + [anon_sym_DOT_DOT_LT] = ACTIONS(4123), + [anon_sym_null] = ACTIONS(4095), + [anon_sym_true] = ACTIONS(4097), + [anon_sym_false] = ACTIONS(4097), + [aux_sym__val_number_decimal_token1] = ACTIONS(4125), + [aux_sym__val_number_decimal_token2] = ACTIONS(4127), + [aux_sym__val_number_decimal_token3] = ACTIONS(4129), + [aux_sym__val_number_decimal_token4] = ACTIONS(4131), + [aux_sym__val_number_token1] = ACTIONS(3676), + [aux_sym__val_number_token2] = ACTIONS(3676), + [aux_sym__val_number_token3] = ACTIONS(3676), + [aux_sym__val_number_token4] = ACTIONS(4133), + [aux_sym__val_number_token5] = ACTIONS(4133), + [aux_sym__val_number_token6] = ACTIONS(4133), + [anon_sym_0b] = ACTIONS(3680), + [anon_sym_0o] = ACTIONS(3682), + [anon_sym_0x] = ACTIONS(3682), + [sym_val_date] = ACTIONS(4109), + [anon_sym_DQUOTE] = ACTIONS(4135), + [sym__str_single_quotes] = ACTIONS(4137), + [sym__str_back_ticks] = ACTIONS(4137), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3690), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3692), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(4139), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4141), }, [1265] = { - [sym__expr_parenthesized_immediate] = STATE(1622), - [sym__immediate_decimal] = STATE(1623), - [sym_val_variable] = STATE(1622), + [sym__val_range] = STATE(7601), + [sym__value] = STATE(3021), + [sym_val_nothing] = STATE(2964), + [sym_val_bool] = STATE(2936), + [sym_val_variable] = STATE(2964), + [sym_val_number] = STATE(2964), + [sym__val_number_decimal] = STATE(2589), + [sym__val_number] = STATE(2969), + [sym_val_duration] = STATE(2964), + [sym_val_filesize] = STATE(2964), + [sym_val_binary] = STATE(2964), + [sym_val_string] = STATE(2964), + [sym__raw_str] = STATE(3014), + [sym__str_double_quotes] = STATE(3014), + [sym_val_interpolated] = STATE(2964), + [sym__inter_single_quotes] = STATE(3044), + [sym__inter_double_quotes] = STATE(3050), + [sym_val_list] = STATE(2964), + [sym_val_record] = STATE(2964), + [sym_val_table] = STATE(2964), + [sym_val_closure] = STATE(2964), + [sym_unquoted] = STATE(3024), + [sym__unquoted_anonymous_prefix] = STATE(7510), [sym_comment] = STATE(1265), - [ts_builtin_sym_end] = ACTIONS(1510), - [sym__newline] = ACTIONS(1510), - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1510), - [anon_sym_err_GT_PIPE] = ACTIONS(1510), - [anon_sym_out_GT_PIPE] = ACTIONS(1510), - [anon_sym_e_GT_PIPE] = ACTIONS(1510), - [anon_sym_o_GT_PIPE] = ACTIONS(1510), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1510), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1510), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1510), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1500), - [anon_sym_DOLLAR] = ACTIONS(2877), - [anon_sym_DASH_DASH] = ACTIONS(1510), - [anon_sym_DASH2] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1510), - [anon_sym_DOT_DOT] = ACTIONS(1500), - [anon_sym_LPAREN2] = ACTIONS(3994), - [anon_sym_DOT] = ACTIONS(4201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1510), - [anon_sym_DOT_DOT_LT] = ACTIONS(1510), - [aux_sym__immediate_decimal_token1] = ACTIONS(4203), - [aux_sym__immediate_decimal_token3] = ACTIONS(4205), - [aux_sym__immediate_decimal_token4] = ACTIONS(4207), - [aux_sym__immediate_decimal_token5] = ACTIONS(4209), - [anon_sym_null] = ACTIONS(1510), - [anon_sym_true] = ACTIONS(1510), - [anon_sym_false] = ACTIONS(1510), - [aux_sym__val_number_decimal_token1] = ACTIONS(1500), - [aux_sym__val_number_decimal_token2] = ACTIONS(1500), - [aux_sym__val_number_decimal_token3] = ACTIONS(1500), - [aux_sym__val_number_decimal_token4] = ACTIONS(1500), - [aux_sym__val_number_token1] = ACTIONS(1510), - [aux_sym__val_number_token2] = ACTIONS(1510), - [aux_sym__val_number_token3] = ACTIONS(1510), - [aux_sym__val_number_token4] = ACTIONS(1510), - [aux_sym__val_number_token5] = ACTIONS(1510), - [aux_sym__val_number_token6] = ACTIONS(1510), - [anon_sym_0b] = ACTIONS(1500), - [anon_sym_0o] = ACTIONS(1500), - [anon_sym_0x] = ACTIONS(1500), - [sym_val_date] = ACTIONS(1510), - [anon_sym_DQUOTE] = ACTIONS(1510), - [sym__str_single_quotes] = ACTIONS(1510), - [sym__str_back_ticks] = ACTIONS(1510), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1510), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1510), - [anon_sym_err_GT] = ACTIONS(1500), - [anon_sym_out_GT] = ACTIONS(1500), - [anon_sym_e_GT] = ACTIONS(1500), - [anon_sym_o_GT] = ACTIONS(1500), - [anon_sym_err_PLUSout_GT] = ACTIONS(1500), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1500), - [anon_sym_o_PLUSe_GT] = ACTIONS(1500), - [anon_sym_e_PLUSo_GT] = ACTIONS(1500), - [anon_sym_err_GT_GT] = ACTIONS(1510), - [anon_sym_out_GT_GT] = ACTIONS(1510), - [anon_sym_e_GT_GT] = ACTIONS(1510), - [anon_sym_o_GT_GT] = ACTIONS(1510), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1510), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1510), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1510), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1510), - [aux_sym_unquoted_token1] = ACTIONS(1500), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(4037), + [anon_sym_LPAREN] = ACTIONS(4039), + [anon_sym_DOLLAR] = ACTIONS(4041), + [anon_sym_LBRACE] = ACTIONS(4043), + [anon_sym_DOT_DOT] = ACTIONS(4045), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4047), + [anon_sym_DOT_DOT_LT] = ACTIONS(4047), + [anon_sym_null] = ACTIONS(4049), + [anon_sym_true] = ACTIONS(4051), + [anon_sym_false] = ACTIONS(4051), + [aux_sym__val_number_decimal_token1] = ACTIONS(4053), + [aux_sym__val_number_decimal_token2] = ACTIONS(4055), + [aux_sym__val_number_decimal_token3] = ACTIONS(4057), + [aux_sym__val_number_decimal_token4] = ACTIONS(4059), + [aux_sym__val_number_token1] = ACTIONS(4061), + [aux_sym__val_number_token2] = ACTIONS(4061), + [aux_sym__val_number_token3] = ACTIONS(4061), + [aux_sym__val_number_token4] = ACTIONS(4063), + [aux_sym__val_number_token5] = ACTIONS(4063), + [aux_sym__val_number_token6] = ACTIONS(4063), + [anon_sym_0b] = ACTIONS(4065), + [anon_sym_0o] = ACTIONS(4067), + [anon_sym_0x] = ACTIONS(4067), + [sym_val_date] = ACTIONS(4069), + [anon_sym_DQUOTE] = ACTIONS(4071), + [sym__str_single_quotes] = ACTIONS(4073), + [sym__str_back_ticks] = ACTIONS(4073), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4075), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4077), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(4079), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4081), }, [1266] = { - [sym__val_range] = STATE(7519), - [sym__value] = STATE(5236), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(7415), - [sym_val_variable] = STATE(2085), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(5609), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(3668), - [sym__str_double_quotes] = STATE(3668), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(5238), - [sym__unquoted_anonymous_prefix] = STATE(7789), [sym_comment] = STATE(1266), - [anon_sym_LBRACK] = ACTIONS(3460), - [anon_sym_LPAREN] = ACTIONS(4211), - [anon_sym_DOLLAR] = ACTIONS(3464), - [anon_sym_LBRACE] = ACTIONS(3466), - [anon_sym_DOT_DOT] = ACTIONS(4102), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4104), - [anon_sym_DOT_DOT_LT] = ACTIONS(4104), - [anon_sym_null] = ACTIONS(3954), - [anon_sym_true] = ACTIONS(3956), - [anon_sym_false] = ACTIONS(3956), - [aux_sym__val_number_decimal_token1] = ACTIONS(3958), - [aux_sym__val_number_decimal_token2] = ACTIONS(3960), - [aux_sym__val_number_decimal_token3] = ACTIONS(3962), - [aux_sym__val_number_decimal_token4] = ACTIONS(3964), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3966), - [aux_sym__val_number_token5] = ACTIONS(3966), - [aux_sym__val_number_token6] = ACTIONS(3966), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3968), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym__str_single_quotes] = ACTIONS(1288), - [sym__str_back_ticks] = ACTIONS(1288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3490), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1290), + [ts_builtin_sym_end] = ACTIONS(1514), + [sym__newline] = ACTIONS(1514), + [anon_sym_SEMI] = ACTIONS(1514), + [anon_sym_PIPE] = ACTIONS(1514), + [anon_sym_err_GT_PIPE] = ACTIONS(1514), + [anon_sym_out_GT_PIPE] = ACTIONS(1514), + [anon_sym_e_GT_PIPE] = ACTIONS(1514), + [anon_sym_o_GT_PIPE] = ACTIONS(1514), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1514), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1514), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1514), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1514), + [anon_sym_LBRACK] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_DOLLAR] = ACTIONS(1512), + [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_DOT_DOT] = ACTIONS(1512), + [anon_sym_LPAREN2] = ACTIONS(1514), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT] = ACTIONS(4143), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [aux_sym__immediate_decimal_token2] = ACTIONS(4145), + [anon_sym_null] = ACTIONS(1514), + [anon_sym_true] = ACTIONS(1514), + [anon_sym_false] = ACTIONS(1514), + [aux_sym__val_number_decimal_token1] = ACTIONS(1512), + [aux_sym__val_number_decimal_token2] = ACTIONS(1514), + [aux_sym__val_number_decimal_token3] = ACTIONS(1514), + [aux_sym__val_number_decimal_token4] = ACTIONS(1514), + [aux_sym__val_number_token1] = ACTIONS(1514), + [aux_sym__val_number_token2] = ACTIONS(1514), + [aux_sym__val_number_token3] = ACTIONS(1514), + [aux_sym__val_number_token4] = ACTIONS(1514), + [aux_sym__val_number_token5] = ACTIONS(1514), + [aux_sym__val_number_token6] = ACTIONS(1514), + [anon_sym_0b] = ACTIONS(1512), + [sym_filesize_unit] = ACTIONS(1514), + [sym_duration_unit] = ACTIONS(1514), + [anon_sym_0o] = ACTIONS(1512), + [anon_sym_0x] = ACTIONS(1512), + [sym_val_date] = ACTIONS(1514), + [anon_sym_DQUOTE] = ACTIONS(1514), + [sym__str_single_quotes] = ACTIONS(1514), + [sym__str_back_ticks] = ACTIONS(1514), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1514), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1514), + [anon_sym_err_GT] = ACTIONS(1512), + [anon_sym_out_GT] = ACTIONS(1512), + [anon_sym_e_GT] = ACTIONS(1512), + [anon_sym_o_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT] = ACTIONS(1512), + [anon_sym_err_GT_GT] = ACTIONS(1514), + [anon_sym_out_GT_GT] = ACTIONS(1514), + [anon_sym_e_GT_GT] = ACTIONS(1514), + [anon_sym_o_GT_GT] = ACTIONS(1514), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1514), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1514), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1514), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1514), + [aux_sym_unquoted_token1] = ACTIONS(1512), + [aux_sym_unquoted_token2] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1514), }, [1267] = { - [sym__val_range] = STATE(7670), - [sym__value] = STATE(3011), - [sym_val_nothing] = STATE(2953), - [sym_val_bool] = STATE(2905), - [sym_val_variable] = STATE(2953), - [sym_val_number] = STATE(2953), - [sym__val_number_decimal] = STATE(2574), - [sym__val_number] = STATE(2954), - [sym_val_duration] = STATE(2953), - [sym_val_filesize] = STATE(2953), - [sym_val_binary] = STATE(2953), - [sym_val_string] = STATE(2953), - [sym__raw_str] = STATE(3036), - [sym__str_double_quotes] = STATE(3036), - [sym_val_interpolated] = STATE(2953), - [sym__inter_single_quotes] = STATE(3024), - [sym__inter_double_quotes] = STATE(3025), - [sym_val_list] = STATE(2953), - [sym_val_record] = STATE(2953), - [sym_val_table] = STATE(2953), - [sym_val_closure] = STATE(2953), - [sym_unquoted] = STATE(3012), - [sym__unquoted_anonymous_prefix] = STATE(7472), + [sym__val_range] = STATE(7833), + [sym__value] = STATE(5236), + [sym_val_nothing] = STATE(4275), + [sym_val_bool] = STATE(5805), + [sym_val_variable] = STATE(4275), + [sym_val_number] = STATE(4275), + [sym__val_number_decimal] = STATE(5282), + [sym__val_number] = STATE(4276), + [sym_val_duration] = STATE(4275), + [sym_val_filesize] = STATE(4275), + [sym_val_binary] = STATE(4275), + [sym_val_string] = STATE(4275), + [sym__raw_str] = STATE(3793), + [sym__str_double_quotes] = STATE(3793), + [sym_val_interpolated] = STATE(4275), + [sym__inter_single_quotes] = STATE(5297), + [sym__inter_double_quotes] = STATE(5300), + [sym_val_list] = STATE(4275), + [sym_val_record] = STATE(4275), + [sym_val_table] = STATE(4275), + [sym_val_closure] = STATE(4275), + [sym_unquoted] = STATE(5284), + [sym__unquoted_anonymous_prefix] = STATE(7649), [sym_comment] = STATE(1267), - [anon_sym_LBRACK] = ACTIONS(4213), - [anon_sym_LPAREN] = ACTIONS(4215), - [anon_sym_DOLLAR] = ACTIONS(4217), - [anon_sym_LBRACE] = ACTIONS(4219), - [anon_sym_DOT_DOT] = ACTIONS(4221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4223), - [anon_sym_DOT_DOT_LT] = ACTIONS(4223), - [anon_sym_null] = ACTIONS(4225), - [anon_sym_true] = ACTIONS(4227), - [anon_sym_false] = ACTIONS(4227), - [aux_sym__val_number_decimal_token1] = ACTIONS(4229), - [aux_sym__val_number_decimal_token2] = ACTIONS(4231), - [aux_sym__val_number_decimal_token3] = ACTIONS(4233), - [aux_sym__val_number_decimal_token4] = ACTIONS(4235), - [aux_sym__val_number_token1] = ACTIONS(4237), - [aux_sym__val_number_token2] = ACTIONS(4237), - [aux_sym__val_number_token3] = ACTIONS(4237), - [aux_sym__val_number_token4] = ACTIONS(4239), - [aux_sym__val_number_token5] = ACTIONS(4239), - [aux_sym__val_number_token6] = ACTIONS(4239), - [anon_sym_0b] = ACTIONS(4241), - [anon_sym_0o] = ACTIONS(4243), - [anon_sym_0x] = ACTIONS(4243), - [sym_val_date] = ACTIONS(4245), - [anon_sym_DQUOTE] = ACTIONS(4247), - [sym__str_single_quotes] = ACTIONS(4249), - [sym__str_back_ticks] = ACTIONS(4249), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4253), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(4255), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4257), + [anon_sym_LBRACK] = ACTIONS(4083), + [anon_sym_LPAREN] = ACTIONS(4085), + [anon_sym_DOLLAR] = ACTIONS(4087), + [anon_sym_LBRACE] = ACTIONS(4089), + [anon_sym_DOT_DOT] = ACTIONS(4091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4093), + [anon_sym_DOT_DOT_LT] = ACTIONS(4093), + [anon_sym_null] = ACTIONS(4095), + [anon_sym_true] = ACTIONS(4097), + [anon_sym_false] = ACTIONS(4097), + [aux_sym__val_number_decimal_token1] = ACTIONS(4099), + [aux_sym__val_number_decimal_token2] = ACTIONS(4101), + [aux_sym__val_number_decimal_token3] = ACTIONS(4103), + [aux_sym__val_number_decimal_token4] = ACTIONS(4105), + [aux_sym__val_number_token1] = ACTIONS(3676), + [aux_sym__val_number_token2] = ACTIONS(3676), + [aux_sym__val_number_token3] = ACTIONS(3676), + [aux_sym__val_number_token4] = ACTIONS(4107), + [aux_sym__val_number_token5] = ACTIONS(4107), + [aux_sym__val_number_token6] = ACTIONS(4107), + [anon_sym_0b] = ACTIONS(3680), + [anon_sym_0o] = ACTIONS(3682), + [anon_sym_0x] = ACTIONS(3682), + [sym_val_date] = ACTIONS(4109), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym__str_single_quotes] = ACTIONS(1274), + [sym__str_back_ticks] = ACTIONS(1274), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4113), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3538), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1276), }, [1268] = { - [sym__val_range] = STATE(7519), - [sym__value] = STATE(5236), - [sym_val_nothing] = STATE(4353), - [sym_val_bool] = STATE(5750), - [sym_val_variable] = STATE(4353), - [sym_val_number] = STATE(4353), - [sym__val_number_decimal] = STATE(5237), - [sym__val_number] = STATE(4251), - [sym_val_duration] = STATE(4353), - [sym_val_filesize] = STATE(4353), - [sym_val_binary] = STATE(4353), - [sym_val_string] = STATE(4353), - [sym__raw_str] = STATE(3668), - [sym__str_double_quotes] = STATE(3668), - [sym_val_interpolated] = STATE(4353), - [sym__inter_single_quotes] = STATE(5264), - [sym__inter_double_quotes] = STATE(5265), - [sym_val_list] = STATE(4353), - [sym_val_record] = STATE(4353), - [sym_val_table] = STATE(4353), - [sym_val_closure] = STATE(4353), - [sym_unquoted] = STATE(5238), - [sym__unquoted_anonymous_prefix] = STATE(7789), + [sym_cell_path] = STATE(1519), + [sym_path] = STATE(1428), [sym_comment] = STATE(1268), - [anon_sym_LBRACK] = ACTIONS(4096), - [anon_sym_LPAREN] = ACTIONS(4062), - [anon_sym_DOLLAR] = ACTIONS(4098), - [anon_sym_LBRACE] = ACTIONS(4100), - [anon_sym_DOT_DOT] = ACTIONS(4102), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4104), - [anon_sym_DOT_DOT_LT] = ACTIONS(4104), - [anon_sym_null] = ACTIONS(4072), - [anon_sym_true] = ACTIONS(4074), - [anon_sym_false] = ACTIONS(4074), - [aux_sym__val_number_decimal_token1] = ACTIONS(4106), - [aux_sym__val_number_decimal_token2] = ACTIONS(4108), - [aux_sym__val_number_decimal_token3] = ACTIONS(4110), - [aux_sym__val_number_decimal_token4] = ACTIONS(4112), - [aux_sym__val_number_token1] = ACTIONS(3600), - [aux_sym__val_number_token2] = ACTIONS(3600), - [aux_sym__val_number_token3] = ACTIONS(3600), - [aux_sym__val_number_token4] = ACTIONS(4114), - [aux_sym__val_number_token5] = ACTIONS(4114), - [aux_sym__val_number_token6] = ACTIONS(4114), - [anon_sym_0b] = ACTIONS(3604), - [anon_sym_0o] = ACTIONS(3606), - [anon_sym_0x] = ACTIONS(3606), - [sym_val_date] = ACTIONS(4086), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym__str_single_quotes] = ACTIONS(1288), - [sym__str_back_ticks] = ACTIONS(1288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4116), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4118), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3490), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1290), + [aux_sym_cell_path_repeat1] = STATE(1338), + [sym__newline] = ACTIONS(1668), + [anon_sym_SEMI] = ACTIONS(1668), + [anon_sym_PIPE] = ACTIONS(1668), + [anon_sym_err_GT_PIPE] = ACTIONS(1668), + [anon_sym_out_GT_PIPE] = ACTIONS(1668), + [anon_sym_e_GT_PIPE] = ACTIONS(1668), + [anon_sym_o_GT_PIPE] = ACTIONS(1668), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1668), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1668), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1668), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1668), + [anon_sym_RPAREN] = ACTIONS(1668), + [anon_sym_GT2] = ACTIONS(1666), + [anon_sym_DASH2] = ACTIONS(1668), + [anon_sym_in2] = ACTIONS(1668), + [anon_sym_if] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(1668), + [anon_sym_RBRACE] = ACTIONS(1668), + [anon_sym_EQ_GT] = ACTIONS(1668), + [anon_sym_STAR2] = ACTIONS(1666), + [anon_sym_and2] = ACTIONS(1668), + [anon_sym_xor2] = ACTIONS(1668), + [anon_sym_or2] = ACTIONS(1668), + [anon_sym_not_DASHin2] = ACTIONS(1668), + [anon_sym_has2] = ACTIONS(1668), + [anon_sym_not_DASHhas2] = ACTIONS(1668), + [anon_sym_starts_DASHwith2] = ACTIONS(1668), + [anon_sym_ends_DASHwith2] = ACTIONS(1668), + [anon_sym_EQ_EQ2] = ACTIONS(1668), + [anon_sym_BANG_EQ2] = ACTIONS(1668), + [anon_sym_LT2] = ACTIONS(1666), + [anon_sym_LT_EQ2] = ACTIONS(1668), + [anon_sym_GT_EQ2] = ACTIONS(1668), + [anon_sym_EQ_TILDE2] = ACTIONS(1668), + [anon_sym_BANG_TILDE2] = ACTIONS(1668), + [anon_sym_STAR_STAR2] = ACTIONS(1668), + [anon_sym_PLUS_PLUS2] = ACTIONS(1668), + [anon_sym_SLASH2] = ACTIONS(1666), + [anon_sym_mod2] = ACTIONS(1668), + [anon_sym_SLASH_SLASH2] = ACTIONS(1668), + [anon_sym_PLUS2] = ACTIONS(1666), + [anon_sym_bit_DASHshl2] = ACTIONS(1668), + [anon_sym_bit_DASHshr2] = ACTIONS(1668), + [anon_sym_bit_DASHand2] = ACTIONS(1668), + [anon_sym_bit_DASHxor2] = ACTIONS(1668), + [anon_sym_bit_DASHor2] = ACTIONS(1668), + [anon_sym_DOT_DOT2] = ACTIONS(1666), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), + [anon_sym_COLON2] = ACTIONS(1668), + [anon_sym_DOT2] = ACTIONS(4147), + [anon_sym_err_GT] = ACTIONS(1666), + [anon_sym_out_GT] = ACTIONS(1666), + [anon_sym_e_GT] = ACTIONS(1666), + [anon_sym_o_GT] = ACTIONS(1666), + [anon_sym_err_PLUSout_GT] = ACTIONS(1666), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1666), + [anon_sym_o_PLUSe_GT] = ACTIONS(1666), + [anon_sym_e_PLUSo_GT] = ACTIONS(1666), + [anon_sym_err_GT_GT] = ACTIONS(1668), + [anon_sym_out_GT_GT] = ACTIONS(1668), + [anon_sym_e_GT_GT] = ACTIONS(1668), + [anon_sym_o_GT_GT] = ACTIONS(1668), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1668), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1668), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1668), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(247), }, [1269] = { - [sym__val_range] = STATE(7568), - [sym__value] = STATE(3325), - [sym_val_nothing] = STATE(3316), - [sym_val_bool] = STATE(3281), - [sym_val_variable] = STATE(3316), - [sym_val_number] = STATE(3316), - [sym__val_number_decimal] = STATE(3050), - [sym__val_number] = STATE(3339), - [sym_val_duration] = STATE(3316), - [sym_val_filesize] = STATE(3316), - [sym_val_binary] = STATE(3316), - [sym_val_string] = STATE(3316), - [sym__raw_str] = STATE(3371), - [sym__str_double_quotes] = STATE(3371), - [sym_val_interpolated] = STATE(3316), - [sym__inter_single_quotes] = STATE(3322), - [sym__inter_double_quotes] = STATE(3335), - [sym_val_list] = STATE(3316), - [sym_val_record] = STATE(3316), - [sym_val_table] = STATE(3316), - [sym_val_closure] = STATE(3316), - [sym_unquoted] = STATE(3308), - [sym__unquoted_anonymous_prefix] = STATE(7693), + [sym_cell_path] = STATE(1521), + [sym_path] = STATE(1428), [sym_comment] = STATE(1269), - [anon_sym_LBRACK] = ACTIONS(4259), - [anon_sym_LPAREN] = ACTIONS(4261), - [anon_sym_DOLLAR] = ACTIONS(4263), - [anon_sym_LBRACE] = ACTIONS(4265), - [anon_sym_DOT_DOT] = ACTIONS(4267), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4269), - [anon_sym_DOT_DOT_LT] = ACTIONS(4269), - [anon_sym_null] = ACTIONS(4271), - [anon_sym_true] = ACTIONS(4273), - [anon_sym_false] = ACTIONS(4273), - [aux_sym__val_number_decimal_token1] = ACTIONS(4275), - [aux_sym__val_number_decimal_token2] = ACTIONS(4277), - [aux_sym__val_number_decimal_token3] = ACTIONS(4279), - [aux_sym__val_number_decimal_token4] = ACTIONS(4281), - [aux_sym__val_number_token1] = ACTIONS(4283), - [aux_sym__val_number_token2] = ACTIONS(4283), - [aux_sym__val_number_token3] = ACTIONS(4283), - [aux_sym__val_number_token4] = ACTIONS(4285), - [aux_sym__val_number_token5] = ACTIONS(4285), - [aux_sym__val_number_token6] = ACTIONS(4285), - [anon_sym_0b] = ACTIONS(4287), - [anon_sym_0o] = ACTIONS(4289), - [anon_sym_0x] = ACTIONS(4289), - [sym_val_date] = ACTIONS(4291), - [anon_sym_DQUOTE] = ACTIONS(4293), - [sym__str_single_quotes] = ACTIONS(4295), - [sym__str_back_ticks] = ACTIONS(4295), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4297), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4299), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(4301), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4303), + [aux_sym_cell_path_repeat1] = STATE(1338), + [sym__newline] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_PIPE] = ACTIONS(1678), + [anon_sym_err_GT_PIPE] = ACTIONS(1678), + [anon_sym_out_GT_PIPE] = ACTIONS(1678), + [anon_sym_e_GT_PIPE] = ACTIONS(1678), + [anon_sym_o_GT_PIPE] = ACTIONS(1678), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1678), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1678), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1678), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1678), + [anon_sym_RPAREN] = ACTIONS(1678), + [anon_sym_GT2] = ACTIONS(1676), + [anon_sym_DASH2] = ACTIONS(1678), + [anon_sym_in2] = ACTIONS(1678), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_RBRACE] = ACTIONS(1678), + [anon_sym_EQ_GT] = ACTIONS(1678), + [anon_sym_STAR2] = ACTIONS(1676), + [anon_sym_and2] = ACTIONS(1678), + [anon_sym_xor2] = ACTIONS(1678), + [anon_sym_or2] = ACTIONS(1678), + [anon_sym_not_DASHin2] = ACTIONS(1678), + [anon_sym_has2] = ACTIONS(1678), + [anon_sym_not_DASHhas2] = ACTIONS(1678), + [anon_sym_starts_DASHwith2] = ACTIONS(1678), + [anon_sym_ends_DASHwith2] = ACTIONS(1678), + [anon_sym_EQ_EQ2] = ACTIONS(1678), + [anon_sym_BANG_EQ2] = ACTIONS(1678), + [anon_sym_LT2] = ACTIONS(1676), + [anon_sym_LT_EQ2] = ACTIONS(1678), + [anon_sym_GT_EQ2] = ACTIONS(1678), + [anon_sym_EQ_TILDE2] = ACTIONS(1678), + [anon_sym_BANG_TILDE2] = ACTIONS(1678), + [anon_sym_STAR_STAR2] = ACTIONS(1678), + [anon_sym_PLUS_PLUS2] = ACTIONS(1678), + [anon_sym_SLASH2] = ACTIONS(1676), + [anon_sym_mod2] = ACTIONS(1678), + [anon_sym_SLASH_SLASH2] = ACTIONS(1678), + [anon_sym_PLUS2] = ACTIONS(1676), + [anon_sym_bit_DASHshl2] = ACTIONS(1678), + [anon_sym_bit_DASHshr2] = ACTIONS(1678), + [anon_sym_bit_DASHand2] = ACTIONS(1678), + [anon_sym_bit_DASHxor2] = ACTIONS(1678), + [anon_sym_bit_DASHor2] = ACTIONS(1678), + [anon_sym_DOT_DOT2] = ACTIONS(1676), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1678), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1678), + [anon_sym_COLON2] = ACTIONS(1678), + [anon_sym_DOT2] = ACTIONS(4147), + [anon_sym_err_GT] = ACTIONS(1676), + [anon_sym_out_GT] = ACTIONS(1676), + [anon_sym_e_GT] = ACTIONS(1676), + [anon_sym_o_GT] = ACTIONS(1676), + [anon_sym_err_PLUSout_GT] = ACTIONS(1676), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1676), + [anon_sym_o_PLUSe_GT] = ACTIONS(1676), + [anon_sym_e_PLUSo_GT] = ACTIONS(1676), + [anon_sym_err_GT_GT] = ACTIONS(1678), + [anon_sym_out_GT_GT] = ACTIONS(1678), + [anon_sym_e_GT_GT] = ACTIONS(1678), + [anon_sym_o_GT_GT] = ACTIONS(1678), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1678), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1678), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1678), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1678), + [anon_sym_POUND] = ACTIONS(247), }, [1270] = { - [sym__val_range] = STATE(7490), - [sym__value] = STATE(1879), - [sym_val_nothing] = STATE(1903), - [sym_val_bool] = STATE(1794), - [sym_val_variable] = STATE(1903), - [sym_val_number] = STATE(1903), - [sym__val_number_decimal] = STATE(1375), - [sym__val_number] = STATE(1904), - [sym_val_duration] = STATE(1903), - [sym_val_filesize] = STATE(1903), - [sym_val_binary] = STATE(1903), - [sym_val_string] = STATE(1903), - [sym__raw_str] = STATE(1876), - [sym__str_double_quotes] = STATE(1876), - [sym_val_interpolated] = STATE(1903), - [sym__inter_single_quotes] = STATE(1874), - [sym__inter_double_quotes] = STATE(1875), - [sym_val_list] = STATE(1903), - [sym_val_record] = STATE(1903), - [sym_val_table] = STATE(1903), - [sym_val_closure] = STATE(1903), - [sym_unquoted] = STATE(1880), - [sym__unquoted_anonymous_prefix] = STATE(7715), + [sym__val_range] = STATE(7613), + [sym__value] = STATE(5230), + [sym_val_nothing] = STATE(4275), + [sym_val_bool] = STATE(5805), + [sym_val_variable] = STATE(4275), + [sym_val_number] = STATE(4275), + [sym__val_number_decimal] = STATE(5302), + [sym__val_number] = STATE(4276), + [sym_val_duration] = STATE(4275), + [sym_val_filesize] = STATE(4275), + [sym_val_binary] = STATE(4275), + [sym_val_string] = STATE(4275), + [sym__raw_str] = STATE(5689), + [sym__str_double_quotes] = STATE(5689), + [sym_val_interpolated] = STATE(4275), + [sym__inter_single_quotes] = STATE(5061), + [sym__inter_double_quotes] = STATE(5062), + [sym_val_list] = STATE(4275), + [sym_val_record] = STATE(4275), + [sym_val_table] = STATE(4275), + [sym_val_closure] = STATE(4275), + [sym_unquoted] = STATE(5231), + [sym__unquoted_anonymous_prefix] = STATE(7819), [sym_comment] = STATE(1270), - [anon_sym_LBRACK] = ACTIONS(2873), - [anon_sym_LPAREN] = ACTIONS(4149), - [anon_sym_DOLLAR] = ACTIONS(4120), - [anon_sym_LBRACE] = ACTIONS(2883), - [anon_sym_DOT_DOT] = ACTIONS(4151), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4153), - [anon_sym_DOT_DOT_LT] = ACTIONS(4153), - [anon_sym_null] = ACTIONS(4155), - [anon_sym_true] = ACTIONS(4157), - [anon_sym_false] = ACTIONS(4157), - [aux_sym__val_number_decimal_token1] = ACTIONS(4159), - [aux_sym__val_number_decimal_token2] = ACTIONS(4161), - [aux_sym__val_number_decimal_token3] = ACTIONS(4163), - [aux_sym__val_number_decimal_token4] = ACTIONS(4165), - [aux_sym__val_number_token1] = ACTIONS(2901), - [aux_sym__val_number_token2] = ACTIONS(2901), - [aux_sym__val_number_token3] = ACTIONS(2901), - [aux_sym__val_number_token4] = ACTIONS(4167), - [aux_sym__val_number_token5] = ACTIONS(4167), - [aux_sym__val_number_token6] = ACTIONS(4167), - [anon_sym_0b] = ACTIONS(2905), - [anon_sym_0o] = ACTIONS(2907), - [anon_sym_0x] = ACTIONS(2907), - [sym_val_date] = ACTIONS(4169), - [anon_sym_DQUOTE] = ACTIONS(2911), - [sym__str_single_quotes] = ACTIONS(2913), - [sym__str_back_ticks] = ACTIONS(2913), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2915), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2917), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(4171), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2921), + [anon_sym_LBRACK] = ACTIONS(4115), + [anon_sym_LPAREN] = ACTIONS(4085), + [anon_sym_DOLLAR] = ACTIONS(4117), + [anon_sym_LBRACE] = ACTIONS(4119), + [anon_sym_DOT_DOT] = ACTIONS(4121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4123), + [anon_sym_DOT_DOT_LT] = ACTIONS(4123), + [anon_sym_null] = ACTIONS(4095), + [anon_sym_true] = ACTIONS(4097), + [anon_sym_false] = ACTIONS(4097), + [aux_sym__val_number_decimal_token1] = ACTIONS(4125), + [aux_sym__val_number_decimal_token2] = ACTIONS(4127), + [aux_sym__val_number_decimal_token3] = ACTIONS(4129), + [aux_sym__val_number_decimal_token4] = ACTIONS(4131), + [aux_sym__val_number_token1] = ACTIONS(3676), + [aux_sym__val_number_token2] = ACTIONS(3676), + [aux_sym__val_number_token3] = ACTIONS(3676), + [aux_sym__val_number_token4] = ACTIONS(4133), + [aux_sym__val_number_token5] = ACTIONS(4133), + [aux_sym__val_number_token6] = ACTIONS(4133), + [anon_sym_0b] = ACTIONS(3680), + [anon_sym_0o] = ACTIONS(3682), + [anon_sym_0x] = ACTIONS(3682), + [sym_val_date] = ACTIONS(4109), + [anon_sym_DQUOTE] = ACTIONS(4135), + [sym__str_single_quotes] = ACTIONS(4137), + [sym__str_back_ticks] = ACTIONS(4137), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3690), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3692), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(4139), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4141), }, [1271] = { - [sym__val_range] = STATE(7568), - [sym__value] = STATE(3356), - [sym_val_nothing] = STATE(3316), - [sym_val_bool] = STATE(3281), - [sym_val_variable] = STATE(3316), - [sym_val_number] = STATE(3316), - [sym__val_number_decimal] = STATE(3050), - [sym__val_number] = STATE(3339), - [sym_val_duration] = STATE(3316), - [sym_val_filesize] = STATE(3316), - [sym_val_binary] = STATE(3316), - [sym_val_string] = STATE(3316), - [sym__raw_str] = STATE(3371), - [sym__str_double_quotes] = STATE(3371), - [sym_val_interpolated] = STATE(3316), - [sym__inter_single_quotes] = STATE(3322), - [sym__inter_double_quotes] = STATE(3335), - [sym_val_list] = STATE(3316), - [sym_val_record] = STATE(3316), - [sym_val_table] = STATE(3316), - [sym_val_closure] = STATE(3316), - [sym_unquoted] = STATE(3359), - [sym__unquoted_anonymous_prefix] = STATE(7693), + [sym__val_range] = STATE(7833), + [sym__value] = STATE(5281), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(7418), + [sym_val_variable] = STATE(2105), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(5641), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(3793), + [sym__str_double_quotes] = STATE(3793), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(5285), + [sym__unquoted_anonymous_prefix] = STATE(7649), [sym_comment] = STATE(1271), - [anon_sym_LBRACK] = ACTIONS(4259), - [anon_sym_LPAREN] = ACTIONS(4261), - [anon_sym_DOLLAR] = ACTIONS(4263), - [anon_sym_LBRACE] = ACTIONS(4265), - [anon_sym_DOT_DOT] = ACTIONS(4267), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4269), - [anon_sym_DOT_DOT_LT] = ACTIONS(4269), - [anon_sym_null] = ACTIONS(4271), - [anon_sym_true] = ACTIONS(4273), - [anon_sym_false] = ACTIONS(4273), - [aux_sym__val_number_decimal_token1] = ACTIONS(4275), - [aux_sym__val_number_decimal_token2] = ACTIONS(4277), - [aux_sym__val_number_decimal_token3] = ACTIONS(4279), - [aux_sym__val_number_decimal_token4] = ACTIONS(4281), - [aux_sym__val_number_token1] = ACTIONS(4283), - [aux_sym__val_number_token2] = ACTIONS(4283), - [aux_sym__val_number_token3] = ACTIONS(4283), - [aux_sym__val_number_token4] = ACTIONS(4285), - [aux_sym__val_number_token5] = ACTIONS(4285), - [aux_sym__val_number_token6] = ACTIONS(4285), - [anon_sym_0b] = ACTIONS(4287), - [anon_sym_0o] = ACTIONS(4289), - [anon_sym_0x] = ACTIONS(4289), - [sym_val_date] = ACTIONS(4291), - [anon_sym_DQUOTE] = ACTIONS(4293), - [sym__str_single_quotes] = ACTIONS(4295), - [sym__str_back_ticks] = ACTIONS(4295), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4297), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4299), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(4301), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(3508), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_DOLLAR] = ACTIONS(3512), + [anon_sym_LBRACE] = ACTIONS(3514), + [anon_sym_DOT_DOT] = ACTIONS(4091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4093), + [anon_sym_DOT_DOT_LT] = ACTIONS(4093), + [anon_sym_null] = ACTIONS(3826), + [anon_sym_true] = ACTIONS(3828), + [anon_sym_false] = ACTIONS(3828), + [aux_sym__val_number_decimal_token1] = ACTIONS(3830), + [aux_sym__val_number_decimal_token2] = ACTIONS(3832), + [aux_sym__val_number_decimal_token3] = ACTIONS(3834), + [aux_sym__val_number_decimal_token4] = ACTIONS(3836), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3838), + [aux_sym__val_number_token5] = ACTIONS(3838), + [aux_sym__val_number_token6] = ACTIONS(3838), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3840), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym__str_single_quotes] = ACTIONS(1274), + [sym__str_back_ticks] = ACTIONS(1274), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3538), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1276), }, [1272] = { - [sym__expr_parenthesized_immediate] = STATE(1923), - [sym__immediate_decimal] = STATE(1647), - [sym_val_variable] = STATE(1923), + [sym_path] = STATE(1391), [sym_comment] = STATE(1272), - [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_LBRACK] = ACTIONS(1475), - [anon_sym_LPAREN] = ACTIONS(1461), - [anon_sym_DOLLAR] = ACTIONS(4120), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_DASH2] = ACTIONS(1461), - [anon_sym_LBRACE] = ACTIONS(1475), - [anon_sym_DOT_DOT] = ACTIONS(1461), - [anon_sym_LPAREN2] = ACTIONS(4122), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1475), - [anon_sym_DOT_DOT_LT] = ACTIONS(1475), - [aux_sym__immediate_decimal_token1] = ACTIONS(4124), - [aux_sym__immediate_decimal_token3] = ACTIONS(4126), - [aux_sym__immediate_decimal_token4] = ACTIONS(4128), - [aux_sym__immediate_decimal_token5] = ACTIONS(4130), - [anon_sym_null] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [aux_sym__val_number_decimal_token1] = ACTIONS(1461), - [aux_sym__val_number_decimal_token2] = ACTIONS(1461), - [aux_sym__val_number_decimal_token3] = ACTIONS(1461), - [aux_sym__val_number_decimal_token4] = ACTIONS(1461), - [aux_sym__val_number_token1] = ACTIONS(1475), - [aux_sym__val_number_token2] = ACTIONS(1475), - [aux_sym__val_number_token3] = ACTIONS(1475), - [aux_sym__val_number_token4] = ACTIONS(1475), - [aux_sym__val_number_token5] = ACTIONS(1475), - [aux_sym__val_number_token6] = ACTIONS(1475), - [anon_sym_0b] = ACTIONS(1461), - [anon_sym_0o] = ACTIONS(1461), - [anon_sym_0x] = ACTIONS(1461), - [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(1461), - [anon_sym_out_GT] = ACTIONS(1461), - [anon_sym_e_GT] = ACTIONS(1461), - [anon_sym_o_GT] = ACTIONS(1461), - [anon_sym_err_PLUSout_GT] = ACTIONS(1461), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1461), - [anon_sym_o_PLUSe_GT] = ACTIONS(1461), - [anon_sym_e_PLUSo_GT] = ACTIONS(1461), - [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(1461), - [aux_sym_unquoted_token2] = ACTIONS(1477), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1475), + [aux_sym_cell_path_repeat1] = STATE(1328), + [ts_builtin_sym_end] = ACTIONS(944), + [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(944), + [anon_sym_SEMI] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(944), + [anon_sym_err_GT_PIPE] = ACTIONS(944), + [anon_sym_out_GT_PIPE] = ACTIONS(944), + [anon_sym_e_GT_PIPE] = ACTIONS(944), + [anon_sym_o_GT_PIPE] = ACTIONS(944), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(944), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(944), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(944), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(944), + [anon_sym_GT2] = ACTIONS(942), + [anon_sym_DASH2] = ACTIONS(942), + [anon_sym_in2] = ACTIONS(944), + [anon_sym_STAR2] = ACTIONS(942), + [anon_sym_and2] = ACTIONS(944), + [anon_sym_xor2] = ACTIONS(944), + [anon_sym_or2] = ACTIONS(944), + [anon_sym_not_DASHin2] = ACTIONS(944), + [anon_sym_has2] = ACTIONS(944), + [anon_sym_not_DASHhas2] = ACTIONS(944), + [anon_sym_starts_DASHwith2] = ACTIONS(944), + [anon_sym_ends_DASHwith2] = ACTIONS(944), + [anon_sym_EQ_EQ2] = ACTIONS(944), + [anon_sym_BANG_EQ2] = ACTIONS(944), + [anon_sym_LT2] = ACTIONS(942), + [anon_sym_LT_EQ2] = ACTIONS(944), + [anon_sym_GT_EQ2] = ACTIONS(944), + [anon_sym_EQ_TILDE2] = ACTIONS(944), + [anon_sym_BANG_TILDE2] = ACTIONS(944), + [anon_sym_STAR_STAR2] = ACTIONS(944), + [anon_sym_PLUS_PLUS2] = ACTIONS(942), + [anon_sym_SLASH2] = ACTIONS(942), + [anon_sym_mod2] = ACTIONS(944), + [anon_sym_SLASH_SLASH2] = ACTIONS(944), + [anon_sym_PLUS2] = ACTIONS(942), + [anon_sym_bit_DASHshl2] = ACTIONS(944), + [anon_sym_bit_DASHshr2] = ACTIONS(944), + [anon_sym_bit_DASHand2] = ACTIONS(944), + [anon_sym_bit_DASHxor2] = ACTIONS(944), + [anon_sym_bit_DASHor2] = ACTIONS(944), + [anon_sym_DOT_DOT2] = ACTIONS(942), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(944), + [anon_sym_DOT_DOT_LT2] = ACTIONS(944), + [anon_sym_DOT2] = ACTIONS(3997), + [anon_sym_err_GT] = ACTIONS(942), + [anon_sym_out_GT] = ACTIONS(942), + [anon_sym_e_GT] = ACTIONS(942), + [anon_sym_o_GT] = ACTIONS(942), + [anon_sym_err_PLUSout_GT] = ACTIONS(942), + [anon_sym_out_PLUSerr_GT] = ACTIONS(942), + [anon_sym_o_PLUSe_GT] = ACTIONS(942), + [anon_sym_e_PLUSo_GT] = ACTIONS(942), + [anon_sym_err_GT_GT] = ACTIONS(944), + [anon_sym_out_GT_GT] = ACTIONS(944), + [anon_sym_e_GT_GT] = ACTIONS(944), + [anon_sym_o_GT_GT] = ACTIONS(944), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(944), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(944), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(944), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(944), + [anon_sym_POUND] = ACTIONS(247), }, [1273] = { - [sym__match_pattern_expression] = STATE(3162), - [sym__match_pattern_value] = STATE(3176), - [sym__match_pattern_list] = STATE(3183), - [sym__match_pattern_rest] = STATE(7761), - [sym__match_pattern_record] = STATE(3151), - [sym_expr_parenthesized] = STATE(2934), - [sym_val_range] = STATE(3176), - [sym__val_range] = STATE(7541), - [sym_val_nothing] = STATE(3167), - [sym_val_bool] = STATE(3060), - [sym_val_variable] = STATE(2912), - [sym_val_number] = STATE(3167), - [sym__val_number_decimal] = STATE(2702), - [sym__val_number] = STATE(3161), - [sym_val_duration] = STATE(3167), - [sym_val_filesize] = STATE(3167), - [sym_val_binary] = STATE(3167), - [sym_val_string] = STATE(3167), - [sym__raw_str] = STATE(3174), - [sym__str_double_quotes] = STATE(3174), - [sym_val_table] = STATE(3167), - [sym__unquoted_in_list] = STATE(3162), - [sym__unquoted_anonymous_prefix] = STATE(7637), + [sym__match_pattern_expression] = STATE(3186), + [sym__match_pattern_value] = STATE(3171), + [sym__match_pattern_list] = STATE(3187), + [sym__match_pattern_rest] = STATE(7692), + [sym__match_pattern_record] = STATE(3188), + [sym_expr_parenthesized] = STATE(2937), + [sym_val_range] = STATE(3171), + [sym__val_range] = STATE(7677), + [sym_val_nothing] = STATE(3178), + [sym_val_bool] = STATE(3081), + [sym_val_variable] = STATE(2920), + [sym_val_number] = STATE(3178), + [sym__val_number_decimal] = STATE(2695), + [sym__val_number] = STATE(3189), + [sym_val_duration] = STATE(3178), + [sym_val_filesize] = STATE(3178), + [sym_val_binary] = STATE(3178), + [sym_val_string] = STATE(3178), + [sym__raw_str] = STATE(3169), + [sym__str_double_quotes] = STATE(3169), + [sym_val_table] = STATE(3178), + [sym__unquoted_in_list] = STATE(3186), + [sym__unquoted_anonymous_prefix] = STATE(7685), [sym_comment] = STATE(1273), - [aux_sym__match_pattern_list_repeat1] = STATE(1322), - [anon_sym_LBRACK] = ACTIONS(4136), - [anon_sym_RBRACK] = ACTIONS(4305), - [anon_sym_LPAREN] = ACTIONS(3832), - [anon_sym_DOLLAR] = ACTIONS(3834), - [anon_sym_LBRACE] = ACTIONS(3836), - [anon_sym_DOT_DOT] = ACTIONS(4307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3840), - [anon_sym_DOT_DOT_LT] = ACTIONS(3840), - [anon_sym_null] = ACTIONS(3842), - [anon_sym_true] = ACTIONS(3844), - [anon_sym_false] = ACTIONS(3844), - [aux_sym__val_number_decimal_token1] = ACTIONS(3846), - [aux_sym__val_number_decimal_token2] = ACTIONS(3848), - [aux_sym__val_number_decimal_token3] = ACTIONS(3850), - [aux_sym__val_number_decimal_token4] = ACTIONS(3852), - [aux_sym__val_number_token1] = ACTIONS(3854), - [aux_sym__val_number_token2] = ACTIONS(3854), - [aux_sym__val_number_token3] = ACTIONS(3854), - [aux_sym__val_number_token4] = ACTIONS(3856), - [aux_sym__val_number_token5] = ACTIONS(3856), - [aux_sym__val_number_token6] = ACTIONS(3856), - [anon_sym_0b] = ACTIONS(3858), - [anon_sym_0o] = ACTIONS(3860), - [anon_sym_0x] = ACTIONS(3860), - [sym_val_date] = ACTIONS(3862), - [anon_sym_DQUOTE] = ACTIONS(3864), - [sym__str_single_quotes] = ACTIONS(3866), - [sym__str_back_ticks] = ACTIONS(3866), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3868), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3870), + [aux_sym__match_pattern_list_repeat1] = STATE(1348), + [anon_sym_LBRACK] = ACTIONS(4151), + [anon_sym_RBRACK] = ACTIONS(4153), + [anon_sym_LPAREN] = ACTIONS(3848), + [anon_sym_DOLLAR] = ACTIONS(3850), + [anon_sym_LBRACE] = ACTIONS(3852), + [anon_sym_DOT_DOT] = ACTIONS(4155), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3856), + [anon_sym_DOT_DOT_LT] = ACTIONS(3856), + [anon_sym_null] = ACTIONS(3858), + [anon_sym_true] = ACTIONS(3860), + [anon_sym_false] = ACTIONS(3860), + [aux_sym__val_number_decimal_token1] = ACTIONS(3862), + [aux_sym__val_number_decimal_token2] = ACTIONS(3864), + [aux_sym__val_number_decimal_token3] = ACTIONS(3866), + [aux_sym__val_number_decimal_token4] = ACTIONS(3868), + [aux_sym__val_number_token1] = ACTIONS(3870), + [aux_sym__val_number_token2] = ACTIONS(3870), + [aux_sym__val_number_token3] = ACTIONS(3870), + [aux_sym__val_number_token4] = ACTIONS(3872), + [aux_sym__val_number_token5] = ACTIONS(3872), + [aux_sym__val_number_token6] = ACTIONS(3872), + [anon_sym_0b] = ACTIONS(3874), + [anon_sym_0o] = ACTIONS(3876), + [anon_sym_0x] = ACTIONS(3876), + [sym_val_date] = ACTIONS(3878), + [anon_sym_DQUOTE] = ACTIONS(3880), + [sym__str_single_quotes] = ACTIONS(3882), + [sym__str_back_ticks] = ACTIONS(3882), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3884), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3886), }, [1274] = { - [sym__val_range] = STATE(7519), - [sym__value] = STATE(5239), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(7415), - [sym_val_variable] = STATE(2085), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(5609), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(3668), - [sym__str_double_quotes] = STATE(3668), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(5241), - [sym__unquoted_anonymous_prefix] = STATE(7789), + [sym__val_range] = STATE(7833), + [sym__value] = STATE(5230), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(7418), + [sym_val_variable] = STATE(2105), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(5641), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(3793), + [sym__str_double_quotes] = STATE(3793), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(5231), + [sym__unquoted_anonymous_prefix] = STATE(7649), [sym_comment] = STATE(1274), - [anon_sym_LBRACK] = ACTIONS(3460), - [anon_sym_LPAREN] = ACTIONS(4211), - [anon_sym_DOLLAR] = ACTIONS(3464), - [anon_sym_LBRACE] = ACTIONS(3466), - [anon_sym_DOT_DOT] = ACTIONS(4102), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4104), - [anon_sym_DOT_DOT_LT] = ACTIONS(4104), - [anon_sym_null] = ACTIONS(3954), - [anon_sym_true] = ACTIONS(3956), - [anon_sym_false] = ACTIONS(3956), - [aux_sym__val_number_decimal_token1] = ACTIONS(3958), - [aux_sym__val_number_decimal_token2] = ACTIONS(3960), - [aux_sym__val_number_decimal_token3] = ACTIONS(3962), - [aux_sym__val_number_decimal_token4] = ACTIONS(3964), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3966), - [aux_sym__val_number_token5] = ACTIONS(3966), - [aux_sym__val_number_token6] = ACTIONS(3966), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3968), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym__str_single_quotes] = ACTIONS(1288), - [sym__str_back_ticks] = ACTIONS(1288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3490), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1290), + [anon_sym_LBRACK] = ACTIONS(3508), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_DOLLAR] = ACTIONS(3512), + [anon_sym_LBRACE] = ACTIONS(3514), + [anon_sym_DOT_DOT] = ACTIONS(4091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4093), + [anon_sym_DOT_DOT_LT] = ACTIONS(4093), + [anon_sym_null] = ACTIONS(3826), + [anon_sym_true] = ACTIONS(3828), + [anon_sym_false] = ACTIONS(3828), + [aux_sym__val_number_decimal_token1] = ACTIONS(3830), + [aux_sym__val_number_decimal_token2] = ACTIONS(3832), + [aux_sym__val_number_decimal_token3] = ACTIONS(3834), + [aux_sym__val_number_decimal_token4] = ACTIONS(3836), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3838), + [aux_sym__val_number_token5] = ACTIONS(3838), + [aux_sym__val_number_token6] = ACTIONS(3838), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3840), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym__str_single_quotes] = ACTIONS(1274), + [sym__str_back_ticks] = ACTIONS(1274), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3538), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1276), }, [1275] = { - [sym__val_range] = STATE(7519), - [sym__value] = STATE(5270), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(7415), - [sym_val_variable] = STATE(2085), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(5609), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(3668), - [sym__str_double_quotes] = STATE(3668), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(5271), - [sym__unquoted_anonymous_prefix] = STATE(7789), + [sym__expr_parenthesized_immediate] = STATE(2037), + [sym__immediate_decimal] = STATE(1708), + [sym_val_variable] = STATE(2037), [sym_comment] = STATE(1275), - [anon_sym_LBRACK] = ACTIONS(3460), - [anon_sym_LPAREN] = ACTIONS(4211), - [anon_sym_DOLLAR] = ACTIONS(3464), - [anon_sym_LBRACE] = ACTIONS(3466), - [anon_sym_DOT_DOT] = ACTIONS(4102), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4104), - [anon_sym_DOT_DOT_LT] = ACTIONS(4104), - [anon_sym_null] = ACTIONS(3954), - [anon_sym_true] = ACTIONS(3956), - [anon_sym_false] = ACTIONS(3956), - [aux_sym__val_number_decimal_token1] = ACTIONS(3958), - [aux_sym__val_number_decimal_token2] = ACTIONS(3960), - [aux_sym__val_number_decimal_token3] = ACTIONS(3962), - [aux_sym__val_number_decimal_token4] = ACTIONS(3964), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3966), - [aux_sym__val_number_token5] = ACTIONS(3966), - [aux_sym__val_number_token6] = ACTIONS(3966), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3968), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym__str_single_quotes] = ACTIONS(1288), - [sym__str_back_ticks] = ACTIONS(1288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3490), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1290), + [ts_builtin_sym_end] = 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(1441), + [anon_sym_DOLLAR] = ACTIONS(4157), + [anon_sym_DASH_DASH] = ACTIONS(1455), + [anon_sym_DASH2] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1455), + [anon_sym_DOT_DOT] = ACTIONS(1441), + [anon_sym_LPAREN2] = ACTIONS(4159), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1455), + [anon_sym_DOT_DOT_LT] = ACTIONS(1455), + [aux_sym__immediate_decimal_token1] = ACTIONS(4161), + [aux_sym__immediate_decimal_token3] = ACTIONS(4163), + [aux_sym__immediate_decimal_token4] = ACTIONS(4165), + [aux_sym__immediate_decimal_token5] = ACTIONS(4167), + [anon_sym_null] = ACTIONS(1455), + [anon_sym_true] = ACTIONS(1455), + [anon_sym_false] = ACTIONS(1455), + [aux_sym__val_number_decimal_token1] = ACTIONS(1441), + [aux_sym__val_number_decimal_token2] = ACTIONS(1441), + [aux_sym__val_number_decimal_token3] = ACTIONS(1441), + [aux_sym__val_number_decimal_token4] = ACTIONS(1441), + [aux_sym__val_number_token1] = ACTIONS(1455), + [aux_sym__val_number_token2] = ACTIONS(1455), + [aux_sym__val_number_token3] = ACTIONS(1455), + [aux_sym__val_number_token4] = ACTIONS(1455), + [aux_sym__val_number_token5] = ACTIONS(1455), + [aux_sym__val_number_token6] = ACTIONS(1455), + [anon_sym_0b] = ACTIONS(1441), + [anon_sym_0o] = ACTIONS(1441), + [anon_sym_0x] = ACTIONS(1441), + [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(1441), + [anon_sym_out_GT] = ACTIONS(1441), + [anon_sym_e_GT] = ACTIONS(1441), + [anon_sym_o_GT] = ACTIONS(1441), + [anon_sym_err_PLUSout_GT] = ACTIONS(1441), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1441), + [anon_sym_o_PLUSe_GT] = ACTIONS(1441), + [anon_sym_e_PLUSo_GT] = ACTIONS(1441), + [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(1441), + [aux_sym_unquoted_token2] = ACTIONS(1457), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1455), }, [1276] = { - [sym__val_range] = STATE(7568), - [sym__value] = STATE(3338), - [sym_val_nothing] = STATE(3316), - [sym_val_bool] = STATE(3281), - [sym_val_variable] = STATE(3316), - [sym_val_number] = STATE(3316), - [sym__val_number_decimal] = STATE(3050), - [sym__val_number] = STATE(3339), - [sym_val_duration] = STATE(3316), - [sym_val_filesize] = STATE(3316), - [sym_val_binary] = STATE(3316), - [sym_val_string] = STATE(3316), - [sym__raw_str] = STATE(3371), - [sym__str_double_quotes] = STATE(3371), - [sym_val_interpolated] = STATE(3316), - [sym__inter_single_quotes] = STATE(3322), - [sym__inter_double_quotes] = STATE(3335), - [sym_val_list] = STATE(3316), - [sym_val_record] = STATE(3316), - [sym_val_table] = STATE(3316), - [sym_val_closure] = STATE(3316), - [sym_unquoted] = STATE(3341), - [sym__unquoted_anonymous_prefix] = STATE(7693), + [sym__expr_parenthesized_immediate] = STATE(1621), + [sym__immediate_decimal] = STATE(1622), + [sym_val_variable] = STATE(1621), [sym_comment] = STATE(1276), - [anon_sym_LBRACK] = ACTIONS(4259), - [anon_sym_LPAREN] = ACTIONS(4261), - [anon_sym_DOLLAR] = ACTIONS(4263), - [anon_sym_LBRACE] = ACTIONS(4265), - [anon_sym_DOT_DOT] = ACTIONS(4267), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4269), - [anon_sym_DOT_DOT_LT] = ACTIONS(4269), - [anon_sym_null] = ACTIONS(4271), - [anon_sym_true] = ACTIONS(4273), - [anon_sym_false] = ACTIONS(4273), - [aux_sym__val_number_decimal_token1] = ACTIONS(4275), - [aux_sym__val_number_decimal_token2] = ACTIONS(4277), - [aux_sym__val_number_decimal_token3] = ACTIONS(4279), - [aux_sym__val_number_decimal_token4] = ACTIONS(4281), - [aux_sym__val_number_token1] = ACTIONS(4283), - [aux_sym__val_number_token2] = ACTIONS(4283), - [aux_sym__val_number_token3] = ACTIONS(4283), - [aux_sym__val_number_token4] = ACTIONS(4285), - [aux_sym__val_number_token5] = ACTIONS(4285), - [aux_sym__val_number_token6] = ACTIONS(4285), - [anon_sym_0b] = ACTIONS(4287), - [anon_sym_0o] = ACTIONS(4289), - [anon_sym_0x] = ACTIONS(4289), - [sym_val_date] = ACTIONS(4291), - [anon_sym_DQUOTE] = ACTIONS(4293), - [sym__str_single_quotes] = ACTIONS(4295), - [sym__str_back_ticks] = ACTIONS(4295), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4297), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4299), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(4301), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4303), + [ts_builtin_sym_end] = ACTIONS(1532), + [sym__newline] = ACTIONS(1532), + [anon_sym_SEMI] = ACTIONS(1532), + [anon_sym_PIPE] = ACTIONS(1532), + [anon_sym_err_GT_PIPE] = ACTIONS(1532), + [anon_sym_out_GT_PIPE] = ACTIONS(1532), + [anon_sym_e_GT_PIPE] = ACTIONS(1532), + [anon_sym_o_GT_PIPE] = ACTIONS(1532), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1532), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1532), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1532), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1532), + [anon_sym_LBRACK] = ACTIONS(1532), + [anon_sym_LPAREN] = ACTIONS(1522), + [anon_sym_DOLLAR] = ACTIONS(2965), + [anon_sym_DASH_DASH] = ACTIONS(1532), + [anon_sym_DASH2] = ACTIONS(1522), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_DOT_DOT] = ACTIONS(1522), + [anon_sym_LPAREN2] = ACTIONS(4017), + [anon_sym_DOT] = ACTIONS(4169), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1532), + [anon_sym_DOT_DOT_LT] = ACTIONS(1532), + [aux_sym__immediate_decimal_token1] = ACTIONS(4171), + [aux_sym__immediate_decimal_token3] = ACTIONS(4173), + [aux_sym__immediate_decimal_token4] = ACTIONS(4175), + [aux_sym__immediate_decimal_token5] = ACTIONS(4177), + [anon_sym_null] = ACTIONS(1532), + [anon_sym_true] = ACTIONS(1532), + [anon_sym_false] = ACTIONS(1532), + [aux_sym__val_number_decimal_token1] = ACTIONS(1522), + [aux_sym__val_number_decimal_token2] = ACTIONS(1522), + [aux_sym__val_number_decimal_token3] = ACTIONS(1522), + [aux_sym__val_number_decimal_token4] = ACTIONS(1522), + [aux_sym__val_number_token1] = ACTIONS(1532), + [aux_sym__val_number_token2] = ACTIONS(1532), + [aux_sym__val_number_token3] = ACTIONS(1532), + [aux_sym__val_number_token4] = ACTIONS(1532), + [aux_sym__val_number_token5] = ACTIONS(1532), + [aux_sym__val_number_token6] = ACTIONS(1532), + [anon_sym_0b] = ACTIONS(1522), + [anon_sym_0o] = ACTIONS(1522), + [anon_sym_0x] = ACTIONS(1522), + [sym_val_date] = ACTIONS(1532), + [anon_sym_DQUOTE] = ACTIONS(1532), + [sym__str_single_quotes] = ACTIONS(1532), + [sym__str_back_ticks] = ACTIONS(1532), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1532), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1532), + [anon_sym_err_GT] = ACTIONS(1522), + [anon_sym_out_GT] = ACTIONS(1522), + [anon_sym_e_GT] = ACTIONS(1522), + [anon_sym_o_GT] = ACTIONS(1522), + [anon_sym_err_PLUSout_GT] = ACTIONS(1522), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1522), + [anon_sym_o_PLUSe_GT] = ACTIONS(1522), + [anon_sym_e_PLUSo_GT] = ACTIONS(1522), + [anon_sym_err_GT_GT] = ACTIONS(1532), + [anon_sym_out_GT_GT] = ACTIONS(1532), + [anon_sym_e_GT_GT] = ACTIONS(1532), + [anon_sym_o_GT_GT] = ACTIONS(1532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1532), + [aux_sym_unquoted_token1] = ACTIONS(1522), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1532), }, [1277] = { - [sym__val_range] = STATE(7832), - [sym__value] = STATE(4769), - [sym_val_nothing] = STATE(4789), - [sym_val_bool] = STATE(4479), - [sym_val_variable] = STATE(4789), - [sym_val_number] = STATE(4789), - [sym__val_number_decimal] = STATE(4080), - [sym__val_number] = STATE(4790), - [sym_val_duration] = STATE(4789), - [sym_val_filesize] = STATE(4789), - [sym_val_binary] = STATE(4789), - [sym_val_string] = STATE(4789), - [sym__raw_str] = STATE(4153), - [sym__str_double_quotes] = STATE(4153), - [sym_val_interpolated] = STATE(4789), - [sym__inter_single_quotes] = STATE(4791), - [sym__inter_double_quotes] = STATE(4792), - [sym_val_list] = STATE(4789), - [sym_val_record] = STATE(4789), - [sym_val_table] = STATE(4789), - [sym_val_closure] = STATE(4789), - [sym_unquoted] = STATE(4770), - [sym__unquoted_anonymous_prefix] = STATE(7479), [sym_comment] = STATE(1277), - [anon_sym_LBRACK] = ACTIONS(4309), - [anon_sym_LPAREN] = ACTIONS(4311), - [anon_sym_DOLLAR] = ACTIONS(2240), - [anon_sym_LBRACE] = ACTIONS(4313), - [anon_sym_DOT_DOT] = ACTIONS(4315), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4317), - [anon_sym_DOT_DOT_LT] = ACTIONS(4317), - [anon_sym_null] = ACTIONS(4319), - [anon_sym_true] = ACTIONS(4321), - [anon_sym_false] = ACTIONS(4321), - [aux_sym__val_number_decimal_token1] = ACTIONS(2260), - [aux_sym__val_number_decimal_token2] = ACTIONS(4323), - [aux_sym__val_number_decimal_token3] = ACTIONS(4325), - [aux_sym__val_number_decimal_token4] = ACTIONS(4327), - [aux_sym__val_number_token1] = ACTIONS(4329), - [aux_sym__val_number_token2] = ACTIONS(4329), - [aux_sym__val_number_token3] = ACTIONS(4329), - [aux_sym__val_number_token4] = ACTIONS(4331), - [aux_sym__val_number_token5] = ACTIONS(4331), - [aux_sym__val_number_token6] = ACTIONS(4331), - [anon_sym_0b] = ACTIONS(2270), - [anon_sym_0o] = ACTIONS(2272), - [anon_sym_0x] = ACTIONS(2272), - [sym_val_date] = ACTIONS(4333), - [anon_sym_DQUOTE] = ACTIONS(4335), - [sym__str_single_quotes] = ACTIONS(4337), - [sym__str_back_ticks] = ACTIONS(4337), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4339), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4341), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(2288), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2290), + [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_LBRACK] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1504), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_DASH2] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(1506), + [anon_sym_DOT_DOT] = ACTIONS(1504), + [anon_sym_LPAREN2] = 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__immediate_decimal_token1] = ACTIONS(4179), + [aux_sym__immediate_decimal_token2] = ACTIONS(4181), + [anon_sym_null] = ACTIONS(1506), + [anon_sym_true] = ACTIONS(1506), + [anon_sym_false] = ACTIONS(1506), + [aux_sym__val_number_decimal_token1] = ACTIONS(1504), + [aux_sym__val_number_decimal_token2] = ACTIONS(1506), + [aux_sym__val_number_decimal_token3] = ACTIONS(1506), + [aux_sym__val_number_decimal_token4] = ACTIONS(1506), + [aux_sym__val_number_token1] = ACTIONS(1506), + [aux_sym__val_number_token2] = ACTIONS(1506), + [aux_sym__val_number_token3] = ACTIONS(1506), + [aux_sym__val_number_token4] = ACTIONS(1506), + [aux_sym__val_number_token5] = ACTIONS(1506), + [aux_sym__val_number_token6] = 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_token2] = ACTIONS(1504), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1506), }, [1278] = { - [sym__val_range] = STATE(7568), - [sym__value] = STATE(3314), - [sym_val_nothing] = STATE(3316), - [sym_val_bool] = STATE(3281), - [sym_val_variable] = STATE(3316), - [sym_val_number] = STATE(3316), - [sym__val_number_decimal] = STATE(3050), - [sym__val_number] = STATE(3339), - [sym_val_duration] = STATE(3316), - [sym_val_filesize] = STATE(3316), - [sym_val_binary] = STATE(3316), - [sym_val_string] = STATE(3316), - [sym__raw_str] = STATE(3371), - [sym__str_double_quotes] = STATE(3371), - [sym_val_interpolated] = STATE(3316), - [sym__inter_single_quotes] = STATE(3322), - [sym__inter_double_quotes] = STATE(3335), - [sym_val_list] = STATE(3316), - [sym_val_record] = STATE(3316), - [sym_val_table] = STATE(3316), - [sym_val_closure] = STATE(3316), - [sym_unquoted] = STATE(3317), - [sym__unquoted_anonymous_prefix] = STATE(7693), + [sym__val_range] = STATE(7613), + [sym__value] = STATE(5281), + [sym_val_nothing] = STATE(4275), + [sym_val_bool] = STATE(5805), + [sym_val_variable] = STATE(4275), + [sym_val_number] = STATE(4275), + [sym__val_number_decimal] = STATE(5302), + [sym__val_number] = STATE(4276), + [sym_val_duration] = STATE(4275), + [sym_val_filesize] = STATE(4275), + [sym_val_binary] = STATE(4275), + [sym_val_string] = STATE(4275), + [sym__raw_str] = STATE(5689), + [sym__str_double_quotes] = STATE(5689), + [sym_val_interpolated] = STATE(4275), + [sym__inter_single_quotes] = STATE(5061), + [sym__inter_double_quotes] = STATE(5062), + [sym_val_list] = STATE(4275), + [sym_val_record] = STATE(4275), + [sym_val_table] = STATE(4275), + [sym_val_closure] = STATE(4275), + [sym_unquoted] = STATE(5285), + [sym__unquoted_anonymous_prefix] = STATE(7819), [sym_comment] = STATE(1278), - [anon_sym_LBRACK] = ACTIONS(4259), - [anon_sym_LPAREN] = ACTIONS(4261), - [anon_sym_DOLLAR] = ACTIONS(4263), - [anon_sym_LBRACE] = ACTIONS(4265), - [anon_sym_DOT_DOT] = ACTIONS(4267), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4269), - [anon_sym_DOT_DOT_LT] = ACTIONS(4269), - [anon_sym_null] = ACTIONS(4271), - [anon_sym_true] = ACTIONS(4273), - [anon_sym_false] = ACTIONS(4273), - [aux_sym__val_number_decimal_token1] = ACTIONS(4275), - [aux_sym__val_number_decimal_token2] = ACTIONS(4277), - [aux_sym__val_number_decimal_token3] = ACTIONS(4279), - [aux_sym__val_number_decimal_token4] = ACTIONS(4281), - [aux_sym__val_number_token1] = ACTIONS(4283), - [aux_sym__val_number_token2] = ACTIONS(4283), - [aux_sym__val_number_token3] = ACTIONS(4283), - [aux_sym__val_number_token4] = ACTIONS(4285), - [aux_sym__val_number_token5] = ACTIONS(4285), - [aux_sym__val_number_token6] = ACTIONS(4285), - [anon_sym_0b] = ACTIONS(4287), - [anon_sym_0o] = ACTIONS(4289), - [anon_sym_0x] = ACTIONS(4289), - [sym_val_date] = ACTIONS(4291), - [anon_sym_DQUOTE] = ACTIONS(4293), - [sym__str_single_quotes] = ACTIONS(4295), - [sym__str_back_ticks] = ACTIONS(4295), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4297), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4299), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(4301), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4115), + [anon_sym_LPAREN] = ACTIONS(4085), + [anon_sym_DOLLAR] = ACTIONS(4117), + [anon_sym_LBRACE] = ACTIONS(4119), + [anon_sym_DOT_DOT] = ACTIONS(4121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4123), + [anon_sym_DOT_DOT_LT] = ACTIONS(4123), + [anon_sym_null] = ACTIONS(4095), + [anon_sym_true] = ACTIONS(4097), + [anon_sym_false] = ACTIONS(4097), + [aux_sym__val_number_decimal_token1] = ACTIONS(4125), + [aux_sym__val_number_decimal_token2] = ACTIONS(4127), + [aux_sym__val_number_decimal_token3] = ACTIONS(4129), + [aux_sym__val_number_decimal_token4] = ACTIONS(4131), + [aux_sym__val_number_token1] = ACTIONS(3676), + [aux_sym__val_number_token2] = ACTIONS(3676), + [aux_sym__val_number_token3] = ACTIONS(3676), + [aux_sym__val_number_token4] = ACTIONS(4133), + [aux_sym__val_number_token5] = ACTIONS(4133), + [aux_sym__val_number_token6] = ACTIONS(4133), + [anon_sym_0b] = ACTIONS(3680), + [anon_sym_0o] = ACTIONS(3682), + [anon_sym_0x] = ACTIONS(3682), + [sym_val_date] = ACTIONS(4109), + [anon_sym_DQUOTE] = ACTIONS(4135), + [sym__str_single_quotes] = ACTIONS(4137), + [sym__str_back_ticks] = ACTIONS(4137), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3690), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3692), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(4139), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4141), }, [1279] = { - [sym__val_range] = STATE(7832), - [sym__value] = STATE(4779), - [sym_val_nothing] = STATE(4789), - [sym_val_bool] = STATE(4479), - [sym_val_variable] = STATE(4789), - [sym_val_number] = STATE(4789), - [sym__val_number_decimal] = STATE(4080), - [sym__val_number] = STATE(4790), - [sym_val_duration] = STATE(4789), - [sym_val_filesize] = STATE(4789), - [sym_val_binary] = STATE(4789), - [sym_val_string] = STATE(4789), - [sym__raw_str] = STATE(4153), - [sym__str_double_quotes] = STATE(4153), - [sym_val_interpolated] = STATE(4789), - [sym__inter_single_quotes] = STATE(4791), - [sym__inter_double_quotes] = STATE(4792), - [sym_val_list] = STATE(4789), - [sym_val_record] = STATE(4789), - [sym_val_table] = STATE(4789), - [sym_val_closure] = STATE(4789), - [sym_unquoted] = STATE(4780), - [sym__unquoted_anonymous_prefix] = STATE(7479), + [sym__val_range] = STATE(7466), + [sym__value] = STATE(2126), + [sym_val_nothing] = STATE(1994), + [sym_val_bool] = STATE(1971), + [sym_val_variable] = STATE(1994), + [sym_val_number] = STATE(1994), + [sym__val_number_decimal] = STATE(1426), + [sym__val_number] = STATE(1995), + [sym_val_duration] = STATE(1994), + [sym_val_filesize] = STATE(1994), + [sym_val_binary] = STATE(1994), + [sym_val_string] = STATE(1994), + [sym__raw_str] = STATE(2054), + [sym__str_double_quotes] = STATE(2054), + [sym_val_interpolated] = STATE(1994), + [sym__inter_single_quotes] = STATE(1996), + [sym__inter_double_quotes] = STATE(1997), + [sym_val_list] = STATE(1994), + [sym_val_record] = STATE(1994), + [sym_val_table] = STATE(1994), + [sym_val_closure] = STATE(1994), + [sym_unquoted] = STATE(2128), + [sym__unquoted_anonymous_prefix] = STATE(7524), [sym_comment] = STATE(1279), - [anon_sym_LBRACK] = ACTIONS(4309), - [anon_sym_LPAREN] = ACTIONS(4311), - [anon_sym_DOLLAR] = ACTIONS(2240), - [anon_sym_LBRACE] = ACTIONS(4313), - [anon_sym_DOT_DOT] = ACTIONS(4315), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4317), - [anon_sym_DOT_DOT_LT] = ACTIONS(4317), - [anon_sym_null] = ACTIONS(4319), - [anon_sym_true] = ACTIONS(4321), - [anon_sym_false] = ACTIONS(4321), - [aux_sym__val_number_decimal_token1] = ACTIONS(2260), - [aux_sym__val_number_decimal_token2] = ACTIONS(4323), - [aux_sym__val_number_decimal_token3] = ACTIONS(4325), - [aux_sym__val_number_decimal_token4] = ACTIONS(4327), - [aux_sym__val_number_token1] = ACTIONS(4329), - [aux_sym__val_number_token2] = ACTIONS(4329), - [aux_sym__val_number_token3] = ACTIONS(4329), - [aux_sym__val_number_token4] = ACTIONS(4331), - [aux_sym__val_number_token5] = ACTIONS(4331), - [aux_sym__val_number_token6] = ACTIONS(4331), - [anon_sym_0b] = ACTIONS(2270), - [anon_sym_0o] = ACTIONS(2272), - [anon_sym_0x] = ACTIONS(2272), - [sym_val_date] = ACTIONS(4333), - [anon_sym_DQUOTE] = ACTIONS(4335), - [sym__str_single_quotes] = ACTIONS(4337), - [sym__str_back_ticks] = ACTIONS(4337), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4339), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4341), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(2288), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2290), + [anon_sym_LBRACK] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(4183), + [anon_sym_DOLLAR] = ACTIONS(4157), + [anon_sym_LBRACE] = ACTIONS(2971), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4187), + [anon_sym_DOT_DOT_LT] = ACTIONS(4187), + [anon_sym_null] = ACTIONS(4189), + [anon_sym_true] = ACTIONS(4191), + [anon_sym_false] = ACTIONS(4191), + [aux_sym__val_number_decimal_token1] = ACTIONS(4193), + [aux_sym__val_number_decimal_token2] = ACTIONS(4195), + [aux_sym__val_number_decimal_token3] = ACTIONS(4197), + [aux_sym__val_number_decimal_token4] = ACTIONS(4199), + [aux_sym__val_number_token1] = ACTIONS(2989), + [aux_sym__val_number_token2] = ACTIONS(2989), + [aux_sym__val_number_token3] = ACTIONS(2989), + [aux_sym__val_number_token4] = ACTIONS(4201), + [aux_sym__val_number_token5] = ACTIONS(4201), + [aux_sym__val_number_token6] = ACTIONS(4201), + [anon_sym_0b] = ACTIONS(2993), + [anon_sym_0o] = ACTIONS(2995), + [anon_sym_0x] = ACTIONS(2995), + [sym_val_date] = ACTIONS(4203), + [anon_sym_DQUOTE] = ACTIONS(2999), + [sym__str_single_quotes] = ACTIONS(3001), + [sym__str_back_ticks] = ACTIONS(3001), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3003), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3005), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(4205), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3009), }, [1280] = { - [sym__val_range] = STATE(7832), - [sym__value] = STATE(4837), - [sym_val_nothing] = STATE(4789), - [sym_val_bool] = STATE(4479), - [sym_val_variable] = STATE(4789), - [sym_val_number] = STATE(4789), - [sym__val_number_decimal] = STATE(4080), - [sym__val_number] = STATE(4790), - [sym_val_duration] = STATE(4789), - [sym_val_filesize] = STATE(4789), - [sym_val_binary] = STATE(4789), - [sym_val_string] = STATE(4789), - [sym__raw_str] = STATE(4153), - [sym__str_double_quotes] = STATE(4153), - [sym_val_interpolated] = STATE(4789), - [sym__inter_single_quotes] = STATE(4791), - [sym__inter_double_quotes] = STATE(4792), - [sym_val_list] = STATE(4789), - [sym_val_record] = STATE(4789), - [sym_val_table] = STATE(4789), - [sym_val_closure] = STATE(4789), - [sym_unquoted] = STATE(4838), - [sym__unquoted_anonymous_prefix] = STATE(7479), + [sym__expr_parenthesized_immediate] = STATE(1693), + [sym__immediate_decimal] = STATE(1689), + [sym_val_variable] = STATE(1693), [sym_comment] = STATE(1280), - [anon_sym_LBRACK] = ACTIONS(4309), - [anon_sym_LPAREN] = ACTIONS(4311), - [anon_sym_DOLLAR] = ACTIONS(2240), - [anon_sym_LBRACE] = ACTIONS(4313), - [anon_sym_DOT_DOT] = ACTIONS(4315), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4317), - [anon_sym_DOT_DOT_LT] = ACTIONS(4317), - [anon_sym_null] = ACTIONS(4319), - [anon_sym_true] = ACTIONS(4321), - [anon_sym_false] = ACTIONS(4321), - [aux_sym__val_number_decimal_token1] = ACTIONS(2260), - [aux_sym__val_number_decimal_token2] = ACTIONS(4323), - [aux_sym__val_number_decimal_token3] = ACTIONS(4325), - [aux_sym__val_number_decimal_token4] = ACTIONS(4327), - [aux_sym__val_number_token1] = ACTIONS(4329), - [aux_sym__val_number_token2] = ACTIONS(4329), - [aux_sym__val_number_token3] = ACTIONS(4329), - [aux_sym__val_number_token4] = ACTIONS(4331), - [aux_sym__val_number_token5] = ACTIONS(4331), - [aux_sym__val_number_token6] = ACTIONS(4331), - [anon_sym_0b] = ACTIONS(2270), - [anon_sym_0o] = ACTIONS(2272), - [anon_sym_0x] = ACTIONS(2272), - [sym_val_date] = ACTIONS(4333), - [anon_sym_DQUOTE] = ACTIONS(4335), - [sym__str_single_quotes] = ACTIONS(4337), - [sym__str_back_ticks] = ACTIONS(4337), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4339), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4341), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(2288), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2290), + [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_RPAREN] = ACTIONS(1455), + [anon_sym_DOLLAR] = ACTIONS(3618), + [anon_sym_GT2] = ACTIONS(1441), + [anon_sym_DASH2] = ACTIONS(1441), + [anon_sym_in2] = ACTIONS(1455), + [anon_sym_LBRACE] = ACTIONS(1455), + [anon_sym_RBRACE] = ACTIONS(1455), + [anon_sym_STAR2] = ACTIONS(1441), + [anon_sym_and2] = ACTIONS(1455), + [anon_sym_xor2] = ACTIONS(1455), + [anon_sym_or2] = ACTIONS(1455), + [anon_sym_not_DASHin2] = ACTIONS(1455), + [anon_sym_has2] = ACTIONS(1455), + [anon_sym_not_DASHhas2] = ACTIONS(1455), + [anon_sym_starts_DASHwith2] = ACTIONS(1455), + [anon_sym_ends_DASHwith2] = ACTIONS(1455), + [anon_sym_EQ_EQ2] = ACTIONS(1455), + [anon_sym_BANG_EQ2] = ACTIONS(1455), + [anon_sym_LT2] = ACTIONS(1441), + [anon_sym_LT_EQ2] = ACTIONS(1455), + [anon_sym_GT_EQ2] = ACTIONS(1455), + [anon_sym_EQ_TILDE2] = ACTIONS(1455), + [anon_sym_BANG_TILDE2] = ACTIONS(1455), + [anon_sym_LPAREN2] = ACTIONS(4207), + [anon_sym_STAR_STAR2] = ACTIONS(1455), + [anon_sym_PLUS_PLUS2] = ACTIONS(1455), + [anon_sym_SLASH2] = ACTIONS(1441), + [anon_sym_mod2] = ACTIONS(1455), + [anon_sym_SLASH_SLASH2] = ACTIONS(1455), + [anon_sym_PLUS2] = ACTIONS(1441), + [anon_sym_bit_DASHshl2] = ACTIONS(1455), + [anon_sym_bit_DASHshr2] = ACTIONS(1455), + [anon_sym_bit_DASHand2] = ACTIONS(1455), + [anon_sym_bit_DASHxor2] = ACTIONS(1455), + [anon_sym_bit_DASHor2] = ACTIONS(1455), + [anon_sym_DOT] = ACTIONS(4209), + [aux_sym__immediate_decimal_token1] = ACTIONS(4211), + [aux_sym__immediate_decimal_token3] = ACTIONS(4211), + [aux_sym__immediate_decimal_token4] = ACTIONS(4213), + [aux_sym__immediate_decimal_token5] = ACTIONS(4215), + [anon_sym_err_GT] = ACTIONS(1441), + [anon_sym_out_GT] = ACTIONS(1441), + [anon_sym_e_GT] = ACTIONS(1441), + [anon_sym_o_GT] = ACTIONS(1441), + [anon_sym_err_PLUSout_GT] = ACTIONS(1441), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1441), + [anon_sym_o_PLUSe_GT] = ACTIONS(1441), + [anon_sym_e_PLUSo_GT] = ACTIONS(1441), + [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), + [anon_sym_POUND] = ACTIONS(247), }, [1281] = { - [sym__val_range] = STATE(7471), - [sym__value] = STATE(4637), - [sym_val_nothing] = STATE(4585), - [sym_val_bool] = STATE(6878), - [sym_val_variable] = STATE(4585), - [sym_val_number] = STATE(4585), - [sym__val_number_decimal] = STATE(5463), - [sym__val_number] = STATE(4586), - [sym_val_duration] = STATE(4585), - [sym_val_filesize] = STATE(4585), - [sym_val_binary] = STATE(4585), - [sym_val_string] = STATE(4585), - [sym__raw_str] = STATE(4058), - [sym__str_double_quotes] = STATE(4058), - [sym_val_interpolated] = STATE(4585), - [sym__inter_single_quotes] = STATE(4587), - [sym__inter_double_quotes] = STATE(4588), - [sym_val_list] = STATE(4585), - [sym_val_record] = STATE(4585), - [sym_val_table] = STATE(4585), - [sym_val_closure] = STATE(4585), - [sym_unquoted] = STATE(4638), - [sym__unquoted_anonymous_prefix] = STATE(7643), + [sym__val_range] = STATE(7613), + [sym__value] = STATE(5236), + [sym_val_nothing] = STATE(4275), + [sym_val_bool] = STATE(5805), + [sym_val_variable] = STATE(4275), + [sym_val_number] = STATE(4275), + [sym__val_number_decimal] = STATE(5302), + [sym__val_number] = STATE(4276), + [sym_val_duration] = STATE(4275), + [sym_val_filesize] = STATE(4275), + [sym_val_binary] = STATE(4275), + [sym_val_string] = STATE(4275), + [sym__raw_str] = STATE(5689), + [sym__str_double_quotes] = STATE(5689), + [sym_val_interpolated] = STATE(4275), + [sym__inter_single_quotes] = STATE(5061), + [sym__inter_double_quotes] = STATE(5062), + [sym_val_list] = STATE(4275), + [sym_val_record] = STATE(4275), + [sym_val_table] = STATE(4275), + [sym_val_closure] = STATE(4275), + [sym_unquoted] = STATE(5284), + [sym__unquoted_anonymous_prefix] = STATE(7819), [sym_comment] = STATE(1281), - [anon_sym_LBRACK] = ACTIONS(4343), - [anon_sym_LPAREN] = ACTIONS(4345), - [anon_sym_DOLLAR] = ACTIONS(2074), - [anon_sym_LBRACE] = ACTIONS(4347), - [anon_sym_DOT_DOT] = ACTIONS(4349), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4351), - [anon_sym_DOT_DOT_LT] = ACTIONS(4351), - [anon_sym_null] = ACTIONS(4353), - [anon_sym_true] = ACTIONS(4355), - [anon_sym_false] = ACTIONS(4355), - [aux_sym__val_number_decimal_token1] = ACTIONS(4357), - [aux_sym__val_number_decimal_token2] = ACTIONS(4359), - [aux_sym__val_number_decimal_token3] = ACTIONS(4361), - [aux_sym__val_number_decimal_token4] = ACTIONS(4363), - [aux_sym__val_number_token1] = ACTIONS(4365), - [aux_sym__val_number_token2] = ACTIONS(4365), - [aux_sym__val_number_token3] = ACTIONS(4365), - [aux_sym__val_number_token4] = ACTIONS(4367), - [aux_sym__val_number_token5] = ACTIONS(4367), - [aux_sym__val_number_token6] = ACTIONS(4367), - [anon_sym_0b] = ACTIONS(2104), - [anon_sym_0o] = ACTIONS(2106), - [anon_sym_0x] = ACTIONS(2106), - [sym_val_date] = ACTIONS(4369), - [anon_sym_DQUOTE] = ACTIONS(4371), - [sym__str_single_quotes] = ACTIONS(4373), - [sym__str_back_ticks] = ACTIONS(4373), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4375), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4377), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(2124), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2126), + [anon_sym_LBRACK] = ACTIONS(4115), + [anon_sym_LPAREN] = ACTIONS(4085), + [anon_sym_DOLLAR] = ACTIONS(4117), + [anon_sym_LBRACE] = ACTIONS(4119), + [anon_sym_DOT_DOT] = ACTIONS(4121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4123), + [anon_sym_DOT_DOT_LT] = ACTIONS(4123), + [anon_sym_null] = ACTIONS(4095), + [anon_sym_true] = ACTIONS(4097), + [anon_sym_false] = ACTIONS(4097), + [aux_sym__val_number_decimal_token1] = ACTIONS(4125), + [aux_sym__val_number_decimal_token2] = ACTIONS(4127), + [aux_sym__val_number_decimal_token3] = ACTIONS(4129), + [aux_sym__val_number_decimal_token4] = ACTIONS(4131), + [aux_sym__val_number_token1] = ACTIONS(3676), + [aux_sym__val_number_token2] = ACTIONS(3676), + [aux_sym__val_number_token3] = ACTIONS(3676), + [aux_sym__val_number_token4] = ACTIONS(4133), + [aux_sym__val_number_token5] = ACTIONS(4133), + [aux_sym__val_number_token6] = ACTIONS(4133), + [anon_sym_0b] = ACTIONS(3680), + [anon_sym_0o] = ACTIONS(3682), + [anon_sym_0x] = ACTIONS(3682), + [sym_val_date] = ACTIONS(4109), + [anon_sym_DQUOTE] = ACTIONS(4135), + [sym__str_single_quotes] = ACTIONS(4137), + [sym__str_back_ticks] = ACTIONS(4137), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3690), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3692), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(4139), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4141), }, [1282] = { - [sym__val_range] = STATE(7832), - [sym__value] = STATE(4903), - [sym_val_nothing] = STATE(4789), - [sym_val_bool] = STATE(4479), - [sym_val_variable] = STATE(4789), - [sym_val_number] = STATE(4789), - [sym__val_number_decimal] = STATE(4080), - [sym__val_number] = STATE(4790), - [sym_val_duration] = STATE(4789), - [sym_val_filesize] = STATE(4789), - [sym_val_binary] = STATE(4789), - [sym_val_string] = STATE(4789), - [sym__raw_str] = STATE(4153), - [sym__str_double_quotes] = STATE(4153), - [sym_val_interpolated] = STATE(4789), - [sym__inter_single_quotes] = STATE(4791), - [sym__inter_double_quotes] = STATE(4792), - [sym_val_list] = STATE(4789), - [sym_val_record] = STATE(4789), - [sym_val_table] = STATE(4789), - [sym_val_closure] = STATE(4789), - [sym_unquoted] = STATE(4904), - [sym__unquoted_anonymous_prefix] = STATE(7479), [sym_comment] = STATE(1282), - [anon_sym_LBRACK] = ACTIONS(4309), - [anon_sym_LPAREN] = ACTIONS(4311), - [anon_sym_DOLLAR] = ACTIONS(2240), - [anon_sym_LBRACE] = ACTIONS(4313), - [anon_sym_DOT_DOT] = ACTIONS(4315), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4317), - [anon_sym_DOT_DOT_LT] = ACTIONS(4317), - [anon_sym_null] = ACTIONS(4319), - [anon_sym_true] = ACTIONS(4321), - [anon_sym_false] = ACTIONS(4321), - [aux_sym__val_number_decimal_token1] = ACTIONS(2260), - [aux_sym__val_number_decimal_token2] = ACTIONS(4323), - [aux_sym__val_number_decimal_token3] = ACTIONS(4325), - [aux_sym__val_number_decimal_token4] = ACTIONS(4327), - [aux_sym__val_number_token1] = ACTIONS(4329), - [aux_sym__val_number_token2] = ACTIONS(4329), - [aux_sym__val_number_token3] = ACTIONS(4329), - [aux_sym__val_number_token4] = ACTIONS(4331), - [aux_sym__val_number_token5] = ACTIONS(4331), - [aux_sym__val_number_token6] = ACTIONS(4331), - [anon_sym_0b] = ACTIONS(2270), - [anon_sym_0o] = ACTIONS(2272), - [anon_sym_0x] = ACTIONS(2272), - [sym_val_date] = ACTIONS(4333), - [anon_sym_DQUOTE] = ACTIONS(4335), - [sym__str_single_quotes] = ACTIONS(4337), - [sym__str_back_ticks] = ACTIONS(4337), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4339), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4341), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(2288), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2290), + [anon_sym_EQ] = ACTIONS(982), + [anon_sym_PLUS_EQ] = ACTIONS(984), + [anon_sym_DASH_EQ] = ACTIONS(984), + [anon_sym_STAR_EQ] = ACTIONS(984), + [anon_sym_SLASH_EQ] = ACTIONS(984), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(984), + [sym__newline] = ACTIONS(984), + [anon_sym_SEMI] = ACTIONS(984), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_err_GT_PIPE] = ACTIONS(984), + [anon_sym_out_GT_PIPE] = ACTIONS(984), + [anon_sym_e_GT_PIPE] = ACTIONS(984), + [anon_sym_o_GT_PIPE] = ACTIONS(984), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(984), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(984), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(984), + [anon_sym_RPAREN] = ACTIONS(984), + [anon_sym_GT2] = ACTIONS(982), + [anon_sym_DASH2] = ACTIONS(982), + [anon_sym_in2] = ACTIONS(984), + [anon_sym_RBRACE] = ACTIONS(984), + [anon_sym_STAR2] = ACTIONS(982), + [anon_sym_and2] = ACTIONS(984), + [anon_sym_xor2] = ACTIONS(984), + [anon_sym_or2] = ACTIONS(984), + [anon_sym_not_DASHin2] = ACTIONS(984), + [anon_sym_has2] = ACTIONS(984), + [anon_sym_not_DASHhas2] = ACTIONS(984), + [anon_sym_starts_DASHwith2] = ACTIONS(984), + [anon_sym_ends_DASHwith2] = ACTIONS(984), + [anon_sym_EQ_EQ2] = ACTIONS(984), + [anon_sym_BANG_EQ2] = ACTIONS(984), + [anon_sym_LT2] = ACTIONS(982), + [anon_sym_LT_EQ2] = ACTIONS(984), + [anon_sym_GT_EQ2] = ACTIONS(984), + [anon_sym_EQ_TILDE2] = ACTIONS(984), + [anon_sym_BANG_TILDE2] = ACTIONS(984), + [anon_sym_STAR_STAR2] = ACTIONS(984), + [anon_sym_PLUS_PLUS2] = ACTIONS(982), + [anon_sym_SLASH2] = ACTIONS(982), + [anon_sym_mod2] = ACTIONS(984), + [anon_sym_SLASH_SLASH2] = ACTIONS(984), + [anon_sym_PLUS2] = ACTIONS(982), + [anon_sym_bit_DASHshl2] = ACTIONS(984), + [anon_sym_bit_DASHshr2] = ACTIONS(984), + [anon_sym_bit_DASHand2] = ACTIONS(984), + [anon_sym_bit_DASHxor2] = ACTIONS(984), + [anon_sym_bit_DASHor2] = ACTIONS(984), + [anon_sym_DOT_DOT2] = ACTIONS(982), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(984), + [anon_sym_DOT_DOT_LT2] = ACTIONS(984), + [anon_sym_COLON2] = ACTIONS(984), + [anon_sym_DOT2] = ACTIONS(982), + [anon_sym_err_GT] = ACTIONS(982), + [anon_sym_out_GT] = ACTIONS(982), + [anon_sym_e_GT] = ACTIONS(982), + [anon_sym_o_GT] = ACTIONS(982), + [anon_sym_err_PLUSout_GT] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT] = ACTIONS(982), + [anon_sym_o_PLUSe_GT] = ACTIONS(982), + [anon_sym_e_PLUSo_GT] = ACTIONS(982), + [anon_sym_err_GT_GT] = ACTIONS(984), + [anon_sym_out_GT_GT] = ACTIONS(984), + [anon_sym_e_GT_GT] = ACTIONS(984), + [anon_sym_o_GT_GT] = ACTIONS(984), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(984), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(984), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(984), + [anon_sym_POUND] = ACTIONS(247), }, [1283] = { - [sym__val_range] = STATE(7471), - [sym__value] = STATE(4659), - [sym_val_nothing] = STATE(4585), - [sym_val_bool] = STATE(6878), - [sym_val_variable] = STATE(4585), - [sym_val_number] = STATE(4585), - [sym__val_number_decimal] = STATE(5463), - [sym__val_number] = STATE(4586), - [sym_val_duration] = STATE(4585), - [sym_val_filesize] = STATE(4585), - [sym_val_binary] = STATE(4585), - [sym_val_string] = STATE(4585), - [sym__raw_str] = STATE(4058), - [sym__str_double_quotes] = STATE(4058), - [sym_val_interpolated] = STATE(4585), - [sym__inter_single_quotes] = STATE(4587), - [sym__inter_double_quotes] = STATE(4588), - [sym_val_list] = STATE(4585), - [sym_val_record] = STATE(4585), - [sym_val_table] = STATE(4585), - [sym_val_closure] = STATE(4585), - [sym_unquoted] = STATE(4665), - [sym__unquoted_anonymous_prefix] = STATE(7643), + [sym__expr_parenthesized_immediate] = STATE(1693), + [sym__immediate_decimal] = STATE(1614), + [sym_val_variable] = STATE(1693), [sym_comment] = STATE(1283), - [anon_sym_LBRACK] = ACTIONS(4343), - [anon_sym_LPAREN] = ACTIONS(4345), - [anon_sym_DOLLAR] = ACTIONS(2074), - [anon_sym_LBRACE] = ACTIONS(4347), - [anon_sym_DOT_DOT] = ACTIONS(4349), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4351), - [anon_sym_DOT_DOT_LT] = ACTIONS(4351), - [anon_sym_null] = ACTIONS(4353), - [anon_sym_true] = ACTIONS(4355), - [anon_sym_false] = ACTIONS(4355), - [aux_sym__val_number_decimal_token1] = ACTIONS(4357), - [aux_sym__val_number_decimal_token2] = ACTIONS(4359), - [aux_sym__val_number_decimal_token3] = ACTIONS(4361), - [aux_sym__val_number_decimal_token4] = ACTIONS(4363), - [aux_sym__val_number_token1] = ACTIONS(4365), - [aux_sym__val_number_token2] = ACTIONS(4365), - [aux_sym__val_number_token3] = ACTIONS(4365), - [aux_sym__val_number_token4] = ACTIONS(4367), - [aux_sym__val_number_token5] = ACTIONS(4367), - [aux_sym__val_number_token6] = ACTIONS(4367), - [anon_sym_0b] = ACTIONS(2104), - [anon_sym_0o] = ACTIONS(2106), - [anon_sym_0x] = ACTIONS(2106), - [sym_val_date] = ACTIONS(4369), - [anon_sym_DQUOTE] = ACTIONS(4371), - [sym__str_single_quotes] = ACTIONS(4373), - [sym__str_back_ticks] = ACTIONS(4373), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4375), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4377), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(2124), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2126), + [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_RPAREN] = ACTIONS(1455), + [anon_sym_DOLLAR] = ACTIONS(3618), + [anon_sym_GT2] = ACTIONS(1441), + [anon_sym_DASH2] = ACTIONS(1441), + [anon_sym_in2] = ACTIONS(1455), + [anon_sym_RBRACE] = ACTIONS(1455), + [anon_sym_STAR2] = ACTIONS(1441), + [anon_sym_and2] = ACTIONS(1455), + [anon_sym_xor2] = ACTIONS(1455), + [anon_sym_or2] = ACTIONS(1455), + [anon_sym_not_DASHin2] = ACTIONS(1455), + [anon_sym_has2] = ACTIONS(1455), + [anon_sym_not_DASHhas2] = ACTIONS(1455), + [anon_sym_starts_DASHwith2] = ACTIONS(1455), + [anon_sym_ends_DASHwith2] = ACTIONS(1455), + [anon_sym_EQ_EQ2] = ACTIONS(1455), + [anon_sym_BANG_EQ2] = ACTIONS(1455), + [anon_sym_LT2] = ACTIONS(1441), + [anon_sym_LT_EQ2] = ACTIONS(1455), + [anon_sym_GT_EQ2] = ACTIONS(1455), + [anon_sym_EQ_TILDE2] = ACTIONS(1455), + [anon_sym_BANG_TILDE2] = ACTIONS(1455), + [anon_sym_LPAREN2] = ACTIONS(4207), + [anon_sym_STAR_STAR2] = ACTIONS(1455), + [anon_sym_PLUS_PLUS2] = ACTIONS(1455), + [anon_sym_SLASH2] = ACTIONS(1441), + [anon_sym_mod2] = ACTIONS(1455), + [anon_sym_SLASH_SLASH2] = ACTIONS(1455), + [anon_sym_PLUS2] = ACTIONS(1441), + [anon_sym_bit_DASHshl2] = ACTIONS(1455), + [anon_sym_bit_DASHshr2] = ACTIONS(1455), + [anon_sym_bit_DASHand2] = ACTIONS(1455), + [anon_sym_bit_DASHxor2] = ACTIONS(1455), + [anon_sym_bit_DASHor2] = ACTIONS(1455), + [anon_sym_DOT] = ACTIONS(4217), + [aux_sym__immediate_decimal_token1] = ACTIONS(4211), + [aux_sym__immediate_decimal_token3] = ACTIONS(4211), + [aux_sym__immediate_decimal_token4] = ACTIONS(4213), + [aux_sym__immediate_decimal_token5] = ACTIONS(4215), + [anon_sym_err_GT] = ACTIONS(1441), + [anon_sym_out_GT] = ACTIONS(1441), + [anon_sym_e_GT] = ACTIONS(1441), + [anon_sym_o_GT] = ACTIONS(1441), + [anon_sym_err_PLUSout_GT] = ACTIONS(1441), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1441), + [anon_sym_o_PLUSe_GT] = ACTIONS(1441), + [anon_sym_e_PLUSo_GT] = ACTIONS(1441), + [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_token2] = ACTIONS(1457), + [anon_sym_POUND] = ACTIONS(247), }, [1284] = { - [sym__val_range] = STATE(7471), - [sym__value] = STATE(4709), - [sym_val_nothing] = STATE(4585), - [sym_val_bool] = STATE(6878), - [sym_val_variable] = STATE(4585), - [sym_val_number] = STATE(4585), - [sym__val_number_decimal] = STATE(5463), - [sym__val_number] = STATE(4586), - [sym_val_duration] = STATE(4585), - [sym_val_filesize] = STATE(4585), - [sym_val_binary] = STATE(4585), - [sym_val_string] = STATE(4585), - [sym__raw_str] = STATE(4058), - [sym__str_double_quotes] = STATE(4058), - [sym_val_interpolated] = STATE(4585), - [sym__inter_single_quotes] = STATE(4587), - [sym__inter_double_quotes] = STATE(4588), - [sym_val_list] = STATE(4585), - [sym_val_record] = STATE(4585), - [sym_val_table] = STATE(4585), - [sym_val_closure] = STATE(4585), - [sym_unquoted] = STATE(4719), - [sym__unquoted_anonymous_prefix] = STATE(7643), + [sym__val_range] = STATE(7466), + [sym__value] = STATE(2028), + [sym_val_nothing] = STATE(1994), + [sym_val_bool] = STATE(1971), + [sym_val_variable] = STATE(1994), + [sym_val_number] = STATE(1994), + [sym__val_number_decimal] = STATE(1426), + [sym__val_number] = STATE(1995), + [sym_val_duration] = STATE(1994), + [sym_val_filesize] = STATE(1994), + [sym_val_binary] = STATE(1994), + [sym_val_string] = STATE(1994), + [sym__raw_str] = STATE(2054), + [sym__str_double_quotes] = STATE(2054), + [sym_val_interpolated] = STATE(1994), + [sym__inter_single_quotes] = STATE(1996), + [sym__inter_double_quotes] = STATE(1997), + [sym_val_list] = STATE(1994), + [sym_val_record] = STATE(1994), + [sym_val_table] = STATE(1994), + [sym_val_closure] = STATE(1994), + [sym_unquoted] = STATE(2034), + [sym__unquoted_anonymous_prefix] = STATE(7524), [sym_comment] = STATE(1284), - [anon_sym_LBRACK] = ACTIONS(4343), - [anon_sym_LPAREN] = ACTIONS(4345), - [anon_sym_DOLLAR] = ACTIONS(2074), - [anon_sym_LBRACE] = ACTIONS(4347), - [anon_sym_DOT_DOT] = ACTIONS(4349), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4351), - [anon_sym_DOT_DOT_LT] = ACTIONS(4351), - [anon_sym_null] = ACTIONS(4353), - [anon_sym_true] = ACTIONS(4355), - [anon_sym_false] = ACTIONS(4355), - [aux_sym__val_number_decimal_token1] = ACTIONS(4357), - [aux_sym__val_number_decimal_token2] = ACTIONS(4359), - [aux_sym__val_number_decimal_token3] = ACTIONS(4361), - [aux_sym__val_number_decimal_token4] = ACTIONS(4363), - [aux_sym__val_number_token1] = ACTIONS(4365), - [aux_sym__val_number_token2] = ACTIONS(4365), - [aux_sym__val_number_token3] = ACTIONS(4365), - [aux_sym__val_number_token4] = ACTIONS(4367), - [aux_sym__val_number_token5] = ACTIONS(4367), - [aux_sym__val_number_token6] = ACTIONS(4367), - [anon_sym_0b] = ACTIONS(2104), - [anon_sym_0o] = ACTIONS(2106), - [anon_sym_0x] = ACTIONS(2106), - [sym_val_date] = ACTIONS(4369), - [anon_sym_DQUOTE] = ACTIONS(4371), - [sym__str_single_quotes] = ACTIONS(4373), - [sym__str_back_ticks] = ACTIONS(4373), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4375), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4377), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(2124), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2126), + [anon_sym_LBRACK] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(4183), + [anon_sym_DOLLAR] = ACTIONS(4157), + [anon_sym_LBRACE] = ACTIONS(2971), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4187), + [anon_sym_DOT_DOT_LT] = ACTIONS(4187), + [anon_sym_null] = ACTIONS(4189), + [anon_sym_true] = ACTIONS(4191), + [anon_sym_false] = ACTIONS(4191), + [aux_sym__val_number_decimal_token1] = ACTIONS(4193), + [aux_sym__val_number_decimal_token2] = ACTIONS(4195), + [aux_sym__val_number_decimal_token3] = ACTIONS(4197), + [aux_sym__val_number_decimal_token4] = ACTIONS(4199), + [aux_sym__val_number_token1] = ACTIONS(2989), + [aux_sym__val_number_token2] = ACTIONS(2989), + [aux_sym__val_number_token3] = ACTIONS(2989), + [aux_sym__val_number_token4] = ACTIONS(4201), + [aux_sym__val_number_token5] = ACTIONS(4201), + [aux_sym__val_number_token6] = ACTIONS(4201), + [anon_sym_0b] = ACTIONS(2993), + [anon_sym_0o] = ACTIONS(2995), + [anon_sym_0x] = ACTIONS(2995), + [sym_val_date] = ACTIONS(4203), + [anon_sym_DQUOTE] = ACTIONS(2999), + [sym__str_single_quotes] = ACTIONS(3001), + [sym__str_back_ticks] = ACTIONS(3001), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3003), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3005), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(4205), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3009), }, [1285] = { - [sym__val_range] = STATE(7471), - [sym__value] = STATE(4637), - [sym_val_nothing] = STATE(4585), - [sym_val_bool] = STATE(4452), - [sym_val_variable] = STATE(4585), - [sym_val_number] = STATE(4585), - [sym__val_number_decimal] = STATE(4034), - [sym__val_number] = STATE(4586), - [sym_val_duration] = STATE(4585), - [sym_val_filesize] = STATE(4585), - [sym_val_binary] = STATE(4585), - [sym_val_string] = STATE(4585), - [sym__raw_str] = STATE(4058), - [sym__str_double_quotes] = STATE(4058), - [sym_val_interpolated] = STATE(4585), - [sym__inter_single_quotes] = STATE(4587), - [sym__inter_double_quotes] = STATE(4588), - [sym_val_list] = STATE(4585), - [sym_val_record] = STATE(4585), - [sym_val_table] = STATE(4585), - [sym_val_closure] = STATE(4585), - [sym_unquoted] = STATE(4638), - [sym__unquoted_anonymous_prefix] = STATE(7643), + [sym__val_range] = STATE(7833), + [sym__value] = STATE(5317), + [sym_val_nothing] = STATE(4275), + [sym_val_bool] = STATE(5805), + [sym_val_variable] = STATE(4275), + [sym_val_number] = STATE(4275), + [sym__val_number_decimal] = STATE(5282), + [sym__val_number] = STATE(4276), + [sym_val_duration] = STATE(4275), + [sym_val_filesize] = STATE(4275), + [sym_val_binary] = STATE(4275), + [sym_val_string] = STATE(4275), + [sym__raw_str] = STATE(3793), + [sym__str_double_quotes] = STATE(3793), + [sym_val_interpolated] = STATE(4275), + [sym__inter_single_quotes] = STATE(5297), + [sym__inter_double_quotes] = STATE(5300), + [sym_val_list] = STATE(4275), + [sym_val_record] = STATE(4275), + [sym_val_table] = STATE(4275), + [sym_val_closure] = STATE(4275), + [sym_unquoted] = STATE(5318), + [sym__unquoted_anonymous_prefix] = STATE(7649), [sym_comment] = STATE(1285), - [anon_sym_LBRACK] = ACTIONS(4343), - [anon_sym_LPAREN] = ACTIONS(4345), - [anon_sym_DOLLAR] = ACTIONS(2074), - [anon_sym_LBRACE] = ACTIONS(4347), - [anon_sym_DOT_DOT] = ACTIONS(4349), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4351), - [anon_sym_DOT_DOT_LT] = ACTIONS(4351), - [anon_sym_null] = ACTIONS(4379), - [anon_sym_true] = ACTIONS(4381), - [anon_sym_false] = ACTIONS(4381), - [aux_sym__val_number_decimal_token1] = ACTIONS(2094), - [aux_sym__val_number_decimal_token2] = ACTIONS(4383), - [aux_sym__val_number_decimal_token3] = ACTIONS(4385), - [aux_sym__val_number_decimal_token4] = ACTIONS(4387), - [aux_sym__val_number_token1] = ACTIONS(4365), - [aux_sym__val_number_token2] = ACTIONS(4365), - [aux_sym__val_number_token3] = ACTIONS(4365), - [aux_sym__val_number_token4] = ACTIONS(4389), - [aux_sym__val_number_token5] = ACTIONS(4389), - [aux_sym__val_number_token6] = ACTIONS(4389), - [anon_sym_0b] = ACTIONS(2104), - [anon_sym_0o] = ACTIONS(2106), - [anon_sym_0x] = ACTIONS(2106), - [sym_val_date] = ACTIONS(4391), - [anon_sym_DQUOTE] = ACTIONS(4371), - [sym__str_single_quotes] = ACTIONS(4373), - [sym__str_back_ticks] = ACTIONS(4373), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4375), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4377), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(2124), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2126), + [anon_sym_LBRACK] = ACTIONS(4083), + [anon_sym_LPAREN] = ACTIONS(4085), + [anon_sym_DOLLAR] = ACTIONS(4087), + [anon_sym_LBRACE] = ACTIONS(4089), + [anon_sym_DOT_DOT] = ACTIONS(4091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4093), + [anon_sym_DOT_DOT_LT] = ACTIONS(4093), + [anon_sym_null] = ACTIONS(4095), + [anon_sym_true] = ACTIONS(4097), + [anon_sym_false] = ACTIONS(4097), + [aux_sym__val_number_decimal_token1] = ACTIONS(4099), + [aux_sym__val_number_decimal_token2] = ACTIONS(4101), + [aux_sym__val_number_decimal_token3] = ACTIONS(4103), + [aux_sym__val_number_decimal_token4] = ACTIONS(4105), + [aux_sym__val_number_token1] = ACTIONS(3676), + [aux_sym__val_number_token2] = ACTIONS(3676), + [aux_sym__val_number_token3] = ACTIONS(3676), + [aux_sym__val_number_token4] = ACTIONS(4107), + [aux_sym__val_number_token5] = ACTIONS(4107), + [aux_sym__val_number_token6] = ACTIONS(4107), + [anon_sym_0b] = ACTIONS(3680), + [anon_sym_0o] = ACTIONS(3682), + [anon_sym_0x] = ACTIONS(3682), + [sym_val_date] = ACTIONS(4109), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym__str_single_quotes] = ACTIONS(1274), + [sym__str_back_ticks] = ACTIONS(1274), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4113), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3538), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1276), }, [1286] = { - [sym__val_range] = STATE(7471), - [sym__value] = STATE(4562), - [sym_val_nothing] = STATE(4585), - [sym_val_bool] = STATE(6878), - [sym_val_variable] = STATE(4585), - [sym_val_number] = STATE(4585), - [sym__val_number_decimal] = STATE(5463), - [sym__val_number] = STATE(4586), - [sym_val_duration] = STATE(4585), - [sym_val_filesize] = STATE(4585), - [sym_val_binary] = STATE(4585), - [sym_val_string] = STATE(4585), - [sym__raw_str] = STATE(4058), - [sym__str_double_quotes] = STATE(4058), - [sym_val_interpolated] = STATE(4585), - [sym__inter_single_quotes] = STATE(4587), - [sym__inter_double_quotes] = STATE(4588), - [sym_val_list] = STATE(4585), - [sym_val_record] = STATE(4585), - [sym_val_table] = STATE(4585), - [sym_val_closure] = STATE(4585), - [sym_unquoted] = STATE(4563), - [sym__unquoted_anonymous_prefix] = STATE(7643), [sym_comment] = STATE(1286), - [anon_sym_LBRACK] = ACTIONS(4343), - [anon_sym_LPAREN] = ACTIONS(4345), - [anon_sym_DOLLAR] = ACTIONS(2074), - [anon_sym_LBRACE] = ACTIONS(4347), - [anon_sym_DOT_DOT] = ACTIONS(4349), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4351), - [anon_sym_DOT_DOT_LT] = ACTIONS(4351), - [anon_sym_null] = ACTIONS(4353), - [anon_sym_true] = ACTIONS(4355), - [anon_sym_false] = ACTIONS(4355), - [aux_sym__val_number_decimal_token1] = ACTIONS(4357), - [aux_sym__val_number_decimal_token2] = ACTIONS(4359), - [aux_sym__val_number_decimal_token3] = ACTIONS(4361), - [aux_sym__val_number_decimal_token4] = ACTIONS(4363), - [aux_sym__val_number_token1] = ACTIONS(4365), - [aux_sym__val_number_token2] = ACTIONS(4365), - [aux_sym__val_number_token3] = ACTIONS(4365), - [aux_sym__val_number_token4] = ACTIONS(4367), - [aux_sym__val_number_token5] = ACTIONS(4367), - [aux_sym__val_number_token6] = ACTIONS(4367), - [anon_sym_0b] = ACTIONS(2104), - [anon_sym_0o] = ACTIONS(2106), - [anon_sym_0x] = ACTIONS(2106), - [sym_val_date] = ACTIONS(4369), - [anon_sym_DQUOTE] = ACTIONS(4371), - [sym__str_single_quotes] = ACTIONS(4373), - [sym__str_back_ticks] = ACTIONS(4373), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4375), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4377), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(2124), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2126), + [sym__newline] = ACTIONS(1514), + [anon_sym_SEMI] = ACTIONS(1514), + [anon_sym_PIPE] = ACTIONS(1514), + [anon_sym_err_GT_PIPE] = ACTIONS(1514), + [anon_sym_out_GT_PIPE] = ACTIONS(1514), + [anon_sym_e_GT_PIPE] = ACTIONS(1514), + [anon_sym_o_GT_PIPE] = ACTIONS(1514), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1514), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1514), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1514), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1514), + [anon_sym_LBRACK] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_RPAREN] = ACTIONS(1514), + [anon_sym_DOLLAR] = ACTIONS(1512), + [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_RBRACE] = ACTIONS(1514), + [anon_sym_DOT_DOT] = ACTIONS(1512), + [anon_sym_LPAREN2] = ACTIONS(1514), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [aux_sym__immediate_decimal_token2] = ACTIONS(4015), + [anon_sym_null] = ACTIONS(1514), + [anon_sym_true] = ACTIONS(1514), + [anon_sym_false] = ACTIONS(1514), + [aux_sym__val_number_decimal_token1] = ACTIONS(1512), + [aux_sym__val_number_decimal_token2] = ACTIONS(1514), + [aux_sym__val_number_decimal_token3] = ACTIONS(1514), + [aux_sym__val_number_decimal_token4] = ACTIONS(1514), + [aux_sym__val_number_token1] = ACTIONS(1514), + [aux_sym__val_number_token2] = ACTIONS(1514), + [aux_sym__val_number_token3] = ACTIONS(1514), + [aux_sym__val_number_token4] = ACTIONS(1514), + [aux_sym__val_number_token5] = ACTIONS(1514), + [aux_sym__val_number_token6] = ACTIONS(1514), + [anon_sym_0b] = ACTIONS(1512), + [sym_filesize_unit] = ACTIONS(1514), + [sym_duration_unit] = ACTIONS(1514), + [anon_sym_0o] = ACTIONS(1512), + [anon_sym_0x] = ACTIONS(1512), + [sym_val_date] = ACTIONS(1514), + [anon_sym_DQUOTE] = ACTIONS(1514), + [sym__str_single_quotes] = ACTIONS(1514), + [sym__str_back_ticks] = ACTIONS(1514), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1514), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1514), + [anon_sym_err_GT] = ACTIONS(1512), + [anon_sym_out_GT] = ACTIONS(1512), + [anon_sym_e_GT] = ACTIONS(1512), + [anon_sym_o_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT] = ACTIONS(1512), + [anon_sym_err_GT_GT] = ACTIONS(1514), + [anon_sym_out_GT_GT] = ACTIONS(1514), + [anon_sym_e_GT_GT] = ACTIONS(1514), + [anon_sym_o_GT_GT] = ACTIONS(1514), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1514), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1514), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1514), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1514), + [aux_sym_unquoted_token1] = ACTIONS(1512), + [aux_sym_unquoted_token2] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1514), }, [1287] = { - [sym__val_range] = STATE(7471), - [sym__value] = STATE(4659), - [sym_val_nothing] = STATE(4585), - [sym_val_bool] = STATE(4452), - [sym_val_variable] = STATE(4585), - [sym_val_number] = STATE(4585), - [sym__val_number_decimal] = STATE(4034), - [sym__val_number] = STATE(4586), - [sym_val_duration] = STATE(4585), - [sym_val_filesize] = STATE(4585), - [sym_val_binary] = STATE(4585), - [sym_val_string] = STATE(4585), - [sym__raw_str] = STATE(4058), - [sym__str_double_quotes] = STATE(4058), - [sym_val_interpolated] = STATE(4585), - [sym__inter_single_quotes] = STATE(4587), - [sym__inter_double_quotes] = STATE(4588), - [sym_val_list] = STATE(4585), - [sym_val_record] = STATE(4585), - [sym_val_table] = STATE(4585), - [sym_val_closure] = STATE(4585), - [sym_unquoted] = STATE(4665), - [sym__unquoted_anonymous_prefix] = STATE(7643), [sym_comment] = STATE(1287), - [anon_sym_LBRACK] = ACTIONS(4343), - [anon_sym_LPAREN] = ACTIONS(4345), - [anon_sym_DOLLAR] = ACTIONS(2074), - [anon_sym_LBRACE] = ACTIONS(4347), - [anon_sym_DOT_DOT] = ACTIONS(4349), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4351), - [anon_sym_DOT_DOT_LT] = ACTIONS(4351), - [anon_sym_null] = ACTIONS(4379), - [anon_sym_true] = ACTIONS(4381), - [anon_sym_false] = ACTIONS(4381), - [aux_sym__val_number_decimal_token1] = ACTIONS(2094), - [aux_sym__val_number_decimal_token2] = ACTIONS(4383), - [aux_sym__val_number_decimal_token3] = ACTIONS(4385), - [aux_sym__val_number_decimal_token4] = ACTIONS(4387), - [aux_sym__val_number_token1] = ACTIONS(4365), - [aux_sym__val_number_token2] = ACTIONS(4365), - [aux_sym__val_number_token3] = ACTIONS(4365), - [aux_sym__val_number_token4] = ACTIONS(4389), - [aux_sym__val_number_token5] = ACTIONS(4389), - [aux_sym__val_number_token6] = ACTIONS(4389), - [anon_sym_0b] = ACTIONS(2104), - [anon_sym_0o] = ACTIONS(2106), - [anon_sym_0x] = ACTIONS(2106), - [sym_val_date] = ACTIONS(4391), - [anon_sym_DQUOTE] = ACTIONS(4371), - [sym__str_single_quotes] = ACTIONS(4373), - [sym__str_back_ticks] = ACTIONS(4373), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4375), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4377), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(2124), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2126), + [anon_sym_EQ] = ACTIONS(978), + [anon_sym_PLUS_EQ] = ACTIONS(980), + [anon_sym_DASH_EQ] = ACTIONS(980), + [anon_sym_STAR_EQ] = ACTIONS(980), + [anon_sym_SLASH_EQ] = ACTIONS(980), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(980), + [sym__newline] = ACTIONS(980), + [anon_sym_SEMI] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(980), + [anon_sym_err_GT_PIPE] = ACTIONS(980), + [anon_sym_out_GT_PIPE] = ACTIONS(980), + [anon_sym_e_GT_PIPE] = ACTIONS(980), + [anon_sym_o_GT_PIPE] = ACTIONS(980), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(980), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(980), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(980), + [anon_sym_RPAREN] = ACTIONS(980), + [anon_sym_GT2] = ACTIONS(978), + [anon_sym_DASH2] = ACTIONS(978), + [anon_sym_in2] = ACTIONS(980), + [anon_sym_RBRACE] = ACTIONS(980), + [anon_sym_STAR2] = ACTIONS(978), + [anon_sym_and2] = ACTIONS(980), + [anon_sym_xor2] = ACTIONS(980), + [anon_sym_or2] = ACTIONS(980), + [anon_sym_not_DASHin2] = ACTIONS(980), + [anon_sym_has2] = ACTIONS(980), + [anon_sym_not_DASHhas2] = ACTIONS(980), + [anon_sym_starts_DASHwith2] = ACTIONS(980), + [anon_sym_ends_DASHwith2] = ACTIONS(980), + [anon_sym_EQ_EQ2] = ACTIONS(980), + [anon_sym_BANG_EQ2] = ACTIONS(980), + [anon_sym_LT2] = ACTIONS(978), + [anon_sym_LT_EQ2] = ACTIONS(980), + [anon_sym_GT_EQ2] = ACTIONS(980), + [anon_sym_EQ_TILDE2] = ACTIONS(980), + [anon_sym_BANG_TILDE2] = ACTIONS(980), + [anon_sym_STAR_STAR2] = ACTIONS(980), + [anon_sym_PLUS_PLUS2] = ACTIONS(978), + [anon_sym_SLASH2] = ACTIONS(978), + [anon_sym_mod2] = ACTIONS(980), + [anon_sym_SLASH_SLASH2] = ACTIONS(980), + [anon_sym_PLUS2] = ACTIONS(978), + [anon_sym_bit_DASHshl2] = ACTIONS(980), + [anon_sym_bit_DASHshr2] = ACTIONS(980), + [anon_sym_bit_DASHand2] = ACTIONS(980), + [anon_sym_bit_DASHxor2] = ACTIONS(980), + [anon_sym_bit_DASHor2] = ACTIONS(980), + [anon_sym_DOT_DOT2] = ACTIONS(978), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(980), + [anon_sym_DOT_DOT_LT2] = ACTIONS(980), + [anon_sym_COLON2] = ACTIONS(980), + [anon_sym_DOT2] = ACTIONS(978), + [anon_sym_err_GT] = ACTIONS(978), + [anon_sym_out_GT] = ACTIONS(978), + [anon_sym_e_GT] = ACTIONS(978), + [anon_sym_o_GT] = ACTIONS(978), + [anon_sym_err_PLUSout_GT] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT] = ACTIONS(978), + [anon_sym_o_PLUSe_GT] = ACTIONS(978), + [anon_sym_e_PLUSo_GT] = ACTIONS(978), + [anon_sym_err_GT_GT] = ACTIONS(980), + [anon_sym_out_GT_GT] = ACTIONS(980), + [anon_sym_e_GT_GT] = ACTIONS(980), + [anon_sym_o_GT_GT] = ACTIONS(980), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(980), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(980), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(980), + [anon_sym_POUND] = ACTIONS(247), }, [1288] = { - [sym__val_range] = STATE(7471), - [sym__value] = STATE(4709), - [sym_val_nothing] = STATE(4585), - [sym_val_bool] = STATE(4452), - [sym_val_variable] = STATE(4585), - [sym_val_number] = STATE(4585), - [sym__val_number_decimal] = STATE(4034), - [sym__val_number] = STATE(4586), - [sym_val_duration] = STATE(4585), - [sym_val_filesize] = STATE(4585), - [sym_val_binary] = STATE(4585), - [sym_val_string] = STATE(4585), - [sym__raw_str] = STATE(4058), - [sym__str_double_quotes] = STATE(4058), - [sym_val_interpolated] = STATE(4585), - [sym__inter_single_quotes] = STATE(4587), - [sym__inter_double_quotes] = STATE(4588), - [sym_val_list] = STATE(4585), - [sym_val_record] = STATE(4585), - [sym_val_table] = STATE(4585), - [sym_val_closure] = STATE(4585), - [sym_unquoted] = STATE(4719), - [sym__unquoted_anonymous_prefix] = STATE(7643), + [sym__match_pattern_expression] = STATE(3186), + [sym__match_pattern_value] = STATE(3171), + [sym__match_pattern_list] = STATE(3187), + [sym__match_pattern_rest] = STATE(7706), + [sym__match_pattern_record] = STATE(3188), + [sym_expr_parenthesized] = STATE(2937), + [sym_val_range] = STATE(3171), + [sym__val_range] = STATE(7677), + [sym_val_nothing] = STATE(3178), + [sym_val_bool] = STATE(3081), + [sym_val_variable] = STATE(2920), + [sym_val_number] = STATE(3178), + [sym__val_number_decimal] = STATE(2695), + [sym__val_number] = STATE(3189), + [sym_val_duration] = STATE(3178), + [sym_val_filesize] = STATE(3178), + [sym_val_binary] = STATE(3178), + [sym_val_string] = STATE(3178), + [sym__raw_str] = STATE(3169), + [sym__str_double_quotes] = STATE(3169), + [sym_val_table] = STATE(3178), + [sym__unquoted_in_list] = STATE(3186), + [sym__unquoted_anonymous_prefix] = STATE(7685), [sym_comment] = STATE(1288), - [anon_sym_LBRACK] = ACTIONS(4343), - [anon_sym_LPAREN] = ACTIONS(4345), - [anon_sym_DOLLAR] = ACTIONS(2074), - [anon_sym_LBRACE] = ACTIONS(4347), - [anon_sym_DOT_DOT] = ACTIONS(4349), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4351), - [anon_sym_DOT_DOT_LT] = ACTIONS(4351), - [anon_sym_null] = ACTIONS(4379), - [anon_sym_true] = ACTIONS(4381), - [anon_sym_false] = ACTIONS(4381), - [aux_sym__val_number_decimal_token1] = ACTIONS(2094), - [aux_sym__val_number_decimal_token2] = ACTIONS(4383), - [aux_sym__val_number_decimal_token3] = ACTIONS(4385), - [aux_sym__val_number_decimal_token4] = ACTIONS(4387), - [aux_sym__val_number_token1] = ACTIONS(4365), - [aux_sym__val_number_token2] = ACTIONS(4365), - [aux_sym__val_number_token3] = ACTIONS(4365), - [aux_sym__val_number_token4] = ACTIONS(4389), - [aux_sym__val_number_token5] = ACTIONS(4389), - [aux_sym__val_number_token6] = ACTIONS(4389), - [anon_sym_0b] = ACTIONS(2104), - [anon_sym_0o] = ACTIONS(2106), - [anon_sym_0x] = ACTIONS(2106), - [sym_val_date] = ACTIONS(4391), - [anon_sym_DQUOTE] = ACTIONS(4371), - [sym__str_single_quotes] = ACTIONS(4373), - [sym__str_back_ticks] = ACTIONS(4373), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4375), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4377), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(2124), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2126), + [aux_sym__match_pattern_list_repeat1] = STATE(1348), + [anon_sym_LBRACK] = ACTIONS(4151), + [anon_sym_RBRACK] = ACTIONS(4219), + [anon_sym_LPAREN] = ACTIONS(3848), + [anon_sym_DOLLAR] = ACTIONS(3850), + [anon_sym_LBRACE] = ACTIONS(3852), + [anon_sym_DOT_DOT] = ACTIONS(4221), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3856), + [anon_sym_DOT_DOT_LT] = ACTIONS(3856), + [anon_sym_null] = ACTIONS(3858), + [anon_sym_true] = ACTIONS(3860), + [anon_sym_false] = ACTIONS(3860), + [aux_sym__val_number_decimal_token1] = ACTIONS(3862), + [aux_sym__val_number_decimal_token2] = ACTIONS(3864), + [aux_sym__val_number_decimal_token3] = ACTIONS(3866), + [aux_sym__val_number_decimal_token4] = ACTIONS(3868), + [aux_sym__val_number_token1] = ACTIONS(3870), + [aux_sym__val_number_token2] = ACTIONS(3870), + [aux_sym__val_number_token3] = ACTIONS(3870), + [aux_sym__val_number_token4] = ACTIONS(3872), + [aux_sym__val_number_token5] = ACTIONS(3872), + [aux_sym__val_number_token6] = ACTIONS(3872), + [anon_sym_0b] = ACTIONS(3874), + [anon_sym_0o] = ACTIONS(3876), + [anon_sym_0x] = ACTIONS(3876), + [sym_val_date] = ACTIONS(3878), + [anon_sym_DQUOTE] = ACTIONS(3880), + [sym__str_single_quotes] = ACTIONS(3882), + [sym__str_back_ticks] = ACTIONS(3882), + [anon_sym_err_GT] = ACTIONS(2674), + [anon_sym_out_GT] = ACTIONS(2674), + [anon_sym_e_GT] = ACTIONS(2674), + [anon_sym_o_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT] = ACTIONS(2674), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3884), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3886), }, [1289] = { - [sym__val_range] = STATE(7632), - [sym__value] = STATE(1736), - [sym_val_nothing] = STATE(1798), - [sym_val_bool] = STATE(1649), - [sym_val_variable] = STATE(1798), - [sym_val_number] = STATE(1798), - [sym__val_number_decimal] = STATE(1365), - [sym__val_number] = STATE(1706), - [sym_val_duration] = STATE(1798), - [sym_val_filesize] = STATE(1798), - [sym_val_binary] = STATE(1798), - [sym_val_string] = STATE(1798), - [sym__raw_str] = STATE(1731), - [sym__str_double_quotes] = STATE(1731), - [sym_val_interpolated] = STATE(1798), - [sym__inter_single_quotes] = STATE(1778), - [sym__inter_double_quotes] = STATE(1780), - [sym_val_list] = STATE(1798), - [sym_val_record] = STATE(1798), - [sym_val_table] = STATE(1798), - [sym_val_closure] = STATE(1798), - [sym_unquoted] = STATE(1737), - [sym__unquoted_anonymous_prefix] = STATE(7838), + [sym__val_range] = STATE(7466), + [sym__value] = STATE(2053), + [sym_val_nothing] = STATE(1994), + [sym_val_bool] = STATE(1971), + [sym_val_variable] = STATE(1994), + [sym_val_number] = STATE(1994), + [sym__val_number_decimal] = STATE(1426), + [sym__val_number] = STATE(1995), + [sym_val_duration] = STATE(1994), + [sym_val_filesize] = STATE(1994), + [sym_val_binary] = STATE(1994), + [sym_val_string] = STATE(1994), + [sym__raw_str] = STATE(2054), + [sym__str_double_quotes] = STATE(2054), + [sym_val_interpolated] = STATE(1994), + [sym__inter_single_quotes] = STATE(1996), + [sym__inter_double_quotes] = STATE(1997), + [sym_val_list] = STATE(1994), + [sym_val_record] = STATE(1994), + [sym_val_table] = STATE(1994), + [sym_val_closure] = STATE(1994), + [sym_unquoted] = STATE(2059), + [sym__unquoted_anonymous_prefix] = STATE(7524), [sym_comment] = STATE(1289), - [anon_sym_LBRACK] = ACTIONS(2618), - [anon_sym_LPAREN] = ACTIONS(4034), - [anon_sym_DOLLAR] = ACTIONS(4022), - [anon_sym_LBRACE] = ACTIONS(2628), - [anon_sym_DOT_DOT] = ACTIONS(4036), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4038), - [anon_sym_DOT_DOT_LT] = ACTIONS(4038), - [anon_sym_null] = ACTIONS(4040), - [anon_sym_true] = ACTIONS(4042), - [anon_sym_false] = ACTIONS(4042), - [aux_sym__val_number_decimal_token1] = ACTIONS(4044), - [aux_sym__val_number_decimal_token2] = ACTIONS(4046), - [aux_sym__val_number_decimal_token3] = ACTIONS(4048), - [aux_sym__val_number_decimal_token4] = ACTIONS(4050), - [aux_sym__val_number_token1] = ACTIONS(2646), - [aux_sym__val_number_token2] = ACTIONS(2646), - [aux_sym__val_number_token3] = ACTIONS(2646), - [aux_sym__val_number_token4] = ACTIONS(4052), - [aux_sym__val_number_token5] = ACTIONS(4052), - [aux_sym__val_number_token6] = ACTIONS(4052), - [anon_sym_0b] = ACTIONS(2650), - [anon_sym_0o] = ACTIONS(2652), - [anon_sym_0x] = ACTIONS(2652), - [sym_val_date] = ACTIONS(4054), - [anon_sym_DQUOTE] = ACTIONS(2656), - [sym__str_single_quotes] = ACTIONS(2658), - [sym__str_back_ticks] = ACTIONS(2658), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2660), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2662), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(4056), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2670), + [anon_sym_LBRACK] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(4183), + [anon_sym_DOLLAR] = ACTIONS(4157), + [anon_sym_LBRACE] = ACTIONS(2971), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4187), + [anon_sym_DOT_DOT_LT] = ACTIONS(4187), + [anon_sym_null] = ACTIONS(4189), + [anon_sym_true] = ACTIONS(4191), + [anon_sym_false] = ACTIONS(4191), + [aux_sym__val_number_decimal_token1] = ACTIONS(4193), + [aux_sym__val_number_decimal_token2] = ACTIONS(4195), + [aux_sym__val_number_decimal_token3] = ACTIONS(4197), + [aux_sym__val_number_decimal_token4] = ACTIONS(4199), + [aux_sym__val_number_token1] = ACTIONS(2989), + [aux_sym__val_number_token2] = ACTIONS(2989), + [aux_sym__val_number_token3] = ACTIONS(2989), + [aux_sym__val_number_token4] = ACTIONS(4201), + [aux_sym__val_number_token5] = ACTIONS(4201), + [aux_sym__val_number_token6] = ACTIONS(4201), + [anon_sym_0b] = ACTIONS(2993), + [anon_sym_0o] = ACTIONS(2995), + [anon_sym_0x] = ACTIONS(2995), + [sym_val_date] = ACTIONS(4203), + [anon_sym_DQUOTE] = ACTIONS(2999), + [sym__str_single_quotes] = ACTIONS(3001), + [sym__str_back_ticks] = ACTIONS(3001), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3003), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3005), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(4205), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3009), }, [1290] = { - [sym__val_range] = STATE(7471), - [sym__value] = STATE(4562), - [sym_val_nothing] = STATE(4585), - [sym_val_bool] = STATE(4452), - [sym_val_variable] = STATE(4585), - [sym_val_number] = STATE(4585), - [sym__val_number_decimal] = STATE(4034), - [sym__val_number] = STATE(4586), - [sym_val_duration] = STATE(4585), - [sym_val_filesize] = STATE(4585), - [sym_val_binary] = STATE(4585), - [sym_val_string] = STATE(4585), - [sym__raw_str] = STATE(4058), - [sym__str_double_quotes] = STATE(4058), - [sym_val_interpolated] = STATE(4585), - [sym__inter_single_quotes] = STATE(4587), - [sym__inter_double_quotes] = STATE(4588), - [sym_val_list] = STATE(4585), - [sym_val_record] = STATE(4585), - [sym_val_table] = STATE(4585), - [sym_val_closure] = STATE(4585), - [sym_unquoted] = STATE(4563), - [sym__unquoted_anonymous_prefix] = STATE(7643), + [sym__val_range] = STATE(7553), + [sym__value] = STATE(3447), + [sym_val_nothing] = STATE(3446), + [sym_val_bool] = STATE(3320), + [sym_val_variable] = STATE(3446), + [sym_val_number] = STATE(3446), + [sym__val_number_decimal] = STATE(3125), + [sym__val_number] = STATE(3442), + [sym_val_duration] = STATE(3446), + [sym_val_filesize] = STATE(3446), + [sym_val_binary] = STATE(3446), + [sym_val_string] = STATE(3446), + [sym__raw_str] = STATE(3462), + [sym__str_double_quotes] = STATE(3462), + [sym_val_interpolated] = STATE(3446), + [sym__inter_single_quotes] = STATE(3495), + [sym__inter_double_quotes] = STATE(3496), + [sym_val_list] = STATE(3446), + [sym_val_record] = STATE(3446), + [sym_val_table] = STATE(3446), + [sym_val_closure] = STATE(3446), + [sym_unquoted] = STATE(3450), + [sym__unquoted_anonymous_prefix] = STATE(7605), [sym_comment] = STATE(1290), - [anon_sym_LBRACK] = ACTIONS(4343), - [anon_sym_LPAREN] = ACTIONS(4345), - [anon_sym_DOLLAR] = ACTIONS(2074), - [anon_sym_LBRACE] = ACTIONS(4347), - [anon_sym_DOT_DOT] = ACTIONS(4349), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4351), - [anon_sym_DOT_DOT_LT] = ACTIONS(4351), - [anon_sym_null] = ACTIONS(4379), - [anon_sym_true] = ACTIONS(4381), - [anon_sym_false] = ACTIONS(4381), - [aux_sym__val_number_decimal_token1] = ACTIONS(2094), - [aux_sym__val_number_decimal_token2] = ACTIONS(4383), - [aux_sym__val_number_decimal_token3] = ACTIONS(4385), - [aux_sym__val_number_decimal_token4] = ACTIONS(4387), - [aux_sym__val_number_token1] = ACTIONS(4365), - [aux_sym__val_number_token2] = ACTIONS(4365), - [aux_sym__val_number_token3] = ACTIONS(4365), - [aux_sym__val_number_token4] = ACTIONS(4389), - [aux_sym__val_number_token5] = ACTIONS(4389), - [aux_sym__val_number_token6] = ACTIONS(4389), - [anon_sym_0b] = ACTIONS(2104), - [anon_sym_0o] = ACTIONS(2106), - [anon_sym_0x] = ACTIONS(2106), - [sym_val_date] = ACTIONS(4391), - [anon_sym_DQUOTE] = ACTIONS(4371), - [sym__str_single_quotes] = ACTIONS(4373), - [sym__str_back_ticks] = ACTIONS(4373), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4375), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4377), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(2124), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2126), + [anon_sym_LBRACK] = ACTIONS(4223), + [anon_sym_LPAREN] = ACTIONS(4225), + [anon_sym_DOLLAR] = ACTIONS(4227), + [anon_sym_LBRACE] = ACTIONS(4229), + [anon_sym_DOT_DOT] = ACTIONS(4231), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4233), + [anon_sym_DOT_DOT_LT] = ACTIONS(4233), + [anon_sym_null] = ACTIONS(4235), + [anon_sym_true] = ACTIONS(4237), + [anon_sym_false] = ACTIONS(4237), + [aux_sym__val_number_decimal_token1] = ACTIONS(4239), + [aux_sym__val_number_decimal_token2] = ACTIONS(4241), + [aux_sym__val_number_decimal_token3] = ACTIONS(4243), + [aux_sym__val_number_decimal_token4] = ACTIONS(4245), + [aux_sym__val_number_token1] = ACTIONS(4247), + [aux_sym__val_number_token2] = ACTIONS(4247), + [aux_sym__val_number_token3] = ACTIONS(4247), + [aux_sym__val_number_token4] = ACTIONS(4249), + [aux_sym__val_number_token5] = ACTIONS(4249), + [aux_sym__val_number_token6] = ACTIONS(4249), + [anon_sym_0b] = ACTIONS(4251), + [anon_sym_0o] = ACTIONS(4253), + [anon_sym_0x] = ACTIONS(4253), + [sym_val_date] = ACTIONS(4255), + [anon_sym_DQUOTE] = ACTIONS(4257), + [sym__str_single_quotes] = ACTIONS(4259), + [sym__str_back_ticks] = ACTIONS(4259), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4261), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4263), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(4265), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4267), }, [1291] = { - [sym__val_range] = STATE(7632), - [sym__value] = STATE(1758), - [sym_val_nothing] = STATE(1798), - [sym_val_bool] = STATE(1649), - [sym_val_variable] = STATE(1798), - [sym_val_number] = STATE(1798), - [sym__val_number_decimal] = STATE(1365), - [sym__val_number] = STATE(1706), - [sym_val_duration] = STATE(1798), - [sym_val_filesize] = STATE(1798), - [sym_val_binary] = STATE(1798), - [sym_val_string] = STATE(1798), - [sym__raw_str] = STATE(1731), - [sym__str_double_quotes] = STATE(1731), - [sym_val_interpolated] = STATE(1798), - [sym__inter_single_quotes] = STATE(1778), - [sym__inter_double_quotes] = STATE(1780), - [sym_val_list] = STATE(1798), - [sym_val_record] = STATE(1798), - [sym_val_table] = STATE(1798), - [sym_val_closure] = STATE(1798), - [sym_unquoted] = STATE(1764), - [sym__unquoted_anonymous_prefix] = STATE(7838), + [sym__val_range] = STATE(7466), + [sym__value] = STATE(2000), + [sym_val_nothing] = STATE(1994), + [sym_val_bool] = STATE(1971), + [sym_val_variable] = STATE(1994), + [sym_val_number] = STATE(1994), + [sym__val_number_decimal] = STATE(1426), + [sym__val_number] = STATE(1995), + [sym_val_duration] = STATE(1994), + [sym_val_filesize] = STATE(1994), + [sym_val_binary] = STATE(1994), + [sym_val_string] = STATE(1994), + [sym__raw_str] = STATE(2054), + [sym__str_double_quotes] = STATE(2054), + [sym_val_interpolated] = STATE(1994), + [sym__inter_single_quotes] = STATE(1996), + [sym__inter_double_quotes] = STATE(1997), + [sym_val_list] = STATE(1994), + [sym_val_record] = STATE(1994), + [sym_val_table] = STATE(1994), + [sym_val_closure] = STATE(1994), + [sym_unquoted] = STATE(2003), + [sym__unquoted_anonymous_prefix] = STATE(7524), [sym_comment] = STATE(1291), - [anon_sym_LBRACK] = ACTIONS(2618), - [anon_sym_LPAREN] = ACTIONS(4034), - [anon_sym_DOLLAR] = ACTIONS(4022), - [anon_sym_LBRACE] = ACTIONS(2628), - [anon_sym_DOT_DOT] = ACTIONS(4036), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4038), - [anon_sym_DOT_DOT_LT] = ACTIONS(4038), - [anon_sym_null] = ACTIONS(4040), - [anon_sym_true] = ACTIONS(4042), - [anon_sym_false] = ACTIONS(4042), - [aux_sym__val_number_decimal_token1] = ACTIONS(4044), - [aux_sym__val_number_decimal_token2] = ACTIONS(4046), - [aux_sym__val_number_decimal_token3] = ACTIONS(4048), - [aux_sym__val_number_decimal_token4] = ACTIONS(4050), - [aux_sym__val_number_token1] = ACTIONS(2646), - [aux_sym__val_number_token2] = ACTIONS(2646), - [aux_sym__val_number_token3] = ACTIONS(2646), - [aux_sym__val_number_token4] = ACTIONS(4052), - [aux_sym__val_number_token5] = ACTIONS(4052), - [aux_sym__val_number_token6] = ACTIONS(4052), - [anon_sym_0b] = ACTIONS(2650), - [anon_sym_0o] = ACTIONS(2652), - [anon_sym_0x] = ACTIONS(2652), - [sym_val_date] = ACTIONS(4054), - [anon_sym_DQUOTE] = ACTIONS(2656), - [sym__str_single_quotes] = ACTIONS(2658), - [sym__str_back_ticks] = ACTIONS(2658), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2660), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2662), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(4056), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2670), + [anon_sym_LBRACK] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(4183), + [anon_sym_DOLLAR] = ACTIONS(4157), + [anon_sym_LBRACE] = ACTIONS(2971), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4187), + [anon_sym_DOT_DOT_LT] = ACTIONS(4187), + [anon_sym_null] = ACTIONS(4189), + [anon_sym_true] = ACTIONS(4191), + [anon_sym_false] = ACTIONS(4191), + [aux_sym__val_number_decimal_token1] = ACTIONS(4193), + [aux_sym__val_number_decimal_token2] = ACTIONS(4195), + [aux_sym__val_number_decimal_token3] = ACTIONS(4197), + [aux_sym__val_number_decimal_token4] = ACTIONS(4199), + [aux_sym__val_number_token1] = ACTIONS(2989), + [aux_sym__val_number_token2] = ACTIONS(2989), + [aux_sym__val_number_token3] = ACTIONS(2989), + [aux_sym__val_number_token4] = ACTIONS(4201), + [aux_sym__val_number_token5] = ACTIONS(4201), + [aux_sym__val_number_token6] = ACTIONS(4201), + [anon_sym_0b] = ACTIONS(2993), + [anon_sym_0o] = ACTIONS(2995), + [anon_sym_0x] = ACTIONS(2995), + [sym_val_date] = ACTIONS(4203), + [anon_sym_DQUOTE] = ACTIONS(2999), + [sym__str_single_quotes] = ACTIONS(3001), + [sym__str_back_ticks] = ACTIONS(3001), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3003), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3005), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(4205), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3009), }, [1292] = { - [sym__val_range] = STATE(7836), - [sym__value] = STATE(5877), - [sym_val_nothing] = STATE(5774), - [sym_val_bool] = STATE(5677), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(5774), - [sym__val_number_decimal] = STATE(5049), - [sym__val_number] = STATE(5797), - [sym_val_duration] = STATE(5774), - [sym_val_filesize] = STATE(5774), - [sym_val_binary] = STATE(5774), - [sym_val_string] = STATE(5774), - [sym__raw_str] = STATE(5380), - [sym__str_double_quotes] = STATE(5380), - [sym_val_interpolated] = STATE(5774), - [sym__inter_single_quotes] = STATE(5636), - [sym__inter_double_quotes] = STATE(5637), - [sym_val_list] = STATE(5774), - [sym_val_record] = STATE(5774), - [sym_val_table] = STATE(5774), - [sym_val_closure] = STATE(5774), - [sym_unquoted] = STATE(5878), - [sym__unquoted_anonymous_prefix] = STATE(7845), + [sym__val_range] = STATE(7553), + [sym__value] = STATE(3444), + [sym_val_nothing] = STATE(3446), + [sym_val_bool] = STATE(3320), + [sym_val_variable] = STATE(3446), + [sym_val_number] = STATE(3446), + [sym__val_number_decimal] = STATE(3125), + [sym__val_number] = STATE(3442), + [sym_val_duration] = STATE(3446), + [sym_val_filesize] = STATE(3446), + [sym_val_binary] = STATE(3446), + [sym_val_string] = STATE(3446), + [sym__raw_str] = STATE(3462), + [sym__str_double_quotes] = STATE(3462), + [sym_val_interpolated] = STATE(3446), + [sym__inter_single_quotes] = STATE(3495), + [sym__inter_double_quotes] = STATE(3496), + [sym_val_list] = STATE(3446), + [sym_val_record] = STATE(3446), + [sym_val_table] = STATE(3446), + [sym_val_closure] = STATE(3446), + [sym_unquoted] = STATE(3448), + [sym__unquoted_anonymous_prefix] = STATE(7605), [sym_comment] = STATE(1292), - [anon_sym_LBRACK] = ACTIONS(4393), - [anon_sym_LPAREN] = ACTIONS(4395), - [anon_sym_DOLLAR] = ACTIONS(4397), - [anon_sym_LBRACE] = ACTIONS(4399), - [anon_sym_DOT_DOT] = ACTIONS(4401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4403), - [anon_sym_DOT_DOT_LT] = ACTIONS(4403), - [anon_sym_null] = ACTIONS(4405), - [anon_sym_true] = ACTIONS(4407), - [anon_sym_false] = ACTIONS(4407), - [aux_sym__val_number_decimal_token1] = ACTIONS(4409), - [aux_sym__val_number_decimal_token2] = ACTIONS(4411), - [aux_sym__val_number_decimal_token3] = ACTIONS(4413), - [aux_sym__val_number_decimal_token4] = ACTIONS(4415), - [aux_sym__val_number_token1] = ACTIONS(4417), - [aux_sym__val_number_token2] = ACTIONS(4417), - [aux_sym__val_number_token3] = ACTIONS(4417), - [aux_sym__val_number_token4] = ACTIONS(4419), - [aux_sym__val_number_token5] = ACTIONS(4419), - [aux_sym__val_number_token6] = ACTIONS(4419), - [anon_sym_0b] = ACTIONS(4421), - [anon_sym_0o] = ACTIONS(4423), - [anon_sym_0x] = ACTIONS(4423), - [sym_val_date] = ACTIONS(4425), - [anon_sym_DQUOTE] = ACTIONS(4427), - [sym__str_single_quotes] = ACTIONS(4429), - [sym__str_back_ticks] = ACTIONS(4429), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4431), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4433), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3534), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4435), + [anon_sym_LBRACK] = ACTIONS(4223), + [anon_sym_LPAREN] = ACTIONS(4225), + [anon_sym_DOLLAR] = ACTIONS(4227), + [anon_sym_LBRACE] = ACTIONS(4229), + [anon_sym_DOT_DOT] = ACTIONS(4231), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4233), + [anon_sym_DOT_DOT_LT] = ACTIONS(4233), + [anon_sym_null] = ACTIONS(4235), + [anon_sym_true] = ACTIONS(4237), + [anon_sym_false] = ACTIONS(4237), + [aux_sym__val_number_decimal_token1] = ACTIONS(4239), + [aux_sym__val_number_decimal_token2] = ACTIONS(4241), + [aux_sym__val_number_decimal_token3] = ACTIONS(4243), + [aux_sym__val_number_decimal_token4] = ACTIONS(4245), + [aux_sym__val_number_token1] = ACTIONS(4247), + [aux_sym__val_number_token2] = ACTIONS(4247), + [aux_sym__val_number_token3] = ACTIONS(4247), + [aux_sym__val_number_token4] = ACTIONS(4249), + [aux_sym__val_number_token5] = ACTIONS(4249), + [aux_sym__val_number_token6] = ACTIONS(4249), + [anon_sym_0b] = ACTIONS(4251), + [anon_sym_0o] = ACTIONS(4253), + [anon_sym_0x] = ACTIONS(4253), + [sym_val_date] = ACTIONS(4255), + [anon_sym_DQUOTE] = ACTIONS(4257), + [sym__str_single_quotes] = ACTIONS(4259), + [sym__str_back_ticks] = ACTIONS(4259), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4261), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4263), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(4265), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4267), }, [1293] = { - [sym__val_range] = STATE(7632), - [sym__value] = STATE(1711), - [sym_val_nothing] = STATE(1798), - [sym_val_bool] = STATE(1649), - [sym_val_variable] = STATE(1798), - [sym_val_number] = STATE(1798), - [sym__val_number_decimal] = STATE(1365), - [sym__val_number] = STATE(1706), - [sym_val_duration] = STATE(1798), - [sym_val_filesize] = STATE(1798), - [sym_val_binary] = STATE(1798), - [sym_val_string] = STATE(1798), - [sym__raw_str] = STATE(1731), - [sym__str_double_quotes] = STATE(1731), - [sym_val_interpolated] = STATE(1798), - [sym__inter_single_quotes] = STATE(1778), - [sym__inter_double_quotes] = STATE(1780), - [sym_val_list] = STATE(1798), - [sym_val_record] = STATE(1798), - [sym_val_table] = STATE(1798), - [sym_val_closure] = STATE(1798), - [sym_unquoted] = STATE(1715), - [sym__unquoted_anonymous_prefix] = STATE(7838), + [sym__val_range] = STATE(7833), + [sym__value] = STATE(5317), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(7418), + [sym_val_variable] = STATE(2105), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(5641), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(3793), + [sym__str_double_quotes] = STATE(3793), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(5318), + [sym__unquoted_anonymous_prefix] = STATE(7649), [sym_comment] = STATE(1293), - [anon_sym_LBRACK] = ACTIONS(2618), - [anon_sym_LPAREN] = ACTIONS(4034), - [anon_sym_DOLLAR] = ACTIONS(4022), - [anon_sym_LBRACE] = ACTIONS(2628), - [anon_sym_DOT_DOT] = ACTIONS(4036), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4038), - [anon_sym_DOT_DOT_LT] = ACTIONS(4038), - [anon_sym_null] = ACTIONS(4040), - [anon_sym_true] = ACTIONS(4042), - [anon_sym_false] = ACTIONS(4042), - [aux_sym__val_number_decimal_token1] = ACTIONS(4044), - [aux_sym__val_number_decimal_token2] = ACTIONS(4046), - [aux_sym__val_number_decimal_token3] = ACTIONS(4048), - [aux_sym__val_number_decimal_token4] = ACTIONS(4050), - [aux_sym__val_number_token1] = ACTIONS(2646), - [aux_sym__val_number_token2] = ACTIONS(2646), - [aux_sym__val_number_token3] = ACTIONS(2646), - [aux_sym__val_number_token4] = ACTIONS(4052), - [aux_sym__val_number_token5] = ACTIONS(4052), - [aux_sym__val_number_token6] = ACTIONS(4052), - [anon_sym_0b] = ACTIONS(2650), - [anon_sym_0o] = ACTIONS(2652), - [anon_sym_0x] = ACTIONS(2652), - [sym_val_date] = ACTIONS(4054), - [anon_sym_DQUOTE] = ACTIONS(2656), - [sym__str_single_quotes] = ACTIONS(2658), - [sym__str_back_ticks] = ACTIONS(2658), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2660), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2662), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(4056), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2670), + [anon_sym_LBRACK] = ACTIONS(3508), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_DOLLAR] = ACTIONS(3512), + [anon_sym_LBRACE] = ACTIONS(3514), + [anon_sym_DOT_DOT] = ACTIONS(4091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4093), + [anon_sym_DOT_DOT_LT] = ACTIONS(4093), + [anon_sym_null] = ACTIONS(3826), + [anon_sym_true] = ACTIONS(3828), + [anon_sym_false] = ACTIONS(3828), + [aux_sym__val_number_decimal_token1] = ACTIONS(3830), + [aux_sym__val_number_decimal_token2] = ACTIONS(3832), + [aux_sym__val_number_decimal_token3] = ACTIONS(3834), + [aux_sym__val_number_decimal_token4] = ACTIONS(3836), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3838), + [aux_sym__val_number_token5] = ACTIONS(3838), + [aux_sym__val_number_token6] = ACTIONS(3838), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3840), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym__str_single_quotes] = ACTIONS(1274), + [sym__str_back_ticks] = ACTIONS(1274), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3538), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1276), }, [1294] = { - [sym__val_range] = STATE(7836), - [sym__value] = STATE(5917), - [sym_val_nothing] = STATE(5774), - [sym_val_bool] = STATE(5677), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(5774), - [sym__val_number_decimal] = STATE(5049), - [sym__val_number] = STATE(5797), - [sym_val_duration] = STATE(5774), - [sym_val_filesize] = STATE(5774), - [sym_val_binary] = STATE(5774), - [sym_val_string] = STATE(5774), - [sym__raw_str] = STATE(5380), - [sym__str_double_quotes] = STATE(5380), - [sym_val_interpolated] = STATE(5774), - [sym__inter_single_quotes] = STATE(5636), - [sym__inter_double_quotes] = STATE(5637), - [sym_val_list] = STATE(5774), - [sym_val_record] = STATE(5774), - [sym_val_table] = STATE(5774), - [sym_val_closure] = STATE(5774), - [sym_unquoted] = STATE(5918), - [sym__unquoted_anonymous_prefix] = STATE(7845), [sym_comment] = STATE(1294), - [anon_sym_LBRACK] = ACTIONS(4393), - [anon_sym_LPAREN] = ACTIONS(4395), - [anon_sym_DOLLAR] = ACTIONS(4397), - [anon_sym_LBRACE] = ACTIONS(4399), - [anon_sym_DOT_DOT] = ACTIONS(4401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4403), - [anon_sym_DOT_DOT_LT] = ACTIONS(4403), - [anon_sym_null] = ACTIONS(4405), - [anon_sym_true] = ACTIONS(4407), - [anon_sym_false] = ACTIONS(4407), - [aux_sym__val_number_decimal_token1] = ACTIONS(4409), - [aux_sym__val_number_decimal_token2] = ACTIONS(4411), - [aux_sym__val_number_decimal_token3] = ACTIONS(4413), - [aux_sym__val_number_decimal_token4] = ACTIONS(4415), - [aux_sym__val_number_token1] = ACTIONS(4417), - [aux_sym__val_number_token2] = ACTIONS(4417), - [aux_sym__val_number_token3] = ACTIONS(4417), - [aux_sym__val_number_token4] = ACTIONS(4419), - [aux_sym__val_number_token5] = ACTIONS(4419), - [aux_sym__val_number_token6] = ACTIONS(4419), - [anon_sym_0b] = ACTIONS(4421), - [anon_sym_0o] = ACTIONS(4423), - [anon_sym_0x] = ACTIONS(4423), - [sym_val_date] = ACTIONS(4425), - [anon_sym_DQUOTE] = ACTIONS(4427), - [sym__str_single_quotes] = ACTIONS(4429), - [sym__str_back_ticks] = ACTIONS(4429), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4431), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4433), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3534), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4435), + [anon_sym_EQ] = ACTIONS(974), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(976), + [sym__newline] = ACTIONS(976), + [anon_sym_SEMI] = ACTIONS(976), + [anon_sym_PIPE] = ACTIONS(976), + [anon_sym_err_GT_PIPE] = ACTIONS(976), + [anon_sym_out_GT_PIPE] = ACTIONS(976), + [anon_sym_e_GT_PIPE] = ACTIONS(976), + [anon_sym_o_GT_PIPE] = ACTIONS(976), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(976), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(976), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(976), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(976), + [anon_sym_RPAREN] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(974), + [anon_sym_DASH2] = ACTIONS(974), + [anon_sym_in2] = ACTIONS(976), + [anon_sym_RBRACE] = ACTIONS(976), + [anon_sym_STAR2] = ACTIONS(974), + [anon_sym_and2] = ACTIONS(976), + [anon_sym_xor2] = ACTIONS(976), + [anon_sym_or2] = ACTIONS(976), + [anon_sym_not_DASHin2] = ACTIONS(976), + [anon_sym_has2] = ACTIONS(976), + [anon_sym_not_DASHhas2] = ACTIONS(976), + [anon_sym_starts_DASHwith2] = ACTIONS(976), + [anon_sym_ends_DASHwith2] = ACTIONS(976), + [anon_sym_EQ_EQ2] = ACTIONS(976), + [anon_sym_BANG_EQ2] = ACTIONS(976), + [anon_sym_LT2] = ACTIONS(974), + [anon_sym_LT_EQ2] = ACTIONS(976), + [anon_sym_GT_EQ2] = ACTIONS(976), + [anon_sym_EQ_TILDE2] = ACTIONS(976), + [anon_sym_BANG_TILDE2] = ACTIONS(976), + [anon_sym_STAR_STAR2] = ACTIONS(976), + [anon_sym_PLUS_PLUS2] = ACTIONS(974), + [anon_sym_SLASH2] = ACTIONS(974), + [anon_sym_mod2] = ACTIONS(976), + [anon_sym_SLASH_SLASH2] = ACTIONS(976), + [anon_sym_PLUS2] = ACTIONS(974), + [anon_sym_bit_DASHshl2] = ACTIONS(976), + [anon_sym_bit_DASHshr2] = ACTIONS(976), + [anon_sym_bit_DASHand2] = ACTIONS(976), + [anon_sym_bit_DASHxor2] = ACTIONS(976), + [anon_sym_bit_DASHor2] = ACTIONS(976), + [anon_sym_DOT_DOT2] = ACTIONS(974), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(976), + [anon_sym_DOT_DOT_LT2] = ACTIONS(976), + [anon_sym_COLON2] = ACTIONS(976), + [anon_sym_DOT2] = ACTIONS(974), + [anon_sym_err_GT] = ACTIONS(974), + [anon_sym_out_GT] = ACTIONS(974), + [anon_sym_e_GT] = ACTIONS(974), + [anon_sym_o_GT] = ACTIONS(974), + [anon_sym_err_PLUSout_GT] = ACTIONS(974), + [anon_sym_out_PLUSerr_GT] = ACTIONS(974), + [anon_sym_o_PLUSe_GT] = ACTIONS(974), + [anon_sym_e_PLUSo_GT] = ACTIONS(974), + [anon_sym_err_GT_GT] = ACTIONS(976), + [anon_sym_out_GT_GT] = ACTIONS(976), + [anon_sym_e_GT_GT] = ACTIONS(976), + [anon_sym_o_GT_GT] = ACTIONS(976), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(976), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(976), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(976), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(976), + [anon_sym_POUND] = ACTIONS(247), }, [1295] = { - [sym__val_range] = STATE(7836), - [sym__value] = STATE(5895), - [sym_val_nothing] = STATE(5774), - [sym_val_bool] = STATE(5677), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(5774), - [sym__val_number_decimal] = STATE(5049), - [sym__val_number] = STATE(5797), - [sym_val_duration] = STATE(5774), - [sym_val_filesize] = STATE(5774), - [sym_val_binary] = STATE(5774), - [sym_val_string] = STATE(5774), - [sym__raw_str] = STATE(5380), - [sym__str_double_quotes] = STATE(5380), - [sym_val_interpolated] = STATE(5774), - [sym__inter_single_quotes] = STATE(5636), - [sym__inter_double_quotes] = STATE(5637), - [sym_val_list] = STATE(5774), - [sym_val_record] = STATE(5774), - [sym_val_table] = STATE(5774), - [sym_val_closure] = STATE(5774), - [sym_unquoted] = STATE(5905), - [sym__unquoted_anonymous_prefix] = STATE(7845), + [sym__expr_parenthesized_immediate] = STATE(1785), + [sym__immediate_decimal] = STATE(1786), + [sym_val_variable] = STATE(1785), [sym_comment] = STATE(1295), - [anon_sym_LBRACK] = ACTIONS(4393), - [anon_sym_LPAREN] = ACTIONS(4395), - [anon_sym_DOLLAR] = ACTIONS(4397), - [anon_sym_LBRACE] = ACTIONS(4399), - [anon_sym_DOT_DOT] = ACTIONS(4401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4403), - [anon_sym_DOT_DOT_LT] = ACTIONS(4403), - [anon_sym_null] = ACTIONS(4405), - [anon_sym_true] = ACTIONS(4407), - [anon_sym_false] = ACTIONS(4407), - [aux_sym__val_number_decimal_token1] = ACTIONS(4409), - [aux_sym__val_number_decimal_token2] = ACTIONS(4411), - [aux_sym__val_number_decimal_token3] = ACTIONS(4413), - [aux_sym__val_number_decimal_token4] = ACTIONS(4415), - [aux_sym__val_number_token1] = ACTIONS(4417), - [aux_sym__val_number_token2] = ACTIONS(4417), - [aux_sym__val_number_token3] = ACTIONS(4417), - [aux_sym__val_number_token4] = ACTIONS(4419), - [aux_sym__val_number_token5] = ACTIONS(4419), - [aux_sym__val_number_token6] = ACTIONS(4419), - [anon_sym_0b] = ACTIONS(4421), - [anon_sym_0o] = ACTIONS(4423), - [anon_sym_0x] = ACTIONS(4423), - [sym_val_date] = ACTIONS(4425), - [anon_sym_DQUOTE] = ACTIONS(4427), - [sym__str_single_quotes] = ACTIONS(4429), - [sym__str_back_ticks] = ACTIONS(4429), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4431), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4433), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3534), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4435), + [sym__newline] = ACTIONS(1532), + [anon_sym_SEMI] = ACTIONS(1532), + [anon_sym_PIPE] = ACTIONS(1532), + [anon_sym_err_GT_PIPE] = ACTIONS(1532), + [anon_sym_out_GT_PIPE] = ACTIONS(1532), + [anon_sym_e_GT_PIPE] = ACTIONS(1532), + [anon_sym_o_GT_PIPE] = ACTIONS(1532), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1532), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1532), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1532), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1532), + [anon_sym_LBRACK] = ACTIONS(1532), + [anon_sym_LPAREN] = ACTIONS(1522), + [anon_sym_RPAREN] = ACTIONS(1532), + [anon_sym_DOLLAR] = ACTIONS(3985), + [anon_sym_DASH_DASH] = ACTIONS(1532), + [anon_sym_DASH2] = ACTIONS(1522), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_RBRACE] = ACTIONS(1532), + [anon_sym_DOT_DOT] = ACTIONS(1522), + [anon_sym_LPAREN2] = ACTIONS(3987), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1532), + [anon_sym_DOT_DOT_LT] = ACTIONS(1532), + [aux_sym__immediate_decimal_token1] = ACTIONS(4029), + [aux_sym__immediate_decimal_token3] = ACTIONS(4031), + [aux_sym__immediate_decimal_token4] = ACTIONS(4033), + [aux_sym__immediate_decimal_token5] = ACTIONS(4035), + [anon_sym_null] = ACTIONS(1532), + [anon_sym_true] = ACTIONS(1532), + [anon_sym_false] = ACTIONS(1532), + [aux_sym__val_number_decimal_token1] = ACTIONS(1522), + [aux_sym__val_number_decimal_token2] = ACTIONS(1522), + [aux_sym__val_number_decimal_token3] = ACTIONS(1522), + [aux_sym__val_number_decimal_token4] = ACTIONS(1522), + [aux_sym__val_number_token1] = ACTIONS(1532), + [aux_sym__val_number_token2] = ACTIONS(1532), + [aux_sym__val_number_token3] = ACTIONS(1532), + [aux_sym__val_number_token4] = ACTIONS(1532), + [aux_sym__val_number_token5] = ACTIONS(1532), + [aux_sym__val_number_token6] = ACTIONS(1532), + [anon_sym_0b] = ACTIONS(1522), + [anon_sym_0o] = ACTIONS(1522), + [anon_sym_0x] = ACTIONS(1522), + [sym_val_date] = ACTIONS(1532), + [anon_sym_DQUOTE] = ACTIONS(1532), + [sym__str_single_quotes] = ACTIONS(1532), + [sym__str_back_ticks] = ACTIONS(1532), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1532), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1532), + [anon_sym_err_GT] = ACTIONS(1522), + [anon_sym_out_GT] = ACTIONS(1522), + [anon_sym_e_GT] = ACTIONS(1522), + [anon_sym_o_GT] = ACTIONS(1522), + [anon_sym_err_PLUSout_GT] = ACTIONS(1522), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1522), + [anon_sym_o_PLUSe_GT] = ACTIONS(1522), + [anon_sym_e_PLUSo_GT] = ACTIONS(1522), + [anon_sym_err_GT_GT] = ACTIONS(1532), + [anon_sym_out_GT_GT] = ACTIONS(1532), + [anon_sym_e_GT_GT] = ACTIONS(1532), + [anon_sym_o_GT_GT] = ACTIONS(1532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1532), + [aux_sym_unquoted_token1] = ACTIONS(1522), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1532), }, [1296] = { - [sym__val_range] = STATE(7519), - [sym__value] = STATE(5239), - [sym_val_nothing] = STATE(4353), - [sym_val_bool] = STATE(5512), - [sym_val_variable] = STATE(4353), - [sym_val_number] = STATE(4353), - [sym__val_number_decimal] = STATE(4913), - [sym__val_number] = STATE(4251), - [sym_val_duration] = STATE(4353), - [sym_val_filesize] = STATE(4353), - [sym_val_binary] = STATE(4353), - [sym_val_string] = STATE(4353), - [sym__raw_str] = STATE(3668), - [sym__str_double_quotes] = STATE(3668), - [sym_val_interpolated] = STATE(4353), - [sym__inter_single_quotes] = STATE(5264), - [sym__inter_double_quotes] = STATE(5265), - [sym_val_list] = STATE(4353), - [sym_val_record] = STATE(4353), - [sym_val_table] = STATE(4353), - [sym_val_closure] = STATE(4353), - [sym_unquoted] = STATE(5241), - [sym__unquoted_anonymous_prefix] = STATE(7789), [sym_comment] = STATE(1296), - [anon_sym_LBRACK] = ACTIONS(4096), - [anon_sym_LPAREN] = ACTIONS(4062), - [anon_sym_DOLLAR] = ACTIONS(4098), - [anon_sym_LBRACE] = ACTIONS(4100), - [anon_sym_DOT_DOT] = ACTIONS(4102), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4104), - [anon_sym_DOT_DOT_LT] = ACTIONS(4104), - [anon_sym_null] = ACTIONS(4437), - [anon_sym_true] = ACTIONS(4439), - [anon_sym_false] = ACTIONS(4439), - [aux_sym__val_number_decimal_token1] = ACTIONS(4441), - [aux_sym__val_number_decimal_token2] = ACTIONS(4443), - [aux_sym__val_number_decimal_token3] = ACTIONS(4445), - [aux_sym__val_number_decimal_token4] = ACTIONS(4447), - [aux_sym__val_number_token1] = ACTIONS(3600), - [aux_sym__val_number_token2] = ACTIONS(3600), - [aux_sym__val_number_token3] = ACTIONS(3600), - [aux_sym__val_number_token4] = ACTIONS(4449), - [aux_sym__val_number_token5] = ACTIONS(4449), - [aux_sym__val_number_token6] = ACTIONS(4449), - [anon_sym_0b] = ACTIONS(3604), - [anon_sym_0o] = ACTIONS(3606), - [anon_sym_0x] = ACTIONS(3606), - [sym_val_date] = ACTIONS(4451), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym__str_single_quotes] = ACTIONS(1288), - [sym__str_back_ticks] = ACTIONS(1288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4116), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4118), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3490), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1290), + [sym__newline] = ACTIONS(1620), + [anon_sym_SEMI] = ACTIONS(1620), + [anon_sym_PIPE] = ACTIONS(1620), + [anon_sym_err_GT_PIPE] = ACTIONS(1620), + [anon_sym_out_GT_PIPE] = ACTIONS(1620), + [anon_sym_e_GT_PIPE] = ACTIONS(1620), + [anon_sym_o_GT_PIPE] = ACTIONS(1620), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1620), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1620), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1620), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_RPAREN] = ACTIONS(1620), + [anon_sym_DOLLAR] = ACTIONS(1618), + [anon_sym_DASH_DASH] = ACTIONS(1620), + [anon_sym_DASH2] = ACTIONS(1618), + [anon_sym_LBRACE] = ACTIONS(1620), + [anon_sym_RBRACE] = ACTIONS(1620), + [anon_sym_DOT_DOT] = ACTIONS(1618), + [anon_sym_LPAREN2] = ACTIONS(1620), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1618), + [anon_sym_DOT_DOT_LT] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [aux_sym__immediate_decimal_token2] = ACTIONS(4269), + [anon_sym_null] = ACTIONS(1620), + [anon_sym_true] = ACTIONS(1620), + [anon_sym_false] = ACTIONS(1620), + [aux_sym__val_number_decimal_token1] = ACTIONS(1618), + [aux_sym__val_number_decimal_token2] = ACTIONS(1620), + [aux_sym__val_number_decimal_token3] = ACTIONS(1620), + [aux_sym__val_number_decimal_token4] = ACTIONS(1620), + [aux_sym__val_number_token1] = ACTIONS(1620), + [aux_sym__val_number_token2] = ACTIONS(1620), + [aux_sym__val_number_token3] = ACTIONS(1620), + [aux_sym__val_number_token4] = ACTIONS(1620), + [aux_sym__val_number_token5] = ACTIONS(1620), + [aux_sym__val_number_token6] = ACTIONS(1620), + [anon_sym_0b] = ACTIONS(1618), + [sym_filesize_unit] = ACTIONS(1620), + [sym_duration_unit] = ACTIONS(1620), + [anon_sym_0o] = ACTIONS(1618), + [anon_sym_0x] = ACTIONS(1618), + [sym_val_date] = ACTIONS(1620), + [anon_sym_DQUOTE] = ACTIONS(1620), + [sym__str_single_quotes] = ACTIONS(1620), + [sym__str_back_ticks] = ACTIONS(1620), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1620), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1620), + [anon_sym_err_GT] = ACTIONS(1618), + [anon_sym_out_GT] = ACTIONS(1618), + [anon_sym_e_GT] = ACTIONS(1618), + [anon_sym_o_GT] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT] = ACTIONS(1618), + [anon_sym_err_GT_GT] = ACTIONS(1620), + [anon_sym_out_GT_GT] = ACTIONS(1620), + [anon_sym_e_GT_GT] = ACTIONS(1620), + [anon_sym_o_GT_GT] = ACTIONS(1620), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1620), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1620), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1620), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1620), + [aux_sym_unquoted_token1] = ACTIONS(1618), + [aux_sym_unquoted_token2] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1620), }, [1297] = { - [sym__val_range] = STATE(7836), - [sym__value] = STATE(5847), - [sym_val_nothing] = STATE(5774), - [sym_val_bool] = STATE(5677), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(5774), - [sym__val_number_decimal] = STATE(5049), - [sym__val_number] = STATE(5797), - [sym_val_duration] = STATE(5774), - [sym_val_filesize] = STATE(5774), - [sym_val_binary] = STATE(5774), - [sym_val_string] = STATE(5774), - [sym__raw_str] = STATE(5380), - [sym__str_double_quotes] = STATE(5380), - [sym_val_interpolated] = STATE(5774), - [sym__inter_single_quotes] = STATE(5636), - [sym__inter_double_quotes] = STATE(5637), - [sym_val_list] = STATE(5774), - [sym_val_record] = STATE(5774), - [sym_val_table] = STATE(5774), - [sym_val_closure] = STATE(5774), - [sym_unquoted] = STATE(5916), - [sym__unquoted_anonymous_prefix] = STATE(7845), + [sym__expr_parenthesized_immediate] = STATE(2067), + [sym__immediate_decimal] = STATE(1741), + [sym_val_variable] = STATE(2067), [sym_comment] = STATE(1297), - [anon_sym_LBRACK] = ACTIONS(4393), - [anon_sym_LPAREN] = ACTIONS(4395), - [anon_sym_DOLLAR] = ACTIONS(4397), - [anon_sym_LBRACE] = ACTIONS(4399), - [anon_sym_DOT_DOT] = ACTIONS(4401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4403), - [anon_sym_DOT_DOT_LT] = ACTIONS(4403), - [anon_sym_null] = ACTIONS(4405), - [anon_sym_true] = ACTIONS(4407), - [anon_sym_false] = ACTIONS(4407), - [aux_sym__val_number_decimal_token1] = ACTIONS(4409), - [aux_sym__val_number_decimal_token2] = ACTIONS(4411), - [aux_sym__val_number_decimal_token3] = ACTIONS(4413), - [aux_sym__val_number_decimal_token4] = ACTIONS(4415), - [aux_sym__val_number_token1] = ACTIONS(4417), - [aux_sym__val_number_token2] = ACTIONS(4417), - [aux_sym__val_number_token3] = ACTIONS(4417), - [aux_sym__val_number_token4] = ACTIONS(4419), - [aux_sym__val_number_token5] = ACTIONS(4419), - [aux_sym__val_number_token6] = ACTIONS(4419), - [anon_sym_0b] = ACTIONS(4421), - [anon_sym_0o] = ACTIONS(4423), - [anon_sym_0x] = ACTIONS(4423), - [sym_val_date] = ACTIONS(4425), - [anon_sym_DQUOTE] = ACTIONS(4427), - [sym__str_single_quotes] = ACTIONS(4429), - [sym__str_back_ticks] = ACTIONS(4429), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4431), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4433), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3534), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4435), + [ts_builtin_sym_end] = ACTIONS(1560), + [sym__newline] = ACTIONS(1560), + [anon_sym_SEMI] = ACTIONS(1560), + [anon_sym_PIPE] = ACTIONS(1560), + [anon_sym_err_GT_PIPE] = ACTIONS(1560), + [anon_sym_out_GT_PIPE] = ACTIONS(1560), + [anon_sym_e_GT_PIPE] = ACTIONS(1560), + [anon_sym_o_GT_PIPE] = ACTIONS(1560), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1560), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1560), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1560), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1560), + [anon_sym_LPAREN] = ACTIONS(1558), + [anon_sym_DOLLAR] = ACTIONS(4157), + [anon_sym_DASH_DASH] = ACTIONS(1560), + [anon_sym_DASH2] = ACTIONS(1558), + [anon_sym_LBRACE] = ACTIONS(1560), + [anon_sym_DOT_DOT] = ACTIONS(1558), + [anon_sym_LPAREN2] = ACTIONS(4159), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1560), + [anon_sym_DOT_DOT_LT] = ACTIONS(1560), + [aux_sym__immediate_decimal_token1] = ACTIONS(4161), + [aux_sym__immediate_decimal_token3] = ACTIONS(4163), + [aux_sym__immediate_decimal_token4] = ACTIONS(4165), + [aux_sym__immediate_decimal_token5] = ACTIONS(4167), + [anon_sym_null] = ACTIONS(1560), + [anon_sym_true] = ACTIONS(1560), + [anon_sym_false] = ACTIONS(1560), + [aux_sym__val_number_decimal_token1] = ACTIONS(1558), + [aux_sym__val_number_decimal_token2] = ACTIONS(1558), + [aux_sym__val_number_decimal_token3] = ACTIONS(1558), + [aux_sym__val_number_decimal_token4] = ACTIONS(1558), + [aux_sym__val_number_token1] = ACTIONS(1560), + [aux_sym__val_number_token2] = ACTIONS(1560), + [aux_sym__val_number_token3] = ACTIONS(1560), + [aux_sym__val_number_token4] = ACTIONS(1560), + [aux_sym__val_number_token5] = ACTIONS(1560), + [aux_sym__val_number_token6] = ACTIONS(1560), + [anon_sym_0b] = ACTIONS(1558), + [anon_sym_0o] = ACTIONS(1558), + [anon_sym_0x] = ACTIONS(1558), + [sym_val_date] = ACTIONS(1560), + [anon_sym_DQUOTE] = ACTIONS(1560), + [sym__str_single_quotes] = ACTIONS(1560), + [sym__str_back_ticks] = ACTIONS(1560), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1560), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1560), + [anon_sym_err_GT] = ACTIONS(1558), + [anon_sym_out_GT] = ACTIONS(1558), + [anon_sym_e_GT] = ACTIONS(1558), + [anon_sym_o_GT] = ACTIONS(1558), + [anon_sym_err_PLUSout_GT] = ACTIONS(1558), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1558), + [anon_sym_o_PLUSe_GT] = ACTIONS(1558), + [anon_sym_e_PLUSo_GT] = ACTIONS(1558), + [anon_sym_err_GT_GT] = ACTIONS(1560), + [anon_sym_out_GT_GT] = ACTIONS(1560), + [anon_sym_e_GT_GT] = ACTIONS(1560), + [anon_sym_o_GT_GT] = ACTIONS(1560), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1560), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1560), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1560), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1560), + [aux_sym_unquoted_token1] = ACTIONS(1558), + [aux_sym_unquoted_token2] = ACTIONS(1562), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1560), }, [1298] = { - [sym__val_range] = STATE(7519), - [sym__value] = STATE(5242), - [sym_val_nothing] = STATE(4353), - [sym_val_bool] = STATE(5512), - [sym_val_variable] = STATE(4353), - [sym_val_number] = STATE(4353), - [sym__val_number_decimal] = STATE(4913), - [sym__val_number] = STATE(4251), - [sym_val_duration] = STATE(4353), - [sym_val_filesize] = STATE(4353), - [sym_val_binary] = STATE(4353), - [sym_val_string] = STATE(4353), - [sym__raw_str] = STATE(3668), - [sym__str_double_quotes] = STATE(3668), - [sym_val_interpolated] = STATE(4353), - [sym__inter_single_quotes] = STATE(5264), - [sym__inter_double_quotes] = STATE(5265), - [sym_val_list] = STATE(4353), - [sym_val_record] = STATE(4353), - [sym_val_table] = STATE(4353), - [sym_val_closure] = STATE(4353), - [sym_unquoted] = STATE(5243), - [sym__unquoted_anonymous_prefix] = STATE(7789), + [sym__val_range] = STATE(7553), + [sym__value] = STATE(3443), + [sym_val_nothing] = STATE(3446), + [sym_val_bool] = STATE(3320), + [sym_val_variable] = STATE(3446), + [sym_val_number] = STATE(3446), + [sym__val_number_decimal] = STATE(3125), + [sym__val_number] = STATE(3442), + [sym_val_duration] = STATE(3446), + [sym_val_filesize] = STATE(3446), + [sym_val_binary] = STATE(3446), + [sym_val_string] = STATE(3446), + [sym__raw_str] = STATE(3462), + [sym__str_double_quotes] = STATE(3462), + [sym_val_interpolated] = STATE(3446), + [sym__inter_single_quotes] = STATE(3495), + [sym__inter_double_quotes] = STATE(3496), + [sym_val_list] = STATE(3446), + [sym_val_record] = STATE(3446), + [sym_val_table] = STATE(3446), + [sym_val_closure] = STATE(3446), + [sym_unquoted] = STATE(3445), + [sym__unquoted_anonymous_prefix] = STATE(7605), [sym_comment] = STATE(1298), - [anon_sym_LBRACK] = ACTIONS(4096), - [anon_sym_LPAREN] = ACTIONS(4062), - [anon_sym_DOLLAR] = ACTIONS(4098), - [anon_sym_LBRACE] = ACTIONS(4100), - [anon_sym_DOT_DOT] = ACTIONS(4102), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4104), - [anon_sym_DOT_DOT_LT] = ACTIONS(4104), - [anon_sym_null] = ACTIONS(4437), - [anon_sym_true] = ACTIONS(4439), - [anon_sym_false] = ACTIONS(4439), - [aux_sym__val_number_decimal_token1] = ACTIONS(4441), - [aux_sym__val_number_decimal_token2] = ACTIONS(4443), - [aux_sym__val_number_decimal_token3] = ACTIONS(4445), - [aux_sym__val_number_decimal_token4] = ACTIONS(4447), - [aux_sym__val_number_token1] = ACTIONS(3600), - [aux_sym__val_number_token2] = ACTIONS(3600), - [aux_sym__val_number_token3] = ACTIONS(3600), - [aux_sym__val_number_token4] = ACTIONS(4449), - [aux_sym__val_number_token5] = ACTIONS(4449), - [aux_sym__val_number_token6] = ACTIONS(4449), - [anon_sym_0b] = ACTIONS(3604), - [anon_sym_0o] = ACTIONS(3606), - [anon_sym_0x] = ACTIONS(3606), - [sym_val_date] = ACTIONS(4451), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym__str_single_quotes] = ACTIONS(1288), - [sym__str_back_ticks] = ACTIONS(1288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4116), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4118), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3490), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1290), + [anon_sym_LBRACK] = ACTIONS(4223), + [anon_sym_LPAREN] = ACTIONS(4225), + [anon_sym_DOLLAR] = ACTIONS(4227), + [anon_sym_LBRACE] = ACTIONS(4229), + [anon_sym_DOT_DOT] = ACTIONS(4231), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4233), + [anon_sym_DOT_DOT_LT] = ACTIONS(4233), + [anon_sym_null] = ACTIONS(4235), + [anon_sym_true] = ACTIONS(4237), + [anon_sym_false] = ACTIONS(4237), + [aux_sym__val_number_decimal_token1] = ACTIONS(4239), + [aux_sym__val_number_decimal_token2] = ACTIONS(4241), + [aux_sym__val_number_decimal_token3] = ACTIONS(4243), + [aux_sym__val_number_decimal_token4] = ACTIONS(4245), + [aux_sym__val_number_token1] = ACTIONS(4247), + [aux_sym__val_number_token2] = ACTIONS(4247), + [aux_sym__val_number_token3] = ACTIONS(4247), + [aux_sym__val_number_token4] = ACTIONS(4249), + [aux_sym__val_number_token5] = ACTIONS(4249), + [aux_sym__val_number_token6] = ACTIONS(4249), + [anon_sym_0b] = ACTIONS(4251), + [anon_sym_0o] = ACTIONS(4253), + [anon_sym_0x] = ACTIONS(4253), + [sym_val_date] = ACTIONS(4255), + [anon_sym_DQUOTE] = ACTIONS(4257), + [sym__str_single_quotes] = ACTIONS(4259), + [sym__str_back_ticks] = ACTIONS(4259), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4261), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4263), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(4265), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4267), }, [1299] = { - [sym__val_range] = STATE(7519), - [sym__value] = STATE(5236), - [sym_val_nothing] = STATE(4353), - [sym_val_bool] = STATE(5512), - [sym_val_variable] = STATE(4353), - [sym_val_number] = STATE(4353), - [sym__val_number_decimal] = STATE(4913), - [sym__val_number] = STATE(4251), - [sym_val_duration] = STATE(4353), - [sym_val_filesize] = STATE(4353), - [sym_val_binary] = STATE(4353), - [sym_val_string] = STATE(4353), - [sym__raw_str] = STATE(3668), - [sym__str_double_quotes] = STATE(3668), - [sym_val_interpolated] = STATE(4353), - [sym__inter_single_quotes] = STATE(5264), - [sym__inter_double_quotes] = STATE(5265), - [sym_val_list] = STATE(4353), - [sym_val_record] = STATE(4353), - [sym_val_table] = STATE(4353), - [sym_val_closure] = STATE(4353), - [sym_unquoted] = STATE(5238), - [sym__unquoted_anonymous_prefix] = STATE(7789), + [sym__val_range] = STATE(7818), + [sym__value] = STATE(4854), + [sym_val_nothing] = STATE(4824), + [sym_val_bool] = STATE(4513), + [sym_val_variable] = STATE(4824), + [sym_val_number] = STATE(4824), + [sym__val_number_decimal] = STATE(4050), + [sym__val_number] = STATE(4829), + [sym_val_duration] = STATE(4824), + [sym_val_filesize] = STATE(4824), + [sym_val_binary] = STATE(4824), + [sym_val_string] = STATE(4824), + [sym__raw_str] = STATE(4153), + [sym__str_double_quotes] = STATE(4153), + [sym_val_interpolated] = STATE(4824), + [sym__inter_single_quotes] = STATE(4830), + [sym__inter_double_quotes] = STATE(4848), + [sym_val_list] = STATE(4824), + [sym_val_record] = STATE(4824), + [sym_val_table] = STATE(4824), + [sym_val_closure] = STATE(4824), + [sym_unquoted] = STATE(4875), + [sym__unquoted_anonymous_prefix] = STATE(7773), [sym_comment] = STATE(1299), - [anon_sym_LBRACK] = ACTIONS(4096), - [anon_sym_LPAREN] = ACTIONS(4062), - [anon_sym_DOLLAR] = ACTIONS(4098), - [anon_sym_LBRACE] = ACTIONS(4100), - [anon_sym_DOT_DOT] = ACTIONS(4102), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4104), - [anon_sym_DOT_DOT_LT] = ACTIONS(4104), - [anon_sym_null] = ACTIONS(4437), - [anon_sym_true] = ACTIONS(4439), - [anon_sym_false] = ACTIONS(4439), - [aux_sym__val_number_decimal_token1] = ACTIONS(4441), - [aux_sym__val_number_decimal_token2] = ACTIONS(4443), - [aux_sym__val_number_decimal_token3] = ACTIONS(4445), - [aux_sym__val_number_decimal_token4] = ACTIONS(4447), - [aux_sym__val_number_token1] = ACTIONS(3600), - [aux_sym__val_number_token2] = ACTIONS(3600), - [aux_sym__val_number_token3] = ACTIONS(3600), - [aux_sym__val_number_token4] = ACTIONS(4449), - [aux_sym__val_number_token5] = ACTIONS(4449), - [aux_sym__val_number_token6] = ACTIONS(4449), - [anon_sym_0b] = ACTIONS(3604), - [anon_sym_0o] = ACTIONS(3606), - [anon_sym_0x] = ACTIONS(3606), - [sym_val_date] = ACTIONS(4451), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym__str_single_quotes] = ACTIONS(1288), - [sym__str_back_ticks] = ACTIONS(1288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4116), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4118), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3490), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1290), + [anon_sym_LBRACK] = ACTIONS(4271), + [anon_sym_LPAREN] = ACTIONS(4273), + [anon_sym_DOLLAR] = ACTIONS(2236), + [anon_sym_LBRACE] = ACTIONS(4275), + [anon_sym_DOT_DOT] = ACTIONS(4277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4279), + [anon_sym_DOT_DOT_LT] = ACTIONS(4279), + [anon_sym_null] = ACTIONS(4281), + [anon_sym_true] = ACTIONS(4283), + [anon_sym_false] = ACTIONS(4283), + [aux_sym__val_number_decimal_token1] = ACTIONS(2256), + [aux_sym__val_number_decimal_token2] = ACTIONS(4285), + [aux_sym__val_number_decimal_token3] = ACTIONS(4287), + [aux_sym__val_number_decimal_token4] = ACTIONS(4289), + [aux_sym__val_number_token1] = ACTIONS(4291), + [aux_sym__val_number_token2] = ACTIONS(4291), + [aux_sym__val_number_token3] = ACTIONS(4291), + [aux_sym__val_number_token4] = ACTIONS(4293), + [aux_sym__val_number_token5] = ACTIONS(4293), + [aux_sym__val_number_token6] = ACTIONS(4293), + [anon_sym_0b] = ACTIONS(2266), + [anon_sym_0o] = ACTIONS(2268), + [anon_sym_0x] = ACTIONS(2268), + [sym_val_date] = ACTIONS(4295), + [anon_sym_DQUOTE] = ACTIONS(4297), + [sym__str_single_quotes] = ACTIONS(4299), + [sym__str_back_ticks] = ACTIONS(4299), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4301), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4303), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(2284), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2286), }, [1300] = { - [sym__val_range] = STATE(7519), - [sym__value] = STATE(5270), - [sym_val_nothing] = STATE(4353), - [sym_val_bool] = STATE(5512), - [sym_val_variable] = STATE(4353), - [sym_val_number] = STATE(4353), - [sym__val_number_decimal] = STATE(4913), - [sym__val_number] = STATE(4251), - [sym_val_duration] = STATE(4353), - [sym_val_filesize] = STATE(4353), - [sym_val_binary] = STATE(4353), - [sym_val_string] = STATE(4353), - [sym__raw_str] = STATE(3668), - [sym__str_double_quotes] = STATE(3668), - [sym_val_interpolated] = STATE(4353), - [sym__inter_single_quotes] = STATE(5264), - [sym__inter_double_quotes] = STATE(5265), - [sym_val_list] = STATE(4353), - [sym_val_record] = STATE(4353), - [sym_val_table] = STATE(4353), - [sym_val_closure] = STATE(4353), - [sym_unquoted] = STATE(5271), - [sym__unquoted_anonymous_prefix] = STATE(7789), + [sym__val_range] = STATE(7553), + [sym__value] = STATE(3502), + [sym_val_nothing] = STATE(3446), + [sym_val_bool] = STATE(3320), + [sym_val_variable] = STATE(3446), + [sym_val_number] = STATE(3446), + [sym__val_number_decimal] = STATE(3125), + [sym__val_number] = STATE(3442), + [sym_val_duration] = STATE(3446), + [sym_val_filesize] = STATE(3446), + [sym_val_binary] = STATE(3446), + [sym_val_string] = STATE(3446), + [sym__raw_str] = STATE(3462), + [sym__str_double_quotes] = STATE(3462), + [sym_val_interpolated] = STATE(3446), + [sym__inter_single_quotes] = STATE(3495), + [sym__inter_double_quotes] = STATE(3496), + [sym_val_list] = STATE(3446), + [sym_val_record] = STATE(3446), + [sym_val_table] = STATE(3446), + [sym_val_closure] = STATE(3446), + [sym_unquoted] = STATE(3494), + [sym__unquoted_anonymous_prefix] = STATE(7605), [sym_comment] = STATE(1300), - [anon_sym_LBRACK] = ACTIONS(4096), - [anon_sym_LPAREN] = ACTIONS(4062), - [anon_sym_DOLLAR] = ACTIONS(4098), - [anon_sym_LBRACE] = ACTIONS(4100), - [anon_sym_DOT_DOT] = ACTIONS(4102), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4104), - [anon_sym_DOT_DOT_LT] = ACTIONS(4104), - [anon_sym_null] = ACTIONS(4437), - [anon_sym_true] = ACTIONS(4439), - [anon_sym_false] = ACTIONS(4439), - [aux_sym__val_number_decimal_token1] = ACTIONS(4441), - [aux_sym__val_number_decimal_token2] = ACTIONS(4443), - [aux_sym__val_number_decimal_token3] = ACTIONS(4445), - [aux_sym__val_number_decimal_token4] = ACTIONS(4447), - [aux_sym__val_number_token1] = ACTIONS(3600), - [aux_sym__val_number_token2] = ACTIONS(3600), - [aux_sym__val_number_token3] = ACTIONS(3600), - [aux_sym__val_number_token4] = ACTIONS(4449), - [aux_sym__val_number_token5] = ACTIONS(4449), - [aux_sym__val_number_token6] = ACTIONS(4449), - [anon_sym_0b] = ACTIONS(3604), - [anon_sym_0o] = ACTIONS(3606), - [anon_sym_0x] = ACTIONS(3606), - [sym_val_date] = ACTIONS(4451), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym__str_single_quotes] = ACTIONS(1288), - [sym__str_back_ticks] = ACTIONS(1288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4116), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4118), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3490), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1290), + [anon_sym_LBRACK] = ACTIONS(4223), + [anon_sym_LPAREN] = ACTIONS(4225), + [anon_sym_DOLLAR] = ACTIONS(4227), + [anon_sym_LBRACE] = ACTIONS(4229), + [anon_sym_DOT_DOT] = ACTIONS(4231), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4233), + [anon_sym_DOT_DOT_LT] = ACTIONS(4233), + [anon_sym_null] = ACTIONS(4235), + [anon_sym_true] = ACTIONS(4237), + [anon_sym_false] = ACTIONS(4237), + [aux_sym__val_number_decimal_token1] = ACTIONS(4239), + [aux_sym__val_number_decimal_token2] = ACTIONS(4241), + [aux_sym__val_number_decimal_token3] = ACTIONS(4243), + [aux_sym__val_number_decimal_token4] = ACTIONS(4245), + [aux_sym__val_number_token1] = ACTIONS(4247), + [aux_sym__val_number_token2] = ACTIONS(4247), + [aux_sym__val_number_token3] = ACTIONS(4247), + [aux_sym__val_number_token4] = ACTIONS(4249), + [aux_sym__val_number_token5] = ACTIONS(4249), + [aux_sym__val_number_token6] = ACTIONS(4249), + [anon_sym_0b] = ACTIONS(4251), + [anon_sym_0o] = ACTIONS(4253), + [anon_sym_0x] = ACTIONS(4253), + [sym_val_date] = ACTIONS(4255), + [anon_sym_DQUOTE] = ACTIONS(4257), + [sym__str_single_quotes] = ACTIONS(4259), + [sym__str_back_ticks] = ACTIONS(4259), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4261), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4263), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(4265), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4267), }, [1301] = { - [sym__val_range] = STATE(7519), - [sym__value] = STATE(5242), - [sym_val_nothing] = STATE(2085), - [sym_val_bool] = STATE(7415), - [sym_val_variable] = STATE(2085), - [sym_val_number] = STATE(2085), - [sym__val_number_decimal] = STATE(5609), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(2085), - [sym_val_filesize] = STATE(2085), - [sym_val_binary] = STATE(2085), - [sym_val_string] = STATE(2085), - [sym__raw_str] = STATE(3668), - [sym__str_double_quotes] = STATE(3668), - [sym_val_interpolated] = STATE(2085), - [sym__inter_single_quotes] = STATE(2034), - [sym__inter_double_quotes] = STATE(2035), - [sym_val_list] = STATE(2085), - [sym_val_record] = STATE(2085), - [sym_val_table] = STATE(2085), - [sym_val_closure] = STATE(2085), - [sym_unquoted] = STATE(5243), - [sym__unquoted_anonymous_prefix] = STATE(7789), + [sym__val_range] = STATE(7818), + [sym__value] = STATE(4734), + [sym_val_nothing] = STATE(4824), + [sym_val_bool] = STATE(4513), + [sym_val_variable] = STATE(4824), + [sym_val_number] = STATE(4824), + [sym__val_number_decimal] = STATE(4050), + [sym__val_number] = STATE(4829), + [sym_val_duration] = STATE(4824), + [sym_val_filesize] = STATE(4824), + [sym_val_binary] = STATE(4824), + [sym_val_string] = STATE(4824), + [sym__raw_str] = STATE(4153), + [sym__str_double_quotes] = STATE(4153), + [sym_val_interpolated] = STATE(4824), + [sym__inter_single_quotes] = STATE(4830), + [sym__inter_double_quotes] = STATE(4848), + [sym_val_list] = STATE(4824), + [sym_val_record] = STATE(4824), + [sym_val_table] = STATE(4824), + [sym_val_closure] = STATE(4824), + [sym_unquoted] = STATE(4725), + [sym__unquoted_anonymous_prefix] = STATE(7773), [sym_comment] = STATE(1301), - [anon_sym_LBRACK] = ACTIONS(3460), - [anon_sym_LPAREN] = ACTIONS(4211), - [anon_sym_DOLLAR] = ACTIONS(3464), - [anon_sym_LBRACE] = ACTIONS(3466), - [anon_sym_DOT_DOT] = ACTIONS(4102), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4104), - [anon_sym_DOT_DOT_LT] = ACTIONS(4104), - [anon_sym_null] = ACTIONS(3954), - [anon_sym_true] = ACTIONS(3956), - [anon_sym_false] = ACTIONS(3956), - [aux_sym__val_number_decimal_token1] = ACTIONS(3958), - [aux_sym__val_number_decimal_token2] = ACTIONS(3960), - [aux_sym__val_number_decimal_token3] = ACTIONS(3962), - [aux_sym__val_number_decimal_token4] = ACTIONS(3964), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3966), - [aux_sym__val_number_token5] = ACTIONS(3966), - [aux_sym__val_number_token6] = ACTIONS(3966), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3968), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym__str_single_quotes] = ACTIONS(1288), - [sym__str_back_ticks] = ACTIONS(1288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3490), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1290), + [anon_sym_LBRACK] = ACTIONS(4271), + [anon_sym_LPAREN] = ACTIONS(4273), + [anon_sym_DOLLAR] = ACTIONS(2236), + [anon_sym_LBRACE] = ACTIONS(4275), + [anon_sym_DOT_DOT] = ACTIONS(4277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4279), + [anon_sym_DOT_DOT_LT] = ACTIONS(4279), + [anon_sym_null] = ACTIONS(4281), + [anon_sym_true] = ACTIONS(4283), + [anon_sym_false] = ACTIONS(4283), + [aux_sym__val_number_decimal_token1] = ACTIONS(2256), + [aux_sym__val_number_decimal_token2] = ACTIONS(4285), + [aux_sym__val_number_decimal_token3] = ACTIONS(4287), + [aux_sym__val_number_decimal_token4] = ACTIONS(4289), + [aux_sym__val_number_token1] = ACTIONS(4291), + [aux_sym__val_number_token2] = ACTIONS(4291), + [aux_sym__val_number_token3] = ACTIONS(4291), + [aux_sym__val_number_token4] = ACTIONS(4293), + [aux_sym__val_number_token5] = ACTIONS(4293), + [aux_sym__val_number_token6] = ACTIONS(4293), + [anon_sym_0b] = ACTIONS(2266), + [anon_sym_0o] = ACTIONS(2268), + [anon_sym_0x] = ACTIONS(2268), + [sym_val_date] = ACTIONS(4295), + [anon_sym_DQUOTE] = ACTIONS(4297), + [sym__str_single_quotes] = ACTIONS(4299), + [sym__str_back_ticks] = ACTIONS(4299), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4301), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4303), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(2284), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2286), }, [1302] = { - [sym__val_range] = STATE(7670), - [sym__value] = STATE(3020), - [sym_val_nothing] = STATE(2953), - [sym_val_bool] = STATE(2905), - [sym_val_variable] = STATE(2953), - [sym_val_number] = STATE(2953), - [sym__val_number_decimal] = STATE(2574), - [sym__val_number] = STATE(2954), - [sym_val_duration] = STATE(2953), - [sym_val_filesize] = STATE(2953), - [sym_val_binary] = STATE(2953), - [sym_val_string] = STATE(2953), - [sym__raw_str] = STATE(3036), - [sym__str_double_quotes] = STATE(3036), - [sym_val_interpolated] = STATE(2953), - [sym__inter_single_quotes] = STATE(3024), - [sym__inter_double_quotes] = STATE(3025), - [sym_val_list] = STATE(2953), - [sym_val_record] = STATE(2953), - [sym_val_table] = STATE(2953), - [sym_val_closure] = STATE(2953), - [sym_unquoted] = STATE(3021), - [sym__unquoted_anonymous_prefix] = STATE(7472), [sym_comment] = STATE(1302), - [anon_sym_LBRACK] = ACTIONS(4213), - [anon_sym_LPAREN] = ACTIONS(4215), - [anon_sym_DOLLAR] = ACTIONS(4217), - [anon_sym_LBRACE] = ACTIONS(4219), - [anon_sym_DOT_DOT] = ACTIONS(4221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4223), - [anon_sym_DOT_DOT_LT] = ACTIONS(4223), - [anon_sym_null] = ACTIONS(4225), - [anon_sym_true] = ACTIONS(4227), - [anon_sym_false] = ACTIONS(4227), - [aux_sym__val_number_decimal_token1] = ACTIONS(4229), - [aux_sym__val_number_decimal_token2] = ACTIONS(4231), - [aux_sym__val_number_decimal_token3] = ACTIONS(4233), - [aux_sym__val_number_decimal_token4] = ACTIONS(4235), - [aux_sym__val_number_token1] = ACTIONS(4237), - [aux_sym__val_number_token2] = ACTIONS(4237), - [aux_sym__val_number_token3] = ACTIONS(4237), - [aux_sym__val_number_token4] = ACTIONS(4239), - [aux_sym__val_number_token5] = ACTIONS(4239), - [aux_sym__val_number_token6] = ACTIONS(4239), - [anon_sym_0b] = ACTIONS(4241), - [anon_sym_0o] = ACTIONS(4243), - [anon_sym_0x] = ACTIONS(4243), - [sym_val_date] = ACTIONS(4245), - [anon_sym_DQUOTE] = ACTIONS(4247), - [sym__str_single_quotes] = ACTIONS(4249), - [sym__str_back_ticks] = ACTIONS(4249), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4253), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(4255), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4257), + [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_DASH2] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(1506), + [anon_sym_RBRACE] = ACTIONS(1506), + [anon_sym_DOT_DOT] = ACTIONS(1504), + [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__immediate_decimal_token1] = ACTIONS(4305), + [aux_sym__immediate_decimal_token2] = ACTIONS(4307), + [anon_sym_null] = ACTIONS(1506), + [anon_sym_true] = ACTIONS(1506), + [anon_sym_false] = ACTIONS(1506), + [aux_sym__val_number_decimal_token1] = ACTIONS(1504), + [aux_sym__val_number_decimal_token2] = ACTIONS(1506), + [aux_sym__val_number_decimal_token3] = ACTIONS(1506), + [aux_sym__val_number_decimal_token4] = ACTIONS(1506), + [aux_sym__val_number_token1] = ACTIONS(1506), + [aux_sym__val_number_token2] = ACTIONS(1506), + [aux_sym__val_number_token3] = ACTIONS(1506), + [aux_sym__val_number_token4] = ACTIONS(1506), + [aux_sym__val_number_token5] = ACTIONS(1506), + [aux_sym__val_number_token6] = 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_token2] = ACTIONS(1504), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1506), }, [1303] = { - [sym__val_range] = STATE(7490), - [sym__value] = STATE(1871), - [sym_val_nothing] = STATE(1903), - [sym_val_bool] = STATE(1794), - [sym_val_variable] = STATE(1903), - [sym_val_number] = STATE(1903), - [sym__val_number_decimal] = STATE(1375), - [sym__val_number] = STATE(1904), - [sym_val_duration] = STATE(1903), - [sym_val_filesize] = STATE(1903), - [sym_val_binary] = STATE(1903), - [sym_val_string] = STATE(1903), - [sym__raw_str] = STATE(1876), - [sym__str_double_quotes] = STATE(1876), - [sym_val_interpolated] = STATE(1903), - [sym__inter_single_quotes] = STATE(1874), - [sym__inter_double_quotes] = STATE(1875), - [sym_val_list] = STATE(1903), - [sym_val_record] = STATE(1903), - [sym_val_table] = STATE(1903), - [sym_val_closure] = STATE(1903), - [sym_unquoted] = STATE(1872), - [sym__unquoted_anonymous_prefix] = STATE(7715), + [sym__val_range] = STATE(7818), + [sym__value] = STATE(4874), + [sym_val_nothing] = STATE(4824), + [sym_val_bool] = STATE(4513), + [sym_val_variable] = STATE(4824), + [sym_val_number] = STATE(4824), + [sym__val_number_decimal] = STATE(4050), + [sym__val_number] = STATE(4829), + [sym_val_duration] = STATE(4824), + [sym_val_filesize] = STATE(4824), + [sym_val_binary] = STATE(4824), + [sym_val_string] = STATE(4824), + [sym__raw_str] = STATE(4153), + [sym__str_double_quotes] = STATE(4153), + [sym_val_interpolated] = STATE(4824), + [sym__inter_single_quotes] = STATE(4830), + [sym__inter_double_quotes] = STATE(4848), + [sym_val_list] = STATE(4824), + [sym_val_record] = STATE(4824), + [sym_val_table] = STATE(4824), + [sym_val_closure] = STATE(4824), + [sym_unquoted] = STATE(4895), + [sym__unquoted_anonymous_prefix] = STATE(7773), [sym_comment] = STATE(1303), - [anon_sym_LBRACK] = ACTIONS(2873), - [anon_sym_LPAREN] = ACTIONS(4149), - [anon_sym_DOLLAR] = ACTIONS(4120), - [anon_sym_LBRACE] = ACTIONS(2883), - [anon_sym_DOT_DOT] = ACTIONS(4151), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4153), - [anon_sym_DOT_DOT_LT] = ACTIONS(4153), - [anon_sym_null] = ACTIONS(4155), - [anon_sym_true] = ACTIONS(4157), - [anon_sym_false] = ACTIONS(4157), - [aux_sym__val_number_decimal_token1] = ACTIONS(4159), - [aux_sym__val_number_decimal_token2] = ACTIONS(4161), - [aux_sym__val_number_decimal_token3] = ACTIONS(4163), - [aux_sym__val_number_decimal_token4] = ACTIONS(4165), - [aux_sym__val_number_token1] = ACTIONS(2901), - [aux_sym__val_number_token2] = ACTIONS(2901), - [aux_sym__val_number_token3] = ACTIONS(2901), - [aux_sym__val_number_token4] = ACTIONS(4167), - [aux_sym__val_number_token5] = ACTIONS(4167), - [aux_sym__val_number_token6] = ACTIONS(4167), - [anon_sym_0b] = ACTIONS(2905), - [anon_sym_0o] = ACTIONS(2907), - [anon_sym_0x] = ACTIONS(2907), - [sym_val_date] = ACTIONS(4169), - [anon_sym_DQUOTE] = ACTIONS(2911), - [sym__str_single_quotes] = ACTIONS(2913), - [sym__str_back_ticks] = ACTIONS(2913), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2915), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2917), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(4171), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2921), + [anon_sym_LBRACK] = ACTIONS(4271), + [anon_sym_LPAREN] = ACTIONS(4273), + [anon_sym_DOLLAR] = ACTIONS(2236), + [anon_sym_LBRACE] = ACTIONS(4275), + [anon_sym_DOT_DOT] = ACTIONS(4277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4279), + [anon_sym_DOT_DOT_LT] = ACTIONS(4279), + [anon_sym_null] = ACTIONS(4281), + [anon_sym_true] = ACTIONS(4283), + [anon_sym_false] = ACTIONS(4283), + [aux_sym__val_number_decimal_token1] = ACTIONS(2256), + [aux_sym__val_number_decimal_token2] = ACTIONS(4285), + [aux_sym__val_number_decimal_token3] = ACTIONS(4287), + [aux_sym__val_number_decimal_token4] = ACTIONS(4289), + [aux_sym__val_number_token1] = ACTIONS(4291), + [aux_sym__val_number_token2] = ACTIONS(4291), + [aux_sym__val_number_token3] = ACTIONS(4291), + [aux_sym__val_number_token4] = ACTIONS(4293), + [aux_sym__val_number_token5] = ACTIONS(4293), + [aux_sym__val_number_token6] = ACTIONS(4293), + [anon_sym_0b] = ACTIONS(2266), + [anon_sym_0o] = ACTIONS(2268), + [anon_sym_0x] = ACTIONS(2268), + [sym_val_date] = ACTIONS(4295), + [anon_sym_DQUOTE] = ACTIONS(4297), + [sym__str_single_quotes] = ACTIONS(4299), + [sym__str_back_ticks] = ACTIONS(4299), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4301), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4303), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(2284), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2286), }, [1304] = { + [sym__val_range] = STATE(7769), + [sym__value] = STATE(4562), + [sym_val_nothing] = STATE(4602), + [sym_val_bool] = STATE(7078), + [sym_val_variable] = STATE(4602), + [sym_val_number] = STATE(4602), + [sym__val_number_decimal] = STATE(5481), + [sym__val_number] = STATE(4604), + [sym_val_duration] = STATE(4602), + [sym_val_filesize] = STATE(4602), + [sym_val_binary] = STATE(4602), + [sym_val_string] = STATE(4602), + [sym__raw_str] = STATE(4059), + [sym__str_double_quotes] = STATE(4059), + [sym_val_interpolated] = STATE(4602), + [sym__inter_single_quotes] = STATE(4555), + [sym__inter_double_quotes] = STATE(4607), + [sym_val_list] = STATE(4602), + [sym_val_record] = STATE(4602), + [sym_val_table] = STATE(4602), + [sym_val_closure] = STATE(4602), + [sym_unquoted] = STATE(4650), + [sym__unquoted_anonymous_prefix] = STATE(7617), [sym_comment] = STATE(1304), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1713), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_RPAREN] = ACTIONS(1713), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_DOT_DOT] = ACTIONS(1711), - [anon_sym_LPAREN2] = ACTIONS(1713), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1711), - [anon_sym_DOT_DOT_LT] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [aux_sym__immediate_decimal_token1] = ACTIONS(4453), - [aux_sym__immediate_decimal_token2] = ACTIONS(4455), - [anon_sym_null] = ACTIONS(1713), - [anon_sym_true] = ACTIONS(1713), - [anon_sym_false] = ACTIONS(1713), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1713), - [aux_sym__val_number_decimal_token3] = ACTIONS(1713), - [aux_sym__val_number_decimal_token4] = ACTIONS(1713), - [aux_sym__val_number_token1] = ACTIONS(1713), - [aux_sym__val_number_token2] = ACTIONS(1713), - [aux_sym__val_number_token3] = ACTIONS(1713), - [aux_sym__val_number_token4] = ACTIONS(1713), - [aux_sym__val_number_token5] = ACTIONS(1713), - [aux_sym__val_number_token6] = ACTIONS(1713), - [anon_sym_0b] = ACTIONS(1711), - [anon_sym_0o] = ACTIONS(1711), - [anon_sym_0x] = ACTIONS(1711), - [sym_val_date] = ACTIONS(1713), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym__str_single_quotes] = ACTIONS(1713), - [sym__str_back_ticks] = ACTIONS(1713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1713), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [aux_sym_unquoted_token1] = ACTIONS(1711), - [aux_sym_unquoted_token2] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4311), + [anon_sym_DOLLAR] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(4313), + [anon_sym_DOT_DOT] = ACTIONS(4315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4317), + [anon_sym_DOT_DOT_LT] = ACTIONS(4317), + [anon_sym_null] = ACTIONS(4319), + [anon_sym_true] = ACTIONS(4321), + [anon_sym_false] = ACTIONS(4321), + [aux_sym__val_number_decimal_token1] = ACTIONS(4323), + [aux_sym__val_number_decimal_token2] = ACTIONS(4325), + [aux_sym__val_number_decimal_token3] = ACTIONS(4327), + [aux_sym__val_number_decimal_token4] = ACTIONS(4329), + [aux_sym__val_number_token1] = ACTIONS(4331), + [aux_sym__val_number_token2] = ACTIONS(4331), + [aux_sym__val_number_token3] = ACTIONS(4331), + [aux_sym__val_number_token4] = ACTIONS(4333), + [aux_sym__val_number_token5] = ACTIONS(4333), + [aux_sym__val_number_token6] = ACTIONS(4333), + [anon_sym_0b] = ACTIONS(2138), + [anon_sym_0o] = ACTIONS(2140), + [anon_sym_0x] = ACTIONS(2140), + [sym_val_date] = ACTIONS(4335), + [anon_sym_DQUOTE] = ACTIONS(4337), + [sym__str_single_quotes] = ACTIONS(4339), + [sym__str_back_ticks] = ACTIONS(4339), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4341), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4343), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(2158), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2160), }, [1305] = { - [sym_cell_path] = STATE(1519), - [sym_path] = STATE(1468), + [sym__val_range] = STATE(7818), + [sym__value] = STATE(4863), + [sym_val_nothing] = STATE(4824), + [sym_val_bool] = STATE(4513), + [sym_val_variable] = STATE(4824), + [sym_val_number] = STATE(4824), + [sym__val_number_decimal] = STATE(4050), + [sym__val_number] = STATE(4829), + [sym_val_duration] = STATE(4824), + [sym_val_filesize] = STATE(4824), + [sym_val_binary] = STATE(4824), + [sym_val_string] = STATE(4824), + [sym__raw_str] = STATE(4153), + [sym__str_double_quotes] = STATE(4153), + [sym_val_interpolated] = STATE(4824), + [sym__inter_single_quotes] = STATE(4830), + [sym__inter_double_quotes] = STATE(4848), + [sym_val_list] = STATE(4824), + [sym_val_record] = STATE(4824), + [sym_val_table] = STATE(4824), + [sym_val_closure] = STATE(4824), + [sym_unquoted] = STATE(4881), + [sym__unquoted_anonymous_prefix] = STATE(7773), [sym_comment] = STATE(1305), - [aux_sym_cell_path_repeat1] = STATE(1367), - [sym__newline] = ACTIONS(1721), - [anon_sym_SEMI] = ACTIONS(1721), - [anon_sym_PIPE] = ACTIONS(1721), - [anon_sym_err_GT_PIPE] = ACTIONS(1721), - [anon_sym_out_GT_PIPE] = ACTIONS(1721), - [anon_sym_e_GT_PIPE] = ACTIONS(1721), - [anon_sym_o_GT_PIPE] = ACTIONS(1721), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1721), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1721), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1721), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1721), - [anon_sym_LBRACK] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_RPAREN] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1719), - [anon_sym_DASH_DASH] = ACTIONS(1721), - [anon_sym_DASH2] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1721), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1719), - [anon_sym_DOT_DOT2] = ACTIONS(1719), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1719), - [anon_sym_DOT_DOT_LT] = ACTIONS(1719), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1721), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1721), - [anon_sym_null] = ACTIONS(1721), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [aux_sym__val_number_decimal_token1] = ACTIONS(1719), - [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), - [aux_sym__val_number_token4] = ACTIONS(1721), - [aux_sym__val_number_token5] = ACTIONS(1721), - [aux_sym__val_number_token6] = ACTIONS(1721), - [anon_sym_0b] = ACTIONS(1719), - [anon_sym_0o] = ACTIONS(1719), - [anon_sym_0x] = ACTIONS(1719), - [sym_val_date] = ACTIONS(1721), - [anon_sym_DQUOTE] = ACTIONS(1721), - [sym__str_single_quotes] = ACTIONS(1721), - [sym__str_back_ticks] = ACTIONS(1721), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1721), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1721), - [anon_sym_DOT2] = ACTIONS(4457), - [anon_sym_err_GT] = ACTIONS(1719), - [anon_sym_out_GT] = ACTIONS(1719), - [anon_sym_e_GT] = ACTIONS(1719), - [anon_sym_o_GT] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT] = ACTIONS(1719), - [anon_sym_err_GT_GT] = ACTIONS(1721), - [anon_sym_out_GT_GT] = ACTIONS(1721), - [anon_sym_e_GT_GT] = ACTIONS(1721), - [anon_sym_o_GT_GT] = ACTIONS(1721), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1721), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1721), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1721), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1721), - [aux_sym_unquoted_token1] = ACTIONS(1719), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1721), + [anon_sym_LBRACK] = ACTIONS(4271), + [anon_sym_LPAREN] = ACTIONS(4273), + [anon_sym_DOLLAR] = ACTIONS(2236), + [anon_sym_LBRACE] = ACTIONS(4275), + [anon_sym_DOT_DOT] = ACTIONS(4277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4279), + [anon_sym_DOT_DOT_LT] = ACTIONS(4279), + [anon_sym_null] = ACTIONS(4281), + [anon_sym_true] = ACTIONS(4283), + [anon_sym_false] = ACTIONS(4283), + [aux_sym__val_number_decimal_token1] = ACTIONS(2256), + [aux_sym__val_number_decimal_token2] = ACTIONS(4285), + [aux_sym__val_number_decimal_token3] = ACTIONS(4287), + [aux_sym__val_number_decimal_token4] = ACTIONS(4289), + [aux_sym__val_number_token1] = ACTIONS(4291), + [aux_sym__val_number_token2] = ACTIONS(4291), + [aux_sym__val_number_token3] = ACTIONS(4291), + [aux_sym__val_number_token4] = ACTIONS(4293), + [aux_sym__val_number_token5] = ACTIONS(4293), + [aux_sym__val_number_token6] = ACTIONS(4293), + [anon_sym_0b] = ACTIONS(2266), + [anon_sym_0o] = ACTIONS(2268), + [anon_sym_0x] = ACTIONS(2268), + [sym_val_date] = ACTIONS(4295), + [anon_sym_DQUOTE] = ACTIONS(4297), + [sym__str_single_quotes] = ACTIONS(4299), + [sym__str_back_ticks] = ACTIONS(4299), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4301), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4303), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(2284), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2286), }, [1306] = { + [sym__val_range] = STATE(7769), + [sym__value] = STATE(4645), + [sym_val_nothing] = STATE(4602), + [sym_val_bool] = STATE(7078), + [sym_val_variable] = STATE(4602), + [sym_val_number] = STATE(4602), + [sym__val_number_decimal] = STATE(5481), + [sym__val_number] = STATE(4604), + [sym_val_duration] = STATE(4602), + [sym_val_filesize] = STATE(4602), + [sym_val_binary] = STATE(4602), + [sym_val_string] = STATE(4602), + [sym__raw_str] = STATE(4059), + [sym__str_double_quotes] = STATE(4059), + [sym_val_interpolated] = STATE(4602), + [sym__inter_single_quotes] = STATE(4555), + [sym__inter_double_quotes] = STATE(4607), + [sym_val_list] = STATE(4602), + [sym_val_record] = STATE(4602), + [sym_val_table] = STATE(4602), + [sym_val_closure] = STATE(4602), + [sym_unquoted] = STATE(4649), + [sym__unquoted_anonymous_prefix] = STATE(7617), [sym_comment] = STATE(1306), - [sym__newline] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1552), - [anon_sym_PIPE] = ACTIONS(1552), - [anon_sym_err_GT_PIPE] = ACTIONS(1552), - [anon_sym_out_GT_PIPE] = ACTIONS(1552), - [anon_sym_e_GT_PIPE] = ACTIONS(1552), - [anon_sym_o_GT_PIPE] = ACTIONS(1552), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1552), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1552), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1552), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1552), - [anon_sym_LBRACK] = ACTIONS(1552), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_RPAREN] = ACTIONS(1552), - [anon_sym_DOLLAR] = ACTIONS(1550), - [anon_sym_DASH_DASH] = ACTIONS(1552), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_LBRACE] = ACTIONS(1552), - [anon_sym_RBRACE] = ACTIONS(1552), - [anon_sym_DOT_DOT] = ACTIONS(1550), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1550), - [anon_sym_DOT_DOT_LT] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [aux_sym__immediate_decimal_token2] = ACTIONS(4179), - [anon_sym_null] = ACTIONS(1552), - [anon_sym_true] = ACTIONS(1552), - [anon_sym_false] = ACTIONS(1552), - [aux_sym__val_number_decimal_token1] = ACTIONS(1550), - [aux_sym__val_number_decimal_token2] = ACTIONS(1552), - [aux_sym__val_number_decimal_token3] = ACTIONS(1552), - [aux_sym__val_number_decimal_token4] = ACTIONS(1552), - [aux_sym__val_number_token1] = ACTIONS(1552), - [aux_sym__val_number_token2] = ACTIONS(1552), - [aux_sym__val_number_token3] = ACTIONS(1552), - [aux_sym__val_number_token4] = ACTIONS(1552), - [aux_sym__val_number_token5] = ACTIONS(1552), - [aux_sym__val_number_token6] = ACTIONS(1552), - [anon_sym_0b] = ACTIONS(1550), - [sym_filesize_unit] = ACTIONS(1552), - [sym_duration_unit] = ACTIONS(1552), - [anon_sym_0o] = ACTIONS(1550), - [anon_sym_0x] = ACTIONS(1550), - [sym_val_date] = ACTIONS(1552), - [anon_sym_DQUOTE] = ACTIONS(1552), - [sym__str_single_quotes] = ACTIONS(1552), - [sym__str_back_ticks] = ACTIONS(1552), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1552), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1552), - [anon_sym_err_GT] = ACTIONS(1550), - [anon_sym_out_GT] = ACTIONS(1550), - [anon_sym_e_GT] = ACTIONS(1550), - [anon_sym_o_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT] = ACTIONS(1550), - [anon_sym_err_GT_GT] = ACTIONS(1552), - [anon_sym_out_GT_GT] = ACTIONS(1552), - [anon_sym_e_GT_GT] = ACTIONS(1552), - [anon_sym_o_GT_GT] = ACTIONS(1552), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1552), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1552), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1552), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1552), - [aux_sym_unquoted_token1] = ACTIONS(1550), - [aux_sym_unquoted_token2] = ACTIONS(1550), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1552), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4311), + [anon_sym_DOLLAR] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(4313), + [anon_sym_DOT_DOT] = ACTIONS(4315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4317), + [anon_sym_DOT_DOT_LT] = ACTIONS(4317), + [anon_sym_null] = ACTIONS(4319), + [anon_sym_true] = ACTIONS(4321), + [anon_sym_false] = ACTIONS(4321), + [aux_sym__val_number_decimal_token1] = ACTIONS(4323), + [aux_sym__val_number_decimal_token2] = ACTIONS(4325), + [aux_sym__val_number_decimal_token3] = ACTIONS(4327), + [aux_sym__val_number_decimal_token4] = ACTIONS(4329), + [aux_sym__val_number_token1] = ACTIONS(4331), + [aux_sym__val_number_token2] = ACTIONS(4331), + [aux_sym__val_number_token3] = ACTIONS(4331), + [aux_sym__val_number_token4] = ACTIONS(4333), + [aux_sym__val_number_token5] = ACTIONS(4333), + [aux_sym__val_number_token6] = ACTIONS(4333), + [anon_sym_0b] = ACTIONS(2138), + [anon_sym_0o] = ACTIONS(2140), + [anon_sym_0x] = ACTIONS(2140), + [sym_val_date] = ACTIONS(4335), + [anon_sym_DQUOTE] = ACTIONS(4337), + [sym__str_single_quotes] = ACTIONS(4339), + [sym__str_back_ticks] = ACTIONS(4339), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4341), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4343), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(2158), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2160), }, [1307] = { + [sym__val_range] = STATE(7769), + [sym__value] = STATE(4569), + [sym_val_nothing] = STATE(4602), + [sym_val_bool] = STATE(7078), + [sym_val_variable] = STATE(4602), + [sym_val_number] = STATE(4602), + [sym__val_number_decimal] = STATE(5481), + [sym__val_number] = STATE(4604), + [sym_val_duration] = STATE(4602), + [sym_val_filesize] = STATE(4602), + [sym_val_binary] = STATE(4602), + [sym_val_string] = STATE(4602), + [sym__raw_str] = STATE(4059), + [sym__str_double_quotes] = STATE(4059), + [sym_val_interpolated] = STATE(4602), + [sym__inter_single_quotes] = STATE(4555), + [sym__inter_double_quotes] = STATE(4607), + [sym_val_list] = STATE(4602), + [sym_val_record] = STATE(4602), + [sym_val_table] = STATE(4602), + [sym_val_closure] = STATE(4602), + [sym_unquoted] = STATE(4573), + [sym__unquoted_anonymous_prefix] = STATE(7617), [sym_comment] = STATE(1307), - [sym__newline] = ACTIONS(1682), - [anon_sym_SEMI] = ACTIONS(1682), - [anon_sym_PIPE] = ACTIONS(1682), - [anon_sym_err_GT_PIPE] = ACTIONS(1682), - [anon_sym_out_GT_PIPE] = ACTIONS(1682), - [anon_sym_e_GT_PIPE] = ACTIONS(1682), - [anon_sym_o_GT_PIPE] = ACTIONS(1682), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1682), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1682), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1682), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1682), - [anon_sym_LBRACK] = ACTIONS(1682), - [anon_sym_LPAREN] = ACTIONS(1682), - [anon_sym_RPAREN] = ACTIONS(1682), - [anon_sym_DOLLAR] = ACTIONS(1680), - [anon_sym_DASH_DASH] = ACTIONS(1682), - [anon_sym_DASH2] = ACTIONS(1680), - [anon_sym_LBRACE] = ACTIONS(1682), - [anon_sym_RBRACE] = ACTIONS(1682), - [anon_sym_DOT_DOT] = ACTIONS(1680), - [anon_sym_DOT_DOT2] = ACTIONS(1680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1680), - [anon_sym_DOT_DOT_LT] = ACTIONS(1680), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1682), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1682), - [aux_sym__immediate_decimal_token2] = ACTIONS(4459), - [anon_sym_null] = ACTIONS(1682), - [anon_sym_true] = ACTIONS(1682), - [anon_sym_false] = ACTIONS(1682), - [aux_sym__val_number_decimal_token1] = ACTIONS(1680), - [aux_sym__val_number_decimal_token2] = ACTIONS(1682), - [aux_sym__val_number_decimal_token3] = ACTIONS(1682), - [aux_sym__val_number_decimal_token4] = ACTIONS(1682), - [aux_sym__val_number_token1] = ACTIONS(1682), - [aux_sym__val_number_token2] = ACTIONS(1682), - [aux_sym__val_number_token3] = ACTIONS(1682), - [aux_sym__val_number_token4] = ACTIONS(1682), - [aux_sym__val_number_token5] = ACTIONS(1682), - [aux_sym__val_number_token6] = ACTIONS(1682), - [anon_sym_0b] = ACTIONS(1680), - [sym_filesize_unit] = ACTIONS(1682), - [sym_duration_unit] = ACTIONS(1682), - [anon_sym_0o] = ACTIONS(1680), - [anon_sym_0x] = ACTIONS(1680), - [sym_val_date] = ACTIONS(1682), - [anon_sym_DQUOTE] = ACTIONS(1682), - [sym__str_single_quotes] = ACTIONS(1682), - [sym__str_back_ticks] = ACTIONS(1682), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1682), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1682), - [anon_sym_err_GT] = ACTIONS(1680), - [anon_sym_out_GT] = ACTIONS(1680), - [anon_sym_e_GT] = ACTIONS(1680), - [anon_sym_o_GT] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT] = ACTIONS(1680), - [anon_sym_err_GT_GT] = ACTIONS(1682), - [anon_sym_out_GT_GT] = ACTIONS(1682), - [anon_sym_e_GT_GT] = ACTIONS(1682), - [anon_sym_o_GT_GT] = ACTIONS(1682), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1682), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1682), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1682), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1682), - [aux_sym_unquoted_token1] = ACTIONS(1680), - [aux_sym_unquoted_token2] = ACTIONS(1680), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1682), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4311), + [anon_sym_DOLLAR] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(4313), + [anon_sym_DOT_DOT] = ACTIONS(4315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4317), + [anon_sym_DOT_DOT_LT] = ACTIONS(4317), + [anon_sym_null] = ACTIONS(4319), + [anon_sym_true] = ACTIONS(4321), + [anon_sym_false] = ACTIONS(4321), + [aux_sym__val_number_decimal_token1] = ACTIONS(4323), + [aux_sym__val_number_decimal_token2] = ACTIONS(4325), + [aux_sym__val_number_decimal_token3] = ACTIONS(4327), + [aux_sym__val_number_decimal_token4] = ACTIONS(4329), + [aux_sym__val_number_token1] = ACTIONS(4331), + [aux_sym__val_number_token2] = ACTIONS(4331), + [aux_sym__val_number_token3] = ACTIONS(4331), + [aux_sym__val_number_token4] = ACTIONS(4333), + [aux_sym__val_number_token5] = ACTIONS(4333), + [aux_sym__val_number_token6] = ACTIONS(4333), + [anon_sym_0b] = ACTIONS(2138), + [anon_sym_0o] = ACTIONS(2140), + [anon_sym_0x] = ACTIONS(2140), + [sym_val_date] = ACTIONS(4335), + [anon_sym_DQUOTE] = ACTIONS(4337), + [sym__str_single_quotes] = ACTIONS(4339), + [sym__str_back_ticks] = ACTIONS(4339), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4341), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4343), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(2158), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2160), }, [1308] = { + [sym__val_range] = STATE(7769), + [sym__value] = STATE(4562), + [sym_val_nothing] = STATE(4602), + [sym_val_bool] = STATE(4397), + [sym_val_variable] = STATE(4602), + [sym_val_number] = STATE(4602), + [sym__val_number_decimal] = STATE(4022), + [sym__val_number] = STATE(4604), + [sym_val_duration] = STATE(4602), + [sym_val_filesize] = STATE(4602), + [sym_val_binary] = STATE(4602), + [sym_val_string] = STATE(4602), + [sym__raw_str] = STATE(4059), + [sym__str_double_quotes] = STATE(4059), + [sym_val_interpolated] = STATE(4602), + [sym__inter_single_quotes] = STATE(4555), + [sym__inter_double_quotes] = STATE(4607), + [sym_val_list] = STATE(4602), + [sym_val_record] = STATE(4602), + [sym_val_table] = STATE(4602), + [sym_val_closure] = STATE(4602), + [sym_unquoted] = STATE(4650), + [sym__unquoted_anonymous_prefix] = STATE(7617), [sym_comment] = STATE(1308), - [ts_builtin_sym_end] = ACTIONS(1544), - [sym__newline] = ACTIONS(1544), - [anon_sym_SEMI] = ACTIONS(1544), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_err_GT_PIPE] = ACTIONS(1544), - [anon_sym_out_GT_PIPE] = ACTIONS(1544), - [anon_sym_e_GT_PIPE] = ACTIONS(1544), - [anon_sym_o_GT_PIPE] = ACTIONS(1544), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1544), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1544), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1544), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1544), - [anon_sym_LPAREN] = ACTIONS(1544), - [anon_sym_DOLLAR] = ACTIONS(1542), - [anon_sym_DASH_DASH] = ACTIONS(1544), - [anon_sym_DASH2] = ACTIONS(1542), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_DOT_DOT] = ACTIONS(1542), - [anon_sym_DOT_DOT2] = ACTIONS(1542), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1542), - [anon_sym_DOT_DOT_LT] = ACTIONS(1542), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1544), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1544), - [aux_sym__immediate_decimal_token1] = ACTIONS(4461), - [aux_sym__immediate_decimal_token2] = ACTIONS(4463), - [anon_sym_null] = ACTIONS(1544), - [anon_sym_true] = ACTIONS(1544), - [anon_sym_false] = ACTIONS(1544), - [aux_sym__val_number_decimal_token1] = ACTIONS(1542), - [aux_sym__val_number_decimal_token2] = ACTIONS(1544), - [aux_sym__val_number_decimal_token3] = ACTIONS(1544), - [aux_sym__val_number_decimal_token4] = ACTIONS(1544), - [aux_sym__val_number_token1] = ACTIONS(1544), - [aux_sym__val_number_token2] = ACTIONS(1544), - [aux_sym__val_number_token3] = ACTIONS(1544), - [aux_sym__val_number_token4] = ACTIONS(1544), - [aux_sym__val_number_token5] = ACTIONS(1544), - [aux_sym__val_number_token6] = ACTIONS(1544), - [anon_sym_0b] = ACTIONS(1542), - [sym_filesize_unit] = ACTIONS(1544), - [sym_duration_unit] = ACTIONS(1544), - [anon_sym_0o] = ACTIONS(1542), - [anon_sym_0x] = ACTIONS(1542), - [sym_val_date] = ACTIONS(1544), - [anon_sym_DQUOTE] = ACTIONS(1544), - [sym__str_single_quotes] = ACTIONS(1544), - [sym__str_back_ticks] = ACTIONS(1544), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1544), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1544), - [anon_sym_err_GT] = ACTIONS(1542), - [anon_sym_out_GT] = ACTIONS(1542), - [anon_sym_e_GT] = ACTIONS(1542), - [anon_sym_o_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT] = ACTIONS(1542), - [anon_sym_err_GT_GT] = ACTIONS(1544), - [anon_sym_out_GT_GT] = ACTIONS(1544), - [anon_sym_e_GT_GT] = ACTIONS(1544), - [anon_sym_o_GT_GT] = ACTIONS(1544), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1544), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1544), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1544), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1544), - [aux_sym_unquoted_token1] = ACTIONS(1542), - [aux_sym_unquoted_token2] = ACTIONS(1542), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4311), + [anon_sym_DOLLAR] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(4313), + [anon_sym_DOT_DOT] = ACTIONS(4315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4317), + [anon_sym_DOT_DOT_LT] = ACTIONS(4317), + [anon_sym_null] = ACTIONS(4345), + [anon_sym_true] = ACTIONS(4347), + [anon_sym_false] = ACTIONS(4347), + [aux_sym__val_number_decimal_token1] = ACTIONS(2128), + [aux_sym__val_number_decimal_token2] = ACTIONS(4349), + [aux_sym__val_number_decimal_token3] = ACTIONS(4351), + [aux_sym__val_number_decimal_token4] = ACTIONS(4353), + [aux_sym__val_number_token1] = ACTIONS(4331), + [aux_sym__val_number_token2] = ACTIONS(4331), + [aux_sym__val_number_token3] = ACTIONS(4331), + [aux_sym__val_number_token4] = ACTIONS(4355), + [aux_sym__val_number_token5] = ACTIONS(4355), + [aux_sym__val_number_token6] = ACTIONS(4355), + [anon_sym_0b] = ACTIONS(2138), + [anon_sym_0o] = ACTIONS(2140), + [anon_sym_0x] = ACTIONS(2140), + [sym_val_date] = ACTIONS(4357), + [anon_sym_DQUOTE] = ACTIONS(4337), + [sym__str_single_quotes] = ACTIONS(4339), + [sym__str_back_ticks] = ACTIONS(4339), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4341), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4343), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(2158), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2160), }, [1309] = { - [sym_cell_path] = STATE(1441), - [sym_path] = STATE(1454), + [sym__val_range] = STATE(7769), + [sym__value] = STATE(4640), + [sym_val_nothing] = STATE(4602), + [sym_val_bool] = STATE(7078), + [sym_val_variable] = STATE(4602), + [sym_val_number] = STATE(4602), + [sym__val_number_decimal] = STATE(5481), + [sym__val_number] = STATE(4604), + [sym_val_duration] = STATE(4602), + [sym_val_filesize] = STATE(4602), + [sym_val_binary] = STATE(4602), + [sym_val_string] = STATE(4602), + [sym__raw_str] = STATE(4059), + [sym__str_double_quotes] = STATE(4059), + [sym_val_interpolated] = STATE(4602), + [sym__inter_single_quotes] = STATE(4555), + [sym__inter_double_quotes] = STATE(4607), + [sym_val_list] = STATE(4602), + [sym_val_record] = STATE(4602), + [sym_val_table] = STATE(4602), + [sym_val_closure] = STATE(4602), + [sym_unquoted] = STATE(4642), + [sym__unquoted_anonymous_prefix] = STATE(7617), [sym_comment] = STATE(1309), - [aux_sym_cell_path_repeat1] = STATE(1345), - [ts_builtin_sym_end] = ACTIONS(945), - [anon_sym_EQ] = ACTIONS(943), - [anon_sym_PLUS_EQ] = ACTIONS(945), - [anon_sym_DASH_EQ] = ACTIONS(945), - [anon_sym_STAR_EQ] = ACTIONS(945), - [anon_sym_SLASH_EQ] = ACTIONS(945), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(945), - [sym__newline] = ACTIONS(945), - [anon_sym_SEMI] = ACTIONS(945), - [anon_sym_PIPE] = ACTIONS(945), - [anon_sym_err_GT_PIPE] = ACTIONS(945), - [anon_sym_out_GT_PIPE] = ACTIONS(945), - [anon_sym_e_GT_PIPE] = ACTIONS(945), - [anon_sym_o_GT_PIPE] = ACTIONS(945), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(945), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(945), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(945), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(945), - [anon_sym_GT2] = ACTIONS(943), - [anon_sym_DASH2] = ACTIONS(943), - [anon_sym_in2] = ACTIONS(945), - [anon_sym_STAR2] = ACTIONS(943), - [anon_sym_and2] = ACTIONS(945), - [anon_sym_xor2] = ACTIONS(945), - [anon_sym_or2] = ACTIONS(945), - [anon_sym_not_DASHin2] = ACTIONS(945), - [anon_sym_starts_DASHwith2] = ACTIONS(945), - [anon_sym_ends_DASHwith2] = ACTIONS(945), - [anon_sym_EQ_EQ2] = ACTIONS(945), - [anon_sym_BANG_EQ2] = ACTIONS(945), - [anon_sym_LT2] = ACTIONS(943), - [anon_sym_LT_EQ2] = ACTIONS(945), - [anon_sym_GT_EQ2] = ACTIONS(945), - [anon_sym_EQ_TILDE2] = ACTIONS(945), - [anon_sym_BANG_TILDE2] = ACTIONS(945), - [anon_sym_STAR_STAR2] = ACTIONS(945), - [anon_sym_PLUS_PLUS2] = ACTIONS(943), - [anon_sym_SLASH2] = ACTIONS(943), - [anon_sym_mod2] = ACTIONS(945), - [anon_sym_SLASH_SLASH2] = ACTIONS(945), - [anon_sym_PLUS2] = ACTIONS(943), - [anon_sym_bit_DASHshl2] = ACTIONS(945), - [anon_sym_bit_DASHshr2] = ACTIONS(945), - [anon_sym_bit_DASHand2] = ACTIONS(945), - [anon_sym_bit_DASHxor2] = ACTIONS(945), - [anon_sym_bit_DASHor2] = ACTIONS(945), - [anon_sym_DOT_DOT2] = ACTIONS(943), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(945), - [anon_sym_DOT_DOT_LT2] = ACTIONS(945), - [anon_sym_DOT2] = ACTIONS(4465), - [anon_sym_err_GT] = ACTIONS(943), - [anon_sym_out_GT] = ACTIONS(943), - [anon_sym_e_GT] = ACTIONS(943), - [anon_sym_o_GT] = ACTIONS(943), - [anon_sym_err_PLUSout_GT] = ACTIONS(943), - [anon_sym_out_PLUSerr_GT] = ACTIONS(943), - [anon_sym_o_PLUSe_GT] = ACTIONS(943), - [anon_sym_e_PLUSo_GT] = ACTIONS(943), - [anon_sym_err_GT_GT] = ACTIONS(945), - [anon_sym_out_GT_GT] = ACTIONS(945), - [anon_sym_e_GT_GT] = ACTIONS(945), - [anon_sym_o_GT_GT] = ACTIONS(945), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(945), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(945), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(945), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(945), - [anon_sym_POUND] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4311), + [anon_sym_DOLLAR] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(4313), + [anon_sym_DOT_DOT] = ACTIONS(4315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4317), + [anon_sym_DOT_DOT_LT] = ACTIONS(4317), + [anon_sym_null] = ACTIONS(4319), + [anon_sym_true] = ACTIONS(4321), + [anon_sym_false] = ACTIONS(4321), + [aux_sym__val_number_decimal_token1] = ACTIONS(4323), + [aux_sym__val_number_decimal_token2] = ACTIONS(4325), + [aux_sym__val_number_decimal_token3] = ACTIONS(4327), + [aux_sym__val_number_decimal_token4] = ACTIONS(4329), + [aux_sym__val_number_token1] = ACTIONS(4331), + [aux_sym__val_number_token2] = ACTIONS(4331), + [aux_sym__val_number_token3] = ACTIONS(4331), + [aux_sym__val_number_token4] = ACTIONS(4333), + [aux_sym__val_number_token5] = ACTIONS(4333), + [aux_sym__val_number_token6] = ACTIONS(4333), + [anon_sym_0b] = ACTIONS(2138), + [anon_sym_0o] = ACTIONS(2140), + [anon_sym_0x] = ACTIONS(2140), + [sym_val_date] = ACTIONS(4335), + [anon_sym_DQUOTE] = ACTIONS(4337), + [sym__str_single_quotes] = ACTIONS(4339), + [sym__str_back_ticks] = ACTIONS(4339), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4341), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4343), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(2158), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2160), }, [1310] = { + [sym__val_range] = STATE(7769), + [sym__value] = STATE(4645), + [sym_val_nothing] = STATE(4602), + [sym_val_bool] = STATE(4397), + [sym_val_variable] = STATE(4602), + [sym_val_number] = STATE(4602), + [sym__val_number_decimal] = STATE(4022), + [sym__val_number] = STATE(4604), + [sym_val_duration] = STATE(4602), + [sym_val_filesize] = STATE(4602), + [sym_val_binary] = STATE(4602), + [sym_val_string] = STATE(4602), + [sym__raw_str] = STATE(4059), + [sym__str_double_quotes] = STATE(4059), + [sym_val_interpolated] = STATE(4602), + [sym__inter_single_quotes] = STATE(4555), + [sym__inter_double_quotes] = STATE(4607), + [sym_val_list] = STATE(4602), + [sym_val_record] = STATE(4602), + [sym_val_table] = STATE(4602), + [sym_val_closure] = STATE(4602), + [sym_unquoted] = STATE(4649), + [sym__unquoted_anonymous_prefix] = STATE(7617), [sym_comment] = STATE(1310), - [anon_sym_STAR_STAR] = ACTIONS(3192), - [anon_sym_PLUS_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_mod] = ACTIONS(3192), - [anon_sym_SLASH_SLASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_bit_DASHshl] = ACTIONS(3192), - [anon_sym_bit_DASHshr] = ACTIONS(3192), - [anon_sym_EQ_TILDE] = ACTIONS(3192), - [anon_sym_BANG_TILDE] = ACTIONS(3192), - [anon_sym_bit_DASHand] = ACTIONS(3192), - [anon_sym_bit_DASHxor] = ACTIONS(3192), - [anon_sym_bit_DASHor] = ACTIONS(3192), - [anon_sym_and] = ACTIONS(3192), - [anon_sym_xor] = ACTIONS(3192), - [anon_sym_or] = ACTIONS(3192), - [anon_sym_in] = ACTIONS(3192), - [anon_sym_not_DASHin] = ACTIONS(3192), - [anon_sym_starts_DASHwith] = ACTIONS(3192), - [anon_sym_ends_DASHwith] = ACTIONS(3192), - [anon_sym_EQ_EQ] = ACTIONS(3192), - [anon_sym_BANG_EQ] = ACTIONS(3192), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_LT_EQ] = ACTIONS(3192), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_GT_EQ] = ACTIONS(3192), - [aux_sym_cmd_identifier_token41] = ACTIONS(3196), - [sym__newline] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2136), - [anon_sym_err_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_GT_PIPE] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2136), - [anon_sym_GT2] = ACTIONS(2136), - [anon_sym_DASH2] = ACTIONS(2136), - [anon_sym_in2] = ACTIONS(2136), - [anon_sym_RBRACE] = ACTIONS(2136), - [anon_sym_STAR2] = ACTIONS(2136), - [anon_sym_and2] = ACTIONS(2136), - [anon_sym_xor2] = ACTIONS(2136), - [anon_sym_or2] = ACTIONS(2136), - [anon_sym_not_DASHin2] = ACTIONS(2136), - [anon_sym_starts_DASHwith2] = ACTIONS(2136), - [anon_sym_ends_DASHwith2] = ACTIONS(2136), - [anon_sym_EQ_EQ2] = ACTIONS(2136), - [anon_sym_BANG_EQ2] = ACTIONS(2136), - [anon_sym_LT2] = ACTIONS(2136), - [anon_sym_LT_EQ2] = ACTIONS(2136), - [anon_sym_GT_EQ2] = ACTIONS(2136), - [anon_sym_EQ_TILDE2] = ACTIONS(2136), - [anon_sym_BANG_TILDE2] = ACTIONS(2136), - [anon_sym_STAR_STAR2] = ACTIONS(2136), - [anon_sym_PLUS_PLUS2] = ACTIONS(2136), - [anon_sym_SLASH2] = ACTIONS(2136), - [anon_sym_mod2] = ACTIONS(2136), - [anon_sym_SLASH_SLASH2] = ACTIONS(2136), - [anon_sym_PLUS2] = ACTIONS(2136), - [anon_sym_bit_DASHshl2] = ACTIONS(2136), - [anon_sym_bit_DASHshr2] = ACTIONS(2136), - [anon_sym_bit_DASHand2] = ACTIONS(2136), - [anon_sym_bit_DASHxor2] = ACTIONS(2136), - [anon_sym_bit_DASHor2] = ACTIONS(2136), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4311), + [anon_sym_DOLLAR] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(4313), + [anon_sym_DOT_DOT] = ACTIONS(4315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4317), + [anon_sym_DOT_DOT_LT] = ACTIONS(4317), + [anon_sym_null] = ACTIONS(4345), + [anon_sym_true] = ACTIONS(4347), + [anon_sym_false] = ACTIONS(4347), + [aux_sym__val_number_decimal_token1] = ACTIONS(2128), + [aux_sym__val_number_decimal_token2] = ACTIONS(4349), + [aux_sym__val_number_decimal_token3] = ACTIONS(4351), + [aux_sym__val_number_decimal_token4] = ACTIONS(4353), + [aux_sym__val_number_token1] = ACTIONS(4331), + [aux_sym__val_number_token2] = ACTIONS(4331), + [aux_sym__val_number_token3] = ACTIONS(4331), + [aux_sym__val_number_token4] = ACTIONS(4355), + [aux_sym__val_number_token5] = ACTIONS(4355), + [aux_sym__val_number_token6] = ACTIONS(4355), + [anon_sym_0b] = ACTIONS(2138), + [anon_sym_0o] = ACTIONS(2140), + [anon_sym_0x] = ACTIONS(2140), + [sym_val_date] = ACTIONS(4357), + [anon_sym_DQUOTE] = ACTIONS(4337), + [sym__str_single_quotes] = ACTIONS(4339), + [sym__str_back_ticks] = ACTIONS(4339), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4341), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4343), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(2158), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2160), }, [1311] = { + [sym__val_range] = STATE(7769), + [sym__value] = STATE(4569), + [sym_val_nothing] = STATE(4602), + [sym_val_bool] = STATE(4397), + [sym_val_variable] = STATE(4602), + [sym_val_number] = STATE(4602), + [sym__val_number_decimal] = STATE(4022), + [sym__val_number] = STATE(4604), + [sym_val_duration] = STATE(4602), + [sym_val_filesize] = STATE(4602), + [sym_val_binary] = STATE(4602), + [sym_val_string] = STATE(4602), + [sym__raw_str] = STATE(4059), + [sym__str_double_quotes] = STATE(4059), + [sym_val_interpolated] = STATE(4602), + [sym__inter_single_quotes] = STATE(4555), + [sym__inter_double_quotes] = STATE(4607), + [sym_val_list] = STATE(4602), + [sym_val_record] = STATE(4602), + [sym_val_table] = STATE(4602), + [sym_val_closure] = STATE(4602), + [sym_unquoted] = STATE(4573), + [sym__unquoted_anonymous_prefix] = STATE(7617), [sym_comment] = STATE(1311), - [anon_sym_STAR_STAR] = ACTIONS(3192), - [anon_sym_PLUS_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_mod] = ACTIONS(3192), - [anon_sym_SLASH_SLASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_bit_DASHshl] = ACTIONS(3192), - [anon_sym_bit_DASHshr] = ACTIONS(3192), - [anon_sym_EQ_TILDE] = ACTIONS(3192), - [anon_sym_BANG_TILDE] = ACTIONS(3192), - [anon_sym_bit_DASHand] = ACTIONS(3192), - [anon_sym_bit_DASHxor] = ACTIONS(3192), - [anon_sym_bit_DASHor] = ACTIONS(3192), - [anon_sym_and] = ACTIONS(3192), - [anon_sym_xor] = ACTIONS(3192), - [anon_sym_or] = ACTIONS(3192), - [anon_sym_in] = ACTIONS(3192), - [anon_sym_not_DASHin] = ACTIONS(3192), - [anon_sym_starts_DASHwith] = ACTIONS(3192), - [anon_sym_ends_DASHwith] = ACTIONS(3192), - [anon_sym_EQ_EQ] = ACTIONS(3192), - [anon_sym_BANG_EQ] = ACTIONS(3192), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_LT_EQ] = ACTIONS(3192), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_GT_EQ] = ACTIONS(3192), - [aux_sym_cmd_identifier_token41] = ACTIONS(3196), - [sym__newline] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2144), - [anon_sym_PIPE] = ACTIONS(2144), - [anon_sym_err_GT_PIPE] = ACTIONS(2144), - [anon_sym_out_GT_PIPE] = ACTIONS(2144), - [anon_sym_e_GT_PIPE] = ACTIONS(2144), - [anon_sym_o_GT_PIPE] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2144), - [anon_sym_GT2] = ACTIONS(2144), - [anon_sym_DASH2] = ACTIONS(2144), - [anon_sym_in2] = ACTIONS(2144), - [anon_sym_RBRACE] = ACTIONS(2144), - [anon_sym_STAR2] = ACTIONS(2144), - [anon_sym_and2] = ACTIONS(2144), - [anon_sym_xor2] = ACTIONS(2144), - [anon_sym_or2] = ACTIONS(2144), - [anon_sym_not_DASHin2] = ACTIONS(2144), - [anon_sym_starts_DASHwith2] = ACTIONS(2144), - [anon_sym_ends_DASHwith2] = ACTIONS(2144), - [anon_sym_EQ_EQ2] = ACTIONS(2144), - [anon_sym_BANG_EQ2] = ACTIONS(2144), - [anon_sym_LT2] = ACTIONS(2144), - [anon_sym_LT_EQ2] = ACTIONS(2144), - [anon_sym_GT_EQ2] = ACTIONS(2144), - [anon_sym_EQ_TILDE2] = ACTIONS(2144), - [anon_sym_BANG_TILDE2] = ACTIONS(2144), - [anon_sym_STAR_STAR2] = ACTIONS(2144), - [anon_sym_PLUS_PLUS2] = ACTIONS(2144), - [anon_sym_SLASH2] = ACTIONS(2144), - [anon_sym_mod2] = ACTIONS(2144), - [anon_sym_SLASH_SLASH2] = ACTIONS(2144), - [anon_sym_PLUS2] = ACTIONS(2144), - [anon_sym_bit_DASHshl2] = ACTIONS(2144), - [anon_sym_bit_DASHshr2] = ACTIONS(2144), - [anon_sym_bit_DASHand2] = ACTIONS(2144), - [anon_sym_bit_DASHxor2] = ACTIONS(2144), - [anon_sym_bit_DASHor2] = ACTIONS(2144), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4311), + [anon_sym_DOLLAR] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(4313), + [anon_sym_DOT_DOT] = ACTIONS(4315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4317), + [anon_sym_DOT_DOT_LT] = ACTIONS(4317), + [anon_sym_null] = ACTIONS(4345), + [anon_sym_true] = ACTIONS(4347), + [anon_sym_false] = ACTIONS(4347), + [aux_sym__val_number_decimal_token1] = ACTIONS(2128), + [aux_sym__val_number_decimal_token2] = ACTIONS(4349), + [aux_sym__val_number_decimal_token3] = ACTIONS(4351), + [aux_sym__val_number_decimal_token4] = ACTIONS(4353), + [aux_sym__val_number_token1] = ACTIONS(4331), + [aux_sym__val_number_token2] = ACTIONS(4331), + [aux_sym__val_number_token3] = ACTIONS(4331), + [aux_sym__val_number_token4] = ACTIONS(4355), + [aux_sym__val_number_token5] = ACTIONS(4355), + [aux_sym__val_number_token6] = ACTIONS(4355), + [anon_sym_0b] = ACTIONS(2138), + [anon_sym_0o] = ACTIONS(2140), + [anon_sym_0x] = ACTIONS(2140), + [sym_val_date] = ACTIONS(4357), + [anon_sym_DQUOTE] = ACTIONS(4337), + [sym__str_single_quotes] = ACTIONS(4339), + [sym__str_back_ticks] = ACTIONS(4339), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4341), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4343), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(2158), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2160), }, [1312] = { + [sym__val_range] = STATE(7624), + [sym__value] = STATE(1770), + [sym_val_nothing] = STATE(1832), + [sym_val_bool] = STATE(1701), + [sym_val_variable] = STATE(1832), + [sym_val_number] = STATE(1832), + [sym__val_number_decimal] = STATE(1376), + [sym__val_number] = STATE(1836), + [sym_val_duration] = STATE(1832), + [sym_val_filesize] = STATE(1832), + [sym_val_binary] = STATE(1832), + [sym_val_string] = STATE(1832), + [sym__raw_str] = STATE(1932), + [sym__str_double_quotes] = STATE(1932), + [sym_val_interpolated] = STATE(1832), + [sym__inter_single_quotes] = STATE(1921), + [sym__inter_double_quotes] = STATE(1922), + [sym_val_list] = STATE(1832), + [sym_val_record] = STATE(1832), + [sym_val_table] = STATE(1832), + [sym_val_closure] = STATE(1832), + [sym_unquoted] = STATE(1771), + [sym__unquoted_anonymous_prefix] = STATE(7762), [sym_comment] = STATE(1312), - [ts_builtin_sym_end] = ACTIONS(1552), - [sym__newline] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1552), - [anon_sym_PIPE] = ACTIONS(1552), - [anon_sym_err_GT_PIPE] = ACTIONS(1552), - [anon_sym_out_GT_PIPE] = ACTIONS(1552), - [anon_sym_e_GT_PIPE] = ACTIONS(1552), - [anon_sym_o_GT_PIPE] = ACTIONS(1552), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1552), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1552), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1552), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1552), - [anon_sym_LBRACK] = ACTIONS(1552), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_DOLLAR] = ACTIONS(1550), - [anon_sym_DASH_DASH] = ACTIONS(1552), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_LBRACE] = ACTIONS(1552), - [anon_sym_DOT_DOT] = ACTIONS(1550), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT] = ACTIONS(4467), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1550), - [anon_sym_DOT_DOT_LT] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [aux_sym__immediate_decimal_token2] = ACTIONS(4469), - [anon_sym_null] = ACTIONS(1552), - [anon_sym_true] = ACTIONS(1552), - [anon_sym_false] = ACTIONS(1552), - [aux_sym__val_number_decimal_token1] = ACTIONS(1550), - [aux_sym__val_number_decimal_token2] = ACTIONS(1552), - [aux_sym__val_number_decimal_token3] = ACTIONS(1552), - [aux_sym__val_number_decimal_token4] = ACTIONS(1552), - [aux_sym__val_number_token1] = ACTIONS(1552), - [aux_sym__val_number_token2] = ACTIONS(1552), - [aux_sym__val_number_token3] = ACTIONS(1552), - [aux_sym__val_number_token4] = ACTIONS(1552), - [aux_sym__val_number_token5] = ACTIONS(1552), - [aux_sym__val_number_token6] = ACTIONS(1552), - [anon_sym_0b] = ACTIONS(1550), - [sym_filesize_unit] = ACTIONS(1552), - [sym_duration_unit] = ACTIONS(1552), - [anon_sym_0o] = ACTIONS(1550), - [anon_sym_0x] = ACTIONS(1550), - [sym_val_date] = ACTIONS(1552), - [anon_sym_DQUOTE] = ACTIONS(1552), - [sym__str_single_quotes] = ACTIONS(1552), - [sym__str_back_ticks] = ACTIONS(1552), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1552), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1552), - [anon_sym_err_GT] = ACTIONS(1550), - [anon_sym_out_GT] = ACTIONS(1550), - [anon_sym_e_GT] = ACTIONS(1550), - [anon_sym_o_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT] = ACTIONS(1550), - [anon_sym_err_GT_GT] = ACTIONS(1552), - [anon_sym_out_GT_GT] = ACTIONS(1552), - [anon_sym_e_GT_GT] = ACTIONS(1552), - [anon_sym_o_GT_GT] = ACTIONS(1552), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1552), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1552), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1552), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1552), - [aux_sym_unquoted_token1] = ACTIONS(1550), - [aux_sym_unquoted_token2] = ACTIONS(1550), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1552), + [anon_sym_LBRACK] = ACTIONS(2784), + [anon_sym_LPAREN] = ACTIONS(4359), + [anon_sym_DOLLAR] = ACTIONS(3985), + [anon_sym_LBRACE] = ACTIONS(2794), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4363), + [anon_sym_DOT_DOT_LT] = ACTIONS(4363), + [anon_sym_null] = ACTIONS(4365), + [anon_sym_true] = ACTIONS(4367), + [anon_sym_false] = ACTIONS(4367), + [aux_sym__val_number_decimal_token1] = ACTIONS(4369), + [aux_sym__val_number_decimal_token2] = ACTIONS(4371), + [aux_sym__val_number_decimal_token3] = ACTIONS(4373), + [aux_sym__val_number_decimal_token4] = ACTIONS(4375), + [aux_sym__val_number_token1] = ACTIONS(2812), + [aux_sym__val_number_token2] = ACTIONS(2812), + [aux_sym__val_number_token3] = ACTIONS(2812), + [aux_sym__val_number_token4] = ACTIONS(4377), + [aux_sym__val_number_token5] = ACTIONS(4377), + [aux_sym__val_number_token6] = ACTIONS(4377), + [anon_sym_0b] = ACTIONS(2816), + [anon_sym_0o] = ACTIONS(2818), + [anon_sym_0x] = ACTIONS(2818), + [sym_val_date] = ACTIONS(4379), + [anon_sym_DQUOTE] = ACTIONS(2822), + [sym__str_single_quotes] = ACTIONS(2824), + [sym__str_back_ticks] = ACTIONS(2824), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2826), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2828), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(4381), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2836), }, [1313] = { - [sym__expr_parenthesized_immediate] = STATE(1935), - [sym__immediate_decimal] = STATE(1936), - [sym_val_variable] = STATE(1935), + [sym__val_range] = STATE(7769), + [sym__value] = STATE(4640), + [sym_val_nothing] = STATE(4602), + [sym_val_bool] = STATE(4397), + [sym_val_variable] = STATE(4602), + [sym_val_number] = STATE(4602), + [sym__val_number_decimal] = STATE(4022), + [sym__val_number] = STATE(4604), + [sym_val_duration] = STATE(4602), + [sym_val_filesize] = STATE(4602), + [sym_val_binary] = STATE(4602), + [sym_val_string] = STATE(4602), + [sym__raw_str] = STATE(4059), + [sym__str_double_quotes] = STATE(4059), + [sym_val_interpolated] = STATE(4602), + [sym__inter_single_quotes] = STATE(4555), + [sym__inter_double_quotes] = STATE(4607), + [sym_val_list] = STATE(4602), + [sym_val_record] = STATE(4602), + [sym_val_table] = STATE(4602), + [sym_val_closure] = STATE(4602), + [sym_unquoted] = STATE(4642), + [sym__unquoted_anonymous_prefix] = STATE(7617), [sym_comment] = STATE(1313), - [ts_builtin_sym_end] = ACTIONS(1626), - [sym__newline] = ACTIONS(1626), - [anon_sym_SEMI] = ACTIONS(1626), - [anon_sym_PIPE] = ACTIONS(1626), - [anon_sym_err_GT_PIPE] = ACTIONS(1626), - [anon_sym_out_GT_PIPE] = ACTIONS(1626), - [anon_sym_e_GT_PIPE] = ACTIONS(1626), - [anon_sym_o_GT_PIPE] = ACTIONS(1626), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1626), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1626), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1626), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1626), - [anon_sym_LBRACK] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(1624), - [anon_sym_DOLLAR] = ACTIONS(4120), - [anon_sym_DASH_DASH] = ACTIONS(1626), - [anon_sym_DASH2] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_DOT_DOT] = ACTIONS(1624), - [anon_sym_LPAREN2] = ACTIONS(4122), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1626), - [anon_sym_DOT_DOT_LT] = ACTIONS(1626), - [aux_sym__immediate_decimal_token1] = ACTIONS(4471), - [aux_sym__immediate_decimal_token3] = ACTIONS(4473), - [aux_sym__immediate_decimal_token4] = ACTIONS(4475), - [aux_sym__immediate_decimal_token5] = ACTIONS(4477), - [anon_sym_null] = ACTIONS(1626), - [anon_sym_true] = ACTIONS(1626), - [anon_sym_false] = ACTIONS(1626), - [aux_sym__val_number_decimal_token1] = ACTIONS(1624), - [aux_sym__val_number_decimal_token2] = ACTIONS(1624), - [aux_sym__val_number_decimal_token3] = ACTIONS(1624), - [aux_sym__val_number_decimal_token4] = ACTIONS(1624), - [aux_sym__val_number_token1] = ACTIONS(1626), - [aux_sym__val_number_token2] = ACTIONS(1626), - [aux_sym__val_number_token3] = ACTIONS(1626), - [aux_sym__val_number_token4] = ACTIONS(1626), - [aux_sym__val_number_token5] = ACTIONS(1626), - [aux_sym__val_number_token6] = ACTIONS(1626), - [anon_sym_0b] = ACTIONS(1624), - [anon_sym_0o] = ACTIONS(1624), - [anon_sym_0x] = ACTIONS(1624), - [sym_val_date] = ACTIONS(1626), - [anon_sym_DQUOTE] = ACTIONS(1626), - [sym__str_single_quotes] = ACTIONS(1626), - [sym__str_back_ticks] = ACTIONS(1626), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1626), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1626), - [anon_sym_err_GT] = ACTIONS(1624), - [anon_sym_out_GT] = ACTIONS(1624), - [anon_sym_e_GT] = ACTIONS(1624), - [anon_sym_o_GT] = ACTIONS(1624), - [anon_sym_err_PLUSout_GT] = ACTIONS(1624), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1624), - [anon_sym_o_PLUSe_GT] = ACTIONS(1624), - [anon_sym_e_PLUSo_GT] = ACTIONS(1624), - [anon_sym_err_GT_GT] = ACTIONS(1626), - [anon_sym_out_GT_GT] = ACTIONS(1626), - [anon_sym_e_GT_GT] = ACTIONS(1626), - [anon_sym_o_GT_GT] = ACTIONS(1626), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1626), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1626), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1626), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1626), - [aux_sym_unquoted_token1] = ACTIONS(1624), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1626), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4311), + [anon_sym_DOLLAR] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(4313), + [anon_sym_DOT_DOT] = ACTIONS(4315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4317), + [anon_sym_DOT_DOT_LT] = ACTIONS(4317), + [anon_sym_null] = ACTIONS(4345), + [anon_sym_true] = ACTIONS(4347), + [anon_sym_false] = ACTIONS(4347), + [aux_sym__val_number_decimal_token1] = ACTIONS(2128), + [aux_sym__val_number_decimal_token2] = ACTIONS(4349), + [aux_sym__val_number_decimal_token3] = ACTIONS(4351), + [aux_sym__val_number_decimal_token4] = ACTIONS(4353), + [aux_sym__val_number_token1] = ACTIONS(4331), + [aux_sym__val_number_token2] = ACTIONS(4331), + [aux_sym__val_number_token3] = ACTIONS(4331), + [aux_sym__val_number_token4] = ACTIONS(4355), + [aux_sym__val_number_token5] = ACTIONS(4355), + [aux_sym__val_number_token6] = ACTIONS(4355), + [anon_sym_0b] = ACTIONS(2138), + [anon_sym_0o] = ACTIONS(2140), + [anon_sym_0x] = ACTIONS(2140), + [sym_val_date] = ACTIONS(4357), + [anon_sym_DQUOTE] = ACTIONS(4337), + [sym__str_single_quotes] = ACTIONS(4339), + [sym__str_back_ticks] = ACTIONS(4339), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4341), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4343), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(2158), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2160), }, [1314] = { - [sym__expr_parenthesized_immediate] = STATE(1937), - [sym__immediate_decimal] = STATE(1938), - [sym_val_variable] = STATE(1937), + [sym__val_range] = STATE(7624), + [sym__value] = STATE(1772), + [sym_val_nothing] = STATE(1832), + [sym_val_bool] = STATE(1701), + [sym_val_variable] = STATE(1832), + [sym_val_number] = STATE(1832), + [sym__val_number_decimal] = STATE(1376), + [sym__val_number] = STATE(1836), + [sym_val_duration] = STATE(1832), + [sym_val_filesize] = STATE(1832), + [sym_val_binary] = STATE(1832), + [sym_val_string] = STATE(1832), + [sym__raw_str] = STATE(1932), + [sym__str_double_quotes] = STATE(1932), + [sym_val_interpolated] = STATE(1832), + [sym__inter_single_quotes] = STATE(1921), + [sym__inter_double_quotes] = STATE(1922), + [sym_val_list] = STATE(1832), + [sym_val_record] = STATE(1832), + [sym_val_table] = STATE(1832), + [sym_val_closure] = STATE(1832), + [sym_unquoted] = STATE(1773), + [sym__unquoted_anonymous_prefix] = STATE(7762), [sym_comment] = STATE(1314), - [ts_builtin_sym_end] = ACTIONS(1656), - [sym__newline] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_err_GT_PIPE] = ACTIONS(1656), - [anon_sym_out_GT_PIPE] = ACTIONS(1656), - [anon_sym_e_GT_PIPE] = ACTIONS(1656), - [anon_sym_o_GT_PIPE] = ACTIONS(1656), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1656), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1656), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1656), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1656), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_LPAREN] = ACTIONS(1654), - [anon_sym_DOLLAR] = ACTIONS(4120), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_DASH2] = ACTIONS(1654), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_DOT_DOT] = ACTIONS(1654), - [anon_sym_LPAREN2] = ACTIONS(4122), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1656), - [anon_sym_DOT_DOT_LT] = ACTIONS(1656), - [aux_sym__immediate_decimal_token1] = ACTIONS(4471), - [aux_sym__immediate_decimal_token3] = ACTIONS(4473), - [aux_sym__immediate_decimal_token4] = ACTIONS(4475), - [aux_sym__immediate_decimal_token5] = ACTIONS(4477), - [anon_sym_null] = ACTIONS(1656), - [anon_sym_true] = ACTIONS(1656), - [anon_sym_false] = ACTIONS(1656), - [aux_sym__val_number_decimal_token1] = ACTIONS(1654), - [aux_sym__val_number_decimal_token2] = ACTIONS(1654), - [aux_sym__val_number_decimal_token3] = ACTIONS(1654), - [aux_sym__val_number_decimal_token4] = ACTIONS(1654), - [aux_sym__val_number_token1] = ACTIONS(1656), - [aux_sym__val_number_token2] = ACTIONS(1656), - [aux_sym__val_number_token3] = ACTIONS(1656), - [aux_sym__val_number_token4] = ACTIONS(1656), - [aux_sym__val_number_token5] = ACTIONS(1656), - [aux_sym__val_number_token6] = ACTIONS(1656), - [anon_sym_0b] = ACTIONS(1654), - [anon_sym_0o] = ACTIONS(1654), - [anon_sym_0x] = ACTIONS(1654), - [sym_val_date] = ACTIONS(1656), - [anon_sym_DQUOTE] = ACTIONS(1656), - [sym__str_single_quotes] = ACTIONS(1656), - [sym__str_back_ticks] = ACTIONS(1656), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1656), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1656), - [anon_sym_err_GT] = ACTIONS(1654), - [anon_sym_out_GT] = ACTIONS(1654), - [anon_sym_e_GT] = ACTIONS(1654), - [anon_sym_o_GT] = ACTIONS(1654), - [anon_sym_err_PLUSout_GT] = ACTIONS(1654), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1654), - [anon_sym_o_PLUSe_GT] = ACTIONS(1654), - [anon_sym_e_PLUSo_GT] = ACTIONS(1654), - [anon_sym_err_GT_GT] = ACTIONS(1656), - [anon_sym_out_GT_GT] = ACTIONS(1656), - [anon_sym_e_GT_GT] = ACTIONS(1656), - [anon_sym_o_GT_GT] = ACTIONS(1656), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1656), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1656), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1656), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1656), - [aux_sym_unquoted_token1] = ACTIONS(1654), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1656), + [anon_sym_LBRACK] = ACTIONS(2784), + [anon_sym_LPAREN] = ACTIONS(4359), + [anon_sym_DOLLAR] = ACTIONS(3985), + [anon_sym_LBRACE] = ACTIONS(2794), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4363), + [anon_sym_DOT_DOT_LT] = ACTIONS(4363), + [anon_sym_null] = ACTIONS(4365), + [anon_sym_true] = ACTIONS(4367), + [anon_sym_false] = ACTIONS(4367), + [aux_sym__val_number_decimal_token1] = ACTIONS(4369), + [aux_sym__val_number_decimal_token2] = ACTIONS(4371), + [aux_sym__val_number_decimal_token3] = ACTIONS(4373), + [aux_sym__val_number_decimal_token4] = ACTIONS(4375), + [aux_sym__val_number_token1] = ACTIONS(2812), + [aux_sym__val_number_token2] = ACTIONS(2812), + [aux_sym__val_number_token3] = ACTIONS(2812), + [aux_sym__val_number_token4] = ACTIONS(4377), + [aux_sym__val_number_token5] = ACTIONS(4377), + [aux_sym__val_number_token6] = ACTIONS(4377), + [anon_sym_0b] = ACTIONS(2816), + [anon_sym_0o] = ACTIONS(2818), + [anon_sym_0x] = ACTIONS(2818), + [sym_val_date] = ACTIONS(4379), + [anon_sym_DQUOTE] = ACTIONS(2822), + [sym__str_single_quotes] = ACTIONS(2824), + [sym__str_back_ticks] = ACTIONS(2824), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2826), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2828), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(4381), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2836), }, [1315] = { - [sym__expr_parenthesized_immediate] = STATE(1939), - [sym__immediate_decimal] = STATE(1940), - [sym_val_variable] = STATE(1939), + [sym__val_range] = STATE(7624), + [sym__value] = STATE(1788), + [sym_val_nothing] = STATE(1832), + [sym_val_bool] = STATE(1701), + [sym_val_variable] = STATE(1832), + [sym_val_number] = STATE(1832), + [sym__val_number_decimal] = STATE(1376), + [sym__val_number] = STATE(1836), + [sym_val_duration] = STATE(1832), + [sym_val_filesize] = STATE(1832), + [sym_val_binary] = STATE(1832), + [sym_val_string] = STATE(1832), + [sym__raw_str] = STATE(1932), + [sym__str_double_quotes] = STATE(1932), + [sym_val_interpolated] = STATE(1832), + [sym__inter_single_quotes] = STATE(1921), + [sym__inter_double_quotes] = STATE(1922), + [sym_val_list] = STATE(1832), + [sym_val_record] = STATE(1832), + [sym_val_table] = STATE(1832), + [sym_val_closure] = STATE(1832), + [sym_unquoted] = STATE(1789), + [sym__unquoted_anonymous_prefix] = STATE(7762), [sym_comment] = STATE(1315), - [ts_builtin_sym_end] = ACTIONS(1612), - [sym__newline] = ACTIONS(1612), - [anon_sym_SEMI] = ACTIONS(1612), - [anon_sym_PIPE] = ACTIONS(1612), - [anon_sym_err_GT_PIPE] = ACTIONS(1612), - [anon_sym_out_GT_PIPE] = ACTIONS(1612), - [anon_sym_e_GT_PIPE] = ACTIONS(1612), - [anon_sym_o_GT_PIPE] = ACTIONS(1612), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1612), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1612), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1612), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1612), - [anon_sym_LBRACK] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(1604), - [anon_sym_DOLLAR] = ACTIONS(4120), - [anon_sym_DASH_DASH] = ACTIONS(1612), - [anon_sym_DASH2] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_DOT_DOT] = ACTIONS(1604), - [anon_sym_LPAREN2] = ACTIONS(4122), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1612), - [anon_sym_DOT_DOT_LT] = ACTIONS(1612), - [aux_sym__immediate_decimal_token1] = ACTIONS(4471), - [aux_sym__immediate_decimal_token3] = ACTIONS(4473), - [aux_sym__immediate_decimal_token4] = ACTIONS(4475), - [aux_sym__immediate_decimal_token5] = ACTIONS(4477), - [anon_sym_null] = ACTIONS(1612), - [anon_sym_true] = ACTIONS(1612), - [anon_sym_false] = ACTIONS(1612), - [aux_sym__val_number_decimal_token1] = ACTIONS(1604), - [aux_sym__val_number_decimal_token2] = ACTIONS(1604), - [aux_sym__val_number_decimal_token3] = ACTIONS(1604), - [aux_sym__val_number_decimal_token4] = ACTIONS(1604), - [aux_sym__val_number_token1] = ACTIONS(1612), - [aux_sym__val_number_token2] = ACTIONS(1612), - [aux_sym__val_number_token3] = ACTIONS(1612), - [aux_sym__val_number_token4] = ACTIONS(1612), - [aux_sym__val_number_token5] = ACTIONS(1612), - [aux_sym__val_number_token6] = ACTIONS(1612), - [anon_sym_0b] = ACTIONS(1604), - [anon_sym_0o] = ACTIONS(1604), - [anon_sym_0x] = ACTIONS(1604), - [sym_val_date] = ACTIONS(1612), - [anon_sym_DQUOTE] = ACTIONS(1612), - [sym__str_single_quotes] = ACTIONS(1612), - [sym__str_back_ticks] = ACTIONS(1612), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1612), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1612), - [anon_sym_err_GT] = ACTIONS(1604), - [anon_sym_out_GT] = ACTIONS(1604), - [anon_sym_e_GT] = ACTIONS(1604), - [anon_sym_o_GT] = ACTIONS(1604), - [anon_sym_err_PLUSout_GT] = ACTIONS(1604), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1604), - [anon_sym_o_PLUSe_GT] = ACTIONS(1604), - [anon_sym_e_PLUSo_GT] = ACTIONS(1604), - [anon_sym_err_GT_GT] = ACTIONS(1612), - [anon_sym_out_GT_GT] = ACTIONS(1612), - [anon_sym_e_GT_GT] = ACTIONS(1612), - [anon_sym_o_GT_GT] = ACTIONS(1612), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1612), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1612), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1612), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1612), - [aux_sym_unquoted_token1] = ACTIONS(1604), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(2784), + [anon_sym_LPAREN] = ACTIONS(4359), + [anon_sym_DOLLAR] = ACTIONS(3985), + [anon_sym_LBRACE] = ACTIONS(2794), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4363), + [anon_sym_DOT_DOT_LT] = ACTIONS(4363), + [anon_sym_null] = ACTIONS(4365), + [anon_sym_true] = ACTIONS(4367), + [anon_sym_false] = ACTIONS(4367), + [aux_sym__val_number_decimal_token1] = ACTIONS(4369), + [aux_sym__val_number_decimal_token2] = ACTIONS(4371), + [aux_sym__val_number_decimal_token3] = ACTIONS(4373), + [aux_sym__val_number_decimal_token4] = ACTIONS(4375), + [aux_sym__val_number_token1] = ACTIONS(2812), + [aux_sym__val_number_token2] = ACTIONS(2812), + [aux_sym__val_number_token3] = ACTIONS(2812), + [aux_sym__val_number_token4] = ACTIONS(4377), + [aux_sym__val_number_token5] = ACTIONS(4377), + [aux_sym__val_number_token6] = ACTIONS(4377), + [anon_sym_0b] = ACTIONS(2816), + [anon_sym_0o] = ACTIONS(2818), + [anon_sym_0x] = ACTIONS(2818), + [sym_val_date] = ACTIONS(4379), + [anon_sym_DQUOTE] = ACTIONS(2822), + [sym__str_single_quotes] = ACTIONS(2824), + [sym__str_back_ticks] = ACTIONS(2824), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2826), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2828), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(4381), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2836), }, [1316] = { + [sym__val_range] = STATE(7806), + [sym__value] = STATE(5903), + [sym_val_nothing] = STATE(5780), + [sym_val_bool] = STATE(5679), + [sym_val_variable] = STATE(5780), + [sym_val_number] = STATE(5780), + [sym__val_number_decimal] = STATE(5025), + [sym__val_number] = STATE(5906), + [sym_val_duration] = STATE(5780), + [sym_val_filesize] = STATE(5780), + [sym_val_binary] = STATE(5780), + [sym_val_string] = STATE(5780), + [sym__raw_str] = STATE(5419), + [sym__str_double_quotes] = STATE(5419), + [sym_val_interpolated] = STATE(5780), + [sym__inter_single_quotes] = STATE(5610), + [sym__inter_double_quotes] = STATE(5632), + [sym_val_list] = STATE(5780), + [sym_val_record] = STATE(5780), + [sym_val_table] = STATE(5780), + [sym_val_closure] = STATE(5780), + [sym_unquoted] = STATE(5904), + [sym__unquoted_anonymous_prefix] = STATE(7809), [sym_comment] = STATE(1316), - [ts_builtin_sym_end] = ACTIONS(2140), - [anon_sym_STAR_STAR] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_mod] = ACTIONS(3198), - [anon_sym_SLASH_SLASH] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3198), - [anon_sym_bit_DASHshl] = ACTIONS(3198), - [anon_sym_bit_DASHshr] = ACTIONS(3198), - [anon_sym_EQ_TILDE] = ACTIONS(3198), - [anon_sym_BANG_TILDE] = ACTIONS(3198), - [anon_sym_bit_DASHand] = ACTIONS(3198), - [anon_sym_bit_DASHxor] = ACTIONS(3198), - [anon_sym_bit_DASHor] = ACTIONS(3198), - [anon_sym_and] = ACTIONS(3198), - [anon_sym_xor] = ACTIONS(3198), - [anon_sym_or] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3198), - [anon_sym_not_DASHin] = ACTIONS(3198), - [anon_sym_starts_DASHwith] = ACTIONS(3198), - [anon_sym_ends_DASHwith] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3200), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_GT_EQ] = ACTIONS(3198), - [aux_sym_cmd_identifier_token41] = ACTIONS(3202), - [sym__newline] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2136), - [anon_sym_err_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_GT_PIPE] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2136), - [anon_sym_GT2] = ACTIONS(2136), - [anon_sym_DASH2] = ACTIONS(2136), - [anon_sym_in2] = ACTIONS(2136), - [anon_sym_STAR2] = ACTIONS(2136), - [anon_sym_and2] = ACTIONS(2136), - [anon_sym_xor2] = ACTIONS(2136), - [anon_sym_or2] = ACTIONS(2136), - [anon_sym_not_DASHin2] = ACTIONS(2136), - [anon_sym_starts_DASHwith2] = ACTIONS(2136), - [anon_sym_ends_DASHwith2] = ACTIONS(2136), - [anon_sym_EQ_EQ2] = ACTIONS(2136), - [anon_sym_BANG_EQ2] = ACTIONS(2136), - [anon_sym_LT2] = ACTIONS(2136), - [anon_sym_LT_EQ2] = ACTIONS(2136), - [anon_sym_GT_EQ2] = ACTIONS(2136), - [anon_sym_EQ_TILDE2] = ACTIONS(2136), - [anon_sym_BANG_TILDE2] = ACTIONS(2136), - [anon_sym_STAR_STAR2] = ACTIONS(2136), - [anon_sym_PLUS_PLUS2] = ACTIONS(2136), - [anon_sym_SLASH2] = ACTIONS(2136), - [anon_sym_mod2] = ACTIONS(2136), - [anon_sym_SLASH_SLASH2] = ACTIONS(2136), - [anon_sym_PLUS2] = ACTIONS(2136), - [anon_sym_bit_DASHshl2] = ACTIONS(2136), - [anon_sym_bit_DASHshr2] = ACTIONS(2136), - [anon_sym_bit_DASHand2] = ACTIONS(2136), - [anon_sym_bit_DASHxor2] = ACTIONS(2136), - [anon_sym_bit_DASHor2] = ACTIONS(2136), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4383), + [anon_sym_LPAREN] = ACTIONS(4385), + [anon_sym_DOLLAR] = ACTIONS(4387), + [anon_sym_LBRACE] = ACTIONS(4389), + [anon_sym_DOT_DOT] = ACTIONS(4391), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4393), + [anon_sym_DOT_DOT_LT] = ACTIONS(4393), + [anon_sym_null] = ACTIONS(4395), + [anon_sym_true] = ACTIONS(4397), + [anon_sym_false] = ACTIONS(4397), + [aux_sym__val_number_decimal_token1] = ACTIONS(4399), + [aux_sym__val_number_decimal_token2] = ACTIONS(4401), + [aux_sym__val_number_decimal_token3] = ACTIONS(4403), + [aux_sym__val_number_decimal_token4] = ACTIONS(4405), + [aux_sym__val_number_token1] = ACTIONS(4407), + [aux_sym__val_number_token2] = ACTIONS(4407), + [aux_sym__val_number_token3] = ACTIONS(4407), + [aux_sym__val_number_token4] = ACTIONS(4409), + [aux_sym__val_number_token5] = ACTIONS(4409), + [aux_sym__val_number_token6] = ACTIONS(4409), + [anon_sym_0b] = ACTIONS(4411), + [anon_sym_0o] = ACTIONS(4413), + [anon_sym_0x] = ACTIONS(4413), + [sym_val_date] = ACTIONS(4415), + [anon_sym_DQUOTE] = ACTIONS(4417), + [sym__str_single_quotes] = ACTIONS(4419), + [sym__str_back_ticks] = ACTIONS(4419), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4421), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4423), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3506), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4425), }, [1317] = { + [sym__val_range] = STATE(7624), + [sym__value] = STATE(1795), + [sym_val_nothing] = STATE(1832), + [sym_val_bool] = STATE(1701), + [sym_val_variable] = STATE(1832), + [sym_val_number] = STATE(1832), + [sym__val_number_decimal] = STATE(1376), + [sym__val_number] = STATE(1836), + [sym_val_duration] = STATE(1832), + [sym_val_filesize] = STATE(1832), + [sym_val_binary] = STATE(1832), + [sym_val_string] = STATE(1832), + [sym__raw_str] = STATE(1932), + [sym__str_double_quotes] = STATE(1932), + [sym_val_interpolated] = STATE(1832), + [sym__inter_single_quotes] = STATE(1921), + [sym__inter_double_quotes] = STATE(1922), + [sym_val_list] = STATE(1832), + [sym_val_record] = STATE(1832), + [sym_val_table] = STATE(1832), + [sym_val_closure] = STATE(1832), + [sym_unquoted] = STATE(1796), + [sym__unquoted_anonymous_prefix] = STATE(7762), [sym_comment] = STATE(1317), - [ts_builtin_sym_end] = ACTIONS(2146), - [anon_sym_STAR_STAR] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_mod] = ACTIONS(3198), - [anon_sym_SLASH_SLASH] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3198), - [anon_sym_bit_DASHshl] = ACTIONS(3198), - [anon_sym_bit_DASHshr] = ACTIONS(3198), - [anon_sym_EQ_TILDE] = ACTIONS(3198), - [anon_sym_BANG_TILDE] = ACTIONS(3198), - [anon_sym_bit_DASHand] = ACTIONS(3198), - [anon_sym_bit_DASHxor] = ACTIONS(3198), - [anon_sym_bit_DASHor] = ACTIONS(3198), - [anon_sym_and] = ACTIONS(3198), - [anon_sym_xor] = ACTIONS(3198), - [anon_sym_or] = ACTIONS(3198), - [anon_sym_in] = ACTIONS(3198), - [anon_sym_not_DASHin] = ACTIONS(3198), - [anon_sym_starts_DASHwith] = ACTIONS(3198), - [anon_sym_ends_DASHwith] = ACTIONS(3198), - [anon_sym_EQ_EQ] = ACTIONS(3198), - [anon_sym_BANG_EQ] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3200), - [anon_sym_LT_EQ] = ACTIONS(3198), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_GT_EQ] = ACTIONS(3198), - [aux_sym_cmd_identifier_token41] = ACTIONS(3202), - [sym__newline] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2144), - [anon_sym_PIPE] = ACTIONS(2144), - [anon_sym_err_GT_PIPE] = ACTIONS(2144), - [anon_sym_out_GT_PIPE] = ACTIONS(2144), - [anon_sym_e_GT_PIPE] = ACTIONS(2144), - [anon_sym_o_GT_PIPE] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2144), - [anon_sym_GT2] = ACTIONS(2144), - [anon_sym_DASH2] = ACTIONS(2144), - [anon_sym_in2] = ACTIONS(2144), - [anon_sym_STAR2] = ACTIONS(2144), - [anon_sym_and2] = ACTIONS(2144), - [anon_sym_xor2] = ACTIONS(2144), - [anon_sym_or2] = ACTIONS(2144), - [anon_sym_not_DASHin2] = ACTIONS(2144), - [anon_sym_starts_DASHwith2] = ACTIONS(2144), - [anon_sym_ends_DASHwith2] = ACTIONS(2144), - [anon_sym_EQ_EQ2] = ACTIONS(2144), - [anon_sym_BANG_EQ2] = ACTIONS(2144), - [anon_sym_LT2] = ACTIONS(2144), - [anon_sym_LT_EQ2] = ACTIONS(2144), - [anon_sym_GT_EQ2] = ACTIONS(2144), - [anon_sym_EQ_TILDE2] = ACTIONS(2144), - [anon_sym_BANG_TILDE2] = ACTIONS(2144), - [anon_sym_STAR_STAR2] = ACTIONS(2144), - [anon_sym_PLUS_PLUS2] = ACTIONS(2144), - [anon_sym_SLASH2] = ACTIONS(2144), - [anon_sym_mod2] = ACTIONS(2144), - [anon_sym_SLASH_SLASH2] = ACTIONS(2144), - [anon_sym_PLUS2] = ACTIONS(2144), - [anon_sym_bit_DASHshl2] = ACTIONS(2144), - [anon_sym_bit_DASHshr2] = ACTIONS(2144), - [anon_sym_bit_DASHand2] = ACTIONS(2144), - [anon_sym_bit_DASHxor2] = ACTIONS(2144), - [anon_sym_bit_DASHor2] = ACTIONS(2144), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(2784), + [anon_sym_LPAREN] = ACTIONS(4359), + [anon_sym_DOLLAR] = ACTIONS(3985), + [anon_sym_LBRACE] = ACTIONS(2794), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4363), + [anon_sym_DOT_DOT_LT] = ACTIONS(4363), + [anon_sym_null] = ACTIONS(4365), + [anon_sym_true] = ACTIONS(4367), + [anon_sym_false] = ACTIONS(4367), + [aux_sym__val_number_decimal_token1] = ACTIONS(4369), + [aux_sym__val_number_decimal_token2] = ACTIONS(4371), + [aux_sym__val_number_decimal_token3] = ACTIONS(4373), + [aux_sym__val_number_decimal_token4] = ACTIONS(4375), + [aux_sym__val_number_token1] = ACTIONS(2812), + [aux_sym__val_number_token2] = ACTIONS(2812), + [aux_sym__val_number_token3] = ACTIONS(2812), + [aux_sym__val_number_token4] = ACTIONS(4377), + [aux_sym__val_number_token5] = ACTIONS(4377), + [aux_sym__val_number_token6] = ACTIONS(4377), + [anon_sym_0b] = ACTIONS(2816), + [anon_sym_0o] = ACTIONS(2818), + [anon_sym_0x] = ACTIONS(2818), + [sym_val_date] = ACTIONS(4379), + [anon_sym_DQUOTE] = ACTIONS(2822), + [sym__str_single_quotes] = ACTIONS(2824), + [sym__str_back_ticks] = ACTIONS(2824), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2826), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2828), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(4381), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2836), }, [1318] = { + [sym__val_range] = STATE(7806), + [sym__value] = STATE(5916), + [sym_val_nothing] = STATE(5780), + [sym_val_bool] = STATE(5679), + [sym_val_variable] = STATE(5780), + [sym_val_number] = STATE(5780), + [sym__val_number_decimal] = STATE(5025), + [sym__val_number] = STATE(5906), + [sym_val_duration] = STATE(5780), + [sym_val_filesize] = STATE(5780), + [sym_val_binary] = STATE(5780), + [sym_val_string] = STATE(5780), + [sym__raw_str] = STATE(5419), + [sym__str_double_quotes] = STATE(5419), + [sym_val_interpolated] = STATE(5780), + [sym__inter_single_quotes] = STATE(5610), + [sym__inter_double_quotes] = STATE(5632), + [sym_val_list] = STATE(5780), + [sym_val_record] = STATE(5780), + [sym_val_table] = STATE(5780), + [sym_val_closure] = STATE(5780), + [sym_unquoted] = STATE(5917), + [sym__unquoted_anonymous_prefix] = STATE(7809), [sym_comment] = STATE(1318), - [sym__newline] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1552), - [anon_sym_PIPE] = ACTIONS(1552), - [anon_sym_err_GT_PIPE] = ACTIONS(1552), - [anon_sym_out_GT_PIPE] = ACTIONS(1552), - [anon_sym_e_GT_PIPE] = ACTIONS(1552), - [anon_sym_o_GT_PIPE] = ACTIONS(1552), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1552), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1552), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1552), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1552), - [anon_sym_LBRACK] = ACTIONS(1552), - [anon_sym_LPAREN] = ACTIONS(1550), - [anon_sym_RPAREN] = ACTIONS(1552), - [anon_sym_DOLLAR] = ACTIONS(1550), - [anon_sym_DASH_DASH] = ACTIONS(1552), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_LBRACE] = ACTIONS(1552), - [anon_sym_RBRACE] = ACTIONS(1552), - [anon_sym_DOT_DOT] = ACTIONS(1550), - [anon_sym_LPAREN2] = ACTIONS(1552), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1550), - [anon_sym_DOT_DOT_LT] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [anon_sym_null] = ACTIONS(1552), - [anon_sym_true] = ACTIONS(1552), - [anon_sym_false] = ACTIONS(1552), - [aux_sym__val_number_decimal_token1] = ACTIONS(1550), - [aux_sym__val_number_decimal_token2] = ACTIONS(1552), - [aux_sym__val_number_decimal_token3] = ACTIONS(1552), - [aux_sym__val_number_decimal_token4] = ACTIONS(1552), - [aux_sym__val_number_token1] = ACTIONS(1552), - [aux_sym__val_number_token2] = ACTIONS(1552), - [aux_sym__val_number_token3] = ACTIONS(1552), - [aux_sym__val_number_token4] = ACTIONS(1552), - [aux_sym__val_number_token5] = ACTIONS(1552), - [aux_sym__val_number_token6] = ACTIONS(1552), - [anon_sym_0b] = ACTIONS(1550), - [sym_filesize_unit] = ACTIONS(1552), - [sym_duration_unit] = ACTIONS(1552), - [anon_sym_0o] = ACTIONS(1550), - [anon_sym_0x] = ACTIONS(1550), - [sym_val_date] = ACTIONS(1552), - [anon_sym_DQUOTE] = ACTIONS(1552), - [sym__str_single_quotes] = ACTIONS(1552), - [sym__str_back_ticks] = ACTIONS(1552), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1552), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1552), - [anon_sym_err_GT] = ACTIONS(1550), - [anon_sym_out_GT] = ACTIONS(1550), - [anon_sym_e_GT] = ACTIONS(1550), - [anon_sym_o_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT] = ACTIONS(1550), - [anon_sym_err_GT_GT] = ACTIONS(1552), - [anon_sym_out_GT_GT] = ACTIONS(1552), - [anon_sym_e_GT_GT] = ACTIONS(1552), - [anon_sym_o_GT_GT] = ACTIONS(1552), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1552), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1552), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1552), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1552), - [aux_sym_unquoted_token1] = ACTIONS(1550), - [aux_sym_unquoted_token2] = ACTIONS(1550), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1552), + [anon_sym_LBRACK] = ACTIONS(4383), + [anon_sym_LPAREN] = ACTIONS(4385), + [anon_sym_DOLLAR] = ACTIONS(4387), + [anon_sym_LBRACE] = ACTIONS(4389), + [anon_sym_DOT_DOT] = ACTIONS(4391), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4393), + [anon_sym_DOT_DOT_LT] = ACTIONS(4393), + [anon_sym_null] = ACTIONS(4395), + [anon_sym_true] = ACTIONS(4397), + [anon_sym_false] = ACTIONS(4397), + [aux_sym__val_number_decimal_token1] = ACTIONS(4399), + [aux_sym__val_number_decimal_token2] = ACTIONS(4401), + [aux_sym__val_number_decimal_token3] = ACTIONS(4403), + [aux_sym__val_number_decimal_token4] = ACTIONS(4405), + [aux_sym__val_number_token1] = ACTIONS(4407), + [aux_sym__val_number_token2] = ACTIONS(4407), + [aux_sym__val_number_token3] = ACTIONS(4407), + [aux_sym__val_number_token4] = ACTIONS(4409), + [aux_sym__val_number_token5] = ACTIONS(4409), + [aux_sym__val_number_token6] = ACTIONS(4409), + [anon_sym_0b] = ACTIONS(4411), + [anon_sym_0o] = ACTIONS(4413), + [anon_sym_0x] = ACTIONS(4413), + [sym_val_date] = ACTIONS(4415), + [anon_sym_DQUOTE] = ACTIONS(4417), + [sym__str_single_quotes] = ACTIONS(4419), + [sym__str_back_ticks] = ACTIONS(4419), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4421), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4423), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3506), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4425), }, [1319] = { + [sym__val_range] = STATE(7806), + [sym__value] = STATE(5745), + [sym_val_nothing] = STATE(5780), + [sym_val_bool] = STATE(5679), + [sym_val_variable] = STATE(5780), + [sym_val_number] = STATE(5780), + [sym__val_number_decimal] = STATE(5025), + [sym__val_number] = STATE(5906), + [sym_val_duration] = STATE(5780), + [sym_val_filesize] = STATE(5780), + [sym_val_binary] = STATE(5780), + [sym_val_string] = STATE(5780), + [sym__raw_str] = STATE(5419), + [sym__str_double_quotes] = STATE(5419), + [sym_val_interpolated] = STATE(5780), + [sym__inter_single_quotes] = STATE(5610), + [sym__inter_double_quotes] = STATE(5632), + [sym_val_list] = STATE(5780), + [sym_val_record] = STATE(5780), + [sym_val_table] = STATE(5780), + [sym_val_closure] = STATE(5780), + [sym_unquoted] = STATE(5793), + [sym__unquoted_anonymous_prefix] = STATE(7809), [sym_comment] = STATE(1319), - [sym__newline] = ACTIONS(1682), - [anon_sym_SEMI] = ACTIONS(1682), - [anon_sym_PIPE] = ACTIONS(1682), - [anon_sym_err_GT_PIPE] = ACTIONS(1682), - [anon_sym_out_GT_PIPE] = ACTIONS(1682), - [anon_sym_e_GT_PIPE] = ACTIONS(1682), - [anon_sym_o_GT_PIPE] = ACTIONS(1682), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1682), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1682), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1682), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1682), - [anon_sym_LBRACK] = ACTIONS(1682), - [anon_sym_LPAREN] = ACTIONS(1680), - [anon_sym_RPAREN] = ACTIONS(1682), - [anon_sym_DOLLAR] = ACTIONS(1680), - [anon_sym_DASH_DASH] = ACTIONS(1682), - [anon_sym_DASH2] = ACTIONS(1680), - [anon_sym_LBRACE] = ACTIONS(1682), - [anon_sym_RBRACE] = ACTIONS(1682), - [anon_sym_DOT_DOT] = ACTIONS(1680), - [anon_sym_LPAREN2] = ACTIONS(1682), - [anon_sym_DOT_DOT2] = ACTIONS(1680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1680), - [anon_sym_DOT_DOT_LT] = ACTIONS(1680), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1682), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1682), - [anon_sym_null] = ACTIONS(1682), - [anon_sym_true] = ACTIONS(1682), - [anon_sym_false] = ACTIONS(1682), - [aux_sym__val_number_decimal_token1] = ACTIONS(1680), - [aux_sym__val_number_decimal_token2] = ACTIONS(1682), - [aux_sym__val_number_decimal_token3] = ACTIONS(1682), - [aux_sym__val_number_decimal_token4] = ACTIONS(1682), - [aux_sym__val_number_token1] = ACTIONS(1682), - [aux_sym__val_number_token2] = ACTIONS(1682), - [aux_sym__val_number_token3] = ACTIONS(1682), - [aux_sym__val_number_token4] = ACTIONS(1682), - [aux_sym__val_number_token5] = ACTIONS(1682), - [aux_sym__val_number_token6] = ACTIONS(1682), - [anon_sym_0b] = ACTIONS(1680), - [sym_filesize_unit] = ACTIONS(1682), - [sym_duration_unit] = ACTIONS(1682), - [anon_sym_0o] = ACTIONS(1680), - [anon_sym_0x] = ACTIONS(1680), - [sym_val_date] = ACTIONS(1682), - [anon_sym_DQUOTE] = ACTIONS(1682), - [sym__str_single_quotes] = ACTIONS(1682), - [sym__str_back_ticks] = ACTIONS(1682), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1682), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1682), - [anon_sym_err_GT] = ACTIONS(1680), - [anon_sym_out_GT] = ACTIONS(1680), - [anon_sym_e_GT] = ACTIONS(1680), - [anon_sym_o_GT] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT] = ACTIONS(1680), - [anon_sym_err_GT_GT] = ACTIONS(1682), - [anon_sym_out_GT_GT] = ACTIONS(1682), - [anon_sym_e_GT_GT] = ACTIONS(1682), - [anon_sym_o_GT_GT] = ACTIONS(1682), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1682), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1682), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1682), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1682), - [aux_sym_unquoted_token1] = ACTIONS(1680), - [aux_sym_unquoted_token2] = ACTIONS(1680), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1682), + [anon_sym_LBRACK] = ACTIONS(4383), + [anon_sym_LPAREN] = ACTIONS(4385), + [anon_sym_DOLLAR] = ACTIONS(4387), + [anon_sym_LBRACE] = ACTIONS(4389), + [anon_sym_DOT_DOT] = ACTIONS(4391), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4393), + [anon_sym_DOT_DOT_LT] = ACTIONS(4393), + [anon_sym_null] = ACTIONS(4395), + [anon_sym_true] = ACTIONS(4397), + [anon_sym_false] = ACTIONS(4397), + [aux_sym__val_number_decimal_token1] = ACTIONS(4399), + [aux_sym__val_number_decimal_token2] = ACTIONS(4401), + [aux_sym__val_number_decimal_token3] = ACTIONS(4403), + [aux_sym__val_number_decimal_token4] = ACTIONS(4405), + [aux_sym__val_number_token1] = ACTIONS(4407), + [aux_sym__val_number_token2] = ACTIONS(4407), + [aux_sym__val_number_token3] = ACTIONS(4407), + [aux_sym__val_number_token4] = ACTIONS(4409), + [aux_sym__val_number_token5] = ACTIONS(4409), + [aux_sym__val_number_token6] = ACTIONS(4409), + [anon_sym_0b] = ACTIONS(4411), + [anon_sym_0o] = ACTIONS(4413), + [anon_sym_0x] = ACTIONS(4413), + [sym_val_date] = ACTIONS(4415), + [anon_sym_DQUOTE] = ACTIONS(4417), + [sym__str_single_quotes] = ACTIONS(4419), + [sym__str_back_ticks] = ACTIONS(4419), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4421), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4423), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3506), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4425), }, [1320] = { - [sym__expr_parenthesized_immediate] = STATE(7314), + [sym__val_range] = STATE(7833), + [sym__value] = STATE(5317), + [sym_val_nothing] = STATE(4275), + [sym_val_bool] = STATE(5590), + [sym_val_variable] = STATE(4275), + [sym_val_number] = STATE(4275), + [sym__val_number_decimal] = STATE(4938), + [sym__val_number] = STATE(4276), + [sym_val_duration] = STATE(4275), + [sym_val_filesize] = STATE(4275), + [sym_val_binary] = STATE(4275), + [sym_val_string] = STATE(4275), + [sym__raw_str] = STATE(3793), + [sym__str_double_quotes] = STATE(3793), + [sym_val_interpolated] = STATE(4275), + [sym__inter_single_quotes] = STATE(5297), + [sym__inter_double_quotes] = STATE(5300), + [sym_val_list] = STATE(4275), + [sym_val_record] = STATE(4275), + [sym_val_table] = STATE(4275), + [sym_val_closure] = STATE(4275), + [sym_unquoted] = STATE(5318), + [sym__unquoted_anonymous_prefix] = STATE(7649), [sym_comment] = STATE(1320), - [ts_builtin_sym_end] = 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(1638), - [anon_sym_DOLLAR] = ACTIONS(1638), - [anon_sym_DASH_DASH] = ACTIONS(1650), - [anon_sym_DASH2] = ACTIONS(1638), - [anon_sym_LBRACE] = ACTIONS(1650), - [anon_sym_DOT_DOT] = ACTIONS(1638), - [anon_sym_LPAREN2] = ACTIONS(4181), - [anon_sym_DOT_DOT2] = ACTIONS(4479), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1638), - [anon_sym_DOT_DOT_LT] = ACTIONS(1638), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4481), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4481), - [anon_sym_null] = ACTIONS(1650), - [anon_sym_true] = ACTIONS(1650), - [anon_sym_false] = ACTIONS(1650), - [aux_sym__val_number_decimal_token1] = ACTIONS(1638), - [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), - [aux_sym__val_number_token4] = ACTIONS(1650), - [aux_sym__val_number_token5] = ACTIONS(1650), - [aux_sym__val_number_token6] = ACTIONS(1650), - [anon_sym_0b] = ACTIONS(1638), - [sym_filesize_unit] = ACTIONS(4483), - [sym_duration_unit] = ACTIONS(4485), - [anon_sym_0o] = ACTIONS(1638), - [anon_sym_0x] = ACTIONS(1638), - [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(1638), - [anon_sym_out_GT] = ACTIONS(1638), - [anon_sym_e_GT] = ACTIONS(1638), - [anon_sym_o_GT] = ACTIONS(1638), - [anon_sym_err_PLUSout_GT] = ACTIONS(1638), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1638), - [anon_sym_o_PLUSe_GT] = ACTIONS(1638), - [anon_sym_e_PLUSo_GT] = ACTIONS(1638), - [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(1638), - [aux_sym_unquoted_token2] = ACTIONS(4487), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1650), + [anon_sym_LBRACK] = ACTIONS(4083), + [anon_sym_LPAREN] = ACTIONS(4085), + [anon_sym_DOLLAR] = ACTIONS(4087), + [anon_sym_LBRACE] = ACTIONS(4089), + [anon_sym_DOT_DOT] = ACTIONS(4091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4093), + [anon_sym_DOT_DOT_LT] = ACTIONS(4093), + [anon_sym_null] = ACTIONS(4427), + [anon_sym_true] = ACTIONS(4429), + [anon_sym_false] = ACTIONS(4429), + [aux_sym__val_number_decimal_token1] = ACTIONS(4431), + [aux_sym__val_number_decimal_token2] = ACTIONS(4433), + [aux_sym__val_number_decimal_token3] = ACTIONS(4435), + [aux_sym__val_number_decimal_token4] = ACTIONS(4437), + [aux_sym__val_number_token1] = ACTIONS(3676), + [aux_sym__val_number_token2] = ACTIONS(3676), + [aux_sym__val_number_token3] = ACTIONS(3676), + [aux_sym__val_number_token4] = ACTIONS(4439), + [aux_sym__val_number_token5] = ACTIONS(4439), + [aux_sym__val_number_token6] = ACTIONS(4439), + [anon_sym_0b] = ACTIONS(3680), + [anon_sym_0o] = ACTIONS(3682), + [anon_sym_0x] = ACTIONS(3682), + [sym_val_date] = ACTIONS(4441), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym__str_single_quotes] = ACTIONS(1274), + [sym__str_back_ticks] = ACTIONS(1274), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4113), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3538), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1276), }, [1321] = { + [sym__val_range] = STATE(7806), + [sym__value] = STATE(5878), + [sym_val_nothing] = STATE(5780), + [sym_val_bool] = STATE(5679), + [sym_val_variable] = STATE(5780), + [sym_val_number] = STATE(5780), + [sym__val_number_decimal] = STATE(5025), + [sym__val_number] = STATE(5906), + [sym_val_duration] = STATE(5780), + [sym_val_filesize] = STATE(5780), + [sym_val_binary] = STATE(5780), + [sym_val_string] = STATE(5780), + [sym__raw_str] = STATE(5419), + [sym__str_double_quotes] = STATE(5419), + [sym_val_interpolated] = STATE(5780), + [sym__inter_single_quotes] = STATE(5610), + [sym__inter_double_quotes] = STATE(5632), + [sym_val_list] = STATE(5780), + [sym_val_record] = STATE(5780), + [sym_val_table] = STATE(5780), + [sym_val_closure] = STATE(5780), + [sym_unquoted] = STATE(5882), + [sym__unquoted_anonymous_prefix] = STATE(7809), [sym_comment] = STATE(1321), - [anon_sym_STAR_STAR] = ACTIONS(3192), - [anon_sym_PLUS_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_mod] = ACTIONS(3192), - [anon_sym_SLASH_SLASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_bit_DASHshl] = ACTIONS(3192), - [anon_sym_bit_DASHshr] = ACTIONS(3192), - [anon_sym_EQ_TILDE] = ACTIONS(3192), - [anon_sym_BANG_TILDE] = ACTIONS(3192), - [anon_sym_bit_DASHand] = ACTIONS(3192), - [anon_sym_bit_DASHxor] = ACTIONS(3192), - [anon_sym_bit_DASHor] = ACTIONS(3192), - [anon_sym_and] = ACTIONS(3192), - [anon_sym_xor] = ACTIONS(3192), - [anon_sym_or] = ACTIONS(3192), - [anon_sym_in] = ACTIONS(3192), - [anon_sym_not_DASHin] = ACTIONS(3192), - [anon_sym_starts_DASHwith] = ACTIONS(3192), - [anon_sym_ends_DASHwith] = ACTIONS(3192), - [anon_sym_EQ_EQ] = ACTIONS(3192), - [anon_sym_BANG_EQ] = ACTIONS(3192), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_LT_EQ] = ACTIONS(3192), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_GT_EQ] = ACTIONS(3192), - [aux_sym_cmd_identifier_token41] = ACTIONS(3196), - [sym__newline] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2136), - [anon_sym_err_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_GT_PIPE] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2136), - [anon_sym_RPAREN] = ACTIONS(2136), - [anon_sym_GT2] = ACTIONS(2136), - [anon_sym_DASH2] = ACTIONS(2136), - [anon_sym_in2] = ACTIONS(2136), - [anon_sym_STAR2] = ACTIONS(2136), - [anon_sym_and2] = ACTIONS(2136), - [anon_sym_xor2] = ACTIONS(2136), - [anon_sym_or2] = ACTIONS(2136), - [anon_sym_not_DASHin2] = ACTIONS(2136), - [anon_sym_starts_DASHwith2] = ACTIONS(2136), - [anon_sym_ends_DASHwith2] = ACTIONS(2136), - [anon_sym_EQ_EQ2] = ACTIONS(2136), - [anon_sym_BANG_EQ2] = ACTIONS(2136), - [anon_sym_LT2] = ACTIONS(2136), - [anon_sym_LT_EQ2] = ACTIONS(2136), - [anon_sym_GT_EQ2] = ACTIONS(2136), - [anon_sym_EQ_TILDE2] = ACTIONS(2136), - [anon_sym_BANG_TILDE2] = ACTIONS(2136), - [anon_sym_STAR_STAR2] = ACTIONS(2136), - [anon_sym_PLUS_PLUS2] = ACTIONS(2136), - [anon_sym_SLASH2] = ACTIONS(2136), - [anon_sym_mod2] = ACTIONS(2136), - [anon_sym_SLASH_SLASH2] = ACTIONS(2136), - [anon_sym_PLUS2] = ACTIONS(2136), - [anon_sym_bit_DASHshl2] = ACTIONS(2136), - [anon_sym_bit_DASHshr2] = ACTIONS(2136), - [anon_sym_bit_DASHand2] = ACTIONS(2136), - [anon_sym_bit_DASHxor2] = ACTIONS(2136), - [anon_sym_bit_DASHor2] = ACTIONS(2136), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4383), + [anon_sym_LPAREN] = ACTIONS(4385), + [anon_sym_DOLLAR] = ACTIONS(4387), + [anon_sym_LBRACE] = ACTIONS(4389), + [anon_sym_DOT_DOT] = ACTIONS(4391), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4393), + [anon_sym_DOT_DOT_LT] = ACTIONS(4393), + [anon_sym_null] = ACTIONS(4395), + [anon_sym_true] = ACTIONS(4397), + [anon_sym_false] = ACTIONS(4397), + [aux_sym__val_number_decimal_token1] = ACTIONS(4399), + [aux_sym__val_number_decimal_token2] = ACTIONS(4401), + [aux_sym__val_number_decimal_token3] = ACTIONS(4403), + [aux_sym__val_number_decimal_token4] = ACTIONS(4405), + [aux_sym__val_number_token1] = ACTIONS(4407), + [aux_sym__val_number_token2] = ACTIONS(4407), + [aux_sym__val_number_token3] = ACTIONS(4407), + [aux_sym__val_number_token4] = ACTIONS(4409), + [aux_sym__val_number_token5] = ACTIONS(4409), + [aux_sym__val_number_token6] = ACTIONS(4409), + [anon_sym_0b] = ACTIONS(4411), + [anon_sym_0o] = ACTIONS(4413), + [anon_sym_0x] = ACTIONS(4413), + [sym_val_date] = ACTIONS(4415), + [anon_sym_DQUOTE] = ACTIONS(4417), + [sym__str_single_quotes] = ACTIONS(4419), + [sym__str_back_ticks] = ACTIONS(4419), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4421), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4423), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3506), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4425), }, [1322] = { - [sym__match_pattern_expression] = STATE(3162), - [sym__match_pattern_value] = STATE(3176), - [sym__match_pattern_list] = STATE(3183), - [sym__match_pattern_record] = STATE(3151), - [sym_expr_parenthesized] = STATE(2934), - [sym_val_range] = STATE(3176), - [sym__val_range] = STATE(7541), - [sym_val_nothing] = STATE(3167), - [sym_val_bool] = STATE(3060), - [sym_val_variable] = STATE(2912), - [sym_val_number] = STATE(3167), - [sym__val_number_decimal] = STATE(2702), - [sym__val_number] = STATE(3161), - [sym_val_duration] = STATE(3167), - [sym_val_filesize] = STATE(3167), - [sym_val_binary] = STATE(3167), - [sym_val_string] = STATE(3167), - [sym__raw_str] = STATE(3174), - [sym__str_double_quotes] = STATE(3174), - [sym_val_table] = STATE(3167), - [sym__unquoted_in_list] = STATE(3162), - [sym__unquoted_anonymous_prefix] = STATE(7637), + [sym__val_range] = STATE(7833), + [sym__value] = STATE(5230), + [sym_val_nothing] = STATE(4275), + [sym_val_bool] = STATE(5590), + [sym_val_variable] = STATE(4275), + [sym_val_number] = STATE(4275), + [sym__val_number_decimal] = STATE(4938), + [sym__val_number] = STATE(4276), + [sym_val_duration] = STATE(4275), + [sym_val_filesize] = STATE(4275), + [sym_val_binary] = STATE(4275), + [sym_val_string] = STATE(4275), + [sym__raw_str] = STATE(3793), + [sym__str_double_quotes] = STATE(3793), + [sym_val_interpolated] = STATE(4275), + [sym__inter_single_quotes] = STATE(5297), + [sym__inter_double_quotes] = STATE(5300), + [sym_val_list] = STATE(4275), + [sym_val_record] = STATE(4275), + [sym_val_table] = STATE(4275), + [sym_val_closure] = STATE(4275), + [sym_unquoted] = STATE(5231), + [sym__unquoted_anonymous_prefix] = STATE(7649), [sym_comment] = STATE(1322), - [aux_sym__match_pattern_list_repeat1] = STATE(1322), - [anon_sym_LBRACK] = ACTIONS(4489), - [anon_sym_RBRACK] = ACTIONS(4492), - [anon_sym_LPAREN] = ACTIONS(4494), - [anon_sym_DOLLAR] = ACTIONS(4497), - [anon_sym_LBRACE] = ACTIONS(4500), - [anon_sym_DOT_DOT] = ACTIONS(4503), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4506), - [anon_sym_DOT_DOT_LT] = ACTIONS(4506), - [anon_sym_null] = ACTIONS(4509), - [anon_sym_true] = ACTIONS(4512), - [anon_sym_false] = ACTIONS(4512), - [aux_sym__val_number_decimal_token1] = ACTIONS(4515), - [aux_sym__val_number_decimal_token2] = ACTIONS(4518), - [aux_sym__val_number_decimal_token3] = ACTIONS(4521), - [aux_sym__val_number_decimal_token4] = ACTIONS(4524), - [aux_sym__val_number_token1] = ACTIONS(4527), - [aux_sym__val_number_token2] = ACTIONS(4527), - [aux_sym__val_number_token3] = ACTIONS(4527), - [aux_sym__val_number_token4] = ACTIONS(4530), - [aux_sym__val_number_token5] = ACTIONS(4530), - [aux_sym__val_number_token6] = ACTIONS(4530), - [anon_sym_0b] = ACTIONS(4533), - [anon_sym_0o] = ACTIONS(4536), - [anon_sym_0x] = ACTIONS(4536), - [sym_val_date] = ACTIONS(4539), - [anon_sym_DQUOTE] = ACTIONS(4542), - [sym__str_single_quotes] = ACTIONS(4545), - [sym__str_back_ticks] = ACTIONS(4545), - [anon_sym_err_GT] = ACTIONS(4548), - [anon_sym_out_GT] = ACTIONS(4548), - [anon_sym_e_GT] = ACTIONS(4548), - [anon_sym_o_GT] = ACTIONS(4548), - [anon_sym_err_PLUSout_GT] = ACTIONS(4548), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4548), - [anon_sym_o_PLUSe_GT] = ACTIONS(4548), - [anon_sym_e_PLUSo_GT] = ACTIONS(4548), - [anon_sym_err_GT_GT] = ACTIONS(4551), - [anon_sym_out_GT_GT] = ACTIONS(4551), - [anon_sym_e_GT_GT] = ACTIONS(4551), - [anon_sym_o_GT_GT] = ACTIONS(4551), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4551), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4551), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4551), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4551), - [aux_sym__unquoted_in_list_token1] = ACTIONS(4554), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4557), + [anon_sym_LBRACK] = ACTIONS(4083), + [anon_sym_LPAREN] = ACTIONS(4085), + [anon_sym_DOLLAR] = ACTIONS(4087), + [anon_sym_LBRACE] = ACTIONS(4089), + [anon_sym_DOT_DOT] = ACTIONS(4091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4093), + [anon_sym_DOT_DOT_LT] = ACTIONS(4093), + [anon_sym_null] = ACTIONS(4427), + [anon_sym_true] = ACTIONS(4429), + [anon_sym_false] = ACTIONS(4429), + [aux_sym__val_number_decimal_token1] = ACTIONS(4431), + [aux_sym__val_number_decimal_token2] = ACTIONS(4433), + [aux_sym__val_number_decimal_token3] = ACTIONS(4435), + [aux_sym__val_number_decimal_token4] = ACTIONS(4437), + [aux_sym__val_number_token1] = ACTIONS(3676), + [aux_sym__val_number_token2] = ACTIONS(3676), + [aux_sym__val_number_token3] = ACTIONS(3676), + [aux_sym__val_number_token4] = ACTIONS(4439), + [aux_sym__val_number_token5] = ACTIONS(4439), + [aux_sym__val_number_token6] = ACTIONS(4439), + [anon_sym_0b] = ACTIONS(3680), + [anon_sym_0o] = ACTIONS(3682), + [anon_sym_0x] = ACTIONS(3682), + [sym_val_date] = ACTIONS(4441), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym__str_single_quotes] = ACTIONS(1274), + [sym__str_back_ticks] = ACTIONS(1274), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4113), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3538), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1276), }, [1323] = { + [sym__val_range] = STATE(7833), + [sym__value] = STATE(5281), + [sym_val_nothing] = STATE(4275), + [sym_val_bool] = STATE(5590), + [sym_val_variable] = STATE(4275), + [sym_val_number] = STATE(4275), + [sym__val_number_decimal] = STATE(4938), + [sym__val_number] = STATE(4276), + [sym_val_duration] = STATE(4275), + [sym_val_filesize] = STATE(4275), + [sym_val_binary] = STATE(4275), + [sym_val_string] = STATE(4275), + [sym__raw_str] = STATE(3793), + [sym__str_double_quotes] = STATE(3793), + [sym_val_interpolated] = STATE(4275), + [sym__inter_single_quotes] = STATE(5297), + [sym__inter_double_quotes] = STATE(5300), + [sym_val_list] = STATE(4275), + [sym_val_record] = STATE(4275), + [sym_val_table] = STATE(4275), + [sym_val_closure] = STATE(4275), + [sym_unquoted] = STATE(5285), + [sym__unquoted_anonymous_prefix] = STATE(7649), [sym_comment] = STATE(1323), - [anon_sym_STAR_STAR] = ACTIONS(3192), - [anon_sym_PLUS_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_mod] = ACTIONS(3192), - [anon_sym_SLASH_SLASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_bit_DASHshl] = ACTIONS(3192), - [anon_sym_bit_DASHshr] = ACTIONS(3192), - [anon_sym_EQ_TILDE] = ACTIONS(3192), - [anon_sym_BANG_TILDE] = ACTIONS(3192), - [anon_sym_bit_DASHand] = ACTIONS(3192), - [anon_sym_bit_DASHxor] = ACTIONS(3192), - [anon_sym_bit_DASHor] = ACTIONS(3192), - [anon_sym_and] = ACTIONS(3192), - [anon_sym_xor] = ACTIONS(3192), - [anon_sym_or] = ACTIONS(3192), - [anon_sym_in] = ACTIONS(3192), - [anon_sym_not_DASHin] = ACTIONS(3192), - [anon_sym_starts_DASHwith] = ACTIONS(3192), - [anon_sym_ends_DASHwith] = ACTIONS(3192), - [anon_sym_EQ_EQ] = ACTIONS(3192), - [anon_sym_BANG_EQ] = ACTIONS(3192), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_LT_EQ] = ACTIONS(3192), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_GT_EQ] = ACTIONS(3192), - [aux_sym_cmd_identifier_token41] = ACTIONS(3196), - [sym__newline] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2144), - [anon_sym_PIPE] = ACTIONS(2144), - [anon_sym_err_GT_PIPE] = ACTIONS(2144), - [anon_sym_out_GT_PIPE] = ACTIONS(2144), - [anon_sym_e_GT_PIPE] = ACTIONS(2144), - [anon_sym_o_GT_PIPE] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2144), - [anon_sym_RPAREN] = ACTIONS(2144), - [anon_sym_GT2] = ACTIONS(2144), - [anon_sym_DASH2] = ACTIONS(2144), - [anon_sym_in2] = ACTIONS(2144), - [anon_sym_STAR2] = ACTIONS(2144), - [anon_sym_and2] = ACTIONS(2144), - [anon_sym_xor2] = ACTIONS(2144), - [anon_sym_or2] = ACTIONS(2144), - [anon_sym_not_DASHin2] = ACTIONS(2144), - [anon_sym_starts_DASHwith2] = ACTIONS(2144), - [anon_sym_ends_DASHwith2] = ACTIONS(2144), - [anon_sym_EQ_EQ2] = ACTIONS(2144), - [anon_sym_BANG_EQ2] = ACTIONS(2144), - [anon_sym_LT2] = ACTIONS(2144), - [anon_sym_LT_EQ2] = ACTIONS(2144), - [anon_sym_GT_EQ2] = ACTIONS(2144), - [anon_sym_EQ_TILDE2] = ACTIONS(2144), - [anon_sym_BANG_TILDE2] = ACTIONS(2144), - [anon_sym_STAR_STAR2] = ACTIONS(2144), - [anon_sym_PLUS_PLUS2] = ACTIONS(2144), - [anon_sym_SLASH2] = ACTIONS(2144), - [anon_sym_mod2] = ACTIONS(2144), - [anon_sym_SLASH_SLASH2] = ACTIONS(2144), - [anon_sym_PLUS2] = ACTIONS(2144), - [anon_sym_bit_DASHshl2] = ACTIONS(2144), - [anon_sym_bit_DASHshr2] = ACTIONS(2144), - [anon_sym_bit_DASHand2] = ACTIONS(2144), - [anon_sym_bit_DASHxor2] = ACTIONS(2144), - [anon_sym_bit_DASHor2] = ACTIONS(2144), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4083), + [anon_sym_LPAREN] = ACTIONS(4085), + [anon_sym_DOLLAR] = ACTIONS(4087), + [anon_sym_LBRACE] = ACTIONS(4089), + [anon_sym_DOT_DOT] = ACTIONS(4091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4093), + [anon_sym_DOT_DOT_LT] = ACTIONS(4093), + [anon_sym_null] = ACTIONS(4427), + [anon_sym_true] = ACTIONS(4429), + [anon_sym_false] = ACTIONS(4429), + [aux_sym__val_number_decimal_token1] = ACTIONS(4431), + [aux_sym__val_number_decimal_token2] = ACTIONS(4433), + [aux_sym__val_number_decimal_token3] = ACTIONS(4435), + [aux_sym__val_number_decimal_token4] = ACTIONS(4437), + [aux_sym__val_number_token1] = ACTIONS(3676), + [aux_sym__val_number_token2] = ACTIONS(3676), + [aux_sym__val_number_token3] = ACTIONS(3676), + [aux_sym__val_number_token4] = ACTIONS(4439), + [aux_sym__val_number_token5] = ACTIONS(4439), + [aux_sym__val_number_token6] = ACTIONS(4439), + [anon_sym_0b] = ACTIONS(3680), + [anon_sym_0o] = ACTIONS(3682), + [anon_sym_0x] = ACTIONS(3682), + [sym_val_date] = ACTIONS(4441), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym__str_single_quotes] = ACTIONS(1274), + [sym__str_back_ticks] = ACTIONS(1274), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4113), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3538), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1276), }, [1324] = { + [sym__val_range] = STATE(7833), + [sym__value] = STATE(5236), + [sym_val_nothing] = STATE(4275), + [sym_val_bool] = STATE(5590), + [sym_val_variable] = STATE(4275), + [sym_val_number] = STATE(4275), + [sym__val_number_decimal] = STATE(4938), + [sym__val_number] = STATE(4276), + [sym_val_duration] = STATE(4275), + [sym_val_filesize] = STATE(4275), + [sym_val_binary] = STATE(4275), + [sym_val_string] = STATE(4275), + [sym__raw_str] = STATE(3793), + [sym__str_double_quotes] = STATE(3793), + [sym_val_interpolated] = STATE(4275), + [sym__inter_single_quotes] = STATE(5297), + [sym__inter_double_quotes] = STATE(5300), + [sym_val_list] = STATE(4275), + [sym_val_record] = STATE(4275), + [sym_val_table] = STATE(4275), + [sym_val_closure] = STATE(4275), + [sym_unquoted] = STATE(5284), + [sym__unquoted_anonymous_prefix] = STATE(7649), [sym_comment] = STATE(1324), - [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(1743), - [anon_sym_RPAREN] = ACTIONS(1745), - [anon_sym_DOLLAR] = ACTIONS(1743), - [anon_sym_DASH_DASH] = ACTIONS(1745), - [anon_sym_DASH2] = ACTIONS(1743), - [anon_sym_LBRACE] = ACTIONS(1745), - [anon_sym_RBRACE] = ACTIONS(1745), - [anon_sym_DOT_DOT] = ACTIONS(1743), - [anon_sym_LPAREN2] = ACTIONS(1745), - [anon_sym_DOT_DOT2] = ACTIONS(1743), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1743), - [anon_sym_DOT_DOT_LT] = ACTIONS(1743), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1745), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1745), - [anon_sym_null] = ACTIONS(1745), - [anon_sym_true] = ACTIONS(1745), - [anon_sym_false] = ACTIONS(1745), - [aux_sym__val_number_decimal_token1] = ACTIONS(1743), - [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), - [aux_sym__val_number_token4] = ACTIONS(1745), - [aux_sym__val_number_token5] = ACTIONS(1745), - [aux_sym__val_number_token6] = ACTIONS(1745), - [anon_sym_0b] = ACTIONS(1743), - [sym_filesize_unit] = ACTIONS(1745), - [sym_duration_unit] = ACTIONS(1745), - [anon_sym_0o] = ACTIONS(1743), - [anon_sym_0x] = ACTIONS(1743), - [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(1743), - [anon_sym_out_GT] = ACTIONS(1743), - [anon_sym_e_GT] = ACTIONS(1743), - [anon_sym_o_GT] = ACTIONS(1743), - [anon_sym_err_PLUSout_GT] = ACTIONS(1743), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1743), - [anon_sym_o_PLUSe_GT] = ACTIONS(1743), - [anon_sym_e_PLUSo_GT] = ACTIONS(1743), - [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(1743), - [aux_sym_unquoted_token2] = ACTIONS(1743), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1745), + [anon_sym_LBRACK] = ACTIONS(4083), + [anon_sym_LPAREN] = ACTIONS(4085), + [anon_sym_DOLLAR] = ACTIONS(4087), + [anon_sym_LBRACE] = ACTIONS(4089), + [anon_sym_DOT_DOT] = ACTIONS(4091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4093), + [anon_sym_DOT_DOT_LT] = ACTIONS(4093), + [anon_sym_null] = ACTIONS(4427), + [anon_sym_true] = ACTIONS(4429), + [anon_sym_false] = ACTIONS(4429), + [aux_sym__val_number_decimal_token1] = ACTIONS(4431), + [aux_sym__val_number_decimal_token2] = ACTIONS(4433), + [aux_sym__val_number_decimal_token3] = ACTIONS(4435), + [aux_sym__val_number_decimal_token4] = ACTIONS(4437), + [aux_sym__val_number_token1] = ACTIONS(3676), + [aux_sym__val_number_token2] = ACTIONS(3676), + [aux_sym__val_number_token3] = ACTIONS(3676), + [aux_sym__val_number_token4] = ACTIONS(4439), + [aux_sym__val_number_token5] = ACTIONS(4439), + [aux_sym__val_number_token6] = ACTIONS(4439), + [anon_sym_0b] = ACTIONS(3680), + [anon_sym_0o] = ACTIONS(3682), + [anon_sym_0x] = ACTIONS(3682), + [sym_val_date] = ACTIONS(4441), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym__str_single_quotes] = ACTIONS(1274), + [sym__str_back_ticks] = ACTIONS(1274), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4113), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3538), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1276), }, [1325] = { [sym_comment] = STATE(1325), - [ts_builtin_sym_end] = ACTIONS(1682), - [sym__newline] = ACTIONS(1682), - [anon_sym_SEMI] = ACTIONS(1682), - [anon_sym_PIPE] = ACTIONS(1682), - [anon_sym_err_GT_PIPE] = ACTIONS(1682), - [anon_sym_out_GT_PIPE] = ACTIONS(1682), - [anon_sym_e_GT_PIPE] = ACTIONS(1682), - [anon_sym_o_GT_PIPE] = ACTIONS(1682), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1682), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1682), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1682), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1682), - [anon_sym_LBRACK] = ACTIONS(1682), - [anon_sym_LPAREN] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1680), - [anon_sym_DASH_DASH] = ACTIONS(1682), - [anon_sym_DASH2] = ACTIONS(1680), - [anon_sym_LBRACE] = ACTIONS(1682), - [anon_sym_DOT_DOT] = ACTIONS(1680), - [anon_sym_LPAREN2] = ACTIONS(1682), - [anon_sym_DOT_DOT2] = ACTIONS(1680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1680), - [anon_sym_DOT_DOT_LT] = ACTIONS(1680), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1682), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1682), - [aux_sym__immediate_decimal_token2] = ACTIONS(4560), - [anon_sym_null] = ACTIONS(1682), - [anon_sym_true] = ACTIONS(1682), - [anon_sym_false] = ACTIONS(1682), - [aux_sym__val_number_decimal_token1] = ACTIONS(1680), - [aux_sym__val_number_decimal_token2] = ACTIONS(1682), - [aux_sym__val_number_decimal_token3] = ACTIONS(1682), - [aux_sym__val_number_decimal_token4] = ACTIONS(1682), - [aux_sym__val_number_token1] = ACTIONS(1682), - [aux_sym__val_number_token2] = ACTIONS(1682), - [aux_sym__val_number_token3] = ACTIONS(1682), - [aux_sym__val_number_token4] = ACTIONS(1682), - [aux_sym__val_number_token5] = ACTIONS(1682), - [aux_sym__val_number_token6] = ACTIONS(1682), - [anon_sym_0b] = ACTIONS(1680), - [sym_filesize_unit] = ACTIONS(1682), - [sym_duration_unit] = ACTIONS(1682), - [anon_sym_0o] = ACTIONS(1680), - [anon_sym_0x] = ACTIONS(1680), - [sym_val_date] = ACTIONS(1682), - [anon_sym_DQUOTE] = ACTIONS(1682), - [sym__str_single_quotes] = ACTIONS(1682), - [sym__str_back_ticks] = ACTIONS(1682), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1682), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1682), - [anon_sym_err_GT] = ACTIONS(1680), - [anon_sym_out_GT] = ACTIONS(1680), - [anon_sym_e_GT] = ACTIONS(1680), - [anon_sym_o_GT] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT] = ACTIONS(1680), - [anon_sym_err_GT_GT] = ACTIONS(1682), - [anon_sym_out_GT_GT] = ACTIONS(1682), - [anon_sym_e_GT_GT] = ACTIONS(1682), - [anon_sym_o_GT_GT] = ACTIONS(1682), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1682), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1682), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1682), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1682), - [aux_sym_unquoted_token1] = ACTIONS(1680), - [aux_sym_unquoted_token2] = ACTIONS(1680), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1682), + [sym__newline] = ACTIONS(1514), + [anon_sym_SEMI] = ACTIONS(1514), + [anon_sym_PIPE] = ACTIONS(1514), + [anon_sym_err_GT_PIPE] = ACTIONS(1514), + [anon_sym_out_GT_PIPE] = ACTIONS(1514), + [anon_sym_e_GT_PIPE] = ACTIONS(1514), + [anon_sym_o_GT_PIPE] = ACTIONS(1514), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1514), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1514), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1514), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1514), + [anon_sym_LBRACK] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_RPAREN] = ACTIONS(1514), + [anon_sym_DOLLAR] = ACTIONS(1512), + [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_RBRACE] = ACTIONS(1514), + [anon_sym_DOT_DOT] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [aux_sym__immediate_decimal_token2] = ACTIONS(4445), + [anon_sym_null] = ACTIONS(1514), + [anon_sym_true] = ACTIONS(1514), + [anon_sym_false] = ACTIONS(1514), + [aux_sym__val_number_decimal_token1] = ACTIONS(1512), + [aux_sym__val_number_decimal_token2] = ACTIONS(1514), + [aux_sym__val_number_decimal_token3] = ACTIONS(1514), + [aux_sym__val_number_decimal_token4] = ACTIONS(1514), + [aux_sym__val_number_token1] = ACTIONS(1514), + [aux_sym__val_number_token2] = ACTIONS(1514), + [aux_sym__val_number_token3] = ACTIONS(1514), + [aux_sym__val_number_token4] = ACTIONS(1514), + [aux_sym__val_number_token5] = ACTIONS(1514), + [aux_sym__val_number_token6] = ACTIONS(1514), + [anon_sym_0b] = ACTIONS(1512), + [sym_filesize_unit] = ACTIONS(1514), + [sym_duration_unit] = ACTIONS(1514), + [anon_sym_0o] = ACTIONS(1512), + [anon_sym_0x] = ACTIONS(1512), + [sym_val_date] = ACTIONS(1514), + [anon_sym_DQUOTE] = ACTIONS(1514), + [sym__str_single_quotes] = ACTIONS(1514), + [sym__str_back_ticks] = ACTIONS(1514), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1514), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1514), + [anon_sym_err_GT] = ACTIONS(1512), + [anon_sym_out_GT] = ACTIONS(1512), + [anon_sym_e_GT] = ACTIONS(1512), + [anon_sym_o_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT] = ACTIONS(1512), + [anon_sym_err_GT_GT] = ACTIONS(1514), + [anon_sym_out_GT_GT] = ACTIONS(1514), + [anon_sym_e_GT_GT] = ACTIONS(1514), + [anon_sym_o_GT_GT] = ACTIONS(1514), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1514), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1514), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1514), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1514), + [aux_sym_unquoted_token1] = ACTIONS(1512), + [aux_sym_unquoted_token2] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1514), }, [1326] = { + [sym__val_range] = STATE(7833), + [sym__value] = STATE(5236), + [sym_val_nothing] = STATE(2105), + [sym_val_bool] = STATE(7418), + [sym_val_variable] = STATE(2105), + [sym_val_number] = STATE(2105), + [sym__val_number_decimal] = STATE(5641), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(2105), + [sym_val_filesize] = STATE(2105), + [sym_val_binary] = STATE(2105), + [sym_val_string] = STATE(2105), + [sym__raw_str] = STATE(3793), + [sym__str_double_quotes] = STATE(3793), + [sym_val_interpolated] = STATE(2105), + [sym__inter_single_quotes] = STATE(1875), + [sym__inter_double_quotes] = STATE(1877), + [sym_val_list] = STATE(2105), + [sym_val_record] = STATE(2105), + [sym_val_table] = STATE(2105), + [sym_val_closure] = STATE(2105), + [sym_unquoted] = STATE(5284), + [sym__unquoted_anonymous_prefix] = STATE(7649), [sym_comment] = STATE(1326), - [sym__newline] = ACTIONS(1757), - [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(1755), - [anon_sym_RPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT] = ACTIONS(4562), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1755), - [anon_sym_DOT_DOT_LT] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(4564), - [anon_sym_null] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = 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_err_GT] = ACTIONS(1755), - [anon_sym_out_GT] = ACTIONS(1755), - [anon_sym_e_GT] = ACTIONS(1755), - [anon_sym_o_GT] = ACTIONS(1755), - [anon_sym_err_PLUSout_GT] = ACTIONS(1755), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), - [anon_sym_o_PLUSe_GT] = ACTIONS(1755), - [anon_sym_e_PLUSo_GT] = ACTIONS(1755), - [anon_sym_err_GT_GT] = ACTIONS(1757), - [anon_sym_out_GT_GT] = ACTIONS(1757), - [anon_sym_e_GT_GT] = ACTIONS(1757), - [anon_sym_o_GT_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), - [aux_sym_unquoted_token1] = ACTIONS(1755), - [aux_sym_unquoted_token2] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1757), + [anon_sym_LBRACK] = ACTIONS(3508), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym_DOLLAR] = ACTIONS(3512), + [anon_sym_LBRACE] = ACTIONS(3514), + [anon_sym_DOT_DOT] = ACTIONS(4091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4093), + [anon_sym_DOT_DOT_LT] = ACTIONS(4093), + [anon_sym_null] = ACTIONS(3826), + [anon_sym_true] = ACTIONS(3828), + [anon_sym_false] = ACTIONS(3828), + [aux_sym__val_number_decimal_token1] = ACTIONS(3830), + [aux_sym__val_number_decimal_token2] = ACTIONS(3832), + [aux_sym__val_number_decimal_token3] = ACTIONS(3834), + [aux_sym__val_number_decimal_token4] = ACTIONS(3836), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3838), + [aux_sym__val_number_token5] = ACTIONS(3838), + [aux_sym__val_number_token6] = ACTIONS(3838), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3840), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym__str_single_quotes] = ACTIONS(1274), + [sym__str_back_ticks] = ACTIONS(1274), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3538), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1276), }, [1327] = { + [sym__expr_parenthesized_immediate] = STATE(1687), + [sym__immediate_decimal] = STATE(1691), + [sym_val_variable] = STATE(1687), [sym_comment] = STATE(1327), - [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_GT2] = ACTIONS(966), - [anon_sym_DASH2] = ACTIONS(966), - [anon_sym_in2] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_STAR2] = ACTIONS(966), - [anon_sym_QMARK2] = ACTIONS(4566), - [anon_sym_and2] = ACTIONS(968), - [anon_sym_xor2] = ACTIONS(968), - [anon_sym_or2] = ACTIONS(968), - [anon_sym_not_DASHin2] = ACTIONS(968), - [anon_sym_starts_DASHwith2] = ACTIONS(968), - [anon_sym_ends_DASHwith2] = ACTIONS(968), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(966), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(968), - [anon_sym_STAR_STAR2] = ACTIONS(968), - [anon_sym_PLUS_PLUS2] = ACTIONS(966), - [anon_sym_SLASH2] = ACTIONS(966), - [anon_sym_mod2] = ACTIONS(968), - [anon_sym_SLASH_SLASH2] = ACTIONS(968), - [anon_sym_PLUS2] = ACTIONS(966), - [anon_sym_bit_DASHshl2] = ACTIONS(968), - [anon_sym_bit_DASHshr2] = ACTIONS(968), - [anon_sym_bit_DASHand2] = ACTIONS(968), - [anon_sym_bit_DASHxor2] = ACTIONS(968), - [anon_sym_bit_DASHor2] = ACTIONS(968), - [anon_sym_DOT_DOT2] = ACTIONS(966), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(968), - [anon_sym_DOT_DOT_LT2] = ACTIONS(968), - [anon_sym_COLON2] = ACTIONS(968), - [anon_sym_DOT2] = 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(251), + [sym__newline] = ACTIONS(1532), + [anon_sym_SEMI] = ACTIONS(1532), + [anon_sym_PIPE] = ACTIONS(1532), + [anon_sym_err_GT_PIPE] = ACTIONS(1532), + [anon_sym_out_GT_PIPE] = ACTIONS(1532), + [anon_sym_e_GT_PIPE] = ACTIONS(1532), + [anon_sym_o_GT_PIPE] = ACTIONS(1532), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1532), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1532), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1532), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1532), + [anon_sym_RPAREN] = ACTIONS(1532), + [anon_sym_DOLLAR] = ACTIONS(3618), + [anon_sym_GT2] = ACTIONS(1522), + [anon_sym_DASH2] = ACTIONS(1522), + [anon_sym_in2] = ACTIONS(1532), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_RBRACE] = ACTIONS(1532), + [anon_sym_STAR2] = ACTIONS(1522), + [anon_sym_and2] = ACTIONS(1532), + [anon_sym_xor2] = ACTIONS(1532), + [anon_sym_or2] = ACTIONS(1532), + [anon_sym_not_DASHin2] = ACTIONS(1532), + [anon_sym_has2] = ACTIONS(1532), + [anon_sym_not_DASHhas2] = ACTIONS(1532), + [anon_sym_starts_DASHwith2] = ACTIONS(1532), + [anon_sym_ends_DASHwith2] = ACTIONS(1532), + [anon_sym_EQ_EQ2] = ACTIONS(1532), + [anon_sym_BANG_EQ2] = ACTIONS(1532), + [anon_sym_LT2] = ACTIONS(1522), + [anon_sym_LT_EQ2] = ACTIONS(1532), + [anon_sym_GT_EQ2] = ACTIONS(1532), + [anon_sym_EQ_TILDE2] = ACTIONS(1532), + [anon_sym_BANG_TILDE2] = ACTIONS(1532), + [anon_sym_LPAREN2] = ACTIONS(4207), + [anon_sym_STAR_STAR2] = ACTIONS(1532), + [anon_sym_PLUS_PLUS2] = ACTIONS(1532), + [anon_sym_SLASH2] = ACTIONS(1522), + [anon_sym_mod2] = ACTIONS(1532), + [anon_sym_SLASH_SLASH2] = ACTIONS(1532), + [anon_sym_PLUS2] = ACTIONS(1522), + [anon_sym_bit_DASHshl2] = ACTIONS(1532), + [anon_sym_bit_DASHshr2] = ACTIONS(1532), + [anon_sym_bit_DASHand2] = ACTIONS(1532), + [anon_sym_bit_DASHxor2] = ACTIONS(1532), + [anon_sym_bit_DASHor2] = ACTIONS(1532), + [anon_sym_DOT] = ACTIONS(4447), + [aux_sym__immediate_decimal_token1] = ACTIONS(4211), + [aux_sym__immediate_decimal_token3] = ACTIONS(4211), + [aux_sym__immediate_decimal_token4] = ACTIONS(4213), + [aux_sym__immediate_decimal_token5] = ACTIONS(4215), + [anon_sym_err_GT] = ACTIONS(1522), + [anon_sym_out_GT] = ACTIONS(1522), + [anon_sym_e_GT] = ACTIONS(1522), + [anon_sym_o_GT] = ACTIONS(1522), + [anon_sym_err_PLUSout_GT] = ACTIONS(1522), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1522), + [anon_sym_o_PLUSe_GT] = ACTIONS(1522), + [anon_sym_e_PLUSo_GT] = ACTIONS(1522), + [anon_sym_err_GT_GT] = ACTIONS(1532), + [anon_sym_out_GT_GT] = ACTIONS(1532), + [anon_sym_e_GT_GT] = ACTIONS(1532), + [anon_sym_o_GT_GT] = ACTIONS(1532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1532), + [anon_sym_POUND] = ACTIONS(247), }, [1328] = { + [sym_path] = STATE(1391), [sym_comment] = STATE(1328), + [aux_sym_cell_path_repeat1] = STATE(1328), + [ts_builtin_sym_end] = ACTIONS(937), + [anon_sym_EQ] = ACTIONS(935), + [anon_sym_PLUS_EQ] = ACTIONS(937), + [anon_sym_DASH_EQ] = ACTIONS(937), + [anon_sym_STAR_EQ] = ACTIONS(937), + [anon_sym_SLASH_EQ] = ACTIONS(937), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(937), + [sym__newline] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(937), + [anon_sym_err_GT_PIPE] = ACTIONS(937), + [anon_sym_out_GT_PIPE] = ACTIONS(937), + [anon_sym_e_GT_PIPE] = ACTIONS(937), + [anon_sym_o_GT_PIPE] = ACTIONS(937), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(937), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(937), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(937), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(937), + [anon_sym_GT2] = ACTIONS(935), + [anon_sym_DASH2] = ACTIONS(935), + [anon_sym_in2] = ACTIONS(937), + [anon_sym_STAR2] = ACTIONS(935), + [anon_sym_and2] = ACTIONS(937), + [anon_sym_xor2] = ACTIONS(937), + [anon_sym_or2] = ACTIONS(937), + [anon_sym_not_DASHin2] = ACTIONS(937), + [anon_sym_has2] = ACTIONS(937), + [anon_sym_not_DASHhas2] = ACTIONS(937), + [anon_sym_starts_DASHwith2] = ACTIONS(937), + [anon_sym_ends_DASHwith2] = ACTIONS(937), + [anon_sym_EQ_EQ2] = ACTIONS(937), + [anon_sym_BANG_EQ2] = ACTIONS(937), + [anon_sym_LT2] = ACTIONS(935), + [anon_sym_LT_EQ2] = ACTIONS(937), + [anon_sym_GT_EQ2] = ACTIONS(937), + [anon_sym_EQ_TILDE2] = ACTIONS(937), + [anon_sym_BANG_TILDE2] = ACTIONS(937), + [anon_sym_STAR_STAR2] = ACTIONS(937), + [anon_sym_PLUS_PLUS2] = ACTIONS(935), + [anon_sym_SLASH2] = ACTIONS(935), + [anon_sym_mod2] = ACTIONS(937), + [anon_sym_SLASH_SLASH2] = ACTIONS(937), + [anon_sym_PLUS2] = ACTIONS(935), + [anon_sym_bit_DASHshl2] = ACTIONS(937), + [anon_sym_bit_DASHshr2] = ACTIONS(937), + [anon_sym_bit_DASHand2] = ACTIONS(937), + [anon_sym_bit_DASHxor2] = ACTIONS(937), + [anon_sym_bit_DASHor2] = ACTIONS(937), + [anon_sym_DOT_DOT2] = ACTIONS(935), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(937), + [anon_sym_DOT_DOT_LT2] = ACTIONS(937), + [anon_sym_DOT2] = ACTIONS(4449), + [anon_sym_err_GT] = ACTIONS(935), + [anon_sym_out_GT] = ACTIONS(935), + [anon_sym_e_GT] = ACTIONS(935), + [anon_sym_o_GT] = ACTIONS(935), + [anon_sym_err_PLUSout_GT] = ACTIONS(935), + [anon_sym_out_PLUSerr_GT] = ACTIONS(935), + [anon_sym_o_PLUSe_GT] = ACTIONS(935), + [anon_sym_e_PLUSo_GT] = ACTIONS(935), + [anon_sym_err_GT_GT] = ACTIONS(937), + [anon_sym_out_GT_GT] = ACTIONS(937), + [anon_sym_e_GT_GT] = ACTIONS(937), + [anon_sym_o_GT_GT] = ACTIONS(937), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(937), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(937), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(937), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(937), + [anon_sym_POUND] = ACTIONS(247), + }, + [1329] = { + [sym__expr_parenthesized_immediate] = STATE(1798), + [sym__immediate_decimal] = STATE(1799), + [sym_val_variable] = STATE(1798), + [sym_comment] = STATE(1329), + [sym__newline] = ACTIONS(1582), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_PIPE] = ACTIONS(1582), + [anon_sym_err_GT_PIPE] = ACTIONS(1582), + [anon_sym_out_GT_PIPE] = ACTIONS(1582), + [anon_sym_e_GT_PIPE] = ACTIONS(1582), + [anon_sym_o_GT_PIPE] = ACTIONS(1582), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1582), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1582), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1582), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1582), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_RPAREN] = ACTIONS(1582), + [anon_sym_DOLLAR] = ACTIONS(3985), + [anon_sym_DASH_DASH] = ACTIONS(1582), + [anon_sym_DASH2] = ACTIONS(1580), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_DOT_DOT] = ACTIONS(1580), + [anon_sym_LPAREN2] = ACTIONS(3987), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1582), + [anon_sym_DOT_DOT_LT] = ACTIONS(1582), + [aux_sym__immediate_decimal_token1] = ACTIONS(4029), + [aux_sym__immediate_decimal_token3] = ACTIONS(4031), + [aux_sym__immediate_decimal_token4] = ACTIONS(4033), + [aux_sym__immediate_decimal_token5] = ACTIONS(4035), + [anon_sym_null] = ACTIONS(1582), + [anon_sym_true] = ACTIONS(1582), + [anon_sym_false] = ACTIONS(1582), + [aux_sym__val_number_decimal_token1] = ACTIONS(1580), + [aux_sym__val_number_decimal_token2] = ACTIONS(1580), + [aux_sym__val_number_decimal_token3] = ACTIONS(1580), + [aux_sym__val_number_decimal_token4] = ACTIONS(1580), + [aux_sym__val_number_token1] = ACTIONS(1582), + [aux_sym__val_number_token2] = ACTIONS(1582), + [aux_sym__val_number_token3] = ACTIONS(1582), + [aux_sym__val_number_token4] = ACTIONS(1582), + [aux_sym__val_number_token5] = ACTIONS(1582), + [aux_sym__val_number_token6] = ACTIONS(1582), + [anon_sym_0b] = ACTIONS(1580), + [anon_sym_0o] = ACTIONS(1580), + [anon_sym_0x] = ACTIONS(1580), + [sym_val_date] = ACTIONS(1582), + [anon_sym_DQUOTE] = ACTIONS(1582), + [sym__str_single_quotes] = ACTIONS(1582), + [sym__str_back_ticks] = ACTIONS(1582), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1582), + [anon_sym_err_GT] = ACTIONS(1580), + [anon_sym_out_GT] = ACTIONS(1580), + [anon_sym_e_GT] = ACTIONS(1580), + [anon_sym_o_GT] = ACTIONS(1580), + [anon_sym_err_PLUSout_GT] = ACTIONS(1580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1580), + [anon_sym_o_PLUSe_GT] = ACTIONS(1580), + [anon_sym_e_PLUSo_GT] = ACTIONS(1580), + [anon_sym_err_GT_GT] = ACTIONS(1582), + [anon_sym_out_GT_GT] = ACTIONS(1582), + [anon_sym_e_GT_GT] = ACTIONS(1582), + [anon_sym_o_GT_GT] = ACTIONS(1582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1582), + [aux_sym_unquoted_token1] = ACTIONS(1580), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1582), + }, + [1330] = { + [sym__expr_parenthesized_immediate] = STATE(7413), + [sym_comment] = STATE(1330), + [sym__newline] = ACTIONS(1651), + [anon_sym_SEMI] = ACTIONS(1651), + [anon_sym_PIPE] = ACTIONS(1651), + [anon_sym_err_GT_PIPE] = ACTIONS(1651), + [anon_sym_out_GT_PIPE] = ACTIONS(1651), + [anon_sym_e_GT_PIPE] = ACTIONS(1651), + [anon_sym_o_GT_PIPE] = ACTIONS(1651), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1651), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1651), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1651), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1651), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_RPAREN] = ACTIONS(1651), + [anon_sym_DOLLAR] = ACTIONS(1639), + [anon_sym_DASH_DASH] = ACTIONS(1651), + [anon_sym_DASH2] = ACTIONS(1639), + [anon_sym_LBRACE] = ACTIONS(1651), + [anon_sym_RBRACE] = ACTIONS(1651), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(4452), + [anon_sym_DOT_DOT2] = ACTIONS(4454), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1639), + [anon_sym_DOT_DOT_LT] = ACTIONS(1639), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4456), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4456), + [anon_sym_null] = ACTIONS(1651), + [anon_sym_true] = ACTIONS(1651), + [anon_sym_false] = ACTIONS(1651), + [aux_sym__val_number_decimal_token1] = ACTIONS(1639), + [aux_sym__val_number_decimal_token2] = ACTIONS(1651), + [aux_sym__val_number_decimal_token3] = ACTIONS(1651), + [aux_sym__val_number_decimal_token4] = ACTIONS(1651), + [aux_sym__val_number_token1] = ACTIONS(1651), + [aux_sym__val_number_token2] = ACTIONS(1651), + [aux_sym__val_number_token3] = ACTIONS(1651), + [aux_sym__val_number_token4] = ACTIONS(1651), + [aux_sym__val_number_token5] = ACTIONS(1651), + [aux_sym__val_number_token6] = ACTIONS(1651), + [anon_sym_0b] = ACTIONS(1639), + [sym_filesize_unit] = ACTIONS(4458), + [sym_duration_unit] = ACTIONS(4460), + [anon_sym_0o] = ACTIONS(1639), + [anon_sym_0x] = ACTIONS(1639), + [sym_val_date] = ACTIONS(1651), + [anon_sym_DQUOTE] = ACTIONS(1651), + [sym__str_single_quotes] = ACTIONS(1651), + [sym__str_back_ticks] = ACTIONS(1651), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1651), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1651), + [anon_sym_err_GT] = ACTIONS(1639), + [anon_sym_out_GT] = ACTIONS(1639), + [anon_sym_e_GT] = ACTIONS(1639), + [anon_sym_o_GT] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT] = ACTIONS(1639), + [anon_sym_err_GT_GT] = ACTIONS(1651), + [anon_sym_out_GT_GT] = ACTIONS(1651), + [anon_sym_e_GT_GT] = ACTIONS(1651), + [anon_sym_o_GT_GT] = ACTIONS(1651), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1651), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1651), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1651), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1651), + [aux_sym_unquoted_token1] = ACTIONS(1639), + [aux_sym_unquoted_token2] = ACTIONS(4462), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1651), + }, + [1331] = { + [sym__expr_parenthesized_immediate] = STATE(7444), + [sym_comment] = STATE(1331), + [ts_builtin_sym_end] = ACTIONS(1651), + [sym__newline] = ACTIONS(1651), + [anon_sym_SEMI] = ACTIONS(1651), + [anon_sym_PIPE] = ACTIONS(1651), + [anon_sym_err_GT_PIPE] = ACTIONS(1651), + [anon_sym_out_GT_PIPE] = ACTIONS(1651), + [anon_sym_e_GT_PIPE] = ACTIONS(1651), + [anon_sym_o_GT_PIPE] = ACTIONS(1651), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1651), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1651), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1651), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1651), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_DOLLAR] = ACTIONS(1639), + [anon_sym_DASH_DASH] = ACTIONS(1651), + [anon_sym_DASH2] = ACTIONS(1639), + [anon_sym_LBRACE] = ACTIONS(1651), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(4452), + [anon_sym_DOT_DOT2] = ACTIONS(4464), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1639), + [anon_sym_DOT_DOT_LT] = ACTIONS(1639), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4466), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4466), + [anon_sym_null] = ACTIONS(1651), + [anon_sym_true] = ACTIONS(1651), + [anon_sym_false] = ACTIONS(1651), + [aux_sym__val_number_decimal_token1] = ACTIONS(1639), + [aux_sym__val_number_decimal_token2] = ACTIONS(1651), + [aux_sym__val_number_decimal_token3] = ACTIONS(1651), + [aux_sym__val_number_decimal_token4] = ACTIONS(1651), + [aux_sym__val_number_token1] = ACTIONS(1651), + [aux_sym__val_number_token2] = ACTIONS(1651), + [aux_sym__val_number_token3] = ACTIONS(1651), + [aux_sym__val_number_token4] = ACTIONS(1651), + [aux_sym__val_number_token5] = ACTIONS(1651), + [aux_sym__val_number_token6] = ACTIONS(1651), + [anon_sym_0b] = ACTIONS(1639), + [sym_filesize_unit] = ACTIONS(4468), + [sym_duration_unit] = ACTIONS(4470), + [anon_sym_0o] = ACTIONS(1639), + [anon_sym_0x] = ACTIONS(1639), + [sym_val_date] = ACTIONS(1651), + [anon_sym_DQUOTE] = ACTIONS(1651), + [sym__str_single_quotes] = ACTIONS(1651), + [sym__str_back_ticks] = ACTIONS(1651), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1651), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1651), + [anon_sym_err_GT] = ACTIONS(1639), + [anon_sym_out_GT] = ACTIONS(1639), + [anon_sym_e_GT] = ACTIONS(1639), + [anon_sym_o_GT] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT] = ACTIONS(1639), + [anon_sym_err_GT_GT] = ACTIONS(1651), + [anon_sym_out_GT_GT] = ACTIONS(1651), + [anon_sym_e_GT_GT] = ACTIONS(1651), + [anon_sym_o_GT_GT] = ACTIONS(1651), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1651), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1651), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1651), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1651), + [aux_sym_unquoted_token1] = ACTIONS(1639), + [aux_sym_unquoted_token2] = ACTIONS(4472), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1651), + }, + [1332] = { + [sym__expr_parenthesized_immediate] = STATE(2062), + [sym__immediate_decimal] = STATE(2063), + [sym_val_variable] = STATE(2062), + [sym_comment] = STATE(1332), + [ts_builtin_sym_end] = ACTIONS(1586), + [sym__newline] = ACTIONS(1586), + [anon_sym_SEMI] = ACTIONS(1586), + [anon_sym_PIPE] = ACTIONS(1586), + [anon_sym_err_GT_PIPE] = ACTIONS(1586), + [anon_sym_out_GT_PIPE] = ACTIONS(1586), + [anon_sym_e_GT_PIPE] = ACTIONS(1586), + [anon_sym_o_GT_PIPE] = ACTIONS(1586), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1586), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1586), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1586), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1586), + [anon_sym_LBRACK] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_DOLLAR] = ACTIONS(4157), + [anon_sym_DASH_DASH] = ACTIONS(1586), + [anon_sym_DASH2] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_DOT_DOT] = ACTIONS(1584), + [anon_sym_LPAREN2] = ACTIONS(4159), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1586), + [anon_sym_DOT_DOT_LT] = ACTIONS(1586), + [aux_sym__immediate_decimal_token1] = ACTIONS(4474), + [aux_sym__immediate_decimal_token3] = ACTIONS(4476), + [aux_sym__immediate_decimal_token4] = ACTIONS(4478), + [aux_sym__immediate_decimal_token5] = ACTIONS(4480), + [anon_sym_null] = ACTIONS(1586), + [anon_sym_true] = ACTIONS(1586), + [anon_sym_false] = ACTIONS(1586), + [aux_sym__val_number_decimal_token1] = ACTIONS(1584), + [aux_sym__val_number_decimal_token2] = ACTIONS(1584), + [aux_sym__val_number_decimal_token3] = ACTIONS(1584), + [aux_sym__val_number_decimal_token4] = ACTIONS(1584), + [aux_sym__val_number_token1] = ACTIONS(1586), + [aux_sym__val_number_token2] = ACTIONS(1586), + [aux_sym__val_number_token3] = ACTIONS(1586), + [aux_sym__val_number_token4] = ACTIONS(1586), + [aux_sym__val_number_token5] = ACTIONS(1586), + [aux_sym__val_number_token6] = ACTIONS(1586), + [anon_sym_0b] = ACTIONS(1584), + [anon_sym_0o] = ACTIONS(1584), + [anon_sym_0x] = ACTIONS(1584), + [sym_val_date] = ACTIONS(1586), + [anon_sym_DQUOTE] = ACTIONS(1586), + [sym__str_single_quotes] = ACTIONS(1586), + [sym__str_back_ticks] = ACTIONS(1586), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1586), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1586), + [anon_sym_err_GT] = ACTIONS(1584), + [anon_sym_out_GT] = ACTIONS(1584), + [anon_sym_e_GT] = ACTIONS(1584), + [anon_sym_o_GT] = ACTIONS(1584), + [anon_sym_err_PLUSout_GT] = ACTIONS(1584), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1584), + [anon_sym_o_PLUSe_GT] = ACTIONS(1584), + [anon_sym_e_PLUSo_GT] = ACTIONS(1584), + [anon_sym_err_GT_GT] = ACTIONS(1586), + [anon_sym_out_GT_GT] = ACTIONS(1586), + [anon_sym_e_GT_GT] = ACTIONS(1586), + [anon_sym_o_GT_GT] = ACTIONS(1586), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1586), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1586), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1586), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1586), + [aux_sym_unquoted_token1] = ACTIONS(1584), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1586), + }, + [1333] = { + [sym__expr_parenthesized_immediate] = STATE(2064), + [sym__immediate_decimal] = STATE(2137), + [sym_val_variable] = STATE(2064), + [sym_comment] = STATE(1333), + [ts_builtin_sym_end] = ACTIONS(1590), + [sym__newline] = ACTIONS(1590), + [anon_sym_SEMI] = ACTIONS(1590), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_err_GT_PIPE] = ACTIONS(1590), + [anon_sym_out_GT_PIPE] = ACTIONS(1590), + [anon_sym_e_GT_PIPE] = ACTIONS(1590), + [anon_sym_o_GT_PIPE] = ACTIONS(1590), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1590), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1590), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1590), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(1588), + [anon_sym_DOLLAR] = ACTIONS(4157), + [anon_sym_DASH_DASH] = ACTIONS(1590), + [anon_sym_DASH2] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_DOT_DOT] = ACTIONS(1588), + [anon_sym_LPAREN2] = ACTIONS(4159), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1590), + [anon_sym_DOT_DOT_LT] = ACTIONS(1590), + [aux_sym__immediate_decimal_token1] = ACTIONS(4474), + [aux_sym__immediate_decimal_token3] = ACTIONS(4476), + [aux_sym__immediate_decimal_token4] = ACTIONS(4478), + [aux_sym__immediate_decimal_token5] = ACTIONS(4480), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_true] = ACTIONS(1590), + [anon_sym_false] = ACTIONS(1590), + [aux_sym__val_number_decimal_token1] = ACTIONS(1588), + [aux_sym__val_number_decimal_token2] = ACTIONS(1588), + [aux_sym__val_number_decimal_token3] = ACTIONS(1588), + [aux_sym__val_number_decimal_token4] = ACTIONS(1588), + [aux_sym__val_number_token1] = ACTIONS(1590), + [aux_sym__val_number_token2] = ACTIONS(1590), + [aux_sym__val_number_token3] = ACTIONS(1590), + [aux_sym__val_number_token4] = ACTIONS(1590), + [aux_sym__val_number_token5] = ACTIONS(1590), + [aux_sym__val_number_token6] = ACTIONS(1590), + [anon_sym_0b] = ACTIONS(1588), + [anon_sym_0o] = ACTIONS(1588), + [anon_sym_0x] = ACTIONS(1588), + [sym_val_date] = ACTIONS(1590), + [anon_sym_DQUOTE] = ACTIONS(1590), + [sym__str_single_quotes] = ACTIONS(1590), + [sym__str_back_ticks] = ACTIONS(1590), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1590), + [anon_sym_err_GT] = ACTIONS(1588), + [anon_sym_out_GT] = ACTIONS(1588), + [anon_sym_e_GT] = ACTIONS(1588), + [anon_sym_o_GT] = ACTIONS(1588), + [anon_sym_err_PLUSout_GT] = ACTIONS(1588), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1588), + [anon_sym_o_PLUSe_GT] = ACTIONS(1588), + [anon_sym_e_PLUSo_GT] = ACTIONS(1588), + [anon_sym_err_GT_GT] = ACTIONS(1590), + [anon_sym_out_GT_GT] = ACTIONS(1590), + [anon_sym_e_GT_GT] = ACTIONS(1590), + [anon_sym_o_GT_GT] = ACTIONS(1590), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1590), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1590), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1590), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1590), + [aux_sym_unquoted_token1] = ACTIONS(1588), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1590), + }, + [1334] = { + [sym__expr_parenthesized_immediate] = STATE(1814), + [sym__immediate_decimal] = STATE(1816), + [sym_val_variable] = STATE(1814), + [sym_comment] = STATE(1334), + [sym__newline] = ACTIONS(1582), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_PIPE] = ACTIONS(1582), + [anon_sym_err_GT_PIPE] = ACTIONS(1582), + [anon_sym_out_GT_PIPE] = ACTIONS(1582), + [anon_sym_e_GT_PIPE] = ACTIONS(1582), + [anon_sym_o_GT_PIPE] = ACTIONS(1582), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1582), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1582), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1582), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1582), + [anon_sym_RPAREN] = ACTIONS(1582), + [anon_sym_DOLLAR] = ACTIONS(3618), + [anon_sym_GT2] = ACTIONS(1580), + [anon_sym_DASH2] = ACTIONS(1580), + [anon_sym_in2] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_STAR2] = ACTIONS(1580), + [anon_sym_and2] = ACTIONS(1582), + [anon_sym_xor2] = ACTIONS(1582), + [anon_sym_or2] = ACTIONS(1582), + [anon_sym_not_DASHin2] = ACTIONS(1582), + [anon_sym_has2] = ACTIONS(1582), + [anon_sym_not_DASHhas2] = ACTIONS(1582), + [anon_sym_starts_DASHwith2] = ACTIONS(1582), + [anon_sym_ends_DASHwith2] = ACTIONS(1582), + [anon_sym_EQ_EQ2] = ACTIONS(1582), + [anon_sym_BANG_EQ2] = ACTIONS(1582), + [anon_sym_LT2] = ACTIONS(1580), + [anon_sym_LT_EQ2] = ACTIONS(1582), + [anon_sym_GT_EQ2] = ACTIONS(1582), + [anon_sym_EQ_TILDE2] = ACTIONS(1582), + [anon_sym_BANG_TILDE2] = ACTIONS(1582), + [anon_sym_LPAREN2] = ACTIONS(4207), + [anon_sym_STAR_STAR2] = ACTIONS(1582), + [anon_sym_PLUS_PLUS2] = ACTIONS(1582), + [anon_sym_SLASH2] = ACTIONS(1580), + [anon_sym_mod2] = ACTIONS(1582), + [anon_sym_SLASH_SLASH2] = ACTIONS(1582), + [anon_sym_PLUS2] = ACTIONS(1580), + [anon_sym_bit_DASHshl2] = ACTIONS(1582), + [anon_sym_bit_DASHshr2] = ACTIONS(1582), + [anon_sym_bit_DASHand2] = ACTIONS(1582), + [anon_sym_bit_DASHxor2] = ACTIONS(1582), + [anon_sym_bit_DASHor2] = ACTIONS(1582), + [aux_sym__immediate_decimal_token1] = ACTIONS(4482), + [aux_sym__immediate_decimal_token3] = ACTIONS(4482), + [aux_sym__immediate_decimal_token4] = ACTIONS(4213), + [aux_sym__immediate_decimal_token5] = ACTIONS(4215), + [anon_sym_err_GT] = ACTIONS(1580), + [anon_sym_out_GT] = ACTIONS(1580), + [anon_sym_e_GT] = ACTIONS(1580), + [anon_sym_o_GT] = ACTIONS(1580), + [anon_sym_err_PLUSout_GT] = ACTIONS(1580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1580), + [anon_sym_o_PLUSe_GT] = ACTIONS(1580), + [anon_sym_e_PLUSo_GT] = ACTIONS(1580), + [anon_sym_err_GT_GT] = ACTIONS(1582), + [anon_sym_out_GT_GT] = ACTIONS(1582), + [anon_sym_e_GT_GT] = ACTIONS(1582), + [anon_sym_o_GT_GT] = ACTIONS(1582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1582), + [anon_sym_POUND] = ACTIONS(247), + }, + [1335] = { + [sym_comment] = STATE(1335), + [sym__newline] = ACTIONS(1514), + [anon_sym_SEMI] = ACTIONS(1514), + [anon_sym_PIPE] = ACTIONS(1514), + [anon_sym_err_GT_PIPE] = ACTIONS(1514), + [anon_sym_out_GT_PIPE] = ACTIONS(1514), + [anon_sym_e_GT_PIPE] = ACTIONS(1514), + [anon_sym_o_GT_PIPE] = ACTIONS(1514), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1514), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1514), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1514), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1514), + [anon_sym_LBRACK] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_RPAREN] = ACTIONS(1514), + [anon_sym_DOLLAR] = ACTIONS(1512), + [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_RBRACE] = ACTIONS(1514), + [anon_sym_DOT_DOT] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [aux_sym__immediate_decimal_token2] = ACTIONS(4445), + [anon_sym_null] = ACTIONS(1514), + [anon_sym_true] = ACTIONS(1514), + [anon_sym_false] = ACTIONS(1514), + [aux_sym__val_number_decimal_token1] = ACTIONS(1512), + [aux_sym__val_number_decimal_token2] = ACTIONS(1514), + [aux_sym__val_number_decimal_token3] = ACTIONS(1514), + [aux_sym__val_number_decimal_token4] = ACTIONS(1514), + [aux_sym__val_number_token1] = ACTIONS(1514), + [aux_sym__val_number_token2] = ACTIONS(1514), + [aux_sym__val_number_token3] = ACTIONS(1514), + [aux_sym__val_number_token4] = ACTIONS(1514), + [aux_sym__val_number_token5] = ACTIONS(1514), + [aux_sym__val_number_token6] = ACTIONS(1514), + [anon_sym_0b] = ACTIONS(1512), + [sym_filesize_unit] = ACTIONS(1514), + [sym_duration_unit] = ACTIONS(1514), + [anon_sym_0o] = ACTIONS(1512), + [anon_sym_0x] = ACTIONS(1512), + [sym_val_date] = ACTIONS(1514), + [anon_sym_DQUOTE] = ACTIONS(1514), + [sym__str_single_quotes] = ACTIONS(1514), + [sym__str_back_ticks] = ACTIONS(1514), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1514), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1514), + [anon_sym_err_GT] = ACTIONS(1512), + [anon_sym_out_GT] = ACTIONS(1512), + [anon_sym_e_GT] = ACTIONS(1512), + [anon_sym_o_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT] = ACTIONS(1512), + [anon_sym_err_GT_GT] = ACTIONS(1514), + [anon_sym_out_GT_GT] = ACTIONS(1514), + [anon_sym_e_GT_GT] = ACTIONS(1514), + [anon_sym_o_GT_GT] = ACTIONS(1514), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1514), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1514), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1514), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1514), + [aux_sym_unquoted_token1] = ACTIONS(1512), + [aux_sym_unquoted_token2] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1514), + }, + [1336] = { + [sym__expr_parenthesized_immediate] = STATE(2091), + [sym__immediate_decimal] = STATE(1718), + [sym_val_variable] = STATE(2091), + [sym_comment] = STATE(1336), + [ts_builtin_sym_end] = 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_DOLLAR] = ACTIONS(4484), + [anon_sym_GT2] = ACTIONS(1441), + [anon_sym_DASH2] = ACTIONS(1441), + [anon_sym_in2] = ACTIONS(1455), + [anon_sym_STAR2] = ACTIONS(1441), + [anon_sym_and2] = ACTIONS(1455), + [anon_sym_xor2] = ACTIONS(1455), + [anon_sym_or2] = ACTIONS(1455), + [anon_sym_not_DASHin2] = ACTIONS(1455), + [anon_sym_has2] = ACTIONS(1455), + [anon_sym_not_DASHhas2] = ACTIONS(1455), + [anon_sym_starts_DASHwith2] = ACTIONS(1455), + [anon_sym_ends_DASHwith2] = ACTIONS(1455), + [anon_sym_EQ_EQ2] = ACTIONS(1455), + [anon_sym_BANG_EQ2] = ACTIONS(1455), + [anon_sym_LT2] = ACTIONS(1441), + [anon_sym_LT_EQ2] = ACTIONS(1455), + [anon_sym_GT_EQ2] = ACTIONS(1455), + [anon_sym_EQ_TILDE2] = ACTIONS(1455), + [anon_sym_BANG_TILDE2] = ACTIONS(1455), + [anon_sym_LPAREN2] = ACTIONS(4486), + [anon_sym_STAR_STAR2] = ACTIONS(1455), + [anon_sym_PLUS_PLUS2] = ACTIONS(1455), + [anon_sym_SLASH2] = ACTIONS(1441), + [anon_sym_mod2] = ACTIONS(1455), + [anon_sym_SLASH_SLASH2] = ACTIONS(1455), + [anon_sym_PLUS2] = ACTIONS(1441), + [anon_sym_bit_DASHshl2] = ACTIONS(1455), + [anon_sym_bit_DASHshr2] = ACTIONS(1455), + [anon_sym_bit_DASHand2] = ACTIONS(1455), + [anon_sym_bit_DASHxor2] = ACTIONS(1455), + [anon_sym_bit_DASHor2] = ACTIONS(1455), + [anon_sym_DOT] = ACTIONS(4488), + [aux_sym__immediate_decimal_token1] = ACTIONS(4490), + [aux_sym__immediate_decimal_token3] = ACTIONS(4490), + [aux_sym__immediate_decimal_token4] = ACTIONS(4492), + [aux_sym__immediate_decimal_token5] = ACTIONS(4494), + [anon_sym_err_GT] = ACTIONS(1441), + [anon_sym_out_GT] = ACTIONS(1441), + [anon_sym_e_GT] = ACTIONS(1441), + [anon_sym_o_GT] = ACTIONS(1441), + [anon_sym_err_PLUSout_GT] = ACTIONS(1441), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1441), + [anon_sym_o_PLUSe_GT] = ACTIONS(1441), + [anon_sym_e_PLUSo_GT] = ACTIONS(1441), + [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_token2] = ACTIONS(1457), + [anon_sym_POUND] = ACTIONS(247), + }, + [1337] = { + [sym_comment] = STATE(1337), + [ts_builtin_sym_end] = ACTIONS(962), [anon_sym_EQ] = ACTIONS(960), [anon_sym_PLUS_EQ] = ACTIONS(962), [anon_sym_DASH_EQ] = ACTIONS(962), @@ -210929,17 +212032,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(962), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(962), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(962), - [anon_sym_RPAREN] = ACTIONS(962), [anon_sym_GT2] = ACTIONS(960), [anon_sym_DASH2] = ACTIONS(960), [anon_sym_in2] = ACTIONS(962), - [anon_sym_RBRACE] = ACTIONS(962), [anon_sym_STAR2] = ACTIONS(960), - [anon_sym_QMARK2] = ACTIONS(4568), + [anon_sym_QMARK2] = ACTIONS(962), [anon_sym_and2] = ACTIONS(962), [anon_sym_xor2] = ACTIONS(962), [anon_sym_or2] = ACTIONS(962), [anon_sym_not_DASHin2] = ACTIONS(962), + [anon_sym_has2] = ACTIONS(962), + [anon_sym_not_DASHhas2] = ACTIONS(962), [anon_sym_starts_DASHwith2] = ACTIONS(962), [anon_sym_ends_DASHwith2] = ACTIONS(962), [anon_sym_EQ_EQ2] = ACTIONS(962), @@ -210963,7 +212066,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(960), [anon_sym_DOT_DOT_EQ2] = ACTIONS(962), [anon_sym_DOT_DOT_LT2] = ACTIONS(962), - [anon_sym_COLON2] = ACTIONS(962), [anon_sym_DOT2] = ACTIONS(960), [anon_sym_err_GT] = ACTIONS(960), [anon_sym_out_GT] = ACTIONS(960), @@ -210981,3618 +212083,4003 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(962), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(962), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(962), - [anon_sym_POUND] = ACTIONS(251), - }, - [1329] = { - [sym_comment] = STATE(1329), - [sym__newline] = ACTIONS(1544), - [anon_sym_SEMI] = ACTIONS(1544), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_err_GT_PIPE] = ACTIONS(1544), - [anon_sym_out_GT_PIPE] = ACTIONS(1544), - [anon_sym_e_GT_PIPE] = ACTIONS(1544), - [anon_sym_o_GT_PIPE] = ACTIONS(1544), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1544), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1544), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1544), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1544), - [anon_sym_LPAREN] = ACTIONS(1542), - [anon_sym_RPAREN] = ACTIONS(1544), - [anon_sym_DOLLAR] = ACTIONS(1542), - [anon_sym_DASH_DASH] = ACTIONS(1544), - [anon_sym_DASH2] = ACTIONS(1542), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_RBRACE] = ACTIONS(1544), - [anon_sym_DOT_DOT] = ACTIONS(1542), - [anon_sym_LPAREN2] = ACTIONS(1544), - [anon_sym_DOT_DOT2] = ACTIONS(1542), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1542), - [anon_sym_DOT_DOT_LT] = ACTIONS(1542), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1544), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1544), - [anon_sym_null] = ACTIONS(1544), - [anon_sym_true] = ACTIONS(1544), - [anon_sym_false] = ACTIONS(1544), - [aux_sym__val_number_decimal_token1] = ACTIONS(1542), - [aux_sym__val_number_decimal_token2] = ACTIONS(1544), - [aux_sym__val_number_decimal_token3] = ACTIONS(1544), - [aux_sym__val_number_decimal_token4] = ACTIONS(1544), - [aux_sym__val_number_token1] = ACTIONS(1544), - [aux_sym__val_number_token2] = ACTIONS(1544), - [aux_sym__val_number_token3] = ACTIONS(1544), - [aux_sym__val_number_token4] = ACTIONS(1544), - [aux_sym__val_number_token5] = ACTIONS(1544), - [aux_sym__val_number_token6] = ACTIONS(1544), - [anon_sym_0b] = ACTIONS(1542), - [sym_filesize_unit] = ACTIONS(1544), - [sym_duration_unit] = ACTIONS(1544), - [anon_sym_0o] = ACTIONS(1542), - [anon_sym_0x] = ACTIONS(1542), - [sym_val_date] = ACTIONS(1544), - [anon_sym_DQUOTE] = ACTIONS(1544), - [sym__str_single_quotes] = ACTIONS(1544), - [sym__str_back_ticks] = ACTIONS(1544), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1544), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1544), - [anon_sym_err_GT] = ACTIONS(1542), - [anon_sym_out_GT] = ACTIONS(1542), - [anon_sym_e_GT] = ACTIONS(1542), - [anon_sym_o_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT] = ACTIONS(1542), - [anon_sym_err_GT_GT] = ACTIONS(1544), - [anon_sym_out_GT_GT] = ACTIONS(1544), - [anon_sym_e_GT_GT] = ACTIONS(1544), - [anon_sym_o_GT_GT] = ACTIONS(1544), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1544), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1544), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1544), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1544), - [aux_sym_unquoted_token1] = ACTIONS(1542), - [aux_sym_unquoted_token2] = ACTIONS(1542), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1544), - }, - [1330] = { - [sym_cell_path] = STATE(1516), - [sym_path] = STATE(1468), - [sym_comment] = STATE(1330), - [aux_sym_cell_path_repeat1] = STATE(1367), - [sym__newline] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1699), - [anon_sym_PIPE] = ACTIONS(1699), - [anon_sym_err_GT_PIPE] = ACTIONS(1699), - [anon_sym_out_GT_PIPE] = ACTIONS(1699), - [anon_sym_e_GT_PIPE] = ACTIONS(1699), - [anon_sym_o_GT_PIPE] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1699), - [anon_sym_LBRACK] = ACTIONS(1699), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_RPAREN] = ACTIONS(1699), - [anon_sym_DOLLAR] = ACTIONS(1697), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_DASH2] = ACTIONS(1697), - [anon_sym_LBRACE] = ACTIONS(1699), - [anon_sym_RBRACE] = ACTIONS(1699), - [anon_sym_DOT_DOT] = ACTIONS(1697), - [anon_sym_DOT_DOT2] = ACTIONS(1697), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1697), - [anon_sym_DOT_DOT_LT] = ACTIONS(1697), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1699), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1699), - [anon_sym_null] = ACTIONS(1699), - [anon_sym_true] = ACTIONS(1699), - [anon_sym_false] = ACTIONS(1699), - [aux_sym__val_number_decimal_token1] = ACTIONS(1697), - [aux_sym__val_number_decimal_token2] = ACTIONS(1699), - [aux_sym__val_number_decimal_token3] = ACTIONS(1699), - [aux_sym__val_number_decimal_token4] = ACTIONS(1699), - [aux_sym__val_number_token1] = ACTIONS(1699), - [aux_sym__val_number_token2] = ACTIONS(1699), - [aux_sym__val_number_token3] = ACTIONS(1699), - [aux_sym__val_number_token4] = ACTIONS(1699), - [aux_sym__val_number_token5] = ACTIONS(1699), - [aux_sym__val_number_token6] = ACTIONS(1699), - [anon_sym_0b] = ACTIONS(1697), - [anon_sym_0o] = ACTIONS(1697), - [anon_sym_0x] = ACTIONS(1697), - [sym_val_date] = ACTIONS(1699), - [anon_sym_DQUOTE] = ACTIONS(1699), - [sym__str_single_quotes] = ACTIONS(1699), - [sym__str_back_ticks] = ACTIONS(1699), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1699), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1699), - [anon_sym_DOT2] = ACTIONS(4457), - [anon_sym_err_GT] = ACTIONS(1697), - [anon_sym_out_GT] = ACTIONS(1697), - [anon_sym_e_GT] = ACTIONS(1697), - [anon_sym_o_GT] = ACTIONS(1697), - [anon_sym_err_PLUSout_GT] = ACTIONS(1697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1697), - [anon_sym_o_PLUSe_GT] = ACTIONS(1697), - [anon_sym_e_PLUSo_GT] = ACTIONS(1697), - [anon_sym_err_GT_GT] = ACTIONS(1699), - [anon_sym_out_GT_GT] = ACTIONS(1699), - [anon_sym_e_GT_GT] = ACTIONS(1699), - [anon_sym_o_GT_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1699), - [aux_sym_unquoted_token1] = ACTIONS(1697), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1699), - }, - [1331] = { - [sym__expr_parenthesized_immediate] = STATE(1920), - [sym__immediate_decimal] = STATE(1921), - [sym_val_variable] = STATE(1920), - [sym_comment] = STATE(1331), - [ts_builtin_sym_end] = ACTIONS(1510), - [sym__newline] = ACTIONS(1510), - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1510), - [anon_sym_err_GT_PIPE] = ACTIONS(1510), - [anon_sym_out_GT_PIPE] = ACTIONS(1510), - [anon_sym_e_GT_PIPE] = ACTIONS(1510), - [anon_sym_o_GT_PIPE] = ACTIONS(1510), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1510), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1510), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1510), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1500), - [anon_sym_DOLLAR] = ACTIONS(4120), - [anon_sym_DASH_DASH] = ACTIONS(1510), - [anon_sym_DASH2] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1510), - [anon_sym_DOT_DOT] = ACTIONS(1500), - [anon_sym_LPAREN2] = ACTIONS(4122), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1510), - [anon_sym_DOT_DOT_LT] = ACTIONS(1510), - [aux_sym__immediate_decimal_token1] = ACTIONS(4471), - [aux_sym__immediate_decimal_token3] = ACTIONS(4473), - [aux_sym__immediate_decimal_token4] = ACTIONS(4475), - [aux_sym__immediate_decimal_token5] = ACTIONS(4477), - [anon_sym_null] = ACTIONS(1510), - [anon_sym_true] = ACTIONS(1510), - [anon_sym_false] = ACTIONS(1510), - [aux_sym__val_number_decimal_token1] = ACTIONS(1500), - [aux_sym__val_number_decimal_token2] = ACTIONS(1500), - [aux_sym__val_number_decimal_token3] = ACTIONS(1500), - [aux_sym__val_number_decimal_token4] = ACTIONS(1500), - [aux_sym__val_number_token1] = ACTIONS(1510), - [aux_sym__val_number_token2] = ACTIONS(1510), - [aux_sym__val_number_token3] = ACTIONS(1510), - [aux_sym__val_number_token4] = ACTIONS(1510), - [aux_sym__val_number_token5] = ACTIONS(1510), - [aux_sym__val_number_token6] = ACTIONS(1510), - [anon_sym_0b] = ACTIONS(1500), - [anon_sym_0o] = ACTIONS(1500), - [anon_sym_0x] = ACTIONS(1500), - [sym_val_date] = ACTIONS(1510), - [anon_sym_DQUOTE] = ACTIONS(1510), - [sym__str_single_quotes] = ACTIONS(1510), - [sym__str_back_ticks] = ACTIONS(1510), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1510), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1510), - [anon_sym_err_GT] = ACTIONS(1500), - [anon_sym_out_GT] = ACTIONS(1500), - [anon_sym_e_GT] = ACTIONS(1500), - [anon_sym_o_GT] = ACTIONS(1500), - [anon_sym_err_PLUSout_GT] = ACTIONS(1500), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1500), - [anon_sym_o_PLUSe_GT] = ACTIONS(1500), - [anon_sym_e_PLUSo_GT] = ACTIONS(1500), - [anon_sym_err_GT_GT] = ACTIONS(1510), - [anon_sym_out_GT_GT] = ACTIONS(1510), - [anon_sym_e_GT_GT] = ACTIONS(1510), - [anon_sym_o_GT_GT] = ACTIONS(1510), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1510), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1510), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1510), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1510), - [aux_sym_unquoted_token1] = ACTIONS(1500), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1510), - }, - [1332] = { - [sym_comment] = STATE(1332), - [anon_sym_EQ] = ACTIONS(972), - [anon_sym_PLUS_EQ] = ACTIONS(974), - [anon_sym_DASH_EQ] = ACTIONS(974), - [anon_sym_STAR_EQ] = ACTIONS(974), - [anon_sym_SLASH_EQ] = ACTIONS(974), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(974), - [sym__newline] = ACTIONS(974), - [anon_sym_SEMI] = ACTIONS(974), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_err_GT_PIPE] = ACTIONS(974), - [anon_sym_out_GT_PIPE] = ACTIONS(974), - [anon_sym_e_GT_PIPE] = ACTIONS(974), - [anon_sym_o_GT_PIPE] = ACTIONS(974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(974), - [anon_sym_GT2] = ACTIONS(972), - [anon_sym_DASH2] = ACTIONS(972), - [anon_sym_in2] = ACTIONS(974), - [anon_sym_RBRACE] = ACTIONS(974), - [anon_sym_STAR2] = ACTIONS(972), - [anon_sym_QMARK2] = ACTIONS(974), - [anon_sym_and2] = ACTIONS(974), - [anon_sym_xor2] = ACTIONS(974), - [anon_sym_or2] = ACTIONS(974), - [anon_sym_not_DASHin2] = ACTIONS(974), - [anon_sym_starts_DASHwith2] = ACTIONS(974), - [anon_sym_ends_DASHwith2] = ACTIONS(974), - [anon_sym_EQ_EQ2] = ACTIONS(974), - [anon_sym_BANG_EQ2] = ACTIONS(974), - [anon_sym_LT2] = ACTIONS(972), - [anon_sym_LT_EQ2] = ACTIONS(974), - [anon_sym_GT_EQ2] = ACTIONS(974), - [anon_sym_EQ_TILDE2] = ACTIONS(974), - [anon_sym_BANG_TILDE2] = ACTIONS(974), - [anon_sym_STAR_STAR2] = ACTIONS(974), - [anon_sym_PLUS_PLUS2] = ACTIONS(972), - [anon_sym_SLASH2] = ACTIONS(972), - [anon_sym_mod2] = ACTIONS(974), - [anon_sym_SLASH_SLASH2] = ACTIONS(974), - [anon_sym_PLUS2] = ACTIONS(972), - [anon_sym_bit_DASHshl2] = ACTIONS(974), - [anon_sym_bit_DASHshr2] = ACTIONS(974), - [anon_sym_bit_DASHand2] = ACTIONS(974), - [anon_sym_bit_DASHxor2] = ACTIONS(974), - [anon_sym_bit_DASHor2] = ACTIONS(974), - [anon_sym_DOT_DOT2] = ACTIONS(972), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(974), - [anon_sym_DOT_DOT_LT2] = ACTIONS(974), - [anon_sym_COLON2] = ACTIONS(974), - [anon_sym_DOT2] = ACTIONS(972), - [anon_sym_err_GT] = ACTIONS(972), - [anon_sym_out_GT] = ACTIONS(972), - [anon_sym_e_GT] = ACTIONS(972), - [anon_sym_o_GT] = ACTIONS(972), - [anon_sym_err_PLUSout_GT] = ACTIONS(972), - [anon_sym_out_PLUSerr_GT] = ACTIONS(972), - [anon_sym_o_PLUSe_GT] = ACTIONS(972), - [anon_sym_e_PLUSo_GT] = ACTIONS(972), - [anon_sym_err_GT_GT] = ACTIONS(974), - [anon_sym_out_GT_GT] = ACTIONS(974), - [anon_sym_e_GT_GT] = ACTIONS(974), - [anon_sym_o_GT_GT] = ACTIONS(974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(974), - [anon_sym_POUND] = ACTIONS(251), - }, - [1333] = { - [sym_comment] = STATE(1333), - [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_GT2] = ACTIONS(976), - [anon_sym_DASH2] = ACTIONS(976), - [anon_sym_in2] = ACTIONS(978), - [anon_sym_RBRACE] = ACTIONS(978), - [anon_sym_STAR2] = ACTIONS(976), - [anon_sym_QMARK2] = ACTIONS(978), - [anon_sym_and2] = ACTIONS(978), - [anon_sym_xor2] = ACTIONS(978), - [anon_sym_or2] = ACTIONS(978), - [anon_sym_not_DASHin2] = ACTIONS(978), - [anon_sym_starts_DASHwith2] = ACTIONS(978), - [anon_sym_ends_DASHwith2] = ACTIONS(978), - [anon_sym_EQ_EQ2] = ACTIONS(978), - [anon_sym_BANG_EQ2] = ACTIONS(978), - [anon_sym_LT2] = ACTIONS(976), - [anon_sym_LT_EQ2] = ACTIONS(978), - [anon_sym_GT_EQ2] = ACTIONS(978), - [anon_sym_EQ_TILDE2] = ACTIONS(978), - [anon_sym_BANG_TILDE2] = ACTIONS(978), - [anon_sym_STAR_STAR2] = ACTIONS(978), - [anon_sym_PLUS_PLUS2] = ACTIONS(976), - [anon_sym_SLASH2] = ACTIONS(976), - [anon_sym_mod2] = ACTIONS(978), - [anon_sym_SLASH_SLASH2] = ACTIONS(978), - [anon_sym_PLUS2] = ACTIONS(976), - [anon_sym_bit_DASHshl2] = ACTIONS(978), - [anon_sym_bit_DASHshr2] = ACTIONS(978), - [anon_sym_bit_DASHand2] = ACTIONS(978), - [anon_sym_bit_DASHxor2] = ACTIONS(978), - [anon_sym_bit_DASHor2] = ACTIONS(978), - [anon_sym_DOT_DOT2] = ACTIONS(976), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), - [anon_sym_DOT_DOT_LT2] = ACTIONS(978), - [anon_sym_COLON2] = ACTIONS(978), - [anon_sym_DOT2] = 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(251), - }, - [1334] = { - [sym_comment] = STATE(1334), - [anon_sym_EQ] = ACTIONS(984), - [anon_sym_PLUS_EQ] = ACTIONS(986), - [anon_sym_DASH_EQ] = ACTIONS(986), - [anon_sym_STAR_EQ] = ACTIONS(986), - [anon_sym_SLASH_EQ] = ACTIONS(986), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(986), - [sym__newline] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_PIPE] = ACTIONS(986), - [anon_sym_err_GT_PIPE] = ACTIONS(986), - [anon_sym_out_GT_PIPE] = ACTIONS(986), - [anon_sym_e_GT_PIPE] = ACTIONS(986), - [anon_sym_o_GT_PIPE] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), - [anon_sym_RPAREN] = ACTIONS(986), - [anon_sym_GT2] = ACTIONS(984), - [anon_sym_DASH2] = ACTIONS(984), - [anon_sym_in2] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(986), - [anon_sym_STAR2] = ACTIONS(984), - [anon_sym_QMARK2] = ACTIONS(986), - [anon_sym_and2] = ACTIONS(986), - [anon_sym_xor2] = ACTIONS(986), - [anon_sym_or2] = ACTIONS(986), - [anon_sym_not_DASHin2] = ACTIONS(986), - [anon_sym_starts_DASHwith2] = ACTIONS(986), - [anon_sym_ends_DASHwith2] = ACTIONS(986), - [anon_sym_EQ_EQ2] = ACTIONS(986), - [anon_sym_BANG_EQ2] = ACTIONS(986), - [anon_sym_LT2] = ACTIONS(984), - [anon_sym_LT_EQ2] = ACTIONS(986), - [anon_sym_GT_EQ2] = ACTIONS(986), - [anon_sym_EQ_TILDE2] = ACTIONS(986), - [anon_sym_BANG_TILDE2] = ACTIONS(986), - [anon_sym_STAR_STAR2] = ACTIONS(986), - [anon_sym_PLUS_PLUS2] = ACTIONS(984), - [anon_sym_SLASH2] = ACTIONS(984), - [anon_sym_mod2] = ACTIONS(986), - [anon_sym_SLASH_SLASH2] = ACTIONS(986), - [anon_sym_PLUS2] = ACTIONS(984), - [anon_sym_bit_DASHshl2] = ACTIONS(986), - [anon_sym_bit_DASHshr2] = ACTIONS(986), - [anon_sym_bit_DASHand2] = ACTIONS(986), - [anon_sym_bit_DASHxor2] = ACTIONS(986), - [anon_sym_bit_DASHor2] = ACTIONS(986), - [anon_sym_DOT_DOT2] = ACTIONS(984), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), - [anon_sym_DOT_DOT_LT2] = ACTIONS(986), - [anon_sym_COLON2] = ACTIONS(986), - [anon_sym_DOT2] = ACTIONS(984), - [anon_sym_err_GT] = ACTIONS(984), - [anon_sym_out_GT] = ACTIONS(984), - [anon_sym_e_GT] = ACTIONS(984), - [anon_sym_o_GT] = ACTIONS(984), - [anon_sym_err_PLUSout_GT] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT] = ACTIONS(984), - [anon_sym_o_PLUSe_GT] = ACTIONS(984), - [anon_sym_e_PLUSo_GT] = ACTIONS(984), - [anon_sym_err_GT_GT] = ACTIONS(986), - [anon_sym_out_GT_GT] = ACTIONS(986), - [anon_sym_e_GT_GT] = ACTIONS(986), - [anon_sym_o_GT_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), - [anon_sym_POUND] = ACTIONS(251), - }, - [1335] = { - [sym_comment] = STATE(1335), - [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_GT2] = ACTIONS(980), - [anon_sym_DASH2] = ACTIONS(980), - [anon_sym_in2] = ACTIONS(982), - [anon_sym_RBRACE] = ACTIONS(982), - [anon_sym_STAR2] = ACTIONS(980), - [anon_sym_QMARK2] = ACTIONS(982), - [anon_sym_and2] = ACTIONS(982), - [anon_sym_xor2] = ACTIONS(982), - [anon_sym_or2] = ACTIONS(982), - [anon_sym_not_DASHin2] = ACTIONS(982), - [anon_sym_starts_DASHwith2] = ACTIONS(982), - [anon_sym_ends_DASHwith2] = ACTIONS(982), - [anon_sym_EQ_EQ2] = ACTIONS(982), - [anon_sym_BANG_EQ2] = ACTIONS(982), - [anon_sym_LT2] = ACTIONS(980), - [anon_sym_LT_EQ2] = ACTIONS(982), - [anon_sym_GT_EQ2] = ACTIONS(982), - [anon_sym_EQ_TILDE2] = ACTIONS(982), - [anon_sym_BANG_TILDE2] = ACTIONS(982), - [anon_sym_STAR_STAR2] = ACTIONS(982), - [anon_sym_PLUS_PLUS2] = ACTIONS(980), - [anon_sym_SLASH2] = ACTIONS(980), - [anon_sym_mod2] = ACTIONS(982), - [anon_sym_SLASH_SLASH2] = ACTIONS(982), - [anon_sym_PLUS2] = ACTIONS(980), - [anon_sym_bit_DASHshl2] = ACTIONS(982), - [anon_sym_bit_DASHshr2] = ACTIONS(982), - [anon_sym_bit_DASHand2] = ACTIONS(982), - [anon_sym_bit_DASHxor2] = ACTIONS(982), - [anon_sym_bit_DASHor2] = ACTIONS(982), - [anon_sym_DOT_DOT2] = ACTIONS(980), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(982), - [anon_sym_DOT_DOT_LT2] = ACTIONS(982), - [anon_sym_COLON2] = ACTIONS(982), - [anon_sym_DOT2] = 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(251), - }, - [1336] = { - [sym_cell_path] = STATE(1512), - [sym_path] = STATE(1468), - [sym_comment] = STATE(1336), - [aux_sym_cell_path_repeat1] = STATE(1367), - [sym__newline] = ACTIONS(945), - [anon_sym_SEMI] = ACTIONS(945), - [anon_sym_PIPE] = ACTIONS(945), - [anon_sym_err_GT_PIPE] = ACTIONS(945), - [anon_sym_out_GT_PIPE] = ACTIONS(945), - [anon_sym_e_GT_PIPE] = ACTIONS(945), - [anon_sym_o_GT_PIPE] = ACTIONS(945), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(945), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(945), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(945), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(945), - [anon_sym_LBRACK] = ACTIONS(945), - [anon_sym_LPAREN] = ACTIONS(945), - [anon_sym_RPAREN] = ACTIONS(945), - [anon_sym_DOLLAR] = ACTIONS(943), - [anon_sym_DASH_DASH] = ACTIONS(945), - [anon_sym_DASH2] = ACTIONS(943), - [anon_sym_LBRACE] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(945), - [anon_sym_DOT_DOT] = ACTIONS(943), - [anon_sym_DOT_DOT2] = ACTIONS(943), - [anon_sym_DOT_DOT_EQ] = ACTIONS(943), - [anon_sym_DOT_DOT_LT] = ACTIONS(943), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(945), - [anon_sym_DOT_DOT_LT2] = ACTIONS(945), - [anon_sym_null] = ACTIONS(945), - [anon_sym_true] = ACTIONS(945), - [anon_sym_false] = ACTIONS(945), - [aux_sym__val_number_decimal_token1] = ACTIONS(943), - [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), - [aux_sym__val_number_token4] = ACTIONS(945), - [aux_sym__val_number_token5] = ACTIONS(945), - [aux_sym__val_number_token6] = ACTIONS(945), - [anon_sym_0b] = ACTIONS(943), - [anon_sym_0o] = ACTIONS(943), - [anon_sym_0x] = ACTIONS(943), - [sym_val_date] = ACTIONS(945), - [anon_sym_DQUOTE] = ACTIONS(945), - [sym__str_single_quotes] = ACTIONS(945), - [sym__str_back_ticks] = ACTIONS(945), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(945), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(945), - [anon_sym_DOT2] = ACTIONS(4457), - [anon_sym_err_GT] = ACTIONS(943), - [anon_sym_out_GT] = ACTIONS(943), - [anon_sym_e_GT] = ACTIONS(943), - [anon_sym_o_GT] = ACTIONS(943), - [anon_sym_err_PLUSout_GT] = ACTIONS(943), - [anon_sym_out_PLUSerr_GT] = ACTIONS(943), - [anon_sym_o_PLUSe_GT] = ACTIONS(943), - [anon_sym_e_PLUSo_GT] = ACTIONS(943), - [anon_sym_err_GT_GT] = ACTIONS(945), - [anon_sym_out_GT_GT] = ACTIONS(945), - [anon_sym_e_GT_GT] = ACTIONS(945), - [anon_sym_o_GT_GT] = ACTIONS(945), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(945), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(945), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(945), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(945), - [aux_sym_unquoted_token1] = ACTIONS(943), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(945), - }, - [1337] = { - [sym_comment] = STATE(1337), - [ts_builtin_sym_end] = ACTIONS(1552), - [sym__newline] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1552), - [anon_sym_PIPE] = ACTIONS(1552), - [anon_sym_err_GT_PIPE] = ACTIONS(1552), - [anon_sym_out_GT_PIPE] = ACTIONS(1552), - [anon_sym_e_GT_PIPE] = ACTIONS(1552), - [anon_sym_o_GT_PIPE] = ACTIONS(1552), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1552), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1552), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1552), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1552), - [anon_sym_LBRACK] = ACTIONS(1552), - [anon_sym_LPAREN] = ACTIONS(1550), - [anon_sym_DOLLAR] = ACTIONS(1550), - [anon_sym_DASH_DASH] = ACTIONS(1552), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_LBRACE] = ACTIONS(1552), - [anon_sym_DOT_DOT] = ACTIONS(1550), - [anon_sym_LPAREN2] = ACTIONS(1552), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1550), - [anon_sym_DOT_DOT_LT] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [aux_sym__immediate_decimal_token2] = ACTIONS(4147), - [anon_sym_null] = ACTIONS(1552), - [anon_sym_true] = ACTIONS(1552), - [anon_sym_false] = ACTIONS(1552), - [aux_sym__val_number_decimal_token1] = ACTIONS(1550), - [aux_sym__val_number_decimal_token2] = ACTIONS(1552), - [aux_sym__val_number_decimal_token3] = ACTIONS(1552), - [aux_sym__val_number_decimal_token4] = ACTIONS(1552), - [aux_sym__val_number_token1] = ACTIONS(1552), - [aux_sym__val_number_token2] = ACTIONS(1552), - [aux_sym__val_number_token3] = ACTIONS(1552), - [aux_sym__val_number_token4] = ACTIONS(1552), - [aux_sym__val_number_token5] = ACTIONS(1552), - [aux_sym__val_number_token6] = ACTIONS(1552), - [anon_sym_0b] = ACTIONS(1550), - [sym_filesize_unit] = ACTIONS(1552), - [sym_duration_unit] = ACTIONS(1552), - [anon_sym_0o] = ACTIONS(1550), - [anon_sym_0x] = ACTIONS(1550), - [sym_val_date] = ACTIONS(1552), - [anon_sym_DQUOTE] = ACTIONS(1552), - [sym__str_single_quotes] = ACTIONS(1552), - [sym__str_back_ticks] = ACTIONS(1552), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1552), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1552), - [anon_sym_err_GT] = ACTIONS(1550), - [anon_sym_out_GT] = ACTIONS(1550), - [anon_sym_e_GT] = ACTIONS(1550), - [anon_sym_o_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT] = ACTIONS(1550), - [anon_sym_err_GT_GT] = ACTIONS(1552), - [anon_sym_out_GT_GT] = ACTIONS(1552), - [anon_sym_e_GT_GT] = ACTIONS(1552), - [anon_sym_o_GT_GT] = ACTIONS(1552), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1552), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1552), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1552), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1552), - [aux_sym_unquoted_token1] = ACTIONS(1550), - [aux_sym_unquoted_token2] = ACTIONS(1550), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1552), + [anon_sym_POUND] = ACTIONS(247), }, [1338] = { + [sym_path] = STATE(1428), [sym_comment] = STATE(1338), - [sym__newline] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1552), - [anon_sym_PIPE] = ACTIONS(1552), - [anon_sym_err_GT_PIPE] = ACTIONS(1552), - [anon_sym_out_GT_PIPE] = ACTIONS(1552), - [anon_sym_e_GT_PIPE] = ACTIONS(1552), - [anon_sym_o_GT_PIPE] = ACTIONS(1552), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1552), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1552), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1552), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1552), - [anon_sym_LBRACK] = ACTIONS(1552), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_RPAREN] = ACTIONS(1552), - [anon_sym_DOLLAR] = ACTIONS(1550), - [anon_sym_DASH_DASH] = ACTIONS(1552), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_LBRACE] = ACTIONS(1552), - [anon_sym_RBRACE] = ACTIONS(1552), - [anon_sym_DOT_DOT] = ACTIONS(1550), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1550), - [anon_sym_DOT_DOT_LT] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [anon_sym_null] = ACTIONS(1552), - [anon_sym_true] = ACTIONS(1552), - [anon_sym_false] = ACTIONS(1552), - [aux_sym__val_number_decimal_token1] = ACTIONS(1550), - [aux_sym__val_number_decimal_token2] = ACTIONS(1552), - [aux_sym__val_number_decimal_token3] = ACTIONS(1552), - [aux_sym__val_number_decimal_token4] = ACTIONS(1552), - [aux_sym__val_number_token1] = ACTIONS(1552), - [aux_sym__val_number_token2] = ACTIONS(1552), - [aux_sym__val_number_token3] = ACTIONS(1552), - [aux_sym__val_number_token4] = ACTIONS(1552), - [aux_sym__val_number_token5] = ACTIONS(1552), - [aux_sym__val_number_token6] = ACTIONS(1552), - [anon_sym_0b] = ACTIONS(1550), - [sym_filesize_unit] = ACTIONS(1552), - [sym_duration_unit] = ACTIONS(1552), - [anon_sym_0o] = ACTIONS(1550), - [anon_sym_0x] = ACTIONS(1550), - [sym_val_date] = ACTIONS(1552), - [anon_sym_DQUOTE] = ACTIONS(1552), - [sym__str_single_quotes] = ACTIONS(1552), - [sym__str_back_ticks] = ACTIONS(1552), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1552), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1552), - [anon_sym_err_GT] = ACTIONS(1550), - [anon_sym_out_GT] = ACTIONS(1550), - [anon_sym_e_GT] = ACTIONS(1550), - [anon_sym_o_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT] = ACTIONS(1550), - [anon_sym_err_GT_GT] = ACTIONS(1552), - [anon_sym_out_GT_GT] = ACTIONS(1552), - [anon_sym_e_GT_GT] = ACTIONS(1552), - [anon_sym_o_GT_GT] = ACTIONS(1552), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1552), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1552), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1552), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1552), - [aux_sym_unquoted_token1] = ACTIONS(1550), - [aux_sym_unquoted_token2] = ACTIONS(1550), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1552), + [aux_sym_cell_path_repeat1] = STATE(1355), + [sym__newline] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(944), + [anon_sym_err_GT_PIPE] = ACTIONS(944), + [anon_sym_out_GT_PIPE] = ACTIONS(944), + [anon_sym_e_GT_PIPE] = ACTIONS(944), + [anon_sym_o_GT_PIPE] = ACTIONS(944), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(944), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(944), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(944), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(944), + [anon_sym_RPAREN] = ACTIONS(944), + [anon_sym_GT2] = ACTIONS(942), + [anon_sym_DASH2] = ACTIONS(944), + [anon_sym_in2] = ACTIONS(944), + [anon_sym_if] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(944), + [anon_sym_EQ_GT] = ACTIONS(944), + [anon_sym_STAR2] = ACTIONS(942), + [anon_sym_and2] = ACTIONS(944), + [anon_sym_xor2] = ACTIONS(944), + [anon_sym_or2] = ACTIONS(944), + [anon_sym_not_DASHin2] = ACTIONS(944), + [anon_sym_has2] = ACTIONS(944), + [anon_sym_not_DASHhas2] = ACTIONS(944), + [anon_sym_starts_DASHwith2] = ACTIONS(944), + [anon_sym_ends_DASHwith2] = ACTIONS(944), + [anon_sym_EQ_EQ2] = ACTIONS(944), + [anon_sym_BANG_EQ2] = ACTIONS(944), + [anon_sym_LT2] = ACTIONS(942), + [anon_sym_LT_EQ2] = ACTIONS(944), + [anon_sym_GT_EQ2] = ACTIONS(944), + [anon_sym_EQ_TILDE2] = ACTIONS(944), + [anon_sym_BANG_TILDE2] = ACTIONS(944), + [anon_sym_STAR_STAR2] = ACTIONS(944), + [anon_sym_PLUS_PLUS2] = ACTIONS(944), + [anon_sym_SLASH2] = ACTIONS(942), + [anon_sym_mod2] = ACTIONS(944), + [anon_sym_SLASH_SLASH2] = ACTIONS(944), + [anon_sym_PLUS2] = ACTIONS(942), + [anon_sym_bit_DASHshl2] = ACTIONS(944), + [anon_sym_bit_DASHshr2] = ACTIONS(944), + [anon_sym_bit_DASHand2] = ACTIONS(944), + [anon_sym_bit_DASHxor2] = ACTIONS(944), + [anon_sym_bit_DASHor2] = ACTIONS(944), + [anon_sym_DOT_DOT2] = ACTIONS(942), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(944), + [anon_sym_DOT_DOT_LT2] = ACTIONS(944), + [anon_sym_COLON2] = ACTIONS(944), + [anon_sym_DOT2] = ACTIONS(4147), + [anon_sym_err_GT] = ACTIONS(942), + [anon_sym_out_GT] = ACTIONS(942), + [anon_sym_e_GT] = ACTIONS(942), + [anon_sym_o_GT] = ACTIONS(942), + [anon_sym_err_PLUSout_GT] = ACTIONS(942), + [anon_sym_out_PLUSerr_GT] = ACTIONS(942), + [anon_sym_o_PLUSe_GT] = ACTIONS(942), + [anon_sym_e_PLUSo_GT] = ACTIONS(942), + [anon_sym_err_GT_GT] = ACTIONS(944), + [anon_sym_out_GT_GT] = ACTIONS(944), + [anon_sym_e_GT_GT] = ACTIONS(944), + [anon_sym_o_GT_GT] = ACTIONS(944), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(944), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(944), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(944), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(944), + [anon_sym_POUND] = ACTIONS(247), }, [1339] = { - [sym_cell_path] = STATE(1589), - [sym_path] = STATE(1532), + [sym_cell_path] = STATE(1595), + [sym_path] = STATE(1428), [sym_comment] = STATE(1339), - [aux_sym_cell_path_repeat1] = STATE(1386), - [sym__newline] = ACTIONS(1721), - [anon_sym_SEMI] = ACTIONS(1721), - [anon_sym_PIPE] = ACTIONS(1721), - [anon_sym_err_GT_PIPE] = ACTIONS(1721), - [anon_sym_out_GT_PIPE] = ACTIONS(1721), - [anon_sym_e_GT_PIPE] = ACTIONS(1721), - [anon_sym_o_GT_PIPE] = ACTIONS(1721), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1721), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1721), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1721), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1721), - [anon_sym_RPAREN] = ACTIONS(1721), - [anon_sym_GT2] = ACTIONS(1719), - [anon_sym_DASH2] = ACTIONS(1721), - [anon_sym_in2] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1721), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_EQ_GT] = ACTIONS(1721), - [anon_sym_STAR2] = ACTIONS(1719), - [anon_sym_and2] = ACTIONS(1721), - [anon_sym_xor2] = ACTIONS(1721), - [anon_sym_or2] = ACTIONS(1721), - [anon_sym_not_DASHin2] = ACTIONS(1721), - [anon_sym_starts_DASHwith2] = ACTIONS(1721), - [anon_sym_ends_DASHwith2] = ACTIONS(1721), - [anon_sym_EQ_EQ2] = ACTIONS(1721), - [anon_sym_BANG_EQ2] = ACTIONS(1721), - [anon_sym_LT2] = ACTIONS(1719), - [anon_sym_LT_EQ2] = ACTIONS(1721), - [anon_sym_GT_EQ2] = ACTIONS(1721), - [anon_sym_EQ_TILDE2] = ACTIONS(1721), - [anon_sym_BANG_TILDE2] = ACTIONS(1721), - [anon_sym_STAR_STAR2] = ACTIONS(1721), - [anon_sym_PLUS_PLUS2] = ACTIONS(1721), - [anon_sym_SLASH2] = ACTIONS(1719), - [anon_sym_mod2] = ACTIONS(1721), - [anon_sym_SLASH_SLASH2] = ACTIONS(1721), - [anon_sym_PLUS2] = ACTIONS(1719), - [anon_sym_bit_DASHshl2] = ACTIONS(1721), - [anon_sym_bit_DASHshr2] = ACTIONS(1721), - [anon_sym_bit_DASHand2] = ACTIONS(1721), - [anon_sym_bit_DASHxor2] = ACTIONS(1721), - [anon_sym_bit_DASHor2] = ACTIONS(1721), - [anon_sym_DOT_DOT2] = ACTIONS(1719), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1721), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1721), - [anon_sym_COLON2] = ACTIONS(1721), - [anon_sym_DOT2] = ACTIONS(4570), - [anon_sym_err_GT] = ACTIONS(1719), - [anon_sym_out_GT] = ACTIONS(1719), - [anon_sym_e_GT] = ACTIONS(1719), - [anon_sym_o_GT] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT] = ACTIONS(1719), - [anon_sym_err_GT_GT] = ACTIONS(1721), - [anon_sym_out_GT_GT] = ACTIONS(1721), - [anon_sym_e_GT_GT] = ACTIONS(1721), - [anon_sym_o_GT_GT] = ACTIONS(1721), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1721), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1721), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1721), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1721), - [anon_sym_POUND] = ACTIONS(251), + [aux_sym_cell_path_repeat1] = STATE(1338), + [sym__newline] = ACTIONS(931), + [anon_sym_SEMI] = ACTIONS(931), + [anon_sym_PIPE] = ACTIONS(931), + [anon_sym_err_GT_PIPE] = ACTIONS(931), + [anon_sym_out_GT_PIPE] = ACTIONS(931), + [anon_sym_e_GT_PIPE] = ACTIONS(931), + [anon_sym_o_GT_PIPE] = ACTIONS(931), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(931), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(931), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(931), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(931), + [anon_sym_GT2] = ACTIONS(929), + [anon_sym_DASH2] = ACTIONS(931), + [anon_sym_in2] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(931), + [anon_sym_RBRACE] = ACTIONS(931), + [anon_sym_EQ_GT] = ACTIONS(931), + [anon_sym_STAR2] = ACTIONS(929), + [anon_sym_and2] = ACTIONS(931), + [anon_sym_xor2] = ACTIONS(931), + [anon_sym_or2] = ACTIONS(931), + [anon_sym_not_DASHin2] = ACTIONS(931), + [anon_sym_has2] = ACTIONS(931), + [anon_sym_not_DASHhas2] = ACTIONS(931), + [anon_sym_starts_DASHwith2] = ACTIONS(931), + [anon_sym_ends_DASHwith2] = ACTIONS(931), + [anon_sym_EQ_EQ2] = ACTIONS(931), + [anon_sym_BANG_EQ2] = ACTIONS(931), + [anon_sym_LT2] = ACTIONS(929), + [anon_sym_LT_EQ2] = ACTIONS(931), + [anon_sym_GT_EQ2] = ACTIONS(931), + [anon_sym_EQ_TILDE2] = ACTIONS(931), + [anon_sym_BANG_TILDE2] = ACTIONS(931), + [anon_sym_STAR_STAR2] = ACTIONS(931), + [anon_sym_PLUS_PLUS2] = ACTIONS(931), + [anon_sym_SLASH2] = ACTIONS(929), + [anon_sym_mod2] = ACTIONS(931), + [anon_sym_SLASH_SLASH2] = ACTIONS(931), + [anon_sym_PLUS2] = ACTIONS(929), + [anon_sym_bit_DASHshl2] = ACTIONS(931), + [anon_sym_bit_DASHshr2] = ACTIONS(931), + [anon_sym_bit_DASHand2] = ACTIONS(931), + [anon_sym_bit_DASHxor2] = ACTIONS(931), + [anon_sym_bit_DASHor2] = ACTIONS(931), + [anon_sym_DOT_DOT2] = ACTIONS(929), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(931), + [anon_sym_DOT_DOT_LT2] = ACTIONS(931), + [anon_sym_DOT2] = ACTIONS(4147), + [anon_sym_err_GT] = ACTIONS(929), + [anon_sym_out_GT] = ACTIONS(929), + [anon_sym_e_GT] = ACTIONS(929), + [anon_sym_o_GT] = ACTIONS(929), + [anon_sym_err_PLUSout_GT] = ACTIONS(929), + [anon_sym_out_PLUSerr_GT] = ACTIONS(929), + [anon_sym_o_PLUSe_GT] = ACTIONS(929), + [anon_sym_e_PLUSo_GT] = ACTIONS(929), + [anon_sym_err_GT_GT] = ACTIONS(931), + [anon_sym_out_GT_GT] = ACTIONS(931), + [anon_sym_e_GT_GT] = ACTIONS(931), + [anon_sym_o_GT_GT] = ACTIONS(931), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(931), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(931), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(931), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(931), + [anon_sym_POUND] = ACTIONS(247), }, [1340] = { [sym_comment] = STATE(1340), - [sym__newline] = ACTIONS(1682), - [anon_sym_SEMI] = ACTIONS(1682), - [anon_sym_PIPE] = ACTIONS(1682), - [anon_sym_err_GT_PIPE] = ACTIONS(1682), - [anon_sym_out_GT_PIPE] = ACTIONS(1682), - [anon_sym_e_GT_PIPE] = ACTIONS(1682), - [anon_sym_o_GT_PIPE] = ACTIONS(1682), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1682), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1682), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1682), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1682), - [anon_sym_LBRACK] = ACTIONS(1682), - [anon_sym_LPAREN] = ACTIONS(1682), - [anon_sym_RPAREN] = ACTIONS(1682), - [anon_sym_DOLLAR] = ACTIONS(1680), - [anon_sym_DASH_DASH] = ACTIONS(1682), - [anon_sym_DASH2] = ACTIONS(1680), - [anon_sym_LBRACE] = ACTIONS(1682), - [anon_sym_RBRACE] = ACTIONS(1682), - [anon_sym_DOT_DOT] = ACTIONS(1680), - [anon_sym_DOT_DOT2] = ACTIONS(1680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1680), - [anon_sym_DOT_DOT_LT] = ACTIONS(1680), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1682), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1682), - [anon_sym_null] = ACTIONS(1682), - [anon_sym_true] = ACTIONS(1682), - [anon_sym_false] = ACTIONS(1682), - [aux_sym__val_number_decimal_token1] = ACTIONS(1680), - [aux_sym__val_number_decimal_token2] = ACTIONS(1682), - [aux_sym__val_number_decimal_token3] = ACTIONS(1682), - [aux_sym__val_number_decimal_token4] = ACTIONS(1682), - [aux_sym__val_number_token1] = ACTIONS(1682), - [aux_sym__val_number_token2] = ACTIONS(1682), - [aux_sym__val_number_token3] = ACTIONS(1682), - [aux_sym__val_number_token4] = ACTIONS(1682), - [aux_sym__val_number_token5] = ACTIONS(1682), - [aux_sym__val_number_token6] = ACTIONS(1682), - [anon_sym_0b] = ACTIONS(1680), - [sym_filesize_unit] = ACTIONS(1682), - [sym_duration_unit] = ACTIONS(1682), - [anon_sym_0o] = ACTIONS(1680), - [anon_sym_0x] = ACTIONS(1680), - [sym_val_date] = ACTIONS(1682), - [anon_sym_DQUOTE] = ACTIONS(1682), - [sym__str_single_quotes] = ACTIONS(1682), - [sym__str_back_ticks] = ACTIONS(1682), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1682), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1682), - [anon_sym_err_GT] = ACTIONS(1680), - [anon_sym_out_GT] = ACTIONS(1680), - [anon_sym_e_GT] = ACTIONS(1680), - [anon_sym_o_GT] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT] = ACTIONS(1680), - [anon_sym_err_GT_GT] = ACTIONS(1682), - [anon_sym_out_GT_GT] = ACTIONS(1682), - [anon_sym_e_GT_GT] = ACTIONS(1682), - [anon_sym_o_GT_GT] = ACTIONS(1682), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1682), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1682), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1682), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1682), - [aux_sym_unquoted_token1] = ACTIONS(1680), - [aux_sym_unquoted_token2] = ACTIONS(1680), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1682), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_RPAREN] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1703), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_DOT_DOT] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT] = ACTIONS(4496), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1701), + [anon_sym_DOT_DOT_LT] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(4498), + [anon_sym_null] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1703), + [aux_sym__val_number_token5] = ACTIONS(1703), + [aux_sym__val_number_token6] = ACTIONS(1703), + [anon_sym_0b] = ACTIONS(1701), + [anon_sym_0o] = ACTIONS(1701), + [anon_sym_0x] = ACTIONS(1701), + [sym_val_date] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [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(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token1] = ACTIONS(1701), + [aux_sym_unquoted_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1703), }, [1341] = { + [sym__expr_parenthesized_immediate] = STATE(1817), + [sym__immediate_decimal] = STATE(1820), + [sym_val_variable] = STATE(1817), [sym_comment] = STATE(1341), - [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(1743), - [anon_sym_DASH_DASH] = ACTIONS(1745), - [anon_sym_DASH2] = ACTIONS(1743), - [anon_sym_LBRACE] = ACTIONS(1745), - [anon_sym_RBRACE] = ACTIONS(1745), - [anon_sym_DOT_DOT] = ACTIONS(1743), - [anon_sym_DOT_DOT2] = ACTIONS(1743), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1743), - [anon_sym_DOT_DOT_LT] = ACTIONS(1743), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1745), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1745), - [anon_sym_null] = ACTIONS(1745), - [anon_sym_true] = ACTIONS(1745), - [anon_sym_false] = ACTIONS(1745), - [aux_sym__val_number_decimal_token1] = ACTIONS(1743), - [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), - [aux_sym__val_number_token4] = ACTIONS(1745), - [aux_sym__val_number_token5] = ACTIONS(1745), - [aux_sym__val_number_token6] = ACTIONS(1745), - [anon_sym_0b] = ACTIONS(1743), - [sym_filesize_unit] = ACTIONS(1745), - [sym_duration_unit] = ACTIONS(1745), - [anon_sym_0o] = ACTIONS(1743), - [anon_sym_0x] = ACTIONS(1743), - [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(1743), - [anon_sym_out_GT] = ACTIONS(1743), - [anon_sym_e_GT] = ACTIONS(1743), - [anon_sym_o_GT] = ACTIONS(1743), - [anon_sym_err_PLUSout_GT] = ACTIONS(1743), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1743), - [anon_sym_o_PLUSe_GT] = ACTIONS(1743), - [anon_sym_e_PLUSo_GT] = ACTIONS(1743), - [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(1743), - [aux_sym_unquoted_token2] = ACTIONS(1743), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1745), + [sym__newline] = ACTIONS(1586), + [anon_sym_SEMI] = ACTIONS(1586), + [anon_sym_PIPE] = ACTIONS(1586), + [anon_sym_err_GT_PIPE] = ACTIONS(1586), + [anon_sym_out_GT_PIPE] = ACTIONS(1586), + [anon_sym_e_GT_PIPE] = ACTIONS(1586), + [anon_sym_o_GT_PIPE] = ACTIONS(1586), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1586), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1586), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1586), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1586), + [anon_sym_RPAREN] = ACTIONS(1586), + [anon_sym_DOLLAR] = ACTIONS(3618), + [anon_sym_GT2] = ACTIONS(1584), + [anon_sym_DASH2] = ACTIONS(1584), + [anon_sym_in2] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1586), + [anon_sym_STAR2] = ACTIONS(1584), + [anon_sym_and2] = ACTIONS(1586), + [anon_sym_xor2] = ACTIONS(1586), + [anon_sym_or2] = ACTIONS(1586), + [anon_sym_not_DASHin2] = ACTIONS(1586), + [anon_sym_has2] = ACTIONS(1586), + [anon_sym_not_DASHhas2] = ACTIONS(1586), + [anon_sym_starts_DASHwith2] = ACTIONS(1586), + [anon_sym_ends_DASHwith2] = ACTIONS(1586), + [anon_sym_EQ_EQ2] = ACTIONS(1586), + [anon_sym_BANG_EQ2] = ACTIONS(1586), + [anon_sym_LT2] = ACTIONS(1584), + [anon_sym_LT_EQ2] = ACTIONS(1586), + [anon_sym_GT_EQ2] = ACTIONS(1586), + [anon_sym_EQ_TILDE2] = ACTIONS(1586), + [anon_sym_BANG_TILDE2] = ACTIONS(1586), + [anon_sym_LPAREN2] = ACTIONS(4207), + [anon_sym_STAR_STAR2] = ACTIONS(1586), + [anon_sym_PLUS_PLUS2] = ACTIONS(1586), + [anon_sym_SLASH2] = ACTIONS(1584), + [anon_sym_mod2] = ACTIONS(1586), + [anon_sym_SLASH_SLASH2] = ACTIONS(1586), + [anon_sym_PLUS2] = ACTIONS(1584), + [anon_sym_bit_DASHshl2] = ACTIONS(1586), + [anon_sym_bit_DASHshr2] = ACTIONS(1586), + [anon_sym_bit_DASHand2] = ACTIONS(1586), + [anon_sym_bit_DASHxor2] = ACTIONS(1586), + [anon_sym_bit_DASHor2] = ACTIONS(1586), + [aux_sym__immediate_decimal_token1] = ACTIONS(4482), + [aux_sym__immediate_decimal_token3] = ACTIONS(4482), + [aux_sym__immediate_decimal_token4] = ACTIONS(4213), + [aux_sym__immediate_decimal_token5] = ACTIONS(4215), + [anon_sym_err_GT] = ACTIONS(1584), + [anon_sym_out_GT] = ACTIONS(1584), + [anon_sym_e_GT] = ACTIONS(1584), + [anon_sym_o_GT] = ACTIONS(1584), + [anon_sym_err_PLUSout_GT] = ACTIONS(1584), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1584), + [anon_sym_o_PLUSe_GT] = ACTIONS(1584), + [anon_sym_e_PLUSo_GT] = ACTIONS(1584), + [anon_sym_err_GT_GT] = ACTIONS(1586), + [anon_sym_out_GT_GT] = ACTIONS(1586), + [anon_sym_e_GT_GT] = ACTIONS(1586), + [anon_sym_o_GT_GT] = ACTIONS(1586), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1586), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1586), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1586), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1586), + [anon_sym_POUND] = ACTIONS(247), }, [1342] = { - [sym_cell_path] = STATE(1580), - [sym_path] = STATE(1527), + [sym_cell_path] = STATE(1559), + [sym_path] = STATE(1471), [sym_comment] = STATE(1342), - [aux_sym_cell_path_repeat1] = STATE(1406), - [ts_builtin_sym_end] = ACTIONS(1699), - [sym__newline] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1699), - [anon_sym_PIPE] = ACTIONS(1699), - [anon_sym_err_GT_PIPE] = ACTIONS(1699), - [anon_sym_out_GT_PIPE] = ACTIONS(1699), - [anon_sym_e_GT_PIPE] = ACTIONS(1699), - [anon_sym_o_GT_PIPE] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1699), - [anon_sym_LBRACK] = ACTIONS(1699), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_DOLLAR] = ACTIONS(1697), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_DASH2] = ACTIONS(1697), - [anon_sym_LBRACE] = ACTIONS(1699), - [anon_sym_DOT_DOT] = ACTIONS(1697), - [anon_sym_DOT_DOT2] = ACTIONS(1697), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1697), - [anon_sym_DOT_DOT_LT] = ACTIONS(1697), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1699), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1699), - [anon_sym_null] = ACTIONS(1699), - [anon_sym_true] = ACTIONS(1699), - [anon_sym_false] = ACTIONS(1699), - [aux_sym__val_number_decimal_token1] = ACTIONS(1697), - [aux_sym__val_number_decimal_token2] = ACTIONS(1699), - [aux_sym__val_number_decimal_token3] = ACTIONS(1699), - [aux_sym__val_number_decimal_token4] = ACTIONS(1699), - [aux_sym__val_number_token1] = ACTIONS(1699), - [aux_sym__val_number_token2] = ACTIONS(1699), - [aux_sym__val_number_token3] = ACTIONS(1699), - [aux_sym__val_number_token4] = ACTIONS(1699), - [aux_sym__val_number_token5] = ACTIONS(1699), - [aux_sym__val_number_token6] = ACTIONS(1699), - [anon_sym_0b] = ACTIONS(1697), - [anon_sym_0o] = ACTIONS(1697), - [anon_sym_0x] = ACTIONS(1697), - [sym_val_date] = ACTIONS(1699), - [anon_sym_DQUOTE] = ACTIONS(1699), - [sym__str_single_quotes] = ACTIONS(1699), - [sym__str_back_ticks] = ACTIONS(1699), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1699), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1699), - [anon_sym_DOT2] = ACTIONS(4572), - [anon_sym_err_GT] = ACTIONS(1697), - [anon_sym_out_GT] = ACTIONS(1697), - [anon_sym_e_GT] = ACTIONS(1697), - [anon_sym_o_GT] = ACTIONS(1697), - [anon_sym_err_PLUSout_GT] = ACTIONS(1697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1697), - [anon_sym_o_PLUSe_GT] = ACTIONS(1697), - [anon_sym_e_PLUSo_GT] = ACTIONS(1697), - [anon_sym_err_GT_GT] = ACTIONS(1699), - [anon_sym_out_GT_GT] = ACTIONS(1699), - [anon_sym_e_GT_GT] = ACTIONS(1699), - [anon_sym_o_GT_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1699), - [aux_sym_unquoted_token1] = ACTIONS(1697), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1699), + [aux_sym_cell_path_repeat1] = STATE(1398), + [sym__newline] = ACTIONS(1668), + [anon_sym_SEMI] = ACTIONS(1668), + [anon_sym_PIPE] = ACTIONS(1668), + [anon_sym_err_GT_PIPE] = ACTIONS(1668), + [anon_sym_out_GT_PIPE] = ACTIONS(1668), + [anon_sym_e_GT_PIPE] = ACTIONS(1668), + [anon_sym_o_GT_PIPE] = ACTIONS(1668), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1668), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1668), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1668), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1668), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_LPAREN] = ACTIONS(1668), + [anon_sym_RPAREN] = ACTIONS(1668), + [anon_sym_DOLLAR] = ACTIONS(1666), + [anon_sym_DASH_DASH] = ACTIONS(1668), + [anon_sym_DASH2] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1668), + [anon_sym_RBRACE] = ACTIONS(1668), + [anon_sym_DOT_DOT] = ACTIONS(1666), + [anon_sym_DOT_DOT2] = ACTIONS(1666), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1666), + [anon_sym_DOT_DOT_LT] = ACTIONS(1666), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), + [anon_sym_null] = ACTIONS(1668), + [anon_sym_true] = ACTIONS(1668), + [anon_sym_false] = ACTIONS(1668), + [aux_sym__val_number_decimal_token1] = ACTIONS(1666), + [aux_sym__val_number_decimal_token2] = ACTIONS(1668), + [aux_sym__val_number_decimal_token3] = ACTIONS(1668), + [aux_sym__val_number_decimal_token4] = ACTIONS(1668), + [aux_sym__val_number_token1] = ACTIONS(1668), + [aux_sym__val_number_token2] = ACTIONS(1668), + [aux_sym__val_number_token3] = ACTIONS(1668), + [aux_sym__val_number_token4] = ACTIONS(1668), + [aux_sym__val_number_token5] = ACTIONS(1668), + [aux_sym__val_number_token6] = ACTIONS(1668), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0o] = ACTIONS(1666), + [anon_sym_0x] = ACTIONS(1666), + [sym_val_date] = ACTIONS(1668), + [anon_sym_DQUOTE] = ACTIONS(1668), + [sym__str_single_quotes] = ACTIONS(1668), + [sym__str_back_ticks] = ACTIONS(1668), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1668), + [anon_sym_DOT2] = ACTIONS(4500), + [anon_sym_err_GT] = ACTIONS(1666), + [anon_sym_out_GT] = ACTIONS(1666), + [anon_sym_e_GT] = ACTIONS(1666), + [anon_sym_o_GT] = ACTIONS(1666), + [anon_sym_err_PLUSout_GT] = ACTIONS(1666), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1666), + [anon_sym_o_PLUSe_GT] = ACTIONS(1666), + [anon_sym_e_PLUSo_GT] = ACTIONS(1666), + [anon_sym_err_GT_GT] = ACTIONS(1668), + [anon_sym_out_GT_GT] = ACTIONS(1668), + [anon_sym_e_GT_GT] = ACTIONS(1668), + [anon_sym_o_GT_GT] = ACTIONS(1668), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1668), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1668), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1668), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1668), + [aux_sym_unquoted_token1] = ACTIONS(1666), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1668), }, [1343] = { + [sym__expr_parenthesized_immediate] = STATE(1780), + [sym__immediate_decimal] = STATE(2004), + [sym_val_variable] = STATE(1780), [sym_comment] = STATE(1343), - [ts_builtin_sym_end] = ACTIONS(1552), - [sym__newline] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1552), - [anon_sym_PIPE] = ACTIONS(1552), - [anon_sym_err_GT_PIPE] = ACTIONS(1552), - [anon_sym_out_GT_PIPE] = ACTIONS(1552), - [anon_sym_e_GT_PIPE] = ACTIONS(1552), - [anon_sym_o_GT_PIPE] = ACTIONS(1552), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1552), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1552), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1552), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1552), - [anon_sym_LBRACK] = ACTIONS(1552), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_DOLLAR] = ACTIONS(1550), - [anon_sym_DASH_DASH] = ACTIONS(1552), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_LBRACE] = ACTIONS(1552), - [anon_sym_DOT_DOT] = ACTIONS(1550), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1550), - [anon_sym_DOT_DOT_LT] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [aux_sym__immediate_decimal_token2] = ACTIONS(4469), - [anon_sym_null] = ACTIONS(1552), - [anon_sym_true] = ACTIONS(1552), - [anon_sym_false] = ACTIONS(1552), - [aux_sym__val_number_decimal_token1] = ACTIONS(1550), - [aux_sym__val_number_decimal_token2] = ACTIONS(1552), - [aux_sym__val_number_decimal_token3] = ACTIONS(1552), - [aux_sym__val_number_decimal_token4] = ACTIONS(1552), - [aux_sym__val_number_token1] = ACTIONS(1552), - [aux_sym__val_number_token2] = ACTIONS(1552), - [aux_sym__val_number_token3] = ACTIONS(1552), - [aux_sym__val_number_token4] = ACTIONS(1552), - [aux_sym__val_number_token5] = ACTIONS(1552), - [aux_sym__val_number_token6] = ACTIONS(1552), - [anon_sym_0b] = ACTIONS(1550), - [sym_filesize_unit] = ACTIONS(1552), - [sym_duration_unit] = ACTIONS(1552), - [anon_sym_0o] = ACTIONS(1550), - [anon_sym_0x] = ACTIONS(1550), - [sym_val_date] = ACTIONS(1552), - [anon_sym_DQUOTE] = ACTIONS(1552), - [sym__str_single_quotes] = ACTIONS(1552), - [sym__str_back_ticks] = ACTIONS(1552), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1552), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1552), - [anon_sym_err_GT] = ACTIONS(1550), - [anon_sym_out_GT] = ACTIONS(1550), - [anon_sym_e_GT] = ACTIONS(1550), - [anon_sym_o_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT] = ACTIONS(1550), - [anon_sym_err_GT_GT] = ACTIONS(1552), - [anon_sym_out_GT_GT] = ACTIONS(1552), - [anon_sym_e_GT_GT] = ACTIONS(1552), - [anon_sym_o_GT_GT] = ACTIONS(1552), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1552), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1552), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1552), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1552), - [aux_sym_unquoted_token1] = ACTIONS(1550), - [aux_sym_unquoted_token2] = ACTIONS(1550), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1552), + [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_RPAREN] = ACTIONS(1455), + [anon_sym_DOLLAR] = ACTIONS(3618), + [anon_sym_GT2] = ACTIONS(1441), + [anon_sym_DASH2] = ACTIONS(1441), + [anon_sym_in2] = ACTIONS(1455), + [anon_sym_RBRACE] = ACTIONS(1455), + [anon_sym_STAR2] = ACTIONS(1441), + [anon_sym_and2] = ACTIONS(1455), + [anon_sym_xor2] = ACTIONS(1455), + [anon_sym_or2] = ACTIONS(1455), + [anon_sym_not_DASHin2] = ACTIONS(1455), + [anon_sym_has2] = ACTIONS(1455), + [anon_sym_not_DASHhas2] = ACTIONS(1455), + [anon_sym_starts_DASHwith2] = ACTIONS(1455), + [anon_sym_ends_DASHwith2] = ACTIONS(1455), + [anon_sym_EQ_EQ2] = ACTIONS(1455), + [anon_sym_BANG_EQ2] = ACTIONS(1455), + [anon_sym_LT2] = ACTIONS(1441), + [anon_sym_LT_EQ2] = ACTIONS(1455), + [anon_sym_GT_EQ2] = ACTIONS(1455), + [anon_sym_EQ_TILDE2] = ACTIONS(1455), + [anon_sym_BANG_TILDE2] = ACTIONS(1455), + [anon_sym_LPAREN2] = ACTIONS(4207), + [anon_sym_STAR_STAR2] = ACTIONS(1455), + [anon_sym_PLUS_PLUS2] = ACTIONS(1455), + [anon_sym_SLASH2] = ACTIONS(1441), + [anon_sym_mod2] = ACTIONS(1455), + [anon_sym_SLASH_SLASH2] = ACTIONS(1455), + [anon_sym_PLUS2] = ACTIONS(1441), + [anon_sym_bit_DASHshl2] = ACTIONS(1455), + [anon_sym_bit_DASHshr2] = ACTIONS(1455), + [anon_sym_bit_DASHand2] = ACTIONS(1455), + [anon_sym_bit_DASHxor2] = ACTIONS(1455), + [anon_sym_bit_DASHor2] = ACTIONS(1455), + [aux_sym__immediate_decimal_token1] = ACTIONS(4502), + [aux_sym__immediate_decimal_token3] = ACTIONS(4502), + [aux_sym__immediate_decimal_token4] = ACTIONS(4504), + [aux_sym__immediate_decimal_token5] = ACTIONS(4506), + [anon_sym_err_GT] = ACTIONS(1441), + [anon_sym_out_GT] = ACTIONS(1441), + [anon_sym_e_GT] = ACTIONS(1441), + [anon_sym_o_GT] = ACTIONS(1441), + [anon_sym_err_PLUSout_GT] = ACTIONS(1441), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1441), + [anon_sym_o_PLUSe_GT] = ACTIONS(1441), + [anon_sym_e_PLUSo_GT] = ACTIONS(1441), + [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_token2] = ACTIONS(1457), + [anon_sym_POUND] = ACTIONS(247), }, [1344] = { + [sym_cell_path] = STATE(1560), + [sym_path] = STATE(1471), [sym_comment] = STATE(1344), - [ts_builtin_sym_end] = ACTIONS(1713), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1713), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_DOT_DOT] = ACTIONS(1711), - [anon_sym_LPAREN2] = ACTIONS(1713), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1711), - [anon_sym_DOT_DOT_LT] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [aux_sym__immediate_decimal_token1] = ACTIONS(4574), - [aux_sym__immediate_decimal_token2] = ACTIONS(4576), - [anon_sym_null] = ACTIONS(1713), - [anon_sym_true] = ACTIONS(1713), - [anon_sym_false] = ACTIONS(1713), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1713), - [aux_sym__val_number_decimal_token3] = ACTIONS(1713), - [aux_sym__val_number_decimal_token4] = ACTIONS(1713), - [aux_sym__val_number_token1] = ACTIONS(1713), - [aux_sym__val_number_token2] = ACTIONS(1713), - [aux_sym__val_number_token3] = ACTIONS(1713), - [aux_sym__val_number_token4] = ACTIONS(1713), - [aux_sym__val_number_token5] = ACTIONS(1713), - [aux_sym__val_number_token6] = ACTIONS(1713), - [anon_sym_0b] = ACTIONS(1711), - [anon_sym_0o] = ACTIONS(1711), - [anon_sym_0x] = ACTIONS(1711), - [sym_val_date] = ACTIONS(1713), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym__str_single_quotes] = ACTIONS(1713), - [sym__str_back_ticks] = ACTIONS(1713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1713), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [aux_sym_unquoted_token1] = ACTIONS(1711), - [aux_sym_unquoted_token2] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1713), + [aux_sym_cell_path_repeat1] = STATE(1398), + [sym__newline] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_PIPE] = ACTIONS(1678), + [anon_sym_err_GT_PIPE] = ACTIONS(1678), + [anon_sym_out_GT_PIPE] = ACTIONS(1678), + [anon_sym_e_GT_PIPE] = ACTIONS(1678), + [anon_sym_o_GT_PIPE] = ACTIONS(1678), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1678), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1678), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1678), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_LPAREN] = ACTIONS(1678), + [anon_sym_RPAREN] = ACTIONS(1678), + [anon_sym_DOLLAR] = ACTIONS(1676), + [anon_sym_DASH_DASH] = ACTIONS(1678), + [anon_sym_DASH2] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_RBRACE] = ACTIONS(1678), + [anon_sym_DOT_DOT] = ACTIONS(1676), + [anon_sym_DOT_DOT2] = ACTIONS(1676), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1676), + [anon_sym_DOT_DOT_LT] = ACTIONS(1676), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1678), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1678), + [anon_sym_null] = ACTIONS(1678), + [anon_sym_true] = ACTIONS(1678), + [anon_sym_false] = ACTIONS(1678), + [aux_sym__val_number_decimal_token1] = ACTIONS(1676), + [aux_sym__val_number_decimal_token2] = ACTIONS(1678), + [aux_sym__val_number_decimal_token3] = ACTIONS(1678), + [aux_sym__val_number_decimal_token4] = ACTIONS(1678), + [aux_sym__val_number_token1] = ACTIONS(1678), + [aux_sym__val_number_token2] = ACTIONS(1678), + [aux_sym__val_number_token3] = ACTIONS(1678), + [aux_sym__val_number_token4] = ACTIONS(1678), + [aux_sym__val_number_token5] = ACTIONS(1678), + [aux_sym__val_number_token6] = ACTIONS(1678), + [anon_sym_0b] = ACTIONS(1676), + [anon_sym_0o] = ACTIONS(1676), + [anon_sym_0x] = ACTIONS(1676), + [sym_val_date] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym__str_single_quotes] = ACTIONS(1678), + [sym__str_back_ticks] = ACTIONS(1678), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1678), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1678), + [anon_sym_DOT2] = ACTIONS(4500), + [anon_sym_err_GT] = ACTIONS(1676), + [anon_sym_out_GT] = ACTIONS(1676), + [anon_sym_e_GT] = ACTIONS(1676), + [anon_sym_o_GT] = ACTIONS(1676), + [anon_sym_err_PLUSout_GT] = ACTIONS(1676), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1676), + [anon_sym_o_PLUSe_GT] = ACTIONS(1676), + [anon_sym_e_PLUSo_GT] = ACTIONS(1676), + [anon_sym_err_GT_GT] = ACTIONS(1678), + [anon_sym_out_GT_GT] = ACTIONS(1678), + [anon_sym_e_GT_GT] = ACTIONS(1678), + [anon_sym_o_GT_GT] = ACTIONS(1678), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1678), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1678), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1678), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1678), + [aux_sym_unquoted_token1] = ACTIONS(1676), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1678), }, [1345] = { - [sym_path] = STATE(1454), + [sym__expr_parenthesized_immediate] = STATE(1823), + [sym__immediate_decimal] = STATE(2033), + [sym_val_variable] = STATE(1823), [sym_comment] = STATE(1345), - [aux_sym_cell_path_repeat1] = STATE(1359), - [ts_builtin_sym_end] = ACTIONS(951), - [anon_sym_EQ] = ACTIONS(949), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(951), - [sym__newline] = ACTIONS(951), - [anon_sym_SEMI] = ACTIONS(951), - [anon_sym_PIPE] = ACTIONS(951), - [anon_sym_err_GT_PIPE] = ACTIONS(951), - [anon_sym_out_GT_PIPE] = ACTIONS(951), - [anon_sym_e_GT_PIPE] = ACTIONS(951), - [anon_sym_o_GT_PIPE] = ACTIONS(951), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(951), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(951), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(951), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(951), - [anon_sym_GT2] = ACTIONS(949), - [anon_sym_DASH2] = ACTIONS(949), - [anon_sym_in2] = ACTIONS(951), - [anon_sym_STAR2] = ACTIONS(949), - [anon_sym_and2] = ACTIONS(951), - [anon_sym_xor2] = ACTIONS(951), - [anon_sym_or2] = ACTIONS(951), - [anon_sym_not_DASHin2] = ACTIONS(951), - [anon_sym_starts_DASHwith2] = ACTIONS(951), - [anon_sym_ends_DASHwith2] = ACTIONS(951), - [anon_sym_EQ_EQ2] = ACTIONS(951), - [anon_sym_BANG_EQ2] = ACTIONS(951), - [anon_sym_LT2] = ACTIONS(949), - [anon_sym_LT_EQ2] = ACTIONS(951), - [anon_sym_GT_EQ2] = ACTIONS(951), - [anon_sym_EQ_TILDE2] = ACTIONS(951), - [anon_sym_BANG_TILDE2] = ACTIONS(951), - [anon_sym_STAR_STAR2] = ACTIONS(951), - [anon_sym_PLUS_PLUS2] = ACTIONS(949), - [anon_sym_SLASH2] = ACTIONS(949), - [anon_sym_mod2] = ACTIONS(951), - [anon_sym_SLASH_SLASH2] = ACTIONS(951), - [anon_sym_PLUS2] = ACTIONS(949), - [anon_sym_bit_DASHshl2] = ACTIONS(951), - [anon_sym_bit_DASHshr2] = ACTIONS(951), - [anon_sym_bit_DASHand2] = ACTIONS(951), - [anon_sym_bit_DASHxor2] = ACTIONS(951), - [anon_sym_bit_DASHor2] = ACTIONS(951), - [anon_sym_DOT_DOT2] = ACTIONS(949), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(951), - [anon_sym_DOT_DOT_LT2] = ACTIONS(951), - [anon_sym_DOT2] = ACTIONS(4465), - [anon_sym_err_GT] = ACTIONS(949), - [anon_sym_out_GT] = ACTIONS(949), - [anon_sym_e_GT] = ACTIONS(949), - [anon_sym_o_GT] = ACTIONS(949), - [anon_sym_err_PLUSout_GT] = ACTIONS(949), - [anon_sym_out_PLUSerr_GT] = ACTIONS(949), - [anon_sym_o_PLUSe_GT] = ACTIONS(949), - [anon_sym_e_PLUSo_GT] = ACTIONS(949), - [anon_sym_err_GT_GT] = ACTIONS(951), - [anon_sym_out_GT_GT] = ACTIONS(951), - [anon_sym_e_GT_GT] = ACTIONS(951), - [anon_sym_o_GT_GT] = ACTIONS(951), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(951), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(951), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(951), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(951), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(1560), + [anon_sym_SEMI] = ACTIONS(1560), + [anon_sym_PIPE] = ACTIONS(1560), + [anon_sym_err_GT_PIPE] = ACTIONS(1560), + [anon_sym_out_GT_PIPE] = ACTIONS(1560), + [anon_sym_e_GT_PIPE] = ACTIONS(1560), + [anon_sym_o_GT_PIPE] = ACTIONS(1560), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1560), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1560), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1560), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(1560), + [anon_sym_DOLLAR] = ACTIONS(3618), + [anon_sym_GT2] = ACTIONS(1558), + [anon_sym_DASH2] = ACTIONS(1558), + [anon_sym_in2] = ACTIONS(1560), + [anon_sym_RBRACE] = ACTIONS(1560), + [anon_sym_STAR2] = ACTIONS(1558), + [anon_sym_and2] = ACTIONS(1560), + [anon_sym_xor2] = ACTIONS(1560), + [anon_sym_or2] = ACTIONS(1560), + [anon_sym_not_DASHin2] = ACTIONS(1560), + [anon_sym_has2] = ACTIONS(1560), + [anon_sym_not_DASHhas2] = ACTIONS(1560), + [anon_sym_starts_DASHwith2] = ACTIONS(1560), + [anon_sym_ends_DASHwith2] = ACTIONS(1560), + [anon_sym_EQ_EQ2] = ACTIONS(1560), + [anon_sym_BANG_EQ2] = ACTIONS(1560), + [anon_sym_LT2] = ACTIONS(1558), + [anon_sym_LT_EQ2] = ACTIONS(1560), + [anon_sym_GT_EQ2] = ACTIONS(1560), + [anon_sym_EQ_TILDE2] = ACTIONS(1560), + [anon_sym_BANG_TILDE2] = ACTIONS(1560), + [anon_sym_LPAREN2] = ACTIONS(4207), + [anon_sym_STAR_STAR2] = ACTIONS(1560), + [anon_sym_PLUS_PLUS2] = ACTIONS(1560), + [anon_sym_SLASH2] = ACTIONS(1558), + [anon_sym_mod2] = ACTIONS(1560), + [anon_sym_SLASH_SLASH2] = ACTIONS(1560), + [anon_sym_PLUS2] = ACTIONS(1558), + [anon_sym_bit_DASHshl2] = ACTIONS(1560), + [anon_sym_bit_DASHshr2] = ACTIONS(1560), + [anon_sym_bit_DASHand2] = ACTIONS(1560), + [anon_sym_bit_DASHxor2] = ACTIONS(1560), + [anon_sym_bit_DASHor2] = ACTIONS(1560), + [aux_sym__immediate_decimal_token1] = ACTIONS(4502), + [aux_sym__immediate_decimal_token3] = ACTIONS(4502), + [aux_sym__immediate_decimal_token4] = ACTIONS(4504), + [aux_sym__immediate_decimal_token5] = ACTIONS(4506), + [anon_sym_err_GT] = ACTIONS(1558), + [anon_sym_out_GT] = ACTIONS(1558), + [anon_sym_e_GT] = ACTIONS(1558), + [anon_sym_o_GT] = ACTIONS(1558), + [anon_sym_err_PLUSout_GT] = ACTIONS(1558), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1558), + [anon_sym_o_PLUSe_GT] = ACTIONS(1558), + [anon_sym_e_PLUSo_GT] = ACTIONS(1558), + [anon_sym_err_GT_GT] = ACTIONS(1560), + [anon_sym_out_GT_GT] = ACTIONS(1560), + [anon_sym_e_GT_GT] = ACTIONS(1560), + [anon_sym_o_GT_GT] = ACTIONS(1560), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1560), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1560), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1560), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1560), + [aux_sym_unquoted_token2] = ACTIONS(1562), + [anon_sym_POUND] = ACTIONS(247), }, [1346] = { + [sym__expr_parenthesized_immediate] = STATE(1821), + [sym__immediate_decimal] = STATE(1822), + [sym_val_variable] = STATE(1821), [sym_comment] = STATE(1346), - [ts_builtin_sym_end] = ACTIONS(1552), - [sym__newline] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1552), - [anon_sym_PIPE] = ACTIONS(1552), - [anon_sym_err_GT_PIPE] = ACTIONS(1552), - [anon_sym_out_GT_PIPE] = ACTIONS(1552), - [anon_sym_e_GT_PIPE] = ACTIONS(1552), - [anon_sym_o_GT_PIPE] = ACTIONS(1552), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1552), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1552), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1552), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1552), - [anon_sym_LBRACK] = ACTIONS(1552), - [anon_sym_LPAREN] = ACTIONS(1550), - [anon_sym_DOLLAR] = ACTIONS(1550), - [anon_sym_DASH_DASH] = ACTIONS(1552), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_LBRACE] = ACTIONS(1552), - [anon_sym_DOT_DOT] = ACTIONS(1550), - [anon_sym_LPAREN2] = ACTIONS(1552), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1550), - [anon_sym_DOT_DOT_LT] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [anon_sym_null] = ACTIONS(1552), - [anon_sym_true] = ACTIONS(1552), - [anon_sym_false] = ACTIONS(1552), - [aux_sym__val_number_decimal_token1] = ACTIONS(1550), - [aux_sym__val_number_decimal_token2] = ACTIONS(1552), - [aux_sym__val_number_decimal_token3] = ACTIONS(1552), - [aux_sym__val_number_decimal_token4] = ACTIONS(1552), - [aux_sym__val_number_token1] = ACTIONS(1552), - [aux_sym__val_number_token2] = ACTIONS(1552), - [aux_sym__val_number_token3] = ACTIONS(1552), - [aux_sym__val_number_token4] = ACTIONS(1552), - [aux_sym__val_number_token5] = ACTIONS(1552), - [aux_sym__val_number_token6] = ACTIONS(1552), - [anon_sym_0b] = ACTIONS(1550), - [sym_filesize_unit] = ACTIONS(1552), - [sym_duration_unit] = ACTIONS(1552), - [anon_sym_0o] = ACTIONS(1550), - [anon_sym_0x] = ACTIONS(1550), - [sym_val_date] = ACTIONS(1552), - [anon_sym_DQUOTE] = ACTIONS(1552), - [sym__str_single_quotes] = ACTIONS(1552), - [sym__str_back_ticks] = ACTIONS(1552), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1552), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1552), - [anon_sym_err_GT] = ACTIONS(1550), - [anon_sym_out_GT] = ACTIONS(1550), - [anon_sym_e_GT] = ACTIONS(1550), - [anon_sym_o_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT] = ACTIONS(1550), - [anon_sym_err_GT_GT] = ACTIONS(1552), - [anon_sym_out_GT_GT] = ACTIONS(1552), - [anon_sym_e_GT_GT] = ACTIONS(1552), - [anon_sym_o_GT_GT] = ACTIONS(1552), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1552), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1552), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1552), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1552), - [aux_sym_unquoted_token1] = ACTIONS(1550), - [aux_sym_unquoted_token2] = ACTIONS(1550), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1552), + [sym__newline] = ACTIONS(1590), + [anon_sym_SEMI] = ACTIONS(1590), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_err_GT_PIPE] = ACTIONS(1590), + [anon_sym_out_GT_PIPE] = ACTIONS(1590), + [anon_sym_e_GT_PIPE] = ACTIONS(1590), + [anon_sym_o_GT_PIPE] = ACTIONS(1590), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1590), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1590), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1590), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1590), + [anon_sym_RPAREN] = ACTIONS(1590), + [anon_sym_DOLLAR] = ACTIONS(3618), + [anon_sym_GT2] = ACTIONS(1588), + [anon_sym_DASH2] = ACTIONS(1588), + [anon_sym_in2] = ACTIONS(1590), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1590), + [anon_sym_STAR2] = ACTIONS(1588), + [anon_sym_and2] = ACTIONS(1590), + [anon_sym_xor2] = ACTIONS(1590), + [anon_sym_or2] = ACTIONS(1590), + [anon_sym_not_DASHin2] = ACTIONS(1590), + [anon_sym_has2] = ACTIONS(1590), + [anon_sym_not_DASHhas2] = ACTIONS(1590), + [anon_sym_starts_DASHwith2] = ACTIONS(1590), + [anon_sym_ends_DASHwith2] = ACTIONS(1590), + [anon_sym_EQ_EQ2] = ACTIONS(1590), + [anon_sym_BANG_EQ2] = ACTIONS(1590), + [anon_sym_LT2] = ACTIONS(1588), + [anon_sym_LT_EQ2] = ACTIONS(1590), + [anon_sym_GT_EQ2] = ACTIONS(1590), + [anon_sym_EQ_TILDE2] = ACTIONS(1590), + [anon_sym_BANG_TILDE2] = ACTIONS(1590), + [anon_sym_LPAREN2] = ACTIONS(4207), + [anon_sym_STAR_STAR2] = ACTIONS(1590), + [anon_sym_PLUS_PLUS2] = ACTIONS(1590), + [anon_sym_SLASH2] = ACTIONS(1588), + [anon_sym_mod2] = ACTIONS(1590), + [anon_sym_SLASH_SLASH2] = ACTIONS(1590), + [anon_sym_PLUS2] = ACTIONS(1588), + [anon_sym_bit_DASHshl2] = ACTIONS(1590), + [anon_sym_bit_DASHshr2] = ACTIONS(1590), + [anon_sym_bit_DASHand2] = ACTIONS(1590), + [anon_sym_bit_DASHxor2] = ACTIONS(1590), + [anon_sym_bit_DASHor2] = ACTIONS(1590), + [aux_sym__immediate_decimal_token1] = ACTIONS(4482), + [aux_sym__immediate_decimal_token3] = ACTIONS(4482), + [aux_sym__immediate_decimal_token4] = ACTIONS(4213), + [aux_sym__immediate_decimal_token5] = ACTIONS(4215), + [anon_sym_err_GT] = ACTIONS(1588), + [anon_sym_out_GT] = ACTIONS(1588), + [anon_sym_e_GT] = ACTIONS(1588), + [anon_sym_o_GT] = ACTIONS(1588), + [anon_sym_err_PLUSout_GT] = ACTIONS(1588), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1588), + [anon_sym_o_PLUSe_GT] = ACTIONS(1588), + [anon_sym_e_PLUSo_GT] = ACTIONS(1588), + [anon_sym_err_GT_GT] = ACTIONS(1590), + [anon_sym_out_GT_GT] = ACTIONS(1590), + [anon_sym_e_GT_GT] = ACTIONS(1590), + [anon_sym_o_GT_GT] = ACTIONS(1590), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1590), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1590), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1590), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1590), + [anon_sym_POUND] = ACTIONS(247), }, [1347] = { + [sym__expr_parenthesized_immediate] = STATE(2058), + [sym__immediate_decimal] = STATE(2061), + [sym_val_variable] = STATE(2058), [sym_comment] = STATE(1347), - [sym__newline] = ACTIONS(1785), - [anon_sym_SEMI] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(1785), - [anon_sym_err_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_GT_PIPE] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_RPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1783), - [anon_sym_LPAREN2] = ACTIONS(1785), - [anon_sym_DOT_DOT2] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1783), - [anon_sym_DOT_DOT_LT] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1785), - [aux_sym__immediate_decimal_token2] = ACTIONS(4578), - [anon_sym_null] = ACTIONS(1785), - [anon_sym_true] = ACTIONS(1785), - [anon_sym_false] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(1785), - [aux_sym__val_number_token2] = ACTIONS(1785), - [aux_sym__val_number_token3] = ACTIONS(1785), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_0b] = ACTIONS(1783), - [anon_sym_0o] = ACTIONS(1783), - [anon_sym_0x] = ACTIONS(1783), - [sym_val_date] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1785), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1785), - [anon_sym_err_GT] = ACTIONS(1783), - [anon_sym_out_GT] = ACTIONS(1783), - [anon_sym_e_GT] = ACTIONS(1783), - [anon_sym_o_GT] = ACTIONS(1783), - [anon_sym_err_PLUSout_GT] = ACTIONS(1783), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1783), - [anon_sym_o_PLUSe_GT] = ACTIONS(1783), - [anon_sym_e_PLUSo_GT] = ACTIONS(1783), - [anon_sym_err_GT_GT] = ACTIONS(1785), - [anon_sym_out_GT_GT] = ACTIONS(1785), - [anon_sym_e_GT_GT] = ACTIONS(1785), - [anon_sym_o_GT_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1785), - [aux_sym_unquoted_token1] = ACTIONS(1783), - [aux_sym_unquoted_token2] = ACTIONS(1783), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1785), + [ts_builtin_sym_end] = ACTIONS(1582), + [sym__newline] = ACTIONS(1582), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_PIPE] = ACTIONS(1582), + [anon_sym_err_GT_PIPE] = ACTIONS(1582), + [anon_sym_out_GT_PIPE] = ACTIONS(1582), + [anon_sym_e_GT_PIPE] = ACTIONS(1582), + [anon_sym_o_GT_PIPE] = ACTIONS(1582), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1582), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1582), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1582), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1582), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_DOLLAR] = ACTIONS(4157), + [anon_sym_DASH_DASH] = ACTIONS(1582), + [anon_sym_DASH2] = ACTIONS(1580), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_DOT_DOT] = ACTIONS(1580), + [anon_sym_LPAREN2] = ACTIONS(4159), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1582), + [anon_sym_DOT_DOT_LT] = ACTIONS(1582), + [aux_sym__immediate_decimal_token1] = ACTIONS(4474), + [aux_sym__immediate_decimal_token3] = ACTIONS(4476), + [aux_sym__immediate_decimal_token4] = ACTIONS(4478), + [aux_sym__immediate_decimal_token5] = ACTIONS(4480), + [anon_sym_null] = ACTIONS(1582), + [anon_sym_true] = ACTIONS(1582), + [anon_sym_false] = ACTIONS(1582), + [aux_sym__val_number_decimal_token1] = ACTIONS(1580), + [aux_sym__val_number_decimal_token2] = ACTIONS(1580), + [aux_sym__val_number_decimal_token3] = ACTIONS(1580), + [aux_sym__val_number_decimal_token4] = ACTIONS(1580), + [aux_sym__val_number_token1] = ACTIONS(1582), + [aux_sym__val_number_token2] = ACTIONS(1582), + [aux_sym__val_number_token3] = ACTIONS(1582), + [aux_sym__val_number_token4] = ACTIONS(1582), + [aux_sym__val_number_token5] = ACTIONS(1582), + [aux_sym__val_number_token6] = ACTIONS(1582), + [anon_sym_0b] = ACTIONS(1580), + [anon_sym_0o] = ACTIONS(1580), + [anon_sym_0x] = ACTIONS(1580), + [sym_val_date] = ACTIONS(1582), + [anon_sym_DQUOTE] = ACTIONS(1582), + [sym__str_single_quotes] = ACTIONS(1582), + [sym__str_back_ticks] = ACTIONS(1582), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1582), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1582), + [anon_sym_err_GT] = ACTIONS(1580), + [anon_sym_out_GT] = ACTIONS(1580), + [anon_sym_e_GT] = ACTIONS(1580), + [anon_sym_o_GT] = ACTIONS(1580), + [anon_sym_err_PLUSout_GT] = ACTIONS(1580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1580), + [anon_sym_o_PLUSe_GT] = ACTIONS(1580), + [anon_sym_e_PLUSo_GT] = ACTIONS(1580), + [anon_sym_err_GT_GT] = ACTIONS(1582), + [anon_sym_out_GT_GT] = ACTIONS(1582), + [anon_sym_e_GT_GT] = ACTIONS(1582), + [anon_sym_o_GT_GT] = ACTIONS(1582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1582), + [aux_sym_unquoted_token1] = ACTIONS(1580), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1582), }, [1348] = { - [sym__expr_parenthesized_immediate] = STATE(1870), - [sym__immediate_decimal] = STATE(1735), - [sym_val_variable] = STATE(1870), + [sym__match_pattern_expression] = STATE(3186), + [sym__match_pattern_value] = STATE(3171), + [sym__match_pattern_list] = STATE(3187), + [sym__match_pattern_record] = STATE(3188), + [sym_expr_parenthesized] = STATE(2937), + [sym_val_range] = STATE(3171), + [sym__val_range] = STATE(7677), + [sym_val_nothing] = STATE(3178), + [sym_val_bool] = STATE(3081), + [sym_val_variable] = STATE(2920), + [sym_val_number] = STATE(3178), + [sym__val_number_decimal] = STATE(2695), + [sym__val_number] = STATE(3189), + [sym_val_duration] = STATE(3178), + [sym_val_filesize] = STATE(3178), + [sym_val_binary] = STATE(3178), + [sym_val_string] = STATE(3178), + [sym__raw_str] = STATE(3169), + [sym__str_double_quotes] = STATE(3169), + [sym_val_table] = STATE(3178), + [sym__unquoted_in_list] = STATE(3186), + [sym__unquoted_anonymous_prefix] = STATE(7685), [sym_comment] = STATE(1348), - [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_DOLLAR] = ACTIONS(3630), - [anon_sym_GT2] = ACTIONS(1461), - [anon_sym_DASH2] = ACTIONS(1461), - [anon_sym_in2] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym_STAR2] = ACTIONS(1461), - [anon_sym_and2] = ACTIONS(1475), - [anon_sym_xor2] = ACTIONS(1475), - [anon_sym_or2] = ACTIONS(1475), - [anon_sym_not_DASHin2] = ACTIONS(1475), - [anon_sym_starts_DASHwith2] = ACTIONS(1475), - [anon_sym_ends_DASHwith2] = ACTIONS(1475), - [anon_sym_EQ_EQ2] = ACTIONS(1475), - [anon_sym_BANG_EQ2] = ACTIONS(1475), - [anon_sym_LT2] = ACTIONS(1461), - [anon_sym_LT_EQ2] = ACTIONS(1475), - [anon_sym_GT_EQ2] = ACTIONS(1475), - [anon_sym_EQ_TILDE2] = ACTIONS(1475), - [anon_sym_BANG_TILDE2] = ACTIONS(1475), - [anon_sym_LPAREN2] = ACTIONS(4580), - [anon_sym_STAR_STAR2] = ACTIONS(1475), - [anon_sym_PLUS_PLUS2] = ACTIONS(1475), - [anon_sym_SLASH2] = ACTIONS(1461), - [anon_sym_mod2] = ACTIONS(1475), - [anon_sym_SLASH_SLASH2] = ACTIONS(1475), - [anon_sym_PLUS2] = ACTIONS(1461), - [anon_sym_bit_DASHshl2] = ACTIONS(1475), - [anon_sym_bit_DASHshr2] = ACTIONS(1475), - [anon_sym_bit_DASHand2] = ACTIONS(1475), - [anon_sym_bit_DASHxor2] = ACTIONS(1475), - [anon_sym_bit_DASHor2] = ACTIONS(1475), - [anon_sym_DOT] = ACTIONS(4582), - [aux_sym__immediate_decimal_token1] = ACTIONS(4584), - [aux_sym__immediate_decimal_token3] = ACTIONS(4584), - [aux_sym__immediate_decimal_token4] = ACTIONS(4586), - [aux_sym__immediate_decimal_token5] = ACTIONS(4588), - [anon_sym_err_GT] = ACTIONS(1461), - [anon_sym_out_GT] = ACTIONS(1461), - [anon_sym_e_GT] = ACTIONS(1461), - [anon_sym_o_GT] = ACTIONS(1461), - [anon_sym_err_PLUSout_GT] = ACTIONS(1461), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1461), - [anon_sym_o_PLUSe_GT] = ACTIONS(1461), - [anon_sym_e_PLUSo_GT] = ACTIONS(1461), - [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(1477), - [anon_sym_POUND] = ACTIONS(251), + [aux_sym__match_pattern_list_repeat1] = STATE(1348), + [anon_sym_LBRACK] = ACTIONS(4508), + [anon_sym_RBRACK] = ACTIONS(4511), + [anon_sym_LPAREN] = ACTIONS(4513), + [anon_sym_DOLLAR] = ACTIONS(4516), + [anon_sym_LBRACE] = ACTIONS(4519), + [anon_sym_DOT_DOT] = ACTIONS(4522), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4525), + [anon_sym_DOT_DOT_LT] = ACTIONS(4525), + [anon_sym_null] = ACTIONS(4528), + [anon_sym_true] = ACTIONS(4531), + [anon_sym_false] = ACTIONS(4531), + [aux_sym__val_number_decimal_token1] = ACTIONS(4534), + [aux_sym__val_number_decimal_token2] = ACTIONS(4537), + [aux_sym__val_number_decimal_token3] = ACTIONS(4540), + [aux_sym__val_number_decimal_token4] = ACTIONS(4543), + [aux_sym__val_number_token1] = ACTIONS(4546), + [aux_sym__val_number_token2] = ACTIONS(4546), + [aux_sym__val_number_token3] = ACTIONS(4546), + [aux_sym__val_number_token4] = ACTIONS(4549), + [aux_sym__val_number_token5] = ACTIONS(4549), + [aux_sym__val_number_token6] = ACTIONS(4549), + [anon_sym_0b] = ACTIONS(4552), + [anon_sym_0o] = ACTIONS(4555), + [anon_sym_0x] = ACTIONS(4555), + [sym_val_date] = ACTIONS(4558), + [anon_sym_DQUOTE] = ACTIONS(4561), + [sym__str_single_quotes] = ACTIONS(4564), + [sym__str_back_ticks] = ACTIONS(4564), + [anon_sym_err_GT] = ACTIONS(4567), + [anon_sym_out_GT] = ACTIONS(4567), + [anon_sym_e_GT] = ACTIONS(4567), + [anon_sym_o_GT] = ACTIONS(4567), + [anon_sym_err_PLUSout_GT] = ACTIONS(4567), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4567), + [anon_sym_o_PLUSe_GT] = ACTIONS(4567), + [anon_sym_e_PLUSo_GT] = ACTIONS(4567), + [anon_sym_err_GT_GT] = ACTIONS(4570), + [anon_sym_out_GT_GT] = ACTIONS(4570), + [anon_sym_e_GT_GT] = ACTIONS(4570), + [anon_sym_o_GT_GT] = ACTIONS(4570), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4570), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4570), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4570), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4570), + [aux_sym__unquoted_in_list_token1] = ACTIONS(4573), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4576), }, [1349] = { + [sym__expr_parenthesized_immediate] = STATE(1777), + [sym__immediate_decimal] = STATE(1778), + [sym_val_variable] = STATE(1777), [sym_comment] = STATE(1349), - [ts_builtin_sym_end] = ACTIONS(1757), - [sym__newline] = ACTIONS(1757), - [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(1755), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT] = ACTIONS(4590), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1755), - [anon_sym_DOT_DOT_LT] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(4592), - [anon_sym_null] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = 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_err_GT] = ACTIONS(1755), - [anon_sym_out_GT] = ACTIONS(1755), - [anon_sym_e_GT] = ACTIONS(1755), - [anon_sym_o_GT] = ACTIONS(1755), - [anon_sym_err_PLUSout_GT] = ACTIONS(1755), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), - [anon_sym_o_PLUSe_GT] = ACTIONS(1755), - [anon_sym_e_PLUSo_GT] = ACTIONS(1755), - [anon_sym_err_GT_GT] = ACTIONS(1757), - [anon_sym_out_GT_GT] = ACTIONS(1757), - [anon_sym_e_GT_GT] = ACTIONS(1757), - [anon_sym_o_GT_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), - [aux_sym_unquoted_token1] = ACTIONS(1755), - [aux_sym_unquoted_token2] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1757), + [sym__newline] = ACTIONS(1532), + [anon_sym_SEMI] = ACTIONS(1532), + [anon_sym_PIPE] = ACTIONS(1532), + [anon_sym_err_GT_PIPE] = ACTIONS(1532), + [anon_sym_out_GT_PIPE] = ACTIONS(1532), + [anon_sym_e_GT_PIPE] = ACTIONS(1532), + [anon_sym_o_GT_PIPE] = ACTIONS(1532), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1532), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1532), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1532), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1532), + [anon_sym_RPAREN] = ACTIONS(1532), + [anon_sym_DOLLAR] = ACTIONS(3618), + [anon_sym_GT2] = ACTIONS(1522), + [anon_sym_DASH2] = ACTIONS(1522), + [anon_sym_in2] = ACTIONS(1532), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_RBRACE] = ACTIONS(1532), + [anon_sym_STAR2] = ACTIONS(1522), + [anon_sym_and2] = ACTIONS(1532), + [anon_sym_xor2] = ACTIONS(1532), + [anon_sym_or2] = ACTIONS(1532), + [anon_sym_not_DASHin2] = ACTIONS(1532), + [anon_sym_has2] = ACTIONS(1532), + [anon_sym_not_DASHhas2] = ACTIONS(1532), + [anon_sym_starts_DASHwith2] = ACTIONS(1532), + [anon_sym_ends_DASHwith2] = ACTIONS(1532), + [anon_sym_EQ_EQ2] = ACTIONS(1532), + [anon_sym_BANG_EQ2] = ACTIONS(1532), + [anon_sym_LT2] = ACTIONS(1522), + [anon_sym_LT_EQ2] = ACTIONS(1532), + [anon_sym_GT_EQ2] = ACTIONS(1532), + [anon_sym_EQ_TILDE2] = ACTIONS(1532), + [anon_sym_BANG_TILDE2] = ACTIONS(1532), + [anon_sym_LPAREN2] = ACTIONS(4207), + [anon_sym_STAR_STAR2] = ACTIONS(1532), + [anon_sym_PLUS_PLUS2] = ACTIONS(1532), + [anon_sym_SLASH2] = ACTIONS(1522), + [anon_sym_mod2] = ACTIONS(1532), + [anon_sym_SLASH_SLASH2] = ACTIONS(1532), + [anon_sym_PLUS2] = ACTIONS(1522), + [anon_sym_bit_DASHshl2] = ACTIONS(1532), + [anon_sym_bit_DASHshr2] = ACTIONS(1532), + [anon_sym_bit_DASHand2] = ACTIONS(1532), + [anon_sym_bit_DASHxor2] = ACTIONS(1532), + [anon_sym_bit_DASHor2] = ACTIONS(1532), + [aux_sym__immediate_decimal_token1] = ACTIONS(4482), + [aux_sym__immediate_decimal_token3] = ACTIONS(4482), + [aux_sym__immediate_decimal_token4] = ACTIONS(4213), + [aux_sym__immediate_decimal_token5] = ACTIONS(4215), + [anon_sym_err_GT] = ACTIONS(1522), + [anon_sym_out_GT] = ACTIONS(1522), + [anon_sym_e_GT] = ACTIONS(1522), + [anon_sym_o_GT] = ACTIONS(1522), + [anon_sym_err_PLUSout_GT] = ACTIONS(1522), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1522), + [anon_sym_o_PLUSe_GT] = ACTIONS(1522), + [anon_sym_e_PLUSo_GT] = ACTIONS(1522), + [anon_sym_err_GT_GT] = ACTIONS(1532), + [anon_sym_out_GT_GT] = ACTIONS(1532), + [anon_sym_e_GT_GT] = ACTIONS(1532), + [anon_sym_o_GT_GT] = ACTIONS(1532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1532), + [anon_sym_POUND] = ACTIONS(247), }, [1350] = { - [sym__match_pattern] = STATE(7348), - [sym__match_pattern_expression] = STATE(7226), - [sym__match_pattern_value] = STATE(7259), - [sym__match_pattern_list] = STATE(7280), - [sym__match_pattern_record] = STATE(6737), - [sym_expr_parenthesized] = STATE(5787), - [sym_val_range] = STATE(7259), - [sym__val_range] = STATE(7519), - [sym_val_nothing] = STATE(6734), - [sym_val_bool] = STATE(7209), - [sym_val_variable] = STATE(5731), - [sym_val_number] = STATE(6734), - [sym__val_number_decimal] = STATE(5520), - [sym__val_number] = STATE(1667), - [sym_val_duration] = STATE(6734), - [sym_val_filesize] = STATE(6734), - [sym_val_binary] = STATE(6734), - [sym_val_string] = STATE(6734), - [sym__raw_str] = STATE(1418), - [sym__str_double_quotes] = STATE(1418), - [sym_val_table] = STATE(6734), - [sym_unquoted] = STATE(7105), - [sym__unquoted_anonymous_prefix] = STATE(7789), [sym_comment] = STATE(1350), - [anon_sym_LBRACK] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3630), - [anon_sym_LBRACE] = ACTIONS(3632), - [anon_sym_DOT_DOT] = ACTIONS(4594), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4596), - [anon_sym_DOT_DOT_LT] = ACTIONS(4596), - [anon_sym_null] = ACTIONS(4598), - [anon_sym_true] = ACTIONS(4600), - [anon_sym_false] = ACTIONS(4600), - [aux_sym__val_number_decimal_token1] = ACTIONS(4602), - [aux_sym__val_number_decimal_token2] = ACTIONS(4604), - [aux_sym__val_number_decimal_token3] = ACTIONS(4606), - [aux_sym__val_number_decimal_token4] = ACTIONS(4608), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(4610), - [aux_sym__val_number_token5] = ACTIONS(4610), - [aux_sym__val_number_token6] = ACTIONS(4610), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(4612), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2664), - [anon_sym_out_GT] = ACTIONS(2664), - [anon_sym_e_GT] = ACTIONS(2664), - [anon_sym_o_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT] = ACTIONS(2664), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [aux_sym_unquoted_token1] = ACTIONS(3490), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [ts_builtin_sym_end] = ACTIONS(948), + [anon_sym_EQ] = ACTIONS(946), + [anon_sym_PLUS_EQ] = ACTIONS(948), + [anon_sym_DASH_EQ] = ACTIONS(948), + [anon_sym_STAR_EQ] = ACTIONS(948), + [anon_sym_SLASH_EQ] = ACTIONS(948), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(948), + [sym__newline] = ACTIONS(948), + [anon_sym_SEMI] = ACTIONS(948), + [anon_sym_PIPE] = ACTIONS(948), + [anon_sym_err_GT_PIPE] = ACTIONS(948), + [anon_sym_out_GT_PIPE] = ACTIONS(948), + [anon_sym_e_GT_PIPE] = ACTIONS(948), + [anon_sym_o_GT_PIPE] = ACTIONS(948), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(948), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(948), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(948), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(948), + [anon_sym_GT2] = ACTIONS(946), + [anon_sym_DASH2] = ACTIONS(946), + [anon_sym_in2] = ACTIONS(948), + [anon_sym_STAR2] = ACTIONS(946), + [anon_sym_QMARK2] = ACTIONS(948), + [anon_sym_and2] = ACTIONS(948), + [anon_sym_xor2] = ACTIONS(948), + [anon_sym_or2] = ACTIONS(948), + [anon_sym_not_DASHin2] = ACTIONS(948), + [anon_sym_has2] = ACTIONS(948), + [anon_sym_not_DASHhas2] = ACTIONS(948), + [anon_sym_starts_DASHwith2] = ACTIONS(948), + [anon_sym_ends_DASHwith2] = ACTIONS(948), + [anon_sym_EQ_EQ2] = ACTIONS(948), + [anon_sym_BANG_EQ2] = ACTIONS(948), + [anon_sym_LT2] = ACTIONS(946), + [anon_sym_LT_EQ2] = ACTIONS(948), + [anon_sym_GT_EQ2] = ACTIONS(948), + [anon_sym_EQ_TILDE2] = ACTIONS(948), + [anon_sym_BANG_TILDE2] = ACTIONS(948), + [anon_sym_STAR_STAR2] = ACTIONS(948), + [anon_sym_PLUS_PLUS2] = ACTIONS(946), + [anon_sym_SLASH2] = ACTIONS(946), + [anon_sym_mod2] = ACTIONS(948), + [anon_sym_SLASH_SLASH2] = ACTIONS(948), + [anon_sym_PLUS2] = ACTIONS(946), + [anon_sym_bit_DASHshl2] = ACTIONS(948), + [anon_sym_bit_DASHshr2] = ACTIONS(948), + [anon_sym_bit_DASHand2] = ACTIONS(948), + [anon_sym_bit_DASHxor2] = ACTIONS(948), + [anon_sym_bit_DASHor2] = ACTIONS(948), + [anon_sym_DOT_DOT2] = ACTIONS(946), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(948), + [anon_sym_DOT_DOT_LT2] = ACTIONS(948), + [anon_sym_DOT2] = ACTIONS(946), + [anon_sym_err_GT] = ACTIONS(946), + [anon_sym_out_GT] = ACTIONS(946), + [anon_sym_e_GT] = ACTIONS(946), + [anon_sym_o_GT] = ACTIONS(946), + [anon_sym_err_PLUSout_GT] = ACTIONS(946), + [anon_sym_out_PLUSerr_GT] = ACTIONS(946), + [anon_sym_o_PLUSe_GT] = ACTIONS(946), + [anon_sym_e_PLUSo_GT] = ACTIONS(946), + [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), + [anon_sym_POUND] = ACTIONS(247), }, [1351] = { [sym_comment] = STATE(1351), - [ts_builtin_sym_end] = ACTIONS(1544), - [sym__newline] = ACTIONS(1544), - [anon_sym_SEMI] = ACTIONS(1544), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_err_GT_PIPE] = ACTIONS(1544), - [anon_sym_out_GT_PIPE] = ACTIONS(1544), - [anon_sym_e_GT_PIPE] = ACTIONS(1544), - [anon_sym_o_GT_PIPE] = ACTIONS(1544), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1544), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1544), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1544), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1544), - [anon_sym_LPAREN] = ACTIONS(1542), - [anon_sym_DOLLAR] = ACTIONS(1542), - [anon_sym_DASH_DASH] = ACTIONS(1544), - [anon_sym_DASH2] = ACTIONS(1542), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_DOT_DOT] = ACTIONS(1542), - [anon_sym_LPAREN2] = ACTIONS(1544), - [anon_sym_DOT_DOT2] = ACTIONS(1542), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1542), - [anon_sym_DOT_DOT_LT] = ACTIONS(1542), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1544), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1544), - [anon_sym_null] = ACTIONS(1544), - [anon_sym_true] = ACTIONS(1544), - [anon_sym_false] = ACTIONS(1544), - [aux_sym__val_number_decimal_token1] = ACTIONS(1542), - [aux_sym__val_number_decimal_token2] = ACTIONS(1544), - [aux_sym__val_number_decimal_token3] = ACTIONS(1544), - [aux_sym__val_number_decimal_token4] = ACTIONS(1544), - [aux_sym__val_number_token1] = ACTIONS(1544), - [aux_sym__val_number_token2] = ACTIONS(1544), - [aux_sym__val_number_token3] = ACTIONS(1544), - [aux_sym__val_number_token4] = ACTIONS(1544), - [aux_sym__val_number_token5] = ACTIONS(1544), - [aux_sym__val_number_token6] = ACTIONS(1544), - [anon_sym_0b] = ACTIONS(1542), - [sym_filesize_unit] = ACTIONS(1544), - [sym_duration_unit] = ACTIONS(1544), - [anon_sym_0o] = ACTIONS(1542), - [anon_sym_0x] = ACTIONS(1542), - [sym_val_date] = ACTIONS(1544), - [anon_sym_DQUOTE] = ACTIONS(1544), - [sym__str_single_quotes] = ACTIONS(1544), - [sym__str_back_ticks] = ACTIONS(1544), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1544), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1544), - [anon_sym_err_GT] = ACTIONS(1542), - [anon_sym_out_GT] = ACTIONS(1542), - [anon_sym_e_GT] = ACTIONS(1542), - [anon_sym_o_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT] = ACTIONS(1542), - [anon_sym_err_GT_GT] = ACTIONS(1544), - [anon_sym_out_GT_GT] = ACTIONS(1544), - [anon_sym_e_GT_GT] = ACTIONS(1544), - [anon_sym_o_GT_GT] = ACTIONS(1544), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1544), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1544), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1544), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1544), - [aux_sym_unquoted_token1] = ACTIONS(1542), - [aux_sym_unquoted_token2] = ACTIONS(1542), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1544), - }, - [1352] = { - [sym_cell_path] = STATE(1582), - [sym_path] = STATE(1527), - [sym_comment] = STATE(1352), - [aux_sym_cell_path_repeat1] = STATE(1406), - [ts_builtin_sym_end] = ACTIONS(945), - [sym__newline] = ACTIONS(945), - [anon_sym_SEMI] = ACTIONS(945), - [anon_sym_PIPE] = ACTIONS(945), - [anon_sym_err_GT_PIPE] = ACTIONS(945), - [anon_sym_out_GT_PIPE] = ACTIONS(945), - [anon_sym_e_GT_PIPE] = ACTIONS(945), - [anon_sym_o_GT_PIPE] = ACTIONS(945), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(945), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(945), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(945), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(945), - [anon_sym_LBRACK] = ACTIONS(945), - [anon_sym_LPAREN] = ACTIONS(945), - [anon_sym_DOLLAR] = ACTIONS(943), - [anon_sym_DASH_DASH] = ACTIONS(945), - [anon_sym_DASH2] = ACTIONS(943), - [anon_sym_LBRACE] = ACTIONS(945), - [anon_sym_DOT_DOT] = ACTIONS(943), - [anon_sym_DOT_DOT2] = ACTIONS(943), - [anon_sym_DOT_DOT_EQ] = ACTIONS(943), - [anon_sym_DOT_DOT_LT] = ACTIONS(943), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(945), - [anon_sym_DOT_DOT_LT2] = ACTIONS(945), - [anon_sym_null] = ACTIONS(945), - [anon_sym_true] = ACTIONS(945), - [anon_sym_false] = ACTIONS(945), - [aux_sym__val_number_decimal_token1] = ACTIONS(943), - [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), - [aux_sym__val_number_token4] = ACTIONS(945), - [aux_sym__val_number_token5] = ACTIONS(945), - [aux_sym__val_number_token6] = ACTIONS(945), - [anon_sym_0b] = ACTIONS(943), - [anon_sym_0o] = ACTIONS(943), - [anon_sym_0x] = ACTIONS(943), - [sym_val_date] = ACTIONS(945), - [anon_sym_DQUOTE] = ACTIONS(945), - [sym__str_single_quotes] = ACTIONS(945), - [sym__str_back_ticks] = ACTIONS(945), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(945), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(945), - [anon_sym_DOT2] = ACTIONS(4572), - [anon_sym_err_GT] = ACTIONS(943), - [anon_sym_out_GT] = ACTIONS(943), - [anon_sym_e_GT] = ACTIONS(943), - [anon_sym_o_GT] = ACTIONS(943), - [anon_sym_err_PLUSout_GT] = ACTIONS(943), - [anon_sym_out_PLUSerr_GT] = ACTIONS(943), - [anon_sym_o_PLUSe_GT] = ACTIONS(943), - [anon_sym_e_PLUSo_GT] = ACTIONS(943), - [anon_sym_err_GT_GT] = ACTIONS(945), - [anon_sym_out_GT_GT] = ACTIONS(945), - [anon_sym_e_GT_GT] = ACTIONS(945), - [anon_sym_o_GT_GT] = ACTIONS(945), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(945), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(945), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(945), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(945), - [aux_sym_unquoted_token1] = ACTIONS(943), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(945), - }, - [1353] = { - [sym__expr_parenthesized_immediate] = STATE(1868), - [sym__immediate_decimal] = STATE(1869), - [sym_val_variable] = STATE(1868), + [sym__newline] = ACTIONS(1695), + [anon_sym_SEMI] = ACTIONS(1695), + [anon_sym_PIPE] = ACTIONS(1695), + [anon_sym_err_GT_PIPE] = ACTIONS(1695), + [anon_sym_out_GT_PIPE] = ACTIONS(1695), + [anon_sym_e_GT_PIPE] = ACTIONS(1695), + [anon_sym_o_GT_PIPE] = ACTIONS(1695), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1695), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1695), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1695), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1695), + [anon_sym_LBRACK] = ACTIONS(1695), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_RPAREN] = ACTIONS(1695), + [anon_sym_DOLLAR] = ACTIONS(1693), + [anon_sym_DASH_DASH] = ACTIONS(1695), + [anon_sym_DASH2] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1695), + [anon_sym_RBRACE] = ACTIONS(1695), + [anon_sym_DOT_DOT] = ACTIONS(1693), + [anon_sym_LPAREN2] = ACTIONS(1695), + [anon_sym_DOT_DOT2] = ACTIONS(1693), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1693), + [anon_sym_DOT_DOT_LT] = ACTIONS(1693), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1695), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1695), + [aux_sym__immediate_decimal_token1] = ACTIONS(4579), + [aux_sym__immediate_decimal_token2] = ACTIONS(4581), + [anon_sym_null] = ACTIONS(1695), + [anon_sym_true] = ACTIONS(1695), + [anon_sym_false] = ACTIONS(1695), + [aux_sym__val_number_decimal_token1] = ACTIONS(1693), + [aux_sym__val_number_decimal_token2] = ACTIONS(1695), + [aux_sym__val_number_decimal_token3] = ACTIONS(1695), + [aux_sym__val_number_decimal_token4] = ACTIONS(1695), + [aux_sym__val_number_token1] = ACTIONS(1695), + [aux_sym__val_number_token2] = ACTIONS(1695), + [aux_sym__val_number_token3] = ACTIONS(1695), + [aux_sym__val_number_token4] = ACTIONS(1695), + [aux_sym__val_number_token5] = ACTIONS(1695), + [aux_sym__val_number_token6] = ACTIONS(1695), + [anon_sym_0b] = ACTIONS(1693), + [anon_sym_0o] = ACTIONS(1693), + [anon_sym_0x] = ACTIONS(1693), + [sym_val_date] = ACTIONS(1695), + [anon_sym_DQUOTE] = ACTIONS(1695), + [sym__str_single_quotes] = ACTIONS(1695), + [sym__str_back_ticks] = ACTIONS(1695), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1695), + [anon_sym_err_GT] = ACTIONS(1693), + [anon_sym_out_GT] = ACTIONS(1693), + [anon_sym_e_GT] = ACTIONS(1693), + [anon_sym_o_GT] = ACTIONS(1693), + [anon_sym_err_PLUSout_GT] = ACTIONS(1693), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1693), + [anon_sym_o_PLUSe_GT] = ACTIONS(1693), + [anon_sym_e_PLUSo_GT] = ACTIONS(1693), + [anon_sym_err_GT_GT] = ACTIONS(1695), + [anon_sym_out_GT_GT] = ACTIONS(1695), + [anon_sym_e_GT_GT] = ACTIONS(1695), + [anon_sym_o_GT_GT] = ACTIONS(1695), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1695), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1695), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1695), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1695), + [aux_sym_unquoted_token1] = ACTIONS(1693), + [aux_sym_unquoted_token2] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1695), + }, + [1352] = { + [sym_comment] = STATE(1352), + [ts_builtin_sym_end] = ACTIONS(1514), + [sym__newline] = ACTIONS(1514), + [anon_sym_SEMI] = ACTIONS(1514), + [anon_sym_PIPE] = ACTIONS(1514), + [anon_sym_err_GT_PIPE] = ACTIONS(1514), + [anon_sym_out_GT_PIPE] = ACTIONS(1514), + [anon_sym_e_GT_PIPE] = ACTIONS(1514), + [anon_sym_o_GT_PIPE] = ACTIONS(1514), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1514), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1514), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1514), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1514), + [anon_sym_LBRACK] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_DOLLAR] = ACTIONS(1512), + [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_DOT_DOT] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT] = ACTIONS(4583), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [aux_sym__immediate_decimal_token2] = ACTIONS(4585), + [anon_sym_null] = ACTIONS(1514), + [anon_sym_true] = ACTIONS(1514), + [anon_sym_false] = ACTIONS(1514), + [aux_sym__val_number_decimal_token1] = ACTIONS(1512), + [aux_sym__val_number_decimal_token2] = ACTIONS(1514), + [aux_sym__val_number_decimal_token3] = ACTIONS(1514), + [aux_sym__val_number_decimal_token4] = ACTIONS(1514), + [aux_sym__val_number_token1] = ACTIONS(1514), + [aux_sym__val_number_token2] = ACTIONS(1514), + [aux_sym__val_number_token3] = ACTIONS(1514), + [aux_sym__val_number_token4] = ACTIONS(1514), + [aux_sym__val_number_token5] = ACTIONS(1514), + [aux_sym__val_number_token6] = ACTIONS(1514), + [anon_sym_0b] = ACTIONS(1512), + [sym_filesize_unit] = ACTIONS(1514), + [sym_duration_unit] = ACTIONS(1514), + [anon_sym_0o] = ACTIONS(1512), + [anon_sym_0x] = ACTIONS(1512), + [sym_val_date] = ACTIONS(1514), + [anon_sym_DQUOTE] = ACTIONS(1514), + [sym__str_single_quotes] = ACTIONS(1514), + [sym__str_back_ticks] = ACTIONS(1514), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1514), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1514), + [anon_sym_err_GT] = ACTIONS(1512), + [anon_sym_out_GT] = ACTIONS(1512), + [anon_sym_e_GT] = ACTIONS(1512), + [anon_sym_o_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT] = ACTIONS(1512), + [anon_sym_err_GT_GT] = ACTIONS(1514), + [anon_sym_out_GT_GT] = ACTIONS(1514), + [anon_sym_e_GT_GT] = ACTIONS(1514), + [anon_sym_o_GT_GT] = ACTIONS(1514), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1514), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1514), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1514), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1514), + [aux_sym_unquoted_token1] = ACTIONS(1512), + [aux_sym_unquoted_token2] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1514), + }, + [1353] = { [sym_comment] = STATE(1353), - [sym__newline] = ACTIONS(1510), - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1510), - [anon_sym_err_GT_PIPE] = ACTIONS(1510), - [anon_sym_out_GT_PIPE] = ACTIONS(1510), - [anon_sym_e_GT_PIPE] = ACTIONS(1510), - [anon_sym_o_GT_PIPE] = ACTIONS(1510), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1510), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1510), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1510), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1510), - [anon_sym_RPAREN] = ACTIONS(1510), - [anon_sym_DOLLAR] = ACTIONS(3630), - [anon_sym_GT2] = ACTIONS(1500), - [anon_sym_DASH2] = ACTIONS(1500), - [anon_sym_in2] = ACTIONS(1510), - [anon_sym_LBRACE] = ACTIONS(1510), - [anon_sym_RBRACE] = ACTIONS(1510), - [anon_sym_STAR2] = ACTIONS(1500), - [anon_sym_and2] = ACTIONS(1510), - [anon_sym_xor2] = ACTIONS(1510), - [anon_sym_or2] = ACTIONS(1510), - [anon_sym_not_DASHin2] = ACTIONS(1510), - [anon_sym_starts_DASHwith2] = ACTIONS(1510), - [anon_sym_ends_DASHwith2] = ACTIONS(1510), - [anon_sym_EQ_EQ2] = ACTIONS(1510), - [anon_sym_BANG_EQ2] = ACTIONS(1510), - [anon_sym_LT2] = ACTIONS(1500), - [anon_sym_LT_EQ2] = ACTIONS(1510), - [anon_sym_GT_EQ2] = ACTIONS(1510), - [anon_sym_EQ_TILDE2] = ACTIONS(1510), - [anon_sym_BANG_TILDE2] = ACTIONS(1510), - [anon_sym_LPAREN2] = ACTIONS(4580), - [anon_sym_STAR_STAR2] = ACTIONS(1510), - [anon_sym_PLUS_PLUS2] = ACTIONS(1510), - [anon_sym_SLASH2] = ACTIONS(1500), - [anon_sym_mod2] = ACTIONS(1510), - [anon_sym_SLASH_SLASH2] = ACTIONS(1510), - [anon_sym_PLUS2] = ACTIONS(1500), - [anon_sym_bit_DASHshl2] = ACTIONS(1510), - [anon_sym_bit_DASHshr2] = ACTIONS(1510), - [anon_sym_bit_DASHand2] = ACTIONS(1510), - [anon_sym_bit_DASHxor2] = ACTIONS(1510), - [anon_sym_bit_DASHor2] = ACTIONS(1510), - [anon_sym_DOT] = ACTIONS(4614), - [aux_sym__immediate_decimal_token1] = ACTIONS(4584), - [aux_sym__immediate_decimal_token3] = ACTIONS(4584), - [aux_sym__immediate_decimal_token4] = ACTIONS(4586), - [aux_sym__immediate_decimal_token5] = ACTIONS(4588), - [anon_sym_err_GT] = ACTIONS(1500), - [anon_sym_out_GT] = ACTIONS(1500), - [anon_sym_e_GT] = ACTIONS(1500), - [anon_sym_o_GT] = ACTIONS(1500), - [anon_sym_err_PLUSout_GT] = ACTIONS(1500), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1500), - [anon_sym_o_PLUSe_GT] = ACTIONS(1500), - [anon_sym_e_PLUSo_GT] = ACTIONS(1500), - [anon_sym_err_GT_GT] = ACTIONS(1510), - [anon_sym_out_GT_GT] = ACTIONS(1510), - [anon_sym_e_GT_GT] = ACTIONS(1510), - [anon_sym_o_GT_GT] = ACTIONS(1510), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1510), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1510), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1510), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1510), - [anon_sym_POUND] = ACTIONS(251), + [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_LBRACK] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1506), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_DASH2] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(1506), + [anon_sym_DOT_DOT] = ACTIONS(1504), + [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__immediate_decimal_token1] = ACTIONS(4587), + [aux_sym__immediate_decimal_token2] = ACTIONS(4589), + [anon_sym_null] = ACTIONS(1506), + [anon_sym_true] = ACTIONS(1506), + [anon_sym_false] = ACTIONS(1506), + [aux_sym__val_number_decimal_token1] = ACTIONS(1504), + [aux_sym__val_number_decimal_token2] = ACTIONS(1506), + [aux_sym__val_number_decimal_token3] = ACTIONS(1506), + [aux_sym__val_number_decimal_token4] = ACTIONS(1506), + [aux_sym__val_number_token1] = ACTIONS(1506), + [aux_sym__val_number_token2] = ACTIONS(1506), + [aux_sym__val_number_token3] = ACTIONS(1506), + [aux_sym__val_number_token4] = ACTIONS(1506), + [aux_sym__val_number_token5] = ACTIONS(1506), + [aux_sym__val_number_token6] = 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_token2] = ACTIONS(1504), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1506), }, [1354] = { [sym_comment] = STATE(1354), - [anon_sym_STAR_STAR] = ACTIONS(3192), - [anon_sym_PLUS_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_mod] = ACTIONS(3192), - [anon_sym_SLASH_SLASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_bit_DASHshl] = ACTIONS(3192), - [anon_sym_bit_DASHshr] = ACTIONS(3192), - [anon_sym_EQ_TILDE] = ACTIONS(3192), - [anon_sym_BANG_TILDE] = ACTIONS(3192), - [anon_sym_bit_DASHand] = ACTIONS(3192), - [anon_sym_bit_DASHxor] = ACTIONS(3192), - [anon_sym_bit_DASHor] = ACTIONS(3192), - [anon_sym_and] = ACTIONS(3192), - [anon_sym_xor] = ACTIONS(3192), - [anon_sym_or] = ACTIONS(3192), - [anon_sym_in] = ACTIONS(3192), - [anon_sym_not_DASHin] = ACTIONS(3192), - [anon_sym_starts_DASHwith] = ACTIONS(3192), - [anon_sym_ends_DASHwith] = ACTIONS(3192), - [anon_sym_EQ_EQ] = ACTIONS(3192), - [anon_sym_BANG_EQ] = ACTIONS(3192), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_LT_EQ] = ACTIONS(3192), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_GT_EQ] = ACTIONS(3192), - [aux_sym_cmd_identifier_token41] = ACTIONS(3196), - [sym__newline] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2136), - [anon_sym_err_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_GT_PIPE] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2136), - [anon_sym_GT2] = ACTIONS(2136), - [anon_sym_DASH2] = ACTIONS(2136), - [anon_sym_in2] = ACTIONS(2136), - [anon_sym_STAR2] = ACTIONS(2136), - [anon_sym_and2] = ACTIONS(2136), - [anon_sym_xor2] = ACTIONS(2136), - [anon_sym_or2] = ACTIONS(2136), - [anon_sym_not_DASHin2] = ACTIONS(2136), - [anon_sym_starts_DASHwith2] = ACTIONS(2136), - [anon_sym_ends_DASHwith2] = ACTIONS(2136), - [anon_sym_EQ_EQ2] = ACTIONS(2136), - [anon_sym_BANG_EQ2] = ACTIONS(2136), - [anon_sym_LT2] = ACTIONS(2136), - [anon_sym_LT_EQ2] = ACTIONS(2136), - [anon_sym_GT_EQ2] = ACTIONS(2136), - [anon_sym_EQ_TILDE2] = ACTIONS(2136), - [anon_sym_BANG_TILDE2] = ACTIONS(2136), - [anon_sym_STAR_STAR2] = ACTIONS(2136), - [anon_sym_PLUS_PLUS2] = ACTIONS(2136), - [anon_sym_SLASH2] = ACTIONS(2136), - [anon_sym_mod2] = ACTIONS(2136), - [anon_sym_SLASH_SLASH2] = ACTIONS(2136), - [anon_sym_PLUS2] = ACTIONS(2136), - [anon_sym_bit_DASHshl2] = ACTIONS(2136), - [anon_sym_bit_DASHshr2] = ACTIONS(2136), - [anon_sym_bit_DASHand2] = ACTIONS(2136), - [anon_sym_bit_DASHxor2] = ACTIONS(2136), - [anon_sym_bit_DASHor2] = ACTIONS(2136), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1620), + [sym__newline] = ACTIONS(1620), + [anon_sym_SEMI] = ACTIONS(1620), + [anon_sym_PIPE] = ACTIONS(1620), + [anon_sym_err_GT_PIPE] = ACTIONS(1620), + [anon_sym_out_GT_PIPE] = ACTIONS(1620), + [anon_sym_e_GT_PIPE] = ACTIONS(1620), + [anon_sym_o_GT_PIPE] = ACTIONS(1620), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1620), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1620), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1620), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_DOLLAR] = ACTIONS(1618), + [anon_sym_DASH_DASH] = ACTIONS(1620), + [anon_sym_DASH2] = ACTIONS(1618), + [anon_sym_LBRACE] = ACTIONS(1620), + [anon_sym_DOT_DOT] = ACTIONS(1618), + [anon_sym_LPAREN2] = ACTIONS(1620), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1618), + [anon_sym_DOT_DOT_LT] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [aux_sym__immediate_decimal_token2] = ACTIONS(4591), + [anon_sym_null] = ACTIONS(1620), + [anon_sym_true] = ACTIONS(1620), + [anon_sym_false] = ACTIONS(1620), + [aux_sym__val_number_decimal_token1] = ACTIONS(1618), + [aux_sym__val_number_decimal_token2] = ACTIONS(1620), + [aux_sym__val_number_decimal_token3] = ACTIONS(1620), + [aux_sym__val_number_decimal_token4] = ACTIONS(1620), + [aux_sym__val_number_token1] = ACTIONS(1620), + [aux_sym__val_number_token2] = ACTIONS(1620), + [aux_sym__val_number_token3] = ACTIONS(1620), + [aux_sym__val_number_token4] = ACTIONS(1620), + [aux_sym__val_number_token5] = ACTIONS(1620), + [aux_sym__val_number_token6] = ACTIONS(1620), + [anon_sym_0b] = ACTIONS(1618), + [sym_filesize_unit] = ACTIONS(1620), + [sym_duration_unit] = ACTIONS(1620), + [anon_sym_0o] = ACTIONS(1618), + [anon_sym_0x] = ACTIONS(1618), + [sym_val_date] = ACTIONS(1620), + [anon_sym_DQUOTE] = ACTIONS(1620), + [sym__str_single_quotes] = ACTIONS(1620), + [sym__str_back_ticks] = ACTIONS(1620), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1620), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1620), + [anon_sym_err_GT] = ACTIONS(1618), + [anon_sym_out_GT] = ACTIONS(1618), + [anon_sym_e_GT] = ACTIONS(1618), + [anon_sym_o_GT] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT] = ACTIONS(1618), + [anon_sym_err_GT_GT] = ACTIONS(1620), + [anon_sym_out_GT_GT] = ACTIONS(1620), + [anon_sym_e_GT_GT] = ACTIONS(1620), + [anon_sym_o_GT_GT] = ACTIONS(1620), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1620), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1620), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1620), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1620), + [aux_sym_unquoted_token1] = ACTIONS(1618), + [aux_sym_unquoted_token2] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1620), }, [1355] = { + [sym_path] = STATE(1428), [sym_comment] = STATE(1355), - [anon_sym_STAR_STAR] = ACTIONS(3192), - [anon_sym_PLUS_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_mod] = ACTIONS(3192), - [anon_sym_SLASH_SLASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_bit_DASHshl] = ACTIONS(3192), - [anon_sym_bit_DASHshr] = ACTIONS(3192), - [anon_sym_EQ_TILDE] = ACTIONS(3192), - [anon_sym_BANG_TILDE] = ACTIONS(3192), - [anon_sym_bit_DASHand] = ACTIONS(3192), - [anon_sym_bit_DASHxor] = ACTIONS(3192), - [anon_sym_bit_DASHor] = ACTIONS(3192), - [anon_sym_and] = ACTIONS(3192), - [anon_sym_xor] = ACTIONS(3192), - [anon_sym_or] = ACTIONS(3192), - [anon_sym_in] = ACTIONS(3192), - [anon_sym_not_DASHin] = ACTIONS(3192), - [anon_sym_starts_DASHwith] = ACTIONS(3192), - [anon_sym_ends_DASHwith] = ACTIONS(3192), - [anon_sym_EQ_EQ] = ACTIONS(3192), - [anon_sym_BANG_EQ] = ACTIONS(3192), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_LT_EQ] = ACTIONS(3192), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_GT_EQ] = ACTIONS(3192), - [aux_sym_cmd_identifier_token41] = ACTIONS(3196), - [sym__newline] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2144), - [anon_sym_PIPE] = ACTIONS(2144), - [anon_sym_err_GT_PIPE] = ACTIONS(2144), - [anon_sym_out_GT_PIPE] = ACTIONS(2144), - [anon_sym_e_GT_PIPE] = ACTIONS(2144), - [anon_sym_o_GT_PIPE] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2144), - [anon_sym_GT2] = ACTIONS(2144), - [anon_sym_DASH2] = ACTIONS(2144), - [anon_sym_in2] = ACTIONS(2144), - [anon_sym_STAR2] = ACTIONS(2144), - [anon_sym_and2] = ACTIONS(2144), - [anon_sym_xor2] = ACTIONS(2144), - [anon_sym_or2] = ACTIONS(2144), - [anon_sym_not_DASHin2] = ACTIONS(2144), - [anon_sym_starts_DASHwith2] = ACTIONS(2144), - [anon_sym_ends_DASHwith2] = ACTIONS(2144), - [anon_sym_EQ_EQ2] = ACTIONS(2144), - [anon_sym_BANG_EQ2] = ACTIONS(2144), - [anon_sym_LT2] = ACTIONS(2144), - [anon_sym_LT_EQ2] = ACTIONS(2144), - [anon_sym_GT_EQ2] = ACTIONS(2144), - [anon_sym_EQ_TILDE2] = ACTIONS(2144), - [anon_sym_BANG_TILDE2] = ACTIONS(2144), - [anon_sym_STAR_STAR2] = ACTIONS(2144), - [anon_sym_PLUS_PLUS2] = ACTIONS(2144), - [anon_sym_SLASH2] = ACTIONS(2144), - [anon_sym_mod2] = ACTIONS(2144), - [anon_sym_SLASH_SLASH2] = ACTIONS(2144), - [anon_sym_PLUS2] = ACTIONS(2144), - [anon_sym_bit_DASHshl2] = ACTIONS(2144), - [anon_sym_bit_DASHshr2] = ACTIONS(2144), - [anon_sym_bit_DASHand2] = ACTIONS(2144), - [anon_sym_bit_DASHxor2] = ACTIONS(2144), - [anon_sym_bit_DASHor2] = ACTIONS(2144), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1355), + [sym__newline] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(937), + [anon_sym_err_GT_PIPE] = ACTIONS(937), + [anon_sym_out_GT_PIPE] = ACTIONS(937), + [anon_sym_e_GT_PIPE] = ACTIONS(937), + [anon_sym_o_GT_PIPE] = ACTIONS(937), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(937), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(937), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(937), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(937), + [anon_sym_RPAREN] = ACTIONS(937), + [anon_sym_GT2] = ACTIONS(935), + [anon_sym_DASH2] = ACTIONS(937), + [anon_sym_in2] = ACTIONS(937), + [anon_sym_if] = ACTIONS(937), + [anon_sym_LBRACE] = ACTIONS(937), + [anon_sym_RBRACE] = ACTIONS(937), + [anon_sym_EQ_GT] = ACTIONS(937), + [anon_sym_STAR2] = ACTIONS(935), + [anon_sym_and2] = ACTIONS(937), + [anon_sym_xor2] = ACTIONS(937), + [anon_sym_or2] = ACTIONS(937), + [anon_sym_not_DASHin2] = ACTIONS(937), + [anon_sym_has2] = ACTIONS(937), + [anon_sym_not_DASHhas2] = ACTIONS(937), + [anon_sym_starts_DASHwith2] = ACTIONS(937), + [anon_sym_ends_DASHwith2] = ACTIONS(937), + [anon_sym_EQ_EQ2] = ACTIONS(937), + [anon_sym_BANG_EQ2] = ACTIONS(937), + [anon_sym_LT2] = ACTIONS(935), + [anon_sym_LT_EQ2] = ACTIONS(937), + [anon_sym_GT_EQ2] = ACTIONS(937), + [anon_sym_EQ_TILDE2] = ACTIONS(937), + [anon_sym_BANG_TILDE2] = ACTIONS(937), + [anon_sym_STAR_STAR2] = ACTIONS(937), + [anon_sym_PLUS_PLUS2] = ACTIONS(937), + [anon_sym_SLASH2] = ACTIONS(935), + [anon_sym_mod2] = ACTIONS(937), + [anon_sym_SLASH_SLASH2] = ACTIONS(937), + [anon_sym_PLUS2] = ACTIONS(935), + [anon_sym_bit_DASHshl2] = ACTIONS(937), + [anon_sym_bit_DASHshr2] = ACTIONS(937), + [anon_sym_bit_DASHand2] = ACTIONS(937), + [anon_sym_bit_DASHxor2] = ACTIONS(937), + [anon_sym_bit_DASHor2] = ACTIONS(937), + [anon_sym_DOT_DOT2] = ACTIONS(935), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(937), + [anon_sym_DOT_DOT_LT2] = ACTIONS(937), + [anon_sym_COLON2] = ACTIONS(937), + [anon_sym_DOT2] = ACTIONS(4593), + [anon_sym_err_GT] = ACTIONS(935), + [anon_sym_out_GT] = ACTIONS(935), + [anon_sym_e_GT] = ACTIONS(935), + [anon_sym_o_GT] = ACTIONS(935), + [anon_sym_err_PLUSout_GT] = ACTIONS(935), + [anon_sym_out_PLUSerr_GT] = ACTIONS(935), + [anon_sym_o_PLUSe_GT] = ACTIONS(935), + [anon_sym_e_PLUSo_GT] = ACTIONS(935), + [anon_sym_err_GT_GT] = ACTIONS(937), + [anon_sym_out_GT_GT] = ACTIONS(937), + [anon_sym_e_GT_GT] = ACTIONS(937), + [anon_sym_o_GT_GT] = ACTIONS(937), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(937), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(937), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(937), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(937), + [anon_sym_POUND] = ACTIONS(247), }, [1356] = { + [sym__expr_parenthesized_immediate] = STATE(2032), + [sym__immediate_decimal] = STATE(2035), + [sym_val_variable] = STATE(2032), [sym_comment] = STATE(1356), - [ts_builtin_sym_end] = ACTIONS(1682), - [sym__newline] = ACTIONS(1682), - [anon_sym_SEMI] = ACTIONS(1682), - [anon_sym_PIPE] = ACTIONS(1682), - [anon_sym_err_GT_PIPE] = ACTIONS(1682), - [anon_sym_out_GT_PIPE] = ACTIONS(1682), - [anon_sym_e_GT_PIPE] = ACTIONS(1682), - [anon_sym_o_GT_PIPE] = ACTIONS(1682), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1682), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1682), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1682), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1682), - [anon_sym_LBRACK] = ACTIONS(1682), - [anon_sym_LPAREN] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1680), - [anon_sym_DASH_DASH] = ACTIONS(1682), - [anon_sym_DASH2] = ACTIONS(1680), - [anon_sym_LBRACE] = ACTIONS(1682), - [anon_sym_DOT_DOT] = ACTIONS(1680), - [anon_sym_LPAREN2] = ACTIONS(1682), - [anon_sym_DOT_DOT2] = ACTIONS(1680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1680), - [anon_sym_DOT_DOT_LT] = ACTIONS(1680), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1682), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1682), - [anon_sym_null] = ACTIONS(1682), - [anon_sym_true] = ACTIONS(1682), - [anon_sym_false] = ACTIONS(1682), - [aux_sym__val_number_decimal_token1] = ACTIONS(1680), - [aux_sym__val_number_decimal_token2] = ACTIONS(1682), - [aux_sym__val_number_decimal_token3] = ACTIONS(1682), - [aux_sym__val_number_decimal_token4] = ACTIONS(1682), - [aux_sym__val_number_token1] = ACTIONS(1682), - [aux_sym__val_number_token2] = ACTIONS(1682), - [aux_sym__val_number_token3] = ACTIONS(1682), - [aux_sym__val_number_token4] = ACTIONS(1682), - [aux_sym__val_number_token5] = ACTIONS(1682), - [aux_sym__val_number_token6] = ACTIONS(1682), - [anon_sym_0b] = ACTIONS(1680), - [sym_filesize_unit] = ACTIONS(1682), - [sym_duration_unit] = ACTIONS(1682), - [anon_sym_0o] = ACTIONS(1680), - [anon_sym_0x] = ACTIONS(1680), - [sym_val_date] = ACTIONS(1682), - [anon_sym_DQUOTE] = ACTIONS(1682), - [sym__str_single_quotes] = ACTIONS(1682), - [sym__str_back_ticks] = ACTIONS(1682), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1682), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1682), - [anon_sym_err_GT] = ACTIONS(1680), - [anon_sym_out_GT] = ACTIONS(1680), - [anon_sym_e_GT] = ACTIONS(1680), - [anon_sym_o_GT] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT] = ACTIONS(1680), - [anon_sym_err_GT_GT] = ACTIONS(1682), - [anon_sym_out_GT_GT] = ACTIONS(1682), - [anon_sym_e_GT_GT] = ACTIONS(1682), - [anon_sym_o_GT_GT] = ACTIONS(1682), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1682), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1682), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1682), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1682), - [aux_sym_unquoted_token1] = ACTIONS(1680), - [aux_sym_unquoted_token2] = ACTIONS(1680), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1682), + [ts_builtin_sym_end] = ACTIONS(1532), + [sym__newline] = ACTIONS(1532), + [anon_sym_SEMI] = ACTIONS(1532), + [anon_sym_PIPE] = ACTIONS(1532), + [anon_sym_err_GT_PIPE] = ACTIONS(1532), + [anon_sym_out_GT_PIPE] = ACTIONS(1532), + [anon_sym_e_GT_PIPE] = ACTIONS(1532), + [anon_sym_o_GT_PIPE] = ACTIONS(1532), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1532), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1532), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1532), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1532), + [anon_sym_LBRACK] = ACTIONS(1532), + [anon_sym_LPAREN] = ACTIONS(1522), + [anon_sym_DOLLAR] = ACTIONS(4157), + [anon_sym_DASH_DASH] = ACTIONS(1532), + [anon_sym_DASH2] = ACTIONS(1522), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_DOT_DOT] = ACTIONS(1522), + [anon_sym_LPAREN2] = ACTIONS(4159), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1532), + [anon_sym_DOT_DOT_LT] = ACTIONS(1532), + [aux_sym__immediate_decimal_token1] = ACTIONS(4474), + [aux_sym__immediate_decimal_token3] = ACTIONS(4476), + [aux_sym__immediate_decimal_token4] = ACTIONS(4478), + [aux_sym__immediate_decimal_token5] = ACTIONS(4480), + [anon_sym_null] = ACTIONS(1532), + [anon_sym_true] = ACTIONS(1532), + [anon_sym_false] = ACTIONS(1532), + [aux_sym__val_number_decimal_token1] = ACTIONS(1522), + [aux_sym__val_number_decimal_token2] = ACTIONS(1522), + [aux_sym__val_number_decimal_token3] = ACTIONS(1522), + [aux_sym__val_number_decimal_token4] = ACTIONS(1522), + [aux_sym__val_number_token1] = ACTIONS(1532), + [aux_sym__val_number_token2] = ACTIONS(1532), + [aux_sym__val_number_token3] = ACTIONS(1532), + [aux_sym__val_number_token4] = ACTIONS(1532), + [aux_sym__val_number_token5] = ACTIONS(1532), + [aux_sym__val_number_token6] = ACTIONS(1532), + [anon_sym_0b] = ACTIONS(1522), + [anon_sym_0o] = ACTIONS(1522), + [anon_sym_0x] = ACTIONS(1522), + [sym_val_date] = ACTIONS(1532), + [anon_sym_DQUOTE] = ACTIONS(1532), + [sym__str_single_quotes] = ACTIONS(1532), + [sym__str_back_ticks] = ACTIONS(1532), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1532), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1532), + [anon_sym_err_GT] = ACTIONS(1522), + [anon_sym_out_GT] = ACTIONS(1522), + [anon_sym_e_GT] = ACTIONS(1522), + [anon_sym_o_GT] = ACTIONS(1522), + [anon_sym_err_PLUSout_GT] = ACTIONS(1522), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1522), + [anon_sym_o_PLUSe_GT] = ACTIONS(1522), + [anon_sym_e_PLUSo_GT] = ACTIONS(1522), + [anon_sym_err_GT_GT] = ACTIONS(1532), + [anon_sym_out_GT_GT] = ACTIONS(1532), + [anon_sym_e_GT_GT] = ACTIONS(1532), + [anon_sym_o_GT_GT] = ACTIONS(1532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1532), + [aux_sym_unquoted_token1] = ACTIONS(1522), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1532), }, [1357] = { [sym_comment] = STATE(1357), - [anon_sym_EQ] = ACTIONS(996), - [anon_sym_PLUS_EQ] = ACTIONS(998), - [anon_sym_DASH_EQ] = ACTIONS(998), - [anon_sym_STAR_EQ] = ACTIONS(998), - [anon_sym_SLASH_EQ] = ACTIONS(998), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(998), - [sym__newline] = ACTIONS(998), - [anon_sym_SEMI] = ACTIONS(998), - [anon_sym_PIPE] = ACTIONS(998), - [anon_sym_err_GT_PIPE] = ACTIONS(998), - [anon_sym_out_GT_PIPE] = ACTIONS(998), - [anon_sym_e_GT_PIPE] = ACTIONS(998), - [anon_sym_o_GT_PIPE] = ACTIONS(998), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(998), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(998), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(998), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(998), - [anon_sym_RPAREN] = ACTIONS(998), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_in2] = ACTIONS(998), - [anon_sym_RBRACE] = ACTIONS(998), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(998), - [anon_sym_xor2] = ACTIONS(998), - [anon_sym_or2] = ACTIONS(998), - [anon_sym_not_DASHin2] = ACTIONS(998), - [anon_sym_starts_DASHwith2] = ACTIONS(998), - [anon_sym_ends_DASHwith2] = ACTIONS(998), - [anon_sym_EQ_EQ2] = ACTIONS(998), - [anon_sym_BANG_EQ2] = ACTIONS(998), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(998), - [anon_sym_GT_EQ2] = ACTIONS(998), - [anon_sym_EQ_TILDE2] = ACTIONS(998), - [anon_sym_BANG_TILDE2] = ACTIONS(998), - [anon_sym_STAR_STAR2] = ACTIONS(998), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(998), - [anon_sym_SLASH_SLASH2] = ACTIONS(998), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(998), - [anon_sym_bit_DASHshr2] = ACTIONS(998), - [anon_sym_bit_DASHand2] = ACTIONS(998), - [anon_sym_bit_DASHxor2] = ACTIONS(998), - [anon_sym_bit_DASHor2] = ACTIONS(998), - [anon_sym_DOT_DOT2] = ACTIONS(996), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(998), - [anon_sym_DOT_DOT_LT2] = ACTIONS(998), - [anon_sym_COLON2] = ACTIONS(998), - [anon_sym_DOT2] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(998), - [anon_sym_out_GT_GT] = ACTIONS(998), - [anon_sym_e_GT_GT] = ACTIONS(998), - [anon_sym_o_GT_GT] = ACTIONS(998), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(998), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(998), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(998), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(998), - [anon_sym_POUND] = ACTIONS(251), + [ts_builtin_sym_end] = ACTIONS(1514), + [sym__newline] = ACTIONS(1514), + [anon_sym_SEMI] = ACTIONS(1514), + [anon_sym_PIPE] = ACTIONS(1514), + [anon_sym_err_GT_PIPE] = ACTIONS(1514), + [anon_sym_out_GT_PIPE] = ACTIONS(1514), + [anon_sym_e_GT_PIPE] = ACTIONS(1514), + [anon_sym_o_GT_PIPE] = ACTIONS(1514), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1514), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1514), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1514), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1514), + [anon_sym_LBRACK] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_DOLLAR] = ACTIONS(1512), + [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_DOT_DOT] = ACTIONS(1512), + [anon_sym_LPAREN2] = ACTIONS(1514), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [aux_sym__immediate_decimal_token2] = ACTIONS(4145), + [anon_sym_null] = ACTIONS(1514), + [anon_sym_true] = ACTIONS(1514), + [anon_sym_false] = ACTIONS(1514), + [aux_sym__val_number_decimal_token1] = ACTIONS(1512), + [aux_sym__val_number_decimal_token2] = ACTIONS(1514), + [aux_sym__val_number_decimal_token3] = ACTIONS(1514), + [aux_sym__val_number_decimal_token4] = ACTIONS(1514), + [aux_sym__val_number_token1] = ACTIONS(1514), + [aux_sym__val_number_token2] = ACTIONS(1514), + [aux_sym__val_number_token3] = ACTIONS(1514), + [aux_sym__val_number_token4] = ACTIONS(1514), + [aux_sym__val_number_token5] = ACTIONS(1514), + [aux_sym__val_number_token6] = ACTIONS(1514), + [anon_sym_0b] = ACTIONS(1512), + [sym_filesize_unit] = ACTIONS(1514), + [sym_duration_unit] = ACTIONS(1514), + [anon_sym_0o] = ACTIONS(1512), + [anon_sym_0x] = ACTIONS(1512), + [sym_val_date] = ACTIONS(1514), + [anon_sym_DQUOTE] = ACTIONS(1514), + [sym__str_single_quotes] = ACTIONS(1514), + [sym__str_back_ticks] = ACTIONS(1514), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1514), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1514), + [anon_sym_err_GT] = ACTIONS(1512), + [anon_sym_out_GT] = ACTIONS(1512), + [anon_sym_e_GT] = ACTIONS(1512), + [anon_sym_o_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT] = ACTIONS(1512), + [anon_sym_err_GT_GT] = ACTIONS(1514), + [anon_sym_out_GT_GT] = ACTIONS(1514), + [anon_sym_e_GT_GT] = ACTIONS(1514), + [anon_sym_o_GT_GT] = ACTIONS(1514), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1514), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1514), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1514), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1514), + [aux_sym_unquoted_token1] = ACTIONS(1512), + [aux_sym_unquoted_token2] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1514), }, [1358] = { [sym_comment] = STATE(1358), - [sym__newline] = ACTIONS(1544), - [anon_sym_SEMI] = ACTIONS(1544), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_err_GT_PIPE] = ACTIONS(1544), - [anon_sym_out_GT_PIPE] = ACTIONS(1544), - [anon_sym_e_GT_PIPE] = ACTIONS(1544), - [anon_sym_o_GT_PIPE] = ACTIONS(1544), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1544), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1544), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1544), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1544), - [anon_sym_LPAREN] = ACTIONS(1544), - [anon_sym_RPAREN] = ACTIONS(1544), - [anon_sym_DOLLAR] = ACTIONS(1542), - [anon_sym_DASH_DASH] = ACTIONS(1544), - [anon_sym_DASH2] = ACTIONS(1542), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_RBRACE] = ACTIONS(1544), - [anon_sym_DOT_DOT] = ACTIONS(1542), - [anon_sym_DOT_DOT2] = ACTIONS(1542), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1542), - [anon_sym_DOT_DOT_LT] = ACTIONS(1542), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1544), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1544), - [anon_sym_null] = ACTIONS(1544), - [anon_sym_true] = ACTIONS(1544), - [anon_sym_false] = ACTIONS(1544), - [aux_sym__val_number_decimal_token1] = ACTIONS(1542), - [aux_sym__val_number_decimal_token2] = ACTIONS(1544), - [aux_sym__val_number_decimal_token3] = ACTIONS(1544), - [aux_sym__val_number_decimal_token4] = ACTIONS(1544), - [aux_sym__val_number_token1] = ACTIONS(1544), - [aux_sym__val_number_token2] = ACTIONS(1544), - [aux_sym__val_number_token3] = ACTIONS(1544), - [aux_sym__val_number_token4] = ACTIONS(1544), - [aux_sym__val_number_token5] = ACTIONS(1544), - [aux_sym__val_number_token6] = ACTIONS(1544), - [anon_sym_0b] = ACTIONS(1542), - [sym_filesize_unit] = ACTIONS(1544), - [sym_duration_unit] = ACTIONS(1544), - [anon_sym_0o] = ACTIONS(1542), - [anon_sym_0x] = ACTIONS(1542), - [sym_val_date] = ACTIONS(1544), - [anon_sym_DQUOTE] = ACTIONS(1544), - [sym__str_single_quotes] = ACTIONS(1544), - [sym__str_back_ticks] = ACTIONS(1544), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1544), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1544), - [anon_sym_err_GT] = ACTIONS(1542), - [anon_sym_out_GT] = ACTIONS(1542), - [anon_sym_e_GT] = ACTIONS(1542), - [anon_sym_o_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT] = ACTIONS(1542), - [anon_sym_err_GT_GT] = ACTIONS(1544), - [anon_sym_out_GT_GT] = ACTIONS(1544), - [anon_sym_e_GT_GT] = ACTIONS(1544), - [anon_sym_o_GT_GT] = ACTIONS(1544), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1544), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1544), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1544), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1544), - [aux_sym_unquoted_token1] = ACTIONS(1542), - [aux_sym_unquoted_token2] = ACTIONS(1542), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1544), + [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_GT2] = ACTIONS(986), + [anon_sym_DASH2] = ACTIONS(986), + [anon_sym_in2] = ACTIONS(988), + [anon_sym_RBRACE] = ACTIONS(988), + [anon_sym_STAR2] = ACTIONS(986), + [anon_sym_and2] = ACTIONS(988), + [anon_sym_xor2] = ACTIONS(988), + [anon_sym_or2] = ACTIONS(988), + [anon_sym_not_DASHin2] = ACTIONS(988), + [anon_sym_has2] = ACTIONS(988), + [anon_sym_not_DASHhas2] = ACTIONS(988), + [anon_sym_starts_DASHwith2] = ACTIONS(988), + [anon_sym_ends_DASHwith2] = ACTIONS(988), + [anon_sym_EQ_EQ2] = ACTIONS(988), + [anon_sym_BANG_EQ2] = ACTIONS(988), + [anon_sym_LT2] = ACTIONS(986), + [anon_sym_LT_EQ2] = ACTIONS(988), + [anon_sym_GT_EQ2] = ACTIONS(988), + [anon_sym_EQ_TILDE2] = ACTIONS(988), + [anon_sym_BANG_TILDE2] = ACTIONS(988), + [anon_sym_STAR_STAR2] = ACTIONS(988), + [anon_sym_PLUS_PLUS2] = ACTIONS(986), + [anon_sym_SLASH2] = ACTIONS(986), + [anon_sym_mod2] = ACTIONS(988), + [anon_sym_SLASH_SLASH2] = ACTIONS(988), + [anon_sym_PLUS2] = ACTIONS(986), + [anon_sym_bit_DASHshl2] = ACTIONS(988), + [anon_sym_bit_DASHshr2] = ACTIONS(988), + [anon_sym_bit_DASHand2] = ACTIONS(988), + [anon_sym_bit_DASHxor2] = ACTIONS(988), + [anon_sym_bit_DASHor2] = ACTIONS(988), + [anon_sym_DOT_DOT2] = ACTIONS(986), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(988), + [anon_sym_DOT_DOT_LT2] = ACTIONS(988), + [anon_sym_COLON2] = 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), }, [1359] = { - [sym_path] = STATE(1454), [sym_comment] = STATE(1359), - [aux_sym_cell_path_repeat1] = STATE(1359), - [ts_builtin_sym_end] = ACTIONS(955), - [anon_sym_EQ] = ACTIONS(953), - [anon_sym_PLUS_EQ] = ACTIONS(955), - [anon_sym_DASH_EQ] = ACTIONS(955), - [anon_sym_STAR_EQ] = ACTIONS(955), - [anon_sym_SLASH_EQ] = ACTIONS(955), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(955), - [sym__newline] = ACTIONS(955), - [anon_sym_SEMI] = ACTIONS(955), - [anon_sym_PIPE] = ACTIONS(955), - [anon_sym_err_GT_PIPE] = ACTIONS(955), - [anon_sym_out_GT_PIPE] = ACTIONS(955), - [anon_sym_e_GT_PIPE] = ACTIONS(955), - [anon_sym_o_GT_PIPE] = ACTIONS(955), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(955), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(955), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(955), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(955), - [anon_sym_GT2] = ACTIONS(953), - [anon_sym_DASH2] = ACTIONS(953), - [anon_sym_in2] = ACTIONS(955), - [anon_sym_STAR2] = ACTIONS(953), - [anon_sym_and2] = ACTIONS(955), - [anon_sym_xor2] = ACTIONS(955), - [anon_sym_or2] = ACTIONS(955), - [anon_sym_not_DASHin2] = ACTIONS(955), - [anon_sym_starts_DASHwith2] = ACTIONS(955), - [anon_sym_ends_DASHwith2] = ACTIONS(955), - [anon_sym_EQ_EQ2] = ACTIONS(955), - [anon_sym_BANG_EQ2] = ACTIONS(955), - [anon_sym_LT2] = ACTIONS(953), - [anon_sym_LT_EQ2] = ACTIONS(955), - [anon_sym_GT_EQ2] = ACTIONS(955), - [anon_sym_EQ_TILDE2] = ACTIONS(955), - [anon_sym_BANG_TILDE2] = ACTIONS(955), - [anon_sym_STAR_STAR2] = ACTIONS(955), - [anon_sym_PLUS_PLUS2] = ACTIONS(953), - [anon_sym_SLASH2] = ACTIONS(953), - [anon_sym_mod2] = ACTIONS(955), - [anon_sym_SLASH_SLASH2] = ACTIONS(955), - [anon_sym_PLUS2] = ACTIONS(953), - [anon_sym_bit_DASHshl2] = ACTIONS(955), - [anon_sym_bit_DASHshr2] = ACTIONS(955), - [anon_sym_bit_DASHand2] = ACTIONS(955), - [anon_sym_bit_DASHxor2] = ACTIONS(955), - [anon_sym_bit_DASHor2] = ACTIONS(955), - [anon_sym_DOT_DOT2] = ACTIONS(953), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(955), - [anon_sym_DOT_DOT_LT2] = ACTIONS(955), - [anon_sym_DOT2] = ACTIONS(4616), - [anon_sym_err_GT] = ACTIONS(953), - [anon_sym_out_GT] = ACTIONS(953), - [anon_sym_e_GT] = ACTIONS(953), - [anon_sym_o_GT] = ACTIONS(953), - [anon_sym_err_PLUSout_GT] = ACTIONS(953), - [anon_sym_out_PLUSerr_GT] = ACTIONS(953), - [anon_sym_o_PLUSe_GT] = ACTIONS(953), - [anon_sym_e_PLUSo_GT] = ACTIONS(953), - [anon_sym_err_GT_GT] = ACTIONS(955), - [anon_sym_out_GT_GT] = ACTIONS(955), - [anon_sym_e_GT_GT] = ACTIONS(955), - [anon_sym_o_GT_GT] = ACTIONS(955), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(955), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(955), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(955), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(955), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(1620), + [anon_sym_SEMI] = ACTIONS(1620), + [anon_sym_PIPE] = ACTIONS(1620), + [anon_sym_err_GT_PIPE] = ACTIONS(1620), + [anon_sym_out_GT_PIPE] = ACTIONS(1620), + [anon_sym_e_GT_PIPE] = ACTIONS(1620), + [anon_sym_o_GT_PIPE] = ACTIONS(1620), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1620), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1620), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1620), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_LPAREN] = ACTIONS(1620), + [anon_sym_RPAREN] = ACTIONS(1620), + [anon_sym_DOLLAR] = ACTIONS(1618), + [anon_sym_DASH_DASH] = ACTIONS(1620), + [anon_sym_DASH2] = ACTIONS(1618), + [anon_sym_LBRACE] = ACTIONS(1620), + [anon_sym_RBRACE] = ACTIONS(1620), + [anon_sym_DOT_DOT] = ACTIONS(1618), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1618), + [anon_sym_DOT_DOT_LT] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [aux_sym__immediate_decimal_token2] = ACTIONS(4596), + [anon_sym_null] = ACTIONS(1620), + [anon_sym_true] = ACTIONS(1620), + [anon_sym_false] = ACTIONS(1620), + [aux_sym__val_number_decimal_token1] = ACTIONS(1618), + [aux_sym__val_number_decimal_token2] = ACTIONS(1620), + [aux_sym__val_number_decimal_token3] = ACTIONS(1620), + [aux_sym__val_number_decimal_token4] = ACTIONS(1620), + [aux_sym__val_number_token1] = ACTIONS(1620), + [aux_sym__val_number_token2] = ACTIONS(1620), + [aux_sym__val_number_token3] = ACTIONS(1620), + [aux_sym__val_number_token4] = ACTIONS(1620), + [aux_sym__val_number_token5] = ACTIONS(1620), + [aux_sym__val_number_token6] = ACTIONS(1620), + [anon_sym_0b] = ACTIONS(1618), + [sym_filesize_unit] = ACTIONS(1620), + [sym_duration_unit] = ACTIONS(1620), + [anon_sym_0o] = ACTIONS(1618), + [anon_sym_0x] = ACTIONS(1618), + [sym_val_date] = ACTIONS(1620), + [anon_sym_DQUOTE] = ACTIONS(1620), + [sym__str_single_quotes] = ACTIONS(1620), + [sym__str_back_ticks] = ACTIONS(1620), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1620), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1620), + [anon_sym_err_GT] = ACTIONS(1618), + [anon_sym_out_GT] = ACTIONS(1618), + [anon_sym_e_GT] = ACTIONS(1618), + [anon_sym_o_GT] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT] = ACTIONS(1618), + [anon_sym_err_GT_GT] = ACTIONS(1620), + [anon_sym_out_GT_GT] = ACTIONS(1620), + [anon_sym_e_GT_GT] = ACTIONS(1620), + [anon_sym_o_GT_GT] = ACTIONS(1620), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1620), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1620), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1620), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1620), + [aux_sym_unquoted_token1] = ACTIONS(1618), + [aux_sym_unquoted_token2] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1620), }, [1360] = { - [sym_cell_path] = STATE(1592), - [sym_path] = STATE(1527), [sym_comment] = STATE(1360), - [aux_sym_cell_path_repeat1] = STATE(1406), - [ts_builtin_sym_end] = ACTIONS(1721), - [sym__newline] = ACTIONS(1721), - [anon_sym_SEMI] = ACTIONS(1721), - [anon_sym_PIPE] = ACTIONS(1721), - [anon_sym_err_GT_PIPE] = ACTIONS(1721), - [anon_sym_out_GT_PIPE] = ACTIONS(1721), - [anon_sym_e_GT_PIPE] = ACTIONS(1721), - [anon_sym_o_GT_PIPE] = ACTIONS(1721), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1721), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1721), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1721), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1721), - [anon_sym_LBRACK] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1719), - [anon_sym_DASH_DASH] = ACTIONS(1721), - [anon_sym_DASH2] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1719), - [anon_sym_DOT_DOT2] = ACTIONS(1719), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1719), - [anon_sym_DOT_DOT_LT] = ACTIONS(1719), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1721), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1721), - [anon_sym_null] = ACTIONS(1721), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [aux_sym__val_number_decimal_token1] = ACTIONS(1719), - [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), - [aux_sym__val_number_token4] = ACTIONS(1721), - [aux_sym__val_number_token5] = ACTIONS(1721), - [aux_sym__val_number_token6] = ACTIONS(1721), - [anon_sym_0b] = ACTIONS(1719), - [anon_sym_0o] = ACTIONS(1719), - [anon_sym_0x] = ACTIONS(1719), - [sym_val_date] = ACTIONS(1721), - [anon_sym_DQUOTE] = ACTIONS(1721), - [sym__str_single_quotes] = ACTIONS(1721), - [sym__str_back_ticks] = ACTIONS(1721), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1721), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1721), - [anon_sym_DOT2] = ACTIONS(4572), - [anon_sym_err_GT] = ACTIONS(1719), - [anon_sym_out_GT] = ACTIONS(1719), - [anon_sym_e_GT] = ACTIONS(1719), - [anon_sym_o_GT] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT] = ACTIONS(1719), - [anon_sym_err_GT_GT] = ACTIONS(1721), - [anon_sym_out_GT_GT] = ACTIONS(1721), - [anon_sym_e_GT_GT] = ACTIONS(1721), - [anon_sym_o_GT_GT] = ACTIONS(1721), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1721), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1721), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1721), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1721), - [aux_sym_unquoted_token1] = ACTIONS(1719), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1721), + [ts_builtin_sym_end] = ACTIONS(958), + [anon_sym_EQ] = ACTIONS(956), + [anon_sym_PLUS_EQ] = ACTIONS(958), + [anon_sym_DASH_EQ] = ACTIONS(958), + [anon_sym_STAR_EQ] = ACTIONS(958), + [anon_sym_SLASH_EQ] = ACTIONS(958), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(958), + [sym__newline] = ACTIONS(958), + [anon_sym_SEMI] = ACTIONS(958), + [anon_sym_PIPE] = ACTIONS(958), + [anon_sym_err_GT_PIPE] = ACTIONS(958), + [anon_sym_out_GT_PIPE] = ACTIONS(958), + [anon_sym_e_GT_PIPE] = ACTIONS(958), + [anon_sym_o_GT_PIPE] = ACTIONS(958), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(958), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(958), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(958), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(958), + [anon_sym_GT2] = ACTIONS(956), + [anon_sym_DASH2] = ACTIONS(956), + [anon_sym_in2] = ACTIONS(958), + [anon_sym_STAR2] = ACTIONS(956), + [anon_sym_QMARK2] = ACTIONS(958), + [anon_sym_and2] = ACTIONS(958), + [anon_sym_xor2] = ACTIONS(958), + [anon_sym_or2] = ACTIONS(958), + [anon_sym_not_DASHin2] = ACTIONS(958), + [anon_sym_has2] = ACTIONS(958), + [anon_sym_not_DASHhas2] = ACTIONS(958), + [anon_sym_starts_DASHwith2] = ACTIONS(958), + [anon_sym_ends_DASHwith2] = ACTIONS(958), + [anon_sym_EQ_EQ2] = ACTIONS(958), + [anon_sym_BANG_EQ2] = ACTIONS(958), + [anon_sym_LT2] = ACTIONS(956), + [anon_sym_LT_EQ2] = ACTIONS(958), + [anon_sym_GT_EQ2] = ACTIONS(958), + [anon_sym_EQ_TILDE2] = ACTIONS(958), + [anon_sym_BANG_TILDE2] = ACTIONS(958), + [anon_sym_STAR_STAR2] = ACTIONS(958), + [anon_sym_PLUS_PLUS2] = ACTIONS(956), + [anon_sym_SLASH2] = ACTIONS(956), + [anon_sym_mod2] = ACTIONS(958), + [anon_sym_SLASH_SLASH2] = ACTIONS(958), + [anon_sym_PLUS2] = ACTIONS(956), + [anon_sym_bit_DASHshl2] = ACTIONS(958), + [anon_sym_bit_DASHshr2] = ACTIONS(958), + [anon_sym_bit_DASHand2] = ACTIONS(958), + [anon_sym_bit_DASHxor2] = ACTIONS(958), + [anon_sym_bit_DASHor2] = ACTIONS(958), + [anon_sym_DOT_DOT2] = ACTIONS(956), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(958), + [anon_sym_DOT_DOT_LT2] = ACTIONS(958), + [anon_sym_DOT2] = ACTIONS(956), + [anon_sym_err_GT] = ACTIONS(956), + [anon_sym_out_GT] = ACTIONS(956), + [anon_sym_e_GT] = ACTIONS(956), + [anon_sym_o_GT] = ACTIONS(956), + [anon_sym_err_PLUSout_GT] = ACTIONS(956), + [anon_sym_out_PLUSerr_GT] = ACTIONS(956), + [anon_sym_o_PLUSe_GT] = ACTIONS(956), + [anon_sym_e_PLUSo_GT] = ACTIONS(956), + [anon_sym_err_GT_GT] = ACTIONS(958), + [anon_sym_out_GT_GT] = ACTIONS(958), + [anon_sym_e_GT_GT] = ACTIONS(958), + [anon_sym_o_GT_GT] = ACTIONS(958), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(958), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(958), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(958), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(958), + [anon_sym_POUND] = ACTIONS(247), }, [1361] = { - [sym_path] = STATE(1468), [sym_comment] = STATE(1361), - [aux_sym_cell_path_repeat1] = STATE(1361), - [sym__newline] = ACTIONS(955), - [anon_sym_SEMI] = ACTIONS(955), - [anon_sym_PIPE] = ACTIONS(955), - [anon_sym_err_GT_PIPE] = ACTIONS(955), - [anon_sym_out_GT_PIPE] = ACTIONS(955), - [anon_sym_e_GT_PIPE] = ACTIONS(955), - [anon_sym_o_GT_PIPE] = ACTIONS(955), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(955), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(955), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(955), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(955), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_LPAREN] = ACTIONS(955), - [anon_sym_RPAREN] = ACTIONS(955), - [anon_sym_DOLLAR] = ACTIONS(953), - [anon_sym_DASH_DASH] = ACTIONS(955), - [anon_sym_DASH2] = ACTIONS(953), - [anon_sym_LBRACE] = ACTIONS(955), - [anon_sym_RBRACE] = ACTIONS(955), - [anon_sym_DOT_DOT] = ACTIONS(953), - [anon_sym_DOT_DOT2] = ACTIONS(953), - [anon_sym_DOT_DOT_EQ] = ACTIONS(953), - [anon_sym_DOT_DOT_LT] = ACTIONS(953), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(955), - [anon_sym_DOT_DOT_LT2] = ACTIONS(955), - [anon_sym_null] = ACTIONS(955), - [anon_sym_true] = ACTIONS(955), - [anon_sym_false] = ACTIONS(955), - [aux_sym__val_number_decimal_token1] = ACTIONS(953), - [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), - [aux_sym__val_number_token4] = ACTIONS(955), - [aux_sym__val_number_token5] = ACTIONS(955), - [aux_sym__val_number_token6] = ACTIONS(955), - [anon_sym_0b] = ACTIONS(953), - [anon_sym_0o] = ACTIONS(953), - [anon_sym_0x] = ACTIONS(953), - [sym_val_date] = ACTIONS(955), - [anon_sym_DQUOTE] = ACTIONS(955), - [sym__str_single_quotes] = ACTIONS(955), - [sym__str_back_ticks] = ACTIONS(955), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(955), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(955), - [anon_sym_DOT2] = ACTIONS(4619), - [anon_sym_err_GT] = ACTIONS(953), - [anon_sym_out_GT] = ACTIONS(953), - [anon_sym_e_GT] = ACTIONS(953), - [anon_sym_o_GT] = ACTIONS(953), - [anon_sym_err_PLUSout_GT] = ACTIONS(953), - [anon_sym_out_PLUSerr_GT] = ACTIONS(953), - [anon_sym_o_PLUSe_GT] = ACTIONS(953), - [anon_sym_e_PLUSo_GT] = ACTIONS(953), - [anon_sym_err_GT_GT] = ACTIONS(955), - [anon_sym_out_GT_GT] = ACTIONS(955), - [anon_sym_e_GT_GT] = ACTIONS(955), - [anon_sym_o_GT_GT] = ACTIONS(955), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(955), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(955), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(955), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(955), - [aux_sym_unquoted_token1] = ACTIONS(953), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(955), + [sym__newline] = ACTIONS(1620), + [anon_sym_SEMI] = ACTIONS(1620), + [anon_sym_PIPE] = ACTIONS(1620), + [anon_sym_err_GT_PIPE] = ACTIONS(1620), + [anon_sym_out_GT_PIPE] = ACTIONS(1620), + [anon_sym_e_GT_PIPE] = ACTIONS(1620), + [anon_sym_o_GT_PIPE] = ACTIONS(1620), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1620), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1620), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1620), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_RPAREN] = ACTIONS(1620), + [anon_sym_DOLLAR] = ACTIONS(1618), + [anon_sym_DASH_DASH] = ACTIONS(1620), + [anon_sym_DASH2] = ACTIONS(1618), + [anon_sym_LBRACE] = ACTIONS(1620), + [anon_sym_RBRACE] = ACTIONS(1620), + [anon_sym_DOT_DOT] = ACTIONS(1618), + [anon_sym_LPAREN2] = ACTIONS(1620), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1618), + [anon_sym_DOT_DOT_LT] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [anon_sym_null] = ACTIONS(1620), + [anon_sym_true] = ACTIONS(1620), + [anon_sym_false] = ACTIONS(1620), + [aux_sym__val_number_decimal_token1] = ACTIONS(1618), + [aux_sym__val_number_decimal_token2] = ACTIONS(1620), + [aux_sym__val_number_decimal_token3] = ACTIONS(1620), + [aux_sym__val_number_decimal_token4] = ACTIONS(1620), + [aux_sym__val_number_token1] = ACTIONS(1620), + [aux_sym__val_number_token2] = ACTIONS(1620), + [aux_sym__val_number_token3] = ACTIONS(1620), + [aux_sym__val_number_token4] = ACTIONS(1620), + [aux_sym__val_number_token5] = ACTIONS(1620), + [aux_sym__val_number_token6] = ACTIONS(1620), + [anon_sym_0b] = ACTIONS(1618), + [sym_filesize_unit] = ACTIONS(1620), + [sym_duration_unit] = ACTIONS(1620), + [anon_sym_0o] = ACTIONS(1618), + [anon_sym_0x] = ACTIONS(1618), + [sym_val_date] = ACTIONS(1620), + [anon_sym_DQUOTE] = ACTIONS(1620), + [sym__str_single_quotes] = ACTIONS(1620), + [sym__str_back_ticks] = ACTIONS(1620), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1620), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1620), + [anon_sym_err_GT] = ACTIONS(1618), + [anon_sym_out_GT] = ACTIONS(1618), + [anon_sym_e_GT] = ACTIONS(1618), + [anon_sym_o_GT] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT] = ACTIONS(1618), + [anon_sym_err_GT_GT] = ACTIONS(1620), + [anon_sym_out_GT_GT] = ACTIONS(1620), + [anon_sym_e_GT_GT] = ACTIONS(1620), + [anon_sym_o_GT_GT] = ACTIONS(1620), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1620), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1620), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1620), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1620), + [aux_sym_unquoted_token1] = ACTIONS(1618), + [aux_sym_unquoted_token2] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1620), }, [1362] = { [sym_comment] = STATE(1362), - [anon_sym_EQ] = ACTIONS(992), - [anon_sym_PLUS_EQ] = ACTIONS(994), - [anon_sym_DASH_EQ] = ACTIONS(994), - [anon_sym_STAR_EQ] = ACTIONS(994), - [anon_sym_SLASH_EQ] = ACTIONS(994), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(994), - [sym__newline] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(994), - [anon_sym_err_GT_PIPE] = ACTIONS(994), - [anon_sym_out_GT_PIPE] = ACTIONS(994), - [anon_sym_e_GT_PIPE] = ACTIONS(994), - [anon_sym_o_GT_PIPE] = ACTIONS(994), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), - [anon_sym_RPAREN] = ACTIONS(994), - [anon_sym_GT2] = ACTIONS(992), - [anon_sym_DASH2] = ACTIONS(992), - [anon_sym_in2] = ACTIONS(994), - [anon_sym_RBRACE] = ACTIONS(994), - [anon_sym_STAR2] = ACTIONS(992), - [anon_sym_and2] = ACTIONS(994), - [anon_sym_xor2] = ACTIONS(994), - [anon_sym_or2] = ACTIONS(994), - [anon_sym_not_DASHin2] = ACTIONS(994), - [anon_sym_starts_DASHwith2] = ACTIONS(994), - [anon_sym_ends_DASHwith2] = ACTIONS(994), - [anon_sym_EQ_EQ2] = ACTIONS(994), - [anon_sym_BANG_EQ2] = ACTIONS(994), - [anon_sym_LT2] = ACTIONS(992), - [anon_sym_LT_EQ2] = ACTIONS(994), - [anon_sym_GT_EQ2] = ACTIONS(994), - [anon_sym_EQ_TILDE2] = ACTIONS(994), - [anon_sym_BANG_TILDE2] = ACTIONS(994), - [anon_sym_STAR_STAR2] = ACTIONS(994), - [anon_sym_PLUS_PLUS2] = ACTIONS(992), - [anon_sym_SLASH2] = ACTIONS(992), - [anon_sym_mod2] = ACTIONS(994), - [anon_sym_SLASH_SLASH2] = ACTIONS(994), - [anon_sym_PLUS2] = ACTIONS(992), - [anon_sym_bit_DASHshl2] = ACTIONS(994), - [anon_sym_bit_DASHshr2] = ACTIONS(994), - [anon_sym_bit_DASHand2] = ACTIONS(994), - [anon_sym_bit_DASHxor2] = ACTIONS(994), - [anon_sym_bit_DASHor2] = ACTIONS(994), - [anon_sym_DOT_DOT2] = ACTIONS(992), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(994), - [anon_sym_DOT_DOT_LT2] = ACTIONS(994), - [anon_sym_COLON2] = ACTIONS(994), - [anon_sym_DOT2] = ACTIONS(992), - [anon_sym_err_GT] = ACTIONS(992), - [anon_sym_out_GT] = ACTIONS(992), - [anon_sym_e_GT] = ACTIONS(992), - [anon_sym_o_GT] = ACTIONS(992), - [anon_sym_err_PLUSout_GT] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT] = ACTIONS(992), - [anon_sym_o_PLUSe_GT] = ACTIONS(992), - [anon_sym_e_PLUSo_GT] = ACTIONS(992), - [anon_sym_err_GT_GT] = ACTIONS(994), - [anon_sym_out_GT_GT] = ACTIONS(994), - [anon_sym_e_GT_GT] = ACTIONS(994), - [anon_sym_o_GT_GT] = ACTIONS(994), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), - [anon_sym_POUND] = ACTIONS(251), + [ts_builtin_sym_end] = ACTIONS(966), + [anon_sym_EQ] = ACTIONS(964), + [anon_sym_PLUS_EQ] = ACTIONS(966), + [anon_sym_DASH_EQ] = ACTIONS(966), + [anon_sym_STAR_EQ] = ACTIONS(966), + [anon_sym_SLASH_EQ] = ACTIONS(966), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(966), + [sym__newline] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_PIPE] = ACTIONS(966), + [anon_sym_err_GT_PIPE] = ACTIONS(966), + [anon_sym_out_GT_PIPE] = ACTIONS(966), + [anon_sym_e_GT_PIPE] = ACTIONS(966), + [anon_sym_o_GT_PIPE] = ACTIONS(966), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(966), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(966), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(966), + [anon_sym_GT2] = ACTIONS(964), + [anon_sym_DASH2] = ACTIONS(964), + [anon_sym_in2] = ACTIONS(966), + [anon_sym_STAR2] = ACTIONS(964), + [anon_sym_QMARK2] = ACTIONS(966), + [anon_sym_and2] = ACTIONS(966), + [anon_sym_xor2] = ACTIONS(966), + [anon_sym_or2] = ACTIONS(966), + [anon_sym_not_DASHin2] = ACTIONS(966), + [anon_sym_has2] = ACTIONS(966), + [anon_sym_not_DASHhas2] = ACTIONS(966), + [anon_sym_starts_DASHwith2] = ACTIONS(966), + [anon_sym_ends_DASHwith2] = ACTIONS(966), + [anon_sym_EQ_EQ2] = ACTIONS(966), + [anon_sym_BANG_EQ2] = ACTIONS(966), + [anon_sym_LT2] = ACTIONS(964), + [anon_sym_LT_EQ2] = ACTIONS(966), + [anon_sym_GT_EQ2] = ACTIONS(966), + [anon_sym_EQ_TILDE2] = ACTIONS(966), + [anon_sym_BANG_TILDE2] = ACTIONS(966), + [anon_sym_STAR_STAR2] = ACTIONS(966), + [anon_sym_PLUS_PLUS2] = ACTIONS(964), + [anon_sym_SLASH2] = ACTIONS(964), + [anon_sym_mod2] = ACTIONS(966), + [anon_sym_SLASH_SLASH2] = ACTIONS(966), + [anon_sym_PLUS2] = ACTIONS(964), + [anon_sym_bit_DASHshl2] = ACTIONS(966), + [anon_sym_bit_DASHshr2] = ACTIONS(966), + [anon_sym_bit_DASHand2] = ACTIONS(966), + [anon_sym_bit_DASHxor2] = ACTIONS(966), + [anon_sym_bit_DASHor2] = ACTIONS(966), + [anon_sym_DOT_DOT2] = ACTIONS(964), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(966), + [anon_sym_DOT_DOT_LT2] = ACTIONS(966), + [anon_sym_DOT2] = ACTIONS(964), + [anon_sym_err_GT] = ACTIONS(964), + [anon_sym_out_GT] = ACTIONS(964), + [anon_sym_e_GT] = ACTIONS(964), + [anon_sym_o_GT] = ACTIONS(964), + [anon_sym_err_PLUSout_GT] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT] = ACTIONS(964), + [anon_sym_o_PLUSe_GT] = ACTIONS(964), + [anon_sym_e_PLUSo_GT] = ACTIONS(964), + [anon_sym_err_GT_GT] = ACTIONS(966), + [anon_sym_out_GT_GT] = ACTIONS(966), + [anon_sym_e_GT_GT] = ACTIONS(966), + [anon_sym_o_GT_GT] = ACTIONS(966), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(966), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(966), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(966), + [anon_sym_POUND] = ACTIONS(247), }, [1363] = { [sym_comment] = STATE(1363), - [anon_sym_EQ] = ACTIONS(988), - [anon_sym_PLUS_EQ] = ACTIONS(990), - [anon_sym_DASH_EQ] = ACTIONS(990), - [anon_sym_STAR_EQ] = ACTIONS(990), - [anon_sym_SLASH_EQ] = ACTIONS(990), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(990), - [sym__newline] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_PIPE] = ACTIONS(990), - [anon_sym_err_GT_PIPE] = ACTIONS(990), - [anon_sym_out_GT_PIPE] = ACTIONS(990), - [anon_sym_e_GT_PIPE] = ACTIONS(990), - [anon_sym_o_GT_PIPE] = ACTIONS(990), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(990), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(990), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(990), - [anon_sym_RPAREN] = ACTIONS(990), - [anon_sym_GT2] = ACTIONS(988), - [anon_sym_DASH2] = ACTIONS(988), - [anon_sym_in2] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(990), - [anon_sym_STAR2] = ACTIONS(988), - [anon_sym_and2] = ACTIONS(990), - [anon_sym_xor2] = ACTIONS(990), - [anon_sym_or2] = ACTIONS(990), - [anon_sym_not_DASHin2] = ACTIONS(990), - [anon_sym_starts_DASHwith2] = ACTIONS(990), - [anon_sym_ends_DASHwith2] = ACTIONS(990), - [anon_sym_EQ_EQ2] = ACTIONS(990), - [anon_sym_BANG_EQ2] = ACTIONS(990), - [anon_sym_LT2] = ACTIONS(988), - [anon_sym_LT_EQ2] = ACTIONS(990), - [anon_sym_GT_EQ2] = ACTIONS(990), - [anon_sym_EQ_TILDE2] = ACTIONS(990), - [anon_sym_BANG_TILDE2] = ACTIONS(990), - [anon_sym_STAR_STAR2] = ACTIONS(990), - [anon_sym_PLUS_PLUS2] = ACTIONS(988), - [anon_sym_SLASH2] = ACTIONS(988), - [anon_sym_mod2] = ACTIONS(990), - [anon_sym_SLASH_SLASH2] = ACTIONS(990), - [anon_sym_PLUS2] = ACTIONS(988), - [anon_sym_bit_DASHshl2] = ACTIONS(990), - [anon_sym_bit_DASHshr2] = ACTIONS(990), - [anon_sym_bit_DASHand2] = ACTIONS(990), - [anon_sym_bit_DASHxor2] = ACTIONS(990), - [anon_sym_bit_DASHor2] = ACTIONS(990), - [anon_sym_DOT_DOT2] = ACTIONS(988), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(990), - [anon_sym_DOT_DOT_LT2] = ACTIONS(990), - [anon_sym_COLON2] = ACTIONS(990), - [anon_sym_DOT2] = ACTIONS(988), - [anon_sym_err_GT] = ACTIONS(988), - [anon_sym_out_GT] = ACTIONS(988), - [anon_sym_e_GT] = ACTIONS(988), - [anon_sym_o_GT] = ACTIONS(988), - [anon_sym_err_PLUSout_GT] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT] = ACTIONS(988), - [anon_sym_o_PLUSe_GT] = ACTIONS(988), - [anon_sym_e_PLUSo_GT] = ACTIONS(988), - [anon_sym_err_GT_GT] = ACTIONS(990), - [anon_sym_out_GT_GT] = ACTIONS(990), - [anon_sym_e_GT_GT] = ACTIONS(990), - [anon_sym_o_GT_GT] = ACTIONS(990), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(990), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(990), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(990), - [anon_sym_POUND] = ACTIONS(251), + [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_DASH2] = ACTIONS(1504), + [anon_sym_LBRACE] = 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_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), + [anon_sym_null] = ACTIONS(1506), + [anon_sym_true] = ACTIONS(1506), + [anon_sym_false] = ACTIONS(1506), + [aux_sym__val_number_decimal_token1] = ACTIONS(1504), + [aux_sym__val_number_decimal_token2] = ACTIONS(1506), + [aux_sym__val_number_decimal_token3] = ACTIONS(1506), + [aux_sym__val_number_decimal_token4] = ACTIONS(1506), + [aux_sym__val_number_token1] = ACTIONS(1506), + [aux_sym__val_number_token2] = ACTIONS(1506), + [aux_sym__val_number_token3] = ACTIONS(1506), + [aux_sym__val_number_token4] = ACTIONS(1506), + [aux_sym__val_number_token5] = ACTIONS(1506), + [aux_sym__val_number_token6] = 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_token2] = ACTIONS(1504), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1506), }, [1364] = { [sym_comment] = STATE(1364), - [sym__newline] = ACTIONS(1757), - [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(1755), - [anon_sym_RPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1755), - [anon_sym_DOT_DOT_LT] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(4564), - [anon_sym_null] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = 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_err_GT] = ACTIONS(1755), - [anon_sym_out_GT] = ACTIONS(1755), - [anon_sym_e_GT] = ACTIONS(1755), - [anon_sym_o_GT] = ACTIONS(1755), - [anon_sym_err_PLUSout_GT] = ACTIONS(1755), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), - [anon_sym_o_PLUSe_GT] = ACTIONS(1755), - [anon_sym_e_PLUSo_GT] = ACTIONS(1755), - [anon_sym_err_GT_GT] = ACTIONS(1757), - [anon_sym_out_GT_GT] = ACTIONS(1757), - [anon_sym_e_GT_GT] = ACTIONS(1757), - [anon_sym_o_GT_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), - [aux_sym_unquoted_token1] = ACTIONS(1755), - [aux_sym_unquoted_token2] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1757), + [ts_builtin_sym_end] = ACTIONS(952), + [anon_sym_EQ] = ACTIONS(950), + [anon_sym_PLUS_EQ] = ACTIONS(952), + [anon_sym_DASH_EQ] = ACTIONS(952), + [anon_sym_STAR_EQ] = ACTIONS(952), + [anon_sym_SLASH_EQ] = ACTIONS(952), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(952), + [sym__newline] = ACTIONS(952), + [anon_sym_SEMI] = ACTIONS(952), + [anon_sym_PIPE] = ACTIONS(952), + [anon_sym_err_GT_PIPE] = ACTIONS(952), + [anon_sym_out_GT_PIPE] = ACTIONS(952), + [anon_sym_e_GT_PIPE] = ACTIONS(952), + [anon_sym_o_GT_PIPE] = ACTIONS(952), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(952), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(952), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(952), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(952), + [anon_sym_GT2] = ACTIONS(950), + [anon_sym_DASH2] = ACTIONS(950), + [anon_sym_in2] = ACTIONS(952), + [anon_sym_STAR2] = ACTIONS(950), + [anon_sym_QMARK2] = ACTIONS(4598), + [anon_sym_and2] = ACTIONS(952), + [anon_sym_xor2] = ACTIONS(952), + [anon_sym_or2] = ACTIONS(952), + [anon_sym_not_DASHin2] = ACTIONS(952), + [anon_sym_has2] = ACTIONS(952), + [anon_sym_not_DASHhas2] = ACTIONS(952), + [anon_sym_starts_DASHwith2] = ACTIONS(952), + [anon_sym_ends_DASHwith2] = ACTIONS(952), + [anon_sym_EQ_EQ2] = ACTIONS(952), + [anon_sym_BANG_EQ2] = ACTIONS(952), + [anon_sym_LT2] = ACTIONS(950), + [anon_sym_LT_EQ2] = ACTIONS(952), + [anon_sym_GT_EQ2] = ACTIONS(952), + [anon_sym_EQ_TILDE2] = ACTIONS(952), + [anon_sym_BANG_TILDE2] = ACTIONS(952), + [anon_sym_STAR_STAR2] = ACTIONS(952), + [anon_sym_PLUS_PLUS2] = ACTIONS(950), + [anon_sym_SLASH2] = ACTIONS(950), + [anon_sym_mod2] = ACTIONS(952), + [anon_sym_SLASH_SLASH2] = ACTIONS(952), + [anon_sym_PLUS2] = ACTIONS(950), + [anon_sym_bit_DASHshl2] = ACTIONS(952), + [anon_sym_bit_DASHshr2] = ACTIONS(952), + [anon_sym_bit_DASHand2] = ACTIONS(952), + [anon_sym_bit_DASHxor2] = ACTIONS(952), + [anon_sym_bit_DASHor2] = ACTIONS(952), + [anon_sym_DOT_DOT2] = ACTIONS(950), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(952), + [anon_sym_DOT_DOT_LT2] = ACTIONS(952), + [anon_sym_DOT2] = ACTIONS(950), + [anon_sym_err_GT] = ACTIONS(950), + [anon_sym_out_GT] = ACTIONS(950), + [anon_sym_e_GT] = ACTIONS(950), + [anon_sym_o_GT] = ACTIONS(950), + [anon_sym_err_PLUSout_GT] = ACTIONS(950), + [anon_sym_out_PLUSerr_GT] = ACTIONS(950), + [anon_sym_o_PLUSe_GT] = ACTIONS(950), + [anon_sym_e_PLUSo_GT] = ACTIONS(950), + [anon_sym_err_GT_GT] = ACTIONS(952), + [anon_sym_out_GT_GT] = ACTIONS(952), + [anon_sym_e_GT_GT] = ACTIONS(952), + [anon_sym_o_GT_GT] = ACTIONS(952), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(952), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(952), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(952), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(952), + [anon_sym_POUND] = ACTIONS(247), }, [1365] = { [sym_comment] = STATE(1365), - [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(1638), - [anon_sym_DASH_DASH] = ACTIONS(1650), - [anon_sym_DASH2] = ACTIONS(1638), - [anon_sym_LBRACE] = ACTIONS(1650), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_DOT_DOT] = ACTIONS(1638), - [anon_sym_DOT_DOT2] = ACTIONS(4622), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1638), - [anon_sym_DOT_DOT_LT] = ACTIONS(1638), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4624), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4624), - [anon_sym_null] = ACTIONS(1650), - [anon_sym_true] = ACTIONS(1650), - [anon_sym_false] = ACTIONS(1650), - [aux_sym__val_number_decimal_token1] = ACTIONS(1638), - [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), - [aux_sym__val_number_token4] = ACTIONS(1650), - [aux_sym__val_number_token5] = ACTIONS(1650), - [aux_sym__val_number_token6] = ACTIONS(1650), - [anon_sym_0b] = ACTIONS(1638), - [sym_filesize_unit] = ACTIONS(4626), - [sym_duration_unit] = ACTIONS(4628), - [anon_sym_0o] = ACTIONS(1638), - [anon_sym_0x] = ACTIONS(1638), - [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(1638), - [anon_sym_out_GT] = ACTIONS(1638), - [anon_sym_e_GT] = ACTIONS(1638), - [anon_sym_o_GT] = ACTIONS(1638), - [anon_sym_err_PLUSout_GT] = ACTIONS(1638), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1638), - [anon_sym_o_PLUSe_GT] = ACTIONS(1638), - [anon_sym_e_PLUSo_GT] = ACTIONS(1638), - [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(1638), - [aux_sym_unquoted_token2] = ACTIONS(4630), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1650), + [sym__newline] = ACTIONS(1691), + [anon_sym_SEMI] = ACTIONS(1691), + [anon_sym_PIPE] = ACTIONS(1691), + [anon_sym_err_GT_PIPE] = ACTIONS(1691), + [anon_sym_out_GT_PIPE] = ACTIONS(1691), + [anon_sym_e_GT_PIPE] = ACTIONS(1691), + [anon_sym_o_GT_PIPE] = ACTIONS(1691), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1691), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1691), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1691), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1691), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1689), + [anon_sym_RPAREN] = ACTIONS(1691), + [anon_sym_DOLLAR] = ACTIONS(1689), + [anon_sym_DASH_DASH] = ACTIONS(1691), + [anon_sym_DASH2] = ACTIONS(1689), + [anon_sym_LBRACE] = ACTIONS(1691), + [anon_sym_RBRACE] = ACTIONS(1691), + [anon_sym_DOT_DOT] = ACTIONS(1689), + [anon_sym_LPAREN2] = ACTIONS(1691), + [anon_sym_DOT_DOT2] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1689), + [anon_sym_DOT_DOT_LT] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1691), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1691), + [anon_sym_null] = ACTIONS(1691), + [anon_sym_true] = ACTIONS(1691), + [anon_sym_false] = ACTIONS(1691), + [aux_sym__val_number_decimal_token1] = ACTIONS(1689), + [aux_sym__val_number_decimal_token2] = ACTIONS(1691), + [aux_sym__val_number_decimal_token3] = ACTIONS(1691), + [aux_sym__val_number_decimal_token4] = ACTIONS(1691), + [aux_sym__val_number_token1] = ACTIONS(1691), + [aux_sym__val_number_token2] = ACTIONS(1691), + [aux_sym__val_number_token3] = ACTIONS(1691), + [aux_sym__val_number_token4] = ACTIONS(1691), + [aux_sym__val_number_token5] = ACTIONS(1691), + [aux_sym__val_number_token6] = ACTIONS(1691), + [anon_sym_0b] = ACTIONS(1689), + [sym_filesize_unit] = ACTIONS(1691), + [sym_duration_unit] = ACTIONS(1691), + [anon_sym_0o] = ACTIONS(1689), + [anon_sym_0x] = ACTIONS(1689), + [sym_val_date] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1691), + [sym__str_single_quotes] = ACTIONS(1691), + [sym__str_back_ticks] = ACTIONS(1691), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1691), + [anon_sym_err_GT] = ACTIONS(1689), + [anon_sym_out_GT] = ACTIONS(1689), + [anon_sym_e_GT] = ACTIONS(1689), + [anon_sym_o_GT] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT] = ACTIONS(1689), + [anon_sym_err_GT_GT] = ACTIONS(1691), + [anon_sym_out_GT_GT] = ACTIONS(1691), + [anon_sym_e_GT_GT] = ACTIONS(1691), + [anon_sym_o_GT_GT] = ACTIONS(1691), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1691), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1691), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1691), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1691), + [aux_sym_unquoted_token1] = ACTIONS(1689), + [aux_sym_unquoted_token2] = ACTIONS(1689), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1691), }, [1366] = { [sym_comment] = STATE(1366), - [ts_builtin_sym_end] = 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(1743), - [anon_sym_DOLLAR] = ACTIONS(1743), - [anon_sym_DASH_DASH] = ACTIONS(1745), - [anon_sym_DASH2] = ACTIONS(1743), - [anon_sym_LBRACE] = ACTIONS(1745), - [anon_sym_DOT_DOT] = ACTIONS(1743), - [anon_sym_LPAREN2] = ACTIONS(1745), - [anon_sym_DOT_DOT2] = ACTIONS(1743), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1743), - [anon_sym_DOT_DOT_LT] = ACTIONS(1743), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1745), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1745), - [anon_sym_null] = ACTIONS(1745), - [anon_sym_true] = ACTIONS(1745), - [anon_sym_false] = ACTIONS(1745), - [aux_sym__val_number_decimal_token1] = ACTIONS(1743), - [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), - [aux_sym__val_number_token4] = ACTIONS(1745), - [aux_sym__val_number_token5] = ACTIONS(1745), - [aux_sym__val_number_token6] = ACTIONS(1745), - [anon_sym_0b] = ACTIONS(1743), - [sym_filesize_unit] = ACTIONS(1745), - [sym_duration_unit] = ACTIONS(1745), - [anon_sym_0o] = ACTIONS(1743), - [anon_sym_0x] = ACTIONS(1743), - [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(1743), - [anon_sym_out_GT] = ACTIONS(1743), - [anon_sym_e_GT] = ACTIONS(1743), - [anon_sym_o_GT] = ACTIONS(1743), - [anon_sym_err_PLUSout_GT] = ACTIONS(1743), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1743), - [anon_sym_o_PLUSe_GT] = ACTIONS(1743), - [anon_sym_e_PLUSo_GT] = ACTIONS(1743), - [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(1743), - [aux_sym_unquoted_token2] = ACTIONS(1743), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1745), + [ts_builtin_sym_end] = ACTIONS(970), + [anon_sym_EQ] = ACTIONS(968), + [anon_sym_PLUS_EQ] = ACTIONS(970), + [anon_sym_DASH_EQ] = ACTIONS(970), + [anon_sym_STAR_EQ] = ACTIONS(970), + [anon_sym_SLASH_EQ] = ACTIONS(970), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(970), + [sym__newline] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(970), + [anon_sym_PIPE] = ACTIONS(970), + [anon_sym_err_GT_PIPE] = ACTIONS(970), + [anon_sym_out_GT_PIPE] = ACTIONS(970), + [anon_sym_e_GT_PIPE] = ACTIONS(970), + [anon_sym_o_GT_PIPE] = ACTIONS(970), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(970), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(970), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(970), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(970), + [anon_sym_GT2] = ACTIONS(968), + [anon_sym_DASH2] = ACTIONS(968), + [anon_sym_in2] = ACTIONS(970), + [anon_sym_STAR2] = ACTIONS(968), + [anon_sym_QMARK2] = ACTIONS(4600), + [anon_sym_and2] = ACTIONS(970), + [anon_sym_xor2] = ACTIONS(970), + [anon_sym_or2] = ACTIONS(970), + [anon_sym_not_DASHin2] = ACTIONS(970), + [anon_sym_has2] = ACTIONS(970), + [anon_sym_not_DASHhas2] = ACTIONS(970), + [anon_sym_starts_DASHwith2] = ACTIONS(970), + [anon_sym_ends_DASHwith2] = ACTIONS(970), + [anon_sym_EQ_EQ2] = ACTIONS(970), + [anon_sym_BANG_EQ2] = ACTIONS(970), + [anon_sym_LT2] = ACTIONS(968), + [anon_sym_LT_EQ2] = ACTIONS(970), + [anon_sym_GT_EQ2] = ACTIONS(970), + [anon_sym_EQ_TILDE2] = ACTIONS(970), + [anon_sym_BANG_TILDE2] = ACTIONS(970), + [anon_sym_STAR_STAR2] = ACTIONS(970), + [anon_sym_PLUS_PLUS2] = ACTIONS(968), + [anon_sym_SLASH2] = ACTIONS(968), + [anon_sym_mod2] = ACTIONS(970), + [anon_sym_SLASH_SLASH2] = ACTIONS(970), + [anon_sym_PLUS2] = ACTIONS(968), + [anon_sym_bit_DASHshl2] = ACTIONS(970), + [anon_sym_bit_DASHshr2] = ACTIONS(970), + [anon_sym_bit_DASHand2] = ACTIONS(970), + [anon_sym_bit_DASHxor2] = ACTIONS(970), + [anon_sym_bit_DASHor2] = ACTIONS(970), + [anon_sym_DOT_DOT2] = ACTIONS(968), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(970), + [anon_sym_DOT_DOT_LT2] = ACTIONS(970), + [anon_sym_DOT2] = ACTIONS(968), + [anon_sym_err_GT] = ACTIONS(968), + [anon_sym_out_GT] = ACTIONS(968), + [anon_sym_e_GT] = ACTIONS(968), + [anon_sym_o_GT] = ACTIONS(968), + [anon_sym_err_PLUSout_GT] = ACTIONS(968), + [anon_sym_out_PLUSerr_GT] = ACTIONS(968), + [anon_sym_o_PLUSe_GT] = ACTIONS(968), + [anon_sym_e_PLUSo_GT] = ACTIONS(968), + [anon_sym_err_GT_GT] = ACTIONS(970), + [anon_sym_out_GT_GT] = ACTIONS(970), + [anon_sym_e_GT_GT] = ACTIONS(970), + [anon_sym_o_GT_GT] = ACTIONS(970), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(970), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(970), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(970), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(970), + [anon_sym_POUND] = ACTIONS(247), }, [1367] = { - [sym_path] = STATE(1468), + [sym__expr_parenthesized_immediate] = STATE(1823), + [sym__immediate_decimal] = STATE(2048), + [sym_val_variable] = STATE(1823), [sym_comment] = STATE(1367), - [aux_sym_cell_path_repeat1] = STATE(1361), - [sym__newline] = ACTIONS(951), - [anon_sym_SEMI] = ACTIONS(951), - [anon_sym_PIPE] = ACTIONS(951), - [anon_sym_err_GT_PIPE] = ACTIONS(951), - [anon_sym_out_GT_PIPE] = ACTIONS(951), - [anon_sym_e_GT_PIPE] = ACTIONS(951), - [anon_sym_o_GT_PIPE] = ACTIONS(951), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(951), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(951), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(951), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(951), - [anon_sym_LBRACK] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(951), - [anon_sym_RPAREN] = ACTIONS(951), - [anon_sym_DOLLAR] = ACTIONS(949), - [anon_sym_DASH_DASH] = ACTIONS(951), - [anon_sym_DASH2] = ACTIONS(949), - [anon_sym_LBRACE] = ACTIONS(951), - [anon_sym_RBRACE] = ACTIONS(951), - [anon_sym_DOT_DOT] = ACTIONS(949), - [anon_sym_DOT_DOT2] = ACTIONS(949), - [anon_sym_DOT_DOT_EQ] = ACTIONS(949), - [anon_sym_DOT_DOT_LT] = ACTIONS(949), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(951), - [anon_sym_DOT_DOT_LT2] = ACTIONS(951), - [anon_sym_null] = ACTIONS(951), - [anon_sym_true] = ACTIONS(951), - [anon_sym_false] = ACTIONS(951), - [aux_sym__val_number_decimal_token1] = ACTIONS(949), - [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), - [aux_sym__val_number_token4] = ACTIONS(951), - [aux_sym__val_number_token5] = ACTIONS(951), - [aux_sym__val_number_token6] = ACTIONS(951), - [anon_sym_0b] = ACTIONS(949), - [anon_sym_0o] = ACTIONS(949), - [anon_sym_0x] = ACTIONS(949), - [sym_val_date] = ACTIONS(951), - [anon_sym_DQUOTE] = ACTIONS(951), - [sym__str_single_quotes] = ACTIONS(951), - [sym__str_back_ticks] = ACTIONS(951), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(951), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(951), - [anon_sym_DOT2] = ACTIONS(4457), - [anon_sym_err_GT] = ACTIONS(949), - [anon_sym_out_GT] = ACTIONS(949), - [anon_sym_e_GT] = ACTIONS(949), - [anon_sym_o_GT] = ACTIONS(949), - [anon_sym_err_PLUSout_GT] = ACTIONS(949), - [anon_sym_out_PLUSerr_GT] = ACTIONS(949), - [anon_sym_o_PLUSe_GT] = ACTIONS(949), - [anon_sym_e_PLUSo_GT] = ACTIONS(949), - [anon_sym_err_GT_GT] = ACTIONS(951), - [anon_sym_out_GT_GT] = ACTIONS(951), - [anon_sym_e_GT_GT] = ACTIONS(951), - [anon_sym_o_GT_GT] = ACTIONS(951), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(951), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(951), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(951), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(951), - [aux_sym_unquoted_token1] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(951), + [sym__newline] = ACTIONS(1560), + [anon_sym_SEMI] = ACTIONS(1560), + [anon_sym_PIPE] = ACTIONS(1560), + [anon_sym_err_GT_PIPE] = ACTIONS(1560), + [anon_sym_out_GT_PIPE] = ACTIONS(1560), + [anon_sym_e_GT_PIPE] = ACTIONS(1560), + [anon_sym_o_GT_PIPE] = ACTIONS(1560), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1560), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1560), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1560), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(1560), + [anon_sym_DOLLAR] = ACTIONS(3618), + [anon_sym_GT2] = ACTIONS(1558), + [anon_sym_DASH2] = ACTIONS(1558), + [anon_sym_in2] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1560), + [anon_sym_RBRACE] = ACTIONS(1560), + [anon_sym_STAR2] = ACTIONS(1558), + [anon_sym_and2] = ACTIONS(1560), + [anon_sym_xor2] = ACTIONS(1560), + [anon_sym_or2] = ACTIONS(1560), + [anon_sym_not_DASHin2] = ACTIONS(1560), + [anon_sym_has2] = ACTIONS(1560), + [anon_sym_not_DASHhas2] = ACTIONS(1560), + [anon_sym_starts_DASHwith2] = ACTIONS(1560), + [anon_sym_ends_DASHwith2] = ACTIONS(1560), + [anon_sym_EQ_EQ2] = ACTIONS(1560), + [anon_sym_BANG_EQ2] = ACTIONS(1560), + [anon_sym_LT2] = ACTIONS(1558), + [anon_sym_LT_EQ2] = ACTIONS(1560), + [anon_sym_GT_EQ2] = ACTIONS(1560), + [anon_sym_EQ_TILDE2] = ACTIONS(1560), + [anon_sym_BANG_TILDE2] = ACTIONS(1560), + [anon_sym_LPAREN2] = ACTIONS(4207), + [anon_sym_STAR_STAR2] = ACTIONS(1560), + [anon_sym_PLUS_PLUS2] = ACTIONS(1560), + [anon_sym_SLASH2] = ACTIONS(1558), + [anon_sym_mod2] = ACTIONS(1560), + [anon_sym_SLASH_SLASH2] = ACTIONS(1560), + [anon_sym_PLUS2] = ACTIONS(1558), + [anon_sym_bit_DASHshl2] = ACTIONS(1560), + [anon_sym_bit_DASHshr2] = ACTIONS(1560), + [anon_sym_bit_DASHand2] = ACTIONS(1560), + [anon_sym_bit_DASHxor2] = ACTIONS(1560), + [anon_sym_bit_DASHor2] = ACTIONS(1560), + [aux_sym__immediate_decimal_token1] = ACTIONS(4482), + [aux_sym__immediate_decimal_token3] = ACTIONS(4482), + [aux_sym__immediate_decimal_token4] = ACTIONS(4213), + [aux_sym__immediate_decimal_token5] = ACTIONS(4215), + [anon_sym_err_GT] = ACTIONS(1558), + [anon_sym_out_GT] = ACTIONS(1558), + [anon_sym_e_GT] = ACTIONS(1558), + [anon_sym_o_GT] = ACTIONS(1558), + [anon_sym_err_PLUSout_GT] = ACTIONS(1558), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1558), + [anon_sym_o_PLUSe_GT] = ACTIONS(1558), + [anon_sym_e_PLUSo_GT] = ACTIONS(1558), + [anon_sym_err_GT_GT] = ACTIONS(1560), + [anon_sym_out_GT_GT] = ACTIONS(1560), + [anon_sym_e_GT_GT] = ACTIONS(1560), + [anon_sym_o_GT_GT] = ACTIONS(1560), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1560), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1560), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1560), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1560), + [anon_sym_POUND] = ACTIONS(247), }, [1368] = { - [sym_cell_path] = STATE(1621), - [sym_path] = STATE(1532), + [sym__expr_parenthesized_immediate] = STATE(1780), + [sym__immediate_decimal] = STATE(2119), + [sym_val_variable] = STATE(1780), [sym_comment] = STATE(1368), - [aux_sym_cell_path_repeat1] = STATE(1386), - [sym__newline] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1699), - [anon_sym_PIPE] = ACTIONS(1699), - [anon_sym_err_GT_PIPE] = ACTIONS(1699), - [anon_sym_out_GT_PIPE] = ACTIONS(1699), - [anon_sym_e_GT_PIPE] = ACTIONS(1699), - [anon_sym_o_GT_PIPE] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1699), - [anon_sym_RPAREN] = ACTIONS(1699), - [anon_sym_GT2] = ACTIONS(1697), - [anon_sym_DASH2] = ACTIONS(1699), - [anon_sym_in2] = ACTIONS(1699), - [anon_sym_if] = ACTIONS(1699), - [anon_sym_LBRACE] = ACTIONS(1699), - [anon_sym_RBRACE] = ACTIONS(1699), - [anon_sym_EQ_GT] = ACTIONS(1699), - [anon_sym_STAR2] = ACTIONS(1697), - [anon_sym_and2] = ACTIONS(1699), - [anon_sym_xor2] = ACTIONS(1699), - [anon_sym_or2] = ACTIONS(1699), - [anon_sym_not_DASHin2] = ACTIONS(1699), - [anon_sym_starts_DASHwith2] = ACTIONS(1699), - [anon_sym_ends_DASHwith2] = ACTIONS(1699), - [anon_sym_EQ_EQ2] = ACTIONS(1699), - [anon_sym_BANG_EQ2] = ACTIONS(1699), - [anon_sym_LT2] = ACTIONS(1697), - [anon_sym_LT_EQ2] = ACTIONS(1699), - [anon_sym_GT_EQ2] = ACTIONS(1699), - [anon_sym_EQ_TILDE2] = ACTIONS(1699), - [anon_sym_BANG_TILDE2] = ACTIONS(1699), - [anon_sym_STAR_STAR2] = ACTIONS(1699), - [anon_sym_PLUS_PLUS2] = ACTIONS(1699), - [anon_sym_SLASH2] = ACTIONS(1697), - [anon_sym_mod2] = ACTIONS(1699), - [anon_sym_SLASH_SLASH2] = ACTIONS(1699), - [anon_sym_PLUS2] = ACTIONS(1697), - [anon_sym_bit_DASHshl2] = ACTIONS(1699), - [anon_sym_bit_DASHshr2] = ACTIONS(1699), - [anon_sym_bit_DASHand2] = ACTIONS(1699), - [anon_sym_bit_DASHxor2] = ACTIONS(1699), - [anon_sym_bit_DASHor2] = ACTIONS(1699), - [anon_sym_DOT_DOT2] = ACTIONS(1697), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1699), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1699), - [anon_sym_COLON2] = ACTIONS(1699), - [anon_sym_DOT2] = ACTIONS(4570), - [anon_sym_err_GT] = ACTIONS(1697), - [anon_sym_out_GT] = ACTIONS(1697), - [anon_sym_e_GT] = ACTIONS(1697), - [anon_sym_o_GT] = ACTIONS(1697), - [anon_sym_err_PLUSout_GT] = ACTIONS(1697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1697), - [anon_sym_o_PLUSe_GT] = ACTIONS(1697), - [anon_sym_e_PLUSo_GT] = ACTIONS(1697), - [anon_sym_err_GT_GT] = ACTIONS(1699), - [anon_sym_out_GT_GT] = ACTIONS(1699), - [anon_sym_e_GT_GT] = ACTIONS(1699), - [anon_sym_o_GT_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1699), - [anon_sym_POUND] = ACTIONS(251), + [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_RPAREN] = ACTIONS(1455), + [anon_sym_DOLLAR] = ACTIONS(3618), + [anon_sym_GT2] = ACTIONS(1441), + [anon_sym_DASH2] = ACTIONS(1441), + [anon_sym_in2] = ACTIONS(1455), + [anon_sym_LBRACE] = ACTIONS(1455), + [anon_sym_RBRACE] = ACTIONS(1455), + [anon_sym_STAR2] = ACTIONS(1441), + [anon_sym_and2] = ACTIONS(1455), + [anon_sym_xor2] = ACTIONS(1455), + [anon_sym_or2] = ACTIONS(1455), + [anon_sym_not_DASHin2] = ACTIONS(1455), + [anon_sym_has2] = ACTIONS(1455), + [anon_sym_not_DASHhas2] = ACTIONS(1455), + [anon_sym_starts_DASHwith2] = ACTIONS(1455), + [anon_sym_ends_DASHwith2] = ACTIONS(1455), + [anon_sym_EQ_EQ2] = ACTIONS(1455), + [anon_sym_BANG_EQ2] = ACTIONS(1455), + [anon_sym_LT2] = ACTIONS(1441), + [anon_sym_LT_EQ2] = ACTIONS(1455), + [anon_sym_GT_EQ2] = ACTIONS(1455), + [anon_sym_EQ_TILDE2] = ACTIONS(1455), + [anon_sym_BANG_TILDE2] = ACTIONS(1455), + [anon_sym_LPAREN2] = ACTIONS(4207), + [anon_sym_STAR_STAR2] = ACTIONS(1455), + [anon_sym_PLUS_PLUS2] = ACTIONS(1455), + [anon_sym_SLASH2] = ACTIONS(1441), + [anon_sym_mod2] = ACTIONS(1455), + [anon_sym_SLASH_SLASH2] = ACTIONS(1455), + [anon_sym_PLUS2] = ACTIONS(1441), + [anon_sym_bit_DASHshl2] = ACTIONS(1455), + [anon_sym_bit_DASHshr2] = ACTIONS(1455), + [anon_sym_bit_DASHand2] = ACTIONS(1455), + [anon_sym_bit_DASHxor2] = ACTIONS(1455), + [anon_sym_bit_DASHor2] = ACTIONS(1455), + [aux_sym__immediate_decimal_token1] = ACTIONS(4482), + [aux_sym__immediate_decimal_token3] = ACTIONS(4482), + [aux_sym__immediate_decimal_token4] = ACTIONS(4213), + [aux_sym__immediate_decimal_token5] = ACTIONS(4215), + [anon_sym_err_GT] = ACTIONS(1441), + [anon_sym_out_GT] = ACTIONS(1441), + [anon_sym_e_GT] = ACTIONS(1441), + [anon_sym_o_GT] = ACTIONS(1441), + [anon_sym_err_PLUSout_GT] = ACTIONS(1441), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1441), + [anon_sym_o_PLUSe_GT] = ACTIONS(1441), + [anon_sym_e_PLUSo_GT] = ACTIONS(1441), + [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), + [anon_sym_POUND] = ACTIONS(247), }, [1369] = { - [sym__expr_parenthesized_immediate] = STATE(1870), - [sym__immediate_decimal] = STATE(1821), - [sym_val_variable] = STATE(1870), + [sym_cell_path] = STATE(1551), + [sym_path] = STATE(1471), [sym_comment] = STATE(1369), - [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_DOLLAR] = ACTIONS(3630), - [anon_sym_GT2] = ACTIONS(1461), - [anon_sym_DASH2] = ACTIONS(1461), - [anon_sym_in2] = ACTIONS(1475), - [anon_sym_LBRACE] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym_STAR2] = ACTIONS(1461), - [anon_sym_and2] = ACTIONS(1475), - [anon_sym_xor2] = ACTIONS(1475), - [anon_sym_or2] = ACTIONS(1475), - [anon_sym_not_DASHin2] = ACTIONS(1475), - [anon_sym_starts_DASHwith2] = ACTIONS(1475), - [anon_sym_ends_DASHwith2] = ACTIONS(1475), - [anon_sym_EQ_EQ2] = ACTIONS(1475), - [anon_sym_BANG_EQ2] = ACTIONS(1475), - [anon_sym_LT2] = ACTIONS(1461), - [anon_sym_LT_EQ2] = ACTIONS(1475), - [anon_sym_GT_EQ2] = ACTIONS(1475), - [anon_sym_EQ_TILDE2] = ACTIONS(1475), - [anon_sym_BANG_TILDE2] = ACTIONS(1475), - [anon_sym_LPAREN2] = ACTIONS(4580), - [anon_sym_STAR_STAR2] = ACTIONS(1475), - [anon_sym_PLUS_PLUS2] = ACTIONS(1475), - [anon_sym_SLASH2] = ACTIONS(1461), - [anon_sym_mod2] = ACTIONS(1475), - [anon_sym_SLASH_SLASH2] = ACTIONS(1475), - [anon_sym_PLUS2] = ACTIONS(1461), - [anon_sym_bit_DASHshl2] = ACTIONS(1475), - [anon_sym_bit_DASHshr2] = ACTIONS(1475), - [anon_sym_bit_DASHand2] = ACTIONS(1475), - [anon_sym_bit_DASHxor2] = ACTIONS(1475), - [anon_sym_bit_DASHor2] = ACTIONS(1475), - [anon_sym_DOT] = ACTIONS(4632), - [aux_sym__immediate_decimal_token1] = ACTIONS(4584), - [aux_sym__immediate_decimal_token3] = ACTIONS(4584), - [aux_sym__immediate_decimal_token4] = ACTIONS(4586), - [aux_sym__immediate_decimal_token5] = ACTIONS(4588), - [anon_sym_err_GT] = ACTIONS(1461), - [anon_sym_out_GT] = ACTIONS(1461), - [anon_sym_e_GT] = ACTIONS(1461), - [anon_sym_o_GT] = ACTIONS(1461), - [anon_sym_err_PLUSout_GT] = ACTIONS(1461), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1461), - [anon_sym_o_PLUSe_GT] = ACTIONS(1461), - [anon_sym_e_PLUSo_GT] = ACTIONS(1461), - [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(251), + [aux_sym_cell_path_repeat1] = STATE(1398), + [sym__newline] = ACTIONS(931), + [anon_sym_SEMI] = ACTIONS(931), + [anon_sym_PIPE] = ACTIONS(931), + [anon_sym_err_GT_PIPE] = ACTIONS(931), + [anon_sym_out_GT_PIPE] = ACTIONS(931), + [anon_sym_e_GT_PIPE] = ACTIONS(931), + [anon_sym_o_GT_PIPE] = ACTIONS(931), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(931), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(931), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(931), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(931), + [anon_sym_DOLLAR] = ACTIONS(929), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_DASH2] = ACTIONS(929), + [anon_sym_LBRACE] = ACTIONS(931), + [anon_sym_RBRACE] = ACTIONS(931), + [anon_sym_DOT_DOT] = ACTIONS(929), + [anon_sym_DOT_DOT2] = ACTIONS(929), + [anon_sym_DOT_DOT_EQ] = ACTIONS(929), + [anon_sym_DOT_DOT_LT] = ACTIONS(929), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(931), + [anon_sym_DOT_DOT_LT2] = ACTIONS(931), + [anon_sym_null] = ACTIONS(931), + [anon_sym_true] = ACTIONS(931), + [anon_sym_false] = ACTIONS(931), + [aux_sym__val_number_decimal_token1] = ACTIONS(929), + [aux_sym__val_number_decimal_token2] = ACTIONS(931), + [aux_sym__val_number_decimal_token3] = ACTIONS(931), + [aux_sym__val_number_decimal_token4] = ACTIONS(931), + [aux_sym__val_number_token1] = ACTIONS(931), + [aux_sym__val_number_token2] = ACTIONS(931), + [aux_sym__val_number_token3] = ACTIONS(931), + [aux_sym__val_number_token4] = ACTIONS(931), + [aux_sym__val_number_token5] = ACTIONS(931), + [aux_sym__val_number_token6] = ACTIONS(931), + [anon_sym_0b] = ACTIONS(929), + [anon_sym_0o] = ACTIONS(929), + [anon_sym_0x] = ACTIONS(929), + [sym_val_date] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(931), + [sym__str_single_quotes] = ACTIONS(931), + [sym__str_back_ticks] = ACTIONS(931), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(931), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(931), + [anon_sym_DOT2] = ACTIONS(4500), + [anon_sym_err_GT] = ACTIONS(929), + [anon_sym_out_GT] = ACTIONS(929), + [anon_sym_e_GT] = ACTIONS(929), + [anon_sym_o_GT] = ACTIONS(929), + [anon_sym_err_PLUSout_GT] = ACTIONS(929), + [anon_sym_out_PLUSerr_GT] = ACTIONS(929), + [anon_sym_o_PLUSe_GT] = ACTIONS(929), + [anon_sym_e_PLUSo_GT] = ACTIONS(929), + [anon_sym_err_GT_GT] = ACTIONS(931), + [anon_sym_out_GT_GT] = ACTIONS(931), + [anon_sym_e_GT_GT] = ACTIONS(931), + [anon_sym_o_GT_GT] = ACTIONS(931), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(931), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(931), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(931), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(931), + [aux_sym_unquoted_token1] = ACTIONS(929), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(931), }, [1370] = { [sym_comment] = STATE(1370), - [ts_builtin_sym_end] = ACTIONS(1682), - [sym__newline] = ACTIONS(1682), - [anon_sym_SEMI] = ACTIONS(1682), - [anon_sym_PIPE] = ACTIONS(1682), - [anon_sym_err_GT_PIPE] = ACTIONS(1682), - [anon_sym_out_GT_PIPE] = ACTIONS(1682), - [anon_sym_e_GT_PIPE] = ACTIONS(1682), - [anon_sym_o_GT_PIPE] = ACTIONS(1682), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1682), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1682), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1682), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1682), - [anon_sym_LBRACK] = ACTIONS(1682), - [anon_sym_LPAREN] = ACTIONS(1682), - [anon_sym_DOLLAR] = ACTIONS(1680), - [anon_sym_DASH_DASH] = ACTIONS(1682), - [anon_sym_DASH2] = ACTIONS(1680), - [anon_sym_LBRACE] = ACTIONS(1682), - [anon_sym_DOT_DOT] = ACTIONS(1680), - [anon_sym_DOT_DOT2] = ACTIONS(1680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1680), - [anon_sym_DOT_DOT_LT] = ACTIONS(1680), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1682), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1682), - [aux_sym__immediate_decimal_token2] = ACTIONS(4634), - [anon_sym_null] = ACTIONS(1682), - [anon_sym_true] = ACTIONS(1682), - [anon_sym_false] = ACTIONS(1682), - [aux_sym__val_number_decimal_token1] = ACTIONS(1680), - [aux_sym__val_number_decimal_token2] = ACTIONS(1682), - [aux_sym__val_number_decimal_token3] = ACTIONS(1682), - [aux_sym__val_number_decimal_token4] = ACTIONS(1682), - [aux_sym__val_number_token1] = ACTIONS(1682), - [aux_sym__val_number_token2] = ACTIONS(1682), - [aux_sym__val_number_token3] = ACTIONS(1682), - [aux_sym__val_number_token4] = ACTIONS(1682), - [aux_sym__val_number_token5] = ACTIONS(1682), - [aux_sym__val_number_token6] = ACTIONS(1682), - [anon_sym_0b] = ACTIONS(1680), - [sym_filesize_unit] = ACTIONS(1682), - [sym_duration_unit] = ACTIONS(1682), - [anon_sym_0o] = ACTIONS(1680), - [anon_sym_0x] = ACTIONS(1680), - [sym_val_date] = ACTIONS(1682), - [anon_sym_DQUOTE] = ACTIONS(1682), - [sym__str_single_quotes] = ACTIONS(1682), - [sym__str_back_ticks] = ACTIONS(1682), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1682), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1682), - [anon_sym_err_GT] = ACTIONS(1680), - [anon_sym_out_GT] = ACTIONS(1680), - [anon_sym_e_GT] = ACTIONS(1680), - [anon_sym_o_GT] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT] = ACTIONS(1680), - [anon_sym_err_GT_GT] = ACTIONS(1682), - [anon_sym_out_GT_GT] = ACTIONS(1682), - [anon_sym_e_GT_GT] = ACTIONS(1682), - [anon_sym_o_GT_GT] = ACTIONS(1682), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1682), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1682), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1682), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1682), - [aux_sym_unquoted_token1] = ACTIONS(1680), - [aux_sym_unquoted_token2] = ACTIONS(1680), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1682), + [sym__newline] = ACTIONS(1514), + [anon_sym_SEMI] = ACTIONS(1514), + [anon_sym_PIPE] = ACTIONS(1514), + [anon_sym_err_GT_PIPE] = ACTIONS(1514), + [anon_sym_out_GT_PIPE] = ACTIONS(1514), + [anon_sym_e_GT_PIPE] = ACTIONS(1514), + [anon_sym_o_GT_PIPE] = ACTIONS(1514), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1514), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1514), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1514), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1514), + [anon_sym_LBRACK] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_RPAREN] = ACTIONS(1514), + [anon_sym_DOLLAR] = ACTIONS(1512), + [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_RBRACE] = ACTIONS(1514), + [anon_sym_DOT_DOT] = ACTIONS(1512), + [anon_sym_LPAREN2] = ACTIONS(1514), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [anon_sym_null] = ACTIONS(1514), + [anon_sym_true] = ACTIONS(1514), + [anon_sym_false] = ACTIONS(1514), + [aux_sym__val_number_decimal_token1] = ACTIONS(1512), + [aux_sym__val_number_decimal_token2] = ACTIONS(1514), + [aux_sym__val_number_decimal_token3] = ACTIONS(1514), + [aux_sym__val_number_decimal_token4] = ACTIONS(1514), + [aux_sym__val_number_token1] = ACTIONS(1514), + [aux_sym__val_number_token2] = ACTIONS(1514), + [aux_sym__val_number_token3] = ACTIONS(1514), + [aux_sym__val_number_token4] = ACTIONS(1514), + [aux_sym__val_number_token5] = ACTIONS(1514), + [aux_sym__val_number_token6] = ACTIONS(1514), + [anon_sym_0b] = ACTIONS(1512), + [sym_filesize_unit] = ACTIONS(1514), + [sym_duration_unit] = ACTIONS(1514), + [anon_sym_0o] = ACTIONS(1512), + [anon_sym_0x] = ACTIONS(1512), + [sym_val_date] = ACTIONS(1514), + [anon_sym_DQUOTE] = ACTIONS(1514), + [sym__str_single_quotes] = ACTIONS(1514), + [sym__str_back_ticks] = ACTIONS(1514), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1514), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1514), + [anon_sym_err_GT] = ACTIONS(1512), + [anon_sym_out_GT] = ACTIONS(1512), + [anon_sym_e_GT] = ACTIONS(1512), + [anon_sym_o_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT] = ACTIONS(1512), + [anon_sym_err_GT_GT] = ACTIONS(1514), + [anon_sym_out_GT_GT] = ACTIONS(1514), + [anon_sym_e_GT_GT] = ACTIONS(1514), + [anon_sym_o_GT_GT] = ACTIONS(1514), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1514), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1514), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1514), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1514), + [aux_sym_unquoted_token1] = ACTIONS(1512), + [aux_sym_unquoted_token2] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1514), }, [1371] = { [sym_comment] = STATE(1371), - [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_DASH2] = ACTIONS(976), - [anon_sym_LBRACE] = 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_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), - [anon_sym_null] = ACTIONS(978), - [anon_sym_true] = ACTIONS(978), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(978), - [aux_sym__val_number_token5] = ACTIONS(978), - [aux_sym__val_number_token6] = 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_DOT2] = 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), - [aux_sym_unquoted_token1] = ACTIONS(976), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(978), + [sym__newline] = ACTIONS(952), + [anon_sym_SEMI] = ACTIONS(952), + [anon_sym_PIPE] = ACTIONS(952), + [anon_sym_err_GT_PIPE] = ACTIONS(952), + [anon_sym_out_GT_PIPE] = ACTIONS(952), + [anon_sym_e_GT_PIPE] = ACTIONS(952), + [anon_sym_o_GT_PIPE] = ACTIONS(952), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(952), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(952), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(952), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(952), + [anon_sym_RPAREN] = ACTIONS(952), + [anon_sym_GT2] = ACTIONS(950), + [anon_sym_DASH2] = ACTIONS(952), + [anon_sym_in2] = ACTIONS(952), + [anon_sym_if] = ACTIONS(952), + [anon_sym_LBRACE] = ACTIONS(952), + [anon_sym_RBRACE] = ACTIONS(952), + [anon_sym_EQ_GT] = ACTIONS(952), + [anon_sym_STAR2] = ACTIONS(950), + [anon_sym_QMARK2] = ACTIONS(4602), + [anon_sym_and2] = ACTIONS(952), + [anon_sym_xor2] = ACTIONS(952), + [anon_sym_or2] = ACTIONS(952), + [anon_sym_not_DASHin2] = ACTIONS(952), + [anon_sym_has2] = ACTIONS(952), + [anon_sym_not_DASHhas2] = ACTIONS(952), + [anon_sym_starts_DASHwith2] = ACTIONS(952), + [anon_sym_ends_DASHwith2] = ACTIONS(952), + [anon_sym_EQ_EQ2] = ACTIONS(952), + [anon_sym_BANG_EQ2] = ACTIONS(952), + [anon_sym_LT2] = ACTIONS(950), + [anon_sym_LT_EQ2] = ACTIONS(952), + [anon_sym_GT_EQ2] = ACTIONS(952), + [anon_sym_EQ_TILDE2] = ACTIONS(952), + [anon_sym_BANG_TILDE2] = ACTIONS(952), + [anon_sym_STAR_STAR2] = ACTIONS(952), + [anon_sym_PLUS_PLUS2] = ACTIONS(952), + [anon_sym_SLASH2] = ACTIONS(950), + [anon_sym_mod2] = ACTIONS(952), + [anon_sym_SLASH_SLASH2] = ACTIONS(952), + [anon_sym_PLUS2] = ACTIONS(950), + [anon_sym_bit_DASHshl2] = ACTIONS(952), + [anon_sym_bit_DASHshr2] = ACTIONS(952), + [anon_sym_bit_DASHand2] = ACTIONS(952), + [anon_sym_bit_DASHxor2] = ACTIONS(952), + [anon_sym_bit_DASHor2] = ACTIONS(952), + [anon_sym_DOT_DOT2] = ACTIONS(950), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(952), + [anon_sym_DOT_DOT_LT2] = ACTIONS(952), + [anon_sym_COLON2] = ACTIONS(952), + [anon_sym_DOT2] = ACTIONS(950), + [anon_sym_err_GT] = ACTIONS(950), + [anon_sym_out_GT] = ACTIONS(950), + [anon_sym_e_GT] = ACTIONS(950), + [anon_sym_o_GT] = ACTIONS(950), + [anon_sym_err_PLUSout_GT] = ACTIONS(950), + [anon_sym_out_PLUSerr_GT] = ACTIONS(950), + [anon_sym_o_PLUSe_GT] = ACTIONS(950), + [anon_sym_e_PLUSo_GT] = ACTIONS(950), + [anon_sym_err_GT_GT] = ACTIONS(952), + [anon_sym_out_GT_GT] = ACTIONS(952), + [anon_sym_e_GT_GT] = ACTIONS(952), + [anon_sym_o_GT_GT] = ACTIONS(952), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(952), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(952), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(952), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(952), + [anon_sym_POUND] = ACTIONS(247), }, [1372] = { [sym_comment] = STATE(1372), - [ts_builtin_sym_end] = ACTIONS(1785), - [sym__newline] = ACTIONS(1785), - [anon_sym_SEMI] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(1785), - [anon_sym_err_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_GT_PIPE] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1783), - [anon_sym_LPAREN2] = ACTIONS(1785), - [anon_sym_DOT_DOT2] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1783), - [anon_sym_DOT_DOT_LT] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1785), - [aux_sym__immediate_decimal_token2] = ACTIONS(4636), - [anon_sym_null] = ACTIONS(1785), - [anon_sym_true] = ACTIONS(1785), - [anon_sym_false] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(1785), - [aux_sym__val_number_token2] = ACTIONS(1785), - [aux_sym__val_number_token3] = ACTIONS(1785), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_0b] = ACTIONS(1783), - [anon_sym_0o] = ACTIONS(1783), - [anon_sym_0x] = ACTIONS(1783), - [sym_val_date] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1785), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1785), - [anon_sym_err_GT] = ACTIONS(1783), - [anon_sym_out_GT] = ACTIONS(1783), - [anon_sym_e_GT] = ACTIONS(1783), - [anon_sym_o_GT] = ACTIONS(1783), - [anon_sym_err_PLUSout_GT] = ACTIONS(1783), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1783), - [anon_sym_o_PLUSe_GT] = ACTIONS(1783), - [anon_sym_e_PLUSo_GT] = ACTIONS(1783), - [anon_sym_err_GT_GT] = ACTIONS(1785), - [anon_sym_out_GT_GT] = ACTIONS(1785), - [anon_sym_e_GT_GT] = ACTIONS(1785), - [anon_sym_o_GT_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1785), - [aux_sym_unquoted_token1] = ACTIONS(1783), - [aux_sym_unquoted_token2] = ACTIONS(1783), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1785), + [ts_builtin_sym_end] = ACTIONS(1514), + [sym__newline] = ACTIONS(1514), + [anon_sym_SEMI] = ACTIONS(1514), + [anon_sym_PIPE] = ACTIONS(1514), + [anon_sym_err_GT_PIPE] = ACTIONS(1514), + [anon_sym_out_GT_PIPE] = ACTIONS(1514), + [anon_sym_e_GT_PIPE] = ACTIONS(1514), + [anon_sym_o_GT_PIPE] = ACTIONS(1514), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1514), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1514), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1514), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1514), + [anon_sym_LBRACK] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_DOLLAR] = ACTIONS(1512), + [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_DOT_DOT] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [aux_sym__immediate_decimal_token2] = ACTIONS(4585), + [anon_sym_null] = ACTIONS(1514), + [anon_sym_true] = ACTIONS(1514), + [anon_sym_false] = ACTIONS(1514), + [aux_sym__val_number_decimal_token1] = ACTIONS(1512), + [aux_sym__val_number_decimal_token2] = ACTIONS(1514), + [aux_sym__val_number_decimal_token3] = ACTIONS(1514), + [aux_sym__val_number_decimal_token4] = ACTIONS(1514), + [aux_sym__val_number_token1] = ACTIONS(1514), + [aux_sym__val_number_token2] = ACTIONS(1514), + [aux_sym__val_number_token3] = ACTIONS(1514), + [aux_sym__val_number_token4] = ACTIONS(1514), + [aux_sym__val_number_token5] = ACTIONS(1514), + [aux_sym__val_number_token6] = ACTIONS(1514), + [anon_sym_0b] = ACTIONS(1512), + [sym_filesize_unit] = ACTIONS(1514), + [sym_duration_unit] = ACTIONS(1514), + [anon_sym_0o] = ACTIONS(1512), + [anon_sym_0x] = ACTIONS(1512), + [sym_val_date] = ACTIONS(1514), + [anon_sym_DQUOTE] = ACTIONS(1514), + [sym__str_single_quotes] = ACTIONS(1514), + [sym__str_back_ticks] = ACTIONS(1514), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1514), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1514), + [anon_sym_err_GT] = ACTIONS(1512), + [anon_sym_out_GT] = ACTIONS(1512), + [anon_sym_e_GT] = ACTIONS(1512), + [anon_sym_o_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT] = ACTIONS(1512), + [anon_sym_err_GT_GT] = ACTIONS(1514), + [anon_sym_out_GT_GT] = ACTIONS(1514), + [anon_sym_e_GT_GT] = ACTIONS(1514), + [anon_sym_o_GT_GT] = ACTIONS(1514), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1514), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1514), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1514), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1514), + [aux_sym_unquoted_token1] = ACTIONS(1512), + [aux_sym_unquoted_token2] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1514), }, [1373] = { - [sym__expr_parenthesized_immediate] = STATE(2075), - [sym__immediate_decimal] = STATE(2076), - [sym_val_variable] = STATE(2075), [sym_comment] = STATE(1373), - [sym__newline] = ACTIONS(1510), - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1510), - [anon_sym_err_GT_PIPE] = ACTIONS(1510), - [anon_sym_out_GT_PIPE] = ACTIONS(1510), - [anon_sym_e_GT_PIPE] = ACTIONS(1510), - [anon_sym_o_GT_PIPE] = ACTIONS(1510), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1510), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1510), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1510), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1510), - [anon_sym_RPAREN] = ACTIONS(1510), - [anon_sym_DOLLAR] = ACTIONS(3630), - [anon_sym_GT2] = ACTIONS(1500), - [anon_sym_DASH2] = ACTIONS(1500), - [anon_sym_in2] = ACTIONS(1510), - [anon_sym_LBRACE] = ACTIONS(1510), - [anon_sym_RBRACE] = ACTIONS(1510), - [anon_sym_STAR2] = ACTIONS(1500), - [anon_sym_and2] = ACTIONS(1510), - [anon_sym_xor2] = ACTIONS(1510), - [anon_sym_or2] = ACTIONS(1510), - [anon_sym_not_DASHin2] = ACTIONS(1510), - [anon_sym_starts_DASHwith2] = ACTIONS(1510), - [anon_sym_ends_DASHwith2] = ACTIONS(1510), - [anon_sym_EQ_EQ2] = ACTIONS(1510), - [anon_sym_BANG_EQ2] = ACTIONS(1510), - [anon_sym_LT2] = ACTIONS(1500), - [anon_sym_LT_EQ2] = ACTIONS(1510), - [anon_sym_GT_EQ2] = ACTIONS(1510), - [anon_sym_EQ_TILDE2] = ACTIONS(1510), - [anon_sym_BANG_TILDE2] = ACTIONS(1510), - [anon_sym_LPAREN2] = ACTIONS(4580), - [anon_sym_STAR_STAR2] = ACTIONS(1510), - [anon_sym_PLUS_PLUS2] = ACTIONS(1510), - [anon_sym_SLASH2] = ACTIONS(1500), - [anon_sym_mod2] = ACTIONS(1510), - [anon_sym_SLASH_SLASH2] = ACTIONS(1510), - [anon_sym_PLUS2] = ACTIONS(1500), - [anon_sym_bit_DASHshl2] = ACTIONS(1510), - [anon_sym_bit_DASHshr2] = ACTIONS(1510), - [anon_sym_bit_DASHand2] = ACTIONS(1510), - [anon_sym_bit_DASHxor2] = ACTIONS(1510), - [anon_sym_bit_DASHor2] = ACTIONS(1510), - [aux_sym__immediate_decimal_token1] = ACTIONS(4638), - [aux_sym__immediate_decimal_token3] = ACTIONS(4638), - [aux_sym__immediate_decimal_token4] = ACTIONS(4586), - [aux_sym__immediate_decimal_token5] = ACTIONS(4588), - [anon_sym_err_GT] = ACTIONS(1500), - [anon_sym_out_GT] = ACTIONS(1500), - [anon_sym_e_GT] = ACTIONS(1500), - [anon_sym_o_GT] = ACTIONS(1500), - [anon_sym_err_PLUSout_GT] = ACTIONS(1500), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1500), - [anon_sym_o_PLUSe_GT] = ACTIONS(1500), - [anon_sym_e_PLUSo_GT] = ACTIONS(1500), - [anon_sym_err_GT_GT] = ACTIONS(1510), - [anon_sym_out_GT_GT] = ACTIONS(1510), - [anon_sym_e_GT_GT] = ACTIONS(1510), - [anon_sym_o_GT_GT] = ACTIONS(1510), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1510), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1510), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1510), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1510), - [anon_sym_POUND] = ACTIONS(251), + [ts_builtin_sym_end] = ACTIONS(1620), + [sym__newline] = ACTIONS(1620), + [anon_sym_SEMI] = ACTIONS(1620), + [anon_sym_PIPE] = ACTIONS(1620), + [anon_sym_err_GT_PIPE] = ACTIONS(1620), + [anon_sym_out_GT_PIPE] = ACTIONS(1620), + [anon_sym_e_GT_PIPE] = ACTIONS(1620), + [anon_sym_o_GT_PIPE] = ACTIONS(1620), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1620), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1620), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1620), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_LPAREN] = ACTIONS(1620), + [anon_sym_DOLLAR] = ACTIONS(1618), + [anon_sym_DASH_DASH] = ACTIONS(1620), + [anon_sym_DASH2] = ACTIONS(1618), + [anon_sym_LBRACE] = ACTIONS(1620), + [anon_sym_DOT_DOT] = ACTIONS(1618), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1618), + [anon_sym_DOT_DOT_LT] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [aux_sym__immediate_decimal_token2] = ACTIONS(4604), + [anon_sym_null] = ACTIONS(1620), + [anon_sym_true] = ACTIONS(1620), + [anon_sym_false] = ACTIONS(1620), + [aux_sym__val_number_decimal_token1] = ACTIONS(1618), + [aux_sym__val_number_decimal_token2] = ACTIONS(1620), + [aux_sym__val_number_decimal_token3] = ACTIONS(1620), + [aux_sym__val_number_decimal_token4] = ACTIONS(1620), + [aux_sym__val_number_token1] = ACTIONS(1620), + [aux_sym__val_number_token2] = ACTIONS(1620), + [aux_sym__val_number_token3] = ACTIONS(1620), + [aux_sym__val_number_token4] = ACTIONS(1620), + [aux_sym__val_number_token5] = ACTIONS(1620), + [aux_sym__val_number_token6] = ACTIONS(1620), + [anon_sym_0b] = ACTIONS(1618), + [sym_filesize_unit] = ACTIONS(1620), + [sym_duration_unit] = ACTIONS(1620), + [anon_sym_0o] = ACTIONS(1618), + [anon_sym_0x] = ACTIONS(1618), + [sym_val_date] = ACTIONS(1620), + [anon_sym_DQUOTE] = ACTIONS(1620), + [sym__str_single_quotes] = ACTIONS(1620), + [sym__str_back_ticks] = ACTIONS(1620), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1620), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1620), + [anon_sym_err_GT] = ACTIONS(1618), + [anon_sym_out_GT] = ACTIONS(1618), + [anon_sym_e_GT] = ACTIONS(1618), + [anon_sym_o_GT] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT] = ACTIONS(1618), + [anon_sym_err_GT_GT] = ACTIONS(1620), + [anon_sym_out_GT_GT] = ACTIONS(1620), + [anon_sym_e_GT_GT] = ACTIONS(1620), + [anon_sym_o_GT_GT] = ACTIONS(1620), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1620), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1620), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1620), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1620), + [aux_sym_unquoted_token1] = ACTIONS(1618), + [aux_sym_unquoted_token2] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1620), }, [1374] = { + [sym_cell_path] = STATE(1652), + [sym_path] = STATE(1596), [sym_comment] = STATE(1374), - [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(1835), - [anon_sym_RPAREN] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1837), - [anon_sym_DASH2] = ACTIONS(1835), - [anon_sym_LBRACE] = ACTIONS(1837), - [anon_sym_RBRACE] = ACTIONS(1837), - [anon_sym_DOT_DOT] = ACTIONS(1835), - [anon_sym_LPAREN2] = ACTIONS(1837), - [anon_sym_DOT_DOT2] = ACTIONS(1835), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1835), - [anon_sym_DOT_DOT_LT] = ACTIONS(1835), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1837), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1837), - [anon_sym_null] = ACTIONS(1837), - [anon_sym_true] = ACTIONS(1837), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(1837), - [aux_sym__val_number_token5] = ACTIONS(1837), - [aux_sym__val_number_token6] = 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), - [aux_sym_unquoted_token2] = ACTIONS(1835), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1837), + [aux_sym_cell_path_repeat1] = STATE(1414), + [ts_builtin_sym_end] = ACTIONS(1668), + [sym__newline] = ACTIONS(1668), + [anon_sym_SEMI] = ACTIONS(1668), + [anon_sym_PIPE] = ACTIONS(1668), + [anon_sym_err_GT_PIPE] = ACTIONS(1668), + [anon_sym_out_GT_PIPE] = ACTIONS(1668), + [anon_sym_e_GT_PIPE] = ACTIONS(1668), + [anon_sym_o_GT_PIPE] = ACTIONS(1668), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1668), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1668), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1668), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1668), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_LPAREN] = ACTIONS(1668), + [anon_sym_DOLLAR] = ACTIONS(1666), + [anon_sym_DASH_DASH] = ACTIONS(1668), + [anon_sym_DASH2] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1668), + [anon_sym_DOT_DOT] = ACTIONS(1666), + [anon_sym_DOT_DOT2] = ACTIONS(1666), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1666), + [anon_sym_DOT_DOT_LT] = ACTIONS(1666), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), + [anon_sym_null] = ACTIONS(1668), + [anon_sym_true] = ACTIONS(1668), + [anon_sym_false] = ACTIONS(1668), + [aux_sym__val_number_decimal_token1] = ACTIONS(1666), + [aux_sym__val_number_decimal_token2] = ACTIONS(1668), + [aux_sym__val_number_decimal_token3] = ACTIONS(1668), + [aux_sym__val_number_decimal_token4] = ACTIONS(1668), + [aux_sym__val_number_token1] = ACTIONS(1668), + [aux_sym__val_number_token2] = ACTIONS(1668), + [aux_sym__val_number_token3] = ACTIONS(1668), + [aux_sym__val_number_token4] = ACTIONS(1668), + [aux_sym__val_number_token5] = ACTIONS(1668), + [aux_sym__val_number_token6] = ACTIONS(1668), + [anon_sym_0b] = ACTIONS(1666), + [anon_sym_0o] = ACTIONS(1666), + [anon_sym_0x] = ACTIONS(1666), + [sym_val_date] = ACTIONS(1668), + [anon_sym_DQUOTE] = ACTIONS(1668), + [sym__str_single_quotes] = ACTIONS(1668), + [sym__str_back_ticks] = ACTIONS(1668), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1668), + [anon_sym_DOT2] = ACTIONS(4606), + [anon_sym_err_GT] = ACTIONS(1666), + [anon_sym_out_GT] = ACTIONS(1666), + [anon_sym_e_GT] = ACTIONS(1666), + [anon_sym_o_GT] = ACTIONS(1666), + [anon_sym_err_PLUSout_GT] = ACTIONS(1666), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1666), + [anon_sym_o_PLUSe_GT] = ACTIONS(1666), + [anon_sym_e_PLUSo_GT] = ACTIONS(1666), + [anon_sym_err_GT_GT] = ACTIONS(1668), + [anon_sym_out_GT_GT] = ACTIONS(1668), + [anon_sym_e_GT_GT] = ACTIONS(1668), + [anon_sym_o_GT_GT] = ACTIONS(1668), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1668), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1668), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1668), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1668), + [aux_sym_unquoted_token1] = ACTIONS(1666), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1668), }, [1375] = { [sym_comment] = STATE(1375), - [ts_builtin_sym_end] = 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(1638), - [anon_sym_DASH_DASH] = ACTIONS(1650), - [anon_sym_DASH2] = ACTIONS(1638), - [anon_sym_LBRACE] = ACTIONS(1650), - [anon_sym_DOT_DOT] = ACTIONS(1638), - [anon_sym_DOT_DOT2] = ACTIONS(4622), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1638), - [anon_sym_DOT_DOT_LT] = ACTIONS(1638), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4624), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4624), - [anon_sym_null] = ACTIONS(1650), - [anon_sym_true] = ACTIONS(1650), - [anon_sym_false] = ACTIONS(1650), - [aux_sym__val_number_decimal_token1] = ACTIONS(1638), - [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), - [aux_sym__val_number_token4] = ACTIONS(1650), - [aux_sym__val_number_token5] = ACTIONS(1650), - [aux_sym__val_number_token6] = ACTIONS(1650), - [anon_sym_0b] = ACTIONS(1638), - [sym_filesize_unit] = ACTIONS(4640), - [sym_duration_unit] = ACTIONS(4642), - [anon_sym_0o] = ACTIONS(1638), - [anon_sym_0x] = ACTIONS(1638), - [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(1638), - [anon_sym_out_GT] = ACTIONS(1638), - [anon_sym_e_GT] = ACTIONS(1638), - [anon_sym_o_GT] = ACTIONS(1638), - [anon_sym_err_PLUSout_GT] = ACTIONS(1638), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1638), - [anon_sym_o_PLUSe_GT] = ACTIONS(1638), - [anon_sym_e_PLUSo_GT] = ACTIONS(1638), - [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(1638), - [aux_sym_unquoted_token2] = ACTIONS(4644), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1650), + [ts_builtin_sym_end] = ACTIONS(1620), + [sym__newline] = ACTIONS(1620), + [anon_sym_SEMI] = ACTIONS(1620), + [anon_sym_PIPE] = ACTIONS(1620), + [anon_sym_err_GT_PIPE] = ACTIONS(1620), + [anon_sym_out_GT_PIPE] = ACTIONS(1620), + [anon_sym_e_GT_PIPE] = ACTIONS(1620), + [anon_sym_o_GT_PIPE] = ACTIONS(1620), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1620), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1620), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1620), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_DOLLAR] = ACTIONS(1618), + [anon_sym_DASH_DASH] = ACTIONS(1620), + [anon_sym_DASH2] = ACTIONS(1618), + [anon_sym_LBRACE] = ACTIONS(1620), + [anon_sym_DOT_DOT] = ACTIONS(1618), + [anon_sym_LPAREN2] = ACTIONS(1620), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1618), + [anon_sym_DOT_DOT_LT] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [anon_sym_null] = ACTIONS(1620), + [anon_sym_true] = ACTIONS(1620), + [anon_sym_false] = ACTIONS(1620), + [aux_sym__val_number_decimal_token1] = ACTIONS(1618), + [aux_sym__val_number_decimal_token2] = ACTIONS(1620), + [aux_sym__val_number_decimal_token3] = ACTIONS(1620), + [aux_sym__val_number_decimal_token4] = ACTIONS(1620), + [aux_sym__val_number_token1] = ACTIONS(1620), + [aux_sym__val_number_token2] = ACTIONS(1620), + [aux_sym__val_number_token3] = ACTIONS(1620), + [aux_sym__val_number_token4] = ACTIONS(1620), + [aux_sym__val_number_token5] = ACTIONS(1620), + [aux_sym__val_number_token6] = ACTIONS(1620), + [anon_sym_0b] = ACTIONS(1618), + [sym_filesize_unit] = ACTIONS(1620), + [sym_duration_unit] = ACTIONS(1620), + [anon_sym_0o] = ACTIONS(1618), + [anon_sym_0x] = ACTIONS(1618), + [sym_val_date] = ACTIONS(1620), + [anon_sym_DQUOTE] = ACTIONS(1620), + [sym__str_single_quotes] = ACTIONS(1620), + [sym__str_back_ticks] = ACTIONS(1620), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1620), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1620), + [anon_sym_err_GT] = ACTIONS(1618), + [anon_sym_out_GT] = ACTIONS(1618), + [anon_sym_e_GT] = ACTIONS(1618), + [anon_sym_o_GT] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT] = ACTIONS(1618), + [anon_sym_err_GT_GT] = ACTIONS(1620), + [anon_sym_out_GT_GT] = ACTIONS(1620), + [anon_sym_e_GT_GT] = ACTIONS(1620), + [anon_sym_o_GT_GT] = ACTIONS(1620), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1620), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1620), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1620), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1620), + [aux_sym_unquoted_token1] = ACTIONS(1618), + [aux_sym_unquoted_token2] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1620), }, [1376] = { [sym_comment] = STATE(1376), - [ts_builtin_sym_end] = ACTIONS(986), - [anon_sym_EQ] = ACTIONS(984), - [anon_sym_PLUS_EQ] = ACTIONS(986), - [anon_sym_DASH_EQ] = ACTIONS(986), - [anon_sym_STAR_EQ] = ACTIONS(986), - [anon_sym_SLASH_EQ] = ACTIONS(986), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(986), - [sym__newline] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_PIPE] = ACTIONS(986), - [anon_sym_err_GT_PIPE] = ACTIONS(986), - [anon_sym_out_GT_PIPE] = ACTIONS(986), - [anon_sym_e_GT_PIPE] = ACTIONS(986), - [anon_sym_o_GT_PIPE] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), - [anon_sym_GT2] = ACTIONS(984), - [anon_sym_DASH2] = ACTIONS(984), - [anon_sym_in2] = ACTIONS(986), - [anon_sym_STAR2] = ACTIONS(984), - [anon_sym_QMARK2] = ACTIONS(986), - [anon_sym_and2] = ACTIONS(986), - [anon_sym_xor2] = ACTIONS(986), - [anon_sym_or2] = ACTIONS(986), - [anon_sym_not_DASHin2] = ACTIONS(986), - [anon_sym_starts_DASHwith2] = ACTIONS(986), - [anon_sym_ends_DASHwith2] = ACTIONS(986), - [anon_sym_EQ_EQ2] = ACTIONS(986), - [anon_sym_BANG_EQ2] = ACTIONS(986), - [anon_sym_LT2] = ACTIONS(984), - [anon_sym_LT_EQ2] = ACTIONS(986), - [anon_sym_GT_EQ2] = ACTIONS(986), - [anon_sym_EQ_TILDE2] = ACTIONS(986), - [anon_sym_BANG_TILDE2] = ACTIONS(986), - [anon_sym_STAR_STAR2] = ACTIONS(986), - [anon_sym_PLUS_PLUS2] = ACTIONS(984), - [anon_sym_SLASH2] = ACTIONS(984), - [anon_sym_mod2] = ACTIONS(986), - [anon_sym_SLASH_SLASH2] = ACTIONS(986), - [anon_sym_PLUS2] = ACTIONS(984), - [anon_sym_bit_DASHshl2] = ACTIONS(986), - [anon_sym_bit_DASHshr2] = ACTIONS(986), - [anon_sym_bit_DASHand2] = ACTIONS(986), - [anon_sym_bit_DASHxor2] = ACTIONS(986), - [anon_sym_bit_DASHor2] = ACTIONS(986), - [anon_sym_DOT_DOT2] = ACTIONS(984), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), - [anon_sym_DOT_DOT_LT2] = ACTIONS(986), - [anon_sym_DOT2] = ACTIONS(984), - [anon_sym_err_GT] = ACTIONS(984), - [anon_sym_out_GT] = ACTIONS(984), - [anon_sym_e_GT] = ACTIONS(984), - [anon_sym_o_GT] = ACTIONS(984), - [anon_sym_err_PLUSout_GT] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT] = ACTIONS(984), - [anon_sym_o_PLUSe_GT] = ACTIONS(984), - [anon_sym_e_PLUSo_GT] = ACTIONS(984), - [anon_sym_err_GT_GT] = ACTIONS(986), - [anon_sym_out_GT_GT] = ACTIONS(986), - [anon_sym_e_GT_GT] = ACTIONS(986), - [anon_sym_o_GT_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(1651), + [anon_sym_SEMI] = ACTIONS(1651), + [anon_sym_PIPE] = ACTIONS(1651), + [anon_sym_err_GT_PIPE] = ACTIONS(1651), + [anon_sym_out_GT_PIPE] = ACTIONS(1651), + [anon_sym_e_GT_PIPE] = ACTIONS(1651), + [anon_sym_o_GT_PIPE] = ACTIONS(1651), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1651), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1651), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1651), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1651), + [anon_sym_LPAREN] = ACTIONS(1651), + [anon_sym_RPAREN] = ACTIONS(1651), + [anon_sym_DOLLAR] = ACTIONS(1639), + [anon_sym_DASH_DASH] = ACTIONS(1651), + [anon_sym_DASH2] = ACTIONS(1639), + [anon_sym_LBRACE] = ACTIONS(1651), + [anon_sym_RBRACE] = ACTIONS(1651), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_DOT_DOT2] = ACTIONS(4608), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1639), + [anon_sym_DOT_DOT_LT] = ACTIONS(1639), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4610), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4610), + [anon_sym_null] = ACTIONS(1651), + [anon_sym_true] = ACTIONS(1651), + [anon_sym_false] = ACTIONS(1651), + [aux_sym__val_number_decimal_token1] = ACTIONS(1639), + [aux_sym__val_number_decimal_token2] = ACTIONS(1651), + [aux_sym__val_number_decimal_token3] = ACTIONS(1651), + [aux_sym__val_number_decimal_token4] = ACTIONS(1651), + [aux_sym__val_number_token1] = ACTIONS(1651), + [aux_sym__val_number_token2] = ACTIONS(1651), + [aux_sym__val_number_token3] = ACTIONS(1651), + [aux_sym__val_number_token4] = ACTIONS(1651), + [aux_sym__val_number_token5] = ACTIONS(1651), + [aux_sym__val_number_token6] = ACTIONS(1651), + [anon_sym_0b] = ACTIONS(1639), + [sym_filesize_unit] = ACTIONS(4612), + [sym_duration_unit] = ACTIONS(4614), + [anon_sym_0o] = ACTIONS(1639), + [anon_sym_0x] = ACTIONS(1639), + [sym_val_date] = ACTIONS(1651), + [anon_sym_DQUOTE] = ACTIONS(1651), + [sym__str_single_quotes] = ACTIONS(1651), + [sym__str_back_ticks] = ACTIONS(1651), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1651), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1651), + [anon_sym_err_GT] = ACTIONS(1639), + [anon_sym_out_GT] = ACTIONS(1639), + [anon_sym_e_GT] = ACTIONS(1639), + [anon_sym_o_GT] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT] = ACTIONS(1639), + [anon_sym_err_GT_GT] = ACTIONS(1651), + [anon_sym_out_GT_GT] = ACTIONS(1651), + [anon_sym_e_GT_GT] = ACTIONS(1651), + [anon_sym_o_GT_GT] = ACTIONS(1651), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1651), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1651), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1651), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1651), + [aux_sym_unquoted_token1] = ACTIONS(1639), + [aux_sym_unquoted_token2] = ACTIONS(4616), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1651), }, [1377] = { [sym_comment] = STATE(1377), - [ts_builtin_sym_end] = ACTIONS(1757), - [sym__newline] = ACTIONS(1757), - [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(1755), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1755), - [anon_sym_DOT_DOT_LT] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(4592), - [anon_sym_null] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = 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_err_GT] = ACTIONS(1755), - [anon_sym_out_GT] = ACTIONS(1755), - [anon_sym_e_GT] = ACTIONS(1755), - [anon_sym_o_GT] = ACTIONS(1755), - [anon_sym_err_PLUSout_GT] = ACTIONS(1755), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), - [anon_sym_o_PLUSe_GT] = ACTIONS(1755), - [anon_sym_e_PLUSo_GT] = ACTIONS(1755), - [anon_sym_err_GT_GT] = ACTIONS(1757), - [anon_sym_out_GT_GT] = ACTIONS(1757), - [anon_sym_e_GT_GT] = ACTIONS(1757), - [anon_sym_o_GT_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), - [aux_sym_unquoted_token1] = ACTIONS(1755), - [aux_sym_unquoted_token2] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1757), + [ts_builtin_sym_end] = ACTIONS(1691), + [sym__newline] = ACTIONS(1691), + [anon_sym_SEMI] = ACTIONS(1691), + [anon_sym_PIPE] = ACTIONS(1691), + [anon_sym_err_GT_PIPE] = ACTIONS(1691), + [anon_sym_out_GT_PIPE] = ACTIONS(1691), + [anon_sym_e_GT_PIPE] = ACTIONS(1691), + [anon_sym_o_GT_PIPE] = ACTIONS(1691), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1691), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1691), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1691), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1691), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1689), + [anon_sym_DOLLAR] = ACTIONS(1689), + [anon_sym_DASH_DASH] = ACTIONS(1691), + [anon_sym_DASH2] = ACTIONS(1689), + [anon_sym_LBRACE] = ACTIONS(1691), + [anon_sym_DOT_DOT] = ACTIONS(1689), + [anon_sym_LPAREN2] = ACTIONS(1691), + [anon_sym_DOT_DOT2] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1689), + [anon_sym_DOT_DOT_LT] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1691), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1691), + [anon_sym_null] = ACTIONS(1691), + [anon_sym_true] = ACTIONS(1691), + [anon_sym_false] = ACTIONS(1691), + [aux_sym__val_number_decimal_token1] = ACTIONS(1689), + [aux_sym__val_number_decimal_token2] = ACTIONS(1691), + [aux_sym__val_number_decimal_token3] = ACTIONS(1691), + [aux_sym__val_number_decimal_token4] = ACTIONS(1691), + [aux_sym__val_number_token1] = ACTIONS(1691), + [aux_sym__val_number_token2] = ACTIONS(1691), + [aux_sym__val_number_token3] = ACTIONS(1691), + [aux_sym__val_number_token4] = ACTIONS(1691), + [aux_sym__val_number_token5] = ACTIONS(1691), + [aux_sym__val_number_token6] = ACTIONS(1691), + [anon_sym_0b] = ACTIONS(1689), + [sym_filesize_unit] = ACTIONS(1691), + [sym_duration_unit] = ACTIONS(1691), + [anon_sym_0o] = ACTIONS(1689), + [anon_sym_0x] = ACTIONS(1689), + [sym_val_date] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1691), + [sym__str_single_quotes] = ACTIONS(1691), + [sym__str_back_ticks] = ACTIONS(1691), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1691), + [anon_sym_err_GT] = ACTIONS(1689), + [anon_sym_out_GT] = ACTIONS(1689), + [anon_sym_e_GT] = ACTIONS(1689), + [anon_sym_o_GT] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT] = ACTIONS(1689), + [anon_sym_err_GT_GT] = ACTIONS(1691), + [anon_sym_out_GT_GT] = ACTIONS(1691), + [anon_sym_e_GT_GT] = ACTIONS(1691), + [anon_sym_o_GT_GT] = ACTIONS(1691), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1691), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1691), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1691), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1691), + [aux_sym_unquoted_token1] = ACTIONS(1689), + [aux_sym_unquoted_token2] = ACTIONS(1689), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1691), }, [1378] = { + [sym_cell_path] = STATE(1654), + [sym_path] = STATE(1596), [sym_comment] = STATE(1378), - [sym__newline] = ACTIONS(974), - [anon_sym_SEMI] = ACTIONS(974), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_err_GT_PIPE] = ACTIONS(974), - [anon_sym_out_GT_PIPE] = ACTIONS(974), - [anon_sym_e_GT_PIPE] = ACTIONS(974), - [anon_sym_o_GT_PIPE] = ACTIONS(974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(974), - [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(974), - [anon_sym_DOLLAR] = ACTIONS(972), - [anon_sym_DASH_DASH] = ACTIONS(974), - [anon_sym_DASH2] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(974), - [anon_sym_RBRACE] = ACTIONS(974), - [anon_sym_DOT_DOT] = ACTIONS(972), - [anon_sym_QMARK2] = ACTIONS(974), - [anon_sym_DOT_DOT2] = ACTIONS(972), - [anon_sym_DOT_DOT_EQ] = ACTIONS(972), - [anon_sym_DOT_DOT_LT] = ACTIONS(972), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(974), - [anon_sym_DOT_DOT_LT2] = ACTIONS(974), - [anon_sym_null] = ACTIONS(974), - [anon_sym_true] = ACTIONS(974), - [anon_sym_false] = ACTIONS(974), - [aux_sym__val_number_decimal_token1] = ACTIONS(972), - [aux_sym__val_number_decimal_token2] = ACTIONS(974), - [aux_sym__val_number_decimal_token3] = ACTIONS(974), - [aux_sym__val_number_decimal_token4] = ACTIONS(974), - [aux_sym__val_number_token1] = ACTIONS(974), - [aux_sym__val_number_token2] = ACTIONS(974), - [aux_sym__val_number_token3] = ACTIONS(974), - [aux_sym__val_number_token4] = ACTIONS(974), - [aux_sym__val_number_token5] = ACTIONS(974), - [aux_sym__val_number_token6] = ACTIONS(974), - [anon_sym_0b] = ACTIONS(972), - [anon_sym_0o] = ACTIONS(972), - [anon_sym_0x] = ACTIONS(972), - [sym_val_date] = ACTIONS(974), - [anon_sym_DQUOTE] = ACTIONS(974), - [sym__str_single_quotes] = ACTIONS(974), - [sym__str_back_ticks] = ACTIONS(974), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(974), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(974), - [anon_sym_DOT2] = ACTIONS(972), - [anon_sym_err_GT] = ACTIONS(972), - [anon_sym_out_GT] = ACTIONS(972), - [anon_sym_e_GT] = ACTIONS(972), - [anon_sym_o_GT] = ACTIONS(972), - [anon_sym_err_PLUSout_GT] = ACTIONS(972), - [anon_sym_out_PLUSerr_GT] = ACTIONS(972), - [anon_sym_o_PLUSe_GT] = ACTIONS(972), - [anon_sym_e_PLUSo_GT] = ACTIONS(972), - [anon_sym_err_GT_GT] = ACTIONS(974), - [anon_sym_out_GT_GT] = ACTIONS(974), - [anon_sym_e_GT_GT] = ACTIONS(974), - [anon_sym_o_GT_GT] = ACTIONS(974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(974), - [aux_sym_unquoted_token1] = ACTIONS(972), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(974), + [aux_sym_cell_path_repeat1] = STATE(1414), + [ts_builtin_sym_end] = ACTIONS(1678), + [sym__newline] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_PIPE] = ACTIONS(1678), + [anon_sym_err_GT_PIPE] = ACTIONS(1678), + [anon_sym_out_GT_PIPE] = ACTIONS(1678), + [anon_sym_e_GT_PIPE] = ACTIONS(1678), + [anon_sym_o_GT_PIPE] = ACTIONS(1678), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1678), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1678), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1678), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_LPAREN] = ACTIONS(1678), + [anon_sym_DOLLAR] = ACTIONS(1676), + [anon_sym_DASH_DASH] = ACTIONS(1678), + [anon_sym_DASH2] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_DOT_DOT] = ACTIONS(1676), + [anon_sym_DOT_DOT2] = ACTIONS(1676), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1676), + [anon_sym_DOT_DOT_LT] = ACTIONS(1676), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1678), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1678), + [anon_sym_null] = ACTIONS(1678), + [anon_sym_true] = ACTIONS(1678), + [anon_sym_false] = ACTIONS(1678), + [aux_sym__val_number_decimal_token1] = ACTIONS(1676), + [aux_sym__val_number_decimal_token2] = ACTIONS(1678), + [aux_sym__val_number_decimal_token3] = ACTIONS(1678), + [aux_sym__val_number_decimal_token4] = ACTIONS(1678), + [aux_sym__val_number_token1] = ACTIONS(1678), + [aux_sym__val_number_token2] = ACTIONS(1678), + [aux_sym__val_number_token3] = ACTIONS(1678), + [aux_sym__val_number_token4] = ACTIONS(1678), + [aux_sym__val_number_token5] = ACTIONS(1678), + [aux_sym__val_number_token6] = ACTIONS(1678), + [anon_sym_0b] = ACTIONS(1676), + [anon_sym_0o] = ACTIONS(1676), + [anon_sym_0x] = ACTIONS(1676), + [sym_val_date] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym__str_single_quotes] = ACTIONS(1678), + [sym__str_back_ticks] = ACTIONS(1678), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1678), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1678), + [anon_sym_DOT2] = ACTIONS(4606), + [anon_sym_err_GT] = ACTIONS(1676), + [anon_sym_out_GT] = ACTIONS(1676), + [anon_sym_e_GT] = ACTIONS(1676), + [anon_sym_o_GT] = ACTIONS(1676), + [anon_sym_err_PLUSout_GT] = ACTIONS(1676), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1676), + [anon_sym_o_PLUSe_GT] = ACTIONS(1676), + [anon_sym_e_PLUSo_GT] = ACTIONS(1676), + [anon_sym_err_GT_GT] = ACTIONS(1678), + [anon_sym_out_GT_GT] = ACTIONS(1678), + [anon_sym_e_GT_GT] = ACTIONS(1678), + [anon_sym_o_GT_GT] = ACTIONS(1678), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1678), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1678), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1678), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1678), + [aux_sym_unquoted_token1] = ACTIONS(1676), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1678), }, [1379] = { [sym_comment] = STATE(1379), - [ts_builtin_sym_end] = ACTIONS(962), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_PLUS_EQ] = ACTIONS(962), - [anon_sym_DASH_EQ] = ACTIONS(962), - [anon_sym_STAR_EQ] = ACTIONS(962), - [anon_sym_SLASH_EQ] = ACTIONS(962), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(962), + [ts_builtin_sym_end] = ACTIONS(980), + [anon_sym_EQ] = ACTIONS(978), + [anon_sym_PLUS_EQ] = ACTIONS(980), + [anon_sym_DASH_EQ] = ACTIONS(980), + [anon_sym_STAR_EQ] = ACTIONS(980), + [anon_sym_SLASH_EQ] = ACTIONS(980), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(980), + [sym__newline] = ACTIONS(980), + [anon_sym_SEMI] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(980), + [anon_sym_err_GT_PIPE] = ACTIONS(980), + [anon_sym_out_GT_PIPE] = ACTIONS(980), + [anon_sym_e_GT_PIPE] = ACTIONS(980), + [anon_sym_o_GT_PIPE] = ACTIONS(980), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(980), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(980), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(980), + [anon_sym_GT2] = ACTIONS(978), + [anon_sym_DASH2] = ACTIONS(978), + [anon_sym_in2] = ACTIONS(980), + [anon_sym_STAR2] = ACTIONS(978), + [anon_sym_and2] = ACTIONS(980), + [anon_sym_xor2] = ACTIONS(980), + [anon_sym_or2] = ACTIONS(980), + [anon_sym_not_DASHin2] = ACTIONS(980), + [anon_sym_has2] = ACTIONS(980), + [anon_sym_not_DASHhas2] = ACTIONS(980), + [anon_sym_starts_DASHwith2] = ACTIONS(980), + [anon_sym_ends_DASHwith2] = ACTIONS(980), + [anon_sym_EQ_EQ2] = ACTIONS(980), + [anon_sym_BANG_EQ2] = ACTIONS(980), + [anon_sym_LT2] = ACTIONS(978), + [anon_sym_LT_EQ2] = ACTIONS(980), + [anon_sym_GT_EQ2] = ACTIONS(980), + [anon_sym_EQ_TILDE2] = ACTIONS(980), + [anon_sym_BANG_TILDE2] = ACTIONS(980), + [anon_sym_STAR_STAR2] = ACTIONS(980), + [anon_sym_PLUS_PLUS2] = ACTIONS(978), + [anon_sym_SLASH2] = ACTIONS(978), + [anon_sym_mod2] = ACTIONS(980), + [anon_sym_SLASH_SLASH2] = ACTIONS(980), + [anon_sym_PLUS2] = ACTIONS(978), + [anon_sym_bit_DASHshl2] = ACTIONS(980), + [anon_sym_bit_DASHshr2] = ACTIONS(980), + [anon_sym_bit_DASHand2] = ACTIONS(980), + [anon_sym_bit_DASHxor2] = ACTIONS(980), + [anon_sym_bit_DASHor2] = ACTIONS(980), + [anon_sym_DOT_DOT2] = ACTIONS(978), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(980), + [anon_sym_DOT_DOT_LT2] = ACTIONS(980), + [anon_sym_DOT2] = ACTIONS(978), + [anon_sym_err_GT] = ACTIONS(978), + [anon_sym_out_GT] = ACTIONS(978), + [anon_sym_e_GT] = ACTIONS(978), + [anon_sym_o_GT] = ACTIONS(978), + [anon_sym_err_PLUSout_GT] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT] = ACTIONS(978), + [anon_sym_o_PLUSe_GT] = ACTIONS(978), + [anon_sym_e_PLUSo_GT] = ACTIONS(978), + [anon_sym_err_GT_GT] = ACTIONS(980), + [anon_sym_out_GT_GT] = ACTIONS(980), + [anon_sym_e_GT_GT] = ACTIONS(980), + [anon_sym_o_GT_GT] = ACTIONS(980), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(980), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(980), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(980), + [anon_sym_POUND] = ACTIONS(247), + }, + [1380] = { + [sym_comment] = STATE(1380), + [ts_builtin_sym_end] = ACTIONS(976), + [anon_sym_EQ] = ACTIONS(974), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(976), + [sym__newline] = ACTIONS(976), + [anon_sym_SEMI] = ACTIONS(976), + [anon_sym_PIPE] = ACTIONS(976), + [anon_sym_err_GT_PIPE] = ACTIONS(976), + [anon_sym_out_GT_PIPE] = ACTIONS(976), + [anon_sym_e_GT_PIPE] = ACTIONS(976), + [anon_sym_o_GT_PIPE] = ACTIONS(976), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(976), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(976), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(976), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(974), + [anon_sym_DASH2] = ACTIONS(974), + [anon_sym_in2] = ACTIONS(976), + [anon_sym_STAR2] = ACTIONS(974), + [anon_sym_and2] = ACTIONS(976), + [anon_sym_xor2] = ACTIONS(976), + [anon_sym_or2] = ACTIONS(976), + [anon_sym_not_DASHin2] = ACTIONS(976), + [anon_sym_has2] = ACTIONS(976), + [anon_sym_not_DASHhas2] = ACTIONS(976), + [anon_sym_starts_DASHwith2] = ACTIONS(976), + [anon_sym_ends_DASHwith2] = ACTIONS(976), + [anon_sym_EQ_EQ2] = ACTIONS(976), + [anon_sym_BANG_EQ2] = ACTIONS(976), + [anon_sym_LT2] = ACTIONS(974), + [anon_sym_LT_EQ2] = ACTIONS(976), + [anon_sym_GT_EQ2] = ACTIONS(976), + [anon_sym_EQ_TILDE2] = ACTIONS(976), + [anon_sym_BANG_TILDE2] = ACTIONS(976), + [anon_sym_STAR_STAR2] = ACTIONS(976), + [anon_sym_PLUS_PLUS2] = ACTIONS(974), + [anon_sym_SLASH2] = ACTIONS(974), + [anon_sym_mod2] = ACTIONS(976), + [anon_sym_SLASH_SLASH2] = ACTIONS(976), + [anon_sym_PLUS2] = ACTIONS(974), + [anon_sym_bit_DASHshl2] = ACTIONS(976), + [anon_sym_bit_DASHshr2] = ACTIONS(976), + [anon_sym_bit_DASHand2] = ACTIONS(976), + [anon_sym_bit_DASHxor2] = ACTIONS(976), + [anon_sym_bit_DASHor2] = ACTIONS(976), + [anon_sym_DOT_DOT2] = ACTIONS(974), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(976), + [anon_sym_DOT_DOT_LT2] = ACTIONS(976), + [anon_sym_DOT2] = ACTIONS(974), + [anon_sym_err_GT] = ACTIONS(974), + [anon_sym_out_GT] = ACTIONS(974), + [anon_sym_e_GT] = ACTIONS(974), + [anon_sym_o_GT] = ACTIONS(974), + [anon_sym_err_PLUSout_GT] = ACTIONS(974), + [anon_sym_out_PLUSerr_GT] = ACTIONS(974), + [anon_sym_o_PLUSe_GT] = ACTIONS(974), + [anon_sym_e_PLUSo_GT] = ACTIONS(974), + [anon_sym_err_GT_GT] = ACTIONS(976), + [anon_sym_out_GT_GT] = ACTIONS(976), + [anon_sym_e_GT_GT] = ACTIONS(976), + [anon_sym_o_GT_GT] = ACTIONS(976), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(976), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(976), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(976), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(976), + [anon_sym_POUND] = ACTIONS(247), + }, + [1381] = { + [sym_comment] = STATE(1381), + [sym__newline] = ACTIONS(1514), + [anon_sym_SEMI] = ACTIONS(1514), + [anon_sym_PIPE] = ACTIONS(1514), + [anon_sym_err_GT_PIPE] = ACTIONS(1514), + [anon_sym_out_GT_PIPE] = ACTIONS(1514), + [anon_sym_e_GT_PIPE] = ACTIONS(1514), + [anon_sym_o_GT_PIPE] = ACTIONS(1514), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1514), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1514), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1514), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1514), + [anon_sym_LBRACK] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_RPAREN] = ACTIONS(1514), + [anon_sym_DOLLAR] = ACTIONS(1512), + [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_RBRACE] = ACTIONS(1514), + [anon_sym_DOT_DOT] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [anon_sym_null] = ACTIONS(1514), + [anon_sym_true] = ACTIONS(1514), + [anon_sym_false] = ACTIONS(1514), + [aux_sym__val_number_decimal_token1] = ACTIONS(1512), + [aux_sym__val_number_decimal_token2] = ACTIONS(1514), + [aux_sym__val_number_decimal_token3] = ACTIONS(1514), + [aux_sym__val_number_decimal_token4] = ACTIONS(1514), + [aux_sym__val_number_token1] = ACTIONS(1514), + [aux_sym__val_number_token2] = ACTIONS(1514), + [aux_sym__val_number_token3] = ACTIONS(1514), + [aux_sym__val_number_token4] = ACTIONS(1514), + [aux_sym__val_number_token5] = ACTIONS(1514), + [aux_sym__val_number_token6] = ACTIONS(1514), + [anon_sym_0b] = ACTIONS(1512), + [sym_filesize_unit] = ACTIONS(1514), + [sym_duration_unit] = ACTIONS(1514), + [anon_sym_0o] = ACTIONS(1512), + [anon_sym_0x] = ACTIONS(1512), + [sym_val_date] = ACTIONS(1514), + [anon_sym_DQUOTE] = ACTIONS(1514), + [sym__str_single_quotes] = ACTIONS(1514), + [sym__str_back_ticks] = ACTIONS(1514), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1514), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1514), + [anon_sym_err_GT] = ACTIONS(1512), + [anon_sym_out_GT] = ACTIONS(1512), + [anon_sym_e_GT] = ACTIONS(1512), + [anon_sym_o_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT] = ACTIONS(1512), + [anon_sym_err_GT_GT] = ACTIONS(1514), + [anon_sym_out_GT_GT] = ACTIONS(1514), + [anon_sym_e_GT_GT] = ACTIONS(1514), + [anon_sym_o_GT_GT] = ACTIONS(1514), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1514), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1514), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1514), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1514), + [aux_sym_unquoted_token1] = ACTIONS(1512), + [aux_sym_unquoted_token2] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1514), + }, + [1382] = { + [sym_comment] = STATE(1382), + [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_DASH2] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(1506), + [anon_sym_RBRACE] = ACTIONS(1506), + [anon_sym_DOT_DOT] = ACTIONS(1504), + [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), + [anon_sym_null] = ACTIONS(1506), + [anon_sym_true] = ACTIONS(1506), + [anon_sym_false] = ACTIONS(1506), + [aux_sym__val_number_decimal_token1] = ACTIONS(1504), + [aux_sym__val_number_decimal_token2] = ACTIONS(1506), + [aux_sym__val_number_decimal_token3] = ACTIONS(1506), + [aux_sym__val_number_decimal_token4] = ACTIONS(1506), + [aux_sym__val_number_token1] = ACTIONS(1506), + [aux_sym__val_number_token2] = ACTIONS(1506), + [aux_sym__val_number_token3] = ACTIONS(1506), + [aux_sym__val_number_token4] = ACTIONS(1506), + [aux_sym__val_number_token5] = ACTIONS(1506), + [aux_sym__val_number_token6] = 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_token2] = ACTIONS(1504), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1506), + }, + [1383] = { + [sym_cell_path] = STATE(1603), + [sym_path] = STATE(1596), + [sym_comment] = STATE(1383), + [aux_sym_cell_path_repeat1] = STATE(1414), + [ts_builtin_sym_end] = ACTIONS(931), + [sym__newline] = ACTIONS(931), + [anon_sym_SEMI] = ACTIONS(931), + [anon_sym_PIPE] = ACTIONS(931), + [anon_sym_err_GT_PIPE] = ACTIONS(931), + [anon_sym_out_GT_PIPE] = ACTIONS(931), + [anon_sym_e_GT_PIPE] = ACTIONS(931), + [anon_sym_o_GT_PIPE] = ACTIONS(931), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(931), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(931), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(931), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_DOLLAR] = ACTIONS(929), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_DASH2] = ACTIONS(929), + [anon_sym_LBRACE] = ACTIONS(931), + [anon_sym_DOT_DOT] = ACTIONS(929), + [anon_sym_DOT_DOT2] = ACTIONS(929), + [anon_sym_DOT_DOT_EQ] = ACTIONS(929), + [anon_sym_DOT_DOT_LT] = ACTIONS(929), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(931), + [anon_sym_DOT_DOT_LT2] = ACTIONS(931), + [anon_sym_null] = ACTIONS(931), + [anon_sym_true] = ACTIONS(931), + [anon_sym_false] = ACTIONS(931), + [aux_sym__val_number_decimal_token1] = ACTIONS(929), + [aux_sym__val_number_decimal_token2] = ACTIONS(931), + [aux_sym__val_number_decimal_token3] = ACTIONS(931), + [aux_sym__val_number_decimal_token4] = ACTIONS(931), + [aux_sym__val_number_token1] = ACTIONS(931), + [aux_sym__val_number_token2] = ACTIONS(931), + [aux_sym__val_number_token3] = ACTIONS(931), + [aux_sym__val_number_token4] = ACTIONS(931), + [aux_sym__val_number_token5] = ACTIONS(931), + [aux_sym__val_number_token6] = ACTIONS(931), + [anon_sym_0b] = ACTIONS(929), + [anon_sym_0o] = ACTIONS(929), + [anon_sym_0x] = ACTIONS(929), + [sym_val_date] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(931), + [sym__str_single_quotes] = ACTIONS(931), + [sym__str_back_ticks] = ACTIONS(931), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(931), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(931), + [anon_sym_DOT2] = ACTIONS(4606), + [anon_sym_err_GT] = ACTIONS(929), + [anon_sym_out_GT] = ACTIONS(929), + [anon_sym_e_GT] = ACTIONS(929), + [anon_sym_o_GT] = ACTIONS(929), + [anon_sym_err_PLUSout_GT] = ACTIONS(929), + [anon_sym_out_PLUSerr_GT] = ACTIONS(929), + [anon_sym_o_PLUSe_GT] = ACTIONS(929), + [anon_sym_e_PLUSo_GT] = ACTIONS(929), + [anon_sym_err_GT_GT] = ACTIONS(931), + [anon_sym_out_GT_GT] = ACTIONS(931), + [anon_sym_e_GT_GT] = ACTIONS(931), + [anon_sym_o_GT_GT] = ACTIONS(931), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(931), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(931), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(931), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(931), + [aux_sym_unquoted_token1] = ACTIONS(929), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(931), + }, + [1384] = { + [sym_comment] = STATE(1384), + [sym__newline] = ACTIONS(1620), + [anon_sym_SEMI] = ACTIONS(1620), + [anon_sym_PIPE] = ACTIONS(1620), + [anon_sym_err_GT_PIPE] = ACTIONS(1620), + [anon_sym_out_GT_PIPE] = ACTIONS(1620), + [anon_sym_e_GT_PIPE] = ACTIONS(1620), + [anon_sym_o_GT_PIPE] = ACTIONS(1620), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1620), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1620), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1620), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_LPAREN] = ACTIONS(1620), + [anon_sym_RPAREN] = ACTIONS(1620), + [anon_sym_DOLLAR] = ACTIONS(1618), + [anon_sym_DASH_DASH] = ACTIONS(1620), + [anon_sym_DASH2] = ACTIONS(1618), + [anon_sym_LBRACE] = ACTIONS(1620), + [anon_sym_RBRACE] = ACTIONS(1620), + [anon_sym_DOT_DOT] = ACTIONS(1618), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1618), + [anon_sym_DOT_DOT_LT] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [anon_sym_null] = ACTIONS(1620), + [anon_sym_true] = ACTIONS(1620), + [anon_sym_false] = ACTIONS(1620), + [aux_sym__val_number_decimal_token1] = ACTIONS(1618), + [aux_sym__val_number_decimal_token2] = ACTIONS(1620), + [aux_sym__val_number_decimal_token3] = ACTIONS(1620), + [aux_sym__val_number_decimal_token4] = ACTIONS(1620), + [aux_sym__val_number_token1] = ACTIONS(1620), + [aux_sym__val_number_token2] = ACTIONS(1620), + [aux_sym__val_number_token3] = ACTIONS(1620), + [aux_sym__val_number_token4] = ACTIONS(1620), + [aux_sym__val_number_token5] = ACTIONS(1620), + [aux_sym__val_number_token6] = ACTIONS(1620), + [anon_sym_0b] = ACTIONS(1618), + [sym_filesize_unit] = ACTIONS(1620), + [sym_duration_unit] = ACTIONS(1620), + [anon_sym_0o] = ACTIONS(1618), + [anon_sym_0x] = ACTIONS(1618), + [sym_val_date] = ACTIONS(1620), + [anon_sym_DQUOTE] = ACTIONS(1620), + [sym__str_single_quotes] = ACTIONS(1620), + [sym__str_back_ticks] = ACTIONS(1620), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1620), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1620), + [anon_sym_err_GT] = ACTIONS(1618), + [anon_sym_out_GT] = ACTIONS(1618), + [anon_sym_e_GT] = ACTIONS(1618), + [anon_sym_o_GT] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT] = ACTIONS(1618), + [anon_sym_err_GT_GT] = ACTIONS(1620), + [anon_sym_out_GT_GT] = ACTIONS(1620), + [anon_sym_e_GT_GT] = ACTIONS(1620), + [anon_sym_o_GT_GT] = ACTIONS(1620), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1620), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1620), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1620), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1620), + [aux_sym_unquoted_token1] = ACTIONS(1618), + [aux_sym_unquoted_token2] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1620), + }, + [1385] = { + [sym_comment] = STATE(1385), + [sym__newline] = ACTIONS(1691), + [anon_sym_SEMI] = ACTIONS(1691), + [anon_sym_PIPE] = ACTIONS(1691), + [anon_sym_err_GT_PIPE] = ACTIONS(1691), + [anon_sym_out_GT_PIPE] = ACTIONS(1691), + [anon_sym_e_GT_PIPE] = ACTIONS(1691), + [anon_sym_o_GT_PIPE] = ACTIONS(1691), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1691), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1691), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1691), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1691), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1691), + [anon_sym_RPAREN] = ACTIONS(1691), + [anon_sym_DOLLAR] = ACTIONS(1689), + [anon_sym_DASH_DASH] = ACTIONS(1691), + [anon_sym_DASH2] = ACTIONS(1689), + [anon_sym_LBRACE] = ACTIONS(1691), + [anon_sym_RBRACE] = ACTIONS(1691), + [anon_sym_DOT_DOT] = ACTIONS(1689), + [anon_sym_DOT_DOT2] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1689), + [anon_sym_DOT_DOT_LT] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1691), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1691), + [anon_sym_null] = ACTIONS(1691), + [anon_sym_true] = ACTIONS(1691), + [anon_sym_false] = ACTIONS(1691), + [aux_sym__val_number_decimal_token1] = ACTIONS(1689), + [aux_sym__val_number_decimal_token2] = ACTIONS(1691), + [aux_sym__val_number_decimal_token3] = ACTIONS(1691), + [aux_sym__val_number_decimal_token4] = ACTIONS(1691), + [aux_sym__val_number_token1] = ACTIONS(1691), + [aux_sym__val_number_token2] = ACTIONS(1691), + [aux_sym__val_number_token3] = ACTIONS(1691), + [aux_sym__val_number_token4] = ACTIONS(1691), + [aux_sym__val_number_token5] = ACTIONS(1691), + [aux_sym__val_number_token6] = ACTIONS(1691), + [anon_sym_0b] = ACTIONS(1689), + [sym_filesize_unit] = ACTIONS(1691), + [sym_duration_unit] = ACTIONS(1691), + [anon_sym_0o] = ACTIONS(1689), + [anon_sym_0x] = ACTIONS(1689), + [sym_val_date] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1691), + [sym__str_single_quotes] = ACTIONS(1691), + [sym__str_back_ticks] = ACTIONS(1691), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1691), + [anon_sym_err_GT] = ACTIONS(1689), + [anon_sym_out_GT] = ACTIONS(1689), + [anon_sym_e_GT] = ACTIONS(1689), + [anon_sym_o_GT] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT] = ACTIONS(1689), + [anon_sym_err_GT_GT] = ACTIONS(1691), + [anon_sym_out_GT_GT] = ACTIONS(1691), + [anon_sym_e_GT_GT] = ACTIONS(1691), + [anon_sym_o_GT_GT] = ACTIONS(1691), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1691), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1691), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1691), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1691), + [aux_sym_unquoted_token1] = ACTIONS(1689), + [aux_sym_unquoted_token2] = ACTIONS(1689), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1691), + }, + [1386] = { + [sym__expr_parenthesized_immediate] = STATE(2088), + [sym__immediate_decimal] = STATE(2089), + [sym_val_variable] = STATE(2088), + [sym_comment] = STATE(1386), + [ts_builtin_sym_end] = ACTIONS(1532), + [sym__newline] = ACTIONS(1532), + [anon_sym_SEMI] = ACTIONS(1532), + [anon_sym_PIPE] = ACTIONS(1532), + [anon_sym_err_GT_PIPE] = ACTIONS(1532), + [anon_sym_out_GT_PIPE] = ACTIONS(1532), + [anon_sym_e_GT_PIPE] = ACTIONS(1532), + [anon_sym_o_GT_PIPE] = ACTIONS(1532), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1532), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1532), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1532), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1532), + [anon_sym_DOLLAR] = ACTIONS(4484), + [anon_sym_GT2] = ACTIONS(1522), + [anon_sym_DASH2] = ACTIONS(1522), + [anon_sym_in2] = ACTIONS(1532), + [anon_sym_STAR2] = ACTIONS(1522), + [anon_sym_and2] = ACTIONS(1532), + [anon_sym_xor2] = ACTIONS(1532), + [anon_sym_or2] = ACTIONS(1532), + [anon_sym_not_DASHin2] = ACTIONS(1532), + [anon_sym_has2] = ACTIONS(1532), + [anon_sym_not_DASHhas2] = ACTIONS(1532), + [anon_sym_starts_DASHwith2] = ACTIONS(1532), + [anon_sym_ends_DASHwith2] = ACTIONS(1532), + [anon_sym_EQ_EQ2] = ACTIONS(1532), + [anon_sym_BANG_EQ2] = ACTIONS(1532), + [anon_sym_LT2] = ACTIONS(1522), + [anon_sym_LT_EQ2] = ACTIONS(1532), + [anon_sym_GT_EQ2] = ACTIONS(1532), + [anon_sym_EQ_TILDE2] = ACTIONS(1532), + [anon_sym_BANG_TILDE2] = ACTIONS(1532), + [anon_sym_LPAREN2] = ACTIONS(4486), + [anon_sym_STAR_STAR2] = ACTIONS(1532), + [anon_sym_PLUS_PLUS2] = ACTIONS(1532), + [anon_sym_SLASH2] = ACTIONS(1522), + [anon_sym_mod2] = ACTIONS(1532), + [anon_sym_SLASH_SLASH2] = ACTIONS(1532), + [anon_sym_PLUS2] = ACTIONS(1522), + [anon_sym_bit_DASHshl2] = ACTIONS(1532), + [anon_sym_bit_DASHshr2] = ACTIONS(1532), + [anon_sym_bit_DASHand2] = ACTIONS(1532), + [anon_sym_bit_DASHxor2] = ACTIONS(1532), + [anon_sym_bit_DASHor2] = ACTIONS(1532), + [anon_sym_DOT] = ACTIONS(4618), + [aux_sym__immediate_decimal_token1] = ACTIONS(4490), + [aux_sym__immediate_decimal_token3] = ACTIONS(4490), + [aux_sym__immediate_decimal_token4] = ACTIONS(4492), + [aux_sym__immediate_decimal_token5] = ACTIONS(4494), + [anon_sym_err_GT] = ACTIONS(1522), + [anon_sym_out_GT] = ACTIONS(1522), + [anon_sym_e_GT] = ACTIONS(1522), + [anon_sym_o_GT] = ACTIONS(1522), + [anon_sym_err_PLUSout_GT] = ACTIONS(1522), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1522), + [anon_sym_o_PLUSe_GT] = ACTIONS(1522), + [anon_sym_e_PLUSo_GT] = ACTIONS(1522), + [anon_sym_err_GT_GT] = ACTIONS(1532), + [anon_sym_out_GT_GT] = ACTIONS(1532), + [anon_sym_e_GT_GT] = ACTIONS(1532), + [anon_sym_o_GT_GT] = ACTIONS(1532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1532), + [anon_sym_POUND] = ACTIONS(247), + }, + [1387] = { + [sym_comment] = STATE(1387), + [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_GT2] = ACTIONS(1504), + [anon_sym_DASH2] = ACTIONS(1506), + [anon_sym_in2] = ACTIONS(1506), + [anon_sym_RBRACE] = ACTIONS(1506), + [anon_sym_STAR2] = ACTIONS(1504), + [anon_sym_and2] = ACTIONS(1506), + [anon_sym_xor2] = ACTIONS(1506), + [anon_sym_or2] = ACTIONS(1506), + [anon_sym_not_DASHin2] = ACTIONS(1506), + [anon_sym_has2] = ACTIONS(1506), + [anon_sym_not_DASHhas2] = ACTIONS(1506), + [anon_sym_starts_DASHwith2] = ACTIONS(1506), + [anon_sym_ends_DASHwith2] = ACTIONS(1506), + [anon_sym_EQ_EQ2] = ACTIONS(1506), + [anon_sym_BANG_EQ2] = ACTIONS(1506), + [anon_sym_LT2] = ACTIONS(1504), + [anon_sym_LT_EQ2] = ACTIONS(1506), + [anon_sym_GT_EQ2] = ACTIONS(1506), + [anon_sym_EQ_TILDE2] = ACTIONS(1506), + [anon_sym_BANG_TILDE2] = ACTIONS(1506), + [anon_sym_LPAREN2] = ACTIONS(1506), + [anon_sym_STAR_STAR2] = ACTIONS(1506), + [anon_sym_PLUS_PLUS2] = ACTIONS(1506), + [anon_sym_SLASH2] = ACTIONS(1504), + [anon_sym_mod2] = ACTIONS(1506), + [anon_sym_SLASH_SLASH2] = ACTIONS(1506), + [anon_sym_PLUS2] = ACTIONS(1504), + [anon_sym_bit_DASHshl2] = ACTIONS(1506), + [anon_sym_bit_DASHshr2] = ACTIONS(1506), + [anon_sym_bit_DASHand2] = ACTIONS(1506), + [anon_sym_bit_DASHxor2] = ACTIONS(1506), + [anon_sym_bit_DASHor2] = ACTIONS(1506), + [anon_sym_DOT_DOT2] = ACTIONS(1504), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1506), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1506), + [aux_sym__immediate_decimal_token1] = ACTIONS(4620), + [aux_sym__immediate_decimal_token2] = ACTIONS(4622), + [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_token2] = ACTIONS(1504), + [anon_sym_POUND] = ACTIONS(247), + }, + [1388] = { + [sym_comment] = STATE(1388), + [sym__newline] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(970), + [anon_sym_PIPE] = ACTIONS(970), + [anon_sym_err_GT_PIPE] = ACTIONS(970), + [anon_sym_out_GT_PIPE] = ACTIONS(970), + [anon_sym_e_GT_PIPE] = ACTIONS(970), + [anon_sym_o_GT_PIPE] = ACTIONS(970), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(970), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(970), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(970), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(970), + [anon_sym_RPAREN] = ACTIONS(970), + [anon_sym_GT2] = ACTIONS(968), + [anon_sym_DASH2] = ACTIONS(970), + [anon_sym_in2] = ACTIONS(970), + [anon_sym_if] = ACTIONS(970), + [anon_sym_LBRACE] = ACTIONS(970), + [anon_sym_RBRACE] = ACTIONS(970), + [anon_sym_EQ_GT] = ACTIONS(970), + [anon_sym_STAR2] = ACTIONS(968), + [anon_sym_QMARK2] = ACTIONS(4624), + [anon_sym_and2] = ACTIONS(970), + [anon_sym_xor2] = ACTIONS(970), + [anon_sym_or2] = ACTIONS(970), + [anon_sym_not_DASHin2] = ACTIONS(970), + [anon_sym_has2] = ACTIONS(970), + [anon_sym_not_DASHhas2] = ACTIONS(970), + [anon_sym_starts_DASHwith2] = ACTIONS(970), + [anon_sym_ends_DASHwith2] = ACTIONS(970), + [anon_sym_EQ_EQ2] = ACTIONS(970), + [anon_sym_BANG_EQ2] = ACTIONS(970), + [anon_sym_LT2] = ACTIONS(968), + [anon_sym_LT_EQ2] = ACTIONS(970), + [anon_sym_GT_EQ2] = ACTIONS(970), + [anon_sym_EQ_TILDE2] = ACTIONS(970), + [anon_sym_BANG_TILDE2] = ACTIONS(970), + [anon_sym_STAR_STAR2] = ACTIONS(970), + [anon_sym_PLUS_PLUS2] = ACTIONS(970), + [anon_sym_SLASH2] = ACTIONS(968), + [anon_sym_mod2] = ACTIONS(970), + [anon_sym_SLASH_SLASH2] = ACTIONS(970), + [anon_sym_PLUS2] = ACTIONS(968), + [anon_sym_bit_DASHshl2] = ACTIONS(970), + [anon_sym_bit_DASHshr2] = ACTIONS(970), + [anon_sym_bit_DASHand2] = ACTIONS(970), + [anon_sym_bit_DASHxor2] = ACTIONS(970), + [anon_sym_bit_DASHor2] = ACTIONS(970), + [anon_sym_DOT_DOT2] = ACTIONS(968), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(970), + [anon_sym_DOT_DOT_LT2] = ACTIONS(970), + [anon_sym_COLON2] = ACTIONS(970), + [anon_sym_DOT2] = ACTIONS(968), + [anon_sym_err_GT] = ACTIONS(968), + [anon_sym_out_GT] = ACTIONS(968), + [anon_sym_e_GT] = ACTIONS(968), + [anon_sym_o_GT] = ACTIONS(968), + [anon_sym_err_PLUSout_GT] = ACTIONS(968), + [anon_sym_out_PLUSerr_GT] = ACTIONS(968), + [anon_sym_o_PLUSe_GT] = ACTIONS(968), + [anon_sym_e_PLUSo_GT] = ACTIONS(968), + [anon_sym_err_GT_GT] = ACTIONS(970), + [anon_sym_out_GT_GT] = ACTIONS(970), + [anon_sym_e_GT_GT] = ACTIONS(970), + [anon_sym_o_GT_GT] = ACTIONS(970), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(970), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(970), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(970), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(970), + [anon_sym_POUND] = ACTIONS(247), + }, + [1389] = { + [sym__expr_parenthesized_immediate] = STATE(2500), + [sym__immediate_decimal] = STATE(2198), + [sym_val_variable] = STATE(2500), + [sym_comment] = STATE(1389), + [ts_builtin_sym_end] = 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_DOLLAR] = ACTIONS(4484), + [anon_sym_GT2] = ACTIONS(1441), + [anon_sym_DASH2] = ACTIONS(1441), + [anon_sym_in2] = ACTIONS(1455), + [anon_sym_STAR2] = ACTIONS(1441), + [anon_sym_and2] = ACTIONS(1455), + [anon_sym_xor2] = ACTIONS(1455), + [anon_sym_or2] = ACTIONS(1455), + [anon_sym_not_DASHin2] = ACTIONS(1455), + [anon_sym_has2] = ACTIONS(1455), + [anon_sym_not_DASHhas2] = ACTIONS(1455), + [anon_sym_starts_DASHwith2] = ACTIONS(1455), + [anon_sym_ends_DASHwith2] = ACTIONS(1455), + [anon_sym_EQ_EQ2] = ACTIONS(1455), + [anon_sym_BANG_EQ2] = ACTIONS(1455), + [anon_sym_LT2] = ACTIONS(1441), + [anon_sym_LT_EQ2] = ACTIONS(1455), + [anon_sym_GT_EQ2] = ACTIONS(1455), + [anon_sym_EQ_TILDE2] = ACTIONS(1455), + [anon_sym_BANG_TILDE2] = ACTIONS(1455), + [anon_sym_LPAREN2] = ACTIONS(4486), + [anon_sym_STAR_STAR2] = ACTIONS(1455), + [anon_sym_PLUS_PLUS2] = ACTIONS(1455), + [anon_sym_SLASH2] = ACTIONS(1441), + [anon_sym_mod2] = ACTIONS(1455), + [anon_sym_SLASH_SLASH2] = ACTIONS(1455), + [anon_sym_PLUS2] = ACTIONS(1441), + [anon_sym_bit_DASHshl2] = ACTIONS(1455), + [anon_sym_bit_DASHshr2] = ACTIONS(1455), + [anon_sym_bit_DASHand2] = ACTIONS(1455), + [anon_sym_bit_DASHxor2] = ACTIONS(1455), + [anon_sym_bit_DASHor2] = ACTIONS(1455), + [aux_sym__immediate_decimal_token1] = ACTIONS(4626), + [aux_sym__immediate_decimal_token3] = ACTIONS(4626), + [aux_sym__immediate_decimal_token4] = ACTIONS(4628), + [aux_sym__immediate_decimal_token5] = ACTIONS(4630), + [anon_sym_err_GT] = ACTIONS(1441), + [anon_sym_out_GT] = ACTIONS(1441), + [anon_sym_e_GT] = ACTIONS(1441), + [anon_sym_o_GT] = ACTIONS(1441), + [anon_sym_err_PLUSout_GT] = ACTIONS(1441), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1441), + [anon_sym_o_PLUSe_GT] = ACTIONS(1441), + [anon_sym_e_PLUSo_GT] = ACTIONS(1441), + [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_token2] = ACTIONS(1457), + [anon_sym_POUND] = ACTIONS(247), + }, + [1390] = { + [sym__expr_parenthesized_immediate] = STATE(2513), + [sym__immediate_decimal] = STATE(2139), + [sym_val_variable] = STATE(2513), + [sym_comment] = STATE(1390), + [ts_builtin_sym_end] = ACTIONS(1560), + [sym__newline] = ACTIONS(1560), + [anon_sym_SEMI] = ACTIONS(1560), + [anon_sym_PIPE] = ACTIONS(1560), + [anon_sym_err_GT_PIPE] = ACTIONS(1560), + [anon_sym_out_GT_PIPE] = ACTIONS(1560), + [anon_sym_e_GT_PIPE] = ACTIONS(1560), + [anon_sym_o_GT_PIPE] = ACTIONS(1560), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1560), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1560), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1560), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1560), + [anon_sym_DOLLAR] = ACTIONS(4484), + [anon_sym_GT2] = ACTIONS(1558), + [anon_sym_DASH2] = ACTIONS(1558), + [anon_sym_in2] = ACTIONS(1560), + [anon_sym_STAR2] = ACTIONS(1558), + [anon_sym_and2] = ACTIONS(1560), + [anon_sym_xor2] = ACTIONS(1560), + [anon_sym_or2] = ACTIONS(1560), + [anon_sym_not_DASHin2] = ACTIONS(1560), + [anon_sym_has2] = ACTIONS(1560), + [anon_sym_not_DASHhas2] = ACTIONS(1560), + [anon_sym_starts_DASHwith2] = ACTIONS(1560), + [anon_sym_ends_DASHwith2] = ACTIONS(1560), + [anon_sym_EQ_EQ2] = ACTIONS(1560), + [anon_sym_BANG_EQ2] = ACTIONS(1560), + [anon_sym_LT2] = ACTIONS(1558), + [anon_sym_LT_EQ2] = ACTIONS(1560), + [anon_sym_GT_EQ2] = ACTIONS(1560), + [anon_sym_EQ_TILDE2] = ACTIONS(1560), + [anon_sym_BANG_TILDE2] = ACTIONS(1560), + [anon_sym_LPAREN2] = ACTIONS(4486), + [anon_sym_STAR_STAR2] = ACTIONS(1560), + [anon_sym_PLUS_PLUS2] = ACTIONS(1560), + [anon_sym_SLASH2] = ACTIONS(1558), + [anon_sym_mod2] = ACTIONS(1560), + [anon_sym_SLASH_SLASH2] = ACTIONS(1560), + [anon_sym_PLUS2] = ACTIONS(1558), + [anon_sym_bit_DASHshl2] = ACTIONS(1560), + [anon_sym_bit_DASHshr2] = ACTIONS(1560), + [anon_sym_bit_DASHand2] = ACTIONS(1560), + [anon_sym_bit_DASHxor2] = ACTIONS(1560), + [anon_sym_bit_DASHor2] = ACTIONS(1560), + [aux_sym__immediate_decimal_token1] = ACTIONS(4626), + [aux_sym__immediate_decimal_token3] = ACTIONS(4626), + [aux_sym__immediate_decimal_token4] = ACTIONS(4628), + [aux_sym__immediate_decimal_token5] = ACTIONS(4630), + [anon_sym_err_GT] = ACTIONS(1558), + [anon_sym_out_GT] = ACTIONS(1558), + [anon_sym_e_GT] = ACTIONS(1558), + [anon_sym_o_GT] = ACTIONS(1558), + [anon_sym_err_PLUSout_GT] = ACTIONS(1558), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1558), + [anon_sym_o_PLUSe_GT] = ACTIONS(1558), + [anon_sym_e_PLUSo_GT] = ACTIONS(1558), + [anon_sym_err_GT_GT] = ACTIONS(1560), + [anon_sym_out_GT_GT] = ACTIONS(1560), + [anon_sym_e_GT_GT] = ACTIONS(1560), + [anon_sym_o_GT_GT] = ACTIONS(1560), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1560), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1560), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1560), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1560), + [aux_sym_unquoted_token2] = ACTIONS(1562), + [anon_sym_POUND] = ACTIONS(247), + }, + [1391] = { + [sym_comment] = STATE(1391), + [ts_builtin_sym_end] = ACTIONS(984), + [anon_sym_EQ] = ACTIONS(982), + [anon_sym_PLUS_EQ] = ACTIONS(984), + [anon_sym_DASH_EQ] = ACTIONS(984), + [anon_sym_STAR_EQ] = ACTIONS(984), + [anon_sym_SLASH_EQ] = ACTIONS(984), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(984), + [sym__newline] = ACTIONS(984), + [anon_sym_SEMI] = ACTIONS(984), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_err_GT_PIPE] = ACTIONS(984), + [anon_sym_out_GT_PIPE] = ACTIONS(984), + [anon_sym_e_GT_PIPE] = ACTIONS(984), + [anon_sym_o_GT_PIPE] = ACTIONS(984), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(984), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(984), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(984), + [anon_sym_GT2] = ACTIONS(982), + [anon_sym_DASH2] = ACTIONS(982), + [anon_sym_in2] = ACTIONS(984), + [anon_sym_STAR2] = ACTIONS(982), + [anon_sym_and2] = ACTIONS(984), + [anon_sym_xor2] = ACTIONS(984), + [anon_sym_or2] = ACTIONS(984), + [anon_sym_not_DASHin2] = ACTIONS(984), + [anon_sym_has2] = ACTIONS(984), + [anon_sym_not_DASHhas2] = ACTIONS(984), + [anon_sym_starts_DASHwith2] = ACTIONS(984), + [anon_sym_ends_DASHwith2] = ACTIONS(984), + [anon_sym_EQ_EQ2] = ACTIONS(984), + [anon_sym_BANG_EQ2] = ACTIONS(984), + [anon_sym_LT2] = ACTIONS(982), + [anon_sym_LT_EQ2] = ACTIONS(984), + [anon_sym_GT_EQ2] = ACTIONS(984), + [anon_sym_EQ_TILDE2] = ACTIONS(984), + [anon_sym_BANG_TILDE2] = ACTIONS(984), + [anon_sym_STAR_STAR2] = ACTIONS(984), + [anon_sym_PLUS_PLUS2] = ACTIONS(982), + [anon_sym_SLASH2] = ACTIONS(982), + [anon_sym_mod2] = ACTIONS(984), + [anon_sym_SLASH_SLASH2] = ACTIONS(984), + [anon_sym_PLUS2] = ACTIONS(982), + [anon_sym_bit_DASHshl2] = ACTIONS(984), + [anon_sym_bit_DASHshr2] = ACTIONS(984), + [anon_sym_bit_DASHand2] = ACTIONS(984), + [anon_sym_bit_DASHxor2] = ACTIONS(984), + [anon_sym_bit_DASHor2] = ACTIONS(984), + [anon_sym_DOT_DOT2] = ACTIONS(982), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(984), + [anon_sym_DOT_DOT_LT2] = ACTIONS(984), + [anon_sym_DOT2] = ACTIONS(982), + [anon_sym_err_GT] = ACTIONS(982), + [anon_sym_out_GT] = ACTIONS(982), + [anon_sym_e_GT] = ACTIONS(982), + [anon_sym_o_GT] = ACTIONS(982), + [anon_sym_err_PLUSout_GT] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT] = ACTIONS(982), + [anon_sym_o_PLUSe_GT] = ACTIONS(982), + [anon_sym_e_PLUSo_GT] = ACTIONS(982), + [anon_sym_err_GT_GT] = ACTIONS(984), + [anon_sym_out_GT_GT] = ACTIONS(984), + [anon_sym_e_GT_GT] = ACTIONS(984), + [anon_sym_o_GT_GT] = ACTIONS(984), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(984), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(984), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(984), + [anon_sym_POUND] = ACTIONS(247), + }, + [1392] = { + [sym_comment] = STATE(1392), + [sym__newline] = ACTIONS(958), + [anon_sym_SEMI] = ACTIONS(958), + [anon_sym_PIPE] = ACTIONS(958), + [anon_sym_err_GT_PIPE] = ACTIONS(958), + [anon_sym_out_GT_PIPE] = ACTIONS(958), + [anon_sym_e_GT_PIPE] = ACTIONS(958), + [anon_sym_o_GT_PIPE] = ACTIONS(958), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(958), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(958), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(958), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(958), + [anon_sym_RPAREN] = ACTIONS(958), + [anon_sym_GT2] = ACTIONS(956), + [anon_sym_DASH2] = ACTIONS(958), + [anon_sym_in2] = ACTIONS(958), + [anon_sym_if] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(958), + [anon_sym_EQ_GT] = ACTIONS(958), + [anon_sym_STAR2] = ACTIONS(956), + [anon_sym_QMARK2] = ACTIONS(958), + [anon_sym_and2] = ACTIONS(958), + [anon_sym_xor2] = ACTIONS(958), + [anon_sym_or2] = ACTIONS(958), + [anon_sym_not_DASHin2] = ACTIONS(958), + [anon_sym_has2] = ACTIONS(958), + [anon_sym_not_DASHhas2] = ACTIONS(958), + [anon_sym_starts_DASHwith2] = ACTIONS(958), + [anon_sym_ends_DASHwith2] = ACTIONS(958), + [anon_sym_EQ_EQ2] = ACTIONS(958), + [anon_sym_BANG_EQ2] = ACTIONS(958), + [anon_sym_LT2] = ACTIONS(956), + [anon_sym_LT_EQ2] = ACTIONS(958), + [anon_sym_GT_EQ2] = ACTIONS(958), + [anon_sym_EQ_TILDE2] = ACTIONS(958), + [anon_sym_BANG_TILDE2] = ACTIONS(958), + [anon_sym_STAR_STAR2] = ACTIONS(958), + [anon_sym_PLUS_PLUS2] = ACTIONS(958), + [anon_sym_SLASH2] = ACTIONS(956), + [anon_sym_mod2] = ACTIONS(958), + [anon_sym_SLASH_SLASH2] = ACTIONS(958), + [anon_sym_PLUS2] = ACTIONS(956), + [anon_sym_bit_DASHshl2] = ACTIONS(958), + [anon_sym_bit_DASHshr2] = ACTIONS(958), + [anon_sym_bit_DASHand2] = ACTIONS(958), + [anon_sym_bit_DASHxor2] = ACTIONS(958), + [anon_sym_bit_DASHor2] = ACTIONS(958), + [anon_sym_DOT_DOT2] = ACTIONS(956), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(958), + [anon_sym_DOT_DOT_LT2] = ACTIONS(958), + [anon_sym_COLON2] = ACTIONS(958), + [anon_sym_DOT2] = ACTIONS(956), + [anon_sym_err_GT] = ACTIONS(956), + [anon_sym_out_GT] = ACTIONS(956), + [anon_sym_e_GT] = ACTIONS(956), + [anon_sym_o_GT] = ACTIONS(956), + [anon_sym_err_PLUSout_GT] = ACTIONS(956), + [anon_sym_out_PLUSerr_GT] = ACTIONS(956), + [anon_sym_o_PLUSe_GT] = ACTIONS(956), + [anon_sym_e_PLUSo_GT] = ACTIONS(956), + [anon_sym_err_GT_GT] = ACTIONS(958), + [anon_sym_out_GT_GT] = ACTIONS(958), + [anon_sym_e_GT_GT] = ACTIONS(958), + [anon_sym_o_GT_GT] = ACTIONS(958), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(958), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(958), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(958), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(958), + [anon_sym_POUND] = ACTIONS(247), + }, + [1393] = { + [sym_comment] = STATE(1393), [sym__newline] = ACTIONS(962), [anon_sym_SEMI] = ACTIONS(962), [anon_sym_PIPE] = ACTIONS(962), @@ -214604,15 +216091,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(962), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(962), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(962), + [anon_sym_RPAREN] = ACTIONS(962), [anon_sym_GT2] = ACTIONS(960), - [anon_sym_DASH2] = ACTIONS(960), + [anon_sym_DASH2] = ACTIONS(962), [anon_sym_in2] = ACTIONS(962), + [anon_sym_if] = ACTIONS(962), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_RBRACE] = ACTIONS(962), + [anon_sym_EQ_GT] = ACTIONS(962), [anon_sym_STAR2] = ACTIONS(960), - [anon_sym_QMARK2] = ACTIONS(4646), + [anon_sym_QMARK2] = ACTIONS(962), [anon_sym_and2] = ACTIONS(962), [anon_sym_xor2] = ACTIONS(962), [anon_sym_or2] = ACTIONS(962), [anon_sym_not_DASHin2] = ACTIONS(962), + [anon_sym_has2] = ACTIONS(962), + [anon_sym_not_DASHhas2] = ACTIONS(962), [anon_sym_starts_DASHwith2] = ACTIONS(962), [anon_sym_ends_DASHwith2] = ACTIONS(962), [anon_sym_EQ_EQ2] = ACTIONS(962), @@ -214623,7 +216117,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE2] = ACTIONS(962), [anon_sym_BANG_TILDE2] = ACTIONS(962), [anon_sym_STAR_STAR2] = ACTIONS(962), - [anon_sym_PLUS_PLUS2] = ACTIONS(960), + [anon_sym_PLUS_PLUS2] = ACTIONS(962), [anon_sym_SLASH2] = ACTIONS(960), [anon_sym_mod2] = ACTIONS(962), [anon_sym_SLASH_SLASH2] = ACTIONS(962), @@ -214636,6 +216130,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(960), [anon_sym_DOT_DOT_EQ2] = ACTIONS(962), [anon_sym_DOT_DOT_LT2] = ACTIONS(962), + [anon_sym_COLON2] = ACTIONS(962), [anon_sym_DOT2] = ACTIONS(960), [anon_sym_err_GT] = ACTIONS(960), [anon_sym_out_GT] = ACTIONS(960), @@ -214653,2282 +216148,1373 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(962), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(962), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(962), - [anon_sym_POUND] = ACTIONS(251), - }, - [1380] = { - [sym_comment] = STATE(1380), - [ts_builtin_sym_end] = ACTIONS(1544), - [sym__newline] = ACTIONS(1544), - [anon_sym_SEMI] = ACTIONS(1544), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_err_GT_PIPE] = ACTIONS(1544), - [anon_sym_out_GT_PIPE] = ACTIONS(1544), - [anon_sym_e_GT_PIPE] = ACTIONS(1544), - [anon_sym_o_GT_PIPE] = ACTIONS(1544), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1544), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1544), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1544), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1544), - [anon_sym_LPAREN] = ACTIONS(1544), - [anon_sym_DOLLAR] = ACTIONS(1542), - [anon_sym_DASH_DASH] = ACTIONS(1544), - [anon_sym_DASH2] = ACTIONS(1542), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_DOT_DOT] = ACTIONS(1542), - [anon_sym_DOT_DOT2] = ACTIONS(1542), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1542), - [anon_sym_DOT_DOT_LT] = ACTIONS(1542), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1544), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1544), - [anon_sym_null] = ACTIONS(1544), - [anon_sym_true] = ACTIONS(1544), - [anon_sym_false] = ACTIONS(1544), - [aux_sym__val_number_decimal_token1] = ACTIONS(1542), - [aux_sym__val_number_decimal_token2] = ACTIONS(1544), - [aux_sym__val_number_decimal_token3] = ACTIONS(1544), - [aux_sym__val_number_decimal_token4] = ACTIONS(1544), - [aux_sym__val_number_token1] = ACTIONS(1544), - [aux_sym__val_number_token2] = ACTIONS(1544), - [aux_sym__val_number_token3] = ACTIONS(1544), - [aux_sym__val_number_token4] = ACTIONS(1544), - [aux_sym__val_number_token5] = ACTIONS(1544), - [aux_sym__val_number_token6] = ACTIONS(1544), - [anon_sym_0b] = ACTIONS(1542), - [sym_filesize_unit] = ACTIONS(1544), - [sym_duration_unit] = ACTIONS(1544), - [anon_sym_0o] = ACTIONS(1542), - [anon_sym_0x] = ACTIONS(1542), - [sym_val_date] = ACTIONS(1544), - [anon_sym_DQUOTE] = ACTIONS(1544), - [sym__str_single_quotes] = ACTIONS(1544), - [sym__str_back_ticks] = ACTIONS(1544), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1544), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1544), - [anon_sym_err_GT] = ACTIONS(1542), - [anon_sym_out_GT] = ACTIONS(1542), - [anon_sym_e_GT] = ACTIONS(1542), - [anon_sym_o_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT] = ACTIONS(1542), - [anon_sym_err_GT_GT] = ACTIONS(1544), - [anon_sym_out_GT_GT] = ACTIONS(1544), - [anon_sym_e_GT_GT] = ACTIONS(1544), - [anon_sym_o_GT_GT] = ACTIONS(1544), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1544), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1544), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1544), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1544), - [aux_sym_unquoted_token1] = ACTIONS(1542), - [aux_sym_unquoted_token2] = ACTIONS(1542), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1544), - }, - [1381] = { - [sym_comment] = STATE(1381), - [ts_builtin_sym_end] = ACTIONS(1682), - [sym__newline] = ACTIONS(1682), - [anon_sym_SEMI] = ACTIONS(1682), - [anon_sym_PIPE] = ACTIONS(1682), - [anon_sym_err_GT_PIPE] = ACTIONS(1682), - [anon_sym_out_GT_PIPE] = ACTIONS(1682), - [anon_sym_e_GT_PIPE] = ACTIONS(1682), - [anon_sym_o_GT_PIPE] = ACTIONS(1682), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1682), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1682), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1682), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1682), - [anon_sym_LBRACK] = ACTIONS(1682), - [anon_sym_LPAREN] = ACTIONS(1682), - [anon_sym_DOLLAR] = ACTIONS(1680), - [anon_sym_DASH_DASH] = ACTIONS(1682), - [anon_sym_DASH2] = ACTIONS(1680), - [anon_sym_LBRACE] = ACTIONS(1682), - [anon_sym_DOT_DOT] = ACTIONS(1680), - [anon_sym_DOT_DOT2] = ACTIONS(1680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1680), - [anon_sym_DOT_DOT_LT] = ACTIONS(1680), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1682), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1682), - [anon_sym_null] = ACTIONS(1682), - [anon_sym_true] = ACTIONS(1682), - [anon_sym_false] = ACTIONS(1682), - [aux_sym__val_number_decimal_token1] = ACTIONS(1680), - [aux_sym__val_number_decimal_token2] = ACTIONS(1682), - [aux_sym__val_number_decimal_token3] = ACTIONS(1682), - [aux_sym__val_number_decimal_token4] = ACTIONS(1682), - [aux_sym__val_number_token1] = ACTIONS(1682), - [aux_sym__val_number_token2] = ACTIONS(1682), - [aux_sym__val_number_token3] = ACTIONS(1682), - [aux_sym__val_number_token4] = ACTIONS(1682), - [aux_sym__val_number_token5] = ACTIONS(1682), - [aux_sym__val_number_token6] = ACTIONS(1682), - [anon_sym_0b] = ACTIONS(1680), - [sym_filesize_unit] = ACTIONS(1682), - [sym_duration_unit] = ACTIONS(1682), - [anon_sym_0o] = ACTIONS(1680), - [anon_sym_0x] = ACTIONS(1680), - [sym_val_date] = ACTIONS(1682), - [anon_sym_DQUOTE] = ACTIONS(1682), - [sym__str_single_quotes] = ACTIONS(1682), - [sym__str_back_ticks] = ACTIONS(1682), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1682), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1682), - [anon_sym_err_GT] = ACTIONS(1680), - [anon_sym_out_GT] = ACTIONS(1680), - [anon_sym_e_GT] = ACTIONS(1680), - [anon_sym_o_GT] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT] = ACTIONS(1680), - [anon_sym_err_GT_GT] = ACTIONS(1682), - [anon_sym_out_GT_GT] = ACTIONS(1682), - [anon_sym_e_GT_GT] = ACTIONS(1682), - [anon_sym_o_GT_GT] = ACTIONS(1682), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1682), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1682), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1682), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1682), - [aux_sym_unquoted_token1] = ACTIONS(1680), - [aux_sym_unquoted_token2] = ACTIONS(1680), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1682), - }, - [1382] = { - [sym_comment] = STATE(1382), - [sym__newline] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_PIPE] = ACTIONS(986), - [anon_sym_err_GT_PIPE] = ACTIONS(986), - [anon_sym_out_GT_PIPE] = ACTIONS(986), - [anon_sym_e_GT_PIPE] = ACTIONS(986), - [anon_sym_o_GT_PIPE] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(986), - [anon_sym_RPAREN] = ACTIONS(986), - [anon_sym_DOLLAR] = ACTIONS(984), - [anon_sym_DASH_DASH] = ACTIONS(986), - [anon_sym_DASH2] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(986), - [anon_sym_DOT_DOT] = ACTIONS(984), - [anon_sym_QMARK2] = ACTIONS(986), - [anon_sym_DOT_DOT2] = ACTIONS(984), - [anon_sym_DOT_DOT_EQ] = ACTIONS(984), - [anon_sym_DOT_DOT_LT] = ACTIONS(984), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), - [anon_sym_DOT_DOT_LT2] = ACTIONS(986), - [anon_sym_null] = ACTIONS(986), - [anon_sym_true] = ACTIONS(986), - [anon_sym_false] = ACTIONS(986), - [aux_sym__val_number_decimal_token1] = ACTIONS(984), - [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), - [aux_sym__val_number_token4] = ACTIONS(986), - [aux_sym__val_number_token5] = ACTIONS(986), - [aux_sym__val_number_token6] = ACTIONS(986), - [anon_sym_0b] = ACTIONS(984), - [anon_sym_0o] = ACTIONS(984), - [anon_sym_0x] = ACTIONS(984), - [sym_val_date] = ACTIONS(986), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym__str_single_quotes] = ACTIONS(986), - [sym__str_back_ticks] = ACTIONS(986), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(986), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(986), - [anon_sym_DOT2] = ACTIONS(984), - [anon_sym_err_GT] = ACTIONS(984), - [anon_sym_out_GT] = ACTIONS(984), - [anon_sym_e_GT] = ACTIONS(984), - [anon_sym_o_GT] = ACTIONS(984), - [anon_sym_err_PLUSout_GT] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT] = ACTIONS(984), - [anon_sym_o_PLUSe_GT] = ACTIONS(984), - [anon_sym_e_PLUSo_GT] = ACTIONS(984), - [anon_sym_err_GT_GT] = ACTIONS(986), - [anon_sym_out_GT_GT] = ACTIONS(986), - [anon_sym_e_GT_GT] = ACTIONS(986), - [anon_sym_o_GT_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), - [aux_sym_unquoted_token1] = ACTIONS(984), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(986), - }, - [1383] = { - [sym_comment] = STATE(1383), - [ts_builtin_sym_end] = ACTIONS(1552), - [sym__newline] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1552), - [anon_sym_PIPE] = ACTIONS(1552), - [anon_sym_err_GT_PIPE] = ACTIONS(1552), - [anon_sym_out_GT_PIPE] = ACTIONS(1552), - [anon_sym_e_GT_PIPE] = ACTIONS(1552), - [anon_sym_o_GT_PIPE] = ACTIONS(1552), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1552), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1552), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1552), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1552), - [anon_sym_LBRACK] = ACTIONS(1552), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_DOLLAR] = ACTIONS(1550), - [anon_sym_DASH_DASH] = ACTIONS(1552), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_LBRACE] = ACTIONS(1552), - [anon_sym_DOT_DOT] = ACTIONS(1550), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1550), - [anon_sym_DOT_DOT_LT] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [anon_sym_null] = ACTIONS(1552), - [anon_sym_true] = ACTIONS(1552), - [anon_sym_false] = ACTIONS(1552), - [aux_sym__val_number_decimal_token1] = ACTIONS(1550), - [aux_sym__val_number_decimal_token2] = ACTIONS(1552), - [aux_sym__val_number_decimal_token3] = ACTIONS(1552), - [aux_sym__val_number_decimal_token4] = ACTIONS(1552), - [aux_sym__val_number_token1] = ACTIONS(1552), - [aux_sym__val_number_token2] = ACTIONS(1552), - [aux_sym__val_number_token3] = ACTIONS(1552), - [aux_sym__val_number_token4] = ACTIONS(1552), - [aux_sym__val_number_token5] = ACTIONS(1552), - [aux_sym__val_number_token6] = ACTIONS(1552), - [anon_sym_0b] = ACTIONS(1550), - [sym_filesize_unit] = ACTIONS(1552), - [sym_duration_unit] = ACTIONS(1552), - [anon_sym_0o] = ACTIONS(1550), - [anon_sym_0x] = ACTIONS(1550), - [sym_val_date] = ACTIONS(1552), - [anon_sym_DQUOTE] = ACTIONS(1552), - [sym__str_single_quotes] = ACTIONS(1552), - [sym__str_back_ticks] = ACTIONS(1552), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1552), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1552), - [anon_sym_err_GT] = ACTIONS(1550), - [anon_sym_out_GT] = ACTIONS(1550), - [anon_sym_e_GT] = ACTIONS(1550), - [anon_sym_o_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT] = ACTIONS(1550), - [anon_sym_err_GT_GT] = ACTIONS(1552), - [anon_sym_out_GT_GT] = ACTIONS(1552), - [anon_sym_e_GT_GT] = ACTIONS(1552), - [anon_sym_o_GT_GT] = ACTIONS(1552), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1552), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1552), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1552), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1552), - [aux_sym_unquoted_token1] = ACTIONS(1550), - [aux_sym_unquoted_token2] = ACTIONS(1550), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1552), - }, - [1384] = { - [sym_comment] = STATE(1384), - [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_DASH2] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(982), - [anon_sym_RBRACE] = ACTIONS(982), - [anon_sym_DOT_DOT] = ACTIONS(980), - [anon_sym_QMARK2] = ACTIONS(982), - [anon_sym_DOT_DOT2] = 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), - [anon_sym_null] = ACTIONS(982), - [anon_sym_true] = ACTIONS(982), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(982), - [aux_sym__val_number_token5] = ACTIONS(982), - [aux_sym__val_number_token6] = 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_DOT2] = 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), - [aux_sym_unquoted_token1] = ACTIONS(980), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(982), - }, - [1385] = { - [sym_comment] = STATE(1385), - [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_GT2] = ACTIONS(980), - [anon_sym_DASH2] = ACTIONS(980), - [anon_sym_in2] = ACTIONS(982), - [anon_sym_STAR2] = ACTIONS(980), - [anon_sym_QMARK2] = ACTIONS(982), - [anon_sym_and2] = ACTIONS(982), - [anon_sym_xor2] = ACTIONS(982), - [anon_sym_or2] = ACTIONS(982), - [anon_sym_not_DASHin2] = ACTIONS(982), - [anon_sym_starts_DASHwith2] = ACTIONS(982), - [anon_sym_ends_DASHwith2] = ACTIONS(982), - [anon_sym_EQ_EQ2] = ACTIONS(982), - [anon_sym_BANG_EQ2] = ACTIONS(982), - [anon_sym_LT2] = ACTIONS(980), - [anon_sym_LT_EQ2] = ACTIONS(982), - [anon_sym_GT_EQ2] = ACTIONS(982), - [anon_sym_EQ_TILDE2] = ACTIONS(982), - [anon_sym_BANG_TILDE2] = ACTIONS(982), - [anon_sym_STAR_STAR2] = ACTIONS(982), - [anon_sym_PLUS_PLUS2] = ACTIONS(980), - [anon_sym_SLASH2] = ACTIONS(980), - [anon_sym_mod2] = ACTIONS(982), - [anon_sym_SLASH_SLASH2] = ACTIONS(982), - [anon_sym_PLUS2] = ACTIONS(980), - [anon_sym_bit_DASHshl2] = ACTIONS(982), - [anon_sym_bit_DASHshr2] = ACTIONS(982), - [anon_sym_bit_DASHand2] = ACTIONS(982), - [anon_sym_bit_DASHxor2] = ACTIONS(982), - [anon_sym_bit_DASHor2] = ACTIONS(982), - [anon_sym_DOT_DOT2] = ACTIONS(980), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(982), - [anon_sym_DOT_DOT_LT2] = ACTIONS(982), - [anon_sym_DOT2] = 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(251), - }, - [1386] = { - [sym_path] = STATE(1532), - [sym_comment] = STATE(1386), - [aux_sym_cell_path_repeat1] = STATE(1407), - [sym__newline] = ACTIONS(951), - [anon_sym_SEMI] = ACTIONS(951), - [anon_sym_PIPE] = ACTIONS(951), - [anon_sym_err_GT_PIPE] = ACTIONS(951), - [anon_sym_out_GT_PIPE] = ACTIONS(951), - [anon_sym_e_GT_PIPE] = ACTIONS(951), - [anon_sym_o_GT_PIPE] = ACTIONS(951), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(951), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(951), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(951), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(951), - [anon_sym_RPAREN] = ACTIONS(951), - [anon_sym_GT2] = ACTIONS(949), - [anon_sym_DASH2] = ACTIONS(951), - [anon_sym_in2] = ACTIONS(951), - [anon_sym_if] = ACTIONS(951), - [anon_sym_LBRACE] = ACTIONS(951), - [anon_sym_RBRACE] = ACTIONS(951), - [anon_sym_EQ_GT] = ACTIONS(951), - [anon_sym_STAR2] = ACTIONS(949), - [anon_sym_and2] = ACTIONS(951), - [anon_sym_xor2] = ACTIONS(951), - [anon_sym_or2] = ACTIONS(951), - [anon_sym_not_DASHin2] = ACTIONS(951), - [anon_sym_starts_DASHwith2] = ACTIONS(951), - [anon_sym_ends_DASHwith2] = ACTIONS(951), - [anon_sym_EQ_EQ2] = ACTIONS(951), - [anon_sym_BANG_EQ2] = ACTIONS(951), - [anon_sym_LT2] = ACTIONS(949), - [anon_sym_LT_EQ2] = ACTIONS(951), - [anon_sym_GT_EQ2] = ACTIONS(951), - [anon_sym_EQ_TILDE2] = ACTIONS(951), - [anon_sym_BANG_TILDE2] = ACTIONS(951), - [anon_sym_STAR_STAR2] = ACTIONS(951), - [anon_sym_PLUS_PLUS2] = ACTIONS(951), - [anon_sym_SLASH2] = ACTIONS(949), - [anon_sym_mod2] = ACTIONS(951), - [anon_sym_SLASH_SLASH2] = ACTIONS(951), - [anon_sym_PLUS2] = ACTIONS(949), - [anon_sym_bit_DASHshl2] = ACTIONS(951), - [anon_sym_bit_DASHshr2] = ACTIONS(951), - [anon_sym_bit_DASHand2] = ACTIONS(951), - [anon_sym_bit_DASHxor2] = ACTIONS(951), - [anon_sym_bit_DASHor2] = ACTIONS(951), - [anon_sym_DOT_DOT2] = ACTIONS(949), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(951), - [anon_sym_DOT_DOT_LT2] = ACTIONS(951), - [anon_sym_COLON2] = ACTIONS(951), - [anon_sym_DOT2] = ACTIONS(4570), - [anon_sym_err_GT] = ACTIONS(949), - [anon_sym_out_GT] = ACTIONS(949), - [anon_sym_e_GT] = ACTIONS(949), - [anon_sym_o_GT] = ACTIONS(949), - [anon_sym_err_PLUSout_GT] = ACTIONS(949), - [anon_sym_out_PLUSerr_GT] = ACTIONS(949), - [anon_sym_o_PLUSe_GT] = ACTIONS(949), - [anon_sym_e_PLUSo_GT] = ACTIONS(949), - [anon_sym_err_GT_GT] = ACTIONS(951), - [anon_sym_out_GT_GT] = ACTIONS(951), - [anon_sym_e_GT_GT] = ACTIONS(951), - [anon_sym_o_GT_GT] = ACTIONS(951), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(951), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(951), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(951), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(951), - [anon_sym_POUND] = ACTIONS(251), - }, - [1387] = { - [sym__expr_parenthesized_immediate] = STATE(1996), - [sym__immediate_decimal] = STATE(1997), - [sym_val_variable] = STATE(1996), - [sym_comment] = STATE(1387), - [sym__newline] = ACTIONS(1612), - [anon_sym_SEMI] = ACTIONS(1612), - [anon_sym_PIPE] = ACTIONS(1612), - [anon_sym_err_GT_PIPE] = ACTIONS(1612), - [anon_sym_out_GT_PIPE] = ACTIONS(1612), - [anon_sym_e_GT_PIPE] = ACTIONS(1612), - [anon_sym_o_GT_PIPE] = ACTIONS(1612), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1612), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1612), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1612), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1612), - [anon_sym_RPAREN] = ACTIONS(1612), - [anon_sym_DOLLAR] = ACTIONS(3630), - [anon_sym_GT2] = ACTIONS(1604), - [anon_sym_DASH2] = ACTIONS(1604), - [anon_sym_in2] = ACTIONS(1612), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1612), - [anon_sym_STAR2] = ACTIONS(1604), - [anon_sym_and2] = ACTIONS(1612), - [anon_sym_xor2] = ACTIONS(1612), - [anon_sym_or2] = ACTIONS(1612), - [anon_sym_not_DASHin2] = ACTIONS(1612), - [anon_sym_starts_DASHwith2] = ACTIONS(1612), - [anon_sym_ends_DASHwith2] = ACTIONS(1612), - [anon_sym_EQ_EQ2] = ACTIONS(1612), - [anon_sym_BANG_EQ2] = ACTIONS(1612), - [anon_sym_LT2] = ACTIONS(1604), - [anon_sym_LT_EQ2] = ACTIONS(1612), - [anon_sym_GT_EQ2] = ACTIONS(1612), - [anon_sym_EQ_TILDE2] = ACTIONS(1612), - [anon_sym_BANG_TILDE2] = ACTIONS(1612), - [anon_sym_LPAREN2] = ACTIONS(4580), - [anon_sym_STAR_STAR2] = ACTIONS(1612), - [anon_sym_PLUS_PLUS2] = ACTIONS(1612), - [anon_sym_SLASH2] = ACTIONS(1604), - [anon_sym_mod2] = ACTIONS(1612), - [anon_sym_SLASH_SLASH2] = ACTIONS(1612), - [anon_sym_PLUS2] = ACTIONS(1604), - [anon_sym_bit_DASHshl2] = ACTIONS(1612), - [anon_sym_bit_DASHshr2] = ACTIONS(1612), - [anon_sym_bit_DASHand2] = ACTIONS(1612), - [anon_sym_bit_DASHxor2] = ACTIONS(1612), - [anon_sym_bit_DASHor2] = ACTIONS(1612), - [aux_sym__immediate_decimal_token1] = ACTIONS(4638), - [aux_sym__immediate_decimal_token3] = ACTIONS(4638), - [aux_sym__immediate_decimal_token4] = ACTIONS(4586), - [aux_sym__immediate_decimal_token5] = ACTIONS(4588), - [anon_sym_err_GT] = ACTIONS(1604), - [anon_sym_out_GT] = ACTIONS(1604), - [anon_sym_e_GT] = ACTIONS(1604), - [anon_sym_o_GT] = ACTIONS(1604), - [anon_sym_err_PLUSout_GT] = ACTIONS(1604), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1604), - [anon_sym_o_PLUSe_GT] = ACTIONS(1604), - [anon_sym_e_PLUSo_GT] = ACTIONS(1604), - [anon_sym_err_GT_GT] = ACTIONS(1612), - [anon_sym_out_GT_GT] = ACTIONS(1612), - [anon_sym_e_GT_GT] = ACTIONS(1612), - [anon_sym_o_GT_GT] = ACTIONS(1612), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1612), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1612), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1612), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1612), - [anon_sym_POUND] = ACTIONS(251), - }, - [1388] = { - [sym_comment] = STATE(1388), - [sym__newline] = ACTIONS(1785), - [anon_sym_SEMI] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(1785), - [anon_sym_err_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_GT_PIPE] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_RPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1783), - [anon_sym_LPAREN2] = ACTIONS(1785), - [anon_sym_DOT_DOT2] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1783), - [anon_sym_DOT_DOT_LT] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1785), - [anon_sym_null] = ACTIONS(1785), - [anon_sym_true] = ACTIONS(1785), - [anon_sym_false] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(1785), - [aux_sym__val_number_token2] = ACTIONS(1785), - [aux_sym__val_number_token3] = ACTIONS(1785), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_0b] = ACTIONS(1783), - [anon_sym_0o] = ACTIONS(1783), - [anon_sym_0x] = ACTIONS(1783), - [sym_val_date] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1785), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1785), - [anon_sym_err_GT] = ACTIONS(1783), - [anon_sym_out_GT] = ACTIONS(1783), - [anon_sym_e_GT] = ACTIONS(1783), - [anon_sym_o_GT] = ACTIONS(1783), - [anon_sym_err_PLUSout_GT] = ACTIONS(1783), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1783), - [anon_sym_o_PLUSe_GT] = ACTIONS(1783), - [anon_sym_e_PLUSo_GT] = ACTIONS(1783), - [anon_sym_err_GT_GT] = ACTIONS(1785), - [anon_sym_out_GT_GT] = ACTIONS(1785), - [anon_sym_e_GT_GT] = ACTIONS(1785), - [anon_sym_o_GT_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1785), - [aux_sym_unquoted_token1] = ACTIONS(1783), - [aux_sym_unquoted_token2] = ACTIONS(1783), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1785), - }, - [1389] = { - [sym_comment] = STATE(1389), - [sym__newline] = ACTIONS(1757), - [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_DASH_DASH] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT] = ACTIONS(4648), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1755), - [anon_sym_DOT_DOT_LT] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(4650), - [anon_sym_null] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = 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_err_GT] = ACTIONS(1755), - [anon_sym_out_GT] = ACTIONS(1755), - [anon_sym_e_GT] = ACTIONS(1755), - [anon_sym_o_GT] = ACTIONS(1755), - [anon_sym_err_PLUSout_GT] = ACTIONS(1755), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), - [anon_sym_o_PLUSe_GT] = ACTIONS(1755), - [anon_sym_e_PLUSo_GT] = ACTIONS(1755), - [anon_sym_err_GT_GT] = ACTIONS(1757), - [anon_sym_out_GT_GT] = ACTIONS(1757), - [anon_sym_e_GT_GT] = ACTIONS(1757), - [anon_sym_o_GT_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), - [aux_sym_unquoted_token1] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1757), - }, - [1390] = { - [sym_cell_path] = STATE(1641), - [sym_path] = STATE(1532), - [sym_comment] = STATE(1390), - [aux_sym_cell_path_repeat1] = STATE(1386), - [sym__newline] = ACTIONS(945), - [anon_sym_SEMI] = ACTIONS(945), - [anon_sym_PIPE] = ACTIONS(945), - [anon_sym_err_GT_PIPE] = ACTIONS(945), - [anon_sym_out_GT_PIPE] = ACTIONS(945), - [anon_sym_e_GT_PIPE] = ACTIONS(945), - [anon_sym_o_GT_PIPE] = ACTIONS(945), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(945), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(945), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(945), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(945), - [anon_sym_RPAREN] = ACTIONS(945), - [anon_sym_GT2] = ACTIONS(943), - [anon_sym_DASH2] = ACTIONS(945), - [anon_sym_in2] = ACTIONS(945), - [anon_sym_if] = ACTIONS(945), - [anon_sym_LBRACE] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(945), - [anon_sym_EQ_GT] = ACTIONS(945), - [anon_sym_STAR2] = ACTIONS(943), - [anon_sym_and2] = ACTIONS(945), - [anon_sym_xor2] = ACTIONS(945), - [anon_sym_or2] = ACTIONS(945), - [anon_sym_not_DASHin2] = ACTIONS(945), - [anon_sym_starts_DASHwith2] = ACTIONS(945), - [anon_sym_ends_DASHwith2] = ACTIONS(945), - [anon_sym_EQ_EQ2] = ACTIONS(945), - [anon_sym_BANG_EQ2] = ACTIONS(945), - [anon_sym_LT2] = ACTIONS(943), - [anon_sym_LT_EQ2] = ACTIONS(945), - [anon_sym_GT_EQ2] = ACTIONS(945), - [anon_sym_EQ_TILDE2] = ACTIONS(945), - [anon_sym_BANG_TILDE2] = ACTIONS(945), - [anon_sym_STAR_STAR2] = ACTIONS(945), - [anon_sym_PLUS_PLUS2] = ACTIONS(945), - [anon_sym_SLASH2] = ACTIONS(943), - [anon_sym_mod2] = ACTIONS(945), - [anon_sym_SLASH_SLASH2] = ACTIONS(945), - [anon_sym_PLUS2] = ACTIONS(943), - [anon_sym_bit_DASHshl2] = ACTIONS(945), - [anon_sym_bit_DASHshr2] = ACTIONS(945), - [anon_sym_bit_DASHand2] = ACTIONS(945), - [anon_sym_bit_DASHxor2] = ACTIONS(945), - [anon_sym_bit_DASHor2] = ACTIONS(945), - [anon_sym_DOT_DOT2] = ACTIONS(943), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(945), - [anon_sym_DOT_DOT_LT2] = ACTIONS(945), - [anon_sym_DOT2] = ACTIONS(4570), - [anon_sym_err_GT] = ACTIONS(943), - [anon_sym_out_GT] = ACTIONS(943), - [anon_sym_e_GT] = ACTIONS(943), - [anon_sym_o_GT] = ACTIONS(943), - [anon_sym_err_PLUSout_GT] = ACTIONS(943), - [anon_sym_out_PLUSerr_GT] = ACTIONS(943), - [anon_sym_o_PLUSe_GT] = ACTIONS(943), - [anon_sym_e_PLUSo_GT] = ACTIONS(943), - [anon_sym_err_GT_GT] = ACTIONS(945), - [anon_sym_out_GT_GT] = ACTIONS(945), - [anon_sym_e_GT_GT] = ACTIONS(945), - [anon_sym_o_GT_GT] = ACTIONS(945), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(945), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(945), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(945), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(945), - [anon_sym_POUND] = ACTIONS(251), - }, - [1391] = { - [sym_comment] = STATE(1391), - [ts_builtin_sym_end] = 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(1743), - [anon_sym_DASH_DASH] = ACTIONS(1745), - [anon_sym_DASH2] = ACTIONS(1743), - [anon_sym_LBRACE] = ACTIONS(1745), - [anon_sym_DOT_DOT] = ACTIONS(1743), - [anon_sym_DOT_DOT2] = ACTIONS(1743), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1743), - [anon_sym_DOT_DOT_LT] = ACTIONS(1743), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1745), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1745), - [anon_sym_null] = ACTIONS(1745), - [anon_sym_true] = ACTIONS(1745), - [anon_sym_false] = ACTIONS(1745), - [aux_sym__val_number_decimal_token1] = ACTIONS(1743), - [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), - [aux_sym__val_number_token4] = ACTIONS(1745), - [aux_sym__val_number_token5] = ACTIONS(1745), - [aux_sym__val_number_token6] = ACTIONS(1745), - [anon_sym_0b] = ACTIONS(1743), - [sym_filesize_unit] = ACTIONS(1745), - [sym_duration_unit] = ACTIONS(1745), - [anon_sym_0o] = ACTIONS(1743), - [anon_sym_0x] = ACTIONS(1743), - [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(1743), - [anon_sym_out_GT] = ACTIONS(1743), - [anon_sym_e_GT] = ACTIONS(1743), - [anon_sym_o_GT] = ACTIONS(1743), - [anon_sym_err_PLUSout_GT] = ACTIONS(1743), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1743), - [anon_sym_o_PLUSe_GT] = ACTIONS(1743), - [anon_sym_e_PLUSo_GT] = ACTIONS(1743), - [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(1743), - [aux_sym_unquoted_token2] = ACTIONS(1743), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1745), - }, - [1392] = { - [sym_comment] = STATE(1392), - [ts_builtin_sym_end] = ACTIONS(974), - [anon_sym_EQ] = ACTIONS(972), - [anon_sym_PLUS_EQ] = ACTIONS(974), - [anon_sym_DASH_EQ] = ACTIONS(974), - [anon_sym_STAR_EQ] = ACTIONS(974), - [anon_sym_SLASH_EQ] = ACTIONS(974), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(974), - [sym__newline] = ACTIONS(974), - [anon_sym_SEMI] = ACTIONS(974), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_err_GT_PIPE] = ACTIONS(974), - [anon_sym_out_GT_PIPE] = ACTIONS(974), - [anon_sym_e_GT_PIPE] = ACTIONS(974), - [anon_sym_o_GT_PIPE] = ACTIONS(974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(974), - [anon_sym_GT2] = ACTIONS(972), - [anon_sym_DASH2] = ACTIONS(972), - [anon_sym_in2] = ACTIONS(974), - [anon_sym_STAR2] = ACTIONS(972), - [anon_sym_QMARK2] = ACTIONS(974), - [anon_sym_and2] = ACTIONS(974), - [anon_sym_xor2] = ACTIONS(974), - [anon_sym_or2] = ACTIONS(974), - [anon_sym_not_DASHin2] = ACTIONS(974), - [anon_sym_starts_DASHwith2] = ACTIONS(974), - [anon_sym_ends_DASHwith2] = ACTIONS(974), - [anon_sym_EQ_EQ2] = ACTIONS(974), - [anon_sym_BANG_EQ2] = ACTIONS(974), - [anon_sym_LT2] = ACTIONS(972), - [anon_sym_LT_EQ2] = ACTIONS(974), - [anon_sym_GT_EQ2] = ACTIONS(974), - [anon_sym_EQ_TILDE2] = ACTIONS(974), - [anon_sym_BANG_TILDE2] = ACTIONS(974), - [anon_sym_STAR_STAR2] = ACTIONS(974), - [anon_sym_PLUS_PLUS2] = ACTIONS(972), - [anon_sym_SLASH2] = ACTIONS(972), - [anon_sym_mod2] = ACTIONS(974), - [anon_sym_SLASH_SLASH2] = ACTIONS(974), - [anon_sym_PLUS2] = ACTIONS(972), - [anon_sym_bit_DASHshl2] = ACTIONS(974), - [anon_sym_bit_DASHshr2] = ACTIONS(974), - [anon_sym_bit_DASHand2] = ACTIONS(974), - [anon_sym_bit_DASHxor2] = ACTIONS(974), - [anon_sym_bit_DASHor2] = ACTIONS(974), - [anon_sym_DOT_DOT2] = ACTIONS(972), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(974), - [anon_sym_DOT_DOT_LT2] = ACTIONS(974), - [anon_sym_DOT2] = ACTIONS(972), - [anon_sym_err_GT] = ACTIONS(972), - [anon_sym_out_GT] = ACTIONS(972), - [anon_sym_e_GT] = ACTIONS(972), - [anon_sym_o_GT] = ACTIONS(972), - [anon_sym_err_PLUSout_GT] = ACTIONS(972), - [anon_sym_out_PLUSerr_GT] = ACTIONS(972), - [anon_sym_o_PLUSe_GT] = ACTIONS(972), - [anon_sym_e_PLUSo_GT] = ACTIONS(972), - [anon_sym_err_GT_GT] = ACTIONS(974), - [anon_sym_out_GT_GT] = ACTIONS(974), - [anon_sym_e_GT_GT] = ACTIONS(974), - [anon_sym_o_GT_GT] = ACTIONS(974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(974), - [anon_sym_POUND] = ACTIONS(251), - }, - [1393] = { - [sym__expr_parenthesized_immediate] = STATE(1998), - [sym__immediate_decimal] = STATE(2151), - [sym_val_variable] = STATE(1998), - [sym_comment] = STATE(1393), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_RPAREN] = ACTIONS(1538), - [anon_sym_DOLLAR] = ACTIONS(3630), - [anon_sym_GT2] = ACTIONS(1536), - [anon_sym_DASH2] = ACTIONS(1536), - [anon_sym_in2] = ACTIONS(1538), - [anon_sym_LBRACE] = ACTIONS(1538), - [anon_sym_RBRACE] = ACTIONS(1538), - [anon_sym_STAR2] = ACTIONS(1536), - [anon_sym_and2] = ACTIONS(1538), - [anon_sym_xor2] = ACTIONS(1538), - [anon_sym_or2] = ACTIONS(1538), - [anon_sym_not_DASHin2] = ACTIONS(1538), - [anon_sym_starts_DASHwith2] = ACTIONS(1538), - [anon_sym_ends_DASHwith2] = ACTIONS(1538), - [anon_sym_EQ_EQ2] = ACTIONS(1538), - [anon_sym_BANG_EQ2] = ACTIONS(1538), - [anon_sym_LT2] = ACTIONS(1536), - [anon_sym_LT_EQ2] = ACTIONS(1538), - [anon_sym_GT_EQ2] = ACTIONS(1538), - [anon_sym_EQ_TILDE2] = ACTIONS(1538), - [anon_sym_BANG_TILDE2] = ACTIONS(1538), - [anon_sym_LPAREN2] = ACTIONS(4580), - [anon_sym_STAR_STAR2] = ACTIONS(1538), - [anon_sym_PLUS_PLUS2] = ACTIONS(1538), - [anon_sym_SLASH2] = ACTIONS(1536), - [anon_sym_mod2] = ACTIONS(1538), - [anon_sym_SLASH_SLASH2] = ACTIONS(1538), - [anon_sym_PLUS2] = ACTIONS(1536), - [anon_sym_bit_DASHshl2] = ACTIONS(1538), - [anon_sym_bit_DASHshr2] = ACTIONS(1538), - [anon_sym_bit_DASHand2] = ACTIONS(1538), - [anon_sym_bit_DASHxor2] = ACTIONS(1538), - [anon_sym_bit_DASHor2] = ACTIONS(1538), - [aux_sym__immediate_decimal_token1] = ACTIONS(4638), - [aux_sym__immediate_decimal_token3] = ACTIONS(4638), - [aux_sym__immediate_decimal_token4] = ACTIONS(4586), - [aux_sym__immediate_decimal_token5] = ACTIONS(4588), - [anon_sym_err_GT] = ACTIONS(1536), - [anon_sym_out_GT] = ACTIONS(1536), - [anon_sym_e_GT] = ACTIONS(1536), - [anon_sym_o_GT] = ACTIONS(1536), - [anon_sym_err_PLUSout_GT] = ACTIONS(1536), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), - [anon_sym_o_PLUSe_GT] = ACTIONS(1536), - [anon_sym_e_PLUSo_GT] = ACTIONS(1536), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), - [anon_sym_POUND] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(247), }, [1394] = { [sym_comment] = STATE(1394), - [sym__newline] = ACTIONS(1757), - [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(1755), - [anon_sym_RPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1755), - [anon_sym_DOT_DOT_LT] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [anon_sym_null] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = 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_err_GT] = ACTIONS(1755), - [anon_sym_out_GT] = ACTIONS(1755), - [anon_sym_e_GT] = ACTIONS(1755), - [anon_sym_o_GT] = ACTIONS(1755), - [anon_sym_err_PLUSout_GT] = ACTIONS(1755), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), - [anon_sym_o_PLUSe_GT] = ACTIONS(1755), - [anon_sym_e_PLUSo_GT] = ACTIONS(1755), - [anon_sym_err_GT_GT] = ACTIONS(1757), - [anon_sym_out_GT_GT] = ACTIONS(1757), - [anon_sym_e_GT_GT] = ACTIONS(1757), - [anon_sym_o_GT_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), - [aux_sym_unquoted_token1] = ACTIONS(1755), - [aux_sym_unquoted_token2] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1757), + [sym__newline] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_PIPE] = ACTIONS(966), + [anon_sym_err_GT_PIPE] = ACTIONS(966), + [anon_sym_out_GT_PIPE] = ACTIONS(966), + [anon_sym_e_GT_PIPE] = ACTIONS(966), + [anon_sym_o_GT_PIPE] = ACTIONS(966), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(966), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(966), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(966), + [anon_sym_RPAREN] = ACTIONS(966), + [anon_sym_GT2] = ACTIONS(964), + [anon_sym_DASH2] = ACTIONS(966), + [anon_sym_in2] = ACTIONS(966), + [anon_sym_if] = ACTIONS(966), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_EQ_GT] = ACTIONS(966), + [anon_sym_STAR2] = ACTIONS(964), + [anon_sym_QMARK2] = ACTIONS(966), + [anon_sym_and2] = ACTIONS(966), + [anon_sym_xor2] = ACTIONS(966), + [anon_sym_or2] = ACTIONS(966), + [anon_sym_not_DASHin2] = ACTIONS(966), + [anon_sym_has2] = ACTIONS(966), + [anon_sym_not_DASHhas2] = ACTIONS(966), + [anon_sym_starts_DASHwith2] = ACTIONS(966), + [anon_sym_ends_DASHwith2] = ACTIONS(966), + [anon_sym_EQ_EQ2] = ACTIONS(966), + [anon_sym_BANG_EQ2] = ACTIONS(966), + [anon_sym_LT2] = ACTIONS(964), + [anon_sym_LT_EQ2] = ACTIONS(966), + [anon_sym_GT_EQ2] = ACTIONS(966), + [anon_sym_EQ_TILDE2] = ACTIONS(966), + [anon_sym_BANG_TILDE2] = ACTIONS(966), + [anon_sym_STAR_STAR2] = ACTIONS(966), + [anon_sym_PLUS_PLUS2] = ACTIONS(966), + [anon_sym_SLASH2] = ACTIONS(964), + [anon_sym_mod2] = ACTIONS(966), + [anon_sym_SLASH_SLASH2] = ACTIONS(966), + [anon_sym_PLUS2] = ACTIONS(964), + [anon_sym_bit_DASHshl2] = ACTIONS(966), + [anon_sym_bit_DASHshr2] = ACTIONS(966), + [anon_sym_bit_DASHand2] = ACTIONS(966), + [anon_sym_bit_DASHxor2] = ACTIONS(966), + [anon_sym_bit_DASHor2] = ACTIONS(966), + [anon_sym_DOT_DOT2] = ACTIONS(964), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(966), + [anon_sym_DOT_DOT_LT2] = ACTIONS(966), + [anon_sym_COLON2] = ACTIONS(966), + [anon_sym_DOT2] = ACTIONS(964), + [anon_sym_err_GT] = ACTIONS(964), + [anon_sym_out_GT] = ACTIONS(964), + [anon_sym_e_GT] = ACTIONS(964), + [anon_sym_o_GT] = ACTIONS(964), + [anon_sym_err_PLUSout_GT] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT] = ACTIONS(964), + [anon_sym_o_PLUSe_GT] = ACTIONS(964), + [anon_sym_e_PLUSo_GT] = ACTIONS(964), + [anon_sym_err_GT_GT] = ACTIONS(966), + [anon_sym_out_GT_GT] = ACTIONS(966), + [anon_sym_e_GT_GT] = ACTIONS(966), + [anon_sym_o_GT_GT] = ACTIONS(966), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(966), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(966), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(966), + [anon_sym_POUND] = ACTIONS(247), }, [1395] = { - [sym__expr_parenthesized_immediate] = STATE(1994), - [sym__immediate_decimal] = STATE(1995), - [sym_val_variable] = STATE(1994), [sym_comment] = STATE(1395), - [sym__newline] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_err_GT_PIPE] = ACTIONS(1656), - [anon_sym_out_GT_PIPE] = ACTIONS(1656), - [anon_sym_e_GT_PIPE] = ACTIONS(1656), - [anon_sym_o_GT_PIPE] = ACTIONS(1656), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1656), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1656), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1656), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1656), - [anon_sym_RPAREN] = ACTIONS(1656), - [anon_sym_DOLLAR] = ACTIONS(3630), - [anon_sym_GT2] = ACTIONS(1654), - [anon_sym_DASH2] = ACTIONS(1654), - [anon_sym_in2] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_RBRACE] = ACTIONS(1656), - [anon_sym_STAR2] = ACTIONS(1654), - [anon_sym_and2] = ACTIONS(1656), - [anon_sym_xor2] = ACTIONS(1656), - [anon_sym_or2] = ACTIONS(1656), - [anon_sym_not_DASHin2] = ACTIONS(1656), - [anon_sym_starts_DASHwith2] = ACTIONS(1656), - [anon_sym_ends_DASHwith2] = ACTIONS(1656), - [anon_sym_EQ_EQ2] = ACTIONS(1656), - [anon_sym_BANG_EQ2] = ACTIONS(1656), - [anon_sym_LT2] = ACTIONS(1654), - [anon_sym_LT_EQ2] = ACTIONS(1656), - [anon_sym_GT_EQ2] = ACTIONS(1656), - [anon_sym_EQ_TILDE2] = ACTIONS(1656), - [anon_sym_BANG_TILDE2] = ACTIONS(1656), - [anon_sym_LPAREN2] = ACTIONS(4580), - [anon_sym_STAR_STAR2] = ACTIONS(1656), - [anon_sym_PLUS_PLUS2] = ACTIONS(1656), - [anon_sym_SLASH2] = ACTIONS(1654), - [anon_sym_mod2] = ACTIONS(1656), - [anon_sym_SLASH_SLASH2] = ACTIONS(1656), - [anon_sym_PLUS2] = ACTIONS(1654), - [anon_sym_bit_DASHshl2] = ACTIONS(1656), - [anon_sym_bit_DASHshr2] = ACTIONS(1656), - [anon_sym_bit_DASHand2] = ACTIONS(1656), - [anon_sym_bit_DASHxor2] = ACTIONS(1656), - [anon_sym_bit_DASHor2] = ACTIONS(1656), - [aux_sym__immediate_decimal_token1] = ACTIONS(4638), - [aux_sym__immediate_decimal_token3] = ACTIONS(4638), - [aux_sym__immediate_decimal_token4] = ACTIONS(4586), - [aux_sym__immediate_decimal_token5] = ACTIONS(4588), - [anon_sym_err_GT] = ACTIONS(1654), - [anon_sym_out_GT] = ACTIONS(1654), - [anon_sym_e_GT] = ACTIONS(1654), - [anon_sym_o_GT] = ACTIONS(1654), - [anon_sym_err_PLUSout_GT] = ACTIONS(1654), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1654), - [anon_sym_o_PLUSe_GT] = ACTIONS(1654), - [anon_sym_e_PLUSo_GT] = ACTIONS(1654), - [anon_sym_err_GT_GT] = ACTIONS(1656), - [anon_sym_out_GT_GT] = ACTIONS(1656), - [anon_sym_e_GT_GT] = ACTIONS(1656), - [anon_sym_o_GT_GT] = ACTIONS(1656), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1656), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1656), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1656), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1656), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(1514), + [anon_sym_SEMI] = ACTIONS(1514), + [anon_sym_PIPE] = ACTIONS(1514), + [anon_sym_err_GT_PIPE] = ACTIONS(1514), + [anon_sym_out_GT_PIPE] = ACTIONS(1514), + [anon_sym_e_GT_PIPE] = ACTIONS(1514), + [anon_sym_o_GT_PIPE] = ACTIONS(1514), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1514), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1514), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1514), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1514), + [anon_sym_RPAREN] = ACTIONS(1514), + [anon_sym_GT2] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1514), + [anon_sym_in2] = ACTIONS(1514), + [anon_sym_RBRACE] = ACTIONS(1514), + [anon_sym_STAR2] = ACTIONS(1512), + [anon_sym_and2] = ACTIONS(1514), + [anon_sym_xor2] = ACTIONS(1514), + [anon_sym_or2] = ACTIONS(1514), + [anon_sym_not_DASHin2] = ACTIONS(1514), + [anon_sym_has2] = ACTIONS(1514), + [anon_sym_not_DASHhas2] = ACTIONS(1514), + [anon_sym_starts_DASHwith2] = ACTIONS(1514), + [anon_sym_ends_DASHwith2] = ACTIONS(1514), + [anon_sym_EQ_EQ2] = ACTIONS(1514), + [anon_sym_BANG_EQ2] = ACTIONS(1514), + [anon_sym_LT2] = ACTIONS(1512), + [anon_sym_LT_EQ2] = ACTIONS(1514), + [anon_sym_GT_EQ2] = ACTIONS(1514), + [anon_sym_EQ_TILDE2] = ACTIONS(1514), + [anon_sym_BANG_TILDE2] = ACTIONS(1514), + [anon_sym_LPAREN2] = ACTIONS(1514), + [anon_sym_STAR_STAR2] = ACTIONS(1514), + [anon_sym_PLUS_PLUS2] = ACTIONS(1514), + [anon_sym_SLASH2] = ACTIONS(1512), + [anon_sym_mod2] = ACTIONS(1514), + [anon_sym_SLASH_SLASH2] = ACTIONS(1514), + [anon_sym_PLUS2] = ACTIONS(1512), + [anon_sym_bit_DASHshl2] = ACTIONS(1514), + [anon_sym_bit_DASHshr2] = ACTIONS(1514), + [anon_sym_bit_DASHand2] = ACTIONS(1514), + [anon_sym_bit_DASHxor2] = ACTIONS(1514), + [anon_sym_bit_DASHor2] = ACTIONS(1514), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT] = ACTIONS(4632), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [aux_sym__immediate_decimal_token2] = ACTIONS(4634), + [sym_filesize_unit] = ACTIONS(1512), + [sym_duration_unit] = ACTIONS(1514), + [anon_sym_err_GT] = ACTIONS(1512), + [anon_sym_out_GT] = ACTIONS(1512), + [anon_sym_e_GT] = ACTIONS(1512), + [anon_sym_o_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT] = ACTIONS(1512), + [anon_sym_err_GT_GT] = ACTIONS(1514), + [anon_sym_out_GT_GT] = ACTIONS(1514), + [anon_sym_e_GT_GT] = ACTIONS(1514), + [anon_sym_o_GT_GT] = ACTIONS(1514), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1514), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1514), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1514), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1514), + [aux_sym_unquoted_token2] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(247), }, [1396] = { [sym_comment] = STATE(1396), - [anon_sym_STAR_STAR] = ACTIONS(3192), - [anon_sym_PLUS_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_mod] = ACTIONS(3192), - [anon_sym_SLASH_SLASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_bit_DASHshl] = ACTIONS(3192), - [anon_sym_bit_DASHshr] = ACTIONS(3192), - [anon_sym_EQ_TILDE] = ACTIONS(3192), - [anon_sym_BANG_TILDE] = ACTIONS(3192), - [anon_sym_bit_DASHand] = ACTIONS(3192), - [anon_sym_bit_DASHxor] = ACTIONS(3192), - [anon_sym_bit_DASHor] = ACTIONS(3192), - [anon_sym_and] = ACTIONS(3192), - [anon_sym_xor] = ACTIONS(3192), - [anon_sym_or] = ACTIONS(3192), - [anon_sym_in] = ACTIONS(3192), - [anon_sym_not_DASHin] = ACTIONS(3192), - [anon_sym_starts_DASHwith] = ACTIONS(3192), - [anon_sym_ends_DASHwith] = ACTIONS(3192), - [anon_sym_EQ_EQ] = ACTIONS(3192), - [anon_sym_BANG_EQ] = ACTIONS(3192), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_LT_EQ] = ACTIONS(3192), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_GT_EQ] = ACTIONS(3192), - [aux_sym_cmd_identifier_token41] = ACTIONS(3196), - [sym__newline] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2136), - [anon_sym_err_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_GT_PIPE] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2136), - [anon_sym_GT2] = ACTIONS(2136), - [anon_sym_DASH2] = ACTIONS(2136), - [anon_sym_in2] = ACTIONS(2136), - [anon_sym_STAR2] = ACTIONS(2136), - [anon_sym_and2] = ACTIONS(2136), - [anon_sym_xor2] = ACTIONS(2136), - [anon_sym_or2] = ACTIONS(2136), - [anon_sym_not_DASHin2] = ACTIONS(2136), - [anon_sym_starts_DASHwith2] = ACTIONS(2136), - [anon_sym_ends_DASHwith2] = ACTIONS(2136), - [anon_sym_EQ_EQ2] = ACTIONS(2136), - [anon_sym_BANG_EQ2] = ACTIONS(2136), - [anon_sym_LT2] = ACTIONS(2136), - [anon_sym_LT_EQ2] = ACTIONS(2136), - [anon_sym_GT_EQ2] = ACTIONS(2136), - [anon_sym_EQ_TILDE2] = ACTIONS(2136), - [anon_sym_BANG_TILDE2] = ACTIONS(2136), - [anon_sym_STAR_STAR2] = ACTIONS(2136), - [anon_sym_PLUS_PLUS2] = ACTIONS(2136), - [anon_sym_SLASH2] = ACTIONS(2136), - [anon_sym_mod2] = ACTIONS(2136), - [anon_sym_SLASH_SLASH2] = ACTIONS(2136), - [anon_sym_PLUS2] = ACTIONS(2136), - [anon_sym_bit_DASHshl2] = ACTIONS(2136), - [anon_sym_bit_DASHshr2] = ACTIONS(2136), - [anon_sym_bit_DASHand2] = ACTIONS(2136), - [anon_sym_bit_DASHxor2] = ACTIONS(2136), - [anon_sym_bit_DASHor2] = ACTIONS(2136), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(948), + [anon_sym_SEMI] = ACTIONS(948), + [anon_sym_PIPE] = ACTIONS(948), + [anon_sym_err_GT_PIPE] = ACTIONS(948), + [anon_sym_out_GT_PIPE] = ACTIONS(948), + [anon_sym_e_GT_PIPE] = ACTIONS(948), + [anon_sym_o_GT_PIPE] = ACTIONS(948), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(948), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(948), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(948), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(948), + [anon_sym_RPAREN] = ACTIONS(948), + [anon_sym_GT2] = ACTIONS(946), + [anon_sym_DASH2] = ACTIONS(948), + [anon_sym_in2] = ACTIONS(948), + [anon_sym_if] = ACTIONS(948), + [anon_sym_LBRACE] = ACTIONS(948), + [anon_sym_RBRACE] = ACTIONS(948), + [anon_sym_EQ_GT] = ACTIONS(948), + [anon_sym_STAR2] = ACTIONS(946), + [anon_sym_QMARK2] = ACTIONS(948), + [anon_sym_and2] = ACTIONS(948), + [anon_sym_xor2] = ACTIONS(948), + [anon_sym_or2] = ACTIONS(948), + [anon_sym_not_DASHin2] = ACTIONS(948), + [anon_sym_has2] = ACTIONS(948), + [anon_sym_not_DASHhas2] = ACTIONS(948), + [anon_sym_starts_DASHwith2] = ACTIONS(948), + [anon_sym_ends_DASHwith2] = ACTIONS(948), + [anon_sym_EQ_EQ2] = ACTIONS(948), + [anon_sym_BANG_EQ2] = ACTIONS(948), + [anon_sym_LT2] = ACTIONS(946), + [anon_sym_LT_EQ2] = ACTIONS(948), + [anon_sym_GT_EQ2] = ACTIONS(948), + [anon_sym_EQ_TILDE2] = ACTIONS(948), + [anon_sym_BANG_TILDE2] = ACTIONS(948), + [anon_sym_STAR_STAR2] = ACTIONS(948), + [anon_sym_PLUS_PLUS2] = ACTIONS(948), + [anon_sym_SLASH2] = ACTIONS(946), + [anon_sym_mod2] = ACTIONS(948), + [anon_sym_SLASH_SLASH2] = ACTIONS(948), + [anon_sym_PLUS2] = ACTIONS(946), + [anon_sym_bit_DASHshl2] = ACTIONS(948), + [anon_sym_bit_DASHshr2] = ACTIONS(948), + [anon_sym_bit_DASHand2] = ACTIONS(948), + [anon_sym_bit_DASHxor2] = ACTIONS(948), + [anon_sym_bit_DASHor2] = ACTIONS(948), + [anon_sym_DOT_DOT2] = ACTIONS(946), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(948), + [anon_sym_DOT_DOT_LT2] = ACTIONS(948), + [anon_sym_COLON2] = ACTIONS(948), + [anon_sym_DOT2] = ACTIONS(946), + [anon_sym_err_GT] = ACTIONS(946), + [anon_sym_out_GT] = ACTIONS(946), + [anon_sym_e_GT] = ACTIONS(946), + [anon_sym_o_GT] = ACTIONS(946), + [anon_sym_err_PLUSout_GT] = ACTIONS(946), + [anon_sym_out_PLUSerr_GT] = ACTIONS(946), + [anon_sym_o_PLUSe_GT] = ACTIONS(946), + [anon_sym_e_PLUSo_GT] = ACTIONS(946), + [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), + [anon_sym_POUND] = ACTIONS(247), }, [1397] = { [sym_comment] = STATE(1397), - [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(1802), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_DOLLAR] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_DOT_DOT2] = ACTIONS(4652), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1802), - [anon_sym_DOT_DOT_LT] = ACTIONS(1802), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4654), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4654), - [anon_sym_null] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1810), - [anon_sym_false] = ACTIONS(1810), - [aux_sym__val_number_decimal_token1] = ACTIONS(1802), - [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), - [aux_sym__val_number_token4] = ACTIONS(1810), - [aux_sym__val_number_token5] = ACTIONS(1810), - [aux_sym__val_number_token6] = ACTIONS(1810), - [anon_sym_0b] = ACTIONS(1802), - [anon_sym_0o] = ACTIONS(1802), - [anon_sym_0x] = ACTIONS(1802), - [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(1802), - [anon_sym_out_GT] = ACTIONS(1802), - [anon_sym_e_GT] = ACTIONS(1802), - [anon_sym_o_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT] = ACTIONS(1802), - [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(1802), - [aux_sym_unquoted_token2] = ACTIONS(1477), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1810), + [ts_builtin_sym_end] = ACTIONS(1695), + [sym__newline] = ACTIONS(1695), + [anon_sym_SEMI] = ACTIONS(1695), + [anon_sym_PIPE] = ACTIONS(1695), + [anon_sym_err_GT_PIPE] = ACTIONS(1695), + [anon_sym_out_GT_PIPE] = ACTIONS(1695), + [anon_sym_e_GT_PIPE] = ACTIONS(1695), + [anon_sym_o_GT_PIPE] = ACTIONS(1695), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1695), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1695), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1695), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1695), + [anon_sym_LBRACK] = ACTIONS(1695), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_DOLLAR] = ACTIONS(1693), + [anon_sym_DASH_DASH] = ACTIONS(1695), + [anon_sym_DASH2] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1695), + [anon_sym_DOT_DOT] = ACTIONS(1693), + [anon_sym_LPAREN2] = ACTIONS(1695), + [anon_sym_DOT_DOT2] = ACTIONS(1693), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1693), + [anon_sym_DOT_DOT_LT] = ACTIONS(1693), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1695), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1695), + [aux_sym__immediate_decimal_token1] = ACTIONS(4636), + [aux_sym__immediate_decimal_token2] = ACTIONS(4638), + [anon_sym_null] = ACTIONS(1695), + [anon_sym_true] = ACTIONS(1695), + [anon_sym_false] = ACTIONS(1695), + [aux_sym__val_number_decimal_token1] = ACTIONS(1693), + [aux_sym__val_number_decimal_token2] = ACTIONS(1695), + [aux_sym__val_number_decimal_token3] = ACTIONS(1695), + [aux_sym__val_number_decimal_token4] = ACTIONS(1695), + [aux_sym__val_number_token1] = ACTIONS(1695), + [aux_sym__val_number_token2] = ACTIONS(1695), + [aux_sym__val_number_token3] = ACTIONS(1695), + [aux_sym__val_number_token4] = ACTIONS(1695), + [aux_sym__val_number_token5] = ACTIONS(1695), + [aux_sym__val_number_token6] = ACTIONS(1695), + [anon_sym_0b] = ACTIONS(1693), + [anon_sym_0o] = ACTIONS(1693), + [anon_sym_0x] = ACTIONS(1693), + [sym_val_date] = ACTIONS(1695), + [anon_sym_DQUOTE] = ACTIONS(1695), + [sym__str_single_quotes] = ACTIONS(1695), + [sym__str_back_ticks] = ACTIONS(1695), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1695), + [anon_sym_err_GT] = ACTIONS(1693), + [anon_sym_out_GT] = ACTIONS(1693), + [anon_sym_e_GT] = ACTIONS(1693), + [anon_sym_o_GT] = ACTIONS(1693), + [anon_sym_err_PLUSout_GT] = ACTIONS(1693), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1693), + [anon_sym_o_PLUSe_GT] = ACTIONS(1693), + [anon_sym_e_PLUSo_GT] = ACTIONS(1693), + [anon_sym_err_GT_GT] = ACTIONS(1695), + [anon_sym_out_GT_GT] = ACTIONS(1695), + [anon_sym_e_GT_GT] = ACTIONS(1695), + [anon_sym_o_GT_GT] = ACTIONS(1695), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1695), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1695), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1695), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1695), + [aux_sym_unquoted_token1] = ACTIONS(1693), + [aux_sym_unquoted_token2] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1695), }, [1398] = { - [sym__expr_parenthesized_immediate] = STATE(2078), - [sym__immediate_decimal] = STATE(2144), - [sym_val_variable] = STATE(2078), + [sym_path] = STATE(1471), [sym_comment] = STATE(1398), - [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_DOLLAR] = ACTIONS(3630), - [anon_sym_GT2] = ACTIONS(1461), - [anon_sym_DASH2] = ACTIONS(1461), - [anon_sym_in2] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym_STAR2] = ACTIONS(1461), - [anon_sym_and2] = ACTIONS(1475), - [anon_sym_xor2] = ACTIONS(1475), - [anon_sym_or2] = ACTIONS(1475), - [anon_sym_not_DASHin2] = ACTIONS(1475), - [anon_sym_starts_DASHwith2] = ACTIONS(1475), - [anon_sym_ends_DASHwith2] = ACTIONS(1475), - [anon_sym_EQ_EQ2] = ACTIONS(1475), - [anon_sym_BANG_EQ2] = ACTIONS(1475), - [anon_sym_LT2] = ACTIONS(1461), - [anon_sym_LT_EQ2] = ACTIONS(1475), - [anon_sym_GT_EQ2] = ACTIONS(1475), - [anon_sym_EQ_TILDE2] = ACTIONS(1475), - [anon_sym_BANG_TILDE2] = ACTIONS(1475), - [anon_sym_LPAREN2] = ACTIONS(4580), - [anon_sym_STAR_STAR2] = ACTIONS(1475), - [anon_sym_PLUS_PLUS2] = ACTIONS(1475), - [anon_sym_SLASH2] = ACTIONS(1461), - [anon_sym_mod2] = ACTIONS(1475), - [anon_sym_SLASH_SLASH2] = ACTIONS(1475), - [anon_sym_PLUS2] = ACTIONS(1461), - [anon_sym_bit_DASHshl2] = ACTIONS(1475), - [anon_sym_bit_DASHshr2] = ACTIONS(1475), - [anon_sym_bit_DASHand2] = ACTIONS(1475), - [anon_sym_bit_DASHxor2] = ACTIONS(1475), - [anon_sym_bit_DASHor2] = ACTIONS(1475), - [aux_sym__immediate_decimal_token1] = ACTIONS(4656), - [aux_sym__immediate_decimal_token3] = ACTIONS(4656), - [aux_sym__immediate_decimal_token4] = ACTIONS(4658), - [aux_sym__immediate_decimal_token5] = ACTIONS(4660), - [anon_sym_err_GT] = ACTIONS(1461), - [anon_sym_out_GT] = ACTIONS(1461), - [anon_sym_e_GT] = ACTIONS(1461), - [anon_sym_o_GT] = ACTIONS(1461), - [anon_sym_err_PLUSout_GT] = ACTIONS(1461), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1461), - [anon_sym_o_PLUSe_GT] = ACTIONS(1461), - [anon_sym_e_PLUSo_GT] = ACTIONS(1461), - [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(1477), - [anon_sym_POUND] = ACTIONS(251), + [aux_sym_cell_path_repeat1] = STATE(1399), + [sym__newline] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(944), + [anon_sym_err_GT_PIPE] = ACTIONS(944), + [anon_sym_out_GT_PIPE] = ACTIONS(944), + [anon_sym_e_GT_PIPE] = ACTIONS(944), + [anon_sym_o_GT_PIPE] = ACTIONS(944), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(944), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(944), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(944), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(944), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LPAREN] = ACTIONS(944), + [anon_sym_RPAREN] = ACTIONS(944), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_DASH_DASH] = ACTIONS(944), + [anon_sym_DASH2] = ACTIONS(942), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(944), + [anon_sym_DOT_DOT] = ACTIONS(942), + [anon_sym_DOT_DOT2] = ACTIONS(942), + [anon_sym_DOT_DOT_EQ] = ACTIONS(942), + [anon_sym_DOT_DOT_LT] = ACTIONS(942), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(944), + [anon_sym_DOT_DOT_LT2] = ACTIONS(944), + [anon_sym_null] = ACTIONS(944), + [anon_sym_true] = ACTIONS(944), + [anon_sym_false] = ACTIONS(944), + [aux_sym__val_number_decimal_token1] = ACTIONS(942), + [aux_sym__val_number_decimal_token2] = ACTIONS(944), + [aux_sym__val_number_decimal_token3] = ACTIONS(944), + [aux_sym__val_number_decimal_token4] = ACTIONS(944), + [aux_sym__val_number_token1] = ACTIONS(944), + [aux_sym__val_number_token2] = ACTIONS(944), + [aux_sym__val_number_token3] = ACTIONS(944), + [aux_sym__val_number_token4] = ACTIONS(944), + [aux_sym__val_number_token5] = ACTIONS(944), + [aux_sym__val_number_token6] = ACTIONS(944), + [anon_sym_0b] = ACTIONS(942), + [anon_sym_0o] = ACTIONS(942), + [anon_sym_0x] = ACTIONS(942), + [sym_val_date] = ACTIONS(944), + [anon_sym_DQUOTE] = ACTIONS(944), + [sym__str_single_quotes] = ACTIONS(944), + [sym__str_back_ticks] = ACTIONS(944), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(944), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(944), + [anon_sym_DOT2] = ACTIONS(4500), + [anon_sym_err_GT] = ACTIONS(942), + [anon_sym_out_GT] = ACTIONS(942), + [anon_sym_e_GT] = ACTIONS(942), + [anon_sym_o_GT] = ACTIONS(942), + [anon_sym_err_PLUSout_GT] = ACTIONS(942), + [anon_sym_out_PLUSerr_GT] = ACTIONS(942), + [anon_sym_o_PLUSe_GT] = ACTIONS(942), + [anon_sym_e_PLUSo_GT] = ACTIONS(942), + [anon_sym_err_GT_GT] = ACTIONS(944), + [anon_sym_out_GT_GT] = ACTIONS(944), + [anon_sym_e_GT_GT] = ACTIONS(944), + [anon_sym_o_GT_GT] = ACTIONS(944), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(944), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(944), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(944), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(944), + [aux_sym_unquoted_token1] = ACTIONS(942), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(944), }, [1399] = { + [sym_path] = STATE(1471), [sym_comment] = STATE(1399), - [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(1002), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_err_GT_PIPE] = ACTIONS(1002), - [anon_sym_out_GT_PIPE] = ACTIONS(1002), - [anon_sym_e_GT_PIPE] = ACTIONS(1002), - [anon_sym_o_GT_PIPE] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1002), - [anon_sym_RPAREN] = ACTIONS(1002), - [anon_sym_GT2] = ACTIONS(1000), - [anon_sym_DASH2] = ACTIONS(1000), - [anon_sym_in2] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1002), - [anon_sym_STAR2] = ACTIONS(1000), - [anon_sym_and2] = ACTIONS(1002), - [anon_sym_xor2] = ACTIONS(1002), - [anon_sym_or2] = ACTIONS(1002), - [anon_sym_not_DASHin2] = ACTIONS(1002), - [anon_sym_starts_DASHwith2] = ACTIONS(1002), - [anon_sym_ends_DASHwith2] = ACTIONS(1002), - [anon_sym_EQ_EQ2] = ACTIONS(1002), - [anon_sym_BANG_EQ2] = ACTIONS(1002), - [anon_sym_LT2] = ACTIONS(1000), - [anon_sym_LT_EQ2] = ACTIONS(1002), - [anon_sym_GT_EQ2] = ACTIONS(1002), - [anon_sym_EQ_TILDE2] = ACTIONS(1002), - [anon_sym_BANG_TILDE2] = ACTIONS(1002), - [anon_sym_STAR_STAR2] = ACTIONS(1002), - [anon_sym_PLUS_PLUS2] = ACTIONS(1000), - [anon_sym_SLASH2] = ACTIONS(1000), - [anon_sym_mod2] = ACTIONS(1002), - [anon_sym_SLASH_SLASH2] = ACTIONS(1002), - [anon_sym_PLUS2] = ACTIONS(1000), - [anon_sym_bit_DASHshl2] = ACTIONS(1002), - [anon_sym_bit_DASHshr2] = ACTIONS(1002), - [anon_sym_bit_DASHand2] = ACTIONS(1002), - [anon_sym_bit_DASHxor2] = ACTIONS(1002), - [anon_sym_bit_DASHor2] = ACTIONS(1002), - [anon_sym_DOT_DOT2] = ACTIONS(1000), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1002), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1002), - [anon_sym_COLON2] = ACTIONS(1002), - [anon_sym_err_GT] = ACTIONS(1000), - [anon_sym_out_GT] = ACTIONS(1000), - [anon_sym_e_GT] = ACTIONS(1000), - [anon_sym_o_GT] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT] = ACTIONS(1000), - [anon_sym_err_GT_GT] = ACTIONS(1002), - [anon_sym_out_GT_GT] = ACTIONS(1002), - [anon_sym_e_GT_GT] = ACTIONS(1002), - [anon_sym_o_GT_GT] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1002), - [anon_sym_POUND] = ACTIONS(251), + [aux_sym_cell_path_repeat1] = STATE(1399), + [sym__newline] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(937), + [anon_sym_err_GT_PIPE] = ACTIONS(937), + [anon_sym_out_GT_PIPE] = ACTIONS(937), + [anon_sym_e_GT_PIPE] = ACTIONS(937), + [anon_sym_o_GT_PIPE] = ACTIONS(937), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(937), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(937), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(937), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(937), + [anon_sym_LPAREN] = ACTIONS(937), + [anon_sym_RPAREN] = ACTIONS(937), + [anon_sym_DOLLAR] = ACTIONS(935), + [anon_sym_DASH_DASH] = ACTIONS(937), + [anon_sym_DASH2] = ACTIONS(935), + [anon_sym_LBRACE] = ACTIONS(937), + [anon_sym_RBRACE] = ACTIONS(937), + [anon_sym_DOT_DOT] = ACTIONS(935), + [anon_sym_DOT_DOT2] = ACTIONS(935), + [anon_sym_DOT_DOT_EQ] = ACTIONS(935), + [anon_sym_DOT_DOT_LT] = ACTIONS(935), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(937), + [anon_sym_DOT_DOT_LT2] = ACTIONS(937), + [anon_sym_null] = ACTIONS(937), + [anon_sym_true] = ACTIONS(937), + [anon_sym_false] = ACTIONS(937), + [aux_sym__val_number_decimal_token1] = ACTIONS(935), + [aux_sym__val_number_decimal_token2] = ACTIONS(937), + [aux_sym__val_number_decimal_token3] = ACTIONS(937), + [aux_sym__val_number_decimal_token4] = ACTIONS(937), + [aux_sym__val_number_token1] = ACTIONS(937), + [aux_sym__val_number_token2] = ACTIONS(937), + [aux_sym__val_number_token3] = ACTIONS(937), + [aux_sym__val_number_token4] = ACTIONS(937), + [aux_sym__val_number_token5] = ACTIONS(937), + [aux_sym__val_number_token6] = ACTIONS(937), + [anon_sym_0b] = ACTIONS(935), + [anon_sym_0o] = ACTIONS(935), + [anon_sym_0x] = ACTIONS(935), + [sym_val_date] = ACTIONS(937), + [anon_sym_DQUOTE] = ACTIONS(937), + [sym__str_single_quotes] = ACTIONS(937), + [sym__str_back_ticks] = ACTIONS(937), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(937), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(937), + [anon_sym_DOT2] = ACTIONS(4640), + [anon_sym_err_GT] = ACTIONS(935), + [anon_sym_out_GT] = ACTIONS(935), + [anon_sym_e_GT] = ACTIONS(935), + [anon_sym_o_GT] = ACTIONS(935), + [anon_sym_err_PLUSout_GT] = ACTIONS(935), + [anon_sym_out_PLUSerr_GT] = ACTIONS(935), + [anon_sym_o_PLUSe_GT] = ACTIONS(935), + [anon_sym_e_PLUSo_GT] = ACTIONS(935), + [anon_sym_err_GT_GT] = ACTIONS(937), + [anon_sym_out_GT_GT] = ACTIONS(937), + [anon_sym_e_GT_GT] = ACTIONS(937), + [anon_sym_o_GT_GT] = ACTIONS(937), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(937), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(937), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(937), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(937), + [aux_sym_unquoted_token1] = ACTIONS(935), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(937), }, [1400] = { - [sym__expr_parenthesized_immediate] = STATE(1998), - [sym__immediate_decimal] = STATE(2147), - [sym_val_variable] = STATE(1998), + [sym__match_pattern] = STATE(7361), + [sym__match_pattern_expression] = STATE(7277), + [sym__match_pattern_value] = STATE(7278), + [sym__match_pattern_list] = STATE(7279), + [sym__match_pattern_record] = STATE(7280), + [sym_expr_parenthesized] = STATE(5921), + [sym_val_range] = STATE(7278), + [sym__val_range] = STATE(7833), + [sym_val_nothing] = STATE(7282), + [sym_val_bool] = STATE(7013), + [sym_val_variable] = STATE(5881), + [sym_val_number] = STATE(7282), + [sym__val_number_decimal] = STATE(5514), + [sym__val_number] = STATE(1536), + [sym_val_duration] = STATE(7282), + [sym_val_filesize] = STATE(7282), + [sym_val_binary] = STATE(7282), + [sym_val_string] = STATE(7282), + [sym__raw_str] = STATE(1392), + [sym__str_double_quotes] = STATE(1392), + [sym_val_table] = STATE(7282), + [sym_unquoted] = STATE(6981), + [sym__unquoted_anonymous_prefix] = STATE(7649), [sym_comment] = STATE(1400), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_RPAREN] = ACTIONS(1538), - [anon_sym_DOLLAR] = ACTIONS(3630), - [anon_sym_GT2] = ACTIONS(1536), - [anon_sym_DASH2] = ACTIONS(1536), - [anon_sym_in2] = ACTIONS(1538), - [anon_sym_RBRACE] = ACTIONS(1538), - [anon_sym_STAR2] = ACTIONS(1536), - [anon_sym_and2] = ACTIONS(1538), - [anon_sym_xor2] = ACTIONS(1538), - [anon_sym_or2] = ACTIONS(1538), - [anon_sym_not_DASHin2] = ACTIONS(1538), - [anon_sym_starts_DASHwith2] = ACTIONS(1538), - [anon_sym_ends_DASHwith2] = ACTIONS(1538), - [anon_sym_EQ_EQ2] = ACTIONS(1538), - [anon_sym_BANG_EQ2] = ACTIONS(1538), - [anon_sym_LT2] = ACTIONS(1536), - [anon_sym_LT_EQ2] = ACTIONS(1538), - [anon_sym_GT_EQ2] = ACTIONS(1538), - [anon_sym_EQ_TILDE2] = ACTIONS(1538), - [anon_sym_BANG_TILDE2] = ACTIONS(1538), - [anon_sym_LPAREN2] = ACTIONS(4580), - [anon_sym_STAR_STAR2] = ACTIONS(1538), - [anon_sym_PLUS_PLUS2] = ACTIONS(1538), - [anon_sym_SLASH2] = ACTIONS(1536), - [anon_sym_mod2] = ACTIONS(1538), - [anon_sym_SLASH_SLASH2] = ACTIONS(1538), - [anon_sym_PLUS2] = ACTIONS(1536), - [anon_sym_bit_DASHshl2] = ACTIONS(1538), - [anon_sym_bit_DASHshr2] = ACTIONS(1538), - [anon_sym_bit_DASHand2] = ACTIONS(1538), - [anon_sym_bit_DASHxor2] = ACTIONS(1538), - [anon_sym_bit_DASHor2] = ACTIONS(1538), - [aux_sym__immediate_decimal_token1] = ACTIONS(4656), - [aux_sym__immediate_decimal_token3] = ACTIONS(4656), - [aux_sym__immediate_decimal_token4] = ACTIONS(4658), - [aux_sym__immediate_decimal_token5] = ACTIONS(4660), - [anon_sym_err_GT] = ACTIONS(1536), - [anon_sym_out_GT] = ACTIONS(1536), - [anon_sym_e_GT] = ACTIONS(1536), - [anon_sym_o_GT] = ACTIONS(1536), - [anon_sym_err_PLUSout_GT] = ACTIONS(1536), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), - [anon_sym_o_PLUSe_GT] = ACTIONS(1536), - [anon_sym_e_PLUSo_GT] = ACTIONS(1536), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), - [aux_sym_unquoted_token2] = ACTIONS(1540), - [anon_sym_POUND] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(3616), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym_DOT_DOT] = ACTIONS(4643), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4645), + [anon_sym_DOT_DOT_LT] = ACTIONS(4645), + [anon_sym_null] = ACTIONS(4647), + [anon_sym_true] = ACTIONS(4649), + [anon_sym_false] = ACTIONS(4649), + [aux_sym__val_number_decimal_token1] = ACTIONS(4651), + [aux_sym__val_number_decimal_token2] = ACTIONS(4653), + [aux_sym__val_number_decimal_token3] = ACTIONS(4655), + [aux_sym__val_number_decimal_token4] = ACTIONS(4657), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(4659), + [aux_sym__val_number_token5] = ACTIONS(4659), + [aux_sym__val_number_token6] = ACTIONS(4659), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(4661), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_err_GT] = ACTIONS(2830), + [anon_sym_out_GT] = ACTIONS(2830), + [anon_sym_e_GT] = ACTIONS(2830), + [anon_sym_o_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT] = ACTIONS(2830), + [anon_sym_err_GT_GT] = ACTIONS(2832), + [anon_sym_out_GT_GT] = ACTIONS(2832), + [anon_sym_e_GT_GT] = ACTIONS(2832), + [anon_sym_o_GT_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2832), + [aux_sym_unquoted_token1] = ACTIONS(3538), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [1401] = { [sym_comment] = STATE(1401), - [anon_sym_STAR_STAR] = ACTIONS(3192), - [anon_sym_PLUS_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_mod] = ACTIONS(3192), - [anon_sym_SLASH_SLASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_bit_DASHshl] = ACTIONS(3192), - [anon_sym_bit_DASHshr] = ACTIONS(3192), - [anon_sym_EQ_TILDE] = ACTIONS(3192), - [anon_sym_BANG_TILDE] = ACTIONS(3192), - [anon_sym_bit_DASHand] = ACTIONS(3192), - [anon_sym_bit_DASHxor] = ACTIONS(3192), - [anon_sym_bit_DASHor] = ACTIONS(3192), - [anon_sym_and] = ACTIONS(3192), - [anon_sym_xor] = ACTIONS(3192), - [anon_sym_or] = ACTIONS(3192), - [anon_sym_in] = ACTIONS(3192), - [anon_sym_not_DASHin] = ACTIONS(3192), - [anon_sym_starts_DASHwith] = ACTIONS(3192), - [anon_sym_ends_DASHwith] = ACTIONS(3192), - [anon_sym_EQ_EQ] = ACTIONS(3192), - [anon_sym_BANG_EQ] = ACTIONS(3192), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_LT_EQ] = ACTIONS(3192), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_GT_EQ] = ACTIONS(3192), - [aux_sym_cmd_identifier_token41] = ACTIONS(3196), - [sym__newline] = ACTIONS(2144), - [anon_sym_PIPE] = ACTIONS(2144), - [anon_sym_err_GT_PIPE] = ACTIONS(2144), - [anon_sym_out_GT_PIPE] = ACTIONS(2144), - [anon_sym_e_GT_PIPE] = ACTIONS(2144), - [anon_sym_o_GT_PIPE] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2144), - [anon_sym_GT2] = ACTIONS(2144), - [anon_sym_DASH2] = ACTIONS(2144), - [anon_sym_in2] = ACTIONS(2144), - [anon_sym_STAR2] = ACTIONS(2144), - [anon_sym_and2] = ACTIONS(2144), - [anon_sym_xor2] = ACTIONS(2144), - [anon_sym_or2] = ACTIONS(2144), - [anon_sym_not_DASHin2] = ACTIONS(2144), - [anon_sym_starts_DASHwith2] = ACTIONS(2144), - [anon_sym_ends_DASHwith2] = ACTIONS(2144), - [anon_sym_EQ_EQ2] = ACTIONS(2144), - [anon_sym_BANG_EQ2] = ACTIONS(2144), - [anon_sym_LT2] = ACTIONS(2144), - [anon_sym_LT_EQ2] = ACTIONS(2144), - [anon_sym_GT_EQ2] = ACTIONS(2144), - [anon_sym_EQ_TILDE2] = ACTIONS(2144), - [anon_sym_BANG_TILDE2] = ACTIONS(2144), - [anon_sym_STAR_STAR2] = ACTIONS(2144), - [anon_sym_PLUS_PLUS2] = ACTIONS(2144), - [anon_sym_SLASH2] = ACTIONS(2144), - [anon_sym_mod2] = ACTIONS(2144), - [anon_sym_SLASH_SLASH2] = ACTIONS(2144), - [anon_sym_PLUS2] = ACTIONS(2144), - [anon_sym_bit_DASHshl2] = ACTIONS(2144), - [anon_sym_bit_DASHshr2] = ACTIONS(2144), - [anon_sym_bit_DASHand2] = ACTIONS(2144), - [anon_sym_bit_DASHxor2] = ACTIONS(2144), - [anon_sym_bit_DASHor2] = ACTIONS(2144), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1514), + [sym__newline] = ACTIONS(1514), + [anon_sym_SEMI] = ACTIONS(1514), + [anon_sym_PIPE] = ACTIONS(1514), + [anon_sym_err_GT_PIPE] = ACTIONS(1514), + [anon_sym_out_GT_PIPE] = ACTIONS(1514), + [anon_sym_e_GT_PIPE] = ACTIONS(1514), + [anon_sym_o_GT_PIPE] = ACTIONS(1514), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1514), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1514), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1514), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1514), + [anon_sym_LBRACK] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_DOLLAR] = ACTIONS(1512), + [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_DOT_DOT] = ACTIONS(1512), + [anon_sym_LPAREN2] = ACTIONS(1514), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [anon_sym_null] = ACTIONS(1514), + [anon_sym_true] = ACTIONS(1514), + [anon_sym_false] = ACTIONS(1514), + [aux_sym__val_number_decimal_token1] = ACTIONS(1512), + [aux_sym__val_number_decimal_token2] = ACTIONS(1514), + [aux_sym__val_number_decimal_token3] = ACTIONS(1514), + [aux_sym__val_number_decimal_token4] = ACTIONS(1514), + [aux_sym__val_number_token1] = ACTIONS(1514), + [aux_sym__val_number_token2] = ACTIONS(1514), + [aux_sym__val_number_token3] = ACTIONS(1514), + [aux_sym__val_number_token4] = ACTIONS(1514), + [aux_sym__val_number_token5] = ACTIONS(1514), + [aux_sym__val_number_token6] = ACTIONS(1514), + [anon_sym_0b] = ACTIONS(1512), + [sym_filesize_unit] = ACTIONS(1514), + [sym_duration_unit] = ACTIONS(1514), + [anon_sym_0o] = ACTIONS(1512), + [anon_sym_0x] = ACTIONS(1512), + [sym_val_date] = ACTIONS(1514), + [anon_sym_DQUOTE] = ACTIONS(1514), + [sym__str_single_quotes] = ACTIONS(1514), + [sym__str_back_ticks] = ACTIONS(1514), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1514), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1514), + [anon_sym_err_GT] = ACTIONS(1512), + [anon_sym_out_GT] = ACTIONS(1512), + [anon_sym_e_GT] = ACTIONS(1512), + [anon_sym_o_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT] = ACTIONS(1512), + [anon_sym_err_GT_GT] = ACTIONS(1514), + [anon_sym_out_GT_GT] = ACTIONS(1514), + [anon_sym_e_GT_GT] = ACTIONS(1514), + [anon_sym_o_GT_GT] = ACTIONS(1514), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1514), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1514), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1514), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1514), + [aux_sym_unquoted_token1] = ACTIONS(1512), + [aux_sym_unquoted_token2] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1514), }, [1402] = { - [sym__expr_parenthesized_immediate] = STATE(2078), - [sym__immediate_decimal] = STATE(2129), - [sym_val_variable] = STATE(2078), + [sym__expr_parenthesized_immediate] = STATE(2091), + [sym__immediate_decimal] = STATE(2092), + [sym_val_variable] = STATE(2091), [sym_comment] = STATE(1402), - [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_DOLLAR] = ACTIONS(3630), - [anon_sym_GT2] = ACTIONS(1461), - [anon_sym_DASH2] = ACTIONS(1461), - [anon_sym_in2] = ACTIONS(1475), - [anon_sym_LBRACE] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym_STAR2] = ACTIONS(1461), - [anon_sym_and2] = ACTIONS(1475), - [anon_sym_xor2] = ACTIONS(1475), - [anon_sym_or2] = ACTIONS(1475), - [anon_sym_not_DASHin2] = ACTIONS(1475), - [anon_sym_starts_DASHwith2] = ACTIONS(1475), - [anon_sym_ends_DASHwith2] = ACTIONS(1475), - [anon_sym_EQ_EQ2] = ACTIONS(1475), - [anon_sym_BANG_EQ2] = ACTIONS(1475), - [anon_sym_LT2] = ACTIONS(1461), - [anon_sym_LT_EQ2] = ACTIONS(1475), - [anon_sym_GT_EQ2] = ACTIONS(1475), - [anon_sym_EQ_TILDE2] = ACTIONS(1475), - [anon_sym_BANG_TILDE2] = ACTIONS(1475), - [anon_sym_LPAREN2] = ACTIONS(4580), - [anon_sym_STAR_STAR2] = ACTIONS(1475), - [anon_sym_PLUS_PLUS2] = ACTIONS(1475), - [anon_sym_SLASH2] = ACTIONS(1461), - [anon_sym_mod2] = ACTIONS(1475), - [anon_sym_SLASH_SLASH2] = ACTIONS(1475), - [anon_sym_PLUS2] = ACTIONS(1461), - [anon_sym_bit_DASHshl2] = ACTIONS(1475), - [anon_sym_bit_DASHshr2] = ACTIONS(1475), - [anon_sym_bit_DASHand2] = ACTIONS(1475), - [anon_sym_bit_DASHxor2] = ACTIONS(1475), - [anon_sym_bit_DASHor2] = ACTIONS(1475), - [aux_sym__immediate_decimal_token1] = ACTIONS(4638), - [aux_sym__immediate_decimal_token3] = ACTIONS(4638), - [aux_sym__immediate_decimal_token4] = ACTIONS(4586), - [aux_sym__immediate_decimal_token5] = ACTIONS(4588), - [anon_sym_err_GT] = ACTIONS(1461), - [anon_sym_out_GT] = ACTIONS(1461), - [anon_sym_e_GT] = ACTIONS(1461), - [anon_sym_o_GT] = ACTIONS(1461), - [anon_sym_err_PLUSout_GT] = ACTIONS(1461), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1461), - [anon_sym_o_PLUSe_GT] = ACTIONS(1461), - [anon_sym_e_PLUSo_GT] = ACTIONS(1461), - [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(251), + [ts_builtin_sym_end] = 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_DOLLAR] = ACTIONS(4484), + [anon_sym_GT2] = ACTIONS(1441), + [anon_sym_DASH2] = ACTIONS(1441), + [anon_sym_in2] = ACTIONS(1455), + [anon_sym_STAR2] = ACTIONS(1441), + [anon_sym_and2] = ACTIONS(1455), + [anon_sym_xor2] = ACTIONS(1455), + [anon_sym_or2] = ACTIONS(1455), + [anon_sym_not_DASHin2] = ACTIONS(1455), + [anon_sym_has2] = ACTIONS(1455), + [anon_sym_not_DASHhas2] = ACTIONS(1455), + [anon_sym_starts_DASHwith2] = ACTIONS(1455), + [anon_sym_ends_DASHwith2] = ACTIONS(1455), + [anon_sym_EQ_EQ2] = ACTIONS(1455), + [anon_sym_BANG_EQ2] = ACTIONS(1455), + [anon_sym_LT2] = ACTIONS(1441), + [anon_sym_LT_EQ2] = ACTIONS(1455), + [anon_sym_GT_EQ2] = ACTIONS(1455), + [anon_sym_EQ_TILDE2] = ACTIONS(1455), + [anon_sym_BANG_TILDE2] = ACTIONS(1455), + [anon_sym_LPAREN2] = ACTIONS(4486), + [anon_sym_STAR_STAR2] = ACTIONS(1455), + [anon_sym_PLUS_PLUS2] = ACTIONS(1455), + [anon_sym_SLASH2] = ACTIONS(1441), + [anon_sym_mod2] = ACTIONS(1455), + [anon_sym_SLASH_SLASH2] = ACTIONS(1455), + [anon_sym_PLUS2] = ACTIONS(1441), + [anon_sym_bit_DASHshl2] = ACTIONS(1455), + [anon_sym_bit_DASHshr2] = ACTIONS(1455), + [anon_sym_bit_DASHand2] = ACTIONS(1455), + [anon_sym_bit_DASHxor2] = ACTIONS(1455), + [anon_sym_bit_DASHor2] = ACTIONS(1455), + [anon_sym_DOT] = ACTIONS(4663), + [aux_sym__immediate_decimal_token1] = ACTIONS(4490), + [aux_sym__immediate_decimal_token3] = ACTIONS(4490), + [aux_sym__immediate_decimal_token4] = ACTIONS(4492), + [aux_sym__immediate_decimal_token5] = ACTIONS(4494), + [anon_sym_err_GT] = ACTIONS(1441), + [anon_sym_out_GT] = ACTIONS(1441), + [anon_sym_e_GT] = ACTIONS(1441), + [anon_sym_o_GT] = ACTIONS(1441), + [anon_sym_err_PLUSout_GT] = ACTIONS(1441), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1441), + [anon_sym_o_PLUSe_GT] = ACTIONS(1441), + [anon_sym_e_PLUSo_GT] = ACTIONS(1441), + [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), + [anon_sym_POUND] = ACTIONS(247), }, [1403] = { [sym_comment] = STATE(1403), - [sym__newline] = ACTIONS(1820), - [anon_sym_SEMI] = ACTIONS(1820), - [anon_sym_PIPE] = ACTIONS(1820), - [anon_sym_err_GT_PIPE] = ACTIONS(1820), - [anon_sym_out_GT_PIPE] = ACTIONS(1820), - [anon_sym_e_GT_PIPE] = ACTIONS(1820), - [anon_sym_o_GT_PIPE] = ACTIONS(1820), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1820), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1820), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1820), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1820), - [anon_sym_LBRACK] = ACTIONS(1820), - [anon_sym_LPAREN] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1820), - [anon_sym_DOLLAR] = ACTIONS(1812), - [anon_sym_DASH_DASH] = ACTIONS(1820), - [anon_sym_DASH2] = ACTIONS(1812), - [anon_sym_LBRACE] = ACTIONS(1820), - [anon_sym_RBRACE] = ACTIONS(1820), - [anon_sym_DOT_DOT] = ACTIONS(1812), - [anon_sym_LPAREN2] = ACTIONS(1814), - [anon_sym_DOT_DOT2] = ACTIONS(4662), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1812), - [anon_sym_DOT_DOT_LT] = ACTIONS(1812), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4664), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4664), - [anon_sym_null] = ACTIONS(1820), - [anon_sym_true] = ACTIONS(1820), - [anon_sym_false] = ACTIONS(1820), - [aux_sym__val_number_decimal_token1] = ACTIONS(1812), - [aux_sym__val_number_decimal_token2] = 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), - [aux_sym__val_number_token4] = ACTIONS(1820), - [aux_sym__val_number_token5] = ACTIONS(1820), - [aux_sym__val_number_token6] = ACTIONS(1820), - [anon_sym_0b] = ACTIONS(1812), - [anon_sym_0o] = ACTIONS(1812), - [anon_sym_0x] = ACTIONS(1812), - [sym_val_date] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1820), - [sym__str_single_quotes] = ACTIONS(1820), - [sym__str_back_ticks] = ACTIONS(1820), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1820), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1820), - [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(1820), - [anon_sym_out_GT_GT] = ACTIONS(1820), - [anon_sym_e_GT_GT] = ACTIONS(1820), - [anon_sym_o_GT_GT] = ACTIONS(1820), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1820), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1820), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1820), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1820), - [aux_sym_unquoted_token1] = ACTIONS(1812), - [aux_sym_unquoted_token2] = ACTIONS(1822), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1820), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_RPAREN] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1703), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_DOT_DOT] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1701), + [anon_sym_DOT_DOT_LT] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(4498), + [anon_sym_null] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1703), + [aux_sym__val_number_token5] = ACTIONS(1703), + [aux_sym__val_number_token6] = ACTIONS(1703), + [anon_sym_0b] = ACTIONS(1701), + [anon_sym_0o] = ACTIONS(1701), + [anon_sym_0x] = ACTIONS(1701), + [sym_val_date] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [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(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token1] = ACTIONS(1701), + [aux_sym_unquoted_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1703), }, [1404] = { [sym_comment] = STATE(1404), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1713), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_RPAREN] = ACTIONS(1713), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_DOT_DOT] = ACTIONS(1711), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1711), - [anon_sym_DOT_DOT_LT] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [aux_sym__immediate_decimal_token1] = ACTIONS(4666), - [aux_sym__immediate_decimal_token2] = ACTIONS(4668), - [anon_sym_null] = ACTIONS(1713), - [anon_sym_true] = ACTIONS(1713), - [anon_sym_false] = ACTIONS(1713), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1713), - [aux_sym__val_number_decimal_token3] = ACTIONS(1713), - [aux_sym__val_number_decimal_token4] = ACTIONS(1713), - [aux_sym__val_number_token1] = ACTIONS(1713), - [aux_sym__val_number_token2] = ACTIONS(1713), - [aux_sym__val_number_token3] = ACTIONS(1713), - [aux_sym__val_number_token4] = ACTIONS(1713), - [aux_sym__val_number_token5] = ACTIONS(1713), - [aux_sym__val_number_token6] = ACTIONS(1713), - [anon_sym_0b] = ACTIONS(1711), - [anon_sym_0o] = ACTIONS(1711), - [anon_sym_0x] = ACTIONS(1711), - [sym_val_date] = ACTIONS(1713), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym__str_single_quotes] = ACTIONS(1713), - [sym__str_back_ticks] = ACTIONS(1713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1713), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [aux_sym_unquoted_token1] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1713), + [anon_sym_EQ] = ACTIONS(992), + [anon_sym_PLUS_EQ] = ACTIONS(994), + [anon_sym_DASH_EQ] = ACTIONS(994), + [anon_sym_STAR_EQ] = ACTIONS(994), + [anon_sym_SLASH_EQ] = ACTIONS(994), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(994), + [sym__newline] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(998), + [anon_sym_err_GT_PIPE] = ACTIONS(998), + [anon_sym_out_GT_PIPE] = ACTIONS(998), + [anon_sym_e_GT_PIPE] = ACTIONS(998), + [anon_sym_o_GT_PIPE] = ACTIONS(998), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(998), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(998), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(998), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(998), + [anon_sym_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_in2] = ACTIONS(998), + [anon_sym_RBRACE] = ACTIONS(998), + [anon_sym_STAR2] = ACTIONS(1002), + [anon_sym_and2] = ACTIONS(998), + [anon_sym_xor2] = ACTIONS(998), + [anon_sym_or2] = ACTIONS(998), + [anon_sym_not_DASHin2] = ACTIONS(998), + [anon_sym_has2] = ACTIONS(998), + [anon_sym_not_DASHhas2] = ACTIONS(998), + [anon_sym_starts_DASHwith2] = ACTIONS(998), + [anon_sym_ends_DASHwith2] = ACTIONS(998), + [anon_sym_EQ_EQ2] = ACTIONS(998), + [anon_sym_BANG_EQ2] = ACTIONS(998), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ2] = ACTIONS(998), + [anon_sym_GT_EQ2] = ACTIONS(998), + [anon_sym_EQ_TILDE2] = ACTIONS(998), + [anon_sym_BANG_TILDE2] = ACTIONS(998), + [anon_sym_STAR_STAR2] = ACTIONS(998), + [anon_sym_PLUS_PLUS2] = ACTIONS(1002), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(998), + [anon_sym_SLASH_SLASH2] = ACTIONS(998), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_bit_DASHshl2] = ACTIONS(998), + [anon_sym_bit_DASHshr2] = ACTIONS(998), + [anon_sym_bit_DASHand2] = ACTIONS(998), + [anon_sym_bit_DASHxor2] = ACTIONS(998), + [anon_sym_bit_DASHor2] = ACTIONS(998), + [anon_sym_DOT_DOT2] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), + [anon_sym_COLON2] = ACTIONS(4665), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [anon_sym_err_GT_GT] = ACTIONS(998), + [anon_sym_out_GT_GT] = ACTIONS(998), + [anon_sym_e_GT_GT] = ACTIONS(998), + [anon_sym_o_GT_GT] = ACTIONS(998), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(998), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(998), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(998), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(998), + [anon_sym_POUND] = ACTIONS(247), }, [1405] = { [sym_comment] = STATE(1405), - [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_GT2] = ACTIONS(966), - [anon_sym_DASH2] = ACTIONS(966), - [anon_sym_in2] = ACTIONS(968), - [anon_sym_STAR2] = ACTIONS(966), - [anon_sym_QMARK2] = ACTIONS(4670), - [anon_sym_and2] = ACTIONS(968), - [anon_sym_xor2] = ACTIONS(968), - [anon_sym_or2] = ACTIONS(968), - [anon_sym_not_DASHin2] = ACTIONS(968), - [anon_sym_starts_DASHwith2] = ACTIONS(968), - [anon_sym_ends_DASHwith2] = ACTIONS(968), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(966), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(968), - [anon_sym_STAR_STAR2] = ACTIONS(968), - [anon_sym_PLUS_PLUS2] = ACTIONS(966), - [anon_sym_SLASH2] = ACTIONS(966), - [anon_sym_mod2] = ACTIONS(968), - [anon_sym_SLASH_SLASH2] = ACTIONS(968), - [anon_sym_PLUS2] = ACTIONS(966), - [anon_sym_bit_DASHshl2] = ACTIONS(968), - [anon_sym_bit_DASHshr2] = ACTIONS(968), - [anon_sym_bit_DASHand2] = ACTIONS(968), - [anon_sym_bit_DASHxor2] = ACTIONS(968), - [anon_sym_bit_DASHor2] = ACTIONS(968), - [anon_sym_DOT_DOT2] = ACTIONS(966), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(968), - [anon_sym_DOT_DOT_LT2] = ACTIONS(968), - [anon_sym_DOT2] = 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(251), + [ts_builtin_sym_end] = ACTIONS(1703), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1703), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_DOT_DOT] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT] = ACTIONS(4667), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1701), + [anon_sym_DOT_DOT_LT] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(4669), + [anon_sym_null] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1703), + [aux_sym__val_number_token5] = ACTIONS(1703), + [aux_sym__val_number_token6] = ACTIONS(1703), + [anon_sym_0b] = ACTIONS(1701), + [anon_sym_0o] = ACTIONS(1701), + [anon_sym_0x] = ACTIONS(1701), + [sym_val_date] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [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(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token1] = ACTIONS(1701), + [aux_sym_unquoted_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1703), }, [1406] = { - [sym_path] = STATE(1527), [sym_comment] = STATE(1406), - [aux_sym_cell_path_repeat1] = STATE(1408), - [ts_builtin_sym_end] = ACTIONS(951), - [sym__newline] = ACTIONS(951), - [anon_sym_SEMI] = ACTIONS(951), - [anon_sym_PIPE] = ACTIONS(951), - [anon_sym_err_GT_PIPE] = ACTIONS(951), - [anon_sym_out_GT_PIPE] = ACTIONS(951), - [anon_sym_e_GT_PIPE] = ACTIONS(951), - [anon_sym_o_GT_PIPE] = ACTIONS(951), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(951), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(951), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(951), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(951), - [anon_sym_LBRACK] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(951), - [anon_sym_DOLLAR] = ACTIONS(949), - [anon_sym_DASH_DASH] = ACTIONS(951), - [anon_sym_DASH2] = ACTIONS(949), - [anon_sym_LBRACE] = ACTIONS(951), - [anon_sym_DOT_DOT] = ACTIONS(949), - [anon_sym_DOT_DOT2] = ACTIONS(949), - [anon_sym_DOT_DOT_EQ] = ACTIONS(949), - [anon_sym_DOT_DOT_LT] = ACTIONS(949), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(951), - [anon_sym_DOT_DOT_LT2] = ACTIONS(951), - [anon_sym_null] = ACTIONS(951), - [anon_sym_true] = ACTIONS(951), - [anon_sym_false] = ACTIONS(951), - [aux_sym__val_number_decimal_token1] = ACTIONS(949), - [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), - [aux_sym__val_number_token4] = ACTIONS(951), - [aux_sym__val_number_token5] = ACTIONS(951), - [aux_sym__val_number_token6] = ACTIONS(951), - [anon_sym_0b] = ACTIONS(949), - [anon_sym_0o] = ACTIONS(949), - [anon_sym_0x] = ACTIONS(949), - [sym_val_date] = ACTIONS(951), - [anon_sym_DQUOTE] = ACTIONS(951), - [sym__str_single_quotes] = ACTIONS(951), - [sym__str_back_ticks] = ACTIONS(951), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(951), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(951), - [anon_sym_DOT2] = ACTIONS(4572), - [anon_sym_err_GT] = ACTIONS(949), - [anon_sym_out_GT] = ACTIONS(949), - [anon_sym_e_GT] = ACTIONS(949), - [anon_sym_o_GT] = ACTIONS(949), - [anon_sym_err_PLUSout_GT] = ACTIONS(949), - [anon_sym_out_PLUSerr_GT] = ACTIONS(949), - [anon_sym_o_PLUSe_GT] = ACTIONS(949), - [anon_sym_e_PLUSo_GT] = ACTIONS(949), - [anon_sym_err_GT_GT] = ACTIONS(951), - [anon_sym_out_GT_GT] = ACTIONS(951), - [anon_sym_e_GT_GT] = ACTIONS(951), - [anon_sym_o_GT_GT] = ACTIONS(951), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(951), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(951), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(951), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(951), - [aux_sym_unquoted_token1] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(951), + [sym__newline] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_err_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_GT_PIPE] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1768), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_LPAREN] = ACTIONS(1766), + [anon_sym_RPAREN] = ACTIONS(1768), + [anon_sym_DOLLAR] = ACTIONS(1766), + [anon_sym_DASH_DASH] = ACTIONS(1768), + [anon_sym_DASH2] = ACTIONS(1766), + [anon_sym_LBRACE] = ACTIONS(1768), + [anon_sym_RBRACE] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1766), + [anon_sym_LPAREN2] = ACTIONS(1768), + [anon_sym_DOT_DOT2] = ACTIONS(1766), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1766), + [anon_sym_DOT_DOT_LT] = ACTIONS(1766), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1768), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1768), + [aux_sym__immediate_decimal_token2] = ACTIONS(4671), + [anon_sym_null] = ACTIONS(1768), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [aux_sym__val_number_decimal_token1] = ACTIONS(1766), + [aux_sym__val_number_decimal_token2] = ACTIONS(1768), + [aux_sym__val_number_decimal_token3] = ACTIONS(1768), + [aux_sym__val_number_decimal_token4] = ACTIONS(1768), + [aux_sym__val_number_token1] = ACTIONS(1768), + [aux_sym__val_number_token2] = ACTIONS(1768), + [aux_sym__val_number_token3] = ACTIONS(1768), + [aux_sym__val_number_token4] = ACTIONS(1768), + [aux_sym__val_number_token5] = ACTIONS(1768), + [aux_sym__val_number_token6] = ACTIONS(1768), + [anon_sym_0b] = ACTIONS(1766), + [anon_sym_0o] = ACTIONS(1766), + [anon_sym_0x] = ACTIONS(1766), + [sym_val_date] = ACTIONS(1768), + [anon_sym_DQUOTE] = ACTIONS(1768), + [sym__str_single_quotes] = ACTIONS(1768), + [sym__str_back_ticks] = ACTIONS(1768), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1768), + [anon_sym_err_GT] = ACTIONS(1766), + [anon_sym_out_GT] = ACTIONS(1766), + [anon_sym_e_GT] = ACTIONS(1766), + [anon_sym_o_GT] = ACTIONS(1766), + [anon_sym_err_PLUSout_GT] = ACTIONS(1766), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1766), + [anon_sym_o_PLUSe_GT] = ACTIONS(1766), + [anon_sym_e_PLUSo_GT] = ACTIONS(1766), + [anon_sym_err_GT_GT] = ACTIONS(1768), + [anon_sym_out_GT_GT] = ACTIONS(1768), + [anon_sym_e_GT_GT] = ACTIONS(1768), + [anon_sym_o_GT_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1768), + [aux_sym_unquoted_token1] = ACTIONS(1766), + [aux_sym_unquoted_token2] = ACTIONS(1766), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1768), }, [1407] = { - [sym_path] = STATE(1532), [sym_comment] = STATE(1407), - [aux_sym_cell_path_repeat1] = STATE(1407), - [sym__newline] = ACTIONS(955), - [anon_sym_SEMI] = ACTIONS(955), - [anon_sym_PIPE] = ACTIONS(955), - [anon_sym_err_GT_PIPE] = ACTIONS(955), - [anon_sym_out_GT_PIPE] = ACTIONS(955), - [anon_sym_e_GT_PIPE] = ACTIONS(955), - [anon_sym_o_GT_PIPE] = ACTIONS(955), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(955), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(955), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(955), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(955), - [anon_sym_RPAREN] = ACTIONS(955), - [anon_sym_GT2] = ACTIONS(953), - [anon_sym_DASH2] = ACTIONS(955), - [anon_sym_in2] = ACTIONS(955), - [anon_sym_if] = ACTIONS(955), - [anon_sym_LBRACE] = ACTIONS(955), - [anon_sym_RBRACE] = ACTIONS(955), - [anon_sym_EQ_GT] = ACTIONS(955), - [anon_sym_STAR2] = ACTIONS(953), - [anon_sym_and2] = ACTIONS(955), - [anon_sym_xor2] = ACTIONS(955), - [anon_sym_or2] = ACTIONS(955), - [anon_sym_not_DASHin2] = ACTIONS(955), - [anon_sym_starts_DASHwith2] = ACTIONS(955), - [anon_sym_ends_DASHwith2] = ACTIONS(955), - [anon_sym_EQ_EQ2] = ACTIONS(955), - [anon_sym_BANG_EQ2] = ACTIONS(955), - [anon_sym_LT2] = ACTIONS(953), - [anon_sym_LT_EQ2] = ACTIONS(955), - [anon_sym_GT_EQ2] = ACTIONS(955), - [anon_sym_EQ_TILDE2] = ACTIONS(955), - [anon_sym_BANG_TILDE2] = ACTIONS(955), - [anon_sym_STAR_STAR2] = ACTIONS(955), - [anon_sym_PLUS_PLUS2] = ACTIONS(955), - [anon_sym_SLASH2] = ACTIONS(953), - [anon_sym_mod2] = ACTIONS(955), - [anon_sym_SLASH_SLASH2] = ACTIONS(955), - [anon_sym_PLUS2] = ACTIONS(953), - [anon_sym_bit_DASHshl2] = ACTIONS(955), - [anon_sym_bit_DASHshr2] = ACTIONS(955), - [anon_sym_bit_DASHand2] = ACTIONS(955), - [anon_sym_bit_DASHxor2] = ACTIONS(955), - [anon_sym_bit_DASHor2] = ACTIONS(955), - [anon_sym_DOT_DOT2] = ACTIONS(953), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(955), - [anon_sym_DOT_DOT_LT2] = ACTIONS(955), - [anon_sym_COLON2] = ACTIONS(955), - [anon_sym_DOT2] = ACTIONS(4672), - [anon_sym_err_GT] = ACTIONS(953), - [anon_sym_out_GT] = ACTIONS(953), - [anon_sym_e_GT] = ACTIONS(953), - [anon_sym_o_GT] = ACTIONS(953), - [anon_sym_err_PLUSout_GT] = ACTIONS(953), - [anon_sym_out_PLUSerr_GT] = ACTIONS(953), - [anon_sym_o_PLUSe_GT] = ACTIONS(953), - [anon_sym_e_PLUSo_GT] = ACTIONS(953), - [anon_sym_err_GT_GT] = ACTIONS(955), - [anon_sym_out_GT_GT] = ACTIONS(955), - [anon_sym_e_GT_GT] = ACTIONS(955), - [anon_sym_o_GT_GT] = ACTIONS(955), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(955), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(955), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(955), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(955), - [anon_sym_POUND] = ACTIONS(251), + [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_LBRACK] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1504), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_DASH2] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(1506), + [anon_sym_DOT_DOT] = ACTIONS(1504), + [anon_sym_LPAREN2] = 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), + [anon_sym_null] = ACTIONS(1506), + [anon_sym_true] = ACTIONS(1506), + [anon_sym_false] = ACTIONS(1506), + [aux_sym__val_number_decimal_token1] = ACTIONS(1504), + [aux_sym__val_number_decimal_token2] = ACTIONS(1506), + [aux_sym__val_number_decimal_token3] = ACTIONS(1506), + [aux_sym__val_number_decimal_token4] = ACTIONS(1506), + [aux_sym__val_number_token1] = ACTIONS(1506), + [aux_sym__val_number_token2] = ACTIONS(1506), + [aux_sym__val_number_token3] = ACTIONS(1506), + [aux_sym__val_number_token4] = ACTIONS(1506), + [aux_sym__val_number_token5] = ACTIONS(1506), + [aux_sym__val_number_token6] = 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_token2] = ACTIONS(1504), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1506), }, [1408] = { - [sym_path] = STATE(1527), [sym_comment] = STATE(1408), - [aux_sym_cell_path_repeat1] = STATE(1408), - [ts_builtin_sym_end] = ACTIONS(955), - [sym__newline] = ACTIONS(955), - [anon_sym_SEMI] = ACTIONS(955), - [anon_sym_PIPE] = ACTIONS(955), - [anon_sym_err_GT_PIPE] = ACTIONS(955), - [anon_sym_out_GT_PIPE] = ACTIONS(955), - [anon_sym_e_GT_PIPE] = ACTIONS(955), - [anon_sym_o_GT_PIPE] = ACTIONS(955), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(955), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(955), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(955), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(955), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_LPAREN] = ACTIONS(955), - [anon_sym_DOLLAR] = ACTIONS(953), - [anon_sym_DASH_DASH] = ACTIONS(955), - [anon_sym_DASH2] = ACTIONS(953), - [anon_sym_LBRACE] = ACTIONS(955), - [anon_sym_DOT_DOT] = ACTIONS(953), - [anon_sym_DOT_DOT2] = ACTIONS(953), - [anon_sym_DOT_DOT_EQ] = ACTIONS(953), - [anon_sym_DOT_DOT_LT] = ACTIONS(953), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(955), - [anon_sym_DOT_DOT_LT2] = ACTIONS(955), - [anon_sym_null] = ACTIONS(955), - [anon_sym_true] = ACTIONS(955), - [anon_sym_false] = ACTIONS(955), - [aux_sym__val_number_decimal_token1] = ACTIONS(953), - [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), - [aux_sym__val_number_token4] = ACTIONS(955), - [aux_sym__val_number_token5] = ACTIONS(955), - [aux_sym__val_number_token6] = ACTIONS(955), - [anon_sym_0b] = ACTIONS(953), - [anon_sym_0o] = ACTIONS(953), - [anon_sym_0x] = ACTIONS(953), - [sym_val_date] = ACTIONS(955), - [anon_sym_DQUOTE] = ACTIONS(955), - [sym__str_single_quotes] = ACTIONS(955), - [sym__str_back_ticks] = ACTIONS(955), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(955), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(955), - [anon_sym_DOT2] = ACTIONS(4675), - [anon_sym_err_GT] = ACTIONS(953), - [anon_sym_out_GT] = ACTIONS(953), - [anon_sym_e_GT] = ACTIONS(953), - [anon_sym_o_GT] = ACTIONS(953), - [anon_sym_err_PLUSout_GT] = ACTIONS(953), - [anon_sym_out_PLUSerr_GT] = ACTIONS(953), - [anon_sym_o_PLUSe_GT] = ACTIONS(953), - [anon_sym_e_PLUSo_GT] = ACTIONS(953), - [anon_sym_err_GT_GT] = ACTIONS(955), - [anon_sym_out_GT_GT] = ACTIONS(955), - [anon_sym_e_GT_GT] = ACTIONS(955), - [anon_sym_o_GT_GT] = ACTIONS(955), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(955), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(955), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(955), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(955), - [aux_sym_unquoted_token1] = ACTIONS(953), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(955), + [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), + [anon_sym_GT2] = ACTIONS(986), + [anon_sym_DASH2] = ACTIONS(986), + [anon_sym_in2] = ACTIONS(988), + [anon_sym_STAR2] = ACTIONS(986), + [anon_sym_and2] = ACTIONS(988), + [anon_sym_xor2] = ACTIONS(988), + [anon_sym_or2] = ACTIONS(988), + [anon_sym_not_DASHin2] = ACTIONS(988), + [anon_sym_has2] = ACTIONS(988), + [anon_sym_not_DASHhas2] = ACTIONS(988), + [anon_sym_starts_DASHwith2] = ACTIONS(988), + [anon_sym_ends_DASHwith2] = ACTIONS(988), + [anon_sym_EQ_EQ2] = ACTIONS(988), + [anon_sym_BANG_EQ2] = ACTIONS(988), + [anon_sym_LT2] = ACTIONS(986), + [anon_sym_LT_EQ2] = ACTIONS(988), + [anon_sym_GT_EQ2] = ACTIONS(988), + [anon_sym_EQ_TILDE2] = ACTIONS(988), + [anon_sym_BANG_TILDE2] = ACTIONS(988), + [anon_sym_STAR_STAR2] = ACTIONS(988), + [anon_sym_PLUS_PLUS2] = ACTIONS(986), + [anon_sym_SLASH2] = ACTIONS(986), + [anon_sym_mod2] = ACTIONS(988), + [anon_sym_SLASH_SLASH2] = ACTIONS(988), + [anon_sym_PLUS2] = ACTIONS(986), + [anon_sym_bit_DASHshl2] = ACTIONS(988), + [anon_sym_bit_DASHshr2] = ACTIONS(988), + [anon_sym_bit_DASHand2] = ACTIONS(988), + [anon_sym_bit_DASHxor2] = ACTIONS(988), + [anon_sym_bit_DASHor2] = ACTIONS(988), + [anon_sym_DOT_DOT2] = 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), }, [1409] = { - [sym__expr_parenthesized_immediate] = STATE(2121), - [sym__immediate_decimal] = STATE(1924), - [sym_val_variable] = STATE(2121), [sym_comment] = STATE(1409), - [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_DOLLAR] = ACTIONS(4678), - [anon_sym_GT2] = ACTIONS(1461), - [anon_sym_DASH2] = ACTIONS(1461), - [anon_sym_in2] = ACTIONS(1475), - [anon_sym_STAR2] = ACTIONS(1461), - [anon_sym_and2] = ACTIONS(1475), - [anon_sym_xor2] = ACTIONS(1475), - [anon_sym_or2] = ACTIONS(1475), - [anon_sym_not_DASHin2] = ACTIONS(1475), - [anon_sym_starts_DASHwith2] = ACTIONS(1475), - [anon_sym_ends_DASHwith2] = ACTIONS(1475), - [anon_sym_EQ_EQ2] = ACTIONS(1475), - [anon_sym_BANG_EQ2] = ACTIONS(1475), - [anon_sym_LT2] = ACTIONS(1461), - [anon_sym_LT_EQ2] = ACTIONS(1475), - [anon_sym_GT_EQ2] = ACTIONS(1475), - [anon_sym_EQ_TILDE2] = ACTIONS(1475), - [anon_sym_BANG_TILDE2] = ACTIONS(1475), - [anon_sym_LPAREN2] = ACTIONS(4680), - [anon_sym_STAR_STAR2] = ACTIONS(1475), - [anon_sym_PLUS_PLUS2] = ACTIONS(1475), - [anon_sym_SLASH2] = ACTIONS(1461), - [anon_sym_mod2] = ACTIONS(1475), - [anon_sym_SLASH_SLASH2] = ACTIONS(1475), - [anon_sym_PLUS2] = ACTIONS(1461), - [anon_sym_bit_DASHshl2] = ACTIONS(1475), - [anon_sym_bit_DASHshr2] = ACTIONS(1475), - [anon_sym_bit_DASHand2] = ACTIONS(1475), - [anon_sym_bit_DASHxor2] = ACTIONS(1475), - [anon_sym_bit_DASHor2] = ACTIONS(1475), - [anon_sym_DOT] = ACTIONS(4682), - [aux_sym__immediate_decimal_token1] = ACTIONS(4684), - [aux_sym__immediate_decimal_token3] = ACTIONS(4684), - [aux_sym__immediate_decimal_token4] = ACTIONS(4686), - [aux_sym__immediate_decimal_token5] = ACTIONS(4688), - [anon_sym_err_GT] = ACTIONS(1461), - [anon_sym_out_GT] = ACTIONS(1461), - [anon_sym_e_GT] = ACTIONS(1461), - [anon_sym_o_GT] = ACTIONS(1461), - [anon_sym_err_PLUSout_GT] = ACTIONS(1461), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1461), - [anon_sym_o_PLUSe_GT] = ACTIONS(1461), - [anon_sym_e_PLUSo_GT] = ACTIONS(1461), - [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(1477), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(1514), + [anon_sym_SEMI] = ACTIONS(1514), + [anon_sym_PIPE] = ACTIONS(1514), + [anon_sym_err_GT_PIPE] = ACTIONS(1514), + [anon_sym_out_GT_PIPE] = ACTIONS(1514), + [anon_sym_e_GT_PIPE] = ACTIONS(1514), + [anon_sym_o_GT_PIPE] = ACTIONS(1514), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1514), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1514), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1514), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1514), + [anon_sym_RPAREN] = ACTIONS(1514), + [anon_sym_GT2] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1514), + [anon_sym_in2] = ACTIONS(1514), + [anon_sym_RBRACE] = ACTIONS(1514), + [anon_sym_STAR2] = ACTIONS(1512), + [anon_sym_and2] = ACTIONS(1514), + [anon_sym_xor2] = ACTIONS(1514), + [anon_sym_or2] = ACTIONS(1514), + [anon_sym_not_DASHin2] = ACTIONS(1514), + [anon_sym_has2] = ACTIONS(1514), + [anon_sym_not_DASHhas2] = ACTIONS(1514), + [anon_sym_starts_DASHwith2] = ACTIONS(1514), + [anon_sym_ends_DASHwith2] = ACTIONS(1514), + [anon_sym_EQ_EQ2] = ACTIONS(1514), + [anon_sym_BANG_EQ2] = ACTIONS(1514), + [anon_sym_LT2] = ACTIONS(1512), + [anon_sym_LT_EQ2] = ACTIONS(1514), + [anon_sym_GT_EQ2] = ACTIONS(1514), + [anon_sym_EQ_TILDE2] = ACTIONS(1514), + [anon_sym_BANG_TILDE2] = ACTIONS(1514), + [anon_sym_LPAREN2] = ACTIONS(1514), + [anon_sym_STAR_STAR2] = ACTIONS(1514), + [anon_sym_PLUS_PLUS2] = ACTIONS(1514), + [anon_sym_SLASH2] = ACTIONS(1512), + [anon_sym_mod2] = ACTIONS(1514), + [anon_sym_SLASH_SLASH2] = ACTIONS(1514), + [anon_sym_PLUS2] = ACTIONS(1512), + [anon_sym_bit_DASHshl2] = ACTIONS(1514), + [anon_sym_bit_DASHshr2] = ACTIONS(1514), + [anon_sym_bit_DASHand2] = ACTIONS(1514), + [anon_sym_bit_DASHxor2] = ACTIONS(1514), + [anon_sym_bit_DASHor2] = ACTIONS(1514), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [aux_sym__immediate_decimal_token2] = ACTIONS(4634), + [sym_filesize_unit] = ACTIONS(1512), + [sym_duration_unit] = ACTIONS(1514), + [anon_sym_err_GT] = ACTIONS(1512), + [anon_sym_out_GT] = ACTIONS(1512), + [anon_sym_e_GT] = ACTIONS(1512), + [anon_sym_o_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT] = ACTIONS(1512), + [anon_sym_err_GT_GT] = ACTIONS(1514), + [anon_sym_out_GT_GT] = ACTIONS(1514), + [anon_sym_e_GT_GT] = ACTIONS(1514), + [anon_sym_o_GT_GT] = ACTIONS(1514), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1514), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1514), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1514), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1514), + [aux_sym_unquoted_token2] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(247), }, [1410] = { [sym_comment] = STATE(1410), - [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_GT2] = ACTIONS(976), - [anon_sym_DASH2] = ACTIONS(976), - [anon_sym_in2] = ACTIONS(978), - [anon_sym_STAR2] = ACTIONS(976), - [anon_sym_QMARK2] = ACTIONS(978), - [anon_sym_and2] = ACTIONS(978), - [anon_sym_xor2] = ACTIONS(978), - [anon_sym_or2] = ACTIONS(978), - [anon_sym_not_DASHin2] = ACTIONS(978), - [anon_sym_starts_DASHwith2] = ACTIONS(978), - [anon_sym_ends_DASHwith2] = ACTIONS(978), - [anon_sym_EQ_EQ2] = ACTIONS(978), - [anon_sym_BANG_EQ2] = ACTIONS(978), - [anon_sym_LT2] = ACTIONS(976), - [anon_sym_LT_EQ2] = ACTIONS(978), - [anon_sym_GT_EQ2] = ACTIONS(978), - [anon_sym_EQ_TILDE2] = ACTIONS(978), - [anon_sym_BANG_TILDE2] = ACTIONS(978), - [anon_sym_STAR_STAR2] = ACTIONS(978), - [anon_sym_PLUS_PLUS2] = ACTIONS(976), - [anon_sym_SLASH2] = ACTIONS(976), - [anon_sym_mod2] = ACTIONS(978), - [anon_sym_SLASH_SLASH2] = ACTIONS(978), - [anon_sym_PLUS2] = ACTIONS(976), - [anon_sym_bit_DASHshl2] = ACTIONS(978), - [anon_sym_bit_DASHshr2] = ACTIONS(978), - [anon_sym_bit_DASHand2] = ACTIONS(978), - [anon_sym_bit_DASHxor2] = ACTIONS(978), - [anon_sym_bit_DASHor2] = ACTIONS(978), - [anon_sym_DOT_DOT2] = ACTIONS(976), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), - [anon_sym_DOT_DOT_LT2] = ACTIONS(978), - [anon_sym_DOT2] = 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(251), + [sym__newline] = ACTIONS(958), + [anon_sym_SEMI] = ACTIONS(958), + [anon_sym_PIPE] = ACTIONS(958), + [anon_sym_err_GT_PIPE] = ACTIONS(958), + [anon_sym_out_GT_PIPE] = ACTIONS(958), + [anon_sym_e_GT_PIPE] = ACTIONS(958), + [anon_sym_o_GT_PIPE] = ACTIONS(958), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(958), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(958), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(958), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(958), + [anon_sym_LBRACK] = ACTIONS(958), + [anon_sym_LPAREN] = ACTIONS(958), + [anon_sym_RPAREN] = ACTIONS(958), + [anon_sym_DOLLAR] = ACTIONS(956), + [anon_sym_DASH_DASH] = ACTIONS(958), + [anon_sym_DASH2] = ACTIONS(956), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(958), + [anon_sym_DOT_DOT] = ACTIONS(956), + [anon_sym_QMARK2] = ACTIONS(958), + [anon_sym_DOT_DOT2] = ACTIONS(956), + [anon_sym_DOT_DOT_EQ] = ACTIONS(956), + [anon_sym_DOT_DOT_LT] = ACTIONS(956), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(958), + [anon_sym_DOT_DOT_LT2] = ACTIONS(958), + [anon_sym_null] = ACTIONS(958), + [anon_sym_true] = ACTIONS(958), + [anon_sym_false] = ACTIONS(958), + [aux_sym__val_number_decimal_token1] = ACTIONS(956), + [aux_sym__val_number_decimal_token2] = ACTIONS(958), + [aux_sym__val_number_decimal_token3] = ACTIONS(958), + [aux_sym__val_number_decimal_token4] = ACTIONS(958), + [aux_sym__val_number_token1] = ACTIONS(958), + [aux_sym__val_number_token2] = ACTIONS(958), + [aux_sym__val_number_token3] = ACTIONS(958), + [aux_sym__val_number_token4] = ACTIONS(958), + [aux_sym__val_number_token5] = ACTIONS(958), + [aux_sym__val_number_token6] = ACTIONS(958), + [anon_sym_0b] = ACTIONS(956), + [anon_sym_0o] = ACTIONS(956), + [anon_sym_0x] = ACTIONS(956), + [sym_val_date] = ACTIONS(958), + [anon_sym_DQUOTE] = ACTIONS(958), + [sym__str_single_quotes] = ACTIONS(958), + [sym__str_back_ticks] = ACTIONS(958), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(958), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(958), + [anon_sym_DOT2] = ACTIONS(956), + [anon_sym_err_GT] = ACTIONS(956), + [anon_sym_out_GT] = ACTIONS(956), + [anon_sym_e_GT] = ACTIONS(956), + [anon_sym_o_GT] = ACTIONS(956), + [anon_sym_err_PLUSout_GT] = ACTIONS(956), + [anon_sym_out_PLUSerr_GT] = ACTIONS(956), + [anon_sym_o_PLUSe_GT] = ACTIONS(956), + [anon_sym_e_PLUSo_GT] = ACTIONS(956), + [anon_sym_err_GT_GT] = ACTIONS(958), + [anon_sym_out_GT_GT] = ACTIONS(958), + [anon_sym_e_GT_GT] = ACTIONS(958), + [anon_sym_o_GT_GT] = ACTIONS(958), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(958), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(958), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(958), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(958), + [aux_sym_unquoted_token1] = ACTIONS(956), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(958), }, [1411] = { [sym_comment] = STATE(1411), - [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_DASH2] = ACTIONS(966), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_DOT_DOT] = ACTIONS(966), - [anon_sym_QMARK2] = ACTIONS(4690), - [anon_sym_DOT_DOT2] = 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), - [anon_sym_null] = ACTIONS(968), - [anon_sym_true] = ACTIONS(968), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(968), - [aux_sym__val_number_token5] = ACTIONS(968), - [aux_sym__val_number_token6] = 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_DOT2] = 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), - [aux_sym_unquoted_token1] = ACTIONS(966), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(968), + [sym__newline] = ACTIONS(1620), + [anon_sym_SEMI] = ACTIONS(1620), + [anon_sym_PIPE] = ACTIONS(1620), + [anon_sym_err_GT_PIPE] = ACTIONS(1620), + [anon_sym_out_GT_PIPE] = ACTIONS(1620), + [anon_sym_e_GT_PIPE] = ACTIONS(1620), + [anon_sym_o_GT_PIPE] = ACTIONS(1620), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1620), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1620), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1620), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1620), + [anon_sym_RPAREN] = ACTIONS(1620), + [anon_sym_GT2] = ACTIONS(1618), + [anon_sym_DASH2] = ACTIONS(1620), + [anon_sym_in2] = ACTIONS(1620), + [anon_sym_RBRACE] = ACTIONS(1620), + [anon_sym_STAR2] = ACTIONS(1618), + [anon_sym_and2] = ACTIONS(1620), + [anon_sym_xor2] = ACTIONS(1620), + [anon_sym_or2] = ACTIONS(1620), + [anon_sym_not_DASHin2] = ACTIONS(1620), + [anon_sym_has2] = ACTIONS(1620), + [anon_sym_not_DASHhas2] = ACTIONS(1620), + [anon_sym_starts_DASHwith2] = ACTIONS(1620), + [anon_sym_ends_DASHwith2] = ACTIONS(1620), + [anon_sym_EQ_EQ2] = ACTIONS(1620), + [anon_sym_BANG_EQ2] = ACTIONS(1620), + [anon_sym_LT2] = ACTIONS(1618), + [anon_sym_LT_EQ2] = ACTIONS(1620), + [anon_sym_GT_EQ2] = ACTIONS(1620), + [anon_sym_EQ_TILDE2] = ACTIONS(1620), + [anon_sym_BANG_TILDE2] = ACTIONS(1620), + [anon_sym_LPAREN2] = ACTIONS(1620), + [anon_sym_STAR_STAR2] = ACTIONS(1620), + [anon_sym_PLUS_PLUS2] = ACTIONS(1620), + [anon_sym_SLASH2] = ACTIONS(1618), + [anon_sym_mod2] = ACTIONS(1620), + [anon_sym_SLASH_SLASH2] = ACTIONS(1620), + [anon_sym_PLUS2] = ACTIONS(1618), + [anon_sym_bit_DASHshl2] = ACTIONS(1620), + [anon_sym_bit_DASHshr2] = ACTIONS(1620), + [anon_sym_bit_DASHand2] = ACTIONS(1620), + [anon_sym_bit_DASHxor2] = ACTIONS(1620), + [anon_sym_bit_DASHor2] = ACTIONS(1620), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [aux_sym__immediate_decimal_token2] = ACTIONS(4673), + [sym_filesize_unit] = ACTIONS(1618), + [sym_duration_unit] = ACTIONS(1620), + [anon_sym_err_GT] = ACTIONS(1618), + [anon_sym_out_GT] = ACTIONS(1618), + [anon_sym_e_GT] = ACTIONS(1618), + [anon_sym_o_GT] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT] = ACTIONS(1618), + [anon_sym_err_GT_GT] = ACTIONS(1620), + [anon_sym_out_GT_GT] = ACTIONS(1620), + [anon_sym_e_GT_GT] = ACTIONS(1620), + [anon_sym_o_GT_GT] = ACTIONS(1620), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1620), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1620), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1620), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1620), + [aux_sym_unquoted_token2] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(247), }, [1412] = { [sym_comment] = STATE(1412), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_RPAREN] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1703), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_DOT_DOT] = ACTIONS(1701), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT] = ACTIONS(4675), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1701), + [anon_sym_DOT_DOT_LT] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(4677), + [anon_sym_null] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1703), + [aux_sym__val_number_token5] = ACTIONS(1703), + [aux_sym__val_number_token6] = ACTIONS(1703), + [anon_sym_0b] = ACTIONS(1701), + [anon_sym_0o] = ACTIONS(1701), + [anon_sym_0x] = ACTIONS(1701), + [sym_val_date] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [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(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token1] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1703), + }, + [1413] = { + [sym_comment] = STATE(1413), [sym__newline] = ACTIONS(962), [anon_sym_SEMI] = ACTIONS(962), [anon_sym_PIPE] = ACTIONS(962), @@ -216949,7 +217535,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(962), [anon_sym_RBRACE] = ACTIONS(962), [anon_sym_DOT_DOT] = ACTIONS(960), - [anon_sym_QMARK2] = ACTIONS(4692), + [anon_sym_QMARK2] = ACTIONS(962), [anon_sym_DOT_DOT2] = ACTIONS(960), [anon_sym_DOT_DOT_EQ] = ACTIONS(960), [anon_sym_DOT_DOT_LT] = ACTIONS(960), @@ -216995,2890 +217581,2431 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_GT] = ACTIONS(962), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(962), [aux_sym_unquoted_token1] = ACTIONS(960), - [anon_sym_POUND] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(962), }, - [1413] = { - [sym_comment] = STATE(1413), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1713), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_RPAREN] = ACTIONS(1713), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_DOT_DOT] = ACTIONS(1711), - [anon_sym_LPAREN2] = ACTIONS(1713), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1711), - [anon_sym_DOT_DOT_LT] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [anon_sym_null] = ACTIONS(1713), - [anon_sym_true] = ACTIONS(1713), - [anon_sym_false] = ACTIONS(1713), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1713), - [aux_sym__val_number_decimal_token3] = ACTIONS(1713), - [aux_sym__val_number_decimal_token4] = ACTIONS(1713), - [aux_sym__val_number_token1] = ACTIONS(1713), - [aux_sym__val_number_token2] = ACTIONS(1713), - [aux_sym__val_number_token3] = ACTIONS(1713), - [aux_sym__val_number_token4] = ACTIONS(1713), - [aux_sym__val_number_token5] = ACTIONS(1713), - [aux_sym__val_number_token6] = ACTIONS(1713), - [anon_sym_0b] = ACTIONS(1711), - [anon_sym_0o] = ACTIONS(1711), - [anon_sym_0x] = ACTIONS(1711), - [sym_val_date] = ACTIONS(1713), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym__str_single_quotes] = ACTIONS(1713), - [sym__str_back_ticks] = ACTIONS(1713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1713), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [aux_sym_unquoted_token1] = ACTIONS(1711), - [aux_sym_unquoted_token2] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1713), - }, [1414] = { - [sym__expr_parenthesized_immediate] = STATE(1984), - [sym__immediate_decimal] = STATE(1986), - [sym_val_variable] = STATE(1984), + [sym_path] = STATE(1596), [sym_comment] = STATE(1414), - [sym__newline] = ACTIONS(1626), - [anon_sym_SEMI] = ACTIONS(1626), - [anon_sym_PIPE] = ACTIONS(1626), - [anon_sym_err_GT_PIPE] = ACTIONS(1626), - [anon_sym_out_GT_PIPE] = ACTIONS(1626), - [anon_sym_e_GT_PIPE] = ACTIONS(1626), - [anon_sym_o_GT_PIPE] = ACTIONS(1626), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1626), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1626), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1626), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1626), - [anon_sym_RPAREN] = ACTIONS(1626), - [anon_sym_DOLLAR] = ACTIONS(3630), - [anon_sym_GT2] = ACTIONS(1624), - [anon_sym_DASH2] = ACTIONS(1624), - [anon_sym_in2] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1626), - [anon_sym_STAR2] = ACTIONS(1624), - [anon_sym_and2] = ACTIONS(1626), - [anon_sym_xor2] = ACTIONS(1626), - [anon_sym_or2] = ACTIONS(1626), - [anon_sym_not_DASHin2] = ACTIONS(1626), - [anon_sym_starts_DASHwith2] = ACTIONS(1626), - [anon_sym_ends_DASHwith2] = ACTIONS(1626), - [anon_sym_EQ_EQ2] = ACTIONS(1626), - [anon_sym_BANG_EQ2] = ACTIONS(1626), - [anon_sym_LT2] = ACTIONS(1624), - [anon_sym_LT_EQ2] = ACTIONS(1626), - [anon_sym_GT_EQ2] = ACTIONS(1626), - [anon_sym_EQ_TILDE2] = ACTIONS(1626), - [anon_sym_BANG_TILDE2] = ACTIONS(1626), - [anon_sym_LPAREN2] = ACTIONS(4580), - [anon_sym_STAR_STAR2] = ACTIONS(1626), - [anon_sym_PLUS_PLUS2] = ACTIONS(1626), - [anon_sym_SLASH2] = ACTIONS(1624), - [anon_sym_mod2] = ACTIONS(1626), - [anon_sym_SLASH_SLASH2] = ACTIONS(1626), - [anon_sym_PLUS2] = ACTIONS(1624), - [anon_sym_bit_DASHshl2] = ACTIONS(1626), - [anon_sym_bit_DASHshr2] = ACTIONS(1626), - [anon_sym_bit_DASHand2] = ACTIONS(1626), - [anon_sym_bit_DASHxor2] = ACTIONS(1626), - [anon_sym_bit_DASHor2] = ACTIONS(1626), - [aux_sym__immediate_decimal_token1] = ACTIONS(4638), - [aux_sym__immediate_decimal_token3] = ACTIONS(4638), - [aux_sym__immediate_decimal_token4] = ACTIONS(4586), - [aux_sym__immediate_decimal_token5] = ACTIONS(4588), - [anon_sym_err_GT] = ACTIONS(1624), - [anon_sym_out_GT] = ACTIONS(1624), - [anon_sym_e_GT] = ACTIONS(1624), - [anon_sym_o_GT] = ACTIONS(1624), - [anon_sym_err_PLUSout_GT] = ACTIONS(1624), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1624), - [anon_sym_o_PLUSe_GT] = ACTIONS(1624), - [anon_sym_e_PLUSo_GT] = ACTIONS(1624), - [anon_sym_err_GT_GT] = ACTIONS(1626), - [anon_sym_out_GT_GT] = ACTIONS(1626), - [anon_sym_e_GT_GT] = ACTIONS(1626), - [anon_sym_o_GT_GT] = ACTIONS(1626), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1626), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1626), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1626), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1626), - [anon_sym_POUND] = ACTIONS(251), + [aux_sym_cell_path_repeat1] = STATE(1417), + [ts_builtin_sym_end] = ACTIONS(944), + [sym__newline] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(944), + [anon_sym_err_GT_PIPE] = ACTIONS(944), + [anon_sym_out_GT_PIPE] = ACTIONS(944), + [anon_sym_e_GT_PIPE] = ACTIONS(944), + [anon_sym_o_GT_PIPE] = ACTIONS(944), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(944), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(944), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(944), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(944), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LPAREN] = ACTIONS(944), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_DASH_DASH] = ACTIONS(944), + [anon_sym_DASH2] = ACTIONS(942), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_DOT_DOT] = ACTIONS(942), + [anon_sym_DOT_DOT2] = ACTIONS(942), + [anon_sym_DOT_DOT_EQ] = ACTIONS(942), + [anon_sym_DOT_DOT_LT] = ACTIONS(942), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(944), + [anon_sym_DOT_DOT_LT2] = ACTIONS(944), + [anon_sym_null] = ACTIONS(944), + [anon_sym_true] = ACTIONS(944), + [anon_sym_false] = ACTIONS(944), + [aux_sym__val_number_decimal_token1] = ACTIONS(942), + [aux_sym__val_number_decimal_token2] = ACTIONS(944), + [aux_sym__val_number_decimal_token3] = ACTIONS(944), + [aux_sym__val_number_decimal_token4] = ACTIONS(944), + [aux_sym__val_number_token1] = ACTIONS(944), + [aux_sym__val_number_token2] = ACTIONS(944), + [aux_sym__val_number_token3] = ACTIONS(944), + [aux_sym__val_number_token4] = ACTIONS(944), + [aux_sym__val_number_token5] = ACTIONS(944), + [aux_sym__val_number_token6] = ACTIONS(944), + [anon_sym_0b] = ACTIONS(942), + [anon_sym_0o] = ACTIONS(942), + [anon_sym_0x] = ACTIONS(942), + [sym_val_date] = ACTIONS(944), + [anon_sym_DQUOTE] = ACTIONS(944), + [sym__str_single_quotes] = ACTIONS(944), + [sym__str_back_ticks] = ACTIONS(944), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(944), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(944), + [anon_sym_DOT2] = ACTIONS(4606), + [anon_sym_err_GT] = ACTIONS(942), + [anon_sym_out_GT] = ACTIONS(942), + [anon_sym_e_GT] = ACTIONS(942), + [anon_sym_o_GT] = ACTIONS(942), + [anon_sym_err_PLUSout_GT] = ACTIONS(942), + [anon_sym_out_PLUSerr_GT] = ACTIONS(942), + [anon_sym_o_PLUSe_GT] = ACTIONS(942), + [anon_sym_e_PLUSo_GT] = ACTIONS(942), + [anon_sym_err_GT_GT] = ACTIONS(944), + [anon_sym_out_GT_GT] = ACTIONS(944), + [anon_sym_e_GT_GT] = ACTIONS(944), + [anon_sym_o_GT_GT] = ACTIONS(944), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(944), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(944), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(944), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(944), + [aux_sym_unquoted_token1] = ACTIONS(942), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(944), }, [1415] = { [sym_comment] = STATE(1415), - [ts_builtin_sym_end] = 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_DASH2] = ACTIONS(966), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_DOT_DOT] = ACTIONS(966), - [anon_sym_QMARK2] = ACTIONS(4694), - [anon_sym_DOT_DOT2] = 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), - [anon_sym_null] = ACTIONS(968), - [anon_sym_true] = ACTIONS(968), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(968), - [aux_sym__val_number_token5] = ACTIONS(968), - [aux_sym__val_number_token6] = 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_DOT2] = 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), - [aux_sym_unquoted_token1] = ACTIONS(966), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(968), + [sym__newline] = ACTIONS(980), + [anon_sym_SEMI] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(980), + [anon_sym_err_GT_PIPE] = ACTIONS(980), + [anon_sym_out_GT_PIPE] = ACTIONS(980), + [anon_sym_e_GT_PIPE] = ACTIONS(980), + [anon_sym_o_GT_PIPE] = ACTIONS(980), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(980), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(980), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(980), + [anon_sym_RPAREN] = ACTIONS(980), + [anon_sym_GT2] = ACTIONS(978), + [anon_sym_DASH2] = ACTIONS(980), + [anon_sym_in2] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(980), + [anon_sym_RBRACE] = ACTIONS(980), + [anon_sym_EQ_GT] = ACTIONS(980), + [anon_sym_STAR2] = ACTIONS(978), + [anon_sym_and2] = ACTIONS(980), + [anon_sym_xor2] = ACTIONS(980), + [anon_sym_or2] = ACTIONS(980), + [anon_sym_not_DASHin2] = ACTIONS(980), + [anon_sym_has2] = ACTIONS(980), + [anon_sym_not_DASHhas2] = ACTIONS(980), + [anon_sym_starts_DASHwith2] = ACTIONS(980), + [anon_sym_ends_DASHwith2] = ACTIONS(980), + [anon_sym_EQ_EQ2] = ACTIONS(980), + [anon_sym_BANG_EQ2] = ACTIONS(980), + [anon_sym_LT2] = ACTIONS(978), + [anon_sym_LT_EQ2] = ACTIONS(980), + [anon_sym_GT_EQ2] = ACTIONS(980), + [anon_sym_EQ_TILDE2] = ACTIONS(980), + [anon_sym_BANG_TILDE2] = ACTIONS(980), + [anon_sym_STAR_STAR2] = ACTIONS(980), + [anon_sym_PLUS_PLUS2] = ACTIONS(980), + [anon_sym_SLASH2] = ACTIONS(978), + [anon_sym_mod2] = ACTIONS(980), + [anon_sym_SLASH_SLASH2] = ACTIONS(980), + [anon_sym_PLUS2] = ACTIONS(978), + [anon_sym_bit_DASHshl2] = ACTIONS(980), + [anon_sym_bit_DASHshr2] = ACTIONS(980), + [anon_sym_bit_DASHand2] = ACTIONS(980), + [anon_sym_bit_DASHxor2] = ACTIONS(980), + [anon_sym_bit_DASHor2] = ACTIONS(980), + [anon_sym_DOT_DOT2] = ACTIONS(978), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(980), + [anon_sym_DOT_DOT_LT2] = ACTIONS(980), + [anon_sym_COLON2] = ACTIONS(980), + [anon_sym_DOT2] = ACTIONS(978), + [anon_sym_err_GT] = ACTIONS(978), + [anon_sym_out_GT] = ACTIONS(978), + [anon_sym_e_GT] = ACTIONS(978), + [anon_sym_o_GT] = ACTIONS(978), + [anon_sym_err_PLUSout_GT] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT] = ACTIONS(978), + [anon_sym_o_PLUSe_GT] = ACTIONS(978), + [anon_sym_e_PLUSo_GT] = ACTIONS(978), + [anon_sym_err_GT_GT] = ACTIONS(980), + [anon_sym_out_GT_GT] = ACTIONS(980), + [anon_sym_e_GT_GT] = ACTIONS(980), + [anon_sym_o_GT_GT] = ACTIONS(980), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(980), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(980), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(980), + [anon_sym_POUND] = ACTIONS(247), }, [1416] = { - [sym_cell_path] = STATE(1779), - [sym_path] = STATE(1680), [sym_comment] = STATE(1416), - [aux_sym_cell_path_repeat1] = STATE(1535), - [sym__newline] = ACTIONS(1939), - [anon_sym_SEMI] = ACTIONS(1939), - [anon_sym_PIPE] = ACTIONS(1939), - [anon_sym_err_GT_PIPE] = ACTIONS(1939), - [anon_sym_out_GT_PIPE] = ACTIONS(1939), - [anon_sym_e_GT_PIPE] = ACTIONS(1939), - [anon_sym_o_GT_PIPE] = ACTIONS(1939), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1939), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1939), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1939), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1939), - [anon_sym_LBRACK] = ACTIONS(1939), - [anon_sym_LPAREN] = ACTIONS(1939), - [anon_sym_RPAREN] = ACTIONS(1939), - [anon_sym_DOLLAR] = ACTIONS(1937), - [anon_sym_DASH_DASH] = ACTIONS(1939), - [anon_sym_DASH2] = ACTIONS(1937), - [anon_sym_LBRACE] = ACTIONS(1939), - [anon_sym_RBRACE] = ACTIONS(1939), - [anon_sym_DOT_DOT] = ACTIONS(1937), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1939), - [anon_sym_DOT_DOT_LT] = ACTIONS(1939), - [anon_sym_null] = ACTIONS(1939), - [anon_sym_true] = ACTIONS(1939), - [anon_sym_false] = ACTIONS(1939), - [aux_sym__val_number_decimal_token1] = ACTIONS(1937), - [aux_sym__val_number_decimal_token2] = ACTIONS(1939), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), - [aux_sym__val_number_token1] = ACTIONS(1939), - [aux_sym__val_number_token2] = ACTIONS(1939), - [aux_sym__val_number_token3] = ACTIONS(1939), - [aux_sym__val_number_token4] = ACTIONS(1939), - [aux_sym__val_number_token5] = ACTIONS(1939), - [aux_sym__val_number_token6] = ACTIONS(1939), - [anon_sym_0b] = ACTIONS(1937), - [anon_sym_0o] = ACTIONS(1937), - [anon_sym_0x] = ACTIONS(1937), - [sym_val_date] = ACTIONS(1939), - [anon_sym_DQUOTE] = ACTIONS(1939), - [sym__str_single_quotes] = ACTIONS(1939), - [sym__str_back_ticks] = ACTIONS(1939), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1939), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1939), - [anon_sym_DOT2] = ACTIONS(4696), - [anon_sym_err_GT] = ACTIONS(1937), - [anon_sym_out_GT] = ACTIONS(1937), - [anon_sym_e_GT] = ACTIONS(1937), - [anon_sym_o_GT] = ACTIONS(1937), - [anon_sym_err_PLUSout_GT] = ACTIONS(1937), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1937), - [anon_sym_o_PLUSe_GT] = ACTIONS(1937), - [anon_sym_e_PLUSo_GT] = ACTIONS(1937), - [anon_sym_err_GT_GT] = ACTIONS(1939), - [anon_sym_out_GT_GT] = ACTIONS(1939), - [anon_sym_e_GT_GT] = ACTIONS(1939), - [anon_sym_o_GT_GT] = ACTIONS(1939), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1939), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1939), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1939), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1939), - [aux_sym_unquoted_token1] = ACTIONS(1937), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1939), + [sym__newline] = ACTIONS(976), + [anon_sym_SEMI] = ACTIONS(976), + [anon_sym_PIPE] = ACTIONS(976), + [anon_sym_err_GT_PIPE] = ACTIONS(976), + [anon_sym_out_GT_PIPE] = ACTIONS(976), + [anon_sym_e_GT_PIPE] = ACTIONS(976), + [anon_sym_o_GT_PIPE] = ACTIONS(976), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(976), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(976), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(976), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(976), + [anon_sym_RPAREN] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(974), + [anon_sym_DASH2] = ACTIONS(976), + [anon_sym_in2] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_LBRACE] = ACTIONS(976), + [anon_sym_RBRACE] = ACTIONS(976), + [anon_sym_EQ_GT] = ACTIONS(976), + [anon_sym_STAR2] = ACTIONS(974), + [anon_sym_and2] = ACTIONS(976), + [anon_sym_xor2] = ACTIONS(976), + [anon_sym_or2] = ACTIONS(976), + [anon_sym_not_DASHin2] = ACTIONS(976), + [anon_sym_has2] = ACTIONS(976), + [anon_sym_not_DASHhas2] = ACTIONS(976), + [anon_sym_starts_DASHwith2] = ACTIONS(976), + [anon_sym_ends_DASHwith2] = ACTIONS(976), + [anon_sym_EQ_EQ2] = ACTIONS(976), + [anon_sym_BANG_EQ2] = ACTIONS(976), + [anon_sym_LT2] = ACTIONS(974), + [anon_sym_LT_EQ2] = ACTIONS(976), + [anon_sym_GT_EQ2] = ACTIONS(976), + [anon_sym_EQ_TILDE2] = ACTIONS(976), + [anon_sym_BANG_TILDE2] = ACTIONS(976), + [anon_sym_STAR_STAR2] = ACTIONS(976), + [anon_sym_PLUS_PLUS2] = ACTIONS(976), + [anon_sym_SLASH2] = ACTIONS(974), + [anon_sym_mod2] = ACTIONS(976), + [anon_sym_SLASH_SLASH2] = ACTIONS(976), + [anon_sym_PLUS2] = ACTIONS(974), + [anon_sym_bit_DASHshl2] = ACTIONS(976), + [anon_sym_bit_DASHshr2] = ACTIONS(976), + [anon_sym_bit_DASHand2] = ACTIONS(976), + [anon_sym_bit_DASHxor2] = ACTIONS(976), + [anon_sym_bit_DASHor2] = ACTIONS(976), + [anon_sym_DOT_DOT2] = ACTIONS(974), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(976), + [anon_sym_DOT_DOT_LT2] = ACTIONS(976), + [anon_sym_COLON2] = ACTIONS(976), + [anon_sym_DOT2] = ACTIONS(974), + [anon_sym_err_GT] = ACTIONS(974), + [anon_sym_out_GT] = ACTIONS(974), + [anon_sym_e_GT] = ACTIONS(974), + [anon_sym_o_GT] = ACTIONS(974), + [anon_sym_err_PLUSout_GT] = ACTIONS(974), + [anon_sym_out_PLUSerr_GT] = ACTIONS(974), + [anon_sym_o_PLUSe_GT] = ACTIONS(974), + [anon_sym_e_PLUSo_GT] = ACTIONS(974), + [anon_sym_err_GT_GT] = ACTIONS(976), + [anon_sym_out_GT_GT] = ACTIONS(976), + [anon_sym_e_GT_GT] = ACTIONS(976), + [anon_sym_o_GT_GT] = ACTIONS(976), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(976), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(976), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(976), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(976), + [anon_sym_POUND] = ACTIONS(247), }, [1417] = { + [sym_path] = STATE(1596), [sym_comment] = STATE(1417), - [sym__newline] = ACTIONS(1757), - [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(1755), - [anon_sym_RPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(4700), - [anon_sym_null] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = 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_err_GT] = ACTIONS(1755), - [anon_sym_out_GT] = ACTIONS(1755), - [anon_sym_e_GT] = ACTIONS(1755), - [anon_sym_o_GT] = ACTIONS(1755), - [anon_sym_err_PLUSout_GT] = ACTIONS(1755), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), - [anon_sym_o_PLUSe_GT] = ACTIONS(1755), - [anon_sym_e_PLUSo_GT] = ACTIONS(1755), - [anon_sym_err_GT_GT] = ACTIONS(1757), - [anon_sym_out_GT_GT] = ACTIONS(1757), - [anon_sym_e_GT_GT] = ACTIONS(1757), - [anon_sym_o_GT_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), - [aux_sym_unquoted_token1] = ACTIONS(1755), - [aux_sym_unquoted_token2] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1757), + [aux_sym_cell_path_repeat1] = STATE(1417), + [ts_builtin_sym_end] = ACTIONS(937), + [sym__newline] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(937), + [anon_sym_err_GT_PIPE] = ACTIONS(937), + [anon_sym_out_GT_PIPE] = ACTIONS(937), + [anon_sym_e_GT_PIPE] = ACTIONS(937), + [anon_sym_o_GT_PIPE] = ACTIONS(937), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(937), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(937), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(937), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(937), + [anon_sym_LPAREN] = ACTIONS(937), + [anon_sym_DOLLAR] = ACTIONS(935), + [anon_sym_DASH_DASH] = ACTIONS(937), + [anon_sym_DASH2] = ACTIONS(935), + [anon_sym_LBRACE] = ACTIONS(937), + [anon_sym_DOT_DOT] = ACTIONS(935), + [anon_sym_DOT_DOT2] = ACTIONS(935), + [anon_sym_DOT_DOT_EQ] = ACTIONS(935), + [anon_sym_DOT_DOT_LT] = ACTIONS(935), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(937), + [anon_sym_DOT_DOT_LT2] = ACTIONS(937), + [anon_sym_null] = ACTIONS(937), + [anon_sym_true] = ACTIONS(937), + [anon_sym_false] = ACTIONS(937), + [aux_sym__val_number_decimal_token1] = ACTIONS(935), + [aux_sym__val_number_decimal_token2] = ACTIONS(937), + [aux_sym__val_number_decimal_token3] = ACTIONS(937), + [aux_sym__val_number_decimal_token4] = ACTIONS(937), + [aux_sym__val_number_token1] = ACTIONS(937), + [aux_sym__val_number_token2] = ACTIONS(937), + [aux_sym__val_number_token3] = ACTIONS(937), + [aux_sym__val_number_token4] = ACTIONS(937), + [aux_sym__val_number_token5] = ACTIONS(937), + [aux_sym__val_number_token6] = ACTIONS(937), + [anon_sym_0b] = ACTIONS(935), + [anon_sym_0o] = ACTIONS(935), + [anon_sym_0x] = ACTIONS(935), + [sym_val_date] = ACTIONS(937), + [anon_sym_DQUOTE] = ACTIONS(937), + [sym__str_single_quotes] = ACTIONS(937), + [sym__str_back_ticks] = ACTIONS(937), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(937), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(937), + [anon_sym_DOT2] = ACTIONS(4679), + [anon_sym_err_GT] = ACTIONS(935), + [anon_sym_out_GT] = ACTIONS(935), + [anon_sym_e_GT] = ACTIONS(935), + [anon_sym_o_GT] = ACTIONS(935), + [anon_sym_err_PLUSout_GT] = ACTIONS(935), + [anon_sym_out_PLUSerr_GT] = ACTIONS(935), + [anon_sym_o_PLUSe_GT] = ACTIONS(935), + [anon_sym_e_PLUSo_GT] = ACTIONS(935), + [anon_sym_err_GT_GT] = ACTIONS(937), + [anon_sym_out_GT_GT] = ACTIONS(937), + [anon_sym_e_GT_GT] = ACTIONS(937), + [anon_sym_o_GT_GT] = ACTIONS(937), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(937), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(937), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(937), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(937), + [aux_sym_unquoted_token1] = ACTIONS(935), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(937), }, [1418] = { [sym_comment] = STATE(1418), - [sym__newline] = ACTIONS(974), - [anon_sym_SEMI] = ACTIONS(974), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_err_GT_PIPE] = ACTIONS(974), - [anon_sym_out_GT_PIPE] = ACTIONS(974), - [anon_sym_e_GT_PIPE] = ACTIONS(974), - [anon_sym_o_GT_PIPE] = ACTIONS(974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(974), - [anon_sym_GT2] = ACTIONS(972), - [anon_sym_DASH2] = ACTIONS(974), - [anon_sym_in2] = ACTIONS(974), - [anon_sym_if] = ACTIONS(974), - [anon_sym_LBRACE] = ACTIONS(974), - [anon_sym_RBRACE] = ACTIONS(974), - [anon_sym_EQ_GT] = ACTIONS(974), - [anon_sym_STAR2] = ACTIONS(972), - [anon_sym_QMARK2] = ACTIONS(974), - [anon_sym_and2] = ACTIONS(974), - [anon_sym_xor2] = ACTIONS(974), - [anon_sym_or2] = ACTIONS(974), - [anon_sym_not_DASHin2] = ACTIONS(974), - [anon_sym_starts_DASHwith2] = ACTIONS(974), - [anon_sym_ends_DASHwith2] = ACTIONS(974), - [anon_sym_EQ_EQ2] = ACTIONS(974), - [anon_sym_BANG_EQ2] = ACTIONS(974), - [anon_sym_LT2] = ACTIONS(972), - [anon_sym_LT_EQ2] = ACTIONS(974), - [anon_sym_GT_EQ2] = ACTIONS(974), - [anon_sym_EQ_TILDE2] = ACTIONS(974), - [anon_sym_BANG_TILDE2] = ACTIONS(974), - [anon_sym_STAR_STAR2] = ACTIONS(974), - [anon_sym_PLUS_PLUS2] = ACTIONS(974), - [anon_sym_SLASH2] = ACTIONS(972), - [anon_sym_mod2] = ACTIONS(974), - [anon_sym_SLASH_SLASH2] = ACTIONS(974), - [anon_sym_PLUS2] = ACTIONS(972), - [anon_sym_bit_DASHshl2] = ACTIONS(974), - [anon_sym_bit_DASHshr2] = ACTIONS(974), - [anon_sym_bit_DASHand2] = ACTIONS(974), - [anon_sym_bit_DASHxor2] = ACTIONS(974), - [anon_sym_bit_DASHor2] = ACTIONS(974), - [anon_sym_DOT_DOT2] = ACTIONS(972), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(974), - [anon_sym_DOT_DOT_LT2] = ACTIONS(974), - [anon_sym_COLON2] = ACTIONS(974), - [anon_sym_DOT2] = ACTIONS(972), - [anon_sym_err_GT] = ACTIONS(972), - [anon_sym_out_GT] = ACTIONS(972), - [anon_sym_e_GT] = ACTIONS(972), - [anon_sym_o_GT] = ACTIONS(972), - [anon_sym_err_PLUSout_GT] = ACTIONS(972), - [anon_sym_out_PLUSerr_GT] = ACTIONS(972), - [anon_sym_o_PLUSe_GT] = ACTIONS(972), - [anon_sym_e_PLUSo_GT] = ACTIONS(972), - [anon_sym_err_GT_GT] = ACTIONS(974), - [anon_sym_out_GT_GT] = ACTIONS(974), - [anon_sym_e_GT_GT] = ACTIONS(974), - [anon_sym_o_GT_GT] = ACTIONS(974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(974), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_PIPE] = ACTIONS(966), + [anon_sym_err_GT_PIPE] = ACTIONS(966), + [anon_sym_out_GT_PIPE] = ACTIONS(966), + [anon_sym_e_GT_PIPE] = ACTIONS(966), + [anon_sym_o_GT_PIPE] = ACTIONS(966), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(966), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(966), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_RPAREN] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(964), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_DASH2] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_DOT_DOT] = ACTIONS(964), + [anon_sym_QMARK2] = ACTIONS(966), + [anon_sym_DOT_DOT2] = ACTIONS(964), + [anon_sym_DOT_DOT_EQ] = ACTIONS(964), + [anon_sym_DOT_DOT_LT] = ACTIONS(964), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(966), + [anon_sym_DOT_DOT_LT2] = ACTIONS(966), + [anon_sym_null] = ACTIONS(966), + [anon_sym_true] = ACTIONS(966), + [anon_sym_false] = ACTIONS(966), + [aux_sym__val_number_decimal_token1] = ACTIONS(964), + [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), + [aux_sym__val_number_token4] = ACTIONS(966), + [aux_sym__val_number_token5] = ACTIONS(966), + [aux_sym__val_number_token6] = ACTIONS(966), + [anon_sym_0b] = ACTIONS(964), + [anon_sym_0o] = ACTIONS(964), + [anon_sym_0x] = ACTIONS(964), + [sym_val_date] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym__str_single_quotes] = ACTIONS(966), + [sym__str_back_ticks] = ACTIONS(966), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(966), + [anon_sym_DOT2] = ACTIONS(964), + [anon_sym_err_GT] = ACTIONS(964), + [anon_sym_out_GT] = ACTIONS(964), + [anon_sym_e_GT] = ACTIONS(964), + [anon_sym_o_GT] = ACTIONS(964), + [anon_sym_err_PLUSout_GT] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT] = ACTIONS(964), + [anon_sym_o_PLUSe_GT] = ACTIONS(964), + [anon_sym_e_PLUSo_GT] = ACTIONS(964), + [anon_sym_err_GT_GT] = ACTIONS(966), + [anon_sym_out_GT_GT] = ACTIONS(966), + [anon_sym_e_GT_GT] = ACTIONS(966), + [anon_sym_o_GT_GT] = ACTIONS(966), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(966), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(966), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(966), + [aux_sym_unquoted_token1] = ACTIONS(964), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(966), }, [1419] = { [sym_comment] = STATE(1419), - [sym__newline] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(962), - [anon_sym_PIPE] = ACTIONS(962), - [anon_sym_err_GT_PIPE] = ACTIONS(962), - [anon_sym_out_GT_PIPE] = ACTIONS(962), - [anon_sym_e_GT_PIPE] = ACTIONS(962), - [anon_sym_o_GT_PIPE] = ACTIONS(962), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(962), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(962), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(962), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(962), - [anon_sym_RPAREN] = ACTIONS(962), - [anon_sym_GT2] = ACTIONS(960), - [anon_sym_DASH2] = ACTIONS(962), - [anon_sym_in2] = ACTIONS(962), - [anon_sym_if] = ACTIONS(962), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_RBRACE] = ACTIONS(962), - [anon_sym_EQ_GT] = ACTIONS(962), - [anon_sym_STAR2] = ACTIONS(960), - [anon_sym_QMARK2] = ACTIONS(4702), - [anon_sym_and2] = ACTIONS(962), - [anon_sym_xor2] = ACTIONS(962), - [anon_sym_or2] = ACTIONS(962), - [anon_sym_not_DASHin2] = ACTIONS(962), - [anon_sym_starts_DASHwith2] = ACTIONS(962), - [anon_sym_ends_DASHwith2] = ACTIONS(962), - [anon_sym_EQ_EQ2] = ACTIONS(962), - [anon_sym_BANG_EQ2] = ACTIONS(962), - [anon_sym_LT2] = ACTIONS(960), - [anon_sym_LT_EQ2] = ACTIONS(962), - [anon_sym_GT_EQ2] = ACTIONS(962), - [anon_sym_EQ_TILDE2] = ACTIONS(962), - [anon_sym_BANG_TILDE2] = ACTIONS(962), - [anon_sym_STAR_STAR2] = ACTIONS(962), - [anon_sym_PLUS_PLUS2] = ACTIONS(962), - [anon_sym_SLASH2] = ACTIONS(960), - [anon_sym_mod2] = ACTIONS(962), - [anon_sym_SLASH_SLASH2] = ACTIONS(962), - [anon_sym_PLUS2] = ACTIONS(960), - [anon_sym_bit_DASHshl2] = ACTIONS(962), - [anon_sym_bit_DASHshr2] = ACTIONS(962), - [anon_sym_bit_DASHand2] = ACTIONS(962), - [anon_sym_bit_DASHxor2] = ACTIONS(962), - [anon_sym_bit_DASHor2] = ACTIONS(962), - [anon_sym_DOT_DOT2] = ACTIONS(960), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(962), - [anon_sym_DOT_DOT_LT2] = ACTIONS(962), - [anon_sym_COLON2] = ACTIONS(962), - [anon_sym_DOT2] = ACTIONS(960), - [anon_sym_err_GT] = ACTIONS(960), - [anon_sym_out_GT] = ACTIONS(960), - [anon_sym_e_GT] = ACTIONS(960), - [anon_sym_o_GT] = ACTIONS(960), - [anon_sym_err_PLUSout_GT] = ACTIONS(960), - [anon_sym_out_PLUSerr_GT] = ACTIONS(960), - [anon_sym_o_PLUSe_GT] = ACTIONS(960), - [anon_sym_e_PLUSo_GT] = ACTIONS(960), - [anon_sym_err_GT_GT] = ACTIONS(962), - [anon_sym_out_GT_GT] = ACTIONS(962), - [anon_sym_e_GT_GT] = ACTIONS(962), - [anon_sym_o_GT_GT] = ACTIONS(962), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(962), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(962), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(962), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(962), - [anon_sym_POUND] = ACTIONS(251), + [anon_sym_EQ] = ACTIONS(4682), + [anon_sym_PLUS_EQ] = ACTIONS(4684), + [anon_sym_DASH_EQ] = ACTIONS(4684), + [anon_sym_STAR_EQ] = ACTIONS(4684), + [anon_sym_SLASH_EQ] = ACTIONS(4684), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4684), + [sym__newline] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(998), + [anon_sym_err_GT_PIPE] = ACTIONS(998), + [anon_sym_out_GT_PIPE] = ACTIONS(998), + [anon_sym_e_GT_PIPE] = ACTIONS(998), + [anon_sym_o_GT_PIPE] = ACTIONS(998), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(998), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(998), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(998), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(998), + [anon_sym_RPAREN] = ACTIONS(998), + [anon_sym_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_in2] = ACTIONS(998), + [anon_sym_STAR2] = ACTIONS(1002), + [anon_sym_and2] = ACTIONS(998), + [anon_sym_xor2] = ACTIONS(998), + [anon_sym_or2] = ACTIONS(998), + [anon_sym_not_DASHin2] = ACTIONS(998), + [anon_sym_has2] = ACTIONS(998), + [anon_sym_not_DASHhas2] = ACTIONS(998), + [anon_sym_starts_DASHwith2] = ACTIONS(998), + [anon_sym_ends_DASHwith2] = ACTIONS(998), + [anon_sym_EQ_EQ2] = ACTIONS(998), + [anon_sym_BANG_EQ2] = ACTIONS(998), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ2] = ACTIONS(998), + [anon_sym_GT_EQ2] = ACTIONS(998), + [anon_sym_EQ_TILDE2] = ACTIONS(998), + [anon_sym_BANG_TILDE2] = ACTIONS(998), + [anon_sym_STAR_STAR2] = ACTIONS(998), + [anon_sym_PLUS_PLUS2] = ACTIONS(1002), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(998), + [anon_sym_SLASH_SLASH2] = ACTIONS(998), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_bit_DASHshl2] = ACTIONS(998), + [anon_sym_bit_DASHshr2] = ACTIONS(998), + [anon_sym_bit_DASHand2] = ACTIONS(998), + [anon_sym_bit_DASHxor2] = ACTIONS(998), + [anon_sym_bit_DASHor2] = ACTIONS(998), + [anon_sym_DOT_DOT2] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [anon_sym_err_GT_GT] = ACTIONS(998), + [anon_sym_out_GT_GT] = ACTIONS(998), + [anon_sym_e_GT_GT] = ACTIONS(998), + [anon_sym_o_GT_GT] = ACTIONS(998), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(998), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(998), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(998), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(998), + [anon_sym_POUND] = ACTIONS(247), }, [1420] = { - [sym_cell_path] = STATE(1756), - [sym_path] = STATE(1680), [sym_comment] = STATE(1420), - [aux_sym_cell_path_repeat1] = STATE(1535), - [sym__newline] = ACTIONS(1919), - [anon_sym_SEMI] = ACTIONS(1919), - [anon_sym_PIPE] = ACTIONS(1919), - [anon_sym_err_GT_PIPE] = ACTIONS(1919), - [anon_sym_out_GT_PIPE] = ACTIONS(1919), - [anon_sym_e_GT_PIPE] = ACTIONS(1919), - [anon_sym_o_GT_PIPE] = ACTIONS(1919), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1919), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1919), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1919), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1919), - [anon_sym_LBRACK] = ACTIONS(1919), - [anon_sym_LPAREN] = ACTIONS(1919), - [anon_sym_RPAREN] = ACTIONS(1919), - [anon_sym_DOLLAR] = ACTIONS(1917), - [anon_sym_DASH_DASH] = ACTIONS(1919), - [anon_sym_DASH2] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1919), - [anon_sym_RBRACE] = ACTIONS(1919), - [anon_sym_DOT_DOT] = ACTIONS(1917), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1919), - [anon_sym_DOT_DOT_LT] = ACTIONS(1919), - [anon_sym_null] = ACTIONS(1919), - [anon_sym_true] = ACTIONS(1919), - [anon_sym_false] = ACTIONS(1919), - [aux_sym__val_number_decimal_token1] = ACTIONS(1917), - [aux_sym__val_number_decimal_token2] = ACTIONS(1919), - [aux_sym__val_number_decimal_token3] = ACTIONS(1919), - [aux_sym__val_number_decimal_token4] = ACTIONS(1919), - [aux_sym__val_number_token1] = ACTIONS(1919), - [aux_sym__val_number_token2] = ACTIONS(1919), - [aux_sym__val_number_token3] = ACTIONS(1919), - [aux_sym__val_number_token4] = ACTIONS(1919), - [aux_sym__val_number_token5] = ACTIONS(1919), - [aux_sym__val_number_token6] = ACTIONS(1919), - [anon_sym_0b] = ACTIONS(1917), - [anon_sym_0o] = ACTIONS(1917), - [anon_sym_0x] = ACTIONS(1917), - [sym_val_date] = ACTIONS(1919), - [anon_sym_DQUOTE] = ACTIONS(1919), - [sym__str_single_quotes] = ACTIONS(1919), - [sym__str_back_ticks] = ACTIONS(1919), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1919), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1919), - [anon_sym_DOT2] = ACTIONS(4696), - [anon_sym_err_GT] = ACTIONS(1917), - [anon_sym_out_GT] = ACTIONS(1917), - [anon_sym_e_GT] = ACTIONS(1917), - [anon_sym_o_GT] = ACTIONS(1917), - [anon_sym_err_PLUSout_GT] = ACTIONS(1917), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1917), - [anon_sym_o_PLUSe_GT] = ACTIONS(1917), - [anon_sym_e_PLUSo_GT] = ACTIONS(1917), - [anon_sym_err_GT_GT] = ACTIONS(1919), - [anon_sym_out_GT_GT] = ACTIONS(1919), - [anon_sym_e_GT_GT] = ACTIONS(1919), - [anon_sym_o_GT_GT] = ACTIONS(1919), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1919), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1919), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1919), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1919), - [aux_sym_unquoted_token1] = ACTIONS(1917), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1919), + [sym__newline] = ACTIONS(948), + [anon_sym_SEMI] = ACTIONS(948), + [anon_sym_PIPE] = ACTIONS(948), + [anon_sym_err_GT_PIPE] = ACTIONS(948), + [anon_sym_out_GT_PIPE] = ACTIONS(948), + [anon_sym_e_GT_PIPE] = ACTIONS(948), + [anon_sym_o_GT_PIPE] = ACTIONS(948), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(948), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(948), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(948), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(948), + [anon_sym_LBRACK] = ACTIONS(948), + [anon_sym_LPAREN] = ACTIONS(948), + [anon_sym_RPAREN] = ACTIONS(948), + [anon_sym_DOLLAR] = ACTIONS(946), + [anon_sym_DASH_DASH] = ACTIONS(948), + [anon_sym_DASH2] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(948), + [anon_sym_RBRACE] = ACTIONS(948), + [anon_sym_DOT_DOT] = ACTIONS(946), + [anon_sym_QMARK2] = ACTIONS(948), + [anon_sym_DOT_DOT2] = ACTIONS(946), + [anon_sym_DOT_DOT_EQ] = ACTIONS(946), + [anon_sym_DOT_DOT_LT] = ACTIONS(946), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(948), + [anon_sym_DOT_DOT_LT2] = ACTIONS(948), + [anon_sym_null] = ACTIONS(948), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [aux_sym__val_number_decimal_token1] = ACTIONS(946), + [aux_sym__val_number_decimal_token2] = ACTIONS(948), + [aux_sym__val_number_decimal_token3] = ACTIONS(948), + [aux_sym__val_number_decimal_token4] = ACTIONS(948), + [aux_sym__val_number_token1] = ACTIONS(948), + [aux_sym__val_number_token2] = ACTIONS(948), + [aux_sym__val_number_token3] = ACTIONS(948), + [aux_sym__val_number_token4] = ACTIONS(948), + [aux_sym__val_number_token5] = ACTIONS(948), + [aux_sym__val_number_token6] = ACTIONS(948), + [anon_sym_0b] = ACTIONS(946), + [anon_sym_0o] = ACTIONS(946), + [anon_sym_0x] = ACTIONS(946), + [sym_val_date] = ACTIONS(948), + [anon_sym_DQUOTE] = ACTIONS(948), + [sym__str_single_quotes] = ACTIONS(948), + [sym__str_back_ticks] = ACTIONS(948), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(948), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(948), + [anon_sym_DOT2] = ACTIONS(946), + [anon_sym_err_GT] = ACTIONS(946), + [anon_sym_out_GT] = ACTIONS(946), + [anon_sym_e_GT] = ACTIONS(946), + [anon_sym_o_GT] = ACTIONS(946), + [anon_sym_err_PLUSout_GT] = ACTIONS(946), + [anon_sym_out_PLUSerr_GT] = ACTIONS(946), + [anon_sym_o_PLUSe_GT] = ACTIONS(946), + [anon_sym_e_PLUSo_GT] = ACTIONS(946), + [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(946), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(948), }, [1421] = { - [sym_cell_path] = STATE(1757), - [sym_path] = STATE(1680), [sym_comment] = STATE(1421), - [aux_sym_cell_path_repeat1] = STATE(1535), - [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(1927), - [anon_sym_RPAREN] = ACTIONS(1927), - [anon_sym_DOLLAR] = ACTIONS(1925), - [anon_sym_DASH_DASH] = ACTIONS(1927), - [anon_sym_DASH2] = ACTIONS(1925), - [anon_sym_LBRACE] = ACTIONS(1927), - [anon_sym_RBRACE] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1925), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1927), - [anon_sym_DOT_DOT_LT] = ACTIONS(1927), - [anon_sym_null] = ACTIONS(1927), - [anon_sym_true] = ACTIONS(1927), - [anon_sym_false] = ACTIONS(1927), - [aux_sym__val_number_decimal_token1] = ACTIONS(1925), - [aux_sym__val_number_decimal_token2] = ACTIONS(1927), - [aux_sym__val_number_decimal_token3] = ACTIONS(1927), - [aux_sym__val_number_decimal_token4] = ACTIONS(1927), - [aux_sym__val_number_token1] = ACTIONS(1927), - [aux_sym__val_number_token2] = ACTIONS(1927), - [aux_sym__val_number_token3] = ACTIONS(1927), - [aux_sym__val_number_token4] = ACTIONS(1927), - [aux_sym__val_number_token5] = ACTIONS(1927), - [aux_sym__val_number_token6] = ACTIONS(1927), - [anon_sym_0b] = ACTIONS(1925), - [anon_sym_0o] = ACTIONS(1925), - [anon_sym_0x] = ACTIONS(1925), - [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_DOT2] = ACTIONS(4696), - [anon_sym_err_GT] = ACTIONS(1925), - [anon_sym_out_GT] = ACTIONS(1925), - [anon_sym_e_GT] = ACTIONS(1925), - [anon_sym_o_GT] = ACTIONS(1925), - [anon_sym_err_PLUSout_GT] = ACTIONS(1925), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1925), - [anon_sym_o_PLUSe_GT] = ACTIONS(1925), - [anon_sym_e_PLUSo_GT] = ACTIONS(1925), - [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(1925), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1927), + [sym__newline] = ACTIONS(1824), + [anon_sym_SEMI] = ACTIONS(1824), + [anon_sym_PIPE] = ACTIONS(1824), + [anon_sym_err_GT_PIPE] = ACTIONS(1824), + [anon_sym_out_GT_PIPE] = ACTIONS(1824), + [anon_sym_e_GT_PIPE] = ACTIONS(1824), + [anon_sym_o_GT_PIPE] = ACTIONS(1824), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1824), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1824), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1824), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1824), + [anon_sym_LBRACK] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_RPAREN] = ACTIONS(1824), + [anon_sym_DOLLAR] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1824), + [anon_sym_DASH2] = ACTIONS(1816), + [anon_sym_LBRACE] = ACTIONS(1824), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_DOT_DOT2] = ACTIONS(4686), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1816), + [anon_sym_DOT_DOT_LT] = ACTIONS(1816), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4688), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4688), + [anon_sym_null] = ACTIONS(1824), + [anon_sym_true] = ACTIONS(1824), + [anon_sym_false] = ACTIONS(1824), + [aux_sym__val_number_decimal_token1] = ACTIONS(1816), + [aux_sym__val_number_decimal_token2] = ACTIONS(1824), + [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), + [aux_sym__val_number_token4] = ACTIONS(1824), + [aux_sym__val_number_token5] = ACTIONS(1824), + [aux_sym__val_number_token6] = ACTIONS(1824), + [anon_sym_0b] = ACTIONS(1816), + [anon_sym_0o] = ACTIONS(1816), + [anon_sym_0x] = ACTIONS(1816), + [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_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(1824), + [anon_sym_out_GT_GT] = ACTIONS(1824), + [anon_sym_e_GT_GT] = ACTIONS(1824), + [anon_sym_o_GT_GT] = ACTIONS(1824), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1824), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1824), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1824), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1824), + [aux_sym_unquoted_token1] = ACTIONS(1816), + [aux_sym_unquoted_token2] = ACTIONS(1826), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1824), }, [1422] = { [sym_comment] = STATE(1422), - [sym__newline] = ACTIONS(1757), - [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_DASH_DASH] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1755), - [anon_sym_DOT_DOT_LT] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(4650), - [anon_sym_null] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = 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_err_GT] = ACTIONS(1755), - [anon_sym_out_GT] = ACTIONS(1755), - [anon_sym_e_GT] = ACTIONS(1755), - [anon_sym_o_GT] = ACTIONS(1755), - [anon_sym_err_PLUSout_GT] = ACTIONS(1755), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), - [anon_sym_o_PLUSe_GT] = ACTIONS(1755), - [anon_sym_e_PLUSo_GT] = ACTIONS(1755), - [anon_sym_err_GT_GT] = ACTIONS(1757), - [anon_sym_out_GT_GT] = ACTIONS(1757), - [anon_sym_e_GT_GT] = ACTIONS(1757), - [anon_sym_o_GT_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), - [aux_sym_unquoted_token1] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1757), + [ts_builtin_sym_end] = ACTIONS(998), + [anon_sym_EQ] = ACTIONS(4690), + [anon_sym_PLUS_EQ] = ACTIONS(4692), + [anon_sym_DASH_EQ] = ACTIONS(4692), + [anon_sym_STAR_EQ] = ACTIONS(4692), + [anon_sym_SLASH_EQ] = ACTIONS(4692), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4692), + [sym__newline] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(998), + [anon_sym_err_GT_PIPE] = ACTIONS(998), + [anon_sym_out_GT_PIPE] = ACTIONS(998), + [anon_sym_e_GT_PIPE] = ACTIONS(998), + [anon_sym_o_GT_PIPE] = ACTIONS(998), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(998), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(998), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(998), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(998), + [anon_sym_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_in2] = ACTIONS(998), + [anon_sym_STAR2] = ACTIONS(1002), + [anon_sym_and2] = ACTIONS(998), + [anon_sym_xor2] = ACTIONS(998), + [anon_sym_or2] = ACTIONS(998), + [anon_sym_not_DASHin2] = ACTIONS(998), + [anon_sym_has2] = ACTIONS(998), + [anon_sym_not_DASHhas2] = ACTIONS(998), + [anon_sym_starts_DASHwith2] = ACTIONS(998), + [anon_sym_ends_DASHwith2] = ACTIONS(998), + [anon_sym_EQ_EQ2] = ACTIONS(998), + [anon_sym_BANG_EQ2] = ACTIONS(998), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ2] = ACTIONS(998), + [anon_sym_GT_EQ2] = ACTIONS(998), + [anon_sym_EQ_TILDE2] = ACTIONS(998), + [anon_sym_BANG_TILDE2] = ACTIONS(998), + [anon_sym_STAR_STAR2] = ACTIONS(998), + [anon_sym_PLUS_PLUS2] = ACTIONS(1002), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(998), + [anon_sym_SLASH_SLASH2] = ACTIONS(998), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_bit_DASHshl2] = ACTIONS(998), + [anon_sym_bit_DASHshr2] = ACTIONS(998), + [anon_sym_bit_DASHand2] = ACTIONS(998), + [anon_sym_bit_DASHxor2] = ACTIONS(998), + [anon_sym_bit_DASHor2] = ACTIONS(998), + [anon_sym_DOT_DOT2] = ACTIONS(4694), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4696), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4696), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [anon_sym_err_GT_GT] = ACTIONS(998), + [anon_sym_out_GT_GT] = ACTIONS(998), + [anon_sym_e_GT_GT] = ACTIONS(998), + [anon_sym_o_GT_GT] = ACTIONS(998), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(998), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(998), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(998), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(998), + [anon_sym_POUND] = ACTIONS(247), }, [1423] = { - [sym_cell_path] = STATE(1782), - [sym_path] = STATE(1680), [sym_comment] = STATE(1423), - [aux_sym_cell_path_repeat1] = STATE(1535), - [sym__newline] = ACTIONS(1947), - [anon_sym_SEMI] = ACTIONS(1947), - [anon_sym_PIPE] = ACTIONS(1947), - [anon_sym_err_GT_PIPE] = ACTIONS(1947), - [anon_sym_out_GT_PIPE] = ACTIONS(1947), - [anon_sym_e_GT_PIPE] = ACTIONS(1947), - [anon_sym_o_GT_PIPE] = ACTIONS(1947), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1947), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1947), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1947), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1947), - [anon_sym_LBRACK] = ACTIONS(1947), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_RPAREN] = ACTIONS(1947), - [anon_sym_DOLLAR] = ACTIONS(1945), - [anon_sym_DASH_DASH] = ACTIONS(1947), - [anon_sym_DASH2] = ACTIONS(1945), - [anon_sym_LBRACE] = ACTIONS(1947), - [anon_sym_RBRACE] = ACTIONS(1947), - [anon_sym_DOT_DOT] = ACTIONS(1945), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1947), - [anon_sym_DOT_DOT_LT] = ACTIONS(1947), - [anon_sym_null] = ACTIONS(1947), - [anon_sym_true] = ACTIONS(1947), - [anon_sym_false] = ACTIONS(1947), - [aux_sym__val_number_decimal_token1] = ACTIONS(1945), - [aux_sym__val_number_decimal_token2] = ACTIONS(1947), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(1947), - [aux_sym__val_number_token2] = ACTIONS(1947), - [aux_sym__val_number_token3] = ACTIONS(1947), - [aux_sym__val_number_token4] = ACTIONS(1947), - [aux_sym__val_number_token5] = ACTIONS(1947), - [aux_sym__val_number_token6] = ACTIONS(1947), - [anon_sym_0b] = ACTIONS(1945), - [anon_sym_0o] = ACTIONS(1945), - [anon_sym_0x] = ACTIONS(1945), - [sym_val_date] = ACTIONS(1947), - [anon_sym_DQUOTE] = ACTIONS(1947), - [sym__str_single_quotes] = ACTIONS(1947), - [sym__str_back_ticks] = ACTIONS(1947), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1947), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1947), - [anon_sym_DOT2] = ACTIONS(4696), - [anon_sym_err_GT] = ACTIONS(1945), - [anon_sym_out_GT] = ACTIONS(1945), - [anon_sym_e_GT] = ACTIONS(1945), - [anon_sym_o_GT] = ACTIONS(1945), - [anon_sym_err_PLUSout_GT] = ACTIONS(1945), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1945), - [anon_sym_o_PLUSe_GT] = ACTIONS(1945), - [anon_sym_e_PLUSo_GT] = ACTIONS(1945), - [anon_sym_err_GT_GT] = ACTIONS(1947), - [anon_sym_out_GT_GT] = ACTIONS(1947), - [anon_sym_e_GT_GT] = ACTIONS(1947), - [anon_sym_o_GT_GT] = ACTIONS(1947), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1947), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1947), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1947), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1947), - [aux_sym_unquoted_token1] = ACTIONS(1945), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1947), - }, + [ts_builtin_sym_end] = ACTIONS(1620), + [sym__newline] = ACTIONS(1620), + [anon_sym_SEMI] = ACTIONS(1620), + [anon_sym_PIPE] = ACTIONS(1620), + [anon_sym_err_GT_PIPE] = ACTIONS(1620), + [anon_sym_out_GT_PIPE] = ACTIONS(1620), + [anon_sym_e_GT_PIPE] = ACTIONS(1620), + [anon_sym_o_GT_PIPE] = ACTIONS(1620), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1620), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1620), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1620), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_LPAREN] = ACTIONS(1620), + [anon_sym_DOLLAR] = ACTIONS(1618), + [anon_sym_DASH_DASH] = ACTIONS(1620), + [anon_sym_DASH2] = ACTIONS(1618), + [anon_sym_LBRACE] = ACTIONS(1620), + [anon_sym_DOT_DOT] = ACTIONS(1618), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1618), + [anon_sym_DOT_DOT_LT] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [anon_sym_null] = ACTIONS(1620), + [anon_sym_true] = ACTIONS(1620), + [anon_sym_false] = ACTIONS(1620), + [aux_sym__val_number_decimal_token1] = ACTIONS(1618), + [aux_sym__val_number_decimal_token2] = ACTIONS(1620), + [aux_sym__val_number_decimal_token3] = ACTIONS(1620), + [aux_sym__val_number_decimal_token4] = ACTIONS(1620), + [aux_sym__val_number_token1] = ACTIONS(1620), + [aux_sym__val_number_token2] = ACTIONS(1620), + [aux_sym__val_number_token3] = ACTIONS(1620), + [aux_sym__val_number_token4] = ACTIONS(1620), + [aux_sym__val_number_token5] = ACTIONS(1620), + [aux_sym__val_number_token6] = ACTIONS(1620), + [anon_sym_0b] = ACTIONS(1618), + [sym_filesize_unit] = ACTIONS(1620), + [sym_duration_unit] = ACTIONS(1620), + [anon_sym_0o] = ACTIONS(1618), + [anon_sym_0x] = ACTIONS(1618), + [sym_val_date] = ACTIONS(1620), + [anon_sym_DQUOTE] = ACTIONS(1620), + [sym__str_single_quotes] = ACTIONS(1620), + [sym__str_back_ticks] = ACTIONS(1620), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1620), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1620), + [anon_sym_err_GT] = ACTIONS(1618), + [anon_sym_out_GT] = ACTIONS(1618), + [anon_sym_e_GT] = ACTIONS(1618), + [anon_sym_o_GT] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT] = ACTIONS(1618), + [anon_sym_err_GT_GT] = ACTIONS(1620), + [anon_sym_out_GT_GT] = ACTIONS(1620), + [anon_sym_e_GT_GT] = ACTIONS(1620), + [anon_sym_o_GT_GT] = ACTIONS(1620), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1620), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1620), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1620), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1620), + [aux_sym_unquoted_token1] = ACTIONS(1618), + [aux_sym_unquoted_token2] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1620), + }, [1424] = { + [sym__expr_parenthesized_immediate] = STATE(7382), [sym_comment] = STATE(1424), - [ts_builtin_sym_end] = ACTIONS(974), - [sym__newline] = ACTIONS(974), - [anon_sym_SEMI] = ACTIONS(974), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_err_GT_PIPE] = ACTIONS(974), - [anon_sym_out_GT_PIPE] = ACTIONS(974), - [anon_sym_e_GT_PIPE] = ACTIONS(974), - [anon_sym_o_GT_PIPE] = ACTIONS(974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(974), - [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_DOLLAR] = ACTIONS(972), - [anon_sym_DASH_DASH] = ACTIONS(974), - [anon_sym_DASH2] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(974), - [anon_sym_DOT_DOT] = ACTIONS(972), - [anon_sym_QMARK2] = ACTIONS(974), - [anon_sym_DOT_DOT2] = ACTIONS(972), - [anon_sym_DOT_DOT_EQ] = ACTIONS(972), - [anon_sym_DOT_DOT_LT] = ACTIONS(972), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(974), - [anon_sym_DOT_DOT_LT2] = ACTIONS(974), - [anon_sym_null] = ACTIONS(974), - [anon_sym_true] = ACTIONS(974), - [anon_sym_false] = ACTIONS(974), - [aux_sym__val_number_decimal_token1] = ACTIONS(972), - [aux_sym__val_number_decimal_token2] = ACTIONS(974), - [aux_sym__val_number_decimal_token3] = ACTIONS(974), - [aux_sym__val_number_decimal_token4] = ACTIONS(974), - [aux_sym__val_number_token1] = ACTIONS(974), - [aux_sym__val_number_token2] = ACTIONS(974), - [aux_sym__val_number_token3] = ACTIONS(974), - [aux_sym__val_number_token4] = ACTIONS(974), - [aux_sym__val_number_token5] = ACTIONS(974), - [aux_sym__val_number_token6] = ACTIONS(974), - [anon_sym_0b] = ACTIONS(972), - [anon_sym_0o] = ACTIONS(972), - [anon_sym_0x] = ACTIONS(972), - [sym_val_date] = ACTIONS(974), - [anon_sym_DQUOTE] = ACTIONS(974), - [sym__str_single_quotes] = ACTIONS(974), - [sym__str_back_ticks] = ACTIONS(974), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(974), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(974), - [anon_sym_DOT2] = ACTIONS(972), - [anon_sym_err_GT] = ACTIONS(972), - [anon_sym_out_GT] = ACTIONS(972), - [anon_sym_e_GT] = ACTIONS(972), - [anon_sym_o_GT] = ACTIONS(972), - [anon_sym_err_PLUSout_GT] = ACTIONS(972), - [anon_sym_out_PLUSerr_GT] = ACTIONS(972), - [anon_sym_o_PLUSe_GT] = ACTIONS(972), - [anon_sym_e_PLUSo_GT] = ACTIONS(972), - [anon_sym_err_GT_GT] = ACTIONS(974), - [anon_sym_out_GT_GT] = ACTIONS(974), - [anon_sym_e_GT_GT] = ACTIONS(974), - [anon_sym_o_GT_GT] = ACTIONS(974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(974), - [aux_sym_unquoted_token1] = ACTIONS(972), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(974), + [sym__newline] = ACTIONS(1651), + [anon_sym_SEMI] = ACTIONS(1651), + [anon_sym_PIPE] = ACTIONS(1651), + [anon_sym_err_GT_PIPE] = ACTIONS(1651), + [anon_sym_out_GT_PIPE] = ACTIONS(1651), + [anon_sym_e_GT_PIPE] = ACTIONS(1651), + [anon_sym_o_GT_PIPE] = ACTIONS(1651), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1651), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1651), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1651), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1651), + [anon_sym_RPAREN] = ACTIONS(1651), + [anon_sym_GT2] = ACTIONS(1639), + [anon_sym_DASH2] = ACTIONS(1651), + [anon_sym_in2] = ACTIONS(1651), + [anon_sym_RBRACE] = ACTIONS(1651), + [anon_sym_STAR2] = ACTIONS(1639), + [anon_sym_and2] = ACTIONS(1651), + [anon_sym_xor2] = ACTIONS(1651), + [anon_sym_or2] = ACTIONS(1651), + [anon_sym_not_DASHin2] = ACTIONS(1651), + [anon_sym_has2] = ACTIONS(1651), + [anon_sym_not_DASHhas2] = ACTIONS(1651), + [anon_sym_starts_DASHwith2] = ACTIONS(1651), + [anon_sym_ends_DASHwith2] = ACTIONS(1651), + [anon_sym_EQ_EQ2] = ACTIONS(1651), + [anon_sym_BANG_EQ2] = ACTIONS(1651), + [anon_sym_LT2] = ACTIONS(1639), + [anon_sym_LT_EQ2] = ACTIONS(1651), + [anon_sym_GT_EQ2] = ACTIONS(1651), + [anon_sym_EQ_TILDE2] = ACTIONS(1651), + [anon_sym_BANG_TILDE2] = ACTIONS(1651), + [anon_sym_LPAREN2] = ACTIONS(4452), + [anon_sym_STAR_STAR2] = ACTIONS(1651), + [anon_sym_PLUS_PLUS2] = ACTIONS(1651), + [anon_sym_SLASH2] = ACTIONS(1639), + [anon_sym_mod2] = ACTIONS(1651), + [anon_sym_SLASH_SLASH2] = ACTIONS(1651), + [anon_sym_PLUS2] = ACTIONS(1639), + [anon_sym_bit_DASHshl2] = ACTIONS(1651), + [anon_sym_bit_DASHshr2] = ACTIONS(1651), + [anon_sym_bit_DASHand2] = ACTIONS(1651), + [anon_sym_bit_DASHxor2] = ACTIONS(1651), + [anon_sym_bit_DASHor2] = ACTIONS(1651), + [anon_sym_DOT_DOT2] = ACTIONS(4698), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4700), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4700), + [sym_filesize_unit] = ACTIONS(4702), + [sym_duration_unit] = ACTIONS(4704), + [anon_sym_err_GT] = ACTIONS(1639), + [anon_sym_out_GT] = ACTIONS(1639), + [anon_sym_e_GT] = ACTIONS(1639), + [anon_sym_o_GT] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT] = ACTIONS(1639), + [anon_sym_err_GT_GT] = ACTIONS(1651), + [anon_sym_out_GT_GT] = ACTIONS(1651), + [anon_sym_e_GT_GT] = ACTIONS(1651), + [anon_sym_o_GT_GT] = ACTIONS(1651), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1651), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1651), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1651), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1651), + [aux_sym_unquoted_token2] = ACTIONS(4706), + [anon_sym_POUND] = ACTIONS(247), }, [1425] = { [sym_comment] = STATE(1425), - [ts_builtin_sym_end] = ACTIONS(1757), - [sym__newline] = ACTIONS(1757), - [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_DOLLAR] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT] = ACTIONS(4704), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1755), - [anon_sym_DOT_DOT_LT] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(4706), - [anon_sym_null] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = 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_err_GT] = ACTIONS(1755), - [anon_sym_out_GT] = ACTIONS(1755), - [anon_sym_e_GT] = ACTIONS(1755), - [anon_sym_o_GT] = ACTIONS(1755), - [anon_sym_err_PLUSout_GT] = ACTIONS(1755), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), - [anon_sym_o_PLUSe_GT] = ACTIONS(1755), - [anon_sym_e_PLUSo_GT] = ACTIONS(1755), - [anon_sym_err_GT_GT] = ACTIONS(1757), - [anon_sym_out_GT_GT] = ACTIONS(1757), - [anon_sym_e_GT_GT] = ACTIONS(1757), - [anon_sym_o_GT_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), - [aux_sym_unquoted_token1] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1757), + [ts_builtin_sym_end] = ACTIONS(1691), + [sym__newline] = ACTIONS(1691), + [anon_sym_SEMI] = ACTIONS(1691), + [anon_sym_PIPE] = ACTIONS(1691), + [anon_sym_err_GT_PIPE] = ACTIONS(1691), + [anon_sym_out_GT_PIPE] = ACTIONS(1691), + [anon_sym_e_GT_PIPE] = ACTIONS(1691), + [anon_sym_o_GT_PIPE] = ACTIONS(1691), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1691), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1691), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1691), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1691), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1691), + [anon_sym_DOLLAR] = ACTIONS(1689), + [anon_sym_DASH_DASH] = ACTIONS(1691), + [anon_sym_DASH2] = ACTIONS(1689), + [anon_sym_LBRACE] = ACTIONS(1691), + [anon_sym_DOT_DOT] = ACTIONS(1689), + [anon_sym_DOT_DOT2] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1689), + [anon_sym_DOT_DOT_LT] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1691), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1691), + [anon_sym_null] = ACTIONS(1691), + [anon_sym_true] = ACTIONS(1691), + [anon_sym_false] = ACTIONS(1691), + [aux_sym__val_number_decimal_token1] = ACTIONS(1689), + [aux_sym__val_number_decimal_token2] = ACTIONS(1691), + [aux_sym__val_number_decimal_token3] = ACTIONS(1691), + [aux_sym__val_number_decimal_token4] = ACTIONS(1691), + [aux_sym__val_number_token1] = ACTIONS(1691), + [aux_sym__val_number_token2] = ACTIONS(1691), + [aux_sym__val_number_token3] = ACTIONS(1691), + [aux_sym__val_number_token4] = ACTIONS(1691), + [aux_sym__val_number_token5] = ACTIONS(1691), + [aux_sym__val_number_token6] = ACTIONS(1691), + [anon_sym_0b] = ACTIONS(1689), + [sym_filesize_unit] = ACTIONS(1691), + [sym_duration_unit] = ACTIONS(1691), + [anon_sym_0o] = ACTIONS(1689), + [anon_sym_0x] = ACTIONS(1689), + [sym_val_date] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1691), + [sym__str_single_quotes] = ACTIONS(1691), + [sym__str_back_ticks] = ACTIONS(1691), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1691), + [anon_sym_err_GT] = ACTIONS(1689), + [anon_sym_out_GT] = ACTIONS(1689), + [anon_sym_e_GT] = ACTIONS(1689), + [anon_sym_o_GT] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT] = ACTIONS(1689), + [anon_sym_err_GT_GT] = ACTIONS(1691), + [anon_sym_out_GT_GT] = ACTIONS(1691), + [anon_sym_e_GT_GT] = ACTIONS(1691), + [anon_sym_o_GT_GT] = ACTIONS(1691), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1691), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1691), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1691), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1691), + [aux_sym_unquoted_token1] = ACTIONS(1689), + [aux_sym_unquoted_token2] = ACTIONS(1689), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1691), }, [1426] = { - [sym_cell_path] = STATE(1724), - [sym_path] = STATE(1680), [sym_comment] = STATE(1426), - [aux_sym_cell_path_repeat1] = STATE(1535), - [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_DASH2] = ACTIONS(1895), - [anon_sym_LBRACE] = ACTIONS(1897), - [anon_sym_RBRACE] = ACTIONS(1897), - [anon_sym_DOT_DOT] = ACTIONS(1895), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1897), - [anon_sym_DOT_DOT_LT] = ACTIONS(1897), - [anon_sym_null] = ACTIONS(1897), - [anon_sym_true] = ACTIONS(1897), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(1897), - [aux_sym__val_number_token5] = ACTIONS(1897), - [aux_sym__val_number_token6] = 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_DOT2] = ACTIONS(4696), - [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(251), - [sym_raw_string_begin] = ACTIONS(1897), + [ts_builtin_sym_end] = ACTIONS(1651), + [sym__newline] = ACTIONS(1651), + [anon_sym_SEMI] = ACTIONS(1651), + [anon_sym_PIPE] = ACTIONS(1651), + [anon_sym_err_GT_PIPE] = ACTIONS(1651), + [anon_sym_out_GT_PIPE] = ACTIONS(1651), + [anon_sym_e_GT_PIPE] = ACTIONS(1651), + [anon_sym_o_GT_PIPE] = ACTIONS(1651), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1651), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1651), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1651), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1651), + [anon_sym_LPAREN] = ACTIONS(1651), + [anon_sym_DOLLAR] = ACTIONS(1639), + [anon_sym_DASH_DASH] = ACTIONS(1651), + [anon_sym_DASH2] = ACTIONS(1639), + [anon_sym_LBRACE] = ACTIONS(1651), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_DOT_DOT2] = ACTIONS(4608), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1639), + [anon_sym_DOT_DOT_LT] = ACTIONS(1639), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4610), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4610), + [anon_sym_null] = ACTIONS(1651), + [anon_sym_true] = ACTIONS(1651), + [anon_sym_false] = ACTIONS(1651), + [aux_sym__val_number_decimal_token1] = ACTIONS(1639), + [aux_sym__val_number_decimal_token2] = ACTIONS(1651), + [aux_sym__val_number_decimal_token3] = ACTIONS(1651), + [aux_sym__val_number_decimal_token4] = ACTIONS(1651), + [aux_sym__val_number_token1] = ACTIONS(1651), + [aux_sym__val_number_token2] = ACTIONS(1651), + [aux_sym__val_number_token3] = ACTIONS(1651), + [aux_sym__val_number_token4] = ACTIONS(1651), + [aux_sym__val_number_token5] = ACTIONS(1651), + [aux_sym__val_number_token6] = ACTIONS(1651), + [anon_sym_0b] = ACTIONS(1639), + [sym_filesize_unit] = ACTIONS(4708), + [sym_duration_unit] = ACTIONS(4710), + [anon_sym_0o] = ACTIONS(1639), + [anon_sym_0x] = ACTIONS(1639), + [sym_val_date] = ACTIONS(1651), + [anon_sym_DQUOTE] = ACTIONS(1651), + [sym__str_single_quotes] = ACTIONS(1651), + [sym__str_back_ticks] = ACTIONS(1651), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1651), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1651), + [anon_sym_err_GT] = ACTIONS(1639), + [anon_sym_out_GT] = ACTIONS(1639), + [anon_sym_e_GT] = ACTIONS(1639), + [anon_sym_o_GT] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT] = ACTIONS(1639), + [anon_sym_err_GT_GT] = ACTIONS(1651), + [anon_sym_out_GT_GT] = ACTIONS(1651), + [anon_sym_e_GT_GT] = ACTIONS(1651), + [anon_sym_o_GT_GT] = ACTIONS(1651), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1651), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1651), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1651), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1651), + [aux_sym_unquoted_token1] = ACTIONS(1639), + [aux_sym_unquoted_token2] = ACTIONS(4712), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1651), }, [1427] = { [sym_comment] = STATE(1427), - [sym__newline] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_PIPE] = ACTIONS(990), - [anon_sym_err_GT_PIPE] = ACTIONS(990), - [anon_sym_out_GT_PIPE] = ACTIONS(990), - [anon_sym_e_GT_PIPE] = ACTIONS(990), - [anon_sym_o_GT_PIPE] = ACTIONS(990), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(990), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(990), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(990), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(990), - [anon_sym_RPAREN] = ACTIONS(990), - [anon_sym_DOLLAR] = ACTIONS(988), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_DASH2] = ACTIONS(988), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(990), - [anon_sym_DOT_DOT] = ACTIONS(988), - [anon_sym_DOT_DOT2] = ACTIONS(988), - [anon_sym_DOT_DOT_EQ] = ACTIONS(988), - [anon_sym_DOT_DOT_LT] = ACTIONS(988), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(990), - [anon_sym_DOT_DOT_LT2] = ACTIONS(990), - [anon_sym_null] = ACTIONS(990), - [anon_sym_true] = ACTIONS(990), - [anon_sym_false] = ACTIONS(990), - [aux_sym__val_number_decimal_token1] = ACTIONS(988), - [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), - [aux_sym__val_number_token4] = ACTIONS(990), - [aux_sym__val_number_token5] = ACTIONS(990), - [aux_sym__val_number_token6] = ACTIONS(990), - [anon_sym_0b] = ACTIONS(988), - [anon_sym_0o] = ACTIONS(988), - [anon_sym_0x] = ACTIONS(988), - [sym_val_date] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym__str_single_quotes] = ACTIONS(990), - [sym__str_back_ticks] = ACTIONS(990), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(990), - [anon_sym_DOT2] = ACTIONS(988), - [anon_sym_err_GT] = ACTIONS(988), - [anon_sym_out_GT] = ACTIONS(988), - [anon_sym_e_GT] = ACTIONS(988), - [anon_sym_o_GT] = ACTIONS(988), - [anon_sym_err_PLUSout_GT] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT] = ACTIONS(988), - [anon_sym_o_PLUSe_GT] = ACTIONS(988), - [anon_sym_e_PLUSo_GT] = ACTIONS(988), - [anon_sym_err_GT_GT] = ACTIONS(990), - [anon_sym_out_GT_GT] = ACTIONS(990), - [anon_sym_e_GT_GT] = ACTIONS(990), - [anon_sym_o_GT_GT] = ACTIONS(990), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(990), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(990), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(990), - [aux_sym_unquoted_token1] = ACTIONS(988), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(990), + [ts_builtin_sym_end] = ACTIONS(1514), + [sym__newline] = ACTIONS(1514), + [anon_sym_SEMI] = ACTIONS(1514), + [anon_sym_PIPE] = ACTIONS(1514), + [anon_sym_err_GT_PIPE] = ACTIONS(1514), + [anon_sym_out_GT_PIPE] = ACTIONS(1514), + [anon_sym_e_GT_PIPE] = ACTIONS(1514), + [anon_sym_o_GT_PIPE] = ACTIONS(1514), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1514), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1514), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1514), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1514), + [anon_sym_LBRACK] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_DOLLAR] = ACTIONS(1512), + [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_DOT_DOT] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [anon_sym_null] = ACTIONS(1514), + [anon_sym_true] = ACTIONS(1514), + [anon_sym_false] = ACTIONS(1514), + [aux_sym__val_number_decimal_token1] = ACTIONS(1512), + [aux_sym__val_number_decimal_token2] = ACTIONS(1514), + [aux_sym__val_number_decimal_token3] = ACTIONS(1514), + [aux_sym__val_number_decimal_token4] = ACTIONS(1514), + [aux_sym__val_number_token1] = ACTIONS(1514), + [aux_sym__val_number_token2] = ACTIONS(1514), + [aux_sym__val_number_token3] = ACTIONS(1514), + [aux_sym__val_number_token4] = ACTIONS(1514), + [aux_sym__val_number_token5] = ACTIONS(1514), + [aux_sym__val_number_token6] = ACTIONS(1514), + [anon_sym_0b] = ACTIONS(1512), + [sym_filesize_unit] = ACTIONS(1514), + [sym_duration_unit] = ACTIONS(1514), + [anon_sym_0o] = ACTIONS(1512), + [anon_sym_0x] = ACTIONS(1512), + [sym_val_date] = ACTIONS(1514), + [anon_sym_DQUOTE] = ACTIONS(1514), + [sym__str_single_quotes] = ACTIONS(1514), + [sym__str_back_ticks] = ACTIONS(1514), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1514), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1514), + [anon_sym_err_GT] = ACTIONS(1512), + [anon_sym_out_GT] = ACTIONS(1512), + [anon_sym_e_GT] = ACTIONS(1512), + [anon_sym_o_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT] = ACTIONS(1512), + [anon_sym_err_GT_GT] = ACTIONS(1514), + [anon_sym_out_GT_GT] = ACTIONS(1514), + [anon_sym_e_GT_GT] = ACTIONS(1514), + [anon_sym_o_GT_GT] = ACTIONS(1514), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1514), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1514), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1514), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1514), + [aux_sym_unquoted_token1] = ACTIONS(1512), + [aux_sym_unquoted_token2] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1514), }, [1428] = { [sym_comment] = STATE(1428), - [ts_builtin_sym_end] = ACTIONS(962), - [sym__newline] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(962), - [anon_sym_PIPE] = ACTIONS(962), - [anon_sym_err_GT_PIPE] = ACTIONS(962), - [anon_sym_out_GT_PIPE] = ACTIONS(962), - [anon_sym_e_GT_PIPE] = ACTIONS(962), - [anon_sym_o_GT_PIPE] = ACTIONS(962), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(962), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(962), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(962), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(962), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LPAREN] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(962), - [anon_sym_DASH2] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_DOT_DOT] = ACTIONS(960), - [anon_sym_QMARK2] = ACTIONS(4708), - [anon_sym_DOT_DOT2] = ACTIONS(960), - [anon_sym_DOT_DOT_EQ] = ACTIONS(960), - [anon_sym_DOT_DOT_LT] = ACTIONS(960), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(962), - [anon_sym_DOT_DOT_LT2] = ACTIONS(962), - [anon_sym_null] = ACTIONS(962), - [anon_sym_true] = ACTIONS(962), - [anon_sym_false] = ACTIONS(962), - [aux_sym__val_number_decimal_token1] = ACTIONS(960), - [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), - [aux_sym__val_number_token4] = ACTIONS(962), - [aux_sym__val_number_token5] = ACTIONS(962), - [aux_sym__val_number_token6] = ACTIONS(962), - [anon_sym_0b] = ACTIONS(960), - [anon_sym_0o] = ACTIONS(960), - [anon_sym_0x] = ACTIONS(960), - [sym_val_date] = ACTIONS(962), - [anon_sym_DQUOTE] = ACTIONS(962), - [sym__str_single_quotes] = ACTIONS(962), - [sym__str_back_ticks] = ACTIONS(962), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(962), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(962), - [anon_sym_DOT2] = ACTIONS(960), - [anon_sym_err_GT] = ACTIONS(960), - [anon_sym_out_GT] = ACTIONS(960), - [anon_sym_e_GT] = ACTIONS(960), - [anon_sym_o_GT] = ACTIONS(960), - [anon_sym_err_PLUSout_GT] = ACTIONS(960), - [anon_sym_out_PLUSerr_GT] = ACTIONS(960), - [anon_sym_o_PLUSe_GT] = ACTIONS(960), - [anon_sym_e_PLUSo_GT] = ACTIONS(960), - [anon_sym_err_GT_GT] = ACTIONS(962), - [anon_sym_out_GT_GT] = ACTIONS(962), - [anon_sym_e_GT_GT] = ACTIONS(962), - [anon_sym_o_GT_GT] = ACTIONS(962), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(962), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(962), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(962), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(962), - [aux_sym_unquoted_token1] = ACTIONS(960), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(962), + [sym__newline] = ACTIONS(984), + [anon_sym_SEMI] = ACTIONS(984), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_err_GT_PIPE] = ACTIONS(984), + [anon_sym_out_GT_PIPE] = ACTIONS(984), + [anon_sym_e_GT_PIPE] = ACTIONS(984), + [anon_sym_o_GT_PIPE] = ACTIONS(984), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(984), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(984), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(984), + [anon_sym_RPAREN] = ACTIONS(984), + [anon_sym_GT2] = ACTIONS(982), + [anon_sym_DASH2] = ACTIONS(984), + [anon_sym_in2] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_RBRACE] = ACTIONS(984), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_STAR2] = ACTIONS(982), + [anon_sym_and2] = ACTIONS(984), + [anon_sym_xor2] = ACTIONS(984), + [anon_sym_or2] = ACTIONS(984), + [anon_sym_not_DASHin2] = ACTIONS(984), + [anon_sym_has2] = ACTIONS(984), + [anon_sym_not_DASHhas2] = ACTIONS(984), + [anon_sym_starts_DASHwith2] = ACTIONS(984), + [anon_sym_ends_DASHwith2] = ACTIONS(984), + [anon_sym_EQ_EQ2] = ACTIONS(984), + [anon_sym_BANG_EQ2] = ACTIONS(984), + [anon_sym_LT2] = ACTIONS(982), + [anon_sym_LT_EQ2] = ACTIONS(984), + [anon_sym_GT_EQ2] = ACTIONS(984), + [anon_sym_EQ_TILDE2] = ACTIONS(984), + [anon_sym_BANG_TILDE2] = ACTIONS(984), + [anon_sym_STAR_STAR2] = ACTIONS(984), + [anon_sym_PLUS_PLUS2] = ACTIONS(984), + [anon_sym_SLASH2] = ACTIONS(982), + [anon_sym_mod2] = ACTIONS(984), + [anon_sym_SLASH_SLASH2] = ACTIONS(984), + [anon_sym_PLUS2] = ACTIONS(982), + [anon_sym_bit_DASHshl2] = ACTIONS(984), + [anon_sym_bit_DASHshr2] = ACTIONS(984), + [anon_sym_bit_DASHand2] = ACTIONS(984), + [anon_sym_bit_DASHxor2] = ACTIONS(984), + [anon_sym_bit_DASHor2] = ACTIONS(984), + [anon_sym_DOT_DOT2] = ACTIONS(982), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(984), + [anon_sym_DOT_DOT_LT2] = ACTIONS(984), + [anon_sym_COLON2] = ACTIONS(984), + [anon_sym_DOT2] = ACTIONS(982), + [anon_sym_err_GT] = ACTIONS(982), + [anon_sym_out_GT] = ACTIONS(982), + [anon_sym_e_GT] = ACTIONS(982), + [anon_sym_o_GT] = ACTIONS(982), + [anon_sym_err_PLUSout_GT] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT] = ACTIONS(982), + [anon_sym_o_PLUSe_GT] = ACTIONS(982), + [anon_sym_e_PLUSo_GT] = ACTIONS(982), + [anon_sym_err_GT_GT] = ACTIONS(984), + [anon_sym_out_GT_GT] = ACTIONS(984), + [anon_sym_e_GT_GT] = ACTIONS(984), + [anon_sym_o_GT_GT] = ACTIONS(984), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(984), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(984), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(984), + [anon_sym_POUND] = ACTIONS(247), }, [1429] = { [sym_comment] = STATE(1429), - [ts_builtin_sym_end] = 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_DASH2] = ACTIONS(976), - [anon_sym_LBRACE] = ACTIONS(978), - [anon_sym_DOT_DOT] = ACTIONS(976), - [anon_sym_QMARK2] = ACTIONS(978), - [anon_sym_DOT_DOT2] = 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), - [anon_sym_null] = ACTIONS(978), - [anon_sym_true] = ACTIONS(978), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(978), - [aux_sym__val_number_token5] = ACTIONS(978), - [aux_sym__val_number_token6] = 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_DOT2] = 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), - [aux_sym_unquoted_token1] = ACTIONS(976), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(978), + [anon_sym_EQ] = ACTIONS(992), + [anon_sym_PLUS_EQ] = ACTIONS(994), + [anon_sym_DASH_EQ] = ACTIONS(994), + [anon_sym_STAR_EQ] = ACTIONS(994), + [anon_sym_SLASH_EQ] = ACTIONS(994), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(994), + [sym__newline] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(998), + [anon_sym_err_GT_PIPE] = ACTIONS(998), + [anon_sym_out_GT_PIPE] = ACTIONS(998), + [anon_sym_e_GT_PIPE] = ACTIONS(998), + [anon_sym_o_GT_PIPE] = ACTIONS(998), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(998), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(998), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(998), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(998), + [anon_sym_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_in2] = ACTIONS(998), + [anon_sym_RBRACE] = ACTIONS(998), + [anon_sym_STAR2] = ACTIONS(1002), + [anon_sym_and2] = ACTIONS(998), + [anon_sym_xor2] = ACTIONS(998), + [anon_sym_or2] = ACTIONS(998), + [anon_sym_not_DASHin2] = ACTIONS(998), + [anon_sym_has2] = ACTIONS(998), + [anon_sym_not_DASHhas2] = ACTIONS(998), + [anon_sym_starts_DASHwith2] = ACTIONS(998), + [anon_sym_ends_DASHwith2] = ACTIONS(998), + [anon_sym_EQ_EQ2] = ACTIONS(998), + [anon_sym_BANG_EQ2] = ACTIONS(998), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ2] = ACTIONS(998), + [anon_sym_GT_EQ2] = ACTIONS(998), + [anon_sym_EQ_TILDE2] = ACTIONS(998), + [anon_sym_BANG_TILDE2] = ACTIONS(998), + [anon_sym_STAR_STAR2] = ACTIONS(998), + [anon_sym_PLUS_PLUS2] = ACTIONS(1002), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(998), + [anon_sym_SLASH_SLASH2] = ACTIONS(998), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_bit_DASHshl2] = ACTIONS(998), + [anon_sym_bit_DASHshr2] = ACTIONS(998), + [anon_sym_bit_DASHand2] = ACTIONS(998), + [anon_sym_bit_DASHxor2] = ACTIONS(998), + [anon_sym_bit_DASHor2] = ACTIONS(998), + [anon_sym_DOT_DOT2] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [anon_sym_err_GT_GT] = ACTIONS(998), + [anon_sym_out_GT_GT] = ACTIONS(998), + [anon_sym_e_GT_GT] = ACTIONS(998), + [anon_sym_o_GT_GT] = ACTIONS(998), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(998), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(998), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(998), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(998), + [anon_sym_POUND] = ACTIONS(247), }, [1430] = { [sym_comment] = STATE(1430), - [sym__newline] = ACTIONS(1785), - [anon_sym_SEMI] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(1785), - [anon_sym_err_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_GT_PIPE] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_RPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1783), - [anon_sym_DOT_DOT2] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1783), - [anon_sym_DOT_DOT_LT] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1785), - [aux_sym__immediate_decimal_token2] = ACTIONS(4710), - [anon_sym_null] = ACTIONS(1785), - [anon_sym_true] = ACTIONS(1785), - [anon_sym_false] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(1785), - [aux_sym__val_number_token2] = ACTIONS(1785), - [aux_sym__val_number_token3] = ACTIONS(1785), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_0b] = ACTIONS(1783), - [anon_sym_0o] = ACTIONS(1783), - [anon_sym_0x] = ACTIONS(1783), - [sym_val_date] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1785), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1785), - [anon_sym_err_GT] = ACTIONS(1783), - [anon_sym_out_GT] = ACTIONS(1783), - [anon_sym_e_GT] = ACTIONS(1783), - [anon_sym_o_GT] = ACTIONS(1783), - [anon_sym_err_PLUSout_GT] = ACTIONS(1783), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1783), - [anon_sym_o_PLUSe_GT] = ACTIONS(1783), - [anon_sym_e_PLUSo_GT] = ACTIONS(1783), - [anon_sym_err_GT_GT] = ACTIONS(1785), - [anon_sym_out_GT_GT] = ACTIONS(1785), - [anon_sym_e_GT_GT] = ACTIONS(1785), - [anon_sym_o_GT_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1785), - [aux_sym_unquoted_token1] = ACTIONS(1783), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1785), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_RPAREN] = ACTIONS(1703), + [anon_sym_GT2] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1703), + [anon_sym_in2] = ACTIONS(1703), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_STAR2] = ACTIONS(1701), + [anon_sym_and2] = ACTIONS(1703), + [anon_sym_xor2] = ACTIONS(1703), + [anon_sym_or2] = ACTIONS(1703), + [anon_sym_not_DASHin2] = ACTIONS(1703), + [anon_sym_has2] = ACTIONS(1703), + [anon_sym_not_DASHhas2] = ACTIONS(1703), + [anon_sym_starts_DASHwith2] = ACTIONS(1703), + [anon_sym_ends_DASHwith2] = ACTIONS(1703), + [anon_sym_EQ_EQ2] = ACTIONS(1703), + [anon_sym_BANG_EQ2] = ACTIONS(1703), + [anon_sym_LT2] = ACTIONS(1701), + [anon_sym_LT_EQ2] = ACTIONS(1703), + [anon_sym_GT_EQ2] = ACTIONS(1703), + [anon_sym_EQ_TILDE2] = ACTIONS(1703), + [anon_sym_BANG_TILDE2] = ACTIONS(1703), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_STAR_STAR2] = ACTIONS(1703), + [anon_sym_PLUS_PLUS2] = ACTIONS(1703), + [anon_sym_SLASH2] = ACTIONS(1701), + [anon_sym_mod2] = ACTIONS(1703), + [anon_sym_SLASH_SLASH2] = ACTIONS(1703), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_bit_DASHshl2] = ACTIONS(1703), + [anon_sym_bit_DASHshr2] = ACTIONS(1703), + [anon_sym_bit_DASHand2] = ACTIONS(1703), + [anon_sym_bit_DASHxor2] = ACTIONS(1703), + [anon_sym_bit_DASHor2] = ACTIONS(1703), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT] = ACTIONS(4714), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(4716), + [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(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(247), }, [1431] = { - [sym_cell_path] = STATE(1744), - [sym_path] = STATE(1680), [sym_comment] = STATE(1431), - [aux_sym_cell_path_repeat1] = STATE(1535), - [sym__newline] = ACTIONS(945), - [anon_sym_SEMI] = ACTIONS(945), - [anon_sym_PIPE] = ACTIONS(945), - [anon_sym_err_GT_PIPE] = ACTIONS(945), - [anon_sym_out_GT_PIPE] = ACTIONS(945), - [anon_sym_e_GT_PIPE] = ACTIONS(945), - [anon_sym_o_GT_PIPE] = ACTIONS(945), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(945), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(945), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(945), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(945), - [anon_sym_LBRACK] = ACTIONS(945), - [anon_sym_LPAREN] = ACTIONS(945), - [anon_sym_RPAREN] = ACTIONS(945), - [anon_sym_DOLLAR] = ACTIONS(943), - [anon_sym_DASH_DASH] = ACTIONS(945), - [anon_sym_DASH2] = ACTIONS(943), - [anon_sym_LBRACE] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(945), - [anon_sym_DOT_DOT] = ACTIONS(943), - [anon_sym_DOT_DOT_EQ] = ACTIONS(945), - [anon_sym_DOT_DOT_LT] = ACTIONS(945), - [anon_sym_null] = ACTIONS(945), - [anon_sym_true] = ACTIONS(945), - [anon_sym_false] = ACTIONS(945), - [aux_sym__val_number_decimal_token1] = ACTIONS(943), - [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), - [aux_sym__val_number_token4] = ACTIONS(945), - [aux_sym__val_number_token5] = ACTIONS(945), - [aux_sym__val_number_token6] = ACTIONS(945), - [anon_sym_0b] = ACTIONS(943), - [anon_sym_0o] = ACTIONS(943), - [anon_sym_0x] = ACTIONS(943), - [sym_val_date] = ACTIONS(945), - [anon_sym_DQUOTE] = ACTIONS(945), - [sym__str_single_quotes] = ACTIONS(945), - [sym__str_back_ticks] = ACTIONS(945), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(945), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(945), - [anon_sym_DOT2] = ACTIONS(4696), - [anon_sym_err_GT] = ACTIONS(943), - [anon_sym_out_GT] = ACTIONS(943), - [anon_sym_e_GT] = ACTIONS(943), - [anon_sym_o_GT] = ACTIONS(943), - [anon_sym_err_PLUSout_GT] = ACTIONS(943), - [anon_sym_out_PLUSerr_GT] = ACTIONS(943), - [anon_sym_o_PLUSe_GT] = ACTIONS(943), - [anon_sym_e_PLUSo_GT] = ACTIONS(943), - [anon_sym_err_GT_GT] = ACTIONS(945), - [anon_sym_out_GT_GT] = ACTIONS(945), - [anon_sym_e_GT_GT] = ACTIONS(945), - [anon_sym_o_GT_GT] = ACTIONS(945), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(945), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(945), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(945), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(945), - [aux_sym_unquoted_token1] = ACTIONS(943), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(945), + [ts_builtin_sym_end] = ACTIONS(1703), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1703), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_DOT_DOT] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1701), + [anon_sym_DOT_DOT_LT] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(4669), + [anon_sym_null] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1703), + [aux_sym__val_number_token5] = ACTIONS(1703), + [aux_sym__val_number_token6] = ACTIONS(1703), + [anon_sym_0b] = ACTIONS(1701), + [anon_sym_0o] = ACTIONS(1701), + [anon_sym_0x] = ACTIONS(1701), + [sym_val_date] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [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(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token1] = ACTIONS(1701), + [aux_sym_unquoted_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1703), }, [1432] = { - [sym_cell_path] = STATE(1740), - [sym_path] = STATE(1680), [sym_comment] = STATE(1432), - [aux_sym_cell_path_repeat1] = STATE(1535), - [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_DASH2] = ACTIONS(1855), - [anon_sym_LBRACE] = ACTIONS(1857), - [anon_sym_RBRACE] = ACTIONS(1857), - [anon_sym_DOT_DOT] = ACTIONS(1855), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1857), - [anon_sym_DOT_DOT_LT] = ACTIONS(1857), - [anon_sym_null] = ACTIONS(1857), - [anon_sym_true] = ACTIONS(1857), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(1857), - [aux_sym__val_number_token5] = ACTIONS(1857), - [aux_sym__val_number_token6] = 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_DOT2] = ACTIONS(4696), - [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(251), - [sym_raw_string_begin] = ACTIONS(1857), + [sym__newline] = ACTIONS(952), + [anon_sym_SEMI] = ACTIONS(952), + [anon_sym_PIPE] = ACTIONS(952), + [anon_sym_err_GT_PIPE] = ACTIONS(952), + [anon_sym_out_GT_PIPE] = ACTIONS(952), + [anon_sym_e_GT_PIPE] = ACTIONS(952), + [anon_sym_o_GT_PIPE] = ACTIONS(952), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(952), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(952), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(952), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(952), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(952), + [anon_sym_RPAREN] = ACTIONS(952), + [anon_sym_DOLLAR] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_DASH2] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(952), + [anon_sym_RBRACE] = ACTIONS(952), + [anon_sym_DOT_DOT] = ACTIONS(950), + [anon_sym_QMARK2] = ACTIONS(4718), + [anon_sym_DOT_DOT2] = ACTIONS(950), + [anon_sym_DOT_DOT_EQ] = ACTIONS(950), + [anon_sym_DOT_DOT_LT] = ACTIONS(950), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(952), + [anon_sym_DOT_DOT_LT2] = ACTIONS(952), + [anon_sym_null] = ACTIONS(952), + [anon_sym_true] = ACTIONS(952), + [anon_sym_false] = ACTIONS(952), + [aux_sym__val_number_decimal_token1] = ACTIONS(950), + [aux_sym__val_number_decimal_token2] = ACTIONS(952), + [aux_sym__val_number_decimal_token3] = ACTIONS(952), + [aux_sym__val_number_decimal_token4] = ACTIONS(952), + [aux_sym__val_number_token1] = ACTIONS(952), + [aux_sym__val_number_token2] = ACTIONS(952), + [aux_sym__val_number_token3] = ACTIONS(952), + [aux_sym__val_number_token4] = ACTIONS(952), + [aux_sym__val_number_token5] = ACTIONS(952), + [aux_sym__val_number_token6] = ACTIONS(952), + [anon_sym_0b] = ACTIONS(950), + [anon_sym_0o] = ACTIONS(950), + [anon_sym_0x] = ACTIONS(950), + [sym_val_date] = ACTIONS(952), + [anon_sym_DQUOTE] = ACTIONS(952), + [sym__str_single_quotes] = ACTIONS(952), + [sym__str_back_ticks] = ACTIONS(952), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(952), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(952), + [anon_sym_DOT2] = ACTIONS(950), + [anon_sym_err_GT] = ACTIONS(950), + [anon_sym_out_GT] = ACTIONS(950), + [anon_sym_e_GT] = ACTIONS(950), + [anon_sym_o_GT] = ACTIONS(950), + [anon_sym_err_PLUSout_GT] = ACTIONS(950), + [anon_sym_out_PLUSerr_GT] = ACTIONS(950), + [anon_sym_o_PLUSe_GT] = ACTIONS(950), + [anon_sym_e_PLUSo_GT] = ACTIONS(950), + [anon_sym_err_GT_GT] = ACTIONS(952), + [anon_sym_out_GT_GT] = ACTIONS(952), + [anon_sym_e_GT_GT] = ACTIONS(952), + [anon_sym_o_GT_GT] = ACTIONS(952), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(952), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(952), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(952), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(952), + [aux_sym_unquoted_token1] = ACTIONS(950), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(952), }, [1433] = { [sym_comment] = STATE(1433), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1713), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_RPAREN] = ACTIONS(1713), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_DOT_DOT] = ACTIONS(1711), - [anon_sym_LPAREN2] = ACTIONS(1713), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT] = ACTIONS(1713), - [aux_sym__immediate_decimal_token1] = ACTIONS(4712), - [aux_sym__immediate_decimal_token2] = ACTIONS(4714), - [anon_sym_null] = ACTIONS(1713), - [anon_sym_true] = ACTIONS(1713), - [anon_sym_false] = ACTIONS(1713), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1713), - [aux_sym__val_number_decimal_token3] = ACTIONS(1713), - [aux_sym__val_number_decimal_token4] = ACTIONS(1713), - [aux_sym__val_number_token1] = ACTIONS(1713), - [aux_sym__val_number_token2] = ACTIONS(1713), - [aux_sym__val_number_token3] = ACTIONS(1713), - [aux_sym__val_number_token4] = ACTIONS(1713), - [aux_sym__val_number_token5] = ACTIONS(1713), - [aux_sym__val_number_token6] = ACTIONS(1713), - [anon_sym_0b] = ACTIONS(1711), - [anon_sym_0o] = ACTIONS(1711), - [anon_sym_0x] = ACTIONS(1711), - [sym_val_date] = ACTIONS(1713), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym__str_single_quotes] = ACTIONS(1713), - [sym__str_back_ticks] = ACTIONS(1713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1713), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [aux_sym_unquoted_token1] = ACTIONS(1711), - [aux_sym_unquoted_token2] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1713), + [sym__newline] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(970), + [anon_sym_PIPE] = ACTIONS(970), + [anon_sym_err_GT_PIPE] = ACTIONS(970), + [anon_sym_out_GT_PIPE] = ACTIONS(970), + [anon_sym_e_GT_PIPE] = ACTIONS(970), + [anon_sym_o_GT_PIPE] = ACTIONS(970), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(970), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(970), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(970), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(970), + [anon_sym_LPAREN] = ACTIONS(970), + [anon_sym_RPAREN] = ACTIONS(970), + [anon_sym_DOLLAR] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(970), + [anon_sym_DASH2] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(970), + [anon_sym_RBRACE] = ACTIONS(970), + [anon_sym_DOT_DOT] = ACTIONS(968), + [anon_sym_QMARK2] = ACTIONS(4720), + [anon_sym_DOT_DOT2] = ACTIONS(968), + [anon_sym_DOT_DOT_EQ] = ACTIONS(968), + [anon_sym_DOT_DOT_LT] = ACTIONS(968), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(970), + [anon_sym_DOT_DOT_LT2] = ACTIONS(970), + [anon_sym_null] = ACTIONS(970), + [anon_sym_true] = ACTIONS(970), + [anon_sym_false] = ACTIONS(970), + [aux_sym__val_number_decimal_token1] = ACTIONS(968), + [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), + [aux_sym__val_number_token4] = ACTIONS(970), + [aux_sym__val_number_token5] = ACTIONS(970), + [aux_sym__val_number_token6] = ACTIONS(970), + [anon_sym_0b] = ACTIONS(968), + [anon_sym_0o] = ACTIONS(968), + [anon_sym_0x] = ACTIONS(968), + [sym_val_date] = ACTIONS(970), + [anon_sym_DQUOTE] = ACTIONS(970), + [sym__str_single_quotes] = ACTIONS(970), + [sym__str_back_ticks] = ACTIONS(970), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(970), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(970), + [anon_sym_DOT2] = ACTIONS(968), + [anon_sym_err_GT] = ACTIONS(968), + [anon_sym_out_GT] = ACTIONS(968), + [anon_sym_e_GT] = ACTIONS(968), + [anon_sym_o_GT] = ACTIONS(968), + [anon_sym_err_PLUSout_GT] = ACTIONS(968), + [anon_sym_out_PLUSerr_GT] = ACTIONS(968), + [anon_sym_o_PLUSe_GT] = ACTIONS(968), + [anon_sym_e_PLUSo_GT] = ACTIONS(968), + [anon_sym_err_GT_GT] = ACTIONS(970), + [anon_sym_out_GT_GT] = ACTIONS(970), + [anon_sym_e_GT_GT] = ACTIONS(970), + [anon_sym_o_GT_GT] = ACTIONS(970), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(970), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(970), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(970), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(970), + [aux_sym_unquoted_token1] = ACTIONS(968), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(970), }, [1434] = { [sym_comment] = STATE(1434), - [ts_builtin_sym_end] = ACTIONS(986), - [sym__newline] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_PIPE] = ACTIONS(986), - [anon_sym_err_GT_PIPE] = ACTIONS(986), - [anon_sym_out_GT_PIPE] = ACTIONS(986), - [anon_sym_e_GT_PIPE] = ACTIONS(986), - [anon_sym_o_GT_PIPE] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(986), - [anon_sym_DOLLAR] = ACTIONS(984), - [anon_sym_DASH_DASH] = ACTIONS(986), - [anon_sym_DASH2] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(986), - [anon_sym_DOT_DOT] = ACTIONS(984), - [anon_sym_QMARK2] = ACTIONS(986), - [anon_sym_DOT_DOT2] = ACTIONS(984), - [anon_sym_DOT_DOT_EQ] = ACTIONS(984), - [anon_sym_DOT_DOT_LT] = ACTIONS(984), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), - [anon_sym_DOT_DOT_LT2] = ACTIONS(986), - [anon_sym_null] = ACTIONS(986), - [anon_sym_true] = ACTIONS(986), - [anon_sym_false] = ACTIONS(986), - [aux_sym__val_number_decimal_token1] = ACTIONS(984), - [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), - [aux_sym__val_number_token4] = ACTIONS(986), - [aux_sym__val_number_token5] = ACTIONS(986), - [aux_sym__val_number_token6] = ACTIONS(986), - [anon_sym_0b] = ACTIONS(984), - [anon_sym_0o] = ACTIONS(984), - [anon_sym_0x] = ACTIONS(984), - [sym_val_date] = ACTIONS(986), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym__str_single_quotes] = ACTIONS(986), - [sym__str_back_ticks] = ACTIONS(986), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(986), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(986), - [anon_sym_DOT2] = ACTIONS(984), - [anon_sym_err_GT] = ACTIONS(984), - [anon_sym_out_GT] = ACTIONS(984), - [anon_sym_e_GT] = ACTIONS(984), - [anon_sym_o_GT] = ACTIONS(984), - [anon_sym_err_PLUSout_GT] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT] = ACTIONS(984), - [anon_sym_o_PLUSe_GT] = ACTIONS(984), - [anon_sym_e_PLUSo_GT] = ACTIONS(984), - [anon_sym_err_GT_GT] = ACTIONS(986), - [anon_sym_out_GT_GT] = ACTIONS(986), - [anon_sym_e_GT_GT] = ACTIONS(986), - [anon_sym_o_GT_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), - [aux_sym_unquoted_token1] = ACTIONS(984), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(986), + [ts_builtin_sym_end] = ACTIONS(1768), + [sym__newline] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_err_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_GT_PIPE] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1768), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_LPAREN] = ACTIONS(1766), + [anon_sym_DOLLAR] = ACTIONS(1766), + [anon_sym_DASH_DASH] = ACTIONS(1768), + [anon_sym_DASH2] = ACTIONS(1766), + [anon_sym_LBRACE] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1766), + [anon_sym_LPAREN2] = ACTIONS(1768), + [anon_sym_DOT_DOT2] = ACTIONS(1766), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1766), + [anon_sym_DOT_DOT_LT] = ACTIONS(1766), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1768), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1768), + [aux_sym__immediate_decimal_token2] = ACTIONS(4722), + [anon_sym_null] = ACTIONS(1768), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [aux_sym__val_number_decimal_token1] = ACTIONS(1766), + [aux_sym__val_number_decimal_token2] = ACTIONS(1768), + [aux_sym__val_number_decimal_token3] = ACTIONS(1768), + [aux_sym__val_number_decimal_token4] = ACTIONS(1768), + [aux_sym__val_number_token1] = ACTIONS(1768), + [aux_sym__val_number_token2] = ACTIONS(1768), + [aux_sym__val_number_token3] = ACTIONS(1768), + [aux_sym__val_number_token4] = ACTIONS(1768), + [aux_sym__val_number_token5] = ACTIONS(1768), + [aux_sym__val_number_token6] = ACTIONS(1768), + [anon_sym_0b] = ACTIONS(1766), + [anon_sym_0o] = ACTIONS(1766), + [anon_sym_0x] = ACTIONS(1766), + [sym_val_date] = ACTIONS(1768), + [anon_sym_DQUOTE] = ACTIONS(1768), + [sym__str_single_quotes] = ACTIONS(1768), + [sym__str_back_ticks] = ACTIONS(1768), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1768), + [anon_sym_err_GT] = ACTIONS(1766), + [anon_sym_out_GT] = ACTIONS(1766), + [anon_sym_e_GT] = ACTIONS(1766), + [anon_sym_o_GT] = ACTIONS(1766), + [anon_sym_err_PLUSout_GT] = ACTIONS(1766), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1766), + [anon_sym_o_PLUSe_GT] = ACTIONS(1766), + [anon_sym_e_PLUSo_GT] = ACTIONS(1766), + [anon_sym_err_GT_GT] = ACTIONS(1768), + [anon_sym_out_GT_GT] = ACTIONS(1768), + [anon_sym_e_GT_GT] = ACTIONS(1768), + [anon_sym_o_GT_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1768), + [aux_sym_unquoted_token1] = ACTIONS(1766), + [aux_sym_unquoted_token2] = ACTIONS(1766), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1768), }, [1435] = { - [sym_cell_path] = STATE(1784), - [sym_path] = STATE(1680), [sym_comment] = STATE(1435), - [aux_sym_cell_path_repeat1] = STATE(1535), - [sym__newline] = ACTIONS(1951), - [anon_sym_SEMI] = ACTIONS(1951), - [anon_sym_PIPE] = ACTIONS(1951), - [anon_sym_err_GT_PIPE] = ACTIONS(1951), - [anon_sym_out_GT_PIPE] = ACTIONS(1951), - [anon_sym_e_GT_PIPE] = ACTIONS(1951), - [anon_sym_o_GT_PIPE] = ACTIONS(1951), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1951), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1951), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1951), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1951), - [anon_sym_LBRACK] = ACTIONS(1951), - [anon_sym_LPAREN] = ACTIONS(1951), - [anon_sym_RPAREN] = ACTIONS(1951), - [anon_sym_DOLLAR] = ACTIONS(1949), - [anon_sym_DASH_DASH] = ACTIONS(1951), - [anon_sym_DASH2] = ACTIONS(1949), - [anon_sym_LBRACE] = ACTIONS(1951), - [anon_sym_RBRACE] = ACTIONS(1951), - [anon_sym_DOT_DOT] = ACTIONS(1949), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1951), - [anon_sym_DOT_DOT_LT] = ACTIONS(1951), - [anon_sym_null] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1951), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(1951), - [aux_sym__val_number_token5] = ACTIONS(1951), - [aux_sym__val_number_token6] = ACTIONS(1951), - [anon_sym_0b] = ACTIONS(1949), - [anon_sym_0o] = ACTIONS(1949), - [anon_sym_0x] = ACTIONS(1949), - [sym_val_date] = ACTIONS(1951), - [anon_sym_DQUOTE] = ACTIONS(1951), - [sym__str_single_quotes] = ACTIONS(1951), - [sym__str_back_ticks] = ACTIONS(1951), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1951), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1951), - [anon_sym_DOT2] = ACTIONS(4696), - [anon_sym_err_GT] = ACTIONS(1949), - [anon_sym_out_GT] = ACTIONS(1949), - [anon_sym_e_GT] = ACTIONS(1949), - [anon_sym_o_GT] = ACTIONS(1949), - [anon_sym_err_PLUSout_GT] = ACTIONS(1949), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1949), - [anon_sym_o_PLUSe_GT] = ACTIONS(1949), - [anon_sym_e_PLUSo_GT] = ACTIONS(1949), - [anon_sym_err_GT_GT] = ACTIONS(1951), - [anon_sym_out_GT_GT] = ACTIONS(1951), - [anon_sym_e_GT_GT] = ACTIONS(1951), - [anon_sym_o_GT_GT] = ACTIONS(1951), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1951), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1951), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1951), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1951), - [aux_sym_unquoted_token1] = ACTIONS(1949), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1951), + [ts_builtin_sym_end] = ACTIONS(1514), + [sym__newline] = ACTIONS(1514), + [anon_sym_SEMI] = ACTIONS(1514), + [anon_sym_PIPE] = ACTIONS(1514), + [anon_sym_err_GT_PIPE] = ACTIONS(1514), + [anon_sym_out_GT_PIPE] = ACTIONS(1514), + [anon_sym_e_GT_PIPE] = ACTIONS(1514), + [anon_sym_o_GT_PIPE] = ACTIONS(1514), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1514), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1514), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1514), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1514), + [anon_sym_GT2] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1514), + [anon_sym_in2] = ACTIONS(1514), + [anon_sym_STAR2] = ACTIONS(1512), + [anon_sym_and2] = ACTIONS(1514), + [anon_sym_xor2] = ACTIONS(1514), + [anon_sym_or2] = ACTIONS(1514), + [anon_sym_not_DASHin2] = ACTIONS(1514), + [anon_sym_has2] = ACTIONS(1514), + [anon_sym_not_DASHhas2] = ACTIONS(1514), + [anon_sym_starts_DASHwith2] = ACTIONS(1514), + [anon_sym_ends_DASHwith2] = ACTIONS(1514), + [anon_sym_EQ_EQ2] = ACTIONS(1514), + [anon_sym_BANG_EQ2] = ACTIONS(1514), + [anon_sym_LT2] = ACTIONS(1512), + [anon_sym_LT_EQ2] = ACTIONS(1514), + [anon_sym_GT_EQ2] = ACTIONS(1514), + [anon_sym_EQ_TILDE2] = ACTIONS(1514), + [anon_sym_BANG_TILDE2] = ACTIONS(1514), + [anon_sym_LPAREN2] = ACTIONS(1514), + [anon_sym_STAR_STAR2] = ACTIONS(1514), + [anon_sym_PLUS_PLUS2] = ACTIONS(1514), + [anon_sym_SLASH2] = ACTIONS(1512), + [anon_sym_mod2] = ACTIONS(1514), + [anon_sym_SLASH_SLASH2] = ACTIONS(1514), + [anon_sym_PLUS2] = ACTIONS(1512), + [anon_sym_bit_DASHshl2] = ACTIONS(1514), + [anon_sym_bit_DASHshr2] = ACTIONS(1514), + [anon_sym_bit_DASHand2] = ACTIONS(1514), + [anon_sym_bit_DASHxor2] = ACTIONS(1514), + [anon_sym_bit_DASHor2] = ACTIONS(1514), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT] = ACTIONS(4724), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [aux_sym__immediate_decimal_token2] = ACTIONS(4726), + [sym_filesize_unit] = ACTIONS(1512), + [sym_duration_unit] = ACTIONS(1514), + [anon_sym_err_GT] = ACTIONS(1512), + [anon_sym_out_GT] = ACTIONS(1512), + [anon_sym_e_GT] = ACTIONS(1512), + [anon_sym_o_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT] = ACTIONS(1512), + [anon_sym_err_GT_GT] = ACTIONS(1514), + [anon_sym_out_GT_GT] = ACTIONS(1514), + [anon_sym_e_GT_GT] = ACTIONS(1514), + [anon_sym_o_GT_GT] = ACTIONS(1514), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1514), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1514), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1514), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1514), + [aux_sym_unquoted_token2] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(247), }, [1436] = { [sym_comment] = STATE(1436), - [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_GT2] = ACTIONS(966), - [anon_sym_DASH2] = ACTIONS(968), - [anon_sym_in2] = ACTIONS(968), - [anon_sym_if] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_EQ_GT] = ACTIONS(968), - [anon_sym_STAR2] = ACTIONS(966), - [anon_sym_QMARK2] = ACTIONS(4716), - [anon_sym_and2] = ACTIONS(968), - [anon_sym_xor2] = ACTIONS(968), - [anon_sym_or2] = ACTIONS(968), - [anon_sym_not_DASHin2] = ACTIONS(968), - [anon_sym_starts_DASHwith2] = ACTIONS(968), - [anon_sym_ends_DASHwith2] = ACTIONS(968), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(966), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(968), - [anon_sym_STAR_STAR2] = ACTIONS(968), - [anon_sym_PLUS_PLUS2] = ACTIONS(968), - [anon_sym_SLASH2] = ACTIONS(966), - [anon_sym_mod2] = ACTIONS(968), - [anon_sym_SLASH_SLASH2] = ACTIONS(968), - [anon_sym_PLUS2] = ACTIONS(966), - [anon_sym_bit_DASHshl2] = ACTIONS(968), - [anon_sym_bit_DASHshr2] = ACTIONS(968), - [anon_sym_bit_DASHand2] = ACTIONS(968), - [anon_sym_bit_DASHxor2] = ACTIONS(968), - [anon_sym_bit_DASHor2] = ACTIONS(968), - [anon_sym_DOT_DOT2] = ACTIONS(966), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(968), - [anon_sym_DOT_DOT_LT2] = ACTIONS(968), - [anon_sym_COLON2] = ACTIONS(968), - [anon_sym_DOT2] = 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(251), + [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_GT2] = ACTIONS(1504), + [anon_sym_DASH2] = ACTIONS(1506), + [anon_sym_in2] = ACTIONS(1506), + [anon_sym_STAR2] = ACTIONS(1504), + [anon_sym_and2] = ACTIONS(1506), + [anon_sym_xor2] = ACTIONS(1506), + [anon_sym_or2] = ACTIONS(1506), + [anon_sym_not_DASHin2] = ACTIONS(1506), + [anon_sym_has2] = ACTIONS(1506), + [anon_sym_not_DASHhas2] = ACTIONS(1506), + [anon_sym_starts_DASHwith2] = ACTIONS(1506), + [anon_sym_ends_DASHwith2] = ACTIONS(1506), + [anon_sym_EQ_EQ2] = ACTIONS(1506), + [anon_sym_BANG_EQ2] = ACTIONS(1506), + [anon_sym_LT2] = ACTIONS(1504), + [anon_sym_LT_EQ2] = ACTIONS(1506), + [anon_sym_GT_EQ2] = ACTIONS(1506), + [anon_sym_EQ_TILDE2] = ACTIONS(1506), + [anon_sym_BANG_TILDE2] = ACTIONS(1506), + [anon_sym_LPAREN2] = ACTIONS(1506), + [anon_sym_STAR_STAR2] = ACTIONS(1506), + [anon_sym_PLUS_PLUS2] = ACTIONS(1506), + [anon_sym_SLASH2] = ACTIONS(1504), + [anon_sym_mod2] = ACTIONS(1506), + [anon_sym_SLASH_SLASH2] = ACTIONS(1506), + [anon_sym_PLUS2] = ACTIONS(1504), + [anon_sym_bit_DASHshl2] = ACTIONS(1506), + [anon_sym_bit_DASHshr2] = ACTIONS(1506), + [anon_sym_bit_DASHand2] = ACTIONS(1506), + [anon_sym_bit_DASHxor2] = ACTIONS(1506), + [anon_sym_bit_DASHor2] = ACTIONS(1506), + [anon_sym_DOT_DOT2] = ACTIONS(1504), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1506), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1506), + [aux_sym__immediate_decimal_token1] = ACTIONS(4728), + [aux_sym__immediate_decimal_token2] = ACTIONS(4730), + [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_token2] = ACTIONS(1504), + [anon_sym_POUND] = ACTIONS(247), }, [1437] = { + [sym__expr_parenthesized_immediate] = STATE(2500), + [sym__immediate_decimal] = STATE(2501), + [sym_val_variable] = STATE(2500), [sym_comment] = STATE(1437), - [anon_sym_EQ] = ACTIONS(1006), - [anon_sym_PLUS_EQ] = ACTIONS(1008), - [anon_sym_DASH_EQ] = ACTIONS(1008), - [anon_sym_STAR_EQ] = ACTIONS(1008), - [anon_sym_SLASH_EQ] = ACTIONS(1008), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1008), - [sym__newline] = ACTIONS(1012), - [anon_sym_SEMI] = ACTIONS(1012), - [anon_sym_PIPE] = ACTIONS(1012), - [anon_sym_err_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_GT_PIPE] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1012), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_in2] = ACTIONS(1012), - [anon_sym_RBRACE] = ACTIONS(1012), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1012), - [anon_sym_xor2] = ACTIONS(1012), - [anon_sym_or2] = ACTIONS(1012), - [anon_sym_not_DASHin2] = ACTIONS(1012), - [anon_sym_starts_DASHwith2] = ACTIONS(1012), - [anon_sym_ends_DASHwith2] = ACTIONS(1012), - [anon_sym_EQ_EQ2] = ACTIONS(1012), - [anon_sym_BANG_EQ2] = ACTIONS(1012), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1012), - [anon_sym_GT_EQ2] = ACTIONS(1012), - [anon_sym_EQ_TILDE2] = ACTIONS(1012), - [anon_sym_BANG_TILDE2] = ACTIONS(1012), - [anon_sym_STAR_STAR2] = ACTIONS(1012), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1012), - [anon_sym_SLASH_SLASH2] = ACTIONS(1012), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1012), - [anon_sym_bit_DASHshr2] = ACTIONS(1012), - [anon_sym_bit_DASHand2] = ACTIONS(1012), - [anon_sym_bit_DASHxor2] = ACTIONS(1012), - [anon_sym_bit_DASHor2] = ACTIONS(1012), - [anon_sym_DOT_DOT2] = ACTIONS(1024), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1026), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1026), - [anon_sym_COLON2] = ACTIONS(4718), - [anon_sym_err_GT] = ACTIONS(1016), - [anon_sym_out_GT] = ACTIONS(1016), - [anon_sym_e_GT] = ACTIONS(1016), - [anon_sym_o_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT] = ACTIONS(1016), - [anon_sym_err_GT_GT] = ACTIONS(1012), - [anon_sym_out_GT_GT] = ACTIONS(1012), - [anon_sym_e_GT_GT] = ACTIONS(1012), - [anon_sym_o_GT_GT] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1012), - [anon_sym_POUND] = ACTIONS(251), + [ts_builtin_sym_end] = 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_DOLLAR] = ACTIONS(4484), + [anon_sym_GT2] = ACTIONS(1441), + [anon_sym_DASH2] = ACTIONS(1441), + [anon_sym_in2] = ACTIONS(1455), + [anon_sym_STAR2] = ACTIONS(1441), + [anon_sym_and2] = ACTIONS(1455), + [anon_sym_xor2] = ACTIONS(1455), + [anon_sym_or2] = ACTIONS(1455), + [anon_sym_not_DASHin2] = ACTIONS(1455), + [anon_sym_has2] = ACTIONS(1455), + [anon_sym_not_DASHhas2] = ACTIONS(1455), + [anon_sym_starts_DASHwith2] = ACTIONS(1455), + [anon_sym_ends_DASHwith2] = ACTIONS(1455), + [anon_sym_EQ_EQ2] = ACTIONS(1455), + [anon_sym_BANG_EQ2] = ACTIONS(1455), + [anon_sym_LT2] = ACTIONS(1441), + [anon_sym_LT_EQ2] = ACTIONS(1455), + [anon_sym_GT_EQ2] = ACTIONS(1455), + [anon_sym_EQ_TILDE2] = ACTIONS(1455), + [anon_sym_BANG_TILDE2] = ACTIONS(1455), + [anon_sym_LPAREN2] = ACTIONS(4486), + [anon_sym_STAR_STAR2] = ACTIONS(1455), + [anon_sym_PLUS_PLUS2] = ACTIONS(1455), + [anon_sym_SLASH2] = ACTIONS(1441), + [anon_sym_mod2] = ACTIONS(1455), + [anon_sym_SLASH_SLASH2] = ACTIONS(1455), + [anon_sym_PLUS2] = ACTIONS(1441), + [anon_sym_bit_DASHshl2] = ACTIONS(1455), + [anon_sym_bit_DASHshr2] = ACTIONS(1455), + [anon_sym_bit_DASHand2] = ACTIONS(1455), + [anon_sym_bit_DASHxor2] = ACTIONS(1455), + [anon_sym_bit_DASHor2] = ACTIONS(1455), + [aux_sym__immediate_decimal_token1] = ACTIONS(4732), + [aux_sym__immediate_decimal_token3] = ACTIONS(4732), + [aux_sym__immediate_decimal_token4] = ACTIONS(4492), + [aux_sym__immediate_decimal_token5] = ACTIONS(4494), + [anon_sym_err_GT] = ACTIONS(1441), + [anon_sym_out_GT] = ACTIONS(1441), + [anon_sym_e_GT] = ACTIONS(1441), + [anon_sym_o_GT] = ACTIONS(1441), + [anon_sym_err_PLUSout_GT] = ACTIONS(1441), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1441), + [anon_sym_o_PLUSe_GT] = ACTIONS(1441), + [anon_sym_e_PLUSo_GT] = ACTIONS(1441), + [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), + [anon_sym_POUND] = ACTIONS(247), }, [1438] = { - [sym_cell_path] = STATE(1791), - [sym_path] = STATE(1680), + [sym__expr_parenthesized_immediate] = STATE(2497), + [sym__immediate_decimal] = STATE(2498), + [sym_val_variable] = STATE(2497), [sym_comment] = STATE(1438), - [aux_sym_cell_path_repeat1] = STATE(1535), - [sym__newline] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1959), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_err_GT_PIPE] = ACTIONS(1959), - [anon_sym_out_GT_PIPE] = ACTIONS(1959), - [anon_sym_e_GT_PIPE] = ACTIONS(1959), - [anon_sym_o_GT_PIPE] = ACTIONS(1959), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1959), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1959), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1959), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1959), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_LPAREN] = ACTIONS(1959), - [anon_sym_RPAREN] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1957), - [anon_sym_DASH_DASH] = ACTIONS(1959), - [anon_sym_DASH2] = ACTIONS(1957), - [anon_sym_LBRACE] = ACTIONS(1959), - [anon_sym_RBRACE] = ACTIONS(1959), - [anon_sym_DOT_DOT] = ACTIONS(1957), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [anon_sym_null] = ACTIONS(1959), - [anon_sym_true] = ACTIONS(1959), - [anon_sym_false] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1957), - [aux_sym__val_number_decimal_token2] = ACTIONS(1959), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), - [aux_sym__val_number_token1] = ACTIONS(1959), - [aux_sym__val_number_token2] = ACTIONS(1959), - [aux_sym__val_number_token3] = ACTIONS(1959), - [aux_sym__val_number_token4] = ACTIONS(1959), - [aux_sym__val_number_token5] = ACTIONS(1959), - [aux_sym__val_number_token6] = ACTIONS(1959), - [anon_sym_0b] = ACTIONS(1957), - [anon_sym_0o] = ACTIONS(1957), - [anon_sym_0x] = ACTIONS(1957), - [sym_val_date] = ACTIONS(1959), - [anon_sym_DQUOTE] = ACTIONS(1959), - [sym__str_single_quotes] = ACTIONS(1959), - [sym__str_back_ticks] = ACTIONS(1959), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1959), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1959), - [anon_sym_DOT2] = ACTIONS(4696), - [anon_sym_err_GT] = ACTIONS(1957), - [anon_sym_out_GT] = ACTIONS(1957), - [anon_sym_e_GT] = ACTIONS(1957), - [anon_sym_o_GT] = ACTIONS(1957), - [anon_sym_err_PLUSout_GT] = ACTIONS(1957), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1957), - [anon_sym_o_PLUSe_GT] = ACTIONS(1957), - [anon_sym_e_PLUSo_GT] = ACTIONS(1957), - [anon_sym_err_GT_GT] = ACTIONS(1959), - [anon_sym_out_GT_GT] = ACTIONS(1959), - [anon_sym_e_GT_GT] = ACTIONS(1959), - [anon_sym_o_GT_GT] = ACTIONS(1959), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1959), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1959), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1959), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1959), - [aux_sym_unquoted_token1] = ACTIONS(1957), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1959), + [ts_builtin_sym_end] = ACTIONS(1532), + [sym__newline] = ACTIONS(1532), + [anon_sym_SEMI] = ACTIONS(1532), + [anon_sym_PIPE] = ACTIONS(1532), + [anon_sym_err_GT_PIPE] = ACTIONS(1532), + [anon_sym_out_GT_PIPE] = ACTIONS(1532), + [anon_sym_e_GT_PIPE] = ACTIONS(1532), + [anon_sym_o_GT_PIPE] = ACTIONS(1532), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1532), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1532), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1532), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1532), + [anon_sym_DOLLAR] = ACTIONS(4484), + [anon_sym_GT2] = ACTIONS(1522), + [anon_sym_DASH2] = ACTIONS(1522), + [anon_sym_in2] = ACTIONS(1532), + [anon_sym_STAR2] = ACTIONS(1522), + [anon_sym_and2] = ACTIONS(1532), + [anon_sym_xor2] = ACTIONS(1532), + [anon_sym_or2] = ACTIONS(1532), + [anon_sym_not_DASHin2] = ACTIONS(1532), + [anon_sym_has2] = ACTIONS(1532), + [anon_sym_not_DASHhas2] = ACTIONS(1532), + [anon_sym_starts_DASHwith2] = ACTIONS(1532), + [anon_sym_ends_DASHwith2] = ACTIONS(1532), + [anon_sym_EQ_EQ2] = ACTIONS(1532), + [anon_sym_BANG_EQ2] = ACTIONS(1532), + [anon_sym_LT2] = ACTIONS(1522), + [anon_sym_LT_EQ2] = ACTIONS(1532), + [anon_sym_GT_EQ2] = ACTIONS(1532), + [anon_sym_EQ_TILDE2] = ACTIONS(1532), + [anon_sym_BANG_TILDE2] = ACTIONS(1532), + [anon_sym_LPAREN2] = ACTIONS(4486), + [anon_sym_STAR_STAR2] = ACTIONS(1532), + [anon_sym_PLUS_PLUS2] = ACTIONS(1532), + [anon_sym_SLASH2] = ACTIONS(1522), + [anon_sym_mod2] = ACTIONS(1532), + [anon_sym_SLASH_SLASH2] = ACTIONS(1532), + [anon_sym_PLUS2] = ACTIONS(1522), + [anon_sym_bit_DASHshl2] = ACTIONS(1532), + [anon_sym_bit_DASHshr2] = ACTIONS(1532), + [anon_sym_bit_DASHand2] = ACTIONS(1532), + [anon_sym_bit_DASHxor2] = ACTIONS(1532), + [anon_sym_bit_DASHor2] = ACTIONS(1532), + [aux_sym__immediate_decimal_token1] = ACTIONS(4732), + [aux_sym__immediate_decimal_token3] = ACTIONS(4732), + [aux_sym__immediate_decimal_token4] = ACTIONS(4492), + [aux_sym__immediate_decimal_token5] = ACTIONS(4494), + [anon_sym_err_GT] = ACTIONS(1522), + [anon_sym_out_GT] = ACTIONS(1522), + [anon_sym_e_GT] = ACTIONS(1522), + [anon_sym_o_GT] = ACTIONS(1522), + [anon_sym_err_PLUSout_GT] = ACTIONS(1522), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1522), + [anon_sym_o_PLUSe_GT] = ACTIONS(1522), + [anon_sym_e_PLUSo_GT] = ACTIONS(1522), + [anon_sym_err_GT_GT] = ACTIONS(1532), + [anon_sym_out_GT_GT] = ACTIONS(1532), + [anon_sym_e_GT_GT] = ACTIONS(1532), + [anon_sym_o_GT_GT] = ACTIONS(1532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1532), + [anon_sym_POUND] = ACTIONS(247), }, [1439] = { - [sym_cell_path] = STATE(1799), - [sym_path] = STATE(1680), + [sym__expr_parenthesized_immediate] = STATE(2507), + [sym__immediate_decimal] = STATE(2508), + [sym_val_variable] = STATE(2507), [sym_comment] = STATE(1439), - [aux_sym_cell_path_repeat1] = STATE(1535), - [sym__newline] = ACTIONS(1963), - [anon_sym_SEMI] = ACTIONS(1963), - [anon_sym_PIPE] = ACTIONS(1963), - [anon_sym_err_GT_PIPE] = ACTIONS(1963), - [anon_sym_out_GT_PIPE] = ACTIONS(1963), - [anon_sym_e_GT_PIPE] = ACTIONS(1963), - [anon_sym_o_GT_PIPE] = ACTIONS(1963), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1963), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1963), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1963), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_LPAREN] = ACTIONS(1963), - [anon_sym_RPAREN] = ACTIONS(1963), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_DASH_DASH] = ACTIONS(1963), - [anon_sym_DASH2] = ACTIONS(1961), - [anon_sym_LBRACE] = ACTIONS(1963), - [anon_sym_RBRACE] = ACTIONS(1963), - [anon_sym_DOT_DOT] = ACTIONS(1961), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), - [anon_sym_DOT_DOT_LT] = ACTIONS(1963), - [anon_sym_null] = ACTIONS(1963), - [anon_sym_true] = ACTIONS(1963), - [anon_sym_false] = ACTIONS(1963), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1963), - [aux_sym__val_number_decimal_token4] = ACTIONS(1963), - [aux_sym__val_number_token1] = ACTIONS(1963), - [aux_sym__val_number_token2] = ACTIONS(1963), - [aux_sym__val_number_token3] = ACTIONS(1963), - [aux_sym__val_number_token4] = ACTIONS(1963), - [aux_sym__val_number_token5] = ACTIONS(1963), - [aux_sym__val_number_token6] = ACTIONS(1963), - [anon_sym_0b] = ACTIONS(1961), - [anon_sym_0o] = ACTIONS(1961), - [anon_sym_0x] = ACTIONS(1961), - [sym_val_date] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1963), - [sym__str_single_quotes] = ACTIONS(1963), - [sym__str_back_ticks] = ACTIONS(1963), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1963), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1963), - [anon_sym_DOT2] = ACTIONS(4696), - [anon_sym_err_GT] = ACTIONS(1961), - [anon_sym_out_GT] = ACTIONS(1961), - [anon_sym_e_GT] = ACTIONS(1961), - [anon_sym_o_GT] = ACTIONS(1961), - [anon_sym_err_PLUSout_GT] = ACTIONS(1961), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1961), - [anon_sym_o_PLUSe_GT] = ACTIONS(1961), - [anon_sym_e_PLUSo_GT] = ACTIONS(1961), - [anon_sym_err_GT_GT] = ACTIONS(1963), - [anon_sym_out_GT_GT] = ACTIONS(1963), - [anon_sym_e_GT_GT] = ACTIONS(1963), - [anon_sym_o_GT_GT] = ACTIONS(1963), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1963), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1963), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1963), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1963), - [aux_sym_unquoted_token1] = ACTIONS(1961), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1963), + [ts_builtin_sym_end] = ACTIONS(1582), + [sym__newline] = ACTIONS(1582), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_PIPE] = ACTIONS(1582), + [anon_sym_err_GT_PIPE] = ACTIONS(1582), + [anon_sym_out_GT_PIPE] = ACTIONS(1582), + [anon_sym_e_GT_PIPE] = ACTIONS(1582), + [anon_sym_o_GT_PIPE] = ACTIONS(1582), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1582), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1582), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1582), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1582), + [anon_sym_DOLLAR] = ACTIONS(4484), + [anon_sym_GT2] = ACTIONS(1580), + [anon_sym_DASH2] = ACTIONS(1580), + [anon_sym_in2] = ACTIONS(1582), + [anon_sym_STAR2] = ACTIONS(1580), + [anon_sym_and2] = ACTIONS(1582), + [anon_sym_xor2] = ACTIONS(1582), + [anon_sym_or2] = ACTIONS(1582), + [anon_sym_not_DASHin2] = ACTIONS(1582), + [anon_sym_has2] = ACTIONS(1582), + [anon_sym_not_DASHhas2] = ACTIONS(1582), + [anon_sym_starts_DASHwith2] = ACTIONS(1582), + [anon_sym_ends_DASHwith2] = ACTIONS(1582), + [anon_sym_EQ_EQ2] = ACTIONS(1582), + [anon_sym_BANG_EQ2] = ACTIONS(1582), + [anon_sym_LT2] = ACTIONS(1580), + [anon_sym_LT_EQ2] = ACTIONS(1582), + [anon_sym_GT_EQ2] = ACTIONS(1582), + [anon_sym_EQ_TILDE2] = ACTIONS(1582), + [anon_sym_BANG_TILDE2] = ACTIONS(1582), + [anon_sym_LPAREN2] = ACTIONS(4486), + [anon_sym_STAR_STAR2] = ACTIONS(1582), + [anon_sym_PLUS_PLUS2] = ACTIONS(1582), + [anon_sym_SLASH2] = ACTIONS(1580), + [anon_sym_mod2] = ACTIONS(1582), + [anon_sym_SLASH_SLASH2] = ACTIONS(1582), + [anon_sym_PLUS2] = ACTIONS(1580), + [anon_sym_bit_DASHshl2] = ACTIONS(1582), + [anon_sym_bit_DASHshr2] = ACTIONS(1582), + [anon_sym_bit_DASHand2] = ACTIONS(1582), + [anon_sym_bit_DASHxor2] = ACTIONS(1582), + [anon_sym_bit_DASHor2] = ACTIONS(1582), + [aux_sym__immediate_decimal_token1] = ACTIONS(4732), + [aux_sym__immediate_decimal_token3] = ACTIONS(4732), + [aux_sym__immediate_decimal_token4] = ACTIONS(4492), + [aux_sym__immediate_decimal_token5] = ACTIONS(4494), + [anon_sym_err_GT] = ACTIONS(1580), + [anon_sym_out_GT] = ACTIONS(1580), + [anon_sym_e_GT] = ACTIONS(1580), + [anon_sym_o_GT] = ACTIONS(1580), + [anon_sym_err_PLUSout_GT] = ACTIONS(1580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1580), + [anon_sym_o_PLUSe_GT] = ACTIONS(1580), + [anon_sym_e_PLUSo_GT] = ACTIONS(1580), + [anon_sym_err_GT_GT] = ACTIONS(1582), + [anon_sym_out_GT_GT] = ACTIONS(1582), + [anon_sym_e_GT_GT] = ACTIONS(1582), + [anon_sym_o_GT_GT] = ACTIONS(1582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1582), + [anon_sym_POUND] = ACTIONS(247), }, [1440] = { [sym_comment] = STATE(1440), - [ts_builtin_sym_end] = ACTIONS(1820), - [sym__newline] = ACTIONS(1820), - [anon_sym_SEMI] = ACTIONS(1820), - [anon_sym_PIPE] = ACTIONS(1820), - [anon_sym_err_GT_PIPE] = ACTIONS(1820), - [anon_sym_out_GT_PIPE] = ACTIONS(1820), - [anon_sym_e_GT_PIPE] = ACTIONS(1820), - [anon_sym_o_GT_PIPE] = ACTIONS(1820), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1820), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1820), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1820), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1820), - [anon_sym_LBRACK] = ACTIONS(1820), - [anon_sym_LPAREN] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1812), - [anon_sym_DASH_DASH] = ACTIONS(1820), - [anon_sym_DASH2] = ACTIONS(1812), - [anon_sym_LBRACE] = ACTIONS(1820), - [anon_sym_DOT_DOT] = ACTIONS(1812), - [anon_sym_LPAREN2] = ACTIONS(1814), - [anon_sym_DOT_DOT2] = ACTIONS(4720), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1812), - [anon_sym_DOT_DOT_LT] = ACTIONS(1812), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4722), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4722), - [anon_sym_null] = ACTIONS(1820), - [anon_sym_true] = ACTIONS(1820), - [anon_sym_false] = ACTIONS(1820), - [aux_sym__val_number_decimal_token1] = ACTIONS(1812), - [aux_sym__val_number_decimal_token2] = 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), - [aux_sym__val_number_token4] = ACTIONS(1820), - [aux_sym__val_number_token5] = ACTIONS(1820), - [aux_sym__val_number_token6] = ACTIONS(1820), - [anon_sym_0b] = ACTIONS(1812), - [anon_sym_0o] = ACTIONS(1812), - [anon_sym_0x] = ACTIONS(1812), - [sym_val_date] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1820), - [sym__str_single_quotes] = ACTIONS(1820), - [sym__str_back_ticks] = ACTIONS(1820), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1820), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1820), - [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(1820), - [anon_sym_out_GT_GT] = ACTIONS(1820), - [anon_sym_e_GT_GT] = ACTIONS(1820), - [anon_sym_o_GT_GT] = ACTIONS(1820), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1820), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1820), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1820), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1820), - [aux_sym_unquoted_token1] = ACTIONS(1812), - [aux_sym_unquoted_token2] = ACTIONS(1822), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1820), + [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_LBRACK] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1506), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_DASH2] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(1506), + [anon_sym_DOT_DOT] = ACTIONS(1504), + [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), + [anon_sym_null] = ACTIONS(1506), + [anon_sym_true] = ACTIONS(1506), + [anon_sym_false] = ACTIONS(1506), + [aux_sym__val_number_decimal_token1] = ACTIONS(1504), + [aux_sym__val_number_decimal_token2] = ACTIONS(1506), + [aux_sym__val_number_decimal_token3] = ACTIONS(1506), + [aux_sym__val_number_decimal_token4] = ACTIONS(1506), + [aux_sym__val_number_token1] = ACTIONS(1506), + [aux_sym__val_number_token2] = ACTIONS(1506), + [aux_sym__val_number_token3] = ACTIONS(1506), + [aux_sym__val_number_token4] = ACTIONS(1506), + [aux_sym__val_number_token5] = ACTIONS(1506), + [aux_sym__val_number_token6] = 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_token2] = ACTIONS(1504), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1506), }, [1441] = { + [sym__expr_parenthesized_immediate] = STATE(2509), + [sym__immediate_decimal] = STATE(2510), + [sym_val_variable] = STATE(2509), [sym_comment] = STATE(1441), - [ts_builtin_sym_end] = ACTIONS(1002), - [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(1002), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_err_GT_PIPE] = ACTIONS(1002), - [anon_sym_out_GT_PIPE] = ACTIONS(1002), - [anon_sym_e_GT_PIPE] = ACTIONS(1002), - [anon_sym_o_GT_PIPE] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1002), - [anon_sym_GT2] = ACTIONS(1000), - [anon_sym_DASH2] = ACTIONS(1000), - [anon_sym_in2] = ACTIONS(1002), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_STAR2] = ACTIONS(1000), - [anon_sym_and2] = ACTIONS(1002), - [anon_sym_xor2] = ACTIONS(1002), - [anon_sym_or2] = ACTIONS(1002), - [anon_sym_not_DASHin2] = ACTIONS(1002), - [anon_sym_starts_DASHwith2] = ACTIONS(1002), - [anon_sym_ends_DASHwith2] = ACTIONS(1002), - [anon_sym_EQ_EQ2] = ACTIONS(1002), - [anon_sym_BANG_EQ2] = ACTIONS(1002), - [anon_sym_LT2] = ACTIONS(1000), - [anon_sym_LT_EQ2] = ACTIONS(1002), - [anon_sym_GT_EQ2] = ACTIONS(1002), - [anon_sym_EQ_TILDE2] = ACTIONS(1002), - [anon_sym_BANG_TILDE2] = ACTIONS(1002), - [anon_sym_STAR_STAR2] = ACTIONS(1002), - [anon_sym_PLUS_PLUS2] = ACTIONS(1000), - [anon_sym_SLASH2] = ACTIONS(1000), - [anon_sym_mod2] = ACTIONS(1002), - [anon_sym_SLASH_SLASH2] = ACTIONS(1002), - [anon_sym_PLUS2] = ACTIONS(1000), - [anon_sym_bit_DASHshl2] = ACTIONS(1002), - [anon_sym_bit_DASHshr2] = ACTIONS(1002), - [anon_sym_bit_DASHand2] = ACTIONS(1002), - [anon_sym_bit_DASHxor2] = ACTIONS(1002), - [anon_sym_bit_DASHor2] = ACTIONS(1002), - [anon_sym_DOT_DOT2] = ACTIONS(1000), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1002), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1002), - [anon_sym_err_GT] = ACTIONS(1000), - [anon_sym_out_GT] = ACTIONS(1000), - [anon_sym_e_GT] = ACTIONS(1000), - [anon_sym_o_GT] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT] = ACTIONS(1000), - [anon_sym_err_GT_GT] = ACTIONS(1002), - [anon_sym_out_GT_GT] = ACTIONS(1002), - [anon_sym_e_GT_GT] = ACTIONS(1002), - [anon_sym_o_GT_GT] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1002), - [anon_sym_POUND] = ACTIONS(251), + [ts_builtin_sym_end] = ACTIONS(1586), + [sym__newline] = ACTIONS(1586), + [anon_sym_SEMI] = ACTIONS(1586), + [anon_sym_PIPE] = ACTIONS(1586), + [anon_sym_err_GT_PIPE] = ACTIONS(1586), + [anon_sym_out_GT_PIPE] = ACTIONS(1586), + [anon_sym_e_GT_PIPE] = ACTIONS(1586), + [anon_sym_o_GT_PIPE] = ACTIONS(1586), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1586), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1586), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1586), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1586), + [anon_sym_DOLLAR] = ACTIONS(4484), + [anon_sym_GT2] = ACTIONS(1584), + [anon_sym_DASH2] = ACTIONS(1584), + [anon_sym_in2] = ACTIONS(1586), + [anon_sym_STAR2] = ACTIONS(1584), + [anon_sym_and2] = ACTIONS(1586), + [anon_sym_xor2] = ACTIONS(1586), + [anon_sym_or2] = ACTIONS(1586), + [anon_sym_not_DASHin2] = ACTIONS(1586), + [anon_sym_has2] = ACTIONS(1586), + [anon_sym_not_DASHhas2] = ACTIONS(1586), + [anon_sym_starts_DASHwith2] = ACTIONS(1586), + [anon_sym_ends_DASHwith2] = ACTIONS(1586), + [anon_sym_EQ_EQ2] = ACTIONS(1586), + [anon_sym_BANG_EQ2] = ACTIONS(1586), + [anon_sym_LT2] = ACTIONS(1584), + [anon_sym_LT_EQ2] = ACTIONS(1586), + [anon_sym_GT_EQ2] = ACTIONS(1586), + [anon_sym_EQ_TILDE2] = ACTIONS(1586), + [anon_sym_BANG_TILDE2] = ACTIONS(1586), + [anon_sym_LPAREN2] = ACTIONS(4486), + [anon_sym_STAR_STAR2] = ACTIONS(1586), + [anon_sym_PLUS_PLUS2] = ACTIONS(1586), + [anon_sym_SLASH2] = ACTIONS(1584), + [anon_sym_mod2] = ACTIONS(1586), + [anon_sym_SLASH_SLASH2] = ACTIONS(1586), + [anon_sym_PLUS2] = ACTIONS(1584), + [anon_sym_bit_DASHshl2] = ACTIONS(1586), + [anon_sym_bit_DASHshr2] = ACTIONS(1586), + [anon_sym_bit_DASHand2] = ACTIONS(1586), + [anon_sym_bit_DASHxor2] = ACTIONS(1586), + [anon_sym_bit_DASHor2] = ACTIONS(1586), + [aux_sym__immediate_decimal_token1] = ACTIONS(4732), + [aux_sym__immediate_decimal_token3] = ACTIONS(4732), + [aux_sym__immediate_decimal_token4] = ACTIONS(4492), + [aux_sym__immediate_decimal_token5] = ACTIONS(4494), + [anon_sym_err_GT] = ACTIONS(1584), + [anon_sym_out_GT] = ACTIONS(1584), + [anon_sym_e_GT] = ACTIONS(1584), + [anon_sym_o_GT] = ACTIONS(1584), + [anon_sym_err_PLUSout_GT] = ACTIONS(1584), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1584), + [anon_sym_o_PLUSe_GT] = ACTIONS(1584), + [anon_sym_e_PLUSo_GT] = ACTIONS(1584), + [anon_sym_err_GT_GT] = ACTIONS(1586), + [anon_sym_out_GT_GT] = ACTIONS(1586), + [anon_sym_e_GT_GT] = ACTIONS(1586), + [anon_sym_o_GT_GT] = ACTIONS(1586), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1586), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1586), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1586), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1586), + [anon_sym_POUND] = ACTIONS(247), }, [1442] = { - [sym_cell_path] = STATE(1788), - [sym_path] = STATE(1680), [sym_comment] = STATE(1442), - [aux_sym_cell_path_repeat1] = STATE(1535), - [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_DASH2] = ACTIONS(1953), - [anon_sym_LBRACE] = ACTIONS(1955), - [anon_sym_RBRACE] = ACTIONS(1955), - [anon_sym_DOT_DOT] = ACTIONS(1953), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1955), - [anon_sym_DOT_DOT_LT] = ACTIONS(1955), - [anon_sym_null] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1955), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(1955), - [aux_sym__val_number_token5] = ACTIONS(1955), - [aux_sym__val_number_token6] = 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_DOT2] = ACTIONS(4696), - [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(251), - [sym_raw_string_begin] = ACTIONS(1955), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_RPAREN] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1703), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_DOT_DOT] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1701), + [anon_sym_DOT_DOT_LT] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [anon_sym_null] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1703), + [aux_sym__val_number_token5] = ACTIONS(1703), + [aux_sym__val_number_token6] = ACTIONS(1703), + [anon_sym_0b] = ACTIONS(1701), + [anon_sym_0o] = ACTIONS(1701), + [anon_sym_0x] = ACTIONS(1701), + [sym_val_date] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [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(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token1] = ACTIONS(1701), + [aux_sym_unquoted_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1703), }, [1443] = { - [sym_cell_path] = STATE(1815), - [sym_path] = STATE(1680), + [sym__expr_parenthesized_immediate] = STATE(2511), + [sym__immediate_decimal] = STATE(2512), + [sym_val_variable] = STATE(2511), [sym_comment] = STATE(1443), - [aux_sym_cell_path_repeat1] = STATE(1535), - [sym__newline] = ACTIONS(1935), - [anon_sym_SEMI] = ACTIONS(1935), - [anon_sym_PIPE] = ACTIONS(1935), - [anon_sym_err_GT_PIPE] = ACTIONS(1935), - [anon_sym_out_GT_PIPE] = ACTIONS(1935), - [anon_sym_e_GT_PIPE] = ACTIONS(1935), - [anon_sym_o_GT_PIPE] = ACTIONS(1935), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1935), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1935), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1935), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1935), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_LPAREN] = ACTIONS(1935), - [anon_sym_RPAREN] = ACTIONS(1935), - [anon_sym_DOLLAR] = ACTIONS(1933), - [anon_sym_DASH_DASH] = ACTIONS(1935), - [anon_sym_DASH2] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1935), - [anon_sym_RBRACE] = ACTIONS(1935), - [anon_sym_DOT_DOT] = ACTIONS(1933), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1935), - [anon_sym_DOT_DOT_LT] = ACTIONS(1935), - [anon_sym_null] = ACTIONS(1935), - [anon_sym_true] = ACTIONS(1935), - [anon_sym_false] = ACTIONS(1935), - [aux_sym__val_number_decimal_token1] = ACTIONS(1933), - [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), - [aux_sym__val_number_token4] = ACTIONS(1935), - [aux_sym__val_number_token5] = ACTIONS(1935), - [aux_sym__val_number_token6] = ACTIONS(1935), - [anon_sym_0b] = ACTIONS(1933), - [anon_sym_0o] = ACTIONS(1933), - [anon_sym_0x] = ACTIONS(1933), - [sym_val_date] = ACTIONS(1935), - [anon_sym_DQUOTE] = ACTIONS(1935), - [sym__str_single_quotes] = ACTIONS(1935), - [sym__str_back_ticks] = ACTIONS(1935), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1935), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1935), - [anon_sym_DOT2] = ACTIONS(4696), - [anon_sym_err_GT] = ACTIONS(1933), - [anon_sym_out_GT] = ACTIONS(1933), - [anon_sym_e_GT] = ACTIONS(1933), - [anon_sym_o_GT] = ACTIONS(1933), - [anon_sym_err_PLUSout_GT] = ACTIONS(1933), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1933), - [anon_sym_o_PLUSe_GT] = ACTIONS(1933), - [anon_sym_e_PLUSo_GT] = ACTIONS(1933), - [anon_sym_err_GT_GT] = ACTIONS(1935), - [anon_sym_out_GT_GT] = ACTIONS(1935), - [anon_sym_e_GT_GT] = ACTIONS(1935), - [anon_sym_o_GT_GT] = ACTIONS(1935), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1935), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1935), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1935), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1935), - [aux_sym_unquoted_token1] = ACTIONS(1933), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1935), + [ts_builtin_sym_end] = ACTIONS(1590), + [sym__newline] = ACTIONS(1590), + [anon_sym_SEMI] = ACTIONS(1590), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_err_GT_PIPE] = ACTIONS(1590), + [anon_sym_out_GT_PIPE] = ACTIONS(1590), + [anon_sym_e_GT_PIPE] = ACTIONS(1590), + [anon_sym_o_GT_PIPE] = ACTIONS(1590), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1590), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1590), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1590), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1590), + [anon_sym_DOLLAR] = ACTIONS(4484), + [anon_sym_GT2] = ACTIONS(1588), + [anon_sym_DASH2] = ACTIONS(1588), + [anon_sym_in2] = ACTIONS(1590), + [anon_sym_STAR2] = ACTIONS(1588), + [anon_sym_and2] = ACTIONS(1590), + [anon_sym_xor2] = ACTIONS(1590), + [anon_sym_or2] = ACTIONS(1590), + [anon_sym_not_DASHin2] = ACTIONS(1590), + [anon_sym_has2] = ACTIONS(1590), + [anon_sym_not_DASHhas2] = ACTIONS(1590), + [anon_sym_starts_DASHwith2] = ACTIONS(1590), + [anon_sym_ends_DASHwith2] = ACTIONS(1590), + [anon_sym_EQ_EQ2] = ACTIONS(1590), + [anon_sym_BANG_EQ2] = ACTIONS(1590), + [anon_sym_LT2] = ACTIONS(1588), + [anon_sym_LT_EQ2] = ACTIONS(1590), + [anon_sym_GT_EQ2] = ACTIONS(1590), + [anon_sym_EQ_TILDE2] = ACTIONS(1590), + [anon_sym_BANG_TILDE2] = ACTIONS(1590), + [anon_sym_LPAREN2] = ACTIONS(4486), + [anon_sym_STAR_STAR2] = ACTIONS(1590), + [anon_sym_PLUS_PLUS2] = ACTIONS(1590), + [anon_sym_SLASH2] = ACTIONS(1588), + [anon_sym_mod2] = ACTIONS(1590), + [anon_sym_SLASH_SLASH2] = ACTIONS(1590), + [anon_sym_PLUS2] = ACTIONS(1588), + [anon_sym_bit_DASHshl2] = ACTIONS(1590), + [anon_sym_bit_DASHshr2] = ACTIONS(1590), + [anon_sym_bit_DASHand2] = ACTIONS(1590), + [anon_sym_bit_DASHxor2] = ACTIONS(1590), + [anon_sym_bit_DASHor2] = ACTIONS(1590), + [aux_sym__immediate_decimal_token1] = ACTIONS(4732), + [aux_sym__immediate_decimal_token3] = ACTIONS(4732), + [aux_sym__immediate_decimal_token4] = ACTIONS(4492), + [aux_sym__immediate_decimal_token5] = ACTIONS(4494), + [anon_sym_err_GT] = ACTIONS(1588), + [anon_sym_out_GT] = ACTIONS(1588), + [anon_sym_e_GT] = ACTIONS(1588), + [anon_sym_o_GT] = ACTIONS(1588), + [anon_sym_err_PLUSout_GT] = ACTIONS(1588), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1588), + [anon_sym_o_PLUSe_GT] = ACTIONS(1588), + [anon_sym_e_PLUSo_GT] = ACTIONS(1588), + [anon_sym_err_GT_GT] = ACTIONS(1590), + [anon_sym_out_GT_GT] = ACTIONS(1590), + [anon_sym_e_GT_GT] = ACTIONS(1590), + [anon_sym_o_GT_GT] = ACTIONS(1590), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1590), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1590), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1590), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1590), + [anon_sym_POUND] = ACTIONS(247), }, [1444] = { - [sym_cell_path] = STATE(1747), - [sym_path] = STATE(1680), + [sym__expr_parenthesized_immediate] = STATE(2513), + [sym__immediate_decimal] = STATE(2514), + [sym_val_variable] = STATE(2513), [sym_comment] = STATE(1444), - [aux_sym_cell_path_repeat1] = STATE(1535), - [sym__newline] = ACTIONS(1911), - [anon_sym_SEMI] = ACTIONS(1911), - [anon_sym_PIPE] = ACTIONS(1911), - [anon_sym_err_GT_PIPE] = ACTIONS(1911), - [anon_sym_out_GT_PIPE] = ACTIONS(1911), - [anon_sym_e_GT_PIPE] = ACTIONS(1911), - [anon_sym_o_GT_PIPE] = ACTIONS(1911), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1911), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1911), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1911), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1911), - [anon_sym_LBRACK] = ACTIONS(1911), - [anon_sym_LPAREN] = ACTIONS(1911), - [anon_sym_RPAREN] = ACTIONS(1911), - [anon_sym_DOLLAR] = ACTIONS(1909), - [anon_sym_DASH_DASH] = ACTIONS(1911), - [anon_sym_DASH2] = ACTIONS(1909), - [anon_sym_LBRACE] = ACTIONS(1911), - [anon_sym_RBRACE] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1911), - [anon_sym_DOT_DOT_LT] = ACTIONS(1911), - [anon_sym_null] = ACTIONS(1911), - [anon_sym_true] = ACTIONS(1911), - [anon_sym_false] = ACTIONS(1911), - [aux_sym__val_number_decimal_token1] = ACTIONS(1909), - [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), - [aux_sym__val_number_token4] = ACTIONS(1911), - [aux_sym__val_number_token5] = ACTIONS(1911), - [aux_sym__val_number_token6] = 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_DOT2] = ACTIONS(4696), - [anon_sym_err_GT] = ACTIONS(1909), - [anon_sym_out_GT] = ACTIONS(1909), - [anon_sym_e_GT] = ACTIONS(1909), - [anon_sym_o_GT] = ACTIONS(1909), - [anon_sym_err_PLUSout_GT] = ACTIONS(1909), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1909), - [anon_sym_o_PLUSe_GT] = ACTIONS(1909), - [anon_sym_e_PLUSo_GT] = ACTIONS(1909), - [anon_sym_err_GT_GT] = ACTIONS(1911), - [anon_sym_out_GT_GT] = ACTIONS(1911), - [anon_sym_e_GT_GT] = ACTIONS(1911), - [anon_sym_o_GT_GT] = ACTIONS(1911), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1911), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1911), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1911), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1911), - [aux_sym_unquoted_token1] = ACTIONS(1909), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1911), + [ts_builtin_sym_end] = ACTIONS(1560), + [sym__newline] = ACTIONS(1560), + [anon_sym_SEMI] = ACTIONS(1560), + [anon_sym_PIPE] = ACTIONS(1560), + [anon_sym_err_GT_PIPE] = ACTIONS(1560), + [anon_sym_out_GT_PIPE] = ACTIONS(1560), + [anon_sym_e_GT_PIPE] = ACTIONS(1560), + [anon_sym_o_GT_PIPE] = ACTIONS(1560), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1560), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1560), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1560), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1560), + [anon_sym_DOLLAR] = ACTIONS(4484), + [anon_sym_GT2] = ACTIONS(1558), + [anon_sym_DASH2] = ACTIONS(1558), + [anon_sym_in2] = ACTIONS(1560), + [anon_sym_STAR2] = ACTIONS(1558), + [anon_sym_and2] = ACTIONS(1560), + [anon_sym_xor2] = ACTIONS(1560), + [anon_sym_or2] = ACTIONS(1560), + [anon_sym_not_DASHin2] = ACTIONS(1560), + [anon_sym_has2] = ACTIONS(1560), + [anon_sym_not_DASHhas2] = ACTIONS(1560), + [anon_sym_starts_DASHwith2] = ACTIONS(1560), + [anon_sym_ends_DASHwith2] = ACTIONS(1560), + [anon_sym_EQ_EQ2] = ACTIONS(1560), + [anon_sym_BANG_EQ2] = ACTIONS(1560), + [anon_sym_LT2] = ACTIONS(1558), + [anon_sym_LT_EQ2] = ACTIONS(1560), + [anon_sym_GT_EQ2] = ACTIONS(1560), + [anon_sym_EQ_TILDE2] = ACTIONS(1560), + [anon_sym_BANG_TILDE2] = ACTIONS(1560), + [anon_sym_LPAREN2] = ACTIONS(4486), + [anon_sym_STAR_STAR2] = ACTIONS(1560), + [anon_sym_PLUS_PLUS2] = ACTIONS(1560), + [anon_sym_SLASH2] = ACTIONS(1558), + [anon_sym_mod2] = ACTIONS(1560), + [anon_sym_SLASH_SLASH2] = ACTIONS(1560), + [anon_sym_PLUS2] = ACTIONS(1558), + [anon_sym_bit_DASHshl2] = ACTIONS(1560), + [anon_sym_bit_DASHshr2] = ACTIONS(1560), + [anon_sym_bit_DASHand2] = ACTIONS(1560), + [anon_sym_bit_DASHxor2] = ACTIONS(1560), + [anon_sym_bit_DASHor2] = ACTIONS(1560), + [aux_sym__immediate_decimal_token1] = ACTIONS(4732), + [aux_sym__immediate_decimal_token3] = ACTIONS(4732), + [aux_sym__immediate_decimal_token4] = ACTIONS(4492), + [aux_sym__immediate_decimal_token5] = ACTIONS(4494), + [anon_sym_err_GT] = ACTIONS(1558), + [anon_sym_out_GT] = ACTIONS(1558), + [anon_sym_e_GT] = ACTIONS(1558), + [anon_sym_o_GT] = ACTIONS(1558), + [anon_sym_err_PLUSout_GT] = ACTIONS(1558), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1558), + [anon_sym_o_PLUSe_GT] = ACTIONS(1558), + [anon_sym_e_PLUSo_GT] = ACTIONS(1558), + [anon_sym_err_GT_GT] = ACTIONS(1560), + [anon_sym_out_GT_GT] = ACTIONS(1560), + [anon_sym_e_GT_GT] = ACTIONS(1560), + [anon_sym_o_GT_GT] = ACTIONS(1560), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1560), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1560), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1560), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1560), + [anon_sym_POUND] = ACTIONS(247), }, [1445] = { - [sym_cell_path] = STATE(1810), - [sym_path] = STATE(1680), [sym_comment] = STATE(1445), - [aux_sym_cell_path_repeat1] = STATE(1535), - [sym__newline] = ACTIONS(1967), - [anon_sym_SEMI] = ACTIONS(1967), - [anon_sym_PIPE] = ACTIONS(1967), - [anon_sym_err_GT_PIPE] = ACTIONS(1967), - [anon_sym_out_GT_PIPE] = ACTIONS(1967), - [anon_sym_e_GT_PIPE] = ACTIONS(1967), - [anon_sym_o_GT_PIPE] = ACTIONS(1967), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1967), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1967), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1967), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1967), - [anon_sym_LBRACK] = ACTIONS(1967), - [anon_sym_LPAREN] = ACTIONS(1967), - [anon_sym_RPAREN] = ACTIONS(1967), - [anon_sym_DOLLAR] = ACTIONS(1965), - [anon_sym_DASH_DASH] = ACTIONS(1967), - [anon_sym_DASH2] = ACTIONS(1965), - [anon_sym_LBRACE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(1967), - [anon_sym_DOT_DOT] = ACTIONS(1965), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1967), - [anon_sym_DOT_DOT_LT] = ACTIONS(1967), - [anon_sym_null] = ACTIONS(1967), - [anon_sym_true] = ACTIONS(1967), - [anon_sym_false] = ACTIONS(1967), - [aux_sym__val_number_decimal_token1] = ACTIONS(1965), - [aux_sym__val_number_decimal_token2] = ACTIONS(1967), - [aux_sym__val_number_decimal_token3] = ACTIONS(1967), - [aux_sym__val_number_decimal_token4] = ACTIONS(1967), - [aux_sym__val_number_token1] = ACTIONS(1967), - [aux_sym__val_number_token2] = ACTIONS(1967), - [aux_sym__val_number_token3] = ACTIONS(1967), - [aux_sym__val_number_token4] = ACTIONS(1967), - [aux_sym__val_number_token5] = ACTIONS(1967), - [aux_sym__val_number_token6] = ACTIONS(1967), - [anon_sym_0b] = ACTIONS(1965), - [anon_sym_0o] = ACTIONS(1965), - [anon_sym_0x] = ACTIONS(1965), - [sym_val_date] = ACTIONS(1967), - [anon_sym_DQUOTE] = ACTIONS(1967), - [sym__str_single_quotes] = ACTIONS(1967), - [sym__str_back_ticks] = ACTIONS(1967), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1967), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1967), - [anon_sym_DOT2] = ACTIONS(4696), - [anon_sym_err_GT] = ACTIONS(1965), - [anon_sym_out_GT] = ACTIONS(1965), - [anon_sym_e_GT] = ACTIONS(1965), - [anon_sym_o_GT] = ACTIONS(1965), - [anon_sym_err_PLUSout_GT] = ACTIONS(1965), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1965), - [anon_sym_o_PLUSe_GT] = ACTIONS(1965), - [anon_sym_e_PLUSo_GT] = ACTIONS(1965), - [anon_sym_err_GT_GT] = ACTIONS(1967), - [anon_sym_out_GT_GT] = ACTIONS(1967), - [anon_sym_e_GT_GT] = ACTIONS(1967), - [anon_sym_o_GT_GT] = ACTIONS(1967), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1967), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1967), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1967), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1967), - [aux_sym_unquoted_token1] = ACTIONS(1965), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1967), + [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(1806), + [anon_sym_RPAREN] = ACTIONS(1814), + [anon_sym_DOLLAR] = ACTIONS(1806), + [anon_sym_DASH_DASH] = ACTIONS(1814), + [anon_sym_DASH2] = ACTIONS(1806), + [anon_sym_LBRACE] = ACTIONS(1814), + [anon_sym_RBRACE] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1806), + [anon_sym_LPAREN2] = ACTIONS(1808), + [anon_sym_DOT_DOT2] = ACTIONS(4734), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1806), + [anon_sym_DOT_DOT_LT] = ACTIONS(1806), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4736), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4736), + [anon_sym_null] = ACTIONS(1814), + [anon_sym_true] = ACTIONS(1814), + [anon_sym_false] = ACTIONS(1814), + [aux_sym__val_number_decimal_token1] = ACTIONS(1806), + [aux_sym__val_number_decimal_token2] = ACTIONS(1814), + [aux_sym__val_number_decimal_token3] = ACTIONS(1814), + [aux_sym__val_number_decimal_token4] = ACTIONS(1814), + [aux_sym__val_number_token1] = ACTIONS(1814), + [aux_sym__val_number_token2] = ACTIONS(1814), + [aux_sym__val_number_token3] = ACTIONS(1814), + [aux_sym__val_number_token4] = ACTIONS(1814), + [aux_sym__val_number_token5] = ACTIONS(1814), + [aux_sym__val_number_token6] = ACTIONS(1814), + [anon_sym_0b] = ACTIONS(1806), + [anon_sym_0o] = ACTIONS(1806), + [anon_sym_0x] = ACTIONS(1806), + [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(1806), + [anon_sym_out_GT] = ACTIONS(1806), + [anon_sym_e_GT] = ACTIONS(1806), + [anon_sym_o_GT] = ACTIONS(1806), + [anon_sym_err_PLUSout_GT] = ACTIONS(1806), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1806), + [anon_sym_o_PLUSe_GT] = ACTIONS(1806), + [anon_sym_e_PLUSo_GT] = ACTIONS(1806), + [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(1806), + [aux_sym_unquoted_token2] = ACTIONS(1457), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1814), }, [1446] = { - [sym_cell_path] = STATE(1733), - [sym_path] = STATE(1680), [sym_comment] = STATE(1446), - [aux_sym_cell_path_repeat1] = STATE(1535), - [sym__newline] = ACTIONS(1923), - [anon_sym_SEMI] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(1923), - [anon_sym_err_GT_PIPE] = ACTIONS(1923), - [anon_sym_out_GT_PIPE] = ACTIONS(1923), - [anon_sym_e_GT_PIPE] = ACTIONS(1923), - [anon_sym_o_GT_PIPE] = ACTIONS(1923), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1923), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1923), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1923), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1923), - [anon_sym_LBRACK] = ACTIONS(1923), - [anon_sym_LPAREN] = ACTIONS(1923), - [anon_sym_RPAREN] = ACTIONS(1923), - [anon_sym_DOLLAR] = ACTIONS(1921), - [anon_sym_DASH_DASH] = ACTIONS(1923), - [anon_sym_DASH2] = ACTIONS(1921), - [anon_sym_LBRACE] = ACTIONS(1923), - [anon_sym_RBRACE] = ACTIONS(1923), - [anon_sym_DOT_DOT] = ACTIONS(1921), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1923), - [anon_sym_DOT_DOT_LT] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1923), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [aux_sym__val_number_decimal_token1] = ACTIONS(1921), - [aux_sym__val_number_decimal_token2] = ACTIONS(1923), - [aux_sym__val_number_decimal_token3] = ACTIONS(1923), - [aux_sym__val_number_decimal_token4] = ACTIONS(1923), - [aux_sym__val_number_token1] = ACTIONS(1923), - [aux_sym__val_number_token2] = ACTIONS(1923), - [aux_sym__val_number_token3] = ACTIONS(1923), - [aux_sym__val_number_token4] = ACTIONS(1923), - [aux_sym__val_number_token5] = ACTIONS(1923), - [aux_sym__val_number_token6] = ACTIONS(1923), - [anon_sym_0b] = ACTIONS(1921), - [anon_sym_0o] = ACTIONS(1921), - [anon_sym_0x] = ACTIONS(1921), - [sym_val_date] = ACTIONS(1923), - [anon_sym_DQUOTE] = ACTIONS(1923), - [sym__str_single_quotes] = ACTIONS(1923), - [sym__str_back_ticks] = ACTIONS(1923), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1923), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1923), - [anon_sym_DOT2] = ACTIONS(4696), - [anon_sym_err_GT] = ACTIONS(1921), - [anon_sym_out_GT] = ACTIONS(1921), - [anon_sym_e_GT] = ACTIONS(1921), - [anon_sym_o_GT] = ACTIONS(1921), - [anon_sym_err_PLUSout_GT] = ACTIONS(1921), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1921), - [anon_sym_o_PLUSe_GT] = ACTIONS(1921), - [anon_sym_e_PLUSo_GT] = ACTIONS(1921), - [anon_sym_err_GT_GT] = ACTIONS(1923), - [anon_sym_out_GT_GT] = ACTIONS(1923), - [anon_sym_e_GT_GT] = ACTIONS(1923), - [anon_sym_o_GT_GT] = ACTIONS(1923), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1923), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1923), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1923), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1923), - [aux_sym_unquoted_token1] = ACTIONS(1921), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1923), + [sym__newline] = ACTIONS(1695), + [anon_sym_SEMI] = ACTIONS(1695), + [anon_sym_PIPE] = ACTIONS(1695), + [anon_sym_err_GT_PIPE] = ACTIONS(1695), + [anon_sym_out_GT_PIPE] = ACTIONS(1695), + [anon_sym_e_GT_PIPE] = ACTIONS(1695), + [anon_sym_o_GT_PIPE] = ACTIONS(1695), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1695), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1695), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1695), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1695), + [anon_sym_LBRACK] = ACTIONS(1695), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_RPAREN] = ACTIONS(1695), + [anon_sym_DOLLAR] = ACTIONS(1693), + [anon_sym_DASH_DASH] = ACTIONS(1695), + [anon_sym_DASH2] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1695), + [anon_sym_RBRACE] = ACTIONS(1695), + [anon_sym_DOT_DOT] = ACTIONS(1693), + [anon_sym_LPAREN2] = ACTIONS(1695), + [anon_sym_DOT_DOT2] = ACTIONS(1693), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1693), + [anon_sym_DOT_DOT_LT] = ACTIONS(1693), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1695), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1695), + [anon_sym_null] = ACTIONS(1695), + [anon_sym_true] = ACTIONS(1695), + [anon_sym_false] = ACTIONS(1695), + [aux_sym__val_number_decimal_token1] = ACTIONS(1693), + [aux_sym__val_number_decimal_token2] = ACTIONS(1695), + [aux_sym__val_number_decimal_token3] = ACTIONS(1695), + [aux_sym__val_number_decimal_token4] = ACTIONS(1695), + [aux_sym__val_number_token1] = ACTIONS(1695), + [aux_sym__val_number_token2] = ACTIONS(1695), + [aux_sym__val_number_token3] = ACTIONS(1695), + [aux_sym__val_number_token4] = ACTIONS(1695), + [aux_sym__val_number_token5] = ACTIONS(1695), + [aux_sym__val_number_token6] = ACTIONS(1695), + [anon_sym_0b] = ACTIONS(1693), + [anon_sym_0o] = ACTIONS(1693), + [anon_sym_0x] = ACTIONS(1693), + [sym_val_date] = ACTIONS(1695), + [anon_sym_DQUOTE] = ACTIONS(1695), + [sym__str_single_quotes] = ACTIONS(1695), + [sym__str_back_ticks] = ACTIONS(1695), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1695), + [anon_sym_err_GT] = ACTIONS(1693), + [anon_sym_out_GT] = ACTIONS(1693), + [anon_sym_e_GT] = ACTIONS(1693), + [anon_sym_o_GT] = ACTIONS(1693), + [anon_sym_err_PLUSout_GT] = ACTIONS(1693), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1693), + [anon_sym_o_PLUSe_GT] = ACTIONS(1693), + [anon_sym_e_PLUSo_GT] = ACTIONS(1693), + [anon_sym_err_GT_GT] = ACTIONS(1695), + [anon_sym_out_GT_GT] = ACTIONS(1695), + [anon_sym_e_GT_GT] = ACTIONS(1695), + [anon_sym_o_GT_GT] = ACTIONS(1695), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1695), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1695), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1695), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1695), + [aux_sym_unquoted_token1] = ACTIONS(1693), + [aux_sym_unquoted_token2] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1695), }, [1447] = { [sym_comment] = STATE(1447), - [ts_builtin_sym_end] = ACTIONS(994), - [anon_sym_EQ] = ACTIONS(992), - [anon_sym_PLUS_EQ] = ACTIONS(994), - [anon_sym_DASH_EQ] = ACTIONS(994), - [anon_sym_STAR_EQ] = ACTIONS(994), - [anon_sym_SLASH_EQ] = ACTIONS(994), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(994), - [sym__newline] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(994), - [anon_sym_err_GT_PIPE] = ACTIONS(994), - [anon_sym_out_GT_PIPE] = ACTIONS(994), - [anon_sym_e_GT_PIPE] = ACTIONS(994), - [anon_sym_o_GT_PIPE] = ACTIONS(994), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), - [anon_sym_GT2] = ACTIONS(992), - [anon_sym_DASH2] = ACTIONS(992), - [anon_sym_in2] = ACTIONS(994), - [anon_sym_STAR2] = ACTIONS(992), - [anon_sym_and2] = ACTIONS(994), - [anon_sym_xor2] = ACTIONS(994), - [anon_sym_or2] = ACTIONS(994), - [anon_sym_not_DASHin2] = ACTIONS(994), - [anon_sym_starts_DASHwith2] = ACTIONS(994), - [anon_sym_ends_DASHwith2] = ACTIONS(994), - [anon_sym_EQ_EQ2] = ACTIONS(994), - [anon_sym_BANG_EQ2] = ACTIONS(994), - [anon_sym_LT2] = ACTIONS(992), - [anon_sym_LT_EQ2] = ACTIONS(994), - [anon_sym_GT_EQ2] = ACTIONS(994), - [anon_sym_EQ_TILDE2] = ACTIONS(994), - [anon_sym_BANG_TILDE2] = ACTIONS(994), - [anon_sym_STAR_STAR2] = ACTIONS(994), - [anon_sym_PLUS_PLUS2] = ACTIONS(992), - [anon_sym_SLASH2] = ACTIONS(992), - [anon_sym_mod2] = ACTIONS(994), - [anon_sym_SLASH_SLASH2] = ACTIONS(994), - [anon_sym_PLUS2] = ACTIONS(992), - [anon_sym_bit_DASHshl2] = ACTIONS(994), - [anon_sym_bit_DASHshr2] = ACTIONS(994), - [anon_sym_bit_DASHand2] = ACTIONS(994), - [anon_sym_bit_DASHxor2] = ACTIONS(994), - [anon_sym_bit_DASHor2] = ACTIONS(994), - [anon_sym_DOT_DOT2] = ACTIONS(992), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(994), - [anon_sym_DOT_DOT_LT2] = ACTIONS(994), - [anon_sym_DOT2] = ACTIONS(992), - [anon_sym_err_GT] = ACTIONS(992), - [anon_sym_out_GT] = ACTIONS(992), - [anon_sym_e_GT] = ACTIONS(992), - [anon_sym_o_GT] = ACTIONS(992), - [anon_sym_err_PLUSout_GT] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT] = ACTIONS(992), - [anon_sym_o_PLUSe_GT] = ACTIONS(992), - [anon_sym_e_PLUSo_GT] = ACTIONS(992), - [anon_sym_err_GT_GT] = ACTIONS(994), - [anon_sym_out_GT_GT] = ACTIONS(994), - [anon_sym_e_GT_GT] = ACTIONS(994), - [anon_sym_o_GT_GT] = ACTIONS(994), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(1695), + [anon_sym_SEMI] = ACTIONS(1695), + [anon_sym_PIPE] = ACTIONS(1695), + [anon_sym_err_GT_PIPE] = ACTIONS(1695), + [anon_sym_out_GT_PIPE] = ACTIONS(1695), + [anon_sym_e_GT_PIPE] = ACTIONS(1695), + [anon_sym_o_GT_PIPE] = ACTIONS(1695), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1695), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1695), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1695), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1695), + [anon_sym_LBRACK] = ACTIONS(1695), + [anon_sym_LPAREN] = ACTIONS(1695), + [anon_sym_RPAREN] = ACTIONS(1695), + [anon_sym_DOLLAR] = ACTIONS(1693), + [anon_sym_DASH_DASH] = ACTIONS(1695), + [anon_sym_DASH2] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1695), + [anon_sym_RBRACE] = ACTIONS(1695), + [anon_sym_DOT_DOT] = ACTIONS(1693), + [anon_sym_DOT_DOT2] = ACTIONS(1693), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1693), + [anon_sym_DOT_DOT_LT] = ACTIONS(1693), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1695), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1695), + [aux_sym__immediate_decimal_token1] = ACTIONS(4738), + [aux_sym__immediate_decimal_token2] = ACTIONS(4740), + [anon_sym_null] = ACTIONS(1695), + [anon_sym_true] = ACTIONS(1695), + [anon_sym_false] = ACTIONS(1695), + [aux_sym__val_number_decimal_token1] = ACTIONS(1693), + [aux_sym__val_number_decimal_token2] = ACTIONS(1695), + [aux_sym__val_number_decimal_token3] = ACTIONS(1695), + [aux_sym__val_number_decimal_token4] = ACTIONS(1695), + [aux_sym__val_number_token1] = ACTIONS(1695), + [aux_sym__val_number_token2] = ACTIONS(1695), + [aux_sym__val_number_token3] = ACTIONS(1695), + [aux_sym__val_number_token4] = ACTIONS(1695), + [aux_sym__val_number_token5] = ACTIONS(1695), + [aux_sym__val_number_token6] = ACTIONS(1695), + [anon_sym_0b] = ACTIONS(1693), + [anon_sym_0o] = ACTIONS(1693), + [anon_sym_0x] = ACTIONS(1693), + [sym_val_date] = ACTIONS(1695), + [anon_sym_DQUOTE] = ACTIONS(1695), + [sym__str_single_quotes] = ACTIONS(1695), + [sym__str_back_ticks] = ACTIONS(1695), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1695), + [anon_sym_err_GT] = ACTIONS(1693), + [anon_sym_out_GT] = ACTIONS(1693), + [anon_sym_e_GT] = ACTIONS(1693), + [anon_sym_o_GT] = ACTIONS(1693), + [anon_sym_err_PLUSout_GT] = ACTIONS(1693), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1693), + [anon_sym_o_PLUSe_GT] = ACTIONS(1693), + [anon_sym_e_PLUSo_GT] = ACTIONS(1693), + [anon_sym_err_GT_GT] = ACTIONS(1695), + [anon_sym_out_GT_GT] = ACTIONS(1695), + [anon_sym_e_GT_GT] = ACTIONS(1695), + [anon_sym_o_GT_GT] = ACTIONS(1695), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1695), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1695), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1695), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1695), + [aux_sym_unquoted_token1] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1695), }, [1448] = { [sym_comment] = STATE(1448), - [ts_builtin_sym_end] = ACTIONS(990), - [anon_sym_EQ] = ACTIONS(988), - [anon_sym_PLUS_EQ] = ACTIONS(990), - [anon_sym_DASH_EQ] = ACTIONS(990), - [anon_sym_STAR_EQ] = ACTIONS(990), - [anon_sym_SLASH_EQ] = ACTIONS(990), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(990), - [sym__newline] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_PIPE] = ACTIONS(990), - [anon_sym_err_GT_PIPE] = ACTIONS(990), - [anon_sym_out_GT_PIPE] = ACTIONS(990), - [anon_sym_e_GT_PIPE] = ACTIONS(990), - [anon_sym_o_GT_PIPE] = ACTIONS(990), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(990), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(990), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(990), - [anon_sym_GT2] = ACTIONS(988), - [anon_sym_DASH2] = ACTIONS(988), - [anon_sym_in2] = ACTIONS(990), - [anon_sym_STAR2] = ACTIONS(988), - [anon_sym_and2] = ACTIONS(990), - [anon_sym_xor2] = ACTIONS(990), - [anon_sym_or2] = ACTIONS(990), - [anon_sym_not_DASHin2] = ACTIONS(990), - [anon_sym_starts_DASHwith2] = ACTIONS(990), - [anon_sym_ends_DASHwith2] = ACTIONS(990), - [anon_sym_EQ_EQ2] = ACTIONS(990), - [anon_sym_BANG_EQ2] = ACTIONS(990), - [anon_sym_LT2] = ACTIONS(988), - [anon_sym_LT_EQ2] = ACTIONS(990), - [anon_sym_GT_EQ2] = ACTIONS(990), - [anon_sym_EQ_TILDE2] = ACTIONS(990), - [anon_sym_BANG_TILDE2] = ACTIONS(990), - [anon_sym_STAR_STAR2] = ACTIONS(990), - [anon_sym_PLUS_PLUS2] = ACTIONS(988), - [anon_sym_SLASH2] = ACTIONS(988), - [anon_sym_mod2] = ACTIONS(990), - [anon_sym_SLASH_SLASH2] = ACTIONS(990), - [anon_sym_PLUS2] = ACTIONS(988), - [anon_sym_bit_DASHshl2] = ACTIONS(990), - [anon_sym_bit_DASHshr2] = ACTIONS(990), - [anon_sym_bit_DASHand2] = ACTIONS(990), - [anon_sym_bit_DASHxor2] = ACTIONS(990), - [anon_sym_bit_DASHor2] = ACTIONS(990), - [anon_sym_DOT_DOT2] = ACTIONS(988), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(990), - [anon_sym_DOT_DOT_LT2] = ACTIONS(990), - [anon_sym_DOT2] = ACTIONS(988), - [anon_sym_err_GT] = ACTIONS(988), - [anon_sym_out_GT] = ACTIONS(988), - [anon_sym_e_GT] = ACTIONS(988), - [anon_sym_o_GT] = ACTIONS(988), - [anon_sym_err_PLUSout_GT] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT] = ACTIONS(988), - [anon_sym_o_PLUSe_GT] = ACTIONS(988), - [anon_sym_e_PLUSo_GT] = ACTIONS(988), - [anon_sym_err_GT_GT] = ACTIONS(990), - [anon_sym_out_GT_GT] = ACTIONS(990), - [anon_sym_e_GT_GT] = ACTIONS(990), - [anon_sym_o_GT_GT] = ACTIONS(990), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(990), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(990), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(990), - [anon_sym_POUND] = ACTIONS(251), - }, - [1449] = { - [sym_cell_path] = STATE(1759), - [sym_path] = STATE(1680), - [sym_comment] = STATE(1449), - [aux_sym_cell_path_repeat1] = STATE(1535), - [sym__newline] = ACTIONS(1931), - [anon_sym_SEMI] = ACTIONS(1931), - [anon_sym_PIPE] = ACTIONS(1931), - [anon_sym_err_GT_PIPE] = ACTIONS(1931), - [anon_sym_out_GT_PIPE] = ACTIONS(1931), - [anon_sym_e_GT_PIPE] = ACTIONS(1931), - [anon_sym_o_GT_PIPE] = ACTIONS(1931), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1931), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1931), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1931), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1931), - [anon_sym_LBRACK] = ACTIONS(1931), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_RPAREN] = ACTIONS(1931), - [anon_sym_DOLLAR] = ACTIONS(1929), - [anon_sym_DASH_DASH] = ACTIONS(1931), - [anon_sym_DASH2] = ACTIONS(1929), - [anon_sym_LBRACE] = ACTIONS(1931), - [anon_sym_RBRACE] = ACTIONS(1931), - [anon_sym_DOT_DOT] = ACTIONS(1929), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1931), - [anon_sym_DOT_DOT_LT] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1931), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [aux_sym__val_number_decimal_token1] = ACTIONS(1929), - [aux_sym__val_number_decimal_token2] = ACTIONS(1931), - [aux_sym__val_number_decimal_token3] = ACTIONS(1931), - [aux_sym__val_number_decimal_token4] = ACTIONS(1931), - [aux_sym__val_number_token1] = ACTIONS(1931), - [aux_sym__val_number_token2] = ACTIONS(1931), - [aux_sym__val_number_token3] = ACTIONS(1931), - [aux_sym__val_number_token4] = ACTIONS(1931), - [aux_sym__val_number_token5] = ACTIONS(1931), - [aux_sym__val_number_token6] = ACTIONS(1931), - [anon_sym_0b] = ACTIONS(1929), - [anon_sym_0o] = ACTIONS(1929), - [anon_sym_0x] = ACTIONS(1929), - [sym_val_date] = ACTIONS(1931), - [anon_sym_DQUOTE] = ACTIONS(1931), - [sym__str_single_quotes] = ACTIONS(1931), - [sym__str_back_ticks] = ACTIONS(1931), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1931), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1931), - [anon_sym_DOT2] = ACTIONS(4696), - [anon_sym_err_GT] = ACTIONS(1929), - [anon_sym_out_GT] = ACTIONS(1929), - [anon_sym_e_GT] = ACTIONS(1929), - [anon_sym_o_GT] = ACTIONS(1929), - [anon_sym_err_PLUSout_GT] = ACTIONS(1929), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1929), - [anon_sym_o_PLUSe_GT] = ACTIONS(1929), - [anon_sym_e_PLUSo_GT] = ACTIONS(1929), - [anon_sym_err_GT_GT] = ACTIONS(1931), - [anon_sym_out_GT_GT] = ACTIONS(1931), - [anon_sym_e_GT_GT] = ACTIONS(1931), - [anon_sym_o_GT_GT] = ACTIONS(1931), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1931), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1931), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1931), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1931), - [aux_sym_unquoted_token1] = ACTIONS(1929), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1931), - }, - [1450] = { - [sym_cell_path] = STATE(1811), - [sym_path] = STATE(1680), - [sym_comment] = STATE(1450), - [aux_sym_cell_path_repeat1] = STATE(1535), - [sym__newline] = ACTIONS(1971), - [anon_sym_SEMI] = ACTIONS(1971), - [anon_sym_PIPE] = ACTIONS(1971), - [anon_sym_err_GT_PIPE] = ACTIONS(1971), - [anon_sym_out_GT_PIPE] = ACTIONS(1971), - [anon_sym_e_GT_PIPE] = ACTIONS(1971), - [anon_sym_o_GT_PIPE] = ACTIONS(1971), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1971), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1971), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1971), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1971), - [anon_sym_LBRACK] = ACTIONS(1971), - [anon_sym_LPAREN] = ACTIONS(1971), - [anon_sym_RPAREN] = ACTIONS(1971), - [anon_sym_DOLLAR] = ACTIONS(1969), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DASH2] = ACTIONS(1969), - [anon_sym_LBRACE] = ACTIONS(1971), - [anon_sym_RBRACE] = ACTIONS(1971), - [anon_sym_DOT_DOT] = ACTIONS(1969), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1971), - [anon_sym_DOT_DOT_LT] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1971), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [aux_sym__val_number_decimal_token1] = ACTIONS(1969), - [aux_sym__val_number_decimal_token2] = ACTIONS(1971), - [aux_sym__val_number_decimal_token3] = ACTIONS(1971), - [aux_sym__val_number_decimal_token4] = ACTIONS(1971), - [aux_sym__val_number_token1] = ACTIONS(1971), - [aux_sym__val_number_token2] = ACTIONS(1971), - [aux_sym__val_number_token3] = ACTIONS(1971), - [aux_sym__val_number_token4] = ACTIONS(1971), - [aux_sym__val_number_token5] = ACTIONS(1971), - [aux_sym__val_number_token6] = ACTIONS(1971), - [anon_sym_0b] = ACTIONS(1969), - [anon_sym_0o] = ACTIONS(1969), - [anon_sym_0x] = ACTIONS(1969), - [sym_val_date] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1971), - [sym__str_single_quotes] = ACTIONS(1971), - [sym__str_back_ticks] = ACTIONS(1971), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1971), - [anon_sym_DOT2] = ACTIONS(4696), - [anon_sym_err_GT] = ACTIONS(1969), - [anon_sym_out_GT] = ACTIONS(1969), - [anon_sym_e_GT] = ACTIONS(1969), - [anon_sym_o_GT] = ACTIONS(1969), - [anon_sym_err_PLUSout_GT] = ACTIONS(1969), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1969), - [anon_sym_o_PLUSe_GT] = ACTIONS(1969), - [anon_sym_e_PLUSo_GT] = ACTIONS(1969), - [anon_sym_err_GT_GT] = ACTIONS(1971), - [anon_sym_out_GT_GT] = ACTIONS(1971), - [anon_sym_e_GT_GT] = ACTIONS(1971), - [anon_sym_o_GT_GT] = ACTIONS(1971), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1971), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1971), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1971), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1971), - [aux_sym_unquoted_token1] = ACTIONS(1969), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1971), - }, - [1451] = { - [sym_comment] = STATE(1451), - [ts_builtin_sym_end] = ACTIONS(1713), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1713), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_DOT_DOT] = ACTIONS(1711), - [anon_sym_LPAREN2] = ACTIONS(1713), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1711), - [anon_sym_DOT_DOT_LT] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [anon_sym_null] = ACTIONS(1713), - [anon_sym_true] = ACTIONS(1713), - [anon_sym_false] = ACTIONS(1713), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1713), - [aux_sym__val_number_decimal_token3] = ACTIONS(1713), - [aux_sym__val_number_decimal_token4] = ACTIONS(1713), - [aux_sym__val_number_token1] = ACTIONS(1713), - [aux_sym__val_number_token2] = ACTIONS(1713), - [aux_sym__val_number_token3] = ACTIONS(1713), - [aux_sym__val_number_token4] = ACTIONS(1713), - [aux_sym__val_number_token5] = ACTIONS(1713), - [aux_sym__val_number_token6] = ACTIONS(1713), - [anon_sym_0b] = ACTIONS(1711), - [anon_sym_0o] = ACTIONS(1711), - [anon_sym_0x] = ACTIONS(1711), - [sym_val_date] = ACTIONS(1713), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym__str_single_quotes] = ACTIONS(1713), - [sym__str_back_ticks] = ACTIONS(1713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1713), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [aux_sym_unquoted_token1] = ACTIONS(1711), - [aux_sym_unquoted_token2] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1713), - }, - [1452] = { - [sym_cell_path] = STATE(1716), - [sym_path] = STATE(1680), - [sym_comment] = STATE(1452), - [aux_sym_cell_path_repeat1] = STATE(1535), - [sym__newline] = ACTIONS(1943), - [anon_sym_SEMI] = ACTIONS(1943), - [anon_sym_PIPE] = ACTIONS(1943), - [anon_sym_err_GT_PIPE] = ACTIONS(1943), - [anon_sym_out_GT_PIPE] = ACTIONS(1943), - [anon_sym_e_GT_PIPE] = ACTIONS(1943), - [anon_sym_o_GT_PIPE] = ACTIONS(1943), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1943), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1943), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1943), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1943), - [anon_sym_LBRACK] = ACTIONS(1943), - [anon_sym_LPAREN] = ACTIONS(1943), - [anon_sym_RPAREN] = ACTIONS(1943), - [anon_sym_DOLLAR] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(1943), - [anon_sym_DASH2] = ACTIONS(1941), - [anon_sym_LBRACE] = ACTIONS(1943), - [anon_sym_RBRACE] = ACTIONS(1943), - [anon_sym_DOT_DOT] = ACTIONS(1941), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1943), - [anon_sym_DOT_DOT_LT] = ACTIONS(1943), - [anon_sym_null] = ACTIONS(1943), - [anon_sym_true] = ACTIONS(1943), - [anon_sym_false] = ACTIONS(1943), - [aux_sym__val_number_decimal_token1] = ACTIONS(1941), - [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), - [aux_sym__val_number_token4] = ACTIONS(1943), - [aux_sym__val_number_token5] = ACTIONS(1943), - [aux_sym__val_number_token6] = ACTIONS(1943), - [anon_sym_0b] = ACTIONS(1941), - [anon_sym_0o] = ACTIONS(1941), - [anon_sym_0x] = ACTIONS(1941), - [sym_val_date] = ACTIONS(1943), - [anon_sym_DQUOTE] = ACTIONS(1943), - [sym__str_single_quotes] = ACTIONS(1943), - [sym__str_back_ticks] = ACTIONS(1943), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1943), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1943), - [anon_sym_DOT2] = ACTIONS(4696), - [anon_sym_err_GT] = ACTIONS(1941), - [anon_sym_out_GT] = ACTIONS(1941), - [anon_sym_e_GT] = ACTIONS(1941), - [anon_sym_o_GT] = ACTIONS(1941), - [anon_sym_err_PLUSout_GT] = ACTIONS(1941), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1941), - [anon_sym_o_PLUSe_GT] = ACTIONS(1941), - [anon_sym_e_PLUSo_GT] = ACTIONS(1941), - [anon_sym_err_GT_GT] = ACTIONS(1943), - [anon_sym_out_GT_GT] = ACTIONS(1943), - [anon_sym_e_GT_GT] = ACTIONS(1943), - [anon_sym_o_GT_GT] = ACTIONS(1943), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1943), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1943), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1943), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1943), - [aux_sym_unquoted_token1] = ACTIONS(1941), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1943), - }, - [1453] = { - [sym_cell_path] = STATE(1717), - [sym_path] = STATE(1680), - [sym_comment] = STATE(1453), - [aux_sym_cell_path_repeat1] = STATE(1535), - [sym__newline] = ACTIONS(1981), - [anon_sym_SEMI] = ACTIONS(1981), - [anon_sym_PIPE] = ACTIONS(1981), - [anon_sym_err_GT_PIPE] = ACTIONS(1981), - [anon_sym_out_GT_PIPE] = ACTIONS(1981), - [anon_sym_e_GT_PIPE] = ACTIONS(1981), - [anon_sym_o_GT_PIPE] = ACTIONS(1981), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1981), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1981), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1981), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1981), - [anon_sym_LBRACK] = ACTIONS(1981), - [anon_sym_LPAREN] = ACTIONS(1981), - [anon_sym_RPAREN] = ACTIONS(1981), - [anon_sym_DOLLAR] = ACTIONS(1979), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_DASH2] = ACTIONS(1979), - [anon_sym_LBRACE] = ACTIONS(1981), - [anon_sym_RBRACE] = ACTIONS(1981), - [anon_sym_DOT_DOT] = ACTIONS(1979), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1981), - [anon_sym_DOT_DOT_LT] = ACTIONS(1981), - [anon_sym_null] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(1981), - [anon_sym_false] = ACTIONS(1981), - [aux_sym__val_number_decimal_token1] = ACTIONS(1979), - [aux_sym__val_number_decimal_token2] = ACTIONS(1981), - [aux_sym__val_number_decimal_token3] = ACTIONS(1981), - [aux_sym__val_number_decimal_token4] = ACTIONS(1981), - [aux_sym__val_number_token1] = ACTIONS(1981), - [aux_sym__val_number_token2] = ACTIONS(1981), - [aux_sym__val_number_token3] = ACTIONS(1981), - [aux_sym__val_number_token4] = ACTIONS(1981), - [aux_sym__val_number_token5] = ACTIONS(1981), - [aux_sym__val_number_token6] = ACTIONS(1981), - [anon_sym_0b] = ACTIONS(1979), - [anon_sym_0o] = ACTIONS(1979), - [anon_sym_0x] = ACTIONS(1979), - [sym_val_date] = ACTIONS(1981), - [anon_sym_DQUOTE] = ACTIONS(1981), - [sym__str_single_quotes] = ACTIONS(1981), - [sym__str_back_ticks] = ACTIONS(1981), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1981), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1981), - [anon_sym_DOT2] = ACTIONS(4696), - [anon_sym_err_GT] = ACTIONS(1979), - [anon_sym_out_GT] = ACTIONS(1979), - [anon_sym_e_GT] = ACTIONS(1979), - [anon_sym_o_GT] = ACTIONS(1979), - [anon_sym_err_PLUSout_GT] = ACTIONS(1979), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1979), - [anon_sym_o_PLUSe_GT] = ACTIONS(1979), - [anon_sym_e_PLUSo_GT] = ACTIONS(1979), - [anon_sym_err_GT_GT] = ACTIONS(1981), - [anon_sym_out_GT_GT] = ACTIONS(1981), - [anon_sym_e_GT_GT] = ACTIONS(1981), - [anon_sym_o_GT_GT] = ACTIONS(1981), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1981), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1981), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1981), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1981), - [aux_sym_unquoted_token1] = ACTIONS(1979), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1981), - }, - [1454] = { - [sym_comment] = STATE(1454), - [ts_builtin_sym_end] = ACTIONS(998), - [anon_sym_EQ] = ACTIONS(996), - [anon_sym_PLUS_EQ] = ACTIONS(998), - [anon_sym_DASH_EQ] = ACTIONS(998), - [anon_sym_STAR_EQ] = ACTIONS(998), - [anon_sym_SLASH_EQ] = ACTIONS(998), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(998), + [anon_sym_EQ] = ACTIONS(4742), + [anon_sym_PLUS_EQ] = ACTIONS(4744), + [anon_sym_DASH_EQ] = ACTIONS(4744), + [anon_sym_STAR_EQ] = ACTIONS(4744), + [anon_sym_SLASH_EQ] = ACTIONS(4744), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4744), [sym__newline] = ACTIONS(998), [anon_sym_SEMI] = ACTIONS(998), [anon_sym_PIPE] = ACTIONS(998), @@ -219890,46 +220017,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(998), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(998), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(998), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), + [anon_sym_RPAREN] = ACTIONS(998), + [anon_sym_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), [anon_sym_in2] = ACTIONS(998), - [anon_sym_STAR2] = ACTIONS(996), + [anon_sym_STAR2] = ACTIONS(1002), [anon_sym_and2] = ACTIONS(998), [anon_sym_xor2] = ACTIONS(998), [anon_sym_or2] = ACTIONS(998), [anon_sym_not_DASHin2] = ACTIONS(998), + [anon_sym_has2] = ACTIONS(998), + [anon_sym_not_DASHhas2] = ACTIONS(998), [anon_sym_starts_DASHwith2] = ACTIONS(998), [anon_sym_ends_DASHwith2] = ACTIONS(998), [anon_sym_EQ_EQ2] = ACTIONS(998), [anon_sym_BANG_EQ2] = ACTIONS(998), - [anon_sym_LT2] = ACTIONS(996), + [anon_sym_LT2] = ACTIONS(1002), [anon_sym_LT_EQ2] = ACTIONS(998), [anon_sym_GT_EQ2] = ACTIONS(998), [anon_sym_EQ_TILDE2] = ACTIONS(998), [anon_sym_BANG_TILDE2] = ACTIONS(998), [anon_sym_STAR_STAR2] = ACTIONS(998), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), + [anon_sym_PLUS_PLUS2] = ACTIONS(1002), + [anon_sym_SLASH2] = ACTIONS(1002), [anon_sym_mod2] = ACTIONS(998), [anon_sym_SLASH_SLASH2] = ACTIONS(998), - [anon_sym_PLUS2] = ACTIONS(996), + [anon_sym_PLUS2] = ACTIONS(1002), [anon_sym_bit_DASHshl2] = ACTIONS(998), [anon_sym_bit_DASHshr2] = ACTIONS(998), [anon_sym_bit_DASHand2] = ACTIONS(998), [anon_sym_bit_DASHxor2] = ACTIONS(998), [anon_sym_bit_DASHor2] = ACTIONS(998), - [anon_sym_DOT_DOT2] = ACTIONS(996), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(998), - [anon_sym_DOT_DOT_LT2] = ACTIONS(998), - [anon_sym_DOT2] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), + [anon_sym_DOT_DOT2] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), [anon_sym_err_GT_GT] = ACTIONS(998), [anon_sym_out_GT_GT] = ACTIONS(998), [anon_sym_e_GT_GT] = ACTIONS(998), @@ -219938,2381 +220067,1696 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(998), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(998), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(998), - [anon_sym_POUND] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(247), + }, + [1449] = { + [sym_comment] = STATE(1449), + [sym__newline] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_err_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_GT_PIPE] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1768), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_LPAREN] = ACTIONS(1766), + [anon_sym_RPAREN] = ACTIONS(1768), + [anon_sym_DOLLAR] = ACTIONS(1766), + [anon_sym_DASH_DASH] = ACTIONS(1768), + [anon_sym_DASH2] = ACTIONS(1766), + [anon_sym_LBRACE] = ACTIONS(1768), + [anon_sym_RBRACE] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1766), + [anon_sym_LPAREN2] = ACTIONS(1768), + [anon_sym_DOT_DOT2] = ACTIONS(1766), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1766), + [anon_sym_DOT_DOT_LT] = ACTIONS(1766), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1768), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1768), + [anon_sym_null] = ACTIONS(1768), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [aux_sym__val_number_decimal_token1] = ACTIONS(1766), + [aux_sym__val_number_decimal_token2] = ACTIONS(1768), + [aux_sym__val_number_decimal_token3] = ACTIONS(1768), + [aux_sym__val_number_decimal_token4] = ACTIONS(1768), + [aux_sym__val_number_token1] = ACTIONS(1768), + [aux_sym__val_number_token2] = ACTIONS(1768), + [aux_sym__val_number_token3] = ACTIONS(1768), + [aux_sym__val_number_token4] = ACTIONS(1768), + [aux_sym__val_number_token5] = ACTIONS(1768), + [aux_sym__val_number_token6] = ACTIONS(1768), + [anon_sym_0b] = ACTIONS(1766), + [anon_sym_0o] = ACTIONS(1766), + [anon_sym_0x] = ACTIONS(1766), + [sym_val_date] = ACTIONS(1768), + [anon_sym_DQUOTE] = ACTIONS(1768), + [sym__str_single_quotes] = ACTIONS(1768), + [sym__str_back_ticks] = ACTIONS(1768), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1768), + [anon_sym_err_GT] = ACTIONS(1766), + [anon_sym_out_GT] = ACTIONS(1766), + [anon_sym_e_GT] = ACTIONS(1766), + [anon_sym_o_GT] = ACTIONS(1766), + [anon_sym_err_PLUSout_GT] = ACTIONS(1766), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1766), + [anon_sym_o_PLUSe_GT] = ACTIONS(1766), + [anon_sym_e_PLUSo_GT] = ACTIONS(1766), + [anon_sym_err_GT_GT] = ACTIONS(1768), + [anon_sym_out_GT_GT] = ACTIONS(1768), + [anon_sym_e_GT_GT] = ACTIONS(1768), + [anon_sym_o_GT_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1768), + [aux_sym_unquoted_token1] = ACTIONS(1766), + [aux_sym_unquoted_token2] = ACTIONS(1766), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1768), + }, + [1450] = { + [sym_comment] = STATE(1450), + [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(1792), + [anon_sym_RPAREN] = ACTIONS(1794), + [anon_sym_DOLLAR] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1794), + [anon_sym_DASH2] = ACTIONS(1792), + [anon_sym_LBRACE] = ACTIONS(1794), + [anon_sym_RBRACE] = ACTIONS(1794), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_LPAREN2] = ACTIONS(1794), + [anon_sym_DOT_DOT2] = ACTIONS(1792), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1792), + [anon_sym_DOT_DOT_LT] = ACTIONS(1792), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1794), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1794), + [anon_sym_null] = ACTIONS(1794), + [anon_sym_true] = ACTIONS(1794), + [anon_sym_false] = ACTIONS(1794), + [aux_sym__val_number_decimal_token1] = ACTIONS(1792), + [aux_sym__val_number_decimal_token2] = ACTIONS(1794), + [aux_sym__val_number_decimal_token3] = ACTIONS(1794), + [aux_sym__val_number_decimal_token4] = ACTIONS(1794), + [aux_sym__val_number_token1] = ACTIONS(1794), + [aux_sym__val_number_token2] = ACTIONS(1794), + [aux_sym__val_number_token3] = ACTIONS(1794), + [aux_sym__val_number_token4] = ACTIONS(1794), + [aux_sym__val_number_token5] = ACTIONS(1794), + [aux_sym__val_number_token6] = 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), + [aux_sym_unquoted_token2] = ACTIONS(1792), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1794), + }, + [1451] = { + [sym_comment] = STATE(1451), + [sym__newline] = ACTIONS(1695), + [anon_sym_SEMI] = ACTIONS(1695), + [anon_sym_PIPE] = ACTIONS(1695), + [anon_sym_err_GT_PIPE] = ACTIONS(1695), + [anon_sym_out_GT_PIPE] = ACTIONS(1695), + [anon_sym_e_GT_PIPE] = ACTIONS(1695), + [anon_sym_o_GT_PIPE] = ACTIONS(1695), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1695), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1695), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1695), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1695), + [anon_sym_RPAREN] = ACTIONS(1695), + [anon_sym_GT2] = ACTIONS(1693), + [anon_sym_DASH2] = ACTIONS(1695), + [anon_sym_in2] = ACTIONS(1695), + [anon_sym_LBRACE] = ACTIONS(1695), + [anon_sym_RBRACE] = ACTIONS(1695), + [anon_sym_STAR2] = ACTIONS(1693), + [anon_sym_and2] = ACTIONS(1695), + [anon_sym_xor2] = ACTIONS(1695), + [anon_sym_or2] = ACTIONS(1695), + [anon_sym_not_DASHin2] = ACTIONS(1695), + [anon_sym_has2] = ACTIONS(1695), + [anon_sym_not_DASHhas2] = ACTIONS(1695), + [anon_sym_starts_DASHwith2] = ACTIONS(1695), + [anon_sym_ends_DASHwith2] = ACTIONS(1695), + [anon_sym_EQ_EQ2] = ACTIONS(1695), + [anon_sym_BANG_EQ2] = ACTIONS(1695), + [anon_sym_LT2] = ACTIONS(1693), + [anon_sym_LT_EQ2] = ACTIONS(1695), + [anon_sym_GT_EQ2] = ACTIONS(1695), + [anon_sym_EQ_TILDE2] = ACTIONS(1695), + [anon_sym_BANG_TILDE2] = ACTIONS(1695), + [anon_sym_LPAREN2] = ACTIONS(1695), + [anon_sym_STAR_STAR2] = ACTIONS(1695), + [anon_sym_PLUS_PLUS2] = ACTIONS(1695), + [anon_sym_SLASH2] = ACTIONS(1693), + [anon_sym_mod2] = ACTIONS(1695), + [anon_sym_SLASH_SLASH2] = ACTIONS(1695), + [anon_sym_PLUS2] = ACTIONS(1693), + [anon_sym_bit_DASHshl2] = ACTIONS(1695), + [anon_sym_bit_DASHshr2] = ACTIONS(1695), + [anon_sym_bit_DASHand2] = ACTIONS(1695), + [anon_sym_bit_DASHxor2] = ACTIONS(1695), + [anon_sym_bit_DASHor2] = ACTIONS(1695), + [anon_sym_DOT_DOT2] = ACTIONS(1693), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1695), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1695), + [aux_sym__immediate_decimal_token1] = ACTIONS(4746), + [aux_sym__immediate_decimal_token2] = ACTIONS(4748), + [anon_sym_err_GT] = ACTIONS(1693), + [anon_sym_out_GT] = ACTIONS(1693), + [anon_sym_e_GT] = ACTIONS(1693), + [anon_sym_o_GT] = ACTIONS(1693), + [anon_sym_err_PLUSout_GT] = ACTIONS(1693), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1693), + [anon_sym_o_PLUSe_GT] = ACTIONS(1693), + [anon_sym_e_PLUSo_GT] = ACTIONS(1693), + [anon_sym_err_GT_GT] = ACTIONS(1695), + [anon_sym_out_GT_GT] = ACTIONS(1695), + [anon_sym_e_GT_GT] = ACTIONS(1695), + [anon_sym_o_GT_GT] = ACTIONS(1695), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1695), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1695), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1695), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1695), + [aux_sym_unquoted_token2] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(247), + }, + [1452] = { + [sym_comment] = STATE(1452), + [ts_builtin_sym_end] = ACTIONS(948), + [sym__newline] = ACTIONS(948), + [anon_sym_SEMI] = ACTIONS(948), + [anon_sym_PIPE] = ACTIONS(948), + [anon_sym_err_GT_PIPE] = ACTIONS(948), + [anon_sym_out_GT_PIPE] = ACTIONS(948), + [anon_sym_e_GT_PIPE] = ACTIONS(948), + [anon_sym_o_GT_PIPE] = ACTIONS(948), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(948), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(948), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(948), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(948), + [anon_sym_LBRACK] = ACTIONS(948), + [anon_sym_LPAREN] = ACTIONS(948), + [anon_sym_DOLLAR] = ACTIONS(946), + [anon_sym_DASH_DASH] = ACTIONS(948), + [anon_sym_DASH2] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(948), + [anon_sym_DOT_DOT] = ACTIONS(946), + [anon_sym_QMARK2] = ACTIONS(948), + [anon_sym_DOT_DOT2] = ACTIONS(946), + [anon_sym_DOT_DOT_EQ] = ACTIONS(946), + [anon_sym_DOT_DOT_LT] = ACTIONS(946), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(948), + [anon_sym_DOT_DOT_LT2] = ACTIONS(948), + [anon_sym_null] = ACTIONS(948), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [aux_sym__val_number_decimal_token1] = ACTIONS(946), + [aux_sym__val_number_decimal_token2] = ACTIONS(948), + [aux_sym__val_number_decimal_token3] = ACTIONS(948), + [aux_sym__val_number_decimal_token4] = ACTIONS(948), + [aux_sym__val_number_token1] = ACTIONS(948), + [aux_sym__val_number_token2] = ACTIONS(948), + [aux_sym__val_number_token3] = ACTIONS(948), + [aux_sym__val_number_token4] = ACTIONS(948), + [aux_sym__val_number_token5] = ACTIONS(948), + [aux_sym__val_number_token6] = ACTIONS(948), + [anon_sym_0b] = ACTIONS(946), + [anon_sym_0o] = ACTIONS(946), + [anon_sym_0x] = ACTIONS(946), + [sym_val_date] = ACTIONS(948), + [anon_sym_DQUOTE] = ACTIONS(948), + [sym__str_single_quotes] = ACTIONS(948), + [sym__str_back_ticks] = ACTIONS(948), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(948), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(948), + [anon_sym_DOT2] = ACTIONS(946), + [anon_sym_err_GT] = ACTIONS(946), + [anon_sym_out_GT] = ACTIONS(946), + [anon_sym_e_GT] = ACTIONS(946), + [anon_sym_o_GT] = ACTIONS(946), + [anon_sym_err_PLUSout_GT] = ACTIONS(946), + [anon_sym_out_PLUSerr_GT] = ACTIONS(946), + [anon_sym_o_PLUSe_GT] = ACTIONS(946), + [anon_sym_e_PLUSo_GT] = ACTIONS(946), + [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(946), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(948), + }, + [1453] = { + [sym__expr_parenthesized_immediate] = STATE(7297), + [sym_comment] = STATE(1453), + [ts_builtin_sym_end] = ACTIONS(1651), + [sym__newline] = ACTIONS(1651), + [anon_sym_SEMI] = ACTIONS(1651), + [anon_sym_PIPE] = ACTIONS(1651), + [anon_sym_err_GT_PIPE] = ACTIONS(1651), + [anon_sym_out_GT_PIPE] = ACTIONS(1651), + [anon_sym_e_GT_PIPE] = ACTIONS(1651), + [anon_sym_o_GT_PIPE] = ACTIONS(1651), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1651), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1651), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1651), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1651), + [anon_sym_GT2] = ACTIONS(1639), + [anon_sym_DASH2] = ACTIONS(1651), + [anon_sym_in2] = ACTIONS(1651), + [anon_sym_STAR2] = ACTIONS(1639), + [anon_sym_and2] = ACTIONS(1651), + [anon_sym_xor2] = ACTIONS(1651), + [anon_sym_or2] = ACTIONS(1651), + [anon_sym_not_DASHin2] = ACTIONS(1651), + [anon_sym_has2] = ACTIONS(1651), + [anon_sym_not_DASHhas2] = ACTIONS(1651), + [anon_sym_starts_DASHwith2] = ACTIONS(1651), + [anon_sym_ends_DASHwith2] = ACTIONS(1651), + [anon_sym_EQ_EQ2] = ACTIONS(1651), + [anon_sym_BANG_EQ2] = ACTIONS(1651), + [anon_sym_LT2] = ACTIONS(1639), + [anon_sym_LT_EQ2] = ACTIONS(1651), + [anon_sym_GT_EQ2] = ACTIONS(1651), + [anon_sym_EQ_TILDE2] = ACTIONS(1651), + [anon_sym_BANG_TILDE2] = ACTIONS(1651), + [anon_sym_LPAREN2] = ACTIONS(4452), + [anon_sym_STAR_STAR2] = ACTIONS(1651), + [anon_sym_PLUS_PLUS2] = ACTIONS(1651), + [anon_sym_SLASH2] = ACTIONS(1639), + [anon_sym_mod2] = ACTIONS(1651), + [anon_sym_SLASH_SLASH2] = ACTIONS(1651), + [anon_sym_PLUS2] = ACTIONS(1639), + [anon_sym_bit_DASHshl2] = ACTIONS(1651), + [anon_sym_bit_DASHshr2] = ACTIONS(1651), + [anon_sym_bit_DASHand2] = ACTIONS(1651), + [anon_sym_bit_DASHxor2] = ACTIONS(1651), + [anon_sym_bit_DASHor2] = ACTIONS(1651), + [anon_sym_DOT_DOT2] = ACTIONS(4750), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4752), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4752), + [sym_filesize_unit] = ACTIONS(4754), + [sym_duration_unit] = ACTIONS(4756), + [anon_sym_err_GT] = ACTIONS(1639), + [anon_sym_out_GT] = ACTIONS(1639), + [anon_sym_e_GT] = ACTIONS(1639), + [anon_sym_o_GT] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT] = ACTIONS(1639), + [anon_sym_err_GT_GT] = ACTIONS(1651), + [anon_sym_out_GT_GT] = ACTIONS(1651), + [anon_sym_e_GT_GT] = ACTIONS(1651), + [anon_sym_o_GT_GT] = ACTIONS(1651), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1651), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1651), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1651), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1651), + [aux_sym_unquoted_token2] = ACTIONS(4758), + [anon_sym_POUND] = ACTIONS(247), + }, + [1454] = { + [sym_cell_path] = STATE(1872), + [sym_path] = STATE(1700), + [sym_comment] = STATE(1454), + [aux_sym_cell_path_repeat1] = STATE(1547), + [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_DASH2] = ACTIONS(1839), + [anon_sym_LBRACE] = ACTIONS(1841), + [anon_sym_RBRACE] = ACTIONS(1841), + [anon_sym_DOT_DOT] = ACTIONS(1839), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1841), + [anon_sym_DOT_DOT_LT] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1841), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(1841), + [aux_sym__val_number_token5] = ACTIONS(1841), + [aux_sym__val_number_token6] = 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_DOT2] = ACTIONS(4760), + [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), + [sym_raw_string_begin] = ACTIONS(1841), }, [1455] = { - [sym__expr_parenthesized_immediate] = STATE(2140), - [sym__immediate_decimal] = STATE(2154), - [sym_val_variable] = STATE(2140), [sym_comment] = STATE(1455), - [ts_builtin_sym_end] = ACTIONS(1510), - [sym__newline] = ACTIONS(1510), - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1510), - [anon_sym_err_GT_PIPE] = ACTIONS(1510), - [anon_sym_out_GT_PIPE] = ACTIONS(1510), - [anon_sym_e_GT_PIPE] = ACTIONS(1510), - [anon_sym_o_GT_PIPE] = ACTIONS(1510), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1510), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1510), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1510), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1510), - [anon_sym_DOLLAR] = ACTIONS(4678), - [anon_sym_GT2] = ACTIONS(1500), - [anon_sym_DASH2] = ACTIONS(1500), - [anon_sym_in2] = ACTIONS(1510), - [anon_sym_STAR2] = ACTIONS(1500), - [anon_sym_and2] = ACTIONS(1510), - [anon_sym_xor2] = ACTIONS(1510), - [anon_sym_or2] = ACTIONS(1510), - [anon_sym_not_DASHin2] = ACTIONS(1510), - [anon_sym_starts_DASHwith2] = ACTIONS(1510), - [anon_sym_ends_DASHwith2] = ACTIONS(1510), - [anon_sym_EQ_EQ2] = ACTIONS(1510), - [anon_sym_BANG_EQ2] = ACTIONS(1510), - [anon_sym_LT2] = ACTIONS(1500), - [anon_sym_LT_EQ2] = ACTIONS(1510), - [anon_sym_GT_EQ2] = ACTIONS(1510), - [anon_sym_EQ_TILDE2] = ACTIONS(1510), - [anon_sym_BANG_TILDE2] = ACTIONS(1510), - [anon_sym_LPAREN2] = ACTIONS(4680), - [anon_sym_STAR_STAR2] = ACTIONS(1510), - [anon_sym_PLUS_PLUS2] = ACTIONS(1510), - [anon_sym_SLASH2] = ACTIONS(1500), - [anon_sym_mod2] = ACTIONS(1510), - [anon_sym_SLASH_SLASH2] = ACTIONS(1510), - [anon_sym_PLUS2] = ACTIONS(1500), - [anon_sym_bit_DASHshl2] = ACTIONS(1510), - [anon_sym_bit_DASHshr2] = ACTIONS(1510), - [anon_sym_bit_DASHand2] = ACTIONS(1510), - [anon_sym_bit_DASHxor2] = ACTIONS(1510), - [anon_sym_bit_DASHor2] = ACTIONS(1510), - [anon_sym_DOT] = ACTIONS(4724), - [aux_sym__immediate_decimal_token1] = ACTIONS(4684), - [aux_sym__immediate_decimal_token3] = ACTIONS(4684), - [aux_sym__immediate_decimal_token4] = ACTIONS(4686), - [aux_sym__immediate_decimal_token5] = ACTIONS(4688), - [anon_sym_err_GT] = ACTIONS(1500), - [anon_sym_out_GT] = ACTIONS(1500), - [anon_sym_e_GT] = ACTIONS(1500), - [anon_sym_o_GT] = ACTIONS(1500), - [anon_sym_err_PLUSout_GT] = ACTIONS(1500), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1500), - [anon_sym_o_PLUSe_GT] = ACTIONS(1500), - [anon_sym_e_PLUSo_GT] = ACTIONS(1500), - [anon_sym_err_GT_GT] = ACTIONS(1510), - [anon_sym_out_GT_GT] = ACTIONS(1510), - [anon_sym_e_GT_GT] = ACTIONS(1510), - [anon_sym_o_GT_GT] = ACTIONS(1510), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1510), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1510), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1510), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1510), - [anon_sym_POUND] = ACTIONS(251), + [ts_builtin_sym_end] = 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(1806), + [anon_sym_DOLLAR] = ACTIONS(1806), + [anon_sym_DASH_DASH] = ACTIONS(1814), + [anon_sym_DASH2] = ACTIONS(1806), + [anon_sym_LBRACE] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1806), + [anon_sym_LPAREN2] = ACTIONS(1808), + [anon_sym_DOT_DOT2] = ACTIONS(4762), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1806), + [anon_sym_DOT_DOT_LT] = ACTIONS(1806), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4764), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4764), + [anon_sym_null] = ACTIONS(1814), + [anon_sym_true] = ACTIONS(1814), + [anon_sym_false] = ACTIONS(1814), + [aux_sym__val_number_decimal_token1] = ACTIONS(1806), + [aux_sym__val_number_decimal_token2] = ACTIONS(1814), + [aux_sym__val_number_decimal_token3] = ACTIONS(1814), + [aux_sym__val_number_decimal_token4] = ACTIONS(1814), + [aux_sym__val_number_token1] = ACTIONS(1814), + [aux_sym__val_number_token2] = ACTIONS(1814), + [aux_sym__val_number_token3] = ACTIONS(1814), + [aux_sym__val_number_token4] = ACTIONS(1814), + [aux_sym__val_number_token5] = ACTIONS(1814), + [aux_sym__val_number_token6] = ACTIONS(1814), + [anon_sym_0b] = ACTIONS(1806), + [anon_sym_0o] = ACTIONS(1806), + [anon_sym_0x] = ACTIONS(1806), + [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(1806), + [anon_sym_out_GT] = ACTIONS(1806), + [anon_sym_e_GT] = ACTIONS(1806), + [anon_sym_o_GT] = ACTIONS(1806), + [anon_sym_err_PLUSout_GT] = ACTIONS(1806), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1806), + [anon_sym_o_PLUSe_GT] = ACTIONS(1806), + [anon_sym_e_PLUSo_GT] = ACTIONS(1806), + [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(1806), + [aux_sym_unquoted_token2] = ACTIONS(1457), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1814), }, [1456] = { [sym_comment] = STATE(1456), - [ts_builtin_sym_end] = ACTIONS(1785), - [sym__newline] = ACTIONS(1785), - [anon_sym_SEMI] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(1785), - [anon_sym_err_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_GT_PIPE] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1783), - [anon_sym_LPAREN2] = ACTIONS(1785), - [anon_sym_DOT_DOT2] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1783), - [anon_sym_DOT_DOT_LT] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1785), - [anon_sym_null] = ACTIONS(1785), - [anon_sym_true] = ACTIONS(1785), - [anon_sym_false] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(1785), - [aux_sym__val_number_token2] = ACTIONS(1785), - [aux_sym__val_number_token3] = ACTIONS(1785), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_0b] = ACTIONS(1783), - [anon_sym_0o] = ACTIONS(1783), - [anon_sym_0x] = ACTIONS(1783), - [sym_val_date] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1785), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1785), - [anon_sym_err_GT] = ACTIONS(1783), - [anon_sym_out_GT] = ACTIONS(1783), - [anon_sym_e_GT] = ACTIONS(1783), - [anon_sym_o_GT] = ACTIONS(1783), - [anon_sym_err_PLUSout_GT] = ACTIONS(1783), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1783), - [anon_sym_o_PLUSe_GT] = ACTIONS(1783), - [anon_sym_e_PLUSo_GT] = ACTIONS(1783), - [anon_sym_err_GT_GT] = ACTIONS(1785), - [anon_sym_out_GT_GT] = ACTIONS(1785), - [anon_sym_e_GT_GT] = ACTIONS(1785), - [anon_sym_o_GT_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1785), - [aux_sym_unquoted_token1] = ACTIONS(1783), - [aux_sym_unquoted_token2] = ACTIONS(1783), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1785), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_RPAREN] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1703), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_DOT_DOT] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_DOT] = ACTIONS(4766), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(4768), + [anon_sym_null] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1703), + [aux_sym__val_number_token5] = ACTIONS(1703), + [aux_sym__val_number_token6] = ACTIONS(1703), + [anon_sym_0b] = ACTIONS(1701), + [anon_sym_0o] = ACTIONS(1701), + [anon_sym_0x] = ACTIONS(1701), + [sym_val_date] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [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(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token1] = ACTIONS(1701), + [aux_sym_unquoted_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1703), }, [1457] = { - [sym_cell_path] = STATE(1742), - [sym_path] = STATE(1680), + [sym_cell_path] = STATE(1873), + [sym_path] = STATE(1700), [sym_comment] = STATE(1457), - [aux_sym_cell_path_repeat1] = STATE(1535), - [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_DASH2] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1893), - [anon_sym_RBRACE] = ACTIONS(1893), - [anon_sym_DOT_DOT] = ACTIONS(1891), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1893), - [anon_sym_DOT_DOT_LT] = ACTIONS(1893), - [anon_sym_null] = ACTIONS(1893), - [anon_sym_true] = ACTIONS(1893), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(1893), - [aux_sym__val_number_token5] = ACTIONS(1893), - [aux_sym__val_number_token6] = 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_DOT2] = ACTIONS(4696), - [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(251), - [sym_raw_string_begin] = ACTIONS(1893), + [aux_sym_cell_path_repeat1] = STATE(1547), + [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_DASH2] = ACTIONS(1847), + [anon_sym_LBRACE] = ACTIONS(1849), + [anon_sym_RBRACE] = ACTIONS(1849), + [anon_sym_DOT_DOT] = ACTIONS(1847), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1849), + [anon_sym_DOT_DOT_LT] = ACTIONS(1849), + [anon_sym_null] = ACTIONS(1849), + [anon_sym_true] = ACTIONS(1849), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(1849), + [aux_sym__val_number_token5] = ACTIONS(1849), + [aux_sym__val_number_token6] = 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_DOT2] = ACTIONS(4760), + [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), + [sym_raw_string_begin] = ACTIONS(1849), }, [1458] = { + [sym_cell_path] = STATE(1874), + [sym_path] = STATE(1700), [sym_comment] = STATE(1458), - [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_GT2] = ACTIONS(976), - [anon_sym_DASH2] = ACTIONS(978), - [anon_sym_in2] = ACTIONS(978), - [anon_sym_if] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(978), - [anon_sym_RBRACE] = ACTIONS(978), - [anon_sym_EQ_GT] = ACTIONS(978), - [anon_sym_STAR2] = ACTIONS(976), - [anon_sym_QMARK2] = ACTIONS(978), - [anon_sym_and2] = ACTIONS(978), - [anon_sym_xor2] = ACTIONS(978), - [anon_sym_or2] = ACTIONS(978), - [anon_sym_not_DASHin2] = ACTIONS(978), - [anon_sym_starts_DASHwith2] = ACTIONS(978), - [anon_sym_ends_DASHwith2] = ACTIONS(978), - [anon_sym_EQ_EQ2] = ACTIONS(978), - [anon_sym_BANG_EQ2] = ACTIONS(978), - [anon_sym_LT2] = ACTIONS(976), - [anon_sym_LT_EQ2] = ACTIONS(978), - [anon_sym_GT_EQ2] = ACTIONS(978), - [anon_sym_EQ_TILDE2] = ACTIONS(978), - [anon_sym_BANG_TILDE2] = ACTIONS(978), - [anon_sym_STAR_STAR2] = ACTIONS(978), - [anon_sym_PLUS_PLUS2] = ACTIONS(978), - [anon_sym_SLASH2] = ACTIONS(976), - [anon_sym_mod2] = ACTIONS(978), - [anon_sym_SLASH_SLASH2] = ACTIONS(978), - [anon_sym_PLUS2] = ACTIONS(976), - [anon_sym_bit_DASHshl2] = ACTIONS(978), - [anon_sym_bit_DASHshr2] = ACTIONS(978), - [anon_sym_bit_DASHand2] = ACTIONS(978), - [anon_sym_bit_DASHxor2] = ACTIONS(978), - [anon_sym_bit_DASHor2] = ACTIONS(978), - [anon_sym_DOT_DOT2] = ACTIONS(976), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), - [anon_sym_DOT_DOT_LT2] = ACTIONS(978), - [anon_sym_COLON2] = ACTIONS(978), - [anon_sym_DOT2] = 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(251), + [aux_sym_cell_path_repeat1] = STATE(1547), + [sym__newline] = ACTIONS(1855), + [anon_sym_SEMI] = ACTIONS(1855), + [anon_sym_PIPE] = ACTIONS(1855), + [anon_sym_err_GT_PIPE] = ACTIONS(1855), + [anon_sym_out_GT_PIPE] = ACTIONS(1855), + [anon_sym_e_GT_PIPE] = ACTIONS(1855), + [anon_sym_o_GT_PIPE] = ACTIONS(1855), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1855), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1855), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1855), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1855), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_LPAREN] = ACTIONS(1855), + [anon_sym_RPAREN] = ACTIONS(1855), + [anon_sym_DOLLAR] = ACTIONS(1853), + [anon_sym_DASH_DASH] = ACTIONS(1855), + [anon_sym_DASH2] = ACTIONS(1853), + [anon_sym_LBRACE] = ACTIONS(1855), + [anon_sym_RBRACE] = ACTIONS(1855), + [anon_sym_DOT_DOT] = ACTIONS(1853), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1855), + [anon_sym_DOT_DOT_LT] = ACTIONS(1855), + [anon_sym_null] = ACTIONS(1855), + [anon_sym_true] = ACTIONS(1855), + [anon_sym_false] = ACTIONS(1855), + [aux_sym__val_number_decimal_token1] = ACTIONS(1853), + [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), + [aux_sym__val_number_token4] = ACTIONS(1855), + [aux_sym__val_number_token5] = ACTIONS(1855), + [aux_sym__val_number_token6] = ACTIONS(1855), + [anon_sym_0b] = ACTIONS(1853), + [anon_sym_0o] = ACTIONS(1853), + [anon_sym_0x] = ACTIONS(1853), + [sym_val_date] = ACTIONS(1855), + [anon_sym_DQUOTE] = ACTIONS(1855), + [sym__str_single_quotes] = ACTIONS(1855), + [sym__str_back_ticks] = ACTIONS(1855), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1855), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1855), + [anon_sym_DOT2] = ACTIONS(4760), + [anon_sym_err_GT] = ACTIONS(1853), + [anon_sym_out_GT] = ACTIONS(1853), + [anon_sym_e_GT] = ACTIONS(1853), + [anon_sym_o_GT] = ACTIONS(1853), + [anon_sym_err_PLUSout_GT] = ACTIONS(1853), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1853), + [anon_sym_o_PLUSe_GT] = ACTIONS(1853), + [anon_sym_e_PLUSo_GT] = ACTIONS(1853), + [anon_sym_err_GT_GT] = ACTIONS(1855), + [anon_sym_out_GT_GT] = ACTIONS(1855), + [anon_sym_e_GT_GT] = ACTIONS(1855), + [anon_sym_o_GT_GT] = ACTIONS(1855), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1855), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1855), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1855), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1855), + [aux_sym_unquoted_token1] = ACTIONS(1853), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1855), }, [1459] = { + [sym_cell_path] = STATE(1981), + [sym_path] = STATE(1700), [sym_comment] = STATE(1459), - [ts_builtin_sym_end] = 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(1835), - [anon_sym_DOLLAR] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1837), - [anon_sym_DASH2] = ACTIONS(1835), - [anon_sym_LBRACE] = ACTIONS(1837), - [anon_sym_DOT_DOT] = ACTIONS(1835), - [anon_sym_LPAREN2] = ACTIONS(1837), - [anon_sym_DOT_DOT2] = ACTIONS(1835), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1835), - [anon_sym_DOT_DOT_LT] = ACTIONS(1835), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1837), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1837), - [anon_sym_null] = ACTIONS(1837), - [anon_sym_true] = ACTIONS(1837), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(1837), - [aux_sym__val_number_token5] = ACTIONS(1837), - [aux_sym__val_number_token6] = 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), - [aux_sym_unquoted_token2] = ACTIONS(1835), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1837), + [aux_sym_cell_path_repeat1] = STATE(1547), + [sym__newline] = ACTIONS(1871), + [anon_sym_SEMI] = ACTIONS(1871), + [anon_sym_PIPE] = ACTIONS(1871), + [anon_sym_err_GT_PIPE] = ACTIONS(1871), + [anon_sym_out_GT_PIPE] = ACTIONS(1871), + [anon_sym_e_GT_PIPE] = ACTIONS(1871), + [anon_sym_o_GT_PIPE] = ACTIONS(1871), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1871), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1871), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1871), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(1871), + [anon_sym_RPAREN] = ACTIONS(1871), + [anon_sym_DOLLAR] = ACTIONS(1869), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_DASH2] = ACTIONS(1869), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_RBRACE] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1869), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1871), + [anon_sym_DOT_DOT_LT] = ACTIONS(1871), + [anon_sym_null] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(1871), + [anon_sym_false] = ACTIONS(1871), + [aux_sym__val_number_decimal_token1] = ACTIONS(1869), + [aux_sym__val_number_decimal_token2] = 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), + [aux_sym__val_number_token4] = ACTIONS(1871), + [aux_sym__val_number_token5] = ACTIONS(1871), + [aux_sym__val_number_token6] = ACTIONS(1871), + [anon_sym_0b] = ACTIONS(1869), + [anon_sym_0o] = ACTIONS(1869), + [anon_sym_0x] = ACTIONS(1869), + [sym_val_date] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1871), + [sym__str_single_quotes] = ACTIONS(1871), + [sym__str_back_ticks] = ACTIONS(1871), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1871), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1871), + [anon_sym_DOT2] = ACTIONS(4760), + [anon_sym_err_GT] = ACTIONS(1869), + [anon_sym_out_GT] = ACTIONS(1869), + [anon_sym_e_GT] = ACTIONS(1869), + [anon_sym_o_GT] = ACTIONS(1869), + [anon_sym_err_PLUSout_GT] = ACTIONS(1869), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1869), + [anon_sym_o_PLUSe_GT] = ACTIONS(1869), + [anon_sym_e_PLUSo_GT] = ACTIONS(1869), + [anon_sym_err_GT_GT] = ACTIONS(1871), + [anon_sym_out_GT_GT] = ACTIONS(1871), + [anon_sym_e_GT_GT] = ACTIONS(1871), + [anon_sym_o_GT_GT] = ACTIONS(1871), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1871), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1871), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1871), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1871), + [aux_sym_unquoted_token1] = ACTIONS(1869), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1871), }, [1460] = { [sym_comment] = STATE(1460), - [sym__newline] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_PIPE] = ACTIONS(986), - [anon_sym_err_GT_PIPE] = ACTIONS(986), - [anon_sym_out_GT_PIPE] = ACTIONS(986), - [anon_sym_e_GT_PIPE] = ACTIONS(986), - [anon_sym_o_GT_PIPE] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), - [anon_sym_RPAREN] = ACTIONS(986), - [anon_sym_GT2] = ACTIONS(984), - [anon_sym_DASH2] = ACTIONS(986), - [anon_sym_in2] = ACTIONS(986), - [anon_sym_if] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(986), - [anon_sym_EQ_GT] = ACTIONS(986), - [anon_sym_STAR2] = ACTIONS(984), - [anon_sym_QMARK2] = ACTIONS(986), - [anon_sym_and2] = ACTIONS(986), - [anon_sym_xor2] = ACTIONS(986), - [anon_sym_or2] = ACTIONS(986), - [anon_sym_not_DASHin2] = ACTIONS(986), - [anon_sym_starts_DASHwith2] = ACTIONS(986), - [anon_sym_ends_DASHwith2] = ACTIONS(986), - [anon_sym_EQ_EQ2] = ACTIONS(986), - [anon_sym_BANG_EQ2] = ACTIONS(986), - [anon_sym_LT2] = ACTIONS(984), - [anon_sym_LT_EQ2] = ACTIONS(986), - [anon_sym_GT_EQ2] = ACTIONS(986), - [anon_sym_EQ_TILDE2] = ACTIONS(986), - [anon_sym_BANG_TILDE2] = ACTIONS(986), - [anon_sym_STAR_STAR2] = ACTIONS(986), - [anon_sym_PLUS_PLUS2] = ACTIONS(986), - [anon_sym_SLASH2] = ACTIONS(984), - [anon_sym_mod2] = ACTIONS(986), - [anon_sym_SLASH_SLASH2] = ACTIONS(986), - [anon_sym_PLUS2] = ACTIONS(984), - [anon_sym_bit_DASHshl2] = ACTIONS(986), - [anon_sym_bit_DASHshr2] = ACTIONS(986), - [anon_sym_bit_DASHand2] = ACTIONS(986), - [anon_sym_bit_DASHxor2] = ACTIONS(986), - [anon_sym_bit_DASHor2] = ACTIONS(986), - [anon_sym_DOT_DOT2] = ACTIONS(984), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), - [anon_sym_DOT_DOT_LT2] = ACTIONS(986), - [anon_sym_COLON2] = ACTIONS(986), - [anon_sym_DOT2] = ACTIONS(984), - [anon_sym_err_GT] = ACTIONS(984), - [anon_sym_out_GT] = ACTIONS(984), - [anon_sym_e_GT] = ACTIONS(984), - [anon_sym_o_GT] = ACTIONS(984), - [anon_sym_err_PLUSout_GT] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT] = ACTIONS(984), - [anon_sym_o_PLUSe_GT] = ACTIONS(984), - [anon_sym_e_PLUSo_GT] = ACTIONS(984), - [anon_sym_err_GT_GT] = ACTIONS(986), - [anon_sym_out_GT_GT] = ACTIONS(986), - [anon_sym_e_GT_GT] = ACTIONS(986), - [anon_sym_o_GT_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(1514), + [anon_sym_SEMI] = ACTIONS(1514), + [anon_sym_PIPE] = ACTIONS(1514), + [anon_sym_err_GT_PIPE] = ACTIONS(1514), + [anon_sym_out_GT_PIPE] = ACTIONS(1514), + [anon_sym_e_GT_PIPE] = ACTIONS(1514), + [anon_sym_o_GT_PIPE] = ACTIONS(1514), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1514), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1514), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1514), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1514), + [anon_sym_RPAREN] = ACTIONS(1514), + [anon_sym_GT2] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1514), + [anon_sym_in2] = ACTIONS(1514), + [anon_sym_RBRACE] = ACTIONS(1514), + [anon_sym_STAR2] = ACTIONS(1512), + [anon_sym_and2] = ACTIONS(1514), + [anon_sym_xor2] = ACTIONS(1514), + [anon_sym_or2] = ACTIONS(1514), + [anon_sym_not_DASHin2] = ACTIONS(1514), + [anon_sym_has2] = ACTIONS(1514), + [anon_sym_not_DASHhas2] = ACTIONS(1514), + [anon_sym_starts_DASHwith2] = ACTIONS(1514), + [anon_sym_ends_DASHwith2] = ACTIONS(1514), + [anon_sym_EQ_EQ2] = ACTIONS(1514), + [anon_sym_BANG_EQ2] = ACTIONS(1514), + [anon_sym_LT2] = ACTIONS(1512), + [anon_sym_LT_EQ2] = ACTIONS(1514), + [anon_sym_GT_EQ2] = ACTIONS(1514), + [anon_sym_EQ_TILDE2] = ACTIONS(1514), + [anon_sym_BANG_TILDE2] = ACTIONS(1514), + [anon_sym_LPAREN2] = ACTIONS(1514), + [anon_sym_STAR_STAR2] = ACTIONS(1514), + [anon_sym_PLUS_PLUS2] = ACTIONS(1514), + [anon_sym_SLASH2] = ACTIONS(1512), + [anon_sym_mod2] = ACTIONS(1514), + [anon_sym_SLASH_SLASH2] = ACTIONS(1514), + [anon_sym_PLUS2] = ACTIONS(1512), + [anon_sym_bit_DASHshl2] = ACTIONS(1514), + [anon_sym_bit_DASHshr2] = ACTIONS(1514), + [anon_sym_bit_DASHand2] = ACTIONS(1514), + [anon_sym_bit_DASHxor2] = ACTIONS(1514), + [anon_sym_bit_DASHor2] = ACTIONS(1514), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [sym_filesize_unit] = ACTIONS(1512), + [sym_duration_unit] = ACTIONS(1514), + [anon_sym_err_GT] = ACTIONS(1512), + [anon_sym_out_GT] = ACTIONS(1512), + [anon_sym_e_GT] = ACTIONS(1512), + [anon_sym_o_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT] = ACTIONS(1512), + [anon_sym_err_GT_GT] = ACTIONS(1514), + [anon_sym_out_GT_GT] = ACTIONS(1514), + [anon_sym_e_GT_GT] = ACTIONS(1514), + [anon_sym_o_GT_GT] = ACTIONS(1514), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1514), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1514), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1514), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1514), + [aux_sym_unquoted_token2] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(247), }, [1461] = { + [sym_cell_path] = STATE(1809), + [sym_path] = STATE(1428), [sym_comment] = STATE(1461), - [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_GT2] = ACTIONS(980), - [anon_sym_DASH2] = ACTIONS(982), - [anon_sym_in2] = ACTIONS(982), - [anon_sym_if] = ACTIONS(982), - [anon_sym_LBRACE] = ACTIONS(982), - [anon_sym_RBRACE] = ACTIONS(982), - [anon_sym_EQ_GT] = ACTIONS(982), - [anon_sym_STAR2] = ACTIONS(980), - [anon_sym_QMARK2] = ACTIONS(982), - [anon_sym_and2] = ACTIONS(982), - [anon_sym_xor2] = ACTIONS(982), - [anon_sym_or2] = ACTIONS(982), - [anon_sym_not_DASHin2] = ACTIONS(982), - [anon_sym_starts_DASHwith2] = ACTIONS(982), - [anon_sym_ends_DASHwith2] = ACTIONS(982), - [anon_sym_EQ_EQ2] = ACTIONS(982), - [anon_sym_BANG_EQ2] = ACTIONS(982), - [anon_sym_LT2] = ACTIONS(980), - [anon_sym_LT_EQ2] = ACTIONS(982), - [anon_sym_GT_EQ2] = ACTIONS(982), - [anon_sym_EQ_TILDE2] = ACTIONS(982), - [anon_sym_BANG_TILDE2] = ACTIONS(982), - [anon_sym_STAR_STAR2] = ACTIONS(982), - [anon_sym_PLUS_PLUS2] = ACTIONS(982), - [anon_sym_SLASH2] = ACTIONS(980), - [anon_sym_mod2] = ACTIONS(982), - [anon_sym_SLASH_SLASH2] = ACTIONS(982), - [anon_sym_PLUS2] = ACTIONS(980), - [anon_sym_bit_DASHshl2] = ACTIONS(982), - [anon_sym_bit_DASHshr2] = ACTIONS(982), - [anon_sym_bit_DASHand2] = ACTIONS(982), - [anon_sym_bit_DASHxor2] = ACTIONS(982), - [anon_sym_bit_DASHor2] = ACTIONS(982), - [anon_sym_DOT_DOT2] = ACTIONS(980), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(982), - [anon_sym_DOT_DOT_LT2] = ACTIONS(982), - [anon_sym_COLON2] = ACTIONS(982), - [anon_sym_DOT2] = 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(251), + [aux_sym_cell_path_repeat1] = STATE(1338), + [sym__newline] = ACTIONS(1933), + [anon_sym_SEMI] = ACTIONS(1933), + [anon_sym_PIPE] = ACTIONS(1933), + [anon_sym_err_GT_PIPE] = ACTIONS(1933), + [anon_sym_out_GT_PIPE] = ACTIONS(1933), + [anon_sym_e_GT_PIPE] = ACTIONS(1933), + [anon_sym_o_GT_PIPE] = ACTIONS(1933), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1933), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1933), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1933), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1933), + [anon_sym_RPAREN] = ACTIONS(1933), + [anon_sym_GT2] = ACTIONS(1931), + [anon_sym_DASH2] = ACTIONS(1933), + [anon_sym_in2] = ACTIONS(1933), + [anon_sym_if] = ACTIONS(1933), + [anon_sym_LBRACE] = ACTIONS(1933), + [anon_sym_RBRACE] = ACTIONS(1933), + [anon_sym_EQ_GT] = ACTIONS(1933), + [anon_sym_STAR2] = ACTIONS(1931), + [anon_sym_and2] = ACTIONS(1933), + [anon_sym_xor2] = ACTIONS(1933), + [anon_sym_or2] = ACTIONS(1933), + [anon_sym_not_DASHin2] = ACTIONS(1933), + [anon_sym_has2] = ACTIONS(1933), + [anon_sym_not_DASHhas2] = ACTIONS(1933), + [anon_sym_starts_DASHwith2] = ACTIONS(1933), + [anon_sym_ends_DASHwith2] = ACTIONS(1933), + [anon_sym_EQ_EQ2] = ACTIONS(1933), + [anon_sym_BANG_EQ2] = ACTIONS(1933), + [anon_sym_LT2] = ACTIONS(1931), + [anon_sym_LT_EQ2] = ACTIONS(1933), + [anon_sym_GT_EQ2] = ACTIONS(1933), + [anon_sym_EQ_TILDE2] = ACTIONS(1933), + [anon_sym_BANG_TILDE2] = ACTIONS(1933), + [anon_sym_STAR_STAR2] = ACTIONS(1933), + [anon_sym_PLUS_PLUS2] = ACTIONS(1933), + [anon_sym_SLASH2] = ACTIONS(1931), + [anon_sym_mod2] = ACTIONS(1933), + [anon_sym_SLASH_SLASH2] = ACTIONS(1933), + [anon_sym_PLUS2] = ACTIONS(1931), + [anon_sym_bit_DASHshl2] = ACTIONS(1933), + [anon_sym_bit_DASHshr2] = ACTIONS(1933), + [anon_sym_bit_DASHand2] = ACTIONS(1933), + [anon_sym_bit_DASHxor2] = ACTIONS(1933), + [anon_sym_bit_DASHor2] = ACTIONS(1933), + [anon_sym_DOT2] = ACTIONS(4770), + [anon_sym_err_GT] = ACTIONS(1931), + [anon_sym_out_GT] = ACTIONS(1931), + [anon_sym_e_GT] = ACTIONS(1931), + [anon_sym_o_GT] = ACTIONS(1931), + [anon_sym_err_PLUSout_GT] = ACTIONS(1931), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1931), + [anon_sym_o_PLUSe_GT] = ACTIONS(1931), + [anon_sym_e_PLUSo_GT] = ACTIONS(1931), + [anon_sym_err_GT_GT] = ACTIONS(1933), + [anon_sym_out_GT_GT] = ACTIONS(1933), + [anon_sym_e_GT_GT] = ACTIONS(1933), + [anon_sym_o_GT_GT] = ACTIONS(1933), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1933), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1933), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1933), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1933), + [anon_sym_POUND] = ACTIONS(247), }, [1462] = { - [sym_cell_path] = STATE(1726), - [sym_path] = STATE(1680), + [sym_cell_path] = STATE(1878), + [sym_path] = STATE(1700), [sym_comment] = STATE(1462), - [aux_sym_cell_path_repeat1] = STATE(1535), - [sym__newline] = ACTIONS(1907), - [anon_sym_SEMI] = ACTIONS(1907), - [anon_sym_PIPE] = ACTIONS(1907), - [anon_sym_err_GT_PIPE] = ACTIONS(1907), - [anon_sym_out_GT_PIPE] = ACTIONS(1907), - [anon_sym_e_GT_PIPE] = ACTIONS(1907), - [anon_sym_o_GT_PIPE] = ACTIONS(1907), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1907), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1907), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1907), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1907), - [anon_sym_LBRACK] = ACTIONS(1907), - [anon_sym_LPAREN] = ACTIONS(1907), - [anon_sym_RPAREN] = ACTIONS(1907), - [anon_sym_DOLLAR] = ACTIONS(1905), - [anon_sym_DASH_DASH] = ACTIONS(1907), - [anon_sym_DASH2] = ACTIONS(1905), - [anon_sym_LBRACE] = ACTIONS(1907), - [anon_sym_RBRACE] = ACTIONS(1907), - [anon_sym_DOT_DOT] = ACTIONS(1905), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1907), - [anon_sym_DOT_DOT_LT] = ACTIONS(1907), - [anon_sym_null] = ACTIONS(1907), - [anon_sym_true] = ACTIONS(1907), - [anon_sym_false] = ACTIONS(1907), - [aux_sym__val_number_decimal_token1] = ACTIONS(1905), - [aux_sym__val_number_decimal_token2] = ACTIONS(1907), - [aux_sym__val_number_decimal_token3] = ACTIONS(1907), - [aux_sym__val_number_decimal_token4] = ACTIONS(1907), - [aux_sym__val_number_token1] = ACTIONS(1907), - [aux_sym__val_number_token2] = ACTIONS(1907), - [aux_sym__val_number_token3] = ACTIONS(1907), - [aux_sym__val_number_token4] = ACTIONS(1907), - [aux_sym__val_number_token5] = ACTIONS(1907), - [aux_sym__val_number_token6] = 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_DOT2] = ACTIONS(4696), - [anon_sym_err_GT] = ACTIONS(1905), - [anon_sym_out_GT] = ACTIONS(1905), - [anon_sym_e_GT] = ACTIONS(1905), - [anon_sym_o_GT] = ACTIONS(1905), - [anon_sym_err_PLUSout_GT] = ACTIONS(1905), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1905), - [anon_sym_o_PLUSe_GT] = ACTIONS(1905), - [anon_sym_e_PLUSo_GT] = ACTIONS(1905), - [anon_sym_err_GT_GT] = ACTIONS(1907), - [anon_sym_out_GT_GT] = ACTIONS(1907), - [anon_sym_e_GT_GT] = ACTIONS(1907), - [anon_sym_o_GT_GT] = ACTIONS(1907), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1907), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1907), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1907), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1907), - [aux_sym_unquoted_token1] = ACTIONS(1905), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1907), + [aux_sym_cell_path_repeat1] = STATE(1547), + [sym__newline] = ACTIONS(1879), + [anon_sym_SEMI] = ACTIONS(1879), + [anon_sym_PIPE] = ACTIONS(1879), + [anon_sym_err_GT_PIPE] = ACTIONS(1879), + [anon_sym_out_GT_PIPE] = ACTIONS(1879), + [anon_sym_e_GT_PIPE] = ACTIONS(1879), + [anon_sym_o_GT_PIPE] = ACTIONS(1879), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1879), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1879), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1879), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(1879), + [anon_sym_RPAREN] = ACTIONS(1879), + [anon_sym_DOLLAR] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1879), + [anon_sym_DASH2] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1879), + [anon_sym_RBRACE] = ACTIONS(1879), + [anon_sym_DOT_DOT] = ACTIONS(1877), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1879), + [anon_sym_DOT_DOT_LT] = ACTIONS(1879), + [anon_sym_null] = ACTIONS(1879), + [anon_sym_true] = ACTIONS(1879), + [anon_sym_false] = ACTIONS(1879), + [aux_sym__val_number_decimal_token1] = ACTIONS(1877), + [aux_sym__val_number_decimal_token2] = 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), + [aux_sym__val_number_token4] = ACTIONS(1879), + [aux_sym__val_number_token5] = ACTIONS(1879), + [aux_sym__val_number_token6] = ACTIONS(1879), + [anon_sym_0b] = ACTIONS(1877), + [anon_sym_0o] = ACTIONS(1877), + [anon_sym_0x] = ACTIONS(1877), + [sym_val_date] = ACTIONS(1879), + [anon_sym_DQUOTE] = ACTIONS(1879), + [sym__str_single_quotes] = ACTIONS(1879), + [sym__str_back_ticks] = ACTIONS(1879), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1879), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1879), + [anon_sym_DOT2] = ACTIONS(4760), + [anon_sym_err_GT] = ACTIONS(1877), + [anon_sym_out_GT] = ACTIONS(1877), + [anon_sym_e_GT] = ACTIONS(1877), + [anon_sym_o_GT] = ACTIONS(1877), + [anon_sym_err_PLUSout_GT] = ACTIONS(1877), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1877), + [anon_sym_o_PLUSe_GT] = ACTIONS(1877), + [anon_sym_e_PLUSo_GT] = ACTIONS(1877), + [anon_sym_err_GT_GT] = ACTIONS(1879), + [anon_sym_out_GT_GT] = ACTIONS(1879), + [anon_sym_e_GT_GT] = ACTIONS(1879), + [anon_sym_o_GT_GT] = ACTIONS(1879), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1879), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1879), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1879), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1879), + [aux_sym_unquoted_token1] = ACTIONS(1877), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1879), }, [1463] = { [sym_comment] = STATE(1463), - [ts_builtin_sym_end] = 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(1802), - [anon_sym_DOLLAR] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_DOT_DOT2] = ACTIONS(4726), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1802), - [anon_sym_DOT_DOT_LT] = ACTIONS(1802), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4728), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4728), - [anon_sym_null] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1810), - [anon_sym_false] = ACTIONS(1810), - [aux_sym__val_number_decimal_token1] = ACTIONS(1802), - [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), - [aux_sym__val_number_token4] = ACTIONS(1810), - [aux_sym__val_number_token5] = ACTIONS(1810), - [aux_sym__val_number_token6] = ACTIONS(1810), - [anon_sym_0b] = ACTIONS(1802), - [anon_sym_0o] = ACTIONS(1802), - [anon_sym_0x] = ACTIONS(1802), - [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(1802), - [anon_sym_out_GT] = ACTIONS(1802), - [anon_sym_e_GT] = ACTIONS(1802), - [anon_sym_o_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT] = ACTIONS(1802), - [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(1802), - [aux_sym_unquoted_token2] = ACTIONS(1477), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1810), + [ts_builtin_sym_end] = ACTIONS(952), + [sym__newline] = ACTIONS(952), + [anon_sym_SEMI] = ACTIONS(952), + [anon_sym_PIPE] = ACTIONS(952), + [anon_sym_err_GT_PIPE] = ACTIONS(952), + [anon_sym_out_GT_PIPE] = ACTIONS(952), + [anon_sym_e_GT_PIPE] = ACTIONS(952), + [anon_sym_o_GT_PIPE] = ACTIONS(952), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(952), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(952), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(952), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(952), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(952), + [anon_sym_DOLLAR] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_DASH2] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(952), + [anon_sym_DOT_DOT] = ACTIONS(950), + [anon_sym_QMARK2] = ACTIONS(4772), + [anon_sym_DOT_DOT2] = ACTIONS(950), + [anon_sym_DOT_DOT_EQ] = ACTIONS(950), + [anon_sym_DOT_DOT_LT] = ACTIONS(950), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(952), + [anon_sym_DOT_DOT_LT2] = ACTIONS(952), + [anon_sym_null] = ACTIONS(952), + [anon_sym_true] = ACTIONS(952), + [anon_sym_false] = ACTIONS(952), + [aux_sym__val_number_decimal_token1] = ACTIONS(950), + [aux_sym__val_number_decimal_token2] = ACTIONS(952), + [aux_sym__val_number_decimal_token3] = ACTIONS(952), + [aux_sym__val_number_decimal_token4] = ACTIONS(952), + [aux_sym__val_number_token1] = ACTIONS(952), + [aux_sym__val_number_token2] = ACTIONS(952), + [aux_sym__val_number_token3] = ACTIONS(952), + [aux_sym__val_number_token4] = ACTIONS(952), + [aux_sym__val_number_token5] = ACTIONS(952), + [aux_sym__val_number_token6] = ACTIONS(952), + [anon_sym_0b] = ACTIONS(950), + [anon_sym_0o] = ACTIONS(950), + [anon_sym_0x] = ACTIONS(950), + [sym_val_date] = ACTIONS(952), + [anon_sym_DQUOTE] = ACTIONS(952), + [sym__str_single_quotes] = ACTIONS(952), + [sym__str_back_ticks] = ACTIONS(952), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(952), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(952), + [anon_sym_DOT2] = ACTIONS(950), + [anon_sym_err_GT] = ACTIONS(950), + [anon_sym_out_GT] = ACTIONS(950), + [anon_sym_e_GT] = ACTIONS(950), + [anon_sym_o_GT] = ACTIONS(950), + [anon_sym_err_PLUSout_GT] = ACTIONS(950), + [anon_sym_out_PLUSerr_GT] = ACTIONS(950), + [anon_sym_o_PLUSe_GT] = ACTIONS(950), + [anon_sym_e_PLUSo_GT] = ACTIONS(950), + [anon_sym_err_GT_GT] = ACTIONS(952), + [anon_sym_out_GT_GT] = ACTIONS(952), + [anon_sym_e_GT_GT] = ACTIONS(952), + [anon_sym_o_GT_GT] = ACTIONS(952), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(952), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(952), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(952), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(952), + [aux_sym_unquoted_token1] = ACTIONS(950), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(952), }, [1464] = { [sym_comment] = STATE(1464), - [ts_builtin_sym_end] = ACTIONS(1757), - [sym__newline] = ACTIONS(1757), - [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(1755), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1755), - [anon_sym_DOT_DOT_LT] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [anon_sym_null] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = 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_err_GT] = ACTIONS(1755), - [anon_sym_out_GT] = ACTIONS(1755), - [anon_sym_e_GT] = ACTIONS(1755), - [anon_sym_o_GT] = ACTIONS(1755), - [anon_sym_err_PLUSout_GT] = ACTIONS(1755), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), - [anon_sym_o_PLUSe_GT] = ACTIONS(1755), - [anon_sym_e_PLUSo_GT] = ACTIONS(1755), - [anon_sym_err_GT_GT] = ACTIONS(1757), - [anon_sym_out_GT_GT] = ACTIONS(1757), - [anon_sym_e_GT_GT] = ACTIONS(1757), - [anon_sym_o_GT_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), - [aux_sym_unquoted_token1] = ACTIONS(1755), - [aux_sym_unquoted_token2] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1757), + [ts_builtin_sym_end] = ACTIONS(970), + [sym__newline] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(970), + [anon_sym_PIPE] = ACTIONS(970), + [anon_sym_err_GT_PIPE] = ACTIONS(970), + [anon_sym_out_GT_PIPE] = ACTIONS(970), + [anon_sym_e_GT_PIPE] = ACTIONS(970), + [anon_sym_o_GT_PIPE] = ACTIONS(970), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(970), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(970), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(970), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(970), + [anon_sym_LPAREN] = ACTIONS(970), + [anon_sym_DOLLAR] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(970), + [anon_sym_DASH2] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(970), + [anon_sym_DOT_DOT] = ACTIONS(968), + [anon_sym_QMARK2] = ACTIONS(4774), + [anon_sym_DOT_DOT2] = ACTIONS(968), + [anon_sym_DOT_DOT_EQ] = ACTIONS(968), + [anon_sym_DOT_DOT_LT] = ACTIONS(968), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(970), + [anon_sym_DOT_DOT_LT2] = ACTIONS(970), + [anon_sym_null] = ACTIONS(970), + [anon_sym_true] = ACTIONS(970), + [anon_sym_false] = ACTIONS(970), + [aux_sym__val_number_decimal_token1] = ACTIONS(968), + [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), + [aux_sym__val_number_token4] = ACTIONS(970), + [aux_sym__val_number_token5] = ACTIONS(970), + [aux_sym__val_number_token6] = ACTIONS(970), + [anon_sym_0b] = ACTIONS(968), + [anon_sym_0o] = ACTIONS(968), + [anon_sym_0x] = ACTIONS(968), + [sym_val_date] = ACTIONS(970), + [anon_sym_DQUOTE] = ACTIONS(970), + [sym__str_single_quotes] = ACTIONS(970), + [sym__str_back_ticks] = ACTIONS(970), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(970), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(970), + [anon_sym_DOT2] = ACTIONS(968), + [anon_sym_err_GT] = ACTIONS(968), + [anon_sym_out_GT] = ACTIONS(968), + [anon_sym_e_GT] = ACTIONS(968), + [anon_sym_o_GT] = ACTIONS(968), + [anon_sym_err_PLUSout_GT] = ACTIONS(968), + [anon_sym_out_PLUSerr_GT] = ACTIONS(968), + [anon_sym_o_PLUSe_GT] = ACTIONS(968), + [anon_sym_e_PLUSo_GT] = ACTIONS(968), + [anon_sym_err_GT_GT] = ACTIONS(970), + [anon_sym_out_GT_GT] = ACTIONS(970), + [anon_sym_e_GT_GT] = ACTIONS(970), + [anon_sym_o_GT_GT] = ACTIONS(970), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(970), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(970), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(970), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(970), + [aux_sym_unquoted_token1] = ACTIONS(968), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(970), }, [1465] = { [sym_comment] = STATE(1465), - [sym__newline] = ACTIONS(1544), - [anon_sym_SEMI] = ACTIONS(1544), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_err_GT_PIPE] = ACTIONS(1544), - [anon_sym_out_GT_PIPE] = ACTIONS(1544), - [anon_sym_e_GT_PIPE] = ACTIONS(1544), - [anon_sym_o_GT_PIPE] = ACTIONS(1544), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1544), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1544), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1544), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1544), - [anon_sym_RPAREN] = ACTIONS(1544), - [anon_sym_GT2] = ACTIONS(1542), - [anon_sym_DASH2] = ACTIONS(1544), - [anon_sym_in2] = ACTIONS(1544), - [anon_sym_RBRACE] = ACTIONS(1544), - [anon_sym_STAR2] = ACTIONS(1542), - [anon_sym_and2] = ACTIONS(1544), - [anon_sym_xor2] = ACTIONS(1544), - [anon_sym_or2] = ACTIONS(1544), - [anon_sym_not_DASHin2] = ACTIONS(1544), - [anon_sym_starts_DASHwith2] = ACTIONS(1544), - [anon_sym_ends_DASHwith2] = ACTIONS(1544), - [anon_sym_EQ_EQ2] = ACTIONS(1544), - [anon_sym_BANG_EQ2] = ACTIONS(1544), - [anon_sym_LT2] = ACTIONS(1542), - [anon_sym_LT_EQ2] = ACTIONS(1544), - [anon_sym_GT_EQ2] = ACTIONS(1544), - [anon_sym_EQ_TILDE2] = ACTIONS(1544), - [anon_sym_BANG_TILDE2] = ACTIONS(1544), - [anon_sym_LPAREN2] = ACTIONS(1544), - [anon_sym_STAR_STAR2] = ACTIONS(1544), - [anon_sym_PLUS_PLUS2] = ACTIONS(1544), - [anon_sym_SLASH2] = ACTIONS(1542), - [anon_sym_mod2] = ACTIONS(1544), - [anon_sym_SLASH_SLASH2] = ACTIONS(1544), - [anon_sym_PLUS2] = ACTIONS(1542), - [anon_sym_bit_DASHshl2] = ACTIONS(1544), - [anon_sym_bit_DASHshr2] = ACTIONS(1544), - [anon_sym_bit_DASHand2] = ACTIONS(1544), - [anon_sym_bit_DASHxor2] = ACTIONS(1544), - [anon_sym_bit_DASHor2] = ACTIONS(1544), - [anon_sym_DOT_DOT2] = ACTIONS(1542), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1544), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1544), - [aux_sym__immediate_decimal_token1] = ACTIONS(4730), - [aux_sym__immediate_decimal_token2] = ACTIONS(4732), - [sym_filesize_unit] = ACTIONS(1542), - [sym_duration_unit] = ACTIONS(1544), - [anon_sym_err_GT] = ACTIONS(1542), - [anon_sym_out_GT] = ACTIONS(1542), - [anon_sym_e_GT] = ACTIONS(1542), - [anon_sym_o_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT] = ACTIONS(1542), - [anon_sym_err_GT_GT] = ACTIONS(1544), - [anon_sym_out_GT_GT] = ACTIONS(1544), - [anon_sym_e_GT_GT] = ACTIONS(1544), - [anon_sym_o_GT_GT] = ACTIONS(1544), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1544), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1544), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1544), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1544), - [aux_sym_unquoted_token2] = ACTIONS(1542), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(1695), + [anon_sym_SEMI] = ACTIONS(1695), + [anon_sym_PIPE] = ACTIONS(1695), + [anon_sym_err_GT_PIPE] = ACTIONS(1695), + [anon_sym_out_GT_PIPE] = ACTIONS(1695), + [anon_sym_e_GT_PIPE] = ACTIONS(1695), + [anon_sym_o_GT_PIPE] = ACTIONS(1695), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1695), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1695), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1695), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1695), + [anon_sym_LBRACK] = ACTIONS(1695), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_RPAREN] = ACTIONS(1695), + [anon_sym_DOLLAR] = ACTIONS(1693), + [anon_sym_DASH_DASH] = ACTIONS(1695), + [anon_sym_DASH2] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1695), + [anon_sym_RBRACE] = ACTIONS(1695), + [anon_sym_DOT_DOT] = ACTIONS(1693), + [anon_sym_LPAREN2] = ACTIONS(1695), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1695), + [anon_sym_DOT_DOT_LT] = ACTIONS(1695), + [aux_sym__immediate_decimal_token1] = ACTIONS(4776), + [aux_sym__immediate_decimal_token2] = ACTIONS(4778), + [anon_sym_null] = ACTIONS(1695), + [anon_sym_true] = ACTIONS(1695), + [anon_sym_false] = ACTIONS(1695), + [aux_sym__val_number_decimal_token1] = ACTIONS(1693), + [aux_sym__val_number_decimal_token2] = ACTIONS(1695), + [aux_sym__val_number_decimal_token3] = ACTIONS(1695), + [aux_sym__val_number_decimal_token4] = ACTIONS(1695), + [aux_sym__val_number_token1] = ACTIONS(1695), + [aux_sym__val_number_token2] = ACTIONS(1695), + [aux_sym__val_number_token3] = ACTIONS(1695), + [aux_sym__val_number_token4] = ACTIONS(1695), + [aux_sym__val_number_token5] = ACTIONS(1695), + [aux_sym__val_number_token6] = ACTIONS(1695), + [anon_sym_0b] = ACTIONS(1693), + [anon_sym_0o] = ACTIONS(1693), + [anon_sym_0x] = ACTIONS(1693), + [sym_val_date] = ACTIONS(1695), + [anon_sym_DQUOTE] = ACTIONS(1695), + [sym__str_single_quotes] = ACTIONS(1695), + [sym__str_back_ticks] = ACTIONS(1695), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1695), + [anon_sym_err_GT] = ACTIONS(1693), + [anon_sym_out_GT] = ACTIONS(1693), + [anon_sym_e_GT] = ACTIONS(1693), + [anon_sym_o_GT] = ACTIONS(1693), + [anon_sym_err_PLUSout_GT] = ACTIONS(1693), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1693), + [anon_sym_o_PLUSe_GT] = ACTIONS(1693), + [anon_sym_e_PLUSo_GT] = ACTIONS(1693), + [anon_sym_err_GT_GT] = ACTIONS(1695), + [anon_sym_out_GT_GT] = ACTIONS(1695), + [anon_sym_e_GT_GT] = ACTIONS(1695), + [anon_sym_o_GT_GT] = ACTIONS(1695), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1695), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1695), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1695), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1695), + [aux_sym_unquoted_token1] = ACTIONS(1693), + [aux_sym_unquoted_token2] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1695), }, [1466] = { - [sym__expr_parenthesized_immediate] = STATE(2452), - [sym__immediate_decimal] = STATE(2277), - [sym_val_variable] = STATE(2452), [sym_comment] = STATE(1466), - [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_DOLLAR] = ACTIONS(4678), - [anon_sym_GT2] = ACTIONS(1461), - [anon_sym_DASH2] = ACTIONS(1461), - [anon_sym_in2] = ACTIONS(1475), - [anon_sym_STAR2] = ACTIONS(1461), - [anon_sym_and2] = ACTIONS(1475), - [anon_sym_xor2] = ACTIONS(1475), - [anon_sym_or2] = ACTIONS(1475), - [anon_sym_not_DASHin2] = ACTIONS(1475), - [anon_sym_starts_DASHwith2] = ACTIONS(1475), - [anon_sym_ends_DASHwith2] = ACTIONS(1475), - [anon_sym_EQ_EQ2] = ACTIONS(1475), - [anon_sym_BANG_EQ2] = ACTIONS(1475), - [anon_sym_LT2] = ACTIONS(1461), - [anon_sym_LT_EQ2] = ACTIONS(1475), - [anon_sym_GT_EQ2] = ACTIONS(1475), - [anon_sym_EQ_TILDE2] = ACTIONS(1475), - [anon_sym_BANG_TILDE2] = ACTIONS(1475), - [anon_sym_LPAREN2] = ACTIONS(4680), - [anon_sym_STAR_STAR2] = ACTIONS(1475), - [anon_sym_PLUS_PLUS2] = ACTIONS(1475), - [anon_sym_SLASH2] = ACTIONS(1461), - [anon_sym_mod2] = ACTIONS(1475), - [anon_sym_SLASH_SLASH2] = ACTIONS(1475), - [anon_sym_PLUS2] = ACTIONS(1461), - [anon_sym_bit_DASHshl2] = ACTIONS(1475), - [anon_sym_bit_DASHshr2] = ACTIONS(1475), - [anon_sym_bit_DASHand2] = ACTIONS(1475), - [anon_sym_bit_DASHxor2] = ACTIONS(1475), - [anon_sym_bit_DASHor2] = ACTIONS(1475), - [aux_sym__immediate_decimal_token1] = ACTIONS(4734), - [aux_sym__immediate_decimal_token3] = ACTIONS(4734), - [aux_sym__immediate_decimal_token4] = ACTIONS(4736), - [aux_sym__immediate_decimal_token5] = ACTIONS(4738), - [anon_sym_err_GT] = ACTIONS(1461), - [anon_sym_out_GT] = ACTIONS(1461), - [anon_sym_e_GT] = ACTIONS(1461), - [anon_sym_o_GT] = ACTIONS(1461), - [anon_sym_err_PLUSout_GT] = ACTIONS(1461), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1461), - [anon_sym_o_PLUSe_GT] = ACTIONS(1461), - [anon_sym_e_PLUSo_GT] = ACTIONS(1461), - [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(1477), - [anon_sym_POUND] = ACTIONS(251), + [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_GT2] = ACTIONS(1504), + [anon_sym_DASH2] = ACTIONS(1506), + [anon_sym_in2] = ACTIONS(1506), + [anon_sym_RBRACE] = ACTIONS(1506), + [anon_sym_STAR2] = ACTIONS(1504), + [anon_sym_and2] = ACTIONS(1506), + [anon_sym_xor2] = ACTIONS(1506), + [anon_sym_or2] = ACTIONS(1506), + [anon_sym_not_DASHin2] = ACTIONS(1506), + [anon_sym_has2] = ACTIONS(1506), + [anon_sym_not_DASHhas2] = ACTIONS(1506), + [anon_sym_starts_DASHwith2] = ACTIONS(1506), + [anon_sym_ends_DASHwith2] = ACTIONS(1506), + [anon_sym_EQ_EQ2] = ACTIONS(1506), + [anon_sym_BANG_EQ2] = ACTIONS(1506), + [anon_sym_LT2] = ACTIONS(1504), + [anon_sym_LT_EQ2] = ACTIONS(1506), + [anon_sym_GT_EQ2] = ACTIONS(1506), + [anon_sym_EQ_TILDE2] = ACTIONS(1506), + [anon_sym_BANG_TILDE2] = ACTIONS(1506), + [anon_sym_LPAREN2] = ACTIONS(1506), + [anon_sym_STAR_STAR2] = ACTIONS(1506), + [anon_sym_PLUS_PLUS2] = ACTIONS(1506), + [anon_sym_SLASH2] = ACTIONS(1504), + [anon_sym_mod2] = ACTIONS(1506), + [anon_sym_SLASH_SLASH2] = ACTIONS(1506), + [anon_sym_PLUS2] = ACTIONS(1504), + [anon_sym_bit_DASHshl2] = ACTIONS(1506), + [anon_sym_bit_DASHshr2] = ACTIONS(1506), + [anon_sym_bit_DASHand2] = ACTIONS(1506), + [anon_sym_bit_DASHxor2] = ACTIONS(1506), + [anon_sym_bit_DASHor2] = 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), + [aux_sym_unquoted_token2] = ACTIONS(1504), + [anon_sym_POUND] = ACTIONS(247), }, [1467] = { + [sym_cell_path] = STATE(1824), + [sym_path] = STATE(1428), [sym_comment] = STATE(1467), - [sym__newline] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1552), - [anon_sym_PIPE] = ACTIONS(1552), - [anon_sym_err_GT_PIPE] = ACTIONS(1552), - [anon_sym_out_GT_PIPE] = ACTIONS(1552), - [anon_sym_e_GT_PIPE] = ACTIONS(1552), - [anon_sym_o_GT_PIPE] = ACTIONS(1552), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1552), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1552), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1552), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1552), - [anon_sym_RPAREN] = ACTIONS(1552), - [anon_sym_GT2] = ACTIONS(1550), - [anon_sym_DASH2] = ACTIONS(1552), - [anon_sym_in2] = ACTIONS(1552), - [anon_sym_RBRACE] = ACTIONS(1552), - [anon_sym_STAR2] = ACTIONS(1550), - [anon_sym_and2] = ACTIONS(1552), - [anon_sym_xor2] = ACTIONS(1552), - [anon_sym_or2] = ACTIONS(1552), - [anon_sym_not_DASHin2] = ACTIONS(1552), - [anon_sym_starts_DASHwith2] = ACTIONS(1552), - [anon_sym_ends_DASHwith2] = ACTIONS(1552), - [anon_sym_EQ_EQ2] = ACTIONS(1552), - [anon_sym_BANG_EQ2] = ACTIONS(1552), - [anon_sym_LT2] = ACTIONS(1550), - [anon_sym_LT_EQ2] = ACTIONS(1552), - [anon_sym_GT_EQ2] = ACTIONS(1552), - [anon_sym_EQ_TILDE2] = ACTIONS(1552), - [anon_sym_BANG_TILDE2] = ACTIONS(1552), - [anon_sym_LPAREN2] = ACTIONS(1552), - [anon_sym_STAR_STAR2] = ACTIONS(1552), - [anon_sym_PLUS_PLUS2] = ACTIONS(1552), - [anon_sym_SLASH2] = ACTIONS(1550), - [anon_sym_mod2] = ACTIONS(1552), - [anon_sym_SLASH_SLASH2] = ACTIONS(1552), - [anon_sym_PLUS2] = ACTIONS(1550), - [anon_sym_bit_DASHshl2] = ACTIONS(1552), - [anon_sym_bit_DASHshr2] = ACTIONS(1552), - [anon_sym_bit_DASHand2] = ACTIONS(1552), - [anon_sym_bit_DASHxor2] = ACTIONS(1552), - [anon_sym_bit_DASHor2] = ACTIONS(1552), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT] = ACTIONS(4740), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [aux_sym__immediate_decimal_token2] = ACTIONS(4742), - [sym_filesize_unit] = ACTIONS(1550), - [sym_duration_unit] = ACTIONS(1552), - [anon_sym_err_GT] = ACTIONS(1550), - [anon_sym_out_GT] = ACTIONS(1550), - [anon_sym_e_GT] = ACTIONS(1550), - [anon_sym_o_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT] = ACTIONS(1550), - [anon_sym_err_GT_GT] = ACTIONS(1552), - [anon_sym_out_GT_GT] = ACTIONS(1552), - [anon_sym_e_GT_GT] = ACTIONS(1552), - [anon_sym_o_GT_GT] = ACTIONS(1552), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1552), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1552), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1552), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1552), - [aux_sym_unquoted_token2] = ACTIONS(1550), - [anon_sym_POUND] = ACTIONS(251), + [aux_sym_cell_path_repeat1] = STATE(1338), + [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_RPAREN] = ACTIONS(1941), + [anon_sym_GT2] = ACTIONS(1939), + [anon_sym_DASH2] = ACTIONS(1941), + [anon_sym_in2] = ACTIONS(1941), + [anon_sym_if] = ACTIONS(1941), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_RBRACE] = ACTIONS(1941), + [anon_sym_EQ_GT] = ACTIONS(1941), + [anon_sym_STAR2] = ACTIONS(1939), + [anon_sym_and2] = ACTIONS(1941), + [anon_sym_xor2] = ACTIONS(1941), + [anon_sym_or2] = ACTIONS(1941), + [anon_sym_not_DASHin2] = ACTIONS(1941), + [anon_sym_has2] = ACTIONS(1941), + [anon_sym_not_DASHhas2] = ACTIONS(1941), + [anon_sym_starts_DASHwith2] = ACTIONS(1941), + [anon_sym_ends_DASHwith2] = ACTIONS(1941), + [anon_sym_EQ_EQ2] = ACTIONS(1941), + [anon_sym_BANG_EQ2] = ACTIONS(1941), + [anon_sym_LT2] = ACTIONS(1939), + [anon_sym_LT_EQ2] = ACTIONS(1941), + [anon_sym_GT_EQ2] = ACTIONS(1941), + [anon_sym_EQ_TILDE2] = ACTIONS(1941), + [anon_sym_BANG_TILDE2] = ACTIONS(1941), + [anon_sym_STAR_STAR2] = ACTIONS(1941), + [anon_sym_PLUS_PLUS2] = ACTIONS(1941), + [anon_sym_SLASH2] = ACTIONS(1939), + [anon_sym_mod2] = ACTIONS(1941), + [anon_sym_SLASH_SLASH2] = ACTIONS(1941), + [anon_sym_PLUS2] = ACTIONS(1939), + [anon_sym_bit_DASHshl2] = ACTIONS(1941), + [anon_sym_bit_DASHshr2] = ACTIONS(1941), + [anon_sym_bit_DASHand2] = ACTIONS(1941), + [anon_sym_bit_DASHxor2] = ACTIONS(1941), + [anon_sym_bit_DASHor2] = ACTIONS(1941), + [anon_sym_DOT2] = ACTIONS(4770), + [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(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), + [anon_sym_POUND] = ACTIONS(247), }, [1468] = { + [sym_cell_path] = STATE(1879), + [sym_path] = STATE(1700), [sym_comment] = STATE(1468), - [sym__newline] = ACTIONS(998), - [anon_sym_SEMI] = ACTIONS(998), - [anon_sym_PIPE] = ACTIONS(998), - [anon_sym_err_GT_PIPE] = ACTIONS(998), - [anon_sym_out_GT_PIPE] = ACTIONS(998), - [anon_sym_e_GT_PIPE] = ACTIONS(998), - [anon_sym_o_GT_PIPE] = ACTIONS(998), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(998), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(998), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(998), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(998), - [anon_sym_LBRACK] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(998), - [anon_sym_RPAREN] = ACTIONS(998), - [anon_sym_DOLLAR] = ACTIONS(996), - [anon_sym_DASH_DASH] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_LBRACE] = ACTIONS(998), - [anon_sym_RBRACE] = ACTIONS(998), - [anon_sym_DOT_DOT] = ACTIONS(996), - [anon_sym_DOT_DOT2] = ACTIONS(996), - [anon_sym_DOT_DOT_EQ] = ACTIONS(996), - [anon_sym_DOT_DOT_LT] = ACTIONS(996), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(998), - [anon_sym_DOT_DOT_LT2] = ACTIONS(998), - [anon_sym_null] = ACTIONS(998), - [anon_sym_true] = ACTIONS(998), - [anon_sym_false] = ACTIONS(998), - [aux_sym__val_number_decimal_token1] = ACTIONS(996), - [aux_sym__val_number_decimal_token2] = ACTIONS(998), - [aux_sym__val_number_decimal_token3] = ACTIONS(998), - [aux_sym__val_number_decimal_token4] = ACTIONS(998), - [aux_sym__val_number_token1] = ACTIONS(998), - [aux_sym__val_number_token2] = ACTIONS(998), - [aux_sym__val_number_token3] = ACTIONS(998), - [aux_sym__val_number_token4] = ACTIONS(998), - [aux_sym__val_number_token5] = ACTIONS(998), - [aux_sym__val_number_token6] = ACTIONS(998), - [anon_sym_0b] = ACTIONS(996), - [anon_sym_0o] = ACTIONS(996), - [anon_sym_0x] = ACTIONS(996), - [sym_val_date] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(998), - [sym__str_single_quotes] = ACTIONS(998), - [sym__str_back_ticks] = ACTIONS(998), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(998), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), - [anon_sym_DOT2] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(998), - [anon_sym_out_GT_GT] = ACTIONS(998), - [anon_sym_e_GT_GT] = ACTIONS(998), - [anon_sym_o_GT_GT] = ACTIONS(998), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(998), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(998), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(998), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(998), - [aux_sym_unquoted_token1] = ACTIONS(996), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(998), + [aux_sym_cell_path_repeat1] = STATE(1547), + [sym__newline] = ACTIONS(1971), + [anon_sym_SEMI] = ACTIONS(1971), + [anon_sym_PIPE] = ACTIONS(1971), + [anon_sym_err_GT_PIPE] = ACTIONS(1971), + [anon_sym_out_GT_PIPE] = ACTIONS(1971), + [anon_sym_e_GT_PIPE] = ACTIONS(1971), + [anon_sym_o_GT_PIPE] = ACTIONS(1971), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1971), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1971), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1971), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1971), + [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_LPAREN] = ACTIONS(1971), + [anon_sym_RPAREN] = ACTIONS(1971), + [anon_sym_DOLLAR] = ACTIONS(1969), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_DASH2] = ACTIONS(1969), + [anon_sym_LBRACE] = ACTIONS(1971), + [anon_sym_RBRACE] = ACTIONS(1971), + [anon_sym_DOT_DOT] = ACTIONS(1969), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1971), + [anon_sym_DOT_DOT_LT] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1971), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [aux_sym__val_number_decimal_token1] = ACTIONS(1969), + [aux_sym__val_number_decimal_token2] = ACTIONS(1971), + [aux_sym__val_number_decimal_token3] = ACTIONS(1971), + [aux_sym__val_number_decimal_token4] = ACTIONS(1971), + [aux_sym__val_number_token1] = ACTIONS(1971), + [aux_sym__val_number_token2] = ACTIONS(1971), + [aux_sym__val_number_token3] = ACTIONS(1971), + [aux_sym__val_number_token4] = ACTIONS(1971), + [aux_sym__val_number_token5] = ACTIONS(1971), + [aux_sym__val_number_token6] = ACTIONS(1971), + [anon_sym_0b] = ACTIONS(1969), + [anon_sym_0o] = ACTIONS(1969), + [anon_sym_0x] = ACTIONS(1969), + [sym_val_date] = ACTIONS(1971), + [anon_sym_DQUOTE] = ACTIONS(1971), + [sym__str_single_quotes] = ACTIONS(1971), + [sym__str_back_ticks] = ACTIONS(1971), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1971), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1971), + [anon_sym_DOT2] = ACTIONS(4760), + [anon_sym_err_GT] = ACTIONS(1969), + [anon_sym_out_GT] = ACTIONS(1969), + [anon_sym_e_GT] = ACTIONS(1969), + [anon_sym_o_GT] = ACTIONS(1969), + [anon_sym_err_PLUSout_GT] = ACTIONS(1969), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1969), + [anon_sym_o_PLUSe_GT] = ACTIONS(1969), + [anon_sym_e_PLUSo_GT] = ACTIONS(1969), + [anon_sym_err_GT_GT] = ACTIONS(1971), + [anon_sym_out_GT_GT] = ACTIONS(1971), + [anon_sym_e_GT_GT] = ACTIONS(1971), + [anon_sym_o_GT_GT] = ACTIONS(1971), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1971), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1971), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1971), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1971), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1971), }, [1469] = { [sym_comment] = STATE(1469), - [ts_builtin_sym_end] = ACTIONS(1713), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1713), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_DOT_DOT] = ACTIONS(1711), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1711), - [anon_sym_DOT_DOT_LT] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [aux_sym__immediate_decimal_token1] = ACTIONS(4744), - [aux_sym__immediate_decimal_token2] = ACTIONS(4746), - [anon_sym_null] = ACTIONS(1713), - [anon_sym_true] = ACTIONS(1713), - [anon_sym_false] = ACTIONS(1713), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1713), - [aux_sym__val_number_decimal_token3] = ACTIONS(1713), - [aux_sym__val_number_decimal_token4] = ACTIONS(1713), - [aux_sym__val_number_token1] = ACTIONS(1713), - [aux_sym__val_number_token2] = ACTIONS(1713), - [aux_sym__val_number_token3] = ACTIONS(1713), - [aux_sym__val_number_token4] = ACTIONS(1713), - [aux_sym__val_number_token5] = ACTIONS(1713), - [aux_sym__val_number_token6] = ACTIONS(1713), - [anon_sym_0b] = ACTIONS(1711), - [anon_sym_0o] = ACTIONS(1711), - [anon_sym_0x] = ACTIONS(1711), - [sym_val_date] = ACTIONS(1713), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym__str_single_quotes] = ACTIONS(1713), - [sym__str_back_ticks] = ACTIONS(1713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1713), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [aux_sym_unquoted_token1] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1713), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_RPAREN] = ACTIONS(1703), + [anon_sym_GT2] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1703), + [anon_sym_in2] = ACTIONS(1703), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_STAR2] = ACTIONS(1701), + [anon_sym_and2] = ACTIONS(1703), + [anon_sym_xor2] = ACTIONS(1703), + [anon_sym_or2] = ACTIONS(1703), + [anon_sym_not_DASHin2] = ACTIONS(1703), + [anon_sym_has2] = ACTIONS(1703), + [anon_sym_not_DASHhas2] = ACTIONS(1703), + [anon_sym_starts_DASHwith2] = ACTIONS(1703), + [anon_sym_ends_DASHwith2] = ACTIONS(1703), + [anon_sym_EQ_EQ2] = ACTIONS(1703), + [anon_sym_BANG_EQ2] = ACTIONS(1703), + [anon_sym_LT2] = ACTIONS(1701), + [anon_sym_LT_EQ2] = ACTIONS(1703), + [anon_sym_GT_EQ2] = ACTIONS(1703), + [anon_sym_EQ_TILDE2] = ACTIONS(1703), + [anon_sym_BANG_TILDE2] = ACTIONS(1703), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_STAR_STAR2] = ACTIONS(1703), + [anon_sym_PLUS_PLUS2] = ACTIONS(1703), + [anon_sym_SLASH2] = ACTIONS(1701), + [anon_sym_mod2] = ACTIONS(1703), + [anon_sym_SLASH_SLASH2] = ACTIONS(1703), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_bit_DASHshl2] = ACTIONS(1703), + [anon_sym_bit_DASHshr2] = ACTIONS(1703), + [anon_sym_bit_DASHand2] = ACTIONS(1703), + [anon_sym_bit_DASHxor2] = ACTIONS(1703), + [anon_sym_bit_DASHor2] = ACTIONS(1703), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(4716), + [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(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(247), }, [1470] = { - [sym_cell_path] = STATE(1703), - [sym_path] = STATE(1680), + [sym_cell_path] = STATE(1880), + [sym_path] = STATE(1700), [sym_comment] = STATE(1470), - [aux_sym_cell_path_repeat1] = STATE(1535), - [sym__newline] = ACTIONS(1985), - [anon_sym_SEMI] = ACTIONS(1985), - [anon_sym_PIPE] = ACTIONS(1985), - [anon_sym_err_GT_PIPE] = ACTIONS(1985), - [anon_sym_out_GT_PIPE] = ACTIONS(1985), - [anon_sym_e_GT_PIPE] = ACTIONS(1985), - [anon_sym_o_GT_PIPE] = ACTIONS(1985), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1985), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1985), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1985), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1985), - [anon_sym_LBRACK] = ACTIONS(1985), - [anon_sym_LPAREN] = ACTIONS(1985), - [anon_sym_RPAREN] = ACTIONS(1985), - [anon_sym_DOLLAR] = ACTIONS(1983), - [anon_sym_DASH_DASH] = ACTIONS(1985), - [anon_sym_DASH2] = ACTIONS(1983), - [anon_sym_LBRACE] = ACTIONS(1985), - [anon_sym_RBRACE] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(1983), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1985), - [anon_sym_DOT_DOT_LT] = ACTIONS(1985), - [anon_sym_null] = ACTIONS(1985), - [anon_sym_true] = ACTIONS(1985), - [anon_sym_false] = ACTIONS(1985), - [aux_sym__val_number_decimal_token1] = ACTIONS(1983), - [aux_sym__val_number_decimal_token2] = ACTIONS(1985), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), - [aux_sym__val_number_token1] = ACTIONS(1985), - [aux_sym__val_number_token2] = ACTIONS(1985), - [aux_sym__val_number_token3] = ACTIONS(1985), - [aux_sym__val_number_token4] = ACTIONS(1985), - [aux_sym__val_number_token5] = ACTIONS(1985), - [aux_sym__val_number_token6] = ACTIONS(1985), - [anon_sym_0b] = ACTIONS(1983), - [anon_sym_0o] = ACTIONS(1983), - [anon_sym_0x] = ACTIONS(1983), - [sym_val_date] = ACTIONS(1985), - [anon_sym_DQUOTE] = ACTIONS(1985), - [sym__str_single_quotes] = ACTIONS(1985), - [sym__str_back_ticks] = ACTIONS(1985), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1985), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1985), - [anon_sym_DOT2] = ACTIONS(4696), - [anon_sym_err_GT] = ACTIONS(1983), - [anon_sym_out_GT] = ACTIONS(1983), - [anon_sym_e_GT] = ACTIONS(1983), - [anon_sym_o_GT] = ACTIONS(1983), - [anon_sym_err_PLUSout_GT] = ACTIONS(1983), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1983), - [anon_sym_o_PLUSe_GT] = ACTIONS(1983), - [anon_sym_e_PLUSo_GT] = ACTIONS(1983), - [anon_sym_err_GT_GT] = ACTIONS(1985), - [anon_sym_out_GT_GT] = ACTIONS(1985), - [anon_sym_e_GT_GT] = ACTIONS(1985), - [anon_sym_o_GT_GT] = ACTIONS(1985), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1985), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1985), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1985), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1985), - [aux_sym_unquoted_token1] = ACTIONS(1983), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1985), + [aux_sym_cell_path_repeat1] = STATE(1547), + [sym__newline] = ACTIONS(1835), + [anon_sym_SEMI] = ACTIONS(1835), + [anon_sym_PIPE] = ACTIONS(1835), + [anon_sym_err_GT_PIPE] = ACTIONS(1835), + [anon_sym_out_GT_PIPE] = ACTIONS(1835), + [anon_sym_e_GT_PIPE] = ACTIONS(1835), + [anon_sym_o_GT_PIPE] = ACTIONS(1835), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1835), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1835), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1835), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_LPAREN] = ACTIONS(1835), + [anon_sym_RPAREN] = ACTIONS(1835), + [anon_sym_DOLLAR] = ACTIONS(1833), + [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_DASH2] = ACTIONS(1833), + [anon_sym_LBRACE] = ACTIONS(1835), + [anon_sym_RBRACE] = ACTIONS(1835), + [anon_sym_DOT_DOT] = ACTIONS(1833), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1835), + [anon_sym_DOT_DOT_LT] = ACTIONS(1835), + [anon_sym_null] = ACTIONS(1835), + [anon_sym_true] = ACTIONS(1835), + [anon_sym_false] = ACTIONS(1835), + [aux_sym__val_number_decimal_token1] = ACTIONS(1833), + [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), + [aux_sym__val_number_token4] = ACTIONS(1835), + [aux_sym__val_number_token5] = ACTIONS(1835), + [aux_sym__val_number_token6] = ACTIONS(1835), + [anon_sym_0b] = ACTIONS(1833), + [anon_sym_0o] = ACTIONS(1833), + [anon_sym_0x] = ACTIONS(1833), + [sym_val_date] = ACTIONS(1835), + [anon_sym_DQUOTE] = ACTIONS(1835), + [sym__str_single_quotes] = ACTIONS(1835), + [sym__str_back_ticks] = ACTIONS(1835), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1835), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1835), + [anon_sym_DOT2] = ACTIONS(4760), + [anon_sym_err_GT] = ACTIONS(1833), + [anon_sym_out_GT] = ACTIONS(1833), + [anon_sym_e_GT] = ACTIONS(1833), + [anon_sym_o_GT] = ACTIONS(1833), + [anon_sym_err_PLUSout_GT] = ACTIONS(1833), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1833), + [anon_sym_o_PLUSe_GT] = ACTIONS(1833), + [anon_sym_e_PLUSo_GT] = ACTIONS(1833), + [anon_sym_err_GT_GT] = ACTIONS(1835), + [anon_sym_out_GT_GT] = ACTIONS(1835), + [anon_sym_e_GT_GT] = ACTIONS(1835), + [anon_sym_o_GT_GT] = ACTIONS(1835), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1835), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1835), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1835), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1835), + [aux_sym_unquoted_token1] = ACTIONS(1833), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1835), }, [1471] = { - [sym__expr_parenthesized_immediate] = STATE(2121), - [sym__immediate_decimal] = STATE(2082), - [sym_val_variable] = STATE(2121), [sym_comment] = STATE(1471), - [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_DOLLAR] = ACTIONS(4678), - [anon_sym_GT2] = ACTIONS(1461), - [anon_sym_DASH2] = ACTIONS(1461), - [anon_sym_in2] = ACTIONS(1475), - [anon_sym_STAR2] = ACTIONS(1461), - [anon_sym_and2] = ACTIONS(1475), - [anon_sym_xor2] = ACTIONS(1475), - [anon_sym_or2] = ACTIONS(1475), - [anon_sym_not_DASHin2] = ACTIONS(1475), - [anon_sym_starts_DASHwith2] = ACTIONS(1475), - [anon_sym_ends_DASHwith2] = ACTIONS(1475), - [anon_sym_EQ_EQ2] = ACTIONS(1475), - [anon_sym_BANG_EQ2] = ACTIONS(1475), - [anon_sym_LT2] = ACTIONS(1461), - [anon_sym_LT_EQ2] = ACTIONS(1475), - [anon_sym_GT_EQ2] = ACTIONS(1475), - [anon_sym_EQ_TILDE2] = ACTIONS(1475), - [anon_sym_BANG_TILDE2] = ACTIONS(1475), - [anon_sym_LPAREN2] = ACTIONS(4680), - [anon_sym_STAR_STAR2] = ACTIONS(1475), - [anon_sym_PLUS_PLUS2] = ACTIONS(1475), - [anon_sym_SLASH2] = ACTIONS(1461), - [anon_sym_mod2] = ACTIONS(1475), - [anon_sym_SLASH_SLASH2] = ACTIONS(1475), - [anon_sym_PLUS2] = ACTIONS(1461), - [anon_sym_bit_DASHshl2] = ACTIONS(1475), - [anon_sym_bit_DASHshr2] = ACTIONS(1475), - [anon_sym_bit_DASHand2] = ACTIONS(1475), - [anon_sym_bit_DASHxor2] = ACTIONS(1475), - [anon_sym_bit_DASHor2] = ACTIONS(1475), - [anon_sym_DOT] = ACTIONS(4748), - [aux_sym__immediate_decimal_token1] = ACTIONS(4684), - [aux_sym__immediate_decimal_token3] = ACTIONS(4684), - [aux_sym__immediate_decimal_token4] = ACTIONS(4686), - [aux_sym__immediate_decimal_token5] = ACTIONS(4688), - [anon_sym_err_GT] = ACTIONS(1461), - [anon_sym_out_GT] = ACTIONS(1461), - [anon_sym_e_GT] = ACTIONS(1461), - [anon_sym_o_GT] = ACTIONS(1461), - [anon_sym_err_PLUSout_GT] = ACTIONS(1461), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1461), - [anon_sym_o_PLUSe_GT] = ACTIONS(1461), - [anon_sym_e_PLUSo_GT] = ACTIONS(1461), - [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(251), + [sym__newline] = ACTIONS(984), + [anon_sym_SEMI] = ACTIONS(984), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_err_GT_PIPE] = ACTIONS(984), + [anon_sym_out_GT_PIPE] = ACTIONS(984), + [anon_sym_e_GT_PIPE] = ACTIONS(984), + [anon_sym_o_GT_PIPE] = ACTIONS(984), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(984), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(984), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(984), + [anon_sym_LBRACK] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(984), + [anon_sym_RPAREN] = ACTIONS(984), + [anon_sym_DOLLAR] = ACTIONS(982), + [anon_sym_DASH_DASH] = ACTIONS(984), + [anon_sym_DASH2] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_RBRACE] = ACTIONS(984), + [anon_sym_DOT_DOT] = ACTIONS(982), + [anon_sym_DOT_DOT2] = ACTIONS(982), + [anon_sym_DOT_DOT_EQ] = ACTIONS(982), + [anon_sym_DOT_DOT_LT] = ACTIONS(982), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(984), + [anon_sym_DOT_DOT_LT2] = ACTIONS(984), + [anon_sym_null] = ACTIONS(984), + [anon_sym_true] = ACTIONS(984), + [anon_sym_false] = ACTIONS(984), + [aux_sym__val_number_decimal_token1] = ACTIONS(982), + [aux_sym__val_number_decimal_token2] = ACTIONS(984), + [aux_sym__val_number_decimal_token3] = ACTIONS(984), + [aux_sym__val_number_decimal_token4] = ACTIONS(984), + [aux_sym__val_number_token1] = ACTIONS(984), + [aux_sym__val_number_token2] = ACTIONS(984), + [aux_sym__val_number_token3] = ACTIONS(984), + [aux_sym__val_number_token4] = ACTIONS(984), + [aux_sym__val_number_token5] = ACTIONS(984), + [aux_sym__val_number_token6] = ACTIONS(984), + [anon_sym_0b] = ACTIONS(982), + [anon_sym_0o] = ACTIONS(982), + [anon_sym_0x] = ACTIONS(982), + [sym_val_date] = ACTIONS(984), + [anon_sym_DQUOTE] = ACTIONS(984), + [sym__str_single_quotes] = ACTIONS(984), + [sym__str_back_ticks] = ACTIONS(984), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(984), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(984), + [anon_sym_DOT2] = ACTIONS(982), + [anon_sym_err_GT] = ACTIONS(982), + [anon_sym_out_GT] = ACTIONS(982), + [anon_sym_e_GT] = ACTIONS(982), + [anon_sym_o_GT] = ACTIONS(982), + [anon_sym_err_PLUSout_GT] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT] = ACTIONS(982), + [anon_sym_o_PLUSe_GT] = ACTIONS(982), + [anon_sym_e_PLUSo_GT] = ACTIONS(982), + [anon_sym_err_GT_GT] = ACTIONS(984), + [anon_sym_out_GT_GT] = ACTIONS(984), + [anon_sym_e_GT_GT] = ACTIONS(984), + [anon_sym_o_GT_GT] = ACTIONS(984), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(984), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(984), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(984), + [aux_sym_unquoted_token1] = ACTIONS(982), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(984), }, [1472] = { [sym_comment] = STATE(1472), - [sym__newline] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(994), - [anon_sym_err_GT_PIPE] = ACTIONS(994), - [anon_sym_out_GT_PIPE] = ACTIONS(994), - [anon_sym_e_GT_PIPE] = ACTIONS(994), - [anon_sym_o_GT_PIPE] = ACTIONS(994), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_LPAREN] = ACTIONS(994), - [anon_sym_RPAREN] = ACTIONS(994), - [anon_sym_DOLLAR] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(994), - [anon_sym_DASH2] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(994), - [anon_sym_RBRACE] = ACTIONS(994), - [anon_sym_DOT_DOT] = ACTIONS(992), - [anon_sym_DOT_DOT2] = ACTIONS(992), - [anon_sym_DOT_DOT_EQ] = ACTIONS(992), - [anon_sym_DOT_DOT_LT] = ACTIONS(992), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(994), - [anon_sym_DOT_DOT_LT2] = ACTIONS(994), - [anon_sym_null] = ACTIONS(994), - [anon_sym_true] = ACTIONS(994), - [anon_sym_false] = ACTIONS(994), - [aux_sym__val_number_decimal_token1] = ACTIONS(992), - [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), - [aux_sym__val_number_token4] = ACTIONS(994), - [aux_sym__val_number_token5] = ACTIONS(994), - [aux_sym__val_number_token6] = ACTIONS(994), - [anon_sym_0b] = ACTIONS(992), - [anon_sym_0o] = ACTIONS(992), - [anon_sym_0x] = ACTIONS(992), - [sym_val_date] = ACTIONS(994), - [anon_sym_DQUOTE] = ACTIONS(994), - [sym__str_single_quotes] = ACTIONS(994), - [sym__str_back_ticks] = ACTIONS(994), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(994), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(994), - [anon_sym_DOT2] = ACTIONS(992), - [anon_sym_err_GT] = ACTIONS(992), - [anon_sym_out_GT] = ACTIONS(992), - [anon_sym_e_GT] = ACTIONS(992), - [anon_sym_o_GT] = ACTIONS(992), - [anon_sym_err_PLUSout_GT] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT] = ACTIONS(992), - [anon_sym_o_PLUSe_GT] = ACTIONS(992), - [anon_sym_e_PLUSo_GT] = ACTIONS(992), - [anon_sym_err_GT_GT] = ACTIONS(994), - [anon_sym_out_GT_GT] = ACTIONS(994), - [anon_sym_e_GT_GT] = ACTIONS(994), - [anon_sym_o_GT_GT] = ACTIONS(994), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), - [aux_sym_unquoted_token1] = ACTIONS(992), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(994), + [ts_builtin_sym_end] = ACTIONS(1695), + [sym__newline] = ACTIONS(1695), + [anon_sym_SEMI] = ACTIONS(1695), + [anon_sym_PIPE] = ACTIONS(1695), + [anon_sym_err_GT_PIPE] = ACTIONS(1695), + [anon_sym_out_GT_PIPE] = ACTIONS(1695), + [anon_sym_e_GT_PIPE] = ACTIONS(1695), + [anon_sym_o_GT_PIPE] = ACTIONS(1695), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1695), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1695), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1695), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1695), + [anon_sym_LBRACK] = ACTIONS(1695), + [anon_sym_LPAREN] = ACTIONS(1695), + [anon_sym_DOLLAR] = ACTIONS(1693), + [anon_sym_DASH_DASH] = ACTIONS(1695), + [anon_sym_DASH2] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1695), + [anon_sym_DOT_DOT] = ACTIONS(1693), + [anon_sym_DOT_DOT2] = ACTIONS(1693), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1693), + [anon_sym_DOT_DOT_LT] = ACTIONS(1693), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1695), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1695), + [aux_sym__immediate_decimal_token1] = ACTIONS(4780), + [aux_sym__immediate_decimal_token2] = ACTIONS(4782), + [anon_sym_null] = ACTIONS(1695), + [anon_sym_true] = ACTIONS(1695), + [anon_sym_false] = ACTIONS(1695), + [aux_sym__val_number_decimal_token1] = ACTIONS(1693), + [aux_sym__val_number_decimal_token2] = ACTIONS(1695), + [aux_sym__val_number_decimal_token3] = ACTIONS(1695), + [aux_sym__val_number_decimal_token4] = ACTIONS(1695), + [aux_sym__val_number_token1] = ACTIONS(1695), + [aux_sym__val_number_token2] = ACTIONS(1695), + [aux_sym__val_number_token3] = ACTIONS(1695), + [aux_sym__val_number_token4] = ACTIONS(1695), + [aux_sym__val_number_token5] = ACTIONS(1695), + [aux_sym__val_number_token6] = ACTIONS(1695), + [anon_sym_0b] = ACTIONS(1693), + [anon_sym_0o] = ACTIONS(1693), + [anon_sym_0x] = ACTIONS(1693), + [sym_val_date] = ACTIONS(1695), + [anon_sym_DQUOTE] = ACTIONS(1695), + [sym__str_single_quotes] = ACTIONS(1695), + [sym__str_back_ticks] = ACTIONS(1695), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1695), + [anon_sym_err_GT] = ACTIONS(1693), + [anon_sym_out_GT] = ACTIONS(1693), + [anon_sym_e_GT] = ACTIONS(1693), + [anon_sym_o_GT] = ACTIONS(1693), + [anon_sym_err_PLUSout_GT] = ACTIONS(1693), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1693), + [anon_sym_o_PLUSe_GT] = ACTIONS(1693), + [anon_sym_e_PLUSo_GT] = ACTIONS(1693), + [anon_sym_err_GT_GT] = ACTIONS(1695), + [anon_sym_out_GT_GT] = ACTIONS(1695), + [anon_sym_e_GT_GT] = ACTIONS(1695), + [anon_sym_o_GT_GT] = ACTIONS(1695), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1695), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1695), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1695), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1695), + [aux_sym_unquoted_token1] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1695), }, [1473] = { - [sym_cell_path] = STATE(1754), - [sym_path] = STATE(1680), + [sym_cell_path] = STATE(1826), + [sym_path] = STATE(1428), [sym_comment] = STATE(1473), - [aux_sym_cell_path_repeat1] = STATE(1535), - [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_DASH2] = ACTIONS(1913), - [anon_sym_LBRACE] = ACTIONS(1915), - [anon_sym_RBRACE] = ACTIONS(1915), - [anon_sym_DOT_DOT] = ACTIONS(1913), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1915), - [anon_sym_DOT_DOT_LT] = ACTIONS(1915), - [anon_sym_null] = ACTIONS(1915), - [anon_sym_true] = ACTIONS(1915), - [anon_sym_false] = ACTIONS(1915), - [aux_sym__val_number_decimal_token1] = ACTIONS(1913), - [aux_sym__val_number_decimal_token2] = ACTIONS(1915), - [aux_sym__val_number_decimal_token3] = ACTIONS(1915), - [aux_sym__val_number_decimal_token4] = ACTIONS(1915), - [aux_sym__val_number_token1] = ACTIONS(1915), - [aux_sym__val_number_token2] = ACTIONS(1915), - [aux_sym__val_number_token3] = ACTIONS(1915), - [aux_sym__val_number_token4] = ACTIONS(1915), - [aux_sym__val_number_token5] = ACTIONS(1915), - [aux_sym__val_number_token6] = 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_DOT2] = ACTIONS(4696), - [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(251), - [sym_raw_string_begin] = ACTIONS(1915), - }, - [1474] = { - [sym__expr_parenthesized_immediate] = STATE(2507), - [sym__immediate_decimal] = STATE(2307), - [sym_val_variable] = STATE(2507), - [sym_comment] = STATE(1474), - [ts_builtin_sym_end] = ACTIONS(1538), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_DOLLAR] = ACTIONS(4678), - [anon_sym_GT2] = ACTIONS(1536), - [anon_sym_DASH2] = ACTIONS(1536), - [anon_sym_in2] = ACTIONS(1538), - [anon_sym_STAR2] = ACTIONS(1536), - [anon_sym_and2] = ACTIONS(1538), - [anon_sym_xor2] = ACTIONS(1538), - [anon_sym_or2] = ACTIONS(1538), - [anon_sym_not_DASHin2] = ACTIONS(1538), - [anon_sym_starts_DASHwith2] = ACTIONS(1538), - [anon_sym_ends_DASHwith2] = ACTIONS(1538), - [anon_sym_EQ_EQ2] = ACTIONS(1538), - [anon_sym_BANG_EQ2] = ACTIONS(1538), - [anon_sym_LT2] = ACTIONS(1536), - [anon_sym_LT_EQ2] = ACTIONS(1538), - [anon_sym_GT_EQ2] = ACTIONS(1538), - [anon_sym_EQ_TILDE2] = ACTIONS(1538), - [anon_sym_BANG_TILDE2] = ACTIONS(1538), - [anon_sym_LPAREN2] = ACTIONS(4680), - [anon_sym_STAR_STAR2] = ACTIONS(1538), - [anon_sym_PLUS_PLUS2] = ACTIONS(1538), - [anon_sym_SLASH2] = ACTIONS(1536), - [anon_sym_mod2] = ACTIONS(1538), - [anon_sym_SLASH_SLASH2] = ACTIONS(1538), - [anon_sym_PLUS2] = ACTIONS(1536), - [anon_sym_bit_DASHshl2] = ACTIONS(1538), - [anon_sym_bit_DASHshr2] = ACTIONS(1538), - [anon_sym_bit_DASHand2] = ACTIONS(1538), - [anon_sym_bit_DASHxor2] = ACTIONS(1538), - [anon_sym_bit_DASHor2] = ACTIONS(1538), - [aux_sym__immediate_decimal_token1] = ACTIONS(4734), - [aux_sym__immediate_decimal_token3] = ACTIONS(4734), - [aux_sym__immediate_decimal_token4] = ACTIONS(4736), - [aux_sym__immediate_decimal_token5] = ACTIONS(4738), - [anon_sym_err_GT] = ACTIONS(1536), - [anon_sym_out_GT] = ACTIONS(1536), - [anon_sym_e_GT] = ACTIONS(1536), - [anon_sym_o_GT] = ACTIONS(1536), - [anon_sym_err_PLUSout_GT] = ACTIONS(1536), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), - [anon_sym_o_PLUSe_GT] = ACTIONS(1536), - [anon_sym_e_PLUSo_GT] = ACTIONS(1536), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), - [aux_sym_unquoted_token2] = ACTIONS(1540), - [anon_sym_POUND] = ACTIONS(251), - }, - [1475] = { - [sym_comment] = STATE(1475), - [ts_builtin_sym_end] = 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_DASH2] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(982), - [anon_sym_DOT_DOT] = ACTIONS(980), - [anon_sym_QMARK2] = ACTIONS(982), - [anon_sym_DOT_DOT2] = 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), - [anon_sym_null] = ACTIONS(982), - [anon_sym_true] = ACTIONS(982), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(982), - [aux_sym__val_number_token5] = ACTIONS(982), - [aux_sym__val_number_token6] = 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_DOT2] = 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), - [aux_sym_unquoted_token1] = ACTIONS(980), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(982), - }, - [1476] = { - [sym_cell_path] = STATE(1897), - [sym_path] = STATE(1749), - [sym_comment] = STATE(1476), - [aux_sym_cell_path_repeat1] = STATE(1549), - [ts_builtin_sym_end] = 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_DASH2] = ACTIONS(1855), - [anon_sym_LBRACE] = ACTIONS(1857), - [anon_sym_DOT_DOT] = ACTIONS(1855), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1857), - [anon_sym_DOT_DOT_LT] = ACTIONS(1857), - [anon_sym_null] = ACTIONS(1857), - [anon_sym_true] = ACTIONS(1857), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(1857), - [aux_sym__val_number_token5] = ACTIONS(1857), - [aux_sym__val_number_token6] = 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_DOT2] = ACTIONS(4750), - [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(251), - [sym_raw_string_begin] = ACTIONS(1857), - }, - [1477] = { - [sym_comment] = STATE(1477), - [ts_builtin_sym_end] = ACTIONS(1757), - [sym__newline] = ACTIONS(1757), - [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_DOLLAR] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1755), - [anon_sym_DOT_DOT_LT] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(4706), - [anon_sym_null] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = 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_err_GT] = ACTIONS(1755), - [anon_sym_out_GT] = ACTIONS(1755), - [anon_sym_e_GT] = ACTIONS(1755), - [anon_sym_o_GT] = ACTIONS(1755), - [anon_sym_err_PLUSout_GT] = ACTIONS(1755), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), - [anon_sym_o_PLUSe_GT] = ACTIONS(1755), - [anon_sym_e_PLUSo_GT] = ACTIONS(1755), - [anon_sym_err_GT_GT] = ACTIONS(1757), - [anon_sym_out_GT_GT] = ACTIONS(1757), - [anon_sym_e_GT_GT] = ACTIONS(1757), - [anon_sym_o_GT_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), - [aux_sym_unquoted_token1] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1757), - }, - [1478] = { - [sym_comment] = STATE(1478), - [ts_builtin_sym_end] = ACTIONS(1785), - [sym__newline] = ACTIONS(1785), - [anon_sym_SEMI] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(1785), - [anon_sym_err_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_GT_PIPE] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1783), - [anon_sym_DOT_DOT2] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1783), - [anon_sym_DOT_DOT_LT] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1785), - [aux_sym__immediate_decimal_token2] = ACTIONS(4752), - [anon_sym_null] = ACTIONS(1785), - [anon_sym_true] = ACTIONS(1785), - [anon_sym_false] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(1785), - [aux_sym__val_number_token2] = ACTIONS(1785), - [aux_sym__val_number_token3] = ACTIONS(1785), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_0b] = ACTIONS(1783), - [anon_sym_0o] = ACTIONS(1783), - [anon_sym_0x] = ACTIONS(1783), - [sym_val_date] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1785), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1785), - [anon_sym_err_GT] = ACTIONS(1783), - [anon_sym_out_GT] = ACTIONS(1783), - [anon_sym_e_GT] = ACTIONS(1783), - [anon_sym_o_GT] = ACTIONS(1783), - [anon_sym_err_PLUSout_GT] = ACTIONS(1783), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1783), - [anon_sym_o_PLUSe_GT] = ACTIONS(1783), - [anon_sym_e_PLUSo_GT] = ACTIONS(1783), - [anon_sym_err_GT_GT] = ACTIONS(1785), - [anon_sym_out_GT_GT] = ACTIONS(1785), - [anon_sym_e_GT_GT] = ACTIONS(1785), - [anon_sym_o_GT_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1785), - [aux_sym_unquoted_token1] = ACTIONS(1783), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1785), - }, - [1479] = { - [sym_comment] = STATE(1479), - [ts_builtin_sym_end] = ACTIONS(1552), - [sym__newline] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1552), - [anon_sym_PIPE] = ACTIONS(1552), - [anon_sym_err_GT_PIPE] = ACTIONS(1552), - [anon_sym_out_GT_PIPE] = ACTIONS(1552), - [anon_sym_e_GT_PIPE] = ACTIONS(1552), - [anon_sym_o_GT_PIPE] = ACTIONS(1552), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1552), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1552), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1552), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1552), - [anon_sym_GT2] = ACTIONS(1550), - [anon_sym_DASH2] = ACTIONS(1552), - [anon_sym_in2] = ACTIONS(1552), - [anon_sym_STAR2] = ACTIONS(1550), - [anon_sym_and2] = ACTIONS(1552), - [anon_sym_xor2] = ACTIONS(1552), - [anon_sym_or2] = ACTIONS(1552), - [anon_sym_not_DASHin2] = ACTIONS(1552), - [anon_sym_starts_DASHwith2] = ACTIONS(1552), - [anon_sym_ends_DASHwith2] = ACTIONS(1552), - [anon_sym_EQ_EQ2] = ACTIONS(1552), - [anon_sym_BANG_EQ2] = ACTIONS(1552), - [anon_sym_LT2] = ACTIONS(1550), - [anon_sym_LT_EQ2] = ACTIONS(1552), - [anon_sym_GT_EQ2] = ACTIONS(1552), - [anon_sym_EQ_TILDE2] = ACTIONS(1552), - [anon_sym_BANG_TILDE2] = ACTIONS(1552), - [anon_sym_LPAREN2] = ACTIONS(1552), - [anon_sym_STAR_STAR2] = ACTIONS(1552), - [anon_sym_PLUS_PLUS2] = ACTIONS(1552), - [anon_sym_SLASH2] = ACTIONS(1550), - [anon_sym_mod2] = ACTIONS(1552), - [anon_sym_SLASH_SLASH2] = ACTIONS(1552), - [anon_sym_PLUS2] = ACTIONS(1550), - [anon_sym_bit_DASHshl2] = ACTIONS(1552), - [anon_sym_bit_DASHshr2] = ACTIONS(1552), - [anon_sym_bit_DASHand2] = ACTIONS(1552), - [anon_sym_bit_DASHxor2] = ACTIONS(1552), - [anon_sym_bit_DASHor2] = ACTIONS(1552), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT] = ACTIONS(4754), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [aux_sym__immediate_decimal_token2] = ACTIONS(4756), - [sym_filesize_unit] = ACTIONS(1550), - [sym_duration_unit] = ACTIONS(1552), - [anon_sym_err_GT] = ACTIONS(1550), - [anon_sym_out_GT] = ACTIONS(1550), - [anon_sym_e_GT] = ACTIONS(1550), - [anon_sym_o_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT] = ACTIONS(1550), - [anon_sym_err_GT_GT] = ACTIONS(1552), - [anon_sym_out_GT_GT] = ACTIONS(1552), - [anon_sym_e_GT_GT] = ACTIONS(1552), - [anon_sym_o_GT_GT] = ACTIONS(1552), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1552), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1552), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1552), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1552), - [aux_sym_unquoted_token2] = ACTIONS(1550), - [anon_sym_POUND] = ACTIONS(251), - }, - [1480] = { - [sym_comment] = STATE(1480), - [sym__newline] = ACTIONS(2049), - [anon_sym_SEMI] = ACTIONS(2049), - [anon_sym_PIPE] = ACTIONS(2049), - [anon_sym_err_GT_PIPE] = ACTIONS(2049), - [anon_sym_out_GT_PIPE] = ACTIONS(2049), - [anon_sym_e_GT_PIPE] = ACTIONS(2049), - [anon_sym_o_GT_PIPE] = ACTIONS(2049), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2049), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2049), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2049), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2049), - [anon_sym_LBRACK] = ACTIONS(2049), - [anon_sym_LPAREN] = ACTIONS(2049), - [anon_sym_RPAREN] = ACTIONS(2049), - [anon_sym_DOLLAR] = ACTIONS(2043), - [anon_sym_DASH_DASH] = ACTIONS(2049), - [anon_sym_DASH2] = ACTIONS(2043), - [anon_sym_LBRACE] = ACTIONS(2049), - [anon_sym_RBRACE] = ACTIONS(2049), - [anon_sym_DOT_DOT] = ACTIONS(2043), - [anon_sym_DOT_DOT2] = ACTIONS(4758), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2043), - [anon_sym_DOT_DOT_LT] = ACTIONS(2043), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4760), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4760), - [anon_sym_null] = ACTIONS(2049), - [anon_sym_true] = ACTIONS(2049), - [anon_sym_false] = ACTIONS(2049), - [aux_sym__val_number_decimal_token1] = ACTIONS(2043), - [aux_sym__val_number_decimal_token2] = ACTIONS(2049), - [aux_sym__val_number_decimal_token3] = ACTIONS(2049), - [aux_sym__val_number_decimal_token4] = ACTIONS(2049), - [aux_sym__val_number_token1] = ACTIONS(2049), - [aux_sym__val_number_token2] = ACTIONS(2049), - [aux_sym__val_number_token3] = ACTIONS(2049), - [aux_sym__val_number_token4] = ACTIONS(2049), - [aux_sym__val_number_token5] = ACTIONS(2049), - [aux_sym__val_number_token6] = ACTIONS(2049), - [anon_sym_0b] = ACTIONS(2043), - [anon_sym_0o] = ACTIONS(2043), - [anon_sym_0x] = ACTIONS(2043), - [sym_val_date] = ACTIONS(2049), - [anon_sym_DQUOTE] = ACTIONS(2049), - [sym__str_single_quotes] = ACTIONS(2049), - [sym__str_back_ticks] = ACTIONS(2049), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2049), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2049), - [anon_sym_err_GT] = ACTIONS(2043), - [anon_sym_out_GT] = ACTIONS(2043), - [anon_sym_e_GT] = ACTIONS(2043), - [anon_sym_o_GT] = ACTIONS(2043), - [anon_sym_err_PLUSout_GT] = ACTIONS(2043), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2043), - [anon_sym_o_PLUSe_GT] = ACTIONS(2043), - [anon_sym_e_PLUSo_GT] = ACTIONS(2043), - [anon_sym_err_GT_GT] = ACTIONS(2049), - [anon_sym_out_GT_GT] = ACTIONS(2049), - [anon_sym_e_GT_GT] = ACTIONS(2049), - [anon_sym_o_GT_GT] = ACTIONS(2049), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2049), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2049), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2049), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2049), - [aux_sym_unquoted_token1] = ACTIONS(2043), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2049), - }, - [1481] = { - [sym_comment] = STATE(1481), - [ts_builtin_sym_end] = ACTIONS(1544), - [sym__newline] = ACTIONS(1544), - [anon_sym_SEMI] = ACTIONS(1544), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_err_GT_PIPE] = ACTIONS(1544), - [anon_sym_out_GT_PIPE] = ACTIONS(1544), - [anon_sym_e_GT_PIPE] = ACTIONS(1544), - [anon_sym_o_GT_PIPE] = ACTIONS(1544), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1544), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1544), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1544), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1544), - [anon_sym_GT2] = ACTIONS(1542), - [anon_sym_DASH2] = ACTIONS(1544), - [anon_sym_in2] = ACTIONS(1544), - [anon_sym_STAR2] = ACTIONS(1542), - [anon_sym_and2] = ACTIONS(1544), - [anon_sym_xor2] = ACTIONS(1544), - [anon_sym_or2] = ACTIONS(1544), - [anon_sym_not_DASHin2] = ACTIONS(1544), - [anon_sym_starts_DASHwith2] = ACTIONS(1544), - [anon_sym_ends_DASHwith2] = ACTIONS(1544), - [anon_sym_EQ_EQ2] = ACTIONS(1544), - [anon_sym_BANG_EQ2] = ACTIONS(1544), - [anon_sym_LT2] = ACTIONS(1542), - [anon_sym_LT_EQ2] = ACTIONS(1544), - [anon_sym_GT_EQ2] = ACTIONS(1544), - [anon_sym_EQ_TILDE2] = ACTIONS(1544), - [anon_sym_BANG_TILDE2] = ACTIONS(1544), - [anon_sym_LPAREN2] = ACTIONS(1544), - [anon_sym_STAR_STAR2] = ACTIONS(1544), - [anon_sym_PLUS_PLUS2] = ACTIONS(1544), - [anon_sym_SLASH2] = ACTIONS(1542), - [anon_sym_mod2] = ACTIONS(1544), - [anon_sym_SLASH_SLASH2] = ACTIONS(1544), - [anon_sym_PLUS2] = ACTIONS(1542), - [anon_sym_bit_DASHshl2] = ACTIONS(1544), - [anon_sym_bit_DASHshr2] = ACTIONS(1544), - [anon_sym_bit_DASHand2] = ACTIONS(1544), - [anon_sym_bit_DASHxor2] = ACTIONS(1544), - [anon_sym_bit_DASHor2] = ACTIONS(1544), - [anon_sym_DOT_DOT2] = ACTIONS(1542), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1544), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1544), - [aux_sym__immediate_decimal_token1] = ACTIONS(4762), - [aux_sym__immediate_decimal_token2] = ACTIONS(4764), - [sym_filesize_unit] = ACTIONS(1542), - [sym_duration_unit] = ACTIONS(1544), - [anon_sym_err_GT] = ACTIONS(1542), - [anon_sym_out_GT] = ACTIONS(1542), - [anon_sym_e_GT] = ACTIONS(1542), - [anon_sym_o_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT] = ACTIONS(1542), - [anon_sym_err_GT_GT] = ACTIONS(1544), - [anon_sym_out_GT_GT] = ACTIONS(1544), - [anon_sym_e_GT_GT] = ACTIONS(1544), - [anon_sym_o_GT_GT] = ACTIONS(1544), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1544), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1544), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1544), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1544), - [aux_sym_unquoted_token2] = ACTIONS(1542), - [anon_sym_POUND] = ACTIONS(251), - }, - [1482] = { - [sym_comment] = STATE(1482), - [ts_builtin_sym_end] = ACTIONS(1713), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1713), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_DOT_DOT] = ACTIONS(1711), - [anon_sym_LPAREN2] = ACTIONS(1713), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT] = ACTIONS(1713), - [aux_sym__immediate_decimal_token1] = ACTIONS(4766), - [aux_sym__immediate_decimal_token2] = ACTIONS(4768), - [anon_sym_null] = ACTIONS(1713), - [anon_sym_true] = ACTIONS(1713), - [anon_sym_false] = ACTIONS(1713), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1713), - [aux_sym__val_number_decimal_token3] = ACTIONS(1713), - [aux_sym__val_number_decimal_token4] = ACTIONS(1713), - [aux_sym__val_number_token1] = ACTIONS(1713), - [aux_sym__val_number_token2] = ACTIONS(1713), - [aux_sym__val_number_token3] = ACTIONS(1713), - [aux_sym__val_number_token4] = ACTIONS(1713), - [aux_sym__val_number_token5] = ACTIONS(1713), - [aux_sym__val_number_token6] = ACTIONS(1713), - [anon_sym_0b] = ACTIONS(1711), - [anon_sym_0o] = ACTIONS(1711), - [anon_sym_0x] = ACTIONS(1711), - [sym_val_date] = ACTIONS(1713), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym__str_single_quotes] = ACTIONS(1713), - [sym__str_back_ticks] = ACTIONS(1713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1713), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [aux_sym_unquoted_token1] = ACTIONS(1711), - [aux_sym_unquoted_token2] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1713), - }, - [1483] = { - [sym_comment] = STATE(1483), - [sym__newline] = ACTIONS(1757), - [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(1755), - [anon_sym_RPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(4700), - [anon_sym_null] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = 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_err_GT] = ACTIONS(1755), - [anon_sym_out_GT] = ACTIONS(1755), - [anon_sym_e_GT] = ACTIONS(1755), - [anon_sym_o_GT] = ACTIONS(1755), - [anon_sym_err_PLUSout_GT] = ACTIONS(1755), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), - [anon_sym_o_PLUSe_GT] = ACTIONS(1755), - [anon_sym_e_PLUSo_GT] = ACTIONS(1755), - [anon_sym_err_GT_GT] = ACTIONS(1757), - [anon_sym_out_GT_GT] = ACTIONS(1757), - [anon_sym_e_GT_GT] = ACTIONS(1757), - [anon_sym_o_GT_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), - [aux_sym_unquoted_token1] = ACTIONS(1755), - [aux_sym_unquoted_token2] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1757), - }, - [1484] = { - [sym_comment] = STATE(1484), - [sym__newline] = ACTIONS(1785), - [anon_sym_SEMI] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(1785), - [anon_sym_err_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_GT_PIPE] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_RPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1783), - [anon_sym_LPAREN2] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT] = ACTIONS(1785), - [aux_sym__immediate_decimal_token2] = ACTIONS(4770), - [anon_sym_null] = ACTIONS(1785), - [anon_sym_true] = ACTIONS(1785), - [anon_sym_false] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(1785), - [aux_sym__val_number_token2] = ACTIONS(1785), - [aux_sym__val_number_token3] = ACTIONS(1785), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_0b] = ACTIONS(1783), - [anon_sym_0o] = ACTIONS(1783), - [anon_sym_0x] = ACTIONS(1783), - [sym_val_date] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1785), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1785), - [anon_sym_err_GT] = ACTIONS(1783), - [anon_sym_out_GT] = ACTIONS(1783), - [anon_sym_e_GT] = ACTIONS(1783), - [anon_sym_o_GT] = ACTIONS(1783), - [anon_sym_err_PLUSout_GT] = ACTIONS(1783), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1783), - [anon_sym_o_PLUSe_GT] = ACTIONS(1783), - [anon_sym_e_PLUSo_GT] = ACTIONS(1783), - [anon_sym_err_GT_GT] = ACTIONS(1785), - [anon_sym_out_GT_GT] = ACTIONS(1785), - [anon_sym_e_GT_GT] = ACTIONS(1785), - [anon_sym_o_GT_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1785), - [aux_sym_unquoted_token1] = ACTIONS(1783), - [aux_sym_unquoted_token2] = ACTIONS(1783), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1785), - }, - [1485] = { - [sym__expr_parenthesized_immediate] = STATE(7381), - [sym_comment] = STATE(1485), - [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_RPAREN] = ACTIONS(1650), - [anon_sym_GT2] = ACTIONS(1638), - [anon_sym_DASH2] = ACTIONS(1650), - [anon_sym_in2] = ACTIONS(1650), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_STAR2] = ACTIONS(1638), - [anon_sym_and2] = ACTIONS(1650), - [anon_sym_xor2] = ACTIONS(1650), - [anon_sym_or2] = ACTIONS(1650), - [anon_sym_not_DASHin2] = ACTIONS(1650), - [anon_sym_starts_DASHwith2] = ACTIONS(1650), - [anon_sym_ends_DASHwith2] = ACTIONS(1650), - [anon_sym_EQ_EQ2] = ACTIONS(1650), - [anon_sym_BANG_EQ2] = ACTIONS(1650), - [anon_sym_LT2] = ACTIONS(1638), - [anon_sym_LT_EQ2] = ACTIONS(1650), - [anon_sym_GT_EQ2] = ACTIONS(1650), - [anon_sym_EQ_TILDE2] = ACTIONS(1650), - [anon_sym_BANG_TILDE2] = ACTIONS(1650), - [anon_sym_LPAREN2] = ACTIONS(4181), - [anon_sym_STAR_STAR2] = ACTIONS(1650), - [anon_sym_PLUS_PLUS2] = ACTIONS(1650), - [anon_sym_SLASH2] = ACTIONS(1638), - [anon_sym_mod2] = ACTIONS(1650), - [anon_sym_SLASH_SLASH2] = ACTIONS(1650), - [anon_sym_PLUS2] = ACTIONS(1638), - [anon_sym_bit_DASHshl2] = ACTIONS(1650), - [anon_sym_bit_DASHshr2] = ACTIONS(1650), - [anon_sym_bit_DASHand2] = ACTIONS(1650), - [anon_sym_bit_DASHxor2] = ACTIONS(1650), - [anon_sym_bit_DASHor2] = ACTIONS(1650), - [anon_sym_DOT_DOT2] = ACTIONS(4772), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4774), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4774), - [sym_filesize_unit] = ACTIONS(4776), - [sym_duration_unit] = ACTIONS(4778), - [anon_sym_err_GT] = ACTIONS(1638), - [anon_sym_out_GT] = ACTIONS(1638), - [anon_sym_e_GT] = ACTIONS(1638), - [anon_sym_o_GT] = ACTIONS(1638), - [anon_sym_err_PLUSout_GT] = ACTIONS(1638), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1638), - [anon_sym_o_PLUSe_GT] = ACTIONS(1638), - [anon_sym_e_PLUSo_GT] = ACTIONS(1638), - [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_token2] = ACTIONS(4780), - [anon_sym_POUND] = ACTIONS(251), - }, - [1486] = { - [sym_cell_path] = STATE(1926), - [sym_path] = STATE(1749), - [sym_comment] = STATE(1486), - [aux_sym_cell_path_repeat1] = STATE(1549), - [ts_builtin_sym_end] = ACTIONS(1943), - [sym__newline] = ACTIONS(1943), - [anon_sym_SEMI] = ACTIONS(1943), - [anon_sym_PIPE] = ACTIONS(1943), - [anon_sym_err_GT_PIPE] = ACTIONS(1943), - [anon_sym_out_GT_PIPE] = ACTIONS(1943), - [anon_sym_e_GT_PIPE] = ACTIONS(1943), - [anon_sym_o_GT_PIPE] = ACTIONS(1943), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1943), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1943), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1943), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1943), - [anon_sym_LBRACK] = ACTIONS(1943), - [anon_sym_LPAREN] = ACTIONS(1943), - [anon_sym_DOLLAR] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(1943), - [anon_sym_DASH2] = ACTIONS(1941), - [anon_sym_LBRACE] = ACTIONS(1943), - [anon_sym_DOT_DOT] = ACTIONS(1941), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1943), - [anon_sym_DOT_DOT_LT] = ACTIONS(1943), - [anon_sym_null] = ACTIONS(1943), - [anon_sym_true] = ACTIONS(1943), - [anon_sym_false] = ACTIONS(1943), - [aux_sym__val_number_decimal_token1] = ACTIONS(1941), - [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), - [aux_sym__val_number_token4] = ACTIONS(1943), - [aux_sym__val_number_token5] = ACTIONS(1943), - [aux_sym__val_number_token6] = ACTIONS(1943), - [anon_sym_0b] = ACTIONS(1941), - [anon_sym_0o] = ACTIONS(1941), - [anon_sym_0x] = ACTIONS(1941), - [sym_val_date] = ACTIONS(1943), - [anon_sym_DQUOTE] = ACTIONS(1943), - [sym__str_single_quotes] = ACTIONS(1943), - [sym__str_back_ticks] = ACTIONS(1943), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1943), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1943), - [anon_sym_DOT2] = ACTIONS(4750), - [anon_sym_err_GT] = ACTIONS(1941), - [anon_sym_out_GT] = ACTIONS(1941), - [anon_sym_e_GT] = ACTIONS(1941), - [anon_sym_o_GT] = ACTIONS(1941), - [anon_sym_err_PLUSout_GT] = ACTIONS(1941), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1941), - [anon_sym_o_PLUSe_GT] = ACTIONS(1941), - [anon_sym_e_PLUSo_GT] = ACTIONS(1941), - [anon_sym_err_GT_GT] = ACTIONS(1943), - [anon_sym_out_GT_GT] = ACTIONS(1943), - [anon_sym_e_GT_GT] = ACTIONS(1943), - [anon_sym_o_GT_GT] = ACTIONS(1943), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1943), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1943), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1943), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1943), - [aux_sym_unquoted_token1] = ACTIONS(1941), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1943), - }, - [1487] = { - [sym_comment] = STATE(1487), - [anon_sym_EQ] = ACTIONS(1006), - [anon_sym_PLUS_EQ] = ACTIONS(1008), - [anon_sym_DASH_EQ] = ACTIONS(1008), - [anon_sym_STAR_EQ] = ACTIONS(1008), - [anon_sym_SLASH_EQ] = ACTIONS(1008), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1008), - [sym__newline] = ACTIONS(1012), - [anon_sym_SEMI] = ACTIONS(1012), - [anon_sym_PIPE] = ACTIONS(1012), - [anon_sym_err_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_GT_PIPE] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1012), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_in2] = ACTIONS(1012), - [anon_sym_RBRACE] = ACTIONS(1012), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1012), - [anon_sym_xor2] = ACTIONS(1012), - [anon_sym_or2] = ACTIONS(1012), - [anon_sym_not_DASHin2] = ACTIONS(1012), - [anon_sym_starts_DASHwith2] = ACTIONS(1012), - [anon_sym_ends_DASHwith2] = ACTIONS(1012), - [anon_sym_EQ_EQ2] = ACTIONS(1012), - [anon_sym_BANG_EQ2] = ACTIONS(1012), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1012), - [anon_sym_GT_EQ2] = ACTIONS(1012), - [anon_sym_EQ_TILDE2] = ACTIONS(1012), - [anon_sym_BANG_TILDE2] = ACTIONS(1012), - [anon_sym_STAR_STAR2] = ACTIONS(1012), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1012), - [anon_sym_SLASH_SLASH2] = ACTIONS(1012), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1012), - [anon_sym_bit_DASHshr2] = ACTIONS(1012), - [anon_sym_bit_DASHand2] = ACTIONS(1012), - [anon_sym_bit_DASHxor2] = ACTIONS(1012), - [anon_sym_bit_DASHor2] = ACTIONS(1012), - [anon_sym_DOT_DOT2] = ACTIONS(1024), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1026), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1026), - [anon_sym_err_GT] = ACTIONS(1016), - [anon_sym_out_GT] = ACTIONS(1016), - [anon_sym_e_GT] = ACTIONS(1016), - [anon_sym_o_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT] = ACTIONS(1016), - [anon_sym_err_GT_GT] = ACTIONS(1012), - [anon_sym_out_GT_GT] = ACTIONS(1012), - [anon_sym_e_GT_GT] = ACTIONS(1012), - [anon_sym_o_GT_GT] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1012), - [anon_sym_POUND] = ACTIONS(251), - }, - [1488] = { - [sym_cell_path] = STATE(1933), - [sym_path] = STATE(1749), - [sym_comment] = STATE(1488), - [aux_sym_cell_path_repeat1] = STATE(1549), - [ts_builtin_sym_end] = 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_DASH2] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1893), - [anon_sym_DOT_DOT] = ACTIONS(1891), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1893), - [anon_sym_DOT_DOT_LT] = ACTIONS(1893), - [anon_sym_null] = ACTIONS(1893), - [anon_sym_true] = ACTIONS(1893), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(1893), - [aux_sym__val_number_token5] = ACTIONS(1893), - [aux_sym__val_number_token6] = 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_DOT2] = ACTIONS(4750), - [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(251), - [sym_raw_string_begin] = ACTIONS(1893), - }, - [1489] = { - [sym_cell_path] = STATE(1942), - [sym_path] = STATE(1749), - [sym_comment] = STATE(1489), - [aux_sym_cell_path_repeat1] = STATE(1549), - [ts_builtin_sym_end] = ACTIONS(1911), + [aux_sym_cell_path_repeat1] = STATE(1338), [sym__newline] = ACTIONS(1911), [anon_sym_SEMI] = ACTIONS(1911), [anon_sym_PIPE] = ACTIONS(1911), @@ -222324,38 +221768,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1911), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1911), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1911), - [anon_sym_LBRACK] = ACTIONS(1911), - [anon_sym_LPAREN] = ACTIONS(1911), - [anon_sym_DOLLAR] = ACTIONS(1909), - [anon_sym_DASH_DASH] = ACTIONS(1911), - [anon_sym_DASH2] = ACTIONS(1909), + [anon_sym_RPAREN] = ACTIONS(1911), + [anon_sym_GT2] = ACTIONS(1909), + [anon_sym_DASH2] = ACTIONS(1911), + [anon_sym_in2] = ACTIONS(1911), + [anon_sym_if] = ACTIONS(1911), [anon_sym_LBRACE] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1911), - [anon_sym_DOT_DOT_LT] = ACTIONS(1911), - [anon_sym_null] = ACTIONS(1911), - [anon_sym_true] = ACTIONS(1911), - [anon_sym_false] = ACTIONS(1911), - [aux_sym__val_number_decimal_token1] = ACTIONS(1909), - [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), - [aux_sym__val_number_token4] = ACTIONS(1911), - [aux_sym__val_number_token5] = ACTIONS(1911), - [aux_sym__val_number_token6] = 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_DOT2] = ACTIONS(4750), + [anon_sym_RBRACE] = ACTIONS(1911), + [anon_sym_EQ_GT] = ACTIONS(1911), + [anon_sym_STAR2] = ACTIONS(1909), + [anon_sym_and2] = ACTIONS(1911), + [anon_sym_xor2] = ACTIONS(1911), + [anon_sym_or2] = ACTIONS(1911), + [anon_sym_not_DASHin2] = ACTIONS(1911), + [anon_sym_has2] = ACTIONS(1911), + [anon_sym_not_DASHhas2] = ACTIONS(1911), + [anon_sym_starts_DASHwith2] = ACTIONS(1911), + [anon_sym_ends_DASHwith2] = ACTIONS(1911), + [anon_sym_EQ_EQ2] = ACTIONS(1911), + [anon_sym_BANG_EQ2] = ACTIONS(1911), + [anon_sym_LT2] = ACTIONS(1909), + [anon_sym_LT_EQ2] = ACTIONS(1911), + [anon_sym_GT_EQ2] = ACTIONS(1911), + [anon_sym_EQ_TILDE2] = ACTIONS(1911), + [anon_sym_BANG_TILDE2] = ACTIONS(1911), + [anon_sym_STAR_STAR2] = ACTIONS(1911), + [anon_sym_PLUS_PLUS2] = ACTIONS(1911), + [anon_sym_SLASH2] = ACTIONS(1909), + [anon_sym_mod2] = ACTIONS(1911), + [anon_sym_SLASH_SLASH2] = ACTIONS(1911), + [anon_sym_PLUS2] = ACTIONS(1909), + [anon_sym_bit_DASHshl2] = ACTIONS(1911), + [anon_sym_bit_DASHshr2] = ACTIONS(1911), + [anon_sym_bit_DASHand2] = ACTIONS(1911), + [anon_sym_bit_DASHxor2] = ACTIONS(1911), + [anon_sym_bit_DASHor2] = ACTIONS(1911), + [anon_sym_DOT2] = ACTIONS(4770), [anon_sym_err_GT] = ACTIONS(1909), [anon_sym_out_GT] = ACTIONS(1909), [anon_sym_e_GT] = ACTIONS(1909), @@ -222372,85 +221820,1063 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1911), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1911), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1911), - [aux_sym_unquoted_token1] = ACTIONS(1909), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1911), + [anon_sym_POUND] = ACTIONS(247), }, - [1490] = { - [sym_cell_path] = STATE(1899), - [sym_path] = STATE(1749), - [sym_comment] = STATE(1490), - [aux_sym_cell_path_repeat1] = STATE(1549), - [ts_builtin_sym_end] = 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_DASH2] = ACTIONS(1913), - [anon_sym_LBRACE] = ACTIONS(1915), - [anon_sym_DOT_DOT] = ACTIONS(1913), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1915), - [anon_sym_DOT_DOT_LT] = ACTIONS(1915), - [anon_sym_null] = ACTIONS(1915), - [anon_sym_true] = ACTIONS(1915), - [anon_sym_false] = ACTIONS(1915), - [aux_sym__val_number_decimal_token1] = ACTIONS(1913), - [aux_sym__val_number_decimal_token2] = ACTIONS(1915), - [aux_sym__val_number_decimal_token3] = ACTIONS(1915), - [aux_sym__val_number_decimal_token4] = ACTIONS(1915), - [aux_sym__val_number_token1] = ACTIONS(1915), - [aux_sym__val_number_token2] = ACTIONS(1915), - [aux_sym__val_number_token3] = ACTIONS(1915), - [aux_sym__val_number_token4] = ACTIONS(1915), - [aux_sym__val_number_token5] = ACTIONS(1915), - [aux_sym__val_number_token6] = 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_DOT2] = ACTIONS(4750), - [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(251), - [sym_raw_string_begin] = ACTIONS(1915), + [1474] = { + [sym_comment] = STATE(1474), + [sym__newline] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_err_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_GT_PIPE] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1768), + [anon_sym_RPAREN] = ACTIONS(1768), + [anon_sym_GT2] = ACTIONS(1766), + [anon_sym_DASH2] = ACTIONS(1768), + [anon_sym_in2] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1768), + [anon_sym_RBRACE] = ACTIONS(1768), + [anon_sym_STAR2] = ACTIONS(1766), + [anon_sym_and2] = ACTIONS(1768), + [anon_sym_xor2] = ACTIONS(1768), + [anon_sym_or2] = ACTIONS(1768), + [anon_sym_not_DASHin2] = ACTIONS(1768), + [anon_sym_has2] = ACTIONS(1768), + [anon_sym_not_DASHhas2] = ACTIONS(1768), + [anon_sym_starts_DASHwith2] = ACTIONS(1768), + [anon_sym_ends_DASHwith2] = ACTIONS(1768), + [anon_sym_EQ_EQ2] = ACTIONS(1768), + [anon_sym_BANG_EQ2] = ACTIONS(1768), + [anon_sym_LT2] = ACTIONS(1766), + [anon_sym_LT_EQ2] = ACTIONS(1768), + [anon_sym_GT_EQ2] = ACTIONS(1768), + [anon_sym_EQ_TILDE2] = ACTIONS(1768), + [anon_sym_BANG_TILDE2] = ACTIONS(1768), + [anon_sym_LPAREN2] = ACTIONS(1768), + [anon_sym_STAR_STAR2] = ACTIONS(1768), + [anon_sym_PLUS_PLUS2] = ACTIONS(1768), + [anon_sym_SLASH2] = ACTIONS(1766), + [anon_sym_mod2] = ACTIONS(1768), + [anon_sym_SLASH_SLASH2] = ACTIONS(1768), + [anon_sym_PLUS2] = ACTIONS(1766), + [anon_sym_bit_DASHshl2] = ACTIONS(1768), + [anon_sym_bit_DASHshr2] = ACTIONS(1768), + [anon_sym_bit_DASHand2] = ACTIONS(1768), + [anon_sym_bit_DASHxor2] = ACTIONS(1768), + [anon_sym_bit_DASHor2] = ACTIONS(1768), + [anon_sym_DOT_DOT2] = ACTIONS(1766), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1768), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1768), + [aux_sym__immediate_decimal_token2] = ACTIONS(4784), + [anon_sym_err_GT] = ACTIONS(1766), + [anon_sym_out_GT] = ACTIONS(1766), + [anon_sym_e_GT] = ACTIONS(1766), + [anon_sym_o_GT] = ACTIONS(1766), + [anon_sym_err_PLUSout_GT] = ACTIONS(1766), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1766), + [anon_sym_o_PLUSe_GT] = ACTIONS(1766), + [anon_sym_e_PLUSo_GT] = ACTIONS(1766), + [anon_sym_err_GT_GT] = ACTIONS(1768), + [anon_sym_out_GT_GT] = ACTIONS(1768), + [anon_sym_e_GT_GT] = ACTIONS(1768), + [anon_sym_o_GT_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1768), + [aux_sym_unquoted_token2] = ACTIONS(1766), + [anon_sym_POUND] = ACTIONS(247), }, - [1491] = { - [sym_cell_path] = STATE(1892), - [sym_path] = STATE(1749), - [sym_comment] = STATE(1491), - [aux_sym_cell_path_repeat1] = STATE(1549), - [ts_builtin_sym_end] = ACTIONS(1919), + [1475] = { + [sym_cell_path] = STATE(1918), + [sym_path] = STATE(1700), + [sym_comment] = STATE(1475), + [aux_sym_cell_path_repeat1] = STATE(1547), + [sym__newline] = ACTIONS(1963), + [anon_sym_SEMI] = ACTIONS(1963), + [anon_sym_PIPE] = ACTIONS(1963), + [anon_sym_err_GT_PIPE] = ACTIONS(1963), + [anon_sym_out_GT_PIPE] = ACTIONS(1963), + [anon_sym_e_GT_PIPE] = ACTIONS(1963), + [anon_sym_o_GT_PIPE] = ACTIONS(1963), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1963), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1963), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1963), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1963), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_LPAREN] = ACTIONS(1963), + [anon_sym_RPAREN] = ACTIONS(1963), + [anon_sym_DOLLAR] = ACTIONS(1961), + [anon_sym_DASH_DASH] = ACTIONS(1963), + [anon_sym_DASH2] = ACTIONS(1961), + [anon_sym_LBRACE] = ACTIONS(1963), + [anon_sym_RBRACE] = ACTIONS(1963), + [anon_sym_DOT_DOT] = ACTIONS(1961), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [anon_sym_null] = ACTIONS(1963), + [anon_sym_true] = ACTIONS(1963), + [anon_sym_false] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1963), + [aux_sym__val_number_decimal_token4] = ACTIONS(1963), + [aux_sym__val_number_token1] = ACTIONS(1963), + [aux_sym__val_number_token2] = ACTIONS(1963), + [aux_sym__val_number_token3] = ACTIONS(1963), + [aux_sym__val_number_token4] = ACTIONS(1963), + [aux_sym__val_number_token5] = ACTIONS(1963), + [aux_sym__val_number_token6] = ACTIONS(1963), + [anon_sym_0b] = ACTIONS(1961), + [anon_sym_0o] = ACTIONS(1961), + [anon_sym_0x] = ACTIONS(1961), + [sym_val_date] = ACTIONS(1963), + [anon_sym_DQUOTE] = ACTIONS(1963), + [sym__str_single_quotes] = ACTIONS(1963), + [sym__str_back_ticks] = ACTIONS(1963), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1963), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1963), + [anon_sym_DOT2] = ACTIONS(4760), + [anon_sym_err_GT] = ACTIONS(1961), + [anon_sym_out_GT] = ACTIONS(1961), + [anon_sym_e_GT] = ACTIONS(1961), + [anon_sym_o_GT] = ACTIONS(1961), + [anon_sym_err_PLUSout_GT] = ACTIONS(1961), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1961), + [anon_sym_o_PLUSe_GT] = ACTIONS(1961), + [anon_sym_e_PLUSo_GT] = ACTIONS(1961), + [anon_sym_err_GT_GT] = ACTIONS(1963), + [anon_sym_out_GT_GT] = ACTIONS(1963), + [anon_sym_e_GT_GT] = ACTIONS(1963), + [anon_sym_o_GT_GT] = ACTIONS(1963), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1963), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1963), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1963), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1963), + [aux_sym_unquoted_token1] = ACTIONS(1961), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1963), + }, + [1476] = { + [sym_cell_path] = STATE(1837), + [sym_path] = STATE(1428), + [sym_comment] = STATE(1476), + [aux_sym_cell_path_repeat1] = STATE(1338), + [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_RPAREN] = ACTIONS(1841), + [anon_sym_GT2] = ACTIONS(1839), + [anon_sym_DASH2] = ACTIONS(1841), + [anon_sym_in2] = ACTIONS(1841), + [anon_sym_if] = ACTIONS(1841), + [anon_sym_LBRACE] = ACTIONS(1841), + [anon_sym_RBRACE] = ACTIONS(1841), + [anon_sym_EQ_GT] = ACTIONS(1841), + [anon_sym_STAR2] = ACTIONS(1839), + [anon_sym_and2] = ACTIONS(1841), + [anon_sym_xor2] = ACTIONS(1841), + [anon_sym_or2] = ACTIONS(1841), + [anon_sym_not_DASHin2] = ACTIONS(1841), + [anon_sym_has2] = ACTIONS(1841), + [anon_sym_not_DASHhas2] = ACTIONS(1841), + [anon_sym_starts_DASHwith2] = ACTIONS(1841), + [anon_sym_ends_DASHwith2] = ACTIONS(1841), + [anon_sym_EQ_EQ2] = ACTIONS(1841), + [anon_sym_BANG_EQ2] = ACTIONS(1841), + [anon_sym_LT2] = ACTIONS(1839), + [anon_sym_LT_EQ2] = ACTIONS(1841), + [anon_sym_GT_EQ2] = ACTIONS(1841), + [anon_sym_EQ_TILDE2] = ACTIONS(1841), + [anon_sym_BANG_TILDE2] = ACTIONS(1841), + [anon_sym_STAR_STAR2] = ACTIONS(1841), + [anon_sym_PLUS_PLUS2] = ACTIONS(1841), + [anon_sym_SLASH2] = ACTIONS(1839), + [anon_sym_mod2] = ACTIONS(1841), + [anon_sym_SLASH_SLASH2] = ACTIONS(1841), + [anon_sym_PLUS2] = ACTIONS(1839), + [anon_sym_bit_DASHshl2] = ACTIONS(1841), + [anon_sym_bit_DASHshr2] = ACTIONS(1841), + [anon_sym_bit_DASHand2] = ACTIONS(1841), + [anon_sym_bit_DASHxor2] = ACTIONS(1841), + [anon_sym_bit_DASHor2] = ACTIONS(1841), + [anon_sym_DOT2] = ACTIONS(4770), + [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), + [anon_sym_POUND] = ACTIONS(247), + }, + [1477] = { + [sym_comment] = STATE(1477), + [ts_builtin_sym_end] = ACTIONS(1703), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1703), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_DOT_DOT] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1701), + [anon_sym_DOT_DOT_LT] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [anon_sym_null] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1703), + [aux_sym__val_number_token5] = ACTIONS(1703), + [aux_sym__val_number_token6] = ACTIONS(1703), + [anon_sym_0b] = ACTIONS(1701), + [anon_sym_0o] = ACTIONS(1701), + [anon_sym_0x] = ACTIONS(1701), + [sym_val_date] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [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(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token1] = ACTIONS(1701), + [aux_sym_unquoted_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1703), + }, + [1478] = { + [sym_cell_path] = STATE(1845), + [sym_path] = STATE(1428), + [sym_comment] = STATE(1478), + [aux_sym_cell_path_repeat1] = STATE(1338), + [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_RPAREN] = ACTIONS(1849), + [anon_sym_GT2] = ACTIONS(1847), + [anon_sym_DASH2] = ACTIONS(1849), + [anon_sym_in2] = ACTIONS(1849), + [anon_sym_if] = ACTIONS(1849), + [anon_sym_LBRACE] = ACTIONS(1849), + [anon_sym_RBRACE] = ACTIONS(1849), + [anon_sym_EQ_GT] = ACTIONS(1849), + [anon_sym_STAR2] = ACTIONS(1847), + [anon_sym_and2] = ACTIONS(1849), + [anon_sym_xor2] = ACTIONS(1849), + [anon_sym_or2] = ACTIONS(1849), + [anon_sym_not_DASHin2] = ACTIONS(1849), + [anon_sym_has2] = ACTIONS(1849), + [anon_sym_not_DASHhas2] = ACTIONS(1849), + [anon_sym_starts_DASHwith2] = ACTIONS(1849), + [anon_sym_ends_DASHwith2] = ACTIONS(1849), + [anon_sym_EQ_EQ2] = ACTIONS(1849), + [anon_sym_BANG_EQ2] = ACTIONS(1849), + [anon_sym_LT2] = ACTIONS(1847), + [anon_sym_LT_EQ2] = ACTIONS(1849), + [anon_sym_GT_EQ2] = ACTIONS(1849), + [anon_sym_EQ_TILDE2] = ACTIONS(1849), + [anon_sym_BANG_TILDE2] = ACTIONS(1849), + [anon_sym_STAR_STAR2] = ACTIONS(1849), + [anon_sym_PLUS_PLUS2] = ACTIONS(1849), + [anon_sym_SLASH2] = ACTIONS(1847), + [anon_sym_mod2] = ACTIONS(1849), + [anon_sym_SLASH_SLASH2] = ACTIONS(1849), + [anon_sym_PLUS2] = ACTIONS(1847), + [anon_sym_bit_DASHshl2] = ACTIONS(1849), + [anon_sym_bit_DASHshr2] = ACTIONS(1849), + [anon_sym_bit_DASHand2] = ACTIONS(1849), + [anon_sym_bit_DASHxor2] = ACTIONS(1849), + [anon_sym_bit_DASHor2] = ACTIONS(1849), + [anon_sym_DOT2] = ACTIONS(4770), + [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), + [anon_sym_POUND] = ACTIONS(247), + }, + [1479] = { + [sym_cell_path] = STATE(1847), + [sym_path] = STATE(1428), + [sym_comment] = STATE(1479), + [aux_sym_cell_path_repeat1] = STATE(1338), + [sym__newline] = ACTIONS(1855), + [anon_sym_SEMI] = ACTIONS(1855), + [anon_sym_PIPE] = ACTIONS(1855), + [anon_sym_err_GT_PIPE] = ACTIONS(1855), + [anon_sym_out_GT_PIPE] = ACTIONS(1855), + [anon_sym_e_GT_PIPE] = ACTIONS(1855), + [anon_sym_o_GT_PIPE] = ACTIONS(1855), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1855), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1855), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1855), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1855), + [anon_sym_RPAREN] = ACTIONS(1855), + [anon_sym_GT2] = ACTIONS(1853), + [anon_sym_DASH2] = ACTIONS(1855), + [anon_sym_in2] = ACTIONS(1855), + [anon_sym_if] = ACTIONS(1855), + [anon_sym_LBRACE] = ACTIONS(1855), + [anon_sym_RBRACE] = ACTIONS(1855), + [anon_sym_EQ_GT] = ACTIONS(1855), + [anon_sym_STAR2] = ACTIONS(1853), + [anon_sym_and2] = ACTIONS(1855), + [anon_sym_xor2] = ACTIONS(1855), + [anon_sym_or2] = ACTIONS(1855), + [anon_sym_not_DASHin2] = ACTIONS(1855), + [anon_sym_has2] = ACTIONS(1855), + [anon_sym_not_DASHhas2] = ACTIONS(1855), + [anon_sym_starts_DASHwith2] = ACTIONS(1855), + [anon_sym_ends_DASHwith2] = ACTIONS(1855), + [anon_sym_EQ_EQ2] = ACTIONS(1855), + [anon_sym_BANG_EQ2] = ACTIONS(1855), + [anon_sym_LT2] = ACTIONS(1853), + [anon_sym_LT_EQ2] = ACTIONS(1855), + [anon_sym_GT_EQ2] = ACTIONS(1855), + [anon_sym_EQ_TILDE2] = ACTIONS(1855), + [anon_sym_BANG_TILDE2] = ACTIONS(1855), + [anon_sym_STAR_STAR2] = ACTIONS(1855), + [anon_sym_PLUS_PLUS2] = ACTIONS(1855), + [anon_sym_SLASH2] = ACTIONS(1853), + [anon_sym_mod2] = ACTIONS(1855), + [anon_sym_SLASH_SLASH2] = ACTIONS(1855), + [anon_sym_PLUS2] = ACTIONS(1853), + [anon_sym_bit_DASHshl2] = ACTIONS(1855), + [anon_sym_bit_DASHshr2] = ACTIONS(1855), + [anon_sym_bit_DASHand2] = ACTIONS(1855), + [anon_sym_bit_DASHxor2] = ACTIONS(1855), + [anon_sym_bit_DASHor2] = ACTIONS(1855), + [anon_sym_DOT2] = ACTIONS(4770), + [anon_sym_err_GT] = ACTIONS(1853), + [anon_sym_out_GT] = ACTIONS(1853), + [anon_sym_e_GT] = ACTIONS(1853), + [anon_sym_o_GT] = ACTIONS(1853), + [anon_sym_err_PLUSout_GT] = ACTIONS(1853), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1853), + [anon_sym_o_PLUSe_GT] = ACTIONS(1853), + [anon_sym_e_PLUSo_GT] = ACTIONS(1853), + [anon_sym_err_GT_GT] = ACTIONS(1855), + [anon_sym_out_GT_GT] = ACTIONS(1855), + [anon_sym_e_GT_GT] = ACTIONS(1855), + [anon_sym_o_GT_GT] = ACTIONS(1855), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1855), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1855), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1855), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1855), + [anon_sym_POUND] = ACTIONS(247), + }, + [1480] = { + [sym_cell_path] = STATE(1848), + [sym_path] = STATE(1428), + [sym_comment] = STATE(1480), + [aux_sym_cell_path_repeat1] = STATE(1338), + [sym__newline] = ACTIONS(1871), + [anon_sym_SEMI] = ACTIONS(1871), + [anon_sym_PIPE] = ACTIONS(1871), + [anon_sym_err_GT_PIPE] = ACTIONS(1871), + [anon_sym_out_GT_PIPE] = ACTIONS(1871), + [anon_sym_e_GT_PIPE] = ACTIONS(1871), + [anon_sym_o_GT_PIPE] = ACTIONS(1871), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1871), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1871), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1871), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1871), + [anon_sym_RPAREN] = ACTIONS(1871), + [anon_sym_GT2] = ACTIONS(1869), + [anon_sym_DASH2] = ACTIONS(1871), + [anon_sym_in2] = ACTIONS(1871), + [anon_sym_if] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_RBRACE] = ACTIONS(1871), + [anon_sym_EQ_GT] = ACTIONS(1871), + [anon_sym_STAR2] = ACTIONS(1869), + [anon_sym_and2] = ACTIONS(1871), + [anon_sym_xor2] = ACTIONS(1871), + [anon_sym_or2] = ACTIONS(1871), + [anon_sym_not_DASHin2] = ACTIONS(1871), + [anon_sym_has2] = ACTIONS(1871), + [anon_sym_not_DASHhas2] = ACTIONS(1871), + [anon_sym_starts_DASHwith2] = ACTIONS(1871), + [anon_sym_ends_DASHwith2] = ACTIONS(1871), + [anon_sym_EQ_EQ2] = ACTIONS(1871), + [anon_sym_BANG_EQ2] = ACTIONS(1871), + [anon_sym_LT2] = ACTIONS(1869), + [anon_sym_LT_EQ2] = ACTIONS(1871), + [anon_sym_GT_EQ2] = ACTIONS(1871), + [anon_sym_EQ_TILDE2] = ACTIONS(1871), + [anon_sym_BANG_TILDE2] = ACTIONS(1871), + [anon_sym_STAR_STAR2] = ACTIONS(1871), + [anon_sym_PLUS_PLUS2] = ACTIONS(1871), + [anon_sym_SLASH2] = ACTIONS(1869), + [anon_sym_mod2] = ACTIONS(1871), + [anon_sym_SLASH_SLASH2] = ACTIONS(1871), + [anon_sym_PLUS2] = ACTIONS(1869), + [anon_sym_bit_DASHshl2] = ACTIONS(1871), + [anon_sym_bit_DASHshr2] = ACTIONS(1871), + [anon_sym_bit_DASHand2] = ACTIONS(1871), + [anon_sym_bit_DASHxor2] = ACTIONS(1871), + [anon_sym_bit_DASHor2] = ACTIONS(1871), + [anon_sym_DOT2] = ACTIONS(4770), + [anon_sym_err_GT] = ACTIONS(1869), + [anon_sym_out_GT] = ACTIONS(1869), + [anon_sym_e_GT] = ACTIONS(1869), + [anon_sym_o_GT] = ACTIONS(1869), + [anon_sym_err_PLUSout_GT] = ACTIONS(1869), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1869), + [anon_sym_o_PLUSe_GT] = ACTIONS(1869), + [anon_sym_e_PLUSo_GT] = ACTIONS(1869), + [anon_sym_err_GT_GT] = ACTIONS(1871), + [anon_sym_out_GT_GT] = ACTIONS(1871), + [anon_sym_e_GT_GT] = ACTIONS(1871), + [anon_sym_o_GT_GT] = ACTIONS(1871), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1871), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1871), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1871), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1871), + [anon_sym_POUND] = ACTIONS(247), + }, + [1481] = { + [sym_cell_path] = STATE(1853), + [sym_path] = STATE(1700), + [sym_comment] = STATE(1481), + [aux_sym_cell_path_repeat1] = STATE(1547), + [sym__newline] = ACTIONS(1895), + [anon_sym_SEMI] = ACTIONS(1895), + [anon_sym_PIPE] = ACTIONS(1895), + [anon_sym_err_GT_PIPE] = ACTIONS(1895), + [anon_sym_out_GT_PIPE] = ACTIONS(1895), + [anon_sym_e_GT_PIPE] = ACTIONS(1895), + [anon_sym_o_GT_PIPE] = ACTIONS(1895), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1895), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1895), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1895), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1895), + [anon_sym_LBRACK] = ACTIONS(1895), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_RPAREN] = ACTIONS(1895), + [anon_sym_DOLLAR] = ACTIONS(1893), + [anon_sym_DASH_DASH] = ACTIONS(1895), + [anon_sym_DASH2] = ACTIONS(1893), + [anon_sym_LBRACE] = ACTIONS(1895), + [anon_sym_RBRACE] = ACTIONS(1895), + [anon_sym_DOT_DOT] = ACTIONS(1893), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1895), + [anon_sym_DOT_DOT_LT] = ACTIONS(1895), + [anon_sym_null] = ACTIONS(1895), + [anon_sym_true] = ACTIONS(1895), + [anon_sym_false] = ACTIONS(1895), + [aux_sym__val_number_decimal_token1] = ACTIONS(1893), + [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), + [aux_sym__val_number_token4] = ACTIONS(1895), + [aux_sym__val_number_token5] = ACTIONS(1895), + [aux_sym__val_number_token6] = ACTIONS(1895), + [anon_sym_0b] = ACTIONS(1893), + [anon_sym_0o] = ACTIONS(1893), + [anon_sym_0x] = ACTIONS(1893), + [sym_val_date] = ACTIONS(1895), + [anon_sym_DQUOTE] = ACTIONS(1895), + [sym__str_single_quotes] = ACTIONS(1895), + [sym__str_back_ticks] = ACTIONS(1895), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1895), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1895), + [anon_sym_DOT2] = ACTIONS(4760), + [anon_sym_err_GT] = ACTIONS(1893), + [anon_sym_out_GT] = ACTIONS(1893), + [anon_sym_e_GT] = ACTIONS(1893), + [anon_sym_o_GT] = ACTIONS(1893), + [anon_sym_err_PLUSout_GT] = ACTIONS(1893), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1893), + [anon_sym_o_PLUSe_GT] = ACTIONS(1893), + [anon_sym_e_PLUSo_GT] = ACTIONS(1893), + [anon_sym_err_GT_GT] = ACTIONS(1895), + [anon_sym_out_GT_GT] = ACTIONS(1895), + [anon_sym_e_GT_GT] = ACTIONS(1895), + [anon_sym_o_GT_GT] = ACTIONS(1895), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1895), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1895), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1895), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1895), + [aux_sym_unquoted_token1] = ACTIONS(1893), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1895), + }, + [1482] = { + [sym_comment] = STATE(1482), + [ts_builtin_sym_end] = ACTIONS(1695), + [sym__newline] = ACTIONS(1695), + [anon_sym_SEMI] = ACTIONS(1695), + [anon_sym_PIPE] = ACTIONS(1695), + [anon_sym_err_GT_PIPE] = ACTIONS(1695), + [anon_sym_out_GT_PIPE] = ACTIONS(1695), + [anon_sym_e_GT_PIPE] = ACTIONS(1695), + [anon_sym_o_GT_PIPE] = ACTIONS(1695), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1695), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1695), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1695), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1695), + [anon_sym_LBRACK] = ACTIONS(1695), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_DOLLAR] = ACTIONS(1693), + [anon_sym_DASH_DASH] = ACTIONS(1695), + [anon_sym_DASH2] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1695), + [anon_sym_DOT_DOT] = ACTIONS(1693), + [anon_sym_LPAREN2] = ACTIONS(1695), + [anon_sym_DOT_DOT2] = ACTIONS(1693), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1693), + [anon_sym_DOT_DOT_LT] = ACTIONS(1693), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1695), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1695), + [anon_sym_null] = ACTIONS(1695), + [anon_sym_true] = ACTIONS(1695), + [anon_sym_false] = ACTIONS(1695), + [aux_sym__val_number_decimal_token1] = ACTIONS(1693), + [aux_sym__val_number_decimal_token2] = ACTIONS(1695), + [aux_sym__val_number_decimal_token3] = ACTIONS(1695), + [aux_sym__val_number_decimal_token4] = ACTIONS(1695), + [aux_sym__val_number_token1] = ACTIONS(1695), + [aux_sym__val_number_token2] = ACTIONS(1695), + [aux_sym__val_number_token3] = ACTIONS(1695), + [aux_sym__val_number_token4] = ACTIONS(1695), + [aux_sym__val_number_token5] = ACTIONS(1695), + [aux_sym__val_number_token6] = ACTIONS(1695), + [anon_sym_0b] = ACTIONS(1693), + [anon_sym_0o] = ACTIONS(1693), + [anon_sym_0x] = ACTIONS(1693), + [sym_val_date] = ACTIONS(1695), + [anon_sym_DQUOTE] = ACTIONS(1695), + [sym__str_single_quotes] = ACTIONS(1695), + [sym__str_back_ticks] = ACTIONS(1695), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1695), + [anon_sym_err_GT] = ACTIONS(1693), + [anon_sym_out_GT] = ACTIONS(1693), + [anon_sym_e_GT] = ACTIONS(1693), + [anon_sym_o_GT] = ACTIONS(1693), + [anon_sym_err_PLUSout_GT] = ACTIONS(1693), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1693), + [anon_sym_o_PLUSe_GT] = ACTIONS(1693), + [anon_sym_e_PLUSo_GT] = ACTIONS(1693), + [anon_sym_err_GT_GT] = ACTIONS(1695), + [anon_sym_out_GT_GT] = ACTIONS(1695), + [anon_sym_e_GT_GT] = ACTIONS(1695), + [anon_sym_o_GT_GT] = ACTIONS(1695), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1695), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1695), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1695), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1695), + [aux_sym_unquoted_token1] = ACTIONS(1693), + [aux_sym_unquoted_token2] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1695), + }, + [1483] = { + [sym_comment] = STATE(1483), + [sym__newline] = ACTIONS(980), + [anon_sym_SEMI] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(980), + [anon_sym_err_GT_PIPE] = ACTIONS(980), + [anon_sym_out_GT_PIPE] = ACTIONS(980), + [anon_sym_e_GT_PIPE] = ACTIONS(980), + [anon_sym_o_GT_PIPE] = ACTIONS(980), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(980), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(980), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(980), + [anon_sym_LBRACK] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(980), + [anon_sym_RPAREN] = ACTIONS(980), + [anon_sym_DOLLAR] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_DASH2] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(980), + [anon_sym_RBRACE] = ACTIONS(980), + [anon_sym_DOT_DOT] = ACTIONS(978), + [anon_sym_DOT_DOT2] = ACTIONS(978), + [anon_sym_DOT_DOT_EQ] = ACTIONS(978), + [anon_sym_DOT_DOT_LT] = ACTIONS(978), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(980), + [anon_sym_DOT_DOT_LT2] = ACTIONS(980), + [anon_sym_null] = ACTIONS(980), + [anon_sym_true] = ACTIONS(980), + [anon_sym_false] = ACTIONS(980), + [aux_sym__val_number_decimal_token1] = ACTIONS(978), + [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), + [aux_sym__val_number_token4] = ACTIONS(980), + [aux_sym__val_number_token5] = ACTIONS(980), + [aux_sym__val_number_token6] = ACTIONS(980), + [anon_sym_0b] = ACTIONS(978), + [anon_sym_0o] = ACTIONS(978), + [anon_sym_0x] = ACTIONS(978), + [sym_val_date] = ACTIONS(980), + [anon_sym_DQUOTE] = ACTIONS(980), + [sym__str_single_quotes] = ACTIONS(980), + [sym__str_back_ticks] = ACTIONS(980), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(980), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(980), + [anon_sym_DOT2] = ACTIONS(978), + [anon_sym_err_GT] = ACTIONS(978), + [anon_sym_out_GT] = ACTIONS(978), + [anon_sym_e_GT] = ACTIONS(978), + [anon_sym_o_GT] = ACTIONS(978), + [anon_sym_err_PLUSout_GT] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT] = ACTIONS(978), + [anon_sym_o_PLUSe_GT] = ACTIONS(978), + [anon_sym_e_PLUSo_GT] = ACTIONS(978), + [anon_sym_err_GT_GT] = ACTIONS(980), + [anon_sym_out_GT_GT] = ACTIONS(980), + [anon_sym_e_GT_GT] = ACTIONS(980), + [anon_sym_o_GT_GT] = ACTIONS(980), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(980), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(980), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(980), + [aux_sym_unquoted_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(980), + }, + [1484] = { + [sym_cell_path] = STATE(1850), + [sym_path] = STATE(1428), + [sym_comment] = STATE(1484), + [aux_sym_cell_path_repeat1] = STATE(1338), + [sym__newline] = ACTIONS(1879), + [anon_sym_SEMI] = ACTIONS(1879), + [anon_sym_PIPE] = ACTIONS(1879), + [anon_sym_err_GT_PIPE] = ACTIONS(1879), + [anon_sym_out_GT_PIPE] = ACTIONS(1879), + [anon_sym_e_GT_PIPE] = ACTIONS(1879), + [anon_sym_o_GT_PIPE] = ACTIONS(1879), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1879), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1879), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1879), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1879), + [anon_sym_RPAREN] = ACTIONS(1879), + [anon_sym_GT2] = ACTIONS(1877), + [anon_sym_DASH2] = ACTIONS(1879), + [anon_sym_in2] = ACTIONS(1879), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(1879), + [anon_sym_RBRACE] = ACTIONS(1879), + [anon_sym_EQ_GT] = ACTIONS(1879), + [anon_sym_STAR2] = ACTIONS(1877), + [anon_sym_and2] = ACTIONS(1879), + [anon_sym_xor2] = ACTIONS(1879), + [anon_sym_or2] = ACTIONS(1879), + [anon_sym_not_DASHin2] = ACTIONS(1879), + [anon_sym_has2] = ACTIONS(1879), + [anon_sym_not_DASHhas2] = ACTIONS(1879), + [anon_sym_starts_DASHwith2] = ACTIONS(1879), + [anon_sym_ends_DASHwith2] = ACTIONS(1879), + [anon_sym_EQ_EQ2] = ACTIONS(1879), + [anon_sym_BANG_EQ2] = ACTIONS(1879), + [anon_sym_LT2] = ACTIONS(1877), + [anon_sym_LT_EQ2] = ACTIONS(1879), + [anon_sym_GT_EQ2] = ACTIONS(1879), + [anon_sym_EQ_TILDE2] = ACTIONS(1879), + [anon_sym_BANG_TILDE2] = ACTIONS(1879), + [anon_sym_STAR_STAR2] = ACTIONS(1879), + [anon_sym_PLUS_PLUS2] = ACTIONS(1879), + [anon_sym_SLASH2] = ACTIONS(1877), + [anon_sym_mod2] = ACTIONS(1879), + [anon_sym_SLASH_SLASH2] = ACTIONS(1879), + [anon_sym_PLUS2] = ACTIONS(1877), + [anon_sym_bit_DASHshl2] = ACTIONS(1879), + [anon_sym_bit_DASHshr2] = ACTIONS(1879), + [anon_sym_bit_DASHand2] = ACTIONS(1879), + [anon_sym_bit_DASHxor2] = ACTIONS(1879), + [anon_sym_bit_DASHor2] = ACTIONS(1879), + [anon_sym_DOT2] = ACTIONS(4770), + [anon_sym_err_GT] = ACTIONS(1877), + [anon_sym_out_GT] = ACTIONS(1877), + [anon_sym_e_GT] = ACTIONS(1877), + [anon_sym_o_GT] = ACTIONS(1877), + [anon_sym_err_PLUSout_GT] = ACTIONS(1877), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1877), + [anon_sym_o_PLUSe_GT] = ACTIONS(1877), + [anon_sym_e_PLUSo_GT] = ACTIONS(1877), + [anon_sym_err_GT_GT] = ACTIONS(1879), + [anon_sym_out_GT_GT] = ACTIONS(1879), + [anon_sym_e_GT_GT] = ACTIONS(1879), + [anon_sym_o_GT_GT] = ACTIONS(1879), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1879), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1879), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1879), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1879), + [anon_sym_POUND] = ACTIONS(247), + }, + [1485] = { + [sym_comment] = STATE(1485), + [ts_builtin_sym_end] = ACTIONS(1768), + [sym__newline] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_err_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_GT_PIPE] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1768), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_LPAREN] = ACTIONS(1766), + [anon_sym_DOLLAR] = ACTIONS(1766), + [anon_sym_DASH_DASH] = ACTIONS(1768), + [anon_sym_DASH2] = ACTIONS(1766), + [anon_sym_LBRACE] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1766), + [anon_sym_LPAREN2] = ACTIONS(1768), + [anon_sym_DOT_DOT2] = ACTIONS(1766), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1766), + [anon_sym_DOT_DOT_LT] = ACTIONS(1766), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1768), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1768), + [anon_sym_null] = ACTIONS(1768), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [aux_sym__val_number_decimal_token1] = ACTIONS(1766), + [aux_sym__val_number_decimal_token2] = ACTIONS(1768), + [aux_sym__val_number_decimal_token3] = ACTIONS(1768), + [aux_sym__val_number_decimal_token4] = ACTIONS(1768), + [aux_sym__val_number_token1] = ACTIONS(1768), + [aux_sym__val_number_token2] = ACTIONS(1768), + [aux_sym__val_number_token3] = ACTIONS(1768), + [aux_sym__val_number_token4] = ACTIONS(1768), + [aux_sym__val_number_token5] = ACTIONS(1768), + [aux_sym__val_number_token6] = ACTIONS(1768), + [anon_sym_0b] = ACTIONS(1766), + [anon_sym_0o] = ACTIONS(1766), + [anon_sym_0x] = ACTIONS(1766), + [sym_val_date] = ACTIONS(1768), + [anon_sym_DQUOTE] = ACTIONS(1768), + [sym__str_single_quotes] = ACTIONS(1768), + [sym__str_back_ticks] = ACTIONS(1768), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1768), + [anon_sym_err_GT] = ACTIONS(1766), + [anon_sym_out_GT] = ACTIONS(1766), + [anon_sym_e_GT] = ACTIONS(1766), + [anon_sym_o_GT] = ACTIONS(1766), + [anon_sym_err_PLUSout_GT] = ACTIONS(1766), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1766), + [anon_sym_o_PLUSe_GT] = ACTIONS(1766), + [anon_sym_e_PLUSo_GT] = ACTIONS(1766), + [anon_sym_err_GT_GT] = ACTIONS(1768), + [anon_sym_out_GT_GT] = ACTIONS(1768), + [anon_sym_e_GT_GT] = ACTIONS(1768), + [anon_sym_o_GT_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1768), + [aux_sym_unquoted_token1] = ACTIONS(1766), + [aux_sym_unquoted_token2] = ACTIONS(1766), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1768), + }, + [1486] = { + [sym_comment] = STATE(1486), + [ts_builtin_sym_end] = 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(1792), + [anon_sym_DOLLAR] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1794), + [anon_sym_DASH2] = ACTIONS(1792), + [anon_sym_LBRACE] = ACTIONS(1794), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_LPAREN2] = ACTIONS(1794), + [anon_sym_DOT_DOT2] = ACTIONS(1792), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1792), + [anon_sym_DOT_DOT_LT] = ACTIONS(1792), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1794), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1794), + [anon_sym_null] = ACTIONS(1794), + [anon_sym_true] = ACTIONS(1794), + [anon_sym_false] = ACTIONS(1794), + [aux_sym__val_number_decimal_token1] = ACTIONS(1792), + [aux_sym__val_number_decimal_token2] = ACTIONS(1794), + [aux_sym__val_number_decimal_token3] = ACTIONS(1794), + [aux_sym__val_number_decimal_token4] = ACTIONS(1794), + [aux_sym__val_number_token1] = ACTIONS(1794), + [aux_sym__val_number_token2] = ACTIONS(1794), + [aux_sym__val_number_token3] = ACTIONS(1794), + [aux_sym__val_number_token4] = ACTIONS(1794), + [aux_sym__val_number_token5] = ACTIONS(1794), + [aux_sym__val_number_token6] = 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), + [aux_sym_unquoted_token2] = ACTIONS(1792), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1794), + }, + [1487] = { + [sym_comment] = STATE(1487), + [sym__newline] = ACTIONS(976), + [anon_sym_SEMI] = ACTIONS(976), + [anon_sym_PIPE] = ACTIONS(976), + [anon_sym_err_GT_PIPE] = ACTIONS(976), + [anon_sym_out_GT_PIPE] = ACTIONS(976), + [anon_sym_e_GT_PIPE] = ACTIONS(976), + [anon_sym_o_GT_PIPE] = ACTIONS(976), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(976), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(976), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(976), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(976), + [anon_sym_LBRACK] = ACTIONS(976), + [anon_sym_LPAREN] = ACTIONS(976), + [anon_sym_RPAREN] = ACTIONS(976), + [anon_sym_DOLLAR] = ACTIONS(974), + [anon_sym_DASH_DASH] = ACTIONS(976), + [anon_sym_DASH2] = ACTIONS(974), + [anon_sym_LBRACE] = ACTIONS(976), + [anon_sym_RBRACE] = ACTIONS(976), + [anon_sym_DOT_DOT] = ACTIONS(974), + [anon_sym_DOT_DOT2] = ACTIONS(974), + [anon_sym_DOT_DOT_EQ] = ACTIONS(974), + [anon_sym_DOT_DOT_LT] = ACTIONS(974), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(976), + [anon_sym_DOT_DOT_LT2] = ACTIONS(976), + [anon_sym_null] = ACTIONS(976), + [anon_sym_true] = ACTIONS(976), + [anon_sym_false] = ACTIONS(976), + [aux_sym__val_number_decimal_token1] = ACTIONS(974), + [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), + [aux_sym__val_number_token4] = ACTIONS(976), + [aux_sym__val_number_token5] = ACTIONS(976), + [aux_sym__val_number_token6] = ACTIONS(976), + [anon_sym_0b] = ACTIONS(974), + [anon_sym_0o] = ACTIONS(974), + [anon_sym_0x] = ACTIONS(974), + [sym_val_date] = ACTIONS(976), + [anon_sym_DQUOTE] = ACTIONS(976), + [sym__str_single_quotes] = ACTIONS(976), + [sym__str_back_ticks] = ACTIONS(976), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(976), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(976), + [anon_sym_DOT2] = ACTIONS(974), + [anon_sym_err_GT] = ACTIONS(974), + [anon_sym_out_GT] = ACTIONS(974), + [anon_sym_e_GT] = ACTIONS(974), + [anon_sym_o_GT] = ACTIONS(974), + [anon_sym_err_PLUSout_GT] = ACTIONS(974), + [anon_sym_out_PLUSerr_GT] = ACTIONS(974), + [anon_sym_o_PLUSe_GT] = ACTIONS(974), + [anon_sym_e_PLUSo_GT] = ACTIONS(974), + [anon_sym_err_GT_GT] = ACTIONS(976), + [anon_sym_out_GT_GT] = ACTIONS(976), + [anon_sym_e_GT_GT] = ACTIONS(976), + [anon_sym_o_GT_GT] = ACTIONS(976), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(976), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(976), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(976), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(976), + [aux_sym_unquoted_token1] = ACTIONS(974), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(976), + }, + [1488] = { + [sym_cell_path] = STATE(1868), + [sym_path] = STATE(1700), + [sym_comment] = STATE(1488), + [aux_sym_cell_path_repeat1] = STATE(1547), + [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(1939), + [anon_sym_DASH_DASH] = ACTIONS(1941), + [anon_sym_DASH2] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_RBRACE] = ACTIONS(1941), + [anon_sym_DOT_DOT] = ACTIONS(1939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [anon_sym_null] = ACTIONS(1941), + [anon_sym_true] = ACTIONS(1941), + [anon_sym_false] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1939), + [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), + [aux_sym__val_number_token4] = ACTIONS(1941), + [aux_sym__val_number_token5] = ACTIONS(1941), + [aux_sym__val_number_token6] = ACTIONS(1941), + [anon_sym_0b] = ACTIONS(1939), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0x] = ACTIONS(1939), + [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_DOT2] = ACTIONS(4760), + [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(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(1939), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1941), + }, + [1489] = { + [sym_cell_path] = STATE(1861), + [sym_path] = STATE(1700), + [sym_comment] = STATE(1489), + [aux_sym_cell_path_repeat1] = STATE(1547), [sym__newline] = ACTIONS(1919), [anon_sym_SEMI] = ACTIONS(1919), [anon_sym_PIPE] = ACTIONS(1919), @@ -222464,10 +222890,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1919), [anon_sym_LBRACK] = ACTIONS(1919), [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_RPAREN] = ACTIONS(1919), [anon_sym_DOLLAR] = ACTIONS(1917), [anon_sym_DASH_DASH] = ACTIONS(1919), [anon_sym_DASH2] = ACTIONS(1917), [anon_sym_LBRACE] = ACTIONS(1919), + [anon_sym_RBRACE] = ACTIONS(1919), [anon_sym_DOT_DOT] = ACTIONS(1917), [anon_sym_DOT_DOT_EQ] = ACTIONS(1919), [anon_sym_DOT_DOT_LT] = ACTIONS(1919), @@ -222493,7 +222921,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1919), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1919), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1919), - [anon_sym_DOT2] = ACTIONS(4750), + [anon_sym_DOT2] = ACTIONS(4760), [anon_sym_err_GT] = ACTIONS(1917), [anon_sym_out_GT] = ACTIONS(1917), [anon_sym_e_GT] = ACTIONS(1917), @@ -222511,291 +222939,224 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1919), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1919), [aux_sym_unquoted_token1] = ACTIONS(1917), - [anon_sym_POUND] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1919), }, + [1490] = { + [sym_comment] = STATE(1490), + [ts_builtin_sym_end] = ACTIONS(1514), + [sym__newline] = ACTIONS(1514), + [anon_sym_SEMI] = ACTIONS(1514), + [anon_sym_PIPE] = ACTIONS(1514), + [anon_sym_err_GT_PIPE] = ACTIONS(1514), + [anon_sym_out_GT_PIPE] = ACTIONS(1514), + [anon_sym_e_GT_PIPE] = ACTIONS(1514), + [anon_sym_o_GT_PIPE] = ACTIONS(1514), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1514), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1514), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1514), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1514), + [anon_sym_GT2] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1514), + [anon_sym_in2] = ACTIONS(1514), + [anon_sym_STAR2] = ACTIONS(1512), + [anon_sym_and2] = ACTIONS(1514), + [anon_sym_xor2] = ACTIONS(1514), + [anon_sym_or2] = ACTIONS(1514), + [anon_sym_not_DASHin2] = ACTIONS(1514), + [anon_sym_has2] = ACTIONS(1514), + [anon_sym_not_DASHhas2] = ACTIONS(1514), + [anon_sym_starts_DASHwith2] = ACTIONS(1514), + [anon_sym_ends_DASHwith2] = ACTIONS(1514), + [anon_sym_EQ_EQ2] = ACTIONS(1514), + [anon_sym_BANG_EQ2] = ACTIONS(1514), + [anon_sym_LT2] = ACTIONS(1512), + [anon_sym_LT_EQ2] = ACTIONS(1514), + [anon_sym_GT_EQ2] = ACTIONS(1514), + [anon_sym_EQ_TILDE2] = ACTIONS(1514), + [anon_sym_BANG_TILDE2] = ACTIONS(1514), + [anon_sym_LPAREN2] = ACTIONS(1514), + [anon_sym_STAR_STAR2] = ACTIONS(1514), + [anon_sym_PLUS_PLUS2] = ACTIONS(1514), + [anon_sym_SLASH2] = ACTIONS(1512), + [anon_sym_mod2] = ACTIONS(1514), + [anon_sym_SLASH_SLASH2] = ACTIONS(1514), + [anon_sym_PLUS2] = ACTIONS(1512), + [anon_sym_bit_DASHshl2] = ACTIONS(1514), + [anon_sym_bit_DASHshr2] = ACTIONS(1514), + [anon_sym_bit_DASHand2] = ACTIONS(1514), + [anon_sym_bit_DASHxor2] = ACTIONS(1514), + [anon_sym_bit_DASHor2] = ACTIONS(1514), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [aux_sym__immediate_decimal_token2] = ACTIONS(4726), + [sym_filesize_unit] = ACTIONS(1512), + [sym_duration_unit] = ACTIONS(1514), + [anon_sym_err_GT] = ACTIONS(1512), + [anon_sym_out_GT] = ACTIONS(1512), + [anon_sym_e_GT] = ACTIONS(1512), + [anon_sym_o_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT] = ACTIONS(1512), + [anon_sym_err_GT_GT] = ACTIONS(1514), + [anon_sym_out_GT_GT] = ACTIONS(1514), + [anon_sym_e_GT_GT] = ACTIONS(1514), + [anon_sym_o_GT_GT] = ACTIONS(1514), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1514), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1514), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1514), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1514), + [aux_sym_unquoted_token2] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(247), + }, + [1491] = { + [sym_cell_path] = STATE(1851), + [sym_path] = STATE(1428), + [sym_comment] = STATE(1491), + [aux_sym_cell_path_repeat1] = STATE(1338), + [sym__newline] = ACTIONS(1971), + [anon_sym_SEMI] = ACTIONS(1971), + [anon_sym_PIPE] = ACTIONS(1971), + [anon_sym_err_GT_PIPE] = ACTIONS(1971), + [anon_sym_out_GT_PIPE] = ACTIONS(1971), + [anon_sym_e_GT_PIPE] = ACTIONS(1971), + [anon_sym_o_GT_PIPE] = ACTIONS(1971), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1971), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1971), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1971), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1971), + [anon_sym_RPAREN] = ACTIONS(1971), + [anon_sym_GT2] = ACTIONS(1969), + [anon_sym_DASH2] = ACTIONS(1971), + [anon_sym_in2] = ACTIONS(1971), + [anon_sym_if] = ACTIONS(1971), + [anon_sym_LBRACE] = ACTIONS(1971), + [anon_sym_RBRACE] = ACTIONS(1971), + [anon_sym_EQ_GT] = ACTIONS(1971), + [anon_sym_STAR2] = ACTIONS(1969), + [anon_sym_and2] = ACTIONS(1971), + [anon_sym_xor2] = ACTIONS(1971), + [anon_sym_or2] = ACTIONS(1971), + [anon_sym_not_DASHin2] = ACTIONS(1971), + [anon_sym_has2] = ACTIONS(1971), + [anon_sym_not_DASHhas2] = ACTIONS(1971), + [anon_sym_starts_DASHwith2] = ACTIONS(1971), + [anon_sym_ends_DASHwith2] = ACTIONS(1971), + [anon_sym_EQ_EQ2] = ACTIONS(1971), + [anon_sym_BANG_EQ2] = ACTIONS(1971), + [anon_sym_LT2] = ACTIONS(1969), + [anon_sym_LT_EQ2] = ACTIONS(1971), + [anon_sym_GT_EQ2] = ACTIONS(1971), + [anon_sym_EQ_TILDE2] = ACTIONS(1971), + [anon_sym_BANG_TILDE2] = ACTIONS(1971), + [anon_sym_STAR_STAR2] = ACTIONS(1971), + [anon_sym_PLUS_PLUS2] = ACTIONS(1971), + [anon_sym_SLASH2] = ACTIONS(1969), + [anon_sym_mod2] = ACTIONS(1971), + [anon_sym_SLASH_SLASH2] = ACTIONS(1971), + [anon_sym_PLUS2] = ACTIONS(1969), + [anon_sym_bit_DASHshl2] = ACTIONS(1971), + [anon_sym_bit_DASHshr2] = ACTIONS(1971), + [anon_sym_bit_DASHand2] = ACTIONS(1971), + [anon_sym_bit_DASHxor2] = ACTIONS(1971), + [anon_sym_bit_DASHor2] = ACTIONS(1971), + [anon_sym_DOT2] = ACTIONS(4770), + [anon_sym_err_GT] = ACTIONS(1969), + [anon_sym_out_GT] = ACTIONS(1969), + [anon_sym_e_GT] = ACTIONS(1969), + [anon_sym_o_GT] = ACTIONS(1969), + [anon_sym_err_PLUSout_GT] = ACTIONS(1969), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1969), + [anon_sym_o_PLUSe_GT] = ACTIONS(1969), + [anon_sym_e_PLUSo_GT] = ACTIONS(1969), + [anon_sym_err_GT_GT] = ACTIONS(1971), + [anon_sym_out_GT_GT] = ACTIONS(1971), + [anon_sym_e_GT_GT] = ACTIONS(1971), + [anon_sym_o_GT_GT] = ACTIONS(1971), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1971), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1971), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1971), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1971), + [anon_sym_POUND] = ACTIONS(247), + }, [1492] = { - [sym_cell_path] = STATE(1894), - [sym_path] = STATE(1749), + [sym_cell_path] = STATE(1865), + [sym_path] = STATE(1700), [sym_comment] = STATE(1492), - [aux_sym_cell_path_repeat1] = STATE(1549), - [ts_builtin_sym_end] = 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(1927), - [anon_sym_DOLLAR] = ACTIONS(1925), - [anon_sym_DASH_DASH] = ACTIONS(1927), - [anon_sym_DASH2] = ACTIONS(1925), - [anon_sym_LBRACE] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1925), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1927), - [anon_sym_DOT_DOT_LT] = ACTIONS(1927), - [anon_sym_null] = ACTIONS(1927), - [anon_sym_true] = ACTIONS(1927), - [anon_sym_false] = ACTIONS(1927), - [aux_sym__val_number_decimal_token1] = ACTIONS(1925), - [aux_sym__val_number_decimal_token2] = ACTIONS(1927), - [aux_sym__val_number_decimal_token3] = ACTIONS(1927), - [aux_sym__val_number_decimal_token4] = ACTIONS(1927), - [aux_sym__val_number_token1] = ACTIONS(1927), - [aux_sym__val_number_token2] = ACTIONS(1927), - [aux_sym__val_number_token3] = ACTIONS(1927), - [aux_sym__val_number_token4] = ACTIONS(1927), - [aux_sym__val_number_token5] = ACTIONS(1927), - [aux_sym__val_number_token6] = ACTIONS(1927), - [anon_sym_0b] = ACTIONS(1925), - [anon_sym_0o] = ACTIONS(1925), - [anon_sym_0x] = ACTIONS(1925), - [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_DOT2] = ACTIONS(4750), - [anon_sym_err_GT] = ACTIONS(1925), - [anon_sym_out_GT] = ACTIONS(1925), - [anon_sym_e_GT] = ACTIONS(1925), - [anon_sym_o_GT] = ACTIONS(1925), - [anon_sym_err_PLUSout_GT] = ACTIONS(1925), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1925), - [anon_sym_o_PLUSe_GT] = ACTIONS(1925), - [anon_sym_e_PLUSo_GT] = ACTIONS(1925), - [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(1925), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1927), + [aux_sym_cell_path_repeat1] = STATE(1547), + [sym__newline] = ACTIONS(1933), + [anon_sym_SEMI] = ACTIONS(1933), + [anon_sym_PIPE] = ACTIONS(1933), + [anon_sym_err_GT_PIPE] = ACTIONS(1933), + [anon_sym_out_GT_PIPE] = ACTIONS(1933), + [anon_sym_e_GT_PIPE] = ACTIONS(1933), + [anon_sym_o_GT_PIPE] = ACTIONS(1933), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1933), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1933), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1933), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1933), + [anon_sym_LBRACK] = ACTIONS(1933), + [anon_sym_LPAREN] = ACTIONS(1933), + [anon_sym_RPAREN] = ACTIONS(1933), + [anon_sym_DOLLAR] = ACTIONS(1931), + [anon_sym_DASH_DASH] = ACTIONS(1933), + [anon_sym_DASH2] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1933), + [anon_sym_RBRACE] = ACTIONS(1933), + [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [anon_sym_null] = ACTIONS(1933), + [anon_sym_true] = ACTIONS(1933), + [anon_sym_false] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1931), + [aux_sym__val_number_decimal_token2] = ACTIONS(1933), + [aux_sym__val_number_decimal_token3] = ACTIONS(1933), + [aux_sym__val_number_decimal_token4] = ACTIONS(1933), + [aux_sym__val_number_token1] = ACTIONS(1933), + [aux_sym__val_number_token2] = ACTIONS(1933), + [aux_sym__val_number_token3] = ACTIONS(1933), + [aux_sym__val_number_token4] = ACTIONS(1933), + [aux_sym__val_number_token5] = ACTIONS(1933), + [aux_sym__val_number_token6] = ACTIONS(1933), + [anon_sym_0b] = ACTIONS(1931), + [anon_sym_0o] = ACTIONS(1931), + [anon_sym_0x] = ACTIONS(1931), + [sym_val_date] = ACTIONS(1933), + [anon_sym_DQUOTE] = ACTIONS(1933), + [sym__str_single_quotes] = ACTIONS(1933), + [sym__str_back_ticks] = ACTIONS(1933), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1933), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1933), + [anon_sym_DOT2] = ACTIONS(4760), + [anon_sym_err_GT] = ACTIONS(1931), + [anon_sym_out_GT] = ACTIONS(1931), + [anon_sym_e_GT] = ACTIONS(1931), + [anon_sym_o_GT] = ACTIONS(1931), + [anon_sym_err_PLUSout_GT] = ACTIONS(1931), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1931), + [anon_sym_o_PLUSe_GT] = ACTIONS(1931), + [anon_sym_e_PLUSo_GT] = ACTIONS(1931), + [anon_sym_err_GT_GT] = ACTIONS(1933), + [anon_sym_out_GT_GT] = ACTIONS(1933), + [anon_sym_e_GT_GT] = ACTIONS(1933), + [anon_sym_o_GT_GT] = ACTIONS(1933), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1933), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1933), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1933), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1933), + [aux_sym_unquoted_token1] = ACTIONS(1931), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1933), }, [1493] = { - [sym_cell_path] = STATE(1878), - [sym_path] = STATE(1749), + [sym_cell_path] = STATE(1912), + [sym_path] = STATE(1700), [sym_comment] = STATE(1493), - [aux_sym_cell_path_repeat1] = STATE(1549), - [ts_builtin_sym_end] = ACTIONS(1931), - [sym__newline] = ACTIONS(1931), - [anon_sym_SEMI] = ACTIONS(1931), - [anon_sym_PIPE] = ACTIONS(1931), - [anon_sym_err_GT_PIPE] = ACTIONS(1931), - [anon_sym_out_GT_PIPE] = ACTIONS(1931), - [anon_sym_e_GT_PIPE] = ACTIONS(1931), - [anon_sym_o_GT_PIPE] = ACTIONS(1931), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1931), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1931), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1931), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1931), - [anon_sym_LBRACK] = ACTIONS(1931), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_DOLLAR] = ACTIONS(1929), - [anon_sym_DASH_DASH] = ACTIONS(1931), - [anon_sym_DASH2] = ACTIONS(1929), - [anon_sym_LBRACE] = ACTIONS(1931), - [anon_sym_DOT_DOT] = ACTIONS(1929), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1931), - [anon_sym_DOT_DOT_LT] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1931), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [aux_sym__val_number_decimal_token1] = ACTIONS(1929), - [aux_sym__val_number_decimal_token2] = ACTIONS(1931), - [aux_sym__val_number_decimal_token3] = ACTIONS(1931), - [aux_sym__val_number_decimal_token4] = ACTIONS(1931), - [aux_sym__val_number_token1] = ACTIONS(1931), - [aux_sym__val_number_token2] = ACTIONS(1931), - [aux_sym__val_number_token3] = ACTIONS(1931), - [aux_sym__val_number_token4] = ACTIONS(1931), - [aux_sym__val_number_token5] = ACTIONS(1931), - [aux_sym__val_number_token6] = ACTIONS(1931), - [anon_sym_0b] = ACTIONS(1929), - [anon_sym_0o] = ACTIONS(1929), - [anon_sym_0x] = ACTIONS(1929), - [sym_val_date] = ACTIONS(1931), - [anon_sym_DQUOTE] = ACTIONS(1931), - [sym__str_single_quotes] = ACTIONS(1931), - [sym__str_back_ticks] = ACTIONS(1931), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1931), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1931), - [anon_sym_DOT2] = ACTIONS(4750), - [anon_sym_err_GT] = ACTIONS(1929), - [anon_sym_out_GT] = ACTIONS(1929), - [anon_sym_e_GT] = ACTIONS(1929), - [anon_sym_o_GT] = ACTIONS(1929), - [anon_sym_err_PLUSout_GT] = ACTIONS(1929), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1929), - [anon_sym_o_PLUSe_GT] = ACTIONS(1929), - [anon_sym_e_PLUSo_GT] = ACTIONS(1929), - [anon_sym_err_GT_GT] = ACTIONS(1931), - [anon_sym_out_GT_GT] = ACTIONS(1931), - [anon_sym_e_GT_GT] = ACTIONS(1931), - [anon_sym_o_GT_GT] = ACTIONS(1931), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1931), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1931), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1931), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1931), - [aux_sym_unquoted_token1] = ACTIONS(1929), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1931), - }, - [1494] = { - [sym_cell_path] = STATE(1884), - [sym_path] = STATE(1749), - [sym_comment] = STATE(1494), - [aux_sym_cell_path_repeat1] = STATE(1549), - [ts_builtin_sym_end] = ACTIONS(1935), - [sym__newline] = ACTIONS(1935), - [anon_sym_SEMI] = ACTIONS(1935), - [anon_sym_PIPE] = ACTIONS(1935), - [anon_sym_err_GT_PIPE] = ACTIONS(1935), - [anon_sym_out_GT_PIPE] = ACTIONS(1935), - [anon_sym_e_GT_PIPE] = ACTIONS(1935), - [anon_sym_o_GT_PIPE] = ACTIONS(1935), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1935), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1935), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1935), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1935), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_LPAREN] = ACTIONS(1935), - [anon_sym_DOLLAR] = ACTIONS(1933), - [anon_sym_DASH_DASH] = ACTIONS(1935), - [anon_sym_DASH2] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1935), - [anon_sym_DOT_DOT] = ACTIONS(1933), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1935), - [anon_sym_DOT_DOT_LT] = ACTIONS(1935), - [anon_sym_null] = ACTIONS(1935), - [anon_sym_true] = ACTIONS(1935), - [anon_sym_false] = ACTIONS(1935), - [aux_sym__val_number_decimal_token1] = ACTIONS(1933), - [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), - [aux_sym__val_number_token4] = ACTIONS(1935), - [aux_sym__val_number_token5] = ACTIONS(1935), - [aux_sym__val_number_token6] = ACTIONS(1935), - [anon_sym_0b] = ACTIONS(1933), - [anon_sym_0o] = ACTIONS(1933), - [anon_sym_0x] = ACTIONS(1933), - [sym_val_date] = ACTIONS(1935), - [anon_sym_DQUOTE] = ACTIONS(1935), - [sym__str_single_quotes] = ACTIONS(1935), - [sym__str_back_ticks] = ACTIONS(1935), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1935), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1935), - [anon_sym_DOT2] = ACTIONS(4750), - [anon_sym_err_GT] = ACTIONS(1933), - [anon_sym_out_GT] = ACTIONS(1933), - [anon_sym_e_GT] = ACTIONS(1933), - [anon_sym_o_GT] = ACTIONS(1933), - [anon_sym_err_PLUSout_GT] = ACTIONS(1933), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1933), - [anon_sym_o_PLUSe_GT] = ACTIONS(1933), - [anon_sym_e_PLUSo_GT] = ACTIONS(1933), - [anon_sym_err_GT_GT] = ACTIONS(1935), - [anon_sym_out_GT_GT] = ACTIONS(1935), - [anon_sym_e_GT_GT] = ACTIONS(1935), - [anon_sym_o_GT_GT] = ACTIONS(1935), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1935), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1935), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1935), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1935), - [aux_sym_unquoted_token1] = ACTIONS(1933), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1935), - }, - [1495] = { - [sym_cell_path] = STATE(1909), - [sym_path] = STATE(1749), - [sym_comment] = STATE(1495), - [aux_sym_cell_path_repeat1] = STATE(1549), - [ts_builtin_sym_end] = ACTIONS(1939), - [sym__newline] = ACTIONS(1939), - [anon_sym_SEMI] = ACTIONS(1939), - [anon_sym_PIPE] = ACTIONS(1939), - [anon_sym_err_GT_PIPE] = ACTIONS(1939), - [anon_sym_out_GT_PIPE] = ACTIONS(1939), - [anon_sym_e_GT_PIPE] = ACTIONS(1939), - [anon_sym_o_GT_PIPE] = ACTIONS(1939), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1939), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1939), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1939), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1939), - [anon_sym_LBRACK] = ACTIONS(1939), - [anon_sym_LPAREN] = ACTIONS(1939), - [anon_sym_DOLLAR] = ACTIONS(1937), - [anon_sym_DASH_DASH] = ACTIONS(1939), - [anon_sym_DASH2] = ACTIONS(1937), - [anon_sym_LBRACE] = ACTIONS(1939), - [anon_sym_DOT_DOT] = ACTIONS(1937), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1939), - [anon_sym_DOT_DOT_LT] = ACTIONS(1939), - [anon_sym_null] = ACTIONS(1939), - [anon_sym_true] = ACTIONS(1939), - [anon_sym_false] = ACTIONS(1939), - [aux_sym__val_number_decimal_token1] = ACTIONS(1937), - [aux_sym__val_number_decimal_token2] = ACTIONS(1939), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), - [aux_sym__val_number_token1] = ACTIONS(1939), - [aux_sym__val_number_token2] = ACTIONS(1939), - [aux_sym__val_number_token3] = ACTIONS(1939), - [aux_sym__val_number_token4] = ACTIONS(1939), - [aux_sym__val_number_token5] = ACTIONS(1939), - [aux_sym__val_number_token6] = ACTIONS(1939), - [anon_sym_0b] = ACTIONS(1937), - [anon_sym_0o] = ACTIONS(1937), - [anon_sym_0x] = ACTIONS(1937), - [sym_val_date] = ACTIONS(1939), - [anon_sym_DQUOTE] = ACTIONS(1939), - [sym__str_single_quotes] = ACTIONS(1939), - [sym__str_back_ticks] = ACTIONS(1939), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1939), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1939), - [anon_sym_DOT2] = ACTIONS(4750), - [anon_sym_err_GT] = ACTIONS(1937), - [anon_sym_out_GT] = ACTIONS(1937), - [anon_sym_e_GT] = ACTIONS(1937), - [anon_sym_o_GT] = ACTIONS(1937), - [anon_sym_err_PLUSout_GT] = ACTIONS(1937), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1937), - [anon_sym_o_PLUSe_GT] = ACTIONS(1937), - [anon_sym_e_PLUSo_GT] = ACTIONS(1937), - [anon_sym_err_GT_GT] = ACTIONS(1939), - [anon_sym_out_GT_GT] = ACTIONS(1939), - [anon_sym_e_GT_GT] = ACTIONS(1939), - [anon_sym_o_GT_GT] = ACTIONS(1939), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1939), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1939), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1939), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1939), - [aux_sym_unquoted_token1] = ACTIONS(1937), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1939), - }, - [1496] = { - [sym_cell_path] = STATE(1873), - [sym_path] = STATE(1749), - [sym_comment] = STATE(1496), - [aux_sym_cell_path_repeat1] = STATE(1549), - [ts_builtin_sym_end] = ACTIONS(1947), + [aux_sym_cell_path_repeat1] = STATE(1547), [sym__newline] = ACTIONS(1947), [anon_sym_SEMI] = ACTIONS(1947), [anon_sym_PIPE] = ACTIONS(1947), @@ -222809,10 +223170,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1947), [anon_sym_LBRACK] = ACTIONS(1947), [anon_sym_LPAREN] = ACTIONS(1947), + [anon_sym_RPAREN] = ACTIONS(1947), [anon_sym_DOLLAR] = ACTIONS(1945), [anon_sym_DASH_DASH] = ACTIONS(1947), [anon_sym_DASH2] = ACTIONS(1945), [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_RBRACE] = ACTIONS(1947), [anon_sym_DOT_DOT] = ACTIONS(1945), [anon_sym_DOT_DOT_EQ] = ACTIONS(1947), [anon_sym_DOT_DOT_LT] = ACTIONS(1947), @@ -222838,7 +223201,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1947), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1947), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1947), - [anon_sym_DOT2] = ACTIONS(4750), + [anon_sym_DOT2] = ACTIONS(4760), [anon_sym_err_GT] = ACTIONS(1945), [anon_sym_out_GT] = ACTIONS(1945), [anon_sym_e_GT] = ACTIONS(1945), @@ -222856,774 +223219,574 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1947), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1947), [aux_sym_unquoted_token1] = ACTIONS(1945), - [anon_sym_POUND] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1947), }, + [1494] = { + [sym_cell_path] = STATE(1881), + [sym_path] = STATE(1700), + [sym_comment] = STATE(1494), + [aux_sym_cell_path_repeat1] = STATE(1547), + [sym__newline] = ACTIONS(1863), + [anon_sym_SEMI] = ACTIONS(1863), + [anon_sym_PIPE] = ACTIONS(1863), + [anon_sym_err_GT_PIPE] = ACTIONS(1863), + [anon_sym_out_GT_PIPE] = ACTIONS(1863), + [anon_sym_e_GT_PIPE] = ACTIONS(1863), + [anon_sym_o_GT_PIPE] = ACTIONS(1863), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1863), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1863), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1863), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1863), + [anon_sym_LBRACK] = ACTIONS(1863), + [anon_sym_LPAREN] = ACTIONS(1863), + [anon_sym_RPAREN] = ACTIONS(1863), + [anon_sym_DOLLAR] = ACTIONS(1861), + [anon_sym_DASH_DASH] = ACTIONS(1863), + [anon_sym_DASH2] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(1863), + [anon_sym_RBRACE] = ACTIONS(1863), + [anon_sym_DOT_DOT] = ACTIONS(1861), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1863), + [anon_sym_DOT_DOT_LT] = ACTIONS(1863), + [anon_sym_null] = ACTIONS(1863), + [anon_sym_true] = ACTIONS(1863), + [anon_sym_false] = ACTIONS(1863), + [aux_sym__val_number_decimal_token1] = ACTIONS(1861), + [aux_sym__val_number_decimal_token2] = 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), + [aux_sym__val_number_token4] = ACTIONS(1863), + [aux_sym__val_number_token5] = ACTIONS(1863), + [aux_sym__val_number_token6] = ACTIONS(1863), + [anon_sym_0b] = ACTIONS(1861), + [anon_sym_0o] = ACTIONS(1861), + [anon_sym_0x] = ACTIONS(1861), + [sym_val_date] = ACTIONS(1863), + [anon_sym_DQUOTE] = ACTIONS(1863), + [sym__str_single_quotes] = ACTIONS(1863), + [sym__str_back_ticks] = ACTIONS(1863), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1863), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1863), + [anon_sym_DOT2] = ACTIONS(4760), + [anon_sym_err_GT] = ACTIONS(1861), + [anon_sym_out_GT] = ACTIONS(1861), + [anon_sym_e_GT] = ACTIONS(1861), + [anon_sym_o_GT] = ACTIONS(1861), + [anon_sym_err_PLUSout_GT] = ACTIONS(1861), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1861), + [anon_sym_o_PLUSe_GT] = ACTIONS(1861), + [anon_sym_e_PLUSo_GT] = ACTIONS(1861), + [anon_sym_err_GT_GT] = ACTIONS(1863), + [anon_sym_out_GT_GT] = ACTIONS(1863), + [anon_sym_e_GT_GT] = ACTIONS(1863), + [anon_sym_o_GT_GT] = ACTIONS(1863), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1863), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1863), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1863), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1863), + [aux_sym_unquoted_token1] = ACTIONS(1861), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1863), + }, + [1495] = { + [sym_cell_path] = STATE(1882), + [sym_path] = STATE(1700), + [sym_comment] = STATE(1495), + [aux_sym_cell_path_repeat1] = STATE(1547), + [sym__newline] = ACTIONS(1875), + [anon_sym_SEMI] = ACTIONS(1875), + [anon_sym_PIPE] = ACTIONS(1875), + [anon_sym_err_GT_PIPE] = ACTIONS(1875), + [anon_sym_out_GT_PIPE] = ACTIONS(1875), + [anon_sym_e_GT_PIPE] = ACTIONS(1875), + [anon_sym_o_GT_PIPE] = ACTIONS(1875), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1875), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1875), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1875), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1875), + [anon_sym_LBRACK] = ACTIONS(1875), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_RPAREN] = ACTIONS(1875), + [anon_sym_DOLLAR] = ACTIONS(1873), + [anon_sym_DASH_DASH] = ACTIONS(1875), + [anon_sym_DASH2] = ACTIONS(1873), + [anon_sym_LBRACE] = ACTIONS(1875), + [anon_sym_RBRACE] = ACTIONS(1875), + [anon_sym_DOT_DOT] = ACTIONS(1873), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1875), + [anon_sym_DOT_DOT_LT] = ACTIONS(1875), + [anon_sym_null] = ACTIONS(1875), + [anon_sym_true] = ACTIONS(1875), + [anon_sym_false] = ACTIONS(1875), + [aux_sym__val_number_decimal_token1] = ACTIONS(1873), + [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), + [aux_sym__val_number_token4] = ACTIONS(1875), + [aux_sym__val_number_token5] = ACTIONS(1875), + [aux_sym__val_number_token6] = ACTIONS(1875), + [anon_sym_0b] = ACTIONS(1873), + [anon_sym_0o] = ACTIONS(1873), + [anon_sym_0x] = ACTIONS(1873), + [sym_val_date] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym__str_single_quotes] = ACTIONS(1875), + [sym__str_back_ticks] = ACTIONS(1875), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1875), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1875), + [anon_sym_DOT2] = ACTIONS(4760), + [anon_sym_err_GT] = ACTIONS(1873), + [anon_sym_out_GT] = ACTIONS(1873), + [anon_sym_e_GT] = ACTIONS(1873), + [anon_sym_o_GT] = ACTIONS(1873), + [anon_sym_err_PLUSout_GT] = ACTIONS(1873), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1873), + [anon_sym_o_PLUSe_GT] = ACTIONS(1873), + [anon_sym_e_PLUSo_GT] = ACTIONS(1873), + [anon_sym_err_GT_GT] = ACTIONS(1875), + [anon_sym_out_GT_GT] = ACTIONS(1875), + [anon_sym_e_GT_GT] = ACTIONS(1875), + [anon_sym_o_GT_GT] = ACTIONS(1875), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1875), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1875), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1875), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1875), + [aux_sym_unquoted_token1] = ACTIONS(1873), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1875), + }, + [1496] = { + [sym_cell_path] = STATE(1884), + [sym_path] = STATE(1700), + [sym_comment] = STATE(1496), + [aux_sym_cell_path_repeat1] = STATE(1547), + [sym__newline] = ACTIONS(1883), + [anon_sym_SEMI] = ACTIONS(1883), + [anon_sym_PIPE] = ACTIONS(1883), + [anon_sym_err_GT_PIPE] = ACTIONS(1883), + [anon_sym_out_GT_PIPE] = ACTIONS(1883), + [anon_sym_e_GT_PIPE] = ACTIONS(1883), + [anon_sym_o_GT_PIPE] = ACTIONS(1883), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1883), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1883), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1883), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1883), + [anon_sym_LBRACK] = ACTIONS(1883), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_RPAREN] = ACTIONS(1883), + [anon_sym_DOLLAR] = ACTIONS(1881), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [anon_sym_DASH2] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1883), + [anon_sym_RBRACE] = ACTIONS(1883), + [anon_sym_DOT_DOT] = ACTIONS(1881), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1883), + [anon_sym_DOT_DOT_LT] = ACTIONS(1883), + [anon_sym_null] = ACTIONS(1883), + [anon_sym_true] = ACTIONS(1883), + [anon_sym_false] = ACTIONS(1883), + [aux_sym__val_number_decimal_token1] = ACTIONS(1881), + [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), + [aux_sym__val_number_token4] = ACTIONS(1883), + [aux_sym__val_number_token5] = ACTIONS(1883), + [aux_sym__val_number_token6] = ACTIONS(1883), + [anon_sym_0b] = ACTIONS(1881), + [anon_sym_0o] = ACTIONS(1881), + [anon_sym_0x] = ACTIONS(1881), + [sym_val_date] = ACTIONS(1883), + [anon_sym_DQUOTE] = ACTIONS(1883), + [sym__str_single_quotes] = ACTIONS(1883), + [sym__str_back_ticks] = ACTIONS(1883), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1883), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1883), + [anon_sym_DOT2] = ACTIONS(4760), + [anon_sym_err_GT] = ACTIONS(1881), + [anon_sym_out_GT] = ACTIONS(1881), + [anon_sym_e_GT] = ACTIONS(1881), + [anon_sym_o_GT] = ACTIONS(1881), + [anon_sym_err_PLUSout_GT] = ACTIONS(1881), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1881), + [anon_sym_o_PLUSe_GT] = ACTIONS(1881), + [anon_sym_e_PLUSo_GT] = ACTIONS(1881), + [anon_sym_err_GT_GT] = ACTIONS(1883), + [anon_sym_out_GT_GT] = ACTIONS(1883), + [anon_sym_e_GT_GT] = ACTIONS(1883), + [anon_sym_o_GT_GT] = ACTIONS(1883), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1883), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1883), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1883), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1883), + [aux_sym_unquoted_token1] = ACTIONS(1881), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1883), + }, [1497] = { - [sym_cell_path] = STATE(1826), - [sym_path] = STATE(1749), + [sym_cell_path] = STATE(1887), + [sym_path] = STATE(1700), [sym_comment] = STATE(1497), - [aux_sym_cell_path_repeat1] = STATE(1549), - [ts_builtin_sym_end] = ACTIONS(1951), - [sym__newline] = ACTIONS(1951), - [anon_sym_SEMI] = ACTIONS(1951), - [anon_sym_PIPE] = ACTIONS(1951), - [anon_sym_err_GT_PIPE] = ACTIONS(1951), - [anon_sym_out_GT_PIPE] = ACTIONS(1951), - [anon_sym_e_GT_PIPE] = ACTIONS(1951), - [anon_sym_o_GT_PIPE] = ACTIONS(1951), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1951), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1951), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1951), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1951), - [anon_sym_LBRACK] = ACTIONS(1951), - [anon_sym_LPAREN] = ACTIONS(1951), - [anon_sym_DOLLAR] = ACTIONS(1949), - [anon_sym_DASH_DASH] = ACTIONS(1951), - [anon_sym_DASH2] = ACTIONS(1949), - [anon_sym_LBRACE] = ACTIONS(1951), - [anon_sym_DOT_DOT] = ACTIONS(1949), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1951), - [anon_sym_DOT_DOT_LT] = ACTIONS(1951), - [anon_sym_null] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1951), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(1951), - [aux_sym__val_number_token5] = ACTIONS(1951), - [aux_sym__val_number_token6] = ACTIONS(1951), - [anon_sym_0b] = ACTIONS(1949), - [anon_sym_0o] = ACTIONS(1949), - [anon_sym_0x] = ACTIONS(1949), - [sym_val_date] = ACTIONS(1951), - [anon_sym_DQUOTE] = ACTIONS(1951), - [sym__str_single_quotes] = ACTIONS(1951), - [sym__str_back_ticks] = ACTIONS(1951), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1951), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1951), - [anon_sym_DOT2] = ACTIONS(4750), - [anon_sym_err_GT] = ACTIONS(1949), - [anon_sym_out_GT] = ACTIONS(1949), - [anon_sym_e_GT] = ACTIONS(1949), - [anon_sym_o_GT] = ACTIONS(1949), - [anon_sym_err_PLUSout_GT] = ACTIONS(1949), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1949), - [anon_sym_o_PLUSe_GT] = ACTIONS(1949), - [anon_sym_e_PLUSo_GT] = ACTIONS(1949), - [anon_sym_err_GT_GT] = ACTIONS(1951), - [anon_sym_out_GT_GT] = ACTIONS(1951), - [anon_sym_e_GT_GT] = ACTIONS(1951), - [anon_sym_o_GT_GT] = ACTIONS(1951), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1951), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1951), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1951), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1951), - [aux_sym_unquoted_token1] = ACTIONS(1949), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1951), + [aux_sym_cell_path_repeat1] = STATE(1547), + [sym__newline] = ACTIONS(1887), + [anon_sym_SEMI] = ACTIONS(1887), + [anon_sym_PIPE] = ACTIONS(1887), + [anon_sym_err_GT_PIPE] = ACTIONS(1887), + [anon_sym_out_GT_PIPE] = ACTIONS(1887), + [anon_sym_e_GT_PIPE] = ACTIONS(1887), + [anon_sym_o_GT_PIPE] = ACTIONS(1887), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1887), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1887), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1887), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1887), + [anon_sym_LBRACK] = ACTIONS(1887), + [anon_sym_LPAREN] = ACTIONS(1887), + [anon_sym_RPAREN] = ACTIONS(1887), + [anon_sym_DOLLAR] = ACTIONS(1885), + [anon_sym_DASH_DASH] = ACTIONS(1887), + [anon_sym_DASH2] = ACTIONS(1885), + [anon_sym_LBRACE] = ACTIONS(1887), + [anon_sym_RBRACE] = ACTIONS(1887), + [anon_sym_DOT_DOT] = ACTIONS(1885), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1887), + [anon_sym_DOT_DOT_LT] = ACTIONS(1887), + [anon_sym_null] = ACTIONS(1887), + [anon_sym_true] = ACTIONS(1887), + [anon_sym_false] = ACTIONS(1887), + [aux_sym__val_number_decimal_token1] = ACTIONS(1885), + [aux_sym__val_number_decimal_token2] = ACTIONS(1887), + [aux_sym__val_number_decimal_token3] = ACTIONS(1887), + [aux_sym__val_number_decimal_token4] = ACTIONS(1887), + [aux_sym__val_number_token1] = ACTIONS(1887), + [aux_sym__val_number_token2] = ACTIONS(1887), + [aux_sym__val_number_token3] = ACTIONS(1887), + [aux_sym__val_number_token4] = ACTIONS(1887), + [aux_sym__val_number_token5] = ACTIONS(1887), + [aux_sym__val_number_token6] = ACTIONS(1887), + [anon_sym_0b] = ACTIONS(1885), + [anon_sym_0o] = ACTIONS(1885), + [anon_sym_0x] = ACTIONS(1885), + [sym_val_date] = ACTIONS(1887), + [anon_sym_DQUOTE] = ACTIONS(1887), + [sym__str_single_quotes] = ACTIONS(1887), + [sym__str_back_ticks] = ACTIONS(1887), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1887), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1887), + [anon_sym_DOT2] = ACTIONS(4760), + [anon_sym_err_GT] = ACTIONS(1885), + [anon_sym_out_GT] = ACTIONS(1885), + [anon_sym_e_GT] = ACTIONS(1885), + [anon_sym_o_GT] = ACTIONS(1885), + [anon_sym_err_PLUSout_GT] = ACTIONS(1885), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1885), + [anon_sym_o_PLUSe_GT] = ACTIONS(1885), + [anon_sym_e_PLUSo_GT] = ACTIONS(1885), + [anon_sym_err_GT_GT] = ACTIONS(1887), + [anon_sym_out_GT_GT] = ACTIONS(1887), + [anon_sym_e_GT_GT] = ACTIONS(1887), + [anon_sym_o_GT_GT] = ACTIONS(1887), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1887), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1887), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1887), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1887), + [aux_sym_unquoted_token1] = ACTIONS(1885), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1887), }, [1498] = { + [sym_cell_path] = STATE(1888), + [sym_path] = STATE(1700), [sym_comment] = STATE(1498), - [sym__newline] = ACTIONS(1757), - [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_DASH_DASH] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1755), - [anon_sym_DOT_DOT_LT] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [anon_sym_null] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = 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_err_GT] = ACTIONS(1755), - [anon_sym_out_GT] = ACTIONS(1755), - [anon_sym_e_GT] = ACTIONS(1755), - [anon_sym_o_GT] = ACTIONS(1755), - [anon_sym_err_PLUSout_GT] = ACTIONS(1755), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), - [anon_sym_o_PLUSe_GT] = ACTIONS(1755), - [anon_sym_e_PLUSo_GT] = ACTIONS(1755), - [anon_sym_err_GT_GT] = ACTIONS(1757), - [anon_sym_out_GT_GT] = ACTIONS(1757), - [anon_sym_e_GT_GT] = ACTIONS(1757), - [anon_sym_o_GT_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), - [aux_sym_unquoted_token1] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1757), + [aux_sym_cell_path_repeat1] = STATE(1547), + [sym__newline] = ACTIONS(1891), + [anon_sym_SEMI] = ACTIONS(1891), + [anon_sym_PIPE] = ACTIONS(1891), + [anon_sym_err_GT_PIPE] = ACTIONS(1891), + [anon_sym_out_GT_PIPE] = ACTIONS(1891), + [anon_sym_e_GT_PIPE] = ACTIONS(1891), + [anon_sym_o_GT_PIPE] = ACTIONS(1891), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1891), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1891), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1891), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1891), + [anon_sym_LBRACK] = ACTIONS(1891), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_RPAREN] = ACTIONS(1891), + [anon_sym_DOLLAR] = ACTIONS(1889), + [anon_sym_DASH_DASH] = ACTIONS(1891), + [anon_sym_DASH2] = ACTIONS(1889), + [anon_sym_LBRACE] = ACTIONS(1891), + [anon_sym_RBRACE] = ACTIONS(1891), + [anon_sym_DOT_DOT] = ACTIONS(1889), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1891), + [anon_sym_DOT_DOT_LT] = ACTIONS(1891), + [anon_sym_null] = ACTIONS(1891), + [anon_sym_true] = ACTIONS(1891), + [anon_sym_false] = ACTIONS(1891), + [aux_sym__val_number_decimal_token1] = ACTIONS(1889), + [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), + [aux_sym__val_number_token4] = ACTIONS(1891), + [aux_sym__val_number_token5] = ACTIONS(1891), + [aux_sym__val_number_token6] = ACTIONS(1891), + [anon_sym_0b] = ACTIONS(1889), + [anon_sym_0o] = ACTIONS(1889), + [anon_sym_0x] = ACTIONS(1889), + [sym_val_date] = ACTIONS(1891), + [anon_sym_DQUOTE] = ACTIONS(1891), + [sym__str_single_quotes] = ACTIONS(1891), + [sym__str_back_ticks] = ACTIONS(1891), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1891), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1891), + [anon_sym_DOT2] = ACTIONS(4760), + [anon_sym_err_GT] = ACTIONS(1889), + [anon_sym_out_GT] = ACTIONS(1889), + [anon_sym_e_GT] = ACTIONS(1889), + [anon_sym_o_GT] = ACTIONS(1889), + [anon_sym_err_PLUSout_GT] = ACTIONS(1889), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1889), + [anon_sym_o_PLUSe_GT] = ACTIONS(1889), + [anon_sym_e_PLUSo_GT] = ACTIONS(1889), + [anon_sym_err_GT_GT] = ACTIONS(1891), + [anon_sym_out_GT_GT] = ACTIONS(1891), + [anon_sym_e_GT_GT] = ACTIONS(1891), + [anon_sym_o_GT_GT] = ACTIONS(1891), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1891), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1891), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1891), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1891), + [aux_sym_unquoted_token1] = ACTIONS(1889), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1891), }, [1499] = { - [sym_cell_path] = STATE(1867), - [sym_path] = STATE(1749), + [sym_cell_path] = STATE(1889), + [sym_path] = STATE(1700), [sym_comment] = STATE(1499), - [aux_sym_cell_path_repeat1] = STATE(1549), - [ts_builtin_sym_end] = 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_DASH2] = ACTIONS(1953), - [anon_sym_LBRACE] = ACTIONS(1955), - [anon_sym_DOT_DOT] = ACTIONS(1953), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1955), - [anon_sym_DOT_DOT_LT] = ACTIONS(1955), - [anon_sym_null] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1955), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(1955), - [aux_sym__val_number_token5] = ACTIONS(1955), - [aux_sym__val_number_token6] = 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_DOT2] = ACTIONS(4750), - [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(251), - [sym_raw_string_begin] = ACTIONS(1955), + [aux_sym_cell_path_repeat1] = STATE(1547), + [sym__newline] = ACTIONS(1899), + [anon_sym_SEMI] = ACTIONS(1899), + [anon_sym_PIPE] = ACTIONS(1899), + [anon_sym_err_GT_PIPE] = ACTIONS(1899), + [anon_sym_out_GT_PIPE] = ACTIONS(1899), + [anon_sym_e_GT_PIPE] = ACTIONS(1899), + [anon_sym_o_GT_PIPE] = ACTIONS(1899), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1899), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1899), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1899), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_LPAREN] = ACTIONS(1899), + [anon_sym_RPAREN] = ACTIONS(1899), + [anon_sym_DOLLAR] = ACTIONS(1897), + [anon_sym_DASH_DASH] = ACTIONS(1899), + [anon_sym_DASH2] = ACTIONS(1897), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_RBRACE] = ACTIONS(1899), + [anon_sym_DOT_DOT] = ACTIONS(1897), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1899), + [anon_sym_DOT_DOT_LT] = ACTIONS(1899), + [anon_sym_null] = ACTIONS(1899), + [anon_sym_true] = ACTIONS(1899), + [anon_sym_false] = ACTIONS(1899), + [aux_sym__val_number_decimal_token1] = ACTIONS(1897), + [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), + [aux_sym__val_number_token4] = ACTIONS(1899), + [aux_sym__val_number_token5] = ACTIONS(1899), + [aux_sym__val_number_token6] = ACTIONS(1899), + [anon_sym_0b] = ACTIONS(1897), + [anon_sym_0o] = ACTIONS(1897), + [anon_sym_0x] = ACTIONS(1897), + [sym_val_date] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1899), + [sym__str_single_quotes] = ACTIONS(1899), + [sym__str_back_ticks] = ACTIONS(1899), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1899), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1899), + [anon_sym_DOT2] = ACTIONS(4760), + [anon_sym_err_GT] = ACTIONS(1897), + [anon_sym_out_GT] = ACTIONS(1897), + [anon_sym_e_GT] = ACTIONS(1897), + [anon_sym_o_GT] = ACTIONS(1897), + [anon_sym_err_PLUSout_GT] = ACTIONS(1897), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1897), + [anon_sym_o_PLUSe_GT] = ACTIONS(1897), + [anon_sym_e_PLUSo_GT] = ACTIONS(1897), + [anon_sym_err_GT_GT] = ACTIONS(1899), + [anon_sym_out_GT_GT] = ACTIONS(1899), + [anon_sym_e_GT_GT] = ACTIONS(1899), + [anon_sym_o_GT_GT] = ACTIONS(1899), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1899), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1899), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1899), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1899), + [aux_sym_unquoted_token1] = ACTIONS(1897), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1899), }, [1500] = { - [sym_cell_path] = STATE(1883), - [sym_path] = STATE(1749), + [sym_cell_path] = STATE(1855), + [sym_path] = STATE(1428), [sym_comment] = STATE(1500), - [aux_sym_cell_path_repeat1] = STATE(1549), - [ts_builtin_sym_end] = ACTIONS(1959), - [sym__newline] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1959), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_err_GT_PIPE] = ACTIONS(1959), - [anon_sym_out_GT_PIPE] = ACTIONS(1959), - [anon_sym_e_GT_PIPE] = ACTIONS(1959), - [anon_sym_o_GT_PIPE] = ACTIONS(1959), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1959), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1959), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1959), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1959), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_LPAREN] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1957), - [anon_sym_DASH_DASH] = ACTIONS(1959), - [anon_sym_DASH2] = ACTIONS(1957), - [anon_sym_LBRACE] = ACTIONS(1959), - [anon_sym_DOT_DOT] = ACTIONS(1957), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [anon_sym_null] = ACTIONS(1959), - [anon_sym_true] = ACTIONS(1959), - [anon_sym_false] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1957), - [aux_sym__val_number_decimal_token2] = ACTIONS(1959), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), - [aux_sym__val_number_token1] = ACTIONS(1959), - [aux_sym__val_number_token2] = ACTIONS(1959), - [aux_sym__val_number_token3] = ACTIONS(1959), - [aux_sym__val_number_token4] = ACTIONS(1959), - [aux_sym__val_number_token5] = ACTIONS(1959), - [aux_sym__val_number_token6] = ACTIONS(1959), - [anon_sym_0b] = ACTIONS(1957), - [anon_sym_0o] = ACTIONS(1957), - [anon_sym_0x] = ACTIONS(1957), - [sym_val_date] = ACTIONS(1959), - [anon_sym_DQUOTE] = ACTIONS(1959), - [sym__str_single_quotes] = ACTIONS(1959), - [sym__str_back_ticks] = ACTIONS(1959), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1959), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1959), - [anon_sym_DOT2] = ACTIONS(4750), - [anon_sym_err_GT] = ACTIONS(1957), - [anon_sym_out_GT] = ACTIONS(1957), - [anon_sym_e_GT] = ACTIONS(1957), - [anon_sym_o_GT] = ACTIONS(1957), - [anon_sym_err_PLUSout_GT] = ACTIONS(1957), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1957), - [anon_sym_o_PLUSe_GT] = ACTIONS(1957), - [anon_sym_e_PLUSo_GT] = ACTIONS(1957), - [anon_sym_err_GT_GT] = ACTIONS(1959), - [anon_sym_out_GT_GT] = ACTIONS(1959), - [anon_sym_e_GT_GT] = ACTIONS(1959), - [anon_sym_o_GT_GT] = ACTIONS(1959), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1959), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1959), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1959), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1959), - [aux_sym_unquoted_token1] = ACTIONS(1957), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1959), + [aux_sym_cell_path_repeat1] = STATE(1338), + [sym__newline] = ACTIONS(1863), + [anon_sym_SEMI] = ACTIONS(1863), + [anon_sym_PIPE] = ACTIONS(1863), + [anon_sym_err_GT_PIPE] = ACTIONS(1863), + [anon_sym_out_GT_PIPE] = ACTIONS(1863), + [anon_sym_e_GT_PIPE] = ACTIONS(1863), + [anon_sym_o_GT_PIPE] = ACTIONS(1863), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1863), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1863), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1863), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1863), + [anon_sym_RPAREN] = ACTIONS(1863), + [anon_sym_GT2] = ACTIONS(1861), + [anon_sym_DASH2] = ACTIONS(1863), + [anon_sym_in2] = ACTIONS(1863), + [anon_sym_if] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1863), + [anon_sym_RBRACE] = ACTIONS(1863), + [anon_sym_EQ_GT] = ACTIONS(1863), + [anon_sym_STAR2] = ACTIONS(1861), + [anon_sym_and2] = ACTIONS(1863), + [anon_sym_xor2] = ACTIONS(1863), + [anon_sym_or2] = ACTIONS(1863), + [anon_sym_not_DASHin2] = ACTIONS(1863), + [anon_sym_has2] = ACTIONS(1863), + [anon_sym_not_DASHhas2] = ACTIONS(1863), + [anon_sym_starts_DASHwith2] = ACTIONS(1863), + [anon_sym_ends_DASHwith2] = ACTIONS(1863), + [anon_sym_EQ_EQ2] = ACTIONS(1863), + [anon_sym_BANG_EQ2] = ACTIONS(1863), + [anon_sym_LT2] = ACTIONS(1861), + [anon_sym_LT_EQ2] = ACTIONS(1863), + [anon_sym_GT_EQ2] = ACTIONS(1863), + [anon_sym_EQ_TILDE2] = ACTIONS(1863), + [anon_sym_BANG_TILDE2] = ACTIONS(1863), + [anon_sym_STAR_STAR2] = ACTIONS(1863), + [anon_sym_PLUS_PLUS2] = ACTIONS(1863), + [anon_sym_SLASH2] = ACTIONS(1861), + [anon_sym_mod2] = ACTIONS(1863), + [anon_sym_SLASH_SLASH2] = ACTIONS(1863), + [anon_sym_PLUS2] = ACTIONS(1861), + [anon_sym_bit_DASHshl2] = ACTIONS(1863), + [anon_sym_bit_DASHshr2] = ACTIONS(1863), + [anon_sym_bit_DASHand2] = ACTIONS(1863), + [anon_sym_bit_DASHxor2] = ACTIONS(1863), + [anon_sym_bit_DASHor2] = ACTIONS(1863), + [anon_sym_DOT2] = ACTIONS(4770), + [anon_sym_err_GT] = ACTIONS(1861), + [anon_sym_out_GT] = ACTIONS(1861), + [anon_sym_e_GT] = ACTIONS(1861), + [anon_sym_o_GT] = ACTIONS(1861), + [anon_sym_err_PLUSout_GT] = ACTIONS(1861), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1861), + [anon_sym_o_PLUSe_GT] = ACTIONS(1861), + [anon_sym_e_PLUSo_GT] = ACTIONS(1861), + [anon_sym_err_GT_GT] = ACTIONS(1863), + [anon_sym_out_GT_GT] = ACTIONS(1863), + [anon_sym_e_GT_GT] = ACTIONS(1863), + [anon_sym_o_GT_GT] = ACTIONS(1863), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1863), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1863), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1863), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1863), + [anon_sym_POUND] = ACTIONS(247), }, [1501] = { + [sym_cell_path] = STATE(1891), + [sym_path] = STATE(1700), [sym_comment] = STATE(1501), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1713), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_RPAREN] = ACTIONS(1713), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_DOT_DOT] = ACTIONS(1711), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1711), - [anon_sym_DOT_DOT_LT] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [anon_sym_null] = ACTIONS(1713), - [anon_sym_true] = ACTIONS(1713), - [anon_sym_false] = ACTIONS(1713), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1713), - [aux_sym__val_number_decimal_token3] = ACTIONS(1713), - [aux_sym__val_number_decimal_token4] = ACTIONS(1713), - [aux_sym__val_number_token1] = ACTIONS(1713), - [aux_sym__val_number_token2] = ACTIONS(1713), - [aux_sym__val_number_token3] = ACTIONS(1713), - [aux_sym__val_number_token4] = ACTIONS(1713), - [aux_sym__val_number_token5] = ACTIONS(1713), - [aux_sym__val_number_token6] = ACTIONS(1713), - [anon_sym_0b] = ACTIONS(1711), - [anon_sym_0o] = ACTIONS(1711), - [anon_sym_0x] = ACTIONS(1711), - [sym_val_date] = ACTIONS(1713), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym__str_single_quotes] = ACTIONS(1713), - [sym__str_back_ticks] = ACTIONS(1713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1713), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [aux_sym_unquoted_token1] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1713), + [aux_sym_cell_path_repeat1] = STATE(1547), + [sym__newline] = ACTIONS(1903), + [anon_sym_SEMI] = ACTIONS(1903), + [anon_sym_PIPE] = ACTIONS(1903), + [anon_sym_err_GT_PIPE] = ACTIONS(1903), + [anon_sym_out_GT_PIPE] = ACTIONS(1903), + [anon_sym_e_GT_PIPE] = ACTIONS(1903), + [anon_sym_o_GT_PIPE] = ACTIONS(1903), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1903), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1903), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1903), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1903), + [anon_sym_LPAREN] = ACTIONS(1903), + [anon_sym_RPAREN] = ACTIONS(1903), + [anon_sym_DOLLAR] = ACTIONS(1901), + [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_DASH2] = ACTIONS(1901), + [anon_sym_LBRACE] = ACTIONS(1903), + [anon_sym_RBRACE] = ACTIONS(1903), + [anon_sym_DOT_DOT] = ACTIONS(1901), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1903), + [anon_sym_DOT_DOT_LT] = ACTIONS(1903), + [anon_sym_null] = ACTIONS(1903), + [anon_sym_true] = ACTIONS(1903), + [anon_sym_false] = ACTIONS(1903), + [aux_sym__val_number_decimal_token1] = ACTIONS(1901), + [aux_sym__val_number_decimal_token2] = ACTIONS(1903), + [aux_sym__val_number_decimal_token3] = ACTIONS(1903), + [aux_sym__val_number_decimal_token4] = ACTIONS(1903), + [aux_sym__val_number_token1] = ACTIONS(1903), + [aux_sym__val_number_token2] = ACTIONS(1903), + [aux_sym__val_number_token3] = ACTIONS(1903), + [aux_sym__val_number_token4] = ACTIONS(1903), + [aux_sym__val_number_token5] = ACTIONS(1903), + [aux_sym__val_number_token6] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1901), + [anon_sym_0x] = ACTIONS(1901), + [sym_val_date] = ACTIONS(1903), + [anon_sym_DQUOTE] = ACTIONS(1903), + [sym__str_single_quotes] = ACTIONS(1903), + [sym__str_back_ticks] = ACTIONS(1903), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1903), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1903), + [anon_sym_DOT2] = ACTIONS(4760), + [anon_sym_err_GT] = ACTIONS(1901), + [anon_sym_out_GT] = ACTIONS(1901), + [anon_sym_e_GT] = ACTIONS(1901), + [anon_sym_o_GT] = ACTIONS(1901), + [anon_sym_err_PLUSout_GT] = ACTIONS(1901), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1901), + [anon_sym_o_PLUSe_GT] = ACTIONS(1901), + [anon_sym_e_PLUSo_GT] = ACTIONS(1901), + [anon_sym_err_GT_GT] = ACTIONS(1903), + [anon_sym_out_GT_GT] = ACTIONS(1903), + [anon_sym_e_GT_GT] = ACTIONS(1903), + [anon_sym_o_GT_GT] = ACTIONS(1903), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1903), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1903), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1903), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1903), + [aux_sym_unquoted_token1] = ACTIONS(1901), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1903), }, [1502] = { - [sym_cell_path] = STATE(1886), - [sym_path] = STATE(1749), + [sym_cell_path] = STATE(1892), + [sym_path] = STATE(1700), [sym_comment] = STATE(1502), - [aux_sym_cell_path_repeat1] = STATE(1549), - [ts_builtin_sym_end] = ACTIONS(1963), - [sym__newline] = ACTIONS(1963), - [anon_sym_SEMI] = ACTIONS(1963), - [anon_sym_PIPE] = ACTIONS(1963), - [anon_sym_err_GT_PIPE] = ACTIONS(1963), - [anon_sym_out_GT_PIPE] = ACTIONS(1963), - [anon_sym_e_GT_PIPE] = ACTIONS(1963), - [anon_sym_o_GT_PIPE] = ACTIONS(1963), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1963), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1963), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1963), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_LPAREN] = ACTIONS(1963), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_DASH_DASH] = ACTIONS(1963), - [anon_sym_DASH2] = ACTIONS(1961), - [anon_sym_LBRACE] = ACTIONS(1963), - [anon_sym_DOT_DOT] = ACTIONS(1961), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), - [anon_sym_DOT_DOT_LT] = ACTIONS(1963), - [anon_sym_null] = ACTIONS(1963), - [anon_sym_true] = ACTIONS(1963), - [anon_sym_false] = ACTIONS(1963), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1963), - [aux_sym__val_number_decimal_token4] = ACTIONS(1963), - [aux_sym__val_number_token1] = ACTIONS(1963), - [aux_sym__val_number_token2] = ACTIONS(1963), - [aux_sym__val_number_token3] = ACTIONS(1963), - [aux_sym__val_number_token4] = ACTIONS(1963), - [aux_sym__val_number_token5] = ACTIONS(1963), - [aux_sym__val_number_token6] = ACTIONS(1963), - [anon_sym_0b] = ACTIONS(1961), - [anon_sym_0o] = ACTIONS(1961), - [anon_sym_0x] = ACTIONS(1961), - [sym_val_date] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1963), - [sym__str_single_quotes] = ACTIONS(1963), - [sym__str_back_ticks] = ACTIONS(1963), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1963), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1963), - [anon_sym_DOT2] = ACTIONS(4750), - [anon_sym_err_GT] = ACTIONS(1961), - [anon_sym_out_GT] = ACTIONS(1961), - [anon_sym_e_GT] = ACTIONS(1961), - [anon_sym_o_GT] = ACTIONS(1961), - [anon_sym_err_PLUSout_GT] = ACTIONS(1961), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1961), - [anon_sym_o_PLUSe_GT] = ACTIONS(1961), - [anon_sym_e_PLUSo_GT] = ACTIONS(1961), - [anon_sym_err_GT_GT] = ACTIONS(1963), - [anon_sym_out_GT_GT] = ACTIONS(1963), - [anon_sym_e_GT_GT] = ACTIONS(1963), - [anon_sym_o_GT_GT] = ACTIONS(1963), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1963), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1963), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1963), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1963), - [aux_sym_unquoted_token1] = ACTIONS(1961), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1963), - }, - [1503] = { - [sym_cell_path] = STATE(1887), - [sym_path] = STATE(1749), - [sym_comment] = STATE(1503), - [aux_sym_cell_path_repeat1] = STATE(1549), - [ts_builtin_sym_end] = ACTIONS(1967), - [sym__newline] = ACTIONS(1967), - [anon_sym_SEMI] = ACTIONS(1967), - [anon_sym_PIPE] = ACTIONS(1967), - [anon_sym_err_GT_PIPE] = ACTIONS(1967), - [anon_sym_out_GT_PIPE] = ACTIONS(1967), - [anon_sym_e_GT_PIPE] = ACTIONS(1967), - [anon_sym_o_GT_PIPE] = ACTIONS(1967), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1967), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1967), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1967), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1967), - [anon_sym_LBRACK] = ACTIONS(1967), - [anon_sym_LPAREN] = ACTIONS(1967), - [anon_sym_DOLLAR] = ACTIONS(1965), - [anon_sym_DASH_DASH] = ACTIONS(1967), - [anon_sym_DASH2] = ACTIONS(1965), - [anon_sym_LBRACE] = ACTIONS(1967), - [anon_sym_DOT_DOT] = ACTIONS(1965), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1967), - [anon_sym_DOT_DOT_LT] = ACTIONS(1967), - [anon_sym_null] = ACTIONS(1967), - [anon_sym_true] = ACTIONS(1967), - [anon_sym_false] = ACTIONS(1967), - [aux_sym__val_number_decimal_token1] = ACTIONS(1965), - [aux_sym__val_number_decimal_token2] = ACTIONS(1967), - [aux_sym__val_number_decimal_token3] = ACTIONS(1967), - [aux_sym__val_number_decimal_token4] = ACTIONS(1967), - [aux_sym__val_number_token1] = ACTIONS(1967), - [aux_sym__val_number_token2] = ACTIONS(1967), - [aux_sym__val_number_token3] = ACTIONS(1967), - [aux_sym__val_number_token4] = ACTIONS(1967), - [aux_sym__val_number_token5] = ACTIONS(1967), - [aux_sym__val_number_token6] = ACTIONS(1967), - [anon_sym_0b] = ACTIONS(1965), - [anon_sym_0o] = ACTIONS(1965), - [anon_sym_0x] = ACTIONS(1965), - [sym_val_date] = ACTIONS(1967), - [anon_sym_DQUOTE] = ACTIONS(1967), - [sym__str_single_quotes] = ACTIONS(1967), - [sym__str_back_ticks] = ACTIONS(1967), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1967), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1967), - [anon_sym_DOT2] = ACTIONS(4750), - [anon_sym_err_GT] = ACTIONS(1965), - [anon_sym_out_GT] = ACTIONS(1965), - [anon_sym_e_GT] = ACTIONS(1965), - [anon_sym_o_GT] = ACTIONS(1965), - [anon_sym_err_PLUSout_GT] = ACTIONS(1965), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1965), - [anon_sym_o_PLUSe_GT] = ACTIONS(1965), - [anon_sym_e_PLUSo_GT] = ACTIONS(1965), - [anon_sym_err_GT_GT] = ACTIONS(1967), - [anon_sym_out_GT_GT] = ACTIONS(1967), - [anon_sym_e_GT_GT] = ACTIONS(1967), - [anon_sym_o_GT_GT] = ACTIONS(1967), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1967), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1967), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1967), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1967), - [aux_sym_unquoted_token1] = ACTIONS(1965), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1967), - }, - [1504] = { - [sym_comment] = STATE(1504), - [sym__newline] = ACTIONS(1785), - [anon_sym_SEMI] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(1785), - [anon_sym_err_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_GT_PIPE] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_RPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1783), - [anon_sym_DOT_DOT2] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1783), - [anon_sym_DOT_DOT_LT] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1785), - [anon_sym_null] = ACTIONS(1785), - [anon_sym_true] = ACTIONS(1785), - [anon_sym_false] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(1785), - [aux_sym__val_number_token2] = ACTIONS(1785), - [aux_sym__val_number_token3] = ACTIONS(1785), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_0b] = ACTIONS(1783), - [anon_sym_0o] = ACTIONS(1783), - [anon_sym_0x] = ACTIONS(1783), - [sym_val_date] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1785), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1785), - [anon_sym_err_GT] = ACTIONS(1783), - [anon_sym_out_GT] = ACTIONS(1783), - [anon_sym_e_GT] = ACTIONS(1783), - [anon_sym_o_GT] = ACTIONS(1783), - [anon_sym_err_PLUSout_GT] = ACTIONS(1783), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1783), - [anon_sym_o_PLUSe_GT] = ACTIONS(1783), - [anon_sym_e_PLUSo_GT] = ACTIONS(1783), - [anon_sym_err_GT_GT] = ACTIONS(1785), - [anon_sym_out_GT_GT] = ACTIONS(1785), - [anon_sym_e_GT_GT] = ACTIONS(1785), - [anon_sym_o_GT_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1785), - [aux_sym_unquoted_token1] = ACTIONS(1783), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1785), - }, - [1505] = { - [sym_comment] = STATE(1505), - [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_DASH2] = ACTIONS(1835), - [anon_sym_LBRACE] = ACTIONS(1837), - [anon_sym_RBRACE] = ACTIONS(1837), - [anon_sym_DOT_DOT] = ACTIONS(1835), - [anon_sym_DOT_DOT2] = ACTIONS(1835), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1835), - [anon_sym_DOT_DOT_LT] = ACTIONS(1835), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1837), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1837), - [anon_sym_null] = ACTIONS(1837), - [anon_sym_true] = ACTIONS(1837), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(1837), - [aux_sym__val_number_token5] = ACTIONS(1837), - [aux_sym__val_number_token6] = 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(251), - [sym_raw_string_begin] = ACTIONS(1837), - }, - [1506] = { - [sym_cell_path] = STATE(1830), - [sym_path] = STATE(1749), - [sym_comment] = STATE(1506), - [aux_sym_cell_path_repeat1] = STATE(1549), - [ts_builtin_sym_end] = ACTIONS(1971), - [sym__newline] = ACTIONS(1971), - [anon_sym_SEMI] = ACTIONS(1971), - [anon_sym_PIPE] = ACTIONS(1971), - [anon_sym_err_GT_PIPE] = ACTIONS(1971), - [anon_sym_out_GT_PIPE] = ACTIONS(1971), - [anon_sym_e_GT_PIPE] = ACTIONS(1971), - [anon_sym_o_GT_PIPE] = ACTIONS(1971), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1971), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1971), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1971), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1971), - [anon_sym_LBRACK] = ACTIONS(1971), - [anon_sym_LPAREN] = ACTIONS(1971), - [anon_sym_DOLLAR] = ACTIONS(1969), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DASH2] = ACTIONS(1969), - [anon_sym_LBRACE] = ACTIONS(1971), - [anon_sym_DOT_DOT] = ACTIONS(1969), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1971), - [anon_sym_DOT_DOT_LT] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1971), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [aux_sym__val_number_decimal_token1] = ACTIONS(1969), - [aux_sym__val_number_decimal_token2] = ACTIONS(1971), - [aux_sym__val_number_decimal_token3] = ACTIONS(1971), - [aux_sym__val_number_decimal_token4] = ACTIONS(1971), - [aux_sym__val_number_token1] = ACTIONS(1971), - [aux_sym__val_number_token2] = ACTIONS(1971), - [aux_sym__val_number_token3] = ACTIONS(1971), - [aux_sym__val_number_token4] = ACTIONS(1971), - [aux_sym__val_number_token5] = ACTIONS(1971), - [aux_sym__val_number_token6] = ACTIONS(1971), - [anon_sym_0b] = ACTIONS(1969), - [anon_sym_0o] = ACTIONS(1969), - [anon_sym_0x] = ACTIONS(1969), - [sym_val_date] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1971), - [sym__str_single_quotes] = ACTIONS(1971), - [sym__str_back_ticks] = ACTIONS(1971), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1971), - [anon_sym_DOT2] = ACTIONS(4750), - [anon_sym_err_GT] = ACTIONS(1969), - [anon_sym_out_GT] = ACTIONS(1969), - [anon_sym_e_GT] = ACTIONS(1969), - [anon_sym_o_GT] = ACTIONS(1969), - [anon_sym_err_PLUSout_GT] = ACTIONS(1969), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1969), - [anon_sym_o_PLUSe_GT] = ACTIONS(1969), - [anon_sym_e_PLUSo_GT] = ACTIONS(1969), - [anon_sym_err_GT_GT] = ACTIONS(1971), - [anon_sym_out_GT_GT] = ACTIONS(1971), - [anon_sym_e_GT_GT] = ACTIONS(1971), - [anon_sym_o_GT_GT] = ACTIONS(1971), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1971), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1971), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1971), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1971), - [aux_sym_unquoted_token1] = ACTIONS(1969), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1971), - }, - [1507] = { - [sym_cell_path] = STATE(1831), - [sym_path] = STATE(1749), - [sym_comment] = STATE(1507), - [aux_sym_cell_path_repeat1] = STATE(1549), - [ts_builtin_sym_end] = ACTIONS(1981), - [sym__newline] = ACTIONS(1981), - [anon_sym_SEMI] = ACTIONS(1981), - [anon_sym_PIPE] = ACTIONS(1981), - [anon_sym_err_GT_PIPE] = ACTIONS(1981), - [anon_sym_out_GT_PIPE] = ACTIONS(1981), - [anon_sym_e_GT_PIPE] = ACTIONS(1981), - [anon_sym_o_GT_PIPE] = ACTIONS(1981), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1981), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1981), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1981), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1981), - [anon_sym_LBRACK] = ACTIONS(1981), - [anon_sym_LPAREN] = ACTIONS(1981), - [anon_sym_DOLLAR] = ACTIONS(1979), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_DASH2] = ACTIONS(1979), - [anon_sym_LBRACE] = ACTIONS(1981), - [anon_sym_DOT_DOT] = ACTIONS(1979), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1981), - [anon_sym_DOT_DOT_LT] = ACTIONS(1981), - [anon_sym_null] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(1981), - [anon_sym_false] = ACTIONS(1981), - [aux_sym__val_number_decimal_token1] = ACTIONS(1979), - [aux_sym__val_number_decimal_token2] = ACTIONS(1981), - [aux_sym__val_number_decimal_token3] = ACTIONS(1981), - [aux_sym__val_number_decimal_token4] = ACTIONS(1981), - [aux_sym__val_number_token1] = ACTIONS(1981), - [aux_sym__val_number_token2] = ACTIONS(1981), - [aux_sym__val_number_token3] = ACTIONS(1981), - [aux_sym__val_number_token4] = ACTIONS(1981), - [aux_sym__val_number_token5] = ACTIONS(1981), - [aux_sym__val_number_token6] = ACTIONS(1981), - [anon_sym_0b] = ACTIONS(1979), - [anon_sym_0o] = ACTIONS(1979), - [anon_sym_0x] = ACTIONS(1979), - [sym_val_date] = ACTIONS(1981), - [anon_sym_DQUOTE] = ACTIONS(1981), - [sym__str_single_quotes] = ACTIONS(1981), - [sym__str_back_ticks] = ACTIONS(1981), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1981), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1981), - [anon_sym_DOT2] = ACTIONS(4750), - [anon_sym_err_GT] = ACTIONS(1979), - [anon_sym_out_GT] = ACTIONS(1979), - [anon_sym_e_GT] = ACTIONS(1979), - [anon_sym_o_GT] = ACTIONS(1979), - [anon_sym_err_PLUSout_GT] = ACTIONS(1979), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1979), - [anon_sym_o_PLUSe_GT] = ACTIONS(1979), - [anon_sym_e_PLUSo_GT] = ACTIONS(1979), - [anon_sym_err_GT_GT] = ACTIONS(1981), - [anon_sym_out_GT_GT] = ACTIONS(1981), - [anon_sym_e_GT_GT] = ACTIONS(1981), - [anon_sym_o_GT_GT] = ACTIONS(1981), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1981), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1981), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1981), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1981), - [aux_sym_unquoted_token1] = ACTIONS(1979), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1981), - }, - [1508] = { - [sym_cell_path] = STATE(1834), - [sym_path] = STATE(1749), - [sym_comment] = STATE(1508), - [aux_sym_cell_path_repeat1] = STATE(1549), - [ts_builtin_sym_end] = ACTIONS(1907), + [aux_sym_cell_path_repeat1] = STATE(1547), [sym__newline] = ACTIONS(1907), [anon_sym_SEMI] = ACTIONS(1907), [anon_sym_PIPE] = ACTIONS(1907), @@ -223637,10 +223800,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1907), [anon_sym_LBRACK] = ACTIONS(1907), [anon_sym_LPAREN] = ACTIONS(1907), + [anon_sym_RPAREN] = ACTIONS(1907), [anon_sym_DOLLAR] = ACTIONS(1905), [anon_sym_DASH_DASH] = ACTIONS(1907), [anon_sym_DASH2] = ACTIONS(1905), [anon_sym_LBRACE] = ACTIONS(1907), + [anon_sym_RBRACE] = ACTIONS(1907), [anon_sym_DOT_DOT] = ACTIONS(1905), [anon_sym_DOT_DOT_EQ] = ACTIONS(1907), [anon_sym_DOT_DOT_LT] = ACTIONS(1907), @@ -223666,7 +223831,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1907), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1907), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1907), - [anon_sym_DOT2] = ACTIONS(4750), + [anon_sym_DOT2] = ACTIONS(4760), [anon_sym_err_GT] = ACTIONS(1905), [anon_sym_out_GT] = ACTIONS(1905), [anon_sym_e_GT] = ACTIONS(1905), @@ -223684,1254 +223849,2105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1907), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1907), [aux_sym_unquoted_token1] = ACTIONS(1905), - [anon_sym_POUND] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1907), }, + [1503] = { + [sym_cell_path] = STATE(1857), + [sym_path] = STATE(1428), + [sym_comment] = STATE(1503), + [aux_sym_cell_path_repeat1] = STATE(1338), + [sym__newline] = ACTIONS(1875), + [anon_sym_SEMI] = ACTIONS(1875), + [anon_sym_PIPE] = ACTIONS(1875), + [anon_sym_err_GT_PIPE] = ACTIONS(1875), + [anon_sym_out_GT_PIPE] = ACTIONS(1875), + [anon_sym_e_GT_PIPE] = ACTIONS(1875), + [anon_sym_o_GT_PIPE] = ACTIONS(1875), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1875), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1875), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1875), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1875), + [anon_sym_RPAREN] = ACTIONS(1875), + [anon_sym_GT2] = ACTIONS(1873), + [anon_sym_DASH2] = ACTIONS(1875), + [anon_sym_in2] = ACTIONS(1875), + [anon_sym_if] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1875), + [anon_sym_RBRACE] = ACTIONS(1875), + [anon_sym_EQ_GT] = ACTIONS(1875), + [anon_sym_STAR2] = ACTIONS(1873), + [anon_sym_and2] = ACTIONS(1875), + [anon_sym_xor2] = ACTIONS(1875), + [anon_sym_or2] = ACTIONS(1875), + [anon_sym_not_DASHin2] = ACTIONS(1875), + [anon_sym_has2] = ACTIONS(1875), + [anon_sym_not_DASHhas2] = ACTIONS(1875), + [anon_sym_starts_DASHwith2] = ACTIONS(1875), + [anon_sym_ends_DASHwith2] = ACTIONS(1875), + [anon_sym_EQ_EQ2] = ACTIONS(1875), + [anon_sym_BANG_EQ2] = ACTIONS(1875), + [anon_sym_LT2] = ACTIONS(1873), + [anon_sym_LT_EQ2] = ACTIONS(1875), + [anon_sym_GT_EQ2] = ACTIONS(1875), + [anon_sym_EQ_TILDE2] = ACTIONS(1875), + [anon_sym_BANG_TILDE2] = ACTIONS(1875), + [anon_sym_STAR_STAR2] = ACTIONS(1875), + [anon_sym_PLUS_PLUS2] = ACTIONS(1875), + [anon_sym_SLASH2] = ACTIONS(1873), + [anon_sym_mod2] = ACTIONS(1875), + [anon_sym_SLASH_SLASH2] = ACTIONS(1875), + [anon_sym_PLUS2] = ACTIONS(1873), + [anon_sym_bit_DASHshl2] = ACTIONS(1875), + [anon_sym_bit_DASHshr2] = ACTIONS(1875), + [anon_sym_bit_DASHand2] = ACTIONS(1875), + [anon_sym_bit_DASHxor2] = ACTIONS(1875), + [anon_sym_bit_DASHor2] = ACTIONS(1875), + [anon_sym_DOT2] = ACTIONS(4770), + [anon_sym_err_GT] = ACTIONS(1873), + [anon_sym_out_GT] = ACTIONS(1873), + [anon_sym_e_GT] = ACTIONS(1873), + [anon_sym_o_GT] = ACTIONS(1873), + [anon_sym_err_PLUSout_GT] = ACTIONS(1873), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1873), + [anon_sym_o_PLUSe_GT] = ACTIONS(1873), + [anon_sym_e_PLUSo_GT] = ACTIONS(1873), + [anon_sym_err_GT_GT] = ACTIONS(1875), + [anon_sym_out_GT_GT] = ACTIONS(1875), + [anon_sym_e_GT_GT] = ACTIONS(1875), + [anon_sym_o_GT_GT] = ACTIONS(1875), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1875), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1875), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1875), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1875), + [anon_sym_POUND] = ACTIONS(247), + }, + [1504] = { + [sym_comment] = STATE(1504), + [ts_builtin_sym_end] = ACTIONS(958), + [sym__newline] = ACTIONS(958), + [anon_sym_SEMI] = ACTIONS(958), + [anon_sym_PIPE] = ACTIONS(958), + [anon_sym_err_GT_PIPE] = ACTIONS(958), + [anon_sym_out_GT_PIPE] = ACTIONS(958), + [anon_sym_e_GT_PIPE] = ACTIONS(958), + [anon_sym_o_GT_PIPE] = ACTIONS(958), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(958), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(958), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(958), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(958), + [anon_sym_LBRACK] = ACTIONS(958), + [anon_sym_LPAREN] = ACTIONS(958), + [anon_sym_DOLLAR] = ACTIONS(956), + [anon_sym_DASH_DASH] = ACTIONS(958), + [anon_sym_DASH2] = ACTIONS(956), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_DOT_DOT] = ACTIONS(956), + [anon_sym_QMARK2] = ACTIONS(958), + [anon_sym_DOT_DOT2] = ACTIONS(956), + [anon_sym_DOT_DOT_EQ] = ACTIONS(956), + [anon_sym_DOT_DOT_LT] = ACTIONS(956), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(958), + [anon_sym_DOT_DOT_LT2] = ACTIONS(958), + [anon_sym_null] = ACTIONS(958), + [anon_sym_true] = ACTIONS(958), + [anon_sym_false] = ACTIONS(958), + [aux_sym__val_number_decimal_token1] = ACTIONS(956), + [aux_sym__val_number_decimal_token2] = ACTIONS(958), + [aux_sym__val_number_decimal_token3] = ACTIONS(958), + [aux_sym__val_number_decimal_token4] = ACTIONS(958), + [aux_sym__val_number_token1] = ACTIONS(958), + [aux_sym__val_number_token2] = ACTIONS(958), + [aux_sym__val_number_token3] = ACTIONS(958), + [aux_sym__val_number_token4] = ACTIONS(958), + [aux_sym__val_number_token5] = ACTIONS(958), + [aux_sym__val_number_token6] = ACTIONS(958), + [anon_sym_0b] = ACTIONS(956), + [anon_sym_0o] = ACTIONS(956), + [anon_sym_0x] = ACTIONS(956), + [sym_val_date] = ACTIONS(958), + [anon_sym_DQUOTE] = ACTIONS(958), + [sym__str_single_quotes] = ACTIONS(958), + [sym__str_back_ticks] = ACTIONS(958), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(958), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(958), + [anon_sym_DOT2] = ACTIONS(956), + [anon_sym_err_GT] = ACTIONS(956), + [anon_sym_out_GT] = ACTIONS(956), + [anon_sym_e_GT] = ACTIONS(956), + [anon_sym_o_GT] = ACTIONS(956), + [anon_sym_err_PLUSout_GT] = ACTIONS(956), + [anon_sym_out_PLUSerr_GT] = ACTIONS(956), + [anon_sym_o_PLUSe_GT] = ACTIONS(956), + [anon_sym_e_PLUSo_GT] = ACTIONS(956), + [anon_sym_err_GT_GT] = ACTIONS(958), + [anon_sym_out_GT_GT] = ACTIONS(958), + [anon_sym_e_GT_GT] = ACTIONS(958), + [anon_sym_o_GT_GT] = ACTIONS(958), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(958), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(958), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(958), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(958), + [aux_sym_unquoted_token1] = ACTIONS(956), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(958), + }, + [1505] = { + [sym_comment] = STATE(1505), + [ts_builtin_sym_end] = ACTIONS(1703), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1703), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_DOT_DOT] = ACTIONS(1701), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT] = ACTIONS(4786), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1701), + [anon_sym_DOT_DOT_LT] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(4788), + [anon_sym_null] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1703), + [aux_sym__val_number_token5] = ACTIONS(1703), + [aux_sym__val_number_token6] = ACTIONS(1703), + [anon_sym_0b] = ACTIONS(1701), + [anon_sym_0o] = ACTIONS(1701), + [anon_sym_0x] = ACTIONS(1701), + [sym_val_date] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [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(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token1] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1703), + }, + [1506] = { + [sym_comment] = STATE(1506), + [ts_builtin_sym_end] = ACTIONS(962), + [sym__newline] = ACTIONS(962), + [anon_sym_SEMI] = ACTIONS(962), + [anon_sym_PIPE] = ACTIONS(962), + [anon_sym_err_GT_PIPE] = ACTIONS(962), + [anon_sym_out_GT_PIPE] = ACTIONS(962), + [anon_sym_e_GT_PIPE] = ACTIONS(962), + [anon_sym_o_GT_PIPE] = ACTIONS(962), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(962), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(962), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(962), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(962), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LPAREN] = ACTIONS(962), + [anon_sym_DOLLAR] = ACTIONS(960), + [anon_sym_DASH_DASH] = ACTIONS(962), + [anon_sym_DASH2] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_DOT_DOT] = ACTIONS(960), + [anon_sym_QMARK2] = ACTIONS(962), + [anon_sym_DOT_DOT2] = ACTIONS(960), + [anon_sym_DOT_DOT_EQ] = ACTIONS(960), + [anon_sym_DOT_DOT_LT] = ACTIONS(960), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(962), + [anon_sym_DOT_DOT_LT2] = ACTIONS(962), + [anon_sym_null] = ACTIONS(962), + [anon_sym_true] = ACTIONS(962), + [anon_sym_false] = ACTIONS(962), + [aux_sym__val_number_decimal_token1] = ACTIONS(960), + [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), + [aux_sym__val_number_token4] = ACTIONS(962), + [aux_sym__val_number_token5] = ACTIONS(962), + [aux_sym__val_number_token6] = ACTIONS(962), + [anon_sym_0b] = ACTIONS(960), + [anon_sym_0o] = ACTIONS(960), + [anon_sym_0x] = ACTIONS(960), + [sym_val_date] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(962), + [sym__str_single_quotes] = ACTIONS(962), + [sym__str_back_ticks] = ACTIONS(962), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(962), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(962), + [anon_sym_DOT2] = ACTIONS(960), + [anon_sym_err_GT] = ACTIONS(960), + [anon_sym_out_GT] = ACTIONS(960), + [anon_sym_e_GT] = ACTIONS(960), + [anon_sym_o_GT] = ACTIONS(960), + [anon_sym_err_PLUSout_GT] = ACTIONS(960), + [anon_sym_out_PLUSerr_GT] = ACTIONS(960), + [anon_sym_o_PLUSe_GT] = ACTIONS(960), + [anon_sym_e_PLUSo_GT] = ACTIONS(960), + [anon_sym_err_GT_GT] = ACTIONS(962), + [anon_sym_out_GT_GT] = ACTIONS(962), + [anon_sym_e_GT_GT] = ACTIONS(962), + [anon_sym_o_GT_GT] = ACTIONS(962), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(962), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(962), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(962), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(962), + [aux_sym_unquoted_token1] = ACTIONS(960), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(962), + }, + [1507] = { + [sym_comment] = STATE(1507), + [ts_builtin_sym_end] = ACTIONS(966), + [sym__newline] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_PIPE] = ACTIONS(966), + [anon_sym_err_GT_PIPE] = ACTIONS(966), + [anon_sym_out_GT_PIPE] = ACTIONS(966), + [anon_sym_e_GT_PIPE] = ACTIONS(966), + [anon_sym_o_GT_PIPE] = ACTIONS(966), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(966), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(966), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(964), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_DASH2] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_DOT_DOT] = ACTIONS(964), + [anon_sym_QMARK2] = ACTIONS(966), + [anon_sym_DOT_DOT2] = ACTIONS(964), + [anon_sym_DOT_DOT_EQ] = ACTIONS(964), + [anon_sym_DOT_DOT_LT] = ACTIONS(964), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(966), + [anon_sym_DOT_DOT_LT2] = ACTIONS(966), + [anon_sym_null] = ACTIONS(966), + [anon_sym_true] = ACTIONS(966), + [anon_sym_false] = ACTIONS(966), + [aux_sym__val_number_decimal_token1] = ACTIONS(964), + [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), + [aux_sym__val_number_token4] = ACTIONS(966), + [aux_sym__val_number_token5] = ACTIONS(966), + [aux_sym__val_number_token6] = ACTIONS(966), + [anon_sym_0b] = ACTIONS(964), + [anon_sym_0o] = ACTIONS(964), + [anon_sym_0x] = ACTIONS(964), + [sym_val_date] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym__str_single_quotes] = ACTIONS(966), + [sym__str_back_ticks] = ACTIONS(966), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(966), + [anon_sym_DOT2] = ACTIONS(964), + [anon_sym_err_GT] = ACTIONS(964), + [anon_sym_out_GT] = ACTIONS(964), + [anon_sym_e_GT] = ACTIONS(964), + [anon_sym_o_GT] = ACTIONS(964), + [anon_sym_err_PLUSout_GT] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT] = ACTIONS(964), + [anon_sym_o_PLUSe_GT] = ACTIONS(964), + [anon_sym_e_PLUSo_GT] = ACTIONS(964), + [anon_sym_err_GT_GT] = ACTIONS(966), + [anon_sym_out_GT_GT] = ACTIONS(966), + [anon_sym_e_GT_GT] = ACTIONS(966), + [anon_sym_o_GT_GT] = ACTIONS(966), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(966), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(966), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(966), + [aux_sym_unquoted_token1] = ACTIONS(964), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(966), + }, + [1508] = { + [sym_comment] = STATE(1508), + [ts_builtin_sym_end] = ACTIONS(1824), + [sym__newline] = ACTIONS(1824), + [anon_sym_SEMI] = ACTIONS(1824), + [anon_sym_PIPE] = ACTIONS(1824), + [anon_sym_err_GT_PIPE] = ACTIONS(1824), + [anon_sym_out_GT_PIPE] = ACTIONS(1824), + [anon_sym_e_GT_PIPE] = ACTIONS(1824), + [anon_sym_o_GT_PIPE] = ACTIONS(1824), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1824), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1824), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1824), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1824), + [anon_sym_LBRACK] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_DOLLAR] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1824), + [anon_sym_DASH2] = ACTIONS(1816), + [anon_sym_LBRACE] = ACTIONS(1824), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_DOT_DOT2] = ACTIONS(4790), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1816), + [anon_sym_DOT_DOT_LT] = ACTIONS(1816), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4792), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4792), + [anon_sym_null] = ACTIONS(1824), + [anon_sym_true] = ACTIONS(1824), + [anon_sym_false] = ACTIONS(1824), + [aux_sym__val_number_decimal_token1] = ACTIONS(1816), + [aux_sym__val_number_decimal_token2] = ACTIONS(1824), + [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), + [aux_sym__val_number_token4] = ACTIONS(1824), + [aux_sym__val_number_token5] = ACTIONS(1824), + [aux_sym__val_number_token6] = ACTIONS(1824), + [anon_sym_0b] = ACTIONS(1816), + [anon_sym_0o] = ACTIONS(1816), + [anon_sym_0x] = ACTIONS(1816), + [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_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(1824), + [anon_sym_out_GT_GT] = ACTIONS(1824), + [anon_sym_e_GT_GT] = ACTIONS(1824), + [anon_sym_o_GT_GT] = ACTIONS(1824), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1824), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1824), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1824), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1824), + [aux_sym_unquoted_token1] = ACTIONS(1816), + [aux_sym_unquoted_token2] = ACTIONS(1826), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1824), + }, [1509] = { - [sym_cell_path] = STATE(1840), - [sym_path] = STATE(1749), + [sym_cell_path] = STATE(1859), + [sym_path] = STATE(1428), [sym_comment] = STATE(1509), - [aux_sym_cell_path_repeat1] = STATE(1549), - [ts_builtin_sym_end] = ACTIONS(1985), - [sym__newline] = ACTIONS(1985), - [anon_sym_SEMI] = ACTIONS(1985), - [anon_sym_PIPE] = ACTIONS(1985), - [anon_sym_err_GT_PIPE] = ACTIONS(1985), - [anon_sym_out_GT_PIPE] = ACTIONS(1985), - [anon_sym_e_GT_PIPE] = ACTIONS(1985), - [anon_sym_o_GT_PIPE] = ACTIONS(1985), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1985), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1985), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1985), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1985), - [anon_sym_LBRACK] = ACTIONS(1985), - [anon_sym_LPAREN] = ACTIONS(1985), - [anon_sym_DOLLAR] = ACTIONS(1983), - [anon_sym_DASH_DASH] = ACTIONS(1985), - [anon_sym_DASH2] = ACTIONS(1983), - [anon_sym_LBRACE] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(1983), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1985), - [anon_sym_DOT_DOT_LT] = ACTIONS(1985), - [anon_sym_null] = ACTIONS(1985), - [anon_sym_true] = ACTIONS(1985), - [anon_sym_false] = ACTIONS(1985), - [aux_sym__val_number_decimal_token1] = ACTIONS(1983), - [aux_sym__val_number_decimal_token2] = ACTIONS(1985), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), - [aux_sym__val_number_token1] = ACTIONS(1985), - [aux_sym__val_number_token2] = ACTIONS(1985), - [aux_sym__val_number_token3] = ACTIONS(1985), - [aux_sym__val_number_token4] = ACTIONS(1985), - [aux_sym__val_number_token5] = ACTIONS(1985), - [aux_sym__val_number_token6] = ACTIONS(1985), - [anon_sym_0b] = ACTIONS(1983), - [anon_sym_0o] = ACTIONS(1983), - [anon_sym_0x] = ACTIONS(1983), - [sym_val_date] = ACTIONS(1985), - [anon_sym_DQUOTE] = ACTIONS(1985), - [sym__str_single_quotes] = ACTIONS(1985), - [sym__str_back_ticks] = ACTIONS(1985), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1985), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1985), - [anon_sym_DOT2] = ACTIONS(4750), - [anon_sym_err_GT] = ACTIONS(1983), - [anon_sym_out_GT] = ACTIONS(1983), - [anon_sym_e_GT] = ACTIONS(1983), - [anon_sym_o_GT] = ACTIONS(1983), - [anon_sym_err_PLUSout_GT] = ACTIONS(1983), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1983), - [anon_sym_o_PLUSe_GT] = ACTIONS(1983), - [anon_sym_e_PLUSo_GT] = ACTIONS(1983), - [anon_sym_err_GT_GT] = ACTIONS(1985), - [anon_sym_out_GT_GT] = ACTIONS(1985), - [anon_sym_e_GT_GT] = ACTIONS(1985), - [anon_sym_o_GT_GT] = ACTIONS(1985), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1985), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1985), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1985), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1985), - [aux_sym_unquoted_token1] = ACTIONS(1983), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1985), + [aux_sym_cell_path_repeat1] = STATE(1338), + [sym__newline] = ACTIONS(1883), + [anon_sym_SEMI] = ACTIONS(1883), + [anon_sym_PIPE] = ACTIONS(1883), + [anon_sym_err_GT_PIPE] = ACTIONS(1883), + [anon_sym_out_GT_PIPE] = ACTIONS(1883), + [anon_sym_e_GT_PIPE] = ACTIONS(1883), + [anon_sym_o_GT_PIPE] = ACTIONS(1883), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1883), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1883), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1883), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1883), + [anon_sym_RPAREN] = ACTIONS(1883), + [anon_sym_GT2] = ACTIONS(1881), + [anon_sym_DASH2] = ACTIONS(1883), + [anon_sym_in2] = ACTIONS(1883), + [anon_sym_if] = ACTIONS(1883), + [anon_sym_LBRACE] = ACTIONS(1883), + [anon_sym_RBRACE] = ACTIONS(1883), + [anon_sym_EQ_GT] = ACTIONS(1883), + [anon_sym_STAR2] = ACTIONS(1881), + [anon_sym_and2] = ACTIONS(1883), + [anon_sym_xor2] = ACTIONS(1883), + [anon_sym_or2] = ACTIONS(1883), + [anon_sym_not_DASHin2] = ACTIONS(1883), + [anon_sym_has2] = ACTIONS(1883), + [anon_sym_not_DASHhas2] = ACTIONS(1883), + [anon_sym_starts_DASHwith2] = ACTIONS(1883), + [anon_sym_ends_DASHwith2] = ACTIONS(1883), + [anon_sym_EQ_EQ2] = ACTIONS(1883), + [anon_sym_BANG_EQ2] = ACTIONS(1883), + [anon_sym_LT2] = ACTIONS(1881), + [anon_sym_LT_EQ2] = ACTIONS(1883), + [anon_sym_GT_EQ2] = ACTIONS(1883), + [anon_sym_EQ_TILDE2] = ACTIONS(1883), + [anon_sym_BANG_TILDE2] = ACTIONS(1883), + [anon_sym_STAR_STAR2] = ACTIONS(1883), + [anon_sym_PLUS_PLUS2] = ACTIONS(1883), + [anon_sym_SLASH2] = ACTIONS(1881), + [anon_sym_mod2] = ACTIONS(1883), + [anon_sym_SLASH_SLASH2] = ACTIONS(1883), + [anon_sym_PLUS2] = ACTIONS(1881), + [anon_sym_bit_DASHshl2] = ACTIONS(1883), + [anon_sym_bit_DASHshr2] = ACTIONS(1883), + [anon_sym_bit_DASHand2] = ACTIONS(1883), + [anon_sym_bit_DASHxor2] = ACTIONS(1883), + [anon_sym_bit_DASHor2] = ACTIONS(1883), + [anon_sym_DOT2] = ACTIONS(4770), + [anon_sym_err_GT] = ACTIONS(1881), + [anon_sym_out_GT] = ACTIONS(1881), + [anon_sym_e_GT] = ACTIONS(1881), + [anon_sym_o_GT] = ACTIONS(1881), + [anon_sym_err_PLUSout_GT] = ACTIONS(1881), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1881), + [anon_sym_o_PLUSe_GT] = ACTIONS(1881), + [anon_sym_e_PLUSo_GT] = ACTIONS(1881), + [anon_sym_err_GT_GT] = ACTIONS(1883), + [anon_sym_out_GT_GT] = ACTIONS(1883), + [anon_sym_e_GT_GT] = ACTIONS(1883), + [anon_sym_o_GT_GT] = ACTIONS(1883), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1883), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1883), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1883), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1883), + [anon_sym_POUND] = ACTIONS(247), }, [1510] = { - [sym_cell_path] = STATE(1825), - [sym_path] = STATE(1749), + [sym_cell_path] = STATE(1863), + [sym_path] = STATE(1428), [sym_comment] = STATE(1510), - [aux_sym_cell_path_repeat1] = STATE(1549), - [ts_builtin_sym_end] = 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_DASH2] = ACTIONS(1895), - [anon_sym_LBRACE] = ACTIONS(1897), - [anon_sym_DOT_DOT] = ACTIONS(1895), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1897), - [anon_sym_DOT_DOT_LT] = ACTIONS(1897), - [anon_sym_null] = ACTIONS(1897), - [anon_sym_true] = ACTIONS(1897), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(1897), - [aux_sym__val_number_token5] = ACTIONS(1897), - [aux_sym__val_number_token6] = 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_DOT2] = ACTIONS(4750), - [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(251), - [sym_raw_string_begin] = ACTIONS(1897), + [aux_sym_cell_path_repeat1] = STATE(1338), + [sym__newline] = ACTIONS(1887), + [anon_sym_SEMI] = ACTIONS(1887), + [anon_sym_PIPE] = ACTIONS(1887), + [anon_sym_err_GT_PIPE] = ACTIONS(1887), + [anon_sym_out_GT_PIPE] = ACTIONS(1887), + [anon_sym_e_GT_PIPE] = ACTIONS(1887), + [anon_sym_o_GT_PIPE] = ACTIONS(1887), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1887), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1887), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1887), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1887), + [anon_sym_RPAREN] = ACTIONS(1887), + [anon_sym_GT2] = ACTIONS(1885), + [anon_sym_DASH2] = ACTIONS(1887), + [anon_sym_in2] = ACTIONS(1887), + [anon_sym_if] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1887), + [anon_sym_RBRACE] = ACTIONS(1887), + [anon_sym_EQ_GT] = ACTIONS(1887), + [anon_sym_STAR2] = ACTIONS(1885), + [anon_sym_and2] = ACTIONS(1887), + [anon_sym_xor2] = ACTIONS(1887), + [anon_sym_or2] = ACTIONS(1887), + [anon_sym_not_DASHin2] = ACTIONS(1887), + [anon_sym_has2] = ACTIONS(1887), + [anon_sym_not_DASHhas2] = ACTIONS(1887), + [anon_sym_starts_DASHwith2] = ACTIONS(1887), + [anon_sym_ends_DASHwith2] = ACTIONS(1887), + [anon_sym_EQ_EQ2] = ACTIONS(1887), + [anon_sym_BANG_EQ2] = ACTIONS(1887), + [anon_sym_LT2] = ACTIONS(1885), + [anon_sym_LT_EQ2] = ACTIONS(1887), + [anon_sym_GT_EQ2] = ACTIONS(1887), + [anon_sym_EQ_TILDE2] = ACTIONS(1887), + [anon_sym_BANG_TILDE2] = ACTIONS(1887), + [anon_sym_STAR_STAR2] = ACTIONS(1887), + [anon_sym_PLUS_PLUS2] = ACTIONS(1887), + [anon_sym_SLASH2] = ACTIONS(1885), + [anon_sym_mod2] = ACTIONS(1887), + [anon_sym_SLASH_SLASH2] = ACTIONS(1887), + [anon_sym_PLUS2] = ACTIONS(1885), + [anon_sym_bit_DASHshl2] = ACTIONS(1887), + [anon_sym_bit_DASHshr2] = ACTIONS(1887), + [anon_sym_bit_DASHand2] = ACTIONS(1887), + [anon_sym_bit_DASHxor2] = ACTIONS(1887), + [anon_sym_bit_DASHor2] = ACTIONS(1887), + [anon_sym_DOT2] = ACTIONS(4770), + [anon_sym_err_GT] = ACTIONS(1885), + [anon_sym_out_GT] = ACTIONS(1885), + [anon_sym_e_GT] = ACTIONS(1885), + [anon_sym_o_GT] = ACTIONS(1885), + [anon_sym_err_PLUSout_GT] = ACTIONS(1885), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1885), + [anon_sym_o_PLUSe_GT] = ACTIONS(1885), + [anon_sym_e_PLUSo_GT] = ACTIONS(1885), + [anon_sym_err_GT_GT] = ACTIONS(1887), + [anon_sym_out_GT_GT] = ACTIONS(1887), + [anon_sym_e_GT_GT] = ACTIONS(1887), + [anon_sym_o_GT_GT] = ACTIONS(1887), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1887), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1887), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1887), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1887), + [anon_sym_POUND] = ACTIONS(247), }, [1511] = { + [sym_cell_path] = STATE(1864), + [sym_path] = STATE(1428), [sym_comment] = STATE(1511), - [sym__newline] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1552), - [anon_sym_PIPE] = ACTIONS(1552), - [anon_sym_err_GT_PIPE] = ACTIONS(1552), - [anon_sym_out_GT_PIPE] = ACTIONS(1552), - [anon_sym_e_GT_PIPE] = ACTIONS(1552), - [anon_sym_o_GT_PIPE] = ACTIONS(1552), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1552), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1552), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1552), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1552), - [anon_sym_RPAREN] = ACTIONS(1552), - [anon_sym_GT2] = ACTIONS(1550), - [anon_sym_DASH2] = ACTIONS(1552), - [anon_sym_in2] = ACTIONS(1552), - [anon_sym_RBRACE] = ACTIONS(1552), - [anon_sym_STAR2] = ACTIONS(1550), - [anon_sym_and2] = ACTIONS(1552), - [anon_sym_xor2] = ACTIONS(1552), - [anon_sym_or2] = ACTIONS(1552), - [anon_sym_not_DASHin2] = ACTIONS(1552), - [anon_sym_starts_DASHwith2] = ACTIONS(1552), - [anon_sym_ends_DASHwith2] = ACTIONS(1552), - [anon_sym_EQ_EQ2] = ACTIONS(1552), - [anon_sym_BANG_EQ2] = ACTIONS(1552), - [anon_sym_LT2] = ACTIONS(1550), - [anon_sym_LT_EQ2] = ACTIONS(1552), - [anon_sym_GT_EQ2] = ACTIONS(1552), - [anon_sym_EQ_TILDE2] = ACTIONS(1552), - [anon_sym_BANG_TILDE2] = ACTIONS(1552), - [anon_sym_LPAREN2] = ACTIONS(1552), - [anon_sym_STAR_STAR2] = ACTIONS(1552), - [anon_sym_PLUS_PLUS2] = ACTIONS(1552), - [anon_sym_SLASH2] = ACTIONS(1550), - [anon_sym_mod2] = ACTIONS(1552), - [anon_sym_SLASH_SLASH2] = ACTIONS(1552), - [anon_sym_PLUS2] = ACTIONS(1550), - [anon_sym_bit_DASHshl2] = ACTIONS(1552), - [anon_sym_bit_DASHshr2] = ACTIONS(1552), - [anon_sym_bit_DASHand2] = ACTIONS(1552), - [anon_sym_bit_DASHxor2] = ACTIONS(1552), - [anon_sym_bit_DASHor2] = ACTIONS(1552), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [aux_sym__immediate_decimal_token2] = ACTIONS(4742), - [sym_filesize_unit] = ACTIONS(1550), - [sym_duration_unit] = ACTIONS(1552), - [anon_sym_err_GT] = ACTIONS(1550), - [anon_sym_out_GT] = ACTIONS(1550), - [anon_sym_e_GT] = ACTIONS(1550), - [anon_sym_o_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT] = ACTIONS(1550), - [anon_sym_err_GT_GT] = ACTIONS(1552), - [anon_sym_out_GT_GT] = ACTIONS(1552), - [anon_sym_e_GT_GT] = ACTIONS(1552), - [anon_sym_o_GT_GT] = ACTIONS(1552), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1552), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1552), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1552), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1552), - [aux_sym_unquoted_token2] = ACTIONS(1550), - [anon_sym_POUND] = ACTIONS(251), + [aux_sym_cell_path_repeat1] = STATE(1338), + [sym__newline] = ACTIONS(1891), + [anon_sym_SEMI] = ACTIONS(1891), + [anon_sym_PIPE] = ACTIONS(1891), + [anon_sym_err_GT_PIPE] = ACTIONS(1891), + [anon_sym_out_GT_PIPE] = ACTIONS(1891), + [anon_sym_e_GT_PIPE] = ACTIONS(1891), + [anon_sym_o_GT_PIPE] = ACTIONS(1891), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1891), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1891), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1891), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1891), + [anon_sym_RPAREN] = ACTIONS(1891), + [anon_sym_GT2] = ACTIONS(1889), + [anon_sym_DASH2] = ACTIONS(1891), + [anon_sym_in2] = ACTIONS(1891), + [anon_sym_if] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1891), + [anon_sym_RBRACE] = ACTIONS(1891), + [anon_sym_EQ_GT] = ACTIONS(1891), + [anon_sym_STAR2] = ACTIONS(1889), + [anon_sym_and2] = ACTIONS(1891), + [anon_sym_xor2] = ACTIONS(1891), + [anon_sym_or2] = ACTIONS(1891), + [anon_sym_not_DASHin2] = ACTIONS(1891), + [anon_sym_has2] = ACTIONS(1891), + [anon_sym_not_DASHhas2] = ACTIONS(1891), + [anon_sym_starts_DASHwith2] = ACTIONS(1891), + [anon_sym_ends_DASHwith2] = ACTIONS(1891), + [anon_sym_EQ_EQ2] = ACTIONS(1891), + [anon_sym_BANG_EQ2] = ACTIONS(1891), + [anon_sym_LT2] = ACTIONS(1889), + [anon_sym_LT_EQ2] = ACTIONS(1891), + [anon_sym_GT_EQ2] = ACTIONS(1891), + [anon_sym_EQ_TILDE2] = ACTIONS(1891), + [anon_sym_BANG_TILDE2] = ACTIONS(1891), + [anon_sym_STAR_STAR2] = ACTIONS(1891), + [anon_sym_PLUS_PLUS2] = ACTIONS(1891), + [anon_sym_SLASH2] = ACTIONS(1889), + [anon_sym_mod2] = ACTIONS(1891), + [anon_sym_SLASH_SLASH2] = ACTIONS(1891), + [anon_sym_PLUS2] = ACTIONS(1889), + [anon_sym_bit_DASHshl2] = ACTIONS(1891), + [anon_sym_bit_DASHshr2] = ACTIONS(1891), + [anon_sym_bit_DASHand2] = ACTIONS(1891), + [anon_sym_bit_DASHxor2] = ACTIONS(1891), + [anon_sym_bit_DASHor2] = ACTIONS(1891), + [anon_sym_DOT2] = ACTIONS(4770), + [anon_sym_err_GT] = ACTIONS(1889), + [anon_sym_out_GT] = ACTIONS(1889), + [anon_sym_e_GT] = ACTIONS(1889), + [anon_sym_o_GT] = ACTIONS(1889), + [anon_sym_err_PLUSout_GT] = ACTIONS(1889), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1889), + [anon_sym_o_PLUSe_GT] = ACTIONS(1889), + [anon_sym_e_PLUSo_GT] = ACTIONS(1889), + [anon_sym_err_GT_GT] = ACTIONS(1891), + [anon_sym_out_GT_GT] = ACTIONS(1891), + [anon_sym_e_GT_GT] = ACTIONS(1891), + [anon_sym_o_GT_GT] = ACTIONS(1891), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1891), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1891), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1891), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1891), + [anon_sym_POUND] = ACTIONS(247), }, [1512] = { + [sym_cell_path] = STATE(1866), + [sym_path] = STATE(1428), [sym_comment] = STATE(1512), - [sym__newline] = ACTIONS(1002), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_err_GT_PIPE] = ACTIONS(1002), - [anon_sym_out_GT_PIPE] = ACTIONS(1002), - [anon_sym_e_GT_PIPE] = ACTIONS(1002), - [anon_sym_o_GT_PIPE] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1002), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LPAREN] = ACTIONS(1002), - [anon_sym_RPAREN] = ACTIONS(1002), - [anon_sym_DOLLAR] = ACTIONS(1000), - [anon_sym_DASH_DASH] = ACTIONS(1002), - [anon_sym_DASH2] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1002), - [anon_sym_DOT_DOT] = ACTIONS(1000), - [anon_sym_DOT_DOT2] = ACTIONS(1000), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1000), - [anon_sym_DOT_DOT_LT] = ACTIONS(1000), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1002), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1002), - [anon_sym_null] = ACTIONS(1002), - [anon_sym_true] = ACTIONS(1002), - [anon_sym_false] = ACTIONS(1002), - [aux_sym__val_number_decimal_token1] = ACTIONS(1000), - [aux_sym__val_number_decimal_token2] = ACTIONS(1002), - [aux_sym__val_number_decimal_token3] = ACTIONS(1002), - [aux_sym__val_number_decimal_token4] = ACTIONS(1002), - [aux_sym__val_number_token1] = ACTIONS(1002), - [aux_sym__val_number_token2] = ACTIONS(1002), - [aux_sym__val_number_token3] = ACTIONS(1002), - [aux_sym__val_number_token4] = ACTIONS(1002), - [aux_sym__val_number_token5] = ACTIONS(1002), - [aux_sym__val_number_token6] = ACTIONS(1002), - [anon_sym_0b] = ACTIONS(1000), - [anon_sym_0o] = ACTIONS(1000), - [anon_sym_0x] = ACTIONS(1000), - [sym_val_date] = ACTIONS(1002), - [anon_sym_DQUOTE] = ACTIONS(1002), - [sym__str_single_quotes] = ACTIONS(1002), - [sym__str_back_ticks] = ACTIONS(1002), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), - [anon_sym_err_GT] = ACTIONS(1000), - [anon_sym_out_GT] = ACTIONS(1000), - [anon_sym_e_GT] = ACTIONS(1000), - [anon_sym_o_GT] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT] = ACTIONS(1000), - [anon_sym_err_GT_GT] = ACTIONS(1002), - [anon_sym_out_GT_GT] = ACTIONS(1002), - [anon_sym_e_GT_GT] = ACTIONS(1002), - [anon_sym_o_GT_GT] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1002), - [aux_sym_unquoted_token1] = ACTIONS(1000), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1002), + [aux_sym_cell_path_repeat1] = STATE(1338), + [sym__newline] = ACTIONS(1899), + [anon_sym_SEMI] = ACTIONS(1899), + [anon_sym_PIPE] = ACTIONS(1899), + [anon_sym_err_GT_PIPE] = ACTIONS(1899), + [anon_sym_out_GT_PIPE] = ACTIONS(1899), + [anon_sym_e_GT_PIPE] = ACTIONS(1899), + [anon_sym_o_GT_PIPE] = ACTIONS(1899), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1899), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1899), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1899), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1899), + [anon_sym_RPAREN] = ACTIONS(1899), + [anon_sym_GT2] = ACTIONS(1897), + [anon_sym_DASH2] = ACTIONS(1899), + [anon_sym_in2] = ACTIONS(1899), + [anon_sym_if] = ACTIONS(1899), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_RBRACE] = ACTIONS(1899), + [anon_sym_EQ_GT] = ACTIONS(1899), + [anon_sym_STAR2] = ACTIONS(1897), + [anon_sym_and2] = ACTIONS(1899), + [anon_sym_xor2] = ACTIONS(1899), + [anon_sym_or2] = ACTIONS(1899), + [anon_sym_not_DASHin2] = ACTIONS(1899), + [anon_sym_has2] = ACTIONS(1899), + [anon_sym_not_DASHhas2] = ACTIONS(1899), + [anon_sym_starts_DASHwith2] = ACTIONS(1899), + [anon_sym_ends_DASHwith2] = ACTIONS(1899), + [anon_sym_EQ_EQ2] = ACTIONS(1899), + [anon_sym_BANG_EQ2] = ACTIONS(1899), + [anon_sym_LT2] = ACTIONS(1897), + [anon_sym_LT_EQ2] = ACTIONS(1899), + [anon_sym_GT_EQ2] = ACTIONS(1899), + [anon_sym_EQ_TILDE2] = ACTIONS(1899), + [anon_sym_BANG_TILDE2] = ACTIONS(1899), + [anon_sym_STAR_STAR2] = ACTIONS(1899), + [anon_sym_PLUS_PLUS2] = ACTIONS(1899), + [anon_sym_SLASH2] = ACTIONS(1897), + [anon_sym_mod2] = ACTIONS(1899), + [anon_sym_SLASH_SLASH2] = ACTIONS(1899), + [anon_sym_PLUS2] = ACTIONS(1897), + [anon_sym_bit_DASHshl2] = ACTIONS(1899), + [anon_sym_bit_DASHshr2] = ACTIONS(1899), + [anon_sym_bit_DASHand2] = ACTIONS(1899), + [anon_sym_bit_DASHxor2] = ACTIONS(1899), + [anon_sym_bit_DASHor2] = ACTIONS(1899), + [anon_sym_DOT2] = ACTIONS(4770), + [anon_sym_err_GT] = ACTIONS(1897), + [anon_sym_out_GT] = ACTIONS(1897), + [anon_sym_e_GT] = ACTIONS(1897), + [anon_sym_o_GT] = ACTIONS(1897), + [anon_sym_err_PLUSout_GT] = ACTIONS(1897), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1897), + [anon_sym_o_PLUSe_GT] = ACTIONS(1897), + [anon_sym_e_PLUSo_GT] = ACTIONS(1897), + [anon_sym_err_GT_GT] = ACTIONS(1899), + [anon_sym_out_GT_GT] = ACTIONS(1899), + [anon_sym_e_GT_GT] = ACTIONS(1899), + [anon_sym_o_GT_GT] = ACTIONS(1899), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1899), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1899), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1899), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1899), + [anon_sym_POUND] = ACTIONS(247), }, [1513] = { + [sym_cell_path] = STATE(1867), + [sym_path] = STATE(1428), [sym_comment] = STATE(1513), - [sym__newline] = ACTIONS(4782), - [anon_sym_SEMI] = ACTIONS(4782), - [anon_sym_PIPE] = ACTIONS(4782), - [anon_sym_err_GT_PIPE] = ACTIONS(4782), - [anon_sym_out_GT_PIPE] = ACTIONS(4782), - [anon_sym_e_GT_PIPE] = ACTIONS(4782), - [anon_sym_o_GT_PIPE] = ACTIONS(4782), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4782), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4782), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4782), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4782), - [anon_sym_LBRACK] = ACTIONS(4782), - [anon_sym_LPAREN] = ACTIONS(4782), - [anon_sym_RPAREN] = ACTIONS(4782), - [anon_sym_DOLLAR] = ACTIONS(4784), - [anon_sym_DASH_DASH] = ACTIONS(4782), - [anon_sym_DASH2] = ACTIONS(4784), - [anon_sym_LBRACE] = ACTIONS(4782), - [anon_sym_RBRACE] = ACTIONS(4782), - [anon_sym_DOT_DOT] = ACTIONS(4784), - [anon_sym_DOT_DOT2] = ACTIONS(4786), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4784), - [anon_sym_DOT_DOT_LT] = ACTIONS(4784), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4788), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4788), - [anon_sym_null] = ACTIONS(4782), - [anon_sym_true] = ACTIONS(4782), - [anon_sym_false] = ACTIONS(4782), - [aux_sym__val_number_decimal_token1] = ACTIONS(4784), - [aux_sym__val_number_decimal_token2] = ACTIONS(4782), - [aux_sym__val_number_decimal_token3] = ACTIONS(4782), - [aux_sym__val_number_decimal_token4] = ACTIONS(4782), - [aux_sym__val_number_token1] = ACTIONS(4782), - [aux_sym__val_number_token2] = ACTIONS(4782), - [aux_sym__val_number_token3] = ACTIONS(4782), - [aux_sym__val_number_token4] = ACTIONS(4782), - [aux_sym__val_number_token5] = ACTIONS(4782), - [aux_sym__val_number_token6] = ACTIONS(4782), - [anon_sym_0b] = ACTIONS(4784), - [anon_sym_0o] = ACTIONS(4784), - [anon_sym_0x] = ACTIONS(4784), - [sym_val_date] = ACTIONS(4782), - [anon_sym_DQUOTE] = ACTIONS(4782), - [sym__str_single_quotes] = ACTIONS(4782), - [sym__str_back_ticks] = ACTIONS(4782), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4782), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4782), - [anon_sym_err_GT] = ACTIONS(4784), - [anon_sym_out_GT] = ACTIONS(4784), - [anon_sym_e_GT] = ACTIONS(4784), - [anon_sym_o_GT] = ACTIONS(4784), - [anon_sym_err_PLUSout_GT] = ACTIONS(4784), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4784), - [anon_sym_o_PLUSe_GT] = ACTIONS(4784), - [anon_sym_e_PLUSo_GT] = ACTIONS(4784), - [anon_sym_err_GT_GT] = ACTIONS(4782), - [anon_sym_out_GT_GT] = ACTIONS(4782), - [anon_sym_e_GT_GT] = ACTIONS(4782), - [anon_sym_o_GT_GT] = ACTIONS(4782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4782), - [aux_sym_unquoted_token1] = ACTIONS(4784), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4782), + [aux_sym_cell_path_repeat1] = STATE(1338), + [sym__newline] = ACTIONS(1903), + [anon_sym_SEMI] = ACTIONS(1903), + [anon_sym_PIPE] = ACTIONS(1903), + [anon_sym_err_GT_PIPE] = ACTIONS(1903), + [anon_sym_out_GT_PIPE] = ACTIONS(1903), + [anon_sym_e_GT_PIPE] = ACTIONS(1903), + [anon_sym_o_GT_PIPE] = ACTIONS(1903), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1903), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1903), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1903), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1903), + [anon_sym_RPAREN] = ACTIONS(1903), + [anon_sym_GT2] = ACTIONS(1901), + [anon_sym_DASH2] = ACTIONS(1903), + [anon_sym_in2] = ACTIONS(1903), + [anon_sym_if] = ACTIONS(1903), + [anon_sym_LBRACE] = ACTIONS(1903), + [anon_sym_RBRACE] = ACTIONS(1903), + [anon_sym_EQ_GT] = ACTIONS(1903), + [anon_sym_STAR2] = ACTIONS(1901), + [anon_sym_and2] = ACTIONS(1903), + [anon_sym_xor2] = ACTIONS(1903), + [anon_sym_or2] = ACTIONS(1903), + [anon_sym_not_DASHin2] = ACTIONS(1903), + [anon_sym_has2] = ACTIONS(1903), + [anon_sym_not_DASHhas2] = ACTIONS(1903), + [anon_sym_starts_DASHwith2] = ACTIONS(1903), + [anon_sym_ends_DASHwith2] = ACTIONS(1903), + [anon_sym_EQ_EQ2] = ACTIONS(1903), + [anon_sym_BANG_EQ2] = ACTIONS(1903), + [anon_sym_LT2] = ACTIONS(1901), + [anon_sym_LT_EQ2] = ACTIONS(1903), + [anon_sym_GT_EQ2] = ACTIONS(1903), + [anon_sym_EQ_TILDE2] = ACTIONS(1903), + [anon_sym_BANG_TILDE2] = ACTIONS(1903), + [anon_sym_STAR_STAR2] = ACTIONS(1903), + [anon_sym_PLUS_PLUS2] = ACTIONS(1903), + [anon_sym_SLASH2] = ACTIONS(1901), + [anon_sym_mod2] = ACTIONS(1903), + [anon_sym_SLASH_SLASH2] = ACTIONS(1903), + [anon_sym_PLUS2] = ACTIONS(1901), + [anon_sym_bit_DASHshl2] = ACTIONS(1903), + [anon_sym_bit_DASHshr2] = ACTIONS(1903), + [anon_sym_bit_DASHand2] = ACTIONS(1903), + [anon_sym_bit_DASHxor2] = ACTIONS(1903), + [anon_sym_bit_DASHor2] = ACTIONS(1903), + [anon_sym_DOT2] = ACTIONS(4770), + [anon_sym_err_GT] = ACTIONS(1901), + [anon_sym_out_GT] = ACTIONS(1901), + [anon_sym_e_GT] = ACTIONS(1901), + [anon_sym_o_GT] = ACTIONS(1901), + [anon_sym_err_PLUSout_GT] = ACTIONS(1901), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1901), + [anon_sym_o_PLUSe_GT] = ACTIONS(1901), + [anon_sym_e_PLUSo_GT] = ACTIONS(1901), + [anon_sym_err_GT_GT] = ACTIONS(1903), + [anon_sym_out_GT_GT] = ACTIONS(1903), + [anon_sym_e_GT_GT] = ACTIONS(1903), + [anon_sym_o_GT_GT] = ACTIONS(1903), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1903), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1903), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1903), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1903), + [anon_sym_POUND] = ACTIONS(247), }, [1514] = { [sym_comment] = STATE(1514), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_RPAREN] = ACTIONS(1713), - [anon_sym_GT2] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1713), - [anon_sym_in2] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_STAR2] = ACTIONS(1711), - [anon_sym_and2] = ACTIONS(1713), - [anon_sym_xor2] = ACTIONS(1713), - [anon_sym_or2] = ACTIONS(1713), - [anon_sym_not_DASHin2] = ACTIONS(1713), - [anon_sym_starts_DASHwith2] = ACTIONS(1713), - [anon_sym_ends_DASHwith2] = ACTIONS(1713), - [anon_sym_EQ_EQ2] = ACTIONS(1713), - [anon_sym_BANG_EQ2] = ACTIONS(1713), - [anon_sym_LT2] = ACTIONS(1711), - [anon_sym_LT_EQ2] = ACTIONS(1713), - [anon_sym_GT_EQ2] = ACTIONS(1713), - [anon_sym_EQ_TILDE2] = ACTIONS(1713), - [anon_sym_BANG_TILDE2] = ACTIONS(1713), - [anon_sym_LPAREN2] = ACTIONS(1713), - [anon_sym_STAR_STAR2] = ACTIONS(1713), - [anon_sym_PLUS_PLUS2] = ACTIONS(1713), - [anon_sym_SLASH2] = ACTIONS(1711), - [anon_sym_mod2] = ACTIONS(1713), - [anon_sym_SLASH_SLASH2] = ACTIONS(1713), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_bit_DASHshl2] = ACTIONS(1713), - [anon_sym_bit_DASHshr2] = ACTIONS(1713), - [anon_sym_bit_DASHand2] = ACTIONS(1713), - [anon_sym_bit_DASHxor2] = ACTIONS(1713), - [anon_sym_bit_DASHor2] = ACTIONS(1713), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [aux_sym__immediate_decimal_token1] = ACTIONS(4790), - [aux_sym__immediate_decimal_token2] = ACTIONS(4792), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [aux_sym_unquoted_token2] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(251), + [anon_sym_EQ] = ACTIONS(4794), + [anon_sym_PLUS_EQ] = ACTIONS(4796), + [anon_sym_DASH_EQ] = ACTIONS(4796), + [anon_sym_STAR_EQ] = ACTIONS(4796), + [anon_sym_SLASH_EQ] = ACTIONS(4796), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4796), + [sym__newline] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(998), + [anon_sym_err_GT_PIPE] = ACTIONS(998), + [anon_sym_out_GT_PIPE] = ACTIONS(998), + [anon_sym_e_GT_PIPE] = ACTIONS(998), + [anon_sym_o_GT_PIPE] = ACTIONS(998), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(998), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(998), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(998), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(998), + [anon_sym_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_in2] = ACTIONS(998), + [anon_sym_STAR2] = ACTIONS(1002), + [anon_sym_and2] = ACTIONS(998), + [anon_sym_xor2] = ACTIONS(998), + [anon_sym_or2] = ACTIONS(998), + [anon_sym_not_DASHin2] = ACTIONS(998), + [anon_sym_has2] = ACTIONS(998), + [anon_sym_not_DASHhas2] = ACTIONS(998), + [anon_sym_starts_DASHwith2] = ACTIONS(998), + [anon_sym_ends_DASHwith2] = ACTIONS(998), + [anon_sym_EQ_EQ2] = ACTIONS(998), + [anon_sym_BANG_EQ2] = ACTIONS(998), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ2] = ACTIONS(998), + [anon_sym_GT_EQ2] = ACTIONS(998), + [anon_sym_EQ_TILDE2] = ACTIONS(998), + [anon_sym_BANG_TILDE2] = ACTIONS(998), + [anon_sym_STAR_STAR2] = ACTIONS(998), + [anon_sym_PLUS_PLUS2] = ACTIONS(1002), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(998), + [anon_sym_SLASH_SLASH2] = ACTIONS(998), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_bit_DASHshl2] = ACTIONS(998), + [anon_sym_bit_DASHshr2] = ACTIONS(998), + [anon_sym_bit_DASHand2] = ACTIONS(998), + [anon_sym_bit_DASHxor2] = ACTIONS(998), + [anon_sym_bit_DASHor2] = ACTIONS(998), + [anon_sym_DOT_DOT2] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [anon_sym_err_GT_GT] = ACTIONS(998), + [anon_sym_out_GT_GT] = ACTIONS(998), + [anon_sym_e_GT_GT] = ACTIONS(998), + [anon_sym_o_GT_GT] = ACTIONS(998), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(998), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(998), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(998), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(998), + [anon_sym_POUND] = ACTIONS(247), }, [1515] = { [sym_comment] = STATE(1515), - [ts_builtin_sym_end] = ACTIONS(1757), - [sym__newline] = ACTIONS(1757), - [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(1755), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_DOT] = ACTIONS(4794), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(4796), - [anon_sym_null] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = 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_err_GT] = ACTIONS(1755), - [anon_sym_out_GT] = ACTIONS(1755), - [anon_sym_e_GT] = ACTIONS(1755), - [anon_sym_o_GT] = ACTIONS(1755), - [anon_sym_err_PLUSout_GT] = ACTIONS(1755), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), - [anon_sym_o_PLUSe_GT] = ACTIONS(1755), - [anon_sym_e_PLUSo_GT] = ACTIONS(1755), - [anon_sym_err_GT_GT] = ACTIONS(1757), - [anon_sym_out_GT_GT] = ACTIONS(1757), - [anon_sym_e_GT_GT] = ACTIONS(1757), - [anon_sym_o_GT_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), - [aux_sym_unquoted_token1] = ACTIONS(1755), - [aux_sym_unquoted_token2] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1757), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_RPAREN] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1703), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_DOT_DOT] = ACTIONS(1701), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1701), + [anon_sym_DOT_DOT_LT] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(4677), + [anon_sym_null] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1703), + [aux_sym__val_number_token5] = ACTIONS(1703), + [aux_sym__val_number_token6] = ACTIONS(1703), + [anon_sym_0b] = ACTIONS(1701), + [anon_sym_0o] = ACTIONS(1701), + [anon_sym_0x] = ACTIONS(1701), + [sym_val_date] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [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(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token1] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1703), }, [1516] = { + [sym_cell_path] = STATE(1869), + [sym_path] = STATE(1428), [sym_comment] = STATE(1516), - [sym__newline] = ACTIONS(1721), - [anon_sym_SEMI] = ACTIONS(1721), - [anon_sym_PIPE] = ACTIONS(1721), - [anon_sym_err_GT_PIPE] = ACTIONS(1721), - [anon_sym_out_GT_PIPE] = ACTIONS(1721), - [anon_sym_e_GT_PIPE] = ACTIONS(1721), - [anon_sym_o_GT_PIPE] = ACTIONS(1721), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1721), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1721), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1721), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1721), - [anon_sym_LBRACK] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_RPAREN] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1719), - [anon_sym_DASH_DASH] = ACTIONS(1721), - [anon_sym_DASH2] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1721), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1719), - [anon_sym_DOT_DOT2] = ACTIONS(1719), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1719), - [anon_sym_DOT_DOT_LT] = ACTIONS(1719), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1721), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1721), - [anon_sym_null] = ACTIONS(1721), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [aux_sym__val_number_decimal_token1] = ACTIONS(1719), - [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), - [aux_sym__val_number_token4] = ACTIONS(1721), - [aux_sym__val_number_token5] = ACTIONS(1721), - [aux_sym__val_number_token6] = ACTIONS(1721), - [anon_sym_0b] = ACTIONS(1719), - [anon_sym_0o] = ACTIONS(1719), - [anon_sym_0x] = ACTIONS(1719), - [sym_val_date] = ACTIONS(1721), - [anon_sym_DQUOTE] = ACTIONS(1721), - [sym__str_single_quotes] = ACTIONS(1721), - [sym__str_back_ticks] = ACTIONS(1721), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1721), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1721), - [anon_sym_err_GT] = ACTIONS(1719), - [anon_sym_out_GT] = ACTIONS(1719), - [anon_sym_e_GT] = ACTIONS(1719), - [anon_sym_o_GT] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT] = ACTIONS(1719), - [anon_sym_err_GT_GT] = ACTIONS(1721), - [anon_sym_out_GT_GT] = ACTIONS(1721), - [anon_sym_e_GT_GT] = ACTIONS(1721), - [anon_sym_o_GT_GT] = ACTIONS(1721), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1721), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1721), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1721), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1721), - [aux_sym_unquoted_token1] = ACTIONS(1719), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1721), + [aux_sym_cell_path_repeat1] = STATE(1338), + [sym__newline] = ACTIONS(1907), + [anon_sym_SEMI] = ACTIONS(1907), + [anon_sym_PIPE] = ACTIONS(1907), + [anon_sym_err_GT_PIPE] = ACTIONS(1907), + [anon_sym_out_GT_PIPE] = ACTIONS(1907), + [anon_sym_e_GT_PIPE] = ACTIONS(1907), + [anon_sym_o_GT_PIPE] = ACTIONS(1907), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1907), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1907), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1907), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1907), + [anon_sym_RPAREN] = ACTIONS(1907), + [anon_sym_GT2] = ACTIONS(1905), + [anon_sym_DASH2] = ACTIONS(1907), + [anon_sym_in2] = ACTIONS(1907), + [anon_sym_if] = ACTIONS(1907), + [anon_sym_LBRACE] = ACTIONS(1907), + [anon_sym_RBRACE] = ACTIONS(1907), + [anon_sym_EQ_GT] = ACTIONS(1907), + [anon_sym_STAR2] = ACTIONS(1905), + [anon_sym_and2] = ACTIONS(1907), + [anon_sym_xor2] = ACTIONS(1907), + [anon_sym_or2] = ACTIONS(1907), + [anon_sym_not_DASHin2] = ACTIONS(1907), + [anon_sym_has2] = ACTIONS(1907), + [anon_sym_not_DASHhas2] = ACTIONS(1907), + [anon_sym_starts_DASHwith2] = ACTIONS(1907), + [anon_sym_ends_DASHwith2] = ACTIONS(1907), + [anon_sym_EQ_EQ2] = ACTIONS(1907), + [anon_sym_BANG_EQ2] = ACTIONS(1907), + [anon_sym_LT2] = ACTIONS(1905), + [anon_sym_LT_EQ2] = ACTIONS(1907), + [anon_sym_GT_EQ2] = ACTIONS(1907), + [anon_sym_EQ_TILDE2] = ACTIONS(1907), + [anon_sym_BANG_TILDE2] = ACTIONS(1907), + [anon_sym_STAR_STAR2] = ACTIONS(1907), + [anon_sym_PLUS_PLUS2] = ACTIONS(1907), + [anon_sym_SLASH2] = ACTIONS(1905), + [anon_sym_mod2] = ACTIONS(1907), + [anon_sym_SLASH_SLASH2] = ACTIONS(1907), + [anon_sym_PLUS2] = ACTIONS(1905), + [anon_sym_bit_DASHshl2] = ACTIONS(1907), + [anon_sym_bit_DASHshr2] = ACTIONS(1907), + [anon_sym_bit_DASHand2] = ACTIONS(1907), + [anon_sym_bit_DASHxor2] = ACTIONS(1907), + [anon_sym_bit_DASHor2] = ACTIONS(1907), + [anon_sym_DOT2] = ACTIONS(4770), + [anon_sym_err_GT] = ACTIONS(1905), + [anon_sym_out_GT] = ACTIONS(1905), + [anon_sym_e_GT] = ACTIONS(1905), + [anon_sym_o_GT] = ACTIONS(1905), + [anon_sym_err_PLUSout_GT] = ACTIONS(1905), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1905), + [anon_sym_o_PLUSe_GT] = ACTIONS(1905), + [anon_sym_e_PLUSo_GT] = ACTIONS(1905), + [anon_sym_err_GT_GT] = ACTIONS(1907), + [anon_sym_out_GT_GT] = ACTIONS(1907), + [anon_sym_e_GT_GT] = ACTIONS(1907), + [anon_sym_o_GT_GT] = ACTIONS(1907), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1907), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1907), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1907), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1907), + [anon_sym_POUND] = ACTIONS(247), }, [1517] = { + [sym_cell_path] = STATE(1870), + [sym_path] = STATE(1700), [sym_comment] = STATE(1517), - [anon_sym_EQ] = ACTIONS(4798), - [anon_sym_PLUS_EQ] = ACTIONS(4800), - [anon_sym_DASH_EQ] = ACTIONS(4800), - [anon_sym_STAR_EQ] = ACTIONS(4800), - [anon_sym_SLASH_EQ] = ACTIONS(4800), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4800), - [sym__newline] = ACTIONS(1012), - [anon_sym_SEMI] = ACTIONS(1012), - [anon_sym_PIPE] = ACTIONS(1012), - [anon_sym_err_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_GT_PIPE] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1012), - [anon_sym_RPAREN] = ACTIONS(1012), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_in2] = ACTIONS(1012), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1012), - [anon_sym_xor2] = ACTIONS(1012), - [anon_sym_or2] = ACTIONS(1012), - [anon_sym_not_DASHin2] = ACTIONS(1012), - [anon_sym_starts_DASHwith2] = ACTIONS(1012), - [anon_sym_ends_DASHwith2] = ACTIONS(1012), - [anon_sym_EQ_EQ2] = ACTIONS(1012), - [anon_sym_BANG_EQ2] = ACTIONS(1012), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1012), - [anon_sym_GT_EQ2] = ACTIONS(1012), - [anon_sym_EQ_TILDE2] = ACTIONS(1012), - [anon_sym_BANG_TILDE2] = ACTIONS(1012), - [anon_sym_STAR_STAR2] = ACTIONS(1012), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1012), - [anon_sym_SLASH_SLASH2] = ACTIONS(1012), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1012), - [anon_sym_bit_DASHshr2] = ACTIONS(1012), - [anon_sym_bit_DASHand2] = ACTIONS(1012), - [anon_sym_bit_DASHxor2] = ACTIONS(1012), - [anon_sym_bit_DASHor2] = ACTIONS(1012), - [anon_sym_DOT_DOT2] = ACTIONS(1024), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1026), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1026), - [anon_sym_err_GT] = ACTIONS(1016), - [anon_sym_out_GT] = ACTIONS(1016), - [anon_sym_e_GT] = ACTIONS(1016), - [anon_sym_o_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT] = ACTIONS(1016), - [anon_sym_err_GT_GT] = ACTIONS(1012), - [anon_sym_out_GT_GT] = ACTIONS(1012), - [anon_sym_e_GT_GT] = ACTIONS(1012), - [anon_sym_o_GT_GT] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1012), - [anon_sym_POUND] = ACTIONS(251), + [aux_sym_cell_path_repeat1] = STATE(1547), + [sym__newline] = ACTIONS(1911), + [anon_sym_SEMI] = ACTIONS(1911), + [anon_sym_PIPE] = ACTIONS(1911), + [anon_sym_err_GT_PIPE] = ACTIONS(1911), + [anon_sym_out_GT_PIPE] = ACTIONS(1911), + [anon_sym_e_GT_PIPE] = ACTIONS(1911), + [anon_sym_o_GT_PIPE] = ACTIONS(1911), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1911), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1911), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1911), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1911), + [anon_sym_LBRACK] = ACTIONS(1911), + [anon_sym_LPAREN] = ACTIONS(1911), + [anon_sym_RPAREN] = ACTIONS(1911), + [anon_sym_DOLLAR] = ACTIONS(1909), + [anon_sym_DASH_DASH] = ACTIONS(1911), + [anon_sym_DASH2] = ACTIONS(1909), + [anon_sym_LBRACE] = ACTIONS(1911), + [anon_sym_RBRACE] = ACTIONS(1911), + [anon_sym_DOT_DOT] = ACTIONS(1909), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1911), + [anon_sym_DOT_DOT_LT] = ACTIONS(1911), + [anon_sym_null] = ACTIONS(1911), + [anon_sym_true] = ACTIONS(1911), + [anon_sym_false] = ACTIONS(1911), + [aux_sym__val_number_decimal_token1] = ACTIONS(1909), + [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), + [aux_sym__val_number_token4] = ACTIONS(1911), + [aux_sym__val_number_token5] = ACTIONS(1911), + [aux_sym__val_number_token6] = 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_DOT2] = ACTIONS(4760), + [anon_sym_err_GT] = ACTIONS(1909), + [anon_sym_out_GT] = ACTIONS(1909), + [anon_sym_e_GT] = ACTIONS(1909), + [anon_sym_o_GT] = ACTIONS(1909), + [anon_sym_err_PLUSout_GT] = ACTIONS(1909), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1909), + [anon_sym_o_PLUSe_GT] = ACTIONS(1909), + [anon_sym_e_PLUSo_GT] = ACTIONS(1909), + [anon_sym_err_GT_GT] = ACTIONS(1911), + [anon_sym_out_GT_GT] = ACTIONS(1911), + [anon_sym_e_GT_GT] = ACTIONS(1911), + [anon_sym_o_GT_GT] = ACTIONS(1911), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1911), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1911), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1911), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1911), + [aux_sym_unquoted_token1] = ACTIONS(1909), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1911), }, [1518] = { [sym_comment] = STATE(1518), - [sym__newline] = ACTIONS(1995), - [anon_sym_SEMI] = ACTIONS(1995), - [anon_sym_PIPE] = ACTIONS(1995), - [anon_sym_err_GT_PIPE] = ACTIONS(1995), - [anon_sym_out_GT_PIPE] = ACTIONS(1995), - [anon_sym_e_GT_PIPE] = ACTIONS(1995), - [anon_sym_o_GT_PIPE] = ACTIONS(1995), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1995), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1995), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1995), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1995), - [anon_sym_LBRACK] = ACTIONS(1995), - [anon_sym_LPAREN] = ACTIONS(1995), - [anon_sym_RPAREN] = ACTIONS(1995), - [anon_sym_DOLLAR] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1995), - [anon_sym_DASH2] = ACTIONS(1993), - [anon_sym_LBRACE] = ACTIONS(1995), - [anon_sym_RBRACE] = ACTIONS(1995), - [anon_sym_DOT_DOT] = ACTIONS(1993), - [anon_sym_DOT_DOT2] = ACTIONS(1993), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1993), - [anon_sym_DOT_DOT_LT] = ACTIONS(1993), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1995), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1995), - [anon_sym_null] = ACTIONS(1995), - [anon_sym_true] = ACTIONS(1995), - [anon_sym_false] = ACTIONS(1995), - [aux_sym__val_number_decimal_token1] = ACTIONS(1993), - [aux_sym__val_number_decimal_token2] = ACTIONS(1995), - [aux_sym__val_number_decimal_token3] = ACTIONS(1995), - [aux_sym__val_number_decimal_token4] = ACTIONS(1995), - [aux_sym__val_number_token1] = ACTIONS(1995), - [aux_sym__val_number_token2] = ACTIONS(1995), - [aux_sym__val_number_token3] = ACTIONS(1995), - [aux_sym__val_number_token4] = ACTIONS(1995), - [aux_sym__val_number_token5] = ACTIONS(1995), - [aux_sym__val_number_token6] = ACTIONS(1995), - [anon_sym_0b] = ACTIONS(1993), - [anon_sym_0o] = ACTIONS(1993), - [anon_sym_0x] = ACTIONS(1993), - [sym_val_date] = ACTIONS(1995), - [anon_sym_DQUOTE] = ACTIONS(1995), - [sym__str_single_quotes] = ACTIONS(1995), - [sym__str_back_ticks] = ACTIONS(1995), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1995), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1995), - [anon_sym_err_GT] = ACTIONS(1993), - [anon_sym_out_GT] = ACTIONS(1993), - [anon_sym_e_GT] = ACTIONS(1993), - [anon_sym_o_GT] = ACTIONS(1993), - [anon_sym_err_PLUSout_GT] = ACTIONS(1993), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1993), - [anon_sym_o_PLUSe_GT] = ACTIONS(1993), - [anon_sym_e_PLUSo_GT] = ACTIONS(1993), - [anon_sym_err_GT_GT] = ACTIONS(1995), - [anon_sym_out_GT_GT] = ACTIONS(1995), - [anon_sym_e_GT_GT] = ACTIONS(1995), - [anon_sym_o_GT_GT] = ACTIONS(1995), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1995), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1995), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1995), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1995), - [aux_sym_unquoted_token1] = ACTIONS(1993), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1995), + [sym__newline] = ACTIONS(1620), + [anon_sym_SEMI] = ACTIONS(1620), + [anon_sym_PIPE] = ACTIONS(1620), + [anon_sym_err_GT_PIPE] = ACTIONS(1620), + [anon_sym_out_GT_PIPE] = ACTIONS(1620), + [anon_sym_e_GT_PIPE] = ACTIONS(1620), + [anon_sym_o_GT_PIPE] = ACTIONS(1620), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1620), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1620), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1620), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1620), + [anon_sym_RPAREN] = ACTIONS(1620), + [anon_sym_GT2] = ACTIONS(1618), + [anon_sym_DASH2] = ACTIONS(1620), + [anon_sym_in2] = ACTIONS(1620), + [anon_sym_RBRACE] = ACTIONS(1620), + [anon_sym_STAR2] = ACTIONS(1618), + [anon_sym_and2] = ACTIONS(1620), + [anon_sym_xor2] = ACTIONS(1620), + [anon_sym_or2] = ACTIONS(1620), + [anon_sym_not_DASHin2] = ACTIONS(1620), + [anon_sym_has2] = ACTIONS(1620), + [anon_sym_not_DASHhas2] = ACTIONS(1620), + [anon_sym_starts_DASHwith2] = ACTIONS(1620), + [anon_sym_ends_DASHwith2] = ACTIONS(1620), + [anon_sym_EQ_EQ2] = ACTIONS(1620), + [anon_sym_BANG_EQ2] = ACTIONS(1620), + [anon_sym_LT2] = ACTIONS(1618), + [anon_sym_LT_EQ2] = ACTIONS(1620), + [anon_sym_GT_EQ2] = ACTIONS(1620), + [anon_sym_EQ_TILDE2] = ACTIONS(1620), + [anon_sym_BANG_TILDE2] = ACTIONS(1620), + [anon_sym_LPAREN2] = ACTIONS(1620), + [anon_sym_STAR_STAR2] = ACTIONS(1620), + [anon_sym_PLUS_PLUS2] = ACTIONS(1620), + [anon_sym_SLASH2] = ACTIONS(1618), + [anon_sym_mod2] = ACTIONS(1620), + [anon_sym_SLASH_SLASH2] = ACTIONS(1620), + [anon_sym_PLUS2] = ACTIONS(1618), + [anon_sym_bit_DASHshl2] = ACTIONS(1620), + [anon_sym_bit_DASHshr2] = ACTIONS(1620), + [anon_sym_bit_DASHand2] = ACTIONS(1620), + [anon_sym_bit_DASHxor2] = ACTIONS(1620), + [anon_sym_bit_DASHor2] = ACTIONS(1620), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [sym_filesize_unit] = ACTIONS(1618), + [sym_duration_unit] = ACTIONS(1620), + [anon_sym_err_GT] = ACTIONS(1618), + [anon_sym_out_GT] = ACTIONS(1618), + [anon_sym_e_GT] = ACTIONS(1618), + [anon_sym_o_GT] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT] = ACTIONS(1618), + [anon_sym_err_GT_GT] = ACTIONS(1620), + [anon_sym_out_GT_GT] = ACTIONS(1620), + [anon_sym_e_GT_GT] = ACTIONS(1620), + [anon_sym_o_GT_GT] = ACTIONS(1620), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1620), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1620), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1620), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1620), + [aux_sym_unquoted_token2] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(247), }, [1519] = { [sym_comment] = STATE(1519), - [sym__newline] = ACTIONS(2017), - [anon_sym_SEMI] = ACTIONS(2017), - [anon_sym_PIPE] = ACTIONS(2017), - [anon_sym_err_GT_PIPE] = ACTIONS(2017), - [anon_sym_out_GT_PIPE] = ACTIONS(2017), - [anon_sym_e_GT_PIPE] = ACTIONS(2017), - [anon_sym_o_GT_PIPE] = ACTIONS(2017), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2017), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2017), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2017), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2017), - [anon_sym_LBRACK] = ACTIONS(2017), - [anon_sym_LPAREN] = ACTIONS(2017), - [anon_sym_RPAREN] = ACTIONS(2017), - [anon_sym_DOLLAR] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2017), - [anon_sym_DASH2] = ACTIONS(2015), - [anon_sym_LBRACE] = ACTIONS(2017), - [anon_sym_RBRACE] = ACTIONS(2017), - [anon_sym_DOT_DOT] = ACTIONS(2015), - [anon_sym_DOT_DOT2] = ACTIONS(2015), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2015), - [anon_sym_DOT_DOT_LT] = ACTIONS(2015), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2017), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2017), - [anon_sym_null] = ACTIONS(2017), - [anon_sym_true] = ACTIONS(2017), - [anon_sym_false] = ACTIONS(2017), - [aux_sym__val_number_decimal_token1] = ACTIONS(2015), - [aux_sym__val_number_decimal_token2] = ACTIONS(2017), - [aux_sym__val_number_decimal_token3] = ACTIONS(2017), - [aux_sym__val_number_decimal_token4] = ACTIONS(2017), - [aux_sym__val_number_token1] = ACTIONS(2017), - [aux_sym__val_number_token2] = ACTIONS(2017), - [aux_sym__val_number_token3] = ACTIONS(2017), - [aux_sym__val_number_token4] = ACTIONS(2017), - [aux_sym__val_number_token5] = ACTIONS(2017), - [aux_sym__val_number_token6] = ACTIONS(2017), - [anon_sym_0b] = ACTIONS(2015), - [anon_sym_0o] = ACTIONS(2015), - [anon_sym_0x] = ACTIONS(2015), - [sym_val_date] = ACTIONS(2017), - [anon_sym_DQUOTE] = ACTIONS(2017), - [sym__str_single_quotes] = ACTIONS(2017), - [sym__str_back_ticks] = ACTIONS(2017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2017), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2017), - [anon_sym_err_GT] = ACTIONS(2015), - [anon_sym_out_GT] = ACTIONS(2015), - [anon_sym_e_GT] = ACTIONS(2015), - [anon_sym_o_GT] = ACTIONS(2015), - [anon_sym_err_PLUSout_GT] = ACTIONS(2015), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2015), - [anon_sym_o_PLUSe_GT] = ACTIONS(2015), - [anon_sym_e_PLUSo_GT] = ACTIONS(2015), - [anon_sym_err_GT_GT] = ACTIONS(2017), - [anon_sym_out_GT_GT] = ACTIONS(2017), - [anon_sym_e_GT_GT] = ACTIONS(2017), - [anon_sym_o_GT_GT] = ACTIONS(2017), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2017), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2017), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2017), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2017), - [aux_sym_unquoted_token1] = ACTIONS(2015), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2017), + [sym__newline] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_PIPE] = ACTIONS(1678), + [anon_sym_err_GT_PIPE] = ACTIONS(1678), + [anon_sym_out_GT_PIPE] = ACTIONS(1678), + [anon_sym_e_GT_PIPE] = ACTIONS(1678), + [anon_sym_o_GT_PIPE] = ACTIONS(1678), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1678), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1678), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1678), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1678), + [anon_sym_RPAREN] = ACTIONS(1678), + [anon_sym_GT2] = ACTIONS(1676), + [anon_sym_DASH2] = ACTIONS(1678), + [anon_sym_in2] = ACTIONS(1678), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_RBRACE] = ACTIONS(1678), + [anon_sym_EQ_GT] = ACTIONS(1678), + [anon_sym_STAR2] = ACTIONS(1676), + [anon_sym_and2] = ACTIONS(1678), + [anon_sym_xor2] = ACTIONS(1678), + [anon_sym_or2] = ACTIONS(1678), + [anon_sym_not_DASHin2] = ACTIONS(1678), + [anon_sym_has2] = ACTIONS(1678), + [anon_sym_not_DASHhas2] = ACTIONS(1678), + [anon_sym_starts_DASHwith2] = ACTIONS(1678), + [anon_sym_ends_DASHwith2] = ACTIONS(1678), + [anon_sym_EQ_EQ2] = ACTIONS(1678), + [anon_sym_BANG_EQ2] = ACTIONS(1678), + [anon_sym_LT2] = ACTIONS(1676), + [anon_sym_LT_EQ2] = ACTIONS(1678), + [anon_sym_GT_EQ2] = ACTIONS(1678), + [anon_sym_EQ_TILDE2] = ACTIONS(1678), + [anon_sym_BANG_TILDE2] = ACTIONS(1678), + [anon_sym_STAR_STAR2] = ACTIONS(1678), + [anon_sym_PLUS_PLUS2] = ACTIONS(1678), + [anon_sym_SLASH2] = ACTIONS(1676), + [anon_sym_mod2] = ACTIONS(1678), + [anon_sym_SLASH_SLASH2] = ACTIONS(1678), + [anon_sym_PLUS2] = ACTIONS(1676), + [anon_sym_bit_DASHshl2] = ACTIONS(1678), + [anon_sym_bit_DASHshr2] = ACTIONS(1678), + [anon_sym_bit_DASHand2] = ACTIONS(1678), + [anon_sym_bit_DASHxor2] = ACTIONS(1678), + [anon_sym_bit_DASHor2] = ACTIONS(1678), + [anon_sym_DOT_DOT2] = ACTIONS(1676), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1678), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1678), + [anon_sym_COLON2] = ACTIONS(1678), + [anon_sym_err_GT] = ACTIONS(1676), + [anon_sym_out_GT] = ACTIONS(1676), + [anon_sym_e_GT] = ACTIONS(1676), + [anon_sym_o_GT] = ACTIONS(1676), + [anon_sym_err_PLUSout_GT] = ACTIONS(1676), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1676), + [anon_sym_o_PLUSe_GT] = ACTIONS(1676), + [anon_sym_e_PLUSo_GT] = ACTIONS(1676), + [anon_sym_err_GT_GT] = ACTIONS(1678), + [anon_sym_out_GT_GT] = ACTIONS(1678), + [anon_sym_e_GT_GT] = ACTIONS(1678), + [anon_sym_o_GT_GT] = ACTIONS(1678), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1678), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1678), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1678), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1678), + [anon_sym_POUND] = ACTIONS(247), }, [1520] = { [sym_comment] = STATE(1520), - [sym__newline] = ACTIONS(1999), - [anon_sym_SEMI] = ACTIONS(1999), - [anon_sym_PIPE] = ACTIONS(1999), - [anon_sym_err_GT_PIPE] = ACTIONS(1999), - [anon_sym_out_GT_PIPE] = ACTIONS(1999), - [anon_sym_e_GT_PIPE] = ACTIONS(1999), - [anon_sym_o_GT_PIPE] = ACTIONS(1999), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1999), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1999), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1999), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1999), - [anon_sym_LBRACK] = ACTIONS(1999), - [anon_sym_LPAREN] = ACTIONS(1999), - [anon_sym_RPAREN] = ACTIONS(1999), - [anon_sym_DOLLAR] = ACTIONS(1997), - [anon_sym_DASH_DASH] = ACTIONS(1999), - [anon_sym_DASH2] = ACTIONS(1997), - [anon_sym_LBRACE] = ACTIONS(1999), - [anon_sym_RBRACE] = ACTIONS(1999), - [anon_sym_DOT_DOT] = ACTIONS(1997), - [anon_sym_DOT_DOT2] = ACTIONS(1997), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1997), - [anon_sym_DOT_DOT_LT] = ACTIONS(1997), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1999), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1999), - [anon_sym_null] = ACTIONS(1999), - [anon_sym_true] = ACTIONS(1999), - [anon_sym_false] = ACTIONS(1999), - [aux_sym__val_number_decimal_token1] = ACTIONS(1997), - [aux_sym__val_number_decimal_token2] = ACTIONS(1999), - [aux_sym__val_number_decimal_token3] = ACTIONS(1999), - [aux_sym__val_number_decimal_token4] = ACTIONS(1999), - [aux_sym__val_number_token1] = ACTIONS(1999), - [aux_sym__val_number_token2] = ACTIONS(1999), - [aux_sym__val_number_token3] = ACTIONS(1999), - [aux_sym__val_number_token4] = ACTIONS(1999), - [aux_sym__val_number_token5] = ACTIONS(1999), - [aux_sym__val_number_token6] = ACTIONS(1999), - [anon_sym_0b] = ACTIONS(1997), - [anon_sym_0o] = ACTIONS(1997), - [anon_sym_0x] = ACTIONS(1997), - [sym_val_date] = ACTIONS(1999), - [anon_sym_DQUOTE] = ACTIONS(1999), - [sym__str_single_quotes] = ACTIONS(1999), - [sym__str_back_ticks] = ACTIONS(1999), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1999), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1999), - [anon_sym_err_GT] = ACTIONS(1997), - [anon_sym_out_GT] = ACTIONS(1997), - [anon_sym_e_GT] = ACTIONS(1997), - [anon_sym_o_GT] = ACTIONS(1997), - [anon_sym_err_PLUSout_GT] = ACTIONS(1997), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1997), - [anon_sym_o_PLUSe_GT] = ACTIONS(1997), - [anon_sym_e_PLUSo_GT] = ACTIONS(1997), - [anon_sym_err_GT_GT] = ACTIONS(1999), - [anon_sym_out_GT_GT] = ACTIONS(1999), - [anon_sym_e_GT_GT] = ACTIONS(1999), - [anon_sym_o_GT_GT] = ACTIONS(1999), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1999), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1999), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1999), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1999), - [aux_sym_unquoted_token1] = ACTIONS(1997), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1999), + [anon_sym_EQ] = ACTIONS(4798), + [anon_sym_PLUS_EQ] = ACTIONS(4800), + [anon_sym_DASH_EQ] = ACTIONS(4800), + [anon_sym_STAR_EQ] = ACTIONS(4800), + [anon_sym_SLASH_EQ] = ACTIONS(4800), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4800), + [sym__newline] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(998), + [anon_sym_err_GT_PIPE] = ACTIONS(998), + [anon_sym_out_GT_PIPE] = ACTIONS(998), + [anon_sym_e_GT_PIPE] = ACTIONS(998), + [anon_sym_o_GT_PIPE] = ACTIONS(998), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(998), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(998), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(998), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(998), + [anon_sym_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_in2] = ACTIONS(998), + [anon_sym_STAR2] = ACTIONS(1002), + [anon_sym_and2] = ACTIONS(998), + [anon_sym_xor2] = ACTIONS(998), + [anon_sym_or2] = ACTIONS(998), + [anon_sym_not_DASHin2] = ACTIONS(998), + [anon_sym_has2] = ACTIONS(998), + [anon_sym_not_DASHhas2] = ACTIONS(998), + [anon_sym_starts_DASHwith2] = ACTIONS(998), + [anon_sym_ends_DASHwith2] = ACTIONS(998), + [anon_sym_EQ_EQ2] = ACTIONS(998), + [anon_sym_BANG_EQ2] = ACTIONS(998), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ2] = ACTIONS(998), + [anon_sym_GT_EQ2] = ACTIONS(998), + [anon_sym_EQ_TILDE2] = ACTIONS(998), + [anon_sym_BANG_TILDE2] = ACTIONS(998), + [anon_sym_STAR_STAR2] = ACTIONS(998), + [anon_sym_PLUS_PLUS2] = ACTIONS(1002), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(998), + [anon_sym_SLASH_SLASH2] = ACTIONS(998), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_bit_DASHshl2] = ACTIONS(998), + [anon_sym_bit_DASHshr2] = ACTIONS(998), + [anon_sym_bit_DASHand2] = ACTIONS(998), + [anon_sym_bit_DASHxor2] = ACTIONS(998), + [anon_sym_bit_DASHor2] = ACTIONS(998), + [anon_sym_DOT_DOT2] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [anon_sym_err_GT_GT] = ACTIONS(998), + [anon_sym_out_GT_GT] = ACTIONS(998), + [anon_sym_e_GT_GT] = ACTIONS(998), + [anon_sym_o_GT_GT] = ACTIONS(998), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(998), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(998), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(998), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(998), + [anon_sym_POUND] = ACTIONS(247), }, [1521] = { - [sym__expr_parenthesized_immediate] = STATE(2502), - [sym__immediate_decimal] = STATE(2503), - [sym_val_variable] = STATE(2502), [sym_comment] = STATE(1521), - [ts_builtin_sym_end] = ACTIONS(1510), - [sym__newline] = ACTIONS(1510), - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1510), - [anon_sym_err_GT_PIPE] = ACTIONS(1510), - [anon_sym_out_GT_PIPE] = ACTIONS(1510), - [anon_sym_e_GT_PIPE] = ACTIONS(1510), - [anon_sym_o_GT_PIPE] = ACTIONS(1510), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1510), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1510), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1510), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1510), - [anon_sym_DOLLAR] = ACTIONS(4678), - [anon_sym_GT2] = ACTIONS(1500), - [anon_sym_DASH2] = ACTIONS(1500), - [anon_sym_in2] = ACTIONS(1510), - [anon_sym_STAR2] = ACTIONS(1500), - [anon_sym_and2] = ACTIONS(1510), - [anon_sym_xor2] = ACTIONS(1510), - [anon_sym_or2] = ACTIONS(1510), - [anon_sym_not_DASHin2] = ACTIONS(1510), - [anon_sym_starts_DASHwith2] = ACTIONS(1510), - [anon_sym_ends_DASHwith2] = ACTIONS(1510), - [anon_sym_EQ_EQ2] = ACTIONS(1510), - [anon_sym_BANG_EQ2] = ACTIONS(1510), - [anon_sym_LT2] = ACTIONS(1500), - [anon_sym_LT_EQ2] = ACTIONS(1510), - [anon_sym_GT_EQ2] = ACTIONS(1510), - [anon_sym_EQ_TILDE2] = ACTIONS(1510), - [anon_sym_BANG_TILDE2] = ACTIONS(1510), - [anon_sym_LPAREN2] = ACTIONS(4680), - [anon_sym_STAR_STAR2] = ACTIONS(1510), - [anon_sym_PLUS_PLUS2] = ACTIONS(1510), - [anon_sym_SLASH2] = ACTIONS(1500), - [anon_sym_mod2] = ACTIONS(1510), - [anon_sym_SLASH_SLASH2] = ACTIONS(1510), - [anon_sym_PLUS2] = ACTIONS(1500), - [anon_sym_bit_DASHshl2] = ACTIONS(1510), - [anon_sym_bit_DASHshr2] = ACTIONS(1510), - [anon_sym_bit_DASHand2] = ACTIONS(1510), - [anon_sym_bit_DASHxor2] = ACTIONS(1510), - [anon_sym_bit_DASHor2] = ACTIONS(1510), - [aux_sym__immediate_decimal_token1] = ACTIONS(4802), - [aux_sym__immediate_decimal_token3] = ACTIONS(4802), - [aux_sym__immediate_decimal_token4] = ACTIONS(4686), - [aux_sym__immediate_decimal_token5] = ACTIONS(4688), - [anon_sym_err_GT] = ACTIONS(1500), - [anon_sym_out_GT] = ACTIONS(1500), - [anon_sym_e_GT] = ACTIONS(1500), - [anon_sym_o_GT] = ACTIONS(1500), - [anon_sym_err_PLUSout_GT] = ACTIONS(1500), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1500), - [anon_sym_o_PLUSe_GT] = ACTIONS(1500), - [anon_sym_e_PLUSo_GT] = ACTIONS(1500), - [anon_sym_err_GT_GT] = ACTIONS(1510), - [anon_sym_out_GT_GT] = ACTIONS(1510), - [anon_sym_e_GT_GT] = ACTIONS(1510), - [anon_sym_o_GT_GT] = ACTIONS(1510), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1510), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1510), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1510), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1510), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(2012), + [anon_sym_SEMI] = ACTIONS(2012), + [anon_sym_PIPE] = ACTIONS(2012), + [anon_sym_err_GT_PIPE] = ACTIONS(2012), + [anon_sym_out_GT_PIPE] = ACTIONS(2012), + [anon_sym_e_GT_PIPE] = ACTIONS(2012), + [anon_sym_o_GT_PIPE] = ACTIONS(2012), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2012), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2012), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2012), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2012), + [anon_sym_RPAREN] = ACTIONS(2012), + [anon_sym_GT2] = ACTIONS(2010), + [anon_sym_DASH2] = ACTIONS(2012), + [anon_sym_in2] = ACTIONS(2012), + [anon_sym_if] = ACTIONS(2012), + [anon_sym_LBRACE] = ACTIONS(2012), + [anon_sym_RBRACE] = ACTIONS(2012), + [anon_sym_EQ_GT] = ACTIONS(2012), + [anon_sym_STAR2] = ACTIONS(2010), + [anon_sym_and2] = ACTIONS(2012), + [anon_sym_xor2] = ACTIONS(2012), + [anon_sym_or2] = ACTIONS(2012), + [anon_sym_not_DASHin2] = ACTIONS(2012), + [anon_sym_has2] = ACTIONS(2012), + [anon_sym_not_DASHhas2] = ACTIONS(2012), + [anon_sym_starts_DASHwith2] = ACTIONS(2012), + [anon_sym_ends_DASHwith2] = ACTIONS(2012), + [anon_sym_EQ_EQ2] = ACTIONS(2012), + [anon_sym_BANG_EQ2] = ACTIONS(2012), + [anon_sym_LT2] = ACTIONS(2010), + [anon_sym_LT_EQ2] = ACTIONS(2012), + [anon_sym_GT_EQ2] = ACTIONS(2012), + [anon_sym_EQ_TILDE2] = ACTIONS(2012), + [anon_sym_BANG_TILDE2] = ACTIONS(2012), + [anon_sym_STAR_STAR2] = ACTIONS(2012), + [anon_sym_PLUS_PLUS2] = ACTIONS(2012), + [anon_sym_SLASH2] = ACTIONS(2010), + [anon_sym_mod2] = ACTIONS(2012), + [anon_sym_SLASH_SLASH2] = ACTIONS(2012), + [anon_sym_PLUS2] = ACTIONS(2010), + [anon_sym_bit_DASHshl2] = ACTIONS(2012), + [anon_sym_bit_DASHshr2] = ACTIONS(2012), + [anon_sym_bit_DASHand2] = ACTIONS(2012), + [anon_sym_bit_DASHxor2] = ACTIONS(2012), + [anon_sym_bit_DASHor2] = ACTIONS(2012), + [anon_sym_DOT_DOT2] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2012), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2012), + [anon_sym_COLON2] = ACTIONS(2012), + [anon_sym_err_GT] = ACTIONS(2010), + [anon_sym_out_GT] = ACTIONS(2010), + [anon_sym_e_GT] = ACTIONS(2010), + [anon_sym_o_GT] = ACTIONS(2010), + [anon_sym_err_PLUSout_GT] = ACTIONS(2010), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2010), + [anon_sym_o_PLUSe_GT] = ACTIONS(2010), + [anon_sym_e_PLUSo_GT] = ACTIONS(2010), + [anon_sym_err_GT_GT] = ACTIONS(2012), + [anon_sym_out_GT_GT] = ACTIONS(2012), + [anon_sym_e_GT_GT] = ACTIONS(2012), + [anon_sym_o_GT_GT] = ACTIONS(2012), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2012), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2012), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2012), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2012), + [anon_sym_POUND] = ACTIONS(247), }, [1522] = { - [sym__expr_parenthesized_immediate] = STATE(2452), - [sym__immediate_decimal] = STATE(2562), - [sym_val_variable] = STATE(2452), [sym_comment] = STATE(1522), - [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_DOLLAR] = ACTIONS(4678), - [anon_sym_GT2] = ACTIONS(1461), - [anon_sym_DASH2] = ACTIONS(1461), - [anon_sym_in2] = ACTIONS(1475), - [anon_sym_STAR2] = ACTIONS(1461), - [anon_sym_and2] = ACTIONS(1475), - [anon_sym_xor2] = ACTIONS(1475), - [anon_sym_or2] = ACTIONS(1475), - [anon_sym_not_DASHin2] = ACTIONS(1475), - [anon_sym_starts_DASHwith2] = ACTIONS(1475), - [anon_sym_ends_DASHwith2] = ACTIONS(1475), - [anon_sym_EQ_EQ2] = ACTIONS(1475), - [anon_sym_BANG_EQ2] = ACTIONS(1475), - [anon_sym_LT2] = ACTIONS(1461), - [anon_sym_LT_EQ2] = ACTIONS(1475), - [anon_sym_GT_EQ2] = ACTIONS(1475), - [anon_sym_EQ_TILDE2] = ACTIONS(1475), - [anon_sym_BANG_TILDE2] = ACTIONS(1475), - [anon_sym_LPAREN2] = ACTIONS(4680), - [anon_sym_STAR_STAR2] = ACTIONS(1475), - [anon_sym_PLUS_PLUS2] = ACTIONS(1475), - [anon_sym_SLASH2] = ACTIONS(1461), - [anon_sym_mod2] = ACTIONS(1475), - [anon_sym_SLASH_SLASH2] = ACTIONS(1475), - [anon_sym_PLUS2] = ACTIONS(1461), - [anon_sym_bit_DASHshl2] = ACTIONS(1475), - [anon_sym_bit_DASHshr2] = ACTIONS(1475), - [anon_sym_bit_DASHand2] = ACTIONS(1475), - [anon_sym_bit_DASHxor2] = ACTIONS(1475), - [anon_sym_bit_DASHor2] = ACTIONS(1475), - [aux_sym__immediate_decimal_token1] = ACTIONS(4802), - [aux_sym__immediate_decimal_token3] = ACTIONS(4802), - [aux_sym__immediate_decimal_token4] = ACTIONS(4686), - [aux_sym__immediate_decimal_token5] = ACTIONS(4688), - [anon_sym_err_GT] = ACTIONS(1461), - [anon_sym_out_GT] = ACTIONS(1461), - [anon_sym_e_GT] = ACTIONS(1461), - [anon_sym_o_GT] = ACTIONS(1461), - [anon_sym_err_PLUSout_GT] = ACTIONS(1461), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1461), - [anon_sym_o_PLUSe_GT] = ACTIONS(1461), - [anon_sym_e_PLUSo_GT] = ACTIONS(1461), - [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(251), + [sym__newline] = ACTIONS(1691), + [anon_sym_SEMI] = ACTIONS(1691), + [anon_sym_PIPE] = ACTIONS(1691), + [anon_sym_err_GT_PIPE] = ACTIONS(1691), + [anon_sym_out_GT_PIPE] = ACTIONS(1691), + [anon_sym_e_GT_PIPE] = ACTIONS(1691), + [anon_sym_o_GT_PIPE] = ACTIONS(1691), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1691), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1691), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1691), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1691), + [anon_sym_RPAREN] = ACTIONS(1691), + [anon_sym_GT2] = ACTIONS(1689), + [anon_sym_DASH2] = ACTIONS(1691), + [anon_sym_in2] = ACTIONS(1691), + [anon_sym_RBRACE] = ACTIONS(1691), + [anon_sym_STAR2] = ACTIONS(1689), + [anon_sym_and2] = ACTIONS(1691), + [anon_sym_xor2] = ACTIONS(1691), + [anon_sym_or2] = ACTIONS(1691), + [anon_sym_not_DASHin2] = ACTIONS(1691), + [anon_sym_has2] = ACTIONS(1691), + [anon_sym_not_DASHhas2] = ACTIONS(1691), + [anon_sym_starts_DASHwith2] = ACTIONS(1691), + [anon_sym_ends_DASHwith2] = ACTIONS(1691), + [anon_sym_EQ_EQ2] = ACTIONS(1691), + [anon_sym_BANG_EQ2] = ACTIONS(1691), + [anon_sym_LT2] = ACTIONS(1689), + [anon_sym_LT_EQ2] = ACTIONS(1691), + [anon_sym_GT_EQ2] = ACTIONS(1691), + [anon_sym_EQ_TILDE2] = ACTIONS(1691), + [anon_sym_BANG_TILDE2] = ACTIONS(1691), + [anon_sym_LPAREN2] = ACTIONS(1691), + [anon_sym_STAR_STAR2] = ACTIONS(1691), + [anon_sym_PLUS_PLUS2] = ACTIONS(1691), + [anon_sym_SLASH2] = ACTIONS(1689), + [anon_sym_mod2] = ACTIONS(1691), + [anon_sym_SLASH_SLASH2] = ACTIONS(1691), + [anon_sym_PLUS2] = ACTIONS(1689), + [anon_sym_bit_DASHshl2] = ACTIONS(1691), + [anon_sym_bit_DASHshr2] = ACTIONS(1691), + [anon_sym_bit_DASHand2] = ACTIONS(1691), + [anon_sym_bit_DASHxor2] = ACTIONS(1691), + [anon_sym_bit_DASHor2] = ACTIONS(1691), + [anon_sym_DOT_DOT2] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1691), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1691), + [sym_filesize_unit] = ACTIONS(1689), + [sym_duration_unit] = ACTIONS(1691), + [anon_sym_err_GT] = ACTIONS(1689), + [anon_sym_out_GT] = ACTIONS(1689), + [anon_sym_e_GT] = ACTIONS(1689), + [anon_sym_o_GT] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT] = ACTIONS(1689), + [anon_sym_err_GT_GT] = ACTIONS(1691), + [anon_sym_out_GT_GT] = ACTIONS(1691), + [anon_sym_e_GT_GT] = ACTIONS(1691), + [anon_sym_o_GT_GT] = ACTIONS(1691), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1691), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1691), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1691), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1691), + [aux_sym_unquoted_token2] = ACTIONS(1689), + [anon_sym_POUND] = ACTIONS(247), }, [1523] = { [sym_comment] = STATE(1523), - [ts_builtin_sym_end] = ACTIONS(1012), - [anon_sym_EQ] = ACTIONS(4804), - [anon_sym_PLUS_EQ] = ACTIONS(4806), - [anon_sym_DASH_EQ] = ACTIONS(4806), - [anon_sym_STAR_EQ] = ACTIONS(4806), - [anon_sym_SLASH_EQ] = ACTIONS(4806), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4806), - [sym__newline] = ACTIONS(1012), - [anon_sym_SEMI] = ACTIONS(1012), - [anon_sym_PIPE] = ACTIONS(1012), - [anon_sym_err_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_GT_PIPE] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1012), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_in2] = ACTIONS(1012), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1012), - [anon_sym_xor2] = ACTIONS(1012), - [anon_sym_or2] = ACTIONS(1012), - [anon_sym_not_DASHin2] = ACTIONS(1012), - [anon_sym_starts_DASHwith2] = ACTIONS(1012), - [anon_sym_ends_DASHwith2] = ACTIONS(1012), - [anon_sym_EQ_EQ2] = ACTIONS(1012), - [anon_sym_BANG_EQ2] = ACTIONS(1012), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1012), - [anon_sym_GT_EQ2] = ACTIONS(1012), - [anon_sym_EQ_TILDE2] = ACTIONS(1012), - [anon_sym_BANG_TILDE2] = ACTIONS(1012), - [anon_sym_STAR_STAR2] = ACTIONS(1012), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1012), - [anon_sym_SLASH_SLASH2] = ACTIONS(1012), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1012), - [anon_sym_bit_DASHshr2] = ACTIONS(1012), - [anon_sym_bit_DASHand2] = ACTIONS(1012), - [anon_sym_bit_DASHxor2] = ACTIONS(1012), - [anon_sym_bit_DASHor2] = ACTIONS(1012), - [anon_sym_DOT_DOT2] = ACTIONS(4808), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4810), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4810), - [anon_sym_err_GT] = ACTIONS(1016), - [anon_sym_out_GT] = ACTIONS(1016), - [anon_sym_e_GT] = ACTIONS(1016), - [anon_sym_o_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT] = ACTIONS(1016), - [anon_sym_err_GT_GT] = ACTIONS(1012), - [anon_sym_out_GT_GT] = ACTIONS(1012), - [anon_sym_e_GT_GT] = ACTIONS(1012), - [anon_sym_o_GT_GT] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1012), - [anon_sym_POUND] = ACTIONS(251), + [ts_builtin_sym_end] = ACTIONS(1620), + [sym__newline] = ACTIONS(1620), + [anon_sym_SEMI] = ACTIONS(1620), + [anon_sym_PIPE] = ACTIONS(1620), + [anon_sym_err_GT_PIPE] = ACTIONS(1620), + [anon_sym_out_GT_PIPE] = ACTIONS(1620), + [anon_sym_e_GT_PIPE] = ACTIONS(1620), + [anon_sym_o_GT_PIPE] = ACTIONS(1620), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1620), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1620), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1620), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1620), + [anon_sym_GT2] = ACTIONS(1618), + [anon_sym_DASH2] = ACTIONS(1620), + [anon_sym_in2] = ACTIONS(1620), + [anon_sym_STAR2] = ACTIONS(1618), + [anon_sym_and2] = ACTIONS(1620), + [anon_sym_xor2] = ACTIONS(1620), + [anon_sym_or2] = ACTIONS(1620), + [anon_sym_not_DASHin2] = ACTIONS(1620), + [anon_sym_has2] = ACTIONS(1620), + [anon_sym_not_DASHhas2] = ACTIONS(1620), + [anon_sym_starts_DASHwith2] = ACTIONS(1620), + [anon_sym_ends_DASHwith2] = ACTIONS(1620), + [anon_sym_EQ_EQ2] = ACTIONS(1620), + [anon_sym_BANG_EQ2] = ACTIONS(1620), + [anon_sym_LT2] = ACTIONS(1618), + [anon_sym_LT_EQ2] = ACTIONS(1620), + [anon_sym_GT_EQ2] = ACTIONS(1620), + [anon_sym_EQ_TILDE2] = ACTIONS(1620), + [anon_sym_BANG_TILDE2] = ACTIONS(1620), + [anon_sym_LPAREN2] = ACTIONS(1620), + [anon_sym_STAR_STAR2] = ACTIONS(1620), + [anon_sym_PLUS_PLUS2] = ACTIONS(1620), + [anon_sym_SLASH2] = ACTIONS(1618), + [anon_sym_mod2] = ACTIONS(1620), + [anon_sym_SLASH_SLASH2] = ACTIONS(1620), + [anon_sym_PLUS2] = ACTIONS(1618), + [anon_sym_bit_DASHshl2] = ACTIONS(1620), + [anon_sym_bit_DASHshr2] = ACTIONS(1620), + [anon_sym_bit_DASHand2] = ACTIONS(1620), + [anon_sym_bit_DASHxor2] = ACTIONS(1620), + [anon_sym_bit_DASHor2] = ACTIONS(1620), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [aux_sym__immediate_decimal_token2] = ACTIONS(4802), + [sym_filesize_unit] = ACTIONS(1618), + [sym_duration_unit] = ACTIONS(1620), + [anon_sym_err_GT] = ACTIONS(1618), + [anon_sym_out_GT] = ACTIONS(1618), + [anon_sym_e_GT] = ACTIONS(1618), + [anon_sym_o_GT] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT] = ACTIONS(1618), + [anon_sym_err_GT_GT] = ACTIONS(1620), + [anon_sym_out_GT_GT] = ACTIONS(1620), + [anon_sym_e_GT_GT] = ACTIONS(1620), + [anon_sym_o_GT_GT] = ACTIONS(1620), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1620), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1620), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1620), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1620), + [aux_sym_unquoted_token2] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(247), }, [1524] = { - [sym__expr_parenthesized_immediate] = STATE(2521), - [sym__immediate_decimal] = STATE(2536), - [sym_val_variable] = STATE(2521), + [sym_cell_path] = STATE(1940), + [sym_path] = STATE(1700), [sym_comment] = STATE(1524), - [ts_builtin_sym_end] = ACTIONS(1626), - [sym__newline] = ACTIONS(1626), - [anon_sym_SEMI] = ACTIONS(1626), - [anon_sym_PIPE] = ACTIONS(1626), - [anon_sym_err_GT_PIPE] = ACTIONS(1626), - [anon_sym_out_GT_PIPE] = ACTIONS(1626), - [anon_sym_e_GT_PIPE] = ACTIONS(1626), - [anon_sym_o_GT_PIPE] = ACTIONS(1626), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1626), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1626), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1626), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1626), - [anon_sym_DOLLAR] = ACTIONS(4678), - [anon_sym_GT2] = ACTIONS(1624), - [anon_sym_DASH2] = ACTIONS(1624), - [anon_sym_in2] = ACTIONS(1626), - [anon_sym_STAR2] = ACTIONS(1624), - [anon_sym_and2] = ACTIONS(1626), - [anon_sym_xor2] = ACTIONS(1626), - [anon_sym_or2] = ACTIONS(1626), - [anon_sym_not_DASHin2] = ACTIONS(1626), - [anon_sym_starts_DASHwith2] = ACTIONS(1626), - [anon_sym_ends_DASHwith2] = ACTIONS(1626), - [anon_sym_EQ_EQ2] = ACTIONS(1626), - [anon_sym_BANG_EQ2] = ACTIONS(1626), - [anon_sym_LT2] = ACTIONS(1624), - [anon_sym_LT_EQ2] = ACTIONS(1626), - [anon_sym_GT_EQ2] = ACTIONS(1626), - [anon_sym_EQ_TILDE2] = ACTIONS(1626), - [anon_sym_BANG_TILDE2] = ACTIONS(1626), - [anon_sym_LPAREN2] = ACTIONS(4680), - [anon_sym_STAR_STAR2] = ACTIONS(1626), - [anon_sym_PLUS_PLUS2] = ACTIONS(1626), - [anon_sym_SLASH2] = ACTIONS(1624), - [anon_sym_mod2] = ACTIONS(1626), - [anon_sym_SLASH_SLASH2] = ACTIONS(1626), - [anon_sym_PLUS2] = ACTIONS(1624), - [anon_sym_bit_DASHshl2] = ACTIONS(1626), - [anon_sym_bit_DASHshr2] = ACTIONS(1626), - [anon_sym_bit_DASHand2] = ACTIONS(1626), - [anon_sym_bit_DASHxor2] = ACTIONS(1626), - [anon_sym_bit_DASHor2] = ACTIONS(1626), - [aux_sym__immediate_decimal_token1] = ACTIONS(4802), - [aux_sym__immediate_decimal_token3] = ACTIONS(4802), - [aux_sym__immediate_decimal_token4] = ACTIONS(4686), - [aux_sym__immediate_decimal_token5] = ACTIONS(4688), - [anon_sym_err_GT] = ACTIONS(1624), - [anon_sym_out_GT] = ACTIONS(1624), - [anon_sym_e_GT] = ACTIONS(1624), - [anon_sym_o_GT] = ACTIONS(1624), - [anon_sym_err_PLUSout_GT] = ACTIONS(1624), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1624), - [anon_sym_o_PLUSe_GT] = ACTIONS(1624), - [anon_sym_e_PLUSo_GT] = ACTIONS(1624), - [anon_sym_err_GT_GT] = ACTIONS(1626), - [anon_sym_out_GT_GT] = ACTIONS(1626), - [anon_sym_e_GT_GT] = ACTIONS(1626), - [anon_sym_o_GT_GT] = ACTIONS(1626), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1626), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1626), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1626), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1626), - [anon_sym_POUND] = ACTIONS(251), + [aux_sym_cell_path_repeat1] = STATE(1547), + [sym__newline] = ACTIONS(931), + [anon_sym_SEMI] = ACTIONS(931), + [anon_sym_PIPE] = ACTIONS(931), + [anon_sym_err_GT_PIPE] = ACTIONS(931), + [anon_sym_out_GT_PIPE] = ACTIONS(931), + [anon_sym_e_GT_PIPE] = ACTIONS(931), + [anon_sym_o_GT_PIPE] = ACTIONS(931), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(931), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(931), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(931), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(931), + [anon_sym_DOLLAR] = ACTIONS(929), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_DASH2] = ACTIONS(929), + [anon_sym_LBRACE] = ACTIONS(931), + [anon_sym_RBRACE] = ACTIONS(931), + [anon_sym_DOT_DOT] = ACTIONS(929), + [anon_sym_DOT_DOT_EQ] = ACTIONS(931), + [anon_sym_DOT_DOT_LT] = ACTIONS(931), + [anon_sym_null] = ACTIONS(931), + [anon_sym_true] = ACTIONS(931), + [anon_sym_false] = ACTIONS(931), + [aux_sym__val_number_decimal_token1] = ACTIONS(929), + [aux_sym__val_number_decimal_token2] = ACTIONS(931), + [aux_sym__val_number_decimal_token3] = ACTIONS(931), + [aux_sym__val_number_decimal_token4] = ACTIONS(931), + [aux_sym__val_number_token1] = ACTIONS(931), + [aux_sym__val_number_token2] = ACTIONS(931), + [aux_sym__val_number_token3] = ACTIONS(931), + [aux_sym__val_number_token4] = ACTIONS(931), + [aux_sym__val_number_token5] = ACTIONS(931), + [aux_sym__val_number_token6] = ACTIONS(931), + [anon_sym_0b] = ACTIONS(929), + [anon_sym_0o] = ACTIONS(929), + [anon_sym_0x] = ACTIONS(929), + [sym_val_date] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(931), + [sym__str_single_quotes] = ACTIONS(931), + [sym__str_back_ticks] = ACTIONS(931), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(931), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(931), + [anon_sym_DOT2] = ACTIONS(4760), + [anon_sym_err_GT] = ACTIONS(929), + [anon_sym_out_GT] = ACTIONS(929), + [anon_sym_e_GT] = ACTIONS(929), + [anon_sym_o_GT] = ACTIONS(929), + [anon_sym_err_PLUSout_GT] = ACTIONS(929), + [anon_sym_out_PLUSerr_GT] = ACTIONS(929), + [anon_sym_o_PLUSe_GT] = ACTIONS(929), + [anon_sym_e_PLUSo_GT] = ACTIONS(929), + [anon_sym_err_GT_GT] = ACTIONS(931), + [anon_sym_out_GT_GT] = ACTIONS(931), + [anon_sym_e_GT_GT] = ACTIONS(931), + [anon_sym_o_GT_GT] = ACTIONS(931), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(931), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(931), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(931), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(931), + [aux_sym_unquoted_token1] = ACTIONS(929), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(931), }, [1525] = { - [sym__expr_parenthesized_immediate] = STATE(2537), - [sym__immediate_decimal] = STATE(2540), - [sym_val_variable] = STATE(2537), [sym_comment] = STATE(1525), - [ts_builtin_sym_end] = ACTIONS(1656), - [sym__newline] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_err_GT_PIPE] = ACTIONS(1656), - [anon_sym_out_GT_PIPE] = ACTIONS(1656), - [anon_sym_e_GT_PIPE] = ACTIONS(1656), - [anon_sym_o_GT_PIPE] = ACTIONS(1656), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1656), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1656), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1656), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1656), - [anon_sym_DOLLAR] = ACTIONS(4678), - [anon_sym_GT2] = ACTIONS(1654), - [anon_sym_DASH2] = ACTIONS(1654), - [anon_sym_in2] = ACTIONS(1656), - [anon_sym_STAR2] = ACTIONS(1654), - [anon_sym_and2] = ACTIONS(1656), - [anon_sym_xor2] = ACTIONS(1656), - [anon_sym_or2] = ACTIONS(1656), - [anon_sym_not_DASHin2] = ACTIONS(1656), - [anon_sym_starts_DASHwith2] = ACTIONS(1656), - [anon_sym_ends_DASHwith2] = ACTIONS(1656), - [anon_sym_EQ_EQ2] = ACTIONS(1656), - [anon_sym_BANG_EQ2] = ACTIONS(1656), - [anon_sym_LT2] = ACTIONS(1654), - [anon_sym_LT_EQ2] = ACTIONS(1656), - [anon_sym_GT_EQ2] = ACTIONS(1656), - [anon_sym_EQ_TILDE2] = ACTIONS(1656), - [anon_sym_BANG_TILDE2] = ACTIONS(1656), - [anon_sym_LPAREN2] = ACTIONS(4680), - [anon_sym_STAR_STAR2] = ACTIONS(1656), - [anon_sym_PLUS_PLUS2] = ACTIONS(1656), - [anon_sym_SLASH2] = ACTIONS(1654), - [anon_sym_mod2] = ACTIONS(1656), - [anon_sym_SLASH_SLASH2] = ACTIONS(1656), - [anon_sym_PLUS2] = ACTIONS(1654), - [anon_sym_bit_DASHshl2] = ACTIONS(1656), - [anon_sym_bit_DASHshr2] = ACTIONS(1656), - [anon_sym_bit_DASHand2] = ACTIONS(1656), - [anon_sym_bit_DASHxor2] = ACTIONS(1656), - [anon_sym_bit_DASHor2] = ACTIONS(1656), - [aux_sym__immediate_decimal_token1] = ACTIONS(4802), - [aux_sym__immediate_decimal_token3] = ACTIONS(4802), - [aux_sym__immediate_decimal_token4] = ACTIONS(4686), - [aux_sym__immediate_decimal_token5] = ACTIONS(4688), - [anon_sym_err_GT] = ACTIONS(1654), - [anon_sym_out_GT] = ACTIONS(1654), - [anon_sym_e_GT] = ACTIONS(1654), - [anon_sym_o_GT] = ACTIONS(1654), - [anon_sym_err_PLUSout_GT] = ACTIONS(1654), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1654), - [anon_sym_o_PLUSe_GT] = ACTIONS(1654), - [anon_sym_e_PLUSo_GT] = ACTIONS(1654), - [anon_sym_err_GT_GT] = ACTIONS(1656), - [anon_sym_out_GT_GT] = ACTIONS(1656), - [anon_sym_e_GT_GT] = ACTIONS(1656), - [anon_sym_o_GT_GT] = ACTIONS(1656), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1656), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1656), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1656), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1656), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_err_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_GT_PIPE] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1768), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_RPAREN] = ACTIONS(1768), + [anon_sym_DOLLAR] = ACTIONS(1766), + [anon_sym_DASH_DASH] = ACTIONS(1768), + [anon_sym_DASH2] = ACTIONS(1766), + [anon_sym_LBRACE] = ACTIONS(1768), + [anon_sym_RBRACE] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1766), + [anon_sym_DOT_DOT2] = ACTIONS(1766), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1766), + [anon_sym_DOT_DOT_LT] = ACTIONS(1766), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1768), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1768), + [aux_sym__immediate_decimal_token2] = ACTIONS(4804), + [anon_sym_null] = ACTIONS(1768), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [aux_sym__val_number_decimal_token1] = ACTIONS(1766), + [aux_sym__val_number_decimal_token2] = ACTIONS(1768), + [aux_sym__val_number_decimal_token3] = ACTIONS(1768), + [aux_sym__val_number_decimal_token4] = ACTIONS(1768), + [aux_sym__val_number_token1] = ACTIONS(1768), + [aux_sym__val_number_token2] = ACTIONS(1768), + [aux_sym__val_number_token3] = ACTIONS(1768), + [aux_sym__val_number_token4] = ACTIONS(1768), + [aux_sym__val_number_token5] = ACTIONS(1768), + [aux_sym__val_number_token6] = ACTIONS(1768), + [anon_sym_0b] = ACTIONS(1766), + [anon_sym_0o] = ACTIONS(1766), + [anon_sym_0x] = ACTIONS(1766), + [sym_val_date] = ACTIONS(1768), + [anon_sym_DQUOTE] = ACTIONS(1768), + [sym__str_single_quotes] = ACTIONS(1768), + [sym__str_back_ticks] = ACTIONS(1768), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1768), + [anon_sym_err_GT] = ACTIONS(1766), + [anon_sym_out_GT] = ACTIONS(1766), + [anon_sym_e_GT] = ACTIONS(1766), + [anon_sym_o_GT] = ACTIONS(1766), + [anon_sym_err_PLUSout_GT] = ACTIONS(1766), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1766), + [anon_sym_o_PLUSe_GT] = ACTIONS(1766), + [anon_sym_e_PLUSo_GT] = ACTIONS(1766), + [anon_sym_err_GT_GT] = ACTIONS(1768), + [anon_sym_out_GT_GT] = ACTIONS(1768), + [anon_sym_e_GT_GT] = ACTIONS(1768), + [anon_sym_o_GT_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1768), + [aux_sym_unquoted_token1] = ACTIONS(1766), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1768), }, [1526] = { - [sym__expr_parenthesized_immediate] = STATE(2542), - [sym__immediate_decimal] = STATE(2561), - [sym_val_variable] = STATE(2542), + [sym_cell_path] = STATE(1852), + [sym_path] = STATE(1428), [sym_comment] = STATE(1526), - [ts_builtin_sym_end] = ACTIONS(1612), - [sym__newline] = ACTIONS(1612), - [anon_sym_SEMI] = ACTIONS(1612), - [anon_sym_PIPE] = ACTIONS(1612), - [anon_sym_err_GT_PIPE] = ACTIONS(1612), - [anon_sym_out_GT_PIPE] = ACTIONS(1612), - [anon_sym_e_GT_PIPE] = ACTIONS(1612), - [anon_sym_o_GT_PIPE] = ACTIONS(1612), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1612), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1612), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1612), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1612), - [anon_sym_DOLLAR] = ACTIONS(4678), - [anon_sym_GT2] = ACTIONS(1604), - [anon_sym_DASH2] = ACTIONS(1604), - [anon_sym_in2] = ACTIONS(1612), - [anon_sym_STAR2] = ACTIONS(1604), - [anon_sym_and2] = ACTIONS(1612), - [anon_sym_xor2] = ACTIONS(1612), - [anon_sym_or2] = ACTIONS(1612), - [anon_sym_not_DASHin2] = ACTIONS(1612), - [anon_sym_starts_DASHwith2] = ACTIONS(1612), - [anon_sym_ends_DASHwith2] = ACTIONS(1612), - [anon_sym_EQ_EQ2] = ACTIONS(1612), - [anon_sym_BANG_EQ2] = ACTIONS(1612), - [anon_sym_LT2] = ACTIONS(1604), - [anon_sym_LT_EQ2] = ACTIONS(1612), - [anon_sym_GT_EQ2] = ACTIONS(1612), - [anon_sym_EQ_TILDE2] = ACTIONS(1612), - [anon_sym_BANG_TILDE2] = ACTIONS(1612), - [anon_sym_LPAREN2] = ACTIONS(4680), - [anon_sym_STAR_STAR2] = ACTIONS(1612), - [anon_sym_PLUS_PLUS2] = ACTIONS(1612), - [anon_sym_SLASH2] = ACTIONS(1604), - [anon_sym_mod2] = ACTIONS(1612), - [anon_sym_SLASH_SLASH2] = ACTIONS(1612), - [anon_sym_PLUS2] = ACTIONS(1604), - [anon_sym_bit_DASHshl2] = ACTIONS(1612), - [anon_sym_bit_DASHshr2] = ACTIONS(1612), - [anon_sym_bit_DASHand2] = ACTIONS(1612), - [anon_sym_bit_DASHxor2] = ACTIONS(1612), - [anon_sym_bit_DASHor2] = ACTIONS(1612), - [aux_sym__immediate_decimal_token1] = ACTIONS(4802), - [aux_sym__immediate_decimal_token3] = ACTIONS(4802), - [aux_sym__immediate_decimal_token4] = ACTIONS(4686), - [aux_sym__immediate_decimal_token5] = ACTIONS(4688), - [anon_sym_err_GT] = ACTIONS(1604), - [anon_sym_out_GT] = ACTIONS(1604), - [anon_sym_e_GT] = ACTIONS(1604), - [anon_sym_o_GT] = ACTIONS(1604), - [anon_sym_err_PLUSout_GT] = ACTIONS(1604), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1604), - [anon_sym_o_PLUSe_GT] = ACTIONS(1604), - [anon_sym_e_PLUSo_GT] = ACTIONS(1604), - [anon_sym_err_GT_GT] = ACTIONS(1612), - [anon_sym_out_GT_GT] = ACTIONS(1612), - [anon_sym_e_GT_GT] = ACTIONS(1612), - [anon_sym_o_GT_GT] = ACTIONS(1612), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1612), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1612), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1612), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1612), - [anon_sym_POUND] = ACTIONS(251), + [aux_sym_cell_path_repeat1] = STATE(1338), + [sym__newline] = ACTIONS(1835), + [anon_sym_SEMI] = ACTIONS(1835), + [anon_sym_PIPE] = ACTIONS(1835), + [anon_sym_err_GT_PIPE] = ACTIONS(1835), + [anon_sym_out_GT_PIPE] = ACTIONS(1835), + [anon_sym_e_GT_PIPE] = ACTIONS(1835), + [anon_sym_o_GT_PIPE] = ACTIONS(1835), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1835), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1835), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1835), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1835), + [anon_sym_RPAREN] = ACTIONS(1835), + [anon_sym_GT2] = ACTIONS(1833), + [anon_sym_DASH2] = ACTIONS(1835), + [anon_sym_in2] = ACTIONS(1835), + [anon_sym_if] = ACTIONS(1835), + [anon_sym_LBRACE] = ACTIONS(1835), + [anon_sym_RBRACE] = ACTIONS(1835), + [anon_sym_EQ_GT] = ACTIONS(1835), + [anon_sym_STAR2] = ACTIONS(1833), + [anon_sym_and2] = ACTIONS(1835), + [anon_sym_xor2] = ACTIONS(1835), + [anon_sym_or2] = ACTIONS(1835), + [anon_sym_not_DASHin2] = ACTIONS(1835), + [anon_sym_has2] = ACTIONS(1835), + [anon_sym_not_DASHhas2] = ACTIONS(1835), + [anon_sym_starts_DASHwith2] = ACTIONS(1835), + [anon_sym_ends_DASHwith2] = ACTIONS(1835), + [anon_sym_EQ_EQ2] = ACTIONS(1835), + [anon_sym_BANG_EQ2] = ACTIONS(1835), + [anon_sym_LT2] = ACTIONS(1833), + [anon_sym_LT_EQ2] = ACTIONS(1835), + [anon_sym_GT_EQ2] = ACTIONS(1835), + [anon_sym_EQ_TILDE2] = ACTIONS(1835), + [anon_sym_BANG_TILDE2] = ACTIONS(1835), + [anon_sym_STAR_STAR2] = ACTIONS(1835), + [anon_sym_PLUS_PLUS2] = ACTIONS(1835), + [anon_sym_SLASH2] = ACTIONS(1833), + [anon_sym_mod2] = ACTIONS(1835), + [anon_sym_SLASH_SLASH2] = ACTIONS(1835), + [anon_sym_PLUS2] = ACTIONS(1833), + [anon_sym_bit_DASHshl2] = ACTIONS(1835), + [anon_sym_bit_DASHshr2] = ACTIONS(1835), + [anon_sym_bit_DASHand2] = ACTIONS(1835), + [anon_sym_bit_DASHxor2] = ACTIONS(1835), + [anon_sym_bit_DASHor2] = ACTIONS(1835), + [anon_sym_DOT2] = ACTIONS(4770), + [anon_sym_err_GT] = ACTIONS(1833), + [anon_sym_out_GT] = ACTIONS(1833), + [anon_sym_e_GT] = ACTIONS(1833), + [anon_sym_o_GT] = ACTIONS(1833), + [anon_sym_err_PLUSout_GT] = ACTIONS(1833), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1833), + [anon_sym_o_PLUSe_GT] = ACTIONS(1833), + [anon_sym_e_PLUSo_GT] = ACTIONS(1833), + [anon_sym_err_GT_GT] = ACTIONS(1835), + [anon_sym_out_GT_GT] = ACTIONS(1835), + [anon_sym_e_GT_GT] = ACTIONS(1835), + [anon_sym_o_GT_GT] = ACTIONS(1835), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1835), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1835), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1835), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1835), + [anon_sym_POUND] = ACTIONS(247), }, [1527] = { [sym_comment] = STATE(1527), - [ts_builtin_sym_end] = ACTIONS(998), + [ts_builtin_sym_end] = ACTIONS(1703), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1703), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_DOT_DOT] = ACTIONS(1701), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1701), + [anon_sym_DOT_DOT_LT] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(4788), + [anon_sym_null] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1703), + [aux_sym__val_number_token5] = ACTIONS(1703), + [aux_sym__val_number_token6] = ACTIONS(1703), + [anon_sym_0b] = ACTIONS(1701), + [anon_sym_0o] = ACTIONS(1701), + [anon_sym_0x] = ACTIONS(1701), + [sym_val_date] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [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(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token1] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1703), + }, + [1528] = { + [sym_comment] = STATE(1528), + [sym__newline] = ACTIONS(1695), + [anon_sym_SEMI] = ACTIONS(1695), + [anon_sym_PIPE] = ACTIONS(1695), + [anon_sym_err_GT_PIPE] = ACTIONS(1695), + [anon_sym_out_GT_PIPE] = ACTIONS(1695), + [anon_sym_e_GT_PIPE] = ACTIONS(1695), + [anon_sym_o_GT_PIPE] = ACTIONS(1695), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1695), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1695), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1695), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1695), + [anon_sym_RPAREN] = ACTIONS(1695), + [anon_sym_GT2] = ACTIONS(1693), + [anon_sym_DASH2] = ACTIONS(1695), + [anon_sym_in2] = ACTIONS(1695), + [anon_sym_LBRACE] = ACTIONS(1695), + [anon_sym_RBRACE] = ACTIONS(1695), + [anon_sym_STAR2] = ACTIONS(1693), + [anon_sym_and2] = ACTIONS(1695), + [anon_sym_xor2] = ACTIONS(1695), + [anon_sym_or2] = ACTIONS(1695), + [anon_sym_not_DASHin2] = ACTIONS(1695), + [anon_sym_has2] = ACTIONS(1695), + [anon_sym_not_DASHhas2] = ACTIONS(1695), + [anon_sym_starts_DASHwith2] = ACTIONS(1695), + [anon_sym_ends_DASHwith2] = ACTIONS(1695), + [anon_sym_EQ_EQ2] = ACTIONS(1695), + [anon_sym_BANG_EQ2] = ACTIONS(1695), + [anon_sym_LT2] = ACTIONS(1693), + [anon_sym_LT_EQ2] = ACTIONS(1695), + [anon_sym_GT_EQ2] = ACTIONS(1695), + [anon_sym_EQ_TILDE2] = ACTIONS(1695), + [anon_sym_BANG_TILDE2] = ACTIONS(1695), + [anon_sym_LPAREN2] = ACTIONS(1695), + [anon_sym_STAR_STAR2] = ACTIONS(1695), + [anon_sym_PLUS_PLUS2] = ACTIONS(1695), + [anon_sym_SLASH2] = ACTIONS(1693), + [anon_sym_mod2] = ACTIONS(1695), + [anon_sym_SLASH_SLASH2] = ACTIONS(1695), + [anon_sym_PLUS2] = ACTIONS(1693), + [anon_sym_bit_DASHshl2] = ACTIONS(1695), + [anon_sym_bit_DASHshr2] = ACTIONS(1695), + [anon_sym_bit_DASHand2] = ACTIONS(1695), + [anon_sym_bit_DASHxor2] = ACTIONS(1695), + [anon_sym_bit_DASHor2] = ACTIONS(1695), + [anon_sym_DOT_DOT2] = ACTIONS(1693), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1695), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1695), + [anon_sym_err_GT] = ACTIONS(1693), + [anon_sym_out_GT] = ACTIONS(1693), + [anon_sym_e_GT] = ACTIONS(1693), + [anon_sym_o_GT] = ACTIONS(1693), + [anon_sym_err_PLUSout_GT] = ACTIONS(1693), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1693), + [anon_sym_o_PLUSe_GT] = ACTIONS(1693), + [anon_sym_e_PLUSo_GT] = ACTIONS(1693), + [anon_sym_err_GT_GT] = ACTIONS(1695), + [anon_sym_out_GT_GT] = ACTIONS(1695), + [anon_sym_e_GT_GT] = ACTIONS(1695), + [anon_sym_o_GT_GT] = ACTIONS(1695), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1695), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1695), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1695), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1695), + [aux_sym_unquoted_token2] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(247), + }, + [1529] = { + [sym_comment] = STATE(1529), + [sym__newline] = ACTIONS(2024), + [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_PIPE] = ACTIONS(2024), + [anon_sym_err_GT_PIPE] = ACTIONS(2024), + [anon_sym_out_GT_PIPE] = ACTIONS(2024), + [anon_sym_e_GT_PIPE] = ACTIONS(2024), + [anon_sym_o_GT_PIPE] = ACTIONS(2024), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2024), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2024), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2024), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2024), + [anon_sym_RPAREN] = ACTIONS(2024), + [anon_sym_GT2] = ACTIONS(2022), + [anon_sym_DASH2] = ACTIONS(2024), + [anon_sym_in2] = ACTIONS(2024), + [anon_sym_if] = ACTIONS(2024), + [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_RBRACE] = ACTIONS(2024), + [anon_sym_EQ_GT] = ACTIONS(2024), + [anon_sym_STAR2] = ACTIONS(2022), + [anon_sym_and2] = ACTIONS(2024), + [anon_sym_xor2] = ACTIONS(2024), + [anon_sym_or2] = ACTIONS(2024), + [anon_sym_not_DASHin2] = ACTIONS(2024), + [anon_sym_has2] = ACTIONS(2024), + [anon_sym_not_DASHhas2] = ACTIONS(2024), + [anon_sym_starts_DASHwith2] = ACTIONS(2024), + [anon_sym_ends_DASHwith2] = ACTIONS(2024), + [anon_sym_EQ_EQ2] = ACTIONS(2024), + [anon_sym_BANG_EQ2] = ACTIONS(2024), + [anon_sym_LT2] = ACTIONS(2022), + [anon_sym_LT_EQ2] = ACTIONS(2024), + [anon_sym_GT_EQ2] = ACTIONS(2024), + [anon_sym_EQ_TILDE2] = ACTIONS(2024), + [anon_sym_BANG_TILDE2] = ACTIONS(2024), + [anon_sym_STAR_STAR2] = ACTIONS(2024), + [anon_sym_PLUS_PLUS2] = ACTIONS(2024), + [anon_sym_SLASH2] = ACTIONS(2022), + [anon_sym_mod2] = ACTIONS(2024), + [anon_sym_SLASH_SLASH2] = ACTIONS(2024), + [anon_sym_PLUS2] = ACTIONS(2022), + [anon_sym_bit_DASHshl2] = ACTIONS(2024), + [anon_sym_bit_DASHshr2] = ACTIONS(2024), + [anon_sym_bit_DASHand2] = ACTIONS(2024), + [anon_sym_bit_DASHxor2] = ACTIONS(2024), + [anon_sym_bit_DASHor2] = ACTIONS(2024), + [anon_sym_DOT_DOT2] = ACTIONS(2022), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2024), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2024), + [anon_sym_err_GT] = ACTIONS(2022), + [anon_sym_out_GT] = ACTIONS(2022), + [anon_sym_e_GT] = ACTIONS(2022), + [anon_sym_o_GT] = ACTIONS(2022), + [anon_sym_err_PLUSout_GT] = ACTIONS(2022), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2022), + [anon_sym_o_PLUSe_GT] = ACTIONS(2022), + [anon_sym_e_PLUSo_GT] = ACTIONS(2022), + [anon_sym_err_GT_GT] = ACTIONS(2024), + [anon_sym_out_GT_GT] = ACTIONS(2024), + [anon_sym_e_GT_GT] = ACTIONS(2024), + [anon_sym_o_GT_GT] = ACTIONS(2024), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2024), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2024), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2024), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2024), + [anon_sym_POUND] = ACTIONS(247), + }, + [1530] = { + [sym_comment] = STATE(1530), + [sym__newline] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_err_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_GT_PIPE] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1768), + [anon_sym_RPAREN] = ACTIONS(1768), + [anon_sym_GT2] = ACTIONS(1766), + [anon_sym_DASH2] = ACTIONS(1768), + [anon_sym_in2] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1768), + [anon_sym_RBRACE] = ACTIONS(1768), + [anon_sym_STAR2] = ACTIONS(1766), + [anon_sym_and2] = ACTIONS(1768), + [anon_sym_xor2] = ACTIONS(1768), + [anon_sym_or2] = ACTIONS(1768), + [anon_sym_not_DASHin2] = ACTIONS(1768), + [anon_sym_has2] = ACTIONS(1768), + [anon_sym_not_DASHhas2] = ACTIONS(1768), + [anon_sym_starts_DASHwith2] = ACTIONS(1768), + [anon_sym_ends_DASHwith2] = ACTIONS(1768), + [anon_sym_EQ_EQ2] = ACTIONS(1768), + [anon_sym_BANG_EQ2] = ACTIONS(1768), + [anon_sym_LT2] = ACTIONS(1766), + [anon_sym_LT_EQ2] = ACTIONS(1768), + [anon_sym_GT_EQ2] = ACTIONS(1768), + [anon_sym_EQ_TILDE2] = ACTIONS(1768), + [anon_sym_BANG_TILDE2] = ACTIONS(1768), + [anon_sym_LPAREN2] = ACTIONS(1768), + [anon_sym_STAR_STAR2] = ACTIONS(1768), + [anon_sym_PLUS_PLUS2] = ACTIONS(1768), + [anon_sym_SLASH2] = ACTIONS(1766), + [anon_sym_mod2] = ACTIONS(1768), + [anon_sym_SLASH_SLASH2] = ACTIONS(1768), + [anon_sym_PLUS2] = ACTIONS(1766), + [anon_sym_bit_DASHshl2] = ACTIONS(1768), + [anon_sym_bit_DASHshr2] = ACTIONS(1768), + [anon_sym_bit_DASHand2] = ACTIONS(1768), + [anon_sym_bit_DASHxor2] = ACTIONS(1768), + [anon_sym_bit_DASHor2] = ACTIONS(1768), + [anon_sym_DOT_DOT2] = ACTIONS(1766), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1768), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1768), + [anon_sym_err_GT] = ACTIONS(1766), + [anon_sym_out_GT] = ACTIONS(1766), + [anon_sym_e_GT] = ACTIONS(1766), + [anon_sym_o_GT] = ACTIONS(1766), + [anon_sym_err_PLUSout_GT] = ACTIONS(1766), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1766), + [anon_sym_o_PLUSe_GT] = ACTIONS(1766), + [anon_sym_e_PLUSo_GT] = ACTIONS(1766), + [anon_sym_err_GT_GT] = ACTIONS(1768), + [anon_sym_out_GT_GT] = ACTIONS(1768), + [anon_sym_e_GT_GT] = ACTIONS(1768), + [anon_sym_o_GT_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1768), + [aux_sym_unquoted_token2] = ACTIONS(1766), + [anon_sym_POUND] = ACTIONS(247), + }, + [1531] = { + [sym_comment] = STATE(1531), + [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_GT2] = ACTIONS(1792), + [anon_sym_DASH2] = ACTIONS(1794), + [anon_sym_in2] = ACTIONS(1794), + [anon_sym_LBRACE] = ACTIONS(1794), + [anon_sym_RBRACE] = ACTIONS(1794), + [anon_sym_STAR2] = ACTIONS(1792), + [anon_sym_and2] = ACTIONS(1794), + [anon_sym_xor2] = ACTIONS(1794), + [anon_sym_or2] = ACTIONS(1794), + [anon_sym_not_DASHin2] = ACTIONS(1794), + [anon_sym_has2] = ACTIONS(1794), + [anon_sym_not_DASHhas2] = ACTIONS(1794), + [anon_sym_starts_DASHwith2] = ACTIONS(1794), + [anon_sym_ends_DASHwith2] = ACTIONS(1794), + [anon_sym_EQ_EQ2] = ACTIONS(1794), + [anon_sym_BANG_EQ2] = ACTIONS(1794), + [anon_sym_LT2] = ACTIONS(1792), + [anon_sym_LT_EQ2] = ACTIONS(1794), + [anon_sym_GT_EQ2] = ACTIONS(1794), + [anon_sym_EQ_TILDE2] = ACTIONS(1794), + [anon_sym_BANG_TILDE2] = ACTIONS(1794), + [anon_sym_LPAREN2] = ACTIONS(1794), + [anon_sym_STAR_STAR2] = ACTIONS(1794), + [anon_sym_PLUS_PLUS2] = ACTIONS(1794), + [anon_sym_SLASH2] = ACTIONS(1792), + [anon_sym_mod2] = ACTIONS(1794), + [anon_sym_SLASH_SLASH2] = ACTIONS(1794), + [anon_sym_PLUS2] = ACTIONS(1792), + [anon_sym_bit_DASHshl2] = ACTIONS(1794), + [anon_sym_bit_DASHshr2] = ACTIONS(1794), + [anon_sym_bit_DASHand2] = ACTIONS(1794), + [anon_sym_bit_DASHxor2] = ACTIONS(1794), + [anon_sym_bit_DASHor2] = ACTIONS(1794), + [anon_sym_DOT_DOT2] = ACTIONS(1792), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1794), + [anon_sym_DOT_DOT_LT2] = 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_token2] = ACTIONS(1792), + [anon_sym_POUND] = ACTIONS(247), + }, + [1532] = { + [sym_comment] = STATE(1532), + [sym__newline] = ACTIONS(1651), + [anon_sym_SEMI] = ACTIONS(1651), + [anon_sym_PIPE] = ACTIONS(1651), + [anon_sym_err_GT_PIPE] = ACTIONS(1651), + [anon_sym_out_GT_PIPE] = ACTIONS(1651), + [anon_sym_e_GT_PIPE] = ACTIONS(1651), + [anon_sym_o_GT_PIPE] = ACTIONS(1651), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1651), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1651), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1651), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1651), + [anon_sym_RPAREN] = ACTIONS(1651), + [anon_sym_GT2] = ACTIONS(1639), + [anon_sym_DASH2] = ACTIONS(1651), + [anon_sym_in2] = ACTIONS(1651), + [anon_sym_if] = ACTIONS(1651), + [anon_sym_LBRACE] = ACTIONS(1651), + [anon_sym_RBRACE] = ACTIONS(1651), + [anon_sym_EQ_GT] = ACTIONS(1651), + [anon_sym_STAR2] = ACTIONS(1639), + [anon_sym_QMARK2] = ACTIONS(1651), + [anon_sym_and2] = ACTIONS(1651), + [anon_sym_xor2] = ACTIONS(1651), + [anon_sym_or2] = ACTIONS(1651), + [anon_sym_not_DASHin2] = ACTIONS(1651), + [anon_sym_has2] = ACTIONS(1651), + [anon_sym_not_DASHhas2] = ACTIONS(1651), + [anon_sym_starts_DASHwith2] = ACTIONS(1651), + [anon_sym_ends_DASHwith2] = ACTIONS(1651), + [anon_sym_EQ_EQ2] = ACTIONS(1651), + [anon_sym_BANG_EQ2] = ACTIONS(1651), + [anon_sym_LT2] = ACTIONS(1639), + [anon_sym_LT_EQ2] = ACTIONS(1651), + [anon_sym_GT_EQ2] = ACTIONS(1651), + [anon_sym_EQ_TILDE2] = ACTIONS(1651), + [anon_sym_BANG_TILDE2] = ACTIONS(1651), + [anon_sym_STAR_STAR2] = ACTIONS(1651), + [anon_sym_PLUS_PLUS2] = ACTIONS(1651), + [anon_sym_SLASH2] = ACTIONS(1639), + [anon_sym_mod2] = ACTIONS(1651), + [anon_sym_SLASH_SLASH2] = ACTIONS(1651), + [anon_sym_PLUS2] = ACTIONS(1639), + [anon_sym_bit_DASHshl2] = ACTIONS(1651), + [anon_sym_bit_DASHshr2] = ACTIONS(1651), + [anon_sym_bit_DASHand2] = ACTIONS(1651), + [anon_sym_bit_DASHxor2] = ACTIONS(1651), + [anon_sym_bit_DASHor2] = ACTIONS(1651), + [anon_sym_COLON2] = ACTIONS(1651), + [anon_sym_DOT2] = ACTIONS(1651), + [anon_sym_err_GT] = ACTIONS(1639), + [anon_sym_out_GT] = ACTIONS(1639), + [anon_sym_e_GT] = ACTIONS(1639), + [anon_sym_o_GT] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT] = ACTIONS(1639), + [anon_sym_err_GT_GT] = ACTIONS(1651), + [anon_sym_out_GT_GT] = ACTIONS(1651), + [anon_sym_e_GT_GT] = ACTIONS(1651), + [anon_sym_o_GT_GT] = ACTIONS(1651), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1651), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1651), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1651), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1651), + [anon_sym_POUND] = ACTIONS(247), + }, + [1533] = { + [sym_comment] = STATE(1533), [sym__newline] = ACTIONS(998), [anon_sym_SEMI] = ACTIONS(998), [anon_sym_PIPE] = ACTIONS(998), @@ -224945,20 +225961,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(998), [anon_sym_LBRACK] = ACTIONS(998), [anon_sym_LPAREN] = ACTIONS(998), - [anon_sym_DOLLAR] = ACTIONS(996), + [anon_sym_RPAREN] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1002), [anon_sym_DASH_DASH] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(996), + [anon_sym_DASH2] = ACTIONS(1002), [anon_sym_LBRACE] = ACTIONS(998), - [anon_sym_DOT_DOT] = ACTIONS(996), - [anon_sym_DOT_DOT2] = ACTIONS(996), - [anon_sym_DOT_DOT_EQ] = ACTIONS(996), - [anon_sym_DOT_DOT_LT] = ACTIONS(996), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(998), - [anon_sym_DOT_DOT_LT2] = ACTIONS(998), + [anon_sym_RBRACE] = ACTIONS(998), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT2] = ACTIONS(4806), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4808), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4808), [anon_sym_null] = ACTIONS(998), [anon_sym_true] = ACTIONS(998), [anon_sym_false] = ACTIONS(998), - [aux_sym__val_number_decimal_token1] = ACTIONS(996), + [aux_sym__val_number_decimal_token1] = ACTIONS(1002), [aux_sym__val_number_decimal_token2] = ACTIONS(998), [aux_sym__val_number_decimal_token3] = ACTIONS(998), [aux_sym__val_number_decimal_token4] = ACTIONS(998), @@ -224968,24 +225986,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token4] = ACTIONS(998), [aux_sym__val_number_token5] = ACTIONS(998), [aux_sym__val_number_token6] = ACTIONS(998), - [anon_sym_0b] = ACTIONS(996), - [anon_sym_0o] = ACTIONS(996), - [anon_sym_0x] = ACTIONS(996), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), [sym_val_date] = ACTIONS(998), [anon_sym_DQUOTE] = ACTIONS(998), [sym__str_single_quotes] = ACTIONS(998), [sym__str_back_ticks] = ACTIONS(998), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(998), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), - [anon_sym_DOT2] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), [anon_sym_err_GT_GT] = ACTIONS(998), [anon_sym_out_GT_GT] = ACTIONS(998), [anon_sym_e_GT_GT] = ACTIONS(998), @@ -224994,4722 +226011,1530 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(998), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(998), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(998), - [aux_sym_unquoted_token1] = ACTIONS(996), - [anon_sym_POUND] = ACTIONS(251), + [aux_sym_unquoted_token1] = ACTIONS(1002), + [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(998), }, - [1528] = { - [sym__expr_parenthesized_immediate] = STATE(2507), - [sym__immediate_decimal] = STATE(2508), - [sym_val_variable] = STATE(2507), - [sym_comment] = STATE(1528), - [ts_builtin_sym_end] = ACTIONS(1538), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_DOLLAR] = ACTIONS(4678), - [anon_sym_GT2] = ACTIONS(1536), - [anon_sym_DASH2] = ACTIONS(1536), - [anon_sym_in2] = ACTIONS(1538), - [anon_sym_STAR2] = ACTIONS(1536), - [anon_sym_and2] = ACTIONS(1538), - [anon_sym_xor2] = ACTIONS(1538), - [anon_sym_or2] = ACTIONS(1538), - [anon_sym_not_DASHin2] = ACTIONS(1538), - [anon_sym_starts_DASHwith2] = ACTIONS(1538), - [anon_sym_ends_DASHwith2] = ACTIONS(1538), - [anon_sym_EQ_EQ2] = ACTIONS(1538), - [anon_sym_BANG_EQ2] = ACTIONS(1538), - [anon_sym_LT2] = ACTIONS(1536), - [anon_sym_LT_EQ2] = ACTIONS(1538), - [anon_sym_GT_EQ2] = ACTIONS(1538), - [anon_sym_EQ_TILDE2] = ACTIONS(1538), - [anon_sym_BANG_TILDE2] = ACTIONS(1538), - [anon_sym_LPAREN2] = ACTIONS(4680), - [anon_sym_STAR_STAR2] = ACTIONS(1538), - [anon_sym_PLUS_PLUS2] = ACTIONS(1538), - [anon_sym_SLASH2] = ACTIONS(1536), - [anon_sym_mod2] = ACTIONS(1538), - [anon_sym_SLASH_SLASH2] = ACTIONS(1538), - [anon_sym_PLUS2] = ACTIONS(1536), - [anon_sym_bit_DASHshl2] = ACTIONS(1538), - [anon_sym_bit_DASHshr2] = ACTIONS(1538), - [anon_sym_bit_DASHand2] = ACTIONS(1538), - [anon_sym_bit_DASHxor2] = ACTIONS(1538), - [anon_sym_bit_DASHor2] = ACTIONS(1538), - [aux_sym__immediate_decimal_token1] = ACTIONS(4802), - [aux_sym__immediate_decimal_token3] = ACTIONS(4802), - [aux_sym__immediate_decimal_token4] = ACTIONS(4686), - [aux_sym__immediate_decimal_token5] = ACTIONS(4688), - [anon_sym_err_GT] = ACTIONS(1536), - [anon_sym_out_GT] = ACTIONS(1536), - [anon_sym_e_GT] = ACTIONS(1536), - [anon_sym_o_GT] = ACTIONS(1536), - [anon_sym_err_PLUSout_GT] = ACTIONS(1536), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), - [anon_sym_o_PLUSe_GT] = ACTIONS(1536), - [anon_sym_e_PLUSo_GT] = ACTIONS(1536), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), - [anon_sym_POUND] = ACTIONS(251), - }, - [1529] = { - [sym_comment] = STATE(1529), - [sym__newline] = ACTIONS(1012), - [anon_sym_SEMI] = ACTIONS(1012), - [anon_sym_PIPE] = ACTIONS(1012), - [anon_sym_err_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_GT_PIPE] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1012), - [anon_sym_LBRACK] = ACTIONS(1012), - [anon_sym_LPAREN] = ACTIONS(1012), - [anon_sym_RPAREN] = ACTIONS(1012), - [anon_sym_DOLLAR] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1012), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_RBRACE] = ACTIONS(1012), - [anon_sym_DOT_DOT] = ACTIONS(1016), - [anon_sym_DOT_DOT2] = ACTIONS(4786), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1016), - [anon_sym_DOT_DOT_LT] = ACTIONS(1016), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4788), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4788), - [anon_sym_null] = ACTIONS(1012), - [anon_sym_true] = ACTIONS(1012), - [anon_sym_false] = ACTIONS(1012), - [aux_sym__val_number_decimal_token1] = ACTIONS(1016), - [aux_sym__val_number_decimal_token2] = ACTIONS(1012), - [aux_sym__val_number_decimal_token3] = ACTIONS(1012), - [aux_sym__val_number_decimal_token4] = ACTIONS(1012), - [aux_sym__val_number_token1] = ACTIONS(1012), - [aux_sym__val_number_token2] = ACTIONS(1012), - [aux_sym__val_number_token3] = ACTIONS(1012), - [aux_sym__val_number_token4] = ACTIONS(1012), - [aux_sym__val_number_token5] = ACTIONS(1012), - [aux_sym__val_number_token6] = ACTIONS(1012), - [anon_sym_0b] = ACTIONS(1016), - [anon_sym_0o] = ACTIONS(1016), - [anon_sym_0x] = ACTIONS(1016), - [sym_val_date] = ACTIONS(1012), - [anon_sym_DQUOTE] = ACTIONS(1012), - [sym__str_single_quotes] = ACTIONS(1012), - [sym__str_back_ticks] = ACTIONS(1012), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1012), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1012), - [anon_sym_err_GT] = ACTIONS(1016), - [anon_sym_out_GT] = ACTIONS(1016), - [anon_sym_e_GT] = ACTIONS(1016), - [anon_sym_o_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT] = ACTIONS(1016), - [anon_sym_err_GT_GT] = ACTIONS(1012), - [anon_sym_out_GT_GT] = ACTIONS(1012), - [anon_sym_e_GT_GT] = ACTIONS(1012), - [anon_sym_o_GT_GT] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1012), - [aux_sym_unquoted_token1] = ACTIONS(1016), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1012), - }, - [1530] = { - [sym_comment] = STATE(1530), - [ts_builtin_sym_end] = ACTIONS(994), - [sym__newline] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(994), - [anon_sym_err_GT_PIPE] = ACTIONS(994), - [anon_sym_out_GT_PIPE] = ACTIONS(994), - [anon_sym_e_GT_PIPE] = ACTIONS(994), - [anon_sym_o_GT_PIPE] = ACTIONS(994), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_LPAREN] = ACTIONS(994), - [anon_sym_DOLLAR] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(994), - [anon_sym_DASH2] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(994), - [anon_sym_DOT_DOT] = ACTIONS(992), - [anon_sym_DOT_DOT2] = ACTIONS(992), - [anon_sym_DOT_DOT_EQ] = ACTIONS(992), - [anon_sym_DOT_DOT_LT] = ACTIONS(992), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(994), - [anon_sym_DOT_DOT_LT2] = ACTIONS(994), - [anon_sym_null] = ACTIONS(994), - [anon_sym_true] = ACTIONS(994), - [anon_sym_false] = ACTIONS(994), - [aux_sym__val_number_decimal_token1] = ACTIONS(992), - [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), - [aux_sym__val_number_token4] = ACTIONS(994), - [aux_sym__val_number_token5] = ACTIONS(994), - [aux_sym__val_number_token6] = ACTIONS(994), - [anon_sym_0b] = ACTIONS(992), - [anon_sym_0o] = ACTIONS(992), - [anon_sym_0x] = ACTIONS(992), - [sym_val_date] = ACTIONS(994), - [anon_sym_DQUOTE] = ACTIONS(994), - [sym__str_single_quotes] = ACTIONS(994), - [sym__str_back_ticks] = ACTIONS(994), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(994), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(994), - [anon_sym_DOT2] = ACTIONS(992), - [anon_sym_err_GT] = ACTIONS(992), - [anon_sym_out_GT] = ACTIONS(992), - [anon_sym_e_GT] = ACTIONS(992), - [anon_sym_o_GT] = ACTIONS(992), - [anon_sym_err_PLUSout_GT] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT] = ACTIONS(992), - [anon_sym_o_PLUSe_GT] = ACTIONS(992), - [anon_sym_e_PLUSo_GT] = ACTIONS(992), - [anon_sym_err_GT_GT] = ACTIONS(994), - [anon_sym_out_GT_GT] = ACTIONS(994), - [anon_sym_e_GT_GT] = ACTIONS(994), - [anon_sym_o_GT_GT] = ACTIONS(994), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), - [aux_sym_unquoted_token1] = ACTIONS(992), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(994), - }, - [1531] = { - [sym_comment] = STATE(1531), - [ts_builtin_sym_end] = ACTIONS(990), - [sym__newline] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_PIPE] = ACTIONS(990), - [anon_sym_err_GT_PIPE] = ACTIONS(990), - [anon_sym_out_GT_PIPE] = ACTIONS(990), - [anon_sym_e_GT_PIPE] = ACTIONS(990), - [anon_sym_o_GT_PIPE] = ACTIONS(990), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(990), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(990), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(990), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(990), - [anon_sym_DOLLAR] = ACTIONS(988), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_DASH2] = ACTIONS(988), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_DOT_DOT] = ACTIONS(988), - [anon_sym_DOT_DOT2] = ACTIONS(988), - [anon_sym_DOT_DOT_EQ] = ACTIONS(988), - [anon_sym_DOT_DOT_LT] = ACTIONS(988), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(990), - [anon_sym_DOT_DOT_LT2] = ACTIONS(990), - [anon_sym_null] = ACTIONS(990), - [anon_sym_true] = ACTIONS(990), - [anon_sym_false] = ACTIONS(990), - [aux_sym__val_number_decimal_token1] = ACTIONS(988), - [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), - [aux_sym__val_number_token4] = ACTIONS(990), - [aux_sym__val_number_token5] = ACTIONS(990), - [aux_sym__val_number_token6] = ACTIONS(990), - [anon_sym_0b] = ACTIONS(988), - [anon_sym_0o] = ACTIONS(988), - [anon_sym_0x] = ACTIONS(988), - [sym_val_date] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym__str_single_quotes] = ACTIONS(990), - [sym__str_back_ticks] = ACTIONS(990), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(990), - [anon_sym_DOT2] = ACTIONS(988), - [anon_sym_err_GT] = ACTIONS(988), - [anon_sym_out_GT] = ACTIONS(988), - [anon_sym_e_GT] = ACTIONS(988), - [anon_sym_o_GT] = ACTIONS(988), - [anon_sym_err_PLUSout_GT] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT] = ACTIONS(988), - [anon_sym_o_PLUSe_GT] = ACTIONS(988), - [anon_sym_e_PLUSo_GT] = ACTIONS(988), - [anon_sym_err_GT_GT] = ACTIONS(990), - [anon_sym_out_GT_GT] = ACTIONS(990), - [anon_sym_e_GT_GT] = ACTIONS(990), - [anon_sym_o_GT_GT] = ACTIONS(990), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(990), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(990), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(990), - [aux_sym_unquoted_token1] = ACTIONS(988), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(990), - }, - [1532] = { - [sym_comment] = STATE(1532), - [sym__newline] = ACTIONS(998), - [anon_sym_SEMI] = ACTIONS(998), - [anon_sym_PIPE] = ACTIONS(998), - [anon_sym_err_GT_PIPE] = ACTIONS(998), - [anon_sym_out_GT_PIPE] = ACTIONS(998), - [anon_sym_e_GT_PIPE] = ACTIONS(998), - [anon_sym_o_GT_PIPE] = ACTIONS(998), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(998), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(998), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(998), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(998), - [anon_sym_RPAREN] = ACTIONS(998), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(998), - [anon_sym_in2] = ACTIONS(998), - [anon_sym_if] = ACTIONS(998), - [anon_sym_LBRACE] = ACTIONS(998), - [anon_sym_RBRACE] = ACTIONS(998), - [anon_sym_EQ_GT] = ACTIONS(998), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(998), - [anon_sym_xor2] = ACTIONS(998), - [anon_sym_or2] = ACTIONS(998), - [anon_sym_not_DASHin2] = ACTIONS(998), - [anon_sym_starts_DASHwith2] = ACTIONS(998), - [anon_sym_ends_DASHwith2] = ACTIONS(998), - [anon_sym_EQ_EQ2] = ACTIONS(998), - [anon_sym_BANG_EQ2] = ACTIONS(998), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(998), - [anon_sym_GT_EQ2] = ACTIONS(998), - [anon_sym_EQ_TILDE2] = ACTIONS(998), - [anon_sym_BANG_TILDE2] = ACTIONS(998), - [anon_sym_STAR_STAR2] = ACTIONS(998), - [anon_sym_PLUS_PLUS2] = ACTIONS(998), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(998), - [anon_sym_SLASH_SLASH2] = ACTIONS(998), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(998), - [anon_sym_bit_DASHshr2] = ACTIONS(998), - [anon_sym_bit_DASHand2] = ACTIONS(998), - [anon_sym_bit_DASHxor2] = ACTIONS(998), - [anon_sym_bit_DASHor2] = ACTIONS(998), - [anon_sym_DOT_DOT2] = ACTIONS(996), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(998), - [anon_sym_DOT_DOT_LT2] = ACTIONS(998), - [anon_sym_COLON2] = ACTIONS(998), - [anon_sym_DOT2] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(998), - [anon_sym_out_GT_GT] = ACTIONS(998), - [anon_sym_e_GT_GT] = ACTIONS(998), - [anon_sym_o_GT_GT] = ACTIONS(998), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(998), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(998), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(998), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(998), - [anon_sym_POUND] = ACTIONS(251), - }, - [1533] = { - [sym_cell_path] = STATE(1881), - [sym_path] = STATE(1749), - [sym_comment] = STATE(1533), - [aux_sym_cell_path_repeat1] = STATE(1549), - [ts_builtin_sym_end] = ACTIONS(945), - [sym__newline] = ACTIONS(945), - [anon_sym_SEMI] = ACTIONS(945), - [anon_sym_PIPE] = ACTIONS(945), - [anon_sym_err_GT_PIPE] = ACTIONS(945), - [anon_sym_out_GT_PIPE] = ACTIONS(945), - [anon_sym_e_GT_PIPE] = ACTIONS(945), - [anon_sym_o_GT_PIPE] = ACTIONS(945), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(945), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(945), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(945), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(945), - [anon_sym_LBRACK] = ACTIONS(945), - [anon_sym_LPAREN] = ACTIONS(945), - [anon_sym_DOLLAR] = ACTIONS(943), - [anon_sym_DASH_DASH] = ACTIONS(945), - [anon_sym_DASH2] = ACTIONS(943), - [anon_sym_LBRACE] = ACTIONS(945), - [anon_sym_DOT_DOT] = ACTIONS(943), - [anon_sym_DOT_DOT_EQ] = ACTIONS(945), - [anon_sym_DOT_DOT_LT] = ACTIONS(945), - [anon_sym_null] = ACTIONS(945), - [anon_sym_true] = ACTIONS(945), - [anon_sym_false] = ACTIONS(945), - [aux_sym__val_number_decimal_token1] = ACTIONS(943), - [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), - [aux_sym__val_number_token4] = ACTIONS(945), - [aux_sym__val_number_token5] = ACTIONS(945), - [aux_sym__val_number_token6] = ACTIONS(945), - [anon_sym_0b] = ACTIONS(943), - [anon_sym_0o] = ACTIONS(943), - [anon_sym_0x] = ACTIONS(943), - [sym_val_date] = ACTIONS(945), - [anon_sym_DQUOTE] = ACTIONS(945), - [sym__str_single_quotes] = ACTIONS(945), - [sym__str_back_ticks] = ACTIONS(945), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(945), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(945), - [anon_sym_DOT2] = ACTIONS(4750), - [anon_sym_err_GT] = ACTIONS(943), - [anon_sym_out_GT] = ACTIONS(943), - [anon_sym_e_GT] = ACTIONS(943), - [anon_sym_o_GT] = ACTIONS(943), - [anon_sym_err_PLUSout_GT] = ACTIONS(943), - [anon_sym_out_PLUSerr_GT] = ACTIONS(943), - [anon_sym_o_PLUSe_GT] = ACTIONS(943), - [anon_sym_e_PLUSo_GT] = ACTIONS(943), - [anon_sym_err_GT_GT] = ACTIONS(945), - [anon_sym_out_GT_GT] = ACTIONS(945), - [anon_sym_e_GT_GT] = ACTIONS(945), - [anon_sym_o_GT_GT] = ACTIONS(945), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(945), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(945), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(945), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(945), - [aux_sym_unquoted_token1] = ACTIONS(943), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(945), - }, [1534] = { + [sym_cell_path] = STATE(2075), + [sym_path] = STATE(1811), [sym_comment] = STATE(1534), - [sym__newline] = ACTIONS(1757), - [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_RPAREN] = ACTIONS(1757), - [anon_sym_GT2] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1757), - [anon_sym_in2] = ACTIONS(1757), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_STAR2] = ACTIONS(1755), - [anon_sym_and2] = ACTIONS(1757), - [anon_sym_xor2] = ACTIONS(1757), - [anon_sym_or2] = ACTIONS(1757), - [anon_sym_not_DASHin2] = ACTIONS(1757), - [anon_sym_starts_DASHwith2] = ACTIONS(1757), - [anon_sym_ends_DASHwith2] = ACTIONS(1757), - [anon_sym_EQ_EQ2] = ACTIONS(1757), - [anon_sym_BANG_EQ2] = ACTIONS(1757), - [anon_sym_LT2] = ACTIONS(1755), - [anon_sym_LT_EQ2] = ACTIONS(1757), - [anon_sym_GT_EQ2] = ACTIONS(1757), - [anon_sym_EQ_TILDE2] = ACTIONS(1757), - [anon_sym_BANG_TILDE2] = ACTIONS(1757), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_STAR_STAR2] = ACTIONS(1757), - [anon_sym_PLUS_PLUS2] = ACTIONS(1757), - [anon_sym_SLASH2] = ACTIONS(1755), - [anon_sym_mod2] = ACTIONS(1757), - [anon_sym_SLASH_SLASH2] = ACTIONS(1757), - [anon_sym_PLUS2] = ACTIONS(1755), - [anon_sym_bit_DASHshl2] = ACTIONS(1757), - [anon_sym_bit_DASHshr2] = ACTIONS(1757), - [anon_sym_bit_DASHand2] = ACTIONS(1757), - [anon_sym_bit_DASHxor2] = ACTIONS(1757), - [anon_sym_bit_DASHor2] = ACTIONS(1757), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT] = ACTIONS(4812), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(4814), - [anon_sym_err_GT] = ACTIONS(1755), - [anon_sym_out_GT] = ACTIONS(1755), - [anon_sym_e_GT] = ACTIONS(1755), - [anon_sym_o_GT] = ACTIONS(1755), - [anon_sym_err_PLUSout_GT] = ACTIONS(1755), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), - [anon_sym_o_PLUSe_GT] = ACTIONS(1755), - [anon_sym_e_PLUSo_GT] = ACTIONS(1755), - [anon_sym_err_GT_GT] = ACTIONS(1757), - [anon_sym_out_GT_GT] = ACTIONS(1757), - [anon_sym_e_GT_GT] = ACTIONS(1757), - [anon_sym_o_GT_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), - [aux_sym_unquoted_token2] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(251), + [aux_sym_cell_path_repeat1] = STATE(1638), + [ts_builtin_sym_end] = ACTIONS(931), + [sym__newline] = ACTIONS(931), + [anon_sym_SEMI] = ACTIONS(931), + [anon_sym_PIPE] = ACTIONS(931), + [anon_sym_err_GT_PIPE] = ACTIONS(931), + [anon_sym_out_GT_PIPE] = ACTIONS(931), + [anon_sym_e_GT_PIPE] = ACTIONS(931), + [anon_sym_o_GT_PIPE] = ACTIONS(931), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(931), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(931), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(931), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_DOLLAR] = ACTIONS(929), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_DASH2] = ACTIONS(929), + [anon_sym_LBRACE] = ACTIONS(931), + [anon_sym_DOT_DOT] = ACTIONS(929), + [anon_sym_DOT_DOT_EQ] = ACTIONS(931), + [anon_sym_DOT_DOT_LT] = ACTIONS(931), + [anon_sym_null] = ACTIONS(931), + [anon_sym_true] = ACTIONS(931), + [anon_sym_false] = ACTIONS(931), + [aux_sym__val_number_decimal_token1] = ACTIONS(929), + [aux_sym__val_number_decimal_token2] = ACTIONS(931), + [aux_sym__val_number_decimal_token3] = ACTIONS(931), + [aux_sym__val_number_decimal_token4] = ACTIONS(931), + [aux_sym__val_number_token1] = ACTIONS(931), + [aux_sym__val_number_token2] = ACTIONS(931), + [aux_sym__val_number_token3] = ACTIONS(931), + [aux_sym__val_number_token4] = ACTIONS(931), + [aux_sym__val_number_token5] = ACTIONS(931), + [aux_sym__val_number_token6] = ACTIONS(931), + [anon_sym_0b] = ACTIONS(929), + [anon_sym_0o] = ACTIONS(929), + [anon_sym_0x] = ACTIONS(929), + [sym_val_date] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(931), + [sym__str_single_quotes] = ACTIONS(931), + [sym__str_back_ticks] = ACTIONS(931), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(931), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(931), + [anon_sym_DOT2] = ACTIONS(4810), + [anon_sym_err_GT] = ACTIONS(929), + [anon_sym_out_GT] = ACTIONS(929), + [anon_sym_e_GT] = ACTIONS(929), + [anon_sym_o_GT] = ACTIONS(929), + [anon_sym_err_PLUSout_GT] = ACTIONS(929), + [anon_sym_out_PLUSerr_GT] = ACTIONS(929), + [anon_sym_o_PLUSe_GT] = ACTIONS(929), + [anon_sym_e_PLUSo_GT] = ACTIONS(929), + [anon_sym_err_GT_GT] = ACTIONS(931), + [anon_sym_out_GT_GT] = ACTIONS(931), + [anon_sym_e_GT_GT] = ACTIONS(931), + [anon_sym_o_GT_GT] = ACTIONS(931), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(931), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(931), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(931), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(931), + [aux_sym_unquoted_token1] = ACTIONS(929), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(931), }, [1535] = { - [sym_path] = STATE(1680), [sym_comment] = STATE(1535), - [aux_sym_cell_path_repeat1] = STATE(1536), - [sym__newline] = ACTIONS(951), - [anon_sym_SEMI] = ACTIONS(951), - [anon_sym_PIPE] = ACTIONS(951), - [anon_sym_err_GT_PIPE] = ACTIONS(951), - [anon_sym_out_GT_PIPE] = ACTIONS(951), - [anon_sym_e_GT_PIPE] = ACTIONS(951), - [anon_sym_o_GT_PIPE] = ACTIONS(951), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(951), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(951), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(951), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(951), - [anon_sym_LBRACK] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(951), - [anon_sym_RPAREN] = ACTIONS(951), - [anon_sym_DOLLAR] = ACTIONS(949), - [anon_sym_DASH_DASH] = ACTIONS(951), - [anon_sym_DASH2] = ACTIONS(949), - [anon_sym_LBRACE] = ACTIONS(951), - [anon_sym_RBRACE] = ACTIONS(951), - [anon_sym_DOT_DOT] = ACTIONS(949), - [anon_sym_DOT_DOT_EQ] = ACTIONS(951), - [anon_sym_DOT_DOT_LT] = ACTIONS(951), - [anon_sym_null] = ACTIONS(951), - [anon_sym_true] = ACTIONS(951), - [anon_sym_false] = ACTIONS(951), - [aux_sym__val_number_decimal_token1] = ACTIONS(949), - [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), - [aux_sym__val_number_token4] = ACTIONS(951), - [aux_sym__val_number_token5] = ACTIONS(951), - [aux_sym__val_number_token6] = ACTIONS(951), - [anon_sym_0b] = ACTIONS(949), - [anon_sym_0o] = ACTIONS(949), - [anon_sym_0x] = ACTIONS(949), - [sym_val_date] = ACTIONS(951), - [anon_sym_DQUOTE] = ACTIONS(951), - [sym__str_single_quotes] = ACTIONS(951), - [sym__str_back_ticks] = ACTIONS(951), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(951), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(951), - [anon_sym_DOT2] = ACTIONS(4696), - [anon_sym_err_GT] = ACTIONS(949), - [anon_sym_out_GT] = ACTIONS(949), - [anon_sym_e_GT] = ACTIONS(949), - [anon_sym_o_GT] = ACTIONS(949), - [anon_sym_err_PLUSout_GT] = ACTIONS(949), - [anon_sym_out_PLUSerr_GT] = ACTIONS(949), - [anon_sym_o_PLUSe_GT] = ACTIONS(949), - [anon_sym_e_PLUSo_GT] = ACTIONS(949), - [anon_sym_err_GT_GT] = ACTIONS(951), - [anon_sym_out_GT_GT] = ACTIONS(951), - [anon_sym_e_GT_GT] = ACTIONS(951), - [anon_sym_o_GT_GT] = ACTIONS(951), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(951), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(951), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(951), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(951), - [aux_sym_unquoted_token1] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(951), + [sym__newline] = ACTIONS(2028), + [anon_sym_SEMI] = ACTIONS(2028), + [anon_sym_PIPE] = ACTIONS(2028), + [anon_sym_err_GT_PIPE] = ACTIONS(2028), + [anon_sym_out_GT_PIPE] = ACTIONS(2028), + [anon_sym_e_GT_PIPE] = ACTIONS(2028), + [anon_sym_o_GT_PIPE] = ACTIONS(2028), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2028), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2028), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2028), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2028), + [anon_sym_RPAREN] = ACTIONS(2028), + [anon_sym_GT2] = ACTIONS(2026), + [anon_sym_DASH2] = ACTIONS(2028), + [anon_sym_in2] = ACTIONS(2028), + [anon_sym_if] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(2028), + [anon_sym_RBRACE] = ACTIONS(2028), + [anon_sym_EQ_GT] = ACTIONS(2028), + [anon_sym_STAR2] = ACTIONS(2026), + [anon_sym_and2] = ACTIONS(2028), + [anon_sym_xor2] = ACTIONS(2028), + [anon_sym_or2] = ACTIONS(2028), + [anon_sym_not_DASHin2] = ACTIONS(2028), + [anon_sym_has2] = ACTIONS(2028), + [anon_sym_not_DASHhas2] = ACTIONS(2028), + [anon_sym_starts_DASHwith2] = ACTIONS(2028), + [anon_sym_ends_DASHwith2] = ACTIONS(2028), + [anon_sym_EQ_EQ2] = ACTIONS(2028), + [anon_sym_BANG_EQ2] = ACTIONS(2028), + [anon_sym_LT2] = ACTIONS(2026), + [anon_sym_LT_EQ2] = ACTIONS(2028), + [anon_sym_GT_EQ2] = ACTIONS(2028), + [anon_sym_EQ_TILDE2] = ACTIONS(2028), + [anon_sym_BANG_TILDE2] = ACTIONS(2028), + [anon_sym_STAR_STAR2] = ACTIONS(2028), + [anon_sym_PLUS_PLUS2] = ACTIONS(2028), + [anon_sym_SLASH2] = ACTIONS(2026), + [anon_sym_mod2] = ACTIONS(2028), + [anon_sym_SLASH_SLASH2] = ACTIONS(2028), + [anon_sym_PLUS2] = ACTIONS(2026), + [anon_sym_bit_DASHshl2] = ACTIONS(2028), + [anon_sym_bit_DASHshr2] = ACTIONS(2028), + [anon_sym_bit_DASHand2] = ACTIONS(2028), + [anon_sym_bit_DASHxor2] = ACTIONS(2028), + [anon_sym_bit_DASHor2] = ACTIONS(2028), + [anon_sym_DOT_DOT2] = ACTIONS(2026), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2028), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2028), + [anon_sym_err_GT] = ACTIONS(2026), + [anon_sym_out_GT] = ACTIONS(2026), + [anon_sym_e_GT] = ACTIONS(2026), + [anon_sym_o_GT] = ACTIONS(2026), + [anon_sym_err_PLUSout_GT] = ACTIONS(2026), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2026), + [anon_sym_o_PLUSe_GT] = ACTIONS(2026), + [anon_sym_e_PLUSo_GT] = ACTIONS(2026), + [anon_sym_err_GT_GT] = ACTIONS(2028), + [anon_sym_out_GT_GT] = ACTIONS(2028), + [anon_sym_e_GT_GT] = ACTIONS(2028), + [anon_sym_o_GT_GT] = ACTIONS(2028), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2028), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2028), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2028), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2028), + [anon_sym_POUND] = ACTIONS(247), }, [1536] = { - [sym_path] = STATE(1680), [sym_comment] = STATE(1536), - [aux_sym_cell_path_repeat1] = STATE(1536), - [sym__newline] = ACTIONS(955), - [anon_sym_SEMI] = ACTIONS(955), - [anon_sym_PIPE] = ACTIONS(955), - [anon_sym_err_GT_PIPE] = ACTIONS(955), - [anon_sym_out_GT_PIPE] = ACTIONS(955), - [anon_sym_e_GT_PIPE] = ACTIONS(955), - [anon_sym_o_GT_PIPE] = ACTIONS(955), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(955), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(955), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(955), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(955), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_LPAREN] = ACTIONS(955), - [anon_sym_RPAREN] = ACTIONS(955), - [anon_sym_DOLLAR] = ACTIONS(953), - [anon_sym_DASH_DASH] = ACTIONS(955), - [anon_sym_DASH2] = ACTIONS(953), - [anon_sym_LBRACE] = ACTIONS(955), - [anon_sym_RBRACE] = ACTIONS(955), - [anon_sym_DOT_DOT] = ACTIONS(953), - [anon_sym_DOT_DOT_EQ] = ACTIONS(955), - [anon_sym_DOT_DOT_LT] = ACTIONS(955), - [anon_sym_null] = ACTIONS(955), - [anon_sym_true] = ACTIONS(955), - [anon_sym_false] = ACTIONS(955), - [aux_sym__val_number_decimal_token1] = ACTIONS(953), - [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), - [aux_sym__val_number_token4] = ACTIONS(955), - [aux_sym__val_number_token5] = ACTIONS(955), - [aux_sym__val_number_token6] = ACTIONS(955), - [anon_sym_0b] = ACTIONS(953), - [anon_sym_0o] = ACTIONS(953), - [anon_sym_0x] = ACTIONS(953), - [sym_val_date] = ACTIONS(955), - [anon_sym_DQUOTE] = ACTIONS(955), - [sym__str_single_quotes] = ACTIONS(955), - [sym__str_back_ticks] = ACTIONS(955), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(955), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(955), - [anon_sym_DOT2] = ACTIONS(4816), - [anon_sym_err_GT] = ACTIONS(953), - [anon_sym_out_GT] = ACTIONS(953), - [anon_sym_e_GT] = ACTIONS(953), - [anon_sym_o_GT] = ACTIONS(953), - [anon_sym_err_PLUSout_GT] = ACTIONS(953), - [anon_sym_out_PLUSerr_GT] = ACTIONS(953), - [anon_sym_o_PLUSe_GT] = ACTIONS(953), - [anon_sym_e_PLUSo_GT] = ACTIONS(953), - [anon_sym_err_GT_GT] = ACTIONS(955), - [anon_sym_out_GT_GT] = ACTIONS(955), - [anon_sym_e_GT_GT] = ACTIONS(955), - [anon_sym_o_GT_GT] = ACTIONS(955), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(955), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(955), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(955), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(955), - [aux_sym_unquoted_token1] = ACTIONS(953), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(955), + [sym__newline] = ACTIONS(2431), + [anon_sym_SEMI] = ACTIONS(2431), + [anon_sym_PIPE] = ACTIONS(2431), + [anon_sym_err_GT_PIPE] = ACTIONS(2431), + [anon_sym_out_GT_PIPE] = ACTIONS(2431), + [anon_sym_e_GT_PIPE] = ACTIONS(2431), + [anon_sym_o_GT_PIPE] = ACTIONS(2431), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2431), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2431), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2431), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2431), + [anon_sym_RPAREN] = ACTIONS(2431), + [anon_sym_GT2] = ACTIONS(2429), + [anon_sym_DASH2] = ACTIONS(2431), + [anon_sym_in2] = ACTIONS(2431), + [anon_sym_if] = ACTIONS(2431), + [anon_sym_LBRACE] = ACTIONS(2431), + [anon_sym_RBRACE] = ACTIONS(2431), + [anon_sym_EQ_GT] = ACTIONS(2431), + [anon_sym_STAR2] = ACTIONS(2429), + [anon_sym_QMARK2] = ACTIONS(2431), + [anon_sym_and2] = ACTIONS(2431), + [anon_sym_xor2] = ACTIONS(2431), + [anon_sym_or2] = ACTIONS(2431), + [anon_sym_not_DASHin2] = ACTIONS(2431), + [anon_sym_has2] = ACTIONS(2431), + [anon_sym_not_DASHhas2] = ACTIONS(2431), + [anon_sym_starts_DASHwith2] = ACTIONS(2431), + [anon_sym_ends_DASHwith2] = ACTIONS(2431), + [anon_sym_EQ_EQ2] = ACTIONS(2431), + [anon_sym_BANG_EQ2] = ACTIONS(2431), + [anon_sym_LT2] = ACTIONS(2429), + [anon_sym_LT_EQ2] = ACTIONS(2431), + [anon_sym_GT_EQ2] = ACTIONS(2431), + [anon_sym_EQ_TILDE2] = ACTIONS(2431), + [anon_sym_BANG_TILDE2] = ACTIONS(2431), + [anon_sym_STAR_STAR2] = ACTIONS(2431), + [anon_sym_PLUS_PLUS2] = ACTIONS(2431), + [anon_sym_SLASH2] = ACTIONS(2429), + [anon_sym_mod2] = ACTIONS(2431), + [anon_sym_SLASH_SLASH2] = ACTIONS(2431), + [anon_sym_PLUS2] = ACTIONS(2429), + [anon_sym_bit_DASHshl2] = ACTIONS(2431), + [anon_sym_bit_DASHshr2] = ACTIONS(2431), + [anon_sym_bit_DASHand2] = ACTIONS(2431), + [anon_sym_bit_DASHxor2] = ACTIONS(2431), + [anon_sym_bit_DASHor2] = ACTIONS(2431), + [anon_sym_COLON2] = ACTIONS(2431), + [anon_sym_DOT2] = ACTIONS(2431), + [anon_sym_err_GT] = ACTIONS(2429), + [anon_sym_out_GT] = ACTIONS(2429), + [anon_sym_e_GT] = ACTIONS(2429), + [anon_sym_o_GT] = ACTIONS(2429), + [anon_sym_err_PLUSout_GT] = ACTIONS(2429), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2429), + [anon_sym_o_PLUSe_GT] = ACTIONS(2429), + [anon_sym_e_PLUSo_GT] = ACTIONS(2429), + [anon_sym_err_GT_GT] = ACTIONS(2431), + [anon_sym_out_GT_GT] = ACTIONS(2431), + [anon_sym_e_GT_GT] = ACTIONS(2431), + [anon_sym_o_GT_GT] = ACTIONS(2431), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2431), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2431), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2431), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2431), + [anon_sym_POUND] = ACTIONS(247), }, [1537] = { - [sym_cell_path] = STATE(1915), - [sym_path] = STATE(1749), + [sym_cell_path] = STATE(1986), + [sym_path] = STATE(1428), [sym_comment] = STATE(1537), - [aux_sym_cell_path_repeat1] = STATE(1549), - [ts_builtin_sym_end] = ACTIONS(1923), - [sym__newline] = ACTIONS(1923), - [anon_sym_SEMI] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(1923), - [anon_sym_err_GT_PIPE] = ACTIONS(1923), - [anon_sym_out_GT_PIPE] = ACTIONS(1923), - [anon_sym_e_GT_PIPE] = ACTIONS(1923), - [anon_sym_o_GT_PIPE] = ACTIONS(1923), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1923), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1923), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1923), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1923), - [anon_sym_LBRACK] = ACTIONS(1923), - [anon_sym_LPAREN] = ACTIONS(1923), - [anon_sym_DOLLAR] = ACTIONS(1921), - [anon_sym_DASH_DASH] = ACTIONS(1923), - [anon_sym_DASH2] = ACTIONS(1921), - [anon_sym_LBRACE] = ACTIONS(1923), - [anon_sym_DOT_DOT] = ACTIONS(1921), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1923), - [anon_sym_DOT_DOT_LT] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1923), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [aux_sym__val_number_decimal_token1] = ACTIONS(1921), - [aux_sym__val_number_decimal_token2] = ACTIONS(1923), - [aux_sym__val_number_decimal_token3] = ACTIONS(1923), - [aux_sym__val_number_decimal_token4] = ACTIONS(1923), - [aux_sym__val_number_token1] = ACTIONS(1923), - [aux_sym__val_number_token2] = ACTIONS(1923), - [aux_sym__val_number_token3] = ACTIONS(1923), - [aux_sym__val_number_token4] = ACTIONS(1923), - [aux_sym__val_number_token5] = ACTIONS(1923), - [aux_sym__val_number_token6] = ACTIONS(1923), - [anon_sym_0b] = ACTIONS(1921), - [anon_sym_0o] = ACTIONS(1921), - [anon_sym_0x] = ACTIONS(1921), - [sym_val_date] = ACTIONS(1923), - [anon_sym_DQUOTE] = ACTIONS(1923), - [sym__str_single_quotes] = ACTIONS(1923), - [sym__str_back_ticks] = ACTIONS(1923), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1923), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1923), - [anon_sym_DOT2] = ACTIONS(4750), - [anon_sym_err_GT] = ACTIONS(1921), - [anon_sym_out_GT] = ACTIONS(1921), - [anon_sym_e_GT] = ACTIONS(1921), - [anon_sym_o_GT] = ACTIONS(1921), - [anon_sym_err_PLUSout_GT] = ACTIONS(1921), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1921), - [anon_sym_o_PLUSe_GT] = ACTIONS(1921), - [anon_sym_e_PLUSo_GT] = ACTIONS(1921), - [anon_sym_err_GT_GT] = ACTIONS(1923), - [anon_sym_out_GT_GT] = ACTIONS(1923), - [anon_sym_e_GT_GT] = ACTIONS(1923), - [anon_sym_o_GT_GT] = ACTIONS(1923), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1923), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1923), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1923), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1923), - [aux_sym_unquoted_token1] = ACTIONS(1921), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1923), + [aux_sym_cell_path_repeat1] = STATE(1338), + [sym__newline] = ACTIONS(1947), + [anon_sym_SEMI] = ACTIONS(1947), + [anon_sym_PIPE] = ACTIONS(1947), + [anon_sym_err_GT_PIPE] = ACTIONS(1947), + [anon_sym_out_GT_PIPE] = ACTIONS(1947), + [anon_sym_e_GT_PIPE] = ACTIONS(1947), + [anon_sym_o_GT_PIPE] = ACTIONS(1947), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1947), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1947), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1947), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1947), + [anon_sym_RPAREN] = ACTIONS(1947), + [anon_sym_GT2] = ACTIONS(1945), + [anon_sym_DASH2] = ACTIONS(1947), + [anon_sym_in2] = ACTIONS(1947), + [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_RBRACE] = ACTIONS(1947), + [anon_sym_EQ_GT] = ACTIONS(1947), + [anon_sym_STAR2] = ACTIONS(1945), + [anon_sym_and2] = ACTIONS(1947), + [anon_sym_xor2] = ACTIONS(1947), + [anon_sym_or2] = ACTIONS(1947), + [anon_sym_not_DASHin2] = ACTIONS(1947), + [anon_sym_has2] = ACTIONS(1947), + [anon_sym_not_DASHhas2] = ACTIONS(1947), + [anon_sym_starts_DASHwith2] = ACTIONS(1947), + [anon_sym_ends_DASHwith2] = ACTIONS(1947), + [anon_sym_EQ_EQ2] = ACTIONS(1947), + [anon_sym_BANG_EQ2] = ACTIONS(1947), + [anon_sym_LT2] = ACTIONS(1945), + [anon_sym_LT_EQ2] = ACTIONS(1947), + [anon_sym_GT_EQ2] = ACTIONS(1947), + [anon_sym_EQ_TILDE2] = ACTIONS(1947), + [anon_sym_BANG_TILDE2] = ACTIONS(1947), + [anon_sym_STAR_STAR2] = ACTIONS(1947), + [anon_sym_PLUS_PLUS2] = ACTIONS(1947), + [anon_sym_SLASH2] = ACTIONS(1945), + [anon_sym_mod2] = ACTIONS(1947), + [anon_sym_SLASH_SLASH2] = ACTIONS(1947), + [anon_sym_PLUS2] = ACTIONS(1945), + [anon_sym_bit_DASHshl2] = ACTIONS(1947), + [anon_sym_bit_DASHshr2] = ACTIONS(1947), + [anon_sym_bit_DASHand2] = ACTIONS(1947), + [anon_sym_bit_DASHxor2] = ACTIONS(1947), + [anon_sym_bit_DASHor2] = ACTIONS(1947), + [anon_sym_DOT2] = ACTIONS(4770), + [anon_sym_err_GT] = ACTIONS(1945), + [anon_sym_out_GT] = ACTIONS(1945), + [anon_sym_e_GT] = ACTIONS(1945), + [anon_sym_o_GT] = ACTIONS(1945), + [anon_sym_err_PLUSout_GT] = ACTIONS(1945), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1945), + [anon_sym_o_PLUSe_GT] = ACTIONS(1945), + [anon_sym_e_PLUSo_GT] = ACTIONS(1945), + [anon_sym_err_GT_GT] = ACTIONS(1947), + [anon_sym_out_GT_GT] = ACTIONS(1947), + [anon_sym_e_GT_GT] = ACTIONS(1947), + [anon_sym_o_GT_GT] = ACTIONS(1947), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1947), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1947), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1947), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1947), + [anon_sym_POUND] = ACTIONS(247), }, [1538] = { [sym_comment] = STATE(1538), - [sym__newline] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(994), - [anon_sym_err_GT_PIPE] = ACTIONS(994), - [anon_sym_out_GT_PIPE] = ACTIONS(994), - [anon_sym_e_GT_PIPE] = ACTIONS(994), - [anon_sym_o_GT_PIPE] = ACTIONS(994), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), - [anon_sym_RPAREN] = ACTIONS(994), - [anon_sym_GT2] = ACTIONS(992), - [anon_sym_DASH2] = ACTIONS(994), - [anon_sym_in2] = ACTIONS(994), - [anon_sym_if] = ACTIONS(994), - [anon_sym_LBRACE] = ACTIONS(994), - [anon_sym_RBRACE] = ACTIONS(994), - [anon_sym_EQ_GT] = ACTIONS(994), - [anon_sym_STAR2] = ACTIONS(992), - [anon_sym_and2] = ACTIONS(994), - [anon_sym_xor2] = ACTIONS(994), - [anon_sym_or2] = ACTIONS(994), - [anon_sym_not_DASHin2] = ACTIONS(994), - [anon_sym_starts_DASHwith2] = ACTIONS(994), - [anon_sym_ends_DASHwith2] = ACTIONS(994), - [anon_sym_EQ_EQ2] = ACTIONS(994), - [anon_sym_BANG_EQ2] = ACTIONS(994), - [anon_sym_LT2] = ACTIONS(992), - [anon_sym_LT_EQ2] = ACTIONS(994), - [anon_sym_GT_EQ2] = ACTIONS(994), - [anon_sym_EQ_TILDE2] = ACTIONS(994), - [anon_sym_BANG_TILDE2] = ACTIONS(994), - [anon_sym_STAR_STAR2] = ACTIONS(994), - [anon_sym_PLUS_PLUS2] = ACTIONS(994), - [anon_sym_SLASH2] = ACTIONS(992), - [anon_sym_mod2] = ACTIONS(994), - [anon_sym_SLASH_SLASH2] = ACTIONS(994), - [anon_sym_PLUS2] = ACTIONS(992), - [anon_sym_bit_DASHshl2] = ACTIONS(994), - [anon_sym_bit_DASHshr2] = ACTIONS(994), - [anon_sym_bit_DASHand2] = ACTIONS(994), - [anon_sym_bit_DASHxor2] = ACTIONS(994), - [anon_sym_bit_DASHor2] = ACTIONS(994), - [anon_sym_DOT_DOT2] = ACTIONS(992), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(994), - [anon_sym_DOT_DOT_LT2] = ACTIONS(994), - [anon_sym_COLON2] = ACTIONS(994), - [anon_sym_DOT2] = ACTIONS(992), - [anon_sym_err_GT] = ACTIONS(992), - [anon_sym_out_GT] = ACTIONS(992), - [anon_sym_e_GT] = ACTIONS(992), - [anon_sym_o_GT] = ACTIONS(992), - [anon_sym_err_PLUSout_GT] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT] = ACTIONS(992), - [anon_sym_o_PLUSe_GT] = ACTIONS(992), - [anon_sym_e_PLUSo_GT] = ACTIONS(992), - [anon_sym_err_GT_GT] = ACTIONS(994), - [anon_sym_out_GT_GT] = ACTIONS(994), - [anon_sym_e_GT_GT] = ACTIONS(994), - [anon_sym_o_GT_GT] = ACTIONS(994), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), - [anon_sym_POUND] = ACTIONS(251), + [ts_builtin_sym_end] = ACTIONS(980), + [sym__newline] = ACTIONS(980), + [anon_sym_SEMI] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(980), + [anon_sym_err_GT_PIPE] = ACTIONS(980), + [anon_sym_out_GT_PIPE] = ACTIONS(980), + [anon_sym_e_GT_PIPE] = ACTIONS(980), + [anon_sym_o_GT_PIPE] = ACTIONS(980), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(980), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(980), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(980), + [anon_sym_LBRACK] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(980), + [anon_sym_DOLLAR] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_DASH2] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(980), + [anon_sym_DOT_DOT] = ACTIONS(978), + [anon_sym_DOT_DOT2] = ACTIONS(978), + [anon_sym_DOT_DOT_EQ] = ACTIONS(978), + [anon_sym_DOT_DOT_LT] = ACTIONS(978), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(980), + [anon_sym_DOT_DOT_LT2] = ACTIONS(980), + [anon_sym_null] = ACTIONS(980), + [anon_sym_true] = ACTIONS(980), + [anon_sym_false] = ACTIONS(980), + [aux_sym__val_number_decimal_token1] = ACTIONS(978), + [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), + [aux_sym__val_number_token4] = ACTIONS(980), + [aux_sym__val_number_token5] = ACTIONS(980), + [aux_sym__val_number_token6] = ACTIONS(980), + [anon_sym_0b] = ACTIONS(978), + [anon_sym_0o] = ACTIONS(978), + [anon_sym_0x] = ACTIONS(978), + [sym_val_date] = ACTIONS(980), + [anon_sym_DQUOTE] = ACTIONS(980), + [sym__str_single_quotes] = ACTIONS(980), + [sym__str_back_ticks] = ACTIONS(980), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(980), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(980), + [anon_sym_DOT2] = ACTIONS(978), + [anon_sym_err_GT] = ACTIONS(978), + [anon_sym_out_GT] = ACTIONS(978), + [anon_sym_e_GT] = ACTIONS(978), + [anon_sym_o_GT] = ACTIONS(978), + [anon_sym_err_PLUSout_GT] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT] = ACTIONS(978), + [anon_sym_o_PLUSe_GT] = ACTIONS(978), + [anon_sym_e_PLUSo_GT] = ACTIONS(978), + [anon_sym_err_GT_GT] = ACTIONS(980), + [anon_sym_out_GT_GT] = ACTIONS(980), + [anon_sym_e_GT_GT] = ACTIONS(980), + [anon_sym_o_GT_GT] = ACTIONS(980), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(980), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(980), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(980), + [aux_sym_unquoted_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(980), }, [1539] = { [sym_comment] = STATE(1539), - [sym__newline] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_PIPE] = ACTIONS(990), - [anon_sym_err_GT_PIPE] = ACTIONS(990), - [anon_sym_out_GT_PIPE] = ACTIONS(990), - [anon_sym_e_GT_PIPE] = ACTIONS(990), - [anon_sym_o_GT_PIPE] = ACTIONS(990), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(990), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(990), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(990), - [anon_sym_RPAREN] = ACTIONS(990), - [anon_sym_GT2] = ACTIONS(988), - [anon_sym_DASH2] = ACTIONS(990), - [anon_sym_in2] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(990), - [anon_sym_EQ_GT] = ACTIONS(990), - [anon_sym_STAR2] = ACTIONS(988), - [anon_sym_and2] = ACTIONS(990), - [anon_sym_xor2] = ACTIONS(990), - [anon_sym_or2] = ACTIONS(990), - [anon_sym_not_DASHin2] = ACTIONS(990), - [anon_sym_starts_DASHwith2] = ACTIONS(990), - [anon_sym_ends_DASHwith2] = ACTIONS(990), - [anon_sym_EQ_EQ2] = ACTIONS(990), - [anon_sym_BANG_EQ2] = ACTIONS(990), - [anon_sym_LT2] = ACTIONS(988), - [anon_sym_LT_EQ2] = ACTIONS(990), - [anon_sym_GT_EQ2] = ACTIONS(990), - [anon_sym_EQ_TILDE2] = ACTIONS(990), - [anon_sym_BANG_TILDE2] = ACTIONS(990), - [anon_sym_STAR_STAR2] = ACTIONS(990), - [anon_sym_PLUS_PLUS2] = ACTIONS(990), - [anon_sym_SLASH2] = ACTIONS(988), - [anon_sym_mod2] = ACTIONS(990), - [anon_sym_SLASH_SLASH2] = ACTIONS(990), - [anon_sym_PLUS2] = ACTIONS(988), - [anon_sym_bit_DASHshl2] = ACTIONS(990), - [anon_sym_bit_DASHshr2] = ACTIONS(990), - [anon_sym_bit_DASHand2] = ACTIONS(990), - [anon_sym_bit_DASHxor2] = ACTIONS(990), - [anon_sym_bit_DASHor2] = ACTIONS(990), - [anon_sym_DOT_DOT2] = ACTIONS(988), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(990), - [anon_sym_DOT_DOT_LT2] = ACTIONS(990), - [anon_sym_COLON2] = ACTIONS(990), - [anon_sym_DOT2] = ACTIONS(988), - [anon_sym_err_GT] = ACTIONS(988), - [anon_sym_out_GT] = ACTIONS(988), - [anon_sym_e_GT] = ACTIONS(988), - [anon_sym_o_GT] = ACTIONS(988), - [anon_sym_err_PLUSout_GT] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT] = ACTIONS(988), - [anon_sym_o_PLUSe_GT] = ACTIONS(988), - [anon_sym_e_PLUSo_GT] = ACTIONS(988), - [anon_sym_err_GT_GT] = ACTIONS(990), - [anon_sym_out_GT_GT] = ACTIONS(990), - [anon_sym_e_GT_GT] = ACTIONS(990), - [anon_sym_o_GT_GT] = ACTIONS(990), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(990), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(990), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(990), - [anon_sym_POUND] = ACTIONS(251), + [ts_builtin_sym_end] = ACTIONS(976), + [sym__newline] = ACTIONS(976), + [anon_sym_SEMI] = ACTIONS(976), + [anon_sym_PIPE] = ACTIONS(976), + [anon_sym_err_GT_PIPE] = ACTIONS(976), + [anon_sym_out_GT_PIPE] = ACTIONS(976), + [anon_sym_e_GT_PIPE] = ACTIONS(976), + [anon_sym_o_GT_PIPE] = ACTIONS(976), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(976), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(976), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(976), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(976), + [anon_sym_LBRACK] = ACTIONS(976), + [anon_sym_LPAREN] = ACTIONS(976), + [anon_sym_DOLLAR] = ACTIONS(974), + [anon_sym_DASH_DASH] = ACTIONS(976), + [anon_sym_DASH2] = ACTIONS(974), + [anon_sym_LBRACE] = ACTIONS(976), + [anon_sym_DOT_DOT] = ACTIONS(974), + [anon_sym_DOT_DOT2] = ACTIONS(974), + [anon_sym_DOT_DOT_EQ] = ACTIONS(974), + [anon_sym_DOT_DOT_LT] = ACTIONS(974), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(976), + [anon_sym_DOT_DOT_LT2] = ACTIONS(976), + [anon_sym_null] = ACTIONS(976), + [anon_sym_true] = ACTIONS(976), + [anon_sym_false] = ACTIONS(976), + [aux_sym__val_number_decimal_token1] = ACTIONS(974), + [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), + [aux_sym__val_number_token4] = ACTIONS(976), + [aux_sym__val_number_token5] = ACTIONS(976), + [aux_sym__val_number_token6] = ACTIONS(976), + [anon_sym_0b] = ACTIONS(974), + [anon_sym_0o] = ACTIONS(974), + [anon_sym_0x] = ACTIONS(974), + [sym_val_date] = ACTIONS(976), + [anon_sym_DQUOTE] = ACTIONS(976), + [sym__str_single_quotes] = ACTIONS(976), + [sym__str_back_ticks] = ACTIONS(976), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(976), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(976), + [anon_sym_DOT2] = ACTIONS(974), + [anon_sym_err_GT] = ACTIONS(974), + [anon_sym_out_GT] = ACTIONS(974), + [anon_sym_e_GT] = ACTIONS(974), + [anon_sym_o_GT] = ACTIONS(974), + [anon_sym_err_PLUSout_GT] = ACTIONS(974), + [anon_sym_out_PLUSerr_GT] = ACTIONS(974), + [anon_sym_o_PLUSe_GT] = ACTIONS(974), + [anon_sym_e_PLUSo_GT] = ACTIONS(974), + [anon_sym_err_GT_GT] = ACTIONS(976), + [anon_sym_out_GT_GT] = ACTIONS(976), + [anon_sym_e_GT_GT] = ACTIONS(976), + [anon_sym_o_GT_GT] = ACTIONS(976), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(976), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(976), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(976), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(976), + [aux_sym_unquoted_token1] = ACTIONS(974), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(976), }, [1540] = { [sym_comment] = STATE(1540), - [sym__newline] = ACTIONS(2025), - [anon_sym_SEMI] = ACTIONS(2025), - [anon_sym_PIPE] = ACTIONS(2025), - [anon_sym_err_GT_PIPE] = ACTIONS(2025), - [anon_sym_out_GT_PIPE] = ACTIONS(2025), - [anon_sym_e_GT_PIPE] = ACTIONS(2025), - [anon_sym_o_GT_PIPE] = ACTIONS(2025), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2025), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2025), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2025), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2025), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_LPAREN] = ACTIONS(2025), - [anon_sym_RPAREN] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2019), - [anon_sym_DASH_DASH] = ACTIONS(2025), - [anon_sym_DASH2] = ACTIONS(2019), - [anon_sym_LBRACE] = ACTIONS(2025), - [anon_sym_RBRACE] = ACTIONS(2025), - [anon_sym_DOT_DOT] = ACTIONS(2019), - [anon_sym_DOT_DOT2] = ACTIONS(4819), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2019), - [anon_sym_DOT_DOT_LT] = ACTIONS(2019), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4821), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4821), - [anon_sym_null] = ACTIONS(2025), - [anon_sym_true] = ACTIONS(2025), - [anon_sym_false] = ACTIONS(2025), - [aux_sym__val_number_decimal_token1] = ACTIONS(2019), - [aux_sym__val_number_decimal_token2] = ACTIONS(2025), - [aux_sym__val_number_decimal_token3] = ACTIONS(2025), - [aux_sym__val_number_decimal_token4] = ACTIONS(2025), - [aux_sym__val_number_token1] = ACTIONS(2025), - [aux_sym__val_number_token2] = ACTIONS(2025), - [aux_sym__val_number_token3] = ACTIONS(2025), - [aux_sym__val_number_token4] = ACTIONS(2025), - [aux_sym__val_number_token5] = ACTIONS(2025), - [aux_sym__val_number_token6] = ACTIONS(2025), - [anon_sym_0b] = ACTIONS(2019), - [anon_sym_0o] = ACTIONS(2019), - [anon_sym_0x] = ACTIONS(2019), - [sym_val_date] = ACTIONS(2025), - [anon_sym_DQUOTE] = ACTIONS(2025), - [sym__str_single_quotes] = ACTIONS(2025), - [sym__str_back_ticks] = ACTIONS(2025), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2025), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2025), - [anon_sym_err_GT] = ACTIONS(2019), - [anon_sym_out_GT] = ACTIONS(2019), - [anon_sym_e_GT] = ACTIONS(2019), - [anon_sym_o_GT] = ACTIONS(2019), - [anon_sym_err_PLUSout_GT] = ACTIONS(2019), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2019), - [anon_sym_o_PLUSe_GT] = ACTIONS(2019), - [anon_sym_e_PLUSo_GT] = ACTIONS(2019), - [anon_sym_err_GT_GT] = ACTIONS(2025), - [anon_sym_out_GT_GT] = ACTIONS(2025), - [anon_sym_e_GT_GT] = ACTIONS(2025), - [anon_sym_o_GT_GT] = ACTIONS(2025), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2025), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2025), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2025), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2025), - [aux_sym_unquoted_token1] = ACTIONS(2019), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2025), + [ts_builtin_sym_end] = ACTIONS(1768), + [sym__newline] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_err_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_GT_PIPE] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1768), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_DOLLAR] = ACTIONS(1766), + [anon_sym_DASH_DASH] = ACTIONS(1768), + [anon_sym_DASH2] = ACTIONS(1766), + [anon_sym_LBRACE] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1766), + [anon_sym_DOT_DOT2] = ACTIONS(1766), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1766), + [anon_sym_DOT_DOT_LT] = ACTIONS(1766), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1768), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1768), + [aux_sym__immediate_decimal_token2] = ACTIONS(4812), + [anon_sym_null] = ACTIONS(1768), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [aux_sym__val_number_decimal_token1] = ACTIONS(1766), + [aux_sym__val_number_decimal_token2] = ACTIONS(1768), + [aux_sym__val_number_decimal_token3] = ACTIONS(1768), + [aux_sym__val_number_decimal_token4] = ACTIONS(1768), + [aux_sym__val_number_token1] = ACTIONS(1768), + [aux_sym__val_number_token2] = ACTIONS(1768), + [aux_sym__val_number_token3] = ACTIONS(1768), + [aux_sym__val_number_token4] = ACTIONS(1768), + [aux_sym__val_number_token5] = ACTIONS(1768), + [aux_sym__val_number_token6] = ACTIONS(1768), + [anon_sym_0b] = ACTIONS(1766), + [anon_sym_0o] = ACTIONS(1766), + [anon_sym_0x] = ACTIONS(1766), + [sym_val_date] = ACTIONS(1768), + [anon_sym_DQUOTE] = ACTIONS(1768), + [sym__str_single_quotes] = ACTIONS(1768), + [sym__str_back_ticks] = ACTIONS(1768), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1768), + [anon_sym_err_GT] = ACTIONS(1766), + [anon_sym_out_GT] = ACTIONS(1766), + [anon_sym_e_GT] = ACTIONS(1766), + [anon_sym_o_GT] = ACTIONS(1766), + [anon_sym_err_PLUSout_GT] = ACTIONS(1766), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1766), + [anon_sym_o_PLUSe_GT] = ACTIONS(1766), + [anon_sym_e_PLUSo_GT] = ACTIONS(1766), + [anon_sym_err_GT_GT] = ACTIONS(1768), + [anon_sym_out_GT_GT] = ACTIONS(1768), + [anon_sym_e_GT_GT] = ACTIONS(1768), + [anon_sym_o_GT_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1768), + [aux_sym_unquoted_token1] = ACTIONS(1766), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1768), }, [1541] = { + [sym_cell_path] = STATE(2019), + [sym_path] = STATE(1428), [sym_comment] = STATE(1541), - [sym__newline] = ACTIONS(2033), - [anon_sym_SEMI] = ACTIONS(2033), - [anon_sym_PIPE] = ACTIONS(2033), - [anon_sym_err_GT_PIPE] = ACTIONS(2033), - [anon_sym_out_GT_PIPE] = ACTIONS(2033), - [anon_sym_e_GT_PIPE] = ACTIONS(2033), - [anon_sym_o_GT_PIPE] = ACTIONS(2033), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2033), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2033), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2033), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2033), - [anon_sym_LBRACK] = ACTIONS(2033), - [anon_sym_LPAREN] = ACTIONS(2033), - [anon_sym_RPAREN] = ACTIONS(2033), - [anon_sym_DOLLAR] = ACTIONS(2027), - [anon_sym_DASH_DASH] = ACTIONS(2033), - [anon_sym_DASH2] = ACTIONS(2027), - [anon_sym_LBRACE] = ACTIONS(2033), - [anon_sym_RBRACE] = ACTIONS(2033), - [anon_sym_DOT_DOT] = ACTIONS(2027), - [anon_sym_DOT_DOT2] = ACTIONS(4823), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2027), - [anon_sym_DOT_DOT_LT] = ACTIONS(2027), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4825), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4825), - [anon_sym_null] = ACTIONS(2033), - [anon_sym_true] = ACTIONS(2033), - [anon_sym_false] = ACTIONS(2033), - [aux_sym__val_number_decimal_token1] = ACTIONS(2027), - [aux_sym__val_number_decimal_token2] = ACTIONS(2033), - [aux_sym__val_number_decimal_token3] = ACTIONS(2033), - [aux_sym__val_number_decimal_token4] = ACTIONS(2033), - [aux_sym__val_number_token1] = ACTIONS(2033), - [aux_sym__val_number_token2] = ACTIONS(2033), - [aux_sym__val_number_token3] = ACTIONS(2033), - [aux_sym__val_number_token4] = ACTIONS(2033), - [aux_sym__val_number_token5] = ACTIONS(2033), - [aux_sym__val_number_token6] = ACTIONS(2033), - [anon_sym_0b] = ACTIONS(2027), - [anon_sym_0o] = ACTIONS(2027), - [anon_sym_0x] = ACTIONS(2027), - [sym_val_date] = ACTIONS(2033), - [anon_sym_DQUOTE] = ACTIONS(2033), - [sym__str_single_quotes] = ACTIONS(2033), - [sym__str_back_ticks] = ACTIONS(2033), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2033), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2033), - [anon_sym_err_GT] = ACTIONS(2027), - [anon_sym_out_GT] = ACTIONS(2027), - [anon_sym_e_GT] = ACTIONS(2027), - [anon_sym_o_GT] = ACTIONS(2027), - [anon_sym_err_PLUSout_GT] = ACTIONS(2027), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2027), - [anon_sym_o_PLUSe_GT] = ACTIONS(2027), - [anon_sym_e_PLUSo_GT] = ACTIONS(2027), - [anon_sym_err_GT_GT] = ACTIONS(2033), - [anon_sym_out_GT_GT] = ACTIONS(2033), - [anon_sym_e_GT_GT] = ACTIONS(2033), - [anon_sym_o_GT_GT] = ACTIONS(2033), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2033), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2033), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2033), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2033), - [aux_sym_unquoted_token1] = ACTIONS(2027), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2033), + [aux_sym_cell_path_repeat1] = STATE(1338), + [sym__newline] = ACTIONS(1895), + [anon_sym_SEMI] = ACTIONS(1895), + [anon_sym_PIPE] = ACTIONS(1895), + [anon_sym_err_GT_PIPE] = ACTIONS(1895), + [anon_sym_out_GT_PIPE] = ACTIONS(1895), + [anon_sym_e_GT_PIPE] = ACTIONS(1895), + [anon_sym_o_GT_PIPE] = ACTIONS(1895), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1895), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1895), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1895), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1895), + [anon_sym_RPAREN] = ACTIONS(1895), + [anon_sym_GT2] = ACTIONS(1893), + [anon_sym_DASH2] = ACTIONS(1895), + [anon_sym_in2] = ACTIONS(1895), + [anon_sym_LBRACE] = ACTIONS(1895), + [anon_sym_RBRACE] = ACTIONS(1895), + [anon_sym_EQ_GT] = ACTIONS(1895), + [anon_sym_STAR2] = ACTIONS(1893), + [anon_sym_and2] = ACTIONS(1895), + [anon_sym_xor2] = ACTIONS(1895), + [anon_sym_or2] = ACTIONS(1895), + [anon_sym_not_DASHin2] = ACTIONS(1895), + [anon_sym_has2] = ACTIONS(1895), + [anon_sym_not_DASHhas2] = ACTIONS(1895), + [anon_sym_starts_DASHwith2] = ACTIONS(1895), + [anon_sym_ends_DASHwith2] = ACTIONS(1895), + [anon_sym_EQ_EQ2] = ACTIONS(1895), + [anon_sym_BANG_EQ2] = ACTIONS(1895), + [anon_sym_LT2] = ACTIONS(1893), + [anon_sym_LT_EQ2] = ACTIONS(1895), + [anon_sym_GT_EQ2] = ACTIONS(1895), + [anon_sym_EQ_TILDE2] = ACTIONS(1895), + [anon_sym_BANG_TILDE2] = ACTIONS(1895), + [anon_sym_STAR_STAR2] = ACTIONS(1895), + [anon_sym_PLUS_PLUS2] = ACTIONS(1895), + [anon_sym_SLASH2] = ACTIONS(1893), + [anon_sym_mod2] = ACTIONS(1895), + [anon_sym_SLASH_SLASH2] = ACTIONS(1895), + [anon_sym_PLUS2] = ACTIONS(1893), + [anon_sym_bit_DASHshl2] = ACTIONS(1895), + [anon_sym_bit_DASHshr2] = ACTIONS(1895), + [anon_sym_bit_DASHand2] = ACTIONS(1895), + [anon_sym_bit_DASHxor2] = ACTIONS(1895), + [anon_sym_bit_DASHor2] = ACTIONS(1895), + [anon_sym_DOT2] = ACTIONS(4770), + [anon_sym_err_GT] = ACTIONS(1893), + [anon_sym_out_GT] = ACTIONS(1893), + [anon_sym_e_GT] = ACTIONS(1893), + [anon_sym_o_GT] = ACTIONS(1893), + [anon_sym_err_PLUSout_GT] = ACTIONS(1893), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1893), + [anon_sym_o_PLUSe_GT] = ACTIONS(1893), + [anon_sym_e_PLUSo_GT] = ACTIONS(1893), + [anon_sym_err_GT_GT] = ACTIONS(1895), + [anon_sym_out_GT_GT] = ACTIONS(1895), + [anon_sym_e_GT_GT] = ACTIONS(1895), + [anon_sym_o_GT_GT] = ACTIONS(1895), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1895), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1895), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1895), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1895), + [anon_sym_POUND] = ACTIONS(247), }, [1542] = { [sym_comment] = STATE(1542), - [sym__newline] = ACTIONS(2041), - [anon_sym_SEMI] = ACTIONS(2041), - [anon_sym_PIPE] = ACTIONS(2041), - [anon_sym_err_GT_PIPE] = ACTIONS(2041), - [anon_sym_out_GT_PIPE] = ACTIONS(2041), - [anon_sym_e_GT_PIPE] = ACTIONS(2041), - [anon_sym_o_GT_PIPE] = ACTIONS(2041), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2041), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2041), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2041), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2041), - [anon_sym_LBRACK] = ACTIONS(2041), - [anon_sym_LPAREN] = ACTIONS(2041), - [anon_sym_RPAREN] = ACTIONS(2041), - [anon_sym_DOLLAR] = ACTIONS(2035), - [anon_sym_DASH_DASH] = ACTIONS(2041), - [anon_sym_DASH2] = ACTIONS(2035), - [anon_sym_LBRACE] = ACTIONS(2041), - [anon_sym_RBRACE] = ACTIONS(2041), - [anon_sym_DOT_DOT] = ACTIONS(2035), - [anon_sym_DOT_DOT2] = ACTIONS(4827), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2035), - [anon_sym_DOT_DOT_LT] = ACTIONS(2035), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4829), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4829), - [anon_sym_null] = ACTIONS(2041), - [anon_sym_true] = ACTIONS(2041), - [anon_sym_false] = ACTIONS(2041), - [aux_sym__val_number_decimal_token1] = ACTIONS(2035), - [aux_sym__val_number_decimal_token2] = ACTIONS(2041), - [aux_sym__val_number_decimal_token3] = ACTIONS(2041), - [aux_sym__val_number_decimal_token4] = ACTIONS(2041), - [aux_sym__val_number_token1] = ACTIONS(2041), - [aux_sym__val_number_token2] = ACTIONS(2041), - [aux_sym__val_number_token3] = ACTIONS(2041), - [aux_sym__val_number_token4] = ACTIONS(2041), - [aux_sym__val_number_token5] = ACTIONS(2041), - [aux_sym__val_number_token6] = ACTIONS(2041), - [anon_sym_0b] = ACTIONS(2035), - [anon_sym_0o] = ACTIONS(2035), - [anon_sym_0x] = ACTIONS(2035), - [sym_val_date] = ACTIONS(2041), - [anon_sym_DQUOTE] = ACTIONS(2041), - [sym__str_single_quotes] = ACTIONS(2041), - [sym__str_back_ticks] = ACTIONS(2041), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2041), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2041), - [anon_sym_err_GT] = ACTIONS(2035), - [anon_sym_out_GT] = ACTIONS(2035), - [anon_sym_e_GT] = ACTIONS(2035), - [anon_sym_o_GT] = ACTIONS(2035), - [anon_sym_err_PLUSout_GT] = ACTIONS(2035), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2035), - [anon_sym_o_PLUSe_GT] = ACTIONS(2035), - [anon_sym_e_PLUSo_GT] = ACTIONS(2035), - [anon_sym_err_GT_GT] = ACTIONS(2041), - [anon_sym_out_GT_GT] = ACTIONS(2041), - [anon_sym_e_GT_GT] = ACTIONS(2041), - [anon_sym_o_GT_GT] = ACTIONS(2041), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2041), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2041), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2041), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2041), - [aux_sym_unquoted_token1] = ACTIONS(2035), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2041), + [ts_builtin_sym_end] = ACTIONS(1695), + [sym__newline] = ACTIONS(1695), + [anon_sym_SEMI] = ACTIONS(1695), + [anon_sym_PIPE] = ACTIONS(1695), + [anon_sym_err_GT_PIPE] = ACTIONS(1695), + [anon_sym_out_GT_PIPE] = ACTIONS(1695), + [anon_sym_e_GT_PIPE] = ACTIONS(1695), + [anon_sym_o_GT_PIPE] = ACTIONS(1695), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1695), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1695), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1695), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1695), + [anon_sym_GT2] = ACTIONS(1693), + [anon_sym_DASH2] = ACTIONS(1695), + [anon_sym_in2] = ACTIONS(1695), + [anon_sym_STAR2] = ACTIONS(1693), + [anon_sym_and2] = ACTIONS(1695), + [anon_sym_xor2] = ACTIONS(1695), + [anon_sym_or2] = ACTIONS(1695), + [anon_sym_not_DASHin2] = ACTIONS(1695), + [anon_sym_has2] = ACTIONS(1695), + [anon_sym_not_DASHhas2] = ACTIONS(1695), + [anon_sym_starts_DASHwith2] = ACTIONS(1695), + [anon_sym_ends_DASHwith2] = ACTIONS(1695), + [anon_sym_EQ_EQ2] = ACTIONS(1695), + [anon_sym_BANG_EQ2] = ACTIONS(1695), + [anon_sym_LT2] = ACTIONS(1693), + [anon_sym_LT_EQ2] = ACTIONS(1695), + [anon_sym_GT_EQ2] = ACTIONS(1695), + [anon_sym_EQ_TILDE2] = ACTIONS(1695), + [anon_sym_BANG_TILDE2] = ACTIONS(1695), + [anon_sym_LPAREN2] = ACTIONS(1695), + [anon_sym_STAR_STAR2] = ACTIONS(1695), + [anon_sym_PLUS_PLUS2] = ACTIONS(1695), + [anon_sym_SLASH2] = ACTIONS(1693), + [anon_sym_mod2] = ACTIONS(1695), + [anon_sym_SLASH_SLASH2] = ACTIONS(1695), + [anon_sym_PLUS2] = ACTIONS(1693), + [anon_sym_bit_DASHshl2] = ACTIONS(1695), + [anon_sym_bit_DASHshr2] = ACTIONS(1695), + [anon_sym_bit_DASHand2] = ACTIONS(1695), + [anon_sym_bit_DASHxor2] = ACTIONS(1695), + [anon_sym_bit_DASHor2] = ACTIONS(1695), + [anon_sym_DOT_DOT2] = ACTIONS(1693), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1695), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1695), + [aux_sym__immediate_decimal_token1] = ACTIONS(4814), + [aux_sym__immediate_decimal_token2] = ACTIONS(4816), + [anon_sym_err_GT] = ACTIONS(1693), + [anon_sym_out_GT] = ACTIONS(1693), + [anon_sym_e_GT] = ACTIONS(1693), + [anon_sym_o_GT] = ACTIONS(1693), + [anon_sym_err_PLUSout_GT] = ACTIONS(1693), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1693), + [anon_sym_o_PLUSe_GT] = ACTIONS(1693), + [anon_sym_e_PLUSo_GT] = ACTIONS(1693), + [anon_sym_err_GT_GT] = ACTIONS(1695), + [anon_sym_out_GT_GT] = ACTIONS(1695), + [anon_sym_e_GT_GT] = ACTIONS(1695), + [anon_sym_o_GT_GT] = ACTIONS(1695), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1695), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1695), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1695), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1695), + [aux_sym_unquoted_token2] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(247), }, [1543] = { [sym_comment] = STATE(1543), - [anon_sym_EQ] = ACTIONS(4831), - [anon_sym_PLUS_EQ] = ACTIONS(4833), - [anon_sym_DASH_EQ] = ACTIONS(4833), - [anon_sym_STAR_EQ] = ACTIONS(4833), - [anon_sym_SLASH_EQ] = ACTIONS(4833), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4833), - [sym__newline] = ACTIONS(1012), - [anon_sym_SEMI] = ACTIONS(1012), - [anon_sym_PIPE] = ACTIONS(1012), - [anon_sym_err_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_GT_PIPE] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1012), - [anon_sym_RPAREN] = ACTIONS(1012), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_in2] = ACTIONS(1012), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1012), - [anon_sym_xor2] = ACTIONS(1012), - [anon_sym_or2] = ACTIONS(1012), - [anon_sym_not_DASHin2] = ACTIONS(1012), - [anon_sym_starts_DASHwith2] = ACTIONS(1012), - [anon_sym_ends_DASHwith2] = ACTIONS(1012), - [anon_sym_EQ_EQ2] = ACTIONS(1012), - [anon_sym_BANG_EQ2] = ACTIONS(1012), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1012), - [anon_sym_GT_EQ2] = ACTIONS(1012), - [anon_sym_EQ_TILDE2] = ACTIONS(1012), - [anon_sym_BANG_TILDE2] = ACTIONS(1012), - [anon_sym_STAR_STAR2] = ACTIONS(1012), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1012), - [anon_sym_SLASH_SLASH2] = ACTIONS(1012), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1012), - [anon_sym_bit_DASHshr2] = ACTIONS(1012), - [anon_sym_bit_DASHand2] = ACTIONS(1012), - [anon_sym_bit_DASHxor2] = ACTIONS(1012), - [anon_sym_bit_DASHor2] = ACTIONS(1012), - [anon_sym_DOT_DOT2] = ACTIONS(1024), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1026), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1026), - [anon_sym_err_GT] = ACTIONS(1016), - [anon_sym_out_GT] = ACTIONS(1016), - [anon_sym_e_GT] = ACTIONS(1016), - [anon_sym_o_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT] = ACTIONS(1016), - [anon_sym_err_GT_GT] = ACTIONS(1012), - [anon_sym_out_GT_GT] = ACTIONS(1012), - [anon_sym_e_GT_GT] = ACTIONS(1012), - [anon_sym_o_GT_GT] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1012), - [anon_sym_POUND] = ACTIONS(251), + [ts_builtin_sym_end] = ACTIONS(1703), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_GT2] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1703), + [anon_sym_in2] = ACTIONS(1703), + [anon_sym_STAR2] = ACTIONS(1701), + [anon_sym_and2] = ACTIONS(1703), + [anon_sym_xor2] = ACTIONS(1703), + [anon_sym_or2] = ACTIONS(1703), + [anon_sym_not_DASHin2] = ACTIONS(1703), + [anon_sym_has2] = ACTIONS(1703), + [anon_sym_not_DASHhas2] = ACTIONS(1703), + [anon_sym_starts_DASHwith2] = ACTIONS(1703), + [anon_sym_ends_DASHwith2] = ACTIONS(1703), + [anon_sym_EQ_EQ2] = ACTIONS(1703), + [anon_sym_BANG_EQ2] = ACTIONS(1703), + [anon_sym_LT2] = ACTIONS(1701), + [anon_sym_LT_EQ2] = ACTIONS(1703), + [anon_sym_GT_EQ2] = ACTIONS(1703), + [anon_sym_EQ_TILDE2] = ACTIONS(1703), + [anon_sym_BANG_TILDE2] = ACTIONS(1703), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_STAR_STAR2] = ACTIONS(1703), + [anon_sym_PLUS_PLUS2] = ACTIONS(1703), + [anon_sym_SLASH2] = ACTIONS(1701), + [anon_sym_mod2] = ACTIONS(1703), + [anon_sym_SLASH_SLASH2] = ACTIONS(1703), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_bit_DASHshl2] = ACTIONS(1703), + [anon_sym_bit_DASHshr2] = ACTIONS(1703), + [anon_sym_bit_DASHand2] = ACTIONS(1703), + [anon_sym_bit_DASHxor2] = ACTIONS(1703), + [anon_sym_bit_DASHor2] = ACTIONS(1703), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT] = ACTIONS(4818), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(4820), + [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(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(247), }, [1544] = { [sym_comment] = STATE(1544), - [sym__newline] = ACTIONS(1682), - [anon_sym_SEMI] = ACTIONS(1682), - [anon_sym_PIPE] = ACTIONS(1682), - [anon_sym_err_GT_PIPE] = ACTIONS(1682), - [anon_sym_out_GT_PIPE] = ACTIONS(1682), - [anon_sym_e_GT_PIPE] = ACTIONS(1682), - [anon_sym_o_GT_PIPE] = ACTIONS(1682), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1682), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1682), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1682), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1682), - [anon_sym_RPAREN] = ACTIONS(1682), - [anon_sym_GT2] = ACTIONS(1680), - [anon_sym_DASH2] = ACTIONS(1682), - [anon_sym_in2] = ACTIONS(1682), - [anon_sym_RBRACE] = ACTIONS(1682), - [anon_sym_STAR2] = ACTIONS(1680), - [anon_sym_and2] = ACTIONS(1682), - [anon_sym_xor2] = ACTIONS(1682), - [anon_sym_or2] = ACTIONS(1682), - [anon_sym_not_DASHin2] = ACTIONS(1682), - [anon_sym_starts_DASHwith2] = ACTIONS(1682), - [anon_sym_ends_DASHwith2] = ACTIONS(1682), - [anon_sym_EQ_EQ2] = ACTIONS(1682), - [anon_sym_BANG_EQ2] = ACTIONS(1682), - [anon_sym_LT2] = ACTIONS(1680), - [anon_sym_LT_EQ2] = ACTIONS(1682), - [anon_sym_GT_EQ2] = ACTIONS(1682), - [anon_sym_EQ_TILDE2] = ACTIONS(1682), - [anon_sym_BANG_TILDE2] = ACTIONS(1682), - [anon_sym_LPAREN2] = ACTIONS(1682), - [anon_sym_STAR_STAR2] = ACTIONS(1682), - [anon_sym_PLUS_PLUS2] = ACTIONS(1682), - [anon_sym_SLASH2] = ACTIONS(1680), - [anon_sym_mod2] = ACTIONS(1682), - [anon_sym_SLASH_SLASH2] = ACTIONS(1682), - [anon_sym_PLUS2] = ACTIONS(1680), - [anon_sym_bit_DASHshl2] = ACTIONS(1682), - [anon_sym_bit_DASHshr2] = ACTIONS(1682), - [anon_sym_bit_DASHand2] = ACTIONS(1682), - [anon_sym_bit_DASHxor2] = ACTIONS(1682), - [anon_sym_bit_DASHor2] = ACTIONS(1682), - [anon_sym_DOT_DOT2] = ACTIONS(1680), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1682), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1682), - [aux_sym__immediate_decimal_token2] = ACTIONS(4835), - [sym_filesize_unit] = ACTIONS(1680), - [sym_duration_unit] = ACTIONS(1682), - [anon_sym_err_GT] = ACTIONS(1680), - [anon_sym_out_GT] = ACTIONS(1680), - [anon_sym_e_GT] = ACTIONS(1680), - [anon_sym_o_GT] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT] = ACTIONS(1680), - [anon_sym_err_GT_GT] = ACTIONS(1682), - [anon_sym_out_GT_GT] = ACTIONS(1682), - [anon_sym_e_GT_GT] = ACTIONS(1682), - [anon_sym_o_GT_GT] = ACTIONS(1682), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1682), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1682), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1682), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1682), - [aux_sym_unquoted_token2] = ACTIONS(1680), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(2036), + [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_PIPE] = ACTIONS(2036), + [anon_sym_err_GT_PIPE] = ACTIONS(2036), + [anon_sym_out_GT_PIPE] = ACTIONS(2036), + [anon_sym_e_GT_PIPE] = ACTIONS(2036), + [anon_sym_o_GT_PIPE] = ACTIONS(2036), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2036), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2036), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2036), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2036), + [anon_sym_LBRACK] = ACTIONS(2036), + [anon_sym_LPAREN] = ACTIONS(2036), + [anon_sym_RPAREN] = ACTIONS(2036), + [anon_sym_DOLLAR] = ACTIONS(2030), + [anon_sym_DASH_DASH] = ACTIONS(2036), + [anon_sym_DASH2] = ACTIONS(2030), + [anon_sym_LBRACE] = ACTIONS(2036), + [anon_sym_RBRACE] = ACTIONS(2036), + [anon_sym_DOT_DOT] = ACTIONS(2030), + [anon_sym_DOT_DOT2] = ACTIONS(4822), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2030), + [anon_sym_DOT_DOT_LT] = ACTIONS(2030), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4824), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4824), + [anon_sym_null] = ACTIONS(2036), + [anon_sym_true] = ACTIONS(2036), + [anon_sym_false] = ACTIONS(2036), + [aux_sym__val_number_decimal_token1] = ACTIONS(2030), + [aux_sym__val_number_decimal_token2] = ACTIONS(2036), + [aux_sym__val_number_decimal_token3] = ACTIONS(2036), + [aux_sym__val_number_decimal_token4] = ACTIONS(2036), + [aux_sym__val_number_token1] = ACTIONS(2036), + [aux_sym__val_number_token2] = ACTIONS(2036), + [aux_sym__val_number_token3] = ACTIONS(2036), + [aux_sym__val_number_token4] = ACTIONS(2036), + [aux_sym__val_number_token5] = ACTIONS(2036), + [aux_sym__val_number_token6] = ACTIONS(2036), + [anon_sym_0b] = ACTIONS(2030), + [anon_sym_0o] = ACTIONS(2030), + [anon_sym_0x] = ACTIONS(2030), + [sym_val_date] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym__str_single_quotes] = ACTIONS(2036), + [sym__str_back_ticks] = ACTIONS(2036), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2036), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2036), + [anon_sym_err_GT] = ACTIONS(2030), + [anon_sym_out_GT] = ACTIONS(2030), + [anon_sym_e_GT] = ACTIONS(2030), + [anon_sym_o_GT] = ACTIONS(2030), + [anon_sym_err_PLUSout_GT] = ACTIONS(2030), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2030), + [anon_sym_o_PLUSe_GT] = ACTIONS(2030), + [anon_sym_e_PLUSo_GT] = ACTIONS(2030), + [anon_sym_err_GT_GT] = ACTIONS(2036), + [anon_sym_out_GT_GT] = ACTIONS(2036), + [anon_sym_e_GT_GT] = ACTIONS(2036), + [anon_sym_o_GT_GT] = ACTIONS(2036), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2036), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2036), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2036), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2036), + [aux_sym_unquoted_token1] = ACTIONS(2030), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2036), }, [1545] = { [sym_comment] = STATE(1545), - [sym__newline] = ACTIONS(1785), - [anon_sym_SEMI] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(1785), - [anon_sym_err_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_GT_PIPE] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1785), - [anon_sym_RPAREN] = ACTIONS(1785), - [anon_sym_GT2] = ACTIONS(1783), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_in2] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_STAR2] = ACTIONS(1783), - [anon_sym_and2] = ACTIONS(1785), - [anon_sym_xor2] = ACTIONS(1785), - [anon_sym_or2] = ACTIONS(1785), - [anon_sym_not_DASHin2] = ACTIONS(1785), - [anon_sym_starts_DASHwith2] = ACTIONS(1785), - [anon_sym_ends_DASHwith2] = ACTIONS(1785), - [anon_sym_EQ_EQ2] = ACTIONS(1785), - [anon_sym_BANG_EQ2] = ACTIONS(1785), - [anon_sym_LT2] = ACTIONS(1783), - [anon_sym_LT_EQ2] = ACTIONS(1785), - [anon_sym_GT_EQ2] = ACTIONS(1785), - [anon_sym_EQ_TILDE2] = ACTIONS(1785), - [anon_sym_BANG_TILDE2] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1785), - [anon_sym_STAR_STAR2] = ACTIONS(1785), - [anon_sym_PLUS_PLUS2] = ACTIONS(1785), - [anon_sym_SLASH2] = ACTIONS(1783), - [anon_sym_mod2] = ACTIONS(1785), - [anon_sym_SLASH_SLASH2] = ACTIONS(1785), - [anon_sym_PLUS2] = ACTIONS(1783), - [anon_sym_bit_DASHshl2] = ACTIONS(1785), - [anon_sym_bit_DASHshr2] = ACTIONS(1785), - [anon_sym_bit_DASHand2] = ACTIONS(1785), - [anon_sym_bit_DASHxor2] = ACTIONS(1785), - [anon_sym_bit_DASHor2] = ACTIONS(1785), - [anon_sym_DOT_DOT2] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1785), - [aux_sym__immediate_decimal_token2] = ACTIONS(4837), - [anon_sym_err_GT] = ACTIONS(1783), - [anon_sym_out_GT] = ACTIONS(1783), - [anon_sym_e_GT] = ACTIONS(1783), - [anon_sym_o_GT] = ACTIONS(1783), - [anon_sym_err_PLUSout_GT] = ACTIONS(1783), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1783), - [anon_sym_o_PLUSe_GT] = ACTIONS(1783), - [anon_sym_e_PLUSo_GT] = ACTIONS(1783), - [anon_sym_err_GT_GT] = ACTIONS(1785), - [anon_sym_out_GT_GT] = ACTIONS(1785), - [anon_sym_e_GT_GT] = ACTIONS(1785), - [anon_sym_o_GT_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1785), - [aux_sym_unquoted_token2] = ACTIONS(1783), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(1983), + [anon_sym_SEMI] = ACTIONS(1983), + [anon_sym_PIPE] = ACTIONS(1983), + [anon_sym_err_GT_PIPE] = ACTIONS(1983), + [anon_sym_out_GT_PIPE] = ACTIONS(1983), + [anon_sym_e_GT_PIPE] = ACTIONS(1983), + [anon_sym_o_GT_PIPE] = ACTIONS(1983), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1983), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1983), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1983), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(1983), + [anon_sym_LPAREN] = ACTIONS(1983), + [anon_sym_RPAREN] = ACTIONS(1983), + [anon_sym_DOLLAR] = ACTIONS(1977), + [anon_sym_DASH_DASH] = ACTIONS(1983), + [anon_sym_DASH2] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1983), + [anon_sym_RBRACE] = ACTIONS(1983), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT2] = ACTIONS(4826), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1977), + [anon_sym_DOT_DOT_LT] = ACTIONS(1977), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4828), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4828), + [anon_sym_null] = ACTIONS(1983), + [anon_sym_true] = ACTIONS(1983), + [anon_sym_false] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1977), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1983), + [aux_sym__val_number_decimal_token4] = ACTIONS(1983), + [aux_sym__val_number_token1] = ACTIONS(1983), + [aux_sym__val_number_token2] = ACTIONS(1983), + [aux_sym__val_number_token3] = ACTIONS(1983), + [aux_sym__val_number_token4] = ACTIONS(1983), + [aux_sym__val_number_token5] = ACTIONS(1983), + [aux_sym__val_number_token6] = ACTIONS(1983), + [anon_sym_0b] = ACTIONS(1977), + [anon_sym_0o] = ACTIONS(1977), + [anon_sym_0x] = ACTIONS(1977), + [sym_val_date] = ACTIONS(1983), + [anon_sym_DQUOTE] = ACTIONS(1983), + [sym__str_single_quotes] = ACTIONS(1983), + [sym__str_back_ticks] = ACTIONS(1983), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1983), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1983), + [anon_sym_err_GT] = ACTIONS(1977), + [anon_sym_out_GT] = ACTIONS(1977), + [anon_sym_e_GT] = ACTIONS(1977), + [anon_sym_o_GT] = ACTIONS(1977), + [anon_sym_err_PLUSout_GT] = ACTIONS(1977), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1977), + [anon_sym_o_PLUSe_GT] = ACTIONS(1977), + [anon_sym_e_PLUSo_GT] = ACTIONS(1977), + [anon_sym_err_GT_GT] = ACTIONS(1983), + [anon_sym_out_GT_GT] = ACTIONS(1983), + [anon_sym_e_GT_GT] = ACTIONS(1983), + [anon_sym_o_GT_GT] = ACTIONS(1983), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1983), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1983), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1983), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1983), + [aux_sym_unquoted_token1] = ACTIONS(1977), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1983), }, [1546] = { [sym_comment] = STATE(1546), - [ts_builtin_sym_end] = ACTIONS(1995), - [sym__newline] = ACTIONS(1995), - [anon_sym_SEMI] = ACTIONS(1995), - [anon_sym_PIPE] = ACTIONS(1995), - [anon_sym_err_GT_PIPE] = ACTIONS(1995), - [anon_sym_out_GT_PIPE] = ACTIONS(1995), - [anon_sym_e_GT_PIPE] = ACTIONS(1995), - [anon_sym_o_GT_PIPE] = ACTIONS(1995), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1995), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1995), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1995), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1995), - [anon_sym_LBRACK] = ACTIONS(1995), - [anon_sym_LPAREN] = ACTIONS(1995), - [anon_sym_DOLLAR] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1995), - [anon_sym_DASH2] = ACTIONS(1993), - [anon_sym_LBRACE] = ACTIONS(1995), - [anon_sym_DOT_DOT] = ACTIONS(1993), - [anon_sym_DOT_DOT2] = ACTIONS(1993), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1993), - [anon_sym_DOT_DOT_LT] = ACTIONS(1993), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1995), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1995), - [anon_sym_null] = ACTIONS(1995), - [anon_sym_true] = ACTIONS(1995), - [anon_sym_false] = ACTIONS(1995), - [aux_sym__val_number_decimal_token1] = ACTIONS(1993), - [aux_sym__val_number_decimal_token2] = ACTIONS(1995), - [aux_sym__val_number_decimal_token3] = ACTIONS(1995), - [aux_sym__val_number_decimal_token4] = ACTIONS(1995), - [aux_sym__val_number_token1] = ACTIONS(1995), - [aux_sym__val_number_token2] = ACTIONS(1995), - [aux_sym__val_number_token3] = ACTIONS(1995), - [aux_sym__val_number_token4] = ACTIONS(1995), - [aux_sym__val_number_token5] = ACTIONS(1995), - [aux_sym__val_number_token6] = ACTIONS(1995), - [anon_sym_0b] = ACTIONS(1993), - [anon_sym_0o] = ACTIONS(1993), - [anon_sym_0x] = ACTIONS(1993), - [sym_val_date] = ACTIONS(1995), - [anon_sym_DQUOTE] = ACTIONS(1995), - [sym__str_single_quotes] = ACTIONS(1995), - [sym__str_back_ticks] = ACTIONS(1995), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1995), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1995), - [anon_sym_err_GT] = ACTIONS(1993), - [anon_sym_out_GT] = ACTIONS(1993), - [anon_sym_e_GT] = ACTIONS(1993), - [anon_sym_o_GT] = ACTIONS(1993), - [anon_sym_err_PLUSout_GT] = ACTIONS(1993), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1993), - [anon_sym_o_PLUSe_GT] = ACTIONS(1993), - [anon_sym_e_PLUSo_GT] = ACTIONS(1993), - [anon_sym_err_GT_GT] = ACTIONS(1995), - [anon_sym_out_GT_GT] = ACTIONS(1995), - [anon_sym_e_GT_GT] = ACTIONS(1995), - [anon_sym_o_GT_GT] = ACTIONS(1995), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1995), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1995), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1995), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1995), - [aux_sym_unquoted_token1] = ACTIONS(1993), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1995), + [sym__newline] = ACTIONS(1991), + [anon_sym_SEMI] = ACTIONS(1991), + [anon_sym_PIPE] = ACTIONS(1991), + [anon_sym_err_GT_PIPE] = ACTIONS(1991), + [anon_sym_out_GT_PIPE] = ACTIONS(1991), + [anon_sym_e_GT_PIPE] = ACTIONS(1991), + [anon_sym_o_GT_PIPE] = ACTIONS(1991), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1991), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1991), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1991), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1991), + [anon_sym_LBRACK] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_RPAREN] = ACTIONS(1991), + [anon_sym_DOLLAR] = ACTIONS(1985), + [anon_sym_DASH_DASH] = ACTIONS(1991), + [anon_sym_DASH2] = ACTIONS(1985), + [anon_sym_LBRACE] = ACTIONS(1991), + [anon_sym_RBRACE] = ACTIONS(1991), + [anon_sym_DOT_DOT] = ACTIONS(1985), + [anon_sym_DOT_DOT2] = ACTIONS(4830), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1985), + [anon_sym_DOT_DOT_LT] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4832), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4832), + [anon_sym_null] = ACTIONS(1991), + [anon_sym_true] = ACTIONS(1991), + [anon_sym_false] = ACTIONS(1991), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1991), + [aux_sym__val_number_decimal_token3] = ACTIONS(1991), + [aux_sym__val_number_decimal_token4] = ACTIONS(1991), + [aux_sym__val_number_token1] = ACTIONS(1991), + [aux_sym__val_number_token2] = ACTIONS(1991), + [aux_sym__val_number_token3] = ACTIONS(1991), + [aux_sym__val_number_token4] = ACTIONS(1991), + [aux_sym__val_number_token5] = ACTIONS(1991), + [aux_sym__val_number_token6] = ACTIONS(1991), + [anon_sym_0b] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1985), + [sym_val_date] = ACTIONS(1991), + [anon_sym_DQUOTE] = ACTIONS(1991), + [sym__str_single_quotes] = ACTIONS(1991), + [sym__str_back_ticks] = ACTIONS(1991), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1991), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1991), + [anon_sym_err_GT] = ACTIONS(1985), + [anon_sym_out_GT] = ACTIONS(1985), + [anon_sym_e_GT] = ACTIONS(1985), + [anon_sym_o_GT] = ACTIONS(1985), + [anon_sym_err_PLUSout_GT] = ACTIONS(1985), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1985), + [anon_sym_o_PLUSe_GT] = ACTIONS(1985), + [anon_sym_e_PLUSo_GT] = ACTIONS(1985), + [anon_sym_err_GT_GT] = ACTIONS(1991), + [anon_sym_out_GT_GT] = ACTIONS(1991), + [anon_sym_e_GT_GT] = ACTIONS(1991), + [anon_sym_o_GT_GT] = ACTIONS(1991), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1991), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1991), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1991), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1991), + [aux_sym_unquoted_token1] = ACTIONS(1985), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1991), }, [1547] = { + [sym_path] = STATE(1700), [sym_comment] = STATE(1547), - [sym__newline] = ACTIONS(4839), - [anon_sym_SEMI] = ACTIONS(4839), - [anon_sym_PIPE] = ACTIONS(4839), - [anon_sym_err_GT_PIPE] = ACTIONS(4839), - [anon_sym_out_GT_PIPE] = ACTIONS(4839), - [anon_sym_e_GT_PIPE] = ACTIONS(4839), - [anon_sym_o_GT_PIPE] = ACTIONS(4839), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4839), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4839), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4839), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4839), - [anon_sym_LBRACK] = ACTIONS(4839), - [anon_sym_LPAREN] = ACTIONS(4839), - [anon_sym_RPAREN] = ACTIONS(4839), - [anon_sym_DOLLAR] = ACTIONS(4841), - [anon_sym_DASH_DASH] = ACTIONS(4841), - [anon_sym_DASH2] = ACTIONS(4841), - [anon_sym_LBRACE] = ACTIONS(4839), - [anon_sym_RBRACE] = ACTIONS(4839), - [anon_sym_DOT_DOT] = ACTIONS(4841), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4839), - [anon_sym_DOT_DOT_LT] = ACTIONS(4839), - [anon_sym_null] = ACTIONS(4841), - [anon_sym_true] = ACTIONS(4841), - [anon_sym_false] = ACTIONS(4841), - [aux_sym__val_number_decimal_token1] = ACTIONS(4841), - [aux_sym__val_number_decimal_token2] = ACTIONS(4841), - [aux_sym__val_number_decimal_token3] = ACTIONS(4839), - [aux_sym__val_number_decimal_token4] = ACTIONS(4839), - [aux_sym__val_number_token1] = ACTIONS(4841), - [aux_sym__val_number_token2] = ACTIONS(4841), - [aux_sym__val_number_token3] = ACTIONS(4841), - [aux_sym__val_number_token4] = ACTIONS(4841), - [aux_sym__val_number_token5] = ACTIONS(4841), - [aux_sym__val_number_token6] = ACTIONS(4841), - [anon_sym_0b] = ACTIONS(4841), - [anon_sym_0o] = ACTIONS(4841), - [anon_sym_0x] = ACTIONS(4841), - [sym_val_date] = ACTIONS(4841), - [anon_sym_DQUOTE] = ACTIONS(4839), - [sym__str_single_quotes] = ACTIONS(4839), - [sym__str_back_ticks] = ACTIONS(4839), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4839), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4839), - [anon_sym_err_GT] = ACTIONS(4841), - [anon_sym_out_GT] = ACTIONS(4841), - [anon_sym_e_GT] = ACTIONS(4841), - [anon_sym_o_GT] = ACTIONS(4841), - [anon_sym_err_PLUSout_GT] = ACTIONS(4841), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4841), - [anon_sym_o_PLUSe_GT] = ACTIONS(4841), - [anon_sym_e_PLUSo_GT] = ACTIONS(4841), - [anon_sym_err_GT_GT] = ACTIONS(4839), - [anon_sym_out_GT_GT] = ACTIONS(4839), - [anon_sym_e_GT_GT] = ACTIONS(4839), - [anon_sym_o_GT_GT] = ACTIONS(4839), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4839), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4839), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4839), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4839), - [anon_sym_EQ2] = ACTIONS(4843), - [sym_short_flag_identifier] = ACTIONS(4845), - [aux_sym_unquoted_token1] = ACTIONS(4841), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4839), + [aux_sym_cell_path_repeat1] = STATE(1549), + [sym__newline] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(944), + [anon_sym_err_GT_PIPE] = ACTIONS(944), + [anon_sym_out_GT_PIPE] = ACTIONS(944), + [anon_sym_e_GT_PIPE] = ACTIONS(944), + [anon_sym_o_GT_PIPE] = ACTIONS(944), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(944), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(944), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(944), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(944), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LPAREN] = ACTIONS(944), + [anon_sym_RPAREN] = ACTIONS(944), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_DASH_DASH] = ACTIONS(944), + [anon_sym_DASH2] = ACTIONS(942), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(944), + [anon_sym_DOT_DOT] = ACTIONS(942), + [anon_sym_DOT_DOT_EQ] = ACTIONS(944), + [anon_sym_DOT_DOT_LT] = ACTIONS(944), + [anon_sym_null] = ACTIONS(944), + [anon_sym_true] = ACTIONS(944), + [anon_sym_false] = ACTIONS(944), + [aux_sym__val_number_decimal_token1] = ACTIONS(942), + [aux_sym__val_number_decimal_token2] = ACTIONS(944), + [aux_sym__val_number_decimal_token3] = ACTIONS(944), + [aux_sym__val_number_decimal_token4] = ACTIONS(944), + [aux_sym__val_number_token1] = ACTIONS(944), + [aux_sym__val_number_token2] = ACTIONS(944), + [aux_sym__val_number_token3] = ACTIONS(944), + [aux_sym__val_number_token4] = ACTIONS(944), + [aux_sym__val_number_token5] = ACTIONS(944), + [aux_sym__val_number_token6] = ACTIONS(944), + [anon_sym_0b] = ACTIONS(942), + [anon_sym_0o] = ACTIONS(942), + [anon_sym_0x] = ACTIONS(942), + [sym_val_date] = ACTIONS(944), + [anon_sym_DQUOTE] = ACTIONS(944), + [sym__str_single_quotes] = ACTIONS(944), + [sym__str_back_ticks] = ACTIONS(944), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(944), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(944), + [anon_sym_DOT2] = ACTIONS(4760), + [anon_sym_err_GT] = ACTIONS(942), + [anon_sym_out_GT] = ACTIONS(942), + [anon_sym_e_GT] = ACTIONS(942), + [anon_sym_o_GT] = ACTIONS(942), + [anon_sym_err_PLUSout_GT] = ACTIONS(942), + [anon_sym_out_PLUSerr_GT] = ACTIONS(942), + [anon_sym_o_PLUSe_GT] = ACTIONS(942), + [anon_sym_e_PLUSo_GT] = ACTIONS(942), + [anon_sym_err_GT_GT] = ACTIONS(944), + [anon_sym_out_GT_GT] = ACTIONS(944), + [anon_sym_e_GT_GT] = ACTIONS(944), + [anon_sym_o_GT_GT] = ACTIONS(944), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(944), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(944), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(944), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(944), + [aux_sym_unquoted_token1] = ACTIONS(942), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(944), }, [1548] = { + [sym_cell_path] = STATE(2024), + [sym_path] = STATE(1811), [sym_comment] = STATE(1548), - [ts_builtin_sym_end] = ACTIONS(1757), - [sym__newline] = ACTIONS(1757), - [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_DOLLAR] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1755), - [anon_sym_DOT_DOT_LT] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [anon_sym_null] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = 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_err_GT] = ACTIONS(1755), - [anon_sym_out_GT] = ACTIONS(1755), - [anon_sym_e_GT] = ACTIONS(1755), - [anon_sym_o_GT] = ACTIONS(1755), - [anon_sym_err_PLUSout_GT] = ACTIONS(1755), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), - [anon_sym_o_PLUSe_GT] = ACTIONS(1755), - [anon_sym_e_PLUSo_GT] = ACTIONS(1755), - [anon_sym_err_GT_GT] = ACTIONS(1757), - [anon_sym_out_GT_GT] = ACTIONS(1757), - [anon_sym_e_GT_GT] = ACTIONS(1757), - [anon_sym_o_GT_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), - [aux_sym_unquoted_token1] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1757), + [aux_sym_cell_path_repeat1] = STATE(1638), + [ts_builtin_sym_end] = ACTIONS(1895), + [sym__newline] = ACTIONS(1895), + [anon_sym_SEMI] = ACTIONS(1895), + [anon_sym_PIPE] = ACTIONS(1895), + [anon_sym_err_GT_PIPE] = ACTIONS(1895), + [anon_sym_out_GT_PIPE] = ACTIONS(1895), + [anon_sym_e_GT_PIPE] = ACTIONS(1895), + [anon_sym_o_GT_PIPE] = ACTIONS(1895), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1895), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1895), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1895), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1895), + [anon_sym_LBRACK] = ACTIONS(1895), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_DOLLAR] = ACTIONS(1893), + [anon_sym_DASH_DASH] = ACTIONS(1895), + [anon_sym_DASH2] = ACTIONS(1893), + [anon_sym_LBRACE] = ACTIONS(1895), + [anon_sym_DOT_DOT] = ACTIONS(1893), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1895), + [anon_sym_DOT_DOT_LT] = ACTIONS(1895), + [anon_sym_null] = ACTIONS(1895), + [anon_sym_true] = ACTIONS(1895), + [anon_sym_false] = ACTIONS(1895), + [aux_sym__val_number_decimal_token1] = ACTIONS(1893), + [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), + [aux_sym__val_number_token4] = ACTIONS(1895), + [aux_sym__val_number_token5] = ACTIONS(1895), + [aux_sym__val_number_token6] = ACTIONS(1895), + [anon_sym_0b] = ACTIONS(1893), + [anon_sym_0o] = ACTIONS(1893), + [anon_sym_0x] = ACTIONS(1893), + [sym_val_date] = ACTIONS(1895), + [anon_sym_DQUOTE] = ACTIONS(1895), + [sym__str_single_quotes] = ACTIONS(1895), + [sym__str_back_ticks] = ACTIONS(1895), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1895), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1895), + [anon_sym_DOT2] = ACTIONS(4810), + [anon_sym_err_GT] = ACTIONS(1893), + [anon_sym_out_GT] = ACTIONS(1893), + [anon_sym_e_GT] = ACTIONS(1893), + [anon_sym_o_GT] = ACTIONS(1893), + [anon_sym_err_PLUSout_GT] = ACTIONS(1893), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1893), + [anon_sym_o_PLUSe_GT] = ACTIONS(1893), + [anon_sym_e_PLUSo_GT] = ACTIONS(1893), + [anon_sym_err_GT_GT] = ACTIONS(1895), + [anon_sym_out_GT_GT] = ACTIONS(1895), + [anon_sym_e_GT_GT] = ACTIONS(1895), + [anon_sym_o_GT_GT] = ACTIONS(1895), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1895), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1895), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1895), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1895), + [aux_sym_unquoted_token1] = ACTIONS(1893), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1895), }, [1549] = { - [sym_path] = STATE(1749), + [sym_path] = STATE(1700), [sym_comment] = STATE(1549), - [aux_sym_cell_path_repeat1] = STATE(1553), - [ts_builtin_sym_end] = ACTIONS(951), - [sym__newline] = ACTIONS(951), - [anon_sym_SEMI] = ACTIONS(951), - [anon_sym_PIPE] = ACTIONS(951), - [anon_sym_err_GT_PIPE] = ACTIONS(951), - [anon_sym_out_GT_PIPE] = ACTIONS(951), - [anon_sym_e_GT_PIPE] = ACTIONS(951), - [anon_sym_o_GT_PIPE] = ACTIONS(951), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(951), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(951), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(951), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(951), - [anon_sym_LBRACK] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(951), - [anon_sym_DOLLAR] = ACTIONS(949), - [anon_sym_DASH_DASH] = ACTIONS(951), - [anon_sym_DASH2] = ACTIONS(949), - [anon_sym_LBRACE] = ACTIONS(951), - [anon_sym_DOT_DOT] = ACTIONS(949), - [anon_sym_DOT_DOT_EQ] = ACTIONS(951), - [anon_sym_DOT_DOT_LT] = ACTIONS(951), - [anon_sym_null] = ACTIONS(951), - [anon_sym_true] = ACTIONS(951), - [anon_sym_false] = ACTIONS(951), - [aux_sym__val_number_decimal_token1] = ACTIONS(949), - [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), - [aux_sym__val_number_token4] = ACTIONS(951), - [aux_sym__val_number_token5] = ACTIONS(951), - [aux_sym__val_number_token6] = ACTIONS(951), - [anon_sym_0b] = ACTIONS(949), - [anon_sym_0o] = ACTIONS(949), - [anon_sym_0x] = ACTIONS(949), - [sym_val_date] = ACTIONS(951), - [anon_sym_DQUOTE] = ACTIONS(951), - [sym__str_single_quotes] = ACTIONS(951), - [sym__str_back_ticks] = ACTIONS(951), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(951), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(951), - [anon_sym_DOT2] = ACTIONS(4750), - [anon_sym_err_GT] = ACTIONS(949), - [anon_sym_out_GT] = ACTIONS(949), - [anon_sym_e_GT] = ACTIONS(949), - [anon_sym_o_GT] = ACTIONS(949), - [anon_sym_err_PLUSout_GT] = ACTIONS(949), - [anon_sym_out_PLUSerr_GT] = ACTIONS(949), - [anon_sym_o_PLUSe_GT] = ACTIONS(949), - [anon_sym_e_PLUSo_GT] = ACTIONS(949), - [anon_sym_err_GT_GT] = ACTIONS(951), - [anon_sym_out_GT_GT] = ACTIONS(951), - [anon_sym_e_GT_GT] = ACTIONS(951), - [anon_sym_o_GT_GT] = ACTIONS(951), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(951), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(951), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(951), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(951), - [aux_sym_unquoted_token1] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(951), + [aux_sym_cell_path_repeat1] = STATE(1549), + [sym__newline] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(937), + [anon_sym_err_GT_PIPE] = ACTIONS(937), + [anon_sym_out_GT_PIPE] = ACTIONS(937), + [anon_sym_e_GT_PIPE] = ACTIONS(937), + [anon_sym_o_GT_PIPE] = ACTIONS(937), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(937), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(937), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(937), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(937), + [anon_sym_LPAREN] = ACTIONS(937), + [anon_sym_RPAREN] = ACTIONS(937), + [anon_sym_DOLLAR] = ACTIONS(935), + [anon_sym_DASH_DASH] = ACTIONS(937), + [anon_sym_DASH2] = ACTIONS(935), + [anon_sym_LBRACE] = ACTIONS(937), + [anon_sym_RBRACE] = ACTIONS(937), + [anon_sym_DOT_DOT] = ACTIONS(935), + [anon_sym_DOT_DOT_EQ] = ACTIONS(937), + [anon_sym_DOT_DOT_LT] = ACTIONS(937), + [anon_sym_null] = ACTIONS(937), + [anon_sym_true] = ACTIONS(937), + [anon_sym_false] = ACTIONS(937), + [aux_sym__val_number_decimal_token1] = ACTIONS(935), + [aux_sym__val_number_decimal_token2] = ACTIONS(937), + [aux_sym__val_number_decimal_token3] = ACTIONS(937), + [aux_sym__val_number_decimal_token4] = ACTIONS(937), + [aux_sym__val_number_token1] = ACTIONS(937), + [aux_sym__val_number_token2] = ACTIONS(937), + [aux_sym__val_number_token3] = ACTIONS(937), + [aux_sym__val_number_token4] = ACTIONS(937), + [aux_sym__val_number_token5] = ACTIONS(937), + [aux_sym__val_number_token6] = ACTIONS(937), + [anon_sym_0b] = ACTIONS(935), + [anon_sym_0o] = ACTIONS(935), + [anon_sym_0x] = ACTIONS(935), + [sym_val_date] = ACTIONS(937), + [anon_sym_DQUOTE] = ACTIONS(937), + [sym__str_single_quotes] = ACTIONS(937), + [sym__str_back_ticks] = ACTIONS(937), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(937), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(937), + [anon_sym_DOT2] = ACTIONS(4834), + [anon_sym_err_GT] = ACTIONS(935), + [anon_sym_out_GT] = ACTIONS(935), + [anon_sym_e_GT] = ACTIONS(935), + [anon_sym_o_GT] = ACTIONS(935), + [anon_sym_err_PLUSout_GT] = ACTIONS(935), + [anon_sym_out_PLUSerr_GT] = ACTIONS(935), + [anon_sym_o_PLUSe_GT] = ACTIONS(935), + [anon_sym_e_PLUSo_GT] = ACTIONS(935), + [anon_sym_err_GT_GT] = ACTIONS(937), + [anon_sym_out_GT_GT] = ACTIONS(937), + [anon_sym_e_GT_GT] = ACTIONS(937), + [anon_sym_o_GT_GT] = ACTIONS(937), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(937), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(937), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(937), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(937), + [aux_sym_unquoted_token1] = ACTIONS(935), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(937), }, [1550] = { [sym_comment] = STATE(1550), - [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(1802), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_DOLLAR] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1810), - [anon_sym_DOT_DOT_LT] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1810), - [anon_sym_false] = ACTIONS(1810), - [aux_sym__val_number_decimal_token1] = ACTIONS(1802), - [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), - [aux_sym__val_number_token4] = ACTIONS(1810), - [aux_sym__val_number_token5] = ACTIONS(1810), - [aux_sym__val_number_token6] = ACTIONS(1810), - [anon_sym_0b] = ACTIONS(1802), - [anon_sym_0o] = ACTIONS(1802), - [anon_sym_0x] = ACTIONS(1802), - [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(1802), - [anon_sym_out_GT] = ACTIONS(1802), - [anon_sym_e_GT] = ACTIONS(1802), - [anon_sym_o_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT] = ACTIONS(1802), - [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(1802), - [aux_sym_unquoted_token2] = ACTIONS(1477), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1810), + [sym__newline] = ACTIONS(2024), + [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_PIPE] = ACTIONS(2024), + [anon_sym_err_GT_PIPE] = ACTIONS(2024), + [anon_sym_out_GT_PIPE] = ACTIONS(2024), + [anon_sym_e_GT_PIPE] = ACTIONS(2024), + [anon_sym_o_GT_PIPE] = ACTIONS(2024), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2024), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2024), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2024), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2024), + [anon_sym_LBRACK] = ACTIONS(2024), + [anon_sym_LPAREN] = ACTIONS(2024), + [anon_sym_RPAREN] = ACTIONS(2024), + [anon_sym_DOLLAR] = ACTIONS(2022), + [anon_sym_DASH_DASH] = ACTIONS(2024), + [anon_sym_DASH2] = ACTIONS(2022), + [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_RBRACE] = ACTIONS(2024), + [anon_sym_DOT_DOT] = ACTIONS(2022), + [anon_sym_DOT_DOT2] = ACTIONS(2022), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2022), + [anon_sym_DOT_DOT_LT] = ACTIONS(2022), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2024), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2024), + [anon_sym_null] = ACTIONS(2024), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [aux_sym__val_number_decimal_token1] = ACTIONS(2022), + [aux_sym__val_number_decimal_token2] = ACTIONS(2024), + [aux_sym__val_number_decimal_token3] = ACTIONS(2024), + [aux_sym__val_number_decimal_token4] = ACTIONS(2024), + [aux_sym__val_number_token1] = ACTIONS(2024), + [aux_sym__val_number_token2] = ACTIONS(2024), + [aux_sym__val_number_token3] = ACTIONS(2024), + [aux_sym__val_number_token4] = ACTIONS(2024), + [aux_sym__val_number_token5] = ACTIONS(2024), + [aux_sym__val_number_token6] = ACTIONS(2024), + [anon_sym_0b] = ACTIONS(2022), + [anon_sym_0o] = ACTIONS(2022), + [anon_sym_0x] = ACTIONS(2022), + [sym_val_date] = ACTIONS(2024), + [anon_sym_DQUOTE] = ACTIONS(2024), + [sym__str_single_quotes] = ACTIONS(2024), + [sym__str_back_ticks] = ACTIONS(2024), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2024), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2024), + [anon_sym_err_GT] = ACTIONS(2022), + [anon_sym_out_GT] = ACTIONS(2022), + [anon_sym_e_GT] = ACTIONS(2022), + [anon_sym_o_GT] = ACTIONS(2022), + [anon_sym_err_PLUSout_GT] = ACTIONS(2022), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2022), + [anon_sym_o_PLUSe_GT] = ACTIONS(2022), + [anon_sym_e_PLUSo_GT] = ACTIONS(2022), + [anon_sym_err_GT_GT] = ACTIONS(2024), + [anon_sym_out_GT_GT] = ACTIONS(2024), + [anon_sym_e_GT_GT] = ACTIONS(2024), + [anon_sym_o_GT_GT] = ACTIONS(2024), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2024), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2024), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2024), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2024), + [aux_sym_unquoted_token1] = ACTIONS(2022), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2024), }, [1551] = { [sym_comment] = STATE(1551), - [ts_builtin_sym_end] = ACTIONS(1999), - [sym__newline] = ACTIONS(1999), - [anon_sym_SEMI] = ACTIONS(1999), - [anon_sym_PIPE] = ACTIONS(1999), - [anon_sym_err_GT_PIPE] = ACTIONS(1999), - [anon_sym_out_GT_PIPE] = ACTIONS(1999), - [anon_sym_e_GT_PIPE] = ACTIONS(1999), - [anon_sym_o_GT_PIPE] = ACTIONS(1999), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1999), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1999), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1999), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1999), - [anon_sym_LBRACK] = ACTIONS(1999), - [anon_sym_LPAREN] = ACTIONS(1999), - [anon_sym_DOLLAR] = ACTIONS(1997), - [anon_sym_DASH_DASH] = ACTIONS(1999), - [anon_sym_DASH2] = ACTIONS(1997), - [anon_sym_LBRACE] = ACTIONS(1999), - [anon_sym_DOT_DOT] = ACTIONS(1997), - [anon_sym_DOT_DOT2] = ACTIONS(1997), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1997), - [anon_sym_DOT_DOT_LT] = ACTIONS(1997), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1999), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1999), - [anon_sym_null] = ACTIONS(1999), - [anon_sym_true] = ACTIONS(1999), - [anon_sym_false] = ACTIONS(1999), - [aux_sym__val_number_decimal_token1] = ACTIONS(1997), - [aux_sym__val_number_decimal_token2] = ACTIONS(1999), - [aux_sym__val_number_decimal_token3] = ACTIONS(1999), - [aux_sym__val_number_decimal_token4] = ACTIONS(1999), - [aux_sym__val_number_token1] = ACTIONS(1999), - [aux_sym__val_number_token2] = ACTIONS(1999), - [aux_sym__val_number_token3] = ACTIONS(1999), - [aux_sym__val_number_token4] = ACTIONS(1999), - [aux_sym__val_number_token5] = ACTIONS(1999), - [aux_sym__val_number_token6] = ACTIONS(1999), - [anon_sym_0b] = ACTIONS(1997), - [anon_sym_0o] = ACTIONS(1997), - [anon_sym_0x] = ACTIONS(1997), - [sym_val_date] = ACTIONS(1999), - [anon_sym_DQUOTE] = ACTIONS(1999), - [sym__str_single_quotes] = ACTIONS(1999), - [sym__str_back_ticks] = ACTIONS(1999), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1999), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1999), - [anon_sym_err_GT] = ACTIONS(1997), - [anon_sym_out_GT] = ACTIONS(1997), - [anon_sym_e_GT] = ACTIONS(1997), - [anon_sym_o_GT] = ACTIONS(1997), - [anon_sym_err_PLUSout_GT] = ACTIONS(1997), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1997), - [anon_sym_o_PLUSe_GT] = ACTIONS(1997), - [anon_sym_e_PLUSo_GT] = ACTIONS(1997), - [anon_sym_err_GT_GT] = ACTIONS(1999), - [anon_sym_out_GT_GT] = ACTIONS(1999), - [anon_sym_e_GT_GT] = ACTIONS(1999), - [anon_sym_o_GT_GT] = ACTIONS(1999), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1999), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1999), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1999), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1999), - [aux_sym_unquoted_token1] = ACTIONS(1997), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1999), + [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_DASH2] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(988), + [anon_sym_RBRACE] = ACTIONS(988), + [anon_sym_DOT_DOT] = ACTIONS(986), + [anon_sym_DOT_DOT2] = 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), + [anon_sym_null] = ACTIONS(988), + [anon_sym_true] = ACTIONS(988), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(988), + [aux_sym__val_number_token5] = ACTIONS(988), + [aux_sym__val_number_token6] = 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), + [sym_raw_string_begin] = ACTIONS(988), }, [1552] = { + [sym_cell_path] = STATE(2127), + [sym_path] = STATE(1783), [sym_comment] = STATE(1552), - [ts_builtin_sym_end] = ACTIONS(4782), - [sym__newline] = ACTIONS(4782), - [anon_sym_SEMI] = ACTIONS(4782), - [anon_sym_PIPE] = ACTIONS(4782), - [anon_sym_err_GT_PIPE] = ACTIONS(4782), - [anon_sym_out_GT_PIPE] = ACTIONS(4782), - [anon_sym_e_GT_PIPE] = ACTIONS(4782), - [anon_sym_o_GT_PIPE] = ACTIONS(4782), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4782), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4782), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4782), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4782), - [anon_sym_LBRACK] = ACTIONS(4782), - [anon_sym_LPAREN] = ACTIONS(4782), - [anon_sym_DOLLAR] = ACTIONS(4784), - [anon_sym_DASH_DASH] = ACTIONS(4782), - [anon_sym_DASH2] = ACTIONS(4784), - [anon_sym_LBRACE] = ACTIONS(4782), - [anon_sym_DOT_DOT] = ACTIONS(4784), - [anon_sym_DOT_DOT2] = ACTIONS(4847), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4784), - [anon_sym_DOT_DOT_LT] = ACTIONS(4784), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4849), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4849), - [anon_sym_null] = ACTIONS(4782), - [anon_sym_true] = ACTIONS(4782), - [anon_sym_false] = ACTIONS(4782), - [aux_sym__val_number_decimal_token1] = ACTIONS(4784), - [aux_sym__val_number_decimal_token2] = ACTIONS(4782), - [aux_sym__val_number_decimal_token3] = ACTIONS(4782), - [aux_sym__val_number_decimal_token4] = ACTIONS(4782), - [aux_sym__val_number_token1] = ACTIONS(4782), - [aux_sym__val_number_token2] = ACTIONS(4782), - [aux_sym__val_number_token3] = ACTIONS(4782), - [aux_sym__val_number_token4] = ACTIONS(4782), - [aux_sym__val_number_token5] = ACTIONS(4782), - [aux_sym__val_number_token6] = ACTIONS(4782), - [anon_sym_0b] = ACTIONS(4784), - [anon_sym_0o] = ACTIONS(4784), - [anon_sym_0x] = ACTIONS(4784), - [sym_val_date] = ACTIONS(4782), - [anon_sym_DQUOTE] = ACTIONS(4782), - [sym__str_single_quotes] = ACTIONS(4782), - [sym__str_back_ticks] = ACTIONS(4782), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4782), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4782), - [anon_sym_err_GT] = ACTIONS(4784), - [anon_sym_out_GT] = ACTIONS(4784), - [anon_sym_e_GT] = ACTIONS(4784), - [anon_sym_o_GT] = ACTIONS(4784), - [anon_sym_err_PLUSout_GT] = ACTIONS(4784), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4784), - [anon_sym_o_PLUSe_GT] = ACTIONS(4784), - [anon_sym_e_PLUSo_GT] = ACTIONS(4784), - [anon_sym_err_GT_GT] = ACTIONS(4782), - [anon_sym_out_GT_GT] = ACTIONS(4782), - [anon_sym_e_GT_GT] = ACTIONS(4782), - [anon_sym_o_GT_GT] = ACTIONS(4782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4782), - [aux_sym_unquoted_token1] = ACTIONS(4784), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4782), + [aux_sym_cell_path_repeat1] = STATE(1640), + [ts_builtin_sym_end] = ACTIONS(1678), + [sym__newline] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_PIPE] = ACTIONS(1678), + [anon_sym_err_GT_PIPE] = ACTIONS(1678), + [anon_sym_out_GT_PIPE] = ACTIONS(1678), + [anon_sym_e_GT_PIPE] = ACTIONS(1678), + [anon_sym_o_GT_PIPE] = ACTIONS(1678), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1678), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1678), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1678), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1678), + [anon_sym_GT2] = ACTIONS(1676), + [anon_sym_DASH2] = ACTIONS(1678), + [anon_sym_in2] = ACTIONS(1678), + [anon_sym_STAR2] = ACTIONS(1676), + [anon_sym_and2] = ACTIONS(1678), + [anon_sym_xor2] = ACTIONS(1678), + [anon_sym_or2] = ACTIONS(1678), + [anon_sym_not_DASHin2] = ACTIONS(1678), + [anon_sym_has2] = ACTIONS(1678), + [anon_sym_not_DASHhas2] = ACTIONS(1678), + [anon_sym_starts_DASHwith2] = ACTIONS(1678), + [anon_sym_ends_DASHwith2] = ACTIONS(1678), + [anon_sym_EQ_EQ2] = ACTIONS(1678), + [anon_sym_BANG_EQ2] = ACTIONS(1678), + [anon_sym_LT2] = ACTIONS(1676), + [anon_sym_LT_EQ2] = ACTIONS(1678), + [anon_sym_GT_EQ2] = ACTIONS(1678), + [anon_sym_EQ_TILDE2] = ACTIONS(1678), + [anon_sym_BANG_TILDE2] = ACTIONS(1678), + [anon_sym_STAR_STAR2] = ACTIONS(1678), + [anon_sym_PLUS_PLUS2] = ACTIONS(1678), + [anon_sym_SLASH2] = ACTIONS(1676), + [anon_sym_mod2] = ACTIONS(1678), + [anon_sym_SLASH_SLASH2] = ACTIONS(1678), + [anon_sym_PLUS2] = ACTIONS(1676), + [anon_sym_bit_DASHshl2] = ACTIONS(1678), + [anon_sym_bit_DASHshr2] = ACTIONS(1678), + [anon_sym_bit_DASHand2] = ACTIONS(1678), + [anon_sym_bit_DASHxor2] = ACTIONS(1678), + [anon_sym_bit_DASHor2] = ACTIONS(1678), + [anon_sym_DOT_DOT2] = ACTIONS(1676), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1678), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1678), + [anon_sym_DOT2] = ACTIONS(4837), + [anon_sym_err_GT] = ACTIONS(1676), + [anon_sym_out_GT] = ACTIONS(1676), + [anon_sym_e_GT] = ACTIONS(1676), + [anon_sym_o_GT] = ACTIONS(1676), + [anon_sym_err_PLUSout_GT] = ACTIONS(1676), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1676), + [anon_sym_o_PLUSe_GT] = ACTIONS(1676), + [anon_sym_e_PLUSo_GT] = ACTIONS(1676), + [anon_sym_err_GT_GT] = ACTIONS(1678), + [anon_sym_out_GT_GT] = ACTIONS(1678), + [anon_sym_e_GT_GT] = ACTIONS(1678), + [anon_sym_o_GT_GT] = ACTIONS(1678), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1678), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1678), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1678), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1678), + [anon_sym_POUND] = ACTIONS(247), }, [1553] = { - [sym_path] = STATE(1749), [sym_comment] = STATE(1553), - [aux_sym_cell_path_repeat1] = STATE(1553), - [ts_builtin_sym_end] = ACTIONS(955), - [sym__newline] = ACTIONS(955), - [anon_sym_SEMI] = ACTIONS(955), - [anon_sym_PIPE] = ACTIONS(955), - [anon_sym_err_GT_PIPE] = ACTIONS(955), - [anon_sym_out_GT_PIPE] = ACTIONS(955), - [anon_sym_e_GT_PIPE] = ACTIONS(955), - [anon_sym_o_GT_PIPE] = ACTIONS(955), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(955), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(955), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(955), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(955), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_LPAREN] = ACTIONS(955), - [anon_sym_DOLLAR] = ACTIONS(953), - [anon_sym_DASH_DASH] = ACTIONS(955), - [anon_sym_DASH2] = ACTIONS(953), - [anon_sym_LBRACE] = ACTIONS(955), - [anon_sym_DOT_DOT] = ACTIONS(953), - [anon_sym_DOT_DOT_EQ] = ACTIONS(955), - [anon_sym_DOT_DOT_LT] = ACTIONS(955), - [anon_sym_null] = ACTIONS(955), - [anon_sym_true] = ACTIONS(955), - [anon_sym_false] = ACTIONS(955), - [aux_sym__val_number_decimal_token1] = ACTIONS(953), - [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), - [aux_sym__val_number_token4] = ACTIONS(955), - [aux_sym__val_number_token5] = ACTIONS(955), - [aux_sym__val_number_token6] = ACTIONS(955), - [anon_sym_0b] = ACTIONS(953), - [anon_sym_0o] = ACTIONS(953), - [anon_sym_0x] = ACTIONS(953), - [sym_val_date] = ACTIONS(955), - [anon_sym_DQUOTE] = ACTIONS(955), - [sym__str_single_quotes] = ACTIONS(955), - [sym__str_back_ticks] = ACTIONS(955), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(955), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(955), - [anon_sym_DOT2] = ACTIONS(4851), - [anon_sym_err_GT] = ACTIONS(953), - [anon_sym_out_GT] = ACTIONS(953), - [anon_sym_e_GT] = ACTIONS(953), - [anon_sym_o_GT] = ACTIONS(953), - [anon_sym_err_PLUSout_GT] = ACTIONS(953), - [anon_sym_out_PLUSerr_GT] = ACTIONS(953), - [anon_sym_o_PLUSe_GT] = ACTIONS(953), - [anon_sym_e_PLUSo_GT] = ACTIONS(953), - [anon_sym_err_GT_GT] = ACTIONS(955), - [anon_sym_out_GT_GT] = ACTIONS(955), - [anon_sym_e_GT_GT] = ACTIONS(955), - [anon_sym_o_GT_GT] = ACTIONS(955), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(955), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(955), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(955), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(955), - [aux_sym_unquoted_token1] = ACTIONS(953), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(955), + [ts_builtin_sym_end] = ACTIONS(1514), + [sym__newline] = ACTIONS(1514), + [anon_sym_SEMI] = ACTIONS(1514), + [anon_sym_PIPE] = ACTIONS(1514), + [anon_sym_err_GT_PIPE] = ACTIONS(1514), + [anon_sym_out_GT_PIPE] = ACTIONS(1514), + [anon_sym_e_GT_PIPE] = ACTIONS(1514), + [anon_sym_o_GT_PIPE] = ACTIONS(1514), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1514), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1514), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1514), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1514), + [anon_sym_GT2] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1514), + [anon_sym_in2] = ACTIONS(1514), + [anon_sym_STAR2] = ACTIONS(1512), + [anon_sym_and2] = ACTIONS(1514), + [anon_sym_xor2] = ACTIONS(1514), + [anon_sym_or2] = ACTIONS(1514), + [anon_sym_not_DASHin2] = ACTIONS(1514), + [anon_sym_has2] = ACTIONS(1514), + [anon_sym_not_DASHhas2] = ACTIONS(1514), + [anon_sym_starts_DASHwith2] = ACTIONS(1514), + [anon_sym_ends_DASHwith2] = ACTIONS(1514), + [anon_sym_EQ_EQ2] = ACTIONS(1514), + [anon_sym_BANG_EQ2] = ACTIONS(1514), + [anon_sym_LT2] = ACTIONS(1512), + [anon_sym_LT_EQ2] = ACTIONS(1514), + [anon_sym_GT_EQ2] = ACTIONS(1514), + [anon_sym_EQ_TILDE2] = ACTIONS(1514), + [anon_sym_BANG_TILDE2] = ACTIONS(1514), + [anon_sym_LPAREN2] = ACTIONS(1514), + [anon_sym_STAR_STAR2] = ACTIONS(1514), + [anon_sym_PLUS_PLUS2] = ACTIONS(1514), + [anon_sym_SLASH2] = ACTIONS(1512), + [anon_sym_mod2] = ACTIONS(1514), + [anon_sym_SLASH_SLASH2] = ACTIONS(1514), + [anon_sym_PLUS2] = ACTIONS(1512), + [anon_sym_bit_DASHshl2] = ACTIONS(1514), + [anon_sym_bit_DASHshr2] = ACTIONS(1514), + [anon_sym_bit_DASHand2] = ACTIONS(1514), + [anon_sym_bit_DASHxor2] = ACTIONS(1514), + [anon_sym_bit_DASHor2] = ACTIONS(1514), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [sym_filesize_unit] = ACTIONS(1512), + [sym_duration_unit] = ACTIONS(1514), + [anon_sym_err_GT] = ACTIONS(1512), + [anon_sym_out_GT] = ACTIONS(1512), + [anon_sym_e_GT] = ACTIONS(1512), + [anon_sym_o_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT] = ACTIONS(1512), + [anon_sym_err_GT_GT] = ACTIONS(1514), + [anon_sym_out_GT_GT] = ACTIONS(1514), + [anon_sym_e_GT_GT] = ACTIONS(1514), + [anon_sym_o_GT_GT] = ACTIONS(1514), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1514), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1514), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1514), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1514), + [aux_sym_unquoted_token2] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(247), }, [1554] = { + [sym_cell_path] = STATE(2066), + [sym_path] = STATE(1783), [sym_comment] = STATE(1554), - [sym__newline] = ACTIONS(2222), - [anon_sym_SEMI] = ACTIONS(2222), - [anon_sym_PIPE] = ACTIONS(2222), - [anon_sym_err_GT_PIPE] = ACTIONS(2222), - [anon_sym_out_GT_PIPE] = ACTIONS(2222), - [anon_sym_e_GT_PIPE] = ACTIONS(2222), - [anon_sym_o_GT_PIPE] = ACTIONS(2222), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2222), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2222), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2222), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2222), - [anon_sym_LBRACK] = ACTIONS(2222), - [anon_sym_LPAREN] = ACTIONS(2220), - [anon_sym_RPAREN] = ACTIONS(2222), - [anon_sym_DOLLAR] = ACTIONS(2220), - [anon_sym_DASH_DASH] = ACTIONS(2222), - [anon_sym_DASH2] = ACTIONS(2220), - [anon_sym_LBRACE] = ACTIONS(2222), - [anon_sym_RBRACE] = ACTIONS(2222), - [anon_sym_DOT_DOT] = ACTIONS(2220), - [anon_sym_LPAREN2] = ACTIONS(1814), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2222), - [anon_sym_DOT_DOT_LT] = ACTIONS(2222), - [anon_sym_null] = ACTIONS(2222), - [anon_sym_true] = ACTIONS(2222), - [anon_sym_false] = ACTIONS(2222), - [aux_sym__val_number_decimal_token1] = ACTIONS(2220), - [aux_sym__val_number_decimal_token2] = ACTIONS(2222), - [aux_sym__val_number_decimal_token3] = ACTIONS(2222), - [aux_sym__val_number_decimal_token4] = ACTIONS(2222), - [aux_sym__val_number_token1] = ACTIONS(2222), - [aux_sym__val_number_token2] = ACTIONS(2222), - [aux_sym__val_number_token3] = ACTIONS(2222), - [aux_sym__val_number_token4] = ACTIONS(2222), - [aux_sym__val_number_token5] = ACTIONS(2222), - [aux_sym__val_number_token6] = ACTIONS(2222), - [anon_sym_0b] = ACTIONS(2220), - [anon_sym_0o] = ACTIONS(2220), - [anon_sym_0x] = ACTIONS(2220), - [sym_val_date] = ACTIONS(2222), - [anon_sym_DQUOTE] = ACTIONS(2222), - [sym__str_single_quotes] = ACTIONS(2222), - [sym__str_back_ticks] = ACTIONS(2222), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2222), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2222), - [anon_sym_err_GT] = ACTIONS(2220), - [anon_sym_out_GT] = ACTIONS(2220), - [anon_sym_e_GT] = ACTIONS(2220), - [anon_sym_o_GT] = ACTIONS(2220), - [anon_sym_err_PLUSout_GT] = ACTIONS(2220), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2220), - [anon_sym_o_PLUSe_GT] = ACTIONS(2220), - [anon_sym_e_PLUSo_GT] = ACTIONS(2220), - [anon_sym_err_GT_GT] = ACTIONS(2222), - [anon_sym_out_GT_GT] = ACTIONS(2222), - [anon_sym_e_GT_GT] = ACTIONS(2222), - [anon_sym_o_GT_GT] = ACTIONS(2222), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2222), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2222), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2222), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2222), - [aux_sym_unquoted_token1] = ACTIONS(2220), - [aux_sym_unquoted_token2] = ACTIONS(1822), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2222), + [aux_sym_cell_path_repeat1] = STATE(1640), + [ts_builtin_sym_end] = ACTIONS(1668), + [sym__newline] = ACTIONS(1668), + [anon_sym_SEMI] = ACTIONS(1668), + [anon_sym_PIPE] = ACTIONS(1668), + [anon_sym_err_GT_PIPE] = ACTIONS(1668), + [anon_sym_out_GT_PIPE] = ACTIONS(1668), + [anon_sym_e_GT_PIPE] = ACTIONS(1668), + [anon_sym_o_GT_PIPE] = ACTIONS(1668), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1668), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1668), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1668), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1668), + [anon_sym_GT2] = ACTIONS(1666), + [anon_sym_DASH2] = ACTIONS(1668), + [anon_sym_in2] = ACTIONS(1668), + [anon_sym_STAR2] = ACTIONS(1666), + [anon_sym_and2] = ACTIONS(1668), + [anon_sym_xor2] = ACTIONS(1668), + [anon_sym_or2] = ACTIONS(1668), + [anon_sym_not_DASHin2] = ACTIONS(1668), + [anon_sym_has2] = ACTIONS(1668), + [anon_sym_not_DASHhas2] = ACTIONS(1668), + [anon_sym_starts_DASHwith2] = ACTIONS(1668), + [anon_sym_ends_DASHwith2] = ACTIONS(1668), + [anon_sym_EQ_EQ2] = ACTIONS(1668), + [anon_sym_BANG_EQ2] = ACTIONS(1668), + [anon_sym_LT2] = ACTIONS(1666), + [anon_sym_LT_EQ2] = ACTIONS(1668), + [anon_sym_GT_EQ2] = ACTIONS(1668), + [anon_sym_EQ_TILDE2] = ACTIONS(1668), + [anon_sym_BANG_TILDE2] = ACTIONS(1668), + [anon_sym_STAR_STAR2] = ACTIONS(1668), + [anon_sym_PLUS_PLUS2] = ACTIONS(1668), + [anon_sym_SLASH2] = ACTIONS(1666), + [anon_sym_mod2] = ACTIONS(1668), + [anon_sym_SLASH_SLASH2] = ACTIONS(1668), + [anon_sym_PLUS2] = ACTIONS(1666), + [anon_sym_bit_DASHshl2] = ACTIONS(1668), + [anon_sym_bit_DASHshr2] = ACTIONS(1668), + [anon_sym_bit_DASHand2] = ACTIONS(1668), + [anon_sym_bit_DASHxor2] = ACTIONS(1668), + [anon_sym_bit_DASHor2] = ACTIONS(1668), + [anon_sym_DOT_DOT2] = ACTIONS(1666), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), + [anon_sym_DOT2] = ACTIONS(4837), + [anon_sym_err_GT] = ACTIONS(1666), + [anon_sym_out_GT] = ACTIONS(1666), + [anon_sym_e_GT] = ACTIONS(1666), + [anon_sym_o_GT] = ACTIONS(1666), + [anon_sym_err_PLUSout_GT] = ACTIONS(1666), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1666), + [anon_sym_o_PLUSe_GT] = ACTIONS(1666), + [anon_sym_e_PLUSo_GT] = ACTIONS(1666), + [anon_sym_err_GT_GT] = ACTIONS(1668), + [anon_sym_out_GT_GT] = ACTIONS(1668), + [anon_sym_e_GT_GT] = ACTIONS(1668), + [anon_sym_o_GT_GT] = ACTIONS(1668), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1668), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1668), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1668), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(247), }, [1555] = { + [sym_cell_path] = STATE(2015), + [sym_path] = STATE(1783), [sym_comment] = STATE(1555), - [sym__newline] = ACTIONS(1820), - [anon_sym_SEMI] = ACTIONS(1820), - [anon_sym_PIPE] = ACTIONS(1820), - [anon_sym_err_GT_PIPE] = ACTIONS(1820), - [anon_sym_out_GT_PIPE] = ACTIONS(1820), - [anon_sym_e_GT_PIPE] = ACTIONS(1820), - [anon_sym_o_GT_PIPE] = ACTIONS(1820), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1820), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1820), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1820), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1820), - [anon_sym_LBRACK] = ACTIONS(1820), - [anon_sym_LPAREN] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1820), - [anon_sym_DOLLAR] = ACTIONS(1812), - [anon_sym_DASH_DASH] = ACTIONS(1820), - [anon_sym_DASH2] = ACTIONS(1812), - [anon_sym_LBRACE] = ACTIONS(1820), - [anon_sym_RBRACE] = ACTIONS(1820), - [anon_sym_DOT_DOT] = ACTIONS(1812), - [anon_sym_LPAREN2] = ACTIONS(1814), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1820), - [anon_sym_DOT_DOT_LT] = ACTIONS(1820), - [anon_sym_null] = ACTIONS(1820), - [anon_sym_true] = ACTIONS(1820), - [anon_sym_false] = ACTIONS(1820), - [aux_sym__val_number_decimal_token1] = ACTIONS(1812), - [aux_sym__val_number_decimal_token2] = 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), - [aux_sym__val_number_token4] = ACTIONS(1820), - [aux_sym__val_number_token5] = ACTIONS(1820), - [aux_sym__val_number_token6] = ACTIONS(1820), - [anon_sym_0b] = ACTIONS(1812), - [anon_sym_0o] = ACTIONS(1812), - [anon_sym_0x] = ACTIONS(1812), - [sym_val_date] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1820), - [sym__str_single_quotes] = ACTIONS(1820), - [sym__str_back_ticks] = ACTIONS(1820), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1820), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1820), - [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(1820), - [anon_sym_out_GT_GT] = ACTIONS(1820), - [anon_sym_e_GT_GT] = ACTIONS(1820), - [anon_sym_o_GT_GT] = ACTIONS(1820), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1820), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1820), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1820), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1820), - [aux_sym_unquoted_token1] = ACTIONS(1812), - [aux_sym_unquoted_token2] = ACTIONS(1822), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1820), + [aux_sym_cell_path_repeat1] = STATE(1640), + [ts_builtin_sym_end] = ACTIONS(931), + [sym__newline] = ACTIONS(931), + [anon_sym_SEMI] = ACTIONS(931), + [anon_sym_PIPE] = ACTIONS(931), + [anon_sym_err_GT_PIPE] = ACTIONS(931), + [anon_sym_out_GT_PIPE] = ACTIONS(931), + [anon_sym_e_GT_PIPE] = ACTIONS(931), + [anon_sym_o_GT_PIPE] = ACTIONS(931), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(931), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(931), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(931), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(931), + [anon_sym_GT2] = ACTIONS(929), + [anon_sym_DASH2] = ACTIONS(931), + [anon_sym_in2] = ACTIONS(931), + [anon_sym_STAR2] = ACTIONS(929), + [anon_sym_and2] = ACTIONS(931), + [anon_sym_xor2] = ACTIONS(931), + [anon_sym_or2] = ACTIONS(931), + [anon_sym_not_DASHin2] = ACTIONS(931), + [anon_sym_has2] = ACTIONS(931), + [anon_sym_not_DASHhas2] = ACTIONS(931), + [anon_sym_starts_DASHwith2] = ACTIONS(931), + [anon_sym_ends_DASHwith2] = ACTIONS(931), + [anon_sym_EQ_EQ2] = ACTIONS(931), + [anon_sym_BANG_EQ2] = ACTIONS(931), + [anon_sym_LT2] = ACTIONS(929), + [anon_sym_LT_EQ2] = ACTIONS(931), + [anon_sym_GT_EQ2] = ACTIONS(931), + [anon_sym_EQ_TILDE2] = ACTIONS(931), + [anon_sym_BANG_TILDE2] = ACTIONS(931), + [anon_sym_STAR_STAR2] = ACTIONS(931), + [anon_sym_PLUS_PLUS2] = ACTIONS(931), + [anon_sym_SLASH2] = ACTIONS(929), + [anon_sym_mod2] = ACTIONS(931), + [anon_sym_SLASH_SLASH2] = ACTIONS(931), + [anon_sym_PLUS2] = ACTIONS(929), + [anon_sym_bit_DASHshl2] = ACTIONS(931), + [anon_sym_bit_DASHshr2] = ACTIONS(931), + [anon_sym_bit_DASHand2] = ACTIONS(931), + [anon_sym_bit_DASHxor2] = ACTIONS(931), + [anon_sym_bit_DASHor2] = ACTIONS(931), + [anon_sym_DOT_DOT2] = ACTIONS(929), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(931), + [anon_sym_DOT_DOT_LT2] = ACTIONS(931), + [anon_sym_DOT2] = ACTIONS(4837), + [anon_sym_err_GT] = ACTIONS(929), + [anon_sym_out_GT] = ACTIONS(929), + [anon_sym_e_GT] = ACTIONS(929), + [anon_sym_o_GT] = ACTIONS(929), + [anon_sym_err_PLUSout_GT] = ACTIONS(929), + [anon_sym_out_PLUSerr_GT] = ACTIONS(929), + [anon_sym_o_PLUSe_GT] = ACTIONS(929), + [anon_sym_e_PLUSo_GT] = ACTIONS(929), + [anon_sym_err_GT_GT] = ACTIONS(931), + [anon_sym_out_GT_GT] = ACTIONS(931), + [anon_sym_e_GT_GT] = ACTIONS(931), + [anon_sym_o_GT_GT] = ACTIONS(931), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(931), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(931), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(931), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(931), + [anon_sym_POUND] = ACTIONS(247), }, [1556] = { [sym_comment] = STATE(1556), - [ts_builtin_sym_end] = ACTIONS(1785), - [sym__newline] = ACTIONS(1785), - [anon_sym_SEMI] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(1785), - [anon_sym_err_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_GT_PIPE] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1783), - [anon_sym_DOT_DOT2] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1783), - [anon_sym_DOT_DOT_LT] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1785), - [anon_sym_null] = ACTIONS(1785), - [anon_sym_true] = ACTIONS(1785), - [anon_sym_false] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(1785), - [aux_sym__val_number_token2] = ACTIONS(1785), - [aux_sym__val_number_token3] = ACTIONS(1785), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_0b] = ACTIONS(1783), - [anon_sym_0o] = ACTIONS(1783), - [anon_sym_0x] = ACTIONS(1783), - [sym_val_date] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1785), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1785), - [anon_sym_err_GT] = ACTIONS(1783), - [anon_sym_out_GT] = ACTIONS(1783), - [anon_sym_e_GT] = ACTIONS(1783), - [anon_sym_o_GT] = ACTIONS(1783), - [anon_sym_err_PLUSout_GT] = ACTIONS(1783), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1783), - [anon_sym_o_PLUSe_GT] = ACTIONS(1783), - [anon_sym_e_PLUSo_GT] = ACTIONS(1783), - [anon_sym_err_GT_GT] = ACTIONS(1785), - [anon_sym_out_GT_GT] = ACTIONS(1785), - [anon_sym_e_GT_GT] = ACTIONS(1785), - [anon_sym_o_GT_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1785), - [aux_sym_unquoted_token1] = ACTIONS(1783), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1785), - }, - [1557] = { - [sym_comment] = STATE(1557), - [sym__newline] = ACTIONS(2228), - [anon_sym_SEMI] = ACTIONS(2228), - [anon_sym_PIPE] = ACTIONS(2228), - [anon_sym_err_GT_PIPE] = ACTIONS(2228), - [anon_sym_out_GT_PIPE] = ACTIONS(2228), - [anon_sym_e_GT_PIPE] = ACTIONS(2228), - [anon_sym_o_GT_PIPE] = ACTIONS(2228), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2228), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2228), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2228), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2228), - [anon_sym_LBRACK] = ACTIONS(2228), - [anon_sym_LPAREN] = ACTIONS(2224), - [anon_sym_RPAREN] = ACTIONS(2228), - [anon_sym_DOLLAR] = ACTIONS(2224), - [anon_sym_DASH_DASH] = ACTIONS(2228), - [anon_sym_DASH2] = ACTIONS(2224), - [anon_sym_LBRACE] = ACTIONS(2228), - [anon_sym_RBRACE] = ACTIONS(2228), - [anon_sym_DOT_DOT] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2226), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2228), - [anon_sym_DOT_DOT_LT] = ACTIONS(2228), - [anon_sym_null] = ACTIONS(2228), - [anon_sym_true] = ACTIONS(2228), - [anon_sym_false] = ACTIONS(2228), - [aux_sym__val_number_decimal_token1] = ACTIONS(2224), - [aux_sym__val_number_decimal_token2] = ACTIONS(2228), - [aux_sym__val_number_decimal_token3] = ACTIONS(2228), - [aux_sym__val_number_decimal_token4] = ACTIONS(2228), - [aux_sym__val_number_token1] = ACTIONS(2228), - [aux_sym__val_number_token2] = ACTIONS(2228), - [aux_sym__val_number_token3] = ACTIONS(2228), - [aux_sym__val_number_token4] = ACTIONS(2228), - [aux_sym__val_number_token5] = ACTIONS(2228), - [aux_sym__val_number_token6] = ACTIONS(2228), - [anon_sym_0b] = ACTIONS(2224), - [anon_sym_0o] = ACTIONS(2224), - [anon_sym_0x] = ACTIONS(2224), - [sym_val_date] = ACTIONS(2228), - [anon_sym_DQUOTE] = ACTIONS(2228), - [sym__str_single_quotes] = ACTIONS(2228), - [sym__str_back_ticks] = ACTIONS(2228), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2228), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2228), - [anon_sym_err_GT] = ACTIONS(2224), - [anon_sym_out_GT] = ACTIONS(2224), - [anon_sym_e_GT] = ACTIONS(2224), - [anon_sym_o_GT] = ACTIONS(2224), - [anon_sym_err_PLUSout_GT] = ACTIONS(2224), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2224), - [anon_sym_o_PLUSe_GT] = ACTIONS(2224), - [anon_sym_e_PLUSo_GT] = ACTIONS(2224), - [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(2224), - [aux_sym_unquoted_token2] = ACTIONS(1540), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2228), - }, - [1558] = { - [sym_comment] = STATE(1558), - [sym__newline] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_PIPE] = ACTIONS(2176), - [anon_sym_err_GT_PIPE] = ACTIONS(2176), - [anon_sym_out_GT_PIPE] = ACTIONS(2176), - [anon_sym_e_GT_PIPE] = ACTIONS(2176), - [anon_sym_o_GT_PIPE] = ACTIONS(2176), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2176), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2176), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2176), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2172), - [anon_sym_RPAREN] = ACTIONS(2176), - [anon_sym_DOLLAR] = ACTIONS(2172), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_DASH2] = ACTIONS(2172), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_RBRACE] = ACTIONS(2176), - [anon_sym_DOT_DOT] = ACTIONS(2172), - [anon_sym_LPAREN2] = ACTIONS(2174), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2176), - [anon_sym_DOT_DOT_LT] = ACTIONS(2176), - [anon_sym_null] = ACTIONS(2176), - [anon_sym_true] = ACTIONS(2176), - [anon_sym_false] = ACTIONS(2176), - [aux_sym__val_number_decimal_token1] = ACTIONS(2172), - [aux_sym__val_number_decimal_token2] = ACTIONS(2176), - [aux_sym__val_number_decimal_token3] = ACTIONS(2176), - [aux_sym__val_number_decimal_token4] = ACTIONS(2176), - [aux_sym__val_number_token1] = ACTIONS(2176), - [aux_sym__val_number_token2] = ACTIONS(2176), - [aux_sym__val_number_token3] = ACTIONS(2176), - [aux_sym__val_number_token4] = ACTIONS(2176), - [aux_sym__val_number_token5] = ACTIONS(2176), - [aux_sym__val_number_token6] = ACTIONS(2176), - [anon_sym_0b] = ACTIONS(2172), - [anon_sym_0o] = ACTIONS(2172), - [anon_sym_0x] = ACTIONS(2172), - [sym_val_date] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym__str_single_quotes] = ACTIONS(2176), - [sym__str_back_ticks] = ACTIONS(2176), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2176), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2176), - [anon_sym_err_GT] = ACTIONS(2172), - [anon_sym_out_GT] = ACTIONS(2172), - [anon_sym_e_GT] = ACTIONS(2172), - [anon_sym_o_GT] = ACTIONS(2172), - [anon_sym_err_PLUSout_GT] = ACTIONS(2172), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2172), - [anon_sym_o_PLUSe_GT] = ACTIONS(2172), - [anon_sym_e_PLUSo_GT] = ACTIONS(2172), - [anon_sym_err_GT_GT] = ACTIONS(2176), - [anon_sym_out_GT_GT] = ACTIONS(2176), - [anon_sym_e_GT_GT] = ACTIONS(2176), - [anon_sym_o_GT_GT] = ACTIONS(2176), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2176), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2176), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2176), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2176), - [aux_sym_unquoted_token1] = ACTIONS(2172), - [aux_sym_unquoted_token2] = ACTIONS(2178), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2176), - }, - [1559] = { - [sym_comment] = STATE(1559), - [ts_builtin_sym_end] = 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_DASH2] = ACTIONS(1835), - [anon_sym_LBRACE] = ACTIONS(1837), - [anon_sym_DOT_DOT] = ACTIONS(1835), - [anon_sym_DOT_DOT2] = ACTIONS(1835), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1835), - [anon_sym_DOT_DOT_LT] = ACTIONS(1835), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1837), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1837), - [anon_sym_null] = ACTIONS(1837), - [anon_sym_true] = ACTIONS(1837), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(1837), - [aux_sym__val_number_token5] = ACTIONS(1837), - [aux_sym__val_number_token6] = 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(251), - [sym_raw_string_begin] = ACTIONS(1837), - }, - [1560] = { - [sym_comment] = STATE(1560), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1713), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_RPAREN] = ACTIONS(1713), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_DOT_DOT] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT] = ACTIONS(1713), - [aux_sym__immediate_decimal_token1] = ACTIONS(4854), - [aux_sym__immediate_decimal_token2] = ACTIONS(4856), - [anon_sym_null] = ACTIONS(1713), - [anon_sym_true] = ACTIONS(1713), - [anon_sym_false] = ACTIONS(1713), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1713), - [aux_sym__val_number_decimal_token3] = ACTIONS(1713), - [aux_sym__val_number_decimal_token4] = ACTIONS(1713), - [aux_sym__val_number_token1] = ACTIONS(1713), - [aux_sym__val_number_token2] = ACTIONS(1713), - [aux_sym__val_number_token3] = ACTIONS(1713), - [aux_sym__val_number_token4] = ACTIONS(1713), - [aux_sym__val_number_token5] = ACTIONS(1713), - [aux_sym__val_number_token6] = ACTIONS(1713), - [anon_sym_0b] = ACTIONS(1711), - [anon_sym_0o] = ACTIONS(1711), - [anon_sym_0x] = ACTIONS(1711), - [sym_val_date] = ACTIONS(1713), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym__str_single_quotes] = ACTIONS(1713), - [sym__str_back_ticks] = ACTIONS(1713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1713), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [aux_sym_unquoted_token1] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1713), - }, - [1561] = { - [sym_comment] = STATE(1561), - [ts_builtin_sym_end] = ACTIONS(1552), - [sym__newline] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1552), - [anon_sym_PIPE] = ACTIONS(1552), - [anon_sym_err_GT_PIPE] = ACTIONS(1552), - [anon_sym_out_GT_PIPE] = ACTIONS(1552), - [anon_sym_e_GT_PIPE] = ACTIONS(1552), - [anon_sym_o_GT_PIPE] = ACTIONS(1552), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1552), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1552), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1552), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1552), - [anon_sym_GT2] = ACTIONS(1550), - [anon_sym_DASH2] = ACTIONS(1552), - [anon_sym_in2] = ACTIONS(1552), - [anon_sym_STAR2] = ACTIONS(1550), - [anon_sym_and2] = ACTIONS(1552), - [anon_sym_xor2] = ACTIONS(1552), - [anon_sym_or2] = ACTIONS(1552), - [anon_sym_not_DASHin2] = ACTIONS(1552), - [anon_sym_starts_DASHwith2] = ACTIONS(1552), - [anon_sym_ends_DASHwith2] = ACTIONS(1552), - [anon_sym_EQ_EQ2] = ACTIONS(1552), - [anon_sym_BANG_EQ2] = ACTIONS(1552), - [anon_sym_LT2] = ACTIONS(1550), - [anon_sym_LT_EQ2] = ACTIONS(1552), - [anon_sym_GT_EQ2] = ACTIONS(1552), - [anon_sym_EQ_TILDE2] = ACTIONS(1552), - [anon_sym_BANG_TILDE2] = ACTIONS(1552), - [anon_sym_LPAREN2] = ACTIONS(1552), - [anon_sym_STAR_STAR2] = ACTIONS(1552), - [anon_sym_PLUS_PLUS2] = ACTIONS(1552), - [anon_sym_SLASH2] = ACTIONS(1550), - [anon_sym_mod2] = ACTIONS(1552), - [anon_sym_SLASH_SLASH2] = ACTIONS(1552), - [anon_sym_PLUS2] = ACTIONS(1550), - [anon_sym_bit_DASHshl2] = ACTIONS(1552), - [anon_sym_bit_DASHshr2] = ACTIONS(1552), - [anon_sym_bit_DASHand2] = ACTIONS(1552), - [anon_sym_bit_DASHxor2] = ACTIONS(1552), - [anon_sym_bit_DASHor2] = ACTIONS(1552), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [aux_sym__immediate_decimal_token2] = ACTIONS(4756), - [sym_filesize_unit] = ACTIONS(1550), - [sym_duration_unit] = ACTIONS(1552), - [anon_sym_err_GT] = ACTIONS(1550), - [anon_sym_out_GT] = ACTIONS(1550), - [anon_sym_e_GT] = ACTIONS(1550), - [anon_sym_o_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT] = ACTIONS(1550), - [anon_sym_err_GT_GT] = ACTIONS(1552), - [anon_sym_out_GT_GT] = ACTIONS(1552), - [anon_sym_e_GT_GT] = ACTIONS(1552), - [anon_sym_o_GT_GT] = ACTIONS(1552), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1552), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1552), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1552), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1552), - [aux_sym_unquoted_token2] = ACTIONS(1550), - [anon_sym_POUND] = ACTIONS(251), - }, - [1562] = { - [sym_comment] = STATE(1562), - [sym_long_flag_identifier] = ACTIONS(4858), - [sym__newline] = ACTIONS(4860), - [anon_sym_SEMI] = ACTIONS(4860), - [anon_sym_PIPE] = ACTIONS(4860), - [anon_sym_err_GT_PIPE] = ACTIONS(4860), - [anon_sym_out_GT_PIPE] = ACTIONS(4860), - [anon_sym_e_GT_PIPE] = ACTIONS(4860), - [anon_sym_o_GT_PIPE] = ACTIONS(4860), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4860), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4860), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4860), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4860), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_RPAREN] = ACTIONS(4860), - [anon_sym_DOLLAR] = ACTIONS(4862), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_DASH2] = ACTIONS(4862), - [anon_sym_LBRACE] = ACTIONS(4860), - [anon_sym_RBRACE] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4862), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4860), - [anon_sym_DOT_DOT_LT] = ACTIONS(4860), - [anon_sym_null] = ACTIONS(4862), - [anon_sym_true] = ACTIONS(4862), - [anon_sym_false] = ACTIONS(4862), - [aux_sym__val_number_decimal_token1] = ACTIONS(4862), - [aux_sym__val_number_decimal_token2] = ACTIONS(4860), - [aux_sym__val_number_decimal_token3] = ACTIONS(4860), - [aux_sym__val_number_decimal_token4] = ACTIONS(4860), - [aux_sym__val_number_token1] = ACTIONS(4862), - [aux_sym__val_number_token2] = ACTIONS(4862), - [aux_sym__val_number_token3] = ACTIONS(4862), - [aux_sym__val_number_token4] = ACTIONS(4862), - [aux_sym__val_number_token5] = ACTIONS(4860), - [aux_sym__val_number_token6] = ACTIONS(4862), - [anon_sym_0b] = ACTIONS(4862), - [anon_sym_0o] = ACTIONS(4862), - [anon_sym_0x] = ACTIONS(4862), - [sym_val_date] = ACTIONS(4862), - [anon_sym_DQUOTE] = ACTIONS(4860), - [sym__str_single_quotes] = ACTIONS(4860), - [sym__str_back_ticks] = ACTIONS(4860), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4860), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4860), - [anon_sym_err_GT] = ACTIONS(4862), - [anon_sym_out_GT] = ACTIONS(4862), - [anon_sym_e_GT] = ACTIONS(4862), - [anon_sym_o_GT] = ACTIONS(4862), - [anon_sym_err_PLUSout_GT] = ACTIONS(4862), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4862), - [anon_sym_o_PLUSe_GT] = ACTIONS(4862), - [anon_sym_e_PLUSo_GT] = ACTIONS(4862), - [anon_sym_err_GT_GT] = ACTIONS(4860), - [anon_sym_out_GT_GT] = ACTIONS(4860), - [anon_sym_e_GT_GT] = ACTIONS(4860), - [anon_sym_o_GT_GT] = ACTIONS(4860), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4860), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4860), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4860), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4860), - [anon_sym_EQ2] = ACTIONS(4864), - [aux_sym_unquoted_token1] = ACTIONS(4862), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4860), - }, - [1563] = { - [sym_comment] = STATE(1563), - [sym__newline] = ACTIONS(1757), - [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_RPAREN] = ACTIONS(1757), - [anon_sym_GT2] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1757), - [anon_sym_in2] = ACTIONS(1757), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_STAR2] = ACTIONS(1755), - [anon_sym_and2] = ACTIONS(1757), - [anon_sym_xor2] = ACTIONS(1757), - [anon_sym_or2] = ACTIONS(1757), - [anon_sym_not_DASHin2] = ACTIONS(1757), - [anon_sym_starts_DASHwith2] = ACTIONS(1757), - [anon_sym_ends_DASHwith2] = ACTIONS(1757), - [anon_sym_EQ_EQ2] = ACTIONS(1757), - [anon_sym_BANG_EQ2] = ACTIONS(1757), - [anon_sym_LT2] = ACTIONS(1755), - [anon_sym_LT_EQ2] = ACTIONS(1757), - [anon_sym_GT_EQ2] = ACTIONS(1757), - [anon_sym_EQ_TILDE2] = ACTIONS(1757), - [anon_sym_BANG_TILDE2] = ACTIONS(1757), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_STAR_STAR2] = ACTIONS(1757), - [anon_sym_PLUS_PLUS2] = ACTIONS(1757), - [anon_sym_SLASH2] = ACTIONS(1755), - [anon_sym_mod2] = ACTIONS(1757), - [anon_sym_SLASH_SLASH2] = ACTIONS(1757), - [anon_sym_PLUS2] = ACTIONS(1755), - [anon_sym_bit_DASHshl2] = ACTIONS(1757), - [anon_sym_bit_DASHshr2] = ACTIONS(1757), - [anon_sym_bit_DASHand2] = ACTIONS(1757), - [anon_sym_bit_DASHxor2] = ACTIONS(1757), - [anon_sym_bit_DASHor2] = ACTIONS(1757), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(4814), - [anon_sym_err_GT] = ACTIONS(1755), - [anon_sym_out_GT] = ACTIONS(1755), - [anon_sym_e_GT] = ACTIONS(1755), - [anon_sym_o_GT] = ACTIONS(1755), - [anon_sym_err_PLUSout_GT] = ACTIONS(1755), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), - [anon_sym_o_PLUSe_GT] = ACTIONS(1755), - [anon_sym_e_PLUSo_GT] = ACTIONS(1755), - [anon_sym_err_GT_GT] = ACTIONS(1757), - [anon_sym_out_GT_GT] = ACTIONS(1757), - [anon_sym_e_GT_GT] = ACTIONS(1757), - [anon_sym_o_GT_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), - [aux_sym_unquoted_token2] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(251), - }, - [1564] = { - [sym_comment] = STATE(1564), - [sym__newline] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1552), - [anon_sym_PIPE] = ACTIONS(1552), - [anon_sym_err_GT_PIPE] = ACTIONS(1552), - [anon_sym_out_GT_PIPE] = ACTIONS(1552), - [anon_sym_e_GT_PIPE] = ACTIONS(1552), - [anon_sym_o_GT_PIPE] = ACTIONS(1552), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1552), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1552), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1552), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1552), - [anon_sym_RPAREN] = ACTIONS(1552), - [anon_sym_GT2] = ACTIONS(1550), - [anon_sym_DASH2] = ACTIONS(1552), - [anon_sym_in2] = ACTIONS(1552), - [anon_sym_RBRACE] = ACTIONS(1552), - [anon_sym_STAR2] = ACTIONS(1550), - [anon_sym_and2] = ACTIONS(1552), - [anon_sym_xor2] = ACTIONS(1552), - [anon_sym_or2] = ACTIONS(1552), - [anon_sym_not_DASHin2] = ACTIONS(1552), - [anon_sym_starts_DASHwith2] = ACTIONS(1552), - [anon_sym_ends_DASHwith2] = ACTIONS(1552), - [anon_sym_EQ_EQ2] = ACTIONS(1552), - [anon_sym_BANG_EQ2] = ACTIONS(1552), - [anon_sym_LT2] = ACTIONS(1550), - [anon_sym_LT_EQ2] = ACTIONS(1552), - [anon_sym_GT_EQ2] = ACTIONS(1552), - [anon_sym_EQ_TILDE2] = ACTIONS(1552), - [anon_sym_BANG_TILDE2] = ACTIONS(1552), - [anon_sym_LPAREN2] = ACTIONS(1552), - [anon_sym_STAR_STAR2] = ACTIONS(1552), - [anon_sym_PLUS_PLUS2] = ACTIONS(1552), - [anon_sym_SLASH2] = ACTIONS(1550), - [anon_sym_mod2] = ACTIONS(1552), - [anon_sym_SLASH_SLASH2] = ACTIONS(1552), - [anon_sym_PLUS2] = ACTIONS(1550), - [anon_sym_bit_DASHshl2] = ACTIONS(1552), - [anon_sym_bit_DASHshr2] = ACTIONS(1552), - [anon_sym_bit_DASHand2] = ACTIONS(1552), - [anon_sym_bit_DASHxor2] = ACTIONS(1552), - [anon_sym_bit_DASHor2] = ACTIONS(1552), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [sym_filesize_unit] = ACTIONS(1550), - [sym_duration_unit] = ACTIONS(1552), - [anon_sym_err_GT] = ACTIONS(1550), - [anon_sym_out_GT] = ACTIONS(1550), - [anon_sym_e_GT] = ACTIONS(1550), - [anon_sym_o_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT] = ACTIONS(1550), - [anon_sym_err_GT_GT] = ACTIONS(1552), - [anon_sym_out_GT_GT] = ACTIONS(1552), - [anon_sym_e_GT_GT] = ACTIONS(1552), - [anon_sym_o_GT_GT] = ACTIONS(1552), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1552), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1552), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1552), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1552), - [aux_sym_unquoted_token2] = ACTIONS(1550), - [anon_sym_POUND] = ACTIONS(251), - }, - [1565] = { - [sym_comment] = STATE(1565), - [sym__newline] = ACTIONS(1544), - [anon_sym_SEMI] = ACTIONS(1544), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_err_GT_PIPE] = ACTIONS(1544), - [anon_sym_out_GT_PIPE] = ACTIONS(1544), - [anon_sym_e_GT_PIPE] = ACTIONS(1544), - [anon_sym_o_GT_PIPE] = ACTIONS(1544), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1544), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1544), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1544), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1544), - [anon_sym_RPAREN] = ACTIONS(1544), - [anon_sym_GT2] = ACTIONS(1542), - [anon_sym_DASH2] = ACTIONS(1544), - [anon_sym_in2] = ACTIONS(1544), - [anon_sym_RBRACE] = ACTIONS(1544), - [anon_sym_STAR2] = ACTIONS(1542), - [anon_sym_and2] = ACTIONS(1544), - [anon_sym_xor2] = ACTIONS(1544), - [anon_sym_or2] = ACTIONS(1544), - [anon_sym_not_DASHin2] = ACTIONS(1544), - [anon_sym_starts_DASHwith2] = ACTIONS(1544), - [anon_sym_ends_DASHwith2] = ACTIONS(1544), - [anon_sym_EQ_EQ2] = ACTIONS(1544), - [anon_sym_BANG_EQ2] = ACTIONS(1544), - [anon_sym_LT2] = ACTIONS(1542), - [anon_sym_LT_EQ2] = ACTIONS(1544), - [anon_sym_GT_EQ2] = ACTIONS(1544), - [anon_sym_EQ_TILDE2] = ACTIONS(1544), - [anon_sym_BANG_TILDE2] = ACTIONS(1544), - [anon_sym_LPAREN2] = ACTIONS(1544), - [anon_sym_STAR_STAR2] = ACTIONS(1544), - [anon_sym_PLUS_PLUS2] = ACTIONS(1544), - [anon_sym_SLASH2] = ACTIONS(1542), - [anon_sym_mod2] = ACTIONS(1544), - [anon_sym_SLASH_SLASH2] = ACTIONS(1544), - [anon_sym_PLUS2] = ACTIONS(1542), - [anon_sym_bit_DASHshl2] = ACTIONS(1544), - [anon_sym_bit_DASHshr2] = ACTIONS(1544), - [anon_sym_bit_DASHand2] = ACTIONS(1544), - [anon_sym_bit_DASHxor2] = ACTIONS(1544), - [anon_sym_bit_DASHor2] = ACTIONS(1544), - [anon_sym_DOT_DOT2] = ACTIONS(1542), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1544), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1544), - [sym_filesize_unit] = ACTIONS(1542), - [sym_duration_unit] = ACTIONS(1544), - [anon_sym_err_GT] = ACTIONS(1542), - [anon_sym_out_GT] = ACTIONS(1542), - [anon_sym_e_GT] = ACTIONS(1542), - [anon_sym_o_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT] = ACTIONS(1542), - [anon_sym_err_GT_GT] = ACTIONS(1544), - [anon_sym_out_GT_GT] = ACTIONS(1544), - [anon_sym_e_GT_GT] = ACTIONS(1544), - [anon_sym_o_GT_GT] = ACTIONS(1544), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1544), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1544), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1544), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1544), - [aux_sym_unquoted_token2] = ACTIONS(1542), - [anon_sym_POUND] = ACTIONS(251), - }, - [1566] = { - [sym_comment] = STATE(1566), - [ts_builtin_sym_end] = ACTIONS(1757), - [sym__newline] = ACTIONS(1757), - [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(1755), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(4796), - [anon_sym_null] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = 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_err_GT] = ACTIONS(1755), - [anon_sym_out_GT] = ACTIONS(1755), - [anon_sym_e_GT] = ACTIONS(1755), - [anon_sym_o_GT] = ACTIONS(1755), - [anon_sym_err_PLUSout_GT] = ACTIONS(1755), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), - [anon_sym_o_PLUSe_GT] = ACTIONS(1755), - [anon_sym_e_PLUSo_GT] = ACTIONS(1755), - [anon_sym_err_GT_GT] = ACTIONS(1757), - [anon_sym_out_GT_GT] = ACTIONS(1757), - [anon_sym_e_GT_GT] = ACTIONS(1757), - [anon_sym_o_GT_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), - [aux_sym_unquoted_token1] = ACTIONS(1755), - [aux_sym_unquoted_token2] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1757), - }, - [1567] = { - [sym_comment] = STATE(1567), - [sym__newline] = ACTIONS(1682), - [anon_sym_SEMI] = ACTIONS(1682), - [anon_sym_PIPE] = ACTIONS(1682), - [anon_sym_err_GT_PIPE] = ACTIONS(1682), - [anon_sym_out_GT_PIPE] = ACTIONS(1682), - [anon_sym_e_GT_PIPE] = ACTIONS(1682), - [anon_sym_o_GT_PIPE] = ACTIONS(1682), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1682), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1682), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1682), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1682), - [anon_sym_RPAREN] = ACTIONS(1682), - [anon_sym_GT2] = ACTIONS(1680), - [anon_sym_DASH2] = ACTIONS(1682), - [anon_sym_in2] = ACTIONS(1682), - [anon_sym_RBRACE] = ACTIONS(1682), - [anon_sym_STAR2] = ACTIONS(1680), - [anon_sym_and2] = ACTIONS(1682), - [anon_sym_xor2] = ACTIONS(1682), - [anon_sym_or2] = ACTIONS(1682), - [anon_sym_not_DASHin2] = ACTIONS(1682), - [anon_sym_starts_DASHwith2] = ACTIONS(1682), - [anon_sym_ends_DASHwith2] = ACTIONS(1682), - [anon_sym_EQ_EQ2] = ACTIONS(1682), - [anon_sym_BANG_EQ2] = ACTIONS(1682), - [anon_sym_LT2] = ACTIONS(1680), - [anon_sym_LT_EQ2] = ACTIONS(1682), - [anon_sym_GT_EQ2] = ACTIONS(1682), - [anon_sym_EQ_TILDE2] = ACTIONS(1682), - [anon_sym_BANG_TILDE2] = ACTIONS(1682), - [anon_sym_LPAREN2] = ACTIONS(1682), - [anon_sym_STAR_STAR2] = ACTIONS(1682), - [anon_sym_PLUS_PLUS2] = ACTIONS(1682), - [anon_sym_SLASH2] = ACTIONS(1680), - [anon_sym_mod2] = ACTIONS(1682), - [anon_sym_SLASH_SLASH2] = ACTIONS(1682), - [anon_sym_PLUS2] = ACTIONS(1680), - [anon_sym_bit_DASHshl2] = ACTIONS(1682), - [anon_sym_bit_DASHshr2] = ACTIONS(1682), - [anon_sym_bit_DASHand2] = ACTIONS(1682), - [anon_sym_bit_DASHxor2] = ACTIONS(1682), - [anon_sym_bit_DASHor2] = ACTIONS(1682), - [anon_sym_DOT_DOT2] = ACTIONS(1680), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1682), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1682), - [sym_filesize_unit] = ACTIONS(1680), - [sym_duration_unit] = ACTIONS(1682), - [anon_sym_err_GT] = ACTIONS(1680), - [anon_sym_out_GT] = ACTIONS(1680), - [anon_sym_e_GT] = ACTIONS(1680), - [anon_sym_o_GT] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT] = ACTIONS(1680), - [anon_sym_err_GT_GT] = ACTIONS(1682), - [anon_sym_out_GT_GT] = ACTIONS(1682), - [anon_sym_e_GT_GT] = ACTIONS(1682), - [anon_sym_o_GT_GT] = ACTIONS(1682), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1682), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1682), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1682), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1682), - [aux_sym_unquoted_token2] = ACTIONS(1680), - [anon_sym_POUND] = ACTIONS(251), - }, - [1568] = { - [sym_comment] = STATE(1568), - [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_RPAREN] = ACTIONS(1745), - [anon_sym_GT2] = ACTIONS(1743), - [anon_sym_DASH2] = ACTIONS(1745), - [anon_sym_in2] = ACTIONS(1745), - [anon_sym_RBRACE] = ACTIONS(1745), - [anon_sym_STAR2] = ACTIONS(1743), - [anon_sym_and2] = ACTIONS(1745), - [anon_sym_xor2] = ACTIONS(1745), - [anon_sym_or2] = ACTIONS(1745), - [anon_sym_not_DASHin2] = ACTIONS(1745), - [anon_sym_starts_DASHwith2] = ACTIONS(1745), - [anon_sym_ends_DASHwith2] = ACTIONS(1745), - [anon_sym_EQ_EQ2] = ACTIONS(1745), - [anon_sym_BANG_EQ2] = ACTIONS(1745), - [anon_sym_LT2] = ACTIONS(1743), - [anon_sym_LT_EQ2] = ACTIONS(1745), - [anon_sym_GT_EQ2] = ACTIONS(1745), - [anon_sym_EQ_TILDE2] = ACTIONS(1745), - [anon_sym_BANG_TILDE2] = ACTIONS(1745), - [anon_sym_LPAREN2] = ACTIONS(1745), - [anon_sym_STAR_STAR2] = ACTIONS(1745), - [anon_sym_PLUS_PLUS2] = ACTIONS(1745), - [anon_sym_SLASH2] = ACTIONS(1743), - [anon_sym_mod2] = ACTIONS(1745), - [anon_sym_SLASH_SLASH2] = ACTIONS(1745), - [anon_sym_PLUS2] = ACTIONS(1743), - [anon_sym_bit_DASHshl2] = ACTIONS(1745), - [anon_sym_bit_DASHshr2] = ACTIONS(1745), - [anon_sym_bit_DASHand2] = ACTIONS(1745), - [anon_sym_bit_DASHxor2] = ACTIONS(1745), - [anon_sym_bit_DASHor2] = ACTIONS(1745), - [anon_sym_DOT_DOT2] = ACTIONS(1743), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1745), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1745), - [sym_filesize_unit] = ACTIONS(1743), - [sym_duration_unit] = ACTIONS(1745), - [anon_sym_err_GT] = ACTIONS(1743), - [anon_sym_out_GT] = ACTIONS(1743), - [anon_sym_e_GT] = ACTIONS(1743), - [anon_sym_o_GT] = ACTIONS(1743), - [anon_sym_err_PLUSout_GT] = ACTIONS(1743), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1743), - [anon_sym_o_PLUSe_GT] = ACTIONS(1743), - [anon_sym_e_PLUSo_GT] = ACTIONS(1743), - [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_token2] = ACTIONS(1743), - [anon_sym_POUND] = ACTIONS(251), - }, - [1569] = { - [sym_comment] = STATE(1569), - [sym__newline] = ACTIONS(1757), - [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_DASH_DASH] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_DOT] = ACTIONS(4866), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(4868), - [anon_sym_null] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = 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_err_GT] = ACTIONS(1755), - [anon_sym_out_GT] = ACTIONS(1755), - [anon_sym_e_GT] = ACTIONS(1755), - [anon_sym_o_GT] = ACTIONS(1755), - [anon_sym_err_PLUSout_GT] = ACTIONS(1755), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), - [anon_sym_o_PLUSe_GT] = ACTIONS(1755), - [anon_sym_e_PLUSo_GT] = ACTIONS(1755), - [anon_sym_err_GT_GT] = ACTIONS(1757), - [anon_sym_out_GT_GT] = ACTIONS(1757), - [anon_sym_e_GT_GT] = ACTIONS(1757), - [anon_sym_o_GT_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), - [aux_sym_unquoted_token1] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1757), - }, - [1570] = { - [sym__expr_parenthesized_immediate] = STATE(7464), - [sym_comment] = STATE(1570), - [sym__newline] = ACTIONS(4870), - [anon_sym_SEMI] = ACTIONS(4870), - [anon_sym_PIPE] = ACTIONS(4870), - [anon_sym_err_GT_PIPE] = ACTIONS(4870), - [anon_sym_out_GT_PIPE] = ACTIONS(4870), - [anon_sym_e_GT_PIPE] = ACTIONS(4870), - [anon_sym_o_GT_PIPE] = ACTIONS(4870), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4870), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4870), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4870), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4870), - [anon_sym_LBRACK] = ACTIONS(4870), - [anon_sym_LPAREN] = ACTIONS(4872), - [anon_sym_RPAREN] = ACTIONS(4870), - [anon_sym_DOLLAR] = ACTIONS(4872), - [anon_sym_DASH_DASH] = ACTIONS(4870), - [anon_sym_DASH2] = ACTIONS(4872), - [anon_sym_LBRACE] = ACTIONS(4870), - [anon_sym_RBRACE] = ACTIONS(4870), - [anon_sym_DOT_DOT] = ACTIONS(4872), - [anon_sym_LPAREN2] = ACTIONS(4181), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4870), - [anon_sym_DOT_DOT_LT] = ACTIONS(4870), - [anon_sym_null] = ACTIONS(4870), - [anon_sym_true] = ACTIONS(4870), - [anon_sym_false] = ACTIONS(4870), - [aux_sym__val_number_decimal_token1] = ACTIONS(4872), - [aux_sym__val_number_decimal_token2] = ACTIONS(4870), - [aux_sym__val_number_decimal_token3] = ACTIONS(4870), - [aux_sym__val_number_decimal_token4] = ACTIONS(4870), - [aux_sym__val_number_token1] = ACTIONS(4870), - [aux_sym__val_number_token2] = ACTIONS(4870), - [aux_sym__val_number_token3] = ACTIONS(4870), - [aux_sym__val_number_token4] = ACTIONS(4870), - [aux_sym__val_number_token5] = ACTIONS(4870), - [aux_sym__val_number_token6] = ACTIONS(4870), - [anon_sym_0b] = ACTIONS(4872), - [anon_sym_0o] = ACTIONS(4872), - [anon_sym_0x] = ACTIONS(4872), - [sym_val_date] = ACTIONS(4870), - [anon_sym_DQUOTE] = ACTIONS(4870), - [sym__str_single_quotes] = ACTIONS(4870), - [sym__str_back_ticks] = ACTIONS(4870), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4870), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4870), - [anon_sym_err_GT] = ACTIONS(4872), - [anon_sym_out_GT] = ACTIONS(4872), - [anon_sym_e_GT] = ACTIONS(4872), - [anon_sym_o_GT] = ACTIONS(4872), - [anon_sym_err_PLUSout_GT] = ACTIONS(4872), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4872), - [anon_sym_o_PLUSe_GT] = ACTIONS(4872), - [anon_sym_e_PLUSo_GT] = ACTIONS(4872), - [anon_sym_err_GT_GT] = ACTIONS(4870), - [anon_sym_out_GT_GT] = ACTIONS(4870), - [anon_sym_e_GT_GT] = ACTIONS(4870), - [anon_sym_o_GT_GT] = ACTIONS(4870), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4870), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4870), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4870), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4870), - [aux_sym_unquoted_token1] = ACTIONS(4872), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4870), - }, - [1571] = { - [sym_comment] = STATE(1571), - [sym__newline] = ACTIONS(974), - [anon_sym_SEMI] = ACTIONS(974), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_err_GT_PIPE] = ACTIONS(974), - [anon_sym_out_GT_PIPE] = ACTIONS(974), - [anon_sym_e_GT_PIPE] = ACTIONS(974), - [anon_sym_o_GT_PIPE] = ACTIONS(974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(974), - [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(974), - [anon_sym_DOLLAR] = ACTIONS(972), - [anon_sym_DASH_DASH] = ACTIONS(974), - [anon_sym_DASH2] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(974), - [anon_sym_RBRACE] = ACTIONS(974), - [anon_sym_DOT_DOT] = ACTIONS(972), - [anon_sym_QMARK2] = ACTIONS(974), - [anon_sym_DOT_DOT_EQ] = ACTIONS(974), - [anon_sym_DOT_DOT_LT] = ACTIONS(974), - [anon_sym_null] = ACTIONS(974), - [anon_sym_true] = ACTIONS(974), - [anon_sym_false] = ACTIONS(974), - [aux_sym__val_number_decimal_token1] = ACTIONS(972), - [aux_sym__val_number_decimal_token2] = ACTIONS(974), - [aux_sym__val_number_decimal_token3] = ACTIONS(974), - [aux_sym__val_number_decimal_token4] = ACTIONS(974), - [aux_sym__val_number_token1] = ACTIONS(974), - [aux_sym__val_number_token2] = ACTIONS(974), - [aux_sym__val_number_token3] = ACTIONS(974), - [aux_sym__val_number_token4] = ACTIONS(974), - [aux_sym__val_number_token5] = ACTIONS(974), - [aux_sym__val_number_token6] = ACTIONS(974), - [anon_sym_0b] = ACTIONS(972), - [anon_sym_0o] = ACTIONS(972), - [anon_sym_0x] = ACTIONS(972), - [sym_val_date] = ACTIONS(974), - [anon_sym_DQUOTE] = ACTIONS(974), - [sym__str_single_quotes] = ACTIONS(974), - [sym__str_back_ticks] = ACTIONS(974), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(974), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(974), - [anon_sym_DOT2] = ACTIONS(972), - [anon_sym_err_GT] = ACTIONS(972), - [anon_sym_out_GT] = ACTIONS(972), - [anon_sym_e_GT] = ACTIONS(972), - [anon_sym_o_GT] = ACTIONS(972), - [anon_sym_err_PLUSout_GT] = ACTIONS(972), - [anon_sym_out_PLUSerr_GT] = ACTIONS(972), - [anon_sym_o_PLUSe_GT] = ACTIONS(972), - [anon_sym_e_PLUSo_GT] = ACTIONS(972), - [anon_sym_err_GT_GT] = ACTIONS(974), - [anon_sym_out_GT_GT] = ACTIONS(974), - [anon_sym_e_GT_GT] = ACTIONS(974), - [anon_sym_o_GT_GT] = ACTIONS(974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(974), - [aux_sym_unquoted_token1] = ACTIONS(972), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(974), - }, - [1572] = { - [sym_comment] = STATE(1572), - [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_DASH2] = ACTIONS(976), - [anon_sym_LBRACE] = ACTIONS(978), - [anon_sym_RBRACE] = ACTIONS(978), - [anon_sym_DOT_DOT] = ACTIONS(976), - [anon_sym_QMARK2] = ACTIONS(978), - [anon_sym_DOT_DOT_EQ] = ACTIONS(978), - [anon_sym_DOT_DOT_LT] = ACTIONS(978), - [anon_sym_null] = ACTIONS(978), - [anon_sym_true] = ACTIONS(978), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(978), - [aux_sym__val_number_token5] = ACTIONS(978), - [aux_sym__val_number_token6] = 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_DOT2] = 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), - [aux_sym_unquoted_token1] = ACTIONS(976), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(978), - }, - [1573] = { - [sym__expr_parenthesized_immediate] = STATE(7580), - [sym_comment] = STATE(1573), - [sym__newline] = ACTIONS(4874), - [anon_sym_SEMI] = ACTIONS(4874), - [anon_sym_PIPE] = ACTIONS(4874), - [anon_sym_err_GT_PIPE] = ACTIONS(4874), - [anon_sym_out_GT_PIPE] = ACTIONS(4874), - [anon_sym_e_GT_PIPE] = ACTIONS(4874), - [anon_sym_o_GT_PIPE] = ACTIONS(4874), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4874), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4874), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4874), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4874), - [anon_sym_LBRACK] = ACTIONS(4874), - [anon_sym_LPAREN] = ACTIONS(4876), - [anon_sym_RPAREN] = ACTIONS(4874), - [anon_sym_DOLLAR] = ACTIONS(4876), - [anon_sym_DASH_DASH] = ACTIONS(4874), - [anon_sym_DASH2] = ACTIONS(4876), - [anon_sym_LBRACE] = ACTIONS(4874), - [anon_sym_RBRACE] = ACTIONS(4874), - [anon_sym_DOT_DOT] = ACTIONS(4876), - [anon_sym_LPAREN2] = ACTIONS(4181), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4874), - [anon_sym_DOT_DOT_LT] = ACTIONS(4874), - [anon_sym_null] = ACTIONS(4874), - [anon_sym_true] = ACTIONS(4874), - [anon_sym_false] = ACTIONS(4874), - [aux_sym__val_number_decimal_token1] = ACTIONS(4876), - [aux_sym__val_number_decimal_token2] = ACTIONS(4874), - [aux_sym__val_number_decimal_token3] = ACTIONS(4874), - [aux_sym__val_number_decimal_token4] = ACTIONS(4874), - [aux_sym__val_number_token1] = ACTIONS(4874), - [aux_sym__val_number_token2] = ACTIONS(4874), - [aux_sym__val_number_token3] = ACTIONS(4874), - [aux_sym__val_number_token4] = ACTIONS(4874), - [aux_sym__val_number_token5] = ACTIONS(4874), - [aux_sym__val_number_token6] = ACTIONS(4874), - [anon_sym_0b] = ACTIONS(4876), - [anon_sym_0o] = ACTIONS(4876), - [anon_sym_0x] = ACTIONS(4876), - [sym_val_date] = ACTIONS(4874), - [anon_sym_DQUOTE] = ACTIONS(4874), - [sym__str_single_quotes] = ACTIONS(4874), - [sym__str_back_ticks] = ACTIONS(4874), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4874), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4874), - [anon_sym_err_GT] = ACTIONS(4876), - [anon_sym_out_GT] = ACTIONS(4876), - [anon_sym_e_GT] = ACTIONS(4876), - [anon_sym_o_GT] = ACTIONS(4876), - [anon_sym_err_PLUSout_GT] = ACTIONS(4876), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4876), - [anon_sym_o_PLUSe_GT] = ACTIONS(4876), - [anon_sym_e_PLUSo_GT] = ACTIONS(4876), - [anon_sym_err_GT_GT] = ACTIONS(4874), - [anon_sym_out_GT_GT] = ACTIONS(4874), - [anon_sym_e_GT_GT] = ACTIONS(4874), - [anon_sym_o_GT_GT] = ACTIONS(4874), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4874), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4874), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4874), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4874), - [aux_sym_unquoted_token1] = ACTIONS(4876), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4874), - }, - [1574] = { - [sym__expr_parenthesized_immediate] = STATE(7580), - [sym_comment] = STATE(1574), - [sym__newline] = ACTIONS(4878), - [anon_sym_SEMI] = ACTIONS(4878), - [anon_sym_PIPE] = ACTIONS(4878), - [anon_sym_err_GT_PIPE] = ACTIONS(4878), - [anon_sym_out_GT_PIPE] = ACTIONS(4878), - [anon_sym_e_GT_PIPE] = ACTIONS(4878), - [anon_sym_o_GT_PIPE] = ACTIONS(4878), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4878), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4878), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4878), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4878), - [anon_sym_LBRACK] = ACTIONS(4878), - [anon_sym_LPAREN] = ACTIONS(4880), - [anon_sym_RPAREN] = ACTIONS(4878), - [anon_sym_DOLLAR] = ACTIONS(4880), - [anon_sym_DASH_DASH] = ACTIONS(4878), - [anon_sym_DASH2] = ACTIONS(4880), - [anon_sym_LBRACE] = ACTIONS(4878), - [anon_sym_RBRACE] = ACTIONS(4878), - [anon_sym_DOT_DOT] = ACTIONS(4880), - [anon_sym_LPAREN2] = ACTIONS(4181), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4878), - [anon_sym_DOT_DOT_LT] = ACTIONS(4878), - [anon_sym_null] = ACTIONS(4878), - [anon_sym_true] = ACTIONS(4878), - [anon_sym_false] = ACTIONS(4878), - [aux_sym__val_number_decimal_token1] = ACTIONS(4880), - [aux_sym__val_number_decimal_token2] = ACTIONS(4878), - [aux_sym__val_number_decimal_token3] = ACTIONS(4878), - [aux_sym__val_number_decimal_token4] = ACTIONS(4878), - [aux_sym__val_number_token1] = ACTIONS(4878), - [aux_sym__val_number_token2] = ACTIONS(4878), - [aux_sym__val_number_token3] = ACTIONS(4878), - [aux_sym__val_number_token4] = ACTIONS(4878), - [aux_sym__val_number_token5] = ACTIONS(4878), - [aux_sym__val_number_token6] = ACTIONS(4878), - [anon_sym_0b] = ACTIONS(4880), - [anon_sym_0o] = ACTIONS(4880), - [anon_sym_0x] = ACTIONS(4880), - [sym_val_date] = ACTIONS(4878), - [anon_sym_DQUOTE] = ACTIONS(4878), - [sym__str_single_quotes] = ACTIONS(4878), - [sym__str_back_ticks] = ACTIONS(4878), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4878), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4878), - [anon_sym_err_GT] = ACTIONS(4880), - [anon_sym_out_GT] = ACTIONS(4880), - [anon_sym_e_GT] = ACTIONS(4880), - [anon_sym_o_GT] = ACTIONS(4880), - [anon_sym_err_PLUSout_GT] = ACTIONS(4880), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4880), - [anon_sym_o_PLUSe_GT] = ACTIONS(4880), - [anon_sym_e_PLUSo_GT] = ACTIONS(4880), - [anon_sym_err_GT_GT] = ACTIONS(4878), - [anon_sym_out_GT_GT] = ACTIONS(4878), - [anon_sym_e_GT_GT] = ACTIONS(4878), - [anon_sym_o_GT_GT] = ACTIONS(4878), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4878), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4878), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4878), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4878), - [aux_sym_unquoted_token1] = ACTIONS(4880), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4878), - }, - [1575] = { - [sym_comment] = STATE(1575), - [sym__newline] = ACTIONS(1012), - [anon_sym_SEMI] = ACTIONS(1012), - [anon_sym_PIPE] = ACTIONS(1012), - [anon_sym_err_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_GT_PIPE] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1012), - [anon_sym_LBRACK] = ACTIONS(1012), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_RPAREN] = ACTIONS(1012), - [anon_sym_DOLLAR] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_RBRACE] = ACTIONS(1012), - [anon_sym_DOT_DOT] = ACTIONS(1016), - [anon_sym_LPAREN2] = ACTIONS(2206), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1016), - [anon_sym_DOT_DOT_LT] = ACTIONS(1016), - [anon_sym_null] = ACTIONS(1016), - [anon_sym_true] = ACTIONS(1016), - [anon_sym_false] = ACTIONS(1016), - [aux_sym__val_number_decimal_token1] = ACTIONS(1016), - [aux_sym__val_number_decimal_token2] = ACTIONS(1016), - [aux_sym__val_number_decimal_token3] = ACTIONS(1016), - [aux_sym__val_number_decimal_token4] = ACTIONS(1016), - [aux_sym__val_number_token1] = ACTIONS(1016), - [aux_sym__val_number_token2] = ACTIONS(1016), - [aux_sym__val_number_token3] = ACTIONS(1016), - [aux_sym__val_number_token4] = ACTIONS(1016), - [aux_sym__val_number_token5] = ACTIONS(1016), - [aux_sym__val_number_token6] = ACTIONS(1016), - [anon_sym_0b] = ACTIONS(1016), - [anon_sym_0o] = ACTIONS(1016), - [anon_sym_0x] = ACTIONS(1016), - [sym_val_date] = ACTIONS(1016), - [anon_sym_DQUOTE] = ACTIONS(1012), - [sym__str_single_quotes] = ACTIONS(1012), - [sym__str_back_ticks] = ACTIONS(1012), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1012), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1012), - [anon_sym_err_GT] = ACTIONS(1016), - [anon_sym_out_GT] = ACTIONS(1016), - [anon_sym_e_GT] = ACTIONS(1016), - [anon_sym_o_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT] = ACTIONS(1016), - [anon_sym_err_GT_GT] = ACTIONS(1016), - [anon_sym_out_GT_GT] = ACTIONS(1016), - [anon_sym_e_GT_GT] = ACTIONS(1016), - [anon_sym_o_GT_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), - [aux_sym_unquoted_token1] = ACTIONS(1016), - [aux_sym_unquoted_token4] = ACTIONS(2208), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1012), - }, - [1576] = { - [sym__expr_parenthesized_immediate] = STATE(7580), - [sym_comment] = STATE(1576), - [sym__newline] = ACTIONS(4882), - [anon_sym_SEMI] = ACTIONS(4882), - [anon_sym_PIPE] = ACTIONS(4882), - [anon_sym_err_GT_PIPE] = ACTIONS(4882), - [anon_sym_out_GT_PIPE] = ACTIONS(4882), - [anon_sym_e_GT_PIPE] = ACTIONS(4882), - [anon_sym_o_GT_PIPE] = ACTIONS(4882), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4882), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4882), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4882), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4882), - [anon_sym_LBRACK] = ACTIONS(4882), - [anon_sym_LPAREN] = ACTIONS(4884), - [anon_sym_RPAREN] = ACTIONS(4882), - [anon_sym_DOLLAR] = ACTIONS(4884), - [anon_sym_DASH_DASH] = ACTIONS(4882), - [anon_sym_DASH2] = ACTIONS(4884), - [anon_sym_LBRACE] = ACTIONS(4882), - [anon_sym_RBRACE] = ACTIONS(4882), - [anon_sym_DOT_DOT] = ACTIONS(4884), - [anon_sym_LPAREN2] = ACTIONS(4181), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4882), - [anon_sym_DOT_DOT_LT] = ACTIONS(4882), - [anon_sym_null] = ACTIONS(4882), - [anon_sym_true] = ACTIONS(4882), - [anon_sym_false] = ACTIONS(4882), - [aux_sym__val_number_decimal_token1] = ACTIONS(4884), - [aux_sym__val_number_decimal_token2] = ACTIONS(4882), - [aux_sym__val_number_decimal_token3] = ACTIONS(4882), - [aux_sym__val_number_decimal_token4] = ACTIONS(4882), - [aux_sym__val_number_token1] = ACTIONS(4882), - [aux_sym__val_number_token2] = ACTIONS(4882), - [aux_sym__val_number_token3] = ACTIONS(4882), - [aux_sym__val_number_token4] = ACTIONS(4882), - [aux_sym__val_number_token5] = ACTIONS(4882), - [aux_sym__val_number_token6] = ACTIONS(4882), - [anon_sym_0b] = ACTIONS(4884), - [anon_sym_0o] = ACTIONS(4884), - [anon_sym_0x] = ACTIONS(4884), - [sym_val_date] = ACTIONS(4882), - [anon_sym_DQUOTE] = ACTIONS(4882), - [sym__str_single_quotes] = ACTIONS(4882), - [sym__str_back_ticks] = ACTIONS(4882), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4882), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4882), - [anon_sym_err_GT] = ACTIONS(4884), - [anon_sym_out_GT] = ACTIONS(4884), - [anon_sym_e_GT] = ACTIONS(4884), - [anon_sym_o_GT] = ACTIONS(4884), - [anon_sym_err_PLUSout_GT] = ACTIONS(4884), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4884), - [anon_sym_o_PLUSe_GT] = ACTIONS(4884), - [anon_sym_e_PLUSo_GT] = ACTIONS(4884), - [anon_sym_err_GT_GT] = ACTIONS(4882), - [anon_sym_out_GT_GT] = ACTIONS(4882), - [anon_sym_e_GT_GT] = ACTIONS(4882), - [anon_sym_o_GT_GT] = ACTIONS(4882), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4882), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4882), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4882), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4882), - [aux_sym_unquoted_token1] = ACTIONS(4884), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4882), - }, - [1577] = { - [sym_comment] = STATE(1577), - [sym__newline] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_PIPE] = ACTIONS(986), - [anon_sym_err_GT_PIPE] = ACTIONS(986), - [anon_sym_out_GT_PIPE] = ACTIONS(986), - [anon_sym_e_GT_PIPE] = ACTIONS(986), - [anon_sym_o_GT_PIPE] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(986), - [anon_sym_RPAREN] = ACTIONS(986), - [anon_sym_DOLLAR] = ACTIONS(984), - [anon_sym_DASH_DASH] = ACTIONS(986), - [anon_sym_DASH2] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(986), - [anon_sym_DOT_DOT] = ACTIONS(984), - [anon_sym_QMARK2] = ACTIONS(986), - [anon_sym_DOT_DOT_EQ] = ACTIONS(986), - [anon_sym_DOT_DOT_LT] = ACTIONS(986), - [anon_sym_null] = ACTIONS(986), - [anon_sym_true] = ACTIONS(986), - [anon_sym_false] = ACTIONS(986), - [aux_sym__val_number_decimal_token1] = ACTIONS(984), - [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), - [aux_sym__val_number_token4] = ACTIONS(986), - [aux_sym__val_number_token5] = ACTIONS(986), - [aux_sym__val_number_token6] = ACTIONS(986), - [anon_sym_0b] = ACTIONS(984), - [anon_sym_0o] = ACTIONS(984), - [anon_sym_0x] = ACTIONS(984), - [sym_val_date] = ACTIONS(986), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym__str_single_quotes] = ACTIONS(986), - [sym__str_back_ticks] = ACTIONS(986), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(986), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(986), - [anon_sym_DOT2] = ACTIONS(984), - [anon_sym_err_GT] = ACTIONS(984), - [anon_sym_out_GT] = ACTIONS(984), - [anon_sym_e_GT] = ACTIONS(984), - [anon_sym_o_GT] = ACTIONS(984), - [anon_sym_err_PLUSout_GT] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT] = ACTIONS(984), - [anon_sym_o_PLUSe_GT] = ACTIONS(984), - [anon_sym_e_PLUSo_GT] = ACTIONS(984), - [anon_sym_err_GT_GT] = ACTIONS(986), - [anon_sym_out_GT_GT] = ACTIONS(986), - [anon_sym_e_GT_GT] = ACTIONS(986), - [anon_sym_o_GT_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), - [aux_sym_unquoted_token1] = ACTIONS(984), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(986), - }, - [1578] = { - [sym__expr_parenthesized_immediate] = STATE(7580), - [sym_comment] = STATE(1578), - [sym__newline] = ACTIONS(4886), - [anon_sym_SEMI] = ACTIONS(4886), - [anon_sym_PIPE] = ACTIONS(4886), - [anon_sym_err_GT_PIPE] = ACTIONS(4886), - [anon_sym_out_GT_PIPE] = ACTIONS(4886), - [anon_sym_e_GT_PIPE] = ACTIONS(4886), - [anon_sym_o_GT_PIPE] = ACTIONS(4886), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4886), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4886), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4886), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4886), - [anon_sym_LBRACK] = ACTIONS(4886), - [anon_sym_LPAREN] = ACTIONS(4888), - [anon_sym_RPAREN] = ACTIONS(4886), - [anon_sym_DOLLAR] = ACTIONS(4888), - [anon_sym_DASH_DASH] = ACTIONS(4886), - [anon_sym_DASH2] = ACTIONS(4888), - [anon_sym_LBRACE] = ACTIONS(4886), - [anon_sym_RBRACE] = ACTIONS(4886), - [anon_sym_DOT_DOT] = ACTIONS(4888), - [anon_sym_LPAREN2] = ACTIONS(4181), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4886), - [anon_sym_DOT_DOT_LT] = ACTIONS(4886), - [anon_sym_null] = ACTIONS(4886), - [anon_sym_true] = ACTIONS(4886), - [anon_sym_false] = ACTIONS(4886), - [aux_sym__val_number_decimal_token1] = ACTIONS(4888), - [aux_sym__val_number_decimal_token2] = ACTIONS(4886), - [aux_sym__val_number_decimal_token3] = ACTIONS(4886), - [aux_sym__val_number_decimal_token4] = ACTIONS(4886), - [aux_sym__val_number_token1] = ACTIONS(4886), - [aux_sym__val_number_token2] = ACTIONS(4886), - [aux_sym__val_number_token3] = ACTIONS(4886), - [aux_sym__val_number_token4] = ACTIONS(4886), - [aux_sym__val_number_token5] = ACTIONS(4886), - [aux_sym__val_number_token6] = ACTIONS(4886), - [anon_sym_0b] = ACTIONS(4888), - [anon_sym_0o] = ACTIONS(4888), - [anon_sym_0x] = ACTIONS(4888), - [sym_val_date] = ACTIONS(4886), - [anon_sym_DQUOTE] = ACTIONS(4886), - [sym__str_single_quotes] = ACTIONS(4886), - [sym__str_back_ticks] = ACTIONS(4886), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4886), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4886), - [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(4886), - [anon_sym_out_GT_GT] = ACTIONS(4886), - [anon_sym_e_GT_GT] = ACTIONS(4886), - [anon_sym_o_GT_GT] = ACTIONS(4886), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4886), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4886), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4886), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4886), - [aux_sym_unquoted_token1] = ACTIONS(4888), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4886), - }, - [1579] = { - [sym_comment] = STATE(1579), - [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_DASH2] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(982), - [anon_sym_RBRACE] = ACTIONS(982), - [anon_sym_DOT_DOT] = ACTIONS(980), - [anon_sym_QMARK2] = ACTIONS(982), - [anon_sym_DOT_DOT_EQ] = ACTIONS(982), - [anon_sym_DOT_DOT_LT] = ACTIONS(982), - [anon_sym_null] = ACTIONS(982), - [anon_sym_true] = ACTIONS(982), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(982), - [aux_sym__val_number_token5] = ACTIONS(982), - [aux_sym__val_number_token6] = 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_DOT2] = 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), - [aux_sym_unquoted_token1] = ACTIONS(980), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(982), - }, - [1580] = { - [sym_comment] = STATE(1580), - [ts_builtin_sym_end] = ACTIONS(1721), - [sym__newline] = ACTIONS(1721), - [anon_sym_SEMI] = ACTIONS(1721), - [anon_sym_PIPE] = ACTIONS(1721), - [anon_sym_err_GT_PIPE] = ACTIONS(1721), - [anon_sym_out_GT_PIPE] = ACTIONS(1721), - [anon_sym_e_GT_PIPE] = ACTIONS(1721), - [anon_sym_o_GT_PIPE] = ACTIONS(1721), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1721), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1721), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1721), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1721), - [anon_sym_LBRACK] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1719), - [anon_sym_DASH_DASH] = ACTIONS(1721), - [anon_sym_DASH2] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1719), - [anon_sym_DOT_DOT2] = ACTIONS(1719), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1719), - [anon_sym_DOT_DOT_LT] = ACTIONS(1719), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1721), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1721), - [anon_sym_null] = ACTIONS(1721), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [aux_sym__val_number_decimal_token1] = ACTIONS(1719), - [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), - [aux_sym__val_number_token4] = ACTIONS(1721), - [aux_sym__val_number_token5] = ACTIONS(1721), - [aux_sym__val_number_token6] = ACTIONS(1721), - [anon_sym_0b] = ACTIONS(1719), - [anon_sym_0o] = ACTIONS(1719), - [anon_sym_0x] = ACTIONS(1719), - [sym_val_date] = ACTIONS(1721), - [anon_sym_DQUOTE] = ACTIONS(1721), - [sym__str_single_quotes] = ACTIONS(1721), - [sym__str_back_ticks] = ACTIONS(1721), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1721), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1721), - [anon_sym_err_GT] = ACTIONS(1719), - [anon_sym_out_GT] = ACTIONS(1719), - [anon_sym_e_GT] = ACTIONS(1719), - [anon_sym_o_GT] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT] = ACTIONS(1719), - [anon_sym_err_GT_GT] = ACTIONS(1721), - [anon_sym_out_GT_GT] = ACTIONS(1721), - [anon_sym_e_GT_GT] = ACTIONS(1721), - [anon_sym_o_GT_GT] = ACTIONS(1721), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1721), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1721), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1721), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1721), - [aux_sym_unquoted_token1] = ACTIONS(1719), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1721), - }, - [1581] = { - [sym_comment] = STATE(1581), - [ts_builtin_sym_end] = ACTIONS(1682), - [sym__newline] = ACTIONS(1682), - [anon_sym_SEMI] = ACTIONS(1682), - [anon_sym_PIPE] = ACTIONS(1682), - [anon_sym_err_GT_PIPE] = ACTIONS(1682), - [anon_sym_out_GT_PIPE] = ACTIONS(1682), - [anon_sym_e_GT_PIPE] = ACTIONS(1682), - [anon_sym_o_GT_PIPE] = ACTIONS(1682), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1682), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1682), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1682), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1682), - [anon_sym_GT2] = ACTIONS(1680), - [anon_sym_DASH2] = ACTIONS(1682), - [anon_sym_in2] = ACTIONS(1682), - [anon_sym_STAR2] = ACTIONS(1680), - [anon_sym_and2] = ACTIONS(1682), - [anon_sym_xor2] = ACTIONS(1682), - [anon_sym_or2] = ACTIONS(1682), - [anon_sym_not_DASHin2] = ACTIONS(1682), - [anon_sym_starts_DASHwith2] = ACTIONS(1682), - [anon_sym_ends_DASHwith2] = ACTIONS(1682), - [anon_sym_EQ_EQ2] = ACTIONS(1682), - [anon_sym_BANG_EQ2] = ACTIONS(1682), - [anon_sym_LT2] = ACTIONS(1680), - [anon_sym_LT_EQ2] = ACTIONS(1682), - [anon_sym_GT_EQ2] = ACTIONS(1682), - [anon_sym_EQ_TILDE2] = ACTIONS(1682), - [anon_sym_BANG_TILDE2] = ACTIONS(1682), - [anon_sym_LPAREN2] = ACTIONS(1682), - [anon_sym_STAR_STAR2] = ACTIONS(1682), - [anon_sym_PLUS_PLUS2] = ACTIONS(1682), - [anon_sym_SLASH2] = ACTIONS(1680), - [anon_sym_mod2] = ACTIONS(1682), - [anon_sym_SLASH_SLASH2] = ACTIONS(1682), - [anon_sym_PLUS2] = ACTIONS(1680), - [anon_sym_bit_DASHshl2] = ACTIONS(1682), - [anon_sym_bit_DASHshr2] = ACTIONS(1682), - [anon_sym_bit_DASHand2] = ACTIONS(1682), - [anon_sym_bit_DASHxor2] = ACTIONS(1682), - [anon_sym_bit_DASHor2] = ACTIONS(1682), - [anon_sym_DOT_DOT2] = ACTIONS(1680), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1682), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1682), - [aux_sym__immediate_decimal_token2] = ACTIONS(4890), - [sym_filesize_unit] = ACTIONS(1680), - [sym_duration_unit] = ACTIONS(1682), - [anon_sym_err_GT] = ACTIONS(1680), - [anon_sym_out_GT] = ACTIONS(1680), - [anon_sym_e_GT] = ACTIONS(1680), - [anon_sym_o_GT] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT] = ACTIONS(1680), - [anon_sym_err_GT_GT] = ACTIONS(1682), - [anon_sym_out_GT_GT] = ACTIONS(1682), - [anon_sym_e_GT_GT] = ACTIONS(1682), - [anon_sym_o_GT_GT] = ACTIONS(1682), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1682), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1682), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1682), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1682), - [aux_sym_unquoted_token2] = ACTIONS(1680), - [anon_sym_POUND] = ACTIONS(251), - }, - [1582] = { - [sym_comment] = STATE(1582), - [ts_builtin_sym_end] = ACTIONS(1002), - [sym__newline] = ACTIONS(1002), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_err_GT_PIPE] = ACTIONS(1002), - [anon_sym_out_GT_PIPE] = ACTIONS(1002), - [anon_sym_e_GT_PIPE] = ACTIONS(1002), - [anon_sym_o_GT_PIPE] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1002), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LPAREN] = ACTIONS(1002), - [anon_sym_DOLLAR] = ACTIONS(1000), - [anon_sym_DASH_DASH] = ACTIONS(1002), - [anon_sym_DASH2] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_DOT_DOT] = ACTIONS(1000), - [anon_sym_DOT_DOT2] = ACTIONS(1000), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1000), - [anon_sym_DOT_DOT_LT] = ACTIONS(1000), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1002), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1002), - [anon_sym_null] = ACTIONS(1002), - [anon_sym_true] = ACTIONS(1002), - [anon_sym_false] = ACTIONS(1002), - [aux_sym__val_number_decimal_token1] = ACTIONS(1000), - [aux_sym__val_number_decimal_token2] = ACTIONS(1002), - [aux_sym__val_number_decimal_token3] = ACTIONS(1002), - [aux_sym__val_number_decimal_token4] = ACTIONS(1002), - [aux_sym__val_number_token1] = ACTIONS(1002), - [aux_sym__val_number_token2] = ACTIONS(1002), - [aux_sym__val_number_token3] = ACTIONS(1002), - [aux_sym__val_number_token4] = ACTIONS(1002), - [aux_sym__val_number_token5] = ACTIONS(1002), - [aux_sym__val_number_token6] = ACTIONS(1002), - [anon_sym_0b] = ACTIONS(1000), - [anon_sym_0o] = ACTIONS(1000), - [anon_sym_0x] = ACTIONS(1000), - [sym_val_date] = ACTIONS(1002), - [anon_sym_DQUOTE] = ACTIONS(1002), - [sym__str_single_quotes] = ACTIONS(1002), - [sym__str_back_ticks] = ACTIONS(1002), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), - [anon_sym_err_GT] = ACTIONS(1000), - [anon_sym_out_GT] = ACTIONS(1000), - [anon_sym_e_GT] = ACTIONS(1000), - [anon_sym_o_GT] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT] = ACTIONS(1000), - [anon_sym_err_GT_GT] = ACTIONS(1002), - [anon_sym_out_GT_GT] = ACTIONS(1002), - [anon_sym_e_GT_GT] = ACTIONS(1002), - [anon_sym_o_GT_GT] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1002), - [aux_sym_unquoted_token1] = ACTIONS(1000), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1002), - }, - [1583] = { - [sym_comment] = STATE(1583), - [sym__newline] = ACTIONS(1757), - [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(1755), - [anon_sym_RPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT] = ACTIONS(1757), - [anon_sym_null] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = 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_err_GT] = ACTIONS(1755), - [anon_sym_out_GT] = ACTIONS(1755), - [anon_sym_e_GT] = ACTIONS(1755), - [anon_sym_o_GT] = ACTIONS(1755), - [anon_sym_err_PLUSout_GT] = ACTIONS(1755), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), - [anon_sym_o_PLUSe_GT] = ACTIONS(1755), - [anon_sym_e_PLUSo_GT] = ACTIONS(1755), - [anon_sym_err_GT_GT] = ACTIONS(1757), - [anon_sym_out_GT_GT] = ACTIONS(1757), - [anon_sym_e_GT_GT] = ACTIONS(1757), - [anon_sym_o_GT_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), - [aux_sym_unquoted_token1] = ACTIONS(1755), - [aux_sym_unquoted_token2] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1757), - }, - [1584] = { - [sym_comment] = STATE(1584), - [sym__newline] = ACTIONS(4892), - [anon_sym_SEMI] = ACTIONS(4892), - [anon_sym_PIPE] = ACTIONS(4892), - [anon_sym_err_GT_PIPE] = ACTIONS(4892), - [anon_sym_out_GT_PIPE] = ACTIONS(4892), - [anon_sym_e_GT_PIPE] = ACTIONS(4892), - [anon_sym_o_GT_PIPE] = ACTIONS(4892), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4892), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4892), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4892), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4892), - [anon_sym_LBRACK] = ACTIONS(4892), - [anon_sym_LPAREN] = ACTIONS(4892), - [anon_sym_RPAREN] = ACTIONS(4892), - [anon_sym_DOLLAR] = ACTIONS(4894), - [anon_sym_DASH_DASH] = ACTIONS(4892), - [anon_sym_DASH2] = ACTIONS(4894), - [anon_sym_LBRACE] = ACTIONS(4892), - [anon_sym_DOT_DOT] = ACTIONS(4894), - [anon_sym_DOT_DOT2] = ACTIONS(4786), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4894), - [anon_sym_DOT_DOT_LT] = ACTIONS(4894), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4788), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4788), - [anon_sym_null] = ACTIONS(4892), - [anon_sym_true] = ACTIONS(4892), - [anon_sym_false] = ACTIONS(4892), - [aux_sym__val_number_decimal_token1] = ACTIONS(4894), - [aux_sym__val_number_decimal_token2] = ACTIONS(4892), - [aux_sym__val_number_decimal_token3] = ACTIONS(4892), - [aux_sym__val_number_decimal_token4] = ACTIONS(4892), - [aux_sym__val_number_token1] = ACTIONS(4892), - [aux_sym__val_number_token2] = ACTIONS(4892), - [aux_sym__val_number_token3] = ACTIONS(4892), - [aux_sym__val_number_token4] = ACTIONS(4892), - [aux_sym__val_number_token5] = ACTIONS(4892), - [aux_sym__val_number_token6] = ACTIONS(4892), - [anon_sym_0b] = ACTIONS(4894), - [anon_sym_0o] = ACTIONS(4894), - [anon_sym_0x] = ACTIONS(4894), - [sym_val_date] = ACTIONS(4892), - [anon_sym_DQUOTE] = ACTIONS(4892), - [sym__str_single_quotes] = ACTIONS(4892), - [sym__str_back_ticks] = ACTIONS(4892), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4892), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4892), - [anon_sym_err_GT] = ACTIONS(4894), - [anon_sym_out_GT] = ACTIONS(4894), - [anon_sym_e_GT] = ACTIONS(4894), - [anon_sym_o_GT] = ACTIONS(4894), - [anon_sym_err_PLUSout_GT] = ACTIONS(4894), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4894), - [anon_sym_o_PLUSe_GT] = ACTIONS(4894), - [anon_sym_e_PLUSo_GT] = ACTIONS(4894), - [anon_sym_err_GT_GT] = ACTIONS(4892), - [anon_sym_out_GT_GT] = ACTIONS(4892), - [anon_sym_e_GT_GT] = ACTIONS(4892), - [anon_sym_o_GT_GT] = ACTIONS(4892), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4892), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4892), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4892), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4892), - [aux_sym_unquoted_token1] = ACTIONS(4894), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4892), - }, - [1585] = { - [sym_comment] = STATE(1585), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1713), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_RPAREN] = ACTIONS(1713), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_DOT_DOT] = ACTIONS(1711), - [anon_sym_LPAREN2] = ACTIONS(1713), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT] = ACTIONS(1713), - [anon_sym_null] = ACTIONS(1713), - [anon_sym_true] = ACTIONS(1713), - [anon_sym_false] = ACTIONS(1713), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1713), - [aux_sym__val_number_decimal_token3] = ACTIONS(1713), - [aux_sym__val_number_decimal_token4] = ACTIONS(1713), - [aux_sym__val_number_token1] = ACTIONS(1713), - [aux_sym__val_number_token2] = ACTIONS(1713), - [aux_sym__val_number_token3] = ACTIONS(1713), - [aux_sym__val_number_token4] = ACTIONS(1713), - [aux_sym__val_number_token5] = ACTIONS(1713), - [aux_sym__val_number_token6] = ACTIONS(1713), - [anon_sym_0b] = ACTIONS(1711), - [anon_sym_0o] = ACTIONS(1711), - [anon_sym_0x] = ACTIONS(1711), - [sym_val_date] = ACTIONS(1713), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym__str_single_quotes] = ACTIONS(1713), - [sym__str_back_ticks] = ACTIONS(1713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1713), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [aux_sym_unquoted_token1] = ACTIONS(1711), - [aux_sym_unquoted_token2] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1713), - }, - [1586] = { - [sym_comment] = STATE(1586), - [sym__newline] = ACTIONS(2132), - [anon_sym_SEMI] = ACTIONS(2132), - [anon_sym_PIPE] = ACTIONS(2132), - [anon_sym_err_GT_PIPE] = ACTIONS(2132), - [anon_sym_out_GT_PIPE] = ACTIONS(2132), - [anon_sym_e_GT_PIPE] = ACTIONS(2132), - [anon_sym_o_GT_PIPE] = ACTIONS(2132), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2132), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2132), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2132), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2132), - [anon_sym_LBRACK] = ACTIONS(2132), - [anon_sym_LPAREN] = ACTIONS(2128), - [anon_sym_RPAREN] = ACTIONS(2132), - [anon_sym_DOLLAR] = ACTIONS(2128), - [anon_sym_DASH_DASH] = ACTIONS(2128), - [anon_sym_DASH2] = ACTIONS(2128), - [anon_sym_LBRACE] = ACTIONS(2132), - [anon_sym_RBRACE] = ACTIONS(2132), - [anon_sym_DOT_DOT] = ACTIONS(2128), - [anon_sym_LPAREN2] = ACTIONS(2130), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2128), - [anon_sym_DOT_DOT_LT] = ACTIONS(2128), - [anon_sym_null] = ACTIONS(2128), - [anon_sym_true] = ACTIONS(2128), - [anon_sym_false] = ACTIONS(2128), - [aux_sym__val_number_decimal_token1] = ACTIONS(2128), - [aux_sym__val_number_decimal_token2] = ACTIONS(2128), - [aux_sym__val_number_decimal_token3] = ACTIONS(2128), - [aux_sym__val_number_decimal_token4] = ACTIONS(2128), - [aux_sym__val_number_token1] = ACTIONS(2128), - [aux_sym__val_number_token2] = ACTIONS(2128), - [aux_sym__val_number_token3] = ACTIONS(2128), - [aux_sym__val_number_token4] = ACTIONS(2128), - [aux_sym__val_number_token5] = ACTIONS(2128), - [aux_sym__val_number_token6] = ACTIONS(2128), - [anon_sym_0b] = ACTIONS(2128), - [anon_sym_0o] = ACTIONS(2128), - [anon_sym_0x] = ACTIONS(2128), - [sym_val_date] = ACTIONS(2128), - [anon_sym_DQUOTE] = ACTIONS(2132), - [sym__str_single_quotes] = ACTIONS(2132), - [sym__str_back_ticks] = ACTIONS(2132), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2132), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2132), - [anon_sym_err_GT] = ACTIONS(2128), - [anon_sym_out_GT] = ACTIONS(2128), - [anon_sym_e_GT] = ACTIONS(2128), - [anon_sym_o_GT] = ACTIONS(2128), - [anon_sym_err_PLUSout_GT] = ACTIONS(2128), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2128), - [anon_sym_o_PLUSe_GT] = ACTIONS(2128), - [anon_sym_e_PLUSo_GT] = ACTIONS(2128), - [anon_sym_err_GT_GT] = ACTIONS(2128), - [anon_sym_out_GT_GT] = ACTIONS(2128), - [anon_sym_e_GT_GT] = ACTIONS(2128), - [anon_sym_o_GT_GT] = ACTIONS(2128), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2128), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2128), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2128), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2128), - [aux_sym_unquoted_token1] = ACTIONS(2128), - [aux_sym_unquoted_token4] = ACTIONS(2134), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2132), - }, - [1587] = { - [sym__expr_parenthesized_immediate] = STATE(7393), - [sym_comment] = STATE(1587), - [ts_builtin_sym_end] = 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_GT2] = ACTIONS(1638), - [anon_sym_DASH2] = ACTIONS(1650), - [anon_sym_in2] = ACTIONS(1650), - [anon_sym_STAR2] = ACTIONS(1638), - [anon_sym_and2] = ACTIONS(1650), - [anon_sym_xor2] = ACTIONS(1650), - [anon_sym_or2] = ACTIONS(1650), - [anon_sym_not_DASHin2] = ACTIONS(1650), - [anon_sym_starts_DASHwith2] = ACTIONS(1650), - [anon_sym_ends_DASHwith2] = ACTIONS(1650), - [anon_sym_EQ_EQ2] = ACTIONS(1650), - [anon_sym_BANG_EQ2] = ACTIONS(1650), - [anon_sym_LT2] = ACTIONS(1638), - [anon_sym_LT_EQ2] = ACTIONS(1650), - [anon_sym_GT_EQ2] = ACTIONS(1650), - [anon_sym_EQ_TILDE2] = ACTIONS(1650), - [anon_sym_BANG_TILDE2] = ACTIONS(1650), - [anon_sym_LPAREN2] = ACTIONS(4181), - [anon_sym_STAR_STAR2] = ACTIONS(1650), - [anon_sym_PLUS_PLUS2] = ACTIONS(1650), - [anon_sym_SLASH2] = ACTIONS(1638), - [anon_sym_mod2] = ACTIONS(1650), - [anon_sym_SLASH_SLASH2] = ACTIONS(1650), - [anon_sym_PLUS2] = ACTIONS(1638), - [anon_sym_bit_DASHshl2] = ACTIONS(1650), - [anon_sym_bit_DASHshr2] = ACTIONS(1650), - [anon_sym_bit_DASHand2] = ACTIONS(1650), - [anon_sym_bit_DASHxor2] = ACTIONS(1650), - [anon_sym_bit_DASHor2] = ACTIONS(1650), - [anon_sym_DOT_DOT2] = ACTIONS(4896), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4898), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4898), - [sym_filesize_unit] = ACTIONS(4900), - [sym_duration_unit] = ACTIONS(4902), - [anon_sym_err_GT] = ACTIONS(1638), - [anon_sym_out_GT] = ACTIONS(1638), - [anon_sym_e_GT] = ACTIONS(1638), - [anon_sym_o_GT] = ACTIONS(1638), - [anon_sym_err_PLUSout_GT] = ACTIONS(1638), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1638), - [anon_sym_o_PLUSe_GT] = ACTIONS(1638), - [anon_sym_e_PLUSo_GT] = ACTIONS(1638), - [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_token2] = ACTIONS(4904), - [anon_sym_POUND] = ACTIONS(251), - }, - [1588] = { - [sym_comment] = STATE(1588), - [sym__newline] = ACTIONS(2140), - [anon_sym_SEMI] = ACTIONS(2140), - [anon_sym_PIPE] = ACTIONS(2140), - [anon_sym_err_GT_PIPE] = ACTIONS(2140), - [anon_sym_out_GT_PIPE] = ACTIONS(2140), - [anon_sym_e_GT_PIPE] = ACTIONS(2140), - [anon_sym_o_GT_PIPE] = ACTIONS(2140), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2140), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2140), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2140), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2140), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2136), - [anon_sym_RPAREN] = ACTIONS(2140), - [anon_sym_DOLLAR] = ACTIONS(2136), - [anon_sym_DASH_DASH] = ACTIONS(2136), - [anon_sym_DASH2] = ACTIONS(2136), - [anon_sym_LBRACE] = ACTIONS(2140), - [anon_sym_RBRACE] = ACTIONS(2140), - [anon_sym_DOT_DOT] = ACTIONS(2136), - [anon_sym_LPAREN2] = ACTIONS(2138), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2136), - [anon_sym_DOT_DOT_LT] = ACTIONS(2136), - [anon_sym_null] = ACTIONS(2136), - [anon_sym_true] = ACTIONS(2136), - [anon_sym_false] = ACTIONS(2136), - [aux_sym__val_number_decimal_token1] = ACTIONS(2136), - [aux_sym__val_number_decimal_token2] = ACTIONS(2136), - [aux_sym__val_number_decimal_token3] = ACTIONS(2136), - [aux_sym__val_number_decimal_token4] = ACTIONS(2136), - [aux_sym__val_number_token1] = ACTIONS(2136), - [aux_sym__val_number_token2] = ACTIONS(2136), - [aux_sym__val_number_token3] = ACTIONS(2136), - [aux_sym__val_number_token4] = ACTIONS(2136), - [aux_sym__val_number_token5] = ACTIONS(2136), - [aux_sym__val_number_token6] = ACTIONS(2136), - [anon_sym_0b] = ACTIONS(2136), - [anon_sym_0o] = ACTIONS(2136), - [anon_sym_0x] = ACTIONS(2136), - [sym_val_date] = ACTIONS(2136), - [anon_sym_DQUOTE] = ACTIONS(2140), - [sym__str_single_quotes] = ACTIONS(2140), - [sym__str_back_ticks] = ACTIONS(2140), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2140), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2140), - [anon_sym_err_GT] = ACTIONS(2136), - [anon_sym_out_GT] = ACTIONS(2136), - [anon_sym_e_GT] = ACTIONS(2136), - [anon_sym_o_GT] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT] = ACTIONS(2136), - [anon_sym_err_GT_GT] = ACTIONS(2136), - [anon_sym_out_GT_GT] = ACTIONS(2136), - [anon_sym_e_GT_GT] = ACTIONS(2136), - [anon_sym_o_GT_GT] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2136), - [aux_sym_unquoted_token1] = ACTIONS(2136), - [aux_sym_unquoted_token4] = ACTIONS(2142), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2140), - }, - [1589] = { - [sym_comment] = STATE(1589), - [sym__newline] = ACTIONS(2017), - [anon_sym_SEMI] = ACTIONS(2017), - [anon_sym_PIPE] = ACTIONS(2017), - [anon_sym_err_GT_PIPE] = ACTIONS(2017), - [anon_sym_out_GT_PIPE] = ACTIONS(2017), - [anon_sym_e_GT_PIPE] = ACTIONS(2017), - [anon_sym_o_GT_PIPE] = ACTIONS(2017), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2017), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2017), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2017), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2017), - [anon_sym_RPAREN] = ACTIONS(2017), - [anon_sym_GT2] = ACTIONS(2015), - [anon_sym_DASH2] = ACTIONS(2017), - [anon_sym_in2] = ACTIONS(2017), - [anon_sym_if] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(2017), - [anon_sym_RBRACE] = ACTIONS(2017), - [anon_sym_EQ_GT] = ACTIONS(2017), - [anon_sym_STAR2] = ACTIONS(2015), - [anon_sym_and2] = ACTIONS(2017), - [anon_sym_xor2] = ACTIONS(2017), - [anon_sym_or2] = ACTIONS(2017), - [anon_sym_not_DASHin2] = ACTIONS(2017), - [anon_sym_starts_DASHwith2] = ACTIONS(2017), - [anon_sym_ends_DASHwith2] = ACTIONS(2017), - [anon_sym_EQ_EQ2] = ACTIONS(2017), - [anon_sym_BANG_EQ2] = ACTIONS(2017), - [anon_sym_LT2] = ACTIONS(2015), - [anon_sym_LT_EQ2] = ACTIONS(2017), - [anon_sym_GT_EQ2] = ACTIONS(2017), - [anon_sym_EQ_TILDE2] = ACTIONS(2017), - [anon_sym_BANG_TILDE2] = ACTIONS(2017), - [anon_sym_STAR_STAR2] = ACTIONS(2017), - [anon_sym_PLUS_PLUS2] = ACTIONS(2017), - [anon_sym_SLASH2] = ACTIONS(2015), - [anon_sym_mod2] = ACTIONS(2017), - [anon_sym_SLASH_SLASH2] = ACTIONS(2017), - [anon_sym_PLUS2] = ACTIONS(2015), - [anon_sym_bit_DASHshl2] = ACTIONS(2017), - [anon_sym_bit_DASHshr2] = ACTIONS(2017), - [anon_sym_bit_DASHand2] = ACTIONS(2017), - [anon_sym_bit_DASHxor2] = ACTIONS(2017), - [anon_sym_bit_DASHor2] = ACTIONS(2017), - [anon_sym_DOT_DOT2] = ACTIONS(2015), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2017), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2017), - [anon_sym_COLON2] = ACTIONS(2017), - [anon_sym_err_GT] = ACTIONS(2015), - [anon_sym_out_GT] = ACTIONS(2015), - [anon_sym_e_GT] = ACTIONS(2015), - [anon_sym_o_GT] = ACTIONS(2015), - [anon_sym_err_PLUSout_GT] = ACTIONS(2015), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2015), - [anon_sym_o_PLUSe_GT] = ACTIONS(2015), - [anon_sym_e_PLUSo_GT] = ACTIONS(2015), - [anon_sym_err_GT_GT] = ACTIONS(2017), - [anon_sym_out_GT_GT] = ACTIONS(2017), - [anon_sym_e_GT_GT] = ACTIONS(2017), - [anon_sym_o_GT_GT] = ACTIONS(2017), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2017), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2017), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2017), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2017), - [anon_sym_POUND] = ACTIONS(251), - }, - [1590] = { - [sym_comment] = STATE(1590), - [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_DASH2] = ACTIONS(966), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_DOT_DOT] = ACTIONS(966), - [anon_sym_QMARK2] = ACTIONS(4906), - [anon_sym_DOT_DOT_EQ] = ACTIONS(968), - [anon_sym_DOT_DOT_LT] = ACTIONS(968), - [anon_sym_null] = ACTIONS(968), - [anon_sym_true] = ACTIONS(968), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(968), - [aux_sym__val_number_token5] = ACTIONS(968), - [aux_sym__val_number_token6] = 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_DOT2] = 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), - [aux_sym_unquoted_token1] = ACTIONS(966), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(968), - }, - [1591] = { - [sym_comment] = STATE(1591), - [sym__newline] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(962), - [anon_sym_PIPE] = ACTIONS(962), - [anon_sym_err_GT_PIPE] = ACTIONS(962), - [anon_sym_out_GT_PIPE] = ACTIONS(962), - [anon_sym_e_GT_PIPE] = ACTIONS(962), - [anon_sym_o_GT_PIPE] = ACTIONS(962), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(962), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(962), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(962), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(962), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LPAREN] = ACTIONS(962), - [anon_sym_RPAREN] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(962), - [anon_sym_DASH2] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_RBRACE] = ACTIONS(962), - [anon_sym_DOT_DOT] = ACTIONS(960), - [anon_sym_QMARK2] = ACTIONS(4908), - [anon_sym_DOT_DOT_EQ] = ACTIONS(962), - [anon_sym_DOT_DOT_LT] = ACTIONS(962), - [anon_sym_null] = ACTIONS(962), - [anon_sym_true] = ACTIONS(962), - [anon_sym_false] = ACTIONS(962), - [aux_sym__val_number_decimal_token1] = ACTIONS(960), - [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), - [aux_sym__val_number_token4] = ACTIONS(962), - [aux_sym__val_number_token5] = ACTIONS(962), - [aux_sym__val_number_token6] = ACTIONS(962), - [anon_sym_0b] = ACTIONS(960), - [anon_sym_0o] = ACTIONS(960), - [anon_sym_0x] = ACTIONS(960), - [sym_val_date] = ACTIONS(962), - [anon_sym_DQUOTE] = ACTIONS(962), - [sym__str_single_quotes] = ACTIONS(962), - [sym__str_back_ticks] = ACTIONS(962), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(962), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(962), - [anon_sym_DOT2] = ACTIONS(960), - [anon_sym_err_GT] = ACTIONS(960), - [anon_sym_out_GT] = ACTIONS(960), - [anon_sym_e_GT] = ACTIONS(960), - [anon_sym_o_GT] = ACTIONS(960), - [anon_sym_err_PLUSout_GT] = ACTIONS(960), - [anon_sym_out_PLUSerr_GT] = ACTIONS(960), - [anon_sym_o_PLUSe_GT] = ACTIONS(960), - [anon_sym_e_PLUSo_GT] = ACTIONS(960), - [anon_sym_err_GT_GT] = ACTIONS(962), - [anon_sym_out_GT_GT] = ACTIONS(962), - [anon_sym_e_GT_GT] = ACTIONS(962), - [anon_sym_o_GT_GT] = ACTIONS(962), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(962), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(962), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(962), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(962), - [aux_sym_unquoted_token1] = ACTIONS(960), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(962), - }, - [1592] = { - [sym_comment] = STATE(1592), - [ts_builtin_sym_end] = ACTIONS(2017), - [sym__newline] = ACTIONS(2017), - [anon_sym_SEMI] = ACTIONS(2017), - [anon_sym_PIPE] = ACTIONS(2017), - [anon_sym_err_GT_PIPE] = ACTIONS(2017), - [anon_sym_out_GT_PIPE] = ACTIONS(2017), - [anon_sym_e_GT_PIPE] = ACTIONS(2017), - [anon_sym_o_GT_PIPE] = ACTIONS(2017), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2017), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2017), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2017), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2017), - [anon_sym_LBRACK] = ACTIONS(2017), - [anon_sym_LPAREN] = ACTIONS(2017), - [anon_sym_DOLLAR] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2017), - [anon_sym_DASH2] = ACTIONS(2015), - [anon_sym_LBRACE] = ACTIONS(2017), - [anon_sym_DOT_DOT] = ACTIONS(2015), - [anon_sym_DOT_DOT2] = ACTIONS(2015), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2015), - [anon_sym_DOT_DOT_LT] = ACTIONS(2015), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2017), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2017), - [anon_sym_null] = ACTIONS(2017), - [anon_sym_true] = ACTIONS(2017), - [anon_sym_false] = ACTIONS(2017), - [aux_sym__val_number_decimal_token1] = ACTIONS(2015), - [aux_sym__val_number_decimal_token2] = ACTIONS(2017), - [aux_sym__val_number_decimal_token3] = ACTIONS(2017), - [aux_sym__val_number_decimal_token4] = ACTIONS(2017), - [aux_sym__val_number_token1] = ACTIONS(2017), - [aux_sym__val_number_token2] = ACTIONS(2017), - [aux_sym__val_number_token3] = ACTIONS(2017), - [aux_sym__val_number_token4] = ACTIONS(2017), - [aux_sym__val_number_token5] = ACTIONS(2017), - [aux_sym__val_number_token6] = ACTIONS(2017), - [anon_sym_0b] = ACTIONS(2015), - [anon_sym_0o] = ACTIONS(2015), - [anon_sym_0x] = ACTIONS(2015), - [sym_val_date] = ACTIONS(2017), - [anon_sym_DQUOTE] = ACTIONS(2017), - [sym__str_single_quotes] = ACTIONS(2017), - [sym__str_back_ticks] = ACTIONS(2017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2017), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2017), - [anon_sym_err_GT] = ACTIONS(2015), - [anon_sym_out_GT] = ACTIONS(2015), - [anon_sym_e_GT] = ACTIONS(2015), - [anon_sym_o_GT] = ACTIONS(2015), - [anon_sym_err_PLUSout_GT] = ACTIONS(2015), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2015), - [anon_sym_o_PLUSe_GT] = ACTIONS(2015), - [anon_sym_e_PLUSo_GT] = ACTIONS(2015), - [anon_sym_err_GT_GT] = ACTIONS(2017), - [anon_sym_out_GT_GT] = ACTIONS(2017), - [anon_sym_e_GT_GT] = ACTIONS(2017), - [anon_sym_o_GT_GT] = ACTIONS(2017), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2017), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2017), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2017), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2017), - [aux_sym_unquoted_token1] = ACTIONS(2015), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2017), - }, - [1593] = { - [sym_comment] = STATE(1593), - [ts_builtin_sym_end] = ACTIONS(1785), - [sym__newline] = ACTIONS(1785), - [anon_sym_SEMI] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(1785), - [anon_sym_err_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_GT_PIPE] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1783), - [anon_sym_LPAREN2] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT] = ACTIONS(1785), - [aux_sym__immediate_decimal_token2] = ACTIONS(4910), - [anon_sym_null] = ACTIONS(1785), - [anon_sym_true] = ACTIONS(1785), - [anon_sym_false] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(1785), - [aux_sym__val_number_token2] = ACTIONS(1785), - [aux_sym__val_number_token3] = ACTIONS(1785), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_0b] = ACTIONS(1783), - [anon_sym_0o] = ACTIONS(1783), - [anon_sym_0x] = ACTIONS(1783), - [sym_val_date] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1785), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1785), - [anon_sym_err_GT] = ACTIONS(1783), - [anon_sym_out_GT] = ACTIONS(1783), - [anon_sym_e_GT] = ACTIONS(1783), - [anon_sym_o_GT] = ACTIONS(1783), - [anon_sym_err_PLUSout_GT] = ACTIONS(1783), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1783), - [anon_sym_o_PLUSe_GT] = ACTIONS(1783), - [anon_sym_e_PLUSo_GT] = ACTIONS(1783), - [anon_sym_err_GT_GT] = ACTIONS(1785), - [anon_sym_out_GT_GT] = ACTIONS(1785), - [anon_sym_e_GT_GT] = ACTIONS(1785), - [anon_sym_o_GT_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1785), - [aux_sym_unquoted_token1] = ACTIONS(1783), - [aux_sym_unquoted_token2] = ACTIONS(1783), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1785), - }, - [1594] = { - [sym_comment] = STATE(1594), - [ts_builtin_sym_end] = ACTIONS(1713), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1713), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_DOT_DOT] = ACTIONS(1711), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1711), - [anon_sym_DOT_DOT_LT] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [anon_sym_null] = ACTIONS(1713), - [anon_sym_true] = ACTIONS(1713), - [anon_sym_false] = ACTIONS(1713), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1713), - [aux_sym__val_number_decimal_token3] = ACTIONS(1713), - [aux_sym__val_number_decimal_token4] = ACTIONS(1713), - [aux_sym__val_number_token1] = ACTIONS(1713), - [aux_sym__val_number_token2] = ACTIONS(1713), - [aux_sym__val_number_token3] = ACTIONS(1713), - [aux_sym__val_number_token4] = ACTIONS(1713), - [aux_sym__val_number_token5] = ACTIONS(1713), - [aux_sym__val_number_token6] = ACTIONS(1713), - [anon_sym_0b] = ACTIONS(1711), - [anon_sym_0o] = ACTIONS(1711), - [anon_sym_0x] = ACTIONS(1711), - [sym_val_date] = ACTIONS(1713), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym__str_single_quotes] = ACTIONS(1713), - [sym__str_back_ticks] = ACTIONS(1713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1713), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [aux_sym_unquoted_token1] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1713), - }, - [1595] = { - [sym_cell_path] = STATE(1979), - [sym_path] = STATE(1532), - [sym_comment] = STATE(1595), - [aux_sym_cell_path_repeat1] = STATE(1386), - [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_RPAREN] = ACTIONS(1893), - [anon_sym_GT2] = ACTIONS(1891), - [anon_sym_DASH2] = ACTIONS(1893), - [anon_sym_in2] = ACTIONS(1893), - [anon_sym_if] = ACTIONS(1893), - [anon_sym_LBRACE] = ACTIONS(1893), - [anon_sym_RBRACE] = ACTIONS(1893), - [anon_sym_EQ_GT] = ACTIONS(1893), - [anon_sym_STAR2] = ACTIONS(1891), - [anon_sym_and2] = ACTIONS(1893), - [anon_sym_xor2] = ACTIONS(1893), - [anon_sym_or2] = ACTIONS(1893), - [anon_sym_not_DASHin2] = ACTIONS(1893), - [anon_sym_starts_DASHwith2] = ACTIONS(1893), - [anon_sym_ends_DASHwith2] = ACTIONS(1893), - [anon_sym_EQ_EQ2] = ACTIONS(1893), - [anon_sym_BANG_EQ2] = ACTIONS(1893), - [anon_sym_LT2] = ACTIONS(1891), - [anon_sym_LT_EQ2] = ACTIONS(1893), - [anon_sym_GT_EQ2] = ACTIONS(1893), - [anon_sym_EQ_TILDE2] = ACTIONS(1893), - [anon_sym_BANG_TILDE2] = ACTIONS(1893), - [anon_sym_STAR_STAR2] = ACTIONS(1893), - [anon_sym_PLUS_PLUS2] = ACTIONS(1893), - [anon_sym_SLASH2] = ACTIONS(1891), - [anon_sym_mod2] = ACTIONS(1893), - [anon_sym_SLASH_SLASH2] = ACTIONS(1893), - [anon_sym_PLUS2] = ACTIONS(1891), - [anon_sym_bit_DASHshl2] = ACTIONS(1893), - [anon_sym_bit_DASHshr2] = ACTIONS(1893), - [anon_sym_bit_DASHand2] = ACTIONS(1893), - [anon_sym_bit_DASHxor2] = ACTIONS(1893), - [anon_sym_bit_DASHor2] = ACTIONS(1893), - [anon_sym_DOT2] = ACTIONS(4912), - [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), - [anon_sym_POUND] = ACTIONS(251), - }, - [1596] = { - [sym_comment] = STATE(1596), - [sym__newline] = ACTIONS(1785), - [anon_sym_SEMI] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(1785), - [anon_sym_err_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_GT_PIPE] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_RPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1783), - [anon_sym_LPAREN2] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT] = ACTIONS(1785), - [anon_sym_null] = ACTIONS(1785), - [anon_sym_true] = ACTIONS(1785), - [anon_sym_false] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(1785), - [aux_sym__val_number_token2] = ACTIONS(1785), - [aux_sym__val_number_token3] = ACTIONS(1785), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_0b] = ACTIONS(1783), - [anon_sym_0o] = ACTIONS(1783), - [anon_sym_0x] = ACTIONS(1783), - [sym_val_date] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1785), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1785), - [anon_sym_err_GT] = ACTIONS(1783), - [anon_sym_out_GT] = ACTIONS(1783), - [anon_sym_e_GT] = ACTIONS(1783), - [anon_sym_o_GT] = ACTIONS(1783), - [anon_sym_err_PLUSout_GT] = ACTIONS(1783), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1783), - [anon_sym_o_PLUSe_GT] = ACTIONS(1783), - [anon_sym_e_PLUSo_GT] = ACTIONS(1783), - [anon_sym_err_GT_GT] = ACTIONS(1785), - [anon_sym_out_GT_GT] = ACTIONS(1785), - [anon_sym_e_GT_GT] = ACTIONS(1785), - [anon_sym_o_GT_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1785), - [aux_sym_unquoted_token1] = ACTIONS(1783), - [aux_sym_unquoted_token2] = ACTIONS(1783), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1785), - }, - [1597] = { - [sym_comment] = STATE(1597), - [ts_builtin_sym_end] = ACTIONS(2049), [sym__newline] = ACTIONS(2049), [anon_sym_SEMI] = ACTIONS(2049), [anon_sym_PIPE] = ACTIONS(2049), @@ -229723,16 +227548,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2049), [anon_sym_LBRACK] = ACTIONS(2049), [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_RPAREN] = ACTIONS(2049), [anon_sym_DOLLAR] = ACTIONS(2043), [anon_sym_DASH_DASH] = ACTIONS(2049), [anon_sym_DASH2] = ACTIONS(2043), [anon_sym_LBRACE] = ACTIONS(2049), + [anon_sym_RBRACE] = ACTIONS(2049), [anon_sym_DOT_DOT] = ACTIONS(2043), - [anon_sym_DOT_DOT2] = ACTIONS(4914), + [anon_sym_DOT_DOT2] = ACTIONS(4839), [anon_sym_DOT_DOT_EQ] = ACTIONS(2043), [anon_sym_DOT_DOT_LT] = ACTIONS(2043), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4916), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4916), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4841), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4841), [anon_sym_null] = ACTIONS(2049), [anon_sym_true] = ACTIONS(2049), [anon_sym_false] = ACTIONS(2049), @@ -229772,286 +227599,291 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2049), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2049), [aux_sym_unquoted_token1] = ACTIONS(2043), - [anon_sym_POUND] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(2049), }, - [1598] = { - [sym_comment] = STATE(1598), - [sym__newline] = ACTIONS(2150), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_err_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_GT_PIPE] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_LPAREN] = ACTIONS(2148), - [anon_sym_RPAREN] = ACTIONS(2150), - [anon_sym_DOLLAR] = ACTIONS(2148), - [anon_sym_DASH_DASH] = ACTIONS(2148), - [anon_sym_DASH2] = ACTIONS(2148), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_DOT_DOT] = ACTIONS(2148), - [anon_sym_LPAREN2] = ACTIONS(2150), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2148), - [anon_sym_DOT_DOT_LT] = ACTIONS(2148), - [anon_sym_null] = ACTIONS(2148), - [anon_sym_true] = ACTIONS(2148), - [anon_sym_false] = ACTIONS(2148), - [aux_sym__val_number_decimal_token1] = ACTIONS(2148), - [aux_sym__val_number_decimal_token2] = ACTIONS(2148), - [aux_sym__val_number_decimal_token3] = ACTIONS(2148), - [aux_sym__val_number_decimal_token4] = ACTIONS(2148), - [aux_sym__val_number_token1] = ACTIONS(2148), - [aux_sym__val_number_token2] = ACTIONS(2148), - [aux_sym__val_number_token3] = ACTIONS(2148), - [aux_sym__val_number_token4] = ACTIONS(2148), - [aux_sym__val_number_token5] = ACTIONS(2148), - [aux_sym__val_number_token6] = ACTIONS(2148), - [anon_sym_0b] = ACTIONS(2148), - [anon_sym_0o] = ACTIONS(2148), - [anon_sym_0x] = ACTIONS(2148), - [sym_val_date] = ACTIONS(2148), - [anon_sym_DQUOTE] = ACTIONS(2150), - [sym__str_single_quotes] = ACTIONS(2150), - [sym__str_back_ticks] = ACTIONS(2150), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2150), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2150), - [anon_sym_err_GT] = ACTIONS(2148), - [anon_sym_out_GT] = ACTIONS(2148), - [anon_sym_e_GT] = ACTIONS(2148), - [anon_sym_o_GT] = ACTIONS(2148), - [anon_sym_err_PLUSout_GT] = ACTIONS(2148), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2148), - [anon_sym_o_PLUSe_GT] = ACTIONS(2148), - [anon_sym_e_PLUSo_GT] = ACTIONS(2148), - [anon_sym_err_GT_GT] = ACTIONS(2148), - [anon_sym_out_GT_GT] = ACTIONS(2148), - [anon_sym_e_GT_GT] = ACTIONS(2148), - [anon_sym_o_GT_GT] = ACTIONS(2148), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2148), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2148), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2148), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2148), - [aux_sym_unquoted_token1] = ACTIONS(2148), - [aux_sym_unquoted_token4] = ACTIONS(2148), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2150), + [1557] = { + [sym_comment] = STATE(1557), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_RPAREN] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1703), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_DOT_DOT] = ACTIONS(1701), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1701), + [anon_sym_DOT_DOT_LT] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [anon_sym_null] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1703), + [aux_sym__val_number_token5] = ACTIONS(1703), + [aux_sym__val_number_token6] = ACTIONS(1703), + [anon_sym_0b] = ACTIONS(1701), + [anon_sym_0o] = ACTIONS(1701), + [anon_sym_0x] = ACTIONS(1701), + [sym_val_date] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [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(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token1] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1703), }, - [1599] = { - [sym_comment] = STATE(1599), - [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(1835), - [anon_sym_RPAREN] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1837), - [anon_sym_DASH2] = ACTIONS(1835), - [anon_sym_LBRACE] = ACTIONS(1837), - [anon_sym_RBRACE] = ACTIONS(1837), - [anon_sym_DOT_DOT] = ACTIONS(1835), - [anon_sym_LPAREN2] = ACTIONS(1837), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1837), - [anon_sym_DOT_DOT_LT] = ACTIONS(1837), - [anon_sym_null] = ACTIONS(1837), - [anon_sym_true] = ACTIONS(1837), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(1837), - [aux_sym__val_number_token5] = ACTIONS(1837), - [aux_sym__val_number_token6] = 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), - [aux_sym_unquoted_token2] = ACTIONS(1835), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1837), + [1558] = { + [sym_comment] = STATE(1558), + [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_GT2] = ACTIONS(1504), + [anon_sym_DASH2] = ACTIONS(1506), + [anon_sym_in2] = ACTIONS(1506), + [anon_sym_STAR2] = ACTIONS(1504), + [anon_sym_and2] = ACTIONS(1506), + [anon_sym_xor2] = ACTIONS(1506), + [anon_sym_or2] = ACTIONS(1506), + [anon_sym_not_DASHin2] = ACTIONS(1506), + [anon_sym_has2] = ACTIONS(1506), + [anon_sym_not_DASHhas2] = ACTIONS(1506), + [anon_sym_starts_DASHwith2] = ACTIONS(1506), + [anon_sym_ends_DASHwith2] = ACTIONS(1506), + [anon_sym_EQ_EQ2] = ACTIONS(1506), + [anon_sym_BANG_EQ2] = ACTIONS(1506), + [anon_sym_LT2] = ACTIONS(1504), + [anon_sym_LT_EQ2] = ACTIONS(1506), + [anon_sym_GT_EQ2] = ACTIONS(1506), + [anon_sym_EQ_TILDE2] = ACTIONS(1506), + [anon_sym_BANG_TILDE2] = ACTIONS(1506), + [anon_sym_LPAREN2] = ACTIONS(1506), + [anon_sym_STAR_STAR2] = ACTIONS(1506), + [anon_sym_PLUS_PLUS2] = ACTIONS(1506), + [anon_sym_SLASH2] = ACTIONS(1504), + [anon_sym_mod2] = ACTIONS(1506), + [anon_sym_SLASH_SLASH2] = ACTIONS(1506), + [anon_sym_PLUS2] = ACTIONS(1504), + [anon_sym_bit_DASHshl2] = ACTIONS(1506), + [anon_sym_bit_DASHshr2] = ACTIONS(1506), + [anon_sym_bit_DASHand2] = ACTIONS(1506), + [anon_sym_bit_DASHxor2] = ACTIONS(1506), + [anon_sym_bit_DASHor2] = 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), + [aux_sym_unquoted_token2] = ACTIONS(1504), + [anon_sym_POUND] = ACTIONS(247), }, - [1600] = { - [sym_cell_path] = STATE(1999), - [sym_path] = STATE(1532), - [sym_comment] = STATE(1600), - [aux_sym_cell_path_repeat1] = STATE(1386), - [sym__newline] = ACTIONS(1911), - [anon_sym_SEMI] = ACTIONS(1911), - [anon_sym_PIPE] = ACTIONS(1911), - [anon_sym_err_GT_PIPE] = ACTIONS(1911), - [anon_sym_out_GT_PIPE] = ACTIONS(1911), - [anon_sym_e_GT_PIPE] = ACTIONS(1911), - [anon_sym_o_GT_PIPE] = ACTIONS(1911), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1911), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1911), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1911), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1911), - [anon_sym_RPAREN] = ACTIONS(1911), - [anon_sym_GT2] = ACTIONS(1909), - [anon_sym_DASH2] = ACTIONS(1911), - [anon_sym_in2] = ACTIONS(1911), - [anon_sym_if] = ACTIONS(1911), - [anon_sym_LBRACE] = ACTIONS(1911), - [anon_sym_RBRACE] = ACTIONS(1911), - [anon_sym_EQ_GT] = ACTIONS(1911), - [anon_sym_STAR2] = ACTIONS(1909), - [anon_sym_and2] = ACTIONS(1911), - [anon_sym_xor2] = ACTIONS(1911), - [anon_sym_or2] = ACTIONS(1911), - [anon_sym_not_DASHin2] = ACTIONS(1911), - [anon_sym_starts_DASHwith2] = ACTIONS(1911), - [anon_sym_ends_DASHwith2] = ACTIONS(1911), - [anon_sym_EQ_EQ2] = ACTIONS(1911), - [anon_sym_BANG_EQ2] = ACTIONS(1911), - [anon_sym_LT2] = ACTIONS(1909), - [anon_sym_LT_EQ2] = ACTIONS(1911), - [anon_sym_GT_EQ2] = ACTIONS(1911), - [anon_sym_EQ_TILDE2] = ACTIONS(1911), - [anon_sym_BANG_TILDE2] = ACTIONS(1911), - [anon_sym_STAR_STAR2] = ACTIONS(1911), - [anon_sym_PLUS_PLUS2] = ACTIONS(1911), - [anon_sym_SLASH2] = ACTIONS(1909), - [anon_sym_mod2] = ACTIONS(1911), - [anon_sym_SLASH_SLASH2] = ACTIONS(1911), - [anon_sym_PLUS2] = ACTIONS(1909), - [anon_sym_bit_DASHshl2] = ACTIONS(1911), - [anon_sym_bit_DASHshr2] = ACTIONS(1911), - [anon_sym_bit_DASHand2] = ACTIONS(1911), - [anon_sym_bit_DASHxor2] = ACTIONS(1911), - [anon_sym_bit_DASHor2] = ACTIONS(1911), - [anon_sym_DOT2] = ACTIONS(4912), - [anon_sym_err_GT] = ACTIONS(1909), - [anon_sym_out_GT] = ACTIONS(1909), - [anon_sym_e_GT] = ACTIONS(1909), - [anon_sym_o_GT] = ACTIONS(1909), - [anon_sym_err_PLUSout_GT] = ACTIONS(1909), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1909), - [anon_sym_o_PLUSe_GT] = ACTIONS(1909), - [anon_sym_e_PLUSo_GT] = ACTIONS(1909), - [anon_sym_err_GT_GT] = ACTIONS(1911), - [anon_sym_out_GT_GT] = ACTIONS(1911), - [anon_sym_e_GT_GT] = ACTIONS(1911), - [anon_sym_o_GT_GT] = ACTIONS(1911), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1911), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1911), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1911), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1911), - [anon_sym_POUND] = ACTIONS(251), + [1559] = { + [sym_comment] = STATE(1559), + [sym__newline] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_PIPE] = ACTIONS(1678), + [anon_sym_err_GT_PIPE] = ACTIONS(1678), + [anon_sym_out_GT_PIPE] = ACTIONS(1678), + [anon_sym_e_GT_PIPE] = ACTIONS(1678), + [anon_sym_o_GT_PIPE] = ACTIONS(1678), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1678), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1678), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1678), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_LPAREN] = ACTIONS(1678), + [anon_sym_RPAREN] = ACTIONS(1678), + [anon_sym_DOLLAR] = ACTIONS(1676), + [anon_sym_DASH_DASH] = ACTIONS(1678), + [anon_sym_DASH2] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_RBRACE] = ACTIONS(1678), + [anon_sym_DOT_DOT] = ACTIONS(1676), + [anon_sym_DOT_DOT2] = ACTIONS(1676), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1676), + [anon_sym_DOT_DOT_LT] = ACTIONS(1676), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1678), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1678), + [anon_sym_null] = ACTIONS(1678), + [anon_sym_true] = ACTIONS(1678), + [anon_sym_false] = ACTIONS(1678), + [aux_sym__val_number_decimal_token1] = ACTIONS(1676), + [aux_sym__val_number_decimal_token2] = ACTIONS(1678), + [aux_sym__val_number_decimal_token3] = ACTIONS(1678), + [aux_sym__val_number_decimal_token4] = ACTIONS(1678), + [aux_sym__val_number_token1] = ACTIONS(1678), + [aux_sym__val_number_token2] = ACTIONS(1678), + [aux_sym__val_number_token3] = ACTIONS(1678), + [aux_sym__val_number_token4] = ACTIONS(1678), + [aux_sym__val_number_token5] = ACTIONS(1678), + [aux_sym__val_number_token6] = ACTIONS(1678), + [anon_sym_0b] = ACTIONS(1676), + [anon_sym_0o] = ACTIONS(1676), + [anon_sym_0x] = ACTIONS(1676), + [sym_val_date] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym__str_single_quotes] = ACTIONS(1678), + [sym__str_back_ticks] = ACTIONS(1678), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1678), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1678), + [anon_sym_err_GT] = ACTIONS(1676), + [anon_sym_out_GT] = ACTIONS(1676), + [anon_sym_e_GT] = ACTIONS(1676), + [anon_sym_o_GT] = ACTIONS(1676), + [anon_sym_err_PLUSout_GT] = ACTIONS(1676), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1676), + [anon_sym_o_PLUSe_GT] = ACTIONS(1676), + [anon_sym_e_PLUSo_GT] = ACTIONS(1676), + [anon_sym_err_GT_GT] = ACTIONS(1678), + [anon_sym_out_GT_GT] = ACTIONS(1678), + [anon_sym_e_GT_GT] = ACTIONS(1678), + [anon_sym_o_GT_GT] = ACTIONS(1678), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1678), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1678), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1678), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1678), + [aux_sym_unquoted_token1] = ACTIONS(1676), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1678), }, - [1601] = { - [sym_cell_path] = STATE(2000), - [sym_path] = STATE(1532), - [sym_comment] = STATE(1601), - [aux_sym_cell_path_repeat1] = STATE(1386), - [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_GT2] = ACTIONS(1913), - [anon_sym_DASH2] = ACTIONS(1915), - [anon_sym_in2] = ACTIONS(1915), - [anon_sym_if] = ACTIONS(1915), - [anon_sym_LBRACE] = ACTIONS(1915), - [anon_sym_RBRACE] = ACTIONS(1915), - [anon_sym_EQ_GT] = ACTIONS(1915), - [anon_sym_STAR2] = ACTIONS(1913), - [anon_sym_and2] = ACTIONS(1915), - [anon_sym_xor2] = ACTIONS(1915), - [anon_sym_or2] = ACTIONS(1915), - [anon_sym_not_DASHin2] = ACTIONS(1915), - [anon_sym_starts_DASHwith2] = ACTIONS(1915), - [anon_sym_ends_DASHwith2] = ACTIONS(1915), - [anon_sym_EQ_EQ2] = ACTIONS(1915), - [anon_sym_BANG_EQ2] = ACTIONS(1915), - [anon_sym_LT2] = ACTIONS(1913), - [anon_sym_LT_EQ2] = ACTIONS(1915), - [anon_sym_GT_EQ2] = ACTIONS(1915), - [anon_sym_EQ_TILDE2] = ACTIONS(1915), - [anon_sym_BANG_TILDE2] = ACTIONS(1915), - [anon_sym_STAR_STAR2] = ACTIONS(1915), - [anon_sym_PLUS_PLUS2] = ACTIONS(1915), - [anon_sym_SLASH2] = ACTIONS(1913), - [anon_sym_mod2] = ACTIONS(1915), - [anon_sym_SLASH_SLASH2] = ACTIONS(1915), - [anon_sym_PLUS2] = ACTIONS(1913), - [anon_sym_bit_DASHshl2] = ACTIONS(1915), - [anon_sym_bit_DASHshr2] = ACTIONS(1915), - [anon_sym_bit_DASHand2] = ACTIONS(1915), - [anon_sym_bit_DASHxor2] = ACTIONS(1915), - [anon_sym_bit_DASHor2] = ACTIONS(1915), - [anon_sym_DOT2] = ACTIONS(4912), - [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(251), + [1560] = { + [sym_comment] = STATE(1560), + [sym__newline] = ACTIONS(2012), + [anon_sym_SEMI] = ACTIONS(2012), + [anon_sym_PIPE] = ACTIONS(2012), + [anon_sym_err_GT_PIPE] = ACTIONS(2012), + [anon_sym_out_GT_PIPE] = ACTIONS(2012), + [anon_sym_e_GT_PIPE] = ACTIONS(2012), + [anon_sym_o_GT_PIPE] = ACTIONS(2012), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2012), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2012), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2012), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2012), + [anon_sym_LBRACK] = ACTIONS(2012), + [anon_sym_LPAREN] = ACTIONS(2012), + [anon_sym_RPAREN] = ACTIONS(2012), + [anon_sym_DOLLAR] = ACTIONS(2010), + [anon_sym_DASH_DASH] = ACTIONS(2012), + [anon_sym_DASH2] = ACTIONS(2010), + [anon_sym_LBRACE] = ACTIONS(2012), + [anon_sym_RBRACE] = ACTIONS(2012), + [anon_sym_DOT_DOT] = ACTIONS(2010), + [anon_sym_DOT_DOT2] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2010), + [anon_sym_DOT_DOT_LT] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2012), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2012), + [anon_sym_null] = ACTIONS(2012), + [anon_sym_true] = ACTIONS(2012), + [anon_sym_false] = ACTIONS(2012), + [aux_sym__val_number_decimal_token1] = ACTIONS(2010), + [aux_sym__val_number_decimal_token2] = ACTIONS(2012), + [aux_sym__val_number_decimal_token3] = ACTIONS(2012), + [aux_sym__val_number_decimal_token4] = ACTIONS(2012), + [aux_sym__val_number_token1] = ACTIONS(2012), + [aux_sym__val_number_token2] = ACTIONS(2012), + [aux_sym__val_number_token3] = ACTIONS(2012), + [aux_sym__val_number_token4] = ACTIONS(2012), + [aux_sym__val_number_token5] = ACTIONS(2012), + [aux_sym__val_number_token6] = ACTIONS(2012), + [anon_sym_0b] = ACTIONS(2010), + [anon_sym_0o] = ACTIONS(2010), + [anon_sym_0x] = ACTIONS(2010), + [sym_val_date] = ACTIONS(2012), + [anon_sym_DQUOTE] = ACTIONS(2012), + [sym__str_single_quotes] = ACTIONS(2012), + [sym__str_back_ticks] = ACTIONS(2012), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2012), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2012), + [anon_sym_err_GT] = ACTIONS(2010), + [anon_sym_out_GT] = ACTIONS(2010), + [anon_sym_e_GT] = ACTIONS(2010), + [anon_sym_o_GT] = ACTIONS(2010), + [anon_sym_err_PLUSout_GT] = ACTIONS(2010), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2010), + [anon_sym_o_PLUSe_GT] = ACTIONS(2010), + [anon_sym_e_PLUSo_GT] = ACTIONS(2010), + [anon_sym_err_GT_GT] = ACTIONS(2012), + [anon_sym_out_GT_GT] = ACTIONS(2012), + [anon_sym_e_GT_GT] = ACTIONS(2012), + [anon_sym_o_GT_GT] = ACTIONS(2012), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2012), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2012), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2012), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2012), + [aux_sym_unquoted_token1] = ACTIONS(2010), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2012), }, - [1602] = { - [sym_cell_path] = STATE(2008), - [sym_path] = STATE(1532), - [sym_comment] = STATE(1602), - [aux_sym_cell_path_repeat1] = STATE(1386), + [1561] = { + [sym_cell_path] = STATE(2044), + [sym_path] = STATE(1811), + [sym_comment] = STATE(1561), + [aux_sym_cell_path_repeat1] = STATE(1638), + [ts_builtin_sym_end] = ACTIONS(1919), [sym__newline] = ACTIONS(1919), [anon_sym_SEMI] = ACTIONS(1919), [anon_sym_PIPE] = ACTIONS(1919), @@ -230063,40 +227895,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1919), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1919), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1919), - [anon_sym_RPAREN] = ACTIONS(1919), - [anon_sym_GT2] = ACTIONS(1917), - [anon_sym_DASH2] = ACTIONS(1919), - [anon_sym_in2] = ACTIONS(1919), - [anon_sym_if] = ACTIONS(1919), + [anon_sym_LBRACK] = ACTIONS(1919), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_DOLLAR] = ACTIONS(1917), + [anon_sym_DASH_DASH] = ACTIONS(1919), + [anon_sym_DASH2] = ACTIONS(1917), [anon_sym_LBRACE] = ACTIONS(1919), - [anon_sym_RBRACE] = ACTIONS(1919), - [anon_sym_EQ_GT] = ACTIONS(1919), - [anon_sym_STAR2] = ACTIONS(1917), - [anon_sym_and2] = ACTIONS(1919), - [anon_sym_xor2] = ACTIONS(1919), - [anon_sym_or2] = ACTIONS(1919), - [anon_sym_not_DASHin2] = ACTIONS(1919), - [anon_sym_starts_DASHwith2] = ACTIONS(1919), - [anon_sym_ends_DASHwith2] = ACTIONS(1919), - [anon_sym_EQ_EQ2] = ACTIONS(1919), - [anon_sym_BANG_EQ2] = ACTIONS(1919), - [anon_sym_LT2] = ACTIONS(1917), - [anon_sym_LT_EQ2] = ACTIONS(1919), - [anon_sym_GT_EQ2] = ACTIONS(1919), - [anon_sym_EQ_TILDE2] = ACTIONS(1919), - [anon_sym_BANG_TILDE2] = ACTIONS(1919), - [anon_sym_STAR_STAR2] = ACTIONS(1919), - [anon_sym_PLUS_PLUS2] = ACTIONS(1919), - [anon_sym_SLASH2] = ACTIONS(1917), - [anon_sym_mod2] = ACTIONS(1919), - [anon_sym_SLASH_SLASH2] = ACTIONS(1919), - [anon_sym_PLUS2] = ACTIONS(1917), - [anon_sym_bit_DASHshl2] = ACTIONS(1919), - [anon_sym_bit_DASHshr2] = ACTIONS(1919), - [anon_sym_bit_DASHand2] = ACTIONS(1919), - [anon_sym_bit_DASHxor2] = ACTIONS(1919), - [anon_sym_bit_DASHor2] = ACTIONS(1919), - [anon_sym_DOT2] = ACTIONS(4912), + [anon_sym_DOT_DOT] = ACTIONS(1917), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1919), + [anon_sym_DOT_DOT_LT] = ACTIONS(1919), + [anon_sym_null] = ACTIONS(1919), + [anon_sym_true] = ACTIONS(1919), + [anon_sym_false] = ACTIONS(1919), + [aux_sym__val_number_decimal_token1] = ACTIONS(1917), + [aux_sym__val_number_decimal_token2] = ACTIONS(1919), + [aux_sym__val_number_decimal_token3] = ACTIONS(1919), + [aux_sym__val_number_decimal_token4] = ACTIONS(1919), + [aux_sym__val_number_token1] = ACTIONS(1919), + [aux_sym__val_number_token2] = ACTIONS(1919), + [aux_sym__val_number_token3] = ACTIONS(1919), + [aux_sym__val_number_token4] = ACTIONS(1919), + [aux_sym__val_number_token5] = ACTIONS(1919), + [aux_sym__val_number_token6] = ACTIONS(1919), + [anon_sym_0b] = ACTIONS(1917), + [anon_sym_0o] = ACTIONS(1917), + [anon_sym_0x] = ACTIONS(1917), + [sym_val_date] = ACTIONS(1919), + [anon_sym_DQUOTE] = ACTIONS(1919), + [sym__str_single_quotes] = ACTIONS(1919), + [sym__str_back_ticks] = ACTIONS(1919), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1919), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1919), + [anon_sym_DOT2] = ACTIONS(4810), [anon_sym_err_GT] = ACTIONS(1917), [anon_sym_out_GT] = ACTIONS(1917), [anon_sym_e_GT] = ACTIONS(1917), @@ -230113,353 +227943,1603 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1919), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1919), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1919), - [anon_sym_POUND] = ACTIONS(251), - }, - [1603] = { - [sym_cell_path] = STATE(2009), - [sym_path] = STATE(1532), - [sym_comment] = STATE(1603), - [aux_sym_cell_path_repeat1] = STATE(1386), - [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_RPAREN] = ACTIONS(1927), - [anon_sym_GT2] = ACTIONS(1925), - [anon_sym_DASH2] = ACTIONS(1927), - [anon_sym_in2] = ACTIONS(1927), - [anon_sym_if] = ACTIONS(1927), - [anon_sym_LBRACE] = ACTIONS(1927), - [anon_sym_RBRACE] = ACTIONS(1927), - [anon_sym_EQ_GT] = ACTIONS(1927), - [anon_sym_STAR2] = ACTIONS(1925), - [anon_sym_and2] = ACTIONS(1927), - [anon_sym_xor2] = ACTIONS(1927), - [anon_sym_or2] = ACTIONS(1927), - [anon_sym_not_DASHin2] = ACTIONS(1927), - [anon_sym_starts_DASHwith2] = ACTIONS(1927), - [anon_sym_ends_DASHwith2] = ACTIONS(1927), - [anon_sym_EQ_EQ2] = ACTIONS(1927), - [anon_sym_BANG_EQ2] = ACTIONS(1927), - [anon_sym_LT2] = ACTIONS(1925), - [anon_sym_LT_EQ2] = ACTIONS(1927), - [anon_sym_GT_EQ2] = ACTIONS(1927), - [anon_sym_EQ_TILDE2] = ACTIONS(1927), - [anon_sym_BANG_TILDE2] = ACTIONS(1927), - [anon_sym_STAR_STAR2] = ACTIONS(1927), - [anon_sym_PLUS_PLUS2] = ACTIONS(1927), - [anon_sym_SLASH2] = ACTIONS(1925), - [anon_sym_mod2] = ACTIONS(1927), - [anon_sym_SLASH_SLASH2] = ACTIONS(1927), - [anon_sym_PLUS2] = ACTIONS(1925), - [anon_sym_bit_DASHshl2] = ACTIONS(1927), - [anon_sym_bit_DASHshr2] = ACTIONS(1927), - [anon_sym_bit_DASHand2] = ACTIONS(1927), - [anon_sym_bit_DASHxor2] = ACTIONS(1927), - [anon_sym_bit_DASHor2] = ACTIONS(1927), - [anon_sym_DOT2] = ACTIONS(4912), - [anon_sym_err_GT] = ACTIONS(1925), - [anon_sym_out_GT] = ACTIONS(1925), - [anon_sym_e_GT] = ACTIONS(1925), - [anon_sym_o_GT] = ACTIONS(1925), - [anon_sym_err_PLUSout_GT] = ACTIONS(1925), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1925), - [anon_sym_o_PLUSe_GT] = ACTIONS(1925), - [anon_sym_e_PLUSo_GT] = ACTIONS(1925), - [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), - [anon_sym_POUND] = ACTIONS(251), + [aux_sym_unquoted_token1] = ACTIONS(1917), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1919), }, - [1604] = { - [sym_cell_path] = STATE(2013), - [sym_path] = STATE(1532), - [sym_comment] = STATE(1604), - [aux_sym_cell_path_repeat1] = STATE(1386), - [sym__newline] = ACTIONS(1931), - [anon_sym_SEMI] = ACTIONS(1931), - [anon_sym_PIPE] = ACTIONS(1931), - [anon_sym_err_GT_PIPE] = ACTIONS(1931), - [anon_sym_out_GT_PIPE] = ACTIONS(1931), - [anon_sym_e_GT_PIPE] = ACTIONS(1931), - [anon_sym_o_GT_PIPE] = ACTIONS(1931), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1931), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1931), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1931), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1931), - [anon_sym_RPAREN] = ACTIONS(1931), - [anon_sym_GT2] = ACTIONS(1929), - [anon_sym_DASH2] = ACTIONS(1931), - [anon_sym_in2] = ACTIONS(1931), - [anon_sym_if] = ACTIONS(1931), - [anon_sym_LBRACE] = ACTIONS(1931), - [anon_sym_RBRACE] = ACTIONS(1931), - [anon_sym_EQ_GT] = ACTIONS(1931), - [anon_sym_STAR2] = ACTIONS(1929), - [anon_sym_and2] = ACTIONS(1931), - [anon_sym_xor2] = ACTIONS(1931), - [anon_sym_or2] = ACTIONS(1931), - [anon_sym_not_DASHin2] = ACTIONS(1931), - [anon_sym_starts_DASHwith2] = ACTIONS(1931), - [anon_sym_ends_DASHwith2] = ACTIONS(1931), - [anon_sym_EQ_EQ2] = ACTIONS(1931), - [anon_sym_BANG_EQ2] = ACTIONS(1931), - [anon_sym_LT2] = ACTIONS(1929), - [anon_sym_LT_EQ2] = ACTIONS(1931), - [anon_sym_GT_EQ2] = ACTIONS(1931), - [anon_sym_EQ_TILDE2] = ACTIONS(1931), - [anon_sym_BANG_TILDE2] = ACTIONS(1931), - [anon_sym_STAR_STAR2] = ACTIONS(1931), - [anon_sym_PLUS_PLUS2] = ACTIONS(1931), - [anon_sym_SLASH2] = ACTIONS(1929), - [anon_sym_mod2] = ACTIONS(1931), - [anon_sym_SLASH_SLASH2] = ACTIONS(1931), - [anon_sym_PLUS2] = ACTIONS(1929), - [anon_sym_bit_DASHshl2] = ACTIONS(1931), - [anon_sym_bit_DASHshr2] = ACTIONS(1931), - [anon_sym_bit_DASHand2] = ACTIONS(1931), - [anon_sym_bit_DASHxor2] = ACTIONS(1931), - [anon_sym_bit_DASHor2] = ACTIONS(1931), - [anon_sym_DOT2] = ACTIONS(4912), - [anon_sym_err_GT] = ACTIONS(1929), - [anon_sym_out_GT] = ACTIONS(1929), - [anon_sym_e_GT] = ACTIONS(1929), - [anon_sym_o_GT] = ACTIONS(1929), - [anon_sym_err_PLUSout_GT] = ACTIONS(1929), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1929), - [anon_sym_o_PLUSe_GT] = ACTIONS(1929), - [anon_sym_e_PLUSo_GT] = ACTIONS(1929), - [anon_sym_err_GT_GT] = ACTIONS(1931), - [anon_sym_out_GT_GT] = ACTIONS(1931), - [anon_sym_e_GT_GT] = ACTIONS(1931), - [anon_sym_o_GT_GT] = ACTIONS(1931), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1931), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1931), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1931), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1931), - [anon_sym_POUND] = ACTIONS(251), + [1562] = { + [sym_comment] = STATE(1562), + [sym__newline] = ACTIONS(1695), + [anon_sym_SEMI] = ACTIONS(1695), + [anon_sym_PIPE] = ACTIONS(1695), + [anon_sym_err_GT_PIPE] = ACTIONS(1695), + [anon_sym_out_GT_PIPE] = ACTIONS(1695), + [anon_sym_e_GT_PIPE] = ACTIONS(1695), + [anon_sym_o_GT_PIPE] = ACTIONS(1695), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1695), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1695), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1695), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1695), + [anon_sym_LBRACK] = ACTIONS(1695), + [anon_sym_LPAREN] = ACTIONS(1695), + [anon_sym_RPAREN] = ACTIONS(1695), + [anon_sym_DOLLAR] = ACTIONS(1693), + [anon_sym_DASH_DASH] = ACTIONS(1695), + [anon_sym_DASH2] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1695), + [anon_sym_RBRACE] = ACTIONS(1695), + [anon_sym_DOT_DOT] = ACTIONS(1693), + [anon_sym_DOT_DOT2] = ACTIONS(1693), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1693), + [anon_sym_DOT_DOT_LT] = ACTIONS(1693), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1695), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1695), + [anon_sym_null] = ACTIONS(1695), + [anon_sym_true] = ACTIONS(1695), + [anon_sym_false] = ACTIONS(1695), + [aux_sym__val_number_decimal_token1] = ACTIONS(1693), + [aux_sym__val_number_decimal_token2] = ACTIONS(1695), + [aux_sym__val_number_decimal_token3] = ACTIONS(1695), + [aux_sym__val_number_decimal_token4] = ACTIONS(1695), + [aux_sym__val_number_token1] = ACTIONS(1695), + [aux_sym__val_number_token2] = ACTIONS(1695), + [aux_sym__val_number_token3] = ACTIONS(1695), + [aux_sym__val_number_token4] = ACTIONS(1695), + [aux_sym__val_number_token5] = ACTIONS(1695), + [aux_sym__val_number_token6] = ACTIONS(1695), + [anon_sym_0b] = ACTIONS(1693), + [anon_sym_0o] = ACTIONS(1693), + [anon_sym_0x] = ACTIONS(1693), + [sym_val_date] = ACTIONS(1695), + [anon_sym_DQUOTE] = ACTIONS(1695), + [sym__str_single_quotes] = ACTIONS(1695), + [sym__str_back_ticks] = ACTIONS(1695), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1695), + [anon_sym_err_GT] = ACTIONS(1693), + [anon_sym_out_GT] = ACTIONS(1693), + [anon_sym_e_GT] = ACTIONS(1693), + [anon_sym_o_GT] = ACTIONS(1693), + [anon_sym_err_PLUSout_GT] = ACTIONS(1693), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1693), + [anon_sym_o_PLUSe_GT] = ACTIONS(1693), + [anon_sym_e_PLUSo_GT] = ACTIONS(1693), + [anon_sym_err_GT_GT] = ACTIONS(1695), + [anon_sym_out_GT_GT] = ACTIONS(1695), + [anon_sym_e_GT_GT] = ACTIONS(1695), + [anon_sym_o_GT_GT] = ACTIONS(1695), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1695), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1695), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1695), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1695), + [aux_sym_unquoted_token1] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1695), }, - [1605] = { - [sym_cell_path] = STATE(2014), - [sym_path] = STATE(1532), - [sym_comment] = STATE(1605), - [aux_sym_cell_path_repeat1] = STATE(1386), - [sym__newline] = ACTIONS(1935), - [anon_sym_SEMI] = ACTIONS(1935), - [anon_sym_PIPE] = ACTIONS(1935), - [anon_sym_err_GT_PIPE] = ACTIONS(1935), - [anon_sym_out_GT_PIPE] = ACTIONS(1935), - [anon_sym_e_GT_PIPE] = ACTIONS(1935), - [anon_sym_o_GT_PIPE] = ACTIONS(1935), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1935), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1935), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1935), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1935), - [anon_sym_RPAREN] = ACTIONS(1935), - [anon_sym_GT2] = ACTIONS(1933), - [anon_sym_DASH2] = ACTIONS(1935), - [anon_sym_in2] = ACTIONS(1935), - [anon_sym_if] = ACTIONS(1935), - [anon_sym_LBRACE] = ACTIONS(1935), - [anon_sym_RBRACE] = ACTIONS(1935), - [anon_sym_EQ_GT] = ACTIONS(1935), - [anon_sym_STAR2] = ACTIONS(1933), - [anon_sym_and2] = ACTIONS(1935), - [anon_sym_xor2] = ACTIONS(1935), - [anon_sym_or2] = ACTIONS(1935), - [anon_sym_not_DASHin2] = ACTIONS(1935), - [anon_sym_starts_DASHwith2] = ACTIONS(1935), - [anon_sym_ends_DASHwith2] = ACTIONS(1935), - [anon_sym_EQ_EQ2] = ACTIONS(1935), - [anon_sym_BANG_EQ2] = ACTIONS(1935), - [anon_sym_LT2] = ACTIONS(1933), - [anon_sym_LT_EQ2] = ACTIONS(1935), - [anon_sym_GT_EQ2] = ACTIONS(1935), - [anon_sym_EQ_TILDE2] = ACTIONS(1935), - [anon_sym_BANG_TILDE2] = ACTIONS(1935), - [anon_sym_STAR_STAR2] = ACTIONS(1935), - [anon_sym_PLUS_PLUS2] = ACTIONS(1935), - [anon_sym_SLASH2] = ACTIONS(1933), - [anon_sym_mod2] = ACTIONS(1935), - [anon_sym_SLASH_SLASH2] = ACTIONS(1935), - [anon_sym_PLUS2] = ACTIONS(1933), - [anon_sym_bit_DASHshl2] = ACTIONS(1935), - [anon_sym_bit_DASHshr2] = ACTIONS(1935), - [anon_sym_bit_DASHand2] = ACTIONS(1935), - [anon_sym_bit_DASHxor2] = ACTIONS(1935), - [anon_sym_bit_DASHor2] = ACTIONS(1935), - [anon_sym_DOT2] = ACTIONS(4912), - [anon_sym_err_GT] = ACTIONS(1933), - [anon_sym_out_GT] = ACTIONS(1933), - [anon_sym_e_GT] = ACTIONS(1933), - [anon_sym_o_GT] = ACTIONS(1933), - [anon_sym_err_PLUSout_GT] = ACTIONS(1933), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1933), - [anon_sym_o_PLUSe_GT] = ACTIONS(1933), - [anon_sym_e_PLUSo_GT] = ACTIONS(1933), - [anon_sym_err_GT_GT] = ACTIONS(1935), - [anon_sym_out_GT_GT] = ACTIONS(1935), - [anon_sym_e_GT_GT] = ACTIONS(1935), - [anon_sym_o_GT_GT] = ACTIONS(1935), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1935), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1935), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1935), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1935), - [anon_sym_POUND] = ACTIONS(251), + [1563] = { + [sym_comment] = STATE(1563), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_RPAREN] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1703), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_DOT_DOT] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(4768), + [anon_sym_null] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1703), + [aux_sym__val_number_token5] = ACTIONS(1703), + [aux_sym__val_number_token6] = ACTIONS(1703), + [anon_sym_0b] = ACTIONS(1701), + [anon_sym_0o] = ACTIONS(1701), + [anon_sym_0x] = ACTIONS(1701), + [sym_val_date] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [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(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token1] = ACTIONS(1701), + [aux_sym_unquoted_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1703), }, - [1606] = { - [sym_cell_path] = STATE(2020), - [sym_path] = STATE(1532), - [sym_comment] = STATE(1606), - [aux_sym_cell_path_repeat1] = STATE(1386), - [sym__newline] = ACTIONS(1939), - [anon_sym_SEMI] = ACTIONS(1939), - [anon_sym_PIPE] = ACTIONS(1939), - [anon_sym_err_GT_PIPE] = ACTIONS(1939), - [anon_sym_out_GT_PIPE] = ACTIONS(1939), - [anon_sym_e_GT_PIPE] = ACTIONS(1939), - [anon_sym_o_GT_PIPE] = ACTIONS(1939), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1939), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1939), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1939), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1939), - [anon_sym_RPAREN] = ACTIONS(1939), - [anon_sym_GT2] = ACTIONS(1937), + [1564] = { + [sym_cell_path] = STATE(2056), + [sym_path] = STATE(1811), + [sym_comment] = STATE(1564), + [aux_sym_cell_path_repeat1] = STATE(1638), + [ts_builtin_sym_end] = ACTIONS(1933), + [sym__newline] = ACTIONS(1933), + [anon_sym_SEMI] = ACTIONS(1933), + [anon_sym_PIPE] = ACTIONS(1933), + [anon_sym_err_GT_PIPE] = ACTIONS(1933), + [anon_sym_out_GT_PIPE] = ACTIONS(1933), + [anon_sym_e_GT_PIPE] = ACTIONS(1933), + [anon_sym_o_GT_PIPE] = ACTIONS(1933), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1933), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1933), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1933), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1933), + [anon_sym_LBRACK] = ACTIONS(1933), + [anon_sym_LPAREN] = ACTIONS(1933), + [anon_sym_DOLLAR] = ACTIONS(1931), + [anon_sym_DASH_DASH] = ACTIONS(1933), + [anon_sym_DASH2] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1933), + [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [anon_sym_null] = ACTIONS(1933), + [anon_sym_true] = ACTIONS(1933), + [anon_sym_false] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1931), + [aux_sym__val_number_decimal_token2] = ACTIONS(1933), + [aux_sym__val_number_decimal_token3] = ACTIONS(1933), + [aux_sym__val_number_decimal_token4] = ACTIONS(1933), + [aux_sym__val_number_token1] = ACTIONS(1933), + [aux_sym__val_number_token2] = ACTIONS(1933), + [aux_sym__val_number_token3] = ACTIONS(1933), + [aux_sym__val_number_token4] = ACTIONS(1933), + [aux_sym__val_number_token5] = ACTIONS(1933), + [aux_sym__val_number_token6] = ACTIONS(1933), + [anon_sym_0b] = ACTIONS(1931), + [anon_sym_0o] = ACTIONS(1931), + [anon_sym_0x] = ACTIONS(1931), + [sym_val_date] = ACTIONS(1933), + [anon_sym_DQUOTE] = ACTIONS(1933), + [sym__str_single_quotes] = ACTIONS(1933), + [sym__str_back_ticks] = ACTIONS(1933), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1933), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1933), + [anon_sym_DOT2] = ACTIONS(4810), + [anon_sym_err_GT] = ACTIONS(1931), + [anon_sym_out_GT] = ACTIONS(1931), + [anon_sym_e_GT] = ACTIONS(1931), + [anon_sym_o_GT] = ACTIONS(1931), + [anon_sym_err_PLUSout_GT] = ACTIONS(1931), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1931), + [anon_sym_o_PLUSe_GT] = ACTIONS(1931), + [anon_sym_e_PLUSo_GT] = ACTIONS(1931), + [anon_sym_err_GT_GT] = ACTIONS(1933), + [anon_sym_out_GT_GT] = ACTIONS(1933), + [anon_sym_e_GT_GT] = ACTIONS(1933), + [anon_sym_o_GT_GT] = ACTIONS(1933), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1933), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1933), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1933), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1933), + [aux_sym_unquoted_token1] = ACTIONS(1931), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1933), + }, + [1565] = { + [sym_comment] = STATE(1565), + [sym__newline] = ACTIONS(2028), + [anon_sym_SEMI] = ACTIONS(2028), + [anon_sym_PIPE] = ACTIONS(2028), + [anon_sym_err_GT_PIPE] = ACTIONS(2028), + [anon_sym_out_GT_PIPE] = ACTIONS(2028), + [anon_sym_e_GT_PIPE] = ACTIONS(2028), + [anon_sym_o_GT_PIPE] = ACTIONS(2028), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2028), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2028), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2028), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2028), + [anon_sym_LBRACK] = ACTIONS(2028), + [anon_sym_LPAREN] = ACTIONS(2028), + [anon_sym_RPAREN] = ACTIONS(2028), + [anon_sym_DOLLAR] = ACTIONS(2026), + [anon_sym_DASH_DASH] = ACTIONS(2028), + [anon_sym_DASH2] = ACTIONS(2026), + [anon_sym_LBRACE] = ACTIONS(2028), + [anon_sym_RBRACE] = ACTIONS(2028), + [anon_sym_DOT_DOT] = ACTIONS(2026), + [anon_sym_DOT_DOT2] = ACTIONS(2026), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2026), + [anon_sym_DOT_DOT_LT] = ACTIONS(2026), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2028), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2028), + [anon_sym_null] = ACTIONS(2028), + [anon_sym_true] = ACTIONS(2028), + [anon_sym_false] = ACTIONS(2028), + [aux_sym__val_number_decimal_token1] = ACTIONS(2026), + [aux_sym__val_number_decimal_token2] = ACTIONS(2028), + [aux_sym__val_number_decimal_token3] = ACTIONS(2028), + [aux_sym__val_number_decimal_token4] = ACTIONS(2028), + [aux_sym__val_number_token1] = ACTIONS(2028), + [aux_sym__val_number_token2] = ACTIONS(2028), + [aux_sym__val_number_token3] = ACTIONS(2028), + [aux_sym__val_number_token4] = ACTIONS(2028), + [aux_sym__val_number_token5] = ACTIONS(2028), + [aux_sym__val_number_token6] = ACTIONS(2028), + [anon_sym_0b] = ACTIONS(2026), + [anon_sym_0o] = ACTIONS(2026), + [anon_sym_0x] = ACTIONS(2026), + [sym_val_date] = ACTIONS(2028), + [anon_sym_DQUOTE] = ACTIONS(2028), + [sym__str_single_quotes] = ACTIONS(2028), + [sym__str_back_ticks] = ACTIONS(2028), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2028), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2028), + [anon_sym_err_GT] = ACTIONS(2026), + [anon_sym_out_GT] = ACTIONS(2026), + [anon_sym_e_GT] = ACTIONS(2026), + [anon_sym_o_GT] = ACTIONS(2026), + [anon_sym_err_PLUSout_GT] = ACTIONS(2026), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2026), + [anon_sym_o_PLUSe_GT] = ACTIONS(2026), + [anon_sym_e_PLUSo_GT] = ACTIONS(2026), + [anon_sym_err_GT_GT] = ACTIONS(2028), + [anon_sym_out_GT_GT] = ACTIONS(2028), + [anon_sym_e_GT_GT] = ACTIONS(2028), + [anon_sym_o_GT_GT] = ACTIONS(2028), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2028), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2028), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2028), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2028), + [aux_sym_unquoted_token1] = ACTIONS(2026), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2028), + }, + [1566] = { + [sym_cell_path] = STATE(2071), + [sym_path] = STATE(1811), + [sym_comment] = STATE(1566), + [aux_sym_cell_path_repeat1] = STATE(1638), + [ts_builtin_sym_end] = 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(1939), + [anon_sym_DASH_DASH] = ACTIONS(1941), [anon_sym_DASH2] = ACTIONS(1939), - [anon_sym_in2] = ACTIONS(1939), - [anon_sym_if] = ACTIONS(1939), - [anon_sym_LBRACE] = ACTIONS(1939), - [anon_sym_RBRACE] = ACTIONS(1939), - [anon_sym_EQ_GT] = ACTIONS(1939), - [anon_sym_STAR2] = ACTIONS(1937), - [anon_sym_and2] = ACTIONS(1939), - [anon_sym_xor2] = ACTIONS(1939), - [anon_sym_or2] = ACTIONS(1939), - [anon_sym_not_DASHin2] = ACTIONS(1939), - [anon_sym_starts_DASHwith2] = ACTIONS(1939), - [anon_sym_ends_DASHwith2] = ACTIONS(1939), - [anon_sym_EQ_EQ2] = ACTIONS(1939), - [anon_sym_BANG_EQ2] = ACTIONS(1939), - [anon_sym_LT2] = ACTIONS(1937), - [anon_sym_LT_EQ2] = ACTIONS(1939), - [anon_sym_GT_EQ2] = ACTIONS(1939), - [anon_sym_EQ_TILDE2] = ACTIONS(1939), - [anon_sym_BANG_TILDE2] = ACTIONS(1939), - [anon_sym_STAR_STAR2] = ACTIONS(1939), - [anon_sym_PLUS_PLUS2] = ACTIONS(1939), - [anon_sym_SLASH2] = ACTIONS(1937), - [anon_sym_mod2] = ACTIONS(1939), - [anon_sym_SLASH_SLASH2] = ACTIONS(1939), - [anon_sym_PLUS2] = ACTIONS(1937), - [anon_sym_bit_DASHshl2] = ACTIONS(1939), - [anon_sym_bit_DASHshr2] = ACTIONS(1939), - [anon_sym_bit_DASHand2] = ACTIONS(1939), - [anon_sym_bit_DASHxor2] = ACTIONS(1939), - [anon_sym_bit_DASHor2] = ACTIONS(1939), - [anon_sym_DOT2] = ACTIONS(4912), - [anon_sym_err_GT] = ACTIONS(1937), - [anon_sym_out_GT] = ACTIONS(1937), - [anon_sym_e_GT] = ACTIONS(1937), - [anon_sym_o_GT] = ACTIONS(1937), - [anon_sym_err_PLUSout_GT] = ACTIONS(1937), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1937), - [anon_sym_o_PLUSe_GT] = ACTIONS(1937), - [anon_sym_e_PLUSo_GT] = ACTIONS(1937), - [anon_sym_err_GT_GT] = ACTIONS(1939), - [anon_sym_out_GT_GT] = ACTIONS(1939), - [anon_sym_e_GT_GT] = ACTIONS(1939), - [anon_sym_o_GT_GT] = ACTIONS(1939), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1939), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1939), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1939), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1939), - [anon_sym_POUND] = ACTIONS(251), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_DOT_DOT] = ACTIONS(1939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [anon_sym_null] = ACTIONS(1941), + [anon_sym_true] = ACTIONS(1941), + [anon_sym_false] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1939), + [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), + [aux_sym__val_number_token4] = ACTIONS(1941), + [aux_sym__val_number_token5] = ACTIONS(1941), + [aux_sym__val_number_token6] = ACTIONS(1941), + [anon_sym_0b] = ACTIONS(1939), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0x] = ACTIONS(1939), + [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_DOT2] = ACTIONS(4810), + [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(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(1939), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1941), }, - [1607] = { - [sym_comment] = STATE(1607), - [sym__newline] = ACTIONS(2675), - [anon_sym_SEMI] = ACTIONS(2675), - [anon_sym_PIPE] = ACTIONS(2675), - [anon_sym_err_GT_PIPE] = ACTIONS(2675), - [anon_sym_out_GT_PIPE] = ACTIONS(2675), - [anon_sym_e_GT_PIPE] = ACTIONS(2675), - [anon_sym_o_GT_PIPE] = ACTIONS(2675), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2675), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2675), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2675), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2675), - [anon_sym_LBRACK] = ACTIONS(2675), - [anon_sym_LPAREN] = ACTIONS(2675), - [anon_sym_RPAREN] = ACTIONS(2675), - [anon_sym_DOLLAR] = ACTIONS(4918), - [anon_sym_DASH_DASH] = ACTIONS(2675), - [anon_sym_DASH2] = ACTIONS(4918), - [anon_sym_LBRACE] = ACTIONS(2675), - [anon_sym_DOT_DOT] = ACTIONS(4918), - [anon_sym_DOT_DOT2] = ACTIONS(4786), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4918), - [anon_sym_DOT_DOT_LT] = ACTIONS(4918), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4788), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4788), - [anon_sym_null] = ACTIONS(2675), - [anon_sym_true] = ACTIONS(2675), - [anon_sym_false] = ACTIONS(2675), - [aux_sym__val_number_decimal_token1] = ACTIONS(4918), - [aux_sym__val_number_decimal_token2] = ACTIONS(2675), - [aux_sym__val_number_decimal_token3] = ACTIONS(2675), - [aux_sym__val_number_decimal_token4] = ACTIONS(2675), - [aux_sym__val_number_token1] = ACTIONS(2675), - [aux_sym__val_number_token2] = ACTIONS(2675), - [aux_sym__val_number_token3] = ACTIONS(2675), - [aux_sym__val_number_token4] = ACTIONS(2675), - [aux_sym__val_number_token5] = ACTIONS(2675), - [aux_sym__val_number_token6] = ACTIONS(2675), - [anon_sym_0b] = ACTIONS(4918), - [anon_sym_0o] = ACTIONS(4918), - [anon_sym_0x] = ACTIONS(4918), - [sym_val_date] = ACTIONS(2675), - [anon_sym_DQUOTE] = ACTIONS(2675), - [sym__str_single_quotes] = ACTIONS(2675), - [sym__str_back_ticks] = ACTIONS(2675), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2675), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2675), - [anon_sym_err_GT] = ACTIONS(4918), - [anon_sym_out_GT] = ACTIONS(4918), - [anon_sym_e_GT] = ACTIONS(4918), - [anon_sym_o_GT] = ACTIONS(4918), - [anon_sym_err_PLUSout_GT] = ACTIONS(4918), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4918), - [anon_sym_o_PLUSe_GT] = ACTIONS(4918), - [anon_sym_e_PLUSo_GT] = ACTIONS(4918), - [anon_sym_err_GT_GT] = ACTIONS(2675), - [anon_sym_out_GT_GT] = ACTIONS(2675), - [anon_sym_e_GT_GT] = ACTIONS(2675), - [anon_sym_o_GT_GT] = ACTIONS(2675), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2675), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2675), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2675), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2675), - [aux_sym_unquoted_token1] = ACTIONS(4918), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2675), + [1567] = { + [sym_cell_path] = STATE(2072), + [sym_path] = STATE(1811), + [sym_comment] = STATE(1567), + [aux_sym_cell_path_repeat1] = STATE(1638), + [ts_builtin_sym_end] = ACTIONS(1911), + [sym__newline] = ACTIONS(1911), + [anon_sym_SEMI] = ACTIONS(1911), + [anon_sym_PIPE] = ACTIONS(1911), + [anon_sym_err_GT_PIPE] = ACTIONS(1911), + [anon_sym_out_GT_PIPE] = ACTIONS(1911), + [anon_sym_e_GT_PIPE] = ACTIONS(1911), + [anon_sym_o_GT_PIPE] = ACTIONS(1911), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1911), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1911), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1911), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1911), + [anon_sym_LBRACK] = ACTIONS(1911), + [anon_sym_LPAREN] = ACTIONS(1911), + [anon_sym_DOLLAR] = ACTIONS(1909), + [anon_sym_DASH_DASH] = ACTIONS(1911), + [anon_sym_DASH2] = ACTIONS(1909), + [anon_sym_LBRACE] = ACTIONS(1911), + [anon_sym_DOT_DOT] = ACTIONS(1909), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1911), + [anon_sym_DOT_DOT_LT] = ACTIONS(1911), + [anon_sym_null] = ACTIONS(1911), + [anon_sym_true] = ACTIONS(1911), + [anon_sym_false] = ACTIONS(1911), + [aux_sym__val_number_decimal_token1] = ACTIONS(1909), + [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), + [aux_sym__val_number_token4] = ACTIONS(1911), + [aux_sym__val_number_token5] = ACTIONS(1911), + [aux_sym__val_number_token6] = 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_DOT2] = ACTIONS(4810), + [anon_sym_err_GT] = ACTIONS(1909), + [anon_sym_out_GT] = ACTIONS(1909), + [anon_sym_e_GT] = ACTIONS(1909), + [anon_sym_o_GT] = ACTIONS(1909), + [anon_sym_err_PLUSout_GT] = ACTIONS(1909), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1909), + [anon_sym_o_PLUSe_GT] = ACTIONS(1909), + [anon_sym_e_PLUSo_GT] = ACTIONS(1909), + [anon_sym_err_GT_GT] = ACTIONS(1911), + [anon_sym_out_GT_GT] = ACTIONS(1911), + [anon_sym_e_GT_GT] = ACTIONS(1911), + [anon_sym_o_GT_GT] = ACTIONS(1911), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1911), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1911), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1911), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1911), + [aux_sym_unquoted_token1] = ACTIONS(1909), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1911), }, - [1608] = { - [sym_cell_path] = STATE(2021), - [sym_path] = STATE(1532), - [sym_comment] = STATE(1608), - [aux_sym_cell_path_repeat1] = STATE(1386), + [1568] = { + [sym_cell_path] = STATE(2076), + [sym_path] = STATE(1811), + [sym_comment] = STATE(1568), + [aux_sym_cell_path_repeat1] = STATE(1638), + [ts_builtin_sym_end] = 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_DASH2] = ACTIONS(1839), + [anon_sym_LBRACE] = ACTIONS(1841), + [anon_sym_DOT_DOT] = ACTIONS(1839), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1841), + [anon_sym_DOT_DOT_LT] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1841), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(1841), + [aux_sym__val_number_token5] = ACTIONS(1841), + [aux_sym__val_number_token6] = 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_DOT2] = ACTIONS(4810), + [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), + [sym_raw_string_begin] = ACTIONS(1841), + }, + [1569] = { + [sym_cell_path] = STATE(2111), + [sym_path] = STATE(1428), + [sym_comment] = STATE(1569), + [aux_sym_cell_path_repeat1] = STATE(1338), + [sym__newline] = ACTIONS(1919), + [anon_sym_SEMI] = ACTIONS(1919), + [anon_sym_PIPE] = ACTIONS(1919), + [anon_sym_err_GT_PIPE] = ACTIONS(1919), + [anon_sym_out_GT_PIPE] = ACTIONS(1919), + [anon_sym_e_GT_PIPE] = ACTIONS(1919), + [anon_sym_o_GT_PIPE] = ACTIONS(1919), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1919), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1919), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1919), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1919), + [anon_sym_RPAREN] = ACTIONS(1919), + [anon_sym_GT2] = ACTIONS(1917), + [anon_sym_DASH2] = ACTIONS(1919), + [anon_sym_in2] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1919), + [anon_sym_RBRACE] = ACTIONS(1919), + [anon_sym_EQ_GT] = ACTIONS(1919), + [anon_sym_STAR2] = ACTIONS(1917), + [anon_sym_and2] = ACTIONS(1919), + [anon_sym_xor2] = ACTIONS(1919), + [anon_sym_or2] = ACTIONS(1919), + [anon_sym_not_DASHin2] = ACTIONS(1919), + [anon_sym_has2] = ACTIONS(1919), + [anon_sym_not_DASHhas2] = ACTIONS(1919), + [anon_sym_starts_DASHwith2] = ACTIONS(1919), + [anon_sym_ends_DASHwith2] = ACTIONS(1919), + [anon_sym_EQ_EQ2] = ACTIONS(1919), + [anon_sym_BANG_EQ2] = ACTIONS(1919), + [anon_sym_LT2] = ACTIONS(1917), + [anon_sym_LT_EQ2] = ACTIONS(1919), + [anon_sym_GT_EQ2] = ACTIONS(1919), + [anon_sym_EQ_TILDE2] = ACTIONS(1919), + [anon_sym_BANG_TILDE2] = ACTIONS(1919), + [anon_sym_STAR_STAR2] = ACTIONS(1919), + [anon_sym_PLUS_PLUS2] = ACTIONS(1919), + [anon_sym_SLASH2] = ACTIONS(1917), + [anon_sym_mod2] = ACTIONS(1919), + [anon_sym_SLASH_SLASH2] = ACTIONS(1919), + [anon_sym_PLUS2] = ACTIONS(1917), + [anon_sym_bit_DASHshl2] = ACTIONS(1919), + [anon_sym_bit_DASHshr2] = ACTIONS(1919), + [anon_sym_bit_DASHand2] = ACTIONS(1919), + [anon_sym_bit_DASHxor2] = ACTIONS(1919), + [anon_sym_bit_DASHor2] = ACTIONS(1919), + [anon_sym_DOT2] = ACTIONS(4770), + [anon_sym_err_GT] = ACTIONS(1917), + [anon_sym_out_GT] = ACTIONS(1917), + [anon_sym_e_GT] = ACTIONS(1917), + [anon_sym_o_GT] = ACTIONS(1917), + [anon_sym_err_PLUSout_GT] = ACTIONS(1917), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1917), + [anon_sym_o_PLUSe_GT] = ACTIONS(1917), + [anon_sym_e_PLUSo_GT] = ACTIONS(1917), + [anon_sym_err_GT_GT] = ACTIONS(1919), + [anon_sym_out_GT_GT] = ACTIONS(1919), + [anon_sym_e_GT_GT] = ACTIONS(1919), + [anon_sym_o_GT_GT] = ACTIONS(1919), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1919), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1919), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1919), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1919), + [anon_sym_POUND] = ACTIONS(247), + }, + [1570] = { + [sym_comment] = STATE(1570), + [sym__newline] = ACTIONS(4843), + [anon_sym_SEMI] = ACTIONS(4843), + [anon_sym_PIPE] = ACTIONS(4843), + [anon_sym_err_GT_PIPE] = ACTIONS(4843), + [anon_sym_out_GT_PIPE] = ACTIONS(4843), + [anon_sym_e_GT_PIPE] = ACTIONS(4843), + [anon_sym_o_GT_PIPE] = ACTIONS(4843), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4843), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4843), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4843), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4843), + [anon_sym_LBRACK] = ACTIONS(4843), + [anon_sym_LPAREN] = ACTIONS(4843), + [anon_sym_RPAREN] = ACTIONS(4843), + [anon_sym_DOLLAR] = ACTIONS(4845), + [anon_sym_DASH_DASH] = ACTIONS(4843), + [anon_sym_DASH2] = ACTIONS(4845), + [anon_sym_LBRACE] = ACTIONS(4843), + [anon_sym_RBRACE] = ACTIONS(4843), + [anon_sym_DOT_DOT] = ACTIONS(4845), + [anon_sym_DOT_DOT2] = ACTIONS(4806), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4845), + [anon_sym_DOT_DOT_LT] = ACTIONS(4845), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4808), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4808), + [anon_sym_null] = ACTIONS(4843), + [anon_sym_true] = ACTIONS(4843), + [anon_sym_false] = ACTIONS(4843), + [aux_sym__val_number_decimal_token1] = ACTIONS(4845), + [aux_sym__val_number_decimal_token2] = ACTIONS(4843), + [aux_sym__val_number_decimal_token3] = ACTIONS(4843), + [aux_sym__val_number_decimal_token4] = ACTIONS(4843), + [aux_sym__val_number_token1] = ACTIONS(4843), + [aux_sym__val_number_token2] = ACTIONS(4843), + [aux_sym__val_number_token3] = ACTIONS(4843), + [aux_sym__val_number_token4] = ACTIONS(4843), + [aux_sym__val_number_token5] = ACTIONS(4843), + [aux_sym__val_number_token6] = ACTIONS(4843), + [anon_sym_0b] = ACTIONS(4845), + [anon_sym_0o] = ACTIONS(4845), + [anon_sym_0x] = ACTIONS(4845), + [sym_val_date] = ACTIONS(4843), + [anon_sym_DQUOTE] = ACTIONS(4843), + [sym__str_single_quotes] = ACTIONS(4843), + [sym__str_back_ticks] = ACTIONS(4843), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4843), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4843), + [anon_sym_err_GT] = ACTIONS(4845), + [anon_sym_out_GT] = ACTIONS(4845), + [anon_sym_e_GT] = ACTIONS(4845), + [anon_sym_o_GT] = ACTIONS(4845), + [anon_sym_err_PLUSout_GT] = ACTIONS(4845), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4845), + [anon_sym_o_PLUSe_GT] = ACTIONS(4845), + [anon_sym_e_PLUSo_GT] = ACTIONS(4845), + [anon_sym_err_GT_GT] = ACTIONS(4843), + [anon_sym_out_GT_GT] = ACTIONS(4843), + [anon_sym_e_GT_GT] = ACTIONS(4843), + [anon_sym_o_GT_GT] = ACTIONS(4843), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4843), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4843), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4843), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4843), + [aux_sym_unquoted_token1] = ACTIONS(4845), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4843), + }, + [1571] = { + [sym_cell_path] = STATE(2077), + [sym_path] = STATE(1811), + [sym_comment] = STATE(1571), + [aux_sym_cell_path_repeat1] = STATE(1638), + [ts_builtin_sym_end] = 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_DASH2] = ACTIONS(1847), + [anon_sym_LBRACE] = ACTIONS(1849), + [anon_sym_DOT_DOT] = ACTIONS(1847), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1849), + [anon_sym_DOT_DOT_LT] = ACTIONS(1849), + [anon_sym_null] = ACTIONS(1849), + [anon_sym_true] = ACTIONS(1849), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(1849), + [aux_sym__val_number_token5] = ACTIONS(1849), + [aux_sym__val_number_token6] = 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_DOT2] = ACTIONS(4810), + [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), + [sym_raw_string_begin] = ACTIONS(1849), + }, + [1572] = { + [sym_cell_path] = STATE(2078), + [sym_path] = STATE(1811), + [sym_comment] = STATE(1572), + [aux_sym_cell_path_repeat1] = STATE(1638), + [ts_builtin_sym_end] = ACTIONS(1855), + [sym__newline] = ACTIONS(1855), + [anon_sym_SEMI] = ACTIONS(1855), + [anon_sym_PIPE] = ACTIONS(1855), + [anon_sym_err_GT_PIPE] = ACTIONS(1855), + [anon_sym_out_GT_PIPE] = ACTIONS(1855), + [anon_sym_e_GT_PIPE] = ACTIONS(1855), + [anon_sym_o_GT_PIPE] = ACTIONS(1855), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1855), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1855), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1855), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1855), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_LPAREN] = ACTIONS(1855), + [anon_sym_DOLLAR] = ACTIONS(1853), + [anon_sym_DASH_DASH] = ACTIONS(1855), + [anon_sym_DASH2] = ACTIONS(1853), + [anon_sym_LBRACE] = ACTIONS(1855), + [anon_sym_DOT_DOT] = ACTIONS(1853), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1855), + [anon_sym_DOT_DOT_LT] = ACTIONS(1855), + [anon_sym_null] = ACTIONS(1855), + [anon_sym_true] = ACTIONS(1855), + [anon_sym_false] = ACTIONS(1855), + [aux_sym__val_number_decimal_token1] = ACTIONS(1853), + [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), + [aux_sym__val_number_token4] = ACTIONS(1855), + [aux_sym__val_number_token5] = ACTIONS(1855), + [aux_sym__val_number_token6] = ACTIONS(1855), + [anon_sym_0b] = ACTIONS(1853), + [anon_sym_0o] = ACTIONS(1853), + [anon_sym_0x] = ACTIONS(1853), + [sym_val_date] = ACTIONS(1855), + [anon_sym_DQUOTE] = ACTIONS(1855), + [sym__str_single_quotes] = ACTIONS(1855), + [sym__str_back_ticks] = ACTIONS(1855), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1855), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1855), + [anon_sym_DOT2] = ACTIONS(4810), + [anon_sym_err_GT] = ACTIONS(1853), + [anon_sym_out_GT] = ACTIONS(1853), + [anon_sym_e_GT] = ACTIONS(1853), + [anon_sym_o_GT] = ACTIONS(1853), + [anon_sym_err_PLUSout_GT] = ACTIONS(1853), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1853), + [anon_sym_o_PLUSe_GT] = ACTIONS(1853), + [anon_sym_e_PLUSo_GT] = ACTIONS(1853), + [anon_sym_err_GT_GT] = ACTIONS(1855), + [anon_sym_out_GT_GT] = ACTIONS(1855), + [anon_sym_e_GT_GT] = ACTIONS(1855), + [anon_sym_o_GT_GT] = ACTIONS(1855), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1855), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1855), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1855), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1855), + [aux_sym_unquoted_token1] = ACTIONS(1853), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1855), + }, + [1573] = { + [sym_cell_path] = STATE(2079), + [sym_path] = STATE(1811), + [sym_comment] = STATE(1573), + [aux_sym_cell_path_repeat1] = STATE(1638), + [ts_builtin_sym_end] = ACTIONS(1871), + [sym__newline] = ACTIONS(1871), + [anon_sym_SEMI] = ACTIONS(1871), + [anon_sym_PIPE] = ACTIONS(1871), + [anon_sym_err_GT_PIPE] = ACTIONS(1871), + [anon_sym_out_GT_PIPE] = ACTIONS(1871), + [anon_sym_e_GT_PIPE] = ACTIONS(1871), + [anon_sym_o_GT_PIPE] = ACTIONS(1871), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1871), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1871), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1871), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(1871), + [anon_sym_DOLLAR] = ACTIONS(1869), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_DASH2] = ACTIONS(1869), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1869), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1871), + [anon_sym_DOT_DOT_LT] = ACTIONS(1871), + [anon_sym_null] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(1871), + [anon_sym_false] = ACTIONS(1871), + [aux_sym__val_number_decimal_token1] = ACTIONS(1869), + [aux_sym__val_number_decimal_token2] = 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), + [aux_sym__val_number_token4] = ACTIONS(1871), + [aux_sym__val_number_token5] = ACTIONS(1871), + [aux_sym__val_number_token6] = ACTIONS(1871), + [anon_sym_0b] = ACTIONS(1869), + [anon_sym_0o] = ACTIONS(1869), + [anon_sym_0x] = ACTIONS(1869), + [sym_val_date] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1871), + [sym__str_single_quotes] = ACTIONS(1871), + [sym__str_back_ticks] = ACTIONS(1871), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1871), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1871), + [anon_sym_DOT2] = ACTIONS(4810), + [anon_sym_err_GT] = ACTIONS(1869), + [anon_sym_out_GT] = ACTIONS(1869), + [anon_sym_e_GT] = ACTIONS(1869), + [anon_sym_o_GT] = ACTIONS(1869), + [anon_sym_err_PLUSout_GT] = ACTIONS(1869), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1869), + [anon_sym_o_PLUSe_GT] = ACTIONS(1869), + [anon_sym_e_PLUSo_GT] = ACTIONS(1869), + [anon_sym_err_GT_GT] = ACTIONS(1871), + [anon_sym_out_GT_GT] = ACTIONS(1871), + [anon_sym_e_GT_GT] = ACTIONS(1871), + [anon_sym_o_GT_GT] = ACTIONS(1871), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1871), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1871), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1871), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1871), + [aux_sym_unquoted_token1] = ACTIONS(1869), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1871), + }, + [1574] = { + [sym_cell_path] = STATE(2083), + [sym_path] = STATE(1811), + [sym_comment] = STATE(1574), + [aux_sym_cell_path_repeat1] = STATE(1638), + [ts_builtin_sym_end] = ACTIONS(1879), + [sym__newline] = ACTIONS(1879), + [anon_sym_SEMI] = ACTIONS(1879), + [anon_sym_PIPE] = ACTIONS(1879), + [anon_sym_err_GT_PIPE] = ACTIONS(1879), + [anon_sym_out_GT_PIPE] = ACTIONS(1879), + [anon_sym_e_GT_PIPE] = ACTIONS(1879), + [anon_sym_o_GT_PIPE] = ACTIONS(1879), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1879), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1879), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1879), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(1879), + [anon_sym_DOLLAR] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1879), + [anon_sym_DASH2] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1879), + [anon_sym_DOT_DOT] = ACTIONS(1877), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1879), + [anon_sym_DOT_DOT_LT] = ACTIONS(1879), + [anon_sym_null] = ACTIONS(1879), + [anon_sym_true] = ACTIONS(1879), + [anon_sym_false] = ACTIONS(1879), + [aux_sym__val_number_decimal_token1] = ACTIONS(1877), + [aux_sym__val_number_decimal_token2] = 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), + [aux_sym__val_number_token4] = ACTIONS(1879), + [aux_sym__val_number_token5] = ACTIONS(1879), + [aux_sym__val_number_token6] = ACTIONS(1879), + [anon_sym_0b] = ACTIONS(1877), + [anon_sym_0o] = ACTIONS(1877), + [anon_sym_0x] = ACTIONS(1877), + [sym_val_date] = ACTIONS(1879), + [anon_sym_DQUOTE] = ACTIONS(1879), + [sym__str_single_quotes] = ACTIONS(1879), + [sym__str_back_ticks] = ACTIONS(1879), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1879), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1879), + [anon_sym_DOT2] = ACTIONS(4810), + [anon_sym_err_GT] = ACTIONS(1877), + [anon_sym_out_GT] = ACTIONS(1877), + [anon_sym_e_GT] = ACTIONS(1877), + [anon_sym_o_GT] = ACTIONS(1877), + [anon_sym_err_PLUSout_GT] = ACTIONS(1877), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1877), + [anon_sym_o_PLUSe_GT] = ACTIONS(1877), + [anon_sym_e_PLUSo_GT] = ACTIONS(1877), + [anon_sym_err_GT_GT] = ACTIONS(1879), + [anon_sym_out_GT_GT] = ACTIONS(1879), + [anon_sym_e_GT_GT] = ACTIONS(1879), + [anon_sym_o_GT_GT] = ACTIONS(1879), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1879), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1879), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1879), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1879), + [aux_sym_unquoted_token1] = ACTIONS(1877), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1879), + }, + [1575] = { + [sym_cell_path] = STATE(2086), + [sym_path] = STATE(1811), + [sym_comment] = STATE(1575), + [aux_sym_cell_path_repeat1] = STATE(1638), + [ts_builtin_sym_end] = ACTIONS(1971), + [sym__newline] = ACTIONS(1971), + [anon_sym_SEMI] = ACTIONS(1971), + [anon_sym_PIPE] = ACTIONS(1971), + [anon_sym_err_GT_PIPE] = ACTIONS(1971), + [anon_sym_out_GT_PIPE] = ACTIONS(1971), + [anon_sym_e_GT_PIPE] = ACTIONS(1971), + [anon_sym_o_GT_PIPE] = ACTIONS(1971), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1971), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1971), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1971), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1971), + [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_LPAREN] = ACTIONS(1971), + [anon_sym_DOLLAR] = ACTIONS(1969), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_DASH2] = ACTIONS(1969), + [anon_sym_LBRACE] = ACTIONS(1971), + [anon_sym_DOT_DOT] = ACTIONS(1969), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1971), + [anon_sym_DOT_DOT_LT] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1971), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [aux_sym__val_number_decimal_token1] = ACTIONS(1969), + [aux_sym__val_number_decimal_token2] = ACTIONS(1971), + [aux_sym__val_number_decimal_token3] = ACTIONS(1971), + [aux_sym__val_number_decimal_token4] = ACTIONS(1971), + [aux_sym__val_number_token1] = ACTIONS(1971), + [aux_sym__val_number_token2] = ACTIONS(1971), + [aux_sym__val_number_token3] = ACTIONS(1971), + [aux_sym__val_number_token4] = ACTIONS(1971), + [aux_sym__val_number_token5] = ACTIONS(1971), + [aux_sym__val_number_token6] = ACTIONS(1971), + [anon_sym_0b] = ACTIONS(1969), + [anon_sym_0o] = ACTIONS(1969), + [anon_sym_0x] = ACTIONS(1969), + [sym_val_date] = ACTIONS(1971), + [anon_sym_DQUOTE] = ACTIONS(1971), + [sym__str_single_quotes] = ACTIONS(1971), + [sym__str_back_ticks] = ACTIONS(1971), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1971), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1971), + [anon_sym_DOT2] = ACTIONS(4810), + [anon_sym_err_GT] = ACTIONS(1969), + [anon_sym_out_GT] = ACTIONS(1969), + [anon_sym_e_GT] = ACTIONS(1969), + [anon_sym_o_GT] = ACTIONS(1969), + [anon_sym_err_PLUSout_GT] = ACTIONS(1969), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1969), + [anon_sym_o_PLUSe_GT] = ACTIONS(1969), + [anon_sym_e_PLUSo_GT] = ACTIONS(1969), + [anon_sym_err_GT_GT] = ACTIONS(1971), + [anon_sym_out_GT_GT] = ACTIONS(1971), + [anon_sym_e_GT_GT] = ACTIONS(1971), + [anon_sym_o_GT_GT] = ACTIONS(1971), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1971), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1971), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1971), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1971), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1971), + }, + [1576] = { + [sym_cell_path] = STATE(2093), + [sym_path] = STATE(1811), + [sym_comment] = STATE(1576), + [aux_sym_cell_path_repeat1] = STATE(1638), + [ts_builtin_sym_end] = ACTIONS(1835), + [sym__newline] = ACTIONS(1835), + [anon_sym_SEMI] = ACTIONS(1835), + [anon_sym_PIPE] = ACTIONS(1835), + [anon_sym_err_GT_PIPE] = ACTIONS(1835), + [anon_sym_out_GT_PIPE] = ACTIONS(1835), + [anon_sym_e_GT_PIPE] = ACTIONS(1835), + [anon_sym_o_GT_PIPE] = ACTIONS(1835), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1835), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1835), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1835), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_LPAREN] = ACTIONS(1835), + [anon_sym_DOLLAR] = ACTIONS(1833), + [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_DASH2] = ACTIONS(1833), + [anon_sym_LBRACE] = ACTIONS(1835), + [anon_sym_DOT_DOT] = ACTIONS(1833), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1835), + [anon_sym_DOT_DOT_LT] = ACTIONS(1835), + [anon_sym_null] = ACTIONS(1835), + [anon_sym_true] = ACTIONS(1835), + [anon_sym_false] = ACTIONS(1835), + [aux_sym__val_number_decimal_token1] = ACTIONS(1833), + [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), + [aux_sym__val_number_token4] = ACTIONS(1835), + [aux_sym__val_number_token5] = ACTIONS(1835), + [aux_sym__val_number_token6] = ACTIONS(1835), + [anon_sym_0b] = ACTIONS(1833), + [anon_sym_0o] = ACTIONS(1833), + [anon_sym_0x] = ACTIONS(1833), + [sym_val_date] = ACTIONS(1835), + [anon_sym_DQUOTE] = ACTIONS(1835), + [sym__str_single_quotes] = ACTIONS(1835), + [sym__str_back_ticks] = ACTIONS(1835), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1835), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1835), + [anon_sym_DOT2] = ACTIONS(4810), + [anon_sym_err_GT] = ACTIONS(1833), + [anon_sym_out_GT] = ACTIONS(1833), + [anon_sym_e_GT] = ACTIONS(1833), + [anon_sym_o_GT] = ACTIONS(1833), + [anon_sym_err_PLUSout_GT] = ACTIONS(1833), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1833), + [anon_sym_o_PLUSe_GT] = ACTIONS(1833), + [anon_sym_e_PLUSo_GT] = ACTIONS(1833), + [anon_sym_err_GT_GT] = ACTIONS(1835), + [anon_sym_out_GT_GT] = ACTIONS(1835), + [anon_sym_e_GT_GT] = ACTIONS(1835), + [anon_sym_o_GT_GT] = ACTIONS(1835), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1835), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1835), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1835), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1835), + [aux_sym_unquoted_token1] = ACTIONS(1833), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1835), + }, + [1577] = { + [sym_cell_path] = STATE(2094), + [sym_path] = STATE(1811), + [sym_comment] = STATE(1577), + [aux_sym_cell_path_repeat1] = STATE(1638), + [ts_builtin_sym_end] = ACTIONS(1863), + [sym__newline] = ACTIONS(1863), + [anon_sym_SEMI] = ACTIONS(1863), + [anon_sym_PIPE] = ACTIONS(1863), + [anon_sym_err_GT_PIPE] = ACTIONS(1863), + [anon_sym_out_GT_PIPE] = ACTIONS(1863), + [anon_sym_e_GT_PIPE] = ACTIONS(1863), + [anon_sym_o_GT_PIPE] = ACTIONS(1863), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1863), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1863), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1863), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1863), + [anon_sym_LBRACK] = ACTIONS(1863), + [anon_sym_LPAREN] = ACTIONS(1863), + [anon_sym_DOLLAR] = ACTIONS(1861), + [anon_sym_DASH_DASH] = ACTIONS(1863), + [anon_sym_DASH2] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(1863), + [anon_sym_DOT_DOT] = ACTIONS(1861), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1863), + [anon_sym_DOT_DOT_LT] = ACTIONS(1863), + [anon_sym_null] = ACTIONS(1863), + [anon_sym_true] = ACTIONS(1863), + [anon_sym_false] = ACTIONS(1863), + [aux_sym__val_number_decimal_token1] = ACTIONS(1861), + [aux_sym__val_number_decimal_token2] = 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), + [aux_sym__val_number_token4] = ACTIONS(1863), + [aux_sym__val_number_token5] = ACTIONS(1863), + [aux_sym__val_number_token6] = ACTIONS(1863), + [anon_sym_0b] = ACTIONS(1861), + [anon_sym_0o] = ACTIONS(1861), + [anon_sym_0x] = ACTIONS(1861), + [sym_val_date] = ACTIONS(1863), + [anon_sym_DQUOTE] = ACTIONS(1863), + [sym__str_single_quotes] = ACTIONS(1863), + [sym__str_back_ticks] = ACTIONS(1863), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1863), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1863), + [anon_sym_DOT2] = ACTIONS(4810), + [anon_sym_err_GT] = ACTIONS(1861), + [anon_sym_out_GT] = ACTIONS(1861), + [anon_sym_e_GT] = ACTIONS(1861), + [anon_sym_o_GT] = ACTIONS(1861), + [anon_sym_err_PLUSout_GT] = ACTIONS(1861), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1861), + [anon_sym_o_PLUSe_GT] = ACTIONS(1861), + [anon_sym_e_PLUSo_GT] = ACTIONS(1861), + [anon_sym_err_GT_GT] = ACTIONS(1863), + [anon_sym_out_GT_GT] = ACTIONS(1863), + [anon_sym_e_GT_GT] = ACTIONS(1863), + [anon_sym_o_GT_GT] = ACTIONS(1863), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1863), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1863), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1863), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1863), + [aux_sym_unquoted_token1] = ACTIONS(1861), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1863), + }, + [1578] = { + [sym_cell_path] = STATE(2095), + [sym_path] = STATE(1811), + [sym_comment] = STATE(1578), + [aux_sym_cell_path_repeat1] = STATE(1638), + [ts_builtin_sym_end] = ACTIONS(1875), + [sym__newline] = ACTIONS(1875), + [anon_sym_SEMI] = ACTIONS(1875), + [anon_sym_PIPE] = ACTIONS(1875), + [anon_sym_err_GT_PIPE] = ACTIONS(1875), + [anon_sym_out_GT_PIPE] = ACTIONS(1875), + [anon_sym_e_GT_PIPE] = ACTIONS(1875), + [anon_sym_o_GT_PIPE] = ACTIONS(1875), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1875), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1875), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1875), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1875), + [anon_sym_LBRACK] = ACTIONS(1875), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_DOLLAR] = ACTIONS(1873), + [anon_sym_DASH_DASH] = ACTIONS(1875), + [anon_sym_DASH2] = ACTIONS(1873), + [anon_sym_LBRACE] = ACTIONS(1875), + [anon_sym_DOT_DOT] = ACTIONS(1873), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1875), + [anon_sym_DOT_DOT_LT] = ACTIONS(1875), + [anon_sym_null] = ACTIONS(1875), + [anon_sym_true] = ACTIONS(1875), + [anon_sym_false] = ACTIONS(1875), + [aux_sym__val_number_decimal_token1] = ACTIONS(1873), + [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), + [aux_sym__val_number_token4] = ACTIONS(1875), + [aux_sym__val_number_token5] = ACTIONS(1875), + [aux_sym__val_number_token6] = ACTIONS(1875), + [anon_sym_0b] = ACTIONS(1873), + [anon_sym_0o] = ACTIONS(1873), + [anon_sym_0x] = ACTIONS(1873), + [sym_val_date] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym__str_single_quotes] = ACTIONS(1875), + [sym__str_back_ticks] = ACTIONS(1875), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1875), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1875), + [anon_sym_DOT2] = ACTIONS(4810), + [anon_sym_err_GT] = ACTIONS(1873), + [anon_sym_out_GT] = ACTIONS(1873), + [anon_sym_e_GT] = ACTIONS(1873), + [anon_sym_o_GT] = ACTIONS(1873), + [anon_sym_err_PLUSout_GT] = ACTIONS(1873), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1873), + [anon_sym_o_PLUSe_GT] = ACTIONS(1873), + [anon_sym_e_PLUSo_GT] = ACTIONS(1873), + [anon_sym_err_GT_GT] = ACTIONS(1875), + [anon_sym_out_GT_GT] = ACTIONS(1875), + [anon_sym_e_GT_GT] = ACTIONS(1875), + [anon_sym_o_GT_GT] = ACTIONS(1875), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1875), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1875), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1875), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1875), + [aux_sym_unquoted_token1] = ACTIONS(1873), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1875), + }, + [1579] = { + [sym_cell_path] = STATE(2096), + [sym_path] = STATE(1811), + [sym_comment] = STATE(1579), + [aux_sym_cell_path_repeat1] = STATE(1638), + [ts_builtin_sym_end] = ACTIONS(1883), + [sym__newline] = ACTIONS(1883), + [anon_sym_SEMI] = ACTIONS(1883), + [anon_sym_PIPE] = ACTIONS(1883), + [anon_sym_err_GT_PIPE] = ACTIONS(1883), + [anon_sym_out_GT_PIPE] = ACTIONS(1883), + [anon_sym_e_GT_PIPE] = ACTIONS(1883), + [anon_sym_o_GT_PIPE] = ACTIONS(1883), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1883), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1883), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1883), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1883), + [anon_sym_LBRACK] = ACTIONS(1883), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_DOLLAR] = ACTIONS(1881), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [anon_sym_DASH2] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1883), + [anon_sym_DOT_DOT] = ACTIONS(1881), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1883), + [anon_sym_DOT_DOT_LT] = ACTIONS(1883), + [anon_sym_null] = ACTIONS(1883), + [anon_sym_true] = ACTIONS(1883), + [anon_sym_false] = ACTIONS(1883), + [aux_sym__val_number_decimal_token1] = ACTIONS(1881), + [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), + [aux_sym__val_number_token4] = ACTIONS(1883), + [aux_sym__val_number_token5] = ACTIONS(1883), + [aux_sym__val_number_token6] = ACTIONS(1883), + [anon_sym_0b] = ACTIONS(1881), + [anon_sym_0o] = ACTIONS(1881), + [anon_sym_0x] = ACTIONS(1881), + [sym_val_date] = ACTIONS(1883), + [anon_sym_DQUOTE] = ACTIONS(1883), + [sym__str_single_quotes] = ACTIONS(1883), + [sym__str_back_ticks] = ACTIONS(1883), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1883), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1883), + [anon_sym_DOT2] = ACTIONS(4810), + [anon_sym_err_GT] = ACTIONS(1881), + [anon_sym_out_GT] = ACTIONS(1881), + [anon_sym_e_GT] = ACTIONS(1881), + [anon_sym_o_GT] = ACTIONS(1881), + [anon_sym_err_PLUSout_GT] = ACTIONS(1881), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1881), + [anon_sym_o_PLUSe_GT] = ACTIONS(1881), + [anon_sym_e_PLUSo_GT] = ACTIONS(1881), + [anon_sym_err_GT_GT] = ACTIONS(1883), + [anon_sym_out_GT_GT] = ACTIONS(1883), + [anon_sym_e_GT_GT] = ACTIONS(1883), + [anon_sym_o_GT_GT] = ACTIONS(1883), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1883), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1883), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1883), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1883), + [aux_sym_unquoted_token1] = ACTIONS(1881), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1883), + }, + [1580] = { + [sym_cell_path] = STATE(2097), + [sym_path] = STATE(1811), + [sym_comment] = STATE(1580), + [aux_sym_cell_path_repeat1] = STATE(1638), + [ts_builtin_sym_end] = ACTIONS(1887), + [sym__newline] = ACTIONS(1887), + [anon_sym_SEMI] = ACTIONS(1887), + [anon_sym_PIPE] = ACTIONS(1887), + [anon_sym_err_GT_PIPE] = ACTIONS(1887), + [anon_sym_out_GT_PIPE] = ACTIONS(1887), + [anon_sym_e_GT_PIPE] = ACTIONS(1887), + [anon_sym_o_GT_PIPE] = ACTIONS(1887), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1887), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1887), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1887), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1887), + [anon_sym_LBRACK] = ACTIONS(1887), + [anon_sym_LPAREN] = ACTIONS(1887), + [anon_sym_DOLLAR] = ACTIONS(1885), + [anon_sym_DASH_DASH] = ACTIONS(1887), + [anon_sym_DASH2] = ACTIONS(1885), + [anon_sym_LBRACE] = ACTIONS(1887), + [anon_sym_DOT_DOT] = ACTIONS(1885), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1887), + [anon_sym_DOT_DOT_LT] = ACTIONS(1887), + [anon_sym_null] = ACTIONS(1887), + [anon_sym_true] = ACTIONS(1887), + [anon_sym_false] = ACTIONS(1887), + [aux_sym__val_number_decimal_token1] = ACTIONS(1885), + [aux_sym__val_number_decimal_token2] = ACTIONS(1887), + [aux_sym__val_number_decimal_token3] = ACTIONS(1887), + [aux_sym__val_number_decimal_token4] = ACTIONS(1887), + [aux_sym__val_number_token1] = ACTIONS(1887), + [aux_sym__val_number_token2] = ACTIONS(1887), + [aux_sym__val_number_token3] = ACTIONS(1887), + [aux_sym__val_number_token4] = ACTIONS(1887), + [aux_sym__val_number_token5] = ACTIONS(1887), + [aux_sym__val_number_token6] = ACTIONS(1887), + [anon_sym_0b] = ACTIONS(1885), + [anon_sym_0o] = ACTIONS(1885), + [anon_sym_0x] = ACTIONS(1885), + [sym_val_date] = ACTIONS(1887), + [anon_sym_DQUOTE] = ACTIONS(1887), + [sym__str_single_quotes] = ACTIONS(1887), + [sym__str_back_ticks] = ACTIONS(1887), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1887), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1887), + [anon_sym_DOT2] = ACTIONS(4810), + [anon_sym_err_GT] = ACTIONS(1885), + [anon_sym_out_GT] = ACTIONS(1885), + [anon_sym_e_GT] = ACTIONS(1885), + [anon_sym_o_GT] = ACTIONS(1885), + [anon_sym_err_PLUSout_GT] = ACTIONS(1885), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1885), + [anon_sym_o_PLUSe_GT] = ACTIONS(1885), + [anon_sym_e_PLUSo_GT] = ACTIONS(1885), + [anon_sym_err_GT_GT] = ACTIONS(1887), + [anon_sym_out_GT_GT] = ACTIONS(1887), + [anon_sym_e_GT_GT] = ACTIONS(1887), + [anon_sym_o_GT_GT] = ACTIONS(1887), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1887), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1887), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1887), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1887), + [aux_sym_unquoted_token1] = ACTIONS(1885), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1887), + }, + [1581] = { + [sym_cell_path] = STATE(2098), + [sym_path] = STATE(1811), + [sym_comment] = STATE(1581), + [aux_sym_cell_path_repeat1] = STATE(1638), + [ts_builtin_sym_end] = ACTIONS(1891), + [sym__newline] = ACTIONS(1891), + [anon_sym_SEMI] = ACTIONS(1891), + [anon_sym_PIPE] = ACTIONS(1891), + [anon_sym_err_GT_PIPE] = ACTIONS(1891), + [anon_sym_out_GT_PIPE] = ACTIONS(1891), + [anon_sym_e_GT_PIPE] = ACTIONS(1891), + [anon_sym_o_GT_PIPE] = ACTIONS(1891), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1891), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1891), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1891), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1891), + [anon_sym_LBRACK] = ACTIONS(1891), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_DOLLAR] = ACTIONS(1889), + [anon_sym_DASH_DASH] = ACTIONS(1891), + [anon_sym_DASH2] = ACTIONS(1889), + [anon_sym_LBRACE] = ACTIONS(1891), + [anon_sym_DOT_DOT] = ACTIONS(1889), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1891), + [anon_sym_DOT_DOT_LT] = ACTIONS(1891), + [anon_sym_null] = ACTIONS(1891), + [anon_sym_true] = ACTIONS(1891), + [anon_sym_false] = ACTIONS(1891), + [aux_sym__val_number_decimal_token1] = ACTIONS(1889), + [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), + [aux_sym__val_number_token4] = ACTIONS(1891), + [aux_sym__val_number_token5] = ACTIONS(1891), + [aux_sym__val_number_token6] = ACTIONS(1891), + [anon_sym_0b] = ACTIONS(1889), + [anon_sym_0o] = ACTIONS(1889), + [anon_sym_0x] = ACTIONS(1889), + [sym_val_date] = ACTIONS(1891), + [anon_sym_DQUOTE] = ACTIONS(1891), + [sym__str_single_quotes] = ACTIONS(1891), + [sym__str_back_ticks] = ACTIONS(1891), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1891), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1891), + [anon_sym_DOT2] = ACTIONS(4810), + [anon_sym_err_GT] = ACTIONS(1889), + [anon_sym_out_GT] = ACTIONS(1889), + [anon_sym_e_GT] = ACTIONS(1889), + [anon_sym_o_GT] = ACTIONS(1889), + [anon_sym_err_PLUSout_GT] = ACTIONS(1889), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1889), + [anon_sym_o_PLUSe_GT] = ACTIONS(1889), + [anon_sym_e_PLUSo_GT] = ACTIONS(1889), + [anon_sym_err_GT_GT] = ACTIONS(1891), + [anon_sym_out_GT_GT] = ACTIONS(1891), + [anon_sym_e_GT_GT] = ACTIONS(1891), + [anon_sym_o_GT_GT] = ACTIONS(1891), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1891), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1891), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1891), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1891), + [aux_sym_unquoted_token1] = ACTIONS(1889), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1891), + }, + [1582] = { + [sym_cell_path] = STATE(2100), + [sym_path] = STATE(1811), + [sym_comment] = STATE(1582), + [aux_sym_cell_path_repeat1] = STATE(1638), + [ts_builtin_sym_end] = ACTIONS(1899), + [sym__newline] = ACTIONS(1899), + [anon_sym_SEMI] = ACTIONS(1899), + [anon_sym_PIPE] = ACTIONS(1899), + [anon_sym_err_GT_PIPE] = ACTIONS(1899), + [anon_sym_out_GT_PIPE] = ACTIONS(1899), + [anon_sym_e_GT_PIPE] = ACTIONS(1899), + [anon_sym_o_GT_PIPE] = ACTIONS(1899), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1899), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1899), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1899), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_LPAREN] = ACTIONS(1899), + [anon_sym_DOLLAR] = ACTIONS(1897), + [anon_sym_DASH_DASH] = ACTIONS(1899), + [anon_sym_DASH2] = ACTIONS(1897), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_DOT_DOT] = ACTIONS(1897), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1899), + [anon_sym_DOT_DOT_LT] = ACTIONS(1899), + [anon_sym_null] = ACTIONS(1899), + [anon_sym_true] = ACTIONS(1899), + [anon_sym_false] = ACTIONS(1899), + [aux_sym__val_number_decimal_token1] = ACTIONS(1897), + [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), + [aux_sym__val_number_token4] = ACTIONS(1899), + [aux_sym__val_number_token5] = ACTIONS(1899), + [aux_sym__val_number_token6] = ACTIONS(1899), + [anon_sym_0b] = ACTIONS(1897), + [anon_sym_0o] = ACTIONS(1897), + [anon_sym_0x] = ACTIONS(1897), + [sym_val_date] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1899), + [sym__str_single_quotes] = ACTIONS(1899), + [sym__str_back_ticks] = ACTIONS(1899), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1899), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1899), + [anon_sym_DOT2] = ACTIONS(4810), + [anon_sym_err_GT] = ACTIONS(1897), + [anon_sym_out_GT] = ACTIONS(1897), + [anon_sym_e_GT] = ACTIONS(1897), + [anon_sym_o_GT] = ACTIONS(1897), + [anon_sym_err_PLUSout_GT] = ACTIONS(1897), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1897), + [anon_sym_o_PLUSe_GT] = ACTIONS(1897), + [anon_sym_e_PLUSo_GT] = ACTIONS(1897), + [anon_sym_err_GT_GT] = ACTIONS(1899), + [anon_sym_out_GT_GT] = ACTIONS(1899), + [anon_sym_e_GT_GT] = ACTIONS(1899), + [anon_sym_o_GT_GT] = ACTIONS(1899), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1899), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1899), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1899), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1899), + [aux_sym_unquoted_token1] = ACTIONS(1897), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1899), + }, + [1583] = { + [sym_cell_path] = STATE(2101), + [sym_path] = STATE(1811), + [sym_comment] = STATE(1583), + [aux_sym_cell_path_repeat1] = STATE(1638), + [ts_builtin_sym_end] = ACTIONS(1903), + [sym__newline] = ACTIONS(1903), + [anon_sym_SEMI] = ACTIONS(1903), + [anon_sym_PIPE] = ACTIONS(1903), + [anon_sym_err_GT_PIPE] = ACTIONS(1903), + [anon_sym_out_GT_PIPE] = ACTIONS(1903), + [anon_sym_e_GT_PIPE] = ACTIONS(1903), + [anon_sym_o_GT_PIPE] = ACTIONS(1903), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1903), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1903), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1903), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1903), + [anon_sym_LPAREN] = ACTIONS(1903), + [anon_sym_DOLLAR] = ACTIONS(1901), + [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_DASH2] = ACTIONS(1901), + [anon_sym_LBRACE] = ACTIONS(1903), + [anon_sym_DOT_DOT] = ACTIONS(1901), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1903), + [anon_sym_DOT_DOT_LT] = ACTIONS(1903), + [anon_sym_null] = ACTIONS(1903), + [anon_sym_true] = ACTIONS(1903), + [anon_sym_false] = ACTIONS(1903), + [aux_sym__val_number_decimal_token1] = ACTIONS(1901), + [aux_sym__val_number_decimal_token2] = ACTIONS(1903), + [aux_sym__val_number_decimal_token3] = ACTIONS(1903), + [aux_sym__val_number_decimal_token4] = ACTIONS(1903), + [aux_sym__val_number_token1] = ACTIONS(1903), + [aux_sym__val_number_token2] = ACTIONS(1903), + [aux_sym__val_number_token3] = ACTIONS(1903), + [aux_sym__val_number_token4] = ACTIONS(1903), + [aux_sym__val_number_token5] = ACTIONS(1903), + [aux_sym__val_number_token6] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1901), + [anon_sym_0x] = ACTIONS(1901), + [sym_val_date] = ACTIONS(1903), + [anon_sym_DQUOTE] = ACTIONS(1903), + [sym__str_single_quotes] = ACTIONS(1903), + [sym__str_back_ticks] = ACTIONS(1903), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1903), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1903), + [anon_sym_DOT2] = ACTIONS(4810), + [anon_sym_err_GT] = ACTIONS(1901), + [anon_sym_out_GT] = ACTIONS(1901), + [anon_sym_e_GT] = ACTIONS(1901), + [anon_sym_o_GT] = ACTIONS(1901), + [anon_sym_err_PLUSout_GT] = ACTIONS(1901), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1901), + [anon_sym_o_PLUSe_GT] = ACTIONS(1901), + [anon_sym_e_PLUSo_GT] = ACTIONS(1901), + [anon_sym_err_GT_GT] = ACTIONS(1903), + [anon_sym_out_GT_GT] = ACTIONS(1903), + [anon_sym_e_GT_GT] = ACTIONS(1903), + [anon_sym_o_GT_GT] = ACTIONS(1903), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1903), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1903), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1903), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1903), + [aux_sym_unquoted_token1] = ACTIONS(1901), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1903), + }, + [1584] = { + [sym_cell_path] = STATE(2102), + [sym_path] = STATE(1811), + [sym_comment] = STATE(1584), + [aux_sym_cell_path_repeat1] = STATE(1638), + [ts_builtin_sym_end] = ACTIONS(1907), + [sym__newline] = ACTIONS(1907), + [anon_sym_SEMI] = ACTIONS(1907), + [anon_sym_PIPE] = ACTIONS(1907), + [anon_sym_err_GT_PIPE] = ACTIONS(1907), + [anon_sym_out_GT_PIPE] = ACTIONS(1907), + [anon_sym_e_GT_PIPE] = ACTIONS(1907), + [anon_sym_o_GT_PIPE] = ACTIONS(1907), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1907), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1907), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1907), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(1907), + [anon_sym_LPAREN] = ACTIONS(1907), + [anon_sym_DOLLAR] = ACTIONS(1905), + [anon_sym_DASH_DASH] = ACTIONS(1907), + [anon_sym_DASH2] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1907), + [anon_sym_DOT_DOT] = ACTIONS(1905), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1907), + [anon_sym_DOT_DOT_LT] = ACTIONS(1907), + [anon_sym_null] = ACTIONS(1907), + [anon_sym_true] = ACTIONS(1907), + [anon_sym_false] = ACTIONS(1907), + [aux_sym__val_number_decimal_token1] = ACTIONS(1905), + [aux_sym__val_number_decimal_token2] = ACTIONS(1907), + [aux_sym__val_number_decimal_token3] = ACTIONS(1907), + [aux_sym__val_number_decimal_token4] = ACTIONS(1907), + [aux_sym__val_number_token1] = ACTIONS(1907), + [aux_sym__val_number_token2] = ACTIONS(1907), + [aux_sym__val_number_token3] = ACTIONS(1907), + [aux_sym__val_number_token4] = ACTIONS(1907), + [aux_sym__val_number_token5] = ACTIONS(1907), + [aux_sym__val_number_token6] = 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_DOT2] = ACTIONS(4810), + [anon_sym_err_GT] = ACTIONS(1905), + [anon_sym_out_GT] = ACTIONS(1905), + [anon_sym_e_GT] = ACTIONS(1905), + [anon_sym_o_GT] = ACTIONS(1905), + [anon_sym_err_PLUSout_GT] = ACTIONS(1905), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1905), + [anon_sym_o_PLUSe_GT] = ACTIONS(1905), + [anon_sym_e_PLUSo_GT] = ACTIONS(1905), + [anon_sym_err_GT_GT] = ACTIONS(1907), + [anon_sym_out_GT_GT] = ACTIONS(1907), + [anon_sym_e_GT_GT] = ACTIONS(1907), + [anon_sym_o_GT_GT] = ACTIONS(1907), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1907), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1907), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1907), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1907), + [aux_sym_unquoted_token1] = ACTIONS(1905), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1907), + }, + [1585] = { + [sym_cell_path] = STATE(2120), + [sym_path] = STATE(1811), + [sym_comment] = STATE(1585), + [aux_sym_cell_path_repeat1] = STATE(1638), + [ts_builtin_sym_end] = ACTIONS(1947), [sym__newline] = ACTIONS(1947), [anon_sym_SEMI] = ACTIONS(1947), [anon_sym_PIPE] = ACTIONS(1947), @@ -230471,40 +229551,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1947), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1947), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1947), - [anon_sym_RPAREN] = ACTIONS(1947), - [anon_sym_GT2] = ACTIONS(1945), - [anon_sym_DASH2] = ACTIONS(1947), - [anon_sym_in2] = ACTIONS(1947), - [anon_sym_if] = ACTIONS(1947), + [anon_sym_LBRACK] = ACTIONS(1947), + [anon_sym_LPAREN] = ACTIONS(1947), + [anon_sym_DOLLAR] = ACTIONS(1945), + [anon_sym_DASH_DASH] = ACTIONS(1947), + [anon_sym_DASH2] = ACTIONS(1945), [anon_sym_LBRACE] = ACTIONS(1947), - [anon_sym_RBRACE] = ACTIONS(1947), - [anon_sym_EQ_GT] = ACTIONS(1947), - [anon_sym_STAR2] = ACTIONS(1945), - [anon_sym_and2] = ACTIONS(1947), - [anon_sym_xor2] = ACTIONS(1947), - [anon_sym_or2] = ACTIONS(1947), - [anon_sym_not_DASHin2] = ACTIONS(1947), - [anon_sym_starts_DASHwith2] = ACTIONS(1947), - [anon_sym_ends_DASHwith2] = ACTIONS(1947), - [anon_sym_EQ_EQ2] = ACTIONS(1947), - [anon_sym_BANG_EQ2] = ACTIONS(1947), - [anon_sym_LT2] = ACTIONS(1945), - [anon_sym_LT_EQ2] = ACTIONS(1947), - [anon_sym_GT_EQ2] = ACTIONS(1947), - [anon_sym_EQ_TILDE2] = ACTIONS(1947), - [anon_sym_BANG_TILDE2] = ACTIONS(1947), - [anon_sym_STAR_STAR2] = ACTIONS(1947), - [anon_sym_PLUS_PLUS2] = ACTIONS(1947), - [anon_sym_SLASH2] = ACTIONS(1945), - [anon_sym_mod2] = ACTIONS(1947), - [anon_sym_SLASH_SLASH2] = ACTIONS(1947), - [anon_sym_PLUS2] = ACTIONS(1945), - [anon_sym_bit_DASHshl2] = ACTIONS(1947), - [anon_sym_bit_DASHshr2] = ACTIONS(1947), - [anon_sym_bit_DASHand2] = ACTIONS(1947), - [anon_sym_bit_DASHxor2] = ACTIONS(1947), - [anon_sym_bit_DASHor2] = ACTIONS(1947), - [anon_sym_DOT2] = ACTIONS(4912), + [anon_sym_DOT_DOT] = ACTIONS(1945), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1947), + [anon_sym_DOT_DOT_LT] = ACTIONS(1947), + [anon_sym_null] = ACTIONS(1947), + [anon_sym_true] = ACTIONS(1947), + [anon_sym_false] = ACTIONS(1947), + [aux_sym__val_number_decimal_token1] = ACTIONS(1945), + [aux_sym__val_number_decimal_token2] = ACTIONS(1947), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), + [aux_sym__val_number_token1] = ACTIONS(1947), + [aux_sym__val_number_token2] = ACTIONS(1947), + [aux_sym__val_number_token3] = ACTIONS(1947), + [aux_sym__val_number_token4] = ACTIONS(1947), + [aux_sym__val_number_token5] = ACTIONS(1947), + [aux_sym__val_number_token6] = ACTIONS(1947), + [anon_sym_0b] = ACTIONS(1945), + [anon_sym_0o] = ACTIONS(1945), + [anon_sym_0x] = ACTIONS(1945), + [sym_val_date] = ACTIONS(1947), + [anon_sym_DQUOTE] = ACTIONS(1947), + [sym__str_single_quotes] = ACTIONS(1947), + [sym__str_back_ticks] = ACTIONS(1947), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1947), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1947), + [anon_sym_DOT2] = ACTIONS(4810), [anon_sym_err_GT] = ACTIONS(1945), [anon_sym_out_GT] = ACTIONS(1945), [anon_sym_e_GT] = ACTIONS(1945), @@ -230521,217 +229599,774 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1947), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1947), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1947), - [anon_sym_POUND] = ACTIONS(251), + [aux_sym_unquoted_token1] = ACTIONS(1945), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1947), }, - [1609] = { - [sym_cell_path] = STATE(2022), - [sym_path] = STATE(1532), - [sym_comment] = STATE(1609), - [aux_sym_cell_path_repeat1] = STATE(1386), - [sym__newline] = ACTIONS(1951), - [anon_sym_SEMI] = ACTIONS(1951), - [anon_sym_PIPE] = ACTIONS(1951), - [anon_sym_err_GT_PIPE] = ACTIONS(1951), - [anon_sym_out_GT_PIPE] = ACTIONS(1951), - [anon_sym_e_GT_PIPE] = ACTIONS(1951), - [anon_sym_o_GT_PIPE] = ACTIONS(1951), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1951), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1951), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1951), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1951), - [anon_sym_RPAREN] = ACTIONS(1951), - [anon_sym_GT2] = ACTIONS(1949), - [anon_sym_DASH2] = ACTIONS(1951), - [anon_sym_in2] = ACTIONS(1951), - [anon_sym_if] = ACTIONS(1951), - [anon_sym_LBRACE] = ACTIONS(1951), - [anon_sym_RBRACE] = ACTIONS(1951), - [anon_sym_EQ_GT] = ACTIONS(1951), - [anon_sym_STAR2] = ACTIONS(1949), - [anon_sym_and2] = ACTIONS(1951), - [anon_sym_xor2] = ACTIONS(1951), - [anon_sym_or2] = ACTIONS(1951), - [anon_sym_not_DASHin2] = ACTIONS(1951), - [anon_sym_starts_DASHwith2] = ACTIONS(1951), - [anon_sym_ends_DASHwith2] = ACTIONS(1951), - [anon_sym_EQ_EQ2] = ACTIONS(1951), - [anon_sym_BANG_EQ2] = ACTIONS(1951), - [anon_sym_LT2] = ACTIONS(1949), - [anon_sym_LT_EQ2] = ACTIONS(1951), - [anon_sym_GT_EQ2] = ACTIONS(1951), - [anon_sym_EQ_TILDE2] = ACTIONS(1951), - [anon_sym_BANG_TILDE2] = ACTIONS(1951), - [anon_sym_STAR_STAR2] = ACTIONS(1951), - [anon_sym_PLUS_PLUS2] = ACTIONS(1951), - [anon_sym_SLASH2] = ACTIONS(1949), - [anon_sym_mod2] = ACTIONS(1951), - [anon_sym_SLASH_SLASH2] = ACTIONS(1951), - [anon_sym_PLUS2] = ACTIONS(1949), - [anon_sym_bit_DASHshl2] = ACTIONS(1951), - [anon_sym_bit_DASHshr2] = ACTIONS(1951), - [anon_sym_bit_DASHand2] = ACTIONS(1951), - [anon_sym_bit_DASHxor2] = ACTIONS(1951), - [anon_sym_bit_DASHor2] = ACTIONS(1951), - [anon_sym_DOT2] = ACTIONS(4912), - [anon_sym_err_GT] = ACTIONS(1949), - [anon_sym_out_GT] = ACTIONS(1949), - [anon_sym_e_GT] = ACTIONS(1949), - [anon_sym_o_GT] = ACTIONS(1949), - [anon_sym_err_PLUSout_GT] = ACTIONS(1949), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1949), - [anon_sym_o_PLUSe_GT] = ACTIONS(1949), - [anon_sym_e_PLUSo_GT] = ACTIONS(1949), - [anon_sym_err_GT_GT] = ACTIONS(1951), - [anon_sym_out_GT_GT] = ACTIONS(1951), - [anon_sym_e_GT_GT] = ACTIONS(1951), - [anon_sym_o_GT_GT] = ACTIONS(1951), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1951), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1951), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1951), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(251), + [1586] = { + [sym_comment] = STATE(1586), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_RPAREN] = ACTIONS(1703), + [anon_sym_GT2] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1703), + [anon_sym_in2] = ACTIONS(1703), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_STAR2] = ACTIONS(1701), + [anon_sym_and2] = ACTIONS(1703), + [anon_sym_xor2] = ACTIONS(1703), + [anon_sym_or2] = ACTIONS(1703), + [anon_sym_not_DASHin2] = ACTIONS(1703), + [anon_sym_has2] = ACTIONS(1703), + [anon_sym_not_DASHhas2] = ACTIONS(1703), + [anon_sym_starts_DASHwith2] = ACTIONS(1703), + [anon_sym_ends_DASHwith2] = ACTIONS(1703), + [anon_sym_EQ_EQ2] = ACTIONS(1703), + [anon_sym_BANG_EQ2] = ACTIONS(1703), + [anon_sym_LT2] = ACTIONS(1701), + [anon_sym_LT_EQ2] = ACTIONS(1703), + [anon_sym_GT_EQ2] = ACTIONS(1703), + [anon_sym_EQ_TILDE2] = ACTIONS(1703), + [anon_sym_BANG_TILDE2] = ACTIONS(1703), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_STAR_STAR2] = ACTIONS(1703), + [anon_sym_PLUS_PLUS2] = ACTIONS(1703), + [anon_sym_SLASH2] = ACTIONS(1701), + [anon_sym_mod2] = ACTIONS(1703), + [anon_sym_SLASH_SLASH2] = ACTIONS(1703), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_bit_DASHshl2] = ACTIONS(1703), + [anon_sym_bit_DASHshr2] = ACTIONS(1703), + [anon_sym_bit_DASHand2] = ACTIONS(1703), + [anon_sym_bit_DASHxor2] = ACTIONS(1703), + [anon_sym_bit_DASHor2] = ACTIONS(1703), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [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(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(247), }, - [1610] = { - [sym_cell_path] = STATE(2023), - [sym_path] = STATE(1532), - [sym_comment] = STATE(1610), - [aux_sym_cell_path_repeat1] = STATE(1386), - [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_RPAREN] = ACTIONS(1955), - [anon_sym_GT2] = ACTIONS(1953), - [anon_sym_DASH2] = ACTIONS(1955), - [anon_sym_in2] = ACTIONS(1955), - [anon_sym_if] = ACTIONS(1955), - [anon_sym_LBRACE] = ACTIONS(1955), - [anon_sym_RBRACE] = ACTIONS(1955), - [anon_sym_EQ_GT] = ACTIONS(1955), - [anon_sym_STAR2] = ACTIONS(1953), - [anon_sym_and2] = ACTIONS(1955), - [anon_sym_xor2] = ACTIONS(1955), - [anon_sym_or2] = ACTIONS(1955), - [anon_sym_not_DASHin2] = ACTIONS(1955), - [anon_sym_starts_DASHwith2] = ACTIONS(1955), - [anon_sym_ends_DASHwith2] = ACTIONS(1955), - [anon_sym_EQ_EQ2] = ACTIONS(1955), - [anon_sym_BANG_EQ2] = ACTIONS(1955), - [anon_sym_LT2] = ACTIONS(1953), - [anon_sym_LT_EQ2] = ACTIONS(1955), - [anon_sym_GT_EQ2] = ACTIONS(1955), - [anon_sym_EQ_TILDE2] = ACTIONS(1955), - [anon_sym_BANG_TILDE2] = ACTIONS(1955), - [anon_sym_STAR_STAR2] = ACTIONS(1955), - [anon_sym_PLUS_PLUS2] = ACTIONS(1955), - [anon_sym_SLASH2] = ACTIONS(1953), - [anon_sym_mod2] = ACTIONS(1955), - [anon_sym_SLASH_SLASH2] = ACTIONS(1955), - [anon_sym_PLUS2] = ACTIONS(1953), - [anon_sym_bit_DASHshl2] = ACTIONS(1955), - [anon_sym_bit_DASHshr2] = ACTIONS(1955), - [anon_sym_bit_DASHand2] = ACTIONS(1955), - [anon_sym_bit_DASHxor2] = ACTIONS(1955), - [anon_sym_bit_DASHor2] = ACTIONS(1955), - [anon_sym_DOT2] = ACTIONS(4912), - [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), - [anon_sym_POUND] = ACTIONS(251), + [1587] = { + [sym_comment] = STATE(1587), + [sym__newline] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_err_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_GT_PIPE] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1768), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_RPAREN] = ACTIONS(1768), + [anon_sym_DOLLAR] = ACTIONS(1766), + [anon_sym_DASH_DASH] = ACTIONS(1768), + [anon_sym_DASH2] = ACTIONS(1766), + [anon_sym_LBRACE] = ACTIONS(1768), + [anon_sym_RBRACE] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1766), + [anon_sym_DOT_DOT2] = ACTIONS(1766), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1766), + [anon_sym_DOT_DOT_LT] = ACTIONS(1766), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1768), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1768), + [anon_sym_null] = ACTIONS(1768), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [aux_sym__val_number_decimal_token1] = ACTIONS(1766), + [aux_sym__val_number_decimal_token2] = ACTIONS(1768), + [aux_sym__val_number_decimal_token3] = ACTIONS(1768), + [aux_sym__val_number_decimal_token4] = ACTIONS(1768), + [aux_sym__val_number_token1] = ACTIONS(1768), + [aux_sym__val_number_token2] = ACTIONS(1768), + [aux_sym__val_number_token3] = ACTIONS(1768), + [aux_sym__val_number_token4] = ACTIONS(1768), + [aux_sym__val_number_token5] = ACTIONS(1768), + [aux_sym__val_number_token6] = ACTIONS(1768), + [anon_sym_0b] = ACTIONS(1766), + [anon_sym_0o] = ACTIONS(1766), + [anon_sym_0x] = ACTIONS(1766), + [sym_val_date] = ACTIONS(1768), + [anon_sym_DQUOTE] = ACTIONS(1768), + [sym__str_single_quotes] = ACTIONS(1768), + [sym__str_back_ticks] = ACTIONS(1768), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1768), + [anon_sym_err_GT] = ACTIONS(1766), + [anon_sym_out_GT] = ACTIONS(1766), + [anon_sym_e_GT] = ACTIONS(1766), + [anon_sym_o_GT] = ACTIONS(1766), + [anon_sym_err_PLUSout_GT] = ACTIONS(1766), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1766), + [anon_sym_o_PLUSe_GT] = ACTIONS(1766), + [anon_sym_e_PLUSo_GT] = ACTIONS(1766), + [anon_sym_err_GT_GT] = ACTIONS(1768), + [anon_sym_out_GT_GT] = ACTIONS(1768), + [anon_sym_e_GT_GT] = ACTIONS(1768), + [anon_sym_o_GT_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1768), + [aux_sym_unquoted_token1] = ACTIONS(1766), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1768), }, - [1611] = { - [sym_cell_path] = STATE(2024), - [sym_path] = STATE(1532), - [sym_comment] = STATE(1611), - [aux_sym_cell_path_repeat1] = STATE(1386), - [sym__newline] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1959), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_err_GT_PIPE] = ACTIONS(1959), - [anon_sym_out_GT_PIPE] = ACTIONS(1959), - [anon_sym_e_GT_PIPE] = ACTIONS(1959), - [anon_sym_o_GT_PIPE] = ACTIONS(1959), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1959), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1959), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1959), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1959), - [anon_sym_RPAREN] = ACTIONS(1959), - [anon_sym_GT2] = ACTIONS(1957), - [anon_sym_DASH2] = ACTIONS(1959), - [anon_sym_in2] = ACTIONS(1959), - [anon_sym_if] = ACTIONS(1959), - [anon_sym_LBRACE] = ACTIONS(1959), - [anon_sym_RBRACE] = ACTIONS(1959), - [anon_sym_EQ_GT] = ACTIONS(1959), - [anon_sym_STAR2] = ACTIONS(1957), - [anon_sym_and2] = ACTIONS(1959), - [anon_sym_xor2] = ACTIONS(1959), - [anon_sym_or2] = ACTIONS(1959), - [anon_sym_not_DASHin2] = ACTIONS(1959), - [anon_sym_starts_DASHwith2] = ACTIONS(1959), - [anon_sym_ends_DASHwith2] = ACTIONS(1959), - [anon_sym_EQ_EQ2] = ACTIONS(1959), - [anon_sym_BANG_EQ2] = ACTIONS(1959), - [anon_sym_LT2] = ACTIONS(1957), - [anon_sym_LT_EQ2] = ACTIONS(1959), - [anon_sym_GT_EQ2] = ACTIONS(1959), - [anon_sym_EQ_TILDE2] = ACTIONS(1959), - [anon_sym_BANG_TILDE2] = ACTIONS(1959), - [anon_sym_STAR_STAR2] = ACTIONS(1959), - [anon_sym_PLUS_PLUS2] = ACTIONS(1959), - [anon_sym_SLASH2] = ACTIONS(1957), - [anon_sym_mod2] = ACTIONS(1959), - [anon_sym_SLASH_SLASH2] = ACTIONS(1959), - [anon_sym_PLUS2] = ACTIONS(1957), - [anon_sym_bit_DASHshl2] = ACTIONS(1959), - [anon_sym_bit_DASHshr2] = ACTIONS(1959), - [anon_sym_bit_DASHand2] = ACTIONS(1959), - [anon_sym_bit_DASHxor2] = ACTIONS(1959), - [anon_sym_bit_DASHor2] = ACTIONS(1959), - [anon_sym_DOT2] = ACTIONS(4912), - [anon_sym_err_GT] = ACTIONS(1957), - [anon_sym_out_GT] = ACTIONS(1957), - [anon_sym_e_GT] = ACTIONS(1957), - [anon_sym_o_GT] = ACTIONS(1957), - [anon_sym_err_PLUSout_GT] = ACTIONS(1957), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1957), - [anon_sym_o_PLUSe_GT] = ACTIONS(1957), - [anon_sym_e_PLUSo_GT] = ACTIONS(1957), - [anon_sym_err_GT_GT] = ACTIONS(1959), - [anon_sym_out_GT_GT] = ACTIONS(1959), - [anon_sym_e_GT_GT] = ACTIONS(1959), - [anon_sym_o_GT_GT] = ACTIONS(1959), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1959), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1959), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1959), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1959), - [anon_sym_POUND] = ACTIONS(251), + [1588] = { + [sym_comment] = STATE(1588), + [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_DASH2] = ACTIONS(1792), + [anon_sym_LBRACE] = ACTIONS(1794), + [anon_sym_RBRACE] = ACTIONS(1794), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_DOT_DOT2] = ACTIONS(1792), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1792), + [anon_sym_DOT_DOT_LT] = ACTIONS(1792), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1794), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1794), + [anon_sym_null] = ACTIONS(1794), + [anon_sym_true] = ACTIONS(1794), + [anon_sym_false] = ACTIONS(1794), + [aux_sym__val_number_decimal_token1] = ACTIONS(1792), + [aux_sym__val_number_decimal_token2] = ACTIONS(1794), + [aux_sym__val_number_decimal_token3] = ACTIONS(1794), + [aux_sym__val_number_decimal_token4] = ACTIONS(1794), + [aux_sym__val_number_token1] = ACTIONS(1794), + [aux_sym__val_number_token2] = ACTIONS(1794), + [aux_sym__val_number_token3] = ACTIONS(1794), + [aux_sym__val_number_token4] = ACTIONS(1794), + [aux_sym__val_number_token5] = ACTIONS(1794), + [aux_sym__val_number_token6] = 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(247), + [sym_raw_string_begin] = ACTIONS(1794), }, - [1612] = { - [sym_cell_path] = STATE(2026), - [sym_path] = STATE(1532), - [sym_comment] = STATE(1612), - [aux_sym_cell_path_repeat1] = STATE(1386), + [1589] = { + [sym_comment] = STATE(1589), + [ts_builtin_sym_end] = ACTIONS(1695), + [sym__newline] = ACTIONS(1695), + [anon_sym_SEMI] = ACTIONS(1695), + [anon_sym_PIPE] = ACTIONS(1695), + [anon_sym_err_GT_PIPE] = ACTIONS(1695), + [anon_sym_out_GT_PIPE] = ACTIONS(1695), + [anon_sym_e_GT_PIPE] = ACTIONS(1695), + [anon_sym_o_GT_PIPE] = ACTIONS(1695), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1695), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1695), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1695), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1695), + [anon_sym_LBRACK] = ACTIONS(1695), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_DOLLAR] = ACTIONS(1693), + [anon_sym_DASH_DASH] = ACTIONS(1695), + [anon_sym_DASH2] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1695), + [anon_sym_DOT_DOT] = ACTIONS(1693), + [anon_sym_LPAREN2] = ACTIONS(1695), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1695), + [anon_sym_DOT_DOT_LT] = ACTIONS(1695), + [aux_sym__immediate_decimal_token1] = ACTIONS(4847), + [aux_sym__immediate_decimal_token2] = ACTIONS(4849), + [anon_sym_null] = ACTIONS(1695), + [anon_sym_true] = ACTIONS(1695), + [anon_sym_false] = ACTIONS(1695), + [aux_sym__val_number_decimal_token1] = ACTIONS(1693), + [aux_sym__val_number_decimal_token2] = ACTIONS(1695), + [aux_sym__val_number_decimal_token3] = ACTIONS(1695), + [aux_sym__val_number_decimal_token4] = ACTIONS(1695), + [aux_sym__val_number_token1] = ACTIONS(1695), + [aux_sym__val_number_token2] = ACTIONS(1695), + [aux_sym__val_number_token3] = ACTIONS(1695), + [aux_sym__val_number_token4] = ACTIONS(1695), + [aux_sym__val_number_token5] = ACTIONS(1695), + [aux_sym__val_number_token6] = ACTIONS(1695), + [anon_sym_0b] = ACTIONS(1693), + [anon_sym_0o] = ACTIONS(1693), + [anon_sym_0x] = ACTIONS(1693), + [sym_val_date] = ACTIONS(1695), + [anon_sym_DQUOTE] = ACTIONS(1695), + [sym__str_single_quotes] = ACTIONS(1695), + [sym__str_back_ticks] = ACTIONS(1695), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1695), + [anon_sym_err_GT] = ACTIONS(1693), + [anon_sym_out_GT] = ACTIONS(1693), + [anon_sym_e_GT] = ACTIONS(1693), + [anon_sym_o_GT] = ACTIONS(1693), + [anon_sym_err_PLUSout_GT] = ACTIONS(1693), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1693), + [anon_sym_o_PLUSe_GT] = ACTIONS(1693), + [anon_sym_e_PLUSo_GT] = ACTIONS(1693), + [anon_sym_err_GT_GT] = ACTIONS(1695), + [anon_sym_out_GT_GT] = ACTIONS(1695), + [anon_sym_e_GT_GT] = ACTIONS(1695), + [anon_sym_o_GT_GT] = ACTIONS(1695), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1695), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1695), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1695), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1695), + [aux_sym_unquoted_token1] = ACTIONS(1693), + [aux_sym_unquoted_token2] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1695), + }, + [1590] = { + [sym_comment] = STATE(1590), + [ts_builtin_sym_end] = ACTIONS(1703), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1703), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_DOT_DOT] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_DOT] = ACTIONS(4851), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(4853), + [anon_sym_null] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1703), + [aux_sym__val_number_token5] = ACTIONS(1703), + [aux_sym__val_number_token6] = ACTIONS(1703), + [anon_sym_0b] = ACTIONS(1701), + [anon_sym_0o] = ACTIONS(1701), + [anon_sym_0x] = ACTIONS(1701), + [sym_val_date] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [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(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token1] = ACTIONS(1701), + [aux_sym_unquoted_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1703), + }, + [1591] = { + [sym_comment] = STATE(1591), + [sym__newline] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_err_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_GT_PIPE] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1768), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_LPAREN] = ACTIONS(1766), + [anon_sym_RPAREN] = ACTIONS(1768), + [anon_sym_DOLLAR] = ACTIONS(1766), + [anon_sym_DASH_DASH] = ACTIONS(1768), + [anon_sym_DASH2] = ACTIONS(1766), + [anon_sym_LBRACE] = ACTIONS(1768), + [anon_sym_RBRACE] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1766), + [anon_sym_LPAREN2] = ACTIONS(1768), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1768), + [anon_sym_DOT_DOT_LT] = ACTIONS(1768), + [aux_sym__immediate_decimal_token2] = ACTIONS(4855), + [anon_sym_null] = ACTIONS(1768), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [aux_sym__val_number_decimal_token1] = ACTIONS(1766), + [aux_sym__val_number_decimal_token2] = ACTIONS(1768), + [aux_sym__val_number_decimal_token3] = ACTIONS(1768), + [aux_sym__val_number_decimal_token4] = ACTIONS(1768), + [aux_sym__val_number_token1] = ACTIONS(1768), + [aux_sym__val_number_token2] = ACTIONS(1768), + [aux_sym__val_number_token3] = ACTIONS(1768), + [aux_sym__val_number_token4] = ACTIONS(1768), + [aux_sym__val_number_token5] = ACTIONS(1768), + [aux_sym__val_number_token6] = ACTIONS(1768), + [anon_sym_0b] = ACTIONS(1766), + [anon_sym_0o] = ACTIONS(1766), + [anon_sym_0x] = ACTIONS(1766), + [sym_val_date] = ACTIONS(1768), + [anon_sym_DQUOTE] = ACTIONS(1768), + [sym__str_single_quotes] = ACTIONS(1768), + [sym__str_back_ticks] = ACTIONS(1768), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1768), + [anon_sym_err_GT] = ACTIONS(1766), + [anon_sym_out_GT] = ACTIONS(1766), + [anon_sym_e_GT] = ACTIONS(1766), + [anon_sym_o_GT] = ACTIONS(1766), + [anon_sym_err_PLUSout_GT] = ACTIONS(1766), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1766), + [anon_sym_o_PLUSe_GT] = ACTIONS(1766), + [anon_sym_e_PLUSo_GT] = ACTIONS(1766), + [anon_sym_err_GT_GT] = ACTIONS(1768), + [anon_sym_out_GT_GT] = ACTIONS(1768), + [anon_sym_e_GT_GT] = ACTIONS(1768), + [anon_sym_o_GT_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1768), + [aux_sym_unquoted_token1] = ACTIONS(1766), + [aux_sym_unquoted_token2] = ACTIONS(1766), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1768), + }, + [1592] = { + [sym_comment] = STATE(1592), + [ts_builtin_sym_end] = ACTIONS(1620), + [sym__newline] = ACTIONS(1620), + [anon_sym_SEMI] = ACTIONS(1620), + [anon_sym_PIPE] = ACTIONS(1620), + [anon_sym_err_GT_PIPE] = ACTIONS(1620), + [anon_sym_out_GT_PIPE] = ACTIONS(1620), + [anon_sym_e_GT_PIPE] = ACTIONS(1620), + [anon_sym_o_GT_PIPE] = ACTIONS(1620), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1620), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1620), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1620), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1620), + [anon_sym_GT2] = ACTIONS(1618), + [anon_sym_DASH2] = ACTIONS(1620), + [anon_sym_in2] = ACTIONS(1620), + [anon_sym_STAR2] = ACTIONS(1618), + [anon_sym_and2] = ACTIONS(1620), + [anon_sym_xor2] = ACTIONS(1620), + [anon_sym_or2] = ACTIONS(1620), + [anon_sym_not_DASHin2] = ACTIONS(1620), + [anon_sym_has2] = ACTIONS(1620), + [anon_sym_not_DASHhas2] = ACTIONS(1620), + [anon_sym_starts_DASHwith2] = ACTIONS(1620), + [anon_sym_ends_DASHwith2] = ACTIONS(1620), + [anon_sym_EQ_EQ2] = ACTIONS(1620), + [anon_sym_BANG_EQ2] = ACTIONS(1620), + [anon_sym_LT2] = ACTIONS(1618), + [anon_sym_LT_EQ2] = ACTIONS(1620), + [anon_sym_GT_EQ2] = ACTIONS(1620), + [anon_sym_EQ_TILDE2] = ACTIONS(1620), + [anon_sym_BANG_TILDE2] = ACTIONS(1620), + [anon_sym_LPAREN2] = ACTIONS(1620), + [anon_sym_STAR_STAR2] = ACTIONS(1620), + [anon_sym_PLUS_PLUS2] = ACTIONS(1620), + [anon_sym_SLASH2] = ACTIONS(1618), + [anon_sym_mod2] = ACTIONS(1620), + [anon_sym_SLASH_SLASH2] = ACTIONS(1620), + [anon_sym_PLUS2] = ACTIONS(1618), + [anon_sym_bit_DASHshl2] = ACTIONS(1620), + [anon_sym_bit_DASHshr2] = ACTIONS(1620), + [anon_sym_bit_DASHand2] = ACTIONS(1620), + [anon_sym_bit_DASHxor2] = ACTIONS(1620), + [anon_sym_bit_DASHor2] = ACTIONS(1620), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [sym_filesize_unit] = ACTIONS(1618), + [sym_duration_unit] = ACTIONS(1620), + [anon_sym_err_GT] = ACTIONS(1618), + [anon_sym_out_GT] = ACTIONS(1618), + [anon_sym_e_GT] = ACTIONS(1618), + [anon_sym_o_GT] = ACTIONS(1618), + [anon_sym_err_PLUSout_GT] = ACTIONS(1618), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1618), + [anon_sym_o_PLUSe_GT] = ACTIONS(1618), + [anon_sym_e_PLUSo_GT] = ACTIONS(1618), + [anon_sym_err_GT_GT] = ACTIONS(1620), + [anon_sym_out_GT_GT] = ACTIONS(1620), + [anon_sym_e_GT_GT] = ACTIONS(1620), + [anon_sym_o_GT_GT] = ACTIONS(1620), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1620), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1620), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1620), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1620), + [aux_sym_unquoted_token2] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(247), + }, + [1593] = { + [sym_comment] = STATE(1593), + [ts_builtin_sym_end] = ACTIONS(1691), + [sym__newline] = ACTIONS(1691), + [anon_sym_SEMI] = ACTIONS(1691), + [anon_sym_PIPE] = ACTIONS(1691), + [anon_sym_err_GT_PIPE] = ACTIONS(1691), + [anon_sym_out_GT_PIPE] = ACTIONS(1691), + [anon_sym_e_GT_PIPE] = ACTIONS(1691), + [anon_sym_o_GT_PIPE] = ACTIONS(1691), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1691), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1691), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1691), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1691), + [anon_sym_GT2] = ACTIONS(1689), + [anon_sym_DASH2] = ACTIONS(1691), + [anon_sym_in2] = ACTIONS(1691), + [anon_sym_STAR2] = ACTIONS(1689), + [anon_sym_and2] = ACTIONS(1691), + [anon_sym_xor2] = ACTIONS(1691), + [anon_sym_or2] = ACTIONS(1691), + [anon_sym_not_DASHin2] = ACTIONS(1691), + [anon_sym_has2] = ACTIONS(1691), + [anon_sym_not_DASHhas2] = ACTIONS(1691), + [anon_sym_starts_DASHwith2] = ACTIONS(1691), + [anon_sym_ends_DASHwith2] = ACTIONS(1691), + [anon_sym_EQ_EQ2] = ACTIONS(1691), + [anon_sym_BANG_EQ2] = ACTIONS(1691), + [anon_sym_LT2] = ACTIONS(1689), + [anon_sym_LT_EQ2] = ACTIONS(1691), + [anon_sym_GT_EQ2] = ACTIONS(1691), + [anon_sym_EQ_TILDE2] = ACTIONS(1691), + [anon_sym_BANG_TILDE2] = ACTIONS(1691), + [anon_sym_LPAREN2] = ACTIONS(1691), + [anon_sym_STAR_STAR2] = ACTIONS(1691), + [anon_sym_PLUS_PLUS2] = ACTIONS(1691), + [anon_sym_SLASH2] = ACTIONS(1689), + [anon_sym_mod2] = ACTIONS(1691), + [anon_sym_SLASH_SLASH2] = ACTIONS(1691), + [anon_sym_PLUS2] = ACTIONS(1689), + [anon_sym_bit_DASHshl2] = ACTIONS(1691), + [anon_sym_bit_DASHshr2] = ACTIONS(1691), + [anon_sym_bit_DASHand2] = ACTIONS(1691), + [anon_sym_bit_DASHxor2] = ACTIONS(1691), + [anon_sym_bit_DASHor2] = ACTIONS(1691), + [anon_sym_DOT_DOT2] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1691), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1691), + [sym_filesize_unit] = ACTIONS(1689), + [sym_duration_unit] = ACTIONS(1691), + [anon_sym_err_GT] = ACTIONS(1689), + [anon_sym_out_GT] = ACTIONS(1689), + [anon_sym_e_GT] = ACTIONS(1689), + [anon_sym_o_GT] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT] = ACTIONS(1689), + [anon_sym_err_GT_GT] = ACTIONS(1691), + [anon_sym_out_GT_GT] = ACTIONS(1691), + [anon_sym_e_GT_GT] = ACTIONS(1691), + [anon_sym_o_GT_GT] = ACTIONS(1691), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1691), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1691), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1691), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1691), + [aux_sym_unquoted_token2] = ACTIONS(1689), + [anon_sym_POUND] = ACTIONS(247), + }, + [1594] = { + [sym_cell_path] = STATE(2131), + [sym_path] = STATE(1811), + [sym_comment] = STATE(1594), + [aux_sym_cell_path_repeat1] = STATE(1638), + [ts_builtin_sym_end] = ACTIONS(1963), + [sym__newline] = ACTIONS(1963), + [anon_sym_SEMI] = ACTIONS(1963), + [anon_sym_PIPE] = ACTIONS(1963), + [anon_sym_err_GT_PIPE] = ACTIONS(1963), + [anon_sym_out_GT_PIPE] = ACTIONS(1963), + [anon_sym_e_GT_PIPE] = ACTIONS(1963), + [anon_sym_o_GT_PIPE] = ACTIONS(1963), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1963), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1963), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1963), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1963), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_LPAREN] = ACTIONS(1963), + [anon_sym_DOLLAR] = ACTIONS(1961), + [anon_sym_DASH_DASH] = ACTIONS(1963), + [anon_sym_DASH2] = ACTIONS(1961), + [anon_sym_LBRACE] = ACTIONS(1963), + [anon_sym_DOT_DOT] = ACTIONS(1961), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [anon_sym_null] = ACTIONS(1963), + [anon_sym_true] = ACTIONS(1963), + [anon_sym_false] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1963), + [aux_sym__val_number_decimal_token4] = ACTIONS(1963), + [aux_sym__val_number_token1] = ACTIONS(1963), + [aux_sym__val_number_token2] = ACTIONS(1963), + [aux_sym__val_number_token3] = ACTIONS(1963), + [aux_sym__val_number_token4] = ACTIONS(1963), + [aux_sym__val_number_token5] = ACTIONS(1963), + [aux_sym__val_number_token6] = ACTIONS(1963), + [anon_sym_0b] = ACTIONS(1961), + [anon_sym_0o] = ACTIONS(1961), + [anon_sym_0x] = ACTIONS(1961), + [sym_val_date] = ACTIONS(1963), + [anon_sym_DQUOTE] = ACTIONS(1963), + [sym__str_single_quotes] = ACTIONS(1963), + [sym__str_back_ticks] = ACTIONS(1963), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1963), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1963), + [anon_sym_DOT2] = ACTIONS(4810), + [anon_sym_err_GT] = ACTIONS(1961), + [anon_sym_out_GT] = ACTIONS(1961), + [anon_sym_e_GT] = ACTIONS(1961), + [anon_sym_o_GT] = ACTIONS(1961), + [anon_sym_err_PLUSout_GT] = ACTIONS(1961), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1961), + [anon_sym_o_PLUSe_GT] = ACTIONS(1961), + [anon_sym_e_PLUSo_GT] = ACTIONS(1961), + [anon_sym_err_GT_GT] = ACTIONS(1963), + [anon_sym_out_GT_GT] = ACTIONS(1963), + [anon_sym_e_GT_GT] = ACTIONS(1963), + [anon_sym_o_GT_GT] = ACTIONS(1963), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1963), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1963), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1963), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1963), + [aux_sym_unquoted_token1] = ACTIONS(1961), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1963), + }, + [1595] = { + [sym_comment] = STATE(1595), + [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_GT2] = ACTIONS(986), + [anon_sym_DASH2] = ACTIONS(988), + [anon_sym_in2] = ACTIONS(988), + [anon_sym_if] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(988), + [anon_sym_RBRACE] = ACTIONS(988), + [anon_sym_EQ_GT] = ACTIONS(988), + [anon_sym_STAR2] = ACTIONS(986), + [anon_sym_and2] = ACTIONS(988), + [anon_sym_xor2] = ACTIONS(988), + [anon_sym_or2] = ACTIONS(988), + [anon_sym_not_DASHin2] = ACTIONS(988), + [anon_sym_has2] = ACTIONS(988), + [anon_sym_not_DASHhas2] = ACTIONS(988), + [anon_sym_starts_DASHwith2] = ACTIONS(988), + [anon_sym_ends_DASHwith2] = ACTIONS(988), + [anon_sym_EQ_EQ2] = ACTIONS(988), + [anon_sym_BANG_EQ2] = ACTIONS(988), + [anon_sym_LT2] = ACTIONS(986), + [anon_sym_LT_EQ2] = ACTIONS(988), + [anon_sym_GT_EQ2] = ACTIONS(988), + [anon_sym_EQ_TILDE2] = ACTIONS(988), + [anon_sym_BANG_TILDE2] = ACTIONS(988), + [anon_sym_STAR_STAR2] = ACTIONS(988), + [anon_sym_PLUS_PLUS2] = ACTIONS(988), + [anon_sym_SLASH2] = ACTIONS(986), + [anon_sym_mod2] = ACTIONS(988), + [anon_sym_SLASH_SLASH2] = ACTIONS(988), + [anon_sym_PLUS2] = ACTIONS(986), + [anon_sym_bit_DASHshl2] = ACTIONS(988), + [anon_sym_bit_DASHshr2] = ACTIONS(988), + [anon_sym_bit_DASHand2] = ACTIONS(988), + [anon_sym_bit_DASHxor2] = ACTIONS(988), + [anon_sym_bit_DASHor2] = ACTIONS(988), + [anon_sym_DOT_DOT2] = 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), + }, + [1596] = { + [sym_comment] = STATE(1596), + [ts_builtin_sym_end] = ACTIONS(984), + [sym__newline] = ACTIONS(984), + [anon_sym_SEMI] = ACTIONS(984), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_err_GT_PIPE] = ACTIONS(984), + [anon_sym_out_GT_PIPE] = ACTIONS(984), + [anon_sym_e_GT_PIPE] = ACTIONS(984), + [anon_sym_o_GT_PIPE] = ACTIONS(984), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(984), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(984), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(984), + [anon_sym_LBRACK] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(984), + [anon_sym_DOLLAR] = ACTIONS(982), + [anon_sym_DASH_DASH] = ACTIONS(984), + [anon_sym_DASH2] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_DOT_DOT] = ACTIONS(982), + [anon_sym_DOT_DOT2] = ACTIONS(982), + [anon_sym_DOT_DOT_EQ] = ACTIONS(982), + [anon_sym_DOT_DOT_LT] = ACTIONS(982), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(984), + [anon_sym_DOT_DOT_LT2] = ACTIONS(984), + [anon_sym_null] = ACTIONS(984), + [anon_sym_true] = ACTIONS(984), + [anon_sym_false] = ACTIONS(984), + [aux_sym__val_number_decimal_token1] = ACTIONS(982), + [aux_sym__val_number_decimal_token2] = ACTIONS(984), + [aux_sym__val_number_decimal_token3] = ACTIONS(984), + [aux_sym__val_number_decimal_token4] = ACTIONS(984), + [aux_sym__val_number_token1] = ACTIONS(984), + [aux_sym__val_number_token2] = ACTIONS(984), + [aux_sym__val_number_token3] = ACTIONS(984), + [aux_sym__val_number_token4] = ACTIONS(984), + [aux_sym__val_number_token5] = ACTIONS(984), + [aux_sym__val_number_token6] = ACTIONS(984), + [anon_sym_0b] = ACTIONS(982), + [anon_sym_0o] = ACTIONS(982), + [anon_sym_0x] = ACTIONS(982), + [sym_val_date] = ACTIONS(984), + [anon_sym_DQUOTE] = ACTIONS(984), + [sym__str_single_quotes] = ACTIONS(984), + [sym__str_back_ticks] = ACTIONS(984), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(984), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(984), + [anon_sym_DOT2] = ACTIONS(982), + [anon_sym_err_GT] = ACTIONS(982), + [anon_sym_out_GT] = ACTIONS(982), + [anon_sym_e_GT] = ACTIONS(982), + [anon_sym_o_GT] = ACTIONS(982), + [anon_sym_err_PLUSout_GT] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT] = ACTIONS(982), + [anon_sym_o_PLUSe_GT] = ACTIONS(982), + [anon_sym_e_PLUSo_GT] = ACTIONS(982), + [anon_sym_err_GT_GT] = ACTIONS(984), + [anon_sym_out_GT_GT] = ACTIONS(984), + [anon_sym_e_GT_GT] = ACTIONS(984), + [anon_sym_o_GT_GT] = ACTIONS(984), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(984), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(984), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(984), + [aux_sym_unquoted_token1] = ACTIONS(982), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(984), + }, + [1597] = { + [sym_cell_path] = STATE(2084), + [sym_path] = STATE(1428), + [sym_comment] = STATE(1597), + [aux_sym_cell_path_repeat1] = STATE(1338), [sym__newline] = ACTIONS(1963), [anon_sym_SEMI] = ACTIONS(1963), [anon_sym_PIPE] = ACTIONS(1963), @@ -230747,7 +230382,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT2] = ACTIONS(1961), [anon_sym_DASH2] = ACTIONS(1963), [anon_sym_in2] = ACTIONS(1963), - [anon_sym_if] = ACTIONS(1963), [anon_sym_LBRACE] = ACTIONS(1963), [anon_sym_RBRACE] = ACTIONS(1963), [anon_sym_EQ_GT] = ACTIONS(1963), @@ -230756,6 +230390,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor2] = ACTIONS(1963), [anon_sym_or2] = ACTIONS(1963), [anon_sym_not_DASHin2] = ACTIONS(1963), + [anon_sym_has2] = ACTIONS(1963), + [anon_sym_not_DASHhas2] = ACTIONS(1963), [anon_sym_starts_DASHwith2] = ACTIONS(1963), [anon_sym_ends_DASHwith2] = ACTIONS(1963), [anon_sym_EQ_EQ2] = ACTIONS(1963), @@ -230776,7 +230412,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1963), [anon_sym_bit_DASHxor2] = ACTIONS(1963), [anon_sym_bit_DASHor2] = ACTIONS(1963), - [anon_sym_DOT2] = ACTIONS(4912), + [anon_sym_DOT2] = ACTIONS(4770), [anon_sym_err_GT] = ACTIONS(1961), [anon_sym_out_GT] = ACTIONS(1961), [anon_sym_e_GT] = ACTIONS(1961), @@ -230793,4110 +230429,4426 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1963), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1963), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1963), - [anon_sym_POUND] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(247), + }, + [1598] = { + [sym_comment] = STATE(1598), + [sym__newline] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_PIPE] = ACTIONS(966), + [anon_sym_err_GT_PIPE] = ACTIONS(966), + [anon_sym_out_GT_PIPE] = ACTIONS(966), + [anon_sym_e_GT_PIPE] = ACTIONS(966), + [anon_sym_o_GT_PIPE] = ACTIONS(966), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(966), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(966), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_RPAREN] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(964), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_DASH2] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_DOT_DOT] = ACTIONS(964), + [anon_sym_QMARK2] = ACTIONS(966), + [anon_sym_DOT_DOT_EQ] = ACTIONS(966), + [anon_sym_DOT_DOT_LT] = ACTIONS(966), + [anon_sym_null] = ACTIONS(966), + [anon_sym_true] = ACTIONS(966), + [anon_sym_false] = ACTIONS(966), + [aux_sym__val_number_decimal_token1] = ACTIONS(964), + [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), + [aux_sym__val_number_token4] = ACTIONS(966), + [aux_sym__val_number_token5] = ACTIONS(966), + [aux_sym__val_number_token6] = ACTIONS(966), + [anon_sym_0b] = ACTIONS(964), + [anon_sym_0o] = ACTIONS(964), + [anon_sym_0x] = ACTIONS(964), + [sym_val_date] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym__str_single_quotes] = ACTIONS(966), + [sym__str_back_ticks] = ACTIONS(966), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(966), + [anon_sym_DOT2] = ACTIONS(964), + [anon_sym_err_GT] = ACTIONS(964), + [anon_sym_out_GT] = ACTIONS(964), + [anon_sym_e_GT] = ACTIONS(964), + [anon_sym_o_GT] = ACTIONS(964), + [anon_sym_err_PLUSout_GT] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT] = ACTIONS(964), + [anon_sym_o_PLUSe_GT] = ACTIONS(964), + [anon_sym_e_PLUSo_GT] = ACTIONS(964), + [anon_sym_err_GT_GT] = ACTIONS(966), + [anon_sym_out_GT_GT] = ACTIONS(966), + [anon_sym_e_GT_GT] = ACTIONS(966), + [anon_sym_o_GT_GT] = ACTIONS(966), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(966), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(966), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(966), + [aux_sym_unquoted_token1] = ACTIONS(964), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(966), + }, + [1599] = { + [sym_comment] = STATE(1599), + [sym__newline] = ACTIONS(1824), + [anon_sym_SEMI] = ACTIONS(1824), + [anon_sym_PIPE] = ACTIONS(1824), + [anon_sym_err_GT_PIPE] = ACTIONS(1824), + [anon_sym_out_GT_PIPE] = ACTIONS(1824), + [anon_sym_e_GT_PIPE] = ACTIONS(1824), + [anon_sym_o_GT_PIPE] = ACTIONS(1824), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1824), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1824), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1824), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1824), + [anon_sym_LBRACK] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_RPAREN] = ACTIONS(1824), + [anon_sym_DOLLAR] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1824), + [anon_sym_DASH2] = ACTIONS(1816), + [anon_sym_LBRACE] = ACTIONS(1824), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1824), + [anon_sym_DOT_DOT_LT] = ACTIONS(1824), + [anon_sym_null] = ACTIONS(1824), + [anon_sym_true] = ACTIONS(1824), + [anon_sym_false] = ACTIONS(1824), + [aux_sym__val_number_decimal_token1] = ACTIONS(1816), + [aux_sym__val_number_decimal_token2] = ACTIONS(1824), + [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), + [aux_sym__val_number_token4] = ACTIONS(1824), + [aux_sym__val_number_token5] = ACTIONS(1824), + [aux_sym__val_number_token6] = ACTIONS(1824), + [anon_sym_0b] = ACTIONS(1816), + [anon_sym_0o] = ACTIONS(1816), + [anon_sym_0x] = ACTIONS(1816), + [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_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(1824), + [anon_sym_out_GT_GT] = ACTIONS(1824), + [anon_sym_e_GT_GT] = ACTIONS(1824), + [anon_sym_o_GT_GT] = ACTIONS(1824), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1824), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1824), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1824), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1824), + [aux_sym_unquoted_token1] = ACTIONS(1816), + [aux_sym_unquoted_token2] = ACTIONS(1826), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1824), + }, + [1600] = { + [sym_comment] = STATE(1600), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(2172), + [anon_sym_LPAREN] = ACTIONS(2168), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_DOLLAR] = ACTIONS(2168), + [anon_sym_DASH_DASH] = ACTIONS(2172), + [anon_sym_DASH2] = ACTIONS(2168), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_RBRACE] = ACTIONS(2172), + [anon_sym_DOT_DOT] = ACTIONS(2168), + [anon_sym_LPAREN2] = ACTIONS(2170), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2172), + [anon_sym_DOT_DOT_LT] = ACTIONS(2172), + [anon_sym_null] = ACTIONS(2172), + [anon_sym_true] = ACTIONS(2172), + [anon_sym_false] = ACTIONS(2172), + [aux_sym__val_number_decimal_token1] = ACTIONS(2168), + [aux_sym__val_number_decimal_token2] = ACTIONS(2172), + [aux_sym__val_number_decimal_token3] = ACTIONS(2172), + [aux_sym__val_number_decimal_token4] = ACTIONS(2172), + [aux_sym__val_number_token1] = ACTIONS(2172), + [aux_sym__val_number_token2] = ACTIONS(2172), + [aux_sym__val_number_token3] = ACTIONS(2172), + [aux_sym__val_number_token4] = ACTIONS(2172), + [aux_sym__val_number_token5] = ACTIONS(2172), + [aux_sym__val_number_token6] = ACTIONS(2172), + [anon_sym_0b] = ACTIONS(2168), + [anon_sym_0o] = ACTIONS(2168), + [anon_sym_0x] = ACTIONS(2168), + [sym_val_date] = ACTIONS(2172), + [anon_sym_DQUOTE] = ACTIONS(2172), + [sym__str_single_quotes] = ACTIONS(2172), + [sym__str_back_ticks] = ACTIONS(2172), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2172), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2168), + [anon_sym_out_GT] = ACTIONS(2168), + [anon_sym_e_GT] = ACTIONS(2168), + [anon_sym_o_GT] = ACTIONS(2168), + [anon_sym_err_PLUSout_GT] = ACTIONS(2168), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2168), + [anon_sym_o_PLUSe_GT] = ACTIONS(2168), + [anon_sym_e_PLUSo_GT] = ACTIONS(2168), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), + [aux_sym_unquoted_token1] = ACTIONS(2168), + [aux_sym_unquoted_token2] = ACTIONS(1562), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2172), + }, + [1601] = { + [sym_comment] = STATE(1601), + [sym__newline] = ACTIONS(1695), + [anon_sym_SEMI] = ACTIONS(1695), + [anon_sym_PIPE] = ACTIONS(1695), + [anon_sym_err_GT_PIPE] = ACTIONS(1695), + [anon_sym_out_GT_PIPE] = ACTIONS(1695), + [anon_sym_e_GT_PIPE] = ACTIONS(1695), + [anon_sym_o_GT_PIPE] = ACTIONS(1695), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1695), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1695), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1695), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1695), + [anon_sym_LBRACK] = ACTIONS(1695), + [anon_sym_LPAREN] = ACTIONS(1695), + [anon_sym_RPAREN] = ACTIONS(1695), + [anon_sym_DOLLAR] = ACTIONS(1693), + [anon_sym_DASH_DASH] = ACTIONS(1695), + [anon_sym_DASH2] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1695), + [anon_sym_RBRACE] = ACTIONS(1695), + [anon_sym_DOT_DOT] = ACTIONS(1693), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1695), + [anon_sym_DOT_DOT_LT] = ACTIONS(1695), + [aux_sym__immediate_decimal_token1] = ACTIONS(4857), + [aux_sym__immediate_decimal_token2] = ACTIONS(4859), + [anon_sym_null] = ACTIONS(1695), + [anon_sym_true] = ACTIONS(1695), + [anon_sym_false] = ACTIONS(1695), + [aux_sym__val_number_decimal_token1] = ACTIONS(1693), + [aux_sym__val_number_decimal_token2] = ACTIONS(1695), + [aux_sym__val_number_decimal_token3] = ACTIONS(1695), + [aux_sym__val_number_decimal_token4] = ACTIONS(1695), + [aux_sym__val_number_token1] = ACTIONS(1695), + [aux_sym__val_number_token2] = ACTIONS(1695), + [aux_sym__val_number_token3] = ACTIONS(1695), + [aux_sym__val_number_token4] = ACTIONS(1695), + [aux_sym__val_number_token5] = ACTIONS(1695), + [aux_sym__val_number_token6] = ACTIONS(1695), + [anon_sym_0b] = ACTIONS(1693), + [anon_sym_0o] = ACTIONS(1693), + [anon_sym_0x] = ACTIONS(1693), + [sym_val_date] = ACTIONS(1695), + [anon_sym_DQUOTE] = ACTIONS(1695), + [sym__str_single_quotes] = ACTIONS(1695), + [sym__str_back_ticks] = ACTIONS(1695), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1695), + [anon_sym_err_GT] = ACTIONS(1693), + [anon_sym_out_GT] = ACTIONS(1693), + [anon_sym_e_GT] = ACTIONS(1693), + [anon_sym_o_GT] = ACTIONS(1693), + [anon_sym_err_PLUSout_GT] = ACTIONS(1693), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1693), + [anon_sym_o_PLUSe_GT] = ACTIONS(1693), + [anon_sym_e_PLUSo_GT] = ACTIONS(1693), + [anon_sym_err_GT_GT] = ACTIONS(1695), + [anon_sym_out_GT_GT] = ACTIONS(1695), + [anon_sym_e_GT_GT] = ACTIONS(1695), + [anon_sym_o_GT_GT] = ACTIONS(1695), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1695), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1695), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1695), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1695), + [aux_sym_unquoted_token1] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1695), + }, + [1602] = { + [sym_comment] = STATE(1602), + [sym__newline] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(998), + [anon_sym_err_GT_PIPE] = ACTIONS(998), + [anon_sym_out_GT_PIPE] = ACTIONS(998), + [anon_sym_e_GT_PIPE] = ACTIONS(998), + [anon_sym_o_GT_PIPE] = ACTIONS(998), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(998), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(998), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(998), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(998), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_RBRACE] = ACTIONS(998), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_LPAREN2] = ACTIONS(2061), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_null] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym__val_number_decimal_token1] = ACTIONS(1002), + [aux_sym__val_number_decimal_token2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = ACTIONS(1002), + [aux_sym__val_number_decimal_token4] = ACTIONS(1002), + [aux_sym__val_number_token1] = ACTIONS(1002), + [aux_sym__val_number_token2] = ACTIONS(1002), + [aux_sym__val_number_token3] = ACTIONS(1002), + [aux_sym__val_number_token4] = ACTIONS(1002), + [aux_sym__val_number_token5] = ACTIONS(1002), + [aux_sym__val_number_token6] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym__str_single_quotes] = ACTIONS(998), + [sym__str_back_ticks] = ACTIONS(998), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(998), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [anon_sym_err_GT_GT] = ACTIONS(1002), + [anon_sym_out_GT_GT] = ACTIONS(1002), + [anon_sym_e_GT_GT] = ACTIONS(1002), + [anon_sym_o_GT_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1002), + [aux_sym_unquoted_token1] = ACTIONS(1002), + [aux_sym_unquoted_token4] = ACTIONS(2063), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(998), + }, + [1603] = { + [sym_comment] = STATE(1603), + [ts_builtin_sym_end] = 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_DASH2] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(988), + [anon_sym_DOT_DOT] = ACTIONS(986), + [anon_sym_DOT_DOT2] = 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), + [anon_sym_null] = ACTIONS(988), + [anon_sym_true] = ACTIONS(988), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(988), + [aux_sym__val_number_token5] = ACTIONS(988), + [aux_sym__val_number_token6] = 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), + [sym_raw_string_begin] = ACTIONS(988), + }, + [1604] = { + [sym_comment] = STATE(1604), + [sym__newline] = ACTIONS(4861), + [anon_sym_SEMI] = ACTIONS(4861), + [anon_sym_PIPE] = ACTIONS(4861), + [anon_sym_err_GT_PIPE] = ACTIONS(4861), + [anon_sym_out_GT_PIPE] = ACTIONS(4861), + [anon_sym_e_GT_PIPE] = ACTIONS(4861), + [anon_sym_o_GT_PIPE] = ACTIONS(4861), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4861), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4861), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4861), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4861), + [anon_sym_LBRACK] = ACTIONS(4861), + [anon_sym_LPAREN] = ACTIONS(4861), + [anon_sym_RPAREN] = ACTIONS(4861), + [anon_sym_DOLLAR] = ACTIONS(4863), + [anon_sym_DASH_DASH] = ACTIONS(4863), + [anon_sym_DASH2] = ACTIONS(4863), + [anon_sym_LBRACE] = ACTIONS(4861), + [anon_sym_RBRACE] = ACTIONS(4861), + [anon_sym_DOT_DOT] = ACTIONS(4863), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4861), + [anon_sym_DOT_DOT_LT] = ACTIONS(4861), + [anon_sym_null] = ACTIONS(4863), + [anon_sym_true] = ACTIONS(4863), + [anon_sym_false] = ACTIONS(4863), + [aux_sym__val_number_decimal_token1] = ACTIONS(4863), + [aux_sym__val_number_decimal_token2] = ACTIONS(4863), + [aux_sym__val_number_decimal_token3] = ACTIONS(4861), + [aux_sym__val_number_decimal_token4] = ACTIONS(4861), + [aux_sym__val_number_token1] = ACTIONS(4863), + [aux_sym__val_number_token2] = ACTIONS(4863), + [aux_sym__val_number_token3] = ACTIONS(4863), + [aux_sym__val_number_token4] = ACTIONS(4863), + [aux_sym__val_number_token5] = ACTIONS(4863), + [aux_sym__val_number_token6] = ACTIONS(4863), + [anon_sym_0b] = ACTIONS(4863), + [anon_sym_0o] = ACTIONS(4863), + [anon_sym_0x] = ACTIONS(4863), + [sym_val_date] = ACTIONS(4863), + [anon_sym_DQUOTE] = ACTIONS(4861), + [sym__str_single_quotes] = ACTIONS(4861), + [sym__str_back_ticks] = ACTIONS(4861), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4861), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4861), + [anon_sym_err_GT] = ACTIONS(4863), + [anon_sym_out_GT] = ACTIONS(4863), + [anon_sym_e_GT] = ACTIONS(4863), + [anon_sym_o_GT] = ACTIONS(4863), + [anon_sym_err_PLUSout_GT] = ACTIONS(4863), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4863), + [anon_sym_o_PLUSe_GT] = ACTIONS(4863), + [anon_sym_e_PLUSo_GT] = ACTIONS(4863), + [anon_sym_err_GT_GT] = ACTIONS(4861), + [anon_sym_out_GT_GT] = ACTIONS(4861), + [anon_sym_e_GT_GT] = ACTIONS(4861), + [anon_sym_o_GT_GT] = ACTIONS(4861), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4861), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4861), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4861), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4861), + [anon_sym_EQ2] = ACTIONS(4865), + [sym_short_flag_identifier] = ACTIONS(4867), + [aux_sym_unquoted_token1] = ACTIONS(4863), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4861), + }, + [1605] = { + [sym_comment] = STATE(1605), + [ts_builtin_sym_end] = ACTIONS(958), + [sym__newline] = ACTIONS(958), + [anon_sym_SEMI] = ACTIONS(958), + [anon_sym_PIPE] = ACTIONS(958), + [anon_sym_err_GT_PIPE] = ACTIONS(958), + [anon_sym_out_GT_PIPE] = ACTIONS(958), + [anon_sym_e_GT_PIPE] = ACTIONS(958), + [anon_sym_o_GT_PIPE] = ACTIONS(958), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(958), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(958), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(958), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(958), + [anon_sym_GT2] = ACTIONS(956), + [anon_sym_DASH2] = ACTIONS(958), + [anon_sym_in2] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_STAR2] = ACTIONS(956), + [anon_sym_QMARK2] = ACTIONS(958), + [anon_sym_and2] = ACTIONS(958), + [anon_sym_xor2] = ACTIONS(958), + [anon_sym_or2] = ACTIONS(958), + [anon_sym_not_DASHin2] = ACTIONS(958), + [anon_sym_has2] = ACTIONS(958), + [anon_sym_not_DASHhas2] = ACTIONS(958), + [anon_sym_starts_DASHwith2] = ACTIONS(958), + [anon_sym_ends_DASHwith2] = ACTIONS(958), + [anon_sym_EQ_EQ2] = ACTIONS(958), + [anon_sym_BANG_EQ2] = ACTIONS(958), + [anon_sym_LT2] = ACTIONS(956), + [anon_sym_LT_EQ2] = ACTIONS(958), + [anon_sym_GT_EQ2] = ACTIONS(958), + [anon_sym_EQ_TILDE2] = ACTIONS(958), + [anon_sym_BANG_TILDE2] = ACTIONS(958), + [anon_sym_STAR_STAR2] = ACTIONS(958), + [anon_sym_PLUS_PLUS2] = ACTIONS(958), + [anon_sym_SLASH2] = ACTIONS(956), + [anon_sym_mod2] = ACTIONS(958), + [anon_sym_SLASH_SLASH2] = ACTIONS(958), + [anon_sym_PLUS2] = ACTIONS(956), + [anon_sym_bit_DASHshl2] = ACTIONS(958), + [anon_sym_bit_DASHshr2] = ACTIONS(958), + [anon_sym_bit_DASHand2] = ACTIONS(958), + [anon_sym_bit_DASHxor2] = ACTIONS(958), + [anon_sym_bit_DASHor2] = ACTIONS(958), + [anon_sym_DOT_DOT2] = ACTIONS(956), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(958), + [anon_sym_DOT_DOT_LT2] = ACTIONS(958), + [anon_sym_DOT2] = ACTIONS(956), + [anon_sym_err_GT] = ACTIONS(956), + [anon_sym_out_GT] = ACTIONS(956), + [anon_sym_e_GT] = ACTIONS(956), + [anon_sym_o_GT] = ACTIONS(956), + [anon_sym_err_PLUSout_GT] = ACTIONS(956), + [anon_sym_out_PLUSerr_GT] = ACTIONS(956), + [anon_sym_o_PLUSe_GT] = ACTIONS(956), + [anon_sym_e_PLUSo_GT] = ACTIONS(956), + [anon_sym_err_GT_GT] = ACTIONS(958), + [anon_sym_out_GT_GT] = ACTIONS(958), + [anon_sym_e_GT_GT] = ACTIONS(958), + [anon_sym_o_GT_GT] = ACTIONS(958), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(958), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(958), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(958), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(958), + [anon_sym_POUND] = ACTIONS(247), + }, + [1606] = { + [sym_comment] = STATE(1606), + [sym__newline] = ACTIONS(2166), + [anon_sym_SEMI] = ACTIONS(2166), + [anon_sym_PIPE] = ACTIONS(2166), + [anon_sym_err_GT_PIPE] = ACTIONS(2166), + [anon_sym_out_GT_PIPE] = ACTIONS(2166), + [anon_sym_e_GT_PIPE] = ACTIONS(2166), + [anon_sym_o_GT_PIPE] = ACTIONS(2166), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2166), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2166), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2166), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2166), + [anon_sym_LBRACK] = ACTIONS(2166), + [anon_sym_LPAREN] = ACTIONS(2164), + [anon_sym_RPAREN] = ACTIONS(2166), + [anon_sym_DOLLAR] = ACTIONS(2164), + [anon_sym_DASH_DASH] = ACTIONS(2166), + [anon_sym_DASH2] = ACTIONS(2164), + [anon_sym_LBRACE] = ACTIONS(2166), + [anon_sym_RBRACE] = ACTIONS(2166), + [anon_sym_DOT_DOT] = ACTIONS(2164), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2166), + [anon_sym_DOT_DOT_LT] = ACTIONS(2166), + [anon_sym_null] = ACTIONS(2166), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [aux_sym__val_number_decimal_token1] = ACTIONS(2164), + [aux_sym__val_number_decimal_token2] = ACTIONS(2166), + [aux_sym__val_number_decimal_token3] = ACTIONS(2166), + [aux_sym__val_number_decimal_token4] = ACTIONS(2166), + [aux_sym__val_number_token1] = ACTIONS(2166), + [aux_sym__val_number_token2] = ACTIONS(2166), + [aux_sym__val_number_token3] = ACTIONS(2166), + [aux_sym__val_number_token4] = ACTIONS(2166), + [aux_sym__val_number_token5] = ACTIONS(2166), + [aux_sym__val_number_token6] = ACTIONS(2166), + [anon_sym_0b] = ACTIONS(2164), + [anon_sym_0o] = ACTIONS(2164), + [anon_sym_0x] = ACTIONS(2164), + [sym_val_date] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2166), + [sym__str_single_quotes] = ACTIONS(2166), + [sym__str_back_ticks] = ACTIONS(2166), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2166), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2166), + [anon_sym_err_GT] = ACTIONS(2164), + [anon_sym_out_GT] = ACTIONS(2164), + [anon_sym_e_GT] = ACTIONS(2164), + [anon_sym_o_GT] = ACTIONS(2164), + [anon_sym_err_PLUSout_GT] = ACTIONS(2164), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2164), + [anon_sym_o_PLUSe_GT] = ACTIONS(2164), + [anon_sym_e_PLUSo_GT] = ACTIONS(2164), + [anon_sym_err_GT_GT] = ACTIONS(2166), + [anon_sym_out_GT_GT] = ACTIONS(2166), + [anon_sym_e_GT_GT] = ACTIONS(2166), + [anon_sym_o_GT_GT] = ACTIONS(2166), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2166), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2166), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2166), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2166), + [aux_sym_unquoted_token1] = ACTIONS(2164), + [aux_sym_unquoted_token2] = ACTIONS(1826), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2166), + }, + [1607] = { + [sym_comment] = STATE(1607), + [ts_builtin_sym_end] = ACTIONS(948), + [sym__newline] = ACTIONS(948), + [anon_sym_SEMI] = ACTIONS(948), + [anon_sym_PIPE] = ACTIONS(948), + [anon_sym_err_GT_PIPE] = ACTIONS(948), + [anon_sym_out_GT_PIPE] = ACTIONS(948), + [anon_sym_e_GT_PIPE] = ACTIONS(948), + [anon_sym_o_GT_PIPE] = ACTIONS(948), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(948), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(948), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(948), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(948), + [anon_sym_GT2] = ACTIONS(946), + [anon_sym_DASH2] = ACTIONS(948), + [anon_sym_in2] = ACTIONS(948), + [anon_sym_LBRACE] = ACTIONS(948), + [anon_sym_STAR2] = ACTIONS(946), + [anon_sym_QMARK2] = ACTIONS(948), + [anon_sym_and2] = ACTIONS(948), + [anon_sym_xor2] = ACTIONS(948), + [anon_sym_or2] = ACTIONS(948), + [anon_sym_not_DASHin2] = ACTIONS(948), + [anon_sym_has2] = ACTIONS(948), + [anon_sym_not_DASHhas2] = ACTIONS(948), + [anon_sym_starts_DASHwith2] = ACTIONS(948), + [anon_sym_ends_DASHwith2] = ACTIONS(948), + [anon_sym_EQ_EQ2] = ACTIONS(948), + [anon_sym_BANG_EQ2] = ACTIONS(948), + [anon_sym_LT2] = ACTIONS(946), + [anon_sym_LT_EQ2] = ACTIONS(948), + [anon_sym_GT_EQ2] = ACTIONS(948), + [anon_sym_EQ_TILDE2] = ACTIONS(948), + [anon_sym_BANG_TILDE2] = ACTIONS(948), + [anon_sym_STAR_STAR2] = ACTIONS(948), + [anon_sym_PLUS_PLUS2] = ACTIONS(948), + [anon_sym_SLASH2] = ACTIONS(946), + [anon_sym_mod2] = ACTIONS(948), + [anon_sym_SLASH_SLASH2] = ACTIONS(948), + [anon_sym_PLUS2] = ACTIONS(946), + [anon_sym_bit_DASHshl2] = ACTIONS(948), + [anon_sym_bit_DASHshr2] = ACTIONS(948), + [anon_sym_bit_DASHand2] = ACTIONS(948), + [anon_sym_bit_DASHxor2] = ACTIONS(948), + [anon_sym_bit_DASHor2] = ACTIONS(948), + [anon_sym_DOT_DOT2] = ACTIONS(946), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(948), + [anon_sym_DOT_DOT_LT2] = ACTIONS(948), + [anon_sym_DOT2] = ACTIONS(946), + [anon_sym_err_GT] = ACTIONS(946), + [anon_sym_out_GT] = ACTIONS(946), + [anon_sym_e_GT] = ACTIONS(946), + [anon_sym_o_GT] = ACTIONS(946), + [anon_sym_err_PLUSout_GT] = ACTIONS(946), + [anon_sym_out_PLUSerr_GT] = ACTIONS(946), + [anon_sym_o_PLUSe_GT] = ACTIONS(946), + [anon_sym_e_PLUSo_GT] = ACTIONS(946), + [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), + [anon_sym_POUND] = ACTIONS(247), + }, + [1608] = { + [sym_comment] = STATE(1608), + [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_GT2] = ACTIONS(1806), + [anon_sym_DASH2] = ACTIONS(1814), + [anon_sym_in2] = ACTIONS(1814), + [anon_sym_RBRACE] = ACTIONS(1814), + [anon_sym_STAR2] = ACTIONS(1806), + [anon_sym_and2] = ACTIONS(1814), + [anon_sym_xor2] = ACTIONS(1814), + [anon_sym_or2] = ACTIONS(1814), + [anon_sym_not_DASHin2] = ACTIONS(1814), + [anon_sym_has2] = ACTIONS(1814), + [anon_sym_not_DASHhas2] = ACTIONS(1814), + [anon_sym_starts_DASHwith2] = ACTIONS(1814), + [anon_sym_ends_DASHwith2] = ACTIONS(1814), + [anon_sym_EQ_EQ2] = ACTIONS(1814), + [anon_sym_BANG_EQ2] = ACTIONS(1814), + [anon_sym_LT2] = ACTIONS(1806), + [anon_sym_LT_EQ2] = ACTIONS(1814), + [anon_sym_GT_EQ2] = ACTIONS(1814), + [anon_sym_EQ_TILDE2] = ACTIONS(1814), + [anon_sym_BANG_TILDE2] = ACTIONS(1814), + [anon_sym_LPAREN2] = ACTIONS(1808), + [anon_sym_STAR_STAR2] = ACTIONS(1814), + [anon_sym_PLUS_PLUS2] = ACTIONS(1814), + [anon_sym_SLASH2] = ACTIONS(1806), + [anon_sym_mod2] = ACTIONS(1814), + [anon_sym_SLASH_SLASH2] = ACTIONS(1814), + [anon_sym_PLUS2] = ACTIONS(1806), + [anon_sym_bit_DASHshl2] = ACTIONS(1814), + [anon_sym_bit_DASHshr2] = ACTIONS(1814), + [anon_sym_bit_DASHand2] = ACTIONS(1814), + [anon_sym_bit_DASHxor2] = ACTIONS(1814), + [anon_sym_bit_DASHor2] = ACTIONS(1814), + [anon_sym_DOT_DOT2] = ACTIONS(4869), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4871), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4871), + [anon_sym_err_GT] = ACTIONS(1806), + [anon_sym_out_GT] = ACTIONS(1806), + [anon_sym_e_GT] = ACTIONS(1806), + [anon_sym_o_GT] = ACTIONS(1806), + [anon_sym_err_PLUSout_GT] = ACTIONS(1806), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1806), + [anon_sym_o_PLUSe_GT] = ACTIONS(1806), + [anon_sym_e_PLUSo_GT] = ACTIONS(1806), + [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_token2] = ACTIONS(1457), + [anon_sym_POUND] = ACTIONS(247), + }, + [1609] = { + [sym_comment] = STATE(1609), + [sym__newline] = ACTIONS(2069), + [anon_sym_SEMI] = ACTIONS(2069), + [anon_sym_PIPE] = ACTIONS(2069), + [anon_sym_err_GT_PIPE] = ACTIONS(2069), + [anon_sym_out_GT_PIPE] = ACTIONS(2069), + [anon_sym_e_GT_PIPE] = ACTIONS(2069), + [anon_sym_o_GT_PIPE] = ACTIONS(2069), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2069), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2069), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2069), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2069), + [anon_sym_LBRACK] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2065), + [anon_sym_RPAREN] = ACTIONS(2069), + [anon_sym_DOLLAR] = ACTIONS(2065), + [anon_sym_DASH_DASH] = ACTIONS(2065), + [anon_sym_DASH2] = ACTIONS(2065), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_RBRACE] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(2065), + [anon_sym_LPAREN2] = ACTIONS(2067), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2065), + [anon_sym_DOT_DOT_LT] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2065), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [aux_sym__val_number_decimal_token1] = ACTIONS(2065), + [aux_sym__val_number_decimal_token2] = ACTIONS(2065), + [aux_sym__val_number_decimal_token3] = ACTIONS(2065), + [aux_sym__val_number_decimal_token4] = ACTIONS(2065), + [aux_sym__val_number_token1] = ACTIONS(2065), + [aux_sym__val_number_token2] = ACTIONS(2065), + [aux_sym__val_number_token3] = ACTIONS(2065), + [aux_sym__val_number_token4] = ACTIONS(2065), + [aux_sym__val_number_token5] = ACTIONS(2065), + [aux_sym__val_number_token6] = ACTIONS(2065), + [anon_sym_0b] = ACTIONS(2065), + [anon_sym_0o] = ACTIONS(2065), + [anon_sym_0x] = ACTIONS(2065), + [sym_val_date] = ACTIONS(2065), + [anon_sym_DQUOTE] = ACTIONS(2069), + [sym__str_single_quotes] = ACTIONS(2069), + [sym__str_back_ticks] = ACTIONS(2069), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2069), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2069), + [anon_sym_err_GT] = ACTIONS(2065), + [anon_sym_out_GT] = ACTIONS(2065), + [anon_sym_e_GT] = ACTIONS(2065), + [anon_sym_o_GT] = ACTIONS(2065), + [anon_sym_err_PLUSout_GT] = ACTIONS(2065), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2065), + [anon_sym_o_PLUSe_GT] = ACTIONS(2065), + [anon_sym_e_PLUSo_GT] = ACTIONS(2065), + [anon_sym_err_GT_GT] = ACTIONS(2065), + [anon_sym_out_GT_GT] = ACTIONS(2065), + [anon_sym_e_GT_GT] = ACTIONS(2065), + [anon_sym_o_GT_GT] = ACTIONS(2065), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2065), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2065), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2065), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2065), + [aux_sym_unquoted_token1] = ACTIONS(2065), + [aux_sym_unquoted_token4] = ACTIONS(2071), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2069), + }, + [1610] = { + [sym_path] = STATE(1811), + [sym_comment] = STATE(1610), + [aux_sym_cell_path_repeat1] = STATE(1610), + [ts_builtin_sym_end] = ACTIONS(937), + [sym__newline] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(937), + [anon_sym_err_GT_PIPE] = ACTIONS(937), + [anon_sym_out_GT_PIPE] = ACTIONS(937), + [anon_sym_e_GT_PIPE] = ACTIONS(937), + [anon_sym_o_GT_PIPE] = ACTIONS(937), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(937), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(937), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(937), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(937), + [anon_sym_LPAREN] = ACTIONS(937), + [anon_sym_DOLLAR] = ACTIONS(935), + [anon_sym_DASH_DASH] = ACTIONS(937), + [anon_sym_DASH2] = ACTIONS(935), + [anon_sym_LBRACE] = ACTIONS(937), + [anon_sym_DOT_DOT] = ACTIONS(935), + [anon_sym_DOT_DOT_EQ] = ACTIONS(937), + [anon_sym_DOT_DOT_LT] = ACTIONS(937), + [anon_sym_null] = ACTIONS(937), + [anon_sym_true] = ACTIONS(937), + [anon_sym_false] = ACTIONS(937), + [aux_sym__val_number_decimal_token1] = ACTIONS(935), + [aux_sym__val_number_decimal_token2] = ACTIONS(937), + [aux_sym__val_number_decimal_token3] = ACTIONS(937), + [aux_sym__val_number_decimal_token4] = ACTIONS(937), + [aux_sym__val_number_token1] = ACTIONS(937), + [aux_sym__val_number_token2] = ACTIONS(937), + [aux_sym__val_number_token3] = ACTIONS(937), + [aux_sym__val_number_token4] = ACTIONS(937), + [aux_sym__val_number_token5] = ACTIONS(937), + [aux_sym__val_number_token6] = ACTIONS(937), + [anon_sym_0b] = ACTIONS(935), + [anon_sym_0o] = ACTIONS(935), + [anon_sym_0x] = ACTIONS(935), + [sym_val_date] = ACTIONS(937), + [anon_sym_DQUOTE] = ACTIONS(937), + [sym__str_single_quotes] = ACTIONS(937), + [sym__str_back_ticks] = ACTIONS(937), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(937), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(937), + [anon_sym_DOT2] = ACTIONS(4873), + [anon_sym_err_GT] = ACTIONS(935), + [anon_sym_out_GT] = ACTIONS(935), + [anon_sym_e_GT] = ACTIONS(935), + [anon_sym_o_GT] = ACTIONS(935), + [anon_sym_err_PLUSout_GT] = ACTIONS(935), + [anon_sym_out_PLUSerr_GT] = ACTIONS(935), + [anon_sym_o_PLUSe_GT] = ACTIONS(935), + [anon_sym_e_PLUSo_GT] = ACTIONS(935), + [anon_sym_err_GT_GT] = ACTIONS(937), + [anon_sym_out_GT_GT] = ACTIONS(937), + [anon_sym_e_GT_GT] = ACTIONS(937), + [anon_sym_o_GT_GT] = ACTIONS(937), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(937), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(937), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(937), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(937), + [aux_sym_unquoted_token1] = ACTIONS(935), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(937), + }, + [1611] = { + [sym_comment] = STATE(1611), + [ts_builtin_sym_end] = ACTIONS(1695), + [sym__newline] = ACTIONS(1695), + [anon_sym_SEMI] = ACTIONS(1695), + [anon_sym_PIPE] = ACTIONS(1695), + [anon_sym_err_GT_PIPE] = ACTIONS(1695), + [anon_sym_out_GT_PIPE] = ACTIONS(1695), + [anon_sym_e_GT_PIPE] = ACTIONS(1695), + [anon_sym_o_GT_PIPE] = ACTIONS(1695), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1695), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1695), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1695), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1695), + [anon_sym_LBRACK] = ACTIONS(1695), + [anon_sym_LPAREN] = ACTIONS(1695), + [anon_sym_DOLLAR] = ACTIONS(1693), + [anon_sym_DASH_DASH] = ACTIONS(1695), + [anon_sym_DASH2] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1695), + [anon_sym_DOT_DOT] = ACTIONS(1693), + [anon_sym_DOT_DOT2] = ACTIONS(1693), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1693), + [anon_sym_DOT_DOT_LT] = ACTIONS(1693), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1695), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1695), + [anon_sym_null] = ACTIONS(1695), + [anon_sym_true] = ACTIONS(1695), + [anon_sym_false] = ACTIONS(1695), + [aux_sym__val_number_decimal_token1] = ACTIONS(1693), + [aux_sym__val_number_decimal_token2] = ACTIONS(1695), + [aux_sym__val_number_decimal_token3] = ACTIONS(1695), + [aux_sym__val_number_decimal_token4] = ACTIONS(1695), + [aux_sym__val_number_token1] = ACTIONS(1695), + [aux_sym__val_number_token2] = ACTIONS(1695), + [aux_sym__val_number_token3] = ACTIONS(1695), + [aux_sym__val_number_token4] = ACTIONS(1695), + [aux_sym__val_number_token5] = ACTIONS(1695), + [aux_sym__val_number_token6] = ACTIONS(1695), + [anon_sym_0b] = ACTIONS(1693), + [anon_sym_0o] = ACTIONS(1693), + [anon_sym_0x] = ACTIONS(1693), + [sym_val_date] = ACTIONS(1695), + [anon_sym_DQUOTE] = ACTIONS(1695), + [sym__str_single_quotes] = ACTIONS(1695), + [sym__str_back_ticks] = ACTIONS(1695), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1695), + [anon_sym_err_GT] = ACTIONS(1693), + [anon_sym_out_GT] = ACTIONS(1693), + [anon_sym_e_GT] = ACTIONS(1693), + [anon_sym_o_GT] = ACTIONS(1693), + [anon_sym_err_PLUSout_GT] = ACTIONS(1693), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1693), + [anon_sym_o_PLUSe_GT] = ACTIONS(1693), + [anon_sym_e_PLUSo_GT] = ACTIONS(1693), + [anon_sym_err_GT_GT] = ACTIONS(1695), + [anon_sym_out_GT_GT] = ACTIONS(1695), + [anon_sym_e_GT_GT] = ACTIONS(1695), + [anon_sym_o_GT_GT] = ACTIONS(1695), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1695), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1695), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1695), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1695), + [aux_sym_unquoted_token1] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1695), + }, + [1612] = { + [sym_comment] = STATE(1612), + [ts_builtin_sym_end] = ACTIONS(998), + [sym__newline] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(998), + [anon_sym_err_GT_PIPE] = ACTIONS(998), + [anon_sym_out_GT_PIPE] = ACTIONS(998), + [anon_sym_e_GT_PIPE] = ACTIONS(998), + [anon_sym_o_GT_PIPE] = ACTIONS(998), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(998), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(998), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(998), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(998), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT2] = ACTIONS(4876), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4878), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4878), + [anon_sym_null] = ACTIONS(998), + [anon_sym_true] = ACTIONS(998), + [anon_sym_false] = ACTIONS(998), + [aux_sym__val_number_decimal_token1] = ACTIONS(1002), + [aux_sym__val_number_decimal_token2] = ACTIONS(998), + [aux_sym__val_number_decimal_token3] = ACTIONS(998), + [aux_sym__val_number_decimal_token4] = ACTIONS(998), + [aux_sym__val_number_token1] = ACTIONS(998), + [aux_sym__val_number_token2] = ACTIONS(998), + [aux_sym__val_number_token3] = ACTIONS(998), + [aux_sym__val_number_token4] = ACTIONS(998), + [aux_sym__val_number_token5] = ACTIONS(998), + [aux_sym__val_number_token6] = ACTIONS(998), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym__str_single_quotes] = ACTIONS(998), + [sym__str_back_ticks] = ACTIONS(998), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(998), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [anon_sym_err_GT_GT] = ACTIONS(998), + [anon_sym_out_GT_GT] = ACTIONS(998), + [anon_sym_e_GT_GT] = ACTIONS(998), + [anon_sym_o_GT_GT] = ACTIONS(998), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(998), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(998), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(998), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(998), + [aux_sym_unquoted_token1] = ACTIONS(1002), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(998), }, [1613] = { - [sym_cell_path] = STATE(2028), - [sym_path] = STATE(1532), [sym_comment] = STATE(1613), - [aux_sym_cell_path_repeat1] = STATE(1386), - [sym__newline] = ACTIONS(1967), - [anon_sym_SEMI] = ACTIONS(1967), - [anon_sym_PIPE] = ACTIONS(1967), - [anon_sym_err_GT_PIPE] = ACTIONS(1967), - [anon_sym_out_GT_PIPE] = ACTIONS(1967), - [anon_sym_e_GT_PIPE] = ACTIONS(1967), - [anon_sym_o_GT_PIPE] = ACTIONS(1967), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1967), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1967), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1967), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1967), - [anon_sym_RPAREN] = ACTIONS(1967), - [anon_sym_GT2] = ACTIONS(1965), - [anon_sym_DASH2] = ACTIONS(1967), - [anon_sym_in2] = ACTIONS(1967), - [anon_sym_if] = ACTIONS(1967), - [anon_sym_LBRACE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(1967), - [anon_sym_EQ_GT] = ACTIONS(1967), - [anon_sym_STAR2] = ACTIONS(1965), - [anon_sym_and2] = ACTIONS(1967), - [anon_sym_xor2] = ACTIONS(1967), - [anon_sym_or2] = ACTIONS(1967), - [anon_sym_not_DASHin2] = ACTIONS(1967), - [anon_sym_starts_DASHwith2] = ACTIONS(1967), - [anon_sym_ends_DASHwith2] = ACTIONS(1967), - [anon_sym_EQ_EQ2] = ACTIONS(1967), - [anon_sym_BANG_EQ2] = ACTIONS(1967), - [anon_sym_LT2] = ACTIONS(1965), - [anon_sym_LT_EQ2] = ACTIONS(1967), - [anon_sym_GT_EQ2] = ACTIONS(1967), - [anon_sym_EQ_TILDE2] = ACTIONS(1967), - [anon_sym_BANG_TILDE2] = ACTIONS(1967), - [anon_sym_STAR_STAR2] = ACTIONS(1967), - [anon_sym_PLUS_PLUS2] = ACTIONS(1967), - [anon_sym_SLASH2] = ACTIONS(1965), - [anon_sym_mod2] = ACTIONS(1967), - [anon_sym_SLASH_SLASH2] = ACTIONS(1967), - [anon_sym_PLUS2] = ACTIONS(1965), - [anon_sym_bit_DASHshl2] = ACTIONS(1967), - [anon_sym_bit_DASHshr2] = ACTIONS(1967), - [anon_sym_bit_DASHand2] = ACTIONS(1967), - [anon_sym_bit_DASHxor2] = ACTIONS(1967), - [anon_sym_bit_DASHor2] = ACTIONS(1967), - [anon_sym_DOT2] = ACTIONS(4912), - [anon_sym_err_GT] = ACTIONS(1965), - [anon_sym_out_GT] = ACTIONS(1965), - [anon_sym_e_GT] = ACTIONS(1965), - [anon_sym_o_GT] = ACTIONS(1965), - [anon_sym_err_PLUSout_GT] = ACTIONS(1965), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1965), - [anon_sym_o_PLUSe_GT] = ACTIONS(1965), - [anon_sym_e_PLUSo_GT] = ACTIONS(1965), - [anon_sym_err_GT_GT] = ACTIONS(1967), - [anon_sym_out_GT_GT] = ACTIONS(1967), - [anon_sym_e_GT_GT] = ACTIONS(1967), - [anon_sym_o_GT_GT] = ACTIONS(1967), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1967), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1967), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1967), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1967), - [anon_sym_POUND] = ACTIONS(251), + [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(2085), + [anon_sym_DASH2] = ACTIONS(2085), + [anon_sym_LBRACE] = ACTIONS(2087), + [anon_sym_RBRACE] = ACTIONS(2087), + [anon_sym_DOT_DOT] = ACTIONS(2085), + [anon_sym_LPAREN2] = ACTIONS(2087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [anon_sym_null] = ACTIONS(2085), + [anon_sym_true] = ACTIONS(2085), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(2085), + [aux_sym__val_number_token5] = ACTIONS(2085), + [aux_sym__val_number_token6] = ACTIONS(2085), + [anon_sym_0b] = ACTIONS(2085), + [anon_sym_0o] = ACTIONS(2085), + [anon_sym_0x] = ACTIONS(2085), + [sym_val_date] = ACTIONS(2085), + [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(2085), + [anon_sym_out_GT_GT] = ACTIONS(2085), + [anon_sym_e_GT_GT] = ACTIONS(2085), + [anon_sym_o_GT_GT] = ACTIONS(2085), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2085), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2085), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2085), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2085), + [aux_sym_unquoted_token1] = ACTIONS(2085), + [aux_sym_unquoted_token4] = ACTIONS(2085), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2087), }, [1614] = { - [sym_cell_path] = STATE(2029), - [sym_path] = STATE(1532), [sym_comment] = STATE(1614), - [aux_sym_cell_path_repeat1] = STATE(1386), - [sym__newline] = ACTIONS(1971), - [anon_sym_SEMI] = ACTIONS(1971), - [anon_sym_PIPE] = ACTIONS(1971), - [anon_sym_err_GT_PIPE] = ACTIONS(1971), - [anon_sym_out_GT_PIPE] = ACTIONS(1971), - [anon_sym_e_GT_PIPE] = ACTIONS(1971), - [anon_sym_o_GT_PIPE] = ACTIONS(1971), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1971), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1971), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1971), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1971), - [anon_sym_RPAREN] = ACTIONS(1971), - [anon_sym_GT2] = ACTIONS(1969), - [anon_sym_DASH2] = ACTIONS(1971), - [anon_sym_in2] = ACTIONS(1971), - [anon_sym_if] = ACTIONS(1971), - [anon_sym_LBRACE] = ACTIONS(1971), - [anon_sym_RBRACE] = ACTIONS(1971), - [anon_sym_EQ_GT] = ACTIONS(1971), - [anon_sym_STAR2] = ACTIONS(1969), - [anon_sym_and2] = ACTIONS(1971), - [anon_sym_xor2] = ACTIONS(1971), - [anon_sym_or2] = ACTIONS(1971), - [anon_sym_not_DASHin2] = ACTIONS(1971), - [anon_sym_starts_DASHwith2] = ACTIONS(1971), - [anon_sym_ends_DASHwith2] = ACTIONS(1971), - [anon_sym_EQ_EQ2] = ACTIONS(1971), - [anon_sym_BANG_EQ2] = ACTIONS(1971), - [anon_sym_LT2] = ACTIONS(1969), - [anon_sym_LT_EQ2] = ACTIONS(1971), - [anon_sym_GT_EQ2] = ACTIONS(1971), - [anon_sym_EQ_TILDE2] = ACTIONS(1971), - [anon_sym_BANG_TILDE2] = ACTIONS(1971), - [anon_sym_STAR_STAR2] = ACTIONS(1971), - [anon_sym_PLUS_PLUS2] = ACTIONS(1971), - [anon_sym_SLASH2] = ACTIONS(1969), - [anon_sym_mod2] = ACTIONS(1971), - [anon_sym_SLASH_SLASH2] = ACTIONS(1971), - [anon_sym_PLUS2] = ACTIONS(1969), - [anon_sym_bit_DASHshl2] = ACTIONS(1971), - [anon_sym_bit_DASHshr2] = ACTIONS(1971), - [anon_sym_bit_DASHand2] = ACTIONS(1971), - [anon_sym_bit_DASHxor2] = ACTIONS(1971), - [anon_sym_bit_DASHor2] = ACTIONS(1971), - [anon_sym_DOT2] = ACTIONS(4912), - [anon_sym_err_GT] = ACTIONS(1969), - [anon_sym_out_GT] = ACTIONS(1969), - [anon_sym_e_GT] = ACTIONS(1969), - [anon_sym_o_GT] = ACTIONS(1969), - [anon_sym_err_PLUSout_GT] = ACTIONS(1969), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1969), - [anon_sym_o_PLUSe_GT] = ACTIONS(1969), - [anon_sym_e_PLUSo_GT] = ACTIONS(1969), - [anon_sym_err_GT_GT] = ACTIONS(1971), - [anon_sym_out_GT_GT] = ACTIONS(1971), - [anon_sym_e_GT_GT] = ACTIONS(1971), - [anon_sym_o_GT_GT] = ACTIONS(1971), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1971), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1971), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1971), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1971), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(1824), + [anon_sym_SEMI] = ACTIONS(1824), + [anon_sym_PIPE] = ACTIONS(1824), + [anon_sym_err_GT_PIPE] = ACTIONS(1824), + [anon_sym_out_GT_PIPE] = ACTIONS(1824), + [anon_sym_e_GT_PIPE] = ACTIONS(1824), + [anon_sym_o_GT_PIPE] = ACTIONS(1824), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1824), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1824), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1824), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1824), + [anon_sym_RPAREN] = ACTIONS(1824), + [anon_sym_GT2] = ACTIONS(1816), + [anon_sym_DASH2] = ACTIONS(1824), + [anon_sym_in2] = ACTIONS(1824), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_STAR2] = ACTIONS(1816), + [anon_sym_and2] = ACTIONS(1824), + [anon_sym_xor2] = ACTIONS(1824), + [anon_sym_or2] = ACTIONS(1824), + [anon_sym_not_DASHin2] = ACTIONS(1824), + [anon_sym_has2] = ACTIONS(1824), + [anon_sym_not_DASHhas2] = ACTIONS(1824), + [anon_sym_starts_DASHwith2] = ACTIONS(1824), + [anon_sym_ends_DASHwith2] = ACTIONS(1824), + [anon_sym_EQ_EQ2] = ACTIONS(1824), + [anon_sym_BANG_EQ2] = ACTIONS(1824), + [anon_sym_LT2] = ACTIONS(1816), + [anon_sym_LT_EQ2] = ACTIONS(1824), + [anon_sym_GT_EQ2] = ACTIONS(1824), + [anon_sym_EQ_TILDE2] = ACTIONS(1824), + [anon_sym_BANG_TILDE2] = ACTIONS(1824), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(1824), + [anon_sym_PLUS_PLUS2] = ACTIONS(1824), + [anon_sym_SLASH2] = ACTIONS(1816), + [anon_sym_mod2] = ACTIONS(1824), + [anon_sym_SLASH_SLASH2] = ACTIONS(1824), + [anon_sym_PLUS2] = ACTIONS(1816), + [anon_sym_bit_DASHshl2] = ACTIONS(1824), + [anon_sym_bit_DASHshr2] = ACTIONS(1824), + [anon_sym_bit_DASHand2] = ACTIONS(1824), + [anon_sym_bit_DASHxor2] = ACTIONS(1824), + [anon_sym_bit_DASHor2] = ACTIONS(1824), + [anon_sym_DOT_DOT2] = ACTIONS(4880), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4882), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4882), + [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(1824), + [anon_sym_out_GT_GT] = ACTIONS(1824), + [anon_sym_e_GT_GT] = ACTIONS(1824), + [anon_sym_o_GT_GT] = ACTIONS(1824), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1824), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1824), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1824), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1824), + [aux_sym_unquoted_token2] = ACTIONS(1826), + [anon_sym_POUND] = ACTIONS(247), }, [1615] = { - [sym_cell_path] = STATE(2030), - [sym_path] = STATE(1532), [sym_comment] = STATE(1615), - [aux_sym_cell_path_repeat1] = STATE(1386), - [sym__newline] = ACTIONS(1981), - [anon_sym_SEMI] = ACTIONS(1981), - [anon_sym_PIPE] = ACTIONS(1981), - [anon_sym_err_GT_PIPE] = ACTIONS(1981), - [anon_sym_out_GT_PIPE] = ACTIONS(1981), - [anon_sym_e_GT_PIPE] = ACTIONS(1981), - [anon_sym_o_GT_PIPE] = ACTIONS(1981), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1981), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1981), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1981), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1981), - [anon_sym_RPAREN] = ACTIONS(1981), - [anon_sym_GT2] = ACTIONS(1979), - [anon_sym_DASH2] = ACTIONS(1981), - [anon_sym_in2] = ACTIONS(1981), - [anon_sym_if] = ACTIONS(1981), - [anon_sym_LBRACE] = ACTIONS(1981), - [anon_sym_RBRACE] = ACTIONS(1981), - [anon_sym_EQ_GT] = ACTIONS(1981), - [anon_sym_STAR2] = ACTIONS(1979), - [anon_sym_and2] = ACTIONS(1981), - [anon_sym_xor2] = ACTIONS(1981), - [anon_sym_or2] = ACTIONS(1981), - [anon_sym_not_DASHin2] = ACTIONS(1981), - [anon_sym_starts_DASHwith2] = ACTIONS(1981), - [anon_sym_ends_DASHwith2] = ACTIONS(1981), - [anon_sym_EQ_EQ2] = ACTIONS(1981), - [anon_sym_BANG_EQ2] = ACTIONS(1981), - [anon_sym_LT2] = ACTIONS(1979), - [anon_sym_LT_EQ2] = ACTIONS(1981), - [anon_sym_GT_EQ2] = ACTIONS(1981), - [anon_sym_EQ_TILDE2] = ACTIONS(1981), - [anon_sym_BANG_TILDE2] = ACTIONS(1981), - [anon_sym_STAR_STAR2] = ACTIONS(1981), - [anon_sym_PLUS_PLUS2] = ACTIONS(1981), - [anon_sym_SLASH2] = ACTIONS(1979), - [anon_sym_mod2] = ACTIONS(1981), - [anon_sym_SLASH_SLASH2] = ACTIONS(1981), - [anon_sym_PLUS2] = ACTIONS(1979), - [anon_sym_bit_DASHshl2] = ACTIONS(1981), - [anon_sym_bit_DASHshr2] = ACTIONS(1981), - [anon_sym_bit_DASHand2] = ACTIONS(1981), - [anon_sym_bit_DASHxor2] = ACTIONS(1981), - [anon_sym_bit_DASHor2] = ACTIONS(1981), - [anon_sym_DOT2] = ACTIONS(4912), - [anon_sym_err_GT] = ACTIONS(1979), - [anon_sym_out_GT] = ACTIONS(1979), - [anon_sym_e_GT] = ACTIONS(1979), - [anon_sym_o_GT] = ACTIONS(1979), - [anon_sym_err_PLUSout_GT] = ACTIONS(1979), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1979), - [anon_sym_o_PLUSe_GT] = ACTIONS(1979), - [anon_sym_e_PLUSo_GT] = ACTIONS(1979), - [anon_sym_err_GT_GT] = ACTIONS(1981), - [anon_sym_out_GT_GT] = ACTIONS(1981), - [anon_sym_e_GT_GT] = ACTIONS(1981), - [anon_sym_o_GT_GT] = ACTIONS(1981), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1981), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1981), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1981), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1981), - [anon_sym_POUND] = ACTIONS(251), + [aux_sym_shebang_repeat1] = STATE(1615), + [sym__newline] = ACTIONS(4884), + [anon_sym_SEMI] = ACTIONS(1296), + [anon_sym_PIPE] = ACTIONS(1296), + [anon_sym_err_GT_PIPE] = ACTIONS(1296), + [anon_sym_out_GT_PIPE] = ACTIONS(1296), + [anon_sym_e_GT_PIPE] = ACTIONS(1296), + [anon_sym_o_GT_PIPE] = ACTIONS(1296), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1296), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1296), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1296), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1296), + [anon_sym_COLON] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(1296), + [anon_sym_RPAREN] = ACTIONS(1296), + [anon_sym_GT2] = ACTIONS(1294), + [anon_sym_DASH2] = ACTIONS(1296), + [anon_sym_in2] = ACTIONS(1296), + [anon_sym_else] = ACTIONS(1296), + [anon_sym_LBRACE] = ACTIONS(1296), + [anon_sym_catch] = ACTIONS(1296), + [anon_sym_STAR2] = ACTIONS(1294), + [anon_sym_and2] = ACTIONS(1296), + [anon_sym_xor2] = ACTIONS(1296), + [anon_sym_or2] = ACTIONS(1296), + [anon_sym_not_DASHin2] = ACTIONS(1296), + [anon_sym_has2] = ACTIONS(1296), + [anon_sym_not_DASHhas2] = ACTIONS(1296), + [anon_sym_starts_DASHwith2] = ACTIONS(1296), + [anon_sym_ends_DASHwith2] = ACTIONS(1296), + [anon_sym_EQ_EQ2] = ACTIONS(1296), + [anon_sym_BANG_EQ2] = ACTIONS(1296), + [anon_sym_LT2] = ACTIONS(1294), + [anon_sym_LT_EQ2] = ACTIONS(1296), + [anon_sym_GT_EQ2] = ACTIONS(1296), + [anon_sym_EQ_TILDE2] = ACTIONS(1296), + [anon_sym_BANG_TILDE2] = ACTIONS(1296), + [anon_sym_STAR_STAR2] = ACTIONS(1296), + [anon_sym_PLUS_PLUS2] = ACTIONS(1296), + [anon_sym_SLASH2] = ACTIONS(1294), + [anon_sym_mod2] = ACTIONS(1296), + [anon_sym_SLASH_SLASH2] = ACTIONS(1296), + [anon_sym_PLUS2] = ACTIONS(1294), + [anon_sym_bit_DASHshl2] = ACTIONS(1296), + [anon_sym_bit_DASHshr2] = ACTIONS(1296), + [anon_sym_bit_DASHand2] = ACTIONS(1296), + [anon_sym_bit_DASHxor2] = ACTIONS(1296), + [anon_sym_bit_DASHor2] = ACTIONS(1296), + [anon_sym_err_GT] = ACTIONS(1294), + [anon_sym_out_GT] = ACTIONS(1294), + [anon_sym_e_GT] = ACTIONS(1294), + [anon_sym_o_GT] = ACTIONS(1294), + [anon_sym_err_PLUSout_GT] = ACTIONS(1294), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1294), + [anon_sym_o_PLUSe_GT] = ACTIONS(1294), + [anon_sym_e_PLUSo_GT] = ACTIONS(1294), + [anon_sym_err_GT_GT] = ACTIONS(1296), + [anon_sym_out_GT_GT] = ACTIONS(1296), + [anon_sym_e_GT_GT] = ACTIONS(1296), + [anon_sym_o_GT_GT] = ACTIONS(1296), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1296), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1296), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1296), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1296), + [anon_sym_POUND] = ACTIONS(247), }, [1616] = { - [sym_cell_path] = STATE(2031), - [sym_path] = STATE(1532), + [sym__expr_parenthesized_immediate] = STATE(7477), [sym_comment] = STATE(1616), - [aux_sym_cell_path_repeat1] = STATE(1386), - [sym__newline] = ACTIONS(1907), - [anon_sym_SEMI] = ACTIONS(1907), - [anon_sym_PIPE] = ACTIONS(1907), - [anon_sym_err_GT_PIPE] = ACTIONS(1907), - [anon_sym_out_GT_PIPE] = ACTIONS(1907), - [anon_sym_e_GT_PIPE] = ACTIONS(1907), - [anon_sym_o_GT_PIPE] = ACTIONS(1907), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1907), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1907), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1907), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1907), - [anon_sym_RPAREN] = ACTIONS(1907), - [anon_sym_GT2] = ACTIONS(1905), - [anon_sym_DASH2] = ACTIONS(1907), - [anon_sym_in2] = ACTIONS(1907), - [anon_sym_if] = ACTIONS(1907), - [anon_sym_LBRACE] = ACTIONS(1907), - [anon_sym_RBRACE] = ACTIONS(1907), - [anon_sym_EQ_GT] = ACTIONS(1907), - [anon_sym_STAR2] = ACTIONS(1905), - [anon_sym_and2] = ACTIONS(1907), - [anon_sym_xor2] = ACTIONS(1907), - [anon_sym_or2] = ACTIONS(1907), - [anon_sym_not_DASHin2] = ACTIONS(1907), - [anon_sym_starts_DASHwith2] = ACTIONS(1907), - [anon_sym_ends_DASHwith2] = ACTIONS(1907), - [anon_sym_EQ_EQ2] = ACTIONS(1907), - [anon_sym_BANG_EQ2] = ACTIONS(1907), - [anon_sym_LT2] = ACTIONS(1905), - [anon_sym_LT_EQ2] = ACTIONS(1907), - [anon_sym_GT_EQ2] = ACTIONS(1907), - [anon_sym_EQ_TILDE2] = ACTIONS(1907), - [anon_sym_BANG_TILDE2] = ACTIONS(1907), - [anon_sym_STAR_STAR2] = ACTIONS(1907), - [anon_sym_PLUS_PLUS2] = ACTIONS(1907), - [anon_sym_SLASH2] = ACTIONS(1905), - [anon_sym_mod2] = ACTIONS(1907), - [anon_sym_SLASH_SLASH2] = ACTIONS(1907), - [anon_sym_PLUS2] = ACTIONS(1905), - [anon_sym_bit_DASHshl2] = ACTIONS(1907), - [anon_sym_bit_DASHshr2] = ACTIONS(1907), - [anon_sym_bit_DASHand2] = ACTIONS(1907), - [anon_sym_bit_DASHxor2] = ACTIONS(1907), - [anon_sym_bit_DASHor2] = ACTIONS(1907), - [anon_sym_DOT2] = ACTIONS(4912), - [anon_sym_err_GT] = ACTIONS(1905), - [anon_sym_out_GT] = ACTIONS(1905), - [anon_sym_e_GT] = ACTIONS(1905), - [anon_sym_o_GT] = ACTIONS(1905), - [anon_sym_err_PLUSout_GT] = ACTIONS(1905), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1905), - [anon_sym_o_PLUSe_GT] = ACTIONS(1905), - [anon_sym_e_PLUSo_GT] = ACTIONS(1905), - [anon_sym_err_GT_GT] = ACTIONS(1907), - [anon_sym_out_GT_GT] = ACTIONS(1907), - [anon_sym_e_GT_GT] = ACTIONS(1907), - [anon_sym_o_GT_GT] = ACTIONS(1907), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1907), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1907), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1907), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1907), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(4887), + [anon_sym_SEMI] = ACTIONS(4887), + [anon_sym_PIPE] = ACTIONS(4887), + [anon_sym_err_GT_PIPE] = ACTIONS(4887), + [anon_sym_out_GT_PIPE] = ACTIONS(4887), + [anon_sym_e_GT_PIPE] = ACTIONS(4887), + [anon_sym_o_GT_PIPE] = ACTIONS(4887), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4887), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4887), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4887), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4887), + [anon_sym_LBRACK] = ACTIONS(4887), + [anon_sym_LPAREN] = ACTIONS(4889), + [anon_sym_RPAREN] = ACTIONS(4887), + [anon_sym_DOLLAR] = ACTIONS(4889), + [anon_sym_DASH_DASH] = ACTIONS(4887), + [anon_sym_DASH2] = ACTIONS(4889), + [anon_sym_LBRACE] = ACTIONS(4887), + [anon_sym_RBRACE] = ACTIONS(4887), + [anon_sym_DOT_DOT] = ACTIONS(4889), + [anon_sym_LPAREN2] = ACTIONS(4452), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4887), + [anon_sym_DOT_DOT_LT] = ACTIONS(4887), + [anon_sym_null] = ACTIONS(4887), + [anon_sym_true] = ACTIONS(4887), + [anon_sym_false] = ACTIONS(4887), + [aux_sym__val_number_decimal_token1] = ACTIONS(4889), + [aux_sym__val_number_decimal_token2] = ACTIONS(4887), + [aux_sym__val_number_decimal_token3] = ACTIONS(4887), + [aux_sym__val_number_decimal_token4] = ACTIONS(4887), + [aux_sym__val_number_token1] = ACTIONS(4887), + [aux_sym__val_number_token2] = ACTIONS(4887), + [aux_sym__val_number_token3] = ACTIONS(4887), + [aux_sym__val_number_token4] = ACTIONS(4887), + [aux_sym__val_number_token5] = ACTIONS(4887), + [aux_sym__val_number_token6] = ACTIONS(4887), + [anon_sym_0b] = ACTIONS(4889), + [anon_sym_0o] = ACTIONS(4889), + [anon_sym_0x] = ACTIONS(4889), + [sym_val_date] = ACTIONS(4887), + [anon_sym_DQUOTE] = ACTIONS(4887), + [sym__str_single_quotes] = ACTIONS(4887), + [sym__str_back_ticks] = ACTIONS(4887), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4887), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4887), + [anon_sym_err_GT] = ACTIONS(4889), + [anon_sym_out_GT] = ACTIONS(4889), + [anon_sym_e_GT] = ACTIONS(4889), + [anon_sym_o_GT] = ACTIONS(4889), + [anon_sym_err_PLUSout_GT] = ACTIONS(4889), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4889), + [anon_sym_o_PLUSe_GT] = ACTIONS(4889), + [anon_sym_e_PLUSo_GT] = ACTIONS(4889), + [anon_sym_err_GT_GT] = ACTIONS(4887), + [anon_sym_out_GT_GT] = ACTIONS(4887), + [anon_sym_e_GT_GT] = ACTIONS(4887), + [anon_sym_o_GT_GT] = ACTIONS(4887), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4887), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4887), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4887), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4887), + [aux_sym_unquoted_token1] = ACTIONS(4889), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4887), }, [1617] = { - [sym_cell_path] = STATE(2032), - [sym_path] = STATE(1532), + [sym__expr_parenthesized_immediate] = STATE(7477), [sym_comment] = STATE(1617), - [aux_sym_cell_path_repeat1] = STATE(1386), - [sym__newline] = ACTIONS(1985), - [anon_sym_SEMI] = ACTIONS(1985), - [anon_sym_PIPE] = ACTIONS(1985), - [anon_sym_err_GT_PIPE] = ACTIONS(1985), - [anon_sym_out_GT_PIPE] = ACTIONS(1985), - [anon_sym_e_GT_PIPE] = ACTIONS(1985), - [anon_sym_o_GT_PIPE] = ACTIONS(1985), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1985), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1985), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1985), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1985), - [anon_sym_RPAREN] = ACTIONS(1985), - [anon_sym_GT2] = ACTIONS(1983), - [anon_sym_DASH2] = ACTIONS(1985), - [anon_sym_in2] = ACTIONS(1985), - [anon_sym_if] = ACTIONS(1985), - [anon_sym_LBRACE] = ACTIONS(1985), - [anon_sym_RBRACE] = ACTIONS(1985), - [anon_sym_EQ_GT] = ACTIONS(1985), - [anon_sym_STAR2] = ACTIONS(1983), - [anon_sym_and2] = ACTIONS(1985), - [anon_sym_xor2] = ACTIONS(1985), - [anon_sym_or2] = ACTIONS(1985), - [anon_sym_not_DASHin2] = ACTIONS(1985), - [anon_sym_starts_DASHwith2] = ACTIONS(1985), - [anon_sym_ends_DASHwith2] = ACTIONS(1985), - [anon_sym_EQ_EQ2] = ACTIONS(1985), - [anon_sym_BANG_EQ2] = ACTIONS(1985), - [anon_sym_LT2] = ACTIONS(1983), - [anon_sym_LT_EQ2] = ACTIONS(1985), - [anon_sym_GT_EQ2] = ACTIONS(1985), - [anon_sym_EQ_TILDE2] = ACTIONS(1985), - [anon_sym_BANG_TILDE2] = ACTIONS(1985), - [anon_sym_STAR_STAR2] = ACTIONS(1985), - [anon_sym_PLUS_PLUS2] = ACTIONS(1985), - [anon_sym_SLASH2] = ACTIONS(1983), - [anon_sym_mod2] = ACTIONS(1985), - [anon_sym_SLASH_SLASH2] = ACTIONS(1985), - [anon_sym_PLUS2] = ACTIONS(1983), - [anon_sym_bit_DASHshl2] = ACTIONS(1985), - [anon_sym_bit_DASHshr2] = ACTIONS(1985), - [anon_sym_bit_DASHand2] = ACTIONS(1985), - [anon_sym_bit_DASHxor2] = ACTIONS(1985), - [anon_sym_bit_DASHor2] = ACTIONS(1985), - [anon_sym_DOT2] = ACTIONS(4912), - [anon_sym_err_GT] = ACTIONS(1983), - [anon_sym_out_GT] = ACTIONS(1983), - [anon_sym_e_GT] = ACTIONS(1983), - [anon_sym_o_GT] = ACTIONS(1983), - [anon_sym_err_PLUSout_GT] = ACTIONS(1983), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1983), - [anon_sym_o_PLUSe_GT] = ACTIONS(1983), - [anon_sym_e_PLUSo_GT] = ACTIONS(1983), - [anon_sym_err_GT_GT] = ACTIONS(1985), - [anon_sym_out_GT_GT] = ACTIONS(1985), - [anon_sym_e_GT_GT] = ACTIONS(1985), - [anon_sym_o_GT_GT] = ACTIONS(1985), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1985), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1985), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1985), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1985), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(4891), + [anon_sym_SEMI] = ACTIONS(4891), + [anon_sym_PIPE] = ACTIONS(4891), + [anon_sym_err_GT_PIPE] = ACTIONS(4891), + [anon_sym_out_GT_PIPE] = ACTIONS(4891), + [anon_sym_e_GT_PIPE] = ACTIONS(4891), + [anon_sym_o_GT_PIPE] = ACTIONS(4891), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4891), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4891), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4891), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4891), + [anon_sym_LBRACK] = ACTIONS(4891), + [anon_sym_LPAREN] = ACTIONS(4893), + [anon_sym_RPAREN] = ACTIONS(4891), + [anon_sym_DOLLAR] = ACTIONS(4893), + [anon_sym_DASH_DASH] = ACTIONS(4891), + [anon_sym_DASH2] = ACTIONS(4893), + [anon_sym_LBRACE] = ACTIONS(4891), + [anon_sym_RBRACE] = ACTIONS(4891), + [anon_sym_DOT_DOT] = ACTIONS(4893), + [anon_sym_LPAREN2] = ACTIONS(4452), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4891), + [anon_sym_DOT_DOT_LT] = ACTIONS(4891), + [anon_sym_null] = ACTIONS(4891), + [anon_sym_true] = ACTIONS(4891), + [anon_sym_false] = ACTIONS(4891), + [aux_sym__val_number_decimal_token1] = ACTIONS(4893), + [aux_sym__val_number_decimal_token2] = ACTIONS(4891), + [aux_sym__val_number_decimal_token3] = ACTIONS(4891), + [aux_sym__val_number_decimal_token4] = ACTIONS(4891), + [aux_sym__val_number_token1] = ACTIONS(4891), + [aux_sym__val_number_token2] = ACTIONS(4891), + [aux_sym__val_number_token3] = ACTIONS(4891), + [aux_sym__val_number_token4] = ACTIONS(4891), + [aux_sym__val_number_token5] = ACTIONS(4891), + [aux_sym__val_number_token6] = ACTIONS(4891), + [anon_sym_0b] = ACTIONS(4893), + [anon_sym_0o] = ACTIONS(4893), + [anon_sym_0x] = ACTIONS(4893), + [sym_val_date] = ACTIONS(4891), + [anon_sym_DQUOTE] = ACTIONS(4891), + [sym__str_single_quotes] = ACTIONS(4891), + [sym__str_back_ticks] = ACTIONS(4891), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4891), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4891), + [anon_sym_err_GT] = ACTIONS(4893), + [anon_sym_out_GT] = ACTIONS(4893), + [anon_sym_e_GT] = ACTIONS(4893), + [anon_sym_o_GT] = ACTIONS(4893), + [anon_sym_err_PLUSout_GT] = ACTIONS(4893), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4893), + [anon_sym_o_PLUSe_GT] = ACTIONS(4893), + [anon_sym_e_PLUSo_GT] = ACTIONS(4893), + [anon_sym_err_GT_GT] = ACTIONS(4891), + [anon_sym_out_GT_GT] = ACTIONS(4891), + [anon_sym_e_GT_GT] = ACTIONS(4891), + [anon_sym_o_GT_GT] = ACTIONS(4891), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4891), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4891), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4891), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4891), + [aux_sym_unquoted_token1] = ACTIONS(4893), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4891), }, [1618] = { + [sym__expr_parenthesized_immediate] = STATE(7477), [sym_comment] = STATE(1618), - [ts_builtin_sym_end] = ACTIONS(1012), - [sym__newline] = ACTIONS(1012), - [anon_sym_SEMI] = ACTIONS(1012), - [anon_sym_PIPE] = ACTIONS(1012), - [anon_sym_err_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_GT_PIPE] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1012), - [anon_sym_LBRACK] = ACTIONS(1012), - [anon_sym_LPAREN] = ACTIONS(1012), - [anon_sym_DOLLAR] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1012), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_DOT_DOT] = ACTIONS(1016), - [anon_sym_DOT_DOT2] = ACTIONS(4847), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1016), - [anon_sym_DOT_DOT_LT] = ACTIONS(1016), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4849), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4849), - [anon_sym_null] = ACTIONS(1012), - [anon_sym_true] = ACTIONS(1012), - [anon_sym_false] = ACTIONS(1012), - [aux_sym__val_number_decimal_token1] = ACTIONS(1016), - [aux_sym__val_number_decimal_token2] = ACTIONS(1012), - [aux_sym__val_number_decimal_token3] = ACTIONS(1012), - [aux_sym__val_number_decimal_token4] = ACTIONS(1012), - [aux_sym__val_number_token1] = ACTIONS(1012), - [aux_sym__val_number_token2] = ACTIONS(1012), - [aux_sym__val_number_token3] = ACTIONS(1012), - [aux_sym__val_number_token4] = ACTIONS(1012), - [aux_sym__val_number_token5] = ACTIONS(1012), - [aux_sym__val_number_token6] = ACTIONS(1012), - [anon_sym_0b] = ACTIONS(1016), - [anon_sym_0o] = ACTIONS(1016), - [anon_sym_0x] = ACTIONS(1016), - [sym_val_date] = ACTIONS(1012), - [anon_sym_DQUOTE] = ACTIONS(1012), - [sym__str_single_quotes] = ACTIONS(1012), - [sym__str_back_ticks] = ACTIONS(1012), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1012), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1012), - [anon_sym_err_GT] = ACTIONS(1016), - [anon_sym_out_GT] = ACTIONS(1016), - [anon_sym_e_GT] = ACTIONS(1016), - [anon_sym_o_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT] = ACTIONS(1016), - [anon_sym_err_GT_GT] = ACTIONS(1012), - [anon_sym_out_GT_GT] = ACTIONS(1012), - [anon_sym_e_GT_GT] = ACTIONS(1012), - [anon_sym_o_GT_GT] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1012), - [aux_sym_unquoted_token1] = ACTIONS(1016), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1012), + [sym__newline] = ACTIONS(4895), + [anon_sym_SEMI] = ACTIONS(4895), + [anon_sym_PIPE] = ACTIONS(4895), + [anon_sym_err_GT_PIPE] = ACTIONS(4895), + [anon_sym_out_GT_PIPE] = ACTIONS(4895), + [anon_sym_e_GT_PIPE] = ACTIONS(4895), + [anon_sym_o_GT_PIPE] = ACTIONS(4895), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4895), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4895), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4895), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4895), + [anon_sym_LPAREN] = ACTIONS(4897), + [anon_sym_RPAREN] = ACTIONS(4895), + [anon_sym_DOLLAR] = ACTIONS(4897), + [anon_sym_DASH_DASH] = ACTIONS(4895), + [anon_sym_DASH2] = ACTIONS(4897), + [anon_sym_LBRACE] = ACTIONS(4895), + [anon_sym_RBRACE] = ACTIONS(4895), + [anon_sym_DOT_DOT] = ACTIONS(4897), + [anon_sym_LPAREN2] = ACTIONS(4452), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4895), + [anon_sym_DOT_DOT_LT] = ACTIONS(4895), + [anon_sym_null] = ACTIONS(4895), + [anon_sym_true] = ACTIONS(4895), + [anon_sym_false] = ACTIONS(4895), + [aux_sym__val_number_decimal_token1] = ACTIONS(4897), + [aux_sym__val_number_decimal_token2] = ACTIONS(4895), + [aux_sym__val_number_decimal_token3] = ACTIONS(4895), + [aux_sym__val_number_decimal_token4] = ACTIONS(4895), + [aux_sym__val_number_token1] = ACTIONS(4895), + [aux_sym__val_number_token2] = ACTIONS(4895), + [aux_sym__val_number_token3] = ACTIONS(4895), + [aux_sym__val_number_token4] = ACTIONS(4895), + [aux_sym__val_number_token5] = ACTIONS(4895), + [aux_sym__val_number_token6] = ACTIONS(4895), + [anon_sym_0b] = ACTIONS(4897), + [anon_sym_0o] = ACTIONS(4897), + [anon_sym_0x] = ACTIONS(4897), + [sym_val_date] = ACTIONS(4895), + [anon_sym_DQUOTE] = ACTIONS(4895), + [sym__str_single_quotes] = ACTIONS(4895), + [sym__str_back_ticks] = ACTIONS(4895), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4895), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4895), + [anon_sym_err_GT] = ACTIONS(4897), + [anon_sym_out_GT] = ACTIONS(4897), + [anon_sym_e_GT] = ACTIONS(4897), + [anon_sym_o_GT] = ACTIONS(4897), + [anon_sym_err_PLUSout_GT] = ACTIONS(4897), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4897), + [anon_sym_o_PLUSe_GT] = ACTIONS(4897), + [anon_sym_e_PLUSo_GT] = ACTIONS(4897), + [anon_sym_err_GT_GT] = ACTIONS(4895), + [anon_sym_out_GT_GT] = ACTIONS(4895), + [anon_sym_e_GT_GT] = ACTIONS(4895), + [anon_sym_o_GT_GT] = ACTIONS(4895), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4895), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4895), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4895), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4895), + [aux_sym_unquoted_token1] = ACTIONS(4897), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4895), }, [1619] = { + [sym__expr_parenthesized_immediate] = STATE(7477), [sym_comment] = STATE(1619), - [anon_sym_EQ] = ACTIONS(4920), - [anon_sym_PLUS_EQ] = ACTIONS(4922), - [anon_sym_DASH_EQ] = ACTIONS(4922), - [anon_sym_STAR_EQ] = ACTIONS(4922), - [anon_sym_SLASH_EQ] = ACTIONS(4922), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4922), - [sym__newline] = ACTIONS(1012), - [anon_sym_SEMI] = ACTIONS(1012), - [anon_sym_PIPE] = ACTIONS(1012), - [anon_sym_err_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_GT_PIPE] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1012), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_in2] = ACTIONS(1012), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1012), - [anon_sym_xor2] = ACTIONS(1012), - [anon_sym_or2] = ACTIONS(1012), - [anon_sym_not_DASHin2] = ACTIONS(1012), - [anon_sym_starts_DASHwith2] = ACTIONS(1012), - [anon_sym_ends_DASHwith2] = ACTIONS(1012), - [anon_sym_EQ_EQ2] = ACTIONS(1012), - [anon_sym_BANG_EQ2] = ACTIONS(1012), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1012), - [anon_sym_GT_EQ2] = ACTIONS(1012), - [anon_sym_EQ_TILDE2] = ACTIONS(1012), - [anon_sym_BANG_TILDE2] = ACTIONS(1012), - [anon_sym_STAR_STAR2] = ACTIONS(1012), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1012), - [anon_sym_SLASH_SLASH2] = ACTIONS(1012), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1012), - [anon_sym_bit_DASHshr2] = ACTIONS(1012), - [anon_sym_bit_DASHand2] = ACTIONS(1012), - [anon_sym_bit_DASHxor2] = ACTIONS(1012), - [anon_sym_bit_DASHor2] = ACTIONS(1012), - [anon_sym_DOT_DOT2] = ACTIONS(1024), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1026), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1026), - [anon_sym_err_GT] = ACTIONS(1016), - [anon_sym_out_GT] = ACTIONS(1016), - [anon_sym_e_GT] = ACTIONS(1016), - [anon_sym_o_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT] = ACTIONS(1016), - [anon_sym_err_GT_GT] = ACTIONS(1012), - [anon_sym_out_GT_GT] = ACTIONS(1012), - [anon_sym_e_GT_GT] = ACTIONS(1012), - [anon_sym_o_GT_GT] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1012), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(4899), + [anon_sym_SEMI] = ACTIONS(4899), + [anon_sym_PIPE] = ACTIONS(4899), + [anon_sym_err_GT_PIPE] = ACTIONS(4899), + [anon_sym_out_GT_PIPE] = ACTIONS(4899), + [anon_sym_e_GT_PIPE] = ACTIONS(4899), + [anon_sym_o_GT_PIPE] = ACTIONS(4899), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4899), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4899), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4899), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4899), + [anon_sym_LBRACK] = ACTIONS(4899), + [anon_sym_LPAREN] = ACTIONS(4901), + [anon_sym_RPAREN] = ACTIONS(4899), + [anon_sym_DOLLAR] = ACTIONS(4901), + [anon_sym_DASH_DASH] = ACTIONS(4899), + [anon_sym_DASH2] = ACTIONS(4901), + [anon_sym_LBRACE] = ACTIONS(4899), + [anon_sym_RBRACE] = ACTIONS(4899), + [anon_sym_DOT_DOT] = ACTIONS(4901), + [anon_sym_LPAREN2] = ACTIONS(4452), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4899), + [anon_sym_DOT_DOT_LT] = ACTIONS(4899), + [anon_sym_null] = ACTIONS(4899), + [anon_sym_true] = ACTIONS(4899), + [anon_sym_false] = ACTIONS(4899), + [aux_sym__val_number_decimal_token1] = ACTIONS(4901), + [aux_sym__val_number_decimal_token2] = ACTIONS(4899), + [aux_sym__val_number_decimal_token3] = ACTIONS(4899), + [aux_sym__val_number_decimal_token4] = ACTIONS(4899), + [aux_sym__val_number_token1] = ACTIONS(4899), + [aux_sym__val_number_token2] = ACTIONS(4899), + [aux_sym__val_number_token3] = ACTIONS(4899), + [aux_sym__val_number_token4] = ACTIONS(4899), + [aux_sym__val_number_token5] = ACTIONS(4899), + [aux_sym__val_number_token6] = ACTIONS(4899), + [anon_sym_0b] = ACTIONS(4901), + [anon_sym_0o] = ACTIONS(4901), + [anon_sym_0x] = ACTIONS(4901), + [sym_val_date] = ACTIONS(4899), + [anon_sym_DQUOTE] = ACTIONS(4899), + [sym__str_single_quotes] = ACTIONS(4899), + [sym__str_back_ticks] = ACTIONS(4899), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4899), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4899), + [anon_sym_err_GT] = ACTIONS(4901), + [anon_sym_out_GT] = ACTIONS(4901), + [anon_sym_e_GT] = ACTIONS(4901), + [anon_sym_o_GT] = ACTIONS(4901), + [anon_sym_err_PLUSout_GT] = ACTIONS(4901), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4901), + [anon_sym_o_PLUSe_GT] = ACTIONS(4901), + [anon_sym_e_PLUSo_GT] = ACTIONS(4901), + [anon_sym_err_GT_GT] = ACTIONS(4899), + [anon_sym_out_GT_GT] = ACTIONS(4899), + [anon_sym_e_GT_GT] = ACTIONS(4899), + [anon_sym_o_GT_GT] = ACTIONS(4899), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4899), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4899), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4899), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4899), + [aux_sym_unquoted_token1] = ACTIONS(4901), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4899), }, [1620] = { [sym_comment] = STATE(1620), - [anon_sym_EQ] = ACTIONS(4924), - [anon_sym_PLUS_EQ] = ACTIONS(4926), - [anon_sym_DASH_EQ] = ACTIONS(4926), - [anon_sym_STAR_EQ] = ACTIONS(4926), - [anon_sym_SLASH_EQ] = ACTIONS(4926), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4926), - [sym__newline] = ACTIONS(1012), - [anon_sym_SEMI] = ACTIONS(1012), - [anon_sym_PIPE] = ACTIONS(1012), - [anon_sym_err_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_GT_PIPE] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1012), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_in2] = ACTIONS(1012), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1012), - [anon_sym_xor2] = ACTIONS(1012), - [anon_sym_or2] = ACTIONS(1012), - [anon_sym_not_DASHin2] = ACTIONS(1012), - [anon_sym_starts_DASHwith2] = ACTIONS(1012), - [anon_sym_ends_DASHwith2] = ACTIONS(1012), - [anon_sym_EQ_EQ2] = ACTIONS(1012), - [anon_sym_BANG_EQ2] = ACTIONS(1012), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1012), - [anon_sym_GT_EQ2] = ACTIONS(1012), - [anon_sym_EQ_TILDE2] = ACTIONS(1012), - [anon_sym_BANG_TILDE2] = ACTIONS(1012), - [anon_sym_STAR_STAR2] = ACTIONS(1012), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1012), - [anon_sym_SLASH_SLASH2] = ACTIONS(1012), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1012), - [anon_sym_bit_DASHshr2] = ACTIONS(1012), - [anon_sym_bit_DASHand2] = ACTIONS(1012), - [anon_sym_bit_DASHxor2] = ACTIONS(1012), - [anon_sym_bit_DASHor2] = ACTIONS(1012), - [anon_sym_DOT_DOT2] = ACTIONS(1024), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1026), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1026), - [anon_sym_err_GT] = ACTIONS(1016), - [anon_sym_out_GT] = ACTIONS(1016), - [anon_sym_e_GT] = ACTIONS(1016), - [anon_sym_o_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT] = ACTIONS(1016), - [anon_sym_err_GT_GT] = ACTIONS(1012), - [anon_sym_out_GT_GT] = ACTIONS(1012), - [anon_sym_e_GT_GT] = ACTIONS(1012), - [anon_sym_o_GT_GT] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1012), - [anon_sym_POUND] = ACTIONS(251), + [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(1792), + [anon_sym_RPAREN] = ACTIONS(1794), + [anon_sym_DOLLAR] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1794), + [anon_sym_DASH2] = ACTIONS(1792), + [anon_sym_LBRACE] = ACTIONS(1794), + [anon_sym_RBRACE] = ACTIONS(1794), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_LPAREN2] = ACTIONS(1794), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1794), + [anon_sym_DOT_DOT_LT] = ACTIONS(1794), + [anon_sym_null] = ACTIONS(1794), + [anon_sym_true] = ACTIONS(1794), + [anon_sym_false] = ACTIONS(1794), + [aux_sym__val_number_decimal_token1] = ACTIONS(1792), + [aux_sym__val_number_decimal_token2] = ACTIONS(1794), + [aux_sym__val_number_decimal_token3] = ACTIONS(1794), + [aux_sym__val_number_decimal_token4] = ACTIONS(1794), + [aux_sym__val_number_token1] = ACTIONS(1794), + [aux_sym__val_number_token2] = ACTIONS(1794), + [aux_sym__val_number_token3] = ACTIONS(1794), + [aux_sym__val_number_token4] = ACTIONS(1794), + [aux_sym__val_number_token5] = ACTIONS(1794), + [aux_sym__val_number_token6] = 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), + [aux_sym_unquoted_token2] = ACTIONS(1792), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1794), }, [1621] = { [sym_comment] = STATE(1621), - [sym__newline] = ACTIONS(1721), - [anon_sym_SEMI] = ACTIONS(1721), - [anon_sym_PIPE] = ACTIONS(1721), - [anon_sym_err_GT_PIPE] = ACTIONS(1721), - [anon_sym_out_GT_PIPE] = ACTIONS(1721), - [anon_sym_e_GT_PIPE] = ACTIONS(1721), - [anon_sym_o_GT_PIPE] = ACTIONS(1721), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1721), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1721), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1721), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1721), - [anon_sym_RPAREN] = ACTIONS(1721), - [anon_sym_GT2] = ACTIONS(1719), - [anon_sym_DASH2] = ACTIONS(1721), - [anon_sym_in2] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1721), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_EQ_GT] = ACTIONS(1721), - [anon_sym_STAR2] = ACTIONS(1719), - [anon_sym_and2] = ACTIONS(1721), - [anon_sym_xor2] = ACTIONS(1721), - [anon_sym_or2] = ACTIONS(1721), - [anon_sym_not_DASHin2] = ACTIONS(1721), - [anon_sym_starts_DASHwith2] = ACTIONS(1721), - [anon_sym_ends_DASHwith2] = ACTIONS(1721), - [anon_sym_EQ_EQ2] = ACTIONS(1721), - [anon_sym_BANG_EQ2] = ACTIONS(1721), - [anon_sym_LT2] = ACTIONS(1719), - [anon_sym_LT_EQ2] = ACTIONS(1721), - [anon_sym_GT_EQ2] = ACTIONS(1721), - [anon_sym_EQ_TILDE2] = ACTIONS(1721), - [anon_sym_BANG_TILDE2] = ACTIONS(1721), - [anon_sym_STAR_STAR2] = ACTIONS(1721), - [anon_sym_PLUS_PLUS2] = ACTIONS(1721), - [anon_sym_SLASH2] = ACTIONS(1719), - [anon_sym_mod2] = ACTIONS(1721), - [anon_sym_SLASH_SLASH2] = ACTIONS(1721), - [anon_sym_PLUS2] = ACTIONS(1719), - [anon_sym_bit_DASHshl2] = ACTIONS(1721), - [anon_sym_bit_DASHshr2] = ACTIONS(1721), - [anon_sym_bit_DASHand2] = ACTIONS(1721), - [anon_sym_bit_DASHxor2] = ACTIONS(1721), - [anon_sym_bit_DASHor2] = ACTIONS(1721), - [anon_sym_DOT_DOT2] = ACTIONS(1719), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1721), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1721), - [anon_sym_COLON2] = ACTIONS(1721), - [anon_sym_err_GT] = ACTIONS(1719), - [anon_sym_out_GT] = ACTIONS(1719), - [anon_sym_e_GT] = ACTIONS(1719), - [anon_sym_o_GT] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT] = ACTIONS(1719), - [anon_sym_err_GT_GT] = ACTIONS(1721), - [anon_sym_out_GT_GT] = ACTIONS(1721), - [anon_sym_e_GT_GT] = ACTIONS(1721), - [anon_sym_o_GT_GT] = ACTIONS(1721), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1721), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1721), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1721), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1721), - [anon_sym_POUND] = ACTIONS(251), + [ts_builtin_sym_end] = ACTIONS(2036), + [sym__newline] = ACTIONS(2036), + [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_PIPE] = ACTIONS(2036), + [anon_sym_err_GT_PIPE] = ACTIONS(2036), + [anon_sym_out_GT_PIPE] = ACTIONS(2036), + [anon_sym_e_GT_PIPE] = ACTIONS(2036), + [anon_sym_o_GT_PIPE] = ACTIONS(2036), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2036), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2036), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2036), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2036), + [anon_sym_LBRACK] = ACTIONS(2036), + [anon_sym_LPAREN] = ACTIONS(2036), + [anon_sym_DOLLAR] = ACTIONS(2030), + [anon_sym_DASH_DASH] = ACTIONS(2036), + [anon_sym_DASH2] = ACTIONS(2030), + [anon_sym_LBRACE] = ACTIONS(2036), + [anon_sym_DOT_DOT] = ACTIONS(2030), + [anon_sym_DOT_DOT2] = ACTIONS(4903), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2030), + [anon_sym_DOT_DOT_LT] = ACTIONS(2030), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4905), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4905), + [anon_sym_null] = ACTIONS(2036), + [anon_sym_true] = ACTIONS(2036), + [anon_sym_false] = ACTIONS(2036), + [aux_sym__val_number_decimal_token1] = ACTIONS(2030), + [aux_sym__val_number_decimal_token2] = ACTIONS(2036), + [aux_sym__val_number_decimal_token3] = ACTIONS(2036), + [aux_sym__val_number_decimal_token4] = ACTIONS(2036), + [aux_sym__val_number_token1] = ACTIONS(2036), + [aux_sym__val_number_token2] = ACTIONS(2036), + [aux_sym__val_number_token3] = ACTIONS(2036), + [aux_sym__val_number_token4] = ACTIONS(2036), + [aux_sym__val_number_token5] = ACTIONS(2036), + [aux_sym__val_number_token6] = ACTIONS(2036), + [anon_sym_0b] = ACTIONS(2030), + [anon_sym_0o] = ACTIONS(2030), + [anon_sym_0x] = ACTIONS(2030), + [sym_val_date] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym__str_single_quotes] = ACTIONS(2036), + [sym__str_back_ticks] = ACTIONS(2036), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2036), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2036), + [anon_sym_err_GT] = ACTIONS(2030), + [anon_sym_out_GT] = ACTIONS(2030), + [anon_sym_e_GT] = ACTIONS(2030), + [anon_sym_o_GT] = ACTIONS(2030), + [anon_sym_err_PLUSout_GT] = ACTIONS(2030), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2030), + [anon_sym_o_PLUSe_GT] = ACTIONS(2030), + [anon_sym_e_PLUSo_GT] = ACTIONS(2030), + [anon_sym_err_GT_GT] = ACTIONS(2036), + [anon_sym_out_GT_GT] = ACTIONS(2036), + [anon_sym_e_GT_GT] = ACTIONS(2036), + [anon_sym_o_GT_GT] = ACTIONS(2036), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2036), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2036), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2036), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2036), + [aux_sym_unquoted_token1] = ACTIONS(2030), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2036), }, [1622] = { [sym_comment] = STATE(1622), - [ts_builtin_sym_end] = ACTIONS(2025), - [sym__newline] = ACTIONS(2025), - [anon_sym_SEMI] = ACTIONS(2025), - [anon_sym_PIPE] = ACTIONS(2025), - [anon_sym_err_GT_PIPE] = ACTIONS(2025), - [anon_sym_out_GT_PIPE] = ACTIONS(2025), - [anon_sym_e_GT_PIPE] = ACTIONS(2025), - [anon_sym_o_GT_PIPE] = ACTIONS(2025), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2025), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2025), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2025), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2025), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_LPAREN] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2019), - [anon_sym_DASH_DASH] = ACTIONS(2025), - [anon_sym_DASH2] = ACTIONS(2019), - [anon_sym_LBRACE] = ACTIONS(2025), - [anon_sym_DOT_DOT] = ACTIONS(2019), - [anon_sym_DOT_DOT2] = ACTIONS(4928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2019), - [anon_sym_DOT_DOT_LT] = ACTIONS(2019), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4930), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4930), - [anon_sym_null] = ACTIONS(2025), - [anon_sym_true] = ACTIONS(2025), - [anon_sym_false] = ACTIONS(2025), - [aux_sym__val_number_decimal_token1] = ACTIONS(2019), - [aux_sym__val_number_decimal_token2] = ACTIONS(2025), - [aux_sym__val_number_decimal_token3] = ACTIONS(2025), - [aux_sym__val_number_decimal_token4] = ACTIONS(2025), - [aux_sym__val_number_token1] = ACTIONS(2025), - [aux_sym__val_number_token2] = ACTIONS(2025), - [aux_sym__val_number_token3] = ACTIONS(2025), - [aux_sym__val_number_token4] = ACTIONS(2025), - [aux_sym__val_number_token5] = ACTIONS(2025), - [aux_sym__val_number_token6] = ACTIONS(2025), - [anon_sym_0b] = ACTIONS(2019), - [anon_sym_0o] = ACTIONS(2019), - [anon_sym_0x] = ACTIONS(2019), - [sym_val_date] = ACTIONS(2025), - [anon_sym_DQUOTE] = ACTIONS(2025), - [sym__str_single_quotes] = ACTIONS(2025), - [sym__str_back_ticks] = ACTIONS(2025), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2025), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2025), - [anon_sym_err_GT] = ACTIONS(2019), - [anon_sym_out_GT] = ACTIONS(2019), - [anon_sym_e_GT] = ACTIONS(2019), - [anon_sym_o_GT] = ACTIONS(2019), - [anon_sym_err_PLUSout_GT] = ACTIONS(2019), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2019), - [anon_sym_o_PLUSe_GT] = ACTIONS(2019), - [anon_sym_e_PLUSo_GT] = ACTIONS(2019), - [anon_sym_err_GT_GT] = ACTIONS(2025), - [anon_sym_out_GT_GT] = ACTIONS(2025), - [anon_sym_e_GT_GT] = ACTIONS(2025), - [anon_sym_o_GT_GT] = ACTIONS(2025), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2025), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2025), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2025), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2025), - [aux_sym_unquoted_token1] = ACTIONS(2019), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2025), + [ts_builtin_sym_end] = ACTIONS(1983), + [sym__newline] = ACTIONS(1983), + [anon_sym_SEMI] = ACTIONS(1983), + [anon_sym_PIPE] = ACTIONS(1983), + [anon_sym_err_GT_PIPE] = ACTIONS(1983), + [anon_sym_out_GT_PIPE] = ACTIONS(1983), + [anon_sym_e_GT_PIPE] = ACTIONS(1983), + [anon_sym_o_GT_PIPE] = ACTIONS(1983), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1983), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1983), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1983), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(1983), + [anon_sym_LPAREN] = ACTIONS(1983), + [anon_sym_DOLLAR] = ACTIONS(1977), + [anon_sym_DASH_DASH] = ACTIONS(1983), + [anon_sym_DASH2] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1983), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT2] = ACTIONS(4907), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1977), + [anon_sym_DOT_DOT_LT] = ACTIONS(1977), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4909), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4909), + [anon_sym_null] = ACTIONS(1983), + [anon_sym_true] = ACTIONS(1983), + [anon_sym_false] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1977), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1983), + [aux_sym__val_number_decimal_token4] = ACTIONS(1983), + [aux_sym__val_number_token1] = ACTIONS(1983), + [aux_sym__val_number_token2] = ACTIONS(1983), + [aux_sym__val_number_token3] = ACTIONS(1983), + [aux_sym__val_number_token4] = ACTIONS(1983), + [aux_sym__val_number_token5] = ACTIONS(1983), + [aux_sym__val_number_token6] = ACTIONS(1983), + [anon_sym_0b] = ACTIONS(1977), + [anon_sym_0o] = ACTIONS(1977), + [anon_sym_0x] = ACTIONS(1977), + [sym_val_date] = ACTIONS(1983), + [anon_sym_DQUOTE] = ACTIONS(1983), + [sym__str_single_quotes] = ACTIONS(1983), + [sym__str_back_ticks] = ACTIONS(1983), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1983), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1983), + [anon_sym_err_GT] = ACTIONS(1977), + [anon_sym_out_GT] = ACTIONS(1977), + [anon_sym_e_GT] = ACTIONS(1977), + [anon_sym_o_GT] = ACTIONS(1977), + [anon_sym_err_PLUSout_GT] = ACTIONS(1977), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1977), + [anon_sym_o_PLUSe_GT] = ACTIONS(1977), + [anon_sym_e_PLUSo_GT] = ACTIONS(1977), + [anon_sym_err_GT_GT] = ACTIONS(1983), + [anon_sym_out_GT_GT] = ACTIONS(1983), + [anon_sym_e_GT_GT] = ACTIONS(1983), + [anon_sym_o_GT_GT] = ACTIONS(1983), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1983), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1983), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1983), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1983), + [aux_sym_unquoted_token1] = ACTIONS(1977), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1983), }, [1623] = { [sym_comment] = STATE(1623), - [ts_builtin_sym_end] = ACTIONS(2033), - [sym__newline] = ACTIONS(2033), - [anon_sym_SEMI] = ACTIONS(2033), - [anon_sym_PIPE] = ACTIONS(2033), - [anon_sym_err_GT_PIPE] = ACTIONS(2033), - [anon_sym_out_GT_PIPE] = ACTIONS(2033), - [anon_sym_e_GT_PIPE] = ACTIONS(2033), - [anon_sym_o_GT_PIPE] = ACTIONS(2033), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2033), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2033), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2033), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2033), - [anon_sym_LBRACK] = ACTIONS(2033), - [anon_sym_LPAREN] = ACTIONS(2033), - [anon_sym_DOLLAR] = ACTIONS(2027), - [anon_sym_DASH_DASH] = ACTIONS(2033), - [anon_sym_DASH2] = ACTIONS(2027), - [anon_sym_LBRACE] = ACTIONS(2033), - [anon_sym_DOT_DOT] = ACTIONS(2027), - [anon_sym_DOT_DOT2] = ACTIONS(4932), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2027), - [anon_sym_DOT_DOT_LT] = ACTIONS(2027), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4934), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4934), - [anon_sym_null] = ACTIONS(2033), - [anon_sym_true] = ACTIONS(2033), - [anon_sym_false] = ACTIONS(2033), - [aux_sym__val_number_decimal_token1] = ACTIONS(2027), - [aux_sym__val_number_decimal_token2] = ACTIONS(2033), - [aux_sym__val_number_decimal_token3] = ACTIONS(2033), - [aux_sym__val_number_decimal_token4] = ACTIONS(2033), - [aux_sym__val_number_token1] = ACTIONS(2033), - [aux_sym__val_number_token2] = ACTIONS(2033), - [aux_sym__val_number_token3] = ACTIONS(2033), - [aux_sym__val_number_token4] = ACTIONS(2033), - [aux_sym__val_number_token5] = ACTIONS(2033), - [aux_sym__val_number_token6] = ACTIONS(2033), - [anon_sym_0b] = ACTIONS(2027), - [anon_sym_0o] = ACTIONS(2027), - [anon_sym_0x] = ACTIONS(2027), - [sym_val_date] = ACTIONS(2033), - [anon_sym_DQUOTE] = ACTIONS(2033), - [sym__str_single_quotes] = ACTIONS(2033), - [sym__str_back_ticks] = ACTIONS(2033), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2033), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2033), - [anon_sym_err_GT] = ACTIONS(2027), - [anon_sym_out_GT] = ACTIONS(2027), - [anon_sym_e_GT] = ACTIONS(2027), - [anon_sym_o_GT] = ACTIONS(2027), - [anon_sym_err_PLUSout_GT] = ACTIONS(2027), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2027), - [anon_sym_o_PLUSe_GT] = ACTIONS(2027), - [anon_sym_e_PLUSo_GT] = ACTIONS(2027), - [anon_sym_err_GT_GT] = ACTIONS(2033), - [anon_sym_out_GT_GT] = ACTIONS(2033), - [anon_sym_e_GT_GT] = ACTIONS(2033), - [anon_sym_o_GT_GT] = ACTIONS(2033), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2033), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2033), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2033), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2033), - [aux_sym_unquoted_token1] = ACTIONS(2027), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2033), + [ts_builtin_sym_end] = ACTIONS(4843), + [sym__newline] = ACTIONS(4843), + [anon_sym_SEMI] = ACTIONS(4843), + [anon_sym_PIPE] = ACTIONS(4843), + [anon_sym_err_GT_PIPE] = ACTIONS(4843), + [anon_sym_out_GT_PIPE] = ACTIONS(4843), + [anon_sym_e_GT_PIPE] = ACTIONS(4843), + [anon_sym_o_GT_PIPE] = ACTIONS(4843), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4843), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4843), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4843), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4843), + [anon_sym_LBRACK] = ACTIONS(4843), + [anon_sym_LPAREN] = ACTIONS(4843), + [anon_sym_DOLLAR] = ACTIONS(4845), + [anon_sym_DASH_DASH] = ACTIONS(4843), + [anon_sym_DASH2] = ACTIONS(4845), + [anon_sym_LBRACE] = ACTIONS(4843), + [anon_sym_DOT_DOT] = ACTIONS(4845), + [anon_sym_DOT_DOT2] = ACTIONS(4876), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4845), + [anon_sym_DOT_DOT_LT] = ACTIONS(4845), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4878), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4878), + [anon_sym_null] = ACTIONS(4843), + [anon_sym_true] = ACTIONS(4843), + [anon_sym_false] = ACTIONS(4843), + [aux_sym__val_number_decimal_token1] = ACTIONS(4845), + [aux_sym__val_number_decimal_token2] = ACTIONS(4843), + [aux_sym__val_number_decimal_token3] = ACTIONS(4843), + [aux_sym__val_number_decimal_token4] = ACTIONS(4843), + [aux_sym__val_number_token1] = ACTIONS(4843), + [aux_sym__val_number_token2] = ACTIONS(4843), + [aux_sym__val_number_token3] = ACTIONS(4843), + [aux_sym__val_number_token4] = ACTIONS(4843), + [aux_sym__val_number_token5] = ACTIONS(4843), + [aux_sym__val_number_token6] = ACTIONS(4843), + [anon_sym_0b] = ACTIONS(4845), + [anon_sym_0o] = ACTIONS(4845), + [anon_sym_0x] = ACTIONS(4845), + [sym_val_date] = ACTIONS(4843), + [anon_sym_DQUOTE] = ACTIONS(4843), + [sym__str_single_quotes] = ACTIONS(4843), + [sym__str_back_ticks] = ACTIONS(4843), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4843), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4843), + [anon_sym_err_GT] = ACTIONS(4845), + [anon_sym_out_GT] = ACTIONS(4845), + [anon_sym_e_GT] = ACTIONS(4845), + [anon_sym_o_GT] = ACTIONS(4845), + [anon_sym_err_PLUSout_GT] = ACTIONS(4845), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4845), + [anon_sym_o_PLUSe_GT] = ACTIONS(4845), + [anon_sym_e_PLUSo_GT] = ACTIONS(4845), + [anon_sym_err_GT_GT] = ACTIONS(4843), + [anon_sym_out_GT_GT] = ACTIONS(4843), + [anon_sym_e_GT_GT] = ACTIONS(4843), + [anon_sym_o_GT_GT] = ACTIONS(4843), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4843), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4843), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4843), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4843), + [aux_sym_unquoted_token1] = ACTIONS(4845), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4843), }, [1624] = { [sym_comment] = STATE(1624), - [ts_builtin_sym_end] = ACTIONS(2041), - [sym__newline] = ACTIONS(2041), - [anon_sym_SEMI] = ACTIONS(2041), - [anon_sym_PIPE] = ACTIONS(2041), - [anon_sym_err_GT_PIPE] = ACTIONS(2041), - [anon_sym_out_GT_PIPE] = ACTIONS(2041), - [anon_sym_e_GT_PIPE] = ACTIONS(2041), - [anon_sym_o_GT_PIPE] = ACTIONS(2041), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2041), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2041), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2041), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2041), - [anon_sym_LBRACK] = ACTIONS(2041), - [anon_sym_LPAREN] = ACTIONS(2041), - [anon_sym_DOLLAR] = ACTIONS(2035), - [anon_sym_DASH_DASH] = ACTIONS(2041), - [anon_sym_DASH2] = ACTIONS(2035), - [anon_sym_LBRACE] = ACTIONS(2041), - [anon_sym_DOT_DOT] = ACTIONS(2035), - [anon_sym_DOT_DOT2] = ACTIONS(4936), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2035), - [anon_sym_DOT_DOT_LT] = ACTIONS(2035), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4938), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4938), - [anon_sym_null] = ACTIONS(2041), - [anon_sym_true] = ACTIONS(2041), - [anon_sym_false] = ACTIONS(2041), - [aux_sym__val_number_decimal_token1] = ACTIONS(2035), - [aux_sym__val_number_decimal_token2] = ACTIONS(2041), - [aux_sym__val_number_decimal_token3] = ACTIONS(2041), - [aux_sym__val_number_decimal_token4] = ACTIONS(2041), - [aux_sym__val_number_token1] = ACTIONS(2041), - [aux_sym__val_number_token2] = ACTIONS(2041), - [aux_sym__val_number_token3] = ACTIONS(2041), - [aux_sym__val_number_token4] = ACTIONS(2041), - [aux_sym__val_number_token5] = ACTIONS(2041), - [aux_sym__val_number_token6] = ACTIONS(2041), - [anon_sym_0b] = ACTIONS(2035), - [anon_sym_0o] = ACTIONS(2035), - [anon_sym_0x] = ACTIONS(2035), - [sym_val_date] = ACTIONS(2041), - [anon_sym_DQUOTE] = ACTIONS(2041), - [sym__str_single_quotes] = ACTIONS(2041), - [sym__str_back_ticks] = ACTIONS(2041), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2041), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2041), - [anon_sym_err_GT] = ACTIONS(2035), - [anon_sym_out_GT] = ACTIONS(2035), - [anon_sym_e_GT] = ACTIONS(2035), - [anon_sym_o_GT] = ACTIONS(2035), - [anon_sym_err_PLUSout_GT] = ACTIONS(2035), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2035), - [anon_sym_o_PLUSe_GT] = ACTIONS(2035), - [anon_sym_e_PLUSo_GT] = ACTIONS(2035), - [anon_sym_err_GT_GT] = ACTIONS(2041), - [anon_sym_out_GT_GT] = ACTIONS(2041), - [anon_sym_e_GT_GT] = ACTIONS(2041), - [anon_sym_o_GT_GT] = ACTIONS(2041), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2041), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2041), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2041), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2041), - [aux_sym_unquoted_token1] = ACTIONS(2035), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2041), + [ts_builtin_sym_end] = ACTIONS(1991), + [sym__newline] = ACTIONS(1991), + [anon_sym_SEMI] = ACTIONS(1991), + [anon_sym_PIPE] = ACTIONS(1991), + [anon_sym_err_GT_PIPE] = ACTIONS(1991), + [anon_sym_out_GT_PIPE] = ACTIONS(1991), + [anon_sym_e_GT_PIPE] = ACTIONS(1991), + [anon_sym_o_GT_PIPE] = ACTIONS(1991), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1991), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1991), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1991), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1991), + [anon_sym_LBRACK] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_DOLLAR] = ACTIONS(1985), + [anon_sym_DASH_DASH] = ACTIONS(1991), + [anon_sym_DASH2] = ACTIONS(1985), + [anon_sym_LBRACE] = ACTIONS(1991), + [anon_sym_DOT_DOT] = ACTIONS(1985), + [anon_sym_DOT_DOT2] = ACTIONS(4911), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1985), + [anon_sym_DOT_DOT_LT] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4913), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4913), + [anon_sym_null] = ACTIONS(1991), + [anon_sym_true] = ACTIONS(1991), + [anon_sym_false] = ACTIONS(1991), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1991), + [aux_sym__val_number_decimal_token3] = ACTIONS(1991), + [aux_sym__val_number_decimal_token4] = ACTIONS(1991), + [aux_sym__val_number_token1] = ACTIONS(1991), + [aux_sym__val_number_token2] = ACTIONS(1991), + [aux_sym__val_number_token3] = ACTIONS(1991), + [aux_sym__val_number_token4] = ACTIONS(1991), + [aux_sym__val_number_token5] = ACTIONS(1991), + [aux_sym__val_number_token6] = ACTIONS(1991), + [anon_sym_0b] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1985), + [sym_val_date] = ACTIONS(1991), + [anon_sym_DQUOTE] = ACTIONS(1991), + [sym__str_single_quotes] = ACTIONS(1991), + [sym__str_back_ticks] = ACTIONS(1991), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1991), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1991), + [anon_sym_err_GT] = ACTIONS(1985), + [anon_sym_out_GT] = ACTIONS(1985), + [anon_sym_e_GT] = ACTIONS(1985), + [anon_sym_o_GT] = ACTIONS(1985), + [anon_sym_err_PLUSout_GT] = ACTIONS(1985), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1985), + [anon_sym_o_PLUSe_GT] = ACTIONS(1985), + [anon_sym_e_PLUSo_GT] = ACTIONS(1985), + [anon_sym_err_GT_GT] = ACTIONS(1991), + [anon_sym_out_GT_GT] = ACTIONS(1991), + [anon_sym_e_GT_GT] = ACTIONS(1991), + [anon_sym_o_GT_GT] = ACTIONS(1991), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1991), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1991), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1991), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1991), + [aux_sym_unquoted_token1] = ACTIONS(1985), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1991), }, [1625] = { [sym_comment] = STATE(1625), - [sym__newline] = ACTIONS(2146), - [anon_sym_SEMI] = ACTIONS(2146), - [anon_sym_PIPE] = ACTIONS(2146), - [anon_sym_err_GT_PIPE] = ACTIONS(2146), - [anon_sym_out_GT_PIPE] = ACTIONS(2146), - [anon_sym_e_GT_PIPE] = ACTIONS(2146), - [anon_sym_o_GT_PIPE] = ACTIONS(2146), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2146), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2146), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2146), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2146), - [anon_sym_LBRACK] = ACTIONS(2146), - [anon_sym_LPAREN] = ACTIONS(2144), - [anon_sym_RPAREN] = ACTIONS(2146), - [anon_sym_DOLLAR] = ACTIONS(2144), - [anon_sym_DASH_DASH] = ACTIONS(2144), - [anon_sym_DASH2] = ACTIONS(2144), - [anon_sym_LBRACE] = ACTIONS(2146), - [anon_sym_RBRACE] = ACTIONS(2146), - [anon_sym_DOT_DOT] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(2138), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2144), - [anon_sym_DOT_DOT_LT] = ACTIONS(2144), - [anon_sym_null] = ACTIONS(2144), - [anon_sym_true] = ACTIONS(2144), - [anon_sym_false] = ACTIONS(2144), - [aux_sym__val_number_decimal_token1] = ACTIONS(2144), - [aux_sym__val_number_decimal_token2] = ACTIONS(2144), - [aux_sym__val_number_decimal_token3] = ACTIONS(2144), - [aux_sym__val_number_decimal_token4] = ACTIONS(2144), - [aux_sym__val_number_token1] = ACTIONS(2144), - [aux_sym__val_number_token2] = ACTIONS(2144), - [aux_sym__val_number_token3] = ACTIONS(2144), - [aux_sym__val_number_token4] = ACTIONS(2144), - [aux_sym__val_number_token5] = ACTIONS(2144), - [aux_sym__val_number_token6] = ACTIONS(2144), - [anon_sym_0b] = ACTIONS(2144), - [anon_sym_0o] = ACTIONS(2144), - [anon_sym_0x] = ACTIONS(2144), - [sym_val_date] = ACTIONS(2144), - [anon_sym_DQUOTE] = ACTIONS(2146), - [sym__str_single_quotes] = ACTIONS(2146), - [sym__str_back_ticks] = ACTIONS(2146), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2146), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2146), - [anon_sym_err_GT] = ACTIONS(2144), - [anon_sym_out_GT] = ACTIONS(2144), - [anon_sym_e_GT] = ACTIONS(2144), - [anon_sym_o_GT] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT] = ACTIONS(2144), - [anon_sym_err_GT_GT] = ACTIONS(2144), - [anon_sym_out_GT_GT] = ACTIONS(2144), - [anon_sym_e_GT_GT] = ACTIONS(2144), - [anon_sym_o_GT_GT] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2144), - [aux_sym_unquoted_token1] = ACTIONS(2144), - [aux_sym_unquoted_token4] = ACTIONS(2142), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2146), + [ts_builtin_sym_end] = ACTIONS(1768), + [sym__newline] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_err_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_GT_PIPE] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1768), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_DOLLAR] = ACTIONS(1766), + [anon_sym_DASH_DASH] = ACTIONS(1768), + [anon_sym_DASH2] = ACTIONS(1766), + [anon_sym_LBRACE] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1766), + [anon_sym_DOT_DOT2] = ACTIONS(1766), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1766), + [anon_sym_DOT_DOT_LT] = ACTIONS(1766), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1768), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1768), + [anon_sym_null] = ACTIONS(1768), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [aux_sym__val_number_decimal_token1] = ACTIONS(1766), + [aux_sym__val_number_decimal_token2] = ACTIONS(1768), + [aux_sym__val_number_decimal_token3] = ACTIONS(1768), + [aux_sym__val_number_decimal_token4] = ACTIONS(1768), + [aux_sym__val_number_token1] = ACTIONS(1768), + [aux_sym__val_number_token2] = ACTIONS(1768), + [aux_sym__val_number_token3] = ACTIONS(1768), + [aux_sym__val_number_token4] = ACTIONS(1768), + [aux_sym__val_number_token5] = ACTIONS(1768), + [aux_sym__val_number_token6] = ACTIONS(1768), + [anon_sym_0b] = ACTIONS(1766), + [anon_sym_0o] = ACTIONS(1766), + [anon_sym_0x] = ACTIONS(1766), + [sym_val_date] = ACTIONS(1768), + [anon_sym_DQUOTE] = ACTIONS(1768), + [sym__str_single_quotes] = ACTIONS(1768), + [sym__str_back_ticks] = ACTIONS(1768), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1768), + [anon_sym_err_GT] = ACTIONS(1766), + [anon_sym_out_GT] = ACTIONS(1766), + [anon_sym_e_GT] = ACTIONS(1766), + [anon_sym_o_GT] = ACTIONS(1766), + [anon_sym_err_PLUSout_GT] = ACTIONS(1766), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1766), + [anon_sym_o_PLUSe_GT] = ACTIONS(1766), + [anon_sym_e_PLUSo_GT] = ACTIONS(1766), + [anon_sym_err_GT_GT] = ACTIONS(1768), + [anon_sym_out_GT_GT] = ACTIONS(1768), + [anon_sym_e_GT_GT] = ACTIONS(1768), + [anon_sym_o_GT_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1768), + [aux_sym_unquoted_token1] = ACTIONS(1766), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1768), }, [1626] = { - [sym_cmd_identifier] = STATE(4146), - [sym__command_name] = STATE(6267), - [sym_scope_pattern] = STATE(6271), - [sym_wild_card] = STATE(6273), - [sym_command_list] = STATE(6274), - [sym__val_number_decimal] = STATE(3792), - [sym_val_string] = STATE(4121), - [sym__raw_str] = STATE(3668), - [sym__str_double_quotes] = STATE(3668), [sym_comment] = STATE(1626), - [aux_sym_cmd_identifier_token1] = ACTIONS(4940), - [aux_sym_cmd_identifier_token2] = ACTIONS(4942), - [aux_sym_cmd_identifier_token3] = ACTIONS(4942), - [aux_sym_cmd_identifier_token4] = ACTIONS(4942), - [aux_sym_cmd_identifier_token5] = ACTIONS(4942), - [aux_sym_cmd_identifier_token6] = ACTIONS(4942), - [aux_sym_cmd_identifier_token7] = ACTIONS(4942), - [aux_sym_cmd_identifier_token8] = ACTIONS(4942), - [aux_sym_cmd_identifier_token9] = ACTIONS(4940), - [aux_sym_cmd_identifier_token10] = ACTIONS(4942), - [aux_sym_cmd_identifier_token11] = ACTIONS(4942), - [aux_sym_cmd_identifier_token12] = ACTIONS(4942), - [aux_sym_cmd_identifier_token13] = ACTIONS(4940), - [aux_sym_cmd_identifier_token14] = ACTIONS(4942), - [aux_sym_cmd_identifier_token15] = ACTIONS(4940), - [aux_sym_cmd_identifier_token16] = ACTIONS(4942), - [aux_sym_cmd_identifier_token17] = ACTIONS(4942), - [aux_sym_cmd_identifier_token18] = ACTIONS(4942), - [aux_sym_cmd_identifier_token19] = ACTIONS(4942), - [aux_sym_cmd_identifier_token20] = ACTIONS(4942), - [aux_sym_cmd_identifier_token21] = ACTIONS(4942), - [aux_sym_cmd_identifier_token22] = ACTIONS(4942), - [aux_sym_cmd_identifier_token23] = ACTIONS(4942), - [aux_sym_cmd_identifier_token24] = ACTIONS(4942), - [aux_sym_cmd_identifier_token25] = ACTIONS(4942), - [aux_sym_cmd_identifier_token26] = ACTIONS(4942), - [aux_sym_cmd_identifier_token27] = ACTIONS(4942), - [aux_sym_cmd_identifier_token28] = ACTIONS(4942), - [aux_sym_cmd_identifier_token29] = ACTIONS(4942), - [aux_sym_cmd_identifier_token30] = ACTIONS(4942), - [aux_sym_cmd_identifier_token31] = ACTIONS(4942), - [aux_sym_cmd_identifier_token32] = ACTIONS(4942), - [aux_sym_cmd_identifier_token33] = ACTIONS(4942), - [aux_sym_cmd_identifier_token34] = ACTIONS(4940), - [aux_sym_cmd_identifier_token35] = ACTIONS(4942), - [aux_sym_cmd_identifier_token36] = ACTIONS(4942), - [aux_sym_cmd_identifier_token37] = ACTIONS(4942), - [aux_sym_cmd_identifier_token38] = ACTIONS(4940), - [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_LBRACK] = ACTIONS(4946), - [anon_sym_RPAREN] = ACTIONS(4944), - [anon_sym_RBRACE] = ACTIONS(4944), - [anon_sym_STAR2] = ACTIONS(4948), - [aux_sym__val_number_decimal_token1] = ACTIONS(4950), - [aux_sym__val_number_decimal_token2] = ACTIONS(4950), - [aux_sym__val_number_decimal_token3] = ACTIONS(4952), - [aux_sym__val_number_decimal_token4] = ACTIONS(4954), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym__str_single_quotes] = ACTIONS(1288), - [sym__str_back_ticks] = ACTIONS(1288), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1290), + [ts_builtin_sym_end] = ACTIONS(1703), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_GT2] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1703), + [anon_sym_in2] = ACTIONS(1703), + [anon_sym_STAR2] = ACTIONS(1701), + [anon_sym_and2] = ACTIONS(1703), + [anon_sym_xor2] = ACTIONS(1703), + [anon_sym_or2] = ACTIONS(1703), + [anon_sym_not_DASHin2] = ACTIONS(1703), + [anon_sym_has2] = ACTIONS(1703), + [anon_sym_not_DASHhas2] = ACTIONS(1703), + [anon_sym_starts_DASHwith2] = ACTIONS(1703), + [anon_sym_ends_DASHwith2] = ACTIONS(1703), + [anon_sym_EQ_EQ2] = ACTIONS(1703), + [anon_sym_BANG_EQ2] = ACTIONS(1703), + [anon_sym_LT2] = ACTIONS(1701), + [anon_sym_LT_EQ2] = ACTIONS(1703), + [anon_sym_GT_EQ2] = ACTIONS(1703), + [anon_sym_EQ_TILDE2] = ACTIONS(1703), + [anon_sym_BANG_TILDE2] = ACTIONS(1703), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_STAR_STAR2] = ACTIONS(1703), + [anon_sym_PLUS_PLUS2] = ACTIONS(1703), + [anon_sym_SLASH2] = ACTIONS(1701), + [anon_sym_mod2] = ACTIONS(1703), + [anon_sym_SLASH_SLASH2] = ACTIONS(1703), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_bit_DASHshl2] = ACTIONS(1703), + [anon_sym_bit_DASHshr2] = ACTIONS(1703), + [anon_sym_bit_DASHand2] = ACTIONS(1703), + [anon_sym_bit_DASHxor2] = ACTIONS(1703), + [anon_sym_bit_DASHor2] = ACTIONS(1703), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(4820), + [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(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(247), }, [1627] = { - [sym_cell_path] = STATE(2122), - [sym_path] = STATE(1889), + [sym_path] = STATE(1783), [sym_comment] = STATE(1627), - [aux_sym_cell_path_repeat1] = STATE(1692), - [ts_builtin_sym_end] = ACTIONS(1699), - [sym__newline] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1699), - [anon_sym_PIPE] = ACTIONS(1699), - [anon_sym_err_GT_PIPE] = ACTIONS(1699), - [anon_sym_out_GT_PIPE] = ACTIONS(1699), - [anon_sym_e_GT_PIPE] = ACTIONS(1699), - [anon_sym_o_GT_PIPE] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1699), - [anon_sym_GT2] = ACTIONS(1697), - [anon_sym_DASH2] = ACTIONS(1699), - [anon_sym_in2] = ACTIONS(1699), - [anon_sym_STAR2] = ACTIONS(1697), - [anon_sym_and2] = ACTIONS(1699), - [anon_sym_xor2] = ACTIONS(1699), - [anon_sym_or2] = ACTIONS(1699), - [anon_sym_not_DASHin2] = ACTIONS(1699), - [anon_sym_starts_DASHwith2] = ACTIONS(1699), - [anon_sym_ends_DASHwith2] = ACTIONS(1699), - [anon_sym_EQ_EQ2] = ACTIONS(1699), - [anon_sym_BANG_EQ2] = ACTIONS(1699), - [anon_sym_LT2] = ACTIONS(1697), - [anon_sym_LT_EQ2] = ACTIONS(1699), - [anon_sym_GT_EQ2] = ACTIONS(1699), - [anon_sym_EQ_TILDE2] = ACTIONS(1699), - [anon_sym_BANG_TILDE2] = ACTIONS(1699), - [anon_sym_STAR_STAR2] = ACTIONS(1699), - [anon_sym_PLUS_PLUS2] = ACTIONS(1699), - [anon_sym_SLASH2] = ACTIONS(1697), - [anon_sym_mod2] = ACTIONS(1699), - [anon_sym_SLASH_SLASH2] = ACTIONS(1699), - [anon_sym_PLUS2] = ACTIONS(1697), - [anon_sym_bit_DASHshl2] = ACTIONS(1699), - [anon_sym_bit_DASHshr2] = ACTIONS(1699), - [anon_sym_bit_DASHand2] = ACTIONS(1699), - [anon_sym_bit_DASHxor2] = ACTIONS(1699), - [anon_sym_bit_DASHor2] = ACTIONS(1699), - [anon_sym_DOT_DOT2] = ACTIONS(1697), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1699), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1699), - [anon_sym_DOT2] = ACTIONS(4956), - [anon_sym_err_GT] = ACTIONS(1697), - [anon_sym_out_GT] = ACTIONS(1697), - [anon_sym_e_GT] = ACTIONS(1697), - [anon_sym_o_GT] = ACTIONS(1697), - [anon_sym_err_PLUSout_GT] = ACTIONS(1697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1697), - [anon_sym_o_PLUSe_GT] = ACTIONS(1697), - [anon_sym_e_PLUSo_GT] = ACTIONS(1697), - [anon_sym_err_GT_GT] = ACTIONS(1699), - [anon_sym_out_GT_GT] = ACTIONS(1699), - [anon_sym_e_GT_GT] = ACTIONS(1699), - [anon_sym_o_GT_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1699), - [anon_sym_POUND] = ACTIONS(251), + [aux_sym_cell_path_repeat1] = STATE(1627), + [ts_builtin_sym_end] = ACTIONS(937), + [sym__newline] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(937), + [anon_sym_err_GT_PIPE] = ACTIONS(937), + [anon_sym_out_GT_PIPE] = ACTIONS(937), + [anon_sym_e_GT_PIPE] = ACTIONS(937), + [anon_sym_o_GT_PIPE] = ACTIONS(937), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(937), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(937), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(937), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(937), + [anon_sym_GT2] = ACTIONS(935), + [anon_sym_DASH2] = ACTIONS(937), + [anon_sym_in2] = ACTIONS(937), + [anon_sym_STAR2] = ACTIONS(935), + [anon_sym_and2] = ACTIONS(937), + [anon_sym_xor2] = ACTIONS(937), + [anon_sym_or2] = ACTIONS(937), + [anon_sym_not_DASHin2] = ACTIONS(937), + [anon_sym_has2] = ACTIONS(937), + [anon_sym_not_DASHhas2] = ACTIONS(937), + [anon_sym_starts_DASHwith2] = ACTIONS(937), + [anon_sym_ends_DASHwith2] = ACTIONS(937), + [anon_sym_EQ_EQ2] = ACTIONS(937), + [anon_sym_BANG_EQ2] = ACTIONS(937), + [anon_sym_LT2] = ACTIONS(935), + [anon_sym_LT_EQ2] = ACTIONS(937), + [anon_sym_GT_EQ2] = ACTIONS(937), + [anon_sym_EQ_TILDE2] = ACTIONS(937), + [anon_sym_BANG_TILDE2] = ACTIONS(937), + [anon_sym_STAR_STAR2] = ACTIONS(937), + [anon_sym_PLUS_PLUS2] = ACTIONS(937), + [anon_sym_SLASH2] = ACTIONS(935), + [anon_sym_mod2] = ACTIONS(937), + [anon_sym_SLASH_SLASH2] = ACTIONS(937), + [anon_sym_PLUS2] = ACTIONS(935), + [anon_sym_bit_DASHshl2] = ACTIONS(937), + [anon_sym_bit_DASHshr2] = ACTIONS(937), + [anon_sym_bit_DASHand2] = ACTIONS(937), + [anon_sym_bit_DASHxor2] = ACTIONS(937), + [anon_sym_bit_DASHor2] = ACTIONS(937), + [anon_sym_DOT_DOT2] = ACTIONS(935), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(937), + [anon_sym_DOT_DOT_LT2] = ACTIONS(937), + [anon_sym_DOT2] = ACTIONS(4915), + [anon_sym_err_GT] = ACTIONS(935), + [anon_sym_out_GT] = ACTIONS(935), + [anon_sym_e_GT] = ACTIONS(935), + [anon_sym_o_GT] = ACTIONS(935), + [anon_sym_err_PLUSout_GT] = ACTIONS(935), + [anon_sym_out_PLUSerr_GT] = ACTIONS(935), + [anon_sym_o_PLUSe_GT] = ACTIONS(935), + [anon_sym_e_PLUSo_GT] = ACTIONS(935), + [anon_sym_err_GT_GT] = ACTIONS(937), + [anon_sym_out_GT_GT] = ACTIONS(937), + [anon_sym_e_GT_GT] = ACTIONS(937), + [anon_sym_o_GT_GT] = ACTIONS(937), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(937), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(937), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(937), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(937), + [anon_sym_POUND] = ACTIONS(247), }, [1628] = { [sym_comment] = STATE(1628), - [sym__newline] = ACTIONS(1785), - [anon_sym_SEMI] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(1785), - [anon_sym_err_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_GT_PIPE] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_RPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT] = ACTIONS(1785), - [aux_sym__immediate_decimal_token2] = ACTIONS(4958), - [anon_sym_null] = ACTIONS(1785), - [anon_sym_true] = ACTIONS(1785), - [anon_sym_false] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(1785), - [aux_sym__val_number_token2] = ACTIONS(1785), - [aux_sym__val_number_token3] = ACTIONS(1785), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_0b] = ACTIONS(1783), - [anon_sym_0o] = ACTIONS(1783), - [anon_sym_0x] = ACTIONS(1783), - [sym_val_date] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1785), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1785), - [anon_sym_err_GT] = ACTIONS(1783), - [anon_sym_out_GT] = ACTIONS(1783), - [anon_sym_e_GT] = ACTIONS(1783), - [anon_sym_o_GT] = ACTIONS(1783), - [anon_sym_err_PLUSout_GT] = ACTIONS(1783), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1783), - [anon_sym_o_PLUSe_GT] = ACTIONS(1783), - [anon_sym_e_PLUSo_GT] = ACTIONS(1783), - [anon_sym_err_GT_GT] = ACTIONS(1785), - [anon_sym_out_GT_GT] = ACTIONS(1785), - [anon_sym_e_GT_GT] = ACTIONS(1785), - [anon_sym_o_GT_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1785), - [aux_sym_unquoted_token1] = ACTIONS(1783), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1785), + [sym__newline] = ACTIONS(1695), + [anon_sym_SEMI] = ACTIONS(1695), + [anon_sym_PIPE] = ACTIONS(1695), + [anon_sym_err_GT_PIPE] = ACTIONS(1695), + [anon_sym_out_GT_PIPE] = ACTIONS(1695), + [anon_sym_e_GT_PIPE] = ACTIONS(1695), + [anon_sym_o_GT_PIPE] = ACTIONS(1695), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1695), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1695), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1695), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1695), + [anon_sym_LBRACK] = ACTIONS(1695), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_RPAREN] = ACTIONS(1695), + [anon_sym_DOLLAR] = ACTIONS(1693), + [anon_sym_DASH_DASH] = ACTIONS(1695), + [anon_sym_DASH2] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1695), + [anon_sym_RBRACE] = ACTIONS(1695), + [anon_sym_DOT_DOT] = ACTIONS(1693), + [anon_sym_LPAREN2] = ACTIONS(1695), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1695), + [anon_sym_DOT_DOT_LT] = ACTIONS(1695), + [anon_sym_null] = ACTIONS(1695), + [anon_sym_true] = ACTIONS(1695), + [anon_sym_false] = ACTIONS(1695), + [aux_sym__val_number_decimal_token1] = ACTIONS(1693), + [aux_sym__val_number_decimal_token2] = ACTIONS(1695), + [aux_sym__val_number_decimal_token3] = ACTIONS(1695), + [aux_sym__val_number_decimal_token4] = ACTIONS(1695), + [aux_sym__val_number_token1] = ACTIONS(1695), + [aux_sym__val_number_token2] = ACTIONS(1695), + [aux_sym__val_number_token3] = ACTIONS(1695), + [aux_sym__val_number_token4] = ACTIONS(1695), + [aux_sym__val_number_token5] = ACTIONS(1695), + [aux_sym__val_number_token6] = ACTIONS(1695), + [anon_sym_0b] = ACTIONS(1693), + [anon_sym_0o] = ACTIONS(1693), + [anon_sym_0x] = ACTIONS(1693), + [sym_val_date] = ACTIONS(1695), + [anon_sym_DQUOTE] = ACTIONS(1695), + [sym__str_single_quotes] = ACTIONS(1695), + [sym__str_back_ticks] = ACTIONS(1695), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1695), + [anon_sym_err_GT] = ACTIONS(1693), + [anon_sym_out_GT] = ACTIONS(1693), + [anon_sym_e_GT] = ACTIONS(1693), + [anon_sym_o_GT] = ACTIONS(1693), + [anon_sym_err_PLUSout_GT] = ACTIONS(1693), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1693), + [anon_sym_o_PLUSe_GT] = ACTIONS(1693), + [anon_sym_e_PLUSo_GT] = ACTIONS(1693), + [anon_sym_err_GT_GT] = ACTIONS(1695), + [anon_sym_out_GT_GT] = ACTIONS(1695), + [anon_sym_e_GT_GT] = ACTIONS(1695), + [anon_sym_o_GT_GT] = ACTIONS(1695), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1695), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1695), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1695), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1695), + [aux_sym_unquoted_token1] = ACTIONS(1693), + [aux_sym_unquoted_token2] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1695), }, [1629] = { [sym_comment] = STATE(1629), - [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(1638), - [anon_sym_DASH_DASH] = ACTIONS(1650), - [anon_sym_DASH2] = ACTIONS(1638), - [anon_sym_LBRACE] = ACTIONS(1650), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_DOT_DOT] = ACTIONS(1638), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1650), - [anon_sym_DOT_DOT_LT] = ACTIONS(1650), - [anon_sym_null] = ACTIONS(1650), - [anon_sym_true] = ACTIONS(1650), - [anon_sym_false] = ACTIONS(1650), - [aux_sym__val_number_decimal_token1] = ACTIONS(1638), - [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), - [aux_sym__val_number_token4] = ACTIONS(1650), - [aux_sym__val_number_token5] = ACTIONS(1650), - [aux_sym__val_number_token6] = ACTIONS(1650), - [anon_sym_0b] = ACTIONS(1638), - [anon_sym_0o] = ACTIONS(1638), - [anon_sym_0x] = ACTIONS(1638), - [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(1638), - [anon_sym_out_GT] = ACTIONS(1638), - [anon_sym_e_GT] = ACTIONS(1638), - [anon_sym_o_GT] = ACTIONS(1638), - [anon_sym_err_PLUSout_GT] = ACTIONS(1638), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1638), - [anon_sym_o_PLUSe_GT] = ACTIONS(1638), - [anon_sym_e_PLUSo_GT] = ACTIONS(1638), - [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(1638), - [aux_sym_unquoted_token2] = ACTIONS(4630), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1650), + [ts_builtin_sym_end] = ACTIONS(962), + [sym__newline] = ACTIONS(962), + [anon_sym_SEMI] = ACTIONS(962), + [anon_sym_PIPE] = ACTIONS(962), + [anon_sym_err_GT_PIPE] = ACTIONS(962), + [anon_sym_out_GT_PIPE] = ACTIONS(962), + [anon_sym_e_GT_PIPE] = ACTIONS(962), + [anon_sym_o_GT_PIPE] = ACTIONS(962), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(962), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(962), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(962), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(962), + [anon_sym_GT2] = ACTIONS(960), + [anon_sym_DASH2] = ACTIONS(962), + [anon_sym_in2] = ACTIONS(962), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_STAR2] = ACTIONS(960), + [anon_sym_QMARK2] = ACTIONS(962), + [anon_sym_and2] = ACTIONS(962), + [anon_sym_xor2] = ACTIONS(962), + [anon_sym_or2] = ACTIONS(962), + [anon_sym_not_DASHin2] = ACTIONS(962), + [anon_sym_has2] = ACTIONS(962), + [anon_sym_not_DASHhas2] = ACTIONS(962), + [anon_sym_starts_DASHwith2] = ACTIONS(962), + [anon_sym_ends_DASHwith2] = ACTIONS(962), + [anon_sym_EQ_EQ2] = ACTIONS(962), + [anon_sym_BANG_EQ2] = ACTIONS(962), + [anon_sym_LT2] = ACTIONS(960), + [anon_sym_LT_EQ2] = ACTIONS(962), + [anon_sym_GT_EQ2] = ACTIONS(962), + [anon_sym_EQ_TILDE2] = ACTIONS(962), + [anon_sym_BANG_TILDE2] = ACTIONS(962), + [anon_sym_STAR_STAR2] = ACTIONS(962), + [anon_sym_PLUS_PLUS2] = ACTIONS(962), + [anon_sym_SLASH2] = ACTIONS(960), + [anon_sym_mod2] = ACTIONS(962), + [anon_sym_SLASH_SLASH2] = ACTIONS(962), + [anon_sym_PLUS2] = ACTIONS(960), + [anon_sym_bit_DASHshl2] = ACTIONS(962), + [anon_sym_bit_DASHshr2] = ACTIONS(962), + [anon_sym_bit_DASHand2] = ACTIONS(962), + [anon_sym_bit_DASHxor2] = ACTIONS(962), + [anon_sym_bit_DASHor2] = ACTIONS(962), + [anon_sym_DOT_DOT2] = ACTIONS(960), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(962), + [anon_sym_DOT_DOT_LT2] = ACTIONS(962), + [anon_sym_DOT2] = ACTIONS(960), + [anon_sym_err_GT] = ACTIONS(960), + [anon_sym_out_GT] = ACTIONS(960), + [anon_sym_e_GT] = ACTIONS(960), + [anon_sym_o_GT] = ACTIONS(960), + [anon_sym_err_PLUSout_GT] = ACTIONS(960), + [anon_sym_out_PLUSerr_GT] = ACTIONS(960), + [anon_sym_o_PLUSe_GT] = ACTIONS(960), + [anon_sym_e_PLUSo_GT] = ACTIONS(960), + [anon_sym_err_GT_GT] = ACTIONS(962), + [anon_sym_out_GT_GT] = ACTIONS(962), + [anon_sym_e_GT_GT] = ACTIONS(962), + [anon_sym_o_GT_GT] = ACTIONS(962), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(962), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(962), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(962), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(962), + [anon_sym_POUND] = ACTIONS(247), }, [1630] = { - [sym_cell_path] = STATE(2119), - [sym_path] = STATE(1889), [sym_comment] = STATE(1630), - [aux_sym_cell_path_repeat1] = STATE(1692), - [ts_builtin_sym_end] = ACTIONS(945), - [sym__newline] = ACTIONS(945), - [anon_sym_SEMI] = ACTIONS(945), - [anon_sym_PIPE] = ACTIONS(945), - [anon_sym_err_GT_PIPE] = ACTIONS(945), - [anon_sym_out_GT_PIPE] = ACTIONS(945), - [anon_sym_e_GT_PIPE] = ACTIONS(945), - [anon_sym_o_GT_PIPE] = ACTIONS(945), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(945), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(945), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(945), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(945), - [anon_sym_GT2] = ACTIONS(943), - [anon_sym_DASH2] = ACTIONS(945), - [anon_sym_in2] = ACTIONS(945), - [anon_sym_STAR2] = ACTIONS(943), - [anon_sym_and2] = ACTIONS(945), - [anon_sym_xor2] = ACTIONS(945), - [anon_sym_or2] = ACTIONS(945), - [anon_sym_not_DASHin2] = ACTIONS(945), - [anon_sym_starts_DASHwith2] = ACTIONS(945), - [anon_sym_ends_DASHwith2] = ACTIONS(945), - [anon_sym_EQ_EQ2] = ACTIONS(945), - [anon_sym_BANG_EQ2] = ACTIONS(945), - [anon_sym_LT2] = ACTIONS(943), - [anon_sym_LT_EQ2] = ACTIONS(945), - [anon_sym_GT_EQ2] = ACTIONS(945), - [anon_sym_EQ_TILDE2] = ACTIONS(945), - [anon_sym_BANG_TILDE2] = ACTIONS(945), - [anon_sym_STAR_STAR2] = ACTIONS(945), - [anon_sym_PLUS_PLUS2] = ACTIONS(945), - [anon_sym_SLASH2] = ACTIONS(943), - [anon_sym_mod2] = ACTIONS(945), - [anon_sym_SLASH_SLASH2] = ACTIONS(945), - [anon_sym_PLUS2] = ACTIONS(943), - [anon_sym_bit_DASHshl2] = ACTIONS(945), - [anon_sym_bit_DASHshr2] = ACTIONS(945), - [anon_sym_bit_DASHand2] = ACTIONS(945), - [anon_sym_bit_DASHxor2] = ACTIONS(945), - [anon_sym_bit_DASHor2] = ACTIONS(945), - [anon_sym_DOT_DOT2] = ACTIONS(943), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(945), - [anon_sym_DOT_DOT_LT2] = ACTIONS(945), - [anon_sym_DOT2] = ACTIONS(4956), - [anon_sym_err_GT] = ACTIONS(943), - [anon_sym_out_GT] = ACTIONS(943), - [anon_sym_e_GT] = ACTIONS(943), - [anon_sym_o_GT] = ACTIONS(943), - [anon_sym_err_PLUSout_GT] = ACTIONS(943), - [anon_sym_out_PLUSerr_GT] = ACTIONS(943), - [anon_sym_o_PLUSe_GT] = ACTIONS(943), - [anon_sym_e_PLUSo_GT] = ACTIONS(943), - [anon_sym_err_GT_GT] = ACTIONS(945), - [anon_sym_out_GT_GT] = ACTIONS(945), - [anon_sym_e_GT_GT] = ACTIONS(945), - [anon_sym_o_GT_GT] = ACTIONS(945), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(945), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(945), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(945), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(945), - [anon_sym_POUND] = ACTIONS(251), + [ts_builtin_sym_end] = 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_DASH2] = ACTIONS(1792), + [anon_sym_LBRACE] = ACTIONS(1794), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_DOT_DOT2] = ACTIONS(1792), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1792), + [anon_sym_DOT_DOT_LT] = ACTIONS(1792), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1794), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1794), + [anon_sym_null] = ACTIONS(1794), + [anon_sym_true] = ACTIONS(1794), + [anon_sym_false] = ACTIONS(1794), + [aux_sym__val_number_decimal_token1] = ACTIONS(1792), + [aux_sym__val_number_decimal_token2] = ACTIONS(1794), + [aux_sym__val_number_decimal_token3] = ACTIONS(1794), + [aux_sym__val_number_decimal_token4] = ACTIONS(1794), + [aux_sym__val_number_token1] = ACTIONS(1794), + [aux_sym__val_number_token2] = ACTIONS(1794), + [aux_sym__val_number_token3] = ACTIONS(1794), + [aux_sym__val_number_token4] = ACTIONS(1794), + [aux_sym__val_number_token5] = ACTIONS(1794), + [aux_sym__val_number_token6] = 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(247), + [sym_raw_string_begin] = ACTIONS(1794), }, [1631] = { [sym_comment] = STATE(1631), - [ts_builtin_sym_end] = ACTIONS(2150), - [sym__newline] = ACTIONS(2150), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_err_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_GT_PIPE] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_LPAREN] = ACTIONS(2148), - [anon_sym_DOLLAR] = ACTIONS(2148), - [anon_sym_DASH_DASH] = ACTIONS(2148), - [anon_sym_DASH2] = ACTIONS(2148), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_DOT_DOT] = ACTIONS(2148), - [anon_sym_LPAREN2] = ACTIONS(2150), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2148), - [anon_sym_DOT_DOT_LT] = ACTIONS(2148), - [anon_sym_null] = ACTIONS(2148), - [anon_sym_true] = ACTIONS(2148), - [anon_sym_false] = ACTIONS(2148), - [aux_sym__val_number_decimal_token1] = ACTIONS(2148), - [aux_sym__val_number_decimal_token2] = ACTIONS(2148), - [aux_sym__val_number_decimal_token3] = ACTIONS(2148), - [aux_sym__val_number_decimal_token4] = ACTIONS(2148), - [aux_sym__val_number_token1] = ACTIONS(2148), - [aux_sym__val_number_token2] = ACTIONS(2148), - [aux_sym__val_number_token3] = ACTIONS(2148), - [aux_sym__val_number_token4] = ACTIONS(2148), - [aux_sym__val_number_token5] = ACTIONS(2148), - [aux_sym__val_number_token6] = ACTIONS(2148), - [anon_sym_0b] = ACTIONS(2148), - [anon_sym_0o] = ACTIONS(2148), - [anon_sym_0x] = ACTIONS(2148), - [sym_val_date] = ACTIONS(2148), - [anon_sym_DQUOTE] = ACTIONS(2150), - [sym__str_single_quotes] = ACTIONS(2150), - [sym__str_back_ticks] = ACTIONS(2150), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2150), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2150), - [anon_sym_err_GT] = ACTIONS(2148), - [anon_sym_out_GT] = ACTIONS(2148), - [anon_sym_e_GT] = ACTIONS(2148), - [anon_sym_o_GT] = ACTIONS(2148), - [anon_sym_err_PLUSout_GT] = ACTIONS(2148), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2148), - [anon_sym_o_PLUSe_GT] = ACTIONS(2148), - [anon_sym_e_PLUSo_GT] = ACTIONS(2148), - [anon_sym_err_GT_GT] = ACTIONS(2148), - [anon_sym_out_GT_GT] = ACTIONS(2148), - [anon_sym_e_GT_GT] = ACTIONS(2148), - [anon_sym_o_GT_GT] = ACTIONS(2148), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2148), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2148), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2148), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2148), - [aux_sym_unquoted_token1] = ACTIONS(2148), - [aux_sym_unquoted_token4] = ACTIONS(2148), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2150), + [sym__newline] = ACTIONS(2194), + [anon_sym_SEMI] = ACTIONS(2194), + [anon_sym_PIPE] = ACTIONS(2194), + [anon_sym_err_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_GT_PIPE] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2194), + [anon_sym_LPAREN] = ACTIONS(2190), + [anon_sym_RPAREN] = ACTIONS(2194), + [anon_sym_DOLLAR] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(2194), + [anon_sym_DASH2] = ACTIONS(2190), + [anon_sym_LBRACE] = ACTIONS(2194), + [anon_sym_RBRACE] = ACTIONS(2194), + [anon_sym_DOT_DOT] = ACTIONS(2190), + [anon_sym_LPAREN2] = ACTIONS(2192), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2194), + [anon_sym_DOT_DOT_LT] = ACTIONS(2194), + [anon_sym_null] = ACTIONS(2194), + [anon_sym_true] = ACTIONS(2194), + [anon_sym_false] = ACTIONS(2194), + [aux_sym__val_number_decimal_token1] = ACTIONS(2190), + [aux_sym__val_number_decimal_token2] = ACTIONS(2194), + [aux_sym__val_number_decimal_token3] = ACTIONS(2194), + [aux_sym__val_number_decimal_token4] = ACTIONS(2194), + [aux_sym__val_number_token1] = ACTIONS(2194), + [aux_sym__val_number_token2] = ACTIONS(2194), + [aux_sym__val_number_token3] = ACTIONS(2194), + [aux_sym__val_number_token4] = ACTIONS(2194), + [aux_sym__val_number_token5] = ACTIONS(2194), + [aux_sym__val_number_token6] = ACTIONS(2194), + [anon_sym_0b] = ACTIONS(2190), + [anon_sym_0o] = ACTIONS(2190), + [anon_sym_0x] = ACTIONS(2190), + [sym_val_date] = ACTIONS(2194), + [anon_sym_DQUOTE] = ACTIONS(2194), + [sym__str_single_quotes] = ACTIONS(2194), + [sym__str_back_ticks] = ACTIONS(2194), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2194), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2194), + [anon_sym_err_GT] = ACTIONS(2190), + [anon_sym_out_GT] = ACTIONS(2190), + [anon_sym_e_GT] = ACTIONS(2190), + [anon_sym_o_GT] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT] = ACTIONS(2190), + [anon_sym_err_GT_GT] = ACTIONS(2194), + [anon_sym_out_GT_GT] = ACTIONS(2194), + [anon_sym_e_GT_GT] = ACTIONS(2194), + [anon_sym_o_GT_GT] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2194), + [aux_sym_unquoted_token1] = ACTIONS(2190), + [aux_sym_unquoted_token2] = ACTIONS(2196), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2194), }, [1632] = { [sym_comment] = STATE(1632), - [sym__newline] = ACTIONS(1757), - [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_RPAREN] = ACTIONS(1757), - [anon_sym_GT2] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1757), - [anon_sym_in2] = ACTIONS(1757), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_STAR2] = ACTIONS(1755), - [anon_sym_and2] = ACTIONS(1757), - [anon_sym_xor2] = ACTIONS(1757), - [anon_sym_or2] = ACTIONS(1757), - [anon_sym_not_DASHin2] = ACTIONS(1757), - [anon_sym_starts_DASHwith2] = ACTIONS(1757), - [anon_sym_ends_DASHwith2] = ACTIONS(1757), - [anon_sym_EQ_EQ2] = ACTIONS(1757), - [anon_sym_BANG_EQ2] = ACTIONS(1757), - [anon_sym_LT2] = ACTIONS(1755), - [anon_sym_LT_EQ2] = ACTIONS(1757), - [anon_sym_GT_EQ2] = ACTIONS(1757), - [anon_sym_EQ_TILDE2] = ACTIONS(1757), - [anon_sym_BANG_TILDE2] = ACTIONS(1757), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_STAR_STAR2] = ACTIONS(1757), - [anon_sym_PLUS_PLUS2] = ACTIONS(1757), - [anon_sym_SLASH2] = ACTIONS(1755), - [anon_sym_mod2] = ACTIONS(1757), - [anon_sym_SLASH_SLASH2] = ACTIONS(1757), - [anon_sym_PLUS2] = ACTIONS(1755), - [anon_sym_bit_DASHshl2] = ACTIONS(1757), - [anon_sym_bit_DASHshr2] = ACTIONS(1757), - [anon_sym_bit_DASHand2] = ACTIONS(1757), - [anon_sym_bit_DASHxor2] = ACTIONS(1757), - [anon_sym_bit_DASHor2] = ACTIONS(1757), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [anon_sym_err_GT] = ACTIONS(1755), - [anon_sym_out_GT] = ACTIONS(1755), - [anon_sym_e_GT] = ACTIONS(1755), - [anon_sym_o_GT] = ACTIONS(1755), - [anon_sym_err_PLUSout_GT] = ACTIONS(1755), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), - [anon_sym_o_PLUSe_GT] = ACTIONS(1755), - [anon_sym_e_PLUSo_GT] = ACTIONS(1755), - [anon_sym_err_GT_GT] = ACTIONS(1757), - [anon_sym_out_GT_GT] = ACTIONS(1757), - [anon_sym_e_GT_GT] = ACTIONS(1757), - [anon_sym_o_GT_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), - [aux_sym_unquoted_token2] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_RPAREN] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1703), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_DOT_DOT] = ACTIONS(1701), + [anon_sym_DOT] = ACTIONS(4918), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(4920), + [anon_sym_null] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1703), + [aux_sym__val_number_token5] = ACTIONS(1703), + [aux_sym__val_number_token6] = ACTIONS(1703), + [anon_sym_0b] = ACTIONS(1701), + [anon_sym_0o] = ACTIONS(1701), + [anon_sym_0x] = ACTIONS(1701), + [sym_val_date] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [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(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token1] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1703), }, [1633] = { [sym_comment] = STATE(1633), - [sym__newline] = ACTIONS(4960), - [anon_sym_SEMI] = ACTIONS(4960), - [anon_sym_PIPE] = ACTIONS(4960), - [anon_sym_err_GT_PIPE] = ACTIONS(4960), - [anon_sym_out_GT_PIPE] = ACTIONS(4960), - [anon_sym_e_GT_PIPE] = ACTIONS(4960), - [anon_sym_o_GT_PIPE] = ACTIONS(4960), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4960), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4960), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4960), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4960), - [anon_sym_LBRACK] = ACTIONS(4960), - [anon_sym_LPAREN] = ACTIONS(4962), - [anon_sym_RPAREN] = ACTIONS(4960), - [anon_sym_DOLLAR] = ACTIONS(4962), - [anon_sym_DASH_DASH] = ACTIONS(4960), - [anon_sym_DASH2] = ACTIONS(4962), - [anon_sym_LBRACE] = ACTIONS(4960), - [anon_sym_RBRACE] = ACTIONS(4960), - [anon_sym_DOT_DOT] = ACTIONS(4962), - [anon_sym_LPAREN2] = ACTIONS(4960), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4960), - [anon_sym_DOT_DOT_LT] = ACTIONS(4960), - [anon_sym_null] = ACTIONS(4960), - [anon_sym_true] = ACTIONS(4960), - [anon_sym_false] = ACTIONS(4960), - [aux_sym__val_number_decimal_token1] = ACTIONS(4962), - [aux_sym__val_number_decimal_token2] = ACTIONS(4960), - [aux_sym__val_number_decimal_token3] = ACTIONS(4960), - [aux_sym__val_number_decimal_token4] = ACTIONS(4960), - [aux_sym__val_number_token1] = ACTIONS(4960), - [aux_sym__val_number_token2] = ACTIONS(4960), - [aux_sym__val_number_token3] = ACTIONS(4960), - [aux_sym__val_number_token4] = ACTIONS(4960), - [aux_sym__val_number_token5] = ACTIONS(4960), - [aux_sym__val_number_token6] = ACTIONS(4960), - [anon_sym_0b] = ACTIONS(4962), - [anon_sym_0o] = ACTIONS(4962), - [anon_sym_0x] = ACTIONS(4962), - [sym_val_date] = ACTIONS(4960), - [anon_sym_DQUOTE] = ACTIONS(4960), - [sym__str_single_quotes] = ACTIONS(4960), - [sym__str_back_ticks] = ACTIONS(4960), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4960), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4960), - [anon_sym_err_GT] = ACTIONS(4962), - [anon_sym_out_GT] = ACTIONS(4962), - [anon_sym_e_GT] = ACTIONS(4962), - [anon_sym_o_GT] = ACTIONS(4962), - [anon_sym_err_PLUSout_GT] = ACTIONS(4962), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4962), - [anon_sym_o_PLUSe_GT] = ACTIONS(4962), - [anon_sym_e_PLUSo_GT] = ACTIONS(4962), - [anon_sym_err_GT_GT] = ACTIONS(4960), - [anon_sym_out_GT_GT] = ACTIONS(4960), - [anon_sym_e_GT_GT] = ACTIONS(4960), - [anon_sym_o_GT_GT] = ACTIONS(4960), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4960), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4960), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4960), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4960), - [aux_sym_unquoted_token1] = ACTIONS(4962), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4960), + [sym__newline] = ACTIONS(4922), + [anon_sym_SEMI] = ACTIONS(4922), + [anon_sym_PIPE] = ACTIONS(4922), + [anon_sym_err_GT_PIPE] = ACTIONS(4922), + [anon_sym_out_GT_PIPE] = ACTIONS(4922), + [anon_sym_e_GT_PIPE] = ACTIONS(4922), + [anon_sym_o_GT_PIPE] = ACTIONS(4922), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4922), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4922), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4922), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4922), + [anon_sym_LBRACK] = ACTIONS(4922), + [anon_sym_LPAREN] = ACTIONS(4922), + [anon_sym_RPAREN] = ACTIONS(4922), + [anon_sym_DOLLAR] = ACTIONS(4924), + [anon_sym_DASH_DASH] = ACTIONS(4922), + [anon_sym_DASH2] = ACTIONS(4924), + [anon_sym_LBRACE] = ACTIONS(4922), + [anon_sym_DOT_DOT] = ACTIONS(4924), + [anon_sym_DOT_DOT2] = ACTIONS(4806), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4924), + [anon_sym_DOT_DOT_LT] = ACTIONS(4924), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4808), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4808), + [anon_sym_null] = ACTIONS(4922), + [anon_sym_true] = ACTIONS(4922), + [anon_sym_false] = ACTIONS(4922), + [aux_sym__val_number_decimal_token1] = ACTIONS(4924), + [aux_sym__val_number_decimal_token2] = ACTIONS(4922), + [aux_sym__val_number_decimal_token3] = ACTIONS(4922), + [aux_sym__val_number_decimal_token4] = ACTIONS(4922), + [aux_sym__val_number_token1] = ACTIONS(4922), + [aux_sym__val_number_token2] = ACTIONS(4922), + [aux_sym__val_number_token3] = ACTIONS(4922), + [aux_sym__val_number_token4] = ACTIONS(4922), + [aux_sym__val_number_token5] = ACTIONS(4922), + [aux_sym__val_number_token6] = ACTIONS(4922), + [anon_sym_0b] = ACTIONS(4924), + [anon_sym_0o] = ACTIONS(4924), + [anon_sym_0x] = ACTIONS(4924), + [sym_val_date] = ACTIONS(4922), + [anon_sym_DQUOTE] = ACTIONS(4922), + [sym__str_single_quotes] = ACTIONS(4922), + [sym__str_back_ticks] = ACTIONS(4922), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4922), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4922), + [anon_sym_err_GT] = ACTIONS(4924), + [anon_sym_out_GT] = ACTIONS(4924), + [anon_sym_e_GT] = ACTIONS(4924), + [anon_sym_o_GT] = ACTIONS(4924), + [anon_sym_err_PLUSout_GT] = ACTIONS(4924), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4924), + [anon_sym_o_PLUSe_GT] = ACTIONS(4924), + [anon_sym_e_PLUSo_GT] = ACTIONS(4924), + [anon_sym_err_GT_GT] = ACTIONS(4922), + [anon_sym_out_GT_GT] = ACTIONS(4922), + [anon_sym_e_GT_GT] = ACTIONS(4922), + [anon_sym_o_GT_GT] = ACTIONS(4922), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4922), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4922), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4922), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4922), + [aux_sym_unquoted_token1] = ACTIONS(4924), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4922), }, [1634] = { [sym_comment] = STATE(1634), - [ts_builtin_sym_end] = 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(1802), - [anon_sym_DOLLAR] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1810), - [anon_sym_DOT_DOT_LT] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1810), - [anon_sym_false] = ACTIONS(1810), - [aux_sym__val_number_decimal_token1] = ACTIONS(1802), - [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), - [aux_sym__val_number_token4] = ACTIONS(1810), - [aux_sym__val_number_token5] = ACTIONS(1810), - [aux_sym__val_number_token6] = ACTIONS(1810), - [anon_sym_0b] = ACTIONS(1802), - [anon_sym_0o] = ACTIONS(1802), - [anon_sym_0x] = ACTIONS(1802), - [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(1802), - [anon_sym_out_GT] = ACTIONS(1802), - [anon_sym_e_GT] = ACTIONS(1802), - [anon_sym_o_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT] = ACTIONS(1802), - [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(1802), - [aux_sym_unquoted_token2] = ACTIONS(1477), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1810), + [ts_builtin_sym_end] = ACTIONS(1703), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1703), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_DOT_DOT] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(4853), + [anon_sym_null] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1703), + [aux_sym__val_number_token5] = ACTIONS(1703), + [aux_sym__val_number_token6] = ACTIONS(1703), + [anon_sym_0b] = ACTIONS(1701), + [anon_sym_0o] = ACTIONS(1701), + [anon_sym_0x] = ACTIONS(1701), + [sym_val_date] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [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(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token1] = ACTIONS(1701), + [aux_sym_unquoted_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1703), }, [1635] = { + [sym__expr_parenthesized_immediate] = STATE(7419), [sym_comment] = STATE(1635), - [sym__newline] = ACTIONS(2146), - [anon_sym_SEMI] = ACTIONS(2146), - [anon_sym_PIPE] = ACTIONS(2146), - [anon_sym_err_GT_PIPE] = ACTIONS(2146), - [anon_sym_out_GT_PIPE] = ACTIONS(2146), - [anon_sym_e_GT_PIPE] = ACTIONS(2146), - [anon_sym_o_GT_PIPE] = ACTIONS(2146), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2146), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2146), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2146), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2146), - [anon_sym_LBRACK] = ACTIONS(2146), - [anon_sym_LPAREN] = ACTIONS(2146), - [anon_sym_RPAREN] = ACTIONS(2146), - [anon_sym_DOLLAR] = ACTIONS(2144), - [anon_sym_DASH_DASH] = ACTIONS(2144), - [anon_sym_DASH2] = ACTIONS(2144), - [anon_sym_LBRACE] = ACTIONS(2146), - [anon_sym_RBRACE] = ACTIONS(2146), - [anon_sym_DOT_DOT] = ACTIONS(2144), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2144), - [anon_sym_DOT_DOT_LT] = ACTIONS(2144), - [anon_sym_null] = ACTIONS(2144), - [anon_sym_true] = ACTIONS(2144), - [anon_sym_false] = ACTIONS(2144), - [aux_sym__val_number_decimal_token1] = ACTIONS(2144), - [aux_sym__val_number_decimal_token2] = ACTIONS(2144), - [aux_sym__val_number_decimal_token3] = ACTIONS(2144), - [aux_sym__val_number_decimal_token4] = ACTIONS(2144), - [aux_sym__val_number_token1] = ACTIONS(2144), - [aux_sym__val_number_token2] = ACTIONS(2144), - [aux_sym__val_number_token3] = ACTIONS(2144), - [aux_sym__val_number_token4] = ACTIONS(2144), - [aux_sym__val_number_token5] = ACTIONS(2144), - [aux_sym__val_number_token6] = ACTIONS(2144), - [anon_sym_0b] = ACTIONS(2144), - [anon_sym_0o] = ACTIONS(2144), - [anon_sym_0x] = ACTIONS(2144), - [sym_val_date] = ACTIONS(2144), - [anon_sym_DQUOTE] = ACTIONS(2146), - [sym__str_single_quotes] = ACTIONS(2146), - [sym__str_back_ticks] = ACTIONS(2146), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2146), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2146), - [anon_sym_err_GT] = ACTIONS(2144), - [anon_sym_out_GT] = ACTIONS(2144), - [anon_sym_e_GT] = ACTIONS(2144), - [anon_sym_o_GT] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT] = ACTIONS(2144), - [anon_sym_err_GT_GT] = ACTIONS(2144), - [anon_sym_out_GT_GT] = ACTIONS(2144), - [anon_sym_e_GT_GT] = ACTIONS(2144), - [anon_sym_o_GT_GT] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2144), - [aux_sym_unquoted_token1] = ACTIONS(2144), - [aux_sym_unquoted_token4] = ACTIONS(2142), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2146), + [sym__newline] = ACTIONS(4926), + [anon_sym_SEMI] = ACTIONS(4926), + [anon_sym_PIPE] = ACTIONS(4926), + [anon_sym_err_GT_PIPE] = ACTIONS(4926), + [anon_sym_out_GT_PIPE] = ACTIONS(4926), + [anon_sym_e_GT_PIPE] = ACTIONS(4926), + [anon_sym_o_GT_PIPE] = ACTIONS(4926), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4926), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4926), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4926), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4926), + [anon_sym_LBRACK] = ACTIONS(4926), + [anon_sym_LPAREN] = ACTIONS(4928), + [anon_sym_RPAREN] = ACTIONS(4926), + [anon_sym_DOLLAR] = ACTIONS(4928), + [anon_sym_DASH_DASH] = ACTIONS(4926), + [anon_sym_DASH2] = ACTIONS(4928), + [anon_sym_LBRACE] = ACTIONS(4926), + [anon_sym_RBRACE] = ACTIONS(4926), + [anon_sym_DOT_DOT] = ACTIONS(4928), + [anon_sym_LPAREN2] = ACTIONS(4452), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4926), + [anon_sym_DOT_DOT_LT] = ACTIONS(4926), + [anon_sym_null] = ACTIONS(4926), + [anon_sym_true] = ACTIONS(4926), + [anon_sym_false] = ACTIONS(4926), + [aux_sym__val_number_decimal_token1] = ACTIONS(4928), + [aux_sym__val_number_decimal_token2] = ACTIONS(4926), + [aux_sym__val_number_decimal_token3] = ACTIONS(4926), + [aux_sym__val_number_decimal_token4] = ACTIONS(4926), + [aux_sym__val_number_token1] = ACTIONS(4926), + [aux_sym__val_number_token2] = ACTIONS(4926), + [aux_sym__val_number_token3] = ACTIONS(4926), + [aux_sym__val_number_token4] = ACTIONS(4926), + [aux_sym__val_number_token5] = ACTIONS(4926), + [aux_sym__val_number_token6] = ACTIONS(4926), + [anon_sym_0b] = ACTIONS(4928), + [anon_sym_0o] = ACTIONS(4928), + [anon_sym_0x] = ACTIONS(4928), + [sym_val_date] = ACTIONS(4926), + [anon_sym_DQUOTE] = ACTIONS(4926), + [sym__str_single_quotes] = ACTIONS(4926), + [sym__str_back_ticks] = ACTIONS(4926), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4926), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4926), + [anon_sym_err_GT] = ACTIONS(4928), + [anon_sym_out_GT] = ACTIONS(4928), + [anon_sym_e_GT] = ACTIONS(4928), + [anon_sym_o_GT] = ACTIONS(4928), + [anon_sym_err_PLUSout_GT] = ACTIONS(4928), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4928), + [anon_sym_o_PLUSe_GT] = ACTIONS(4928), + [anon_sym_e_PLUSo_GT] = ACTIONS(4928), + [anon_sym_err_GT_GT] = ACTIONS(4926), + [anon_sym_out_GT_GT] = ACTIONS(4926), + [anon_sym_e_GT_GT] = ACTIONS(4926), + [anon_sym_o_GT_GT] = ACTIONS(4926), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4926), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4926), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4926), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4926), + [aux_sym_unquoted_token1] = ACTIONS(4928), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4926), }, [1636] = { [sym_comment] = STATE(1636), - [ts_builtin_sym_end] = ACTIONS(1757), - [sym__newline] = ACTIONS(1757), - [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(1755), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT] = ACTIONS(1757), - [anon_sym_null] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = 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_err_GT] = ACTIONS(1755), - [anon_sym_out_GT] = ACTIONS(1755), - [anon_sym_e_GT] = ACTIONS(1755), - [anon_sym_o_GT] = ACTIONS(1755), - [anon_sym_err_PLUSout_GT] = ACTIONS(1755), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), - [anon_sym_o_PLUSe_GT] = ACTIONS(1755), - [anon_sym_e_PLUSo_GT] = ACTIONS(1755), - [anon_sym_err_GT_GT] = ACTIONS(1757), - [anon_sym_out_GT_GT] = ACTIONS(1757), - [anon_sym_e_GT_GT] = ACTIONS(1757), - [anon_sym_o_GT_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), - [aux_sym_unquoted_token1] = ACTIONS(1755), - [aux_sym_unquoted_token2] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1757), + [ts_builtin_sym_end] = ACTIONS(1768), + [sym__newline] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_err_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_GT_PIPE] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1768), + [anon_sym_GT2] = ACTIONS(1766), + [anon_sym_DASH2] = ACTIONS(1768), + [anon_sym_in2] = ACTIONS(1768), + [anon_sym_STAR2] = ACTIONS(1766), + [anon_sym_and2] = ACTIONS(1768), + [anon_sym_xor2] = ACTIONS(1768), + [anon_sym_or2] = ACTIONS(1768), + [anon_sym_not_DASHin2] = ACTIONS(1768), + [anon_sym_has2] = ACTIONS(1768), + [anon_sym_not_DASHhas2] = ACTIONS(1768), + [anon_sym_starts_DASHwith2] = ACTIONS(1768), + [anon_sym_ends_DASHwith2] = ACTIONS(1768), + [anon_sym_EQ_EQ2] = ACTIONS(1768), + [anon_sym_BANG_EQ2] = ACTIONS(1768), + [anon_sym_LT2] = ACTIONS(1766), + [anon_sym_LT_EQ2] = ACTIONS(1768), + [anon_sym_GT_EQ2] = ACTIONS(1768), + [anon_sym_EQ_TILDE2] = ACTIONS(1768), + [anon_sym_BANG_TILDE2] = ACTIONS(1768), + [anon_sym_LPAREN2] = ACTIONS(1768), + [anon_sym_STAR_STAR2] = ACTIONS(1768), + [anon_sym_PLUS_PLUS2] = ACTIONS(1768), + [anon_sym_SLASH2] = ACTIONS(1766), + [anon_sym_mod2] = ACTIONS(1768), + [anon_sym_SLASH_SLASH2] = ACTIONS(1768), + [anon_sym_PLUS2] = ACTIONS(1766), + [anon_sym_bit_DASHshl2] = ACTIONS(1768), + [anon_sym_bit_DASHshr2] = ACTIONS(1768), + [anon_sym_bit_DASHand2] = ACTIONS(1768), + [anon_sym_bit_DASHxor2] = ACTIONS(1768), + [anon_sym_bit_DASHor2] = ACTIONS(1768), + [anon_sym_DOT_DOT2] = ACTIONS(1766), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1768), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1768), + [aux_sym__immediate_decimal_token2] = ACTIONS(4930), + [anon_sym_err_GT] = ACTIONS(1766), + [anon_sym_out_GT] = ACTIONS(1766), + [anon_sym_e_GT] = ACTIONS(1766), + [anon_sym_o_GT] = ACTIONS(1766), + [anon_sym_err_PLUSout_GT] = ACTIONS(1766), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1766), + [anon_sym_o_PLUSe_GT] = ACTIONS(1766), + [anon_sym_e_PLUSo_GT] = ACTIONS(1766), + [anon_sym_err_GT_GT] = ACTIONS(1768), + [anon_sym_out_GT_GT] = ACTIONS(1768), + [anon_sym_e_GT_GT] = ACTIONS(1768), + [anon_sym_o_GT_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1768), + [aux_sym_unquoted_token2] = ACTIONS(1766), + [anon_sym_POUND] = ACTIONS(247), }, [1637] = { [sym_comment] = STATE(1637), - [sym__newline] = ACTIONS(2150), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_err_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_GT_PIPE] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_LPAREN] = ACTIONS(2150), - [anon_sym_RPAREN] = ACTIONS(2150), - [anon_sym_DOLLAR] = ACTIONS(2148), - [anon_sym_DASH_DASH] = ACTIONS(2148), - [anon_sym_DASH2] = ACTIONS(2148), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_DOT_DOT] = ACTIONS(2148), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2148), - [anon_sym_DOT_DOT_LT] = ACTIONS(2148), - [anon_sym_null] = ACTIONS(2148), - [anon_sym_true] = ACTIONS(2148), - [anon_sym_false] = ACTIONS(2148), - [aux_sym__val_number_decimal_token1] = ACTIONS(2148), - [aux_sym__val_number_decimal_token2] = ACTIONS(2148), - [aux_sym__val_number_decimal_token3] = ACTIONS(2148), - [aux_sym__val_number_decimal_token4] = ACTIONS(2148), - [aux_sym__val_number_token1] = ACTIONS(2148), - [aux_sym__val_number_token2] = ACTIONS(2148), - [aux_sym__val_number_token3] = ACTIONS(2148), - [aux_sym__val_number_token4] = ACTIONS(2148), - [aux_sym__val_number_token5] = ACTIONS(2148), - [aux_sym__val_number_token6] = ACTIONS(2148), - [anon_sym_0b] = ACTIONS(2148), - [anon_sym_0o] = ACTIONS(2148), - [anon_sym_0x] = ACTIONS(2148), - [sym_val_date] = ACTIONS(2148), - [anon_sym_DQUOTE] = ACTIONS(2150), - [sym__str_single_quotes] = ACTIONS(2150), - [sym__str_back_ticks] = ACTIONS(2150), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2150), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2150), - [anon_sym_err_GT] = ACTIONS(2148), - [anon_sym_out_GT] = ACTIONS(2148), - [anon_sym_e_GT] = ACTIONS(2148), - [anon_sym_o_GT] = ACTIONS(2148), - [anon_sym_err_PLUSout_GT] = ACTIONS(2148), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2148), - [anon_sym_o_PLUSe_GT] = ACTIONS(2148), - [anon_sym_e_PLUSo_GT] = ACTIONS(2148), - [anon_sym_err_GT_GT] = ACTIONS(2148), - [anon_sym_out_GT_GT] = ACTIONS(2148), - [anon_sym_e_GT_GT] = ACTIONS(2148), - [anon_sym_o_GT_GT] = ACTIONS(2148), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2148), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2148), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2148), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2148), - [aux_sym_unquoted_token1] = ACTIONS(2148), - [aux_sym_unquoted_token4] = ACTIONS(2148), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2150), + [ts_builtin_sym_end] = ACTIONS(2049), + [sym__newline] = ACTIONS(2049), + [anon_sym_SEMI] = ACTIONS(2049), + [anon_sym_PIPE] = ACTIONS(2049), + [anon_sym_err_GT_PIPE] = ACTIONS(2049), + [anon_sym_out_GT_PIPE] = ACTIONS(2049), + [anon_sym_e_GT_PIPE] = ACTIONS(2049), + [anon_sym_o_GT_PIPE] = ACTIONS(2049), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2049), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2049), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2049), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(2049), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_DOLLAR] = ACTIONS(2043), + [anon_sym_DASH_DASH] = ACTIONS(2049), + [anon_sym_DASH2] = ACTIONS(2043), + [anon_sym_LBRACE] = ACTIONS(2049), + [anon_sym_DOT_DOT] = ACTIONS(2043), + [anon_sym_DOT_DOT2] = ACTIONS(4932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2043), + [anon_sym_DOT_DOT_LT] = ACTIONS(2043), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4934), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4934), + [anon_sym_null] = ACTIONS(2049), + [anon_sym_true] = ACTIONS(2049), + [anon_sym_false] = ACTIONS(2049), + [aux_sym__val_number_decimal_token1] = ACTIONS(2043), + [aux_sym__val_number_decimal_token2] = ACTIONS(2049), + [aux_sym__val_number_decimal_token3] = ACTIONS(2049), + [aux_sym__val_number_decimal_token4] = ACTIONS(2049), + [aux_sym__val_number_token1] = ACTIONS(2049), + [aux_sym__val_number_token2] = ACTIONS(2049), + [aux_sym__val_number_token3] = ACTIONS(2049), + [aux_sym__val_number_token4] = ACTIONS(2049), + [aux_sym__val_number_token5] = ACTIONS(2049), + [aux_sym__val_number_token6] = ACTIONS(2049), + [anon_sym_0b] = ACTIONS(2043), + [anon_sym_0o] = ACTIONS(2043), + [anon_sym_0x] = ACTIONS(2043), + [sym_val_date] = ACTIONS(2049), + [anon_sym_DQUOTE] = ACTIONS(2049), + [sym__str_single_quotes] = ACTIONS(2049), + [sym__str_back_ticks] = ACTIONS(2049), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2049), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2049), + [anon_sym_err_GT] = ACTIONS(2043), + [anon_sym_out_GT] = ACTIONS(2043), + [anon_sym_e_GT] = ACTIONS(2043), + [anon_sym_o_GT] = ACTIONS(2043), + [anon_sym_err_PLUSout_GT] = ACTIONS(2043), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2043), + [anon_sym_o_PLUSe_GT] = ACTIONS(2043), + [anon_sym_e_PLUSo_GT] = ACTIONS(2043), + [anon_sym_err_GT_GT] = ACTIONS(2049), + [anon_sym_out_GT_GT] = ACTIONS(2049), + [anon_sym_e_GT_GT] = ACTIONS(2049), + [anon_sym_o_GT_GT] = ACTIONS(2049), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2049), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2049), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2049), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2049), + [aux_sym_unquoted_token1] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2049), }, [1638] = { + [sym_path] = STATE(1811), [sym_comment] = STATE(1638), - [sym__newline] = ACTIONS(2234), - [anon_sym_SEMI] = ACTIONS(2234), - [anon_sym_PIPE] = ACTIONS(2234), - [anon_sym_err_GT_PIPE] = ACTIONS(2234), - [anon_sym_out_GT_PIPE] = ACTIONS(2234), - [anon_sym_e_GT_PIPE] = ACTIONS(2234), - [anon_sym_o_GT_PIPE] = ACTIONS(2234), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2234), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2234), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2234), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2234), - [anon_sym_LBRACK] = ACTIONS(2230), - [anon_sym_LPAREN] = ACTIONS(2234), - [anon_sym_RPAREN] = ACTIONS(2234), - [anon_sym_DOLLAR] = ACTIONS(2230), - [anon_sym_DASH_DASH] = ACTIONS(2234), - [anon_sym_DASH2] = ACTIONS(2230), - [anon_sym_LBRACE] = ACTIONS(2234), - [anon_sym_RBRACE] = ACTIONS(2234), - [anon_sym_DOT_DOT] = ACTIONS(2230), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2234), - [anon_sym_DOT_DOT_LT] = ACTIONS(2234), - [anon_sym_null] = ACTIONS(2234), - [anon_sym_true] = ACTIONS(2234), - [anon_sym_false] = ACTIONS(2234), - [aux_sym__val_number_decimal_token1] = ACTIONS(2230), - [aux_sym__val_number_decimal_token2] = ACTIONS(2234), - [aux_sym__val_number_decimal_token3] = ACTIONS(2234), - [aux_sym__val_number_decimal_token4] = ACTIONS(2234), - [aux_sym__val_number_token1] = ACTIONS(2234), - [aux_sym__val_number_token2] = ACTIONS(2234), - [aux_sym__val_number_token3] = ACTIONS(2234), - [aux_sym__val_number_token4] = ACTIONS(2234), - [aux_sym__val_number_token5] = ACTIONS(2234), - [aux_sym__val_number_token6] = ACTIONS(2234), - [anon_sym_0b] = ACTIONS(2230), - [anon_sym_0o] = ACTIONS(2230), - [anon_sym_0x] = ACTIONS(2230), - [anon_sym_LBRACK2] = ACTIONS(4964), - [sym_val_date] = ACTIONS(2234), - [anon_sym_DQUOTE] = ACTIONS(2234), - [sym__str_single_quotes] = ACTIONS(2234), - [sym__str_back_ticks] = ACTIONS(2234), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2234), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2234), - [anon_sym_err_GT] = ACTIONS(2230), - [anon_sym_out_GT] = ACTIONS(2230), - [anon_sym_e_GT] = ACTIONS(2230), - [anon_sym_o_GT] = ACTIONS(2230), - [anon_sym_err_PLUSout_GT] = ACTIONS(2230), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2230), - [anon_sym_o_PLUSe_GT] = ACTIONS(2230), - [anon_sym_e_PLUSo_GT] = ACTIONS(2230), - [anon_sym_err_GT_GT] = ACTIONS(2234), - [anon_sym_out_GT_GT] = ACTIONS(2234), - [anon_sym_e_GT_GT] = ACTIONS(2234), - [anon_sym_o_GT_GT] = ACTIONS(2234), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2234), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2234), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2234), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2234), - [aux_sym_unquoted_token1] = ACTIONS(2230), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2234), + [aux_sym_cell_path_repeat1] = STATE(1610), + [ts_builtin_sym_end] = ACTIONS(944), + [sym__newline] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(944), + [anon_sym_err_GT_PIPE] = ACTIONS(944), + [anon_sym_out_GT_PIPE] = ACTIONS(944), + [anon_sym_e_GT_PIPE] = ACTIONS(944), + [anon_sym_o_GT_PIPE] = ACTIONS(944), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(944), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(944), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(944), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(944), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LPAREN] = ACTIONS(944), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_DASH_DASH] = ACTIONS(944), + [anon_sym_DASH2] = ACTIONS(942), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_DOT_DOT] = ACTIONS(942), + [anon_sym_DOT_DOT_EQ] = ACTIONS(944), + [anon_sym_DOT_DOT_LT] = ACTIONS(944), + [anon_sym_null] = ACTIONS(944), + [anon_sym_true] = ACTIONS(944), + [anon_sym_false] = ACTIONS(944), + [aux_sym__val_number_decimal_token1] = ACTIONS(942), + [aux_sym__val_number_decimal_token2] = ACTIONS(944), + [aux_sym__val_number_decimal_token3] = ACTIONS(944), + [aux_sym__val_number_decimal_token4] = ACTIONS(944), + [aux_sym__val_number_token1] = ACTIONS(944), + [aux_sym__val_number_token2] = ACTIONS(944), + [aux_sym__val_number_token3] = ACTIONS(944), + [aux_sym__val_number_token4] = ACTIONS(944), + [aux_sym__val_number_token5] = ACTIONS(944), + [aux_sym__val_number_token6] = ACTIONS(944), + [anon_sym_0b] = ACTIONS(942), + [anon_sym_0o] = ACTIONS(942), + [anon_sym_0x] = ACTIONS(942), + [sym_val_date] = ACTIONS(944), + [anon_sym_DQUOTE] = ACTIONS(944), + [sym__str_single_quotes] = ACTIONS(944), + [sym__str_back_ticks] = ACTIONS(944), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(944), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(944), + [anon_sym_DOT2] = ACTIONS(4810), + [anon_sym_err_GT] = ACTIONS(942), + [anon_sym_out_GT] = ACTIONS(942), + [anon_sym_e_GT] = ACTIONS(942), + [anon_sym_o_GT] = ACTIONS(942), + [anon_sym_err_PLUSout_GT] = ACTIONS(942), + [anon_sym_out_PLUSerr_GT] = ACTIONS(942), + [anon_sym_o_PLUSe_GT] = ACTIONS(942), + [anon_sym_e_PLUSo_GT] = ACTIONS(942), + [anon_sym_err_GT_GT] = ACTIONS(944), + [anon_sym_out_GT_GT] = ACTIONS(944), + [anon_sym_e_GT_GT] = ACTIONS(944), + [anon_sym_o_GT_GT] = ACTIONS(944), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(944), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(944), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(944), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(944), + [aux_sym_unquoted_token1] = ACTIONS(942), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(944), }, [1639] = { [sym_comment] = STATE(1639), - [ts_builtin_sym_end] = ACTIONS(1757), - [sym__newline] = ACTIONS(1757), - [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_GT2] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1757), - [anon_sym_in2] = ACTIONS(1757), - [anon_sym_STAR2] = ACTIONS(1755), - [anon_sym_and2] = ACTIONS(1757), - [anon_sym_xor2] = ACTIONS(1757), - [anon_sym_or2] = ACTIONS(1757), - [anon_sym_not_DASHin2] = ACTIONS(1757), - [anon_sym_starts_DASHwith2] = ACTIONS(1757), - [anon_sym_ends_DASHwith2] = ACTIONS(1757), - [anon_sym_EQ_EQ2] = ACTIONS(1757), - [anon_sym_BANG_EQ2] = ACTIONS(1757), - [anon_sym_LT2] = ACTIONS(1755), - [anon_sym_LT_EQ2] = ACTIONS(1757), - [anon_sym_GT_EQ2] = ACTIONS(1757), - [anon_sym_EQ_TILDE2] = ACTIONS(1757), - [anon_sym_BANG_TILDE2] = ACTIONS(1757), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_STAR_STAR2] = ACTIONS(1757), - [anon_sym_PLUS_PLUS2] = ACTIONS(1757), - [anon_sym_SLASH2] = ACTIONS(1755), - [anon_sym_mod2] = ACTIONS(1757), - [anon_sym_SLASH_SLASH2] = ACTIONS(1757), - [anon_sym_PLUS2] = ACTIONS(1755), - [anon_sym_bit_DASHshl2] = ACTIONS(1757), - [anon_sym_bit_DASHshr2] = ACTIONS(1757), - [anon_sym_bit_DASHand2] = ACTIONS(1757), - [anon_sym_bit_DASHxor2] = ACTIONS(1757), - [anon_sym_bit_DASHor2] = ACTIONS(1757), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT] = ACTIONS(4966), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(4968), - [anon_sym_err_GT] = ACTIONS(1755), - [anon_sym_out_GT] = ACTIONS(1755), - [anon_sym_e_GT] = ACTIONS(1755), - [anon_sym_o_GT] = ACTIONS(1755), - [anon_sym_err_PLUSout_GT] = ACTIONS(1755), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), - [anon_sym_o_PLUSe_GT] = ACTIONS(1755), - [anon_sym_e_PLUSo_GT] = ACTIONS(1755), - [anon_sym_err_GT_GT] = ACTIONS(1757), - [anon_sym_out_GT_GT] = ACTIONS(1757), - [anon_sym_e_GT_GT] = ACTIONS(1757), - [anon_sym_o_GT_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), - [aux_sym_unquoted_token2] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(251), + [sym_long_flag_identifier] = ACTIONS(4936), + [sym__newline] = ACTIONS(4938), + [anon_sym_SEMI] = ACTIONS(4938), + [anon_sym_PIPE] = ACTIONS(4938), + [anon_sym_err_GT_PIPE] = ACTIONS(4938), + [anon_sym_out_GT_PIPE] = ACTIONS(4938), + [anon_sym_e_GT_PIPE] = ACTIONS(4938), + [anon_sym_o_GT_PIPE] = ACTIONS(4938), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4938), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4938), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4938), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4938), + [anon_sym_LBRACK] = ACTIONS(4938), + [anon_sym_LPAREN] = ACTIONS(4938), + [anon_sym_RPAREN] = ACTIONS(4938), + [anon_sym_DOLLAR] = ACTIONS(4940), + [anon_sym_DASH_DASH] = ACTIONS(4938), + [anon_sym_DASH2] = ACTIONS(4940), + [anon_sym_LBRACE] = ACTIONS(4938), + [anon_sym_RBRACE] = ACTIONS(4938), + [anon_sym_DOT_DOT] = ACTIONS(4940), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4938), + [anon_sym_DOT_DOT_LT] = ACTIONS(4938), + [anon_sym_null] = ACTIONS(4940), + [anon_sym_true] = ACTIONS(4940), + [anon_sym_false] = ACTIONS(4940), + [aux_sym__val_number_decimal_token1] = ACTIONS(4940), + [aux_sym__val_number_decimal_token2] = ACTIONS(4938), + [aux_sym__val_number_decimal_token3] = ACTIONS(4938), + [aux_sym__val_number_decimal_token4] = ACTIONS(4938), + [aux_sym__val_number_token1] = ACTIONS(4940), + [aux_sym__val_number_token2] = ACTIONS(4940), + [aux_sym__val_number_token3] = ACTIONS(4940), + [aux_sym__val_number_token4] = ACTIONS(4940), + [aux_sym__val_number_token5] = ACTIONS(4938), + [aux_sym__val_number_token6] = ACTIONS(4940), + [anon_sym_0b] = ACTIONS(4940), + [anon_sym_0o] = ACTIONS(4940), + [anon_sym_0x] = ACTIONS(4940), + [sym_val_date] = ACTIONS(4940), + [anon_sym_DQUOTE] = ACTIONS(4938), + [sym__str_single_quotes] = ACTIONS(4938), + [sym__str_back_ticks] = ACTIONS(4938), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4938), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4938), + [anon_sym_err_GT] = ACTIONS(4940), + [anon_sym_out_GT] = ACTIONS(4940), + [anon_sym_e_GT] = ACTIONS(4940), + [anon_sym_o_GT] = ACTIONS(4940), + [anon_sym_err_PLUSout_GT] = ACTIONS(4940), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4940), + [anon_sym_o_PLUSe_GT] = ACTIONS(4940), + [anon_sym_e_PLUSo_GT] = ACTIONS(4940), + [anon_sym_err_GT_GT] = ACTIONS(4938), + [anon_sym_out_GT_GT] = ACTIONS(4938), + [anon_sym_e_GT_GT] = ACTIONS(4938), + [anon_sym_o_GT_GT] = ACTIONS(4938), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4938), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4938), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4938), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4938), + [anon_sym_EQ2] = ACTIONS(4942), + [aux_sym_unquoted_token1] = ACTIONS(4940), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4938), }, [1640] = { + [sym_path] = STATE(1783), [sym_comment] = STATE(1640), - [ts_builtin_sym_end] = 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_DASH2] = ACTIONS(976), - [anon_sym_LBRACE] = ACTIONS(978), - [anon_sym_DOT_DOT] = ACTIONS(976), - [anon_sym_QMARK2] = ACTIONS(978), - [anon_sym_DOT_DOT_EQ] = ACTIONS(978), - [anon_sym_DOT_DOT_LT] = ACTIONS(978), - [anon_sym_null] = ACTIONS(978), - [anon_sym_true] = ACTIONS(978), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(978), - [aux_sym__val_number_token5] = ACTIONS(978), - [aux_sym__val_number_token6] = 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_DOT2] = 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), - [aux_sym_unquoted_token1] = ACTIONS(976), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(978), + [aux_sym_cell_path_repeat1] = STATE(1627), + [ts_builtin_sym_end] = ACTIONS(944), + [sym__newline] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(944), + [anon_sym_err_GT_PIPE] = ACTIONS(944), + [anon_sym_out_GT_PIPE] = ACTIONS(944), + [anon_sym_e_GT_PIPE] = ACTIONS(944), + [anon_sym_o_GT_PIPE] = ACTIONS(944), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(944), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(944), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(944), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(944), + [anon_sym_GT2] = ACTIONS(942), + [anon_sym_DASH2] = ACTIONS(944), + [anon_sym_in2] = ACTIONS(944), + [anon_sym_STAR2] = ACTIONS(942), + [anon_sym_and2] = ACTIONS(944), + [anon_sym_xor2] = ACTIONS(944), + [anon_sym_or2] = ACTIONS(944), + [anon_sym_not_DASHin2] = ACTIONS(944), + [anon_sym_has2] = ACTIONS(944), + [anon_sym_not_DASHhas2] = ACTIONS(944), + [anon_sym_starts_DASHwith2] = ACTIONS(944), + [anon_sym_ends_DASHwith2] = ACTIONS(944), + [anon_sym_EQ_EQ2] = ACTIONS(944), + [anon_sym_BANG_EQ2] = ACTIONS(944), + [anon_sym_LT2] = ACTIONS(942), + [anon_sym_LT_EQ2] = ACTIONS(944), + [anon_sym_GT_EQ2] = ACTIONS(944), + [anon_sym_EQ_TILDE2] = ACTIONS(944), + [anon_sym_BANG_TILDE2] = ACTIONS(944), + [anon_sym_STAR_STAR2] = ACTIONS(944), + [anon_sym_PLUS_PLUS2] = ACTIONS(944), + [anon_sym_SLASH2] = ACTIONS(942), + [anon_sym_mod2] = ACTIONS(944), + [anon_sym_SLASH_SLASH2] = ACTIONS(944), + [anon_sym_PLUS2] = ACTIONS(942), + [anon_sym_bit_DASHshl2] = ACTIONS(944), + [anon_sym_bit_DASHshr2] = ACTIONS(944), + [anon_sym_bit_DASHand2] = ACTIONS(944), + [anon_sym_bit_DASHxor2] = ACTIONS(944), + [anon_sym_bit_DASHor2] = ACTIONS(944), + [anon_sym_DOT_DOT2] = ACTIONS(942), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(944), + [anon_sym_DOT_DOT_LT2] = ACTIONS(944), + [anon_sym_DOT2] = ACTIONS(4837), + [anon_sym_err_GT] = ACTIONS(942), + [anon_sym_out_GT] = ACTIONS(942), + [anon_sym_e_GT] = ACTIONS(942), + [anon_sym_o_GT] = ACTIONS(942), + [anon_sym_err_PLUSout_GT] = ACTIONS(942), + [anon_sym_out_PLUSerr_GT] = ACTIONS(942), + [anon_sym_o_PLUSe_GT] = ACTIONS(942), + [anon_sym_e_PLUSo_GT] = ACTIONS(942), + [anon_sym_err_GT_GT] = ACTIONS(944), + [anon_sym_out_GT_GT] = ACTIONS(944), + [anon_sym_e_GT_GT] = ACTIONS(944), + [anon_sym_o_GT_GT] = ACTIONS(944), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(944), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(944), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(944), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(944), + [anon_sym_POUND] = ACTIONS(247), }, [1641] = { [sym_comment] = STATE(1641), - [sym__newline] = ACTIONS(1002), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_err_GT_PIPE] = ACTIONS(1002), - [anon_sym_out_GT_PIPE] = ACTIONS(1002), - [anon_sym_e_GT_PIPE] = ACTIONS(1002), - [anon_sym_o_GT_PIPE] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1002), - [anon_sym_RPAREN] = ACTIONS(1002), - [anon_sym_GT2] = ACTIONS(1000), - [anon_sym_DASH2] = ACTIONS(1002), - [anon_sym_in2] = ACTIONS(1002), - [anon_sym_if] = ACTIONS(1002), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1002), - [anon_sym_EQ_GT] = ACTIONS(1002), - [anon_sym_STAR2] = ACTIONS(1000), - [anon_sym_and2] = ACTIONS(1002), - [anon_sym_xor2] = ACTIONS(1002), - [anon_sym_or2] = ACTIONS(1002), - [anon_sym_not_DASHin2] = ACTIONS(1002), - [anon_sym_starts_DASHwith2] = ACTIONS(1002), - [anon_sym_ends_DASHwith2] = ACTIONS(1002), - [anon_sym_EQ_EQ2] = ACTIONS(1002), - [anon_sym_BANG_EQ2] = ACTIONS(1002), - [anon_sym_LT2] = ACTIONS(1000), - [anon_sym_LT_EQ2] = ACTIONS(1002), - [anon_sym_GT_EQ2] = ACTIONS(1002), - [anon_sym_EQ_TILDE2] = ACTIONS(1002), - [anon_sym_BANG_TILDE2] = ACTIONS(1002), - [anon_sym_STAR_STAR2] = ACTIONS(1002), - [anon_sym_PLUS_PLUS2] = ACTIONS(1002), - [anon_sym_SLASH2] = ACTIONS(1000), - [anon_sym_mod2] = ACTIONS(1002), - [anon_sym_SLASH_SLASH2] = ACTIONS(1002), - [anon_sym_PLUS2] = ACTIONS(1000), - [anon_sym_bit_DASHshl2] = ACTIONS(1002), - [anon_sym_bit_DASHshr2] = ACTIONS(1002), - [anon_sym_bit_DASHand2] = ACTIONS(1002), - [anon_sym_bit_DASHxor2] = ACTIONS(1002), - [anon_sym_bit_DASHor2] = ACTIONS(1002), - [anon_sym_DOT_DOT2] = ACTIONS(1000), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1002), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1002), - [anon_sym_err_GT] = ACTIONS(1000), - [anon_sym_out_GT] = ACTIONS(1000), - [anon_sym_e_GT] = ACTIONS(1000), - [anon_sym_o_GT] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT] = ACTIONS(1000), - [anon_sym_err_GT_GT] = ACTIONS(1002), - [anon_sym_out_GT_GT] = ACTIONS(1002), - [anon_sym_e_GT_GT] = ACTIONS(1002), - [anon_sym_o_GT_GT] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1002), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_err_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_GT_PIPE] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1768), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_LPAREN] = ACTIONS(1766), + [anon_sym_RPAREN] = ACTIONS(1768), + [anon_sym_DOLLAR] = ACTIONS(1766), + [anon_sym_DASH_DASH] = ACTIONS(1768), + [anon_sym_DASH2] = ACTIONS(1766), + [anon_sym_LBRACE] = ACTIONS(1768), + [anon_sym_RBRACE] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1766), + [anon_sym_LPAREN2] = ACTIONS(1768), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1768), + [anon_sym_DOT_DOT_LT] = ACTIONS(1768), + [anon_sym_null] = ACTIONS(1768), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [aux_sym__val_number_decimal_token1] = ACTIONS(1766), + [aux_sym__val_number_decimal_token2] = ACTIONS(1768), + [aux_sym__val_number_decimal_token3] = ACTIONS(1768), + [aux_sym__val_number_decimal_token4] = ACTIONS(1768), + [aux_sym__val_number_token1] = ACTIONS(1768), + [aux_sym__val_number_token2] = ACTIONS(1768), + [aux_sym__val_number_token3] = ACTIONS(1768), + [aux_sym__val_number_token4] = ACTIONS(1768), + [aux_sym__val_number_token5] = ACTIONS(1768), + [aux_sym__val_number_token6] = ACTIONS(1768), + [anon_sym_0b] = ACTIONS(1766), + [anon_sym_0o] = ACTIONS(1766), + [anon_sym_0x] = ACTIONS(1766), + [sym_val_date] = ACTIONS(1768), + [anon_sym_DQUOTE] = ACTIONS(1768), + [sym__str_single_quotes] = ACTIONS(1768), + [sym__str_back_ticks] = ACTIONS(1768), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1768), + [anon_sym_err_GT] = ACTIONS(1766), + [anon_sym_out_GT] = ACTIONS(1766), + [anon_sym_e_GT] = ACTIONS(1766), + [anon_sym_o_GT] = ACTIONS(1766), + [anon_sym_err_PLUSout_GT] = ACTIONS(1766), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1766), + [anon_sym_o_PLUSe_GT] = ACTIONS(1766), + [anon_sym_e_PLUSo_GT] = ACTIONS(1766), + [anon_sym_err_GT_GT] = ACTIONS(1768), + [anon_sym_out_GT_GT] = ACTIONS(1768), + [anon_sym_e_GT_GT] = ACTIONS(1768), + [anon_sym_o_GT_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1768), + [aux_sym_unquoted_token1] = ACTIONS(1766), + [aux_sym_unquoted_token2] = ACTIONS(1766), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1768), }, [1642] = { [sym_comment] = STATE(1642), - [sym__newline] = ACTIONS(4970), - [anon_sym_SEMI] = ACTIONS(4970), - [anon_sym_PIPE] = ACTIONS(4970), - [anon_sym_err_GT_PIPE] = ACTIONS(4970), - [anon_sym_out_GT_PIPE] = ACTIONS(4970), - [anon_sym_e_GT_PIPE] = ACTIONS(4970), - [anon_sym_o_GT_PIPE] = ACTIONS(4970), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4970), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4970), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4970), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4970), - [anon_sym_LBRACK] = ACTIONS(4970), - [anon_sym_LPAREN] = ACTIONS(4970), - [anon_sym_RPAREN] = ACTIONS(4970), - [anon_sym_DOLLAR] = ACTIONS(4972), - [anon_sym_DASH_DASH] = ACTIONS(4970), - [anon_sym_DASH2] = ACTIONS(4972), - [anon_sym_LBRACE] = ACTIONS(4970), - [anon_sym_RBRACE] = ACTIONS(4970), - [anon_sym_DOT_DOT] = ACTIONS(4972), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4970), - [anon_sym_DOT_DOT_LT] = ACTIONS(4970), - [anon_sym_null] = ACTIONS(4970), - [anon_sym_true] = ACTIONS(4970), - [anon_sym_false] = ACTIONS(4970), - [aux_sym__val_number_decimal_token1] = ACTIONS(4972), - [aux_sym__val_number_decimal_token2] = ACTIONS(4970), - [aux_sym__val_number_decimal_token3] = ACTIONS(4970), - [aux_sym__val_number_decimal_token4] = ACTIONS(4970), - [aux_sym__val_number_token1] = ACTIONS(4970), - [aux_sym__val_number_token2] = ACTIONS(4970), - [aux_sym__val_number_token3] = ACTIONS(4970), - [aux_sym__val_number_token4] = ACTIONS(4970), - [aux_sym__val_number_token5] = ACTIONS(4970), - [aux_sym__val_number_token6] = ACTIONS(4970), - [anon_sym_0b] = ACTIONS(4972), - [anon_sym_0o] = ACTIONS(4972), - [anon_sym_0x] = ACTIONS(4972), - [sym_val_date] = ACTIONS(4970), - [anon_sym_DQUOTE] = ACTIONS(4970), - [sym__str_single_quotes] = ACTIONS(4970), - [sym__str_back_ticks] = ACTIONS(4970), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4970), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4970), - [anon_sym_err_GT] = ACTIONS(4972), - [anon_sym_out_GT] = ACTIONS(4972), - [anon_sym_e_GT] = ACTIONS(4972), - [anon_sym_o_GT] = ACTIONS(4972), - [anon_sym_err_PLUSout_GT] = ACTIONS(4972), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4972), - [anon_sym_o_PLUSe_GT] = ACTIONS(4972), - [anon_sym_e_PLUSo_GT] = ACTIONS(4972), - [anon_sym_err_GT_GT] = ACTIONS(4970), - [anon_sym_out_GT_GT] = ACTIONS(4970), - [anon_sym_e_GT_GT] = ACTIONS(4970), - [anon_sym_o_GT_GT] = ACTIONS(4970), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4970), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4970), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4970), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4970), - [anon_sym_EQ2] = ACTIONS(4974), - [aux_sym_unquoted_token1] = ACTIONS(4972), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4970), + [ts_builtin_sym_end] = ACTIONS(2024), + [sym__newline] = ACTIONS(2024), + [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_PIPE] = ACTIONS(2024), + [anon_sym_err_GT_PIPE] = ACTIONS(2024), + [anon_sym_out_GT_PIPE] = ACTIONS(2024), + [anon_sym_e_GT_PIPE] = ACTIONS(2024), + [anon_sym_o_GT_PIPE] = ACTIONS(2024), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2024), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2024), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2024), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2024), + [anon_sym_LBRACK] = ACTIONS(2024), + [anon_sym_LPAREN] = ACTIONS(2024), + [anon_sym_DOLLAR] = ACTIONS(2022), + [anon_sym_DASH_DASH] = ACTIONS(2024), + [anon_sym_DASH2] = ACTIONS(2022), + [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_DOT_DOT] = ACTIONS(2022), + [anon_sym_DOT_DOT2] = ACTIONS(2022), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2022), + [anon_sym_DOT_DOT_LT] = ACTIONS(2022), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2024), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2024), + [anon_sym_null] = ACTIONS(2024), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [aux_sym__val_number_decimal_token1] = ACTIONS(2022), + [aux_sym__val_number_decimal_token2] = ACTIONS(2024), + [aux_sym__val_number_decimal_token3] = ACTIONS(2024), + [aux_sym__val_number_decimal_token4] = ACTIONS(2024), + [aux_sym__val_number_token1] = ACTIONS(2024), + [aux_sym__val_number_token2] = ACTIONS(2024), + [aux_sym__val_number_token3] = ACTIONS(2024), + [aux_sym__val_number_token4] = ACTIONS(2024), + [aux_sym__val_number_token5] = ACTIONS(2024), + [aux_sym__val_number_token6] = ACTIONS(2024), + [anon_sym_0b] = ACTIONS(2022), + [anon_sym_0o] = ACTIONS(2022), + [anon_sym_0x] = ACTIONS(2022), + [sym_val_date] = ACTIONS(2024), + [anon_sym_DQUOTE] = ACTIONS(2024), + [sym__str_single_quotes] = ACTIONS(2024), + [sym__str_back_ticks] = ACTIONS(2024), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2024), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2024), + [anon_sym_err_GT] = ACTIONS(2022), + [anon_sym_out_GT] = ACTIONS(2022), + [anon_sym_e_GT] = ACTIONS(2022), + [anon_sym_o_GT] = ACTIONS(2022), + [anon_sym_err_PLUSout_GT] = ACTIONS(2022), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2022), + [anon_sym_o_PLUSe_GT] = ACTIONS(2022), + [anon_sym_e_PLUSo_GT] = ACTIONS(2022), + [anon_sym_err_GT_GT] = ACTIONS(2024), + [anon_sym_out_GT_GT] = ACTIONS(2024), + [anon_sym_e_GT_GT] = ACTIONS(2024), + [anon_sym_o_GT_GT] = ACTIONS(2024), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2024), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2024), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2024), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2024), + [aux_sym_unquoted_token1] = ACTIONS(2022), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2024), }, [1643] = { [sym_comment] = STATE(1643), - [ts_builtin_sym_end] = ACTIONS(1713), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_GT2] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1713), - [anon_sym_in2] = ACTIONS(1713), - [anon_sym_STAR2] = ACTIONS(1711), - [anon_sym_and2] = ACTIONS(1713), - [anon_sym_xor2] = ACTIONS(1713), - [anon_sym_or2] = ACTIONS(1713), - [anon_sym_not_DASHin2] = ACTIONS(1713), - [anon_sym_starts_DASHwith2] = ACTIONS(1713), - [anon_sym_ends_DASHwith2] = ACTIONS(1713), - [anon_sym_EQ_EQ2] = ACTIONS(1713), - [anon_sym_BANG_EQ2] = ACTIONS(1713), - [anon_sym_LT2] = ACTIONS(1711), - [anon_sym_LT_EQ2] = ACTIONS(1713), - [anon_sym_GT_EQ2] = ACTIONS(1713), - [anon_sym_EQ_TILDE2] = ACTIONS(1713), - [anon_sym_BANG_TILDE2] = ACTIONS(1713), - [anon_sym_LPAREN2] = ACTIONS(1713), - [anon_sym_STAR_STAR2] = ACTIONS(1713), - [anon_sym_PLUS_PLUS2] = ACTIONS(1713), - [anon_sym_SLASH2] = ACTIONS(1711), - [anon_sym_mod2] = ACTIONS(1713), - [anon_sym_SLASH_SLASH2] = ACTIONS(1713), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_bit_DASHshl2] = ACTIONS(1713), - [anon_sym_bit_DASHshr2] = ACTIONS(1713), - [anon_sym_bit_DASHand2] = ACTIONS(1713), - [anon_sym_bit_DASHxor2] = ACTIONS(1713), - [anon_sym_bit_DASHor2] = ACTIONS(1713), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [aux_sym__immediate_decimal_token1] = ACTIONS(4976), - [aux_sym__immediate_decimal_token2] = ACTIONS(4978), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [aux_sym_unquoted_token2] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(958), + [anon_sym_SEMI] = ACTIONS(958), + [anon_sym_PIPE] = ACTIONS(958), + [anon_sym_err_GT_PIPE] = ACTIONS(958), + [anon_sym_out_GT_PIPE] = ACTIONS(958), + [anon_sym_e_GT_PIPE] = ACTIONS(958), + [anon_sym_o_GT_PIPE] = ACTIONS(958), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(958), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(958), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(958), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(958), + [anon_sym_LBRACK] = ACTIONS(958), + [anon_sym_LPAREN] = ACTIONS(958), + [anon_sym_RPAREN] = ACTIONS(958), + [anon_sym_DOLLAR] = ACTIONS(956), + [anon_sym_DASH_DASH] = ACTIONS(958), + [anon_sym_DASH2] = ACTIONS(956), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(958), + [anon_sym_DOT_DOT] = ACTIONS(956), + [anon_sym_QMARK2] = ACTIONS(958), + [anon_sym_DOT_DOT_EQ] = ACTIONS(958), + [anon_sym_DOT_DOT_LT] = ACTIONS(958), + [anon_sym_null] = ACTIONS(958), + [anon_sym_true] = ACTIONS(958), + [anon_sym_false] = ACTIONS(958), + [aux_sym__val_number_decimal_token1] = ACTIONS(956), + [aux_sym__val_number_decimal_token2] = ACTIONS(958), + [aux_sym__val_number_decimal_token3] = ACTIONS(958), + [aux_sym__val_number_decimal_token4] = ACTIONS(958), + [aux_sym__val_number_token1] = ACTIONS(958), + [aux_sym__val_number_token2] = ACTIONS(958), + [aux_sym__val_number_token3] = ACTIONS(958), + [aux_sym__val_number_token4] = ACTIONS(958), + [aux_sym__val_number_token5] = ACTIONS(958), + [aux_sym__val_number_token6] = ACTIONS(958), + [anon_sym_0b] = ACTIONS(956), + [anon_sym_0o] = ACTIONS(956), + [anon_sym_0x] = ACTIONS(956), + [sym_val_date] = ACTIONS(958), + [anon_sym_DQUOTE] = ACTIONS(958), + [sym__str_single_quotes] = ACTIONS(958), + [sym__str_back_ticks] = ACTIONS(958), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(958), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(958), + [anon_sym_DOT2] = ACTIONS(956), + [anon_sym_err_GT] = ACTIONS(956), + [anon_sym_out_GT] = ACTIONS(956), + [anon_sym_e_GT] = ACTIONS(956), + [anon_sym_o_GT] = ACTIONS(956), + [anon_sym_err_PLUSout_GT] = ACTIONS(956), + [anon_sym_out_PLUSerr_GT] = ACTIONS(956), + [anon_sym_o_PLUSe_GT] = ACTIONS(956), + [anon_sym_e_PLUSo_GT] = ACTIONS(956), + [anon_sym_err_GT_GT] = ACTIONS(958), + [anon_sym_out_GT_GT] = ACTIONS(958), + [anon_sym_e_GT_GT] = ACTIONS(958), + [anon_sym_o_GT_GT] = ACTIONS(958), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(958), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(958), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(958), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(958), + [aux_sym_unquoted_token1] = ACTIONS(956), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(958), }, [1644] = { [sym_comment] = STATE(1644), - [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(1638), - [anon_sym_DASH_DASH] = ACTIONS(1650), - [anon_sym_DASH2] = ACTIONS(1638), - [anon_sym_LBRACE] = ACTIONS(1650), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_DOT_DOT] = ACTIONS(1638), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1650), - [anon_sym_DOT_DOT_LT] = ACTIONS(1650), - [anon_sym_null] = ACTIONS(1650), - [anon_sym_true] = ACTIONS(1650), - [anon_sym_false] = ACTIONS(1650), - [aux_sym__val_number_decimal_token1] = ACTIONS(1638), - [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), - [aux_sym__val_number_token4] = ACTIONS(1650), - [aux_sym__val_number_token5] = ACTIONS(1650), - [aux_sym__val_number_token6] = ACTIONS(1650), - [anon_sym_0b] = ACTIONS(1638), - [anon_sym_0o] = ACTIONS(1638), - [anon_sym_0x] = ACTIONS(1638), - [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(1638), - [anon_sym_out_GT] = ACTIONS(1638), - [anon_sym_e_GT] = ACTIONS(1638), - [anon_sym_o_GT] = ACTIONS(1638), - [anon_sym_err_PLUSout_GT] = ACTIONS(1638), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1638), - [anon_sym_o_PLUSe_GT] = ACTIONS(1638), - [anon_sym_e_PLUSo_GT] = ACTIONS(1638), - [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(1638), - [aux_sym_unquoted_token2] = ACTIONS(4191), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1650), + [sym__newline] = ACTIONS(2077), + [anon_sym_SEMI] = ACTIONS(2077), + [anon_sym_PIPE] = ACTIONS(2077), + [anon_sym_err_GT_PIPE] = ACTIONS(2077), + [anon_sym_out_GT_PIPE] = ACTIONS(2077), + [anon_sym_e_GT_PIPE] = ACTIONS(2077), + [anon_sym_o_GT_PIPE] = ACTIONS(2077), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2077), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2077), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2077), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2077), + [anon_sym_LBRACK] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2073), + [anon_sym_RPAREN] = ACTIONS(2077), + [anon_sym_DOLLAR] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), + [anon_sym_DASH2] = ACTIONS(2073), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_RBRACE] = ACTIONS(2077), + [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), + [anon_sym_null] = ACTIONS(2073), + [anon_sym_true] = ACTIONS(2073), + [anon_sym_false] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2073), + [aux_sym__val_number_decimal_token3] = ACTIONS(2073), + [aux_sym__val_number_decimal_token4] = ACTIONS(2073), + [aux_sym__val_number_token1] = ACTIONS(2073), + [aux_sym__val_number_token2] = ACTIONS(2073), + [aux_sym__val_number_token3] = ACTIONS(2073), + [aux_sym__val_number_token4] = ACTIONS(2073), + [aux_sym__val_number_token5] = ACTIONS(2073), + [aux_sym__val_number_token6] = 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(2077), + [sym__str_single_quotes] = ACTIONS(2077), + [sym__str_back_ticks] = ACTIONS(2077), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2077), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2077), + [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_token4] = ACTIONS(2079), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2077), }, [1645] = { [sym_comment] = STATE(1645), - [ts_builtin_sym_end] = ACTIONS(1544), - [sym__newline] = ACTIONS(1544), - [anon_sym_SEMI] = ACTIONS(1544), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_err_GT_PIPE] = ACTIONS(1544), - [anon_sym_out_GT_PIPE] = ACTIONS(1544), - [anon_sym_e_GT_PIPE] = ACTIONS(1544), - [anon_sym_o_GT_PIPE] = ACTIONS(1544), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1544), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1544), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1544), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1544), - [anon_sym_GT2] = ACTIONS(1542), - [anon_sym_DASH2] = ACTIONS(1544), - [anon_sym_in2] = ACTIONS(1544), - [anon_sym_STAR2] = ACTIONS(1542), - [anon_sym_and2] = ACTIONS(1544), - [anon_sym_xor2] = ACTIONS(1544), - [anon_sym_or2] = ACTIONS(1544), - [anon_sym_not_DASHin2] = ACTIONS(1544), - [anon_sym_starts_DASHwith2] = ACTIONS(1544), - [anon_sym_ends_DASHwith2] = ACTIONS(1544), - [anon_sym_EQ_EQ2] = ACTIONS(1544), - [anon_sym_BANG_EQ2] = ACTIONS(1544), - [anon_sym_LT2] = ACTIONS(1542), - [anon_sym_LT_EQ2] = ACTIONS(1544), - [anon_sym_GT_EQ2] = ACTIONS(1544), - [anon_sym_EQ_TILDE2] = ACTIONS(1544), - [anon_sym_BANG_TILDE2] = ACTIONS(1544), - [anon_sym_LPAREN2] = ACTIONS(1544), - [anon_sym_STAR_STAR2] = ACTIONS(1544), - [anon_sym_PLUS_PLUS2] = ACTIONS(1544), - [anon_sym_SLASH2] = ACTIONS(1542), - [anon_sym_mod2] = ACTIONS(1544), - [anon_sym_SLASH_SLASH2] = ACTIONS(1544), - [anon_sym_PLUS2] = ACTIONS(1542), - [anon_sym_bit_DASHshl2] = ACTIONS(1544), - [anon_sym_bit_DASHshr2] = ACTIONS(1544), - [anon_sym_bit_DASHand2] = ACTIONS(1544), - [anon_sym_bit_DASHxor2] = ACTIONS(1544), - [anon_sym_bit_DASHor2] = ACTIONS(1544), - [anon_sym_DOT_DOT2] = ACTIONS(1542), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1544), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1544), - [sym_filesize_unit] = ACTIONS(1542), - [sym_duration_unit] = ACTIONS(1544), - [anon_sym_err_GT] = ACTIONS(1542), - [anon_sym_out_GT] = ACTIONS(1542), - [anon_sym_e_GT] = ACTIONS(1542), - [anon_sym_o_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT] = ACTIONS(1542), - [anon_sym_err_GT_GT] = ACTIONS(1544), - [anon_sym_out_GT_GT] = ACTIONS(1544), - [anon_sym_e_GT_GT] = ACTIONS(1544), - [anon_sym_o_GT_GT] = ACTIONS(1544), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1544), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1544), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1544), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1544), - [aux_sym_unquoted_token2] = ACTIONS(1542), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(2854), + [anon_sym_SEMI] = ACTIONS(2854), + [anon_sym_PIPE] = ACTIONS(2854), + [anon_sym_err_GT_PIPE] = ACTIONS(2854), + [anon_sym_out_GT_PIPE] = ACTIONS(2854), + [anon_sym_e_GT_PIPE] = ACTIONS(2854), + [anon_sym_o_GT_PIPE] = ACTIONS(2854), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2854), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2854), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2854), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2854), + [anon_sym_LBRACK] = ACTIONS(2854), + [anon_sym_LPAREN] = ACTIONS(2854), + [anon_sym_RPAREN] = ACTIONS(2854), + [anon_sym_DOLLAR] = ACTIONS(4944), + [anon_sym_DASH_DASH] = ACTIONS(2854), + [anon_sym_DASH2] = ACTIONS(4944), + [anon_sym_LBRACE] = ACTIONS(2854), + [anon_sym_DOT_DOT] = ACTIONS(4944), + [anon_sym_DOT_DOT2] = ACTIONS(4806), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4944), + [anon_sym_DOT_DOT_LT] = ACTIONS(4944), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4808), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4808), + [anon_sym_null] = ACTIONS(2854), + [anon_sym_true] = ACTIONS(2854), + [anon_sym_false] = ACTIONS(2854), + [aux_sym__val_number_decimal_token1] = ACTIONS(4944), + [aux_sym__val_number_decimal_token2] = ACTIONS(2854), + [aux_sym__val_number_decimal_token3] = ACTIONS(2854), + [aux_sym__val_number_decimal_token4] = ACTIONS(2854), + [aux_sym__val_number_token1] = ACTIONS(2854), + [aux_sym__val_number_token2] = ACTIONS(2854), + [aux_sym__val_number_token3] = ACTIONS(2854), + [aux_sym__val_number_token4] = ACTIONS(2854), + [aux_sym__val_number_token5] = ACTIONS(2854), + [aux_sym__val_number_token6] = ACTIONS(2854), + [anon_sym_0b] = ACTIONS(4944), + [anon_sym_0o] = ACTIONS(4944), + [anon_sym_0x] = ACTIONS(4944), + [sym_val_date] = ACTIONS(2854), + [anon_sym_DQUOTE] = ACTIONS(2854), + [sym__str_single_quotes] = ACTIONS(2854), + [sym__str_back_ticks] = ACTIONS(2854), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2854), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2854), + [anon_sym_err_GT] = ACTIONS(4944), + [anon_sym_out_GT] = ACTIONS(4944), + [anon_sym_e_GT] = ACTIONS(4944), + [anon_sym_o_GT] = ACTIONS(4944), + [anon_sym_err_PLUSout_GT] = ACTIONS(4944), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4944), + [anon_sym_o_PLUSe_GT] = ACTIONS(4944), + [anon_sym_e_PLUSo_GT] = ACTIONS(4944), + [anon_sym_err_GT_GT] = ACTIONS(2854), + [anon_sym_out_GT_GT] = ACTIONS(2854), + [anon_sym_e_GT_GT] = ACTIONS(2854), + [anon_sym_o_GT_GT] = ACTIONS(2854), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2854), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2854), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2854), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2854), + [aux_sym_unquoted_token1] = ACTIONS(4944), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2854), }, [1646] = { [sym_comment] = STATE(1646), - [ts_builtin_sym_end] = ACTIONS(2222), - [sym__newline] = ACTIONS(2222), - [anon_sym_SEMI] = ACTIONS(2222), - [anon_sym_PIPE] = ACTIONS(2222), - [anon_sym_err_GT_PIPE] = ACTIONS(2222), - [anon_sym_out_GT_PIPE] = ACTIONS(2222), - [anon_sym_e_GT_PIPE] = ACTIONS(2222), - [anon_sym_o_GT_PIPE] = ACTIONS(2222), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2222), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2222), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2222), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2222), - [anon_sym_LBRACK] = ACTIONS(2222), - [anon_sym_LPAREN] = ACTIONS(2220), - [anon_sym_DOLLAR] = ACTIONS(2220), - [anon_sym_DASH_DASH] = ACTIONS(2222), - [anon_sym_DASH2] = ACTIONS(2220), - [anon_sym_LBRACE] = ACTIONS(2222), - [anon_sym_DOT_DOT] = ACTIONS(2220), - [anon_sym_LPAREN2] = ACTIONS(1814), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2222), - [anon_sym_DOT_DOT_LT] = ACTIONS(2222), - [anon_sym_null] = ACTIONS(2222), - [anon_sym_true] = ACTIONS(2222), - [anon_sym_false] = ACTIONS(2222), - [aux_sym__val_number_decimal_token1] = ACTIONS(2220), - [aux_sym__val_number_decimal_token2] = ACTIONS(2222), - [aux_sym__val_number_decimal_token3] = ACTIONS(2222), - [aux_sym__val_number_decimal_token4] = ACTIONS(2222), - [aux_sym__val_number_token1] = ACTIONS(2222), - [aux_sym__val_number_token2] = ACTIONS(2222), - [aux_sym__val_number_token3] = ACTIONS(2222), - [aux_sym__val_number_token4] = ACTIONS(2222), - [aux_sym__val_number_token5] = ACTIONS(2222), - [aux_sym__val_number_token6] = ACTIONS(2222), - [anon_sym_0b] = ACTIONS(2220), - [anon_sym_0o] = ACTIONS(2220), - [anon_sym_0x] = ACTIONS(2220), - [sym_val_date] = ACTIONS(2222), - [anon_sym_DQUOTE] = ACTIONS(2222), - [sym__str_single_quotes] = ACTIONS(2222), - [sym__str_back_ticks] = ACTIONS(2222), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2222), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2222), - [anon_sym_err_GT] = ACTIONS(2220), - [anon_sym_out_GT] = ACTIONS(2220), - [anon_sym_e_GT] = ACTIONS(2220), - [anon_sym_o_GT] = ACTIONS(2220), - [anon_sym_err_PLUSout_GT] = ACTIONS(2220), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2220), - [anon_sym_o_PLUSe_GT] = ACTIONS(2220), - [anon_sym_e_PLUSo_GT] = ACTIONS(2220), - [anon_sym_err_GT_GT] = ACTIONS(2222), - [anon_sym_out_GT_GT] = ACTIONS(2222), - [anon_sym_e_GT_GT] = ACTIONS(2222), - [anon_sym_o_GT_GT] = ACTIONS(2222), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2222), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2222), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2222), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2222), - [aux_sym_unquoted_token1] = ACTIONS(2220), - [aux_sym_unquoted_token2] = ACTIONS(1822), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2222), + [sym__newline] = ACTIONS(2083), + [anon_sym_SEMI] = ACTIONS(2083), + [anon_sym_PIPE] = ACTIONS(2083), + [anon_sym_err_GT_PIPE] = ACTIONS(2083), + [anon_sym_out_GT_PIPE] = ACTIONS(2083), + [anon_sym_e_GT_PIPE] = ACTIONS(2083), + [anon_sym_o_GT_PIPE] = ACTIONS(2083), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2083), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2083), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2083), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2083), + [anon_sym_LBRACK] = ACTIONS(2083), + [anon_sym_LPAREN] = ACTIONS(2081), + [anon_sym_RPAREN] = ACTIONS(2083), + [anon_sym_DOLLAR] = ACTIONS(2081), + [anon_sym_DASH_DASH] = ACTIONS(2081), + [anon_sym_DASH2] = ACTIONS(2081), + [anon_sym_LBRACE] = ACTIONS(2083), + [anon_sym_RBRACE] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(2081), + [anon_sym_LPAREN2] = ACTIONS(2075), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2081), + [anon_sym_DOT_DOT_LT] = ACTIONS(2081), + [anon_sym_null] = ACTIONS(2081), + [anon_sym_true] = ACTIONS(2081), + [anon_sym_false] = ACTIONS(2081), + [aux_sym__val_number_decimal_token1] = ACTIONS(2081), + [aux_sym__val_number_decimal_token2] = ACTIONS(2081), + [aux_sym__val_number_decimal_token3] = ACTIONS(2081), + [aux_sym__val_number_decimal_token4] = ACTIONS(2081), + [aux_sym__val_number_token1] = ACTIONS(2081), + [aux_sym__val_number_token2] = ACTIONS(2081), + [aux_sym__val_number_token3] = ACTIONS(2081), + [aux_sym__val_number_token4] = ACTIONS(2081), + [aux_sym__val_number_token5] = ACTIONS(2081), + [aux_sym__val_number_token6] = ACTIONS(2081), + [anon_sym_0b] = ACTIONS(2081), + [anon_sym_0o] = ACTIONS(2081), + [anon_sym_0x] = ACTIONS(2081), + [sym_val_date] = ACTIONS(2081), + [anon_sym_DQUOTE] = ACTIONS(2083), + [sym__str_single_quotes] = ACTIONS(2083), + [sym__str_back_ticks] = ACTIONS(2083), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2083), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2083), + [anon_sym_err_GT] = ACTIONS(2081), + [anon_sym_out_GT] = ACTIONS(2081), + [anon_sym_e_GT] = ACTIONS(2081), + [anon_sym_o_GT] = ACTIONS(2081), + [anon_sym_err_PLUSout_GT] = ACTIONS(2081), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2081), + [anon_sym_o_PLUSe_GT] = ACTIONS(2081), + [anon_sym_e_PLUSo_GT] = ACTIONS(2081), + [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(2081), + [aux_sym_unquoted_token4] = ACTIONS(2079), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2083), }, [1647] = { [sym_comment] = STATE(1647), - [ts_builtin_sym_end] = ACTIONS(1820), - [sym__newline] = ACTIONS(1820), - [anon_sym_SEMI] = ACTIONS(1820), - [anon_sym_PIPE] = ACTIONS(1820), - [anon_sym_err_GT_PIPE] = ACTIONS(1820), - [anon_sym_out_GT_PIPE] = ACTIONS(1820), - [anon_sym_e_GT_PIPE] = ACTIONS(1820), - [anon_sym_o_GT_PIPE] = ACTIONS(1820), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1820), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1820), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1820), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1820), - [anon_sym_LBRACK] = ACTIONS(1820), - [anon_sym_LPAREN] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1812), - [anon_sym_DASH_DASH] = ACTIONS(1820), - [anon_sym_DASH2] = ACTIONS(1812), - [anon_sym_LBRACE] = ACTIONS(1820), - [anon_sym_DOT_DOT] = ACTIONS(1812), - [anon_sym_LPAREN2] = ACTIONS(1814), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1820), - [anon_sym_DOT_DOT_LT] = ACTIONS(1820), - [anon_sym_null] = ACTIONS(1820), - [anon_sym_true] = ACTIONS(1820), - [anon_sym_false] = ACTIONS(1820), - [aux_sym__val_number_decimal_token1] = ACTIONS(1812), - [aux_sym__val_number_decimal_token2] = 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), - [aux_sym__val_number_token4] = ACTIONS(1820), - [aux_sym__val_number_token5] = ACTIONS(1820), - [aux_sym__val_number_token6] = ACTIONS(1820), - [anon_sym_0b] = ACTIONS(1812), - [anon_sym_0o] = ACTIONS(1812), - [anon_sym_0x] = ACTIONS(1812), - [sym_val_date] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1820), - [sym__str_single_quotes] = ACTIONS(1820), - [sym__str_back_ticks] = ACTIONS(1820), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1820), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1820), - [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(1820), - [anon_sym_out_GT_GT] = ACTIONS(1820), - [anon_sym_e_GT_GT] = ACTIONS(1820), - [anon_sym_o_GT_GT] = ACTIONS(1820), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1820), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1820), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1820), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1820), - [aux_sym_unquoted_token1] = ACTIONS(1812), - [aux_sym_unquoted_token2] = ACTIONS(1822), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1820), + [sym__newline] = ACTIONS(962), + [anon_sym_SEMI] = ACTIONS(962), + [anon_sym_PIPE] = ACTIONS(962), + [anon_sym_err_GT_PIPE] = ACTIONS(962), + [anon_sym_out_GT_PIPE] = ACTIONS(962), + [anon_sym_e_GT_PIPE] = ACTIONS(962), + [anon_sym_o_GT_PIPE] = ACTIONS(962), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(962), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(962), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(962), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(962), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LPAREN] = ACTIONS(962), + [anon_sym_RPAREN] = ACTIONS(962), + [anon_sym_DOLLAR] = ACTIONS(960), + [anon_sym_DASH_DASH] = ACTIONS(962), + [anon_sym_DASH2] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_RBRACE] = ACTIONS(962), + [anon_sym_DOT_DOT] = ACTIONS(960), + [anon_sym_QMARK2] = ACTIONS(962), + [anon_sym_DOT_DOT_EQ] = ACTIONS(962), + [anon_sym_DOT_DOT_LT] = ACTIONS(962), + [anon_sym_null] = ACTIONS(962), + [anon_sym_true] = ACTIONS(962), + [anon_sym_false] = ACTIONS(962), + [aux_sym__val_number_decimal_token1] = ACTIONS(960), + [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), + [aux_sym__val_number_token4] = ACTIONS(962), + [aux_sym__val_number_token5] = ACTIONS(962), + [aux_sym__val_number_token6] = ACTIONS(962), + [anon_sym_0b] = ACTIONS(960), + [anon_sym_0o] = ACTIONS(960), + [anon_sym_0x] = ACTIONS(960), + [sym_val_date] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(962), + [sym__str_single_quotes] = ACTIONS(962), + [sym__str_back_ticks] = ACTIONS(962), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(962), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(962), + [anon_sym_DOT2] = ACTIONS(960), + [anon_sym_err_GT] = ACTIONS(960), + [anon_sym_out_GT] = ACTIONS(960), + [anon_sym_e_GT] = ACTIONS(960), + [anon_sym_o_GT] = ACTIONS(960), + [anon_sym_err_PLUSout_GT] = ACTIONS(960), + [anon_sym_out_PLUSerr_GT] = ACTIONS(960), + [anon_sym_o_PLUSe_GT] = ACTIONS(960), + [anon_sym_e_PLUSo_GT] = ACTIONS(960), + [anon_sym_err_GT_GT] = ACTIONS(962), + [anon_sym_out_GT_GT] = ACTIONS(962), + [anon_sym_e_GT_GT] = ACTIONS(962), + [anon_sym_o_GT_GT] = ACTIONS(962), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(962), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(962), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(962), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(962), + [aux_sym_unquoted_token1] = ACTIONS(960), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(962), }, [1648] = { [sym_comment] = STATE(1648), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_RPAREN] = ACTIONS(1713), - [anon_sym_GT2] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1713), - [anon_sym_in2] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_STAR2] = ACTIONS(1711), - [anon_sym_and2] = ACTIONS(1713), - [anon_sym_xor2] = ACTIONS(1713), - [anon_sym_or2] = ACTIONS(1713), - [anon_sym_not_DASHin2] = ACTIONS(1713), - [anon_sym_starts_DASHwith2] = ACTIONS(1713), - [anon_sym_ends_DASHwith2] = ACTIONS(1713), - [anon_sym_EQ_EQ2] = ACTIONS(1713), - [anon_sym_BANG_EQ2] = ACTIONS(1713), - [anon_sym_LT2] = ACTIONS(1711), - [anon_sym_LT_EQ2] = ACTIONS(1713), - [anon_sym_GT_EQ2] = ACTIONS(1713), - [anon_sym_EQ_TILDE2] = ACTIONS(1713), - [anon_sym_BANG_TILDE2] = ACTIONS(1713), - [anon_sym_LPAREN2] = ACTIONS(1713), - [anon_sym_STAR_STAR2] = ACTIONS(1713), - [anon_sym_PLUS_PLUS2] = ACTIONS(1713), - [anon_sym_SLASH2] = ACTIONS(1711), - [anon_sym_mod2] = ACTIONS(1713), - [anon_sym_SLASH_SLASH2] = ACTIONS(1713), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_bit_DASHshl2] = ACTIONS(1713), - [anon_sym_bit_DASHshr2] = ACTIONS(1713), - [anon_sym_bit_DASHand2] = ACTIONS(1713), - [anon_sym_bit_DASHxor2] = ACTIONS(1713), - [anon_sym_bit_DASHor2] = ACTIONS(1713), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [aux_sym_unquoted_token2] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(952), + [anon_sym_SEMI] = ACTIONS(952), + [anon_sym_PIPE] = ACTIONS(952), + [anon_sym_err_GT_PIPE] = ACTIONS(952), + [anon_sym_out_GT_PIPE] = ACTIONS(952), + [anon_sym_e_GT_PIPE] = ACTIONS(952), + [anon_sym_o_GT_PIPE] = ACTIONS(952), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(952), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(952), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(952), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(952), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(952), + [anon_sym_RPAREN] = ACTIONS(952), + [anon_sym_DOLLAR] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_DASH2] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(952), + [anon_sym_RBRACE] = ACTIONS(952), + [anon_sym_DOT_DOT] = ACTIONS(950), + [anon_sym_QMARK2] = ACTIONS(4946), + [anon_sym_DOT_DOT_EQ] = ACTIONS(952), + [anon_sym_DOT_DOT_LT] = ACTIONS(952), + [anon_sym_null] = ACTIONS(952), + [anon_sym_true] = ACTIONS(952), + [anon_sym_false] = ACTIONS(952), + [aux_sym__val_number_decimal_token1] = ACTIONS(950), + [aux_sym__val_number_decimal_token2] = ACTIONS(952), + [aux_sym__val_number_decimal_token3] = ACTIONS(952), + [aux_sym__val_number_decimal_token4] = ACTIONS(952), + [aux_sym__val_number_token1] = ACTIONS(952), + [aux_sym__val_number_token2] = ACTIONS(952), + [aux_sym__val_number_token3] = ACTIONS(952), + [aux_sym__val_number_token4] = ACTIONS(952), + [aux_sym__val_number_token5] = ACTIONS(952), + [aux_sym__val_number_token6] = ACTIONS(952), + [anon_sym_0b] = ACTIONS(950), + [anon_sym_0o] = ACTIONS(950), + [anon_sym_0x] = ACTIONS(950), + [sym_val_date] = ACTIONS(952), + [anon_sym_DQUOTE] = ACTIONS(952), + [sym__str_single_quotes] = ACTIONS(952), + [sym__str_back_ticks] = ACTIONS(952), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(952), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(952), + [anon_sym_DOT2] = ACTIONS(950), + [anon_sym_err_GT] = ACTIONS(950), + [anon_sym_out_GT] = ACTIONS(950), + [anon_sym_e_GT] = ACTIONS(950), + [anon_sym_o_GT] = ACTIONS(950), + [anon_sym_err_PLUSout_GT] = ACTIONS(950), + [anon_sym_out_PLUSerr_GT] = ACTIONS(950), + [anon_sym_o_PLUSe_GT] = ACTIONS(950), + [anon_sym_e_PLUSo_GT] = ACTIONS(950), + [anon_sym_err_GT_GT] = ACTIONS(952), + [anon_sym_out_GT_GT] = ACTIONS(952), + [anon_sym_e_GT_GT] = ACTIONS(952), + [anon_sym_o_GT_GT] = ACTIONS(952), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(952), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(952), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(952), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(952), + [aux_sym_unquoted_token1] = ACTIONS(950), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(952), }, [1649] = { [sym_comment] = STATE(1649), - [sym__newline] = ACTIONS(1012), - [anon_sym_SEMI] = ACTIONS(1012), - [anon_sym_PIPE] = ACTIONS(1012), - [anon_sym_err_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_GT_PIPE] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1012), - [anon_sym_LBRACK] = ACTIONS(1012), - [anon_sym_LPAREN] = ACTIONS(1012), - [anon_sym_RPAREN] = ACTIONS(1012), - [anon_sym_DOLLAR] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_RBRACE] = ACTIONS(1012), - [anon_sym_DOT_DOT] = ACTIONS(1016), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1016), - [anon_sym_DOT_DOT_LT] = ACTIONS(1016), - [anon_sym_null] = ACTIONS(1016), - [anon_sym_true] = ACTIONS(1016), - [anon_sym_false] = ACTIONS(1016), - [aux_sym__val_number_decimal_token1] = ACTIONS(1016), - [aux_sym__val_number_decimal_token2] = ACTIONS(1016), - [aux_sym__val_number_decimal_token3] = ACTIONS(1016), - [aux_sym__val_number_decimal_token4] = ACTIONS(1016), - [aux_sym__val_number_token1] = ACTIONS(1016), - [aux_sym__val_number_token2] = ACTIONS(1016), - [aux_sym__val_number_token3] = ACTIONS(1016), - [aux_sym__val_number_token4] = ACTIONS(1016), - [aux_sym__val_number_token5] = ACTIONS(1016), - [aux_sym__val_number_token6] = ACTIONS(1016), - [anon_sym_0b] = ACTIONS(1016), - [anon_sym_0o] = ACTIONS(1016), - [anon_sym_0x] = ACTIONS(1016), - [sym_val_date] = ACTIONS(1016), - [anon_sym_DQUOTE] = ACTIONS(1012), - [sym__str_single_quotes] = ACTIONS(1012), - [sym__str_back_ticks] = ACTIONS(1012), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1012), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1012), - [anon_sym_err_GT] = ACTIONS(1016), - [anon_sym_out_GT] = ACTIONS(1016), - [anon_sym_e_GT] = ACTIONS(1016), - [anon_sym_o_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT] = ACTIONS(1016), - [anon_sym_err_GT_GT] = ACTIONS(1016), - [anon_sym_out_GT_GT] = ACTIONS(1016), - [anon_sym_e_GT_GT] = ACTIONS(1016), - [anon_sym_o_GT_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), - [aux_sym_unquoted_token1] = ACTIONS(1016), - [aux_sym_unquoted_token4] = ACTIONS(2208), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1012), + [ts_builtin_sym_end] = ACTIONS(2028), + [sym__newline] = ACTIONS(2028), + [anon_sym_SEMI] = ACTIONS(2028), + [anon_sym_PIPE] = ACTIONS(2028), + [anon_sym_err_GT_PIPE] = ACTIONS(2028), + [anon_sym_out_GT_PIPE] = ACTIONS(2028), + [anon_sym_e_GT_PIPE] = ACTIONS(2028), + [anon_sym_o_GT_PIPE] = ACTIONS(2028), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2028), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2028), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2028), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2028), + [anon_sym_LBRACK] = ACTIONS(2028), + [anon_sym_LPAREN] = ACTIONS(2028), + [anon_sym_DOLLAR] = ACTIONS(2026), + [anon_sym_DASH_DASH] = ACTIONS(2028), + [anon_sym_DASH2] = ACTIONS(2026), + [anon_sym_LBRACE] = ACTIONS(2028), + [anon_sym_DOT_DOT] = ACTIONS(2026), + [anon_sym_DOT_DOT2] = ACTIONS(2026), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2026), + [anon_sym_DOT_DOT_LT] = ACTIONS(2026), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2028), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2028), + [anon_sym_null] = ACTIONS(2028), + [anon_sym_true] = ACTIONS(2028), + [anon_sym_false] = ACTIONS(2028), + [aux_sym__val_number_decimal_token1] = ACTIONS(2026), + [aux_sym__val_number_decimal_token2] = ACTIONS(2028), + [aux_sym__val_number_decimal_token3] = ACTIONS(2028), + [aux_sym__val_number_decimal_token4] = ACTIONS(2028), + [aux_sym__val_number_token1] = ACTIONS(2028), + [aux_sym__val_number_token2] = ACTIONS(2028), + [aux_sym__val_number_token3] = ACTIONS(2028), + [aux_sym__val_number_token4] = ACTIONS(2028), + [aux_sym__val_number_token5] = ACTIONS(2028), + [aux_sym__val_number_token6] = ACTIONS(2028), + [anon_sym_0b] = ACTIONS(2026), + [anon_sym_0o] = ACTIONS(2026), + [anon_sym_0x] = ACTIONS(2026), + [sym_val_date] = ACTIONS(2028), + [anon_sym_DQUOTE] = ACTIONS(2028), + [sym__str_single_quotes] = ACTIONS(2028), + [sym__str_back_ticks] = ACTIONS(2028), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2028), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2028), + [anon_sym_err_GT] = ACTIONS(2026), + [anon_sym_out_GT] = ACTIONS(2026), + [anon_sym_e_GT] = ACTIONS(2026), + [anon_sym_o_GT] = ACTIONS(2026), + [anon_sym_err_PLUSout_GT] = ACTIONS(2026), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2026), + [anon_sym_o_PLUSe_GT] = ACTIONS(2026), + [anon_sym_e_PLUSo_GT] = ACTIONS(2026), + [anon_sym_err_GT_GT] = ACTIONS(2028), + [anon_sym_out_GT_GT] = ACTIONS(2028), + [anon_sym_e_GT_GT] = ACTIONS(2028), + [anon_sym_o_GT_GT] = ACTIONS(2028), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2028), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2028), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2028), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2028), + [aux_sym_unquoted_token1] = ACTIONS(2026), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2028), }, [1650] = { [sym_comment] = STATE(1650), - [ts_builtin_sym_end] = ACTIONS(1757), - [sym__newline] = ACTIONS(1757), - [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_DOLLAR] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_DOT] = ACTIONS(4980), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(4982), - [anon_sym_null] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = 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_err_GT] = ACTIONS(1755), - [anon_sym_out_GT] = ACTIONS(1755), - [anon_sym_e_GT] = ACTIONS(1755), - [anon_sym_o_GT] = ACTIONS(1755), - [anon_sym_err_PLUSout_GT] = ACTIONS(1755), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), - [anon_sym_o_PLUSe_GT] = ACTIONS(1755), - [anon_sym_e_PLUSo_GT] = ACTIONS(1755), - [anon_sym_err_GT_GT] = ACTIONS(1757), - [anon_sym_out_GT_GT] = ACTIONS(1757), - [anon_sym_e_GT_GT] = ACTIONS(1757), - [anon_sym_o_GT_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), - [aux_sym_unquoted_token1] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1757), + [sym__newline] = ACTIONS(948), + [anon_sym_SEMI] = ACTIONS(948), + [anon_sym_PIPE] = ACTIONS(948), + [anon_sym_err_GT_PIPE] = ACTIONS(948), + [anon_sym_out_GT_PIPE] = ACTIONS(948), + [anon_sym_e_GT_PIPE] = ACTIONS(948), + [anon_sym_o_GT_PIPE] = ACTIONS(948), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(948), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(948), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(948), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(948), + [anon_sym_LBRACK] = ACTIONS(948), + [anon_sym_LPAREN] = ACTIONS(948), + [anon_sym_RPAREN] = ACTIONS(948), + [anon_sym_DOLLAR] = ACTIONS(946), + [anon_sym_DASH_DASH] = ACTIONS(948), + [anon_sym_DASH2] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(948), + [anon_sym_RBRACE] = ACTIONS(948), + [anon_sym_DOT_DOT] = ACTIONS(946), + [anon_sym_QMARK2] = ACTIONS(948), + [anon_sym_DOT_DOT_EQ] = ACTIONS(948), + [anon_sym_DOT_DOT_LT] = ACTIONS(948), + [anon_sym_null] = ACTIONS(948), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [aux_sym__val_number_decimal_token1] = ACTIONS(946), + [aux_sym__val_number_decimal_token2] = ACTIONS(948), + [aux_sym__val_number_decimal_token3] = ACTIONS(948), + [aux_sym__val_number_decimal_token4] = ACTIONS(948), + [aux_sym__val_number_token1] = ACTIONS(948), + [aux_sym__val_number_token2] = ACTIONS(948), + [aux_sym__val_number_token3] = ACTIONS(948), + [aux_sym__val_number_token4] = ACTIONS(948), + [aux_sym__val_number_token5] = ACTIONS(948), + [aux_sym__val_number_token6] = ACTIONS(948), + [anon_sym_0b] = ACTIONS(946), + [anon_sym_0o] = ACTIONS(946), + [anon_sym_0x] = ACTIONS(946), + [sym_val_date] = ACTIONS(948), + [anon_sym_DQUOTE] = ACTIONS(948), + [sym__str_single_quotes] = ACTIONS(948), + [sym__str_back_ticks] = ACTIONS(948), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(948), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(948), + [anon_sym_DOT2] = ACTIONS(946), + [anon_sym_err_GT] = ACTIONS(946), + [anon_sym_out_GT] = ACTIONS(946), + [anon_sym_e_GT] = ACTIONS(946), + [anon_sym_o_GT] = ACTIONS(946), + [anon_sym_err_PLUSout_GT] = ACTIONS(946), + [anon_sym_out_PLUSerr_GT] = ACTIONS(946), + [anon_sym_o_PLUSe_GT] = ACTIONS(946), + [anon_sym_e_PLUSo_GT] = ACTIONS(946), + [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(946), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(948), }, [1651] = { [sym_comment] = STATE(1651), - [sym__newline] = ACTIONS(4984), - [anon_sym_SEMI] = ACTIONS(4984), - [anon_sym_PIPE] = ACTIONS(4984), - [anon_sym_err_GT_PIPE] = ACTIONS(4984), - [anon_sym_out_GT_PIPE] = ACTIONS(4984), - [anon_sym_e_GT_PIPE] = ACTIONS(4984), - [anon_sym_o_GT_PIPE] = ACTIONS(4984), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4984), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4984), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4984), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4984), - [anon_sym_LBRACK] = ACTIONS(4984), - [anon_sym_LPAREN] = ACTIONS(4984), - [anon_sym_RPAREN] = ACTIONS(4984), - [anon_sym_DOLLAR] = ACTIONS(4986), - [anon_sym_DASH_DASH] = ACTIONS(4984), - [anon_sym_DASH2] = ACTIONS(4986), - [anon_sym_LBRACE] = ACTIONS(4984), - [anon_sym_RBRACE] = ACTIONS(4984), - [anon_sym_DOT_DOT] = ACTIONS(4986), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4984), - [anon_sym_DOT_DOT_LT] = ACTIONS(4984), - [anon_sym_null] = ACTIONS(4984), - [anon_sym_true] = ACTIONS(4984), - [anon_sym_false] = ACTIONS(4984), - [aux_sym__val_number_decimal_token1] = ACTIONS(4986), - [aux_sym__val_number_decimal_token2] = ACTIONS(4984), - [aux_sym__val_number_decimal_token3] = ACTIONS(4984), - [aux_sym__val_number_decimal_token4] = ACTIONS(4984), - [aux_sym__val_number_token1] = ACTIONS(4984), - [aux_sym__val_number_token2] = ACTIONS(4984), - [aux_sym__val_number_token3] = ACTIONS(4984), - [aux_sym__val_number_token4] = ACTIONS(4984), - [aux_sym__val_number_token5] = ACTIONS(4984), - [aux_sym__val_number_token6] = ACTIONS(4984), - [anon_sym_0b] = ACTIONS(4986), - [anon_sym_0o] = ACTIONS(4986), - [anon_sym_0x] = ACTIONS(4986), - [sym_val_date] = ACTIONS(4984), - [anon_sym_DQUOTE] = ACTIONS(4984), - [sym__str_single_quotes] = ACTIONS(4984), - [sym__str_back_ticks] = ACTIONS(4984), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4984), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4984), - [anon_sym_err_GT] = ACTIONS(4986), - [anon_sym_out_GT] = ACTIONS(4986), - [anon_sym_e_GT] = ACTIONS(4986), - [anon_sym_o_GT] = ACTIONS(4986), - [anon_sym_err_PLUSout_GT] = ACTIONS(4986), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4986), - [anon_sym_o_PLUSe_GT] = ACTIONS(4986), - [anon_sym_e_PLUSo_GT] = ACTIONS(4986), - [anon_sym_err_GT_GT] = ACTIONS(4984), - [anon_sym_out_GT_GT] = ACTIONS(4984), - [anon_sym_e_GT_GT] = ACTIONS(4984), - [anon_sym_o_GT_GT] = ACTIONS(4984), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4984), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4984), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4984), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4984), - [anon_sym_EQ2] = ACTIONS(4988), - [aux_sym_unquoted_token1] = ACTIONS(4986), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4984), + [sym__newline] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(970), + [anon_sym_PIPE] = ACTIONS(970), + [anon_sym_err_GT_PIPE] = ACTIONS(970), + [anon_sym_out_GT_PIPE] = ACTIONS(970), + [anon_sym_e_GT_PIPE] = ACTIONS(970), + [anon_sym_o_GT_PIPE] = ACTIONS(970), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(970), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(970), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(970), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(970), + [anon_sym_LPAREN] = ACTIONS(970), + [anon_sym_RPAREN] = ACTIONS(970), + [anon_sym_DOLLAR] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(970), + [anon_sym_DASH2] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(970), + [anon_sym_RBRACE] = ACTIONS(970), + [anon_sym_DOT_DOT] = ACTIONS(968), + [anon_sym_QMARK2] = ACTIONS(4948), + [anon_sym_DOT_DOT_EQ] = ACTIONS(970), + [anon_sym_DOT_DOT_LT] = ACTIONS(970), + [anon_sym_null] = ACTIONS(970), + [anon_sym_true] = ACTIONS(970), + [anon_sym_false] = ACTIONS(970), + [aux_sym__val_number_decimal_token1] = ACTIONS(968), + [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), + [aux_sym__val_number_token4] = ACTIONS(970), + [aux_sym__val_number_token5] = ACTIONS(970), + [aux_sym__val_number_token6] = ACTIONS(970), + [anon_sym_0b] = ACTIONS(968), + [anon_sym_0o] = ACTIONS(968), + [anon_sym_0x] = ACTIONS(968), + [sym_val_date] = ACTIONS(970), + [anon_sym_DQUOTE] = ACTIONS(970), + [sym__str_single_quotes] = ACTIONS(970), + [sym__str_back_ticks] = ACTIONS(970), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(970), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(970), + [anon_sym_DOT2] = ACTIONS(968), + [anon_sym_err_GT] = ACTIONS(968), + [anon_sym_out_GT] = ACTIONS(968), + [anon_sym_e_GT] = ACTIONS(968), + [anon_sym_o_GT] = ACTIONS(968), + [anon_sym_err_PLUSout_GT] = ACTIONS(968), + [anon_sym_out_PLUSerr_GT] = ACTIONS(968), + [anon_sym_o_PLUSe_GT] = ACTIONS(968), + [anon_sym_e_PLUSo_GT] = ACTIONS(968), + [anon_sym_err_GT_GT] = ACTIONS(970), + [anon_sym_out_GT_GT] = ACTIONS(970), + [anon_sym_e_GT_GT] = ACTIONS(970), + [anon_sym_o_GT_GT] = ACTIONS(970), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(970), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(970), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(970), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(970), + [aux_sym_unquoted_token1] = ACTIONS(968), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(970), }, [1652] = { [sym_comment] = STATE(1652), - [sym__newline] = ACTIONS(1785), - [anon_sym_SEMI] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(1785), - [anon_sym_err_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_GT_PIPE] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1785), - [anon_sym_RPAREN] = ACTIONS(1785), - [anon_sym_GT2] = ACTIONS(1783), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_in2] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_STAR2] = ACTIONS(1783), - [anon_sym_and2] = ACTIONS(1785), - [anon_sym_xor2] = ACTIONS(1785), - [anon_sym_or2] = ACTIONS(1785), - [anon_sym_not_DASHin2] = ACTIONS(1785), - [anon_sym_starts_DASHwith2] = ACTIONS(1785), - [anon_sym_ends_DASHwith2] = ACTIONS(1785), - [anon_sym_EQ_EQ2] = ACTIONS(1785), - [anon_sym_BANG_EQ2] = ACTIONS(1785), - [anon_sym_LT2] = ACTIONS(1783), - [anon_sym_LT_EQ2] = ACTIONS(1785), - [anon_sym_GT_EQ2] = ACTIONS(1785), - [anon_sym_EQ_TILDE2] = ACTIONS(1785), - [anon_sym_BANG_TILDE2] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1785), - [anon_sym_STAR_STAR2] = ACTIONS(1785), - [anon_sym_PLUS_PLUS2] = ACTIONS(1785), - [anon_sym_SLASH2] = ACTIONS(1783), - [anon_sym_mod2] = ACTIONS(1785), - [anon_sym_SLASH_SLASH2] = ACTIONS(1785), - [anon_sym_PLUS2] = ACTIONS(1783), - [anon_sym_bit_DASHshl2] = ACTIONS(1785), - [anon_sym_bit_DASHshr2] = ACTIONS(1785), - [anon_sym_bit_DASHand2] = ACTIONS(1785), - [anon_sym_bit_DASHxor2] = ACTIONS(1785), - [anon_sym_bit_DASHor2] = ACTIONS(1785), - [anon_sym_DOT_DOT2] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1785), - [anon_sym_err_GT] = ACTIONS(1783), - [anon_sym_out_GT] = ACTIONS(1783), - [anon_sym_e_GT] = ACTIONS(1783), - [anon_sym_o_GT] = ACTIONS(1783), - [anon_sym_err_PLUSout_GT] = ACTIONS(1783), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1783), - [anon_sym_o_PLUSe_GT] = ACTIONS(1783), - [anon_sym_e_PLUSo_GT] = ACTIONS(1783), - [anon_sym_err_GT_GT] = ACTIONS(1785), - [anon_sym_out_GT_GT] = ACTIONS(1785), - [anon_sym_e_GT_GT] = ACTIONS(1785), - [anon_sym_o_GT_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1785), - [aux_sym_unquoted_token2] = ACTIONS(1783), - [anon_sym_POUND] = ACTIONS(251), + [ts_builtin_sym_end] = ACTIONS(1678), + [sym__newline] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_PIPE] = ACTIONS(1678), + [anon_sym_err_GT_PIPE] = ACTIONS(1678), + [anon_sym_out_GT_PIPE] = ACTIONS(1678), + [anon_sym_e_GT_PIPE] = ACTIONS(1678), + [anon_sym_o_GT_PIPE] = ACTIONS(1678), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1678), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1678), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1678), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_LPAREN] = ACTIONS(1678), + [anon_sym_DOLLAR] = ACTIONS(1676), + [anon_sym_DASH_DASH] = ACTIONS(1678), + [anon_sym_DASH2] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_DOT_DOT] = ACTIONS(1676), + [anon_sym_DOT_DOT2] = ACTIONS(1676), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1676), + [anon_sym_DOT_DOT_LT] = ACTIONS(1676), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1678), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1678), + [anon_sym_null] = ACTIONS(1678), + [anon_sym_true] = ACTIONS(1678), + [anon_sym_false] = ACTIONS(1678), + [aux_sym__val_number_decimal_token1] = ACTIONS(1676), + [aux_sym__val_number_decimal_token2] = ACTIONS(1678), + [aux_sym__val_number_decimal_token3] = ACTIONS(1678), + [aux_sym__val_number_decimal_token4] = ACTIONS(1678), + [aux_sym__val_number_token1] = ACTIONS(1678), + [aux_sym__val_number_token2] = ACTIONS(1678), + [aux_sym__val_number_token3] = ACTIONS(1678), + [aux_sym__val_number_token4] = ACTIONS(1678), + [aux_sym__val_number_token5] = ACTIONS(1678), + [aux_sym__val_number_token6] = ACTIONS(1678), + [anon_sym_0b] = ACTIONS(1676), + [anon_sym_0o] = ACTIONS(1676), + [anon_sym_0x] = ACTIONS(1676), + [sym_val_date] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym__str_single_quotes] = ACTIONS(1678), + [sym__str_back_ticks] = ACTIONS(1678), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1678), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1678), + [anon_sym_err_GT] = ACTIONS(1676), + [anon_sym_out_GT] = ACTIONS(1676), + [anon_sym_e_GT] = ACTIONS(1676), + [anon_sym_o_GT] = ACTIONS(1676), + [anon_sym_err_PLUSout_GT] = ACTIONS(1676), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1676), + [anon_sym_o_PLUSe_GT] = ACTIONS(1676), + [anon_sym_e_PLUSo_GT] = ACTIONS(1676), + [anon_sym_err_GT_GT] = ACTIONS(1678), + [anon_sym_out_GT_GT] = ACTIONS(1678), + [anon_sym_e_GT_GT] = ACTIONS(1678), + [anon_sym_o_GT_GT] = ACTIONS(1678), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1678), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1678), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1678), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1678), + [aux_sym_unquoted_token1] = ACTIONS(1676), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1678), }, [1653] = { [sym_comment] = STATE(1653), - [ts_builtin_sym_end] = ACTIONS(974), - [sym__newline] = ACTIONS(974), - [anon_sym_SEMI] = ACTIONS(974), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_err_GT_PIPE] = ACTIONS(974), - [anon_sym_out_GT_PIPE] = ACTIONS(974), - [anon_sym_e_GT_PIPE] = ACTIONS(974), - [anon_sym_o_GT_PIPE] = ACTIONS(974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(974), - [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_DOLLAR] = ACTIONS(972), - [anon_sym_DASH_DASH] = ACTIONS(974), - [anon_sym_DASH2] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(974), - [anon_sym_DOT_DOT] = ACTIONS(972), - [anon_sym_QMARK2] = ACTIONS(974), - [anon_sym_DOT_DOT_EQ] = ACTIONS(974), - [anon_sym_DOT_DOT_LT] = ACTIONS(974), - [anon_sym_null] = ACTIONS(974), - [anon_sym_true] = ACTIONS(974), - [anon_sym_false] = ACTIONS(974), - [aux_sym__val_number_decimal_token1] = ACTIONS(972), - [aux_sym__val_number_decimal_token2] = ACTIONS(974), - [aux_sym__val_number_decimal_token3] = ACTIONS(974), - [aux_sym__val_number_decimal_token4] = ACTIONS(974), - [aux_sym__val_number_token1] = ACTIONS(974), - [aux_sym__val_number_token2] = ACTIONS(974), - [aux_sym__val_number_token3] = ACTIONS(974), - [aux_sym__val_number_token4] = ACTIONS(974), - [aux_sym__val_number_token5] = ACTIONS(974), - [aux_sym__val_number_token6] = ACTIONS(974), - [anon_sym_0b] = ACTIONS(972), - [anon_sym_0o] = ACTIONS(972), - [anon_sym_0x] = ACTIONS(972), - [sym_val_date] = ACTIONS(974), - [anon_sym_DQUOTE] = ACTIONS(974), - [sym__str_single_quotes] = ACTIONS(974), - [sym__str_back_ticks] = ACTIONS(974), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(974), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(974), - [anon_sym_DOT2] = ACTIONS(972), - [anon_sym_err_GT] = ACTIONS(972), - [anon_sym_out_GT] = ACTIONS(972), - [anon_sym_e_GT] = ACTIONS(972), - [anon_sym_o_GT] = ACTIONS(972), - [anon_sym_err_PLUSout_GT] = ACTIONS(972), - [anon_sym_out_PLUSerr_GT] = ACTIONS(972), - [anon_sym_o_PLUSe_GT] = ACTIONS(972), - [anon_sym_e_PLUSo_GT] = ACTIONS(972), - [anon_sym_err_GT_GT] = ACTIONS(974), - [anon_sym_out_GT_GT] = ACTIONS(974), - [anon_sym_e_GT_GT] = ACTIONS(974), - [anon_sym_o_GT_GT] = ACTIONS(974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(974), - [aux_sym_unquoted_token1] = ACTIONS(972), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(974), + [ts_builtin_sym_end] = ACTIONS(966), + [sym__newline] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_PIPE] = ACTIONS(966), + [anon_sym_err_GT_PIPE] = ACTIONS(966), + [anon_sym_out_GT_PIPE] = ACTIONS(966), + [anon_sym_e_GT_PIPE] = ACTIONS(966), + [anon_sym_o_GT_PIPE] = ACTIONS(966), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(966), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(966), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(966), + [anon_sym_GT2] = ACTIONS(964), + [anon_sym_DASH2] = ACTIONS(966), + [anon_sym_in2] = ACTIONS(966), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_STAR2] = ACTIONS(964), + [anon_sym_QMARK2] = ACTIONS(966), + [anon_sym_and2] = ACTIONS(966), + [anon_sym_xor2] = ACTIONS(966), + [anon_sym_or2] = ACTIONS(966), + [anon_sym_not_DASHin2] = ACTIONS(966), + [anon_sym_has2] = ACTIONS(966), + [anon_sym_not_DASHhas2] = ACTIONS(966), + [anon_sym_starts_DASHwith2] = ACTIONS(966), + [anon_sym_ends_DASHwith2] = ACTIONS(966), + [anon_sym_EQ_EQ2] = ACTIONS(966), + [anon_sym_BANG_EQ2] = ACTIONS(966), + [anon_sym_LT2] = ACTIONS(964), + [anon_sym_LT_EQ2] = ACTIONS(966), + [anon_sym_GT_EQ2] = ACTIONS(966), + [anon_sym_EQ_TILDE2] = ACTIONS(966), + [anon_sym_BANG_TILDE2] = ACTIONS(966), + [anon_sym_STAR_STAR2] = ACTIONS(966), + [anon_sym_PLUS_PLUS2] = ACTIONS(966), + [anon_sym_SLASH2] = ACTIONS(964), + [anon_sym_mod2] = ACTIONS(966), + [anon_sym_SLASH_SLASH2] = ACTIONS(966), + [anon_sym_PLUS2] = ACTIONS(964), + [anon_sym_bit_DASHshl2] = ACTIONS(966), + [anon_sym_bit_DASHshr2] = ACTIONS(966), + [anon_sym_bit_DASHand2] = ACTIONS(966), + [anon_sym_bit_DASHxor2] = ACTIONS(966), + [anon_sym_bit_DASHor2] = ACTIONS(966), + [anon_sym_DOT_DOT2] = ACTIONS(964), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(966), + [anon_sym_DOT_DOT_LT2] = ACTIONS(966), + [anon_sym_DOT2] = ACTIONS(964), + [anon_sym_err_GT] = ACTIONS(964), + [anon_sym_out_GT] = ACTIONS(964), + [anon_sym_e_GT] = ACTIONS(964), + [anon_sym_o_GT] = ACTIONS(964), + [anon_sym_err_PLUSout_GT] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT] = ACTIONS(964), + [anon_sym_o_PLUSe_GT] = ACTIONS(964), + [anon_sym_e_PLUSo_GT] = ACTIONS(964), + [anon_sym_err_GT_GT] = ACTIONS(966), + [anon_sym_out_GT_GT] = ACTIONS(966), + [anon_sym_e_GT_GT] = ACTIONS(966), + [anon_sym_o_GT_GT] = ACTIONS(966), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(966), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(966), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(966), + [anon_sym_POUND] = ACTIONS(247), }, [1654] = { [sym_comment] = STATE(1654), - [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_RPAREN] = ACTIONS(1837), - [anon_sym_GT2] = ACTIONS(1835), - [anon_sym_DASH2] = ACTIONS(1837), - [anon_sym_in2] = ACTIONS(1837), - [anon_sym_LBRACE] = ACTIONS(1837), - [anon_sym_RBRACE] = ACTIONS(1837), - [anon_sym_STAR2] = ACTIONS(1835), - [anon_sym_and2] = ACTIONS(1837), - [anon_sym_xor2] = ACTIONS(1837), - [anon_sym_or2] = ACTIONS(1837), - [anon_sym_not_DASHin2] = ACTIONS(1837), - [anon_sym_starts_DASHwith2] = ACTIONS(1837), - [anon_sym_ends_DASHwith2] = ACTIONS(1837), - [anon_sym_EQ_EQ2] = ACTIONS(1837), - [anon_sym_BANG_EQ2] = ACTIONS(1837), - [anon_sym_LT2] = ACTIONS(1835), - [anon_sym_LT_EQ2] = ACTIONS(1837), - [anon_sym_GT_EQ2] = ACTIONS(1837), - [anon_sym_EQ_TILDE2] = ACTIONS(1837), - [anon_sym_BANG_TILDE2] = ACTIONS(1837), - [anon_sym_LPAREN2] = ACTIONS(1837), - [anon_sym_STAR_STAR2] = ACTIONS(1837), - [anon_sym_PLUS_PLUS2] = ACTIONS(1837), - [anon_sym_SLASH2] = ACTIONS(1835), - [anon_sym_mod2] = ACTIONS(1837), - [anon_sym_SLASH_SLASH2] = ACTIONS(1837), - [anon_sym_PLUS2] = ACTIONS(1835), - [anon_sym_bit_DASHshl2] = ACTIONS(1837), - [anon_sym_bit_DASHshr2] = ACTIONS(1837), - [anon_sym_bit_DASHand2] = ACTIONS(1837), - [anon_sym_bit_DASHxor2] = ACTIONS(1837), - [anon_sym_bit_DASHor2] = ACTIONS(1837), - [anon_sym_DOT_DOT2] = ACTIONS(1835), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1837), - [anon_sym_DOT_DOT_LT2] = 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_token2] = ACTIONS(1835), - [anon_sym_POUND] = ACTIONS(251), + [ts_builtin_sym_end] = ACTIONS(2012), + [sym__newline] = ACTIONS(2012), + [anon_sym_SEMI] = ACTIONS(2012), + [anon_sym_PIPE] = ACTIONS(2012), + [anon_sym_err_GT_PIPE] = ACTIONS(2012), + [anon_sym_out_GT_PIPE] = ACTIONS(2012), + [anon_sym_e_GT_PIPE] = ACTIONS(2012), + [anon_sym_o_GT_PIPE] = ACTIONS(2012), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2012), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2012), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2012), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2012), + [anon_sym_LBRACK] = ACTIONS(2012), + [anon_sym_LPAREN] = ACTIONS(2012), + [anon_sym_DOLLAR] = ACTIONS(2010), + [anon_sym_DASH_DASH] = ACTIONS(2012), + [anon_sym_DASH2] = ACTIONS(2010), + [anon_sym_LBRACE] = ACTIONS(2012), + [anon_sym_DOT_DOT] = ACTIONS(2010), + [anon_sym_DOT_DOT2] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2010), + [anon_sym_DOT_DOT_LT] = ACTIONS(2010), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2012), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2012), + [anon_sym_null] = ACTIONS(2012), + [anon_sym_true] = ACTIONS(2012), + [anon_sym_false] = ACTIONS(2012), + [aux_sym__val_number_decimal_token1] = ACTIONS(2010), + [aux_sym__val_number_decimal_token2] = ACTIONS(2012), + [aux_sym__val_number_decimal_token3] = ACTIONS(2012), + [aux_sym__val_number_decimal_token4] = ACTIONS(2012), + [aux_sym__val_number_token1] = ACTIONS(2012), + [aux_sym__val_number_token2] = ACTIONS(2012), + [aux_sym__val_number_token3] = ACTIONS(2012), + [aux_sym__val_number_token4] = ACTIONS(2012), + [aux_sym__val_number_token5] = ACTIONS(2012), + [aux_sym__val_number_token6] = ACTIONS(2012), + [anon_sym_0b] = ACTIONS(2010), + [anon_sym_0o] = ACTIONS(2010), + [anon_sym_0x] = ACTIONS(2010), + [sym_val_date] = ACTIONS(2012), + [anon_sym_DQUOTE] = ACTIONS(2012), + [sym__str_single_quotes] = ACTIONS(2012), + [sym__str_back_ticks] = ACTIONS(2012), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2012), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2012), + [anon_sym_err_GT] = ACTIONS(2010), + [anon_sym_out_GT] = ACTIONS(2010), + [anon_sym_e_GT] = ACTIONS(2010), + [anon_sym_o_GT] = ACTIONS(2010), + [anon_sym_err_PLUSout_GT] = ACTIONS(2010), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2010), + [anon_sym_o_PLUSe_GT] = ACTIONS(2010), + [anon_sym_e_PLUSo_GT] = ACTIONS(2010), + [anon_sym_err_GT_GT] = ACTIONS(2012), + [anon_sym_out_GT_GT] = ACTIONS(2012), + [anon_sym_e_GT_GT] = ACTIONS(2012), + [anon_sym_o_GT_GT] = ACTIONS(2012), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2012), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2012), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2012), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2012), + [aux_sym_unquoted_token1] = ACTIONS(2010), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2012), }, [1655] = { - [sym_cell_path] = STATE(2111), - [sym_path] = STATE(1889), [sym_comment] = STATE(1655), - [aux_sym_cell_path_repeat1] = STATE(1692), - [ts_builtin_sym_end] = ACTIONS(1721), - [sym__newline] = ACTIONS(1721), - [anon_sym_SEMI] = ACTIONS(1721), - [anon_sym_PIPE] = ACTIONS(1721), - [anon_sym_err_GT_PIPE] = ACTIONS(1721), - [anon_sym_out_GT_PIPE] = ACTIONS(1721), - [anon_sym_e_GT_PIPE] = ACTIONS(1721), - [anon_sym_o_GT_PIPE] = ACTIONS(1721), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1721), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1721), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1721), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1721), - [anon_sym_GT2] = ACTIONS(1719), - [anon_sym_DASH2] = ACTIONS(1721), - [anon_sym_in2] = ACTIONS(1721), - [anon_sym_STAR2] = ACTIONS(1719), - [anon_sym_and2] = ACTIONS(1721), - [anon_sym_xor2] = ACTIONS(1721), - [anon_sym_or2] = ACTIONS(1721), - [anon_sym_not_DASHin2] = ACTIONS(1721), - [anon_sym_starts_DASHwith2] = ACTIONS(1721), - [anon_sym_ends_DASHwith2] = ACTIONS(1721), - [anon_sym_EQ_EQ2] = ACTIONS(1721), - [anon_sym_BANG_EQ2] = ACTIONS(1721), - [anon_sym_LT2] = ACTIONS(1719), - [anon_sym_LT_EQ2] = ACTIONS(1721), - [anon_sym_GT_EQ2] = ACTIONS(1721), - [anon_sym_EQ_TILDE2] = ACTIONS(1721), - [anon_sym_BANG_TILDE2] = ACTIONS(1721), - [anon_sym_STAR_STAR2] = ACTIONS(1721), - [anon_sym_PLUS_PLUS2] = ACTIONS(1721), - [anon_sym_SLASH2] = ACTIONS(1719), - [anon_sym_mod2] = ACTIONS(1721), - [anon_sym_SLASH_SLASH2] = ACTIONS(1721), - [anon_sym_PLUS2] = ACTIONS(1719), - [anon_sym_bit_DASHshl2] = ACTIONS(1721), - [anon_sym_bit_DASHshr2] = ACTIONS(1721), - [anon_sym_bit_DASHand2] = ACTIONS(1721), - [anon_sym_bit_DASHxor2] = ACTIONS(1721), - [anon_sym_bit_DASHor2] = ACTIONS(1721), - [anon_sym_DOT_DOT2] = ACTIONS(1719), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1721), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1721), - [anon_sym_DOT2] = ACTIONS(4956), - [anon_sym_err_GT] = ACTIONS(1719), - [anon_sym_out_GT] = ACTIONS(1719), - [anon_sym_e_GT] = ACTIONS(1719), - [anon_sym_o_GT] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT] = ACTIONS(1719), - [anon_sym_err_GT_GT] = ACTIONS(1721), - [anon_sym_out_GT_GT] = ACTIONS(1721), - [anon_sym_e_GT_GT] = ACTIONS(1721), - [anon_sym_o_GT_GT] = ACTIONS(1721), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1721), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1721), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1721), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1721), - [anon_sym_POUND] = ACTIONS(251), + [ts_builtin_sym_end] = ACTIONS(1768), + [sym__newline] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_err_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_GT_PIPE] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1768), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_LPAREN] = ACTIONS(1766), + [anon_sym_DOLLAR] = ACTIONS(1766), + [anon_sym_DASH_DASH] = ACTIONS(1768), + [anon_sym_DASH2] = ACTIONS(1766), + [anon_sym_LBRACE] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1766), + [anon_sym_LPAREN2] = ACTIONS(1768), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1768), + [anon_sym_DOT_DOT_LT] = ACTIONS(1768), + [aux_sym__immediate_decimal_token2] = ACTIONS(4950), + [anon_sym_null] = ACTIONS(1768), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [aux_sym__val_number_decimal_token1] = ACTIONS(1766), + [aux_sym__val_number_decimal_token2] = ACTIONS(1768), + [aux_sym__val_number_decimal_token3] = ACTIONS(1768), + [aux_sym__val_number_decimal_token4] = ACTIONS(1768), + [aux_sym__val_number_token1] = ACTIONS(1768), + [aux_sym__val_number_token2] = ACTIONS(1768), + [aux_sym__val_number_token3] = ACTIONS(1768), + [aux_sym__val_number_token4] = ACTIONS(1768), + [aux_sym__val_number_token5] = ACTIONS(1768), + [aux_sym__val_number_token6] = ACTIONS(1768), + [anon_sym_0b] = ACTIONS(1766), + [anon_sym_0o] = ACTIONS(1766), + [anon_sym_0x] = ACTIONS(1766), + [sym_val_date] = ACTIONS(1768), + [anon_sym_DQUOTE] = ACTIONS(1768), + [sym__str_single_quotes] = ACTIONS(1768), + [sym__str_back_ticks] = ACTIONS(1768), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1768), + [anon_sym_err_GT] = ACTIONS(1766), + [anon_sym_out_GT] = ACTIONS(1766), + [anon_sym_e_GT] = ACTIONS(1766), + [anon_sym_o_GT] = ACTIONS(1766), + [anon_sym_err_PLUSout_GT] = ACTIONS(1766), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1766), + [anon_sym_o_PLUSe_GT] = ACTIONS(1766), + [anon_sym_e_PLUSo_GT] = ACTIONS(1766), + [anon_sym_err_GT_GT] = ACTIONS(1768), + [anon_sym_out_GT_GT] = ACTIONS(1768), + [anon_sym_e_GT_GT] = ACTIONS(1768), + [anon_sym_o_GT_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1768), + [aux_sym_unquoted_token1] = ACTIONS(1766), + [aux_sym_unquoted_token2] = ACTIONS(1766), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1768), }, [1656] = { - [sym__expr_parenthesized_immediate] = STATE(7344), [sym_comment] = STATE(1656), - [ts_builtin_sym_end] = ACTIONS(4870), - [sym__newline] = ACTIONS(4870), - [anon_sym_SEMI] = ACTIONS(4870), - [anon_sym_PIPE] = ACTIONS(4870), - [anon_sym_err_GT_PIPE] = ACTIONS(4870), - [anon_sym_out_GT_PIPE] = ACTIONS(4870), - [anon_sym_e_GT_PIPE] = ACTIONS(4870), - [anon_sym_o_GT_PIPE] = ACTIONS(4870), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4870), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4870), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4870), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4870), - [anon_sym_LBRACK] = ACTIONS(4870), - [anon_sym_LPAREN] = ACTIONS(4872), - [anon_sym_DOLLAR] = ACTIONS(4872), - [anon_sym_DASH_DASH] = ACTIONS(4870), - [anon_sym_DASH2] = ACTIONS(4872), - [anon_sym_LBRACE] = ACTIONS(4870), - [anon_sym_DOT_DOT] = ACTIONS(4872), - [anon_sym_LPAREN2] = ACTIONS(4181), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4870), - [anon_sym_DOT_DOT_LT] = ACTIONS(4870), - [anon_sym_null] = ACTIONS(4870), - [anon_sym_true] = ACTIONS(4870), - [anon_sym_false] = ACTIONS(4870), - [aux_sym__val_number_decimal_token1] = ACTIONS(4872), - [aux_sym__val_number_decimal_token2] = ACTIONS(4870), - [aux_sym__val_number_decimal_token3] = ACTIONS(4870), - [aux_sym__val_number_decimal_token4] = ACTIONS(4870), - [aux_sym__val_number_token1] = ACTIONS(4870), - [aux_sym__val_number_token2] = ACTIONS(4870), - [aux_sym__val_number_token3] = ACTIONS(4870), - [aux_sym__val_number_token4] = ACTIONS(4870), - [aux_sym__val_number_token5] = ACTIONS(4870), - [aux_sym__val_number_token6] = ACTIONS(4870), - [anon_sym_0b] = ACTIONS(4872), - [anon_sym_0o] = ACTIONS(4872), - [anon_sym_0x] = ACTIONS(4872), - [sym_val_date] = ACTIONS(4870), - [anon_sym_DQUOTE] = ACTIONS(4870), - [sym__str_single_quotes] = ACTIONS(4870), - [sym__str_back_ticks] = ACTIONS(4870), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4870), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4870), - [anon_sym_err_GT] = ACTIONS(4872), - [anon_sym_out_GT] = ACTIONS(4872), - [anon_sym_e_GT] = ACTIONS(4872), - [anon_sym_o_GT] = ACTIONS(4872), - [anon_sym_err_PLUSout_GT] = ACTIONS(4872), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4872), - [anon_sym_o_PLUSe_GT] = ACTIONS(4872), - [anon_sym_e_PLUSo_GT] = ACTIONS(4872), - [anon_sym_err_GT_GT] = ACTIONS(4870), - [anon_sym_out_GT_GT] = ACTIONS(4870), - [anon_sym_e_GT_GT] = ACTIONS(4870), - [anon_sym_o_GT_GT] = ACTIONS(4870), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4870), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4870), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4870), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4870), - [aux_sym_unquoted_token1] = ACTIONS(4872), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4870), + [ts_builtin_sym_end] = ACTIONS(1703), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1703), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_DOT_DOT] = ACTIONS(1701), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1701), + [anon_sym_DOT_DOT_LT] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [anon_sym_null] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1703), + [aux_sym__val_number_token5] = ACTIONS(1703), + [aux_sym__val_number_token6] = ACTIONS(1703), + [anon_sym_0b] = ACTIONS(1701), + [anon_sym_0o] = ACTIONS(1701), + [anon_sym_0x] = ACTIONS(1701), + [sym_val_date] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [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(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token1] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1703), }, [1657] = { - [sym_cmd_identifier] = STATE(4146), - [sym__command_name] = STATE(6267), - [sym_scope_pattern] = STATE(6393), - [sym_wild_card] = STATE(6273), - [sym_command_list] = STATE(6274), - [sym__val_number_decimal] = STATE(3792), - [sym_val_string] = STATE(4121), - [sym__raw_str] = STATE(3668), - [sym__str_double_quotes] = STATE(3668), [sym_comment] = STATE(1657), - [aux_sym_cmd_identifier_token1] = ACTIONS(4940), - [aux_sym_cmd_identifier_token2] = ACTIONS(4942), - [aux_sym_cmd_identifier_token3] = ACTIONS(4942), - [aux_sym_cmd_identifier_token4] = ACTIONS(4942), - [aux_sym_cmd_identifier_token5] = ACTIONS(4942), - [aux_sym_cmd_identifier_token6] = ACTIONS(4942), - [aux_sym_cmd_identifier_token7] = ACTIONS(4942), - [aux_sym_cmd_identifier_token8] = ACTIONS(4942), - [aux_sym_cmd_identifier_token9] = ACTIONS(4940), - [aux_sym_cmd_identifier_token10] = ACTIONS(4942), - [aux_sym_cmd_identifier_token11] = ACTIONS(4942), - [aux_sym_cmd_identifier_token12] = ACTIONS(4942), - [aux_sym_cmd_identifier_token13] = ACTIONS(4940), - [aux_sym_cmd_identifier_token14] = ACTIONS(4942), - [aux_sym_cmd_identifier_token15] = ACTIONS(4940), - [aux_sym_cmd_identifier_token16] = ACTIONS(4942), - [aux_sym_cmd_identifier_token17] = ACTIONS(4942), - [aux_sym_cmd_identifier_token18] = ACTIONS(4942), - [aux_sym_cmd_identifier_token19] = ACTIONS(4942), - [aux_sym_cmd_identifier_token20] = ACTIONS(4942), - [aux_sym_cmd_identifier_token21] = ACTIONS(4942), - [aux_sym_cmd_identifier_token22] = ACTIONS(4942), - [aux_sym_cmd_identifier_token23] = ACTIONS(4942), - [aux_sym_cmd_identifier_token24] = ACTIONS(4942), - [aux_sym_cmd_identifier_token25] = ACTIONS(4942), - [aux_sym_cmd_identifier_token26] = ACTIONS(4942), - [aux_sym_cmd_identifier_token27] = ACTIONS(4942), - [aux_sym_cmd_identifier_token28] = ACTIONS(4942), - [aux_sym_cmd_identifier_token29] = ACTIONS(4942), - [aux_sym_cmd_identifier_token30] = ACTIONS(4942), - [aux_sym_cmd_identifier_token31] = ACTIONS(4942), - [aux_sym_cmd_identifier_token32] = ACTIONS(4942), - [aux_sym_cmd_identifier_token33] = ACTIONS(4942), - [aux_sym_cmd_identifier_token34] = ACTIONS(4940), - [aux_sym_cmd_identifier_token35] = ACTIONS(4942), - [aux_sym_cmd_identifier_token36] = ACTIONS(4942), - [aux_sym_cmd_identifier_token37] = ACTIONS(4942), - [aux_sym_cmd_identifier_token38] = ACTIONS(4940), - [aux_sym_cmd_identifier_token39] = ACTIONS(4942), - [aux_sym_cmd_identifier_token40] = ACTIONS(4942), - [sym__newline] = ACTIONS(4990), - [anon_sym_SEMI] = ACTIONS(4990), - [anon_sym_LBRACK] = ACTIONS(4946), - [anon_sym_RPAREN] = ACTIONS(4990), - [anon_sym_RBRACE] = ACTIONS(4990), - [anon_sym_STAR2] = ACTIONS(4948), - [aux_sym__val_number_decimal_token1] = ACTIONS(4950), - [aux_sym__val_number_decimal_token2] = ACTIONS(4950), - [aux_sym__val_number_decimal_token3] = ACTIONS(4952), - [aux_sym__val_number_decimal_token4] = ACTIONS(4954), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym__str_single_quotes] = ACTIONS(1288), - [sym__str_back_ticks] = ACTIONS(1288), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1290), + [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(1806), + [anon_sym_RPAREN] = ACTIONS(1814), + [anon_sym_DOLLAR] = ACTIONS(1806), + [anon_sym_DASH_DASH] = ACTIONS(1814), + [anon_sym_DASH2] = ACTIONS(1806), + [anon_sym_LBRACE] = ACTIONS(1814), + [anon_sym_RBRACE] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1806), + [anon_sym_LPAREN2] = ACTIONS(1808), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1814), + [anon_sym_DOT_DOT_LT] = ACTIONS(1814), + [anon_sym_null] = ACTIONS(1814), + [anon_sym_true] = ACTIONS(1814), + [anon_sym_false] = ACTIONS(1814), + [aux_sym__val_number_decimal_token1] = ACTIONS(1806), + [aux_sym__val_number_decimal_token2] = ACTIONS(1814), + [aux_sym__val_number_decimal_token3] = ACTIONS(1814), + [aux_sym__val_number_decimal_token4] = ACTIONS(1814), + [aux_sym__val_number_token1] = ACTIONS(1814), + [aux_sym__val_number_token2] = ACTIONS(1814), + [aux_sym__val_number_token3] = ACTIONS(1814), + [aux_sym__val_number_token4] = ACTIONS(1814), + [aux_sym__val_number_token5] = ACTIONS(1814), + [aux_sym__val_number_token6] = ACTIONS(1814), + [anon_sym_0b] = ACTIONS(1806), + [anon_sym_0o] = ACTIONS(1806), + [anon_sym_0x] = ACTIONS(1806), + [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(1806), + [anon_sym_out_GT] = ACTIONS(1806), + [anon_sym_e_GT] = ACTIONS(1806), + [anon_sym_o_GT] = ACTIONS(1806), + [anon_sym_err_PLUSout_GT] = ACTIONS(1806), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1806), + [anon_sym_o_PLUSe_GT] = ACTIONS(1806), + [anon_sym_e_PLUSo_GT] = ACTIONS(1806), + [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(1806), + [aux_sym_unquoted_token2] = ACTIONS(1457), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1814), }, [1658] = { [sym_comment] = STATE(1658), - [ts_builtin_sym_end] = ACTIONS(986), - [sym__newline] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_PIPE] = ACTIONS(986), - [anon_sym_err_GT_PIPE] = ACTIONS(986), - [anon_sym_out_GT_PIPE] = ACTIONS(986), - [anon_sym_e_GT_PIPE] = ACTIONS(986), - [anon_sym_o_GT_PIPE] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(986), - [anon_sym_DOLLAR] = ACTIONS(984), - [anon_sym_DASH_DASH] = ACTIONS(986), - [anon_sym_DASH2] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(986), - [anon_sym_DOT_DOT] = ACTIONS(984), - [anon_sym_QMARK2] = ACTIONS(986), - [anon_sym_DOT_DOT_EQ] = ACTIONS(986), - [anon_sym_DOT_DOT_LT] = ACTIONS(986), - [anon_sym_null] = ACTIONS(986), - [anon_sym_true] = ACTIONS(986), - [anon_sym_false] = ACTIONS(986), - [aux_sym__val_number_decimal_token1] = ACTIONS(984), - [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), - [aux_sym__val_number_token4] = ACTIONS(986), - [aux_sym__val_number_token5] = ACTIONS(986), - [aux_sym__val_number_token6] = ACTIONS(986), - [anon_sym_0b] = ACTIONS(984), - [anon_sym_0o] = ACTIONS(984), - [anon_sym_0x] = ACTIONS(984), - [sym_val_date] = ACTIONS(986), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym__str_single_quotes] = ACTIONS(986), - [sym__str_back_ticks] = ACTIONS(986), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(986), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(986), - [anon_sym_DOT2] = ACTIONS(984), - [anon_sym_err_GT] = ACTIONS(984), - [anon_sym_out_GT] = ACTIONS(984), - [anon_sym_e_GT] = ACTIONS(984), - [anon_sym_o_GT] = ACTIONS(984), - [anon_sym_err_PLUSout_GT] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT] = ACTIONS(984), - [anon_sym_o_PLUSe_GT] = ACTIONS(984), - [anon_sym_e_PLUSo_GT] = ACTIONS(984), - [anon_sym_err_GT_GT] = ACTIONS(986), - [anon_sym_out_GT_GT] = ACTIONS(986), - [anon_sym_e_GT_GT] = ACTIONS(986), - [anon_sym_o_GT_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), - [aux_sym_unquoted_token1] = ACTIONS(984), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(986), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_RPAREN] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1703), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_DOT_DOT] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT] = ACTIONS(1703), + [anon_sym_null] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1703), + [aux_sym__val_number_token5] = ACTIONS(1703), + [aux_sym__val_number_token6] = ACTIONS(1703), + [anon_sym_0b] = ACTIONS(1701), + [anon_sym_0o] = ACTIONS(1701), + [anon_sym_0x] = ACTIONS(1701), + [sym_val_date] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [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(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token1] = ACTIONS(1701), + [aux_sym_unquoted_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1703), }, [1659] = { [sym_comment] = STATE(1659), - [ts_builtin_sym_end] = ACTIONS(1713), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1713), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_DOT_DOT] = ACTIONS(1711), - [anon_sym_LPAREN2] = ACTIONS(1713), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT] = ACTIONS(1713), - [anon_sym_null] = ACTIONS(1713), - [anon_sym_true] = ACTIONS(1713), - [anon_sym_false] = ACTIONS(1713), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1713), - [aux_sym__val_number_decimal_token3] = ACTIONS(1713), - [aux_sym__val_number_decimal_token4] = ACTIONS(1713), - [aux_sym__val_number_token1] = ACTIONS(1713), - [aux_sym__val_number_token2] = ACTIONS(1713), - [aux_sym__val_number_token3] = ACTIONS(1713), - [aux_sym__val_number_token4] = ACTIONS(1713), - [aux_sym__val_number_token5] = ACTIONS(1713), - [aux_sym__val_number_token6] = ACTIONS(1713), - [anon_sym_0b] = ACTIONS(1711), - [anon_sym_0o] = ACTIONS(1711), - [anon_sym_0x] = ACTIONS(1711), - [sym_val_date] = ACTIONS(1713), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym__str_single_quotes] = ACTIONS(1713), - [sym__str_back_ticks] = ACTIONS(1713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1713), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [aux_sym_unquoted_token1] = ACTIONS(1711), - [aux_sym_unquoted_token2] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1713), + [sym__newline] = ACTIONS(1651), + [anon_sym_SEMI] = ACTIONS(1651), + [anon_sym_PIPE] = ACTIONS(1651), + [anon_sym_err_GT_PIPE] = ACTIONS(1651), + [anon_sym_out_GT_PIPE] = ACTIONS(1651), + [anon_sym_e_GT_PIPE] = ACTIONS(1651), + [anon_sym_o_GT_PIPE] = ACTIONS(1651), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1651), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1651), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1651), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1651), + [anon_sym_LPAREN] = ACTIONS(1651), + [anon_sym_RPAREN] = ACTIONS(1651), + [anon_sym_DOLLAR] = ACTIONS(1639), + [anon_sym_DASH_DASH] = ACTIONS(1651), + [anon_sym_DASH2] = ACTIONS(1639), + [anon_sym_LBRACE] = ACTIONS(1651), + [anon_sym_RBRACE] = ACTIONS(1651), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1651), + [anon_sym_DOT_DOT_LT] = ACTIONS(1651), + [anon_sym_null] = ACTIONS(1651), + [anon_sym_true] = ACTIONS(1651), + [anon_sym_false] = ACTIONS(1651), + [aux_sym__val_number_decimal_token1] = ACTIONS(1639), + [aux_sym__val_number_decimal_token2] = ACTIONS(1651), + [aux_sym__val_number_decimal_token3] = ACTIONS(1651), + [aux_sym__val_number_decimal_token4] = ACTIONS(1651), + [aux_sym__val_number_token1] = ACTIONS(1651), + [aux_sym__val_number_token2] = ACTIONS(1651), + [aux_sym__val_number_token3] = ACTIONS(1651), + [aux_sym__val_number_token4] = ACTIONS(1651), + [aux_sym__val_number_token5] = ACTIONS(1651), + [aux_sym__val_number_token6] = ACTIONS(1651), + [anon_sym_0b] = ACTIONS(1639), + [anon_sym_0o] = ACTIONS(1639), + [anon_sym_0x] = ACTIONS(1639), + [sym_val_date] = ACTIONS(1651), + [anon_sym_DQUOTE] = ACTIONS(1651), + [sym__str_single_quotes] = ACTIONS(1651), + [sym__str_back_ticks] = ACTIONS(1651), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1651), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1651), + [anon_sym_err_GT] = ACTIONS(1639), + [anon_sym_out_GT] = ACTIONS(1639), + [anon_sym_e_GT] = ACTIONS(1639), + [anon_sym_o_GT] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT] = ACTIONS(1639), + [anon_sym_err_GT_GT] = ACTIONS(1651), + [anon_sym_out_GT_GT] = ACTIONS(1651), + [anon_sym_e_GT_GT] = ACTIONS(1651), + [anon_sym_o_GT_GT] = ACTIONS(1651), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1651), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1651), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1651), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1651), + [aux_sym_unquoted_token1] = ACTIONS(1639), + [aux_sym_unquoted_token2] = ACTIONS(4462), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1651), }, [1660] = { + [sym__expr_parenthesized_immediate] = STATE(7477), [sym_comment] = STATE(1660), - [sym__newline] = ACTIONS(4992), - [anon_sym_SEMI] = ACTIONS(4992), - [anon_sym_PIPE] = ACTIONS(4992), - [anon_sym_err_GT_PIPE] = ACTIONS(4992), - [anon_sym_out_GT_PIPE] = ACTIONS(4992), - [anon_sym_e_GT_PIPE] = ACTIONS(4992), - [anon_sym_o_GT_PIPE] = ACTIONS(4992), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4992), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4992), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4992), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4992), - [anon_sym_LBRACK] = ACTIONS(4992), - [anon_sym_LPAREN] = ACTIONS(4994), - [anon_sym_RPAREN] = ACTIONS(4992), - [anon_sym_DOLLAR] = ACTIONS(4994), - [anon_sym_DASH_DASH] = ACTIONS(4992), - [anon_sym_DASH2] = ACTIONS(4994), - [anon_sym_LBRACE] = ACTIONS(4992), - [anon_sym_RBRACE] = ACTIONS(4992), - [anon_sym_DOT_DOT] = ACTIONS(4994), - [anon_sym_LPAREN2] = ACTIONS(4992), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4992), - [anon_sym_DOT_DOT_LT] = ACTIONS(4992), - [anon_sym_null] = ACTIONS(4992), - [anon_sym_true] = ACTIONS(4992), - [anon_sym_false] = ACTIONS(4992), - [aux_sym__val_number_decimal_token1] = ACTIONS(4994), - [aux_sym__val_number_decimal_token2] = ACTIONS(4992), - [aux_sym__val_number_decimal_token3] = ACTIONS(4992), - [aux_sym__val_number_decimal_token4] = ACTIONS(4992), - [aux_sym__val_number_token1] = ACTIONS(4992), - [aux_sym__val_number_token2] = ACTIONS(4992), - [aux_sym__val_number_token3] = ACTIONS(4992), - [aux_sym__val_number_token4] = ACTIONS(4992), - [aux_sym__val_number_token5] = ACTIONS(4992), - [aux_sym__val_number_token6] = ACTIONS(4992), - [anon_sym_0b] = ACTIONS(4994), - [anon_sym_0o] = ACTIONS(4994), - [anon_sym_0x] = ACTIONS(4994), - [sym_val_date] = ACTIONS(4992), - [anon_sym_DQUOTE] = ACTIONS(4992), - [sym__str_single_quotes] = ACTIONS(4992), - [sym__str_back_ticks] = ACTIONS(4992), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4992), - [anon_sym_err_GT] = ACTIONS(4994), - [anon_sym_out_GT] = ACTIONS(4994), - [anon_sym_e_GT] = ACTIONS(4994), - [anon_sym_o_GT] = ACTIONS(4994), - [anon_sym_err_PLUSout_GT] = ACTIONS(4994), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4994), - [anon_sym_o_PLUSe_GT] = ACTIONS(4994), - [anon_sym_e_PLUSo_GT] = ACTIONS(4994), - [anon_sym_err_GT_GT] = ACTIONS(4992), - [anon_sym_out_GT_GT] = ACTIONS(4992), - [anon_sym_e_GT_GT] = ACTIONS(4992), - [anon_sym_o_GT_GT] = ACTIONS(4992), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4992), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4992), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4992), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4992), - [aux_sym_unquoted_token1] = ACTIONS(4994), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4992), + [ts_builtin_sym_end] = ACTIONS(4891), + [sym__newline] = ACTIONS(4891), + [anon_sym_SEMI] = ACTIONS(4891), + [anon_sym_PIPE] = ACTIONS(4891), + [anon_sym_err_GT_PIPE] = ACTIONS(4891), + [anon_sym_out_GT_PIPE] = ACTIONS(4891), + [anon_sym_e_GT_PIPE] = ACTIONS(4891), + [anon_sym_o_GT_PIPE] = ACTIONS(4891), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4891), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4891), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4891), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4891), + [anon_sym_LBRACK] = ACTIONS(4891), + [anon_sym_LPAREN] = ACTIONS(4893), + [anon_sym_DOLLAR] = ACTIONS(4893), + [anon_sym_DASH_DASH] = ACTIONS(4891), + [anon_sym_DASH2] = ACTIONS(4893), + [anon_sym_LBRACE] = ACTIONS(4891), + [anon_sym_DOT_DOT] = ACTIONS(4893), + [anon_sym_LPAREN2] = ACTIONS(4452), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4891), + [anon_sym_DOT_DOT_LT] = ACTIONS(4891), + [anon_sym_null] = ACTIONS(4891), + [anon_sym_true] = ACTIONS(4891), + [anon_sym_false] = ACTIONS(4891), + [aux_sym__val_number_decimal_token1] = ACTIONS(4893), + [aux_sym__val_number_decimal_token2] = ACTIONS(4891), + [aux_sym__val_number_decimal_token3] = ACTIONS(4891), + [aux_sym__val_number_decimal_token4] = ACTIONS(4891), + [aux_sym__val_number_token1] = ACTIONS(4891), + [aux_sym__val_number_token2] = ACTIONS(4891), + [aux_sym__val_number_token3] = ACTIONS(4891), + [aux_sym__val_number_token4] = ACTIONS(4891), + [aux_sym__val_number_token5] = ACTIONS(4891), + [aux_sym__val_number_token6] = ACTIONS(4891), + [anon_sym_0b] = ACTIONS(4893), + [anon_sym_0o] = ACTIONS(4893), + [anon_sym_0x] = ACTIONS(4893), + [sym_val_date] = ACTIONS(4891), + [anon_sym_DQUOTE] = ACTIONS(4891), + [sym__str_single_quotes] = ACTIONS(4891), + [sym__str_back_ticks] = ACTIONS(4891), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4891), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4891), + [anon_sym_err_GT] = ACTIONS(4893), + [anon_sym_out_GT] = ACTIONS(4893), + [anon_sym_e_GT] = ACTIONS(4893), + [anon_sym_o_GT] = ACTIONS(4893), + [anon_sym_err_PLUSout_GT] = ACTIONS(4893), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4893), + [anon_sym_o_PLUSe_GT] = ACTIONS(4893), + [anon_sym_e_PLUSo_GT] = ACTIONS(4893), + [anon_sym_err_GT_GT] = ACTIONS(4891), + [anon_sym_out_GT_GT] = ACTIONS(4891), + [anon_sym_e_GT_GT] = ACTIONS(4891), + [anon_sym_o_GT_GT] = ACTIONS(4891), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4891), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4891), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4891), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4891), + [aux_sym_unquoted_token1] = ACTIONS(4893), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4891), }, [1661] = { + [sym__expr_parenthesized_immediate] = STATE(7477), [sym_comment] = STATE(1661), - [ts_builtin_sym_end] = ACTIONS(4860), - [sym_long_flag_identifier] = ACTIONS(4996), - [sym__newline] = ACTIONS(4860), - [anon_sym_SEMI] = ACTIONS(4860), - [anon_sym_PIPE] = ACTIONS(4860), - [anon_sym_err_GT_PIPE] = ACTIONS(4860), - [anon_sym_out_GT_PIPE] = ACTIONS(4860), - [anon_sym_e_GT_PIPE] = ACTIONS(4860), - [anon_sym_o_GT_PIPE] = ACTIONS(4860), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4860), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4860), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4860), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4860), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_DOLLAR] = ACTIONS(4862), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_DASH2] = ACTIONS(4862), - [anon_sym_LBRACE] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4862), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4860), - [anon_sym_DOT_DOT_LT] = ACTIONS(4860), - [anon_sym_null] = ACTIONS(4862), - [anon_sym_true] = ACTIONS(4862), - [anon_sym_false] = ACTIONS(4862), - [aux_sym__val_number_decimal_token1] = ACTIONS(4862), - [aux_sym__val_number_decimal_token2] = ACTIONS(4860), - [aux_sym__val_number_decimal_token3] = ACTIONS(4860), - [aux_sym__val_number_decimal_token4] = ACTIONS(4860), - [aux_sym__val_number_token1] = ACTIONS(4862), - [aux_sym__val_number_token2] = ACTIONS(4862), - [aux_sym__val_number_token3] = ACTIONS(4862), - [aux_sym__val_number_token4] = ACTIONS(4862), - [aux_sym__val_number_token5] = ACTIONS(4860), - [aux_sym__val_number_token6] = ACTIONS(4862), - [anon_sym_0b] = ACTIONS(4862), - [anon_sym_0o] = ACTIONS(4862), - [anon_sym_0x] = ACTIONS(4862), - [sym_val_date] = ACTIONS(4862), - [anon_sym_DQUOTE] = ACTIONS(4860), - [sym__str_single_quotes] = ACTIONS(4860), - [sym__str_back_ticks] = ACTIONS(4860), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4860), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4860), - [anon_sym_err_GT] = ACTIONS(4862), - [anon_sym_out_GT] = ACTIONS(4862), - [anon_sym_e_GT] = ACTIONS(4862), - [anon_sym_o_GT] = ACTIONS(4862), - [anon_sym_err_PLUSout_GT] = ACTIONS(4862), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4862), - [anon_sym_o_PLUSe_GT] = ACTIONS(4862), - [anon_sym_e_PLUSo_GT] = ACTIONS(4862), - [anon_sym_err_GT_GT] = ACTIONS(4860), - [anon_sym_out_GT_GT] = ACTIONS(4860), - [anon_sym_e_GT_GT] = ACTIONS(4860), - [anon_sym_o_GT_GT] = ACTIONS(4860), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4860), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4860), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4860), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4860), - [anon_sym_EQ2] = ACTIONS(4998), - [aux_sym_unquoted_token1] = ACTIONS(4862), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4860), + [ts_builtin_sym_end] = ACTIONS(4899), + [sym__newline] = ACTIONS(4899), + [anon_sym_SEMI] = ACTIONS(4899), + [anon_sym_PIPE] = ACTIONS(4899), + [anon_sym_err_GT_PIPE] = ACTIONS(4899), + [anon_sym_out_GT_PIPE] = ACTIONS(4899), + [anon_sym_e_GT_PIPE] = ACTIONS(4899), + [anon_sym_o_GT_PIPE] = ACTIONS(4899), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4899), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4899), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4899), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4899), + [anon_sym_LBRACK] = ACTIONS(4899), + [anon_sym_LPAREN] = ACTIONS(4901), + [anon_sym_DOLLAR] = ACTIONS(4901), + [anon_sym_DASH_DASH] = ACTIONS(4899), + [anon_sym_DASH2] = ACTIONS(4901), + [anon_sym_LBRACE] = ACTIONS(4899), + [anon_sym_DOT_DOT] = ACTIONS(4901), + [anon_sym_LPAREN2] = ACTIONS(4452), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4899), + [anon_sym_DOT_DOT_LT] = ACTIONS(4899), + [anon_sym_null] = ACTIONS(4899), + [anon_sym_true] = ACTIONS(4899), + [anon_sym_false] = ACTIONS(4899), + [aux_sym__val_number_decimal_token1] = ACTIONS(4901), + [aux_sym__val_number_decimal_token2] = ACTIONS(4899), + [aux_sym__val_number_decimal_token3] = ACTIONS(4899), + [aux_sym__val_number_decimal_token4] = ACTIONS(4899), + [aux_sym__val_number_token1] = ACTIONS(4899), + [aux_sym__val_number_token2] = ACTIONS(4899), + [aux_sym__val_number_token3] = ACTIONS(4899), + [aux_sym__val_number_token4] = ACTIONS(4899), + [aux_sym__val_number_token5] = ACTIONS(4899), + [aux_sym__val_number_token6] = ACTIONS(4899), + [anon_sym_0b] = ACTIONS(4901), + [anon_sym_0o] = ACTIONS(4901), + [anon_sym_0x] = ACTIONS(4901), + [sym_val_date] = ACTIONS(4899), + [anon_sym_DQUOTE] = ACTIONS(4899), + [sym__str_single_quotes] = ACTIONS(4899), + [sym__str_back_ticks] = ACTIONS(4899), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4899), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4899), + [anon_sym_err_GT] = ACTIONS(4901), + [anon_sym_out_GT] = ACTIONS(4901), + [anon_sym_e_GT] = ACTIONS(4901), + [anon_sym_o_GT] = ACTIONS(4901), + [anon_sym_err_PLUSout_GT] = ACTIONS(4901), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4901), + [anon_sym_o_PLUSe_GT] = ACTIONS(4901), + [anon_sym_e_PLUSo_GT] = ACTIONS(4901), + [anon_sym_err_GT_GT] = ACTIONS(4899), + [anon_sym_out_GT_GT] = ACTIONS(4899), + [anon_sym_e_GT_GT] = ACTIONS(4899), + [anon_sym_o_GT_GT] = ACTIONS(4899), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4899), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4899), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4899), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4899), + [aux_sym_unquoted_token1] = ACTIONS(4901), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4899), }, [1662] = { [sym_comment] = STATE(1662), - [ts_builtin_sym_end] = ACTIONS(2228), - [sym__newline] = ACTIONS(2228), - [anon_sym_SEMI] = ACTIONS(2228), - [anon_sym_PIPE] = ACTIONS(2228), - [anon_sym_err_GT_PIPE] = ACTIONS(2228), - [anon_sym_out_GT_PIPE] = ACTIONS(2228), - [anon_sym_e_GT_PIPE] = ACTIONS(2228), - [anon_sym_o_GT_PIPE] = ACTIONS(2228), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2228), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2228), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2228), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2228), - [anon_sym_LBRACK] = ACTIONS(2228), - [anon_sym_LPAREN] = ACTIONS(2224), - [anon_sym_DOLLAR] = ACTIONS(2224), - [anon_sym_DASH_DASH] = ACTIONS(2228), - [anon_sym_DASH2] = ACTIONS(2224), - [anon_sym_LBRACE] = ACTIONS(2228), - [anon_sym_DOT_DOT] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2226), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2228), - [anon_sym_DOT_DOT_LT] = ACTIONS(2228), - [anon_sym_null] = ACTIONS(2228), - [anon_sym_true] = ACTIONS(2228), - [anon_sym_false] = ACTIONS(2228), - [aux_sym__val_number_decimal_token1] = ACTIONS(2224), - [aux_sym__val_number_decimal_token2] = ACTIONS(2228), - [aux_sym__val_number_decimal_token3] = ACTIONS(2228), - [aux_sym__val_number_decimal_token4] = ACTIONS(2228), - [aux_sym__val_number_token1] = ACTIONS(2228), - [aux_sym__val_number_token2] = ACTIONS(2228), - [aux_sym__val_number_token3] = ACTIONS(2228), - [aux_sym__val_number_token4] = ACTIONS(2228), - [aux_sym__val_number_token5] = ACTIONS(2228), - [aux_sym__val_number_token6] = ACTIONS(2228), - [anon_sym_0b] = ACTIONS(2224), - [anon_sym_0o] = ACTIONS(2224), - [anon_sym_0x] = ACTIONS(2224), - [sym_val_date] = ACTIONS(2228), - [anon_sym_DQUOTE] = ACTIONS(2228), - [sym__str_single_quotes] = ACTIONS(2228), - [sym__str_back_ticks] = ACTIONS(2228), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2228), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2228), - [anon_sym_err_GT] = ACTIONS(2224), - [anon_sym_out_GT] = ACTIONS(2224), - [anon_sym_e_GT] = ACTIONS(2224), - [anon_sym_o_GT] = ACTIONS(2224), - [anon_sym_err_PLUSout_GT] = ACTIONS(2224), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2224), - [anon_sym_o_PLUSe_GT] = ACTIONS(2224), - [anon_sym_e_PLUSo_GT] = ACTIONS(2224), - [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(2224), - [aux_sym_unquoted_token2] = ACTIONS(1540), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2228), + [ts_builtin_sym_end] = ACTIONS(4861), + [sym__newline] = ACTIONS(4861), + [anon_sym_SEMI] = ACTIONS(4861), + [anon_sym_PIPE] = ACTIONS(4861), + [anon_sym_err_GT_PIPE] = ACTIONS(4861), + [anon_sym_out_GT_PIPE] = ACTIONS(4861), + [anon_sym_e_GT_PIPE] = ACTIONS(4861), + [anon_sym_o_GT_PIPE] = ACTIONS(4861), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4861), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4861), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4861), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4861), + [anon_sym_LBRACK] = ACTIONS(4861), + [anon_sym_LPAREN] = ACTIONS(4861), + [anon_sym_DOLLAR] = ACTIONS(4863), + [anon_sym_DASH_DASH] = ACTIONS(4863), + [anon_sym_DASH2] = ACTIONS(4863), + [anon_sym_LBRACE] = ACTIONS(4861), + [anon_sym_DOT_DOT] = ACTIONS(4863), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4861), + [anon_sym_DOT_DOT_LT] = ACTIONS(4861), + [anon_sym_null] = ACTIONS(4863), + [anon_sym_true] = ACTIONS(4863), + [anon_sym_false] = ACTIONS(4863), + [aux_sym__val_number_decimal_token1] = ACTIONS(4863), + [aux_sym__val_number_decimal_token2] = ACTIONS(4863), + [aux_sym__val_number_decimal_token3] = ACTIONS(4861), + [aux_sym__val_number_decimal_token4] = ACTIONS(4861), + [aux_sym__val_number_token1] = ACTIONS(4863), + [aux_sym__val_number_token2] = ACTIONS(4863), + [aux_sym__val_number_token3] = ACTIONS(4863), + [aux_sym__val_number_token4] = ACTIONS(4863), + [aux_sym__val_number_token5] = ACTIONS(4863), + [aux_sym__val_number_token6] = ACTIONS(4863), + [anon_sym_0b] = ACTIONS(4863), + [anon_sym_0o] = ACTIONS(4863), + [anon_sym_0x] = ACTIONS(4863), + [sym_val_date] = ACTIONS(4863), + [anon_sym_DQUOTE] = ACTIONS(4861), + [sym__str_single_quotes] = ACTIONS(4861), + [sym__str_back_ticks] = ACTIONS(4861), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4861), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4861), + [anon_sym_err_GT] = ACTIONS(4863), + [anon_sym_out_GT] = ACTIONS(4863), + [anon_sym_e_GT] = ACTIONS(4863), + [anon_sym_o_GT] = ACTIONS(4863), + [anon_sym_err_PLUSout_GT] = ACTIONS(4863), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4863), + [anon_sym_o_PLUSe_GT] = ACTIONS(4863), + [anon_sym_e_PLUSo_GT] = ACTIONS(4863), + [anon_sym_err_GT_GT] = ACTIONS(4861), + [anon_sym_out_GT_GT] = ACTIONS(4861), + [anon_sym_e_GT_GT] = ACTIONS(4861), + [anon_sym_o_GT_GT] = ACTIONS(4861), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4861), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4861), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4861), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4861), + [anon_sym_EQ2] = ACTIONS(4952), + [sym_short_flag_identifier] = ACTIONS(4954), + [aux_sym_unquoted_token1] = ACTIONS(4863), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4861), }, [1663] = { - [sym__expr_parenthesized_immediate] = STATE(7464), [sym_comment] = STATE(1663), - [sym__newline] = ACTIONS(5000), - [anon_sym_SEMI] = ACTIONS(5000), - [anon_sym_PIPE] = ACTIONS(5000), - [anon_sym_err_GT_PIPE] = ACTIONS(5000), - [anon_sym_out_GT_PIPE] = ACTIONS(5000), - [anon_sym_e_GT_PIPE] = ACTIONS(5000), - [anon_sym_o_GT_PIPE] = ACTIONS(5000), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5000), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5000), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5000), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5000), - [anon_sym_LBRACK] = ACTIONS(5000), - [anon_sym_LPAREN] = ACTIONS(5002), - [anon_sym_RPAREN] = ACTIONS(5000), - [anon_sym_DOLLAR] = ACTIONS(5002), - [anon_sym_DASH_DASH] = ACTIONS(5000), - [anon_sym_DASH2] = ACTIONS(5002), - [anon_sym_LBRACE] = ACTIONS(5000), - [anon_sym_DOT_DOT] = ACTIONS(5002), - [anon_sym_LPAREN2] = ACTIONS(4181), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5000), - [anon_sym_DOT_DOT_LT] = ACTIONS(5000), - [anon_sym_null] = ACTIONS(5000), - [anon_sym_true] = ACTIONS(5000), - [anon_sym_false] = ACTIONS(5000), - [aux_sym__val_number_decimal_token1] = ACTIONS(5002), - [aux_sym__val_number_decimal_token2] = ACTIONS(5000), - [aux_sym__val_number_decimal_token3] = ACTIONS(5000), - [aux_sym__val_number_decimal_token4] = ACTIONS(5000), - [aux_sym__val_number_token1] = ACTIONS(5000), - [aux_sym__val_number_token2] = ACTIONS(5000), - [aux_sym__val_number_token3] = ACTIONS(5000), - [aux_sym__val_number_token4] = ACTIONS(5000), - [aux_sym__val_number_token5] = ACTIONS(5000), - [aux_sym__val_number_token6] = ACTIONS(5000), - [anon_sym_0b] = ACTIONS(5002), - [anon_sym_0o] = ACTIONS(5002), - [anon_sym_0x] = ACTIONS(5002), - [sym_val_date] = ACTIONS(5000), - [anon_sym_DQUOTE] = ACTIONS(5000), - [sym__str_single_quotes] = ACTIONS(5000), - [sym__str_back_ticks] = ACTIONS(5000), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5000), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5000), - [anon_sym_err_GT] = ACTIONS(5002), - [anon_sym_out_GT] = ACTIONS(5002), - [anon_sym_e_GT] = ACTIONS(5002), - [anon_sym_o_GT] = ACTIONS(5002), - [anon_sym_err_PLUSout_GT] = ACTIONS(5002), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5002), - [anon_sym_o_PLUSe_GT] = ACTIONS(5002), - [anon_sym_e_PLUSo_GT] = ACTIONS(5002), - [anon_sym_err_GT_GT] = ACTIONS(5000), - [anon_sym_out_GT_GT] = ACTIONS(5000), - [anon_sym_e_GT_GT] = ACTIONS(5000), - [anon_sym_o_GT_GT] = ACTIONS(5000), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5000), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5000), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5000), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5000), - [aux_sym_unquoted_token1] = ACTIONS(5002), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(5000), - }, - [1664] = { - [sym_comment] = STATE(1664), - [ts_builtin_sym_end] = ACTIONS(1682), - [sym__newline] = ACTIONS(1682), - [anon_sym_SEMI] = ACTIONS(1682), - [anon_sym_PIPE] = ACTIONS(1682), - [anon_sym_err_GT_PIPE] = ACTIONS(1682), - [anon_sym_out_GT_PIPE] = ACTIONS(1682), - [anon_sym_e_GT_PIPE] = ACTIONS(1682), - [anon_sym_o_GT_PIPE] = ACTIONS(1682), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1682), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1682), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1682), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1682), - [anon_sym_GT2] = ACTIONS(1680), - [anon_sym_DASH2] = ACTIONS(1682), - [anon_sym_in2] = ACTIONS(1682), - [anon_sym_STAR2] = ACTIONS(1680), - [anon_sym_and2] = ACTIONS(1682), - [anon_sym_xor2] = ACTIONS(1682), - [anon_sym_or2] = ACTIONS(1682), - [anon_sym_not_DASHin2] = ACTIONS(1682), - [anon_sym_starts_DASHwith2] = ACTIONS(1682), - [anon_sym_ends_DASHwith2] = ACTIONS(1682), - [anon_sym_EQ_EQ2] = ACTIONS(1682), - [anon_sym_BANG_EQ2] = ACTIONS(1682), - [anon_sym_LT2] = ACTIONS(1680), - [anon_sym_LT_EQ2] = ACTIONS(1682), - [anon_sym_GT_EQ2] = ACTIONS(1682), - [anon_sym_EQ_TILDE2] = ACTIONS(1682), - [anon_sym_BANG_TILDE2] = ACTIONS(1682), - [anon_sym_LPAREN2] = ACTIONS(1682), - [anon_sym_STAR_STAR2] = ACTIONS(1682), - [anon_sym_PLUS_PLUS2] = ACTIONS(1682), - [anon_sym_SLASH2] = ACTIONS(1680), - [anon_sym_mod2] = ACTIONS(1682), - [anon_sym_SLASH_SLASH2] = ACTIONS(1682), - [anon_sym_PLUS2] = ACTIONS(1680), - [anon_sym_bit_DASHshl2] = ACTIONS(1682), - [anon_sym_bit_DASHshr2] = ACTIONS(1682), - [anon_sym_bit_DASHand2] = ACTIONS(1682), - [anon_sym_bit_DASHxor2] = ACTIONS(1682), - [anon_sym_bit_DASHor2] = ACTIONS(1682), - [anon_sym_DOT_DOT2] = ACTIONS(1680), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1682), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1682), - [sym_filesize_unit] = ACTIONS(1680), - [sym_duration_unit] = ACTIONS(1682), - [anon_sym_err_GT] = ACTIONS(1680), - [anon_sym_out_GT] = ACTIONS(1680), - [anon_sym_e_GT] = ACTIONS(1680), - [anon_sym_o_GT] = ACTIONS(1680), - [anon_sym_err_PLUSout_GT] = ACTIONS(1680), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1680), - [anon_sym_o_PLUSe_GT] = ACTIONS(1680), - [anon_sym_e_PLUSo_GT] = ACTIONS(1680), - [anon_sym_err_GT_GT] = ACTIONS(1682), - [anon_sym_out_GT_GT] = ACTIONS(1682), - [anon_sym_e_GT_GT] = ACTIONS(1682), - [anon_sym_o_GT_GT] = ACTIONS(1682), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1682), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1682), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1682), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1682), - [aux_sym_unquoted_token2] = ACTIONS(1680), - [anon_sym_POUND] = ACTIONS(251), - }, - [1665] = { - [sym_comment] = STATE(1665), - [ts_builtin_sym_end] = ACTIONS(2176), - [sym__newline] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_PIPE] = ACTIONS(2176), - [anon_sym_err_GT_PIPE] = ACTIONS(2176), - [anon_sym_out_GT_PIPE] = ACTIONS(2176), - [anon_sym_e_GT_PIPE] = ACTIONS(2176), - [anon_sym_o_GT_PIPE] = ACTIONS(2176), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2176), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2176), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2176), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2172), - [anon_sym_DOLLAR] = ACTIONS(2172), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_DASH2] = ACTIONS(2172), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_DOT_DOT] = ACTIONS(2172), - [anon_sym_LPAREN2] = ACTIONS(2174), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2176), - [anon_sym_DOT_DOT_LT] = ACTIONS(2176), - [anon_sym_null] = ACTIONS(2176), - [anon_sym_true] = ACTIONS(2176), - [anon_sym_false] = ACTIONS(2176), - [aux_sym__val_number_decimal_token1] = ACTIONS(2172), - [aux_sym__val_number_decimal_token2] = ACTIONS(2176), - [aux_sym__val_number_decimal_token3] = ACTIONS(2176), - [aux_sym__val_number_decimal_token4] = ACTIONS(2176), - [aux_sym__val_number_token1] = ACTIONS(2176), - [aux_sym__val_number_token2] = ACTIONS(2176), - [aux_sym__val_number_token3] = ACTIONS(2176), - [aux_sym__val_number_token4] = ACTIONS(2176), - [aux_sym__val_number_token5] = ACTIONS(2176), - [aux_sym__val_number_token6] = ACTIONS(2176), - [anon_sym_0b] = ACTIONS(2172), - [anon_sym_0o] = ACTIONS(2172), - [anon_sym_0x] = ACTIONS(2172), - [sym_val_date] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym__str_single_quotes] = ACTIONS(2176), - [sym__str_back_ticks] = ACTIONS(2176), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2176), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2176), - [anon_sym_err_GT] = ACTIONS(2172), - [anon_sym_out_GT] = ACTIONS(2172), - [anon_sym_e_GT] = ACTIONS(2172), - [anon_sym_o_GT] = ACTIONS(2172), - [anon_sym_err_PLUSout_GT] = ACTIONS(2172), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2172), - [anon_sym_o_PLUSe_GT] = ACTIONS(2172), - [anon_sym_e_PLUSo_GT] = ACTIONS(2172), - [anon_sym_err_GT_GT] = ACTIONS(2176), - [anon_sym_out_GT_GT] = ACTIONS(2176), - [anon_sym_e_GT_GT] = ACTIONS(2176), - [anon_sym_o_GT_GT] = ACTIONS(2176), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2176), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2176), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2176), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2176), - [aux_sym_unquoted_token1] = ACTIONS(2172), - [aux_sym_unquoted_token2] = ACTIONS(2178), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2176), - }, - [1666] = { - [sym_comment] = STATE(1666), - [sym__newline] = ACTIONS(1999), - [anon_sym_SEMI] = ACTIONS(1999), - [anon_sym_PIPE] = ACTIONS(1999), - [anon_sym_err_GT_PIPE] = ACTIONS(1999), - [anon_sym_out_GT_PIPE] = ACTIONS(1999), - [anon_sym_e_GT_PIPE] = ACTIONS(1999), - [anon_sym_o_GT_PIPE] = ACTIONS(1999), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1999), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1999), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1999), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1999), - [anon_sym_RPAREN] = ACTIONS(1999), - [anon_sym_GT2] = ACTIONS(1997), - [anon_sym_DASH2] = ACTIONS(1999), - [anon_sym_in2] = ACTIONS(1999), - [anon_sym_if] = ACTIONS(1999), - [anon_sym_LBRACE] = ACTIONS(1999), - [anon_sym_RBRACE] = ACTIONS(1999), - [anon_sym_EQ_GT] = ACTIONS(1999), - [anon_sym_STAR2] = ACTIONS(1997), - [anon_sym_and2] = ACTIONS(1999), - [anon_sym_xor2] = ACTIONS(1999), - [anon_sym_or2] = ACTIONS(1999), - [anon_sym_not_DASHin2] = ACTIONS(1999), - [anon_sym_starts_DASHwith2] = ACTIONS(1999), - [anon_sym_ends_DASHwith2] = ACTIONS(1999), - [anon_sym_EQ_EQ2] = ACTIONS(1999), - [anon_sym_BANG_EQ2] = ACTIONS(1999), - [anon_sym_LT2] = ACTIONS(1997), - [anon_sym_LT_EQ2] = ACTIONS(1999), - [anon_sym_GT_EQ2] = ACTIONS(1999), - [anon_sym_EQ_TILDE2] = ACTIONS(1999), - [anon_sym_BANG_TILDE2] = ACTIONS(1999), - [anon_sym_STAR_STAR2] = ACTIONS(1999), - [anon_sym_PLUS_PLUS2] = ACTIONS(1999), - [anon_sym_SLASH2] = ACTIONS(1997), - [anon_sym_mod2] = ACTIONS(1999), - [anon_sym_SLASH_SLASH2] = ACTIONS(1999), - [anon_sym_PLUS2] = ACTIONS(1997), - [anon_sym_bit_DASHshl2] = ACTIONS(1999), - [anon_sym_bit_DASHshr2] = ACTIONS(1999), - [anon_sym_bit_DASHand2] = ACTIONS(1999), - [anon_sym_bit_DASHxor2] = ACTIONS(1999), - [anon_sym_bit_DASHor2] = ACTIONS(1999), - [anon_sym_DOT_DOT2] = ACTIONS(1997), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1999), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1999), - [anon_sym_err_GT] = ACTIONS(1997), - [anon_sym_out_GT] = ACTIONS(1997), - [anon_sym_e_GT] = ACTIONS(1997), - [anon_sym_o_GT] = ACTIONS(1997), - [anon_sym_err_PLUSout_GT] = ACTIONS(1997), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1997), - [anon_sym_o_PLUSe_GT] = ACTIONS(1997), - [anon_sym_e_PLUSo_GT] = ACTIONS(1997), - [anon_sym_err_GT_GT] = ACTIONS(1999), - [anon_sym_out_GT_GT] = ACTIONS(1999), - [anon_sym_e_GT_GT] = ACTIONS(1999), - [anon_sym_o_GT_GT] = ACTIONS(1999), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1999), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1999), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1999), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1999), - [anon_sym_POUND] = ACTIONS(251), - }, - [1667] = { - [sym_comment] = STATE(1667), - [sym__newline] = ACTIONS(2491), - [anon_sym_SEMI] = ACTIONS(2491), - [anon_sym_PIPE] = ACTIONS(2491), - [anon_sym_err_GT_PIPE] = ACTIONS(2491), - [anon_sym_out_GT_PIPE] = ACTIONS(2491), - [anon_sym_e_GT_PIPE] = ACTIONS(2491), - [anon_sym_o_GT_PIPE] = ACTIONS(2491), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2491), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2491), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2491), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2491), - [anon_sym_RPAREN] = ACTIONS(2491), - [anon_sym_GT2] = ACTIONS(2489), - [anon_sym_DASH2] = ACTIONS(2491), - [anon_sym_in2] = ACTIONS(2491), - [anon_sym_if] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2491), - [anon_sym_RBRACE] = ACTIONS(2491), - [anon_sym_EQ_GT] = ACTIONS(2491), - [anon_sym_STAR2] = ACTIONS(2489), - [anon_sym_QMARK2] = ACTIONS(2491), - [anon_sym_and2] = ACTIONS(2491), - [anon_sym_xor2] = ACTIONS(2491), - [anon_sym_or2] = ACTIONS(2491), - [anon_sym_not_DASHin2] = ACTIONS(2491), - [anon_sym_starts_DASHwith2] = ACTIONS(2491), - [anon_sym_ends_DASHwith2] = ACTIONS(2491), - [anon_sym_EQ_EQ2] = ACTIONS(2491), - [anon_sym_BANG_EQ2] = ACTIONS(2491), - [anon_sym_LT2] = ACTIONS(2489), - [anon_sym_LT_EQ2] = ACTIONS(2491), - [anon_sym_GT_EQ2] = ACTIONS(2491), - [anon_sym_EQ_TILDE2] = ACTIONS(2491), - [anon_sym_BANG_TILDE2] = ACTIONS(2491), - [anon_sym_STAR_STAR2] = ACTIONS(2491), - [anon_sym_PLUS_PLUS2] = ACTIONS(2491), - [anon_sym_SLASH2] = ACTIONS(2489), - [anon_sym_mod2] = ACTIONS(2491), - [anon_sym_SLASH_SLASH2] = ACTIONS(2491), - [anon_sym_PLUS2] = ACTIONS(2489), - [anon_sym_bit_DASHshl2] = ACTIONS(2491), - [anon_sym_bit_DASHshr2] = ACTIONS(2491), - [anon_sym_bit_DASHand2] = ACTIONS(2491), - [anon_sym_bit_DASHxor2] = ACTIONS(2491), - [anon_sym_bit_DASHor2] = ACTIONS(2491), - [anon_sym_COLON2] = ACTIONS(2491), - [anon_sym_DOT2] = ACTIONS(2491), - [anon_sym_err_GT] = ACTIONS(2489), - [anon_sym_out_GT] = ACTIONS(2489), - [anon_sym_e_GT] = ACTIONS(2489), - [anon_sym_o_GT] = ACTIONS(2489), - [anon_sym_err_PLUSout_GT] = ACTIONS(2489), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2489), - [anon_sym_o_PLUSe_GT] = ACTIONS(2489), - [anon_sym_e_PLUSo_GT] = ACTIONS(2489), - [anon_sym_err_GT_GT] = ACTIONS(2491), - [anon_sym_out_GT_GT] = ACTIONS(2491), - [anon_sym_e_GT_GT] = ACTIONS(2491), - [anon_sym_o_GT_GT] = ACTIONS(2491), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2491), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2491), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2491), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2491), - [anon_sym_POUND] = ACTIONS(251), - }, - [1668] = { - [sym_cell_path] = STATE(2113), - [sym_path] = STATE(1532), - [sym_comment] = STATE(1668), - [aux_sym_cell_path_repeat1] = STATE(1386), - [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_RPAREN] = ACTIONS(1897), - [anon_sym_GT2] = ACTIONS(1895), - [anon_sym_DASH2] = ACTIONS(1897), - [anon_sym_in2] = ACTIONS(1897), - [anon_sym_LBRACE] = ACTIONS(1897), - [anon_sym_RBRACE] = ACTIONS(1897), - [anon_sym_EQ_GT] = ACTIONS(1897), - [anon_sym_STAR2] = ACTIONS(1895), - [anon_sym_and2] = ACTIONS(1897), - [anon_sym_xor2] = ACTIONS(1897), - [anon_sym_or2] = ACTIONS(1897), - [anon_sym_not_DASHin2] = ACTIONS(1897), - [anon_sym_starts_DASHwith2] = ACTIONS(1897), - [anon_sym_ends_DASHwith2] = ACTIONS(1897), - [anon_sym_EQ_EQ2] = ACTIONS(1897), - [anon_sym_BANG_EQ2] = ACTIONS(1897), - [anon_sym_LT2] = ACTIONS(1895), - [anon_sym_LT_EQ2] = ACTIONS(1897), - [anon_sym_GT_EQ2] = ACTIONS(1897), - [anon_sym_EQ_TILDE2] = ACTIONS(1897), - [anon_sym_BANG_TILDE2] = ACTIONS(1897), - [anon_sym_STAR_STAR2] = ACTIONS(1897), - [anon_sym_PLUS_PLUS2] = ACTIONS(1897), - [anon_sym_SLASH2] = ACTIONS(1895), - [anon_sym_mod2] = ACTIONS(1897), - [anon_sym_SLASH_SLASH2] = ACTIONS(1897), - [anon_sym_PLUS2] = ACTIONS(1895), - [anon_sym_bit_DASHshl2] = ACTIONS(1897), - [anon_sym_bit_DASHshr2] = ACTIONS(1897), - [anon_sym_bit_DASHand2] = ACTIONS(1897), - [anon_sym_bit_DASHxor2] = ACTIONS(1897), - [anon_sym_bit_DASHor2] = ACTIONS(1897), - [anon_sym_DOT2] = ACTIONS(4912), - [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), - [anon_sym_POUND] = ACTIONS(251), - }, - [1669] = { - [sym_comment] = STATE(1669), - [ts_builtin_sym_end] = ACTIONS(2132), - [sym__newline] = ACTIONS(2132), - [anon_sym_SEMI] = ACTIONS(2132), - [anon_sym_PIPE] = ACTIONS(2132), - [anon_sym_err_GT_PIPE] = ACTIONS(2132), - [anon_sym_out_GT_PIPE] = ACTIONS(2132), - [anon_sym_e_GT_PIPE] = ACTIONS(2132), - [anon_sym_o_GT_PIPE] = ACTIONS(2132), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2132), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2132), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2132), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2132), - [anon_sym_LBRACK] = ACTIONS(2132), - [anon_sym_LPAREN] = ACTIONS(2128), - [anon_sym_DOLLAR] = ACTIONS(2128), - [anon_sym_DASH_DASH] = ACTIONS(2128), - [anon_sym_DASH2] = ACTIONS(2128), - [anon_sym_LBRACE] = ACTIONS(2132), - [anon_sym_DOT_DOT] = ACTIONS(2128), - [anon_sym_LPAREN2] = ACTIONS(2130), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2128), - [anon_sym_DOT_DOT_LT] = ACTIONS(2128), - [anon_sym_null] = ACTIONS(2128), - [anon_sym_true] = ACTIONS(2128), - [anon_sym_false] = ACTIONS(2128), - [aux_sym__val_number_decimal_token1] = ACTIONS(2128), - [aux_sym__val_number_decimal_token2] = ACTIONS(2128), - [aux_sym__val_number_decimal_token3] = ACTIONS(2128), - [aux_sym__val_number_decimal_token4] = ACTIONS(2128), - [aux_sym__val_number_token1] = ACTIONS(2128), - [aux_sym__val_number_token2] = ACTIONS(2128), - [aux_sym__val_number_token3] = ACTIONS(2128), - [aux_sym__val_number_token4] = ACTIONS(2128), - [aux_sym__val_number_token5] = ACTIONS(2128), - [aux_sym__val_number_token6] = ACTIONS(2128), - [anon_sym_0b] = ACTIONS(2128), - [anon_sym_0o] = ACTIONS(2128), - [anon_sym_0x] = ACTIONS(2128), - [sym_val_date] = ACTIONS(2128), - [anon_sym_DQUOTE] = ACTIONS(2132), - [sym__str_single_quotes] = ACTIONS(2132), - [sym__str_back_ticks] = ACTIONS(2132), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2132), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2132), - [anon_sym_err_GT] = ACTIONS(2128), - [anon_sym_out_GT] = ACTIONS(2128), - [anon_sym_e_GT] = ACTIONS(2128), - [anon_sym_o_GT] = ACTIONS(2128), - [anon_sym_err_PLUSout_GT] = ACTIONS(2128), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2128), - [anon_sym_o_PLUSe_GT] = ACTIONS(2128), - [anon_sym_e_PLUSo_GT] = ACTIONS(2128), - [anon_sym_err_GT_GT] = ACTIONS(2128), - [anon_sym_out_GT_GT] = ACTIONS(2128), - [anon_sym_e_GT_GT] = ACTIONS(2128), - [anon_sym_o_GT_GT] = ACTIONS(2128), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2128), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2128), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2128), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2128), - [aux_sym_unquoted_token1] = ACTIONS(2128), - [aux_sym_unquoted_token4] = ACTIONS(2134), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2132), - }, - [1670] = { - [sym_comment] = STATE(1670), - [ts_builtin_sym_end] = ACTIONS(1012), - [sym__newline] = ACTIONS(1012), - [anon_sym_SEMI] = ACTIONS(1012), - [anon_sym_PIPE] = ACTIONS(1012), - [anon_sym_err_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_GT_PIPE] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1012), - [anon_sym_LBRACK] = ACTIONS(1012), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_DOLLAR] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_DOT_DOT] = ACTIONS(1016), - [anon_sym_LPAREN2] = ACTIONS(2206), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1016), - [anon_sym_DOT_DOT_LT] = ACTIONS(1016), - [anon_sym_null] = ACTIONS(1016), - [anon_sym_true] = ACTIONS(1016), - [anon_sym_false] = ACTIONS(1016), - [aux_sym__val_number_decimal_token1] = ACTIONS(1016), - [aux_sym__val_number_decimal_token2] = ACTIONS(1016), - [aux_sym__val_number_decimal_token3] = ACTIONS(1016), - [aux_sym__val_number_decimal_token4] = ACTIONS(1016), - [aux_sym__val_number_token1] = ACTIONS(1016), - [aux_sym__val_number_token2] = ACTIONS(1016), - [aux_sym__val_number_token3] = ACTIONS(1016), - [aux_sym__val_number_token4] = ACTIONS(1016), - [aux_sym__val_number_token5] = ACTIONS(1016), - [aux_sym__val_number_token6] = ACTIONS(1016), - [anon_sym_0b] = ACTIONS(1016), - [anon_sym_0o] = ACTIONS(1016), - [anon_sym_0x] = ACTIONS(1016), - [sym_val_date] = ACTIONS(1016), - [anon_sym_DQUOTE] = ACTIONS(1012), - [sym__str_single_quotes] = ACTIONS(1012), - [sym__str_back_ticks] = ACTIONS(1012), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1012), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1012), - [anon_sym_err_GT] = ACTIONS(1016), - [anon_sym_out_GT] = ACTIONS(1016), - [anon_sym_e_GT] = ACTIONS(1016), - [anon_sym_o_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT] = ACTIONS(1016), - [anon_sym_err_GT_GT] = ACTIONS(1016), - [anon_sym_out_GT_GT] = ACTIONS(1016), - [anon_sym_e_GT_GT] = ACTIONS(1016), - [anon_sym_o_GT_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), - [aux_sym_unquoted_token1] = ACTIONS(1016), - [aux_sym_unquoted_token4] = ACTIONS(2208), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1012), - }, - [1671] = { - [sym_cell_path] = STATE(2136), - [sym_path] = STATE(1532), - [sym_comment] = STATE(1671), - [aux_sym_cell_path_repeat1] = STATE(1386), - [sym__newline] = ACTIONS(1923), - [anon_sym_SEMI] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(1923), - [anon_sym_err_GT_PIPE] = ACTIONS(1923), - [anon_sym_out_GT_PIPE] = ACTIONS(1923), - [anon_sym_e_GT_PIPE] = ACTIONS(1923), - [anon_sym_o_GT_PIPE] = ACTIONS(1923), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1923), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1923), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1923), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1923), - [anon_sym_RPAREN] = ACTIONS(1923), - [anon_sym_GT2] = ACTIONS(1921), - [anon_sym_DASH2] = ACTIONS(1923), - [anon_sym_in2] = ACTIONS(1923), - [anon_sym_LBRACE] = ACTIONS(1923), - [anon_sym_RBRACE] = ACTIONS(1923), - [anon_sym_EQ_GT] = ACTIONS(1923), - [anon_sym_STAR2] = ACTIONS(1921), - [anon_sym_and2] = ACTIONS(1923), - [anon_sym_xor2] = ACTIONS(1923), - [anon_sym_or2] = ACTIONS(1923), - [anon_sym_not_DASHin2] = ACTIONS(1923), - [anon_sym_starts_DASHwith2] = ACTIONS(1923), - [anon_sym_ends_DASHwith2] = ACTIONS(1923), - [anon_sym_EQ_EQ2] = ACTIONS(1923), - [anon_sym_BANG_EQ2] = ACTIONS(1923), - [anon_sym_LT2] = ACTIONS(1921), - [anon_sym_LT_EQ2] = ACTIONS(1923), - [anon_sym_GT_EQ2] = ACTIONS(1923), - [anon_sym_EQ_TILDE2] = ACTIONS(1923), - [anon_sym_BANG_TILDE2] = ACTIONS(1923), - [anon_sym_STAR_STAR2] = ACTIONS(1923), - [anon_sym_PLUS_PLUS2] = ACTIONS(1923), - [anon_sym_SLASH2] = ACTIONS(1921), - [anon_sym_mod2] = ACTIONS(1923), - [anon_sym_SLASH_SLASH2] = ACTIONS(1923), - [anon_sym_PLUS2] = ACTIONS(1921), - [anon_sym_bit_DASHshl2] = ACTIONS(1923), - [anon_sym_bit_DASHshr2] = ACTIONS(1923), - [anon_sym_bit_DASHand2] = ACTIONS(1923), - [anon_sym_bit_DASHxor2] = ACTIONS(1923), - [anon_sym_bit_DASHor2] = ACTIONS(1923), - [anon_sym_DOT2] = ACTIONS(4912), - [anon_sym_err_GT] = ACTIONS(1921), - [anon_sym_out_GT] = ACTIONS(1921), - [anon_sym_e_GT] = ACTIONS(1921), - [anon_sym_o_GT] = ACTIONS(1921), - [anon_sym_err_PLUSout_GT] = ACTIONS(1921), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1921), - [anon_sym_o_PLUSe_GT] = ACTIONS(1921), - [anon_sym_e_PLUSo_GT] = ACTIONS(1921), - [anon_sym_err_GT_GT] = ACTIONS(1923), - [anon_sym_out_GT_GT] = ACTIONS(1923), - [anon_sym_e_GT_GT] = ACTIONS(1923), - [anon_sym_o_GT_GT] = ACTIONS(1923), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1923), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1923), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1923), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1923), - [anon_sym_POUND] = ACTIONS(251), - }, - [1672] = { - [sym_comment] = STATE(1672), - [ts_builtin_sym_end] = 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_DASH2] = ACTIONS(966), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_DOT_DOT] = ACTIONS(966), - [anon_sym_QMARK2] = ACTIONS(5004), - [anon_sym_DOT_DOT_EQ] = ACTIONS(968), - [anon_sym_DOT_DOT_LT] = ACTIONS(968), - [anon_sym_null] = ACTIONS(968), - [anon_sym_true] = ACTIONS(968), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(968), - [aux_sym__val_number_token5] = ACTIONS(968), - [aux_sym__val_number_token6] = 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_DOT2] = 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), - [aux_sym_unquoted_token1] = ACTIONS(966), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(968), - }, - [1673] = { - [sym_comment] = STATE(1673), - [sym__newline] = ACTIONS(2140), - [anon_sym_SEMI] = ACTIONS(2140), - [anon_sym_PIPE] = ACTIONS(2140), - [anon_sym_err_GT_PIPE] = ACTIONS(2140), - [anon_sym_out_GT_PIPE] = ACTIONS(2140), - [anon_sym_e_GT_PIPE] = ACTIONS(2140), - [anon_sym_o_GT_PIPE] = ACTIONS(2140), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2140), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2140), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2140), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2140), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_RPAREN] = ACTIONS(2140), - [anon_sym_DOLLAR] = ACTIONS(2136), - [anon_sym_DASH_DASH] = ACTIONS(2136), - [anon_sym_DASH2] = ACTIONS(2136), - [anon_sym_LBRACE] = ACTIONS(2140), - [anon_sym_RBRACE] = ACTIONS(2140), - [anon_sym_DOT_DOT] = ACTIONS(2136), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2136), - [anon_sym_DOT_DOT_LT] = ACTIONS(2136), - [anon_sym_null] = ACTIONS(2136), - [anon_sym_true] = ACTIONS(2136), - [anon_sym_false] = ACTIONS(2136), - [aux_sym__val_number_decimal_token1] = ACTIONS(2136), - [aux_sym__val_number_decimal_token2] = ACTIONS(2136), - [aux_sym__val_number_decimal_token3] = ACTIONS(2136), - [aux_sym__val_number_decimal_token4] = ACTIONS(2136), - [aux_sym__val_number_token1] = ACTIONS(2136), - [aux_sym__val_number_token2] = ACTIONS(2136), - [aux_sym__val_number_token3] = ACTIONS(2136), - [aux_sym__val_number_token4] = ACTIONS(2136), - [aux_sym__val_number_token5] = ACTIONS(2136), - [aux_sym__val_number_token6] = ACTIONS(2136), - [anon_sym_0b] = ACTIONS(2136), - [anon_sym_0o] = ACTIONS(2136), - [anon_sym_0x] = ACTIONS(2136), - [sym_val_date] = ACTIONS(2136), - [anon_sym_DQUOTE] = ACTIONS(2140), - [sym__str_single_quotes] = ACTIONS(2140), - [sym__str_back_ticks] = ACTIONS(2140), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2140), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2140), - [anon_sym_err_GT] = ACTIONS(2136), - [anon_sym_out_GT] = ACTIONS(2136), - [anon_sym_e_GT] = ACTIONS(2136), - [anon_sym_o_GT] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT] = ACTIONS(2136), - [anon_sym_err_GT_GT] = ACTIONS(2136), - [anon_sym_out_GT_GT] = ACTIONS(2136), - [anon_sym_e_GT_GT] = ACTIONS(2136), - [anon_sym_o_GT_GT] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2136), - [aux_sym_unquoted_token1] = ACTIONS(2136), - [aux_sym_unquoted_token4] = ACTIONS(2142), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2140), - }, - [1674] = { - [sym_comment] = STATE(1674), [ts_builtin_sym_end] = ACTIONS(962), [sym__newline] = ACTIONS(962), [anon_sym_SEMI] = ACTIONS(962), @@ -234916,7 +234868,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(960), [anon_sym_LBRACE] = ACTIONS(962), [anon_sym_DOT_DOT] = ACTIONS(960), - [anon_sym_QMARK2] = ACTIONS(5006), + [anon_sym_QMARK2] = ACTIONS(962), [anon_sym_DOT_DOT_EQ] = ACTIONS(962), [anon_sym_DOT_DOT_LT] = ACTIONS(962), [anon_sym_null] = ACTIONS(962), @@ -234959,4665 +234911,5650 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_GT] = ACTIONS(962), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(962), [aux_sym_unquoted_token1] = ACTIONS(960), - [anon_sym_POUND] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(962), }, + [1664] = { + [sym_comment] = STATE(1664), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_RPAREN] = ACTIONS(1703), + [anon_sym_GT2] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1703), + [anon_sym_in2] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_STAR2] = ACTIONS(1701), + [anon_sym_and2] = ACTIONS(1703), + [anon_sym_xor2] = ACTIONS(1703), + [anon_sym_or2] = ACTIONS(1703), + [anon_sym_not_DASHin2] = ACTIONS(1703), + [anon_sym_has2] = ACTIONS(1703), + [anon_sym_not_DASHhas2] = ACTIONS(1703), + [anon_sym_starts_DASHwith2] = ACTIONS(1703), + [anon_sym_ends_DASHwith2] = ACTIONS(1703), + [anon_sym_EQ_EQ2] = ACTIONS(1703), + [anon_sym_BANG_EQ2] = ACTIONS(1703), + [anon_sym_LT2] = ACTIONS(1701), + [anon_sym_LT_EQ2] = ACTIONS(1703), + [anon_sym_GT_EQ2] = ACTIONS(1703), + [anon_sym_EQ_TILDE2] = ACTIONS(1703), + [anon_sym_BANG_TILDE2] = ACTIONS(1703), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_STAR_STAR2] = ACTIONS(1703), + [anon_sym_PLUS_PLUS2] = ACTIONS(1703), + [anon_sym_SLASH2] = ACTIONS(1701), + [anon_sym_mod2] = ACTIONS(1703), + [anon_sym_SLASH_SLASH2] = ACTIONS(1703), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_bit_DASHshl2] = ACTIONS(1703), + [anon_sym_bit_DASHshr2] = ACTIONS(1703), + [anon_sym_bit_DASHand2] = ACTIONS(1703), + [anon_sym_bit_DASHxor2] = ACTIONS(1703), + [anon_sym_bit_DASHor2] = ACTIONS(1703), + [anon_sym_DOT] = ACTIONS(4956), + [aux_sym__immediate_decimal_token2] = ACTIONS(4958), + [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(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(247), + }, + [1665] = { + [sym_comment] = STATE(1665), + [ts_builtin_sym_end] = ACTIONS(948), + [sym__newline] = ACTIONS(948), + [anon_sym_SEMI] = ACTIONS(948), + [anon_sym_PIPE] = ACTIONS(948), + [anon_sym_err_GT_PIPE] = ACTIONS(948), + [anon_sym_out_GT_PIPE] = ACTIONS(948), + [anon_sym_e_GT_PIPE] = ACTIONS(948), + [anon_sym_o_GT_PIPE] = ACTIONS(948), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(948), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(948), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(948), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(948), + [anon_sym_LBRACK] = ACTIONS(948), + [anon_sym_LPAREN] = ACTIONS(948), + [anon_sym_DOLLAR] = ACTIONS(946), + [anon_sym_DASH_DASH] = ACTIONS(948), + [anon_sym_DASH2] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(948), + [anon_sym_DOT_DOT] = ACTIONS(946), + [anon_sym_QMARK2] = ACTIONS(948), + [anon_sym_DOT_DOT_EQ] = ACTIONS(948), + [anon_sym_DOT_DOT_LT] = ACTIONS(948), + [anon_sym_null] = ACTIONS(948), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [aux_sym__val_number_decimal_token1] = ACTIONS(946), + [aux_sym__val_number_decimal_token2] = ACTIONS(948), + [aux_sym__val_number_decimal_token3] = ACTIONS(948), + [aux_sym__val_number_decimal_token4] = ACTIONS(948), + [aux_sym__val_number_token1] = ACTIONS(948), + [aux_sym__val_number_token2] = ACTIONS(948), + [aux_sym__val_number_token3] = ACTIONS(948), + [aux_sym__val_number_token4] = ACTIONS(948), + [aux_sym__val_number_token5] = ACTIONS(948), + [aux_sym__val_number_token6] = ACTIONS(948), + [anon_sym_0b] = ACTIONS(946), + [anon_sym_0o] = ACTIONS(946), + [anon_sym_0x] = ACTIONS(946), + [sym_val_date] = ACTIONS(948), + [anon_sym_DQUOTE] = ACTIONS(948), + [sym__str_single_quotes] = ACTIONS(948), + [sym__str_back_ticks] = ACTIONS(948), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(948), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(948), + [anon_sym_DOT2] = ACTIONS(946), + [anon_sym_err_GT] = ACTIONS(946), + [anon_sym_out_GT] = ACTIONS(946), + [anon_sym_e_GT] = ACTIONS(946), + [anon_sym_o_GT] = ACTIONS(946), + [anon_sym_err_PLUSout_GT] = ACTIONS(946), + [anon_sym_out_PLUSerr_GT] = ACTIONS(946), + [anon_sym_o_PLUSe_GT] = ACTIONS(946), + [anon_sym_e_PLUSo_GT] = ACTIONS(946), + [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(946), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(948), + }, + [1666] = { + [sym__expr_parenthesized_immediate] = STATE(7383), + [sym_comment] = STATE(1666), + [sym__newline] = ACTIONS(4960), + [anon_sym_SEMI] = ACTIONS(4960), + [anon_sym_PIPE] = ACTIONS(4960), + [anon_sym_err_GT_PIPE] = ACTIONS(4960), + [anon_sym_out_GT_PIPE] = ACTIONS(4960), + [anon_sym_e_GT_PIPE] = ACTIONS(4960), + [anon_sym_o_GT_PIPE] = ACTIONS(4960), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4960), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4960), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4960), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4960), + [anon_sym_RPAREN] = ACTIONS(4960), + [anon_sym_GT2] = ACTIONS(4962), + [anon_sym_DASH2] = ACTIONS(4960), + [anon_sym_in2] = ACTIONS(4960), + [anon_sym_LBRACE] = ACTIONS(4960), + [anon_sym_RBRACE] = ACTIONS(4960), + [anon_sym_EQ_GT] = ACTIONS(4960), + [anon_sym_STAR2] = ACTIONS(4962), + [anon_sym_and2] = ACTIONS(4960), + [anon_sym_xor2] = ACTIONS(4960), + [anon_sym_or2] = ACTIONS(4960), + [anon_sym_not_DASHin2] = ACTIONS(4960), + [anon_sym_has2] = ACTIONS(4960), + [anon_sym_not_DASHhas2] = ACTIONS(4960), + [anon_sym_starts_DASHwith2] = ACTIONS(4960), + [anon_sym_ends_DASHwith2] = ACTIONS(4960), + [anon_sym_EQ_EQ2] = ACTIONS(4960), + [anon_sym_BANG_EQ2] = ACTIONS(4960), + [anon_sym_LT2] = ACTIONS(4962), + [anon_sym_LT_EQ2] = ACTIONS(4960), + [anon_sym_GT_EQ2] = ACTIONS(4960), + [anon_sym_EQ_TILDE2] = ACTIONS(4960), + [anon_sym_BANG_TILDE2] = ACTIONS(4960), + [anon_sym_LPAREN2] = ACTIONS(4452), + [anon_sym_STAR_STAR2] = ACTIONS(4960), + [anon_sym_PLUS_PLUS2] = ACTIONS(4960), + [anon_sym_SLASH2] = ACTIONS(4962), + [anon_sym_mod2] = ACTIONS(4960), + [anon_sym_SLASH_SLASH2] = ACTIONS(4960), + [anon_sym_PLUS2] = ACTIONS(4962), + [anon_sym_bit_DASHshl2] = ACTIONS(4960), + [anon_sym_bit_DASHshr2] = ACTIONS(4960), + [anon_sym_bit_DASHand2] = ACTIONS(4960), + [anon_sym_bit_DASHxor2] = ACTIONS(4960), + [anon_sym_bit_DASHor2] = ACTIONS(4960), + [anon_sym_err_GT] = ACTIONS(4962), + [anon_sym_out_GT] = ACTIONS(4962), + [anon_sym_e_GT] = ACTIONS(4962), + [anon_sym_o_GT] = ACTIONS(4962), + [anon_sym_err_PLUSout_GT] = ACTIONS(4962), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4962), + [anon_sym_o_PLUSe_GT] = ACTIONS(4962), + [anon_sym_e_PLUSo_GT] = ACTIONS(4962), + [anon_sym_err_GT_GT] = ACTIONS(4960), + [anon_sym_out_GT_GT] = ACTIONS(4960), + [anon_sym_e_GT_GT] = ACTIONS(4960), + [anon_sym_o_GT_GT] = ACTIONS(4960), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4960), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4960), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4960), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4960), + [anon_sym_POUND] = ACTIONS(247), + }, + [1667] = { + [sym__expr_parenthesized_immediate] = STATE(7383), + [sym_comment] = STATE(1667), + [sym__newline] = ACTIONS(4960), + [anon_sym_SEMI] = ACTIONS(4960), + [anon_sym_PIPE] = ACTIONS(4960), + [anon_sym_err_GT_PIPE] = ACTIONS(4960), + [anon_sym_out_GT_PIPE] = ACTIONS(4960), + [anon_sym_e_GT_PIPE] = ACTIONS(4960), + [anon_sym_o_GT_PIPE] = ACTIONS(4960), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4960), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4960), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4960), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4960), + [anon_sym_RPAREN] = ACTIONS(4960), + [anon_sym_GT2] = ACTIONS(4962), + [anon_sym_DASH2] = ACTIONS(4960), + [anon_sym_in2] = ACTIONS(4960), + [anon_sym_LBRACE] = ACTIONS(4960), + [anon_sym_RBRACE] = ACTIONS(4960), + [anon_sym_EQ_GT] = ACTIONS(4960), + [anon_sym_STAR2] = ACTIONS(4962), + [anon_sym_and2] = ACTIONS(4960), + [anon_sym_xor2] = ACTIONS(4960), + [anon_sym_or2] = ACTIONS(4960), + [anon_sym_not_DASHin2] = ACTIONS(4960), + [anon_sym_has2] = ACTIONS(4960), + [anon_sym_not_DASHhas2] = ACTIONS(4960), + [anon_sym_starts_DASHwith2] = ACTIONS(4960), + [anon_sym_ends_DASHwith2] = ACTIONS(4960), + [anon_sym_EQ_EQ2] = ACTIONS(4960), + [anon_sym_BANG_EQ2] = ACTIONS(4960), + [anon_sym_LT2] = ACTIONS(4962), + [anon_sym_LT_EQ2] = ACTIONS(4960), + [anon_sym_GT_EQ2] = ACTIONS(4960), + [anon_sym_EQ_TILDE2] = ACTIONS(4960), + [anon_sym_BANG_TILDE2] = ACTIONS(4960), + [anon_sym_LPAREN2] = ACTIONS(4452), + [anon_sym_STAR_STAR2] = ACTIONS(4960), + [anon_sym_PLUS_PLUS2] = ACTIONS(4960), + [anon_sym_SLASH2] = ACTIONS(4962), + [anon_sym_mod2] = ACTIONS(4960), + [anon_sym_SLASH_SLASH2] = ACTIONS(4960), + [anon_sym_PLUS2] = ACTIONS(4962), + [anon_sym_bit_DASHshl2] = ACTIONS(4960), + [anon_sym_bit_DASHshr2] = ACTIONS(4960), + [anon_sym_bit_DASHand2] = ACTIONS(4960), + [anon_sym_bit_DASHxor2] = ACTIONS(4960), + [anon_sym_bit_DASHor2] = ACTIONS(4960), + [anon_sym_err_GT] = ACTIONS(4962), + [anon_sym_out_GT] = ACTIONS(4962), + [anon_sym_e_GT] = ACTIONS(4962), + [anon_sym_o_GT] = ACTIONS(4962), + [anon_sym_err_PLUSout_GT] = ACTIONS(4962), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4962), + [anon_sym_o_PLUSe_GT] = ACTIONS(4962), + [anon_sym_e_PLUSo_GT] = ACTIONS(4962), + [anon_sym_err_GT_GT] = ACTIONS(4960), + [anon_sym_out_GT_GT] = ACTIONS(4960), + [anon_sym_e_GT_GT] = ACTIONS(4960), + [anon_sym_o_GT_GT] = ACTIONS(4960), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4960), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4960), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4960), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4960), + [anon_sym_POUND] = ACTIONS(247), + }, + [1668] = { + [sym_comment] = STATE(1668), + [ts_builtin_sym_end] = 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_DOLLAR] = ACTIONS(2085), + [anon_sym_DASH_DASH] = ACTIONS(2085), + [anon_sym_DASH2] = ACTIONS(2085), + [anon_sym_LBRACE] = ACTIONS(2087), + [anon_sym_DOT_DOT] = ACTIONS(2085), + [anon_sym_LPAREN2] = ACTIONS(2087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [anon_sym_null] = ACTIONS(2085), + [anon_sym_true] = ACTIONS(2085), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(2085), + [aux_sym__val_number_token5] = ACTIONS(2085), + [aux_sym__val_number_token6] = ACTIONS(2085), + [anon_sym_0b] = ACTIONS(2085), + [anon_sym_0o] = ACTIONS(2085), + [anon_sym_0x] = ACTIONS(2085), + [sym_val_date] = ACTIONS(2085), + [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(2085), + [anon_sym_out_GT_GT] = ACTIONS(2085), + [anon_sym_e_GT_GT] = ACTIONS(2085), + [anon_sym_o_GT_GT] = ACTIONS(2085), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2085), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2085), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2085), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2085), + [aux_sym_unquoted_token1] = ACTIONS(2085), + [aux_sym_unquoted_token4] = ACTIONS(2085), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2087), + }, + [1669] = { + [sym_comment] = STATE(1669), + [sym__newline] = ACTIONS(976), + [anon_sym_SEMI] = ACTIONS(976), + [anon_sym_PIPE] = ACTIONS(976), + [anon_sym_err_GT_PIPE] = ACTIONS(976), + [anon_sym_out_GT_PIPE] = ACTIONS(976), + [anon_sym_e_GT_PIPE] = ACTIONS(976), + [anon_sym_o_GT_PIPE] = ACTIONS(976), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(976), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(976), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(976), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(976), + [anon_sym_LBRACK] = ACTIONS(976), + [anon_sym_LPAREN] = ACTIONS(976), + [anon_sym_RPAREN] = ACTIONS(976), + [anon_sym_DOLLAR] = ACTIONS(974), + [anon_sym_DASH_DASH] = ACTIONS(976), + [anon_sym_DASH2] = ACTIONS(974), + [anon_sym_LBRACE] = ACTIONS(976), + [anon_sym_RBRACE] = ACTIONS(976), + [anon_sym_DOT_DOT] = ACTIONS(974), + [anon_sym_DOT_DOT_EQ] = ACTIONS(976), + [anon_sym_DOT_DOT_LT] = ACTIONS(976), + [anon_sym_null] = ACTIONS(976), + [anon_sym_true] = ACTIONS(976), + [anon_sym_false] = ACTIONS(976), + [aux_sym__val_number_decimal_token1] = ACTIONS(974), + [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), + [aux_sym__val_number_token4] = ACTIONS(976), + [aux_sym__val_number_token5] = ACTIONS(976), + [aux_sym__val_number_token6] = ACTIONS(976), + [anon_sym_0b] = ACTIONS(974), + [anon_sym_0o] = ACTIONS(974), + [anon_sym_0x] = ACTIONS(974), + [sym_val_date] = ACTIONS(976), + [anon_sym_DQUOTE] = ACTIONS(976), + [sym__str_single_quotes] = ACTIONS(976), + [sym__str_back_ticks] = ACTIONS(976), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(976), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(976), + [anon_sym_DOT2] = ACTIONS(974), + [anon_sym_err_GT] = ACTIONS(974), + [anon_sym_out_GT] = ACTIONS(974), + [anon_sym_e_GT] = ACTIONS(974), + [anon_sym_o_GT] = ACTIONS(974), + [anon_sym_err_PLUSout_GT] = ACTIONS(974), + [anon_sym_out_PLUSerr_GT] = ACTIONS(974), + [anon_sym_o_PLUSe_GT] = ACTIONS(974), + [anon_sym_e_PLUSo_GT] = ACTIONS(974), + [anon_sym_err_GT_GT] = ACTIONS(976), + [anon_sym_out_GT_GT] = ACTIONS(976), + [anon_sym_e_GT_GT] = ACTIONS(976), + [anon_sym_o_GT_GT] = ACTIONS(976), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(976), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(976), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(976), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(976), + [aux_sym_unquoted_token1] = ACTIONS(974), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(976), + }, + [1670] = { + [sym_comment] = STATE(1670), + [ts_builtin_sym_end] = ACTIONS(1695), + [sym__newline] = ACTIONS(1695), + [anon_sym_SEMI] = ACTIONS(1695), + [anon_sym_PIPE] = ACTIONS(1695), + [anon_sym_err_GT_PIPE] = ACTIONS(1695), + [anon_sym_out_GT_PIPE] = ACTIONS(1695), + [anon_sym_e_GT_PIPE] = ACTIONS(1695), + [anon_sym_o_GT_PIPE] = ACTIONS(1695), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1695), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1695), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1695), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1695), + [anon_sym_LBRACK] = ACTIONS(1695), + [anon_sym_LPAREN] = ACTIONS(1695), + [anon_sym_DOLLAR] = ACTIONS(1693), + [anon_sym_DASH_DASH] = ACTIONS(1695), + [anon_sym_DASH2] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1695), + [anon_sym_DOT_DOT] = ACTIONS(1693), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1695), + [anon_sym_DOT_DOT_LT] = ACTIONS(1695), + [aux_sym__immediate_decimal_token1] = ACTIONS(4964), + [aux_sym__immediate_decimal_token2] = ACTIONS(4966), + [anon_sym_null] = ACTIONS(1695), + [anon_sym_true] = ACTIONS(1695), + [anon_sym_false] = ACTIONS(1695), + [aux_sym__val_number_decimal_token1] = ACTIONS(1693), + [aux_sym__val_number_decimal_token2] = ACTIONS(1695), + [aux_sym__val_number_decimal_token3] = ACTIONS(1695), + [aux_sym__val_number_decimal_token4] = ACTIONS(1695), + [aux_sym__val_number_token1] = ACTIONS(1695), + [aux_sym__val_number_token2] = ACTIONS(1695), + [aux_sym__val_number_token3] = ACTIONS(1695), + [aux_sym__val_number_token4] = ACTIONS(1695), + [aux_sym__val_number_token5] = ACTIONS(1695), + [aux_sym__val_number_token6] = ACTIONS(1695), + [anon_sym_0b] = ACTIONS(1693), + [anon_sym_0o] = ACTIONS(1693), + [anon_sym_0x] = ACTIONS(1693), + [sym_val_date] = ACTIONS(1695), + [anon_sym_DQUOTE] = ACTIONS(1695), + [sym__str_single_quotes] = ACTIONS(1695), + [sym__str_back_ticks] = ACTIONS(1695), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1695), + [anon_sym_err_GT] = ACTIONS(1693), + [anon_sym_out_GT] = ACTIONS(1693), + [anon_sym_e_GT] = ACTIONS(1693), + [anon_sym_o_GT] = ACTIONS(1693), + [anon_sym_err_PLUSout_GT] = ACTIONS(1693), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1693), + [anon_sym_o_PLUSe_GT] = ACTIONS(1693), + [anon_sym_e_PLUSo_GT] = ACTIONS(1693), + [anon_sym_err_GT_GT] = ACTIONS(1695), + [anon_sym_out_GT_GT] = ACTIONS(1695), + [anon_sym_e_GT_GT] = ACTIONS(1695), + [anon_sym_o_GT_GT] = ACTIONS(1695), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1695), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1695), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1695), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1695), + [aux_sym_unquoted_token1] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1695), + }, + [1671] = { + [sym__expr_parenthesized_immediate] = STATE(7419), + [sym_comment] = STATE(1671), + [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(4970), + [anon_sym_RPAREN] = ACTIONS(4968), + [anon_sym_DOLLAR] = ACTIONS(4970), + [anon_sym_DASH_DASH] = ACTIONS(4968), + [anon_sym_DASH2] = ACTIONS(4970), + [anon_sym_LBRACE] = ACTIONS(4968), + [anon_sym_DOT_DOT] = ACTIONS(4970), + [anon_sym_LPAREN2] = ACTIONS(4452), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4968), + [anon_sym_DOT_DOT_LT] = ACTIONS(4968), + [anon_sym_null] = ACTIONS(4968), + [anon_sym_true] = ACTIONS(4968), + [anon_sym_false] = ACTIONS(4968), + [aux_sym__val_number_decimal_token1] = ACTIONS(4970), + [aux_sym__val_number_decimal_token2] = ACTIONS(4968), + [aux_sym__val_number_decimal_token3] = ACTIONS(4968), + [aux_sym__val_number_decimal_token4] = ACTIONS(4968), + [aux_sym__val_number_token1] = ACTIONS(4968), + [aux_sym__val_number_token2] = ACTIONS(4968), + [aux_sym__val_number_token3] = ACTIONS(4968), + [aux_sym__val_number_token4] = ACTIONS(4968), + [aux_sym__val_number_token5] = ACTIONS(4968), + [aux_sym__val_number_token6] = ACTIONS(4968), + [anon_sym_0b] = ACTIONS(4970), + [anon_sym_0o] = ACTIONS(4970), + [anon_sym_0x] = ACTIONS(4970), + [sym_val_date] = ACTIONS(4968), + [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(4970), + [anon_sym_out_GT] = ACTIONS(4970), + [anon_sym_e_GT] = ACTIONS(4970), + [anon_sym_o_GT] = ACTIONS(4970), + [anon_sym_err_PLUSout_GT] = ACTIONS(4970), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4970), + [anon_sym_o_PLUSe_GT] = ACTIONS(4970), + [anon_sym_e_PLUSo_GT] = ACTIONS(4970), + [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), + [aux_sym_unquoted_token1] = ACTIONS(4970), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4968), + }, + [1672] = { + [sym_comment] = STATE(1672), + [ts_builtin_sym_end] = ACTIONS(1703), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1703), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_DOT_DOT] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT] = ACTIONS(1703), + [anon_sym_null] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1703), + [aux_sym__val_number_token5] = ACTIONS(1703), + [aux_sym__val_number_token6] = ACTIONS(1703), + [anon_sym_0b] = ACTIONS(1701), + [anon_sym_0o] = ACTIONS(1701), + [anon_sym_0x] = ACTIONS(1701), + [sym_val_date] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [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(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token1] = ACTIONS(1701), + [aux_sym_unquoted_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1703), + }, + [1673] = { + [sym_comment] = STATE(1673), + [sym__newline] = ACTIONS(2077), + [anon_sym_SEMI] = ACTIONS(2077), + [anon_sym_PIPE] = ACTIONS(2077), + [anon_sym_err_GT_PIPE] = ACTIONS(2077), + [anon_sym_out_GT_PIPE] = ACTIONS(2077), + [anon_sym_e_GT_PIPE] = ACTIONS(2077), + [anon_sym_o_GT_PIPE] = ACTIONS(2077), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2077), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2077), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2077), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2077), + [anon_sym_LBRACK] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2077), + [anon_sym_RPAREN] = ACTIONS(2077), + [anon_sym_DOLLAR] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), + [anon_sym_DASH2] = ACTIONS(2073), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_RBRACE] = ACTIONS(2077), + [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), + [anon_sym_DOT_DOT_LT] = ACTIONS(2073), + [anon_sym_null] = ACTIONS(2073), + [anon_sym_true] = ACTIONS(2073), + [anon_sym_false] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2073), + [aux_sym__val_number_decimal_token3] = ACTIONS(2073), + [aux_sym__val_number_decimal_token4] = ACTIONS(2073), + [aux_sym__val_number_token1] = ACTIONS(2073), + [aux_sym__val_number_token2] = ACTIONS(2073), + [aux_sym__val_number_token3] = ACTIONS(2073), + [aux_sym__val_number_token4] = ACTIONS(2073), + [aux_sym__val_number_token5] = ACTIONS(2073), + [aux_sym__val_number_token6] = 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(2077), + [sym__str_single_quotes] = ACTIONS(2077), + [sym__str_back_ticks] = ACTIONS(2077), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2077), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2077), + [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_token4] = ACTIONS(2079), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2077), + }, + [1674] = { + [sym_comment] = STATE(1674), + [ts_builtin_sym_end] = 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(1806), + [anon_sym_DOLLAR] = ACTIONS(1806), + [anon_sym_DASH_DASH] = ACTIONS(1814), + [anon_sym_DASH2] = ACTIONS(1806), + [anon_sym_LBRACE] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1806), + [anon_sym_LPAREN2] = ACTIONS(1808), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1814), + [anon_sym_DOT_DOT_LT] = ACTIONS(1814), + [anon_sym_null] = ACTIONS(1814), + [anon_sym_true] = ACTIONS(1814), + [anon_sym_false] = ACTIONS(1814), + [aux_sym__val_number_decimal_token1] = ACTIONS(1806), + [aux_sym__val_number_decimal_token2] = ACTIONS(1814), + [aux_sym__val_number_decimal_token3] = ACTIONS(1814), + [aux_sym__val_number_decimal_token4] = ACTIONS(1814), + [aux_sym__val_number_token1] = ACTIONS(1814), + [aux_sym__val_number_token2] = ACTIONS(1814), + [aux_sym__val_number_token3] = ACTIONS(1814), + [aux_sym__val_number_token4] = ACTIONS(1814), + [aux_sym__val_number_token5] = ACTIONS(1814), + [aux_sym__val_number_token6] = ACTIONS(1814), + [anon_sym_0b] = ACTIONS(1806), + [anon_sym_0o] = ACTIONS(1806), + [anon_sym_0x] = ACTIONS(1806), + [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(1806), + [anon_sym_out_GT] = ACTIONS(1806), + [anon_sym_e_GT] = ACTIONS(1806), + [anon_sym_o_GT] = ACTIONS(1806), + [anon_sym_err_PLUSout_GT] = ACTIONS(1806), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1806), + [anon_sym_o_PLUSe_GT] = ACTIONS(1806), + [anon_sym_e_PLUSo_GT] = ACTIONS(1806), + [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(1806), + [aux_sym_unquoted_token2] = ACTIONS(1457), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1814), + }, [1675] = { [sym_comment] = STATE(1675), - [ts_builtin_sym_end] = ACTIONS(2140), - [sym__newline] = ACTIONS(2140), - [anon_sym_SEMI] = ACTIONS(2140), - [anon_sym_PIPE] = ACTIONS(2140), - [anon_sym_err_GT_PIPE] = ACTIONS(2140), - [anon_sym_out_GT_PIPE] = ACTIONS(2140), - [anon_sym_e_GT_PIPE] = ACTIONS(2140), - [anon_sym_o_GT_PIPE] = ACTIONS(2140), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2140), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2140), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2140), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2140), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2136), - [anon_sym_DOLLAR] = ACTIONS(2136), - [anon_sym_DASH_DASH] = ACTIONS(2136), - [anon_sym_DASH2] = ACTIONS(2136), - [anon_sym_LBRACE] = ACTIONS(2140), - [anon_sym_DOT_DOT] = ACTIONS(2136), - [anon_sym_LPAREN2] = ACTIONS(2138), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2136), - [anon_sym_DOT_DOT_LT] = ACTIONS(2136), - [anon_sym_null] = ACTIONS(2136), - [anon_sym_true] = ACTIONS(2136), - [anon_sym_false] = ACTIONS(2136), - [aux_sym__val_number_decimal_token1] = ACTIONS(2136), - [aux_sym__val_number_decimal_token2] = ACTIONS(2136), - [aux_sym__val_number_decimal_token3] = ACTIONS(2136), - [aux_sym__val_number_decimal_token4] = ACTIONS(2136), - [aux_sym__val_number_token1] = ACTIONS(2136), - [aux_sym__val_number_token2] = ACTIONS(2136), - [aux_sym__val_number_token3] = ACTIONS(2136), - [aux_sym__val_number_token4] = ACTIONS(2136), - [aux_sym__val_number_token5] = ACTIONS(2136), - [aux_sym__val_number_token6] = ACTIONS(2136), - [anon_sym_0b] = ACTIONS(2136), - [anon_sym_0o] = ACTIONS(2136), - [anon_sym_0x] = ACTIONS(2136), - [sym_val_date] = ACTIONS(2136), - [anon_sym_DQUOTE] = ACTIONS(2140), - [sym__str_single_quotes] = ACTIONS(2140), - [sym__str_back_ticks] = ACTIONS(2140), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2140), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2140), - [anon_sym_err_GT] = ACTIONS(2136), - [anon_sym_out_GT] = ACTIONS(2136), - [anon_sym_e_GT] = ACTIONS(2136), - [anon_sym_o_GT] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT] = ACTIONS(2136), - [anon_sym_err_GT_GT] = ACTIONS(2136), - [anon_sym_out_GT_GT] = ACTIONS(2136), - [anon_sym_e_GT_GT] = ACTIONS(2136), - [anon_sym_o_GT_GT] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2136), - [aux_sym_unquoted_token1] = ACTIONS(2136), - [aux_sym_unquoted_token4] = ACTIONS(2142), + [ts_builtin_sym_end] = ACTIONS(2083), + [sym__newline] = ACTIONS(2083), + [anon_sym_SEMI] = ACTIONS(2083), + [anon_sym_PIPE] = ACTIONS(2083), + [anon_sym_err_GT_PIPE] = ACTIONS(2083), + [anon_sym_out_GT_PIPE] = ACTIONS(2083), + [anon_sym_e_GT_PIPE] = ACTIONS(2083), + [anon_sym_o_GT_PIPE] = ACTIONS(2083), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2083), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2083), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2083), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2083), + [anon_sym_LBRACK] = ACTIONS(2083), + [anon_sym_LPAREN] = ACTIONS(2081), + [anon_sym_DOLLAR] = ACTIONS(2081), + [anon_sym_DASH_DASH] = ACTIONS(2081), + [anon_sym_DASH2] = ACTIONS(2081), + [anon_sym_LBRACE] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(2081), + [anon_sym_LPAREN2] = ACTIONS(2075), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2081), + [anon_sym_DOT_DOT_LT] = ACTIONS(2081), + [anon_sym_null] = ACTIONS(2081), + [anon_sym_true] = ACTIONS(2081), + [anon_sym_false] = ACTIONS(2081), + [aux_sym__val_number_decimal_token1] = ACTIONS(2081), + [aux_sym__val_number_decimal_token2] = ACTIONS(2081), + [aux_sym__val_number_decimal_token3] = ACTIONS(2081), + [aux_sym__val_number_decimal_token4] = ACTIONS(2081), + [aux_sym__val_number_token1] = ACTIONS(2081), + [aux_sym__val_number_token2] = ACTIONS(2081), + [aux_sym__val_number_token3] = ACTIONS(2081), + [aux_sym__val_number_token4] = ACTIONS(2081), + [aux_sym__val_number_token5] = ACTIONS(2081), + [aux_sym__val_number_token6] = ACTIONS(2081), + [anon_sym_0b] = ACTIONS(2081), + [anon_sym_0o] = ACTIONS(2081), + [anon_sym_0x] = ACTIONS(2081), + [sym_val_date] = ACTIONS(2081), + [anon_sym_DQUOTE] = ACTIONS(2083), + [sym__str_single_quotes] = ACTIONS(2083), + [sym__str_back_ticks] = ACTIONS(2083), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2083), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2083), + [anon_sym_err_GT] = ACTIONS(2081), + [anon_sym_out_GT] = ACTIONS(2081), + [anon_sym_e_GT] = ACTIONS(2081), + [anon_sym_o_GT] = ACTIONS(2081), + [anon_sym_err_PLUSout_GT] = ACTIONS(2081), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2081), + [anon_sym_o_PLUSe_GT] = ACTIONS(2081), + [anon_sym_e_PLUSo_GT] = ACTIONS(2081), + [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(2081), + [aux_sym_unquoted_token4] = ACTIONS(2079), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2140), + [sym_raw_string_begin] = ACTIONS(2083), }, [1676] = { [sym_comment] = STATE(1676), - [ts_builtin_sym_end] = ACTIONS(2146), - [sym__newline] = ACTIONS(2146), - [anon_sym_SEMI] = ACTIONS(2146), - [anon_sym_PIPE] = ACTIONS(2146), - [anon_sym_err_GT_PIPE] = ACTIONS(2146), - [anon_sym_out_GT_PIPE] = ACTIONS(2146), - [anon_sym_e_GT_PIPE] = ACTIONS(2146), - [anon_sym_o_GT_PIPE] = ACTIONS(2146), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2146), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2146), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2146), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2146), - [anon_sym_LBRACK] = ACTIONS(2146), - [anon_sym_LPAREN] = ACTIONS(2144), - [anon_sym_DOLLAR] = ACTIONS(2144), - [anon_sym_DASH_DASH] = ACTIONS(2144), - [anon_sym_DASH2] = ACTIONS(2144), - [anon_sym_LBRACE] = ACTIONS(2146), - [anon_sym_DOT_DOT] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(2138), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2144), - [anon_sym_DOT_DOT_LT] = ACTIONS(2144), - [anon_sym_null] = ACTIONS(2144), - [anon_sym_true] = ACTIONS(2144), - [anon_sym_false] = ACTIONS(2144), - [aux_sym__val_number_decimal_token1] = ACTIONS(2144), - [aux_sym__val_number_decimal_token2] = ACTIONS(2144), - [aux_sym__val_number_decimal_token3] = ACTIONS(2144), - [aux_sym__val_number_decimal_token4] = ACTIONS(2144), - [aux_sym__val_number_token1] = ACTIONS(2144), - [aux_sym__val_number_token2] = ACTIONS(2144), - [aux_sym__val_number_token3] = ACTIONS(2144), - [aux_sym__val_number_token4] = ACTIONS(2144), - [aux_sym__val_number_token5] = ACTIONS(2144), - [aux_sym__val_number_token6] = ACTIONS(2144), - [anon_sym_0b] = ACTIONS(2144), - [anon_sym_0o] = ACTIONS(2144), - [anon_sym_0x] = ACTIONS(2144), - [sym_val_date] = ACTIONS(2144), - [anon_sym_DQUOTE] = ACTIONS(2146), - [sym__str_single_quotes] = ACTIONS(2146), - [sym__str_back_ticks] = ACTIONS(2146), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2146), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2146), - [anon_sym_err_GT] = ACTIONS(2144), - [anon_sym_out_GT] = ACTIONS(2144), - [anon_sym_e_GT] = ACTIONS(2144), - [anon_sym_o_GT] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT] = ACTIONS(2144), - [anon_sym_err_GT_GT] = ACTIONS(2144), - [anon_sym_out_GT_GT] = ACTIONS(2144), - [anon_sym_e_GT_GT] = ACTIONS(2144), - [anon_sym_o_GT_GT] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2144), - [aux_sym_unquoted_token1] = ACTIONS(2144), - [aux_sym_unquoted_token4] = ACTIONS(2142), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2146), + [ts_builtin_sym_end] = 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_GT2] = ACTIONS(1806), + [anon_sym_DASH2] = ACTIONS(1814), + [anon_sym_in2] = ACTIONS(1814), + [anon_sym_STAR2] = ACTIONS(1806), + [anon_sym_and2] = ACTIONS(1814), + [anon_sym_xor2] = ACTIONS(1814), + [anon_sym_or2] = ACTIONS(1814), + [anon_sym_not_DASHin2] = ACTIONS(1814), + [anon_sym_has2] = ACTIONS(1814), + [anon_sym_not_DASHhas2] = ACTIONS(1814), + [anon_sym_starts_DASHwith2] = ACTIONS(1814), + [anon_sym_ends_DASHwith2] = ACTIONS(1814), + [anon_sym_EQ_EQ2] = ACTIONS(1814), + [anon_sym_BANG_EQ2] = ACTIONS(1814), + [anon_sym_LT2] = ACTIONS(1806), + [anon_sym_LT_EQ2] = ACTIONS(1814), + [anon_sym_GT_EQ2] = ACTIONS(1814), + [anon_sym_EQ_TILDE2] = ACTIONS(1814), + [anon_sym_BANG_TILDE2] = ACTIONS(1814), + [anon_sym_LPAREN2] = ACTIONS(1808), + [anon_sym_STAR_STAR2] = ACTIONS(1814), + [anon_sym_PLUS_PLUS2] = ACTIONS(1814), + [anon_sym_SLASH2] = ACTIONS(1806), + [anon_sym_mod2] = ACTIONS(1814), + [anon_sym_SLASH_SLASH2] = ACTIONS(1814), + [anon_sym_PLUS2] = ACTIONS(1806), + [anon_sym_bit_DASHshl2] = ACTIONS(1814), + [anon_sym_bit_DASHshr2] = ACTIONS(1814), + [anon_sym_bit_DASHand2] = ACTIONS(1814), + [anon_sym_bit_DASHxor2] = ACTIONS(1814), + [anon_sym_bit_DASHor2] = ACTIONS(1814), + [anon_sym_DOT_DOT2] = ACTIONS(4972), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4974), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4974), + [anon_sym_err_GT] = ACTIONS(1806), + [anon_sym_out_GT] = ACTIONS(1806), + [anon_sym_e_GT] = ACTIONS(1806), + [anon_sym_o_GT] = ACTIONS(1806), + [anon_sym_err_PLUSout_GT] = ACTIONS(1806), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1806), + [anon_sym_o_PLUSe_GT] = ACTIONS(1806), + [anon_sym_e_PLUSo_GT] = ACTIONS(1806), + [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_token2] = ACTIONS(1457), + [anon_sym_POUND] = ACTIONS(247), }, [1677] = { - [sym_cell_path] = STATE(2138), - [sym_path] = STATE(1532), [sym_comment] = STATE(1677), - [aux_sym_cell_path_repeat1] = STATE(1386), - [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_RPAREN] = ACTIONS(1857), - [anon_sym_GT2] = ACTIONS(1855), - [anon_sym_DASH2] = ACTIONS(1857), - [anon_sym_in2] = ACTIONS(1857), - [anon_sym_LBRACE] = ACTIONS(1857), - [anon_sym_RBRACE] = ACTIONS(1857), - [anon_sym_EQ_GT] = ACTIONS(1857), - [anon_sym_STAR2] = ACTIONS(1855), - [anon_sym_and2] = ACTIONS(1857), - [anon_sym_xor2] = ACTIONS(1857), - [anon_sym_or2] = ACTIONS(1857), - [anon_sym_not_DASHin2] = ACTIONS(1857), - [anon_sym_starts_DASHwith2] = ACTIONS(1857), - [anon_sym_ends_DASHwith2] = ACTIONS(1857), - [anon_sym_EQ_EQ2] = ACTIONS(1857), - [anon_sym_BANG_EQ2] = ACTIONS(1857), - [anon_sym_LT2] = ACTIONS(1855), - [anon_sym_LT_EQ2] = ACTIONS(1857), - [anon_sym_GT_EQ2] = ACTIONS(1857), - [anon_sym_EQ_TILDE2] = ACTIONS(1857), - [anon_sym_BANG_TILDE2] = ACTIONS(1857), - [anon_sym_STAR_STAR2] = ACTIONS(1857), - [anon_sym_PLUS_PLUS2] = ACTIONS(1857), - [anon_sym_SLASH2] = ACTIONS(1855), - [anon_sym_mod2] = ACTIONS(1857), - [anon_sym_SLASH_SLASH2] = ACTIONS(1857), - [anon_sym_PLUS2] = ACTIONS(1855), - [anon_sym_bit_DASHshl2] = ACTIONS(1857), - [anon_sym_bit_DASHshr2] = ACTIONS(1857), - [anon_sym_bit_DASHand2] = ACTIONS(1857), - [anon_sym_bit_DASHxor2] = ACTIONS(1857), - [anon_sym_bit_DASHor2] = ACTIONS(1857), - [anon_sym_DOT2] = ACTIONS(4912), - [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), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(1288), + [anon_sym_SEMI] = ACTIONS(1288), + [anon_sym_PIPE] = ACTIONS(1288), + [anon_sym_err_GT_PIPE] = ACTIONS(1288), + [anon_sym_out_GT_PIPE] = ACTIONS(1288), + [anon_sym_e_GT_PIPE] = ACTIONS(1288), + [anon_sym_o_GT_PIPE] = ACTIONS(1288), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1288), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1288), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1288), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1288), + [anon_sym_COLON] = ACTIONS(1288), + [anon_sym_LBRACK] = ACTIONS(1288), + [anon_sym_RPAREN] = ACTIONS(1288), + [anon_sym_GT2] = ACTIONS(1290), + [anon_sym_DASH2] = ACTIONS(1288), + [anon_sym_in2] = ACTIONS(1288), + [anon_sym_else] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1288), + [anon_sym_catch] = ACTIONS(1288), + [anon_sym_STAR2] = ACTIONS(1290), + [anon_sym_and2] = ACTIONS(1288), + [anon_sym_xor2] = ACTIONS(1288), + [anon_sym_or2] = ACTIONS(1288), + [anon_sym_not_DASHin2] = ACTIONS(1288), + [anon_sym_has2] = ACTIONS(1288), + [anon_sym_not_DASHhas2] = ACTIONS(1288), + [anon_sym_starts_DASHwith2] = ACTIONS(1288), + [anon_sym_ends_DASHwith2] = ACTIONS(1288), + [anon_sym_EQ_EQ2] = ACTIONS(1288), + [anon_sym_BANG_EQ2] = ACTIONS(1288), + [anon_sym_LT2] = ACTIONS(1290), + [anon_sym_LT_EQ2] = ACTIONS(1288), + [anon_sym_GT_EQ2] = ACTIONS(1288), + [anon_sym_EQ_TILDE2] = ACTIONS(1288), + [anon_sym_BANG_TILDE2] = ACTIONS(1288), + [anon_sym_STAR_STAR2] = ACTIONS(1288), + [anon_sym_PLUS_PLUS2] = ACTIONS(1288), + [anon_sym_SLASH2] = ACTIONS(1290), + [anon_sym_mod2] = ACTIONS(1288), + [anon_sym_SLASH_SLASH2] = ACTIONS(1288), + [anon_sym_PLUS2] = ACTIONS(1290), + [anon_sym_bit_DASHshl2] = ACTIONS(1288), + [anon_sym_bit_DASHshr2] = ACTIONS(1288), + [anon_sym_bit_DASHand2] = ACTIONS(1288), + [anon_sym_bit_DASHxor2] = ACTIONS(1288), + [anon_sym_bit_DASHor2] = ACTIONS(1288), + [anon_sym_err_GT] = ACTIONS(1290), + [anon_sym_out_GT] = ACTIONS(1290), + [anon_sym_e_GT] = ACTIONS(1290), + [anon_sym_o_GT] = ACTIONS(1290), + [anon_sym_err_PLUSout_GT] = ACTIONS(1290), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1290), + [anon_sym_o_PLUSe_GT] = ACTIONS(1290), + [anon_sym_e_PLUSo_GT] = ACTIONS(1290), + [anon_sym_err_GT_GT] = ACTIONS(1288), + [anon_sym_out_GT_GT] = ACTIONS(1288), + [anon_sym_e_GT_GT] = ACTIONS(1288), + [anon_sym_o_GT_GT] = ACTIONS(1288), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1288), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1288), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1288), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1288), + [anon_sym_POUND] = ACTIONS(247), }, [1678] = { + [sym__expr_parenthesized_immediate] = STATE(7383), [sym_comment] = STATE(1678), - [ts_builtin_sym_end] = 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(1835), - [anon_sym_DOLLAR] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1837), - [anon_sym_DASH2] = ACTIONS(1835), - [anon_sym_LBRACE] = ACTIONS(1837), - [anon_sym_DOT_DOT] = ACTIONS(1835), - [anon_sym_LPAREN2] = ACTIONS(1837), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1837), - [anon_sym_DOT_DOT_LT] = ACTIONS(1837), - [anon_sym_null] = ACTIONS(1837), - [anon_sym_true] = ACTIONS(1837), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(1837), - [aux_sym__val_number_token5] = ACTIONS(1837), - [aux_sym__val_number_token6] = 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), - [aux_sym_unquoted_token2] = ACTIONS(1835), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1837), + [sym__newline] = ACTIONS(4960), + [anon_sym_SEMI] = ACTIONS(4960), + [anon_sym_PIPE] = ACTIONS(4960), + [anon_sym_err_GT_PIPE] = ACTIONS(4960), + [anon_sym_out_GT_PIPE] = ACTIONS(4960), + [anon_sym_e_GT_PIPE] = ACTIONS(4960), + [anon_sym_o_GT_PIPE] = ACTIONS(4960), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4960), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4960), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4960), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4960), + [anon_sym_RPAREN] = ACTIONS(4960), + [anon_sym_GT2] = ACTIONS(4962), + [anon_sym_DASH2] = ACTIONS(4960), + [anon_sym_in2] = ACTIONS(4960), + [anon_sym_LBRACE] = ACTIONS(4960), + [anon_sym_RBRACE] = ACTIONS(4960), + [anon_sym_EQ_GT] = ACTIONS(4960), + [anon_sym_STAR2] = ACTIONS(4962), + [anon_sym_and2] = ACTIONS(4960), + [anon_sym_xor2] = ACTIONS(4960), + [anon_sym_or2] = ACTIONS(4960), + [anon_sym_not_DASHin2] = ACTIONS(4960), + [anon_sym_has2] = ACTIONS(4960), + [anon_sym_not_DASHhas2] = ACTIONS(4960), + [anon_sym_starts_DASHwith2] = ACTIONS(4960), + [anon_sym_ends_DASHwith2] = ACTIONS(4960), + [anon_sym_EQ_EQ2] = ACTIONS(4960), + [anon_sym_BANG_EQ2] = ACTIONS(4960), + [anon_sym_LT2] = ACTIONS(4962), + [anon_sym_LT_EQ2] = ACTIONS(4960), + [anon_sym_GT_EQ2] = ACTIONS(4960), + [anon_sym_EQ_TILDE2] = ACTIONS(4960), + [anon_sym_BANG_TILDE2] = ACTIONS(4960), + [anon_sym_LPAREN2] = ACTIONS(4452), + [anon_sym_STAR_STAR2] = ACTIONS(4960), + [anon_sym_PLUS_PLUS2] = ACTIONS(4960), + [anon_sym_SLASH2] = ACTIONS(4962), + [anon_sym_mod2] = ACTIONS(4960), + [anon_sym_SLASH_SLASH2] = ACTIONS(4960), + [anon_sym_PLUS2] = ACTIONS(4962), + [anon_sym_bit_DASHshl2] = ACTIONS(4960), + [anon_sym_bit_DASHshr2] = ACTIONS(4960), + [anon_sym_bit_DASHand2] = ACTIONS(4960), + [anon_sym_bit_DASHxor2] = ACTIONS(4960), + [anon_sym_bit_DASHor2] = ACTIONS(4960), + [anon_sym_err_GT] = ACTIONS(4962), + [anon_sym_out_GT] = ACTIONS(4962), + [anon_sym_e_GT] = ACTIONS(4962), + [anon_sym_o_GT] = ACTIONS(4962), + [anon_sym_err_PLUSout_GT] = ACTIONS(4962), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4962), + [anon_sym_o_PLUSe_GT] = ACTIONS(4962), + [anon_sym_e_PLUSo_GT] = ACTIONS(4962), + [anon_sym_err_GT_GT] = ACTIONS(4960), + [anon_sym_out_GT_GT] = ACTIONS(4960), + [anon_sym_e_GT_GT] = ACTIONS(4960), + [anon_sym_o_GT_GT] = ACTIONS(4960), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4960), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4960), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4960), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4960), + [anon_sym_POUND] = ACTIONS(247), }, [1679] = { - [sym_cell_path] = STATE(2103), - [sym_path] = STATE(1532), + [sym__expr_parenthesized_immediate] = STATE(7383), [sym_comment] = STATE(1679), - [aux_sym_cell_path_repeat1] = STATE(1386), - [sym__newline] = ACTIONS(1943), - [anon_sym_SEMI] = ACTIONS(1943), - [anon_sym_PIPE] = ACTIONS(1943), - [anon_sym_err_GT_PIPE] = ACTIONS(1943), - [anon_sym_out_GT_PIPE] = ACTIONS(1943), - [anon_sym_e_GT_PIPE] = ACTIONS(1943), - [anon_sym_o_GT_PIPE] = ACTIONS(1943), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1943), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1943), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1943), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1943), - [anon_sym_RPAREN] = ACTIONS(1943), - [anon_sym_GT2] = ACTIONS(1941), - [anon_sym_DASH2] = ACTIONS(1943), - [anon_sym_in2] = ACTIONS(1943), - [anon_sym_LBRACE] = ACTIONS(1943), - [anon_sym_RBRACE] = ACTIONS(1943), - [anon_sym_EQ_GT] = ACTIONS(1943), - [anon_sym_STAR2] = ACTIONS(1941), - [anon_sym_and2] = ACTIONS(1943), - [anon_sym_xor2] = ACTIONS(1943), - [anon_sym_or2] = ACTIONS(1943), - [anon_sym_not_DASHin2] = ACTIONS(1943), - [anon_sym_starts_DASHwith2] = ACTIONS(1943), - [anon_sym_ends_DASHwith2] = ACTIONS(1943), - [anon_sym_EQ_EQ2] = ACTIONS(1943), - [anon_sym_BANG_EQ2] = ACTIONS(1943), - [anon_sym_LT2] = ACTIONS(1941), - [anon_sym_LT_EQ2] = ACTIONS(1943), - [anon_sym_GT_EQ2] = ACTIONS(1943), - [anon_sym_EQ_TILDE2] = ACTIONS(1943), - [anon_sym_BANG_TILDE2] = ACTIONS(1943), - [anon_sym_STAR_STAR2] = ACTIONS(1943), - [anon_sym_PLUS_PLUS2] = ACTIONS(1943), - [anon_sym_SLASH2] = ACTIONS(1941), - [anon_sym_mod2] = ACTIONS(1943), - [anon_sym_SLASH_SLASH2] = ACTIONS(1943), - [anon_sym_PLUS2] = ACTIONS(1941), - [anon_sym_bit_DASHshl2] = ACTIONS(1943), - [anon_sym_bit_DASHshr2] = ACTIONS(1943), - [anon_sym_bit_DASHand2] = ACTIONS(1943), - [anon_sym_bit_DASHxor2] = ACTIONS(1943), - [anon_sym_bit_DASHor2] = ACTIONS(1943), - [anon_sym_DOT2] = ACTIONS(4912), - [anon_sym_err_GT] = ACTIONS(1941), - [anon_sym_out_GT] = ACTIONS(1941), - [anon_sym_e_GT] = ACTIONS(1941), - [anon_sym_o_GT] = ACTIONS(1941), - [anon_sym_err_PLUSout_GT] = ACTIONS(1941), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1941), - [anon_sym_o_PLUSe_GT] = ACTIONS(1941), - [anon_sym_e_PLUSo_GT] = ACTIONS(1941), - [anon_sym_err_GT_GT] = ACTIONS(1943), - [anon_sym_out_GT_GT] = ACTIONS(1943), - [anon_sym_e_GT_GT] = ACTIONS(1943), - [anon_sym_o_GT_GT] = ACTIONS(1943), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1943), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1943), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1943), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1943), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(4960), + [anon_sym_SEMI] = ACTIONS(4960), + [anon_sym_PIPE] = ACTIONS(4960), + [anon_sym_err_GT_PIPE] = ACTIONS(4960), + [anon_sym_out_GT_PIPE] = ACTIONS(4960), + [anon_sym_e_GT_PIPE] = ACTIONS(4960), + [anon_sym_o_GT_PIPE] = ACTIONS(4960), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4960), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4960), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4960), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4960), + [anon_sym_RPAREN] = ACTIONS(4960), + [anon_sym_GT2] = ACTIONS(4962), + [anon_sym_DASH2] = ACTIONS(4960), + [anon_sym_in2] = ACTIONS(4960), + [anon_sym_LBRACE] = ACTIONS(4960), + [anon_sym_RBRACE] = ACTIONS(4960), + [anon_sym_EQ_GT] = ACTIONS(4960), + [anon_sym_STAR2] = ACTIONS(4962), + [anon_sym_and2] = ACTIONS(4960), + [anon_sym_xor2] = ACTIONS(4960), + [anon_sym_or2] = ACTIONS(4960), + [anon_sym_not_DASHin2] = ACTIONS(4960), + [anon_sym_has2] = ACTIONS(4960), + [anon_sym_not_DASHhas2] = ACTIONS(4960), + [anon_sym_starts_DASHwith2] = ACTIONS(4960), + [anon_sym_ends_DASHwith2] = ACTIONS(4960), + [anon_sym_EQ_EQ2] = ACTIONS(4960), + [anon_sym_BANG_EQ2] = ACTIONS(4960), + [anon_sym_LT2] = ACTIONS(4962), + [anon_sym_LT_EQ2] = ACTIONS(4960), + [anon_sym_GT_EQ2] = ACTIONS(4960), + [anon_sym_EQ_TILDE2] = ACTIONS(4960), + [anon_sym_BANG_TILDE2] = ACTIONS(4960), + [anon_sym_LPAREN2] = ACTIONS(4452), + [anon_sym_STAR_STAR2] = ACTIONS(4960), + [anon_sym_PLUS_PLUS2] = ACTIONS(4960), + [anon_sym_SLASH2] = ACTIONS(4962), + [anon_sym_mod2] = ACTIONS(4960), + [anon_sym_SLASH_SLASH2] = ACTIONS(4960), + [anon_sym_PLUS2] = ACTIONS(4962), + [anon_sym_bit_DASHshl2] = ACTIONS(4960), + [anon_sym_bit_DASHshr2] = ACTIONS(4960), + [anon_sym_bit_DASHand2] = ACTIONS(4960), + [anon_sym_bit_DASHxor2] = ACTIONS(4960), + [anon_sym_bit_DASHor2] = ACTIONS(4960), + [anon_sym_err_GT] = ACTIONS(4962), + [anon_sym_out_GT] = ACTIONS(4962), + [anon_sym_e_GT] = ACTIONS(4962), + [anon_sym_o_GT] = ACTIONS(4962), + [anon_sym_err_PLUSout_GT] = ACTIONS(4962), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4962), + [anon_sym_o_PLUSe_GT] = ACTIONS(4962), + [anon_sym_e_PLUSo_GT] = ACTIONS(4962), + [anon_sym_err_GT_GT] = ACTIONS(4960), + [anon_sym_out_GT_GT] = ACTIONS(4960), + [anon_sym_e_GT_GT] = ACTIONS(4960), + [anon_sym_o_GT_GT] = ACTIONS(4960), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4960), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4960), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4960), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4960), + [anon_sym_POUND] = ACTIONS(247), }, [1680] = { + [sym__expr_parenthesized_immediate] = STATE(7383), [sym_comment] = STATE(1680), - [sym__newline] = ACTIONS(998), - [anon_sym_SEMI] = ACTIONS(998), - [anon_sym_PIPE] = ACTIONS(998), - [anon_sym_err_GT_PIPE] = ACTIONS(998), - [anon_sym_out_GT_PIPE] = ACTIONS(998), - [anon_sym_e_GT_PIPE] = ACTIONS(998), - [anon_sym_o_GT_PIPE] = ACTIONS(998), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(998), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(998), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(998), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(998), - [anon_sym_LBRACK] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(998), - [anon_sym_RPAREN] = ACTIONS(998), - [anon_sym_DOLLAR] = ACTIONS(996), - [anon_sym_DASH_DASH] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_LBRACE] = ACTIONS(998), - [anon_sym_RBRACE] = ACTIONS(998), - [anon_sym_DOT_DOT] = ACTIONS(996), - [anon_sym_DOT_DOT_EQ] = ACTIONS(998), - [anon_sym_DOT_DOT_LT] = ACTIONS(998), - [anon_sym_null] = ACTIONS(998), - [anon_sym_true] = ACTIONS(998), - [anon_sym_false] = ACTIONS(998), - [aux_sym__val_number_decimal_token1] = ACTIONS(996), - [aux_sym__val_number_decimal_token2] = ACTIONS(998), - [aux_sym__val_number_decimal_token3] = ACTIONS(998), - [aux_sym__val_number_decimal_token4] = ACTIONS(998), - [aux_sym__val_number_token1] = ACTIONS(998), - [aux_sym__val_number_token2] = ACTIONS(998), - [aux_sym__val_number_token3] = ACTIONS(998), - [aux_sym__val_number_token4] = ACTIONS(998), - [aux_sym__val_number_token5] = ACTIONS(998), - [aux_sym__val_number_token6] = ACTIONS(998), - [anon_sym_0b] = ACTIONS(996), - [anon_sym_0o] = ACTIONS(996), - [anon_sym_0x] = ACTIONS(996), - [sym_val_date] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(998), - [sym__str_single_quotes] = ACTIONS(998), - [sym__str_back_ticks] = ACTIONS(998), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(998), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), - [anon_sym_DOT2] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(998), - [anon_sym_out_GT_GT] = ACTIONS(998), - [anon_sym_e_GT_GT] = ACTIONS(998), - [anon_sym_o_GT_GT] = ACTIONS(998), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(998), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(998), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(998), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(998), - [aux_sym_unquoted_token1] = ACTIONS(996), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(998), + [sym__newline] = ACTIONS(4960), + [anon_sym_SEMI] = ACTIONS(4960), + [anon_sym_PIPE] = ACTIONS(4960), + [anon_sym_err_GT_PIPE] = ACTIONS(4960), + [anon_sym_out_GT_PIPE] = ACTIONS(4960), + [anon_sym_e_GT_PIPE] = ACTIONS(4960), + [anon_sym_o_GT_PIPE] = ACTIONS(4960), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4960), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4960), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4960), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4960), + [anon_sym_RPAREN] = ACTIONS(4960), + [anon_sym_GT2] = ACTIONS(4962), + [anon_sym_DASH2] = ACTIONS(4960), + [anon_sym_in2] = ACTIONS(4960), + [anon_sym_LBRACE] = ACTIONS(4960), + [anon_sym_RBRACE] = ACTIONS(4960), + [anon_sym_EQ_GT] = ACTIONS(4960), + [anon_sym_STAR2] = ACTIONS(4962), + [anon_sym_and2] = ACTIONS(4960), + [anon_sym_xor2] = ACTIONS(4960), + [anon_sym_or2] = ACTIONS(4960), + [anon_sym_not_DASHin2] = ACTIONS(4960), + [anon_sym_has2] = ACTIONS(4960), + [anon_sym_not_DASHhas2] = ACTIONS(4960), + [anon_sym_starts_DASHwith2] = ACTIONS(4960), + [anon_sym_ends_DASHwith2] = ACTIONS(4960), + [anon_sym_EQ_EQ2] = ACTIONS(4960), + [anon_sym_BANG_EQ2] = ACTIONS(4960), + [anon_sym_LT2] = ACTIONS(4962), + [anon_sym_LT_EQ2] = ACTIONS(4960), + [anon_sym_GT_EQ2] = ACTIONS(4960), + [anon_sym_EQ_TILDE2] = ACTIONS(4960), + [anon_sym_BANG_TILDE2] = ACTIONS(4960), + [anon_sym_LPAREN2] = ACTIONS(4452), + [anon_sym_STAR_STAR2] = ACTIONS(4960), + [anon_sym_PLUS_PLUS2] = ACTIONS(4960), + [anon_sym_SLASH2] = ACTIONS(4962), + [anon_sym_mod2] = ACTIONS(4960), + [anon_sym_SLASH_SLASH2] = ACTIONS(4960), + [anon_sym_PLUS2] = ACTIONS(4962), + [anon_sym_bit_DASHshl2] = ACTIONS(4960), + [anon_sym_bit_DASHshr2] = ACTIONS(4960), + [anon_sym_bit_DASHand2] = ACTIONS(4960), + [anon_sym_bit_DASHxor2] = ACTIONS(4960), + [anon_sym_bit_DASHor2] = ACTIONS(4960), + [anon_sym_err_GT] = ACTIONS(4962), + [anon_sym_out_GT] = ACTIONS(4962), + [anon_sym_e_GT] = ACTIONS(4962), + [anon_sym_o_GT] = ACTIONS(4962), + [anon_sym_err_PLUSout_GT] = ACTIONS(4962), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4962), + [anon_sym_o_PLUSe_GT] = ACTIONS(4962), + [anon_sym_e_PLUSo_GT] = ACTIONS(4962), + [anon_sym_err_GT_GT] = ACTIONS(4960), + [anon_sym_out_GT_GT] = ACTIONS(4960), + [anon_sym_e_GT_GT] = ACTIONS(4960), + [anon_sym_o_GT_GT] = ACTIONS(4960), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4960), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4960), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4960), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4960), + [anon_sym_POUND] = ACTIONS(247), }, [1681] = { [sym_comment] = STATE(1681), - [sym__newline] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(994), - [anon_sym_err_GT_PIPE] = ACTIONS(994), - [anon_sym_out_GT_PIPE] = ACTIONS(994), - [anon_sym_e_GT_PIPE] = ACTIONS(994), - [anon_sym_o_GT_PIPE] = ACTIONS(994), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_LPAREN] = ACTIONS(994), - [anon_sym_RPAREN] = ACTIONS(994), - [anon_sym_DOLLAR] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(994), - [anon_sym_DASH2] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(994), - [anon_sym_RBRACE] = ACTIONS(994), - [anon_sym_DOT_DOT] = ACTIONS(992), - [anon_sym_DOT_DOT_EQ] = ACTIONS(994), - [anon_sym_DOT_DOT_LT] = ACTIONS(994), - [anon_sym_null] = ACTIONS(994), - [anon_sym_true] = ACTIONS(994), - [anon_sym_false] = ACTIONS(994), - [aux_sym__val_number_decimal_token1] = ACTIONS(992), - [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), - [aux_sym__val_number_token4] = ACTIONS(994), - [aux_sym__val_number_token5] = ACTIONS(994), - [aux_sym__val_number_token6] = ACTIONS(994), - [anon_sym_0b] = ACTIONS(992), - [anon_sym_0o] = ACTIONS(992), - [anon_sym_0x] = ACTIONS(992), - [sym_val_date] = ACTIONS(994), - [anon_sym_DQUOTE] = ACTIONS(994), - [sym__str_single_quotes] = ACTIONS(994), - [sym__str_back_ticks] = ACTIONS(994), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(994), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(994), - [anon_sym_DOT2] = ACTIONS(992), - [anon_sym_err_GT] = ACTIONS(992), - [anon_sym_out_GT] = ACTIONS(992), - [anon_sym_e_GT] = ACTIONS(992), - [anon_sym_o_GT] = ACTIONS(992), - [anon_sym_err_PLUSout_GT] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT] = ACTIONS(992), - [anon_sym_o_PLUSe_GT] = ACTIONS(992), - [anon_sym_e_PLUSo_GT] = ACTIONS(992), - [anon_sym_err_GT_GT] = ACTIONS(994), - [anon_sym_out_GT_GT] = ACTIONS(994), - [anon_sym_e_GT_GT] = ACTIONS(994), - [anon_sym_o_GT_GT] = ACTIONS(994), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), - [aux_sym_unquoted_token1] = ACTIONS(992), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(994), + [ts_builtin_sym_end] = ACTIONS(4938), + [sym_long_flag_identifier] = ACTIONS(4976), + [sym__newline] = ACTIONS(4938), + [anon_sym_SEMI] = ACTIONS(4938), + [anon_sym_PIPE] = ACTIONS(4938), + [anon_sym_err_GT_PIPE] = ACTIONS(4938), + [anon_sym_out_GT_PIPE] = ACTIONS(4938), + [anon_sym_e_GT_PIPE] = ACTIONS(4938), + [anon_sym_o_GT_PIPE] = ACTIONS(4938), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4938), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4938), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4938), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4938), + [anon_sym_LBRACK] = ACTIONS(4938), + [anon_sym_LPAREN] = ACTIONS(4938), + [anon_sym_DOLLAR] = ACTIONS(4940), + [anon_sym_DASH_DASH] = ACTIONS(4938), + [anon_sym_DASH2] = ACTIONS(4940), + [anon_sym_LBRACE] = ACTIONS(4938), + [anon_sym_DOT_DOT] = ACTIONS(4940), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4938), + [anon_sym_DOT_DOT_LT] = ACTIONS(4938), + [anon_sym_null] = ACTIONS(4940), + [anon_sym_true] = ACTIONS(4940), + [anon_sym_false] = ACTIONS(4940), + [aux_sym__val_number_decimal_token1] = ACTIONS(4940), + [aux_sym__val_number_decimal_token2] = ACTIONS(4938), + [aux_sym__val_number_decimal_token3] = ACTIONS(4938), + [aux_sym__val_number_decimal_token4] = ACTIONS(4938), + [aux_sym__val_number_token1] = ACTIONS(4940), + [aux_sym__val_number_token2] = ACTIONS(4940), + [aux_sym__val_number_token3] = ACTIONS(4940), + [aux_sym__val_number_token4] = ACTIONS(4940), + [aux_sym__val_number_token5] = ACTIONS(4938), + [aux_sym__val_number_token6] = ACTIONS(4940), + [anon_sym_0b] = ACTIONS(4940), + [anon_sym_0o] = ACTIONS(4940), + [anon_sym_0x] = ACTIONS(4940), + [sym_val_date] = ACTIONS(4940), + [anon_sym_DQUOTE] = ACTIONS(4938), + [sym__str_single_quotes] = ACTIONS(4938), + [sym__str_back_ticks] = ACTIONS(4938), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4938), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4938), + [anon_sym_err_GT] = ACTIONS(4940), + [anon_sym_out_GT] = ACTIONS(4940), + [anon_sym_e_GT] = ACTIONS(4940), + [anon_sym_o_GT] = ACTIONS(4940), + [anon_sym_err_PLUSout_GT] = ACTIONS(4940), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4940), + [anon_sym_o_PLUSe_GT] = ACTIONS(4940), + [anon_sym_e_PLUSo_GT] = ACTIONS(4940), + [anon_sym_err_GT_GT] = ACTIONS(4938), + [anon_sym_out_GT_GT] = ACTIONS(4938), + [anon_sym_e_GT_GT] = ACTIONS(4938), + [anon_sym_o_GT_GT] = ACTIONS(4938), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4938), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4938), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4938), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4938), + [anon_sym_EQ2] = ACTIONS(4978), + [aux_sym_unquoted_token1] = ACTIONS(4940), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4938), }, [1682] = { + [sym__expr_parenthesized_immediate] = STATE(7383), [sym_comment] = STATE(1682), - [sym__newline] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_PIPE] = ACTIONS(990), - [anon_sym_err_GT_PIPE] = ACTIONS(990), - [anon_sym_out_GT_PIPE] = ACTIONS(990), - [anon_sym_e_GT_PIPE] = ACTIONS(990), - [anon_sym_o_GT_PIPE] = ACTIONS(990), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(990), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(990), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(990), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(990), - [anon_sym_RPAREN] = ACTIONS(990), - [anon_sym_DOLLAR] = ACTIONS(988), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_DASH2] = ACTIONS(988), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(990), - [anon_sym_DOT_DOT] = ACTIONS(988), - [anon_sym_DOT_DOT_EQ] = ACTIONS(990), - [anon_sym_DOT_DOT_LT] = ACTIONS(990), - [anon_sym_null] = ACTIONS(990), - [anon_sym_true] = ACTIONS(990), - [anon_sym_false] = ACTIONS(990), - [aux_sym__val_number_decimal_token1] = ACTIONS(988), - [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), - [aux_sym__val_number_token4] = ACTIONS(990), - [aux_sym__val_number_token5] = ACTIONS(990), - [aux_sym__val_number_token6] = ACTIONS(990), - [anon_sym_0b] = ACTIONS(988), - [anon_sym_0o] = ACTIONS(988), - [anon_sym_0x] = ACTIONS(988), - [sym_val_date] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym__str_single_quotes] = ACTIONS(990), - [sym__str_back_ticks] = ACTIONS(990), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(990), - [anon_sym_DOT2] = ACTIONS(988), - [anon_sym_err_GT] = ACTIONS(988), - [anon_sym_out_GT] = ACTIONS(988), - [anon_sym_e_GT] = ACTIONS(988), - [anon_sym_o_GT] = ACTIONS(988), - [anon_sym_err_PLUSout_GT] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT] = ACTIONS(988), - [anon_sym_o_PLUSe_GT] = ACTIONS(988), - [anon_sym_e_PLUSo_GT] = ACTIONS(988), - [anon_sym_err_GT_GT] = ACTIONS(990), - [anon_sym_out_GT_GT] = ACTIONS(990), - [anon_sym_e_GT_GT] = ACTIONS(990), - [anon_sym_o_GT_GT] = ACTIONS(990), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(990), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(990), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(990), - [aux_sym_unquoted_token1] = ACTIONS(988), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(990), + [sym__newline] = ACTIONS(4960), + [anon_sym_SEMI] = ACTIONS(4960), + [anon_sym_PIPE] = ACTIONS(4960), + [anon_sym_err_GT_PIPE] = ACTIONS(4960), + [anon_sym_out_GT_PIPE] = ACTIONS(4960), + [anon_sym_e_GT_PIPE] = ACTIONS(4960), + [anon_sym_o_GT_PIPE] = ACTIONS(4960), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4960), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4960), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4960), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4960), + [anon_sym_RPAREN] = ACTIONS(4960), + [anon_sym_GT2] = ACTIONS(4962), + [anon_sym_DASH2] = ACTIONS(4960), + [anon_sym_in2] = ACTIONS(4960), + [anon_sym_LBRACE] = ACTIONS(4960), + [anon_sym_RBRACE] = ACTIONS(4960), + [anon_sym_EQ_GT] = ACTIONS(4960), + [anon_sym_STAR2] = ACTIONS(4962), + [anon_sym_and2] = ACTIONS(4960), + [anon_sym_xor2] = ACTIONS(4960), + [anon_sym_or2] = ACTIONS(4960), + [anon_sym_not_DASHin2] = ACTIONS(4960), + [anon_sym_has2] = ACTIONS(4960), + [anon_sym_not_DASHhas2] = ACTIONS(4960), + [anon_sym_starts_DASHwith2] = ACTIONS(4960), + [anon_sym_ends_DASHwith2] = ACTIONS(4960), + [anon_sym_EQ_EQ2] = ACTIONS(4960), + [anon_sym_BANG_EQ2] = ACTIONS(4960), + [anon_sym_LT2] = ACTIONS(4962), + [anon_sym_LT_EQ2] = ACTIONS(4960), + [anon_sym_GT_EQ2] = ACTIONS(4960), + [anon_sym_EQ_TILDE2] = ACTIONS(4960), + [anon_sym_BANG_TILDE2] = ACTIONS(4960), + [anon_sym_LPAREN2] = ACTIONS(4452), + [anon_sym_STAR_STAR2] = ACTIONS(4960), + [anon_sym_PLUS_PLUS2] = ACTIONS(4960), + [anon_sym_SLASH2] = ACTIONS(4962), + [anon_sym_mod2] = ACTIONS(4960), + [anon_sym_SLASH_SLASH2] = ACTIONS(4960), + [anon_sym_PLUS2] = ACTIONS(4962), + [anon_sym_bit_DASHshl2] = ACTIONS(4960), + [anon_sym_bit_DASHshr2] = ACTIONS(4960), + [anon_sym_bit_DASHand2] = ACTIONS(4960), + [anon_sym_bit_DASHxor2] = ACTIONS(4960), + [anon_sym_bit_DASHor2] = ACTIONS(4960), + [anon_sym_err_GT] = ACTIONS(4962), + [anon_sym_out_GT] = ACTIONS(4962), + [anon_sym_e_GT] = ACTIONS(4962), + [anon_sym_o_GT] = ACTIONS(4962), + [anon_sym_err_PLUSout_GT] = ACTIONS(4962), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4962), + [anon_sym_o_PLUSe_GT] = ACTIONS(4962), + [anon_sym_e_PLUSo_GT] = ACTIONS(4962), + [anon_sym_err_GT_GT] = ACTIONS(4960), + [anon_sym_out_GT_GT] = ACTIONS(4960), + [anon_sym_e_GT_GT] = ACTIONS(4960), + [anon_sym_o_GT_GT] = ACTIONS(4960), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4960), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4960), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4960), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4960), + [anon_sym_POUND] = ACTIONS(247), }, [1683] = { + [sym_cmd_identifier] = STATE(4154), + [sym__command_name] = STATE(6254), + [sym_scope_pattern] = STATE(6293), + [sym_wild_card] = STATE(6256), + [sym_command_list] = STATE(6257), + [sym__val_number_decimal] = STATE(3741), + [sym_val_string] = STATE(4089), + [sym__raw_str] = STATE(3793), + [sym__str_double_quotes] = STATE(3793), [sym_comment] = STATE(1683), - [ts_builtin_sym_end] = ACTIONS(1785), - [sym__newline] = ACTIONS(1785), - [anon_sym_SEMI] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(1785), - [anon_sym_err_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_GT_PIPE] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1783), - [anon_sym_LPAREN2] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT] = ACTIONS(1785), - [anon_sym_null] = ACTIONS(1785), - [anon_sym_true] = ACTIONS(1785), - [anon_sym_false] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(1785), - [aux_sym__val_number_token2] = ACTIONS(1785), - [aux_sym__val_number_token3] = ACTIONS(1785), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_0b] = ACTIONS(1783), - [anon_sym_0o] = ACTIONS(1783), - [anon_sym_0x] = ACTIONS(1783), - [sym_val_date] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1785), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1785), - [anon_sym_err_GT] = ACTIONS(1783), - [anon_sym_out_GT] = ACTIONS(1783), - [anon_sym_e_GT] = ACTIONS(1783), - [anon_sym_o_GT] = ACTIONS(1783), - [anon_sym_err_PLUSout_GT] = ACTIONS(1783), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1783), - [anon_sym_o_PLUSe_GT] = ACTIONS(1783), - [anon_sym_e_PLUSo_GT] = ACTIONS(1783), - [anon_sym_err_GT_GT] = ACTIONS(1785), - [anon_sym_out_GT_GT] = ACTIONS(1785), - [anon_sym_e_GT_GT] = ACTIONS(1785), - [anon_sym_o_GT_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1785), - [aux_sym_unquoted_token1] = ACTIONS(1783), - [aux_sym_unquoted_token2] = ACTIONS(1783), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1785), + [aux_sym_cmd_identifier_token1] = ACTIONS(4980), + [aux_sym_cmd_identifier_token2] = ACTIONS(4982), + [aux_sym_cmd_identifier_token3] = ACTIONS(4982), + [aux_sym_cmd_identifier_token4] = ACTIONS(4982), + [aux_sym_cmd_identifier_token5] = ACTIONS(4982), + [aux_sym_cmd_identifier_token6] = ACTIONS(4982), + [aux_sym_cmd_identifier_token7] = ACTIONS(4982), + [aux_sym_cmd_identifier_token8] = ACTIONS(4982), + [aux_sym_cmd_identifier_token9] = ACTIONS(4980), + [aux_sym_cmd_identifier_token10] = ACTIONS(4982), + [aux_sym_cmd_identifier_token11] = ACTIONS(4982), + [aux_sym_cmd_identifier_token12] = ACTIONS(4982), + [aux_sym_cmd_identifier_token13] = ACTIONS(4980), + [aux_sym_cmd_identifier_token14] = ACTIONS(4982), + [aux_sym_cmd_identifier_token15] = ACTIONS(4980), + [aux_sym_cmd_identifier_token16] = ACTIONS(4982), + [aux_sym_cmd_identifier_token17] = ACTIONS(4982), + [aux_sym_cmd_identifier_token18] = ACTIONS(4982), + [aux_sym_cmd_identifier_token19] = ACTIONS(4982), + [aux_sym_cmd_identifier_token20] = ACTIONS(4982), + [aux_sym_cmd_identifier_token21] = ACTIONS(4982), + [aux_sym_cmd_identifier_token22] = ACTIONS(4982), + [aux_sym_cmd_identifier_token23] = ACTIONS(4982), + [aux_sym_cmd_identifier_token24] = ACTIONS(4982), + [aux_sym_cmd_identifier_token25] = ACTIONS(4982), + [aux_sym_cmd_identifier_token26] = ACTIONS(4982), + [aux_sym_cmd_identifier_token27] = ACTIONS(4982), + [aux_sym_cmd_identifier_token28] = ACTIONS(4982), + [aux_sym_cmd_identifier_token29] = ACTIONS(4982), + [aux_sym_cmd_identifier_token30] = ACTIONS(4982), + [aux_sym_cmd_identifier_token31] = ACTIONS(4982), + [aux_sym_cmd_identifier_token32] = ACTIONS(4982), + [aux_sym_cmd_identifier_token33] = ACTIONS(4982), + [aux_sym_cmd_identifier_token34] = ACTIONS(4980), + [aux_sym_cmd_identifier_token35] = ACTIONS(4982), + [aux_sym_cmd_identifier_token36] = ACTIONS(4982), + [aux_sym_cmd_identifier_token37] = ACTIONS(4982), + [aux_sym_cmd_identifier_token38] = ACTIONS(4980), + [aux_sym_cmd_identifier_token39] = ACTIONS(4982), + [aux_sym_cmd_identifier_token40] = ACTIONS(4982), + [sym__newline] = ACTIONS(4984), + [anon_sym_SEMI] = ACTIONS(4984), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_RPAREN] = ACTIONS(4984), + [anon_sym_RBRACE] = ACTIONS(4984), + [anon_sym_STAR2] = ACTIONS(4988), + [aux_sym__val_number_decimal_token1] = ACTIONS(4990), + [aux_sym__val_number_decimal_token2] = ACTIONS(4990), + [aux_sym__val_number_decimal_token3] = ACTIONS(4992), + [aux_sym__val_number_decimal_token4] = ACTIONS(4994), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym__str_single_quotes] = ACTIONS(1274), + [sym__str_back_ticks] = ACTIONS(1274), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1276), }, [1684] = { - [sym_path] = STATE(1889), [sym_comment] = STATE(1684), - [aux_sym_cell_path_repeat1] = STATE(1684), - [ts_builtin_sym_end] = ACTIONS(955), - [sym__newline] = ACTIONS(955), - [anon_sym_SEMI] = ACTIONS(955), - [anon_sym_PIPE] = ACTIONS(955), - [anon_sym_err_GT_PIPE] = ACTIONS(955), - [anon_sym_out_GT_PIPE] = ACTIONS(955), - [anon_sym_e_GT_PIPE] = ACTIONS(955), - [anon_sym_o_GT_PIPE] = ACTIONS(955), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(955), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(955), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(955), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(955), - [anon_sym_GT2] = ACTIONS(953), - [anon_sym_DASH2] = ACTIONS(955), - [anon_sym_in2] = ACTIONS(955), - [anon_sym_LBRACE] = ACTIONS(955), - [anon_sym_STAR2] = ACTIONS(953), - [anon_sym_and2] = ACTIONS(955), - [anon_sym_xor2] = ACTIONS(955), - [anon_sym_or2] = ACTIONS(955), - [anon_sym_not_DASHin2] = ACTIONS(955), - [anon_sym_starts_DASHwith2] = ACTIONS(955), - [anon_sym_ends_DASHwith2] = ACTIONS(955), - [anon_sym_EQ_EQ2] = ACTIONS(955), - [anon_sym_BANG_EQ2] = ACTIONS(955), - [anon_sym_LT2] = ACTIONS(953), - [anon_sym_LT_EQ2] = ACTIONS(955), - [anon_sym_GT_EQ2] = ACTIONS(955), - [anon_sym_EQ_TILDE2] = ACTIONS(955), - [anon_sym_BANG_TILDE2] = ACTIONS(955), - [anon_sym_STAR_STAR2] = ACTIONS(955), - [anon_sym_PLUS_PLUS2] = ACTIONS(955), - [anon_sym_SLASH2] = ACTIONS(953), - [anon_sym_mod2] = ACTIONS(955), - [anon_sym_SLASH_SLASH2] = ACTIONS(955), - [anon_sym_PLUS2] = ACTIONS(953), - [anon_sym_bit_DASHshl2] = ACTIONS(955), - [anon_sym_bit_DASHshr2] = ACTIONS(955), - [anon_sym_bit_DASHand2] = ACTIONS(955), - [anon_sym_bit_DASHxor2] = ACTIONS(955), - [anon_sym_bit_DASHor2] = ACTIONS(955), - [anon_sym_DOT_DOT2] = ACTIONS(953), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(955), - [anon_sym_DOT_DOT_LT2] = ACTIONS(955), - [anon_sym_DOT2] = ACTIONS(5008), - [anon_sym_err_GT] = ACTIONS(953), - [anon_sym_out_GT] = ACTIONS(953), - [anon_sym_e_GT] = ACTIONS(953), - [anon_sym_o_GT] = ACTIONS(953), - [anon_sym_err_PLUSout_GT] = ACTIONS(953), - [anon_sym_out_PLUSerr_GT] = ACTIONS(953), - [anon_sym_o_PLUSe_GT] = ACTIONS(953), - [anon_sym_e_PLUSo_GT] = ACTIONS(953), - [anon_sym_err_GT_GT] = ACTIONS(955), - [anon_sym_out_GT_GT] = ACTIONS(955), - [anon_sym_e_GT_GT] = ACTIONS(955), - [anon_sym_o_GT_GT] = ACTIONS(955), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(955), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(955), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(955), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(955), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(2083), + [anon_sym_SEMI] = ACTIONS(2083), + [anon_sym_PIPE] = ACTIONS(2083), + [anon_sym_err_GT_PIPE] = ACTIONS(2083), + [anon_sym_out_GT_PIPE] = ACTIONS(2083), + [anon_sym_e_GT_PIPE] = ACTIONS(2083), + [anon_sym_o_GT_PIPE] = ACTIONS(2083), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2083), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2083), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2083), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2083), + [anon_sym_LBRACK] = ACTIONS(2083), + [anon_sym_LPAREN] = ACTIONS(2083), + [anon_sym_RPAREN] = ACTIONS(2083), + [anon_sym_DOLLAR] = ACTIONS(2081), + [anon_sym_DASH_DASH] = ACTIONS(2081), + [anon_sym_DASH2] = ACTIONS(2081), + [anon_sym_LBRACE] = ACTIONS(2083), + [anon_sym_RBRACE] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(2081), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2081), + [anon_sym_DOT_DOT_LT] = ACTIONS(2081), + [anon_sym_null] = ACTIONS(2081), + [anon_sym_true] = ACTIONS(2081), + [anon_sym_false] = ACTIONS(2081), + [aux_sym__val_number_decimal_token1] = ACTIONS(2081), + [aux_sym__val_number_decimal_token2] = ACTIONS(2081), + [aux_sym__val_number_decimal_token3] = ACTIONS(2081), + [aux_sym__val_number_decimal_token4] = ACTIONS(2081), + [aux_sym__val_number_token1] = ACTIONS(2081), + [aux_sym__val_number_token2] = ACTIONS(2081), + [aux_sym__val_number_token3] = ACTIONS(2081), + [aux_sym__val_number_token4] = ACTIONS(2081), + [aux_sym__val_number_token5] = ACTIONS(2081), + [aux_sym__val_number_token6] = ACTIONS(2081), + [anon_sym_0b] = ACTIONS(2081), + [anon_sym_0o] = ACTIONS(2081), + [anon_sym_0x] = ACTIONS(2081), + [sym_val_date] = ACTIONS(2081), + [anon_sym_DQUOTE] = ACTIONS(2083), + [sym__str_single_quotes] = ACTIONS(2083), + [sym__str_back_ticks] = ACTIONS(2083), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2083), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2083), + [anon_sym_err_GT] = ACTIONS(2081), + [anon_sym_out_GT] = ACTIONS(2081), + [anon_sym_e_GT] = ACTIONS(2081), + [anon_sym_o_GT] = ACTIONS(2081), + [anon_sym_err_PLUSout_GT] = ACTIONS(2081), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2081), + [anon_sym_o_PLUSe_GT] = ACTIONS(2081), + [anon_sym_e_PLUSo_GT] = ACTIONS(2081), + [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(2081), + [aux_sym_unquoted_token4] = ACTIONS(2079), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2083), }, [1685] = { - [sym__expr_parenthesized_immediate] = STATE(7580), [sym_comment] = STATE(1685), - [ts_builtin_sym_end] = ACTIONS(4874), - [sym__newline] = ACTIONS(4874), - [anon_sym_SEMI] = ACTIONS(4874), - [anon_sym_PIPE] = ACTIONS(4874), - [anon_sym_err_GT_PIPE] = ACTIONS(4874), - [anon_sym_out_GT_PIPE] = ACTIONS(4874), - [anon_sym_e_GT_PIPE] = ACTIONS(4874), - [anon_sym_o_GT_PIPE] = ACTIONS(4874), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4874), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4874), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4874), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4874), - [anon_sym_LBRACK] = ACTIONS(4874), - [anon_sym_LPAREN] = ACTIONS(4876), - [anon_sym_DOLLAR] = ACTIONS(4876), - [anon_sym_DASH_DASH] = ACTIONS(4874), - [anon_sym_DASH2] = ACTIONS(4876), - [anon_sym_LBRACE] = ACTIONS(4874), - [anon_sym_DOT_DOT] = ACTIONS(4876), - [anon_sym_LPAREN2] = ACTIONS(4181), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4874), - [anon_sym_DOT_DOT_LT] = ACTIONS(4874), - [anon_sym_null] = ACTIONS(4874), - [anon_sym_true] = ACTIONS(4874), - [anon_sym_false] = ACTIONS(4874), - [aux_sym__val_number_decimal_token1] = ACTIONS(4876), - [aux_sym__val_number_decimal_token2] = ACTIONS(4874), - [aux_sym__val_number_decimal_token3] = ACTIONS(4874), - [aux_sym__val_number_decimal_token4] = ACTIONS(4874), - [aux_sym__val_number_token1] = ACTIONS(4874), - [aux_sym__val_number_token2] = ACTIONS(4874), - [aux_sym__val_number_token3] = ACTIONS(4874), - [aux_sym__val_number_token4] = ACTIONS(4874), - [aux_sym__val_number_token5] = ACTIONS(4874), - [aux_sym__val_number_token6] = ACTIONS(4874), - [anon_sym_0b] = ACTIONS(4876), - [anon_sym_0o] = ACTIONS(4876), - [anon_sym_0x] = ACTIONS(4876), - [sym_val_date] = ACTIONS(4874), - [anon_sym_DQUOTE] = ACTIONS(4874), - [sym__str_single_quotes] = ACTIONS(4874), - [sym__str_back_ticks] = ACTIONS(4874), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4874), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4874), - [anon_sym_err_GT] = ACTIONS(4876), - [anon_sym_out_GT] = ACTIONS(4876), - [anon_sym_e_GT] = ACTIONS(4876), - [anon_sym_o_GT] = ACTIONS(4876), - [anon_sym_err_PLUSout_GT] = ACTIONS(4876), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4876), - [anon_sym_o_PLUSe_GT] = ACTIONS(4876), - [anon_sym_e_PLUSo_GT] = ACTIONS(4876), - [anon_sym_err_GT_GT] = ACTIONS(4874), - [anon_sym_out_GT_GT] = ACTIONS(4874), - [anon_sym_e_GT_GT] = ACTIONS(4874), - [anon_sym_o_GT_GT] = ACTIONS(4874), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4874), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4874), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4874), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4874), - [aux_sym_unquoted_token1] = ACTIONS(4876), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4874), + [sym__newline] = ACTIONS(1651), + [anon_sym_SEMI] = ACTIONS(1651), + [anon_sym_PIPE] = ACTIONS(1651), + [anon_sym_err_GT_PIPE] = ACTIONS(1651), + [anon_sym_out_GT_PIPE] = ACTIONS(1651), + [anon_sym_e_GT_PIPE] = ACTIONS(1651), + [anon_sym_o_GT_PIPE] = ACTIONS(1651), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1651), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1651), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1651), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1651), + [anon_sym_LPAREN] = ACTIONS(1651), + [anon_sym_RPAREN] = ACTIONS(1651), + [anon_sym_DOLLAR] = ACTIONS(1639), + [anon_sym_DASH_DASH] = ACTIONS(1651), + [anon_sym_DASH2] = ACTIONS(1639), + [anon_sym_LBRACE] = ACTIONS(1651), + [anon_sym_RBRACE] = ACTIONS(1651), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1651), + [anon_sym_DOT_DOT_LT] = ACTIONS(1651), + [anon_sym_null] = ACTIONS(1651), + [anon_sym_true] = ACTIONS(1651), + [anon_sym_false] = ACTIONS(1651), + [aux_sym__val_number_decimal_token1] = ACTIONS(1639), + [aux_sym__val_number_decimal_token2] = ACTIONS(1651), + [aux_sym__val_number_decimal_token3] = ACTIONS(1651), + [aux_sym__val_number_decimal_token4] = ACTIONS(1651), + [aux_sym__val_number_token1] = ACTIONS(1651), + [aux_sym__val_number_token2] = ACTIONS(1651), + [aux_sym__val_number_token3] = ACTIONS(1651), + [aux_sym__val_number_token4] = ACTIONS(1651), + [aux_sym__val_number_token5] = ACTIONS(1651), + [aux_sym__val_number_token6] = ACTIONS(1651), + [anon_sym_0b] = ACTIONS(1639), + [anon_sym_0o] = ACTIONS(1639), + [anon_sym_0x] = ACTIONS(1639), + [sym_val_date] = ACTIONS(1651), + [anon_sym_DQUOTE] = ACTIONS(1651), + [sym__str_single_quotes] = ACTIONS(1651), + [sym__str_back_ticks] = ACTIONS(1651), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1651), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1651), + [anon_sym_err_GT] = ACTIONS(1639), + [anon_sym_out_GT] = ACTIONS(1639), + [anon_sym_e_GT] = ACTIONS(1639), + [anon_sym_o_GT] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT] = ACTIONS(1639), + [anon_sym_err_GT_GT] = ACTIONS(1651), + [anon_sym_out_GT_GT] = ACTIONS(1651), + [anon_sym_e_GT_GT] = ACTIONS(1651), + [anon_sym_o_GT_GT] = ACTIONS(1651), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1651), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1651), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1651), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1651), + [aux_sym_unquoted_token1] = ACTIONS(1639), + [aux_sym_unquoted_token2] = ACTIONS(4616), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1651), }, [1686] = { - [sym__expr_parenthesized_immediate] = STATE(7580), [sym_comment] = STATE(1686), - [ts_builtin_sym_end] = ACTIONS(4878), - [sym__newline] = ACTIONS(4878), - [anon_sym_SEMI] = ACTIONS(4878), - [anon_sym_PIPE] = ACTIONS(4878), - [anon_sym_err_GT_PIPE] = ACTIONS(4878), - [anon_sym_out_GT_PIPE] = ACTIONS(4878), - [anon_sym_e_GT_PIPE] = ACTIONS(4878), - [anon_sym_o_GT_PIPE] = ACTIONS(4878), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4878), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4878), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4878), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4878), - [anon_sym_LBRACK] = ACTIONS(4878), - [anon_sym_LPAREN] = ACTIONS(4880), - [anon_sym_DOLLAR] = ACTIONS(4880), - [anon_sym_DASH_DASH] = ACTIONS(4878), - [anon_sym_DASH2] = ACTIONS(4880), - [anon_sym_LBRACE] = ACTIONS(4878), - [anon_sym_DOT_DOT] = ACTIONS(4880), - [anon_sym_LPAREN2] = ACTIONS(4181), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4878), - [anon_sym_DOT_DOT_LT] = ACTIONS(4878), - [anon_sym_null] = ACTIONS(4878), - [anon_sym_true] = ACTIONS(4878), - [anon_sym_false] = ACTIONS(4878), - [aux_sym__val_number_decimal_token1] = ACTIONS(4880), - [aux_sym__val_number_decimal_token2] = ACTIONS(4878), - [aux_sym__val_number_decimal_token3] = ACTIONS(4878), - [aux_sym__val_number_decimal_token4] = ACTIONS(4878), - [aux_sym__val_number_token1] = ACTIONS(4878), - [aux_sym__val_number_token2] = ACTIONS(4878), - [aux_sym__val_number_token3] = ACTIONS(4878), - [aux_sym__val_number_token4] = ACTIONS(4878), - [aux_sym__val_number_token5] = ACTIONS(4878), - [aux_sym__val_number_token6] = ACTIONS(4878), - [anon_sym_0b] = ACTIONS(4880), - [anon_sym_0o] = ACTIONS(4880), - [anon_sym_0x] = ACTIONS(4880), - [sym_val_date] = ACTIONS(4878), - [anon_sym_DQUOTE] = ACTIONS(4878), - [sym__str_single_quotes] = ACTIONS(4878), - [sym__str_back_ticks] = ACTIONS(4878), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4878), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4878), - [anon_sym_err_GT] = ACTIONS(4880), - [anon_sym_out_GT] = ACTIONS(4880), - [anon_sym_e_GT] = ACTIONS(4880), - [anon_sym_o_GT] = ACTIONS(4880), - [anon_sym_err_PLUSout_GT] = ACTIONS(4880), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4880), - [anon_sym_o_PLUSe_GT] = ACTIONS(4880), - [anon_sym_e_PLUSo_GT] = ACTIONS(4880), - [anon_sym_err_GT_GT] = ACTIONS(4878), - [anon_sym_out_GT_GT] = ACTIONS(4878), - [anon_sym_e_GT_GT] = ACTIONS(4878), - [anon_sym_o_GT_GT] = ACTIONS(4878), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4878), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4878), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4878), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4878), - [aux_sym_unquoted_token1] = ACTIONS(4880), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4878), + [ts_builtin_sym_end] = ACTIONS(966), + [sym__newline] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_PIPE] = ACTIONS(966), + [anon_sym_err_GT_PIPE] = ACTIONS(966), + [anon_sym_out_GT_PIPE] = ACTIONS(966), + [anon_sym_e_GT_PIPE] = ACTIONS(966), + [anon_sym_o_GT_PIPE] = ACTIONS(966), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(966), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(966), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(964), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_DASH2] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_DOT_DOT] = ACTIONS(964), + [anon_sym_QMARK2] = ACTIONS(966), + [anon_sym_DOT_DOT_EQ] = ACTIONS(966), + [anon_sym_DOT_DOT_LT] = ACTIONS(966), + [anon_sym_null] = ACTIONS(966), + [anon_sym_true] = ACTIONS(966), + [anon_sym_false] = ACTIONS(966), + [aux_sym__val_number_decimal_token1] = ACTIONS(964), + [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), + [aux_sym__val_number_token4] = ACTIONS(966), + [aux_sym__val_number_token5] = ACTIONS(966), + [aux_sym__val_number_token6] = ACTIONS(966), + [anon_sym_0b] = ACTIONS(964), + [anon_sym_0o] = ACTIONS(964), + [anon_sym_0x] = ACTIONS(964), + [sym_val_date] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym__str_single_quotes] = ACTIONS(966), + [sym__str_back_ticks] = ACTIONS(966), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(966), + [anon_sym_DOT2] = ACTIONS(964), + [anon_sym_err_GT] = ACTIONS(964), + [anon_sym_out_GT] = ACTIONS(964), + [anon_sym_e_GT] = ACTIONS(964), + [anon_sym_o_GT] = ACTIONS(964), + [anon_sym_err_PLUSout_GT] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT] = ACTIONS(964), + [anon_sym_o_PLUSe_GT] = ACTIONS(964), + [anon_sym_e_PLUSo_GT] = ACTIONS(964), + [anon_sym_err_GT_GT] = ACTIONS(966), + [anon_sym_out_GT_GT] = ACTIONS(966), + [anon_sym_e_GT_GT] = ACTIONS(966), + [anon_sym_o_GT_GT] = ACTIONS(966), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(966), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(966), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(966), + [aux_sym_unquoted_token1] = ACTIONS(964), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(966), }, [1687] = { [sym_comment] = STATE(1687), - [ts_builtin_sym_end] = 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_GT2] = ACTIONS(1743), - [anon_sym_DASH2] = ACTIONS(1745), - [anon_sym_in2] = ACTIONS(1745), - [anon_sym_STAR2] = ACTIONS(1743), - [anon_sym_and2] = ACTIONS(1745), - [anon_sym_xor2] = ACTIONS(1745), - [anon_sym_or2] = ACTIONS(1745), - [anon_sym_not_DASHin2] = ACTIONS(1745), - [anon_sym_starts_DASHwith2] = ACTIONS(1745), - [anon_sym_ends_DASHwith2] = ACTIONS(1745), - [anon_sym_EQ_EQ2] = ACTIONS(1745), - [anon_sym_BANG_EQ2] = ACTIONS(1745), - [anon_sym_LT2] = ACTIONS(1743), - [anon_sym_LT_EQ2] = ACTIONS(1745), - [anon_sym_GT_EQ2] = ACTIONS(1745), - [anon_sym_EQ_TILDE2] = ACTIONS(1745), - [anon_sym_BANG_TILDE2] = ACTIONS(1745), - [anon_sym_LPAREN2] = ACTIONS(1745), - [anon_sym_STAR_STAR2] = ACTIONS(1745), - [anon_sym_PLUS_PLUS2] = ACTIONS(1745), - [anon_sym_SLASH2] = ACTIONS(1743), - [anon_sym_mod2] = ACTIONS(1745), - [anon_sym_SLASH_SLASH2] = ACTIONS(1745), - [anon_sym_PLUS2] = ACTIONS(1743), - [anon_sym_bit_DASHshl2] = ACTIONS(1745), - [anon_sym_bit_DASHshr2] = ACTIONS(1745), - [anon_sym_bit_DASHand2] = ACTIONS(1745), - [anon_sym_bit_DASHxor2] = ACTIONS(1745), - [anon_sym_bit_DASHor2] = ACTIONS(1745), - [anon_sym_DOT_DOT2] = ACTIONS(1743), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1745), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1745), - [sym_filesize_unit] = ACTIONS(1743), - [sym_duration_unit] = ACTIONS(1745), - [anon_sym_err_GT] = ACTIONS(1743), - [anon_sym_out_GT] = ACTIONS(1743), - [anon_sym_e_GT] = ACTIONS(1743), - [anon_sym_o_GT] = ACTIONS(1743), - [anon_sym_err_PLUSout_GT] = ACTIONS(1743), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1743), - [anon_sym_o_PLUSe_GT] = ACTIONS(1743), - [anon_sym_e_PLUSo_GT] = ACTIONS(1743), - [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_token2] = ACTIONS(1743), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(2036), + [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_PIPE] = ACTIONS(2036), + [anon_sym_err_GT_PIPE] = ACTIONS(2036), + [anon_sym_out_GT_PIPE] = ACTIONS(2036), + [anon_sym_e_GT_PIPE] = ACTIONS(2036), + [anon_sym_o_GT_PIPE] = ACTIONS(2036), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2036), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2036), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2036), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2036), + [anon_sym_RPAREN] = ACTIONS(2036), + [anon_sym_GT2] = ACTIONS(2030), + [anon_sym_DASH2] = ACTIONS(2036), + [anon_sym_in2] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2036), + [anon_sym_RBRACE] = ACTIONS(2036), + [anon_sym_STAR2] = ACTIONS(2030), + [anon_sym_and2] = ACTIONS(2036), + [anon_sym_xor2] = ACTIONS(2036), + [anon_sym_or2] = ACTIONS(2036), + [anon_sym_not_DASHin2] = ACTIONS(2036), + [anon_sym_has2] = ACTIONS(2036), + [anon_sym_not_DASHhas2] = ACTIONS(2036), + [anon_sym_starts_DASHwith2] = ACTIONS(2036), + [anon_sym_ends_DASHwith2] = ACTIONS(2036), + [anon_sym_EQ_EQ2] = ACTIONS(2036), + [anon_sym_BANG_EQ2] = ACTIONS(2036), + [anon_sym_LT2] = ACTIONS(2030), + [anon_sym_LT_EQ2] = ACTIONS(2036), + [anon_sym_GT_EQ2] = ACTIONS(2036), + [anon_sym_EQ_TILDE2] = ACTIONS(2036), + [anon_sym_BANG_TILDE2] = ACTIONS(2036), + [anon_sym_STAR_STAR2] = ACTIONS(2036), + [anon_sym_PLUS_PLUS2] = ACTIONS(2036), + [anon_sym_SLASH2] = ACTIONS(2030), + [anon_sym_mod2] = ACTIONS(2036), + [anon_sym_SLASH_SLASH2] = ACTIONS(2036), + [anon_sym_PLUS2] = ACTIONS(2030), + [anon_sym_bit_DASHshl2] = ACTIONS(2036), + [anon_sym_bit_DASHshr2] = ACTIONS(2036), + [anon_sym_bit_DASHand2] = ACTIONS(2036), + [anon_sym_bit_DASHxor2] = ACTIONS(2036), + [anon_sym_bit_DASHor2] = ACTIONS(2036), + [anon_sym_DOT_DOT2] = ACTIONS(4996), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4998), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4998), + [anon_sym_err_GT] = ACTIONS(2030), + [anon_sym_out_GT] = ACTIONS(2030), + [anon_sym_e_GT] = ACTIONS(2030), + [anon_sym_o_GT] = ACTIONS(2030), + [anon_sym_err_PLUSout_GT] = ACTIONS(2030), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2030), + [anon_sym_o_PLUSe_GT] = ACTIONS(2030), + [anon_sym_e_PLUSo_GT] = ACTIONS(2030), + [anon_sym_err_GT_GT] = ACTIONS(2036), + [anon_sym_out_GT_GT] = ACTIONS(2036), + [anon_sym_e_GT_GT] = ACTIONS(2036), + [anon_sym_o_GT_GT] = ACTIONS(2036), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2036), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2036), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2036), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2036), + [anon_sym_POUND] = ACTIONS(247), }, [1688] = { + [sym__expr_parenthesized_immediate] = STATE(7383), [sym_comment] = STATE(1688), - [sym__newline] = ACTIONS(2132), - [anon_sym_SEMI] = ACTIONS(2132), - [anon_sym_PIPE] = ACTIONS(2132), - [anon_sym_err_GT_PIPE] = ACTIONS(2132), - [anon_sym_out_GT_PIPE] = ACTIONS(2132), - [anon_sym_e_GT_PIPE] = ACTIONS(2132), - [anon_sym_o_GT_PIPE] = ACTIONS(2132), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2132), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2132), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2132), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2132), - [anon_sym_LBRACK] = ACTIONS(2132), - [anon_sym_LPAREN] = ACTIONS(2132), - [anon_sym_RPAREN] = ACTIONS(2132), - [anon_sym_DOLLAR] = ACTIONS(2128), - [anon_sym_DASH_DASH] = ACTIONS(2128), - [anon_sym_DASH2] = ACTIONS(2128), - [anon_sym_LBRACE] = ACTIONS(2132), - [anon_sym_RBRACE] = ACTIONS(2132), - [anon_sym_DOT_DOT] = ACTIONS(2128), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2128), - [anon_sym_DOT_DOT_LT] = ACTIONS(2128), - [anon_sym_null] = ACTIONS(2128), - [anon_sym_true] = ACTIONS(2128), - [anon_sym_false] = ACTIONS(2128), - [aux_sym__val_number_decimal_token1] = ACTIONS(2128), - [aux_sym__val_number_decimal_token2] = ACTIONS(2128), - [aux_sym__val_number_decimal_token3] = ACTIONS(2128), - [aux_sym__val_number_decimal_token4] = ACTIONS(2128), - [aux_sym__val_number_token1] = ACTIONS(2128), - [aux_sym__val_number_token2] = ACTIONS(2128), - [aux_sym__val_number_token3] = ACTIONS(2128), - [aux_sym__val_number_token4] = ACTIONS(2128), - [aux_sym__val_number_token5] = ACTIONS(2128), - [aux_sym__val_number_token6] = ACTIONS(2128), - [anon_sym_0b] = ACTIONS(2128), - [anon_sym_0o] = ACTIONS(2128), - [anon_sym_0x] = ACTIONS(2128), - [sym_val_date] = ACTIONS(2128), - [anon_sym_DQUOTE] = ACTIONS(2132), - [sym__str_single_quotes] = ACTIONS(2132), - [sym__str_back_ticks] = ACTIONS(2132), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2132), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2132), - [anon_sym_err_GT] = ACTIONS(2128), - [anon_sym_out_GT] = ACTIONS(2128), - [anon_sym_e_GT] = ACTIONS(2128), - [anon_sym_o_GT] = ACTIONS(2128), - [anon_sym_err_PLUSout_GT] = ACTIONS(2128), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2128), - [anon_sym_o_PLUSe_GT] = ACTIONS(2128), - [anon_sym_e_PLUSo_GT] = ACTIONS(2128), - [anon_sym_err_GT_GT] = ACTIONS(2128), - [anon_sym_out_GT_GT] = ACTIONS(2128), - [anon_sym_e_GT_GT] = ACTIONS(2128), - [anon_sym_o_GT_GT] = ACTIONS(2128), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2128), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2128), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2128), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2128), - [aux_sym_unquoted_token1] = ACTIONS(2128), - [aux_sym_unquoted_token4] = ACTIONS(2134), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2132), + [sym__newline] = ACTIONS(4960), + [anon_sym_SEMI] = ACTIONS(4960), + [anon_sym_PIPE] = ACTIONS(4960), + [anon_sym_err_GT_PIPE] = ACTIONS(4960), + [anon_sym_out_GT_PIPE] = ACTIONS(4960), + [anon_sym_e_GT_PIPE] = ACTIONS(4960), + [anon_sym_o_GT_PIPE] = ACTIONS(4960), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4960), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4960), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4960), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4960), + [anon_sym_RPAREN] = ACTIONS(4960), + [anon_sym_GT2] = ACTIONS(4962), + [anon_sym_DASH2] = ACTIONS(4960), + [anon_sym_in2] = ACTIONS(4960), + [anon_sym_LBRACE] = ACTIONS(4960), + [anon_sym_RBRACE] = ACTIONS(4960), + [anon_sym_EQ_GT] = ACTIONS(4960), + [anon_sym_STAR2] = ACTIONS(4962), + [anon_sym_and2] = ACTIONS(4960), + [anon_sym_xor2] = ACTIONS(4960), + [anon_sym_or2] = ACTIONS(4960), + [anon_sym_not_DASHin2] = ACTIONS(4960), + [anon_sym_has2] = ACTIONS(4960), + [anon_sym_not_DASHhas2] = ACTIONS(4960), + [anon_sym_starts_DASHwith2] = ACTIONS(4960), + [anon_sym_ends_DASHwith2] = ACTIONS(4960), + [anon_sym_EQ_EQ2] = ACTIONS(4960), + [anon_sym_BANG_EQ2] = ACTIONS(4960), + [anon_sym_LT2] = ACTIONS(4962), + [anon_sym_LT_EQ2] = ACTIONS(4960), + [anon_sym_GT_EQ2] = ACTIONS(4960), + [anon_sym_EQ_TILDE2] = ACTIONS(4960), + [anon_sym_BANG_TILDE2] = ACTIONS(4960), + [anon_sym_LPAREN2] = ACTIONS(4452), + [anon_sym_STAR_STAR2] = ACTIONS(4960), + [anon_sym_PLUS_PLUS2] = ACTIONS(4960), + [anon_sym_SLASH2] = ACTIONS(4962), + [anon_sym_mod2] = ACTIONS(4960), + [anon_sym_SLASH_SLASH2] = ACTIONS(4960), + [anon_sym_PLUS2] = ACTIONS(4962), + [anon_sym_bit_DASHshl2] = ACTIONS(4960), + [anon_sym_bit_DASHshr2] = ACTIONS(4960), + [anon_sym_bit_DASHand2] = ACTIONS(4960), + [anon_sym_bit_DASHxor2] = ACTIONS(4960), + [anon_sym_bit_DASHor2] = ACTIONS(4960), + [anon_sym_err_GT] = ACTIONS(4962), + [anon_sym_out_GT] = ACTIONS(4962), + [anon_sym_e_GT] = ACTIONS(4962), + [anon_sym_o_GT] = ACTIONS(4962), + [anon_sym_err_PLUSout_GT] = ACTIONS(4962), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4962), + [anon_sym_o_PLUSe_GT] = ACTIONS(4962), + [anon_sym_e_PLUSo_GT] = ACTIONS(4962), + [anon_sym_err_GT_GT] = ACTIONS(4960), + [anon_sym_out_GT_GT] = ACTIONS(4960), + [anon_sym_e_GT_GT] = ACTIONS(4960), + [anon_sym_o_GT_GT] = ACTIONS(4960), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4960), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4960), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4960), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4960), + [anon_sym_POUND] = ACTIONS(247), }, [1689] = { [sym_comment] = STATE(1689), - [ts_builtin_sym_end] = 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_DASH2] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(982), - [anon_sym_DOT_DOT] = ACTIONS(980), - [anon_sym_QMARK2] = ACTIONS(982), - [anon_sym_DOT_DOT_EQ] = ACTIONS(982), - [anon_sym_DOT_DOT_LT] = ACTIONS(982), - [anon_sym_null] = ACTIONS(982), - [anon_sym_true] = ACTIONS(982), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(982), - [aux_sym__val_number_token5] = ACTIONS(982), - [aux_sym__val_number_token6] = 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_DOT2] = 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), - [aux_sym_unquoted_token1] = ACTIONS(980), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(982), + [sym__newline] = ACTIONS(1824), + [anon_sym_SEMI] = ACTIONS(1824), + [anon_sym_PIPE] = ACTIONS(1824), + [anon_sym_err_GT_PIPE] = ACTIONS(1824), + [anon_sym_out_GT_PIPE] = ACTIONS(1824), + [anon_sym_e_GT_PIPE] = ACTIONS(1824), + [anon_sym_o_GT_PIPE] = ACTIONS(1824), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1824), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1824), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1824), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1824), + [anon_sym_RPAREN] = ACTIONS(1824), + [anon_sym_GT2] = ACTIONS(1816), + [anon_sym_DASH2] = ACTIONS(1824), + [anon_sym_in2] = ACTIONS(1824), + [anon_sym_LBRACE] = ACTIONS(1824), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_STAR2] = ACTIONS(1816), + [anon_sym_and2] = ACTIONS(1824), + [anon_sym_xor2] = ACTIONS(1824), + [anon_sym_or2] = ACTIONS(1824), + [anon_sym_not_DASHin2] = ACTIONS(1824), + [anon_sym_has2] = ACTIONS(1824), + [anon_sym_not_DASHhas2] = ACTIONS(1824), + [anon_sym_starts_DASHwith2] = ACTIONS(1824), + [anon_sym_ends_DASHwith2] = ACTIONS(1824), + [anon_sym_EQ_EQ2] = ACTIONS(1824), + [anon_sym_BANG_EQ2] = ACTIONS(1824), + [anon_sym_LT2] = ACTIONS(1816), + [anon_sym_LT_EQ2] = ACTIONS(1824), + [anon_sym_GT_EQ2] = ACTIONS(1824), + [anon_sym_EQ_TILDE2] = ACTIONS(1824), + [anon_sym_BANG_TILDE2] = ACTIONS(1824), + [anon_sym_STAR_STAR2] = ACTIONS(1824), + [anon_sym_PLUS_PLUS2] = ACTIONS(1824), + [anon_sym_SLASH2] = ACTIONS(1816), + [anon_sym_mod2] = ACTIONS(1824), + [anon_sym_SLASH_SLASH2] = ACTIONS(1824), + [anon_sym_PLUS2] = ACTIONS(1816), + [anon_sym_bit_DASHshl2] = ACTIONS(1824), + [anon_sym_bit_DASHshr2] = ACTIONS(1824), + [anon_sym_bit_DASHand2] = ACTIONS(1824), + [anon_sym_bit_DASHxor2] = ACTIONS(1824), + [anon_sym_bit_DASHor2] = ACTIONS(1824), + [anon_sym_DOT_DOT2] = ACTIONS(5000), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(5002), + [anon_sym_DOT_DOT_LT2] = ACTIONS(5002), + [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(1824), + [anon_sym_out_GT_GT] = ACTIONS(1824), + [anon_sym_e_GT_GT] = ACTIONS(1824), + [anon_sym_o_GT_GT] = ACTIONS(1824), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1824), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1824), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1824), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1824), + [anon_sym_POUND] = ACTIONS(247), }, [1690] = { - [sym__expr_parenthesized_immediate] = STATE(7580), [sym_comment] = STATE(1690), - [ts_builtin_sym_end] = ACTIONS(4882), - [sym__newline] = ACTIONS(4882), - [anon_sym_SEMI] = ACTIONS(4882), - [anon_sym_PIPE] = ACTIONS(4882), - [anon_sym_err_GT_PIPE] = ACTIONS(4882), - [anon_sym_out_GT_PIPE] = ACTIONS(4882), - [anon_sym_e_GT_PIPE] = ACTIONS(4882), - [anon_sym_o_GT_PIPE] = ACTIONS(4882), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4882), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4882), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4882), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4882), - [anon_sym_LBRACK] = ACTIONS(4882), - [anon_sym_LPAREN] = ACTIONS(4884), - [anon_sym_DOLLAR] = ACTIONS(4884), - [anon_sym_DASH_DASH] = ACTIONS(4882), - [anon_sym_DASH2] = ACTIONS(4884), - [anon_sym_LBRACE] = ACTIONS(4882), - [anon_sym_DOT_DOT] = ACTIONS(4884), - [anon_sym_LPAREN2] = ACTIONS(4181), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4882), - [anon_sym_DOT_DOT_LT] = ACTIONS(4882), - [anon_sym_null] = ACTIONS(4882), - [anon_sym_true] = ACTIONS(4882), - [anon_sym_false] = ACTIONS(4882), - [aux_sym__val_number_decimal_token1] = ACTIONS(4884), - [aux_sym__val_number_decimal_token2] = ACTIONS(4882), - [aux_sym__val_number_decimal_token3] = ACTIONS(4882), - [aux_sym__val_number_decimal_token4] = ACTIONS(4882), - [aux_sym__val_number_token1] = ACTIONS(4882), - [aux_sym__val_number_token2] = ACTIONS(4882), - [aux_sym__val_number_token3] = ACTIONS(4882), - [aux_sym__val_number_token4] = ACTIONS(4882), - [aux_sym__val_number_token5] = ACTIONS(4882), - [aux_sym__val_number_token6] = ACTIONS(4882), - [anon_sym_0b] = ACTIONS(4884), - [anon_sym_0o] = ACTIONS(4884), - [anon_sym_0x] = ACTIONS(4884), - [sym_val_date] = ACTIONS(4882), - [anon_sym_DQUOTE] = ACTIONS(4882), - [sym__str_single_quotes] = ACTIONS(4882), - [sym__str_back_ticks] = ACTIONS(4882), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4882), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4882), - [anon_sym_err_GT] = ACTIONS(4884), - [anon_sym_out_GT] = ACTIONS(4884), - [anon_sym_e_GT] = ACTIONS(4884), - [anon_sym_o_GT] = ACTIONS(4884), - [anon_sym_err_PLUSout_GT] = ACTIONS(4884), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4884), - [anon_sym_o_PLUSe_GT] = ACTIONS(4884), - [anon_sym_e_PLUSo_GT] = ACTIONS(4884), - [anon_sym_err_GT_GT] = ACTIONS(4882), - [anon_sym_out_GT_GT] = ACTIONS(4882), - [anon_sym_e_GT_GT] = ACTIONS(4882), - [anon_sym_o_GT_GT] = ACTIONS(4882), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4882), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4882), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4882), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4882), - [aux_sym_unquoted_token1] = ACTIONS(4884), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4882), + [sym__newline] = ACTIONS(5004), + [anon_sym_SEMI] = ACTIONS(5004), + [anon_sym_PIPE] = ACTIONS(5004), + [anon_sym_err_GT_PIPE] = ACTIONS(5004), + [anon_sym_out_GT_PIPE] = ACTIONS(5004), + [anon_sym_e_GT_PIPE] = ACTIONS(5004), + [anon_sym_o_GT_PIPE] = ACTIONS(5004), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5004), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5004), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5004), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5004), + [anon_sym_RPAREN] = ACTIONS(5004), + [anon_sym_GT2] = ACTIONS(5006), + [anon_sym_DASH2] = ACTIONS(5008), + [anon_sym_in2] = ACTIONS(5008), + [anon_sym_LBRACE] = ACTIONS(5004), + [anon_sym_RBRACE] = ACTIONS(5004), + [anon_sym_STAR2] = ACTIONS(5006), + [anon_sym_and2] = ACTIONS(5008), + [anon_sym_xor2] = ACTIONS(5008), + [anon_sym_or2] = ACTIONS(5008), + [anon_sym_not_DASHin2] = ACTIONS(5008), + [anon_sym_has2] = ACTIONS(5008), + [anon_sym_not_DASHhas2] = ACTIONS(5008), + [anon_sym_starts_DASHwith2] = ACTIONS(5008), + [anon_sym_ends_DASHwith2] = ACTIONS(5008), + [anon_sym_EQ_EQ2] = ACTIONS(5008), + [anon_sym_BANG_EQ2] = ACTIONS(5008), + [anon_sym_LT2] = ACTIONS(5006), + [anon_sym_LT_EQ2] = ACTIONS(5008), + [anon_sym_GT_EQ2] = ACTIONS(5008), + [anon_sym_EQ_TILDE2] = ACTIONS(5008), + [anon_sym_BANG_TILDE2] = ACTIONS(5008), + [anon_sym_STAR_STAR2] = ACTIONS(5008), + [anon_sym_PLUS_PLUS2] = ACTIONS(5008), + [anon_sym_SLASH2] = ACTIONS(5006), + [anon_sym_mod2] = ACTIONS(5008), + [anon_sym_SLASH_SLASH2] = ACTIONS(5008), + [anon_sym_PLUS2] = ACTIONS(5006), + [anon_sym_bit_DASHshl2] = ACTIONS(5008), + [anon_sym_bit_DASHshr2] = ACTIONS(5008), + [anon_sym_bit_DASHand2] = ACTIONS(5008), + [anon_sym_bit_DASHxor2] = ACTIONS(5008), + [anon_sym_bit_DASHor2] = ACTIONS(5008), + [anon_sym_DOT_DOT2] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), + [anon_sym_err_GT] = ACTIONS(5010), + [anon_sym_out_GT] = ACTIONS(5010), + [anon_sym_e_GT] = ACTIONS(5010), + [anon_sym_o_GT] = ACTIONS(5010), + [anon_sym_err_PLUSout_GT] = ACTIONS(5010), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5010), + [anon_sym_o_PLUSe_GT] = ACTIONS(5010), + [anon_sym_e_PLUSo_GT] = ACTIONS(5010), + [anon_sym_err_GT_GT] = ACTIONS(5004), + [anon_sym_out_GT_GT] = ACTIONS(5004), + [anon_sym_e_GT_GT] = ACTIONS(5004), + [anon_sym_o_GT_GT] = ACTIONS(5004), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5004), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5004), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5004), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5004), + [anon_sym_POUND] = ACTIONS(247), }, [1691] = { [sym_comment] = STATE(1691), - [ts_builtin_sym_end] = ACTIONS(1713), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1713), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_DOT_DOT] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT] = ACTIONS(1713), - [aux_sym__immediate_decimal_token1] = ACTIONS(5011), - [aux_sym__immediate_decimal_token2] = ACTIONS(5013), - [anon_sym_null] = ACTIONS(1713), - [anon_sym_true] = ACTIONS(1713), - [anon_sym_false] = ACTIONS(1713), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1713), - [aux_sym__val_number_decimal_token3] = ACTIONS(1713), - [aux_sym__val_number_decimal_token4] = ACTIONS(1713), - [aux_sym__val_number_token1] = ACTIONS(1713), - [aux_sym__val_number_token2] = ACTIONS(1713), - [aux_sym__val_number_token3] = ACTIONS(1713), - [aux_sym__val_number_token4] = ACTIONS(1713), - [aux_sym__val_number_token5] = ACTIONS(1713), - [aux_sym__val_number_token6] = ACTIONS(1713), - [anon_sym_0b] = ACTIONS(1711), - [anon_sym_0o] = ACTIONS(1711), - [anon_sym_0x] = ACTIONS(1711), - [sym_val_date] = ACTIONS(1713), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym__str_single_quotes] = ACTIONS(1713), - [sym__str_back_ticks] = ACTIONS(1713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1713), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [aux_sym_unquoted_token1] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1713), + [sym__newline] = ACTIONS(1983), + [anon_sym_SEMI] = ACTIONS(1983), + [anon_sym_PIPE] = ACTIONS(1983), + [anon_sym_err_GT_PIPE] = ACTIONS(1983), + [anon_sym_out_GT_PIPE] = ACTIONS(1983), + [anon_sym_e_GT_PIPE] = ACTIONS(1983), + [anon_sym_o_GT_PIPE] = ACTIONS(1983), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1983), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1983), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1983), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1983), + [anon_sym_RPAREN] = ACTIONS(1983), + [anon_sym_GT2] = ACTIONS(1977), + [anon_sym_DASH2] = ACTIONS(1983), + [anon_sym_in2] = ACTIONS(1983), + [anon_sym_LBRACE] = ACTIONS(1983), + [anon_sym_RBRACE] = ACTIONS(1983), + [anon_sym_STAR2] = ACTIONS(1977), + [anon_sym_and2] = ACTIONS(1983), + [anon_sym_xor2] = ACTIONS(1983), + [anon_sym_or2] = ACTIONS(1983), + [anon_sym_not_DASHin2] = ACTIONS(1983), + [anon_sym_has2] = ACTIONS(1983), + [anon_sym_not_DASHhas2] = ACTIONS(1983), + [anon_sym_starts_DASHwith2] = ACTIONS(1983), + [anon_sym_ends_DASHwith2] = ACTIONS(1983), + [anon_sym_EQ_EQ2] = ACTIONS(1983), + [anon_sym_BANG_EQ2] = ACTIONS(1983), + [anon_sym_LT2] = ACTIONS(1977), + [anon_sym_LT_EQ2] = ACTIONS(1983), + [anon_sym_GT_EQ2] = ACTIONS(1983), + [anon_sym_EQ_TILDE2] = ACTIONS(1983), + [anon_sym_BANG_TILDE2] = ACTIONS(1983), + [anon_sym_STAR_STAR2] = ACTIONS(1983), + [anon_sym_PLUS_PLUS2] = ACTIONS(1983), + [anon_sym_SLASH2] = ACTIONS(1977), + [anon_sym_mod2] = ACTIONS(1983), + [anon_sym_SLASH_SLASH2] = ACTIONS(1983), + [anon_sym_PLUS2] = ACTIONS(1977), + [anon_sym_bit_DASHshl2] = ACTIONS(1983), + [anon_sym_bit_DASHshr2] = ACTIONS(1983), + [anon_sym_bit_DASHand2] = ACTIONS(1983), + [anon_sym_bit_DASHxor2] = ACTIONS(1983), + [anon_sym_bit_DASHor2] = ACTIONS(1983), + [anon_sym_DOT_DOT2] = ACTIONS(5012), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(5014), + [anon_sym_DOT_DOT_LT2] = ACTIONS(5014), + [anon_sym_err_GT] = ACTIONS(1977), + [anon_sym_out_GT] = ACTIONS(1977), + [anon_sym_e_GT] = ACTIONS(1977), + [anon_sym_o_GT] = ACTIONS(1977), + [anon_sym_err_PLUSout_GT] = ACTIONS(1977), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1977), + [anon_sym_o_PLUSe_GT] = ACTIONS(1977), + [anon_sym_e_PLUSo_GT] = ACTIONS(1977), + [anon_sym_err_GT_GT] = ACTIONS(1983), + [anon_sym_out_GT_GT] = ACTIONS(1983), + [anon_sym_e_GT_GT] = ACTIONS(1983), + [anon_sym_o_GT_GT] = ACTIONS(1983), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1983), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1983), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1983), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1983), + [anon_sym_POUND] = ACTIONS(247), }, [1692] = { - [sym_path] = STATE(1889), [sym_comment] = STATE(1692), - [aux_sym_cell_path_repeat1] = STATE(1684), - [ts_builtin_sym_end] = ACTIONS(951), - [sym__newline] = ACTIONS(951), - [anon_sym_SEMI] = ACTIONS(951), - [anon_sym_PIPE] = ACTIONS(951), - [anon_sym_err_GT_PIPE] = ACTIONS(951), - [anon_sym_out_GT_PIPE] = ACTIONS(951), - [anon_sym_e_GT_PIPE] = ACTIONS(951), - [anon_sym_o_GT_PIPE] = ACTIONS(951), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(951), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(951), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(951), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(951), - [anon_sym_GT2] = ACTIONS(949), - [anon_sym_DASH2] = ACTIONS(951), - [anon_sym_in2] = ACTIONS(951), - [anon_sym_LBRACE] = ACTIONS(951), - [anon_sym_STAR2] = ACTIONS(949), - [anon_sym_and2] = ACTIONS(951), - [anon_sym_xor2] = ACTIONS(951), - [anon_sym_or2] = ACTIONS(951), - [anon_sym_not_DASHin2] = ACTIONS(951), - [anon_sym_starts_DASHwith2] = ACTIONS(951), - [anon_sym_ends_DASHwith2] = ACTIONS(951), - [anon_sym_EQ_EQ2] = ACTIONS(951), - [anon_sym_BANG_EQ2] = ACTIONS(951), - [anon_sym_LT2] = ACTIONS(949), - [anon_sym_LT_EQ2] = ACTIONS(951), - [anon_sym_GT_EQ2] = ACTIONS(951), - [anon_sym_EQ_TILDE2] = ACTIONS(951), - [anon_sym_BANG_TILDE2] = ACTIONS(951), - [anon_sym_STAR_STAR2] = ACTIONS(951), - [anon_sym_PLUS_PLUS2] = ACTIONS(951), - [anon_sym_SLASH2] = ACTIONS(949), - [anon_sym_mod2] = ACTIONS(951), - [anon_sym_SLASH_SLASH2] = ACTIONS(951), - [anon_sym_PLUS2] = ACTIONS(949), - [anon_sym_bit_DASHshl2] = ACTIONS(951), - [anon_sym_bit_DASHshr2] = ACTIONS(951), - [anon_sym_bit_DASHand2] = ACTIONS(951), - [anon_sym_bit_DASHxor2] = ACTIONS(951), - [anon_sym_bit_DASHor2] = ACTIONS(951), - [anon_sym_DOT_DOT2] = ACTIONS(949), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(951), - [anon_sym_DOT_DOT_LT2] = ACTIONS(951), - [anon_sym_DOT2] = ACTIONS(4956), - [anon_sym_err_GT] = ACTIONS(949), - [anon_sym_out_GT] = ACTIONS(949), - [anon_sym_e_GT] = ACTIONS(949), - [anon_sym_o_GT] = ACTIONS(949), - [anon_sym_err_PLUSout_GT] = ACTIONS(949), - [anon_sym_out_PLUSerr_GT] = ACTIONS(949), - [anon_sym_o_PLUSe_GT] = ACTIONS(949), - [anon_sym_e_PLUSo_GT] = ACTIONS(949), - [anon_sym_err_GT_GT] = ACTIONS(951), - [anon_sym_out_GT_GT] = ACTIONS(951), - [anon_sym_e_GT_GT] = ACTIONS(951), - [anon_sym_o_GT_GT] = ACTIONS(951), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(951), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(951), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(951), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(951), - [anon_sym_POUND] = ACTIONS(251), + [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_GT2] = ACTIONS(1806), + [anon_sym_DASH2] = ACTIONS(1814), + [anon_sym_in2] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1814), + [anon_sym_RBRACE] = ACTIONS(1814), + [anon_sym_STAR2] = ACTIONS(1806), + [anon_sym_and2] = ACTIONS(1814), + [anon_sym_xor2] = ACTIONS(1814), + [anon_sym_or2] = ACTIONS(1814), + [anon_sym_not_DASHin2] = ACTIONS(1814), + [anon_sym_has2] = ACTIONS(1814), + [anon_sym_not_DASHhas2] = ACTIONS(1814), + [anon_sym_starts_DASHwith2] = ACTIONS(1814), + [anon_sym_ends_DASHwith2] = ACTIONS(1814), + [anon_sym_EQ_EQ2] = ACTIONS(1814), + [anon_sym_BANG_EQ2] = ACTIONS(1814), + [anon_sym_LT2] = ACTIONS(1806), + [anon_sym_LT_EQ2] = ACTIONS(1814), + [anon_sym_GT_EQ2] = ACTIONS(1814), + [anon_sym_EQ_TILDE2] = ACTIONS(1814), + [anon_sym_BANG_TILDE2] = ACTIONS(1814), + [anon_sym_STAR_STAR2] = ACTIONS(1814), + [anon_sym_PLUS_PLUS2] = ACTIONS(1814), + [anon_sym_SLASH2] = ACTIONS(1806), + [anon_sym_mod2] = ACTIONS(1814), + [anon_sym_SLASH_SLASH2] = ACTIONS(1814), + [anon_sym_PLUS2] = ACTIONS(1806), + [anon_sym_bit_DASHshl2] = ACTIONS(1814), + [anon_sym_bit_DASHshr2] = ACTIONS(1814), + [anon_sym_bit_DASHand2] = ACTIONS(1814), + [anon_sym_bit_DASHxor2] = ACTIONS(1814), + [anon_sym_bit_DASHor2] = ACTIONS(1814), + [anon_sym_DOT_DOT2] = ACTIONS(5016), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(5018), + [anon_sym_DOT_DOT_LT2] = ACTIONS(5018), + [anon_sym_err_GT] = ACTIONS(1806), + [anon_sym_out_GT] = ACTIONS(1806), + [anon_sym_e_GT] = ACTIONS(1806), + [anon_sym_o_GT] = ACTIONS(1806), + [anon_sym_err_PLUSout_GT] = ACTIONS(1806), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1806), + [anon_sym_o_PLUSe_GT] = ACTIONS(1806), + [anon_sym_e_PLUSo_GT] = ACTIONS(1806), + [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(247), }, [1693] = { - [sym__expr_parenthesized_immediate] = STATE(7464), [sym_comment] = STATE(1693), - [sym__newline] = ACTIONS(5015), - [anon_sym_SEMI] = ACTIONS(5015), - [anon_sym_PIPE] = ACTIONS(5015), - [anon_sym_err_GT_PIPE] = ACTIONS(5015), - [anon_sym_out_GT_PIPE] = ACTIONS(5015), - [anon_sym_e_GT_PIPE] = ACTIONS(5015), - [anon_sym_o_GT_PIPE] = ACTIONS(5015), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5015), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5015), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5015), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5015), - [anon_sym_LBRACK] = ACTIONS(5015), - [anon_sym_LPAREN] = ACTIONS(5017), - [anon_sym_RPAREN] = ACTIONS(5015), - [anon_sym_DOLLAR] = ACTIONS(5017), - [anon_sym_DASH_DASH] = ACTIONS(5015), - [anon_sym_DASH2] = ACTIONS(5017), - [anon_sym_LBRACE] = ACTIONS(5015), - [anon_sym_DOT_DOT] = ACTIONS(5017), - [anon_sym_LPAREN2] = ACTIONS(4181), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5015), - [anon_sym_DOT_DOT_LT] = ACTIONS(5015), - [anon_sym_null] = ACTIONS(5015), - [anon_sym_true] = ACTIONS(5015), - [anon_sym_false] = ACTIONS(5015), - [aux_sym__val_number_decimal_token1] = ACTIONS(5017), - [aux_sym__val_number_decimal_token2] = ACTIONS(5015), - [aux_sym__val_number_decimal_token3] = ACTIONS(5015), - [aux_sym__val_number_decimal_token4] = ACTIONS(5015), - [aux_sym__val_number_token1] = ACTIONS(5015), - [aux_sym__val_number_token2] = ACTIONS(5015), - [aux_sym__val_number_token3] = ACTIONS(5015), - [aux_sym__val_number_token4] = ACTIONS(5015), - [aux_sym__val_number_token5] = ACTIONS(5015), - [aux_sym__val_number_token6] = ACTIONS(5015), - [anon_sym_0b] = ACTIONS(5017), - [anon_sym_0o] = ACTIONS(5017), - [anon_sym_0x] = ACTIONS(5017), - [sym_val_date] = ACTIONS(5015), - [anon_sym_DQUOTE] = ACTIONS(5015), - [sym__str_single_quotes] = ACTIONS(5015), - [sym__str_back_ticks] = ACTIONS(5015), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5015), - [anon_sym_err_GT] = ACTIONS(5017), - [anon_sym_out_GT] = ACTIONS(5017), - [anon_sym_e_GT] = ACTIONS(5017), - [anon_sym_o_GT] = ACTIONS(5017), - [anon_sym_err_PLUSout_GT] = ACTIONS(5017), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5017), - [anon_sym_o_PLUSe_GT] = ACTIONS(5017), - [anon_sym_e_PLUSo_GT] = ACTIONS(5017), - [anon_sym_err_GT_GT] = ACTIONS(5015), - [anon_sym_out_GT_GT] = ACTIONS(5015), - [anon_sym_e_GT_GT] = ACTIONS(5015), - [anon_sym_o_GT_GT] = ACTIONS(5015), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5015), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5015), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5015), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5015), - [aux_sym_unquoted_token1] = ACTIONS(5017), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(5015), + [sym__newline] = ACTIONS(1991), + [anon_sym_SEMI] = ACTIONS(1991), + [anon_sym_PIPE] = ACTIONS(1991), + [anon_sym_err_GT_PIPE] = ACTIONS(1991), + [anon_sym_out_GT_PIPE] = ACTIONS(1991), + [anon_sym_e_GT_PIPE] = ACTIONS(1991), + [anon_sym_o_GT_PIPE] = ACTIONS(1991), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1991), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1991), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1991), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1991), + [anon_sym_RPAREN] = ACTIONS(1991), + [anon_sym_GT2] = ACTIONS(1985), + [anon_sym_DASH2] = ACTIONS(1991), + [anon_sym_in2] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1991), + [anon_sym_RBRACE] = ACTIONS(1991), + [anon_sym_STAR2] = ACTIONS(1985), + [anon_sym_and2] = ACTIONS(1991), + [anon_sym_xor2] = ACTIONS(1991), + [anon_sym_or2] = ACTIONS(1991), + [anon_sym_not_DASHin2] = ACTIONS(1991), + [anon_sym_has2] = ACTIONS(1991), + [anon_sym_not_DASHhas2] = ACTIONS(1991), + [anon_sym_starts_DASHwith2] = ACTIONS(1991), + [anon_sym_ends_DASHwith2] = ACTIONS(1991), + [anon_sym_EQ_EQ2] = ACTIONS(1991), + [anon_sym_BANG_EQ2] = ACTIONS(1991), + [anon_sym_LT2] = ACTIONS(1985), + [anon_sym_LT_EQ2] = ACTIONS(1991), + [anon_sym_GT_EQ2] = ACTIONS(1991), + [anon_sym_EQ_TILDE2] = ACTIONS(1991), + [anon_sym_BANG_TILDE2] = ACTIONS(1991), + [anon_sym_STAR_STAR2] = ACTIONS(1991), + [anon_sym_PLUS_PLUS2] = ACTIONS(1991), + [anon_sym_SLASH2] = ACTIONS(1985), + [anon_sym_mod2] = ACTIONS(1991), + [anon_sym_SLASH_SLASH2] = ACTIONS(1991), + [anon_sym_PLUS2] = ACTIONS(1985), + [anon_sym_bit_DASHshl2] = ACTIONS(1991), + [anon_sym_bit_DASHshr2] = ACTIONS(1991), + [anon_sym_bit_DASHand2] = ACTIONS(1991), + [anon_sym_bit_DASHxor2] = ACTIONS(1991), + [anon_sym_bit_DASHor2] = ACTIONS(1991), + [anon_sym_DOT_DOT2] = ACTIONS(5020), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(5022), + [anon_sym_DOT_DOT_LT2] = ACTIONS(5022), + [anon_sym_err_GT] = ACTIONS(1985), + [anon_sym_out_GT] = ACTIONS(1985), + [anon_sym_e_GT] = ACTIONS(1985), + [anon_sym_o_GT] = ACTIONS(1985), + [anon_sym_err_PLUSout_GT] = ACTIONS(1985), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1985), + [anon_sym_o_PLUSe_GT] = ACTIONS(1985), + [anon_sym_e_PLUSo_GT] = ACTIONS(1985), + [anon_sym_err_GT_GT] = ACTIONS(1991), + [anon_sym_out_GT_GT] = ACTIONS(1991), + [anon_sym_e_GT_GT] = ACTIONS(1991), + [anon_sym_o_GT_GT] = ACTIONS(1991), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1991), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1991), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1991), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1991), + [anon_sym_POUND] = ACTIONS(247), }, [1694] = { - [sym__expr_parenthesized_immediate] = STATE(7580), + [sym__expr_parenthesized_immediate] = STATE(7477), [sym_comment] = STATE(1694), - [ts_builtin_sym_end] = ACTIONS(4886), - [sym__newline] = ACTIONS(4886), - [anon_sym_SEMI] = ACTIONS(4886), - [anon_sym_PIPE] = ACTIONS(4886), - [anon_sym_err_GT_PIPE] = ACTIONS(4886), - [anon_sym_out_GT_PIPE] = ACTIONS(4886), - [anon_sym_e_GT_PIPE] = ACTIONS(4886), - [anon_sym_o_GT_PIPE] = ACTIONS(4886), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4886), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4886), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4886), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4886), - [anon_sym_LBRACK] = ACTIONS(4886), - [anon_sym_LPAREN] = ACTIONS(4888), - [anon_sym_DOLLAR] = ACTIONS(4888), - [anon_sym_DASH_DASH] = ACTIONS(4886), - [anon_sym_DASH2] = ACTIONS(4888), - [anon_sym_LBRACE] = ACTIONS(4886), - [anon_sym_DOT_DOT] = ACTIONS(4888), - [anon_sym_LPAREN2] = ACTIONS(4181), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4886), - [anon_sym_DOT_DOT_LT] = ACTIONS(4886), - [anon_sym_null] = ACTIONS(4886), - [anon_sym_true] = ACTIONS(4886), - [anon_sym_false] = ACTIONS(4886), - [aux_sym__val_number_decimal_token1] = ACTIONS(4888), - [aux_sym__val_number_decimal_token2] = ACTIONS(4886), - [aux_sym__val_number_decimal_token3] = ACTIONS(4886), - [aux_sym__val_number_decimal_token4] = ACTIONS(4886), - [aux_sym__val_number_token1] = ACTIONS(4886), - [aux_sym__val_number_token2] = ACTIONS(4886), - [aux_sym__val_number_token3] = ACTIONS(4886), - [aux_sym__val_number_token4] = ACTIONS(4886), - [aux_sym__val_number_token5] = ACTIONS(4886), - [aux_sym__val_number_token6] = ACTIONS(4886), - [anon_sym_0b] = ACTIONS(4888), - [anon_sym_0o] = ACTIONS(4888), - [anon_sym_0x] = ACTIONS(4888), - [sym_val_date] = ACTIONS(4886), - [anon_sym_DQUOTE] = ACTIONS(4886), - [sym__str_single_quotes] = ACTIONS(4886), - [sym__str_back_ticks] = ACTIONS(4886), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4886), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4886), - [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(4886), - [anon_sym_out_GT_GT] = ACTIONS(4886), - [anon_sym_e_GT_GT] = ACTIONS(4886), - [anon_sym_o_GT_GT] = ACTIONS(4886), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4886), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4886), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4886), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4886), - [aux_sym_unquoted_token1] = ACTIONS(4888), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4886), + [ts_builtin_sym_end] = ACTIONS(4895), + [sym__newline] = ACTIONS(4895), + [anon_sym_SEMI] = ACTIONS(4895), + [anon_sym_PIPE] = ACTIONS(4895), + [anon_sym_err_GT_PIPE] = ACTIONS(4895), + [anon_sym_out_GT_PIPE] = ACTIONS(4895), + [anon_sym_e_GT_PIPE] = ACTIONS(4895), + [anon_sym_o_GT_PIPE] = ACTIONS(4895), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4895), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4895), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4895), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4895), + [anon_sym_LPAREN] = ACTIONS(4897), + [anon_sym_DOLLAR] = ACTIONS(4897), + [anon_sym_DASH_DASH] = ACTIONS(4895), + [anon_sym_DASH2] = ACTIONS(4897), + [anon_sym_LBRACE] = ACTIONS(4895), + [anon_sym_DOT_DOT] = ACTIONS(4897), + [anon_sym_LPAREN2] = ACTIONS(4452), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4895), + [anon_sym_DOT_DOT_LT] = ACTIONS(4895), + [anon_sym_null] = ACTIONS(4895), + [anon_sym_true] = ACTIONS(4895), + [anon_sym_false] = ACTIONS(4895), + [aux_sym__val_number_decimal_token1] = ACTIONS(4897), + [aux_sym__val_number_decimal_token2] = ACTIONS(4895), + [aux_sym__val_number_decimal_token3] = ACTIONS(4895), + [aux_sym__val_number_decimal_token4] = ACTIONS(4895), + [aux_sym__val_number_token1] = ACTIONS(4895), + [aux_sym__val_number_token2] = ACTIONS(4895), + [aux_sym__val_number_token3] = ACTIONS(4895), + [aux_sym__val_number_token4] = ACTIONS(4895), + [aux_sym__val_number_token5] = ACTIONS(4895), + [aux_sym__val_number_token6] = ACTIONS(4895), + [anon_sym_0b] = ACTIONS(4897), + [anon_sym_0o] = ACTIONS(4897), + [anon_sym_0x] = ACTIONS(4897), + [sym_val_date] = ACTIONS(4895), + [anon_sym_DQUOTE] = ACTIONS(4895), + [sym__str_single_quotes] = ACTIONS(4895), + [sym__str_back_ticks] = ACTIONS(4895), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4895), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4895), + [anon_sym_err_GT] = ACTIONS(4897), + [anon_sym_out_GT] = ACTIONS(4897), + [anon_sym_e_GT] = ACTIONS(4897), + [anon_sym_o_GT] = ACTIONS(4897), + [anon_sym_err_PLUSout_GT] = ACTIONS(4897), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4897), + [anon_sym_o_PLUSe_GT] = ACTIONS(4897), + [anon_sym_e_PLUSo_GT] = ACTIONS(4897), + [anon_sym_err_GT_GT] = ACTIONS(4895), + [anon_sym_out_GT_GT] = ACTIONS(4895), + [anon_sym_e_GT_GT] = ACTIONS(4895), + [anon_sym_o_GT_GT] = ACTIONS(4895), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4895), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4895), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4895), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4895), + [aux_sym_unquoted_token1] = ACTIONS(4897), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4895), }, [1695] = { [sym_comment] = STATE(1695), - [ts_builtin_sym_end] = ACTIONS(1552), - [sym__newline] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1552), - [anon_sym_PIPE] = ACTIONS(1552), - [anon_sym_err_GT_PIPE] = ACTIONS(1552), - [anon_sym_out_GT_PIPE] = ACTIONS(1552), - [anon_sym_e_GT_PIPE] = ACTIONS(1552), - [anon_sym_o_GT_PIPE] = ACTIONS(1552), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1552), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1552), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1552), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1552), - [anon_sym_GT2] = ACTIONS(1550), - [anon_sym_DASH2] = ACTIONS(1552), - [anon_sym_in2] = ACTIONS(1552), - [anon_sym_STAR2] = ACTIONS(1550), - [anon_sym_and2] = ACTIONS(1552), - [anon_sym_xor2] = ACTIONS(1552), - [anon_sym_or2] = ACTIONS(1552), - [anon_sym_not_DASHin2] = ACTIONS(1552), - [anon_sym_starts_DASHwith2] = ACTIONS(1552), - [anon_sym_ends_DASHwith2] = ACTIONS(1552), - [anon_sym_EQ_EQ2] = ACTIONS(1552), - [anon_sym_BANG_EQ2] = ACTIONS(1552), - [anon_sym_LT2] = ACTIONS(1550), - [anon_sym_LT_EQ2] = ACTIONS(1552), - [anon_sym_GT_EQ2] = ACTIONS(1552), - [anon_sym_EQ_TILDE2] = ACTIONS(1552), - [anon_sym_BANG_TILDE2] = ACTIONS(1552), - [anon_sym_LPAREN2] = ACTIONS(1552), - [anon_sym_STAR_STAR2] = ACTIONS(1552), - [anon_sym_PLUS_PLUS2] = ACTIONS(1552), - [anon_sym_SLASH2] = ACTIONS(1550), - [anon_sym_mod2] = ACTIONS(1552), - [anon_sym_SLASH_SLASH2] = ACTIONS(1552), - [anon_sym_PLUS2] = ACTIONS(1550), - [anon_sym_bit_DASHshl2] = ACTIONS(1552), - [anon_sym_bit_DASHshr2] = ACTIONS(1552), - [anon_sym_bit_DASHand2] = ACTIONS(1552), - [anon_sym_bit_DASHxor2] = ACTIONS(1552), - [anon_sym_bit_DASHor2] = ACTIONS(1552), - [anon_sym_DOT_DOT2] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), - [sym_filesize_unit] = ACTIONS(1550), - [sym_duration_unit] = ACTIONS(1552), - [anon_sym_err_GT] = ACTIONS(1550), - [anon_sym_out_GT] = ACTIONS(1550), - [anon_sym_e_GT] = ACTIONS(1550), - [anon_sym_o_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT] = ACTIONS(1550), - [anon_sym_err_GT_GT] = ACTIONS(1552), - [anon_sym_out_GT_GT] = ACTIONS(1552), - [anon_sym_e_GT_GT] = ACTIONS(1552), - [anon_sym_o_GT_GT] = ACTIONS(1552), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1552), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1552), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1552), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1552), - [aux_sym_unquoted_token2] = ACTIONS(1550), - [anon_sym_POUND] = ACTIONS(251), + [ts_builtin_sym_end] = 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_GT2] = ACTIONS(1792), + [anon_sym_DASH2] = ACTIONS(1794), + [anon_sym_in2] = ACTIONS(1794), + [anon_sym_STAR2] = ACTIONS(1792), + [anon_sym_and2] = ACTIONS(1794), + [anon_sym_xor2] = ACTIONS(1794), + [anon_sym_or2] = ACTIONS(1794), + [anon_sym_not_DASHin2] = ACTIONS(1794), + [anon_sym_has2] = ACTIONS(1794), + [anon_sym_not_DASHhas2] = ACTIONS(1794), + [anon_sym_starts_DASHwith2] = ACTIONS(1794), + [anon_sym_ends_DASHwith2] = ACTIONS(1794), + [anon_sym_EQ_EQ2] = ACTIONS(1794), + [anon_sym_BANG_EQ2] = ACTIONS(1794), + [anon_sym_LT2] = ACTIONS(1792), + [anon_sym_LT_EQ2] = ACTIONS(1794), + [anon_sym_GT_EQ2] = ACTIONS(1794), + [anon_sym_EQ_TILDE2] = ACTIONS(1794), + [anon_sym_BANG_TILDE2] = ACTIONS(1794), + [anon_sym_LPAREN2] = ACTIONS(1794), + [anon_sym_STAR_STAR2] = ACTIONS(1794), + [anon_sym_PLUS_PLUS2] = ACTIONS(1794), + [anon_sym_SLASH2] = ACTIONS(1792), + [anon_sym_mod2] = ACTIONS(1794), + [anon_sym_SLASH_SLASH2] = ACTIONS(1794), + [anon_sym_PLUS2] = ACTIONS(1792), + [anon_sym_bit_DASHshl2] = ACTIONS(1794), + [anon_sym_bit_DASHshr2] = ACTIONS(1794), + [anon_sym_bit_DASHand2] = ACTIONS(1794), + [anon_sym_bit_DASHxor2] = ACTIONS(1794), + [anon_sym_bit_DASHor2] = ACTIONS(1794), + [anon_sym_DOT_DOT2] = ACTIONS(1792), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1794), + [anon_sym_DOT_DOT_LT2] = 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_token2] = ACTIONS(1792), + [anon_sym_POUND] = ACTIONS(247), }, [1696] = { - [sym_cmd_identifier] = STATE(4146), - [sym__command_name] = STATE(6267), - [sym_scope_pattern] = STATE(6617), - [sym_wild_card] = STATE(6273), - [sym_command_list] = STATE(6274), - [sym__val_number_decimal] = STATE(3792), - [sym_val_string] = STATE(4121), - [sym__raw_str] = STATE(3668), - [sym__str_double_quotes] = STATE(3668), [sym_comment] = STATE(1696), - [aux_sym_cmd_identifier_token1] = ACTIONS(4940), - [aux_sym_cmd_identifier_token2] = ACTIONS(4942), - [aux_sym_cmd_identifier_token3] = ACTIONS(4942), - [aux_sym_cmd_identifier_token4] = ACTIONS(4942), - [aux_sym_cmd_identifier_token5] = ACTIONS(4942), - [aux_sym_cmd_identifier_token6] = ACTIONS(4942), - [aux_sym_cmd_identifier_token7] = ACTIONS(4942), - [aux_sym_cmd_identifier_token8] = ACTIONS(4942), - [aux_sym_cmd_identifier_token9] = ACTIONS(4940), - [aux_sym_cmd_identifier_token10] = ACTIONS(4942), - [aux_sym_cmd_identifier_token11] = ACTIONS(4942), - [aux_sym_cmd_identifier_token12] = ACTIONS(4942), - [aux_sym_cmd_identifier_token13] = ACTIONS(4940), - [aux_sym_cmd_identifier_token14] = ACTIONS(4942), - [aux_sym_cmd_identifier_token15] = ACTIONS(4940), - [aux_sym_cmd_identifier_token16] = ACTIONS(4942), - [aux_sym_cmd_identifier_token17] = ACTIONS(4942), - [aux_sym_cmd_identifier_token18] = ACTIONS(4942), - [aux_sym_cmd_identifier_token19] = ACTIONS(4942), - [aux_sym_cmd_identifier_token20] = ACTIONS(4942), - [aux_sym_cmd_identifier_token21] = ACTIONS(4942), - [aux_sym_cmd_identifier_token22] = ACTIONS(4942), - [aux_sym_cmd_identifier_token23] = ACTIONS(4942), - [aux_sym_cmd_identifier_token24] = ACTIONS(4942), - [aux_sym_cmd_identifier_token25] = ACTIONS(4942), - [aux_sym_cmd_identifier_token26] = ACTIONS(4942), - [aux_sym_cmd_identifier_token27] = ACTIONS(4942), - [aux_sym_cmd_identifier_token28] = ACTIONS(4942), - [aux_sym_cmd_identifier_token29] = ACTIONS(4942), - [aux_sym_cmd_identifier_token30] = ACTIONS(4942), - [aux_sym_cmd_identifier_token31] = ACTIONS(4942), - [aux_sym_cmd_identifier_token32] = ACTIONS(4942), - [aux_sym_cmd_identifier_token33] = ACTIONS(4942), - [aux_sym_cmd_identifier_token34] = ACTIONS(4940), - [aux_sym_cmd_identifier_token35] = ACTIONS(4942), - [aux_sym_cmd_identifier_token36] = ACTIONS(4942), - [aux_sym_cmd_identifier_token37] = ACTIONS(4942), - [aux_sym_cmd_identifier_token38] = ACTIONS(4940), - [aux_sym_cmd_identifier_token39] = ACTIONS(4942), - [aux_sym_cmd_identifier_token40] = ACTIONS(4942), - [sym__newline] = ACTIONS(5019), - [anon_sym_SEMI] = ACTIONS(5019), - [anon_sym_LBRACK] = ACTIONS(4946), - [anon_sym_RPAREN] = ACTIONS(5019), - [anon_sym_RBRACE] = ACTIONS(5019), - [anon_sym_STAR2] = ACTIONS(4948), - [aux_sym__val_number_decimal_token1] = ACTIONS(4950), - [aux_sym__val_number_decimal_token2] = ACTIONS(4950), - [aux_sym__val_number_decimal_token3] = ACTIONS(4952), - [aux_sym__val_number_decimal_token4] = ACTIONS(4954), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym__str_single_quotes] = ACTIONS(1288), - [sym__str_back_ticks] = ACTIONS(1288), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1290), + [ts_builtin_sym_end] = ACTIONS(1695), + [sym__newline] = ACTIONS(1695), + [anon_sym_SEMI] = ACTIONS(1695), + [anon_sym_PIPE] = ACTIONS(1695), + [anon_sym_err_GT_PIPE] = ACTIONS(1695), + [anon_sym_out_GT_PIPE] = ACTIONS(1695), + [anon_sym_e_GT_PIPE] = ACTIONS(1695), + [anon_sym_o_GT_PIPE] = ACTIONS(1695), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1695), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1695), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1695), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1695), + [anon_sym_GT2] = ACTIONS(1693), + [anon_sym_DASH2] = ACTIONS(1695), + [anon_sym_in2] = ACTIONS(1695), + [anon_sym_STAR2] = ACTIONS(1693), + [anon_sym_and2] = ACTIONS(1695), + [anon_sym_xor2] = ACTIONS(1695), + [anon_sym_or2] = ACTIONS(1695), + [anon_sym_not_DASHin2] = ACTIONS(1695), + [anon_sym_has2] = ACTIONS(1695), + [anon_sym_not_DASHhas2] = ACTIONS(1695), + [anon_sym_starts_DASHwith2] = ACTIONS(1695), + [anon_sym_ends_DASHwith2] = ACTIONS(1695), + [anon_sym_EQ_EQ2] = ACTIONS(1695), + [anon_sym_BANG_EQ2] = ACTIONS(1695), + [anon_sym_LT2] = ACTIONS(1693), + [anon_sym_LT_EQ2] = ACTIONS(1695), + [anon_sym_GT_EQ2] = ACTIONS(1695), + [anon_sym_EQ_TILDE2] = ACTIONS(1695), + [anon_sym_BANG_TILDE2] = ACTIONS(1695), + [anon_sym_LPAREN2] = ACTIONS(1695), + [anon_sym_STAR_STAR2] = ACTIONS(1695), + [anon_sym_PLUS_PLUS2] = ACTIONS(1695), + [anon_sym_SLASH2] = ACTIONS(1693), + [anon_sym_mod2] = ACTIONS(1695), + [anon_sym_SLASH_SLASH2] = ACTIONS(1695), + [anon_sym_PLUS2] = ACTIONS(1693), + [anon_sym_bit_DASHshl2] = ACTIONS(1695), + [anon_sym_bit_DASHshr2] = ACTIONS(1695), + [anon_sym_bit_DASHand2] = ACTIONS(1695), + [anon_sym_bit_DASHxor2] = ACTIONS(1695), + [anon_sym_bit_DASHor2] = ACTIONS(1695), + [anon_sym_DOT_DOT2] = ACTIONS(1693), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1695), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1695), + [anon_sym_err_GT] = ACTIONS(1693), + [anon_sym_out_GT] = ACTIONS(1693), + [anon_sym_e_GT] = ACTIONS(1693), + [anon_sym_o_GT] = ACTIONS(1693), + [anon_sym_err_PLUSout_GT] = ACTIONS(1693), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1693), + [anon_sym_o_PLUSe_GT] = ACTIONS(1693), + [anon_sym_e_PLUSo_GT] = ACTIONS(1693), + [anon_sym_err_GT_GT] = ACTIONS(1695), + [anon_sym_out_GT_GT] = ACTIONS(1695), + [anon_sym_e_GT_GT] = ACTIONS(1695), + [anon_sym_o_GT_GT] = ACTIONS(1695), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1695), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1695), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1695), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1695), + [aux_sym_unquoted_token2] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(247), }, [1697] = { [sym_comment] = STATE(1697), - [ts_builtin_sym_end] = ACTIONS(4839), - [sym__newline] = ACTIONS(4839), - [anon_sym_SEMI] = ACTIONS(4839), - [anon_sym_PIPE] = ACTIONS(4839), - [anon_sym_err_GT_PIPE] = ACTIONS(4839), - [anon_sym_out_GT_PIPE] = ACTIONS(4839), - [anon_sym_e_GT_PIPE] = ACTIONS(4839), - [anon_sym_o_GT_PIPE] = ACTIONS(4839), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4839), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4839), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4839), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4839), - [anon_sym_LBRACK] = ACTIONS(4839), - [anon_sym_LPAREN] = ACTIONS(4839), - [anon_sym_DOLLAR] = ACTIONS(4841), - [anon_sym_DASH_DASH] = ACTIONS(4841), - [anon_sym_DASH2] = ACTIONS(4841), - [anon_sym_LBRACE] = ACTIONS(4839), - [anon_sym_DOT_DOT] = ACTIONS(4841), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4839), - [anon_sym_DOT_DOT_LT] = ACTIONS(4839), - [anon_sym_null] = ACTIONS(4841), - [anon_sym_true] = ACTIONS(4841), - [anon_sym_false] = ACTIONS(4841), - [aux_sym__val_number_decimal_token1] = ACTIONS(4841), - [aux_sym__val_number_decimal_token2] = ACTIONS(4841), - [aux_sym__val_number_decimal_token3] = ACTIONS(4839), - [aux_sym__val_number_decimal_token4] = ACTIONS(4839), - [aux_sym__val_number_token1] = ACTIONS(4841), - [aux_sym__val_number_token2] = ACTIONS(4841), - [aux_sym__val_number_token3] = ACTIONS(4841), - [aux_sym__val_number_token4] = ACTIONS(4841), - [aux_sym__val_number_token5] = ACTIONS(4841), - [aux_sym__val_number_token6] = ACTIONS(4841), - [anon_sym_0b] = ACTIONS(4841), - [anon_sym_0o] = ACTIONS(4841), - [anon_sym_0x] = ACTIONS(4841), - [sym_val_date] = ACTIONS(4841), - [anon_sym_DQUOTE] = ACTIONS(4839), - [sym__str_single_quotes] = ACTIONS(4839), - [sym__str_back_ticks] = ACTIONS(4839), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4839), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4839), - [anon_sym_err_GT] = ACTIONS(4841), - [anon_sym_out_GT] = ACTIONS(4841), - [anon_sym_e_GT] = ACTIONS(4841), - [anon_sym_o_GT] = ACTIONS(4841), - [anon_sym_err_PLUSout_GT] = ACTIONS(4841), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4841), - [anon_sym_o_PLUSe_GT] = ACTIONS(4841), - [anon_sym_e_PLUSo_GT] = ACTIONS(4841), - [anon_sym_err_GT_GT] = ACTIONS(4839), - [anon_sym_out_GT_GT] = ACTIONS(4839), - [anon_sym_e_GT_GT] = ACTIONS(4839), - [anon_sym_o_GT_GT] = ACTIONS(4839), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4839), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4839), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4839), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4839), - [anon_sym_EQ2] = ACTIONS(5021), - [sym_short_flag_identifier] = ACTIONS(5023), - [aux_sym_unquoted_token1] = ACTIONS(4841), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4839), + [sym__newline] = ACTIONS(5024), + [anon_sym_SEMI] = ACTIONS(5024), + [anon_sym_PIPE] = ACTIONS(5024), + [anon_sym_err_GT_PIPE] = ACTIONS(5024), + [anon_sym_out_GT_PIPE] = ACTIONS(5024), + [anon_sym_e_GT_PIPE] = ACTIONS(5024), + [anon_sym_o_GT_PIPE] = ACTIONS(5024), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5024), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5024), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5024), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5024), + [anon_sym_LBRACK] = ACTIONS(5024), + [anon_sym_LPAREN] = ACTIONS(5026), + [anon_sym_RPAREN] = ACTIONS(5024), + [anon_sym_DOLLAR] = ACTIONS(5026), + [anon_sym_DASH_DASH] = ACTIONS(5024), + [anon_sym_DASH2] = ACTIONS(5026), + [anon_sym_LBRACE] = ACTIONS(5024), + [anon_sym_RBRACE] = ACTIONS(5024), + [anon_sym_DOT_DOT] = ACTIONS(5026), + [anon_sym_LPAREN2] = ACTIONS(5024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5024), + [anon_sym_DOT_DOT_LT] = ACTIONS(5024), + [anon_sym_null] = ACTIONS(5024), + [anon_sym_true] = ACTIONS(5024), + [anon_sym_false] = ACTIONS(5024), + [aux_sym__val_number_decimal_token1] = ACTIONS(5026), + [aux_sym__val_number_decimal_token2] = ACTIONS(5024), + [aux_sym__val_number_decimal_token3] = ACTIONS(5024), + [aux_sym__val_number_decimal_token4] = ACTIONS(5024), + [aux_sym__val_number_token1] = ACTIONS(5024), + [aux_sym__val_number_token2] = ACTIONS(5024), + [aux_sym__val_number_token3] = ACTIONS(5024), + [aux_sym__val_number_token4] = ACTIONS(5024), + [aux_sym__val_number_token5] = ACTIONS(5024), + [aux_sym__val_number_token6] = ACTIONS(5024), + [anon_sym_0b] = ACTIONS(5026), + [anon_sym_0o] = ACTIONS(5026), + [anon_sym_0x] = ACTIONS(5026), + [sym_val_date] = ACTIONS(5024), + [anon_sym_DQUOTE] = ACTIONS(5024), + [sym__str_single_quotes] = ACTIONS(5024), + [sym__str_back_ticks] = ACTIONS(5024), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5024), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5024), + [anon_sym_err_GT] = ACTIONS(5026), + [anon_sym_out_GT] = ACTIONS(5026), + [anon_sym_e_GT] = ACTIONS(5026), + [anon_sym_o_GT] = ACTIONS(5026), + [anon_sym_err_PLUSout_GT] = ACTIONS(5026), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5026), + [anon_sym_o_PLUSe_GT] = ACTIONS(5026), + [anon_sym_e_PLUSo_GT] = ACTIONS(5026), + [anon_sym_err_GT_GT] = ACTIONS(5024), + [anon_sym_out_GT_GT] = ACTIONS(5024), + [anon_sym_e_GT_GT] = ACTIONS(5024), + [anon_sym_o_GT_GT] = ACTIONS(5024), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5024), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5024), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5024), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5024), + [aux_sym_unquoted_token1] = ACTIONS(5026), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(5024), }, [1698] = { [sym_comment] = STATE(1698), - [sym__newline] = ACTIONS(1995), - [anon_sym_SEMI] = ACTIONS(1995), - [anon_sym_PIPE] = ACTIONS(1995), - [anon_sym_err_GT_PIPE] = ACTIONS(1995), - [anon_sym_out_GT_PIPE] = ACTIONS(1995), - [anon_sym_e_GT_PIPE] = ACTIONS(1995), - [anon_sym_o_GT_PIPE] = ACTIONS(1995), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1995), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1995), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1995), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1995), - [anon_sym_RPAREN] = ACTIONS(1995), - [anon_sym_GT2] = ACTIONS(1993), - [anon_sym_DASH2] = ACTIONS(1995), - [anon_sym_in2] = ACTIONS(1995), - [anon_sym_if] = ACTIONS(1995), - [anon_sym_LBRACE] = ACTIONS(1995), - [anon_sym_RBRACE] = ACTIONS(1995), - [anon_sym_EQ_GT] = ACTIONS(1995), - [anon_sym_STAR2] = ACTIONS(1993), - [anon_sym_and2] = ACTIONS(1995), - [anon_sym_xor2] = ACTIONS(1995), - [anon_sym_or2] = ACTIONS(1995), - [anon_sym_not_DASHin2] = ACTIONS(1995), - [anon_sym_starts_DASHwith2] = ACTIONS(1995), - [anon_sym_ends_DASHwith2] = ACTIONS(1995), - [anon_sym_EQ_EQ2] = ACTIONS(1995), - [anon_sym_BANG_EQ2] = ACTIONS(1995), - [anon_sym_LT2] = ACTIONS(1993), - [anon_sym_LT_EQ2] = ACTIONS(1995), - [anon_sym_GT_EQ2] = ACTIONS(1995), - [anon_sym_EQ_TILDE2] = ACTIONS(1995), - [anon_sym_BANG_TILDE2] = ACTIONS(1995), - [anon_sym_STAR_STAR2] = ACTIONS(1995), - [anon_sym_PLUS_PLUS2] = ACTIONS(1995), - [anon_sym_SLASH2] = ACTIONS(1993), - [anon_sym_mod2] = ACTIONS(1995), - [anon_sym_SLASH_SLASH2] = ACTIONS(1995), - [anon_sym_PLUS2] = ACTIONS(1993), - [anon_sym_bit_DASHshl2] = ACTIONS(1995), - [anon_sym_bit_DASHshr2] = ACTIONS(1995), - [anon_sym_bit_DASHand2] = ACTIONS(1995), - [anon_sym_bit_DASHxor2] = ACTIONS(1995), - [anon_sym_bit_DASHor2] = ACTIONS(1995), - [anon_sym_DOT_DOT2] = ACTIONS(1993), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1995), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1995), - [anon_sym_err_GT] = ACTIONS(1993), - [anon_sym_out_GT] = ACTIONS(1993), - [anon_sym_e_GT] = ACTIONS(1993), - [anon_sym_o_GT] = ACTIONS(1993), - [anon_sym_err_PLUSout_GT] = ACTIONS(1993), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1993), - [anon_sym_o_PLUSe_GT] = ACTIONS(1993), - [anon_sym_e_PLUSo_GT] = ACTIONS(1993), - [anon_sym_err_GT_GT] = ACTIONS(1995), - [anon_sym_out_GT_GT] = ACTIONS(1995), - [anon_sym_e_GT_GT] = ACTIONS(1995), - [anon_sym_o_GT_GT] = ACTIONS(1995), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1995), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1995), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1995), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1995), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym_PIPE] = ACTIONS(2296), + [anon_sym_err_GT_PIPE] = ACTIONS(2296), + [anon_sym_out_GT_PIPE] = ACTIONS(2296), + [anon_sym_e_GT_PIPE] = ACTIONS(2296), + [anon_sym_o_GT_PIPE] = ACTIONS(2296), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2296), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2296), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2296), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2296), + [anon_sym_RPAREN] = ACTIONS(2296), + [anon_sym_GT2] = ACTIONS(2292), + [anon_sym_DASH2] = ACTIONS(2296), + [anon_sym_in2] = ACTIONS(2296), + [anon_sym_if] = ACTIONS(2296), + [anon_sym_LBRACE] = ACTIONS(2296), + [anon_sym_RBRACE] = ACTIONS(2296), + [anon_sym_EQ_GT] = ACTIONS(2296), + [anon_sym_STAR2] = ACTIONS(2292), + [anon_sym_and2] = ACTIONS(2296), + [anon_sym_xor2] = ACTIONS(2296), + [anon_sym_or2] = ACTIONS(2296), + [anon_sym_not_DASHin2] = ACTIONS(2296), + [anon_sym_has2] = ACTIONS(2296), + [anon_sym_not_DASHhas2] = ACTIONS(2296), + [anon_sym_starts_DASHwith2] = ACTIONS(2296), + [anon_sym_ends_DASHwith2] = ACTIONS(2296), + [anon_sym_EQ_EQ2] = ACTIONS(2296), + [anon_sym_BANG_EQ2] = ACTIONS(2296), + [anon_sym_LT2] = ACTIONS(2292), + [anon_sym_LT_EQ2] = ACTIONS(2296), + [anon_sym_GT_EQ2] = ACTIONS(2296), + [anon_sym_EQ_TILDE2] = ACTIONS(2296), + [anon_sym_BANG_TILDE2] = ACTIONS(2296), + [anon_sym_STAR_STAR2] = ACTIONS(2296), + [anon_sym_PLUS_PLUS2] = ACTIONS(2296), + [anon_sym_SLASH2] = ACTIONS(2292), + [anon_sym_mod2] = ACTIONS(2296), + [anon_sym_SLASH_SLASH2] = ACTIONS(2296), + [anon_sym_PLUS2] = ACTIONS(2292), + [anon_sym_bit_DASHshl2] = ACTIONS(2296), + [anon_sym_bit_DASHshr2] = ACTIONS(2296), + [anon_sym_bit_DASHand2] = ACTIONS(2296), + [anon_sym_bit_DASHxor2] = ACTIONS(2296), + [anon_sym_bit_DASHor2] = ACTIONS(2296), + [anon_sym_LBRACK2] = ACTIONS(5028), + [anon_sym_err_GT] = ACTIONS(2292), + [anon_sym_out_GT] = ACTIONS(2292), + [anon_sym_e_GT] = ACTIONS(2292), + [anon_sym_o_GT] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT] = ACTIONS(2292), + [anon_sym_err_GT_GT] = ACTIONS(2296), + [anon_sym_out_GT_GT] = ACTIONS(2296), + [anon_sym_e_GT_GT] = ACTIONS(2296), + [anon_sym_o_GT_GT] = ACTIONS(2296), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2296), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2296), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2296), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2296), + [anon_sym_POUND] = ACTIONS(247), }, [1699] = { + [sym__expr_parenthesized_immediate] = STATE(7477), [sym_comment] = STATE(1699), - [sym__newline] = ACTIONS(1757), - [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_DASH_DASH] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(4868), - [anon_sym_null] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = 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_err_GT] = ACTIONS(1755), - [anon_sym_out_GT] = ACTIONS(1755), - [anon_sym_e_GT] = ACTIONS(1755), - [anon_sym_o_GT] = ACTIONS(1755), - [anon_sym_err_PLUSout_GT] = ACTIONS(1755), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), - [anon_sym_o_PLUSe_GT] = ACTIONS(1755), - [anon_sym_e_PLUSo_GT] = ACTIONS(1755), - [anon_sym_err_GT_GT] = ACTIONS(1757), - [anon_sym_out_GT_GT] = ACTIONS(1757), - [anon_sym_e_GT_GT] = ACTIONS(1757), - [anon_sym_o_GT_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), - [aux_sym_unquoted_token1] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1757), + [sym__newline] = ACTIONS(4899), + [anon_sym_SEMI] = ACTIONS(4899), + [anon_sym_PIPE] = ACTIONS(4899), + [anon_sym_err_GT_PIPE] = ACTIONS(4899), + [anon_sym_out_GT_PIPE] = ACTIONS(4899), + [anon_sym_e_GT_PIPE] = ACTIONS(4899), + [anon_sym_o_GT_PIPE] = ACTIONS(4899), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4899), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4899), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4899), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4899), + [anon_sym_RPAREN] = ACTIONS(4899), + [anon_sym_GT2] = ACTIONS(4901), + [anon_sym_DASH2] = ACTIONS(4899), + [anon_sym_in2] = ACTIONS(4899), + [anon_sym_LBRACE] = ACTIONS(4899), + [anon_sym_RBRACE] = ACTIONS(4899), + [anon_sym_EQ_GT] = ACTIONS(4899), + [anon_sym_STAR2] = ACTIONS(4901), + [anon_sym_and2] = ACTIONS(4899), + [anon_sym_xor2] = ACTIONS(4899), + [anon_sym_or2] = ACTIONS(4899), + [anon_sym_not_DASHin2] = ACTIONS(4899), + [anon_sym_has2] = ACTIONS(4899), + [anon_sym_not_DASHhas2] = ACTIONS(4899), + [anon_sym_starts_DASHwith2] = ACTIONS(4899), + [anon_sym_ends_DASHwith2] = ACTIONS(4899), + [anon_sym_EQ_EQ2] = ACTIONS(4899), + [anon_sym_BANG_EQ2] = ACTIONS(4899), + [anon_sym_LT2] = ACTIONS(4901), + [anon_sym_LT_EQ2] = ACTIONS(4899), + [anon_sym_GT_EQ2] = ACTIONS(4899), + [anon_sym_EQ_TILDE2] = ACTIONS(4899), + [anon_sym_BANG_TILDE2] = ACTIONS(4899), + [anon_sym_LPAREN2] = ACTIONS(4452), + [anon_sym_STAR_STAR2] = ACTIONS(4899), + [anon_sym_PLUS_PLUS2] = ACTIONS(4899), + [anon_sym_SLASH2] = ACTIONS(4901), + [anon_sym_mod2] = ACTIONS(4899), + [anon_sym_SLASH_SLASH2] = ACTIONS(4899), + [anon_sym_PLUS2] = ACTIONS(4901), + [anon_sym_bit_DASHshl2] = ACTIONS(4899), + [anon_sym_bit_DASHshr2] = ACTIONS(4899), + [anon_sym_bit_DASHand2] = ACTIONS(4899), + [anon_sym_bit_DASHxor2] = ACTIONS(4899), + [anon_sym_bit_DASHor2] = ACTIONS(4899), + [anon_sym_err_GT] = ACTIONS(4901), + [anon_sym_out_GT] = ACTIONS(4901), + [anon_sym_e_GT] = ACTIONS(4901), + [anon_sym_o_GT] = ACTIONS(4901), + [anon_sym_err_PLUSout_GT] = ACTIONS(4901), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4901), + [anon_sym_o_PLUSe_GT] = ACTIONS(4901), + [anon_sym_e_PLUSo_GT] = ACTIONS(4901), + [anon_sym_err_GT_GT] = ACTIONS(4899), + [anon_sym_out_GT_GT] = ACTIONS(4899), + [anon_sym_e_GT_GT] = ACTIONS(4899), + [anon_sym_o_GT_GT] = ACTIONS(4899), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4899), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4899), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4899), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4899), + [anon_sym_POUND] = ACTIONS(247), }, [1700] = { [sym_comment] = STATE(1700), - [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_RPAREN] = ACTIONS(1650), - [anon_sym_GT2] = ACTIONS(1638), - [anon_sym_DASH2] = ACTIONS(1650), - [anon_sym_in2] = ACTIONS(1650), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_LBRACE] = ACTIONS(1650), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_EQ_GT] = ACTIONS(1650), - [anon_sym_STAR2] = ACTIONS(1638), - [anon_sym_QMARK2] = ACTIONS(1650), - [anon_sym_and2] = ACTIONS(1650), - [anon_sym_xor2] = ACTIONS(1650), - [anon_sym_or2] = ACTIONS(1650), - [anon_sym_not_DASHin2] = ACTIONS(1650), - [anon_sym_starts_DASHwith2] = ACTIONS(1650), - [anon_sym_ends_DASHwith2] = ACTIONS(1650), - [anon_sym_EQ_EQ2] = ACTIONS(1650), - [anon_sym_BANG_EQ2] = ACTIONS(1650), - [anon_sym_LT2] = ACTIONS(1638), - [anon_sym_LT_EQ2] = ACTIONS(1650), - [anon_sym_GT_EQ2] = ACTIONS(1650), - [anon_sym_EQ_TILDE2] = ACTIONS(1650), - [anon_sym_BANG_TILDE2] = ACTIONS(1650), - [anon_sym_STAR_STAR2] = ACTIONS(1650), - [anon_sym_PLUS_PLUS2] = ACTIONS(1650), - [anon_sym_SLASH2] = ACTIONS(1638), - [anon_sym_mod2] = ACTIONS(1650), - [anon_sym_SLASH_SLASH2] = ACTIONS(1650), - [anon_sym_PLUS2] = ACTIONS(1638), - [anon_sym_bit_DASHshl2] = ACTIONS(1650), - [anon_sym_bit_DASHshr2] = ACTIONS(1650), - [anon_sym_bit_DASHand2] = ACTIONS(1650), - [anon_sym_bit_DASHxor2] = ACTIONS(1650), - [anon_sym_bit_DASHor2] = ACTIONS(1650), - [anon_sym_COLON2] = ACTIONS(1650), - [anon_sym_DOT2] = ACTIONS(1650), - [anon_sym_err_GT] = ACTIONS(1638), - [anon_sym_out_GT] = ACTIONS(1638), - [anon_sym_e_GT] = ACTIONS(1638), - [anon_sym_o_GT] = ACTIONS(1638), - [anon_sym_err_PLUSout_GT] = ACTIONS(1638), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1638), - [anon_sym_o_PLUSe_GT] = ACTIONS(1638), - [anon_sym_e_PLUSo_GT] = ACTIONS(1638), - [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), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(984), + [anon_sym_SEMI] = ACTIONS(984), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_err_GT_PIPE] = ACTIONS(984), + [anon_sym_out_GT_PIPE] = ACTIONS(984), + [anon_sym_e_GT_PIPE] = ACTIONS(984), + [anon_sym_o_GT_PIPE] = ACTIONS(984), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(984), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(984), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(984), + [anon_sym_LBRACK] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(984), + [anon_sym_RPAREN] = ACTIONS(984), + [anon_sym_DOLLAR] = ACTIONS(982), + [anon_sym_DASH_DASH] = ACTIONS(984), + [anon_sym_DASH2] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_RBRACE] = ACTIONS(984), + [anon_sym_DOT_DOT] = ACTIONS(982), + [anon_sym_DOT_DOT_EQ] = ACTIONS(984), + [anon_sym_DOT_DOT_LT] = ACTIONS(984), + [anon_sym_null] = ACTIONS(984), + [anon_sym_true] = ACTIONS(984), + [anon_sym_false] = ACTIONS(984), + [aux_sym__val_number_decimal_token1] = ACTIONS(982), + [aux_sym__val_number_decimal_token2] = ACTIONS(984), + [aux_sym__val_number_decimal_token3] = ACTIONS(984), + [aux_sym__val_number_decimal_token4] = ACTIONS(984), + [aux_sym__val_number_token1] = ACTIONS(984), + [aux_sym__val_number_token2] = ACTIONS(984), + [aux_sym__val_number_token3] = ACTIONS(984), + [aux_sym__val_number_token4] = ACTIONS(984), + [aux_sym__val_number_token5] = ACTIONS(984), + [aux_sym__val_number_token6] = ACTIONS(984), + [anon_sym_0b] = ACTIONS(982), + [anon_sym_0o] = ACTIONS(982), + [anon_sym_0x] = ACTIONS(982), + [sym_val_date] = ACTIONS(984), + [anon_sym_DQUOTE] = ACTIONS(984), + [sym__str_single_quotes] = ACTIONS(984), + [sym__str_back_ticks] = ACTIONS(984), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(984), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(984), + [anon_sym_DOT2] = ACTIONS(982), + [anon_sym_err_GT] = ACTIONS(982), + [anon_sym_out_GT] = ACTIONS(982), + [anon_sym_e_GT] = ACTIONS(982), + [anon_sym_o_GT] = ACTIONS(982), + [anon_sym_err_PLUSout_GT] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT] = ACTIONS(982), + [anon_sym_o_PLUSe_GT] = ACTIONS(982), + [anon_sym_e_PLUSo_GT] = ACTIONS(982), + [anon_sym_err_GT_GT] = ACTIONS(984), + [anon_sym_out_GT_GT] = ACTIONS(984), + [anon_sym_e_GT_GT] = ACTIONS(984), + [anon_sym_o_GT_GT] = ACTIONS(984), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(984), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(984), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(984), + [aux_sym_unquoted_token1] = ACTIONS(982), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(984), + }, + [1701] = { + [sym_comment] = STATE(1701), + [sym__newline] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(998), + [anon_sym_err_GT_PIPE] = ACTIONS(998), + [anon_sym_out_GT_PIPE] = ACTIONS(998), + [anon_sym_e_GT_PIPE] = ACTIONS(998), + [anon_sym_o_GT_PIPE] = ACTIONS(998), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(998), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(998), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(998), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(998), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_RPAREN] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_RBRACE] = ACTIONS(998), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_null] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym__val_number_decimal_token1] = ACTIONS(1002), + [aux_sym__val_number_decimal_token2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = ACTIONS(1002), + [aux_sym__val_number_decimal_token4] = ACTIONS(1002), + [aux_sym__val_number_token1] = ACTIONS(1002), + [aux_sym__val_number_token2] = ACTIONS(1002), + [aux_sym__val_number_token3] = ACTIONS(1002), + [aux_sym__val_number_token4] = ACTIONS(1002), + [aux_sym__val_number_token5] = ACTIONS(1002), + [aux_sym__val_number_token6] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym__str_single_quotes] = ACTIONS(998), + [sym__str_back_ticks] = ACTIONS(998), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(998), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [anon_sym_err_GT_GT] = ACTIONS(1002), + [anon_sym_out_GT_GT] = ACTIONS(1002), + [anon_sym_e_GT_GT] = ACTIONS(1002), + [anon_sym_o_GT_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1002), + [aux_sym_unquoted_token1] = ACTIONS(1002), + [aux_sym_unquoted_token4] = ACTIONS(2063), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(998), }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1701), 1, - sym_comment, - ACTIONS(2320), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - 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(2322), 46, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [73] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1702), 1, - sym_comment, - ACTIONS(1835), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - 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(1837), 46, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [146] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1703), 1, - sym_comment, - ACTIONS(2362), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - 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(2364), 46, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [219] = 19, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2074), 1, - anon_sym_DOLLAR, - ACTIONS(2126), 1, - sym_raw_string_begin, - ACTIONS(4371), 1, - anon_sym_DQUOTE, - ACTIONS(4375), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4377), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4952), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5025), 1, - anon_sym_LPAREN, - STATE(1704), 1, - sym_comment, - STATE(3764), 1, - sym__val_number_decimal, - STATE(4587), 1, - sym__inter_single_quotes, - STATE(4588), 1, - sym__inter_double_quotes, - ACTIONS(4373), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4950), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4058), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4642), 5, - sym_cmd_identifier, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(365), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(367), 34, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [322] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1705), 1, - sym_comment, - ACTIONS(4962), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - 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(4960), 46, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [395] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1706), 1, - sym_comment, - ACTIONS(2489), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - 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(2491), 46, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [468] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1707), 1, - sym_comment, - ACTIONS(4962), 17, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - 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(4960), 45, - sym_raw_string_begin, - 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_DASH_DASH, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [541] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1708), 1, - sym_comment, - ACTIONS(2501), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - 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(2503), 46, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [614] = 21, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(123), 1, - sym_raw_string_begin, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4952), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5031), 1, - anon_sym_LBRACK, - ACTIONS(5033), 1, - anon_sym_STAR2, - STATE(1709), 1, - sym_comment, - STATE(3787), 1, - sym__val_number_decimal, - STATE(5782), 1, - sym_cmd_identifier, - STATE(5791), 1, - sym_val_string, - STATE(6739), 1, - sym_wild_card, - STATE(6753), 1, - sym_command_list, - STATE(6848), 1, - sym_scope_pattern, - STATE(7278), 1, - sym__command_name, - ACTIONS(111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4950), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(1732), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4944), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - ACTIONS(5027), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5029), 34, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [721] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1710), 1, - sym_comment, - ACTIONS(1993), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - 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(1995), 46, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [794] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1711), 1, - sym_comment, - ACTIONS(5037), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - 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(5035), 46, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [867] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1712), 1, - sym_comment, - ACTIONS(2378), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - 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(2380), 46, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [940] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1713), 1, - sym_comment, - ACTIONS(2382), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - 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(2384), 46, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [1013] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1714), 1, - sym_comment, - ACTIONS(4994), 17, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - 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(4992), 45, - sym_raw_string_begin, - 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_DASH_DASH, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [1086] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1715), 1, - sym_comment, - ACTIONS(5041), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - 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), 46, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [1159] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1716), 1, - sym_comment, - ACTIONS(2456), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - 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(2458), 46, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [1232] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1717), 1, - sym_comment, - ACTIONS(1983), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - 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(1985), 46, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [1305] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1718), 1, - sym_comment, - ACTIONS(1997), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - 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(1999), 46, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [1378] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1719), 1, - sym_comment, - ACTIONS(1783), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - 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(1785), 46, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [1451] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1720), 1, - sym_comment, - ACTIONS(2452), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - 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(2454), 46, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [1524] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1721), 1, - sym_comment, - ACTIONS(2505), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - 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(2507), 46, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [1597] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1722), 1, - sym_comment, - ACTIONS(2460), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - 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(2462), 46, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [1670] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1723), 1, - sym_comment, - ACTIONS(5046), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - 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(5043), 46, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [1743] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1724), 1, - sym_comment, - ACTIONS(1855), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - 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(1857), 46, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [1816] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1725), 1, - sym_comment, - ACTIONS(1638), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - 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), 46, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [1889] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1726), 1, - sym_comment, - ACTIONS(2358), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - 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(2360), 46, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [1962] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1727), 1, - sym_comment, - ACTIONS(976), 15, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_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(978), 47, - 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_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_QMARK2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - 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, - [2035] = 21, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(123), 1, - sym_raw_string_begin, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4952), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5031), 1, - anon_sym_LBRACK, - ACTIONS(5033), 1, - anon_sym_STAR2, - STATE(1728), 1, - sym_comment, - STATE(3787), 1, - sym__val_number_decimal, - STATE(5782), 1, - sym_cmd_identifier, - STATE(5791), 1, - sym_val_string, - STATE(6739), 1, - sym_wild_card, - STATE(6753), 1, - sym_command_list, - STATE(6810), 1, - sym_scope_pattern, - STATE(7278), 1, - sym__command_name, - ACTIONS(111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4950), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(1732), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4990), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - ACTIONS(5027), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5029), 34, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [2142] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1729), 1, - sym_comment, - ACTIONS(980), 15, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_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(982), 47, - 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_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_QMARK2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - 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, - [2215] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4644), 1, - aux_sym_unquoted_token2, - STATE(1730), 1, - sym_comment, - ACTIONS(1638), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - 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), 45, - sym_raw_string_begin, - 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, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [2290] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1731), 1, - sym_comment, - ACTIONS(972), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - 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(974), 46, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [2363] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_comment, - ACTIONS(972), 15, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_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(974), 47, - 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_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_QMARK2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - 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, - [2436] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1733), 1, - sym_comment, - ACTIONS(1941), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - 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(1943), 46, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [2509] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1734), 1, - sym_comment, - ACTIONS(976), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - 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(978), 46, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [2582] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1814), 1, - anon_sym_LPAREN2, - ACTIONS(1822), 1, - aux_sym_unquoted_token2, - ACTIONS(5049), 1, - anon_sym_DOT_DOT2, - STATE(1735), 1, - sym_comment, - ACTIONS(5051), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1812), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(1820), 44, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [2663] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1736), 1, - sym_comment, - ACTIONS(5055), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - 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(5053), 46, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [2736] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1737), 1, - sym_comment, - ACTIONS(5059), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - 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(5057), 46, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [2809] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1738), 1, - sym_comment, - ACTIONS(2398), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - 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(2400), 46, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [2882] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1739), 1, - sym_comment, - ACTIONS(984), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - 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(986), 46, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [2955] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1740), 1, - sym_comment, - ACTIONS(2478), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - 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(2480), 46, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [3028] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym_unquoted_token2, - ACTIONS(1804), 1, - anon_sym_LPAREN2, - ACTIONS(5061), 1, - anon_sym_DOT_DOT2, - STATE(1741), 1, - sym_comment, - ACTIONS(5063), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1802), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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), 44, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [3109] = 4, - ACTIONS(251), 1, + [1702] = { + [sym_comment] = STATE(1702), + [sym__newline] = ACTIONS(5008), + [anon_sym_SEMI] = ACTIONS(5008), + [anon_sym_PIPE] = ACTIONS(5008), + [anon_sym_err_GT_PIPE] = ACTIONS(5008), + [anon_sym_out_GT_PIPE] = ACTIONS(5008), + [anon_sym_e_GT_PIPE] = ACTIONS(5008), + [anon_sym_o_GT_PIPE] = ACTIONS(5008), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5008), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5008), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5008), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5008), + [anon_sym_RPAREN] = ACTIONS(5008), + [anon_sym_GT2] = ACTIONS(5006), + [anon_sym_DASH2] = ACTIONS(5008), + [anon_sym_in2] = ACTIONS(5008), + [anon_sym_LBRACE] = ACTIONS(5008), + [anon_sym_RBRACE] = ACTIONS(5008), + [anon_sym_STAR2] = ACTIONS(5006), + [anon_sym_and2] = ACTIONS(5008), + [anon_sym_xor2] = ACTIONS(5008), + [anon_sym_or2] = ACTIONS(5008), + [anon_sym_not_DASHin2] = ACTIONS(5008), + [anon_sym_has2] = ACTIONS(5008), + [anon_sym_not_DASHhas2] = ACTIONS(5008), + [anon_sym_starts_DASHwith2] = ACTIONS(5008), + [anon_sym_ends_DASHwith2] = ACTIONS(5008), + [anon_sym_EQ_EQ2] = ACTIONS(5008), + [anon_sym_BANG_EQ2] = ACTIONS(5008), + [anon_sym_LT2] = ACTIONS(5006), + [anon_sym_LT_EQ2] = ACTIONS(5008), + [anon_sym_GT_EQ2] = ACTIONS(5008), + [anon_sym_EQ_TILDE2] = ACTIONS(5008), + [anon_sym_BANG_TILDE2] = ACTIONS(5008), + [anon_sym_STAR_STAR2] = ACTIONS(5008), + [anon_sym_PLUS_PLUS2] = ACTIONS(5008), + [anon_sym_SLASH2] = ACTIONS(5006), + [anon_sym_mod2] = ACTIONS(5008), + [anon_sym_SLASH_SLASH2] = ACTIONS(5008), + [anon_sym_PLUS2] = ACTIONS(5006), + [anon_sym_bit_DASHshl2] = ACTIONS(5008), + [anon_sym_bit_DASHshr2] = ACTIONS(5008), + [anon_sym_bit_DASHand2] = ACTIONS(5008), + [anon_sym_bit_DASHxor2] = ACTIONS(5008), + [anon_sym_bit_DASHor2] = ACTIONS(5008), + [anon_sym_DOT_DOT2] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), + [anon_sym_err_GT] = ACTIONS(5006), + [anon_sym_out_GT] = ACTIONS(5006), + [anon_sym_e_GT] = ACTIONS(5006), + [anon_sym_o_GT] = ACTIONS(5006), + [anon_sym_err_PLUSout_GT] = ACTIONS(5006), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5006), + [anon_sym_o_PLUSe_GT] = ACTIONS(5006), + [anon_sym_e_PLUSo_GT] = ACTIONS(5006), + [anon_sym_err_GT_GT] = ACTIONS(5008), + [anon_sym_out_GT_GT] = ACTIONS(5008), + [anon_sym_e_GT_GT] = ACTIONS(5008), + [anon_sym_o_GT_GT] = ACTIONS(5008), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5008), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5008), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5008), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5008), + [anon_sym_POUND] = ACTIONS(247), + }, + [1703] = { + [sym_comment] = STATE(1703), + [ts_builtin_sym_end] = ACTIONS(1768), + [sym__newline] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_err_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_GT_PIPE] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1768), + [anon_sym_GT2] = ACTIONS(1766), + [anon_sym_DASH2] = ACTIONS(1768), + [anon_sym_in2] = ACTIONS(1768), + [anon_sym_STAR2] = ACTIONS(1766), + [anon_sym_and2] = ACTIONS(1768), + [anon_sym_xor2] = ACTIONS(1768), + [anon_sym_or2] = ACTIONS(1768), + [anon_sym_not_DASHin2] = ACTIONS(1768), + [anon_sym_has2] = ACTIONS(1768), + [anon_sym_not_DASHhas2] = ACTIONS(1768), + [anon_sym_starts_DASHwith2] = ACTIONS(1768), + [anon_sym_ends_DASHwith2] = ACTIONS(1768), + [anon_sym_EQ_EQ2] = ACTIONS(1768), + [anon_sym_BANG_EQ2] = ACTIONS(1768), + [anon_sym_LT2] = ACTIONS(1766), + [anon_sym_LT_EQ2] = ACTIONS(1768), + [anon_sym_GT_EQ2] = ACTIONS(1768), + [anon_sym_EQ_TILDE2] = ACTIONS(1768), + [anon_sym_BANG_TILDE2] = ACTIONS(1768), + [anon_sym_LPAREN2] = ACTIONS(1768), + [anon_sym_STAR_STAR2] = ACTIONS(1768), + [anon_sym_PLUS_PLUS2] = ACTIONS(1768), + [anon_sym_SLASH2] = ACTIONS(1766), + [anon_sym_mod2] = ACTIONS(1768), + [anon_sym_SLASH_SLASH2] = ACTIONS(1768), + [anon_sym_PLUS2] = ACTIONS(1766), + [anon_sym_bit_DASHshl2] = ACTIONS(1768), + [anon_sym_bit_DASHshr2] = ACTIONS(1768), + [anon_sym_bit_DASHand2] = ACTIONS(1768), + [anon_sym_bit_DASHxor2] = ACTIONS(1768), + [anon_sym_bit_DASHor2] = ACTIONS(1768), + [anon_sym_DOT_DOT2] = ACTIONS(1766), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1768), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1768), + [anon_sym_err_GT] = ACTIONS(1766), + [anon_sym_out_GT] = ACTIONS(1766), + [anon_sym_e_GT] = ACTIONS(1766), + [anon_sym_o_GT] = ACTIONS(1766), + [anon_sym_err_PLUSout_GT] = ACTIONS(1766), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1766), + [anon_sym_o_PLUSe_GT] = ACTIONS(1766), + [anon_sym_e_PLUSo_GT] = ACTIONS(1766), + [anon_sym_err_GT_GT] = ACTIONS(1768), + [anon_sym_out_GT_GT] = ACTIONS(1768), + [anon_sym_e_GT_GT] = ACTIONS(1768), + [anon_sym_o_GT_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1768), + [aux_sym_unquoted_token2] = ACTIONS(1766), + [anon_sym_POUND] = ACTIONS(247), + }, + [1704] = { + [sym__expr_parenthesized_immediate] = STATE(7383), + [sym_comment] = STATE(1704), + [sym__newline] = ACTIONS(4960), + [anon_sym_SEMI] = ACTIONS(4960), + [anon_sym_PIPE] = ACTIONS(4960), + [anon_sym_err_GT_PIPE] = ACTIONS(4960), + [anon_sym_out_GT_PIPE] = ACTIONS(4960), + [anon_sym_e_GT_PIPE] = ACTIONS(4960), + [anon_sym_o_GT_PIPE] = ACTIONS(4960), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4960), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4960), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4960), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4960), + [anon_sym_RPAREN] = ACTIONS(4960), + [anon_sym_GT2] = ACTIONS(4962), + [anon_sym_DASH2] = ACTIONS(4960), + [anon_sym_in2] = ACTIONS(4960), + [anon_sym_LBRACE] = ACTIONS(4960), + [anon_sym_RBRACE] = ACTIONS(4960), + [anon_sym_EQ_GT] = ACTIONS(4960), + [anon_sym_STAR2] = ACTIONS(4962), + [anon_sym_and2] = ACTIONS(4960), + [anon_sym_xor2] = ACTIONS(4960), + [anon_sym_or2] = ACTIONS(4960), + [anon_sym_not_DASHin2] = ACTIONS(4960), + [anon_sym_has2] = ACTIONS(4960), + [anon_sym_not_DASHhas2] = ACTIONS(4960), + [anon_sym_starts_DASHwith2] = ACTIONS(4960), + [anon_sym_ends_DASHwith2] = ACTIONS(4960), + [anon_sym_EQ_EQ2] = ACTIONS(4960), + [anon_sym_BANG_EQ2] = ACTIONS(4960), + [anon_sym_LT2] = ACTIONS(4962), + [anon_sym_LT_EQ2] = ACTIONS(4960), + [anon_sym_GT_EQ2] = ACTIONS(4960), + [anon_sym_EQ_TILDE2] = ACTIONS(4960), + [anon_sym_BANG_TILDE2] = ACTIONS(4960), + [anon_sym_LPAREN2] = ACTIONS(4452), + [anon_sym_STAR_STAR2] = ACTIONS(4960), + [anon_sym_PLUS_PLUS2] = ACTIONS(4960), + [anon_sym_SLASH2] = ACTIONS(4962), + [anon_sym_mod2] = ACTIONS(4960), + [anon_sym_SLASH_SLASH2] = ACTIONS(4960), + [anon_sym_PLUS2] = ACTIONS(4962), + [anon_sym_bit_DASHshl2] = ACTIONS(4960), + [anon_sym_bit_DASHshr2] = ACTIONS(4960), + [anon_sym_bit_DASHand2] = ACTIONS(4960), + [anon_sym_bit_DASHxor2] = ACTIONS(4960), + [anon_sym_bit_DASHor2] = ACTIONS(4960), + [anon_sym_err_GT] = ACTIONS(4962), + [anon_sym_out_GT] = ACTIONS(4962), + [anon_sym_e_GT] = ACTIONS(4962), + [anon_sym_o_GT] = ACTIONS(4962), + [anon_sym_err_PLUSout_GT] = ACTIONS(4962), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4962), + [anon_sym_o_PLUSe_GT] = ACTIONS(4962), + [anon_sym_e_PLUSo_GT] = ACTIONS(4962), + [anon_sym_err_GT_GT] = ACTIONS(4960), + [anon_sym_out_GT_GT] = ACTIONS(4960), + [anon_sym_e_GT_GT] = ACTIONS(4960), + [anon_sym_o_GT_GT] = ACTIONS(4960), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4960), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4960), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4960), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4960), + [anon_sym_POUND] = ACTIONS(247), + }, + [1705] = { + [sym_comment] = STATE(1705), + [ts_builtin_sym_end] = ACTIONS(2166), + [sym__newline] = ACTIONS(2166), + [anon_sym_SEMI] = ACTIONS(2166), + [anon_sym_PIPE] = ACTIONS(2166), + [anon_sym_err_GT_PIPE] = ACTIONS(2166), + [anon_sym_out_GT_PIPE] = ACTIONS(2166), + [anon_sym_e_GT_PIPE] = ACTIONS(2166), + [anon_sym_o_GT_PIPE] = ACTIONS(2166), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2166), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2166), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2166), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2166), + [anon_sym_LBRACK] = ACTIONS(2166), + [anon_sym_LPAREN] = ACTIONS(2164), + [anon_sym_DOLLAR] = ACTIONS(2164), + [anon_sym_DASH_DASH] = ACTIONS(2166), + [anon_sym_DASH2] = ACTIONS(2164), + [anon_sym_LBRACE] = ACTIONS(2166), + [anon_sym_DOT_DOT] = ACTIONS(2164), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2166), + [anon_sym_DOT_DOT_LT] = ACTIONS(2166), + [anon_sym_null] = ACTIONS(2166), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [aux_sym__val_number_decimal_token1] = ACTIONS(2164), + [aux_sym__val_number_decimal_token2] = ACTIONS(2166), + [aux_sym__val_number_decimal_token3] = ACTIONS(2166), + [aux_sym__val_number_decimal_token4] = ACTIONS(2166), + [aux_sym__val_number_token1] = ACTIONS(2166), + [aux_sym__val_number_token2] = ACTIONS(2166), + [aux_sym__val_number_token3] = ACTIONS(2166), + [aux_sym__val_number_token4] = ACTIONS(2166), + [aux_sym__val_number_token5] = ACTIONS(2166), + [aux_sym__val_number_token6] = ACTIONS(2166), + [anon_sym_0b] = ACTIONS(2164), + [anon_sym_0o] = ACTIONS(2164), + [anon_sym_0x] = ACTIONS(2164), + [sym_val_date] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2166), + [sym__str_single_quotes] = ACTIONS(2166), + [sym__str_back_ticks] = ACTIONS(2166), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2166), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2166), + [anon_sym_err_GT] = ACTIONS(2164), + [anon_sym_out_GT] = ACTIONS(2164), + [anon_sym_e_GT] = ACTIONS(2164), + [anon_sym_o_GT] = ACTIONS(2164), + [anon_sym_err_PLUSout_GT] = ACTIONS(2164), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2164), + [anon_sym_o_PLUSe_GT] = ACTIONS(2164), + [anon_sym_e_PLUSo_GT] = ACTIONS(2164), + [anon_sym_err_GT_GT] = ACTIONS(2166), + [anon_sym_out_GT_GT] = ACTIONS(2166), + [anon_sym_e_GT_GT] = ACTIONS(2166), + [anon_sym_o_GT_GT] = ACTIONS(2166), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2166), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2166), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2166), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2166), + [aux_sym_unquoted_token1] = ACTIONS(2164), + [aux_sym_unquoted_token2] = ACTIONS(1826), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2166), + }, + [1706] = { + [sym_comment] = STATE(1706), + [sym__newline] = ACTIONS(980), + [anon_sym_SEMI] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(980), + [anon_sym_err_GT_PIPE] = ACTIONS(980), + [anon_sym_out_GT_PIPE] = ACTIONS(980), + [anon_sym_e_GT_PIPE] = ACTIONS(980), + [anon_sym_o_GT_PIPE] = ACTIONS(980), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(980), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(980), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(980), + [anon_sym_LBRACK] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(980), + [anon_sym_RPAREN] = ACTIONS(980), + [anon_sym_DOLLAR] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_DASH2] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(980), + [anon_sym_RBRACE] = ACTIONS(980), + [anon_sym_DOT_DOT] = ACTIONS(978), + [anon_sym_DOT_DOT_EQ] = ACTIONS(980), + [anon_sym_DOT_DOT_LT] = ACTIONS(980), + [anon_sym_null] = ACTIONS(980), + [anon_sym_true] = ACTIONS(980), + [anon_sym_false] = ACTIONS(980), + [aux_sym__val_number_decimal_token1] = ACTIONS(978), + [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), + [aux_sym__val_number_token4] = ACTIONS(980), + [aux_sym__val_number_token5] = ACTIONS(980), + [aux_sym__val_number_token6] = ACTIONS(980), + [anon_sym_0b] = ACTIONS(978), + [anon_sym_0o] = ACTIONS(978), + [anon_sym_0x] = ACTIONS(978), + [sym_val_date] = ACTIONS(980), + [anon_sym_DQUOTE] = ACTIONS(980), + [sym__str_single_quotes] = ACTIONS(980), + [sym__str_back_ticks] = ACTIONS(980), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(980), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(980), + [anon_sym_DOT2] = ACTIONS(978), + [anon_sym_err_GT] = ACTIONS(978), + [anon_sym_out_GT] = ACTIONS(978), + [anon_sym_e_GT] = ACTIONS(978), + [anon_sym_o_GT] = ACTIONS(978), + [anon_sym_err_PLUSout_GT] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT] = ACTIONS(978), + [anon_sym_o_PLUSe_GT] = ACTIONS(978), + [anon_sym_e_PLUSo_GT] = ACTIONS(978), + [anon_sym_err_GT_GT] = ACTIONS(980), + [anon_sym_out_GT_GT] = ACTIONS(980), + [anon_sym_e_GT_GT] = ACTIONS(980), + [anon_sym_o_GT_GT] = ACTIONS(980), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(980), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(980), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(980), + [aux_sym_unquoted_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(980), + }, + [1707] = { + [sym__expr_parenthesized_immediate] = STATE(7477), + [sym_comment] = STATE(1707), + [ts_builtin_sym_end] = ACTIONS(4887), + [sym__newline] = ACTIONS(4887), + [anon_sym_SEMI] = ACTIONS(4887), + [anon_sym_PIPE] = ACTIONS(4887), + [anon_sym_err_GT_PIPE] = ACTIONS(4887), + [anon_sym_out_GT_PIPE] = ACTIONS(4887), + [anon_sym_e_GT_PIPE] = ACTIONS(4887), + [anon_sym_o_GT_PIPE] = ACTIONS(4887), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4887), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4887), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4887), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4887), + [anon_sym_LBRACK] = ACTIONS(4887), + [anon_sym_LPAREN] = ACTIONS(4889), + [anon_sym_DOLLAR] = ACTIONS(4889), + [anon_sym_DASH_DASH] = ACTIONS(4887), + [anon_sym_DASH2] = ACTIONS(4889), + [anon_sym_LBRACE] = ACTIONS(4887), + [anon_sym_DOT_DOT] = ACTIONS(4889), + [anon_sym_LPAREN2] = ACTIONS(4452), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4887), + [anon_sym_DOT_DOT_LT] = ACTIONS(4887), + [anon_sym_null] = ACTIONS(4887), + [anon_sym_true] = ACTIONS(4887), + [anon_sym_false] = ACTIONS(4887), + [aux_sym__val_number_decimal_token1] = ACTIONS(4889), + [aux_sym__val_number_decimal_token2] = ACTIONS(4887), + [aux_sym__val_number_decimal_token3] = ACTIONS(4887), + [aux_sym__val_number_decimal_token4] = ACTIONS(4887), + [aux_sym__val_number_token1] = ACTIONS(4887), + [aux_sym__val_number_token2] = ACTIONS(4887), + [aux_sym__val_number_token3] = ACTIONS(4887), + [aux_sym__val_number_token4] = ACTIONS(4887), + [aux_sym__val_number_token5] = ACTIONS(4887), + [aux_sym__val_number_token6] = ACTIONS(4887), + [anon_sym_0b] = ACTIONS(4889), + [anon_sym_0o] = ACTIONS(4889), + [anon_sym_0x] = ACTIONS(4889), + [sym_val_date] = ACTIONS(4887), + [anon_sym_DQUOTE] = ACTIONS(4887), + [sym__str_single_quotes] = ACTIONS(4887), + [sym__str_back_ticks] = ACTIONS(4887), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4887), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4887), + [anon_sym_err_GT] = ACTIONS(4889), + [anon_sym_out_GT] = ACTIONS(4889), + [anon_sym_e_GT] = ACTIONS(4889), + [anon_sym_o_GT] = ACTIONS(4889), + [anon_sym_err_PLUSout_GT] = ACTIONS(4889), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4889), + [anon_sym_o_PLUSe_GT] = ACTIONS(4889), + [anon_sym_e_PLUSo_GT] = ACTIONS(4889), + [anon_sym_err_GT_GT] = ACTIONS(4887), + [anon_sym_out_GT_GT] = ACTIONS(4887), + [anon_sym_e_GT_GT] = ACTIONS(4887), + [anon_sym_o_GT_GT] = ACTIONS(4887), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4887), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4887), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4887), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4887), + [aux_sym_unquoted_token1] = ACTIONS(4889), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4887), + }, + [1708] = { + [sym_comment] = STATE(1708), + [ts_builtin_sym_end] = ACTIONS(1824), + [sym__newline] = ACTIONS(1824), + [anon_sym_SEMI] = ACTIONS(1824), + [anon_sym_PIPE] = ACTIONS(1824), + [anon_sym_err_GT_PIPE] = ACTIONS(1824), + [anon_sym_out_GT_PIPE] = ACTIONS(1824), + [anon_sym_e_GT_PIPE] = ACTIONS(1824), + [anon_sym_o_GT_PIPE] = ACTIONS(1824), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1824), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1824), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1824), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1824), + [anon_sym_LBRACK] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_DOLLAR] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1824), + [anon_sym_DASH2] = ACTIONS(1816), + [anon_sym_LBRACE] = ACTIONS(1824), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1824), + [anon_sym_DOT_DOT_LT] = ACTIONS(1824), + [anon_sym_null] = ACTIONS(1824), + [anon_sym_true] = ACTIONS(1824), + [anon_sym_false] = ACTIONS(1824), + [aux_sym__val_number_decimal_token1] = ACTIONS(1816), + [aux_sym__val_number_decimal_token2] = ACTIONS(1824), + [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), + [aux_sym__val_number_token4] = ACTIONS(1824), + [aux_sym__val_number_token5] = ACTIONS(1824), + [aux_sym__val_number_token6] = ACTIONS(1824), + [anon_sym_0b] = ACTIONS(1816), + [anon_sym_0o] = ACTIONS(1816), + [anon_sym_0x] = ACTIONS(1816), + [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_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(1824), + [anon_sym_out_GT_GT] = ACTIONS(1824), + [anon_sym_e_GT_GT] = ACTIONS(1824), + [anon_sym_o_GT_GT] = ACTIONS(1824), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1824), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1824), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1824), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1824), + [aux_sym_unquoted_token1] = ACTIONS(1816), + [aux_sym_unquoted_token2] = ACTIONS(1826), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1824), + }, + [1709] = { + [sym_comment] = STATE(1709), + [ts_builtin_sym_end] = ACTIONS(2069), + [sym__newline] = ACTIONS(2069), + [anon_sym_SEMI] = ACTIONS(2069), + [anon_sym_PIPE] = ACTIONS(2069), + [anon_sym_err_GT_PIPE] = ACTIONS(2069), + [anon_sym_out_GT_PIPE] = ACTIONS(2069), + [anon_sym_e_GT_PIPE] = ACTIONS(2069), + [anon_sym_o_GT_PIPE] = ACTIONS(2069), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2069), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2069), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2069), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2069), + [anon_sym_LBRACK] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2065), + [anon_sym_DOLLAR] = ACTIONS(2065), + [anon_sym_DASH_DASH] = ACTIONS(2065), + [anon_sym_DASH2] = ACTIONS(2065), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(2065), + [anon_sym_LPAREN2] = ACTIONS(2067), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2065), + [anon_sym_DOT_DOT_LT] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2065), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [aux_sym__val_number_decimal_token1] = ACTIONS(2065), + [aux_sym__val_number_decimal_token2] = ACTIONS(2065), + [aux_sym__val_number_decimal_token3] = ACTIONS(2065), + [aux_sym__val_number_decimal_token4] = ACTIONS(2065), + [aux_sym__val_number_token1] = ACTIONS(2065), + [aux_sym__val_number_token2] = ACTIONS(2065), + [aux_sym__val_number_token3] = ACTIONS(2065), + [aux_sym__val_number_token4] = ACTIONS(2065), + [aux_sym__val_number_token5] = ACTIONS(2065), + [aux_sym__val_number_token6] = ACTIONS(2065), + [anon_sym_0b] = ACTIONS(2065), + [anon_sym_0o] = ACTIONS(2065), + [anon_sym_0x] = ACTIONS(2065), + [sym_val_date] = ACTIONS(2065), + [anon_sym_DQUOTE] = ACTIONS(2069), + [sym__str_single_quotes] = ACTIONS(2069), + [sym__str_back_ticks] = ACTIONS(2069), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2069), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2069), + [anon_sym_err_GT] = ACTIONS(2065), + [anon_sym_out_GT] = ACTIONS(2065), + [anon_sym_e_GT] = ACTIONS(2065), + [anon_sym_o_GT] = ACTIONS(2065), + [anon_sym_err_PLUSout_GT] = ACTIONS(2065), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2065), + [anon_sym_o_PLUSe_GT] = ACTIONS(2065), + [anon_sym_e_PLUSo_GT] = ACTIONS(2065), + [anon_sym_err_GT_GT] = ACTIONS(2065), + [anon_sym_out_GT_GT] = ACTIONS(2065), + [anon_sym_e_GT_GT] = ACTIONS(2065), + [anon_sym_o_GT_GT] = ACTIONS(2065), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2065), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2065), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2065), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2065), + [aux_sym_unquoted_token1] = ACTIONS(2065), + [aux_sym_unquoted_token4] = ACTIONS(2071), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2069), + }, + [1710] = { + [sym_comment] = STATE(1710), + [ts_builtin_sym_end] = ACTIONS(1703), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1703), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_DOT_DOT] = ACTIONS(1701), + [anon_sym_DOT] = ACTIONS(5030), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(5032), + [anon_sym_null] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1703), + [aux_sym__val_number_token5] = ACTIONS(1703), + [aux_sym__val_number_token6] = ACTIONS(1703), + [anon_sym_0b] = ACTIONS(1701), + [anon_sym_0o] = ACTIONS(1701), + [anon_sym_0x] = ACTIONS(1701), + [sym_val_date] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [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(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token1] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1703), + }, + [1711] = { + [sym_cmd_identifier] = STATE(4154), + [sym__command_name] = STATE(6254), + [sym_scope_pattern] = STATE(6255), + [sym_wild_card] = STATE(6256), + [sym_command_list] = STATE(6257), + [sym__val_number_decimal] = STATE(3741), + [sym_val_string] = STATE(4089), + [sym__raw_str] = STATE(3793), + [sym__str_double_quotes] = STATE(3793), + [sym_comment] = STATE(1711), + [aux_sym_cmd_identifier_token1] = ACTIONS(4980), + [aux_sym_cmd_identifier_token2] = ACTIONS(4982), + [aux_sym_cmd_identifier_token3] = ACTIONS(4982), + [aux_sym_cmd_identifier_token4] = ACTIONS(4982), + [aux_sym_cmd_identifier_token5] = ACTIONS(4982), + [aux_sym_cmd_identifier_token6] = ACTIONS(4982), + [aux_sym_cmd_identifier_token7] = ACTIONS(4982), + [aux_sym_cmd_identifier_token8] = ACTIONS(4982), + [aux_sym_cmd_identifier_token9] = ACTIONS(4980), + [aux_sym_cmd_identifier_token10] = ACTIONS(4982), + [aux_sym_cmd_identifier_token11] = ACTIONS(4982), + [aux_sym_cmd_identifier_token12] = ACTIONS(4982), + [aux_sym_cmd_identifier_token13] = ACTIONS(4980), + [aux_sym_cmd_identifier_token14] = ACTIONS(4982), + [aux_sym_cmd_identifier_token15] = ACTIONS(4980), + [aux_sym_cmd_identifier_token16] = ACTIONS(4982), + [aux_sym_cmd_identifier_token17] = ACTIONS(4982), + [aux_sym_cmd_identifier_token18] = ACTIONS(4982), + [aux_sym_cmd_identifier_token19] = ACTIONS(4982), + [aux_sym_cmd_identifier_token20] = ACTIONS(4982), + [aux_sym_cmd_identifier_token21] = ACTIONS(4982), + [aux_sym_cmd_identifier_token22] = ACTIONS(4982), + [aux_sym_cmd_identifier_token23] = ACTIONS(4982), + [aux_sym_cmd_identifier_token24] = ACTIONS(4982), + [aux_sym_cmd_identifier_token25] = ACTIONS(4982), + [aux_sym_cmd_identifier_token26] = ACTIONS(4982), + [aux_sym_cmd_identifier_token27] = ACTIONS(4982), + [aux_sym_cmd_identifier_token28] = ACTIONS(4982), + [aux_sym_cmd_identifier_token29] = ACTIONS(4982), + [aux_sym_cmd_identifier_token30] = ACTIONS(4982), + [aux_sym_cmd_identifier_token31] = ACTIONS(4982), + [aux_sym_cmd_identifier_token32] = ACTIONS(4982), + [aux_sym_cmd_identifier_token33] = ACTIONS(4982), + [aux_sym_cmd_identifier_token34] = ACTIONS(4980), + [aux_sym_cmd_identifier_token35] = ACTIONS(4982), + [aux_sym_cmd_identifier_token36] = ACTIONS(4982), + [aux_sym_cmd_identifier_token37] = ACTIONS(4982), + [aux_sym_cmd_identifier_token38] = ACTIONS(4980), + [aux_sym_cmd_identifier_token39] = ACTIONS(4982), + [aux_sym_cmd_identifier_token40] = ACTIONS(4982), + [sym__newline] = ACTIONS(5034), + [anon_sym_SEMI] = ACTIONS(5034), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_RPAREN] = ACTIONS(5034), + [anon_sym_RBRACE] = ACTIONS(5034), + [anon_sym_STAR2] = ACTIONS(4988), + [aux_sym__val_number_decimal_token1] = ACTIONS(4990), + [aux_sym__val_number_decimal_token2] = ACTIONS(4990), + [aux_sym__val_number_decimal_token3] = ACTIONS(4992), + [aux_sym__val_number_decimal_token4] = ACTIONS(4994), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym__str_single_quotes] = ACTIONS(1274), + [sym__str_back_ticks] = ACTIONS(1274), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1276), + }, + [1712] = { + [sym_comment] = STATE(1712), + [sym__newline] = ACTIONS(1695), + [anon_sym_SEMI] = ACTIONS(1695), + [anon_sym_PIPE] = ACTIONS(1695), + [anon_sym_err_GT_PIPE] = ACTIONS(1695), + [anon_sym_out_GT_PIPE] = ACTIONS(1695), + [anon_sym_e_GT_PIPE] = ACTIONS(1695), + [anon_sym_o_GT_PIPE] = ACTIONS(1695), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1695), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1695), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1695), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1695), + [anon_sym_RPAREN] = ACTIONS(1695), + [anon_sym_GT2] = ACTIONS(1693), + [anon_sym_DASH2] = ACTIONS(1695), + [anon_sym_in2] = ACTIONS(1695), + [anon_sym_RBRACE] = ACTIONS(1695), + [anon_sym_STAR2] = ACTIONS(1693), + [anon_sym_and2] = ACTIONS(1695), + [anon_sym_xor2] = ACTIONS(1695), + [anon_sym_or2] = ACTIONS(1695), + [anon_sym_not_DASHin2] = ACTIONS(1695), + [anon_sym_has2] = ACTIONS(1695), + [anon_sym_not_DASHhas2] = ACTIONS(1695), + [anon_sym_starts_DASHwith2] = ACTIONS(1695), + [anon_sym_ends_DASHwith2] = ACTIONS(1695), + [anon_sym_EQ_EQ2] = ACTIONS(1695), + [anon_sym_BANG_EQ2] = ACTIONS(1695), + [anon_sym_LT2] = ACTIONS(1693), + [anon_sym_LT_EQ2] = ACTIONS(1695), + [anon_sym_GT_EQ2] = ACTIONS(1695), + [anon_sym_EQ_TILDE2] = ACTIONS(1695), + [anon_sym_BANG_TILDE2] = ACTIONS(1695), + [anon_sym_LPAREN2] = ACTIONS(1695), + [anon_sym_STAR_STAR2] = ACTIONS(1695), + [anon_sym_PLUS_PLUS2] = ACTIONS(1695), + [anon_sym_SLASH2] = ACTIONS(1693), + [anon_sym_mod2] = ACTIONS(1695), + [anon_sym_SLASH_SLASH2] = ACTIONS(1695), + [anon_sym_PLUS2] = ACTIONS(1693), + [anon_sym_bit_DASHshl2] = ACTIONS(1695), + [anon_sym_bit_DASHshr2] = ACTIONS(1695), + [anon_sym_bit_DASHand2] = ACTIONS(1695), + [anon_sym_bit_DASHxor2] = ACTIONS(1695), + [anon_sym_bit_DASHor2] = ACTIONS(1695), + [aux_sym__immediate_decimal_token1] = ACTIONS(5036), + [aux_sym__immediate_decimal_token2] = ACTIONS(5038), + [anon_sym_err_GT] = ACTIONS(1693), + [anon_sym_out_GT] = ACTIONS(1693), + [anon_sym_e_GT] = ACTIONS(1693), + [anon_sym_o_GT] = ACTIONS(1693), + [anon_sym_err_PLUSout_GT] = ACTIONS(1693), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1693), + [anon_sym_o_PLUSe_GT] = ACTIONS(1693), + [anon_sym_e_PLUSo_GT] = ACTIONS(1693), + [anon_sym_err_GT_GT] = ACTIONS(1695), + [anon_sym_out_GT_GT] = ACTIONS(1695), + [anon_sym_e_GT_GT] = ACTIONS(1695), + [anon_sym_o_GT_GT] = ACTIONS(1695), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1695), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1695), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1695), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1695), + [aux_sym_unquoted_token2] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(247), + }, + [1713] = { + [sym__expr_parenthesized_immediate] = STATE(7383), + [sym_comment] = STATE(1713), + [sym__newline] = ACTIONS(4960), + [anon_sym_SEMI] = ACTIONS(4960), + [anon_sym_PIPE] = ACTIONS(4960), + [anon_sym_err_GT_PIPE] = ACTIONS(4960), + [anon_sym_out_GT_PIPE] = ACTIONS(4960), + [anon_sym_e_GT_PIPE] = ACTIONS(4960), + [anon_sym_o_GT_PIPE] = ACTIONS(4960), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4960), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4960), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4960), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4960), + [anon_sym_RPAREN] = ACTIONS(4960), + [anon_sym_GT2] = ACTIONS(4962), + [anon_sym_DASH2] = ACTIONS(4960), + [anon_sym_in2] = ACTIONS(4960), + [anon_sym_LBRACE] = ACTIONS(4960), + [anon_sym_RBRACE] = ACTIONS(4960), + [anon_sym_EQ_GT] = ACTIONS(4960), + [anon_sym_STAR2] = ACTIONS(4962), + [anon_sym_and2] = ACTIONS(4960), + [anon_sym_xor2] = ACTIONS(4960), + [anon_sym_or2] = ACTIONS(4960), + [anon_sym_not_DASHin2] = ACTIONS(4960), + [anon_sym_has2] = ACTIONS(4960), + [anon_sym_not_DASHhas2] = ACTIONS(4960), + [anon_sym_starts_DASHwith2] = ACTIONS(4960), + [anon_sym_ends_DASHwith2] = ACTIONS(4960), + [anon_sym_EQ_EQ2] = ACTIONS(4960), + [anon_sym_BANG_EQ2] = ACTIONS(4960), + [anon_sym_LT2] = ACTIONS(4962), + [anon_sym_LT_EQ2] = ACTIONS(4960), + [anon_sym_GT_EQ2] = ACTIONS(4960), + [anon_sym_EQ_TILDE2] = ACTIONS(4960), + [anon_sym_BANG_TILDE2] = ACTIONS(4960), + [anon_sym_LPAREN2] = ACTIONS(4452), + [anon_sym_STAR_STAR2] = ACTIONS(4960), + [anon_sym_PLUS_PLUS2] = ACTIONS(4960), + [anon_sym_SLASH2] = ACTIONS(4962), + [anon_sym_mod2] = ACTIONS(4960), + [anon_sym_SLASH_SLASH2] = ACTIONS(4960), + [anon_sym_PLUS2] = ACTIONS(4962), + [anon_sym_bit_DASHshl2] = ACTIONS(4960), + [anon_sym_bit_DASHshr2] = ACTIONS(4960), + [anon_sym_bit_DASHand2] = ACTIONS(4960), + [anon_sym_bit_DASHxor2] = ACTIONS(4960), + [anon_sym_bit_DASHor2] = ACTIONS(4960), + [anon_sym_err_GT] = ACTIONS(4962), + [anon_sym_out_GT] = ACTIONS(4962), + [anon_sym_e_GT] = ACTIONS(4962), + [anon_sym_o_GT] = ACTIONS(4962), + [anon_sym_err_PLUSout_GT] = ACTIONS(4962), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4962), + [anon_sym_o_PLUSe_GT] = ACTIONS(4962), + [anon_sym_e_PLUSo_GT] = ACTIONS(4962), + [anon_sym_err_GT_GT] = ACTIONS(4960), + [anon_sym_out_GT_GT] = ACTIONS(4960), + [anon_sym_e_GT_GT] = ACTIONS(4960), + [anon_sym_o_GT_GT] = ACTIONS(4960), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4960), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4960), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4960), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4960), + [anon_sym_POUND] = ACTIONS(247), + }, + [1714] = { + [sym_comment] = STATE(1714), + [sym__newline] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(998), + [anon_sym_err_GT_PIPE] = ACTIONS(998), + [anon_sym_out_GT_PIPE] = ACTIONS(998), + [anon_sym_e_GT_PIPE] = ACTIONS(998), + [anon_sym_o_GT_PIPE] = ACTIONS(998), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(998), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(998), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(998), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(998), + [anon_sym_RPAREN] = ACTIONS(998), + [anon_sym_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(998), + [anon_sym_in2] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_RBRACE] = ACTIONS(998), + [anon_sym_STAR2] = ACTIONS(1002), + [anon_sym_and2] = ACTIONS(998), + [anon_sym_xor2] = ACTIONS(998), + [anon_sym_or2] = ACTIONS(998), + [anon_sym_not_DASHin2] = ACTIONS(998), + [anon_sym_has2] = ACTIONS(998), + [anon_sym_not_DASHhas2] = ACTIONS(998), + [anon_sym_starts_DASHwith2] = ACTIONS(998), + [anon_sym_ends_DASHwith2] = ACTIONS(998), + [anon_sym_EQ_EQ2] = ACTIONS(998), + [anon_sym_BANG_EQ2] = ACTIONS(998), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ2] = ACTIONS(998), + [anon_sym_GT_EQ2] = ACTIONS(998), + [anon_sym_EQ_TILDE2] = ACTIONS(998), + [anon_sym_BANG_TILDE2] = ACTIONS(998), + [anon_sym_STAR_STAR2] = ACTIONS(998), + [anon_sym_PLUS_PLUS2] = ACTIONS(998), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(998), + [anon_sym_SLASH_SLASH2] = ACTIONS(998), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_bit_DASHshl2] = ACTIONS(998), + [anon_sym_bit_DASHshr2] = ACTIONS(998), + [anon_sym_bit_DASHand2] = ACTIONS(998), + [anon_sym_bit_DASHxor2] = ACTIONS(998), + [anon_sym_bit_DASHor2] = ACTIONS(998), + [anon_sym_DOT_DOT2] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [anon_sym_err_GT_GT] = ACTIONS(998), + [anon_sym_out_GT_GT] = ACTIONS(998), + [anon_sym_e_GT_GT] = ACTIONS(998), + [anon_sym_o_GT_GT] = ACTIONS(998), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(998), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(998), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(998), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(998), + [anon_sym_POUND] = ACTIONS(247), + }, + [1715] = { + [sym__expr_parenthesized_immediate] = STATE(7419), + [sym_comment] = STATE(1715), + [sym__newline] = ACTIONS(5040), + [anon_sym_SEMI] = ACTIONS(5040), + [anon_sym_PIPE] = ACTIONS(5040), + [anon_sym_err_GT_PIPE] = ACTIONS(5040), + [anon_sym_out_GT_PIPE] = ACTIONS(5040), + [anon_sym_e_GT_PIPE] = ACTIONS(5040), + [anon_sym_o_GT_PIPE] = ACTIONS(5040), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5040), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5040), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5040), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5040), + [anon_sym_LBRACK] = ACTIONS(5040), + [anon_sym_LPAREN] = ACTIONS(5042), + [anon_sym_RPAREN] = ACTIONS(5040), + [anon_sym_DOLLAR] = ACTIONS(5042), + [anon_sym_DASH_DASH] = ACTIONS(5040), + [anon_sym_DASH2] = ACTIONS(5042), + [anon_sym_LBRACE] = ACTIONS(5040), + [anon_sym_DOT_DOT] = ACTIONS(5042), + [anon_sym_LPAREN2] = ACTIONS(4452), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5040), + [anon_sym_DOT_DOT_LT] = ACTIONS(5040), + [anon_sym_null] = ACTIONS(5040), + [anon_sym_true] = ACTIONS(5040), + [anon_sym_false] = ACTIONS(5040), + [aux_sym__val_number_decimal_token1] = ACTIONS(5042), + [aux_sym__val_number_decimal_token2] = ACTIONS(5040), + [aux_sym__val_number_decimal_token3] = ACTIONS(5040), + [aux_sym__val_number_decimal_token4] = ACTIONS(5040), + [aux_sym__val_number_token1] = ACTIONS(5040), + [aux_sym__val_number_token2] = ACTIONS(5040), + [aux_sym__val_number_token3] = ACTIONS(5040), + [aux_sym__val_number_token4] = ACTIONS(5040), + [aux_sym__val_number_token5] = ACTIONS(5040), + [aux_sym__val_number_token6] = ACTIONS(5040), + [anon_sym_0b] = ACTIONS(5042), + [anon_sym_0o] = ACTIONS(5042), + [anon_sym_0x] = ACTIONS(5042), + [sym_val_date] = ACTIONS(5040), + [anon_sym_DQUOTE] = ACTIONS(5040), + [sym__str_single_quotes] = ACTIONS(5040), + [sym__str_back_ticks] = ACTIONS(5040), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5040), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5040), + [anon_sym_err_GT] = ACTIONS(5042), + [anon_sym_out_GT] = ACTIONS(5042), + [anon_sym_e_GT] = ACTIONS(5042), + [anon_sym_o_GT] = ACTIONS(5042), + [anon_sym_err_PLUSout_GT] = ACTIONS(5042), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5042), + [anon_sym_o_PLUSe_GT] = ACTIONS(5042), + [anon_sym_e_PLUSo_GT] = ACTIONS(5042), + [anon_sym_err_GT_GT] = ACTIONS(5040), + [anon_sym_out_GT_GT] = ACTIONS(5040), + [anon_sym_e_GT_GT] = ACTIONS(5040), + [anon_sym_o_GT_GT] = ACTIONS(5040), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5040), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5040), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5040), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5040), + [aux_sym_unquoted_token1] = ACTIONS(5042), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(5040), + }, + [1716] = { + [sym_comment] = STATE(1716), + [sym__newline] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_err_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_GT_PIPE] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1768), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_RPAREN] = ACTIONS(1768), + [anon_sym_DOLLAR] = ACTIONS(1766), + [anon_sym_DASH_DASH] = ACTIONS(1768), + [anon_sym_DASH2] = ACTIONS(1766), + [anon_sym_LBRACE] = ACTIONS(1768), + [anon_sym_RBRACE] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1766), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1768), + [anon_sym_DOT_DOT_LT] = ACTIONS(1768), + [aux_sym__immediate_decimal_token2] = ACTIONS(5044), + [anon_sym_null] = ACTIONS(1768), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [aux_sym__val_number_decimal_token1] = ACTIONS(1766), + [aux_sym__val_number_decimal_token2] = ACTIONS(1768), + [aux_sym__val_number_decimal_token3] = ACTIONS(1768), + [aux_sym__val_number_decimal_token4] = ACTIONS(1768), + [aux_sym__val_number_token1] = ACTIONS(1768), + [aux_sym__val_number_token2] = ACTIONS(1768), + [aux_sym__val_number_token3] = ACTIONS(1768), + [aux_sym__val_number_token4] = ACTIONS(1768), + [aux_sym__val_number_token5] = ACTIONS(1768), + [aux_sym__val_number_token6] = ACTIONS(1768), + [anon_sym_0b] = ACTIONS(1766), + [anon_sym_0o] = ACTIONS(1766), + [anon_sym_0x] = ACTIONS(1766), + [sym_val_date] = ACTIONS(1768), + [anon_sym_DQUOTE] = ACTIONS(1768), + [sym__str_single_quotes] = ACTIONS(1768), + [sym__str_back_ticks] = ACTIONS(1768), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1768), + [anon_sym_err_GT] = ACTIONS(1766), + [anon_sym_out_GT] = ACTIONS(1766), + [anon_sym_e_GT] = ACTIONS(1766), + [anon_sym_o_GT] = ACTIONS(1766), + [anon_sym_err_PLUSout_GT] = ACTIONS(1766), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1766), + [anon_sym_o_PLUSe_GT] = ACTIONS(1766), + [anon_sym_e_PLUSo_GT] = ACTIONS(1766), + [anon_sym_err_GT_GT] = ACTIONS(1768), + [anon_sym_out_GT_GT] = ACTIONS(1768), + [anon_sym_e_GT_GT] = ACTIONS(1768), + [anon_sym_o_GT_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1768), + [aux_sym_unquoted_token1] = ACTIONS(1766), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1768), + }, + [1717] = { + [sym__expr_parenthesized_immediate] = STATE(7383), + [sym_comment] = STATE(1717), + [sym__newline] = ACTIONS(4960), + [anon_sym_SEMI] = ACTIONS(4960), + [anon_sym_PIPE] = ACTIONS(4960), + [anon_sym_err_GT_PIPE] = ACTIONS(4960), + [anon_sym_out_GT_PIPE] = ACTIONS(4960), + [anon_sym_e_GT_PIPE] = ACTIONS(4960), + [anon_sym_o_GT_PIPE] = ACTIONS(4960), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4960), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4960), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4960), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4960), + [anon_sym_RPAREN] = ACTIONS(4960), + [anon_sym_GT2] = ACTIONS(4962), + [anon_sym_DASH2] = ACTIONS(4960), + [anon_sym_in2] = ACTIONS(4960), + [anon_sym_LBRACE] = ACTIONS(4960), + [anon_sym_RBRACE] = ACTIONS(4960), + [anon_sym_EQ_GT] = ACTIONS(4960), + [anon_sym_STAR2] = ACTIONS(4962), + [anon_sym_and2] = ACTIONS(4960), + [anon_sym_xor2] = ACTIONS(4960), + [anon_sym_or2] = ACTIONS(4960), + [anon_sym_not_DASHin2] = ACTIONS(4960), + [anon_sym_has2] = ACTIONS(4960), + [anon_sym_not_DASHhas2] = ACTIONS(4960), + [anon_sym_starts_DASHwith2] = ACTIONS(4960), + [anon_sym_ends_DASHwith2] = ACTIONS(4960), + [anon_sym_EQ_EQ2] = ACTIONS(4960), + [anon_sym_BANG_EQ2] = ACTIONS(4960), + [anon_sym_LT2] = ACTIONS(4962), + [anon_sym_LT_EQ2] = ACTIONS(4960), + [anon_sym_GT_EQ2] = ACTIONS(4960), + [anon_sym_EQ_TILDE2] = ACTIONS(4960), + [anon_sym_BANG_TILDE2] = ACTIONS(4960), + [anon_sym_LPAREN2] = ACTIONS(4452), + [anon_sym_STAR_STAR2] = ACTIONS(4960), + [anon_sym_PLUS_PLUS2] = ACTIONS(4960), + [anon_sym_SLASH2] = ACTIONS(4962), + [anon_sym_mod2] = ACTIONS(4960), + [anon_sym_SLASH_SLASH2] = ACTIONS(4960), + [anon_sym_PLUS2] = ACTIONS(4962), + [anon_sym_bit_DASHshl2] = ACTIONS(4960), + [anon_sym_bit_DASHshr2] = ACTIONS(4960), + [anon_sym_bit_DASHand2] = ACTIONS(4960), + [anon_sym_bit_DASHxor2] = ACTIONS(4960), + [anon_sym_bit_DASHor2] = ACTIONS(4960), + [anon_sym_err_GT] = ACTIONS(4962), + [anon_sym_out_GT] = ACTIONS(4962), + [anon_sym_e_GT] = ACTIONS(4962), + [anon_sym_o_GT] = ACTIONS(4962), + [anon_sym_err_PLUSout_GT] = ACTIONS(4962), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4962), + [anon_sym_o_PLUSe_GT] = ACTIONS(4962), + [anon_sym_e_PLUSo_GT] = ACTIONS(4962), + [anon_sym_err_GT_GT] = ACTIONS(4960), + [anon_sym_out_GT_GT] = ACTIONS(4960), + [anon_sym_e_GT_GT] = ACTIONS(4960), + [anon_sym_o_GT_GT] = ACTIONS(4960), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4960), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4960), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4960), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4960), + [anon_sym_POUND] = ACTIONS(247), + }, + [1718] = { + [sym_comment] = STATE(1718), + [ts_builtin_sym_end] = ACTIONS(1824), + [sym__newline] = ACTIONS(1824), + [anon_sym_SEMI] = ACTIONS(1824), + [anon_sym_PIPE] = ACTIONS(1824), + [anon_sym_err_GT_PIPE] = ACTIONS(1824), + [anon_sym_out_GT_PIPE] = ACTIONS(1824), + [anon_sym_e_GT_PIPE] = ACTIONS(1824), + [anon_sym_o_GT_PIPE] = ACTIONS(1824), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1824), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1824), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1824), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1824), + [anon_sym_GT2] = ACTIONS(1816), + [anon_sym_DASH2] = ACTIONS(1824), + [anon_sym_in2] = ACTIONS(1824), + [anon_sym_STAR2] = ACTIONS(1816), + [anon_sym_and2] = ACTIONS(1824), + [anon_sym_xor2] = ACTIONS(1824), + [anon_sym_or2] = ACTIONS(1824), + [anon_sym_not_DASHin2] = ACTIONS(1824), + [anon_sym_has2] = ACTIONS(1824), + [anon_sym_not_DASHhas2] = ACTIONS(1824), + [anon_sym_starts_DASHwith2] = ACTIONS(1824), + [anon_sym_ends_DASHwith2] = ACTIONS(1824), + [anon_sym_EQ_EQ2] = ACTIONS(1824), + [anon_sym_BANG_EQ2] = ACTIONS(1824), + [anon_sym_LT2] = ACTIONS(1816), + [anon_sym_LT_EQ2] = ACTIONS(1824), + [anon_sym_GT_EQ2] = ACTIONS(1824), + [anon_sym_EQ_TILDE2] = ACTIONS(1824), + [anon_sym_BANG_TILDE2] = ACTIONS(1824), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(1824), + [anon_sym_PLUS_PLUS2] = ACTIONS(1824), + [anon_sym_SLASH2] = ACTIONS(1816), + [anon_sym_mod2] = ACTIONS(1824), + [anon_sym_SLASH_SLASH2] = ACTIONS(1824), + [anon_sym_PLUS2] = ACTIONS(1816), + [anon_sym_bit_DASHshl2] = ACTIONS(1824), + [anon_sym_bit_DASHshr2] = ACTIONS(1824), + [anon_sym_bit_DASHand2] = ACTIONS(1824), + [anon_sym_bit_DASHxor2] = ACTIONS(1824), + [anon_sym_bit_DASHor2] = ACTIONS(1824), + [anon_sym_DOT_DOT2] = ACTIONS(5046), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(5048), + [anon_sym_DOT_DOT_LT2] = ACTIONS(5048), + [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(1824), + [anon_sym_out_GT_GT] = ACTIONS(1824), + [anon_sym_e_GT_GT] = ACTIONS(1824), + [anon_sym_o_GT_GT] = ACTIONS(1824), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1824), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1824), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1824), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1824), + [aux_sym_unquoted_token2] = ACTIONS(1826), + [anon_sym_POUND] = ACTIONS(247), + }, + [1719] = { + [sym_comment] = STATE(1719), + [sym__newline] = ACTIONS(5050), + [anon_sym_SEMI] = ACTIONS(5050), + [anon_sym_PIPE] = ACTIONS(5050), + [anon_sym_err_GT_PIPE] = ACTIONS(5050), + [anon_sym_out_GT_PIPE] = ACTIONS(5050), + [anon_sym_e_GT_PIPE] = ACTIONS(5050), + [anon_sym_o_GT_PIPE] = ACTIONS(5050), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5050), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5050), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5050), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5050), + [anon_sym_LBRACK] = ACTIONS(5050), + [anon_sym_LPAREN] = ACTIONS(5050), + [anon_sym_RPAREN] = ACTIONS(5050), + [anon_sym_DOLLAR] = ACTIONS(5052), + [anon_sym_DASH_DASH] = ACTIONS(5050), + [anon_sym_DASH2] = ACTIONS(5052), + [anon_sym_LBRACE] = ACTIONS(5050), + [anon_sym_RBRACE] = ACTIONS(5050), + [anon_sym_DOT_DOT] = ACTIONS(5052), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5050), + [anon_sym_DOT_DOT_LT] = ACTIONS(5050), + [anon_sym_null] = ACTIONS(5050), + [anon_sym_true] = ACTIONS(5050), + [anon_sym_false] = ACTIONS(5050), + [aux_sym__val_number_decimal_token1] = ACTIONS(5052), + [aux_sym__val_number_decimal_token2] = ACTIONS(5050), + [aux_sym__val_number_decimal_token3] = ACTIONS(5050), + [aux_sym__val_number_decimal_token4] = ACTIONS(5050), + [aux_sym__val_number_token1] = ACTIONS(5050), + [aux_sym__val_number_token2] = ACTIONS(5050), + [aux_sym__val_number_token3] = ACTIONS(5050), + [aux_sym__val_number_token4] = ACTIONS(5050), + [aux_sym__val_number_token5] = ACTIONS(5050), + [aux_sym__val_number_token6] = ACTIONS(5050), + [anon_sym_0b] = ACTIONS(5052), + [anon_sym_0o] = ACTIONS(5052), + [anon_sym_0x] = ACTIONS(5052), + [sym_val_date] = ACTIONS(5050), + [anon_sym_DQUOTE] = ACTIONS(5050), + [sym__str_single_quotes] = ACTIONS(5050), + [sym__str_back_ticks] = ACTIONS(5050), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5050), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5050), + [anon_sym_err_GT] = ACTIONS(5052), + [anon_sym_out_GT] = ACTIONS(5052), + [anon_sym_e_GT] = ACTIONS(5052), + [anon_sym_o_GT] = ACTIONS(5052), + [anon_sym_err_PLUSout_GT] = ACTIONS(5052), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5052), + [anon_sym_o_PLUSe_GT] = ACTIONS(5052), + [anon_sym_e_PLUSo_GT] = ACTIONS(5052), + [anon_sym_err_GT_GT] = ACTIONS(5050), + [anon_sym_out_GT_GT] = ACTIONS(5050), + [anon_sym_e_GT_GT] = ACTIONS(5050), + [anon_sym_o_GT_GT] = ACTIONS(5050), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5050), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5050), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5050), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5050), + [anon_sym_EQ2] = ACTIONS(5054), + [aux_sym_unquoted_token1] = ACTIONS(5052), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(5050), + }, + [1720] = { + [sym_comment] = STATE(1720), + [sym__newline] = ACTIONS(5056), + [anon_sym_SEMI] = ACTIONS(5056), + [anon_sym_PIPE] = ACTIONS(5056), + [anon_sym_err_GT_PIPE] = ACTIONS(5056), + [anon_sym_out_GT_PIPE] = ACTIONS(5056), + [anon_sym_e_GT_PIPE] = ACTIONS(5056), + [anon_sym_o_GT_PIPE] = ACTIONS(5056), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5056), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5056), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5056), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5056), + [anon_sym_LBRACK] = ACTIONS(5056), + [anon_sym_LPAREN] = ACTIONS(5058), + [anon_sym_RPAREN] = ACTIONS(5056), + [anon_sym_DOLLAR] = ACTIONS(5058), + [anon_sym_DASH_DASH] = ACTIONS(5056), + [anon_sym_DASH2] = ACTIONS(5058), + [anon_sym_LBRACE] = ACTIONS(5056), + [anon_sym_RBRACE] = ACTIONS(5056), + [anon_sym_DOT_DOT] = ACTIONS(5058), + [anon_sym_LPAREN2] = ACTIONS(5056), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5056), + [anon_sym_DOT_DOT_LT] = ACTIONS(5056), + [anon_sym_null] = ACTIONS(5056), + [anon_sym_true] = ACTIONS(5056), + [anon_sym_false] = ACTIONS(5056), + [aux_sym__val_number_decimal_token1] = ACTIONS(5058), + [aux_sym__val_number_decimal_token2] = ACTIONS(5056), + [aux_sym__val_number_decimal_token3] = ACTIONS(5056), + [aux_sym__val_number_decimal_token4] = ACTIONS(5056), + [aux_sym__val_number_token1] = ACTIONS(5056), + [aux_sym__val_number_token2] = ACTIONS(5056), + [aux_sym__val_number_token3] = ACTIONS(5056), + [aux_sym__val_number_token4] = ACTIONS(5056), + [aux_sym__val_number_token5] = ACTIONS(5056), + [aux_sym__val_number_token6] = ACTIONS(5056), + [anon_sym_0b] = ACTIONS(5058), + [anon_sym_0o] = ACTIONS(5058), + [anon_sym_0x] = ACTIONS(5058), + [sym_val_date] = ACTIONS(5056), + [anon_sym_DQUOTE] = ACTIONS(5056), + [sym__str_single_quotes] = ACTIONS(5056), + [sym__str_back_ticks] = ACTIONS(5056), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5056), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5056), + [anon_sym_err_GT] = ACTIONS(5058), + [anon_sym_out_GT] = ACTIONS(5058), + [anon_sym_e_GT] = ACTIONS(5058), + [anon_sym_o_GT] = ACTIONS(5058), + [anon_sym_err_PLUSout_GT] = ACTIONS(5058), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5058), + [anon_sym_o_PLUSe_GT] = ACTIONS(5058), + [anon_sym_e_PLUSo_GT] = ACTIONS(5058), + [anon_sym_err_GT_GT] = ACTIONS(5056), + [anon_sym_out_GT_GT] = ACTIONS(5056), + [anon_sym_e_GT_GT] = ACTIONS(5056), + [anon_sym_o_GT_GT] = ACTIONS(5056), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5056), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5056), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5056), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5056), + [aux_sym_unquoted_token1] = ACTIONS(5058), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(5056), + }, + [1721] = { + [sym_comment] = STATE(1721), + [ts_builtin_sym_end] = ACTIONS(2077), + [sym__newline] = ACTIONS(2077), + [anon_sym_SEMI] = ACTIONS(2077), + [anon_sym_PIPE] = ACTIONS(2077), + [anon_sym_err_GT_PIPE] = ACTIONS(2077), + [anon_sym_out_GT_PIPE] = ACTIONS(2077), + [anon_sym_e_GT_PIPE] = ACTIONS(2077), + [anon_sym_o_GT_PIPE] = ACTIONS(2077), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2077), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2077), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2077), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2077), + [anon_sym_LBRACK] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2073), + [anon_sym_DOLLAR] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(2073), + [anon_sym_DASH2] = ACTIONS(2073), + [anon_sym_LBRACE] = ACTIONS(2077), + [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), + [anon_sym_null] = ACTIONS(2073), + [anon_sym_true] = ACTIONS(2073), + [anon_sym_false] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2073), + [aux_sym__val_number_decimal_token2] = ACTIONS(2073), + [aux_sym__val_number_decimal_token3] = ACTIONS(2073), + [aux_sym__val_number_decimal_token4] = ACTIONS(2073), + [aux_sym__val_number_token1] = ACTIONS(2073), + [aux_sym__val_number_token2] = ACTIONS(2073), + [aux_sym__val_number_token3] = ACTIONS(2073), + [aux_sym__val_number_token4] = ACTIONS(2073), + [aux_sym__val_number_token5] = ACTIONS(2073), + [aux_sym__val_number_token6] = 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(2077), + [sym__str_single_quotes] = ACTIONS(2077), + [sym__str_back_ticks] = ACTIONS(2077), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2077), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2077), + [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_token4] = ACTIONS(2079), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2077), + }, + [1722] = { + [sym_comment] = STATE(1722), + [ts_builtin_sym_end] = ACTIONS(998), + [sym__newline] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(998), + [anon_sym_err_GT_PIPE] = ACTIONS(998), + [anon_sym_out_GT_PIPE] = ACTIONS(998), + [anon_sym_e_GT_PIPE] = ACTIONS(998), + [anon_sym_o_GT_PIPE] = ACTIONS(998), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(998), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(998), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(998), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(998), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_LPAREN2] = ACTIONS(2061), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_null] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym__val_number_decimal_token1] = ACTIONS(1002), + [aux_sym__val_number_decimal_token2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = ACTIONS(1002), + [aux_sym__val_number_decimal_token4] = ACTIONS(1002), + [aux_sym__val_number_token1] = ACTIONS(1002), + [aux_sym__val_number_token2] = ACTIONS(1002), + [aux_sym__val_number_token3] = ACTIONS(1002), + [aux_sym__val_number_token4] = ACTIONS(1002), + [aux_sym__val_number_token5] = ACTIONS(1002), + [aux_sym__val_number_token6] = ACTIONS(1002), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym__str_single_quotes] = ACTIONS(998), + [sym__str_back_ticks] = ACTIONS(998), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(998), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [anon_sym_err_GT_GT] = ACTIONS(1002), + [anon_sym_out_GT_GT] = ACTIONS(1002), + [anon_sym_e_GT_GT] = ACTIONS(1002), + [anon_sym_o_GT_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1002), + [aux_sym_unquoted_token1] = ACTIONS(1002), + [aux_sym_unquoted_token4] = ACTIONS(2063), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(998), + }, + [1723] = { + [sym__expr_parenthesized_immediate] = STATE(7383), + [sym_comment] = STATE(1723), + [sym__newline] = ACTIONS(4960), + [anon_sym_SEMI] = ACTIONS(4960), + [anon_sym_PIPE] = ACTIONS(4960), + [anon_sym_err_GT_PIPE] = ACTIONS(4960), + [anon_sym_out_GT_PIPE] = ACTIONS(4960), + [anon_sym_e_GT_PIPE] = ACTIONS(4960), + [anon_sym_o_GT_PIPE] = ACTIONS(4960), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4960), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4960), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4960), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4960), + [anon_sym_RPAREN] = ACTIONS(4960), + [anon_sym_GT2] = ACTIONS(4962), + [anon_sym_DASH2] = ACTIONS(4960), + [anon_sym_in2] = ACTIONS(4960), + [anon_sym_LBRACE] = ACTIONS(4960), + [anon_sym_RBRACE] = ACTIONS(4960), + [anon_sym_EQ_GT] = ACTIONS(4960), + [anon_sym_STAR2] = ACTIONS(4962), + [anon_sym_and2] = ACTIONS(4960), + [anon_sym_xor2] = ACTIONS(4960), + [anon_sym_or2] = ACTIONS(4960), + [anon_sym_not_DASHin2] = ACTIONS(4960), + [anon_sym_has2] = ACTIONS(4960), + [anon_sym_not_DASHhas2] = ACTIONS(4960), + [anon_sym_starts_DASHwith2] = ACTIONS(4960), + [anon_sym_ends_DASHwith2] = ACTIONS(4960), + [anon_sym_EQ_EQ2] = ACTIONS(4960), + [anon_sym_BANG_EQ2] = ACTIONS(4960), + [anon_sym_LT2] = ACTIONS(4962), + [anon_sym_LT_EQ2] = ACTIONS(4960), + [anon_sym_GT_EQ2] = ACTIONS(4960), + [anon_sym_EQ_TILDE2] = ACTIONS(4960), + [anon_sym_BANG_TILDE2] = ACTIONS(4960), + [anon_sym_LPAREN2] = ACTIONS(4452), + [anon_sym_STAR_STAR2] = ACTIONS(4960), + [anon_sym_PLUS_PLUS2] = ACTIONS(4960), + [anon_sym_SLASH2] = ACTIONS(4962), + [anon_sym_mod2] = ACTIONS(4960), + [anon_sym_SLASH_SLASH2] = ACTIONS(4960), + [anon_sym_PLUS2] = ACTIONS(4962), + [anon_sym_bit_DASHshl2] = ACTIONS(4960), + [anon_sym_bit_DASHshr2] = ACTIONS(4960), + [anon_sym_bit_DASHand2] = ACTIONS(4960), + [anon_sym_bit_DASHxor2] = ACTIONS(4960), + [anon_sym_bit_DASHor2] = ACTIONS(4960), + [anon_sym_err_GT] = ACTIONS(4962), + [anon_sym_out_GT] = ACTIONS(4962), + [anon_sym_e_GT] = ACTIONS(4962), + [anon_sym_o_GT] = ACTIONS(4962), + [anon_sym_err_PLUSout_GT] = ACTIONS(4962), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4962), + [anon_sym_o_PLUSe_GT] = ACTIONS(4962), + [anon_sym_e_PLUSo_GT] = ACTIONS(4962), + [anon_sym_err_GT_GT] = ACTIONS(4960), + [anon_sym_out_GT_GT] = ACTIONS(4960), + [anon_sym_e_GT_GT] = ACTIONS(4960), + [anon_sym_o_GT_GT] = ACTIONS(4960), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4960), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4960), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4960), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4960), + [anon_sym_POUND] = ACTIONS(247), + }, + [1724] = { + [sym_comment] = STATE(1724), + [sym__newline] = ACTIONS(5060), + [anon_sym_SEMI] = ACTIONS(5060), + [anon_sym_PIPE] = ACTIONS(5060), + [anon_sym_err_GT_PIPE] = ACTIONS(5060), + [anon_sym_out_GT_PIPE] = ACTIONS(5060), + [anon_sym_e_GT_PIPE] = ACTIONS(5060), + [anon_sym_o_GT_PIPE] = ACTIONS(5060), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5060), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5060), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5060), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5060), + [anon_sym_LBRACK] = ACTIONS(5060), + [anon_sym_LPAREN] = ACTIONS(5060), + [anon_sym_RPAREN] = ACTIONS(5060), + [anon_sym_DOLLAR] = ACTIONS(5062), + [anon_sym_DASH_DASH] = ACTIONS(5060), + [anon_sym_DASH2] = ACTIONS(5062), + [anon_sym_LBRACE] = ACTIONS(5060), + [anon_sym_RBRACE] = ACTIONS(5060), + [anon_sym_DOT_DOT] = ACTIONS(5062), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5060), + [anon_sym_DOT_DOT_LT] = ACTIONS(5060), + [anon_sym_null] = ACTIONS(5060), + [anon_sym_true] = ACTIONS(5060), + [anon_sym_false] = ACTIONS(5060), + [aux_sym__val_number_decimal_token1] = ACTIONS(5062), + [aux_sym__val_number_decimal_token2] = ACTIONS(5060), + [aux_sym__val_number_decimal_token3] = ACTIONS(5060), + [aux_sym__val_number_decimal_token4] = ACTIONS(5060), + [aux_sym__val_number_token1] = ACTIONS(5060), + [aux_sym__val_number_token2] = ACTIONS(5060), + [aux_sym__val_number_token3] = ACTIONS(5060), + [aux_sym__val_number_token4] = ACTIONS(5060), + [aux_sym__val_number_token5] = ACTIONS(5060), + [aux_sym__val_number_token6] = ACTIONS(5060), + [anon_sym_0b] = ACTIONS(5062), + [anon_sym_0o] = ACTIONS(5062), + [anon_sym_0x] = ACTIONS(5062), + [sym_val_date] = ACTIONS(5060), + [anon_sym_DQUOTE] = ACTIONS(5060), + [sym__str_single_quotes] = ACTIONS(5060), + [sym__str_back_ticks] = ACTIONS(5060), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5060), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5060), + [anon_sym_err_GT] = ACTIONS(5062), + [anon_sym_out_GT] = ACTIONS(5062), + [anon_sym_e_GT] = ACTIONS(5062), + [anon_sym_o_GT] = ACTIONS(5062), + [anon_sym_err_PLUSout_GT] = ACTIONS(5062), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5062), + [anon_sym_o_PLUSe_GT] = ACTIONS(5062), + [anon_sym_e_PLUSo_GT] = ACTIONS(5062), + [anon_sym_err_GT_GT] = ACTIONS(5060), + [anon_sym_out_GT_GT] = ACTIONS(5060), + [anon_sym_e_GT_GT] = ACTIONS(5060), + [anon_sym_o_GT_GT] = ACTIONS(5060), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5060), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5060), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5060), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5060), + [anon_sym_EQ2] = ACTIONS(5064), + [aux_sym_unquoted_token1] = ACTIONS(5062), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(5060), + }, + [1725] = { + [sym__expr_parenthesized_immediate] = STATE(7383), + [sym_comment] = STATE(1725), + [sym__newline] = ACTIONS(4960), + [anon_sym_SEMI] = ACTIONS(4960), + [anon_sym_PIPE] = ACTIONS(4960), + [anon_sym_err_GT_PIPE] = ACTIONS(4960), + [anon_sym_out_GT_PIPE] = ACTIONS(4960), + [anon_sym_e_GT_PIPE] = ACTIONS(4960), + [anon_sym_o_GT_PIPE] = ACTIONS(4960), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4960), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4960), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4960), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4960), + [anon_sym_RPAREN] = ACTIONS(4960), + [anon_sym_GT2] = ACTIONS(4962), + [anon_sym_DASH2] = ACTIONS(4960), + [anon_sym_in2] = ACTIONS(4960), + [anon_sym_LBRACE] = ACTIONS(4960), + [anon_sym_RBRACE] = ACTIONS(4960), + [anon_sym_EQ_GT] = ACTIONS(4960), + [anon_sym_STAR2] = ACTIONS(4962), + [anon_sym_and2] = ACTIONS(4960), + [anon_sym_xor2] = ACTIONS(4960), + [anon_sym_or2] = ACTIONS(4960), + [anon_sym_not_DASHin2] = ACTIONS(4960), + [anon_sym_has2] = ACTIONS(4960), + [anon_sym_not_DASHhas2] = ACTIONS(4960), + [anon_sym_starts_DASHwith2] = ACTIONS(4960), + [anon_sym_ends_DASHwith2] = ACTIONS(4960), + [anon_sym_EQ_EQ2] = ACTIONS(4960), + [anon_sym_BANG_EQ2] = ACTIONS(4960), + [anon_sym_LT2] = ACTIONS(4962), + [anon_sym_LT_EQ2] = ACTIONS(4960), + [anon_sym_GT_EQ2] = ACTIONS(4960), + [anon_sym_EQ_TILDE2] = ACTIONS(4960), + [anon_sym_BANG_TILDE2] = ACTIONS(4960), + [anon_sym_LPAREN2] = ACTIONS(4452), + [anon_sym_STAR_STAR2] = ACTIONS(4960), + [anon_sym_PLUS_PLUS2] = ACTIONS(4960), + [anon_sym_SLASH2] = ACTIONS(4962), + [anon_sym_mod2] = ACTIONS(4960), + [anon_sym_SLASH_SLASH2] = ACTIONS(4960), + [anon_sym_PLUS2] = ACTIONS(4962), + [anon_sym_bit_DASHshl2] = ACTIONS(4960), + [anon_sym_bit_DASHshr2] = ACTIONS(4960), + [anon_sym_bit_DASHand2] = ACTIONS(4960), + [anon_sym_bit_DASHxor2] = ACTIONS(4960), + [anon_sym_bit_DASHor2] = ACTIONS(4960), + [anon_sym_err_GT] = ACTIONS(4962), + [anon_sym_out_GT] = ACTIONS(4962), + [anon_sym_e_GT] = ACTIONS(4962), + [anon_sym_o_GT] = ACTIONS(4962), + [anon_sym_err_PLUSout_GT] = ACTIONS(4962), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4962), + [anon_sym_o_PLUSe_GT] = ACTIONS(4962), + [anon_sym_e_PLUSo_GT] = ACTIONS(4962), + [anon_sym_err_GT_GT] = ACTIONS(4960), + [anon_sym_out_GT_GT] = ACTIONS(4960), + [anon_sym_e_GT_GT] = ACTIONS(4960), + [anon_sym_o_GT_GT] = ACTIONS(4960), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4960), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4960), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4960), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4960), + [anon_sym_POUND] = ACTIONS(247), + }, + [1726] = { + [sym__expr_parenthesized_immediate] = STATE(7383), + [sym_comment] = STATE(1726), + [sym__newline] = ACTIONS(4960), + [anon_sym_SEMI] = ACTIONS(4960), + [anon_sym_PIPE] = ACTIONS(4960), + [anon_sym_err_GT_PIPE] = ACTIONS(4960), + [anon_sym_out_GT_PIPE] = ACTIONS(4960), + [anon_sym_e_GT_PIPE] = ACTIONS(4960), + [anon_sym_o_GT_PIPE] = ACTIONS(4960), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4960), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4960), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4960), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4960), + [anon_sym_RPAREN] = ACTIONS(4960), + [anon_sym_GT2] = ACTIONS(4962), + [anon_sym_DASH2] = ACTIONS(4960), + [anon_sym_in2] = ACTIONS(4960), + [anon_sym_LBRACE] = ACTIONS(4960), + [anon_sym_RBRACE] = ACTIONS(4960), + [anon_sym_EQ_GT] = ACTIONS(4960), + [anon_sym_STAR2] = ACTIONS(4962), + [anon_sym_and2] = ACTIONS(4960), + [anon_sym_xor2] = ACTIONS(4960), + [anon_sym_or2] = ACTIONS(4960), + [anon_sym_not_DASHin2] = ACTIONS(4960), + [anon_sym_has2] = ACTIONS(4960), + [anon_sym_not_DASHhas2] = ACTIONS(4960), + [anon_sym_starts_DASHwith2] = ACTIONS(4960), + [anon_sym_ends_DASHwith2] = ACTIONS(4960), + [anon_sym_EQ_EQ2] = ACTIONS(4960), + [anon_sym_BANG_EQ2] = ACTIONS(4960), + [anon_sym_LT2] = ACTIONS(4962), + [anon_sym_LT_EQ2] = ACTIONS(4960), + [anon_sym_GT_EQ2] = ACTIONS(4960), + [anon_sym_EQ_TILDE2] = ACTIONS(4960), + [anon_sym_BANG_TILDE2] = ACTIONS(4960), + [anon_sym_LPAREN2] = ACTIONS(4452), + [anon_sym_STAR_STAR2] = ACTIONS(4960), + [anon_sym_PLUS_PLUS2] = ACTIONS(4960), + [anon_sym_SLASH2] = ACTIONS(4962), + [anon_sym_mod2] = ACTIONS(4960), + [anon_sym_SLASH_SLASH2] = ACTIONS(4960), + [anon_sym_PLUS2] = ACTIONS(4962), + [anon_sym_bit_DASHshl2] = ACTIONS(4960), + [anon_sym_bit_DASHshr2] = ACTIONS(4960), + [anon_sym_bit_DASHand2] = ACTIONS(4960), + [anon_sym_bit_DASHxor2] = ACTIONS(4960), + [anon_sym_bit_DASHor2] = ACTIONS(4960), + [anon_sym_err_GT] = ACTIONS(4962), + [anon_sym_out_GT] = ACTIONS(4962), + [anon_sym_e_GT] = ACTIONS(4962), + [anon_sym_o_GT] = ACTIONS(4962), + [anon_sym_err_PLUSout_GT] = ACTIONS(4962), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4962), + [anon_sym_o_PLUSe_GT] = ACTIONS(4962), + [anon_sym_e_PLUSo_GT] = ACTIONS(4962), + [anon_sym_err_GT_GT] = ACTIONS(4960), + [anon_sym_out_GT_GT] = ACTIONS(4960), + [anon_sym_e_GT_GT] = ACTIONS(4960), + [anon_sym_o_GT_GT] = ACTIONS(4960), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4960), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4960), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4960), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4960), + [anon_sym_POUND] = ACTIONS(247), + }, + [1727] = { + [sym_comment] = STATE(1727), + [ts_builtin_sym_end] = ACTIONS(970), + [sym__newline] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(970), + [anon_sym_PIPE] = ACTIONS(970), + [anon_sym_err_GT_PIPE] = ACTIONS(970), + [anon_sym_out_GT_PIPE] = ACTIONS(970), + [anon_sym_e_GT_PIPE] = ACTIONS(970), + [anon_sym_o_GT_PIPE] = ACTIONS(970), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(970), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(970), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(970), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(970), + [anon_sym_GT2] = ACTIONS(968), + [anon_sym_DASH2] = ACTIONS(970), + [anon_sym_in2] = ACTIONS(970), + [anon_sym_STAR2] = ACTIONS(968), + [anon_sym_QMARK2] = ACTIONS(5066), + [anon_sym_and2] = ACTIONS(970), + [anon_sym_xor2] = ACTIONS(970), + [anon_sym_or2] = ACTIONS(970), + [anon_sym_not_DASHin2] = ACTIONS(970), + [anon_sym_has2] = ACTIONS(970), + [anon_sym_not_DASHhas2] = ACTIONS(970), + [anon_sym_starts_DASHwith2] = ACTIONS(970), + [anon_sym_ends_DASHwith2] = ACTIONS(970), + [anon_sym_EQ_EQ2] = ACTIONS(970), + [anon_sym_BANG_EQ2] = ACTIONS(970), + [anon_sym_LT2] = ACTIONS(968), + [anon_sym_LT_EQ2] = ACTIONS(970), + [anon_sym_GT_EQ2] = ACTIONS(970), + [anon_sym_EQ_TILDE2] = ACTIONS(970), + [anon_sym_BANG_TILDE2] = ACTIONS(970), + [anon_sym_STAR_STAR2] = ACTIONS(970), + [anon_sym_PLUS_PLUS2] = ACTIONS(970), + [anon_sym_SLASH2] = ACTIONS(968), + [anon_sym_mod2] = ACTIONS(970), + [anon_sym_SLASH_SLASH2] = ACTIONS(970), + [anon_sym_PLUS2] = ACTIONS(968), + [anon_sym_bit_DASHshl2] = ACTIONS(970), + [anon_sym_bit_DASHshr2] = ACTIONS(970), + [anon_sym_bit_DASHand2] = ACTIONS(970), + [anon_sym_bit_DASHxor2] = ACTIONS(970), + [anon_sym_bit_DASHor2] = ACTIONS(970), + [anon_sym_DOT_DOT2] = ACTIONS(968), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(970), + [anon_sym_DOT_DOT_LT2] = ACTIONS(970), + [anon_sym_DOT2] = ACTIONS(968), + [anon_sym_err_GT] = ACTIONS(968), + [anon_sym_out_GT] = ACTIONS(968), + [anon_sym_e_GT] = ACTIONS(968), + [anon_sym_o_GT] = ACTIONS(968), + [anon_sym_err_PLUSout_GT] = ACTIONS(968), + [anon_sym_out_PLUSerr_GT] = ACTIONS(968), + [anon_sym_o_PLUSe_GT] = ACTIONS(968), + [anon_sym_e_PLUSo_GT] = ACTIONS(968), + [anon_sym_err_GT_GT] = ACTIONS(970), + [anon_sym_out_GT_GT] = ACTIONS(970), + [anon_sym_e_GT_GT] = ACTIONS(970), + [anon_sym_o_GT_GT] = ACTIONS(970), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(970), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(970), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(970), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(970), + [anon_sym_POUND] = ACTIONS(247), + }, + [1728] = { + [sym_comment] = STATE(1728), + [ts_builtin_sym_end] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(2172), + [anon_sym_LPAREN] = ACTIONS(2168), + [anon_sym_DOLLAR] = ACTIONS(2168), + [anon_sym_DASH_DASH] = ACTIONS(2172), + [anon_sym_DASH2] = ACTIONS(2168), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_DOT_DOT] = ACTIONS(2168), + [anon_sym_LPAREN2] = ACTIONS(2170), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2172), + [anon_sym_DOT_DOT_LT] = ACTIONS(2172), + [anon_sym_null] = ACTIONS(2172), + [anon_sym_true] = ACTIONS(2172), + [anon_sym_false] = ACTIONS(2172), + [aux_sym__val_number_decimal_token1] = ACTIONS(2168), + [aux_sym__val_number_decimal_token2] = ACTIONS(2172), + [aux_sym__val_number_decimal_token3] = ACTIONS(2172), + [aux_sym__val_number_decimal_token4] = ACTIONS(2172), + [aux_sym__val_number_token1] = ACTIONS(2172), + [aux_sym__val_number_token2] = ACTIONS(2172), + [aux_sym__val_number_token3] = ACTIONS(2172), + [aux_sym__val_number_token4] = ACTIONS(2172), + [aux_sym__val_number_token5] = ACTIONS(2172), + [aux_sym__val_number_token6] = ACTIONS(2172), + [anon_sym_0b] = ACTIONS(2168), + [anon_sym_0o] = ACTIONS(2168), + [anon_sym_0x] = ACTIONS(2168), + [sym_val_date] = ACTIONS(2172), + [anon_sym_DQUOTE] = ACTIONS(2172), + [sym__str_single_quotes] = ACTIONS(2172), + [sym__str_back_ticks] = ACTIONS(2172), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2172), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2168), + [anon_sym_out_GT] = ACTIONS(2168), + [anon_sym_e_GT] = ACTIONS(2168), + [anon_sym_o_GT] = ACTIONS(2168), + [anon_sym_err_PLUSout_GT] = ACTIONS(2168), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2168), + [anon_sym_o_PLUSe_GT] = ACTIONS(2168), + [anon_sym_e_PLUSo_GT] = ACTIONS(2168), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), + [aux_sym_unquoted_token1] = ACTIONS(2168), + [aux_sym_unquoted_token2] = ACTIONS(1562), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2172), + }, + [1729] = { + [sym__expr_parenthesized_immediate] = STATE(7445), + [sym_comment] = STATE(1729), + [ts_builtin_sym_end] = ACTIONS(4926), + [sym__newline] = ACTIONS(4926), + [anon_sym_SEMI] = ACTIONS(4926), + [anon_sym_PIPE] = ACTIONS(4926), + [anon_sym_err_GT_PIPE] = ACTIONS(4926), + [anon_sym_out_GT_PIPE] = ACTIONS(4926), + [anon_sym_e_GT_PIPE] = ACTIONS(4926), + [anon_sym_o_GT_PIPE] = ACTIONS(4926), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4926), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4926), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4926), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4926), + [anon_sym_LBRACK] = ACTIONS(4926), + [anon_sym_LPAREN] = ACTIONS(4928), + [anon_sym_DOLLAR] = ACTIONS(4928), + [anon_sym_DASH_DASH] = ACTIONS(4926), + [anon_sym_DASH2] = ACTIONS(4928), + [anon_sym_LBRACE] = ACTIONS(4926), + [anon_sym_DOT_DOT] = ACTIONS(4928), + [anon_sym_LPAREN2] = ACTIONS(4452), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4926), + [anon_sym_DOT_DOT_LT] = ACTIONS(4926), + [anon_sym_null] = ACTIONS(4926), + [anon_sym_true] = ACTIONS(4926), + [anon_sym_false] = ACTIONS(4926), + [aux_sym__val_number_decimal_token1] = ACTIONS(4928), + [aux_sym__val_number_decimal_token2] = ACTIONS(4926), + [aux_sym__val_number_decimal_token3] = ACTIONS(4926), + [aux_sym__val_number_decimal_token4] = ACTIONS(4926), + [aux_sym__val_number_token1] = ACTIONS(4926), + [aux_sym__val_number_token2] = ACTIONS(4926), + [aux_sym__val_number_token3] = ACTIONS(4926), + [aux_sym__val_number_token4] = ACTIONS(4926), + [aux_sym__val_number_token5] = ACTIONS(4926), + [aux_sym__val_number_token6] = ACTIONS(4926), + [anon_sym_0b] = ACTIONS(4928), + [anon_sym_0o] = ACTIONS(4928), + [anon_sym_0x] = ACTIONS(4928), + [sym_val_date] = ACTIONS(4926), + [anon_sym_DQUOTE] = ACTIONS(4926), + [sym__str_single_quotes] = ACTIONS(4926), + [sym__str_back_ticks] = ACTIONS(4926), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4926), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4926), + [anon_sym_err_GT] = ACTIONS(4928), + [anon_sym_out_GT] = ACTIONS(4928), + [anon_sym_e_GT] = ACTIONS(4928), + [anon_sym_o_GT] = ACTIONS(4928), + [anon_sym_err_PLUSout_GT] = ACTIONS(4928), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4928), + [anon_sym_o_PLUSe_GT] = ACTIONS(4928), + [anon_sym_e_PLUSo_GT] = ACTIONS(4928), + [anon_sym_err_GT_GT] = ACTIONS(4926), + [anon_sym_out_GT_GT] = ACTIONS(4926), + [anon_sym_e_GT_GT] = ACTIONS(4926), + [anon_sym_o_GT_GT] = ACTIONS(4926), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4926), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4926), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4926), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4926), + [aux_sym_unquoted_token1] = ACTIONS(4928), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4926), + }, + [1730] = { + [sym_comment] = STATE(1730), + [sym__newline] = ACTIONS(2069), + [anon_sym_SEMI] = ACTIONS(2069), + [anon_sym_PIPE] = ACTIONS(2069), + [anon_sym_err_GT_PIPE] = ACTIONS(2069), + [anon_sym_out_GT_PIPE] = ACTIONS(2069), + [anon_sym_e_GT_PIPE] = ACTIONS(2069), + [anon_sym_o_GT_PIPE] = ACTIONS(2069), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2069), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2069), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2069), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2069), + [anon_sym_LBRACK] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2069), + [anon_sym_RPAREN] = ACTIONS(2069), + [anon_sym_DOLLAR] = ACTIONS(2065), + [anon_sym_DASH_DASH] = ACTIONS(2065), + [anon_sym_DASH2] = ACTIONS(2065), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_RBRACE] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(2065), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2065), + [anon_sym_DOT_DOT_LT] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2065), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [aux_sym__val_number_decimal_token1] = ACTIONS(2065), + [aux_sym__val_number_decimal_token2] = ACTIONS(2065), + [aux_sym__val_number_decimal_token3] = ACTIONS(2065), + [aux_sym__val_number_decimal_token4] = ACTIONS(2065), + [aux_sym__val_number_token1] = ACTIONS(2065), + [aux_sym__val_number_token2] = ACTIONS(2065), + [aux_sym__val_number_token3] = ACTIONS(2065), + [aux_sym__val_number_token4] = ACTIONS(2065), + [aux_sym__val_number_token5] = ACTIONS(2065), + [aux_sym__val_number_token6] = ACTIONS(2065), + [anon_sym_0b] = ACTIONS(2065), + [anon_sym_0o] = ACTIONS(2065), + [anon_sym_0x] = ACTIONS(2065), + [sym_val_date] = ACTIONS(2065), + [anon_sym_DQUOTE] = ACTIONS(2069), + [sym__str_single_quotes] = ACTIONS(2069), + [sym__str_back_ticks] = ACTIONS(2069), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2069), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2069), + [anon_sym_err_GT] = ACTIONS(2065), + [anon_sym_out_GT] = ACTIONS(2065), + [anon_sym_e_GT] = ACTIONS(2065), + [anon_sym_o_GT] = ACTIONS(2065), + [anon_sym_err_PLUSout_GT] = ACTIONS(2065), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2065), + [anon_sym_o_PLUSe_GT] = ACTIONS(2065), + [anon_sym_e_PLUSo_GT] = ACTIONS(2065), + [anon_sym_err_GT_GT] = ACTIONS(2065), + [anon_sym_out_GT_GT] = ACTIONS(2065), + [anon_sym_e_GT_GT] = ACTIONS(2065), + [anon_sym_o_GT_GT] = ACTIONS(2065), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2065), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2065), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2065), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2065), + [aux_sym_unquoted_token1] = ACTIONS(2065), + [aux_sym_unquoted_token4] = ACTIONS(2071), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2069), + }, + [1731] = { + [sym_comment] = STATE(1731), + [ts_builtin_sym_end] = ACTIONS(1695), + [sym__newline] = ACTIONS(1695), + [anon_sym_SEMI] = ACTIONS(1695), + [anon_sym_PIPE] = ACTIONS(1695), + [anon_sym_err_GT_PIPE] = ACTIONS(1695), + [anon_sym_out_GT_PIPE] = ACTIONS(1695), + [anon_sym_e_GT_PIPE] = ACTIONS(1695), + [anon_sym_o_GT_PIPE] = ACTIONS(1695), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1695), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1695), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1695), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1695), + [anon_sym_LBRACK] = ACTIONS(1695), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_DOLLAR] = ACTIONS(1693), + [anon_sym_DASH_DASH] = ACTIONS(1695), + [anon_sym_DASH2] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1695), + [anon_sym_DOT_DOT] = ACTIONS(1693), + [anon_sym_LPAREN2] = ACTIONS(1695), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1695), + [anon_sym_DOT_DOT_LT] = ACTIONS(1695), + [anon_sym_null] = ACTIONS(1695), + [anon_sym_true] = ACTIONS(1695), + [anon_sym_false] = ACTIONS(1695), + [aux_sym__val_number_decimal_token1] = ACTIONS(1693), + [aux_sym__val_number_decimal_token2] = ACTIONS(1695), + [aux_sym__val_number_decimal_token3] = ACTIONS(1695), + [aux_sym__val_number_decimal_token4] = ACTIONS(1695), + [aux_sym__val_number_token1] = ACTIONS(1695), + [aux_sym__val_number_token2] = ACTIONS(1695), + [aux_sym__val_number_token3] = ACTIONS(1695), + [aux_sym__val_number_token4] = ACTIONS(1695), + [aux_sym__val_number_token5] = ACTIONS(1695), + [aux_sym__val_number_token6] = ACTIONS(1695), + [anon_sym_0b] = ACTIONS(1693), + [anon_sym_0o] = ACTIONS(1693), + [anon_sym_0x] = ACTIONS(1693), + [sym_val_date] = ACTIONS(1695), + [anon_sym_DQUOTE] = ACTIONS(1695), + [sym__str_single_quotes] = ACTIONS(1695), + [sym__str_back_ticks] = ACTIONS(1695), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1695), + [anon_sym_err_GT] = ACTIONS(1693), + [anon_sym_out_GT] = ACTIONS(1693), + [anon_sym_e_GT] = ACTIONS(1693), + [anon_sym_o_GT] = ACTIONS(1693), + [anon_sym_err_PLUSout_GT] = ACTIONS(1693), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1693), + [anon_sym_o_PLUSe_GT] = ACTIONS(1693), + [anon_sym_e_PLUSo_GT] = ACTIONS(1693), + [anon_sym_err_GT_GT] = ACTIONS(1695), + [anon_sym_out_GT_GT] = ACTIONS(1695), + [anon_sym_e_GT_GT] = ACTIONS(1695), + [anon_sym_o_GT_GT] = ACTIONS(1695), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1695), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1695), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1695), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1695), + [aux_sym_unquoted_token1] = ACTIONS(1693), + [aux_sym_unquoted_token2] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1695), + }, + [1732] = { + [sym__expr_parenthesized_immediate] = STATE(7477), + [sym_comment] = STATE(1732), + [sym__newline] = ACTIONS(4887), + [anon_sym_SEMI] = ACTIONS(4887), + [anon_sym_PIPE] = ACTIONS(4887), + [anon_sym_err_GT_PIPE] = ACTIONS(4887), + [anon_sym_out_GT_PIPE] = ACTIONS(4887), + [anon_sym_e_GT_PIPE] = ACTIONS(4887), + [anon_sym_o_GT_PIPE] = ACTIONS(4887), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4887), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4887), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4887), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4887), + [anon_sym_RPAREN] = ACTIONS(4887), + [anon_sym_GT2] = ACTIONS(4889), + [anon_sym_DASH2] = ACTIONS(4887), + [anon_sym_in2] = ACTIONS(4887), + [anon_sym_LBRACE] = ACTIONS(4887), + [anon_sym_RBRACE] = ACTIONS(4887), + [anon_sym_EQ_GT] = ACTIONS(4887), + [anon_sym_STAR2] = ACTIONS(4889), + [anon_sym_and2] = ACTIONS(4887), + [anon_sym_xor2] = ACTIONS(4887), + [anon_sym_or2] = ACTIONS(4887), + [anon_sym_not_DASHin2] = ACTIONS(4887), + [anon_sym_has2] = ACTIONS(4887), + [anon_sym_not_DASHhas2] = ACTIONS(4887), + [anon_sym_starts_DASHwith2] = ACTIONS(4887), + [anon_sym_ends_DASHwith2] = ACTIONS(4887), + [anon_sym_EQ_EQ2] = ACTIONS(4887), + [anon_sym_BANG_EQ2] = ACTIONS(4887), + [anon_sym_LT2] = ACTIONS(4889), + [anon_sym_LT_EQ2] = ACTIONS(4887), + [anon_sym_GT_EQ2] = ACTIONS(4887), + [anon_sym_EQ_TILDE2] = ACTIONS(4887), + [anon_sym_BANG_TILDE2] = ACTIONS(4887), + [anon_sym_LPAREN2] = ACTIONS(4452), + [anon_sym_STAR_STAR2] = ACTIONS(4887), + [anon_sym_PLUS_PLUS2] = ACTIONS(4887), + [anon_sym_SLASH2] = ACTIONS(4889), + [anon_sym_mod2] = ACTIONS(4887), + [anon_sym_SLASH_SLASH2] = ACTIONS(4887), + [anon_sym_PLUS2] = ACTIONS(4889), + [anon_sym_bit_DASHshl2] = ACTIONS(4887), + [anon_sym_bit_DASHshr2] = ACTIONS(4887), + [anon_sym_bit_DASHand2] = ACTIONS(4887), + [anon_sym_bit_DASHxor2] = ACTIONS(4887), + [anon_sym_bit_DASHor2] = ACTIONS(4887), + [anon_sym_err_GT] = ACTIONS(4889), + [anon_sym_out_GT] = ACTIONS(4889), + [anon_sym_e_GT] = ACTIONS(4889), + [anon_sym_o_GT] = ACTIONS(4889), + [anon_sym_err_PLUSout_GT] = ACTIONS(4889), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4889), + [anon_sym_o_PLUSe_GT] = ACTIONS(4889), + [anon_sym_e_PLUSo_GT] = ACTIONS(4889), + [anon_sym_err_GT_GT] = ACTIONS(4887), + [anon_sym_out_GT_GT] = ACTIONS(4887), + [anon_sym_e_GT_GT] = ACTIONS(4887), + [anon_sym_o_GT_GT] = ACTIONS(4887), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4887), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4887), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4887), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4887), + [anon_sym_POUND] = ACTIONS(247), + }, + [1733] = { + [sym__expr_parenthesized_immediate] = STATE(7477), + [sym_comment] = STATE(1733), + [sym__newline] = ACTIONS(4891), + [anon_sym_SEMI] = ACTIONS(4891), + [anon_sym_PIPE] = ACTIONS(4891), + [anon_sym_err_GT_PIPE] = ACTIONS(4891), + [anon_sym_out_GT_PIPE] = ACTIONS(4891), + [anon_sym_e_GT_PIPE] = ACTIONS(4891), + [anon_sym_o_GT_PIPE] = ACTIONS(4891), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4891), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4891), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4891), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4891), + [anon_sym_RPAREN] = ACTIONS(4891), + [anon_sym_GT2] = ACTIONS(4893), + [anon_sym_DASH2] = ACTIONS(4891), + [anon_sym_in2] = ACTIONS(4891), + [anon_sym_LBRACE] = ACTIONS(4891), + [anon_sym_RBRACE] = ACTIONS(4891), + [anon_sym_EQ_GT] = ACTIONS(4891), + [anon_sym_STAR2] = ACTIONS(4893), + [anon_sym_and2] = ACTIONS(4891), + [anon_sym_xor2] = ACTIONS(4891), + [anon_sym_or2] = ACTIONS(4891), + [anon_sym_not_DASHin2] = ACTIONS(4891), + [anon_sym_has2] = ACTIONS(4891), + [anon_sym_not_DASHhas2] = ACTIONS(4891), + [anon_sym_starts_DASHwith2] = ACTIONS(4891), + [anon_sym_ends_DASHwith2] = ACTIONS(4891), + [anon_sym_EQ_EQ2] = ACTIONS(4891), + [anon_sym_BANG_EQ2] = ACTIONS(4891), + [anon_sym_LT2] = ACTIONS(4893), + [anon_sym_LT_EQ2] = ACTIONS(4891), + [anon_sym_GT_EQ2] = ACTIONS(4891), + [anon_sym_EQ_TILDE2] = ACTIONS(4891), + [anon_sym_BANG_TILDE2] = ACTIONS(4891), + [anon_sym_LPAREN2] = ACTIONS(4452), + [anon_sym_STAR_STAR2] = ACTIONS(4891), + [anon_sym_PLUS_PLUS2] = ACTIONS(4891), + [anon_sym_SLASH2] = ACTIONS(4893), + [anon_sym_mod2] = ACTIONS(4891), + [anon_sym_SLASH_SLASH2] = ACTIONS(4891), + [anon_sym_PLUS2] = ACTIONS(4893), + [anon_sym_bit_DASHshl2] = ACTIONS(4891), + [anon_sym_bit_DASHshr2] = ACTIONS(4891), + [anon_sym_bit_DASHand2] = ACTIONS(4891), + [anon_sym_bit_DASHxor2] = ACTIONS(4891), + [anon_sym_bit_DASHor2] = ACTIONS(4891), + [anon_sym_err_GT] = ACTIONS(4893), + [anon_sym_out_GT] = ACTIONS(4893), + [anon_sym_e_GT] = ACTIONS(4893), + [anon_sym_o_GT] = ACTIONS(4893), + [anon_sym_err_PLUSout_GT] = ACTIONS(4893), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4893), + [anon_sym_o_PLUSe_GT] = ACTIONS(4893), + [anon_sym_e_PLUSo_GT] = ACTIONS(4893), + [anon_sym_err_GT_GT] = ACTIONS(4891), + [anon_sym_out_GT_GT] = ACTIONS(4891), + [anon_sym_e_GT_GT] = ACTIONS(4891), + [anon_sym_o_GT_GT] = ACTIONS(4891), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4891), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4891), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4891), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4891), + [anon_sym_POUND] = ACTIONS(247), + }, + [1734] = { + [sym_comment] = STATE(1734), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_RPAREN] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1703), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_DOT_DOT] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(4920), + [anon_sym_null] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1703), + [aux_sym__val_number_token5] = ACTIONS(1703), + [aux_sym__val_number_token6] = ACTIONS(1703), + [anon_sym_0b] = ACTIONS(1701), + [anon_sym_0o] = ACTIONS(1701), + [anon_sym_0x] = ACTIONS(1701), + [sym_val_date] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [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(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token1] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1703), + }, + [1735] = { + [sym_comment] = STATE(1735), + [ts_builtin_sym_end] = ACTIONS(952), + [sym__newline] = ACTIONS(952), + [anon_sym_SEMI] = ACTIONS(952), + [anon_sym_PIPE] = ACTIONS(952), + [anon_sym_err_GT_PIPE] = ACTIONS(952), + [anon_sym_out_GT_PIPE] = ACTIONS(952), + [anon_sym_e_GT_PIPE] = ACTIONS(952), + [anon_sym_o_GT_PIPE] = ACTIONS(952), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(952), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(952), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(952), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(952), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(952), + [anon_sym_DOLLAR] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_DASH2] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(952), + [anon_sym_DOT_DOT] = ACTIONS(950), + [anon_sym_QMARK2] = ACTIONS(5068), + [anon_sym_DOT_DOT_EQ] = ACTIONS(952), + [anon_sym_DOT_DOT_LT] = ACTIONS(952), + [anon_sym_null] = ACTIONS(952), + [anon_sym_true] = ACTIONS(952), + [anon_sym_false] = ACTIONS(952), + [aux_sym__val_number_decimal_token1] = ACTIONS(950), + [aux_sym__val_number_decimal_token2] = ACTIONS(952), + [aux_sym__val_number_decimal_token3] = ACTIONS(952), + [aux_sym__val_number_decimal_token4] = ACTIONS(952), + [aux_sym__val_number_token1] = ACTIONS(952), + [aux_sym__val_number_token2] = ACTIONS(952), + [aux_sym__val_number_token3] = ACTIONS(952), + [aux_sym__val_number_token4] = ACTIONS(952), + [aux_sym__val_number_token5] = ACTIONS(952), + [aux_sym__val_number_token6] = ACTIONS(952), + [anon_sym_0b] = ACTIONS(950), + [anon_sym_0o] = ACTIONS(950), + [anon_sym_0x] = ACTIONS(950), + [sym_val_date] = ACTIONS(952), + [anon_sym_DQUOTE] = ACTIONS(952), + [sym__str_single_quotes] = ACTIONS(952), + [sym__str_back_ticks] = ACTIONS(952), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(952), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(952), + [anon_sym_DOT2] = ACTIONS(950), + [anon_sym_err_GT] = ACTIONS(950), + [anon_sym_out_GT] = ACTIONS(950), + [anon_sym_e_GT] = ACTIONS(950), + [anon_sym_o_GT] = ACTIONS(950), + [anon_sym_err_PLUSout_GT] = ACTIONS(950), + [anon_sym_out_PLUSerr_GT] = ACTIONS(950), + [anon_sym_o_PLUSe_GT] = ACTIONS(950), + [anon_sym_e_PLUSo_GT] = ACTIONS(950), + [anon_sym_err_GT_GT] = ACTIONS(952), + [anon_sym_out_GT_GT] = ACTIONS(952), + [anon_sym_e_GT_GT] = ACTIONS(952), + [anon_sym_o_GT_GT] = ACTIONS(952), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(952), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(952), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(952), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(952), + [aux_sym_unquoted_token1] = ACTIONS(950), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(952), + }, + [1736] = { + [sym_comment] = STATE(1736), + [ts_builtin_sym_end] = ACTIONS(970), + [sym__newline] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(970), + [anon_sym_PIPE] = ACTIONS(970), + [anon_sym_err_GT_PIPE] = ACTIONS(970), + [anon_sym_out_GT_PIPE] = ACTIONS(970), + [anon_sym_e_GT_PIPE] = ACTIONS(970), + [anon_sym_o_GT_PIPE] = ACTIONS(970), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(970), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(970), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(970), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(970), + [anon_sym_LPAREN] = ACTIONS(970), + [anon_sym_DOLLAR] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(970), + [anon_sym_DASH2] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(970), + [anon_sym_DOT_DOT] = ACTIONS(968), + [anon_sym_QMARK2] = ACTIONS(5070), + [anon_sym_DOT_DOT_EQ] = ACTIONS(970), + [anon_sym_DOT_DOT_LT] = ACTIONS(970), + [anon_sym_null] = ACTIONS(970), + [anon_sym_true] = ACTIONS(970), + [anon_sym_false] = ACTIONS(970), + [aux_sym__val_number_decimal_token1] = ACTIONS(968), + [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), + [aux_sym__val_number_token4] = ACTIONS(970), + [aux_sym__val_number_token5] = ACTIONS(970), + [aux_sym__val_number_token6] = ACTIONS(970), + [anon_sym_0b] = ACTIONS(968), + [anon_sym_0o] = ACTIONS(968), + [anon_sym_0x] = ACTIONS(968), + [sym_val_date] = ACTIONS(970), + [anon_sym_DQUOTE] = ACTIONS(970), + [sym__str_single_quotes] = ACTIONS(970), + [sym__str_back_ticks] = ACTIONS(970), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(970), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(970), + [anon_sym_DOT2] = ACTIONS(968), + [anon_sym_err_GT] = ACTIONS(968), + [anon_sym_out_GT] = ACTIONS(968), + [anon_sym_e_GT] = ACTIONS(968), + [anon_sym_o_GT] = ACTIONS(968), + [anon_sym_err_PLUSout_GT] = ACTIONS(968), + [anon_sym_out_PLUSerr_GT] = ACTIONS(968), + [anon_sym_o_PLUSe_GT] = ACTIONS(968), + [anon_sym_e_PLUSo_GT] = ACTIONS(968), + [anon_sym_err_GT_GT] = ACTIONS(970), + [anon_sym_out_GT_GT] = ACTIONS(970), + [anon_sym_e_GT_GT] = ACTIONS(970), + [anon_sym_o_GT_GT] = ACTIONS(970), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(970), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(970), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(970), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(970), + [aux_sym_unquoted_token1] = ACTIONS(968), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(970), + }, + [1737] = { + [sym_comment] = STATE(1737), + [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(2087), + [anon_sym_RPAREN] = ACTIONS(2087), + [anon_sym_DOLLAR] = ACTIONS(2085), + [anon_sym_DASH_DASH] = ACTIONS(2085), + [anon_sym_DASH2] = ACTIONS(2085), + [anon_sym_LBRACE] = ACTIONS(2087), + [anon_sym_RBRACE] = ACTIONS(2087), + [anon_sym_DOT_DOT] = ACTIONS(2085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [anon_sym_null] = ACTIONS(2085), + [anon_sym_true] = ACTIONS(2085), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(2085), + [aux_sym__val_number_token5] = ACTIONS(2085), + [aux_sym__val_number_token6] = ACTIONS(2085), + [anon_sym_0b] = ACTIONS(2085), + [anon_sym_0o] = ACTIONS(2085), + [anon_sym_0x] = ACTIONS(2085), + [sym_val_date] = ACTIONS(2085), + [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(2085), + [anon_sym_out_GT_GT] = ACTIONS(2085), + [anon_sym_e_GT_GT] = ACTIONS(2085), + [anon_sym_o_GT_GT] = ACTIONS(2085), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2085), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2085), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2085), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2085), + [aux_sym_unquoted_token1] = ACTIONS(2085), + [aux_sym_unquoted_token4] = ACTIONS(2085), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2087), + }, + [1738] = { + [sym_comment] = STATE(1738), + [sym__newline] = ACTIONS(2049), + [anon_sym_SEMI] = ACTIONS(2049), + [anon_sym_PIPE] = ACTIONS(2049), + [anon_sym_err_GT_PIPE] = ACTIONS(2049), + [anon_sym_out_GT_PIPE] = ACTIONS(2049), + [anon_sym_e_GT_PIPE] = ACTIONS(2049), + [anon_sym_o_GT_PIPE] = ACTIONS(2049), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2049), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2049), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2049), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2049), + [anon_sym_RPAREN] = ACTIONS(2049), + [anon_sym_GT2] = ACTIONS(2043), + [anon_sym_DASH2] = ACTIONS(2049), + [anon_sym_in2] = ACTIONS(2049), + [anon_sym_LBRACE] = ACTIONS(2049), + [anon_sym_RBRACE] = ACTIONS(2049), + [anon_sym_STAR2] = ACTIONS(2043), + [anon_sym_and2] = ACTIONS(2049), + [anon_sym_xor2] = ACTIONS(2049), + [anon_sym_or2] = ACTIONS(2049), + [anon_sym_not_DASHin2] = ACTIONS(2049), + [anon_sym_has2] = ACTIONS(2049), + [anon_sym_not_DASHhas2] = ACTIONS(2049), + [anon_sym_starts_DASHwith2] = ACTIONS(2049), + [anon_sym_ends_DASHwith2] = ACTIONS(2049), + [anon_sym_EQ_EQ2] = ACTIONS(2049), + [anon_sym_BANG_EQ2] = ACTIONS(2049), + [anon_sym_LT2] = ACTIONS(2043), + [anon_sym_LT_EQ2] = ACTIONS(2049), + [anon_sym_GT_EQ2] = ACTIONS(2049), + [anon_sym_EQ_TILDE2] = ACTIONS(2049), + [anon_sym_BANG_TILDE2] = ACTIONS(2049), + [anon_sym_STAR_STAR2] = ACTIONS(2049), + [anon_sym_PLUS_PLUS2] = ACTIONS(2049), + [anon_sym_SLASH2] = ACTIONS(2043), + [anon_sym_mod2] = ACTIONS(2049), + [anon_sym_SLASH_SLASH2] = ACTIONS(2049), + [anon_sym_PLUS2] = ACTIONS(2043), + [anon_sym_bit_DASHshl2] = ACTIONS(2049), + [anon_sym_bit_DASHshr2] = ACTIONS(2049), + [anon_sym_bit_DASHand2] = ACTIONS(2049), + [anon_sym_bit_DASHxor2] = ACTIONS(2049), + [anon_sym_bit_DASHor2] = ACTIONS(2049), + [anon_sym_DOT_DOT2] = ACTIONS(5072), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(5074), + [anon_sym_DOT_DOT_LT2] = ACTIONS(5074), + [anon_sym_err_GT] = ACTIONS(2043), + [anon_sym_out_GT] = ACTIONS(2043), + [anon_sym_e_GT] = ACTIONS(2043), + [anon_sym_o_GT] = ACTIONS(2043), + [anon_sym_err_PLUSout_GT] = ACTIONS(2043), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2043), + [anon_sym_o_PLUSe_GT] = ACTIONS(2043), + [anon_sym_e_PLUSo_GT] = ACTIONS(2043), + [anon_sym_err_GT_GT] = ACTIONS(2049), + [anon_sym_out_GT_GT] = ACTIONS(2049), + [anon_sym_e_GT_GT] = ACTIONS(2049), + [anon_sym_o_GT_GT] = ACTIONS(2049), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2049), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2049), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2049), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2049), + [anon_sym_POUND] = ACTIONS(247), + }, + [1739] = { + [sym_comment] = STATE(1739), + [ts_builtin_sym_end] = ACTIONS(1768), + [sym__newline] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_err_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_GT_PIPE] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1768), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_LPAREN] = ACTIONS(1766), + [anon_sym_DOLLAR] = ACTIONS(1766), + [anon_sym_DASH_DASH] = ACTIONS(1768), + [anon_sym_DASH2] = ACTIONS(1766), + [anon_sym_LBRACE] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1766), + [anon_sym_LPAREN2] = ACTIONS(1768), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1768), + [anon_sym_DOT_DOT_LT] = ACTIONS(1768), + [anon_sym_null] = ACTIONS(1768), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [aux_sym__val_number_decimal_token1] = ACTIONS(1766), + [aux_sym__val_number_decimal_token2] = ACTIONS(1768), + [aux_sym__val_number_decimal_token3] = ACTIONS(1768), + [aux_sym__val_number_decimal_token4] = ACTIONS(1768), + [aux_sym__val_number_token1] = ACTIONS(1768), + [aux_sym__val_number_token2] = ACTIONS(1768), + [aux_sym__val_number_token3] = ACTIONS(1768), + [aux_sym__val_number_token4] = ACTIONS(1768), + [aux_sym__val_number_token5] = ACTIONS(1768), + [aux_sym__val_number_token6] = ACTIONS(1768), + [anon_sym_0b] = ACTIONS(1766), + [anon_sym_0o] = ACTIONS(1766), + [anon_sym_0x] = ACTIONS(1766), + [sym_val_date] = ACTIONS(1768), + [anon_sym_DQUOTE] = ACTIONS(1768), + [sym__str_single_quotes] = ACTIONS(1768), + [sym__str_back_ticks] = ACTIONS(1768), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1768), + [anon_sym_err_GT] = ACTIONS(1766), + [anon_sym_out_GT] = ACTIONS(1766), + [anon_sym_e_GT] = ACTIONS(1766), + [anon_sym_o_GT] = ACTIONS(1766), + [anon_sym_err_PLUSout_GT] = ACTIONS(1766), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1766), + [anon_sym_o_PLUSe_GT] = ACTIONS(1766), + [anon_sym_e_PLUSo_GT] = ACTIONS(1766), + [anon_sym_err_GT_GT] = ACTIONS(1768), + [anon_sym_out_GT_GT] = ACTIONS(1768), + [anon_sym_e_GT_GT] = ACTIONS(1768), + [anon_sym_o_GT_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1768), + [aux_sym_unquoted_token1] = ACTIONS(1766), + [aux_sym_unquoted_token2] = ACTIONS(1766), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1768), + }, + [1740] = { + [sym_comment] = STATE(1740), + [ts_builtin_sym_end] = ACTIONS(958), + [sym__newline] = ACTIONS(958), + [anon_sym_SEMI] = ACTIONS(958), + [anon_sym_PIPE] = ACTIONS(958), + [anon_sym_err_GT_PIPE] = ACTIONS(958), + [anon_sym_out_GT_PIPE] = ACTIONS(958), + [anon_sym_e_GT_PIPE] = ACTIONS(958), + [anon_sym_o_GT_PIPE] = ACTIONS(958), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(958), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(958), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(958), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(958), + [anon_sym_LBRACK] = ACTIONS(958), + [anon_sym_LPAREN] = ACTIONS(958), + [anon_sym_DOLLAR] = ACTIONS(956), + [anon_sym_DASH_DASH] = ACTIONS(958), + [anon_sym_DASH2] = ACTIONS(956), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_DOT_DOT] = ACTIONS(956), + [anon_sym_QMARK2] = ACTIONS(958), + [anon_sym_DOT_DOT_EQ] = ACTIONS(958), + [anon_sym_DOT_DOT_LT] = ACTIONS(958), + [anon_sym_null] = ACTIONS(958), + [anon_sym_true] = ACTIONS(958), + [anon_sym_false] = ACTIONS(958), + [aux_sym__val_number_decimal_token1] = ACTIONS(956), + [aux_sym__val_number_decimal_token2] = ACTIONS(958), + [aux_sym__val_number_decimal_token3] = ACTIONS(958), + [aux_sym__val_number_decimal_token4] = ACTIONS(958), + [aux_sym__val_number_token1] = ACTIONS(958), + [aux_sym__val_number_token2] = ACTIONS(958), + [aux_sym__val_number_token3] = ACTIONS(958), + [aux_sym__val_number_token4] = ACTIONS(958), + [aux_sym__val_number_token5] = ACTIONS(958), + [aux_sym__val_number_token6] = ACTIONS(958), + [anon_sym_0b] = ACTIONS(956), + [anon_sym_0o] = ACTIONS(956), + [anon_sym_0x] = ACTIONS(956), + [sym_val_date] = ACTIONS(958), + [anon_sym_DQUOTE] = ACTIONS(958), + [sym__str_single_quotes] = ACTIONS(958), + [sym__str_back_ticks] = ACTIONS(958), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(958), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(958), + [anon_sym_DOT2] = ACTIONS(956), + [anon_sym_err_GT] = ACTIONS(956), + [anon_sym_out_GT] = ACTIONS(956), + [anon_sym_e_GT] = ACTIONS(956), + [anon_sym_o_GT] = ACTIONS(956), + [anon_sym_err_PLUSout_GT] = ACTIONS(956), + [anon_sym_out_PLUSerr_GT] = ACTIONS(956), + [anon_sym_o_PLUSe_GT] = ACTIONS(956), + [anon_sym_e_PLUSo_GT] = ACTIONS(956), + [anon_sym_err_GT_GT] = ACTIONS(958), + [anon_sym_out_GT_GT] = ACTIONS(958), + [anon_sym_e_GT_GT] = ACTIONS(958), + [anon_sym_o_GT_GT] = ACTIONS(958), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(958), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(958), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(958), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(958), + [aux_sym_unquoted_token1] = ACTIONS(956), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(958), + }, + [1741] = { + [sym_comment] = STATE(1741), + [ts_builtin_sym_end] = ACTIONS(2194), + [sym__newline] = ACTIONS(2194), + [anon_sym_SEMI] = ACTIONS(2194), + [anon_sym_PIPE] = ACTIONS(2194), + [anon_sym_err_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_GT_PIPE] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2194), + [anon_sym_LPAREN] = ACTIONS(2190), + [anon_sym_DOLLAR] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(2194), + [anon_sym_DASH2] = ACTIONS(2190), + [anon_sym_LBRACE] = ACTIONS(2194), + [anon_sym_DOT_DOT] = ACTIONS(2190), + [anon_sym_LPAREN2] = ACTIONS(2192), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2194), + [anon_sym_DOT_DOT_LT] = ACTIONS(2194), + [anon_sym_null] = ACTIONS(2194), + [anon_sym_true] = ACTIONS(2194), + [anon_sym_false] = ACTIONS(2194), + [aux_sym__val_number_decimal_token1] = ACTIONS(2190), + [aux_sym__val_number_decimal_token2] = ACTIONS(2194), + [aux_sym__val_number_decimal_token3] = ACTIONS(2194), + [aux_sym__val_number_decimal_token4] = ACTIONS(2194), + [aux_sym__val_number_token1] = ACTIONS(2194), + [aux_sym__val_number_token2] = ACTIONS(2194), + [aux_sym__val_number_token3] = ACTIONS(2194), + [aux_sym__val_number_token4] = ACTIONS(2194), + [aux_sym__val_number_token5] = ACTIONS(2194), + [aux_sym__val_number_token6] = ACTIONS(2194), + [anon_sym_0b] = ACTIONS(2190), + [anon_sym_0o] = ACTIONS(2190), + [anon_sym_0x] = ACTIONS(2190), + [sym_val_date] = ACTIONS(2194), + [anon_sym_DQUOTE] = ACTIONS(2194), + [sym__str_single_quotes] = ACTIONS(2194), + [sym__str_back_ticks] = ACTIONS(2194), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2194), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2194), + [anon_sym_err_GT] = ACTIONS(2190), + [anon_sym_out_GT] = ACTIONS(2190), + [anon_sym_e_GT] = ACTIONS(2190), + [anon_sym_o_GT] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT] = ACTIONS(2190), + [anon_sym_err_GT_GT] = ACTIONS(2194), + [anon_sym_out_GT_GT] = ACTIONS(2194), + [anon_sym_e_GT_GT] = ACTIONS(2194), + [anon_sym_o_GT_GT] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2194), + [aux_sym_unquoted_token1] = ACTIONS(2190), + [aux_sym_unquoted_token2] = ACTIONS(2196), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2194), + }, + [1742] = { + [sym__expr_parenthesized_immediate] = STATE(7477), + [sym_comment] = STATE(1742), + [sym__newline] = ACTIONS(4895), + [anon_sym_SEMI] = ACTIONS(4895), + [anon_sym_PIPE] = ACTIONS(4895), + [anon_sym_err_GT_PIPE] = ACTIONS(4895), + [anon_sym_out_GT_PIPE] = ACTIONS(4895), + [anon_sym_e_GT_PIPE] = ACTIONS(4895), + [anon_sym_o_GT_PIPE] = ACTIONS(4895), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4895), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4895), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4895), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4895), + [anon_sym_RPAREN] = ACTIONS(4895), + [anon_sym_GT2] = ACTIONS(4897), + [anon_sym_DASH2] = ACTIONS(4895), + [anon_sym_in2] = ACTIONS(4895), + [anon_sym_LBRACE] = ACTIONS(4895), + [anon_sym_RBRACE] = ACTIONS(4895), + [anon_sym_EQ_GT] = ACTIONS(4895), + [anon_sym_STAR2] = ACTIONS(4897), + [anon_sym_and2] = ACTIONS(4895), + [anon_sym_xor2] = ACTIONS(4895), + [anon_sym_or2] = ACTIONS(4895), + [anon_sym_not_DASHin2] = ACTIONS(4895), + [anon_sym_has2] = ACTIONS(4895), + [anon_sym_not_DASHhas2] = ACTIONS(4895), + [anon_sym_starts_DASHwith2] = ACTIONS(4895), + [anon_sym_ends_DASHwith2] = ACTIONS(4895), + [anon_sym_EQ_EQ2] = ACTIONS(4895), + [anon_sym_BANG_EQ2] = ACTIONS(4895), + [anon_sym_LT2] = ACTIONS(4897), + [anon_sym_LT_EQ2] = ACTIONS(4895), + [anon_sym_GT_EQ2] = ACTIONS(4895), + [anon_sym_EQ_TILDE2] = ACTIONS(4895), + [anon_sym_BANG_TILDE2] = ACTIONS(4895), + [anon_sym_LPAREN2] = ACTIONS(4452), + [anon_sym_STAR_STAR2] = ACTIONS(4895), + [anon_sym_PLUS_PLUS2] = ACTIONS(4895), + [anon_sym_SLASH2] = ACTIONS(4897), + [anon_sym_mod2] = ACTIONS(4895), + [anon_sym_SLASH_SLASH2] = ACTIONS(4895), + [anon_sym_PLUS2] = ACTIONS(4897), + [anon_sym_bit_DASHshl2] = ACTIONS(4895), + [anon_sym_bit_DASHshr2] = ACTIONS(4895), + [anon_sym_bit_DASHand2] = ACTIONS(4895), + [anon_sym_bit_DASHxor2] = ACTIONS(4895), + [anon_sym_bit_DASHor2] = ACTIONS(4895), + [anon_sym_err_GT] = ACTIONS(4897), + [anon_sym_out_GT] = ACTIONS(4897), + [anon_sym_e_GT] = ACTIONS(4897), + [anon_sym_o_GT] = ACTIONS(4897), + [anon_sym_err_PLUSout_GT] = ACTIONS(4897), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4897), + [anon_sym_o_PLUSe_GT] = ACTIONS(4897), + [anon_sym_e_PLUSo_GT] = ACTIONS(4897), + [anon_sym_err_GT_GT] = ACTIONS(4895), + [anon_sym_out_GT_GT] = ACTIONS(4895), + [anon_sym_e_GT_GT] = ACTIONS(4895), + [anon_sym_o_GT_GT] = ACTIONS(4895), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4895), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4895), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4895), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4895), + [anon_sym_POUND] = ACTIONS(247), + }, + [1743] = { + [sym_cmd_identifier] = STATE(4154), + [sym__command_name] = STATE(6254), + [sym_scope_pattern] = STATE(6563), + [sym_wild_card] = STATE(6256), + [sym_command_list] = STATE(6257), + [sym__val_number_decimal] = STATE(3741), + [sym_val_string] = STATE(4089), + [sym__raw_str] = STATE(3793), + [sym__str_double_quotes] = STATE(3793), + [sym_comment] = STATE(1743), + [aux_sym_cmd_identifier_token1] = ACTIONS(4980), + [aux_sym_cmd_identifier_token2] = ACTIONS(4982), + [aux_sym_cmd_identifier_token3] = ACTIONS(4982), + [aux_sym_cmd_identifier_token4] = ACTIONS(4982), + [aux_sym_cmd_identifier_token5] = ACTIONS(4982), + [aux_sym_cmd_identifier_token6] = ACTIONS(4982), + [aux_sym_cmd_identifier_token7] = ACTIONS(4982), + [aux_sym_cmd_identifier_token8] = ACTIONS(4982), + [aux_sym_cmd_identifier_token9] = ACTIONS(4980), + [aux_sym_cmd_identifier_token10] = ACTIONS(4982), + [aux_sym_cmd_identifier_token11] = ACTIONS(4982), + [aux_sym_cmd_identifier_token12] = ACTIONS(4982), + [aux_sym_cmd_identifier_token13] = ACTIONS(4980), + [aux_sym_cmd_identifier_token14] = ACTIONS(4982), + [aux_sym_cmd_identifier_token15] = ACTIONS(4980), + [aux_sym_cmd_identifier_token16] = ACTIONS(4982), + [aux_sym_cmd_identifier_token17] = ACTIONS(4982), + [aux_sym_cmd_identifier_token18] = ACTIONS(4982), + [aux_sym_cmd_identifier_token19] = ACTIONS(4982), + [aux_sym_cmd_identifier_token20] = ACTIONS(4982), + [aux_sym_cmd_identifier_token21] = ACTIONS(4982), + [aux_sym_cmd_identifier_token22] = ACTIONS(4982), + [aux_sym_cmd_identifier_token23] = ACTIONS(4982), + [aux_sym_cmd_identifier_token24] = ACTIONS(4982), + [aux_sym_cmd_identifier_token25] = ACTIONS(4982), + [aux_sym_cmd_identifier_token26] = ACTIONS(4982), + [aux_sym_cmd_identifier_token27] = ACTIONS(4982), + [aux_sym_cmd_identifier_token28] = ACTIONS(4982), + [aux_sym_cmd_identifier_token29] = ACTIONS(4982), + [aux_sym_cmd_identifier_token30] = ACTIONS(4982), + [aux_sym_cmd_identifier_token31] = ACTIONS(4982), + [aux_sym_cmd_identifier_token32] = ACTIONS(4982), + [aux_sym_cmd_identifier_token33] = ACTIONS(4982), + [aux_sym_cmd_identifier_token34] = ACTIONS(4980), + [aux_sym_cmd_identifier_token35] = ACTIONS(4982), + [aux_sym_cmd_identifier_token36] = ACTIONS(4982), + [aux_sym_cmd_identifier_token37] = ACTIONS(4982), + [aux_sym_cmd_identifier_token38] = ACTIONS(4980), + [aux_sym_cmd_identifier_token39] = ACTIONS(4982), + [aux_sym_cmd_identifier_token40] = ACTIONS(4982), + [sym__newline] = ACTIONS(5076), + [anon_sym_SEMI] = ACTIONS(5076), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_RPAREN] = ACTIONS(5076), + [anon_sym_RBRACE] = ACTIONS(5076), + [anon_sym_STAR2] = ACTIONS(4988), + [aux_sym__val_number_decimal_token1] = ACTIONS(4990), + [aux_sym__val_number_decimal_token2] = ACTIONS(4990), + [aux_sym__val_number_decimal_token3] = ACTIONS(4992), + [aux_sym__val_number_decimal_token4] = ACTIONS(4994), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym__str_single_quotes] = ACTIONS(1274), + [sym__str_back_ticks] = ACTIONS(1274), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1276), + }, + [1744] = { + [sym_comment] = STATE(1744), + [ts_builtin_sym_end] = 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(1792), + [anon_sym_DOLLAR] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1794), + [anon_sym_DASH2] = ACTIONS(1792), + [anon_sym_LBRACE] = ACTIONS(1794), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_LPAREN2] = ACTIONS(1794), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1794), + [anon_sym_DOT_DOT_LT] = ACTIONS(1794), + [anon_sym_null] = ACTIONS(1794), + [anon_sym_true] = ACTIONS(1794), + [anon_sym_false] = ACTIONS(1794), + [aux_sym__val_number_decimal_token1] = ACTIONS(1792), + [aux_sym__val_number_decimal_token2] = ACTIONS(1794), + [aux_sym__val_number_decimal_token3] = ACTIONS(1794), + [aux_sym__val_number_decimal_token4] = ACTIONS(1794), + [aux_sym__val_number_token1] = ACTIONS(1794), + [aux_sym__val_number_token2] = ACTIONS(1794), + [aux_sym__val_number_token3] = ACTIONS(1794), + [aux_sym__val_number_token4] = ACTIONS(1794), + [aux_sym__val_number_token5] = ACTIONS(1794), + [aux_sym__val_number_token6] = 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), + [aux_sym_unquoted_token2] = ACTIONS(1792), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1794), + }, + [1745] = { + [sym_comment] = STATE(1745), + [sym__newline] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym_PIPE] = ACTIONS(2296), + [anon_sym_err_GT_PIPE] = ACTIONS(2296), + [anon_sym_out_GT_PIPE] = ACTIONS(2296), + [anon_sym_e_GT_PIPE] = ACTIONS(2296), + [anon_sym_o_GT_PIPE] = ACTIONS(2296), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2296), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2296), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2296), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2296), + [anon_sym_LBRACK] = ACTIONS(2292), + [anon_sym_LPAREN] = ACTIONS(2296), + [anon_sym_RPAREN] = ACTIONS(2296), + [anon_sym_DOLLAR] = ACTIONS(2292), + [anon_sym_DASH_DASH] = ACTIONS(2296), + [anon_sym_DASH2] = ACTIONS(2292), + [anon_sym_LBRACE] = ACTIONS(2296), + [anon_sym_RBRACE] = ACTIONS(2296), + [anon_sym_DOT_DOT] = ACTIONS(2292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2296), + [anon_sym_DOT_DOT_LT] = ACTIONS(2296), + [anon_sym_null] = ACTIONS(2296), + [anon_sym_true] = ACTIONS(2296), + [anon_sym_false] = ACTIONS(2296), + [aux_sym__val_number_decimal_token1] = ACTIONS(2292), + [aux_sym__val_number_decimal_token2] = ACTIONS(2296), + [aux_sym__val_number_decimal_token3] = ACTIONS(2296), + [aux_sym__val_number_decimal_token4] = ACTIONS(2296), + [aux_sym__val_number_token1] = ACTIONS(2296), + [aux_sym__val_number_token2] = ACTIONS(2296), + [aux_sym__val_number_token3] = ACTIONS(2296), + [aux_sym__val_number_token4] = ACTIONS(2296), + [aux_sym__val_number_token5] = ACTIONS(2296), + [aux_sym__val_number_token6] = ACTIONS(2296), + [anon_sym_0b] = ACTIONS(2292), + [anon_sym_0o] = ACTIONS(2292), + [anon_sym_0x] = ACTIONS(2292), + [anon_sym_LBRACK2] = ACTIONS(5078), + [sym_val_date] = ACTIONS(2296), + [anon_sym_DQUOTE] = ACTIONS(2296), + [sym__str_single_quotes] = ACTIONS(2296), + [sym__str_back_ticks] = ACTIONS(2296), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2296), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2296), + [anon_sym_err_GT] = ACTIONS(2292), + [anon_sym_out_GT] = ACTIONS(2292), + [anon_sym_e_GT] = ACTIONS(2292), + [anon_sym_o_GT] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT] = ACTIONS(2292), + [anon_sym_err_GT_GT] = ACTIONS(2296), + [anon_sym_out_GT_GT] = ACTIONS(2296), + [anon_sym_e_GT_GT] = ACTIONS(2296), + [anon_sym_o_GT_GT] = ACTIONS(2296), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2296), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2296), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2296), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2296), + [aux_sym_unquoted_token1] = ACTIONS(2292), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2296), + }, + [1746] = { + [sym_comment] = STATE(1746), + [ts_builtin_sym_end] = ACTIONS(1703), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_GT2] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1703), + [anon_sym_in2] = ACTIONS(1703), + [anon_sym_STAR2] = ACTIONS(1701), + [anon_sym_and2] = ACTIONS(1703), + [anon_sym_xor2] = ACTIONS(1703), + [anon_sym_or2] = ACTIONS(1703), + [anon_sym_not_DASHin2] = ACTIONS(1703), + [anon_sym_has2] = ACTIONS(1703), + [anon_sym_not_DASHhas2] = ACTIONS(1703), + [anon_sym_starts_DASHwith2] = ACTIONS(1703), + [anon_sym_ends_DASHwith2] = ACTIONS(1703), + [anon_sym_EQ_EQ2] = ACTIONS(1703), + [anon_sym_BANG_EQ2] = ACTIONS(1703), + [anon_sym_LT2] = ACTIONS(1701), + [anon_sym_LT_EQ2] = ACTIONS(1703), + [anon_sym_GT_EQ2] = ACTIONS(1703), + [anon_sym_EQ_TILDE2] = ACTIONS(1703), + [anon_sym_BANG_TILDE2] = ACTIONS(1703), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_STAR_STAR2] = ACTIONS(1703), + [anon_sym_PLUS_PLUS2] = ACTIONS(1703), + [anon_sym_SLASH2] = ACTIONS(1701), + [anon_sym_mod2] = ACTIONS(1703), + [anon_sym_SLASH_SLASH2] = ACTIONS(1703), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_bit_DASHshl2] = ACTIONS(1703), + [anon_sym_bit_DASHshr2] = ACTIONS(1703), + [anon_sym_bit_DASHand2] = ACTIONS(1703), + [anon_sym_bit_DASHxor2] = ACTIONS(1703), + [anon_sym_bit_DASHor2] = ACTIONS(1703), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [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(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(247), + }, + [1747] = { + [sym_comment] = STATE(1747), + [ts_builtin_sym_end] = ACTIONS(952), + [sym__newline] = ACTIONS(952), + [anon_sym_SEMI] = ACTIONS(952), + [anon_sym_PIPE] = ACTIONS(952), + [anon_sym_err_GT_PIPE] = ACTIONS(952), + [anon_sym_out_GT_PIPE] = ACTIONS(952), + [anon_sym_e_GT_PIPE] = ACTIONS(952), + [anon_sym_o_GT_PIPE] = ACTIONS(952), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(952), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(952), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(952), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(952), + [anon_sym_GT2] = ACTIONS(950), + [anon_sym_DASH2] = ACTIONS(952), + [anon_sym_in2] = ACTIONS(952), + [anon_sym_STAR2] = ACTIONS(950), + [anon_sym_QMARK2] = ACTIONS(5080), + [anon_sym_and2] = ACTIONS(952), + [anon_sym_xor2] = ACTIONS(952), + [anon_sym_or2] = ACTIONS(952), + [anon_sym_not_DASHin2] = ACTIONS(952), + [anon_sym_has2] = ACTIONS(952), + [anon_sym_not_DASHhas2] = ACTIONS(952), + [anon_sym_starts_DASHwith2] = ACTIONS(952), + [anon_sym_ends_DASHwith2] = ACTIONS(952), + [anon_sym_EQ_EQ2] = ACTIONS(952), + [anon_sym_BANG_EQ2] = ACTIONS(952), + [anon_sym_LT2] = ACTIONS(950), + [anon_sym_LT_EQ2] = ACTIONS(952), + [anon_sym_GT_EQ2] = ACTIONS(952), + [anon_sym_EQ_TILDE2] = ACTIONS(952), + [anon_sym_BANG_TILDE2] = ACTIONS(952), + [anon_sym_STAR_STAR2] = ACTIONS(952), + [anon_sym_PLUS_PLUS2] = ACTIONS(952), + [anon_sym_SLASH2] = ACTIONS(950), + [anon_sym_mod2] = ACTIONS(952), + [anon_sym_SLASH_SLASH2] = ACTIONS(952), + [anon_sym_PLUS2] = ACTIONS(950), + [anon_sym_bit_DASHshl2] = ACTIONS(952), + [anon_sym_bit_DASHshr2] = ACTIONS(952), + [anon_sym_bit_DASHand2] = ACTIONS(952), + [anon_sym_bit_DASHxor2] = ACTIONS(952), + [anon_sym_bit_DASHor2] = ACTIONS(952), + [anon_sym_DOT_DOT2] = ACTIONS(950), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(952), + [anon_sym_DOT_DOT_LT2] = ACTIONS(952), + [anon_sym_DOT2] = ACTIONS(950), + [anon_sym_err_GT] = ACTIONS(950), + [anon_sym_out_GT] = ACTIONS(950), + [anon_sym_e_GT] = ACTIONS(950), + [anon_sym_o_GT] = ACTIONS(950), + [anon_sym_err_PLUSout_GT] = ACTIONS(950), + [anon_sym_out_PLUSerr_GT] = ACTIONS(950), + [anon_sym_o_PLUSe_GT] = ACTIONS(950), + [anon_sym_e_PLUSo_GT] = ACTIONS(950), + [anon_sym_err_GT_GT] = ACTIONS(952), + [anon_sym_out_GT_GT] = ACTIONS(952), + [anon_sym_e_GT_GT] = ACTIONS(952), + [anon_sym_o_GT_GT] = ACTIONS(952), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(952), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(952), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(952), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(952), + [anon_sym_POUND] = ACTIONS(247), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1742), 1, - sym_comment, - ACTIONS(2324), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - 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(2326), 46, + ACTIONS(2079), 1, + aux_sym_unquoted_token4, + STATE(1748), 1, + sym_comment, + ACTIONS(2077), 21, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239631,84 +240568,23 @@ 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, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [3182] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1743), 1, - sym_comment, - ACTIONS(2468), 16, + ACTIONS(2073), 40, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH2, 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(2470), 46, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -239718,33 +240594,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - 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, - [3255] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1744), 1, - sym_comment, - ACTIONS(1000), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - 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, @@ -239753,46 +240606,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(1002), 46, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, @@ -239801,12 +240614,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, - [3328] = 4, - ACTIONS(251), 1, + aux_sym_unquoted_token1, + [75] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1745), 1, + STATE(1749), 1, sym_comment, - ACTIONS(980), 16, + ACTIONS(2334), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -239823,7 +240637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(982), 46, + ACTIONS(2336), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -239870,103 +240684,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, - [3401] = 19, - ACTIONS(251), 1, + [148] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2074), 1, - anon_sym_DOLLAR, - ACTIONS(2126), 1, - sym_raw_string_begin, - ACTIONS(4371), 1, - anon_sym_DQUOTE, - ACTIONS(4375), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4377), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4952), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5025), 1, - anon_sym_LPAREN, - STATE(1746), 1, - sym_comment, - STATE(3764), 1, - sym__val_number_decimal, - STATE(4587), 1, - sym__inter_single_quotes, - STATE(4588), 1, - sym__inter_double_quotes, - ACTIONS(4373), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4950), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4058), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4520), 5, - sym_cmd_identifier, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(365), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(367), 34, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [3504] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1747), 1, + ACTIONS(5082), 1, + anon_sym_DOT2, + STATE(1640), 1, + aux_sym_cell_path_repeat1, + STATE(1750), 1, sym_comment, - ACTIONS(1917), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1783), 1, + sym_path, + STATE(2503), 1, + sym_cell_path, + ACTIONS(1905), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239975,9 +240711,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(1919), 46, - sym_raw_string_begin, + ACTIONS(1907), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239989,32 +240724,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_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -240023,12 +240757,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, - [3577] = 4, - ACTIONS(251), 1, + [229] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1748), 1, + STATE(1751), 1, sym_comment, - ACTIONS(2418), 16, + ACTIONS(5087), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -240045,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(2420), 46, + ACTIONS(5084), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -240092,20 +240826,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, - [3650] = 4, - ACTIONS(251), 1, + [302] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1749), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(1752), 1, sym_comment, - ACTIONS(996), 17, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_DOT2, + STATE(2237), 1, + aux_sym_shebang_repeat1, + STATE(7383), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5092), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -240114,10 +240851,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(998), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5090), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240129,30 +240863,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_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -240161,14 +240898,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, - [3723] = 5, - ACTIONS(251), 1, + [381] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5065), 1, - anon_sym_EQ2, - STATE(1750), 1, + ACTIONS(5094), 1, + aux_sym__immediate_decimal_token2, + STATE(1753), 1, sym_comment, - ACTIONS(4972), 16, + ACTIONS(1766), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -240185,7 +240922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4970), 45, + ACTIONS(1768), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -240231,19 +240968,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, - [3798] = 4, - ACTIONS(251), 1, + [456] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1751), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(1754), 1, sym_comment, - ACTIONS(2410), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2246), 1, + aux_sym_shebang_repeat1, + STATE(7383), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5092), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -240252,9 +240993,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(2412), 46, - sym_raw_string_begin, + ACTIONS(5090), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240266,101 +241005,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_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [3871] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1752), 1, - sym_comment, - ACTIONS(2043), 16, - anon_sym_DOLLAR, anon_sym_DASH2, - 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(2049), 46, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -240369,14 +241040,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, - [3944] = 5, + [535] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2134), 1, - aux_sym_unquoted_token4, - STATE(1753), 1, + STATE(1755), 1, sym_comment, - ACTIONS(2132), 21, + ACTIONS(2087), 21, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -240398,7 +241067,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2128), 40, + ACTIONS(2085), 41, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH2, @@ -240439,220 +241108,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - [4019] = 4, - ACTIONS(251), 1, + aux_sym_unquoted_token4, + [608] = 19, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1754), 1, - sym_comment, - ACTIONS(2328), 16, + ACTIONS(2108), 1, anon_sym_DOLLAR, - anon_sym_DASH2, - 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(2330), 46, + ACTIONS(2160), 1, sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, + ACTIONS(4337), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(4341), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(4343), 1, 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, - [4092] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4982), 1, - aux_sym__immediate_decimal_token2, - STATE(1755), 1, - sym_comment, - ACTIONS(1755), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - 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), 45, - sym_raw_string_begin, - 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, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, + ACTIONS(4992), 1, aux_sym__val_number_decimal_token3, + ACTIONS(4994), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [4167] = 4, - ACTIONS(251), 1, - anon_sym_POUND, + ACTIONS(5096), 1, + anon_sym_LPAREN, STATE(1756), 1, sym_comment, - ACTIONS(2332), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - 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(2334), 46, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, + STATE(3720), 1, + sym__val_number_decimal, + STATE(4555), 1, + sym__inter_single_quotes, + STATE(4607), 1, + sym__inter_double_quotes, + ACTIONS(4339), 2, 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, - [4240] = 4, - ACTIONS(251), 1, + ACTIONS(4990), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4059), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4544), 5, + sym_cmd_identifier, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(359), 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(361), 34, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [711] = 4, + ACTIONS(247), 1, anon_sym_POUND, STATE(1757), 1, sym_comment, - ACTIONS(1937), 16, + ACTIONS(2364), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -240669,7 +241215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1939), 46, + ACTIONS(2366), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -240716,19 +241262,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, - [4313] = 4, - ACTIONS(251), 1, + [784] = 7, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(4452), 1, + anon_sym_LPAREN2, STATE(1758), 1, sym_comment, - ACTIONS(5069), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2269), 1, + aux_sym_shebang_repeat1, + STATE(7383), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5100), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -240737,9 +241287,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(5067), 46, - sym_raw_string_begin, + ACTIONS(5098), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240751,32 +241299,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_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -240785,12 +241334,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, - [4386] = 4, - ACTIONS(251), 1, + [863] = 4, + ACTIONS(247), 1, anon_sym_POUND, STATE(1759), 1, sym_comment, - ACTIONS(1949), 16, + ACTIONS(5104), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -240807,7 +241356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1951), 46, + ACTIONS(5102), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -240854,229 +241403,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4459] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1760), 1, - sym_comment, - ACTIONS(2422), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - 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(2424), 46, + [936] = 21, + ACTIONS(107), 1, + anon_sym_DQUOTE, + ACTIONS(121), 1, sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4992), 1, aux_sym__val_number_decimal_token3, + ACTIONS(4994), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, + ACTIONS(5110), 1, + anon_sym_LBRACK, + ACTIONS(5112), 1, + anon_sym_STAR2, + STATE(1760), 1, + sym_comment, + STATE(3761), 1, + sym__val_number_decimal, + STATE(5779), 1, + sym_cmd_identifier, + STATE(5782), 1, + sym_val_string, + STATE(6769), 1, + sym__command_name, + STATE(6782), 1, + sym_wild_card, + STATE(6783), 1, + sym_command_list, + STATE(6834), 1, + sym_scope_pattern, + ACTIONS(109), 2, 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, - [4532] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1761), 1, - sym_comment, - ACTIONS(1711), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, + ACTIONS(4990), 2, 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(1713), 46, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [4605] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5071), 1, - anon_sym_QMARK2, - STATE(1762), 1, - sym_comment, - ACTIONS(966), 15, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_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(968), 46, + STATE(1605), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5076), 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, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - 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, - [4680] = 5, - ACTIONS(251), 1, + ACTIONS(5106), 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5108), 34, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [1043] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5073), 1, - anon_sym_QMARK2, - STATE(1763), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(1761), 1, sym_comment, - ACTIONS(960), 15, + STATE(2153), 1, + aux_sym_shebang_repeat1, + STATE(7383), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5100), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241085,8 +241514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(962), 46, - ts_builtin_sym_end, + ACTIONS(5098), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241098,6 +241526,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_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -241105,6 +241534,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -241122,8 +241553,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - 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, @@ -241132,12 +241561,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, - [4755] = 4, - ACTIONS(251), 1, + [1122] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1764), 1, + STATE(1762), 1, sym_comment, - ACTIONS(5077), 16, + ACTIONS(5116), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -241154,7 +241583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5075), 46, + ACTIONS(5114), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -241201,12 +241630,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, - [4828] = 4, - ACTIONS(251), 1, + [1195] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1765), 1, + ACTIONS(4472), 1, + aux_sym_unquoted_token2, + STATE(1763), 1, sym_comment, - ACTIONS(5081), 16, + ACTIONS(1639), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -241223,8 +241654,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5079), 46, + ACTIONS(1651), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241238,10 +241670,8 @@ 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, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -241270,12 +241700,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, - [4901] = 4, - ACTIONS(251), 1, + [1270] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1766), 1, + STATE(1764), 1, sym_comment, - ACTIONS(2446), 16, + ACTIONS(5120), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -241292,7 +241722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2448), 46, + ACTIONS(5118), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -241339,19 +241769,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, - [4974] = 4, - ACTIONS(251), 1, + [1343] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1767), 1, + STATE(1765), 1, sym_comment, - ACTIONS(984), 15, + ACTIONS(2318), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241360,8 +241788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(986), 47, - ts_builtin_sym_end, + ACTIONS(2320), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241373,14 +241800,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_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, - anon_sym_QMARK2, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -241398,8 +241830,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - 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, @@ -241408,105 +241838,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, - [5047] = 21, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(123), 1, - sym_raw_string_begin, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4952), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5031), 1, - anon_sym_LBRACK, - ACTIONS(5033), 1, - anon_sym_STAR2, - STATE(1768), 1, - sym_comment, - STATE(3787), 1, - sym__val_number_decimal, - STATE(5782), 1, - sym_cmd_identifier, - STATE(5791), 1, - sym_val_string, - STATE(6739), 1, - sym_wild_card, - STATE(6753), 1, - sym_command_list, - STATE(7154), 1, - sym_scope_pattern, - STATE(7278), 1, - sym__command_name, - ACTIONS(111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4950), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(1732), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5019), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - ACTIONS(5027), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5029), 34, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [5154] = 4, - ACTIONS(251), 1, + [1416] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1769), 1, + STATE(1766), 1, sym_comment, - ACTIONS(2386), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(2043), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241515,9 +241857,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(2388), 46, - sym_raw_string_begin, + ACTIONS(2049), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241529,32 +241869,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, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241563,19 +241907,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, - [5227] = 4, - ACTIONS(251), 1, + [1489] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1770), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(1767), 1, sym_comment, - ACTIONS(5085), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2212), 1, + aux_sym_shebang_repeat1, + STATE(7383), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5100), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241584,9 +241932,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(5083), 46, - sym_raw_string_begin, + ACTIONS(5098), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241598,32 +241944,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_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241632,19 +241979,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, - [5300] = 4, - ACTIONS(251), 1, + [1568] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1771), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(1768), 1, sym_comment, - ACTIONS(4784), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2214), 1, + aux_sym_shebang_repeat1, + STATE(7383), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5100), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241653,9 +242004,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(4782), 46, - sym_raw_string_begin, + ACTIONS(5098), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241667,32 +242016,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_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241701,16 +242051,32 @@ static const 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, + [1647] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2142), 1, - aux_sym_unquoted_token4, - STATE(1772), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(1769), 1, sym_comment, - ACTIONS(2140), 21, - sym_raw_string_begin, - ts_builtin_sym_end, + STATE(2218), 1, + aux_sym_shebang_repeat1, + STATE(7383), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5100), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(5098), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241722,46 +242088,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_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2136), 40, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_RPAREN, anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - 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, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241770,13 +242123,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_token1, - [5448] = 4, - ACTIONS(251), 1, + [1726] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1773), 1, + STATE(1770), 1, sym_comment, - ACTIONS(2019), 16, + ACTIONS(5124), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -241793,7 +242145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2025), 46, + ACTIONS(5122), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -241840,12 +242192,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, - [5521] = 4, - ACTIONS(251), 1, + [1799] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1774), 1, + STATE(1771), 1, sym_comment, - ACTIONS(2027), 16, + ACTIONS(5128), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -241862,7 +242214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2033), 46, + ACTIONS(5126), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -241909,16 +242261,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, - [5594] = 5, - ACTIONS(3), 1, + [1872] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2142), 1, - aux_sym_unquoted_token4, - STATE(1775), 1, + STATE(1772), 1, sym_comment, - ACTIONS(2146), 21, + ACTIONS(5132), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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(5130), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241932,23 +242298,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2144), 40, - anon_sym_DOLLAR, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_DOT_DOT, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -241958,89 +242316,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - 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, - [5669] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5087), 1, - aux_sym__immediate_decimal_token2, - STATE(1776), 1, - sym_comment, - ACTIONS(1783), 15, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - 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, - aux_sym_unquoted_token2, - ACTIONS(1785), 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + 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, @@ -242049,96 +242330,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, - [5744] = 19, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2240), 1, - anon_sym_DOLLAR, - ACTIONS(2290), 1, - sym_raw_string_begin, - ACTIONS(4335), 1, - anon_sym_DQUOTE, - ACTIONS(4339), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4341), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4952), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5089), 1, - anon_sym_LPAREN, - STATE(1777), 1, - sym_comment, - STATE(3757), 1, - sym__val_number_decimal, - STATE(4791), 1, - sym__inter_single_quotes, - STATE(4792), 1, - sym__inter_double_quotes, - ACTIONS(4337), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4950), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4153), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4668), 5, - sym_cmd_identifier, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(19), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(21), 34, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [5847] = 4, - ACTIONS(251), 1, + [1945] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1778), 1, + STATE(1773), 1, sym_comment, - ACTIONS(2366), 16, + ACTIONS(5136), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -242155,7 +242352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2368), 46, + ACTIONS(5134), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -242202,19 +242399,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, - [5920] = 4, - ACTIONS(251), 1, + [2018] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1779), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(1774), 1, sym_comment, - ACTIONS(2336), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2223), 1, + aux_sym_shebang_repeat1, + STATE(7383), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5100), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242223,9 +242424,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(2338), 46, - sym_raw_string_begin, + ACTIONS(5098), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242237,32 +242436,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_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -242271,19 +242471,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, - [5993] = 4, - ACTIONS(251), 1, + [2097] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1780), 1, + STATE(1775), 1, sym_comment, - ACTIONS(2366), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(2445), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242292,9 +242490,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(2368), 46, - sym_raw_string_begin, + ACTIONS(2447), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242306,32 +242502,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, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -242340,20 +242540,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, - [6066] = 5, - ACTIONS(251), 1, + [2170] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4968), 1, - aux_sym__immediate_decimal_token2, - STATE(1781), 1, + STATE(1776), 1, sym_comment, - ACTIONS(1755), 15, + ACTIONS(2374), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242362,9 +242559,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_token2, - ACTIONS(1757), 46, - ts_builtin_sym_end, + ACTIONS(2376), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242376,12 +242571,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_DASH2, anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -242390,7 +242592,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -242400,8 +242601,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - 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, @@ -242410,19 +242609,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, - [6141] = 4, - ACTIONS(251), 1, + [2243] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1782), 1, + STATE(1777), 1, sym_comment, - ACTIONS(1965), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(2030), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242431,9 +242628,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(1967), 46, - sym_raw_string_begin, + ACTIONS(2036), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242445,32 +242640,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, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -242479,19 +242678,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, - [6214] = 4, - ACTIONS(251), 1, + [2316] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1783), 1, + STATE(1778), 1, sym_comment, - ACTIONS(2426), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(1977), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242500,9 +242697,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(2428), 46, - sym_raw_string_begin, + ACTIONS(1983), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242514,32 +242709,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, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -242548,19 +242747,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, - [6287] = 4, - ACTIONS(251), 1, + [2389] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1784), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(1779), 1, sym_comment, - ACTIONS(2342), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2236), 1, + aux_sym_shebang_repeat1, + STATE(7383), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5100), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242569,9 +242772,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(2344), 46, - sym_raw_string_begin, + ACTIONS(5098), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242583,32 +242784,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_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -242617,19 +242819,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, - [6360] = 4, - ACTIONS(251), 1, + [2468] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1785), 1, + STATE(1780), 1, sym_comment, - ACTIONS(4994), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(1985), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242638,9 +242838,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(4992), 46, - sym_raw_string_begin, + ACTIONS(1991), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242652,32 +242850,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, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -242686,12 +242888,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, - [6433] = 4, - ACTIONS(251), 1, + [2541] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1786), 1, + STATE(1781), 1, sym_comment, - ACTIONS(2035), 16, + ACTIONS(2043), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -242708,7 +242910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2041), 46, + ACTIONS(2049), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -242755,19 +242957,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, - [6506] = 4, - ACTIONS(251), 1, + [2614] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1787), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(1782), 1, sym_comment, - ACTIONS(5093), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2254), 1, + aux_sym_shebang_repeat1, + STATE(7383), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5100), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242776,9 +242982,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(5091), 46, - sym_raw_string_begin, + ACTIONS(5098), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242790,32 +242994,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_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -242824,12 +243029,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, - [6579] = 4, - ACTIONS(251), 1, + [2693] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1788), 1, + STATE(1783), 1, sym_comment, - ACTIONS(2346), 16, + ACTIONS(982), 15, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_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(984), 47, + 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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + 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, + [2766] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1784), 1, + sym_comment, + ACTIONS(2374), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -242846,7 +243120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2348), 46, + ACTIONS(2376), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -242893,12 +243167,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, - [6652] = 4, - ACTIONS(251), 1, + [2839] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1789), 1, + STATE(1785), 1, sym_comment, - ACTIONS(5097), 16, + ACTIONS(2030), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -242915,7 +243189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5095), 46, + ACTIONS(2036), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -242962,12 +243236,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, - [6725] = 4, - ACTIONS(251), 1, + [2912] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1790), 1, + STATE(1786), 1, sym_comment, - ACTIONS(5101), 16, + ACTIONS(1977), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -242984,7 +243258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5099), 46, + ACTIONS(1983), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -243031,12 +243305,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, - [6798] = 4, - ACTIONS(251), 1, + [2985] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1791), 1, + STATE(1787), 1, sym_comment, - ACTIONS(1969), 16, + ACTIONS(1985), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243053,7 +243327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1971), 46, + ACTIONS(1991), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -243100,12 +243374,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, - [6871] = 4, - ACTIONS(251), 1, + [3058] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1792), 1, + STATE(1788), 1, sym_comment, - ACTIONS(2430), 16, + ACTIONS(5140), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243122,7 +243396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2432), 46, + ACTIONS(5138), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -243169,14 +243443,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, - [6944] = 5, - ACTIONS(251), 1, + [3131] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5103), 1, - aux_sym__immediate_decimal_token2, - STATE(1793), 1, + STATE(1789), 1, sym_comment, - ACTIONS(1783), 16, + ACTIONS(5144), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243193,9 +243465,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1785), 45, + ACTIONS(5142), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -243209,8 +243480,10 @@ 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, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -243239,16 +243512,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, - [7019] = 5, - ACTIONS(3), 1, + [3204] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2208), 1, - aux_sym_unquoted_token4, - STATE(1794), 1, + STATE(1790), 1, sym_comment, - ACTIONS(1012), 21, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(2356), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(2358), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -243260,38 +243543,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_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1016), 40, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_RPAREN, anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - 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, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, + anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [3277] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1791), 1, + sym_comment, + ACTIONS(2360), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -243300,6 +243600,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(2362), 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_DASH2, + anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -243308,15 +243650,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_token1, - [7094] = 5, - ACTIONS(251), 1, + [3350] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4487), 1, - aux_sym_unquoted_token2, - STATE(1795), 1, + STATE(1792), 1, sym_comment, - ACTIONS(1638), 16, + ACTIONS(2356), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243333,9 +243672,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1650), 45, + ACTIONS(2358), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -243349,8 +243687,10 @@ 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, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -243379,15 +243719,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, - [7169] = 5, - ACTIONS(251), 1, + [3423] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5105), 1, - anon_sym_LBRACK2, - STATE(1796), 1, + STATE(1793), 1, sym_comment, - ACTIONS(2230), 17, - anon_sym_LBRACK, + ACTIONS(2360), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243404,9 +243741,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2234), 44, + ACTIONS(2362), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -243418,9 +243754,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_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -243449,12 +243788,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, - [7244] = 4, - ACTIONS(251), 1, + [3496] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1797), 1, + STATE(1794), 1, sym_comment, - ACTIONS(2414), 16, + ACTIONS(2370), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243471,7 +243810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2416), 46, + ACTIONS(2372), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -243518,12 +243857,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, - [7317] = 4, - ACTIONS(251), 1, + [3569] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1798), 1, + STATE(1795), 1, sym_comment, - ACTIONS(1016), 16, + ACTIONS(5148), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243540,7 +243879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1012), 46, + ACTIONS(5146), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -243587,12 +243926,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, - [7390] = 4, - ACTIONS(251), 1, + [3642] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1799), 1, + STATE(1796), 1, sym_comment, - ACTIONS(1905), 16, + ACTIONS(5152), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243609,7 +243948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1907), 46, + ACTIONS(5150), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -243656,15 +243995,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, - [7463] = 5, - ACTIONS(251), 1, + [3715] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5107), 1, - sym__newline, - STATE(1800), 2, + STATE(1797), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1296), 13, + ACTIONS(2370), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -243678,7 +244014,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(1298), 47, + ACTIONS(2372), 49, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -243689,18 +244026,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_COLON, - anon_sym_LBRACK, anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_else, + anon_sym_if, anon_sym_LBRACE, - anon_sym_catch, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -243726,14 +244064,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, - [7538] = 5, - ACTIONS(251), 1, + [3788] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5110), 1, - anon_sym_EQ2, - STATE(1801), 1, + STATE(1798), 1, sym_comment, - ACTIONS(4986), 16, + ACTIONS(2453), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243750,9 +244086,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4984), 45, + ACTIONS(2455), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -243766,8 +244101,10 @@ 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, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -243796,12 +244133,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, - [7613] = 4, - ACTIONS(251), 1, + [3861] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1802), 1, + STATE(1799), 1, sym_comment, - ACTIONS(5114), 16, + ACTIONS(2425), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243818,7 +244155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5112), 46, + ACTIONS(2427), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -243865,12 +244202,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, - [7686] = 4, - ACTIONS(251), 1, + [3934] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1803), 1, + STATE(1800), 1, sym_comment, - ACTIONS(2390), 16, + ACTIONS(2433), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243887,7 +244224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2392), 46, + ACTIONS(2435), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -243934,12 +244271,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, - [7759] = 4, - ACTIONS(251), 1, + [4007] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1804), 1, + STATE(1801), 1, sym_comment, - ACTIONS(2394), 16, + ACTIONS(2449), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243956,7 +244293,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), 46, + ACTIONS(2451), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -244003,12 +244340,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, - [7832] = 4, - ACTIONS(251), 1, + [4080] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1805), 1, + STATE(1802), 1, sym_comment, - ACTIONS(992), 17, + ACTIONS(2465), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244016,7 +244353,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244026,9 +244362,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(994), 45, + ACTIONS(2467), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -244042,8 +244377,10 @@ 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, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -244072,14 +244409,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, - [7905] = 4, - ACTIONS(3), 1, + [4153] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1806), 1, + STATE(1803), 1, sym_comment, - ACTIONS(2150), 21, + ACTIONS(2481), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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(2483), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -244093,23 +244446,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2148), 41, - anon_sym_DOLLAR, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_DOT_DOT, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -244119,18 +244464,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - 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, @@ -244139,14 +244478,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_token1, - aux_sym_unquoted_token4, - [7978] = 4, - ACTIONS(251), 1, + [4226] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1807), 1, + STATE(1804), 1, sym_comment, - ACTIONS(1755), 16, + ACTIONS(2485), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244163,7 +244500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1757), 46, + ACTIONS(2487), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -244210,19 +244547,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, - [8051] = 4, - ACTIONS(251), 1, + [4299] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1808), 1, + STATE(1805), 1, sym_comment, - ACTIONS(2370), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(2457), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244231,9 +244566,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(2372), 46, - sym_raw_string_begin, + ACTIONS(2459), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -244245,32 +244578,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, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -244279,19 +244616,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, - [8124] = 4, - ACTIONS(251), 1, + [4372] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1809), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(1806), 1, sym_comment, - ACTIONS(2374), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2259), 1, + aux_sym_shebang_repeat1, + STATE(7383), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5100), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244300,9 +244641,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(2376), 46, - sym_raw_string_begin, + ACTIONS(5098), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -244314,32 +244653,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_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -244348,19 +244688,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, - [8197] = 4, - ACTIONS(251), 1, + [4451] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1810), 1, + ACTIONS(4716), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5154), 1, + anon_sym_DOT, + STATE(1807), 1, sym_comment, - ACTIONS(2350), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(1701), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244369,9 +244711,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(2352), 46, - sym_raw_string_begin, + ACTIONS(1703), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -244383,32 +244723,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_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -244417,19 +244759,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, - [8270] = 4, - ACTIONS(251), 1, + [4528] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1811), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(1808), 1, sym_comment, - ACTIONS(2354), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2260), 1, + aux_sym_shebang_repeat1, + STATE(7383), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5100), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244438,9 +244784,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(2356), 46, - sym_raw_string_begin, + ACTIONS(5098), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -244452,32 +244796,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_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -244486,19 +244831,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(251), 1, + [4607] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1812), 1, + STATE(1809), 1, sym_comment, - ACTIONS(2406), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(2306), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244507,9 +244850,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(2408), 46, - sym_raw_string_begin, + ACTIONS(2308), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -244521,32 +244862,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, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -244555,20 +244900,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, - [8416] = 4, - ACTIONS(251), 1, + [4680] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1813), 1, - sym_comment, - ACTIONS(988), 17, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(5082), 1, anon_sym_DOT2, + STATE(1640), 1, + aux_sym_cell_path_repeat1, + STATE(1783), 1, + sym_path, + STATE(1810), 1, + sym_comment, + STATE(2506), 1, + sym_cell_path, + ACTIONS(1961), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244577,9 +244927,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(990), 45, - sym_raw_string_begin, + ACTIONS(1963), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -244592,30 +244940,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_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -244624,12 +244973,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, - [8489] = 4, - ACTIONS(251), 1, + [4761] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1814), 1, + STATE(1811), 1, sym_comment, - ACTIONS(4872), 16, + ACTIONS(982), 17, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244637,6 +244986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244646,8 +244996,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4870), 46, + ACTIONS(984), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -244661,10 +245012,8 @@ 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, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -244693,12 +245042,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, - [8562] = 4, - ACTIONS(251), 1, + [4834] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1815), 1, + STATE(1812), 1, sym_comment, - ACTIONS(1953), 16, + ACTIONS(1701), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244715,7 +245064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1955), 46, + ACTIONS(1703), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -244762,222 +245111,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, - [8635] = 39, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(157), 1, - anon_sym_LPAREN, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(187), 1, - anon_sym_DOT_DOT, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(237), 1, - anon_sym_DQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(253), 1, - sym_raw_string_begin, - ACTIONS(383), 1, - anon_sym_DASH2, - ACTIONS(1030), 1, - anon_sym_DOLLAR, - ACTIONS(3206), 1, - sym__newline, - ACTIONS(3408), 1, - anon_sym_null, - ACTIONS(3412), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3414), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3416), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, - aux_sym__val_number_decimal_token4, - STATE(1667), 1, - sym__val_number, - STATE(1816), 1, - sym_comment, - STATE(1833), 1, - sym_val_variable, - STATE(2015), 1, - sym_expr_parenthesized, - STATE(2034), 1, - sym__inter_single_quotes, - STATE(2035), 1, - sym__inter_double_quotes, - STATE(2143), 1, - sym__expr_unary_minus, - STATE(2872), 1, - aux_sym_shebang_repeat1, - STATE(3154), 1, - sym__val_number_decimal, - STATE(3814), 1, - sym__expr_binary_expression_parenthesized, - STATE(6706), 1, - sym__expression_parenthesized, - ACTIONS(211), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(239), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3410), 2, - anon_sym_true, - anon_sym_false, - STATE(1418), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2398), 4, - sym_expr_unary, - sym_expr_binary_parenthesized, - sym_val_range, - sym__value, - ACTIONS(227), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2085), 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, - [8777] = 39, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(157), 1, - anon_sym_LPAREN, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(187), 1, - anon_sym_DOT_DOT, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(237), 1, - anon_sym_DQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(253), 1, - sym_raw_string_begin, - ACTIONS(383), 1, - anon_sym_DASH2, - ACTIONS(1030), 1, - anon_sym_DOLLAR, - ACTIONS(3206), 1, - sym__newline, - ACTIONS(3408), 1, - anon_sym_null, - ACTIONS(3412), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3414), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3416), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, - aux_sym__val_number_decimal_token4, - STATE(1667), 1, - sym__val_number, - STATE(1817), 1, - sym_comment, - STATE(1833), 1, - sym_val_variable, - STATE(1841), 1, - aux_sym_shebang_repeat1, - STATE(2015), 1, - sym_expr_parenthesized, - STATE(2034), 1, - sym__inter_single_quotes, - STATE(2035), 1, - sym__inter_double_quotes, - STATE(2143), 1, - sym__expr_unary_minus, - STATE(3154), 1, - sym__val_number_decimal, - STATE(3814), 1, - sym__expr_binary_expression_parenthesized, - STATE(6700), 1, - sym__expression_parenthesized, - ACTIONS(211), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(239), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3410), 2, - anon_sym_true, - anon_sym_false, - STATE(1418), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2398), 4, - sym_expr_unary, - sym_expr_binary_parenthesized, - sym_val_range, - sym__value, - ACTIONS(227), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2085), 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, - [8919] = 6, - ACTIONS(251), 1, + [4907] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, + ACTIONS(4452), 1, anon_sym_LPAREN2, - STATE(1818), 1, + STATE(1813), 1, sym_comment, - STATE(7384), 1, + STATE(2261), 1, + aux_sym_shebang_repeat1, + STATE(7383), 1, sym__expr_parenthesized_immediate, - ACTIONS(5118), 13, + ACTIONS(5100), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -244991,7 +245136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5116), 46, + ACTIONS(5098), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245007,12 +245152,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -245038,16 +245183,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, - [8995] = 6, - ACTIONS(251), 1, + [4986] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(1819), 1, + STATE(1814), 1, sym_comment, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5118), 13, + ACTIONS(2453), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -245061,7 +245202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5116), 46, + ACTIONS(2455), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245076,6 +245217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, @@ -245083,6 +245225,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -245108,16 +245252,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, - [9071] = 6, - ACTIONS(251), 1, + [5059] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(1820), 1, + STATE(1815), 1, sym_comment, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5118), 13, + ACTIONS(1693), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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(1695), 46, + sym_raw_string_begin, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [5132] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1816), 1, + sym_comment, + ACTIONS(2425), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -245131,7 +245340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5116), 46, + ACTIONS(2427), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245146,6 +245355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, @@ -245153,6 +245363,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -245178,17 +245390,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, - [9147] = 6, - ACTIONS(251), 1, + [5205] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5120), 1, - anon_sym_DOT_DOT2, - STATE(1821), 1, + STATE(1817), 1, sym_comment, - ACTIONS(5122), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1812), 13, + ACTIONS(2433), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -245202,7 +245409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1820), 45, + ACTIONS(2435), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245217,12 +245424,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -245248,12 +245459,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, - [9223] = 4, - ACTIONS(251), 1, + [5278] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1822), 1, + STATE(1818), 1, sym_comment, - ACTIONS(1993), 16, + ACTIONS(1766), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245270,9 +245481,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1995), 45, + ACTIONS(1768), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245286,8 +245496,10 @@ 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, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -245316,12 +245528,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, - [9295] = 4, - ACTIONS(251), 1, + [5351] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1823), 1, + STATE(1819), 1, sym_comment, - ACTIONS(2370), 16, + ACTIONS(1792), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245338,9 +245550,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2372), 45, + ACTIONS(1794), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245354,8 +245565,10 @@ 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, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -245384,19 +245597,293 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9367] = 4, - ACTIONS(251), 1, + [5424] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1820), 1, + sym_comment, + ACTIONS(2449), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(2451), 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_DASH2, + anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [5497] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1821), 1, + sym_comment, + ACTIONS(2465), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(2467), 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_DASH2, + anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [5570] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1822), 1, + sym_comment, + ACTIONS(2481), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(2483), 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_DASH2, + anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [5643] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1823), 1, + sym_comment, + ACTIONS(2485), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(2487), 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_DASH2, + anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [5716] = 4, + ACTIONS(247), 1, anon_sym_POUND, STATE(1824), 1, sym_comment, - ACTIONS(2374), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(1839), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245405,10 +245892,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(2376), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(1841), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245420,30 +245904,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, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -245452,19 +245942,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, - [9439] = 4, - ACTIONS(251), 1, + [5789] = 7, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(4452), 1, + anon_sym_LPAREN2, STATE(1825), 1, sym_comment, - ACTIONS(1855), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2265), 1, + aux_sym_shebang_repeat1, + STATE(7383), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5100), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245473,10 +245967,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(1857), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5098), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245488,30 +245979,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_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -245520,19 +246014,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, - [9511] = 4, - ACTIONS(251), 1, + [5868] = 4, + ACTIONS(247), 1, anon_sym_POUND, STATE(1826), 1, sym_comment, - ACTIONS(2342), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(2489), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245541,10 +246033,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(2344), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(2491), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245556,30 +246045,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, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -245588,18 +246083,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, - [9583] = 4, - ACTIONS(251), 1, + [5941] = 4, + ACTIONS(247), 1, anon_sym_POUND, STATE(1827), 1, sym_comment, - ACTIONS(1711), 15, + ACTIONS(978), 15, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245608,8 +246104,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_token2, - ACTIONS(1713), 46, + ACTIONS(980), 47, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -245628,6 +246123,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -245636,7 +246133,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -245656,12 +246152,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, - [9655] = 4, - ACTIONS(251), 1, + [6014] = 4, + ACTIONS(247), 1, anon_sym_POUND, STATE(1828), 1, sym_comment, - ACTIONS(5055), 16, + ACTIONS(978), 17, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245669,6 +246165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245678,7 +246175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5053), 45, + ACTIONS(980), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -245724,12 +246221,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, - [9727] = 4, - ACTIONS(251), 1, + [6087] = 4, + ACTIONS(247), 1, anon_sym_POUND, STATE(1829), 1, sym_comment, - ACTIONS(5059), 16, + ACTIONS(974), 17, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245737,6 +246234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245746,7 +246244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5057), 45, + ACTIONS(976), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -245792,12 +246290,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, - [9799] = 4, - ACTIONS(251), 1, + [6160] = 21, + ACTIONS(107), 1, + anon_sym_DQUOTE, + ACTIONS(121), 1, + sym_raw_string_begin, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(4992), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4994), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5110), 1, + anon_sym_LBRACK, + ACTIONS(5112), 1, + anon_sym_STAR2, STATE(1830), 1, sym_comment, - ACTIONS(2354), 16, + STATE(3761), 1, + sym__val_number_decimal, + STATE(5779), 1, + sym_cmd_identifier, + STATE(5782), 1, + sym_val_string, + STATE(6769), 1, + sym__command_name, + STATE(6778), 1, + sym_scope_pattern, + STATE(6782), 1, + sym_wild_card, + STATE(6783), 1, + sym_command_list, + ACTIONS(109), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4990), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(1605), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5034), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + ACTIONS(5106), 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5108), 34, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [6267] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1831), 1, + sym_comment, + ACTIONS(1639), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245814,9 +246398,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2356), 45, + ACTIONS(1651), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245830,8 +246413,10 @@ 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, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -245860,12 +246445,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, - [9871] = 4, - ACTIONS(251), 1, + [6340] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1831), 1, + STATE(1832), 1, sym_comment, - ACTIONS(1983), 16, + ACTIONS(1002), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245882,9 +246467,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1985), 45, + ACTIONS(998), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245898,8 +246482,10 @@ 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, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -245928,21 +246514,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, - [9943] = 6, - ACTIONS(251), 1, + [6413] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5124), 1, - anon_sym_DOT, - ACTIONS(5126), 1, - aux_sym__immediate_decimal_token2, - STATE(1832), 1, + STATE(1833), 1, sym_comment, - ACTIONS(1755), 14, + ACTIONS(974), 15, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245951,8 +246535,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_token2, - ACTIONS(1757), 45, + ACTIONS(976), 47, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245964,14 +246548,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_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -245980,7 +246564,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -245990,6 +246573,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + 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, @@ -245998,17 +246583,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, - [10019] = 6, - ACTIONS(251), 1, + [6486] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1024), 1, - anon_sym_DOT_DOT2, - STATE(1833), 1, + ACTIONS(5082), 1, + anon_sym_DOT2, + STATE(1640), 1, + aux_sym_cell_path_repeat1, + STATE(1783), 1, + sym_path, + STATE(1834), 1, sym_comment, - ACTIONS(1026), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1016), 13, + STATE(2517), 1, + sym_cell_path, + ACTIONS(1939), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -246022,7 +246610,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(1012), 45, + ACTIONS(1941), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246034,15 +246623,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -246068,19 +246656,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, - [10095] = 4, - ACTIONS(251), 1, + [6567] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1834), 1, + ACTIONS(5082), 1, + anon_sym_DOT2, + STATE(1640), 1, + aux_sym_cell_path_repeat1, + STATE(1783), 1, + sym_path, + STATE(1835), 1, sym_comment, - ACTIONS(2358), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2518), 1, + sym_cell_path, + ACTIONS(1909), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246089,9 +246683,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(2360), 45, - sym_raw_string_begin, + ACTIONS(1911), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -246104,30 +246696,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_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246136,12 +246729,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, - [10167] = 4, - ACTIONS(251), 1, + [6648] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1835), 1, + STATE(1836), 1, sym_comment, - ACTIONS(1755), 16, + ACTIONS(2429), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246158,9 +246751,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1757), 45, + ACTIONS(2431), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246174,8 +246766,10 @@ 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, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -246204,19 +246798,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, - [10239] = 4, - ACTIONS(251), 1, + [6721] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1836), 1, + STATE(1837), 1, sym_comment, - ACTIONS(5046), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(2407), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246225,10 +246817,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(5043), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(2409), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246240,30 +246829,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, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246272,19 +246867,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, - [10311] = 4, - ACTIONS(251), 1, + [6794] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1837), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(1838), 1, sym_comment, - ACTIONS(4784), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2264), 1, + aux_sym_shebang_repeat1, + STATE(7383), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5158), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246293,10 +246892,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(4782), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5156), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246308,30 +246904,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_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246340,19 +246939,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, - [10383] = 4, - ACTIONS(251), 1, + [6873] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1838), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(1839), 1, sym_comment, - ACTIONS(1997), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2273), 1, + aux_sym_shebang_repeat1, + STATE(7383), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5158), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246361,10 +246964,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(1999), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5156), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246376,30 +246976,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_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246408,19 +247011,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, - [10455] = 4, - ACTIONS(251), 1, + [6952] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1839), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(1840), 1, sym_comment, - ACTIONS(5081), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2284), 1, + aux_sym_shebang_repeat1, + STATE(7383), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5158), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246429,10 +247036,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(5079), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5156), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246444,30 +247048,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_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246476,19 +247083,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, - [10527] = 4, - ACTIONS(251), 1, + [7031] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1840), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(1841), 1, sym_comment, - ACTIONS(2362), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2167), 1, + aux_sym_shebang_repeat1, + STATE(7383), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5158), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246497,10 +247108,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(2364), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5156), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246512,30 +247120,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_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246544,122 +247155,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, - [10599] = 39, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(157), 1, - anon_sym_LPAREN, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(187), 1, - anon_sym_DOT_DOT, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(237), 1, - anon_sym_DQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(253), 1, - sym_raw_string_begin, - ACTIONS(383), 1, - anon_sym_DASH2, - ACTIONS(1030), 1, - anon_sym_DOLLAR, - ACTIONS(3206), 1, - sym__newline, - ACTIONS(3408), 1, - anon_sym_null, - ACTIONS(3412), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3414), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3416), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, - aux_sym__val_number_decimal_token4, - STATE(1667), 1, - sym__val_number, - STATE(1833), 1, - sym_val_variable, - STATE(1841), 1, - sym_comment, - STATE(2015), 1, - sym_expr_parenthesized, - STATE(2034), 1, - sym__inter_single_quotes, - STATE(2035), 1, - sym__inter_double_quotes, - STATE(2143), 1, - sym__expr_unary_minus, - STATE(2872), 1, - aux_sym_shebang_repeat1, - STATE(3154), 1, - sym__val_number_decimal, - STATE(3814), 1, - sym__expr_binary_expression_parenthesized, - STATE(6702), 1, - sym__expression_parenthesized, - ACTIONS(211), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(239), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3410), 2, - anon_sym_true, - anon_sym_false, - STATE(1418), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2398), 4, - sym_expr_unary, - sym_expr_binary_parenthesized, - sym_val_range, - sym__value, - ACTIONS(227), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2085), 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, - [10741] = 4, - ACTIONS(251), 1, + [7110] = 7, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(4452), 1, + anon_sym_LPAREN2, STATE(1842), 1, sym_comment, - ACTIONS(980), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2238), 1, + aux_sym_shebang_repeat1, + STATE(7383), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5158), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246668,10 +247180,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(982), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5156), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246683,30 +247192,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_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246715,17 +247227,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, - [10813] = 6, - ACTIONS(251), 1, + [7189] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5128), 1, - anon_sym_DOT_DOT2, + ACTIONS(4452), 1, + anon_sym_LPAREN2, STATE(1843), 1, sym_comment, - ACTIONS(5130), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1802), 13, + STATE(2242), 1, + aux_sym_shebang_repeat1, + STATE(7383), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5158), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -246739,7 +247252,7 @@ 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), 45, + ACTIONS(5156), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246755,11 +247268,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -246785,18 +247299,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, - [10889] = 4, - ACTIONS(251), 1, + [7268] = 4, + ACTIONS(247), 1, anon_sym_POUND, STATE(1844), 1, sym_comment, - ACTIONS(1783), 15, + ACTIONS(2318), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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(2320), 46, + sym_raw_string_begin, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [7341] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1845), 1, + sym_comment, + ACTIONS(1877), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246805,9 +247387,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_token2, - ACTIONS(1785), 46, - ts_builtin_sym_end, + ACTIONS(1879), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246819,12 +247399,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_DASH2, anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -246833,7 +247420,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -246843,8 +247429,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - 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, @@ -246853,12 +247437,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, - [10961] = 4, - ACTIONS(251), 1, + [7414] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1845), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(1846), 1, sym_comment, - ACTIONS(1311), 13, + STATE(2268), 1, + aux_sym_shebang_repeat1, + STATE(7383), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5100), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -246872,7 +247462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1309), 48, + ACTIONS(5098), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246884,18 +247474,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_COLON, - anon_sym_LBRACK, anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_else, anon_sym_LBRACE, - anon_sym_catch, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -246921,16 +247509,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, - [11033] = 6, - ACTIONS(251), 1, + [7493] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(1846), 1, + STATE(1847), 1, sym_comment, - STATE(7580), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4876), 13, + ACTIONS(1833), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -246944,7 +247528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4874), 46, + ACTIONS(1835), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246959,6 +247543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, @@ -246966,6 +247551,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -246991,16 +247578,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, - [11109] = 6, - ACTIONS(251), 1, + [7566] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(1847), 1, + STATE(1848), 1, sym_comment, - STATE(7580), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4880), 13, + ACTIONS(1861), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -247014,7 +247597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4878), 46, + ACTIONS(1863), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247029,6 +247612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, @@ -247036,6 +247620,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -247061,12 +247647,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, - [11185] = 4, - ACTIONS(251), 1, + [7639] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1848), 1, + ACTIONS(5160), 1, + anon_sym_EQ2, + STATE(1849), 1, sym_comment, - ACTIONS(4872), 16, + ACTIONS(5062), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -247083,7 +247671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4870), 45, + ACTIONS(5060), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -247129,18 +247717,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, - [11257] = 4, - ACTIONS(251), 1, + [7714] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1849), 1, + STATE(1850), 1, sym_comment, - ACTIONS(1755), 15, + ACTIONS(2310), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247149,9 +247736,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_token2, - ACTIONS(1757), 46, - ts_builtin_sym_end, + ACTIONS(2312), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247163,12 +247748,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_DASH2, anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -247177,7 +247769,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -247187,76 +247778,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - 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, - [11329] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1850), 1, - sym_comment, - ACTIONS(1711), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - 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(1713), 45, - sym_raw_string_begin, - 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, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, @@ -247265,87 +247786,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, - [11401] = 4, - ACTIONS(251), 1, + [7787] = 4, + ACTIONS(247), 1, anon_sym_POUND, STATE(1851), 1, sym_comment, - ACTIONS(2378), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - 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(2380), 45, - sym_raw_string_begin, - 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, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [11473] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1852), 1, - sym_comment, - ACTIONS(992), 15, + ACTIONS(1885), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247354,8 +247805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(994), 46, - ts_builtin_sym_end, + ACTIONS(1887), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247367,13 +247817,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_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -247391,8 +247847,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - 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, @@ -247401,19 +247855,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, - [11545] = 4, - ACTIONS(251), 1, + [7860] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1853), 1, + STATE(1852), 1, sym_comment, - ACTIONS(988), 15, + ACTIONS(2314), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247422,8 +247874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(990), 46, - ts_builtin_sym_end, + ACTIONS(2316), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247435,13 +247886,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_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -247459,8 +247916,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - 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, @@ -247469,12 +247924,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, - [11617] = 4, - ACTIONS(251), 1, + [7933] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1854), 1, + STATE(1853), 1, sym_comment, - ACTIONS(5085), 16, + ACTIONS(1917), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -247491,9 +247946,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5083), 45, + ACTIONS(1919), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247507,8 +247961,10 @@ 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, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -247537,21 +247993,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, - [11689] = 6, - ACTIONS(251), 1, + [8006] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(1855), 1, + STATE(1854), 1, sym_comment, - STATE(7580), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4884), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2385), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -247560,7 +248014,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(4882), 46, + aux_sym_unquoted_token1, + ACTIONS(2387), 46, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247572,33 +248028,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_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -247607,16 +248062,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, - [11765] = 6, - ACTIONS(251), 1, + [8079] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(1856), 1, + STATE(1855), 1, sym_comment, - STATE(7580), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4888), 13, + ACTIONS(2330), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -247630,7 +248081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4886), 46, + ACTIONS(2332), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247645,6 +248096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, @@ -247652,6 +248104,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -247677,12 +248131,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, - [11841] = 4, - ACTIONS(251), 1, + [8152] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1857), 1, + STATE(1856), 1, sym_comment, - ACTIONS(4894), 16, + ACTIONS(2445), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -247699,7 +248153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4892), 45, + ACTIONS(2447), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -247717,6 +248171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -247745,19 +248200,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, - [11913] = 4, - ACTIONS(251), 1, + [8225] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1858), 1, + STATE(1857), 1, sym_comment, - ACTIONS(2382), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(1889), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247766,10 +248219,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(2384), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(1891), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247781,30 +248231,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, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247813,12 +248269,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, - [11985] = 4, - ACTIONS(251), 1, + [8298] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1859), 1, + STATE(1858), 1, sym_comment, - ACTIONS(5002), 16, + ACTIONS(4845), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -247835,7 +248291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5000), 45, + ACTIONS(4843), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -247853,6 +248309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -247881,12 +248338,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, - [12057] = 4, - ACTIONS(251), 1, + [8371] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1859), 1, + sym_comment, + ACTIONS(1901), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(1903), 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_DASH2, + anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [8444] = 4, + ACTIONS(247), 1, anon_sym_POUND, STATE(1860), 1, sym_comment, - ACTIONS(5093), 16, + ACTIONS(4928), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -247903,9 +248429,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5091), 45, + ACTIONS(4926), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247919,8 +248444,10 @@ 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, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -247949,12 +248476,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, - [12129] = 4, - ACTIONS(251), 1, + [8517] = 4, + ACTIONS(247), 1, anon_sym_POUND, STATE(1861), 1, sym_comment, - ACTIONS(5069), 16, + ACTIONS(2326), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -247971,9 +248498,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5067), 45, + ACTIONS(2328), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247987,8 +248513,10 @@ 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, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -248017,12 +248545,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, - [12201] = 4, - ACTIONS(251), 1, + [8590] = 4, + ACTIONS(247), 1, anon_sym_POUND, STATE(1862), 1, sym_comment, - ACTIONS(5077), 16, + ACTIONS(2457), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -248039,9 +248567,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5075), 45, + ACTIONS(2459), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248055,8 +248582,10 @@ 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, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -248085,14 +248614,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, - [12273] = 5, - ACTIONS(251), 1, + [8663] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5132), 1, - anon_sym_LBRACK2, STATE(1863), 1, sym_comment, - ACTIONS(2230), 13, + ACTIONS(2389), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -248106,7 +248633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2234), 47, + ACTIONS(2391), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248129,6 +248656,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -248154,85 +248683,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, - [12347] = 4, - ACTIONS(251), 1, + [8736] = 4, + ACTIONS(247), 1, anon_sym_POUND, STATE(1864), 1, sym_comment, - ACTIONS(1783), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - 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(1785), 45, - sym_raw_string_begin, - 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, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [12419] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5134), 1, - anon_sym_DOT_DOT2, - STATE(1865), 1, - sym_comment, - ACTIONS(5136), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2043), 13, + ACTIONS(2393), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -248246,7 +248702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2049), 45, + ACTIONS(2395), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248261,12 +248717,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -248292,80 +248752,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, - [12495] = 4, - ACTIONS(251), 1, + [8809] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1866), 1, - sym_comment, - ACTIONS(1835), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - 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(1837), 45, - sym_raw_string_begin, - 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, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [12567] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1867), 1, + STATE(1865), 1, sym_comment, - ACTIONS(2346), 16, + ACTIONS(2306), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -248382,9 +248774,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2348), 45, + ACTIONS(2308), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248398,8 +248789,10 @@ 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, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -248428,17 +248821,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, - [12639] = 6, - ACTIONS(251), 1, + [8882] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5138), 1, - anon_sym_DOT_DOT2, - STATE(1868), 1, + STATE(1866), 1, sym_comment, - ACTIONS(5140), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2019), 13, + ACTIONS(1905), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -248452,7 +248840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2025), 45, + ACTIONS(1907), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248467,12 +248855,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -248498,17 +248890,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, - [12715] = 6, - ACTIONS(251), 1, + [8955] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5142), 1, - anon_sym_DOT_DOT2, - STATE(1869), 1, + STATE(1867), 1, sym_comment, - ACTIONS(5144), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2027), 13, + ACTIONS(2421), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -248522,7 +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(2033), 45, + ACTIONS(2423), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248537,12 +248924,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -248568,17 +248959,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, - [12791] = 6, - ACTIONS(251), 1, + [9028] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1868), 1, + sym_comment, + ACTIONS(1839), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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(1841), 46, + sym_raw_string_begin, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [9101] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5146), 1, - anon_sym_DOT_DOT2, - STATE(1870), 1, + STATE(1869), 1, sym_comment, - ACTIONS(5148), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2035), 13, + ACTIONS(2437), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -248592,7 +249047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2041), 45, + ACTIONS(2439), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248607,12 +249062,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -248638,12 +249097,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, - [12867] = 4, - ACTIONS(251), 1, + [9174] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1871), 1, + STATE(1870), 1, sym_comment, - ACTIONS(5097), 16, + ACTIONS(2489), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -248660,9 +249119,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5095), 45, + ACTIONS(2491), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248676,8 +249134,10 @@ 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, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -248706,12 +249166,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, - [12939] = 4, - ACTIONS(251), 1, + [9247] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1872), 1, + ACTIONS(5162), 1, + anon_sym_LBRACK2, + STATE(1871), 1, sym_comment, - ACTIONS(5101), 16, + ACTIONS(2292), 17, + anon_sym_LBRACK, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -248728,7 +249191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5099), 45, + ACTIONS(2296), 44, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -248742,7 +249205,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, anon_sym_LBRACE, @@ -248774,12 +249236,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, - [13011] = 4, - ACTIONS(251), 1, + [9322] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1873), 1, + STATE(1872), 1, sym_comment, - ACTIONS(1965), 16, + ACTIONS(2407), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -248796,9 +249258,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1967), 45, + ACTIONS(2409), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248812,8 +249273,10 @@ 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, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -248842,12 +249305,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, - [13083] = 4, - ACTIONS(251), 1, + [9395] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1874), 1, + STATE(1873), 1, sym_comment, - ACTIONS(2366), 16, + ACTIONS(1877), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -248864,9 +249327,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2368), 45, + ACTIONS(1879), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248880,8 +249342,10 @@ 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, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -248910,12 +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, - [13155] = 4, - ACTIONS(251), 1, + [9468] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1875), 1, + STATE(1874), 1, sym_comment, - ACTIONS(2366), 16, + ACTIONS(1833), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -248932,9 +249396,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2368), 45, + ACTIONS(1835), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248948,8 +249411,10 @@ 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, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -248978,19 +249443,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, - [13227] = 4, - ACTIONS(251), 1, + [9541] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1876), 1, + STATE(1875), 1, sym_comment, - ACTIONS(972), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(2441), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248999,8 +249462,64 @@ 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(974), 45, + ACTIONS(2443), 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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_COLON2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [9614] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2079), 1, + aux_sym_unquoted_token4, + STATE(1876), 1, + sym_comment, + ACTIONS(2083), 21, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -249016,13 +249535,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2081), 40, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -249032,12 +249561,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + 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, @@ -249046,16 +249581,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, - [13299] = 6, - ACTIONS(251), 1, + aux_sym_unquoted_token1, + [9689] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5150), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5152), 1, - aux_sym__immediate_decimal_token2, STATE(1877), 1, sym_comment, - ACTIONS(1711), 14, + ACTIONS(2441), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -249069,8 +249601,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_token2, - ACTIONS(1713), 45, + ACTIONS(2443), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249085,11 +249616,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -249098,7 +249633,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -249108,6 +249642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_COLON2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249116,12 +249651,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, - [13375] = 4, - ACTIONS(251), 1, + [9762] = 4, + ACTIONS(247), 1, anon_sym_POUND, STATE(1878), 1, sym_comment, - ACTIONS(1949), 16, + ACTIONS(2310), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -249138,9 +249673,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1951), 45, + ACTIONS(2312), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249154,8 +249688,10 @@ 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, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -249184,12 +249720,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, - [13447] = 4, - ACTIONS(251), 1, + [9835] = 4, + ACTIONS(247), 1, anon_sym_POUND, STATE(1879), 1, sym_comment, - ACTIONS(5037), 16, + ACTIONS(1885), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -249206,9 +249742,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5035), 45, + ACTIONS(1887), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249222,8 +249757,10 @@ 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, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -249252,12 +249789,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, - [13519] = 4, - ACTIONS(251), 1, + [9908] = 4, + ACTIONS(247), 1, anon_sym_POUND, STATE(1880), 1, sym_comment, - ACTIONS(5041), 16, + ACTIONS(2314), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -249274,9 +249811,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5039), 45, + ACTIONS(2316), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249290,8 +249826,10 @@ 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, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -249320,12 +249858,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, - [13591] = 4, - ACTIONS(251), 1, + [9981] = 4, + ACTIONS(247), 1, anon_sym_POUND, STATE(1881), 1, sym_comment, - ACTIONS(1000), 16, + ACTIONS(2330), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -249342,9 +249880,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1002), 45, + ACTIONS(2332), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249358,8 +249895,10 @@ 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, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -249388,12 +249927,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, - [13663] = 4, - ACTIONS(251), 1, + [10054] = 4, + ACTIONS(247), 1, anon_sym_POUND, STATE(1882), 1, sym_comment, - ACTIONS(4994), 16, + ACTIONS(1889), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -249410,9 +249949,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4992), 45, + ACTIONS(1891), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249426,8 +249964,10 @@ 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, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -249456,19 +249996,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, - [13735] = 4, - ACTIONS(251), 1, + [10127] = 8, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(5082), 1, + anon_sym_DOT2, + STATE(1640), 1, + aux_sym_cell_path_repeat1, + STATE(1783), 1, + sym_path, STATE(1883), 1, sym_comment, - ACTIONS(1969), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2453), 1, + sym_cell_path, + ACTIONS(1877), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249477,9 +250023,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(1971), 45, - sym_raw_string_begin, + ACTIONS(1879), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -249492,30 +250036,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_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249524,12 +250069,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, - [13807] = 4, - ACTIONS(251), 1, + [10208] = 4, + ACTIONS(247), 1, anon_sym_POUND, STATE(1884), 1, sym_comment, - ACTIONS(1953), 16, + ACTIONS(1901), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -249546,9 +250091,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1955), 45, + ACTIONS(1903), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249562,8 +250106,10 @@ 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, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -249592,12 +250138,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13879] = 4, - ACTIONS(251), 1, + [10281] = 4, + ACTIONS(247), 1, anon_sym_POUND, STATE(1885), 1, sym_comment, - ACTIONS(5114), 16, + ACTIONS(2461), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(2463), 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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_COLON2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [10354] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(1886), 1, + sym_comment, + STATE(2255), 1, + aux_sym_shebang_repeat1, + STATE(7383), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5158), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(5156), 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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [10433] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1887), 1, + sym_comment, + ACTIONS(2389), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -249614,9 +250301,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5112), 45, + ACTIONS(2391), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249630,8 +250316,10 @@ 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, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -249660,12 +250348,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, - [13951] = 4, - ACTIONS(251), 1, + [10506] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1886), 1, + STATE(1888), 1, sym_comment, - ACTIONS(1905), 16, + ACTIONS(2393), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -249682,9 +250370,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1907), 45, + ACTIONS(2395), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249698,8 +250385,10 @@ 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, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -249728,12 +250417,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, - [14023] = 4, - ACTIONS(251), 1, + [10579] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1887), 1, + STATE(1889), 1, sym_comment, - ACTIONS(2350), 16, + ACTIONS(1905), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -249750,9 +250439,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2352), 45, + ACTIONS(1907), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249766,8 +250454,10 @@ 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, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -249796,23 +250486,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, - [14095] = 8, - ACTIONS(251), 1, + [10652] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1024), 1, - anon_sym_DOT_DOT2, - STATE(1888), 1, + STATE(1890), 1, sym_comment, - ACTIONS(1026), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5156), 5, + ACTIONS(2477), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5160), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249821,7 +250505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5154), 22, + ACTIONS(2479), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249834,23 +250518,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_LBRACE, - 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, - ACTIONS(5158), 23, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -249868,19 +250546,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [14175] = 4, - ACTIONS(251), 1, + anon_sym_COLON2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [10725] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1889), 1, + STATE(1891), 1, sym_comment, - ACTIONS(996), 15, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, + ACTIONS(2421), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -249889,8 +250576,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(998), 46, - ts_builtin_sym_end, + aux_sym_unquoted_token1, + ACTIONS(2423), 46, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249902,32 +250590,101 @@ static const uint16_t 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_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [10798] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1892), 1, + sym_comment, + ACTIONS(2437), 16, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_in2, + 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(2439), 46, + sym_raw_string_begin, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -249936,18 +250693,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, - [14247] = 4, - ACTIONS(251), 1, + [10871] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1890), 1, + ACTIONS(5082), 1, + anon_sym_DOT2, + STATE(1640), 1, + aux_sym_cell_path_repeat1, + STATE(1783), 1, + sym_path, + STATE(1893), 1, sym_comment, - ACTIONS(1835), 15, + STATE(2456), 1, + sym_cell_path, + ACTIONS(1969), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249956,8 +250720,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_token2, - ACTIONS(1837), 46, + ACTIONS(1971), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -249976,6 +250739,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -249984,7 +250749,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -249994,8 +250758,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - 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, @@ -250004,12 +250766,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, - [14319] = 4, - ACTIONS(251), 1, + [10952] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1891), 1, + ACTIONS(5164), 1, + anon_sym_EQ2, + STATE(1894), 1, sym_comment, - ACTIONS(4962), 16, + ACTIONS(5052), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -250026,7 +250790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4960), 45, + ACTIONS(5050), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -250072,12 +250836,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, - [14391] = 4, - ACTIONS(251), 1, + [11027] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1892), 1, + STATE(1895), 1, sym_comment, - ACTIONS(2332), 16, + ACTIONS(5168), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -250094,9 +250858,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2334), 45, + ACTIONS(5166), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250110,8 +250873,10 @@ 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, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -250140,19 +250905,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, - [14463] = 4, - ACTIONS(251), 1, + [11100] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1893), 1, + ACTIONS(5082), 1, + anon_sym_DOT2, + STATE(1640), 1, + aux_sym_cell_path_repeat1, + STATE(1783), 1, + sym_path, + STATE(1896), 1, sym_comment, - ACTIONS(4918), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2420), 1, + sym_cell_path, + ACTIONS(1833), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250161,9 +250932,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(2675), 45, - sym_raw_string_begin, + ACTIONS(1835), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250175,31 +250945,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_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250208,19 +250978,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, - [14535] = 4, - ACTIONS(251), 1, + [11181] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1894), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(1897), 1, sym_comment, - ACTIONS(1937), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2282), 1, + aux_sym_shebang_repeat1, + STATE(7383), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5158), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250229,10 +251003,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(1939), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5156), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250244,30 +251015,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_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250276,19 +251050,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, - [14607] = 4, - ACTIONS(251), 1, + [11260] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1895), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(1898), 1, sym_comment, - ACTIONS(976), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2222), 1, + aux_sym_shebang_repeat1, + STATE(7383), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5158), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250297,10 +251075,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(978), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5156), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250312,30 +251087,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_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250344,19 +251122,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, - [14679] = 4, - ACTIONS(251), 1, + [11339] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1896), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(1899), 1, sym_comment, - ACTIONS(5017), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2140), 1, + aux_sym_shebang_repeat1, + STATE(7383), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5158), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250365,9 +251147,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(5015), 45, - sym_raw_string_begin, + ACTIONS(5156), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250379,31 +251159,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_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250412,19 +251194,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, - [14751] = 4, - ACTIONS(251), 1, + [11418] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1897), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(1900), 1, sym_comment, - ACTIONS(2478), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2262), 1, + aux_sym_shebang_repeat1, + STATE(7383), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5158), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250433,10 +251219,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(2480), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5156), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250448,30 +251231,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_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250480,122 +251266,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, - [14823] = 39, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(157), 1, - anon_sym_LPAREN, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(187), 1, - anon_sym_DOT_DOT, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(237), 1, - anon_sym_DQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 1, + [11497] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(253), 1, - sym_raw_string_begin, - ACTIONS(383), 1, - anon_sym_DASH2, - ACTIONS(1030), 1, - anon_sym_DOLLAR, - ACTIONS(3206), 1, - sym__newline, - ACTIONS(3408), 1, - anon_sym_null, - ACTIONS(3412), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3414), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3416), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, - aux_sym__val_number_decimal_token4, - STATE(1667), 1, - sym__val_number, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(1833), 1, - sym_val_variable, - STATE(1898), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(1901), 1, sym_comment, - STATE(2015), 1, - sym_expr_parenthesized, - STATE(2034), 1, - sym__inter_single_quotes, - STATE(2035), 1, - sym__inter_double_quotes, - STATE(2143), 1, - sym__expr_unary_minus, - STATE(3154), 1, - sym__val_number_decimal, - STATE(3814), 1, - sym__expr_binary_expression_parenthesized, - STATE(6452), 1, - sym__expression_parenthesized, - ACTIONS(211), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(239), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3410), 2, - anon_sym_true, - anon_sym_false, - STATE(1418), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2398), 4, - sym_expr_unary, - sym_expr_binary_parenthesized, - sym_val_range, - sym__value, - ACTIONS(227), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2085), 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, - [14965] = 4, - ACTIONS(251), 1, + STATE(2271), 1, + aux_sym_shebang_repeat1, + STATE(7383), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5158), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(5156), 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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [11576] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1899), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(1902), 1, sym_comment, - ACTIONS(2328), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2240), 1, + aux_sym_shebang_repeat1, + STATE(7383), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5158), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250604,10 +251363,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(2330), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5156), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250619,30 +251375,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_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250651,19 +251410,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, - [15037] = 4, - ACTIONS(251), 1, + [11655] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1900), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(1903), 1, sym_comment, - ACTIONS(984), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2288), 1, + aux_sym_shebang_repeat1, + STATE(7383), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5172), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250672,10 +251435,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(986), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5170), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250687,30 +251447,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_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250719,12 +251482,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, - [15109] = 4, - ACTIONS(251), 1, + [11734] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1901), 1, + ACTIONS(4712), 1, + aux_sym_unquoted_token2, + STATE(1904), 1, sym_comment, - ACTIONS(1638), 16, + ACTIONS(1639), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -250741,7 +251506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1650), 45, + ACTIONS(1651), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -250787,17 +251552,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, - [15181] = 6, - ACTIONS(251), 1, + [11809] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1024), 1, - anon_sym_DOT_DOT2, - STATE(1902), 1, + ACTIONS(5082), 1, + anon_sym_DOT2, + STATE(1640), 1, + aux_sym_cell_path_repeat1, + STATE(1783), 1, + sym_path, + STATE(1905), 1, sym_comment, - ACTIONS(1026), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5156), 13, + STATE(2422), 1, + sym_cell_path, + ACTIONS(1861), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -250811,7 +251579,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(5158), 45, + ACTIONS(1863), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250823,15 +251592,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -250857,19 +251625,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, - [15257] = 4, - ACTIONS(251), 1, + [11890] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1903), 1, + ACTIONS(5082), 1, + anon_sym_DOT2, + STATE(1640), 1, + aux_sym_cell_path_repeat1, + STATE(1783), 1, + sym_path, + STATE(1906), 1, sym_comment, - ACTIONS(1016), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2427), 1, + sym_cell_path, + ACTIONS(1873), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250878,9 +251652,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(1012), 45, - sym_raw_string_begin, + ACTIONS(1875), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -250893,30 +251665,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_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250925,19 +251698,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, - [15329] = 4, - ACTIONS(251), 1, + [11971] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1904), 1, + ACTIONS(5082), 1, + anon_sym_DOT2, + STATE(1640), 1, + aux_sym_cell_path_repeat1, + STATE(1783), 1, + sym_path, + STATE(1907), 1, sym_comment, - ACTIONS(2489), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2442), 1, + sym_cell_path, + ACTIONS(1881), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250946,9 +251725,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(2491), 45, - sym_raw_string_begin, + ACTIONS(1883), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -250961,30 +251738,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_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250993,16 +251771,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, - [15401] = 6, - ACTIONS(251), 1, + [12052] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(1905), 1, + STATE(1908), 1, sym_comment, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5118), 13, + ACTIONS(2338), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -251016,7 +251790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5116), 46, + ACTIONS(2340), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251038,6 +251812,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -251055,6 +251831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_COLON2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -251063,19 +251840,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, - [15477] = 4, - ACTIONS(251), 1, + [12125] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1906), 1, + STATE(1909), 1, sym_comment, - ACTIONS(2501), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(2344), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251084,10 +251859,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(2503), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(2346), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251099,30 +251871,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, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_COLON2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -251131,19 +251909,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, - [15549] = 4, - ACTIONS(251), 1, + [12198] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1907), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(1910), 1, sym_comment, - ACTIONS(2043), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2289), 1, + aux_sym_shebang_repeat1, + STATE(7383), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5172), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251152,10 +251934,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(2049), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5170), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251167,30 +251946,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_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -251199,16 +251981,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, - [15621] = 6, - ACTIONS(251), 1, + [12277] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, + ACTIONS(4452), 1, anon_sym_LPAREN2, - STATE(1908), 1, + STATE(1911), 1, sym_comment, - STATE(7384), 1, + STATE(2256), 1, + aux_sym_shebang_repeat1, + STATE(7383), 1, sym__expr_parenthesized_immediate, - ACTIONS(5118), 13, + ACTIONS(5172), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -251222,7 +252006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5116), 46, + ACTIONS(5170), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251238,12 +252022,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -251269,12 +252053,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, - [15697] = 4, - ACTIONS(251), 1, + [12356] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1909), 1, + STATE(1912), 1, sym_comment, - ACTIONS(2336), 16, + ACTIONS(1961), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -251291,9 +252075,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2338), 45, + ACTIONS(1963), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251307,8 +252090,10 @@ 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, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -251337,16 +252122,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, - [15769] = 6, - ACTIONS(251), 1, + [12429] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, + ACTIONS(4452), 1, anon_sym_LPAREN2, - STATE(1910), 1, + STATE(1913), 1, sym_comment, - STATE(7384), 1, + STATE(2225), 1, + aux_sym_shebang_repeat1, + STATE(7383), 1, sym__expr_parenthesized_immediate, - ACTIONS(5118), 13, + ACTIONS(5172), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -251360,7 +252147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5116), 46, + ACTIONS(5170), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251376,12 +252163,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -251407,16 +252194,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, - [15845] = 6, - ACTIONS(251), 1, + [12508] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, + ACTIONS(4452), 1, anon_sym_LPAREN2, - STATE(1911), 1, + STATE(1914), 1, sym_comment, - STATE(7384), 1, + STATE(2277), 1, + aux_sym_shebang_repeat1, + STATE(7383), 1, sym__expr_parenthesized_immediate, - ACTIONS(5118), 13, + ACTIONS(5172), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -251430,7 +252219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5116), 46, + ACTIONS(5170), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251446,12 +252235,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -251477,16 +252266,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, - [15921] = 6, - ACTIONS(251), 1, + [12587] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, + ACTIONS(5174), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5176), 1, + aux_sym__immediate_decimal_token2, + STATE(1915), 1, + sym_comment, + ACTIONS(1693), 14, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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_token2, + ACTIONS(1695), 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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_LPAREN2, - STATE(1912), 1, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [12664] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5082), 1, + anon_sym_DOT2, + STATE(1640), 1, + aux_sym_cell_path_repeat1, + STATE(1783), 1, + sym_path, + STATE(1916), 1, sym_comment, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5118), 13, + STATE(2455), 1, + sym_cell_path, + ACTIONS(1945), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -251500,7 +252364,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(5116), 46, + ACTIONS(1947), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251512,16 +252377,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -251547,21 +252410,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, - [15997] = 8, - ACTIONS(251), 1, + [12745] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym_unquoted_token2, - ACTIONS(1804), 1, - anon_sym_LPAREN2, - ACTIONS(5162), 1, - anon_sym_DOT_DOT2, - STATE(1913), 1, + ACTIONS(5082), 1, + anon_sym_DOT2, + STATE(1640), 1, + aux_sym_cell_path_repeat1, + STATE(1783), 1, + sym_path, + STATE(1917), 1, sym_comment, - ACTIONS(5164), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1802), 13, + STATE(2429), 1, + sym_cell_path, + ACTIONS(1917), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -251575,7 +252437,7 @@ 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(1919), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -251594,6 +252456,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -251619,16 +252483,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16077] = 6, - ACTIONS(251), 1, + [12826] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1918), 1, + sym_comment, + ACTIONS(2413), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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(2415), 46, + sym_raw_string_begin, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [12899] = 21, + ACTIONS(107), 1, + anon_sym_DQUOTE, + ACTIONS(121), 1, + sym_raw_string_begin, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4992), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4994), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5110), 1, + anon_sym_LBRACK, + ACTIONS(5112), 1, + anon_sym_STAR2, + STATE(1919), 1, + sym_comment, + STATE(3761), 1, + sym__val_number_decimal, + STATE(5779), 1, + sym_cmd_identifier, + STATE(5782), 1, + sym_val_string, + STATE(6769), 1, + sym__command_name, + STATE(6782), 1, + sym_wild_card, + STATE(6783), 1, + sym_command_list, + STATE(6837), 1, + sym_scope_pattern, + ACTIONS(109), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4990), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(1605), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4984), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + ACTIONS(5106), 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5108), 34, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [13006] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, + ACTIONS(4452), 1, anon_sym_LPAREN2, - STATE(1914), 1, + STATE(1920), 1, sym_comment, - STATE(7384), 1, + STATE(2185), 1, + aux_sym_shebang_repeat1, + STATE(7383), 1, sym__expr_parenthesized_immediate, - ACTIONS(5118), 13, + ACTIONS(5172), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -251642,7 +252663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5116), 46, + ACTIONS(5170), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251658,12 +252679,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -251689,12 +252710,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, - [16153] = 4, - ACTIONS(251), 1, + [13085] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1915), 1, + STATE(1921), 1, sym_comment, - ACTIONS(1941), 16, + ACTIONS(2441), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -251711,9 +252732,284 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1943), 45, + ACTIONS(2443), 46, + sym_raw_string_begin, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [13158] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1922), 1, + sym_comment, + ACTIONS(2441), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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), 46, + sym_raw_string_begin, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [13231] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1923), 1, + sym_comment, + ACTIONS(5058), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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(5056), 46, + sym_raw_string_begin, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [13304] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1924), 1, + sym_comment, + ACTIONS(2461), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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(2463), 46, + sym_raw_string_begin, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [13377] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1925), 1, + sym_comment, + ACTIONS(2477), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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(2479), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251727,8 +253023,10 @@ 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, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -251757,12 +253055,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, - [16225] = 4, - ACTIONS(251), 1, + [13450] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1916), 1, + STATE(1926), 1, sym_comment, - ACTIONS(2446), 16, + ACTIONS(5026), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -251779,9 +253077,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2448), 45, + ACTIONS(5024), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251795,8 +253092,10 @@ 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, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -251825,12 +253124,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, - [16297] = 4, - ACTIONS(251), 1, + [13523] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1917), 1, + STATE(1927), 1, sym_comment, - ACTIONS(2414), 16, + ACTIONS(2022), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -251847,9 +253146,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2416), 45, + ACTIONS(2024), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251863,8 +253161,10 @@ 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, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -251893,12 +253193,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, - [16369] = 4, - ACTIONS(251), 1, + [13596] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1918), 1, + STATE(1928), 1, sym_comment, - ACTIONS(2386), 16, + ACTIONS(2338), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -251915,9 +253215,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2388), 45, + ACTIONS(2340), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251931,8 +253230,10 @@ 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, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -251961,21 +253262,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, - [16441] = 6, - ACTIONS(251), 1, + [13669] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(1919), 1, + STATE(1929), 1, sym_comment, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5118), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2344), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -251984,7 +253283,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(5116), 46, + aux_sym_unquoted_token1, + ACTIONS(2346), 46, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251996,33 +253297,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_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -252031,12 +253331,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, - [16517] = 4, - ACTIONS(251), 1, + [13742] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1920), 1, + STATE(1930), 1, sym_comment, - ACTIONS(2019), 16, + ACTIONS(2026), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -252053,9 +253353,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2025), 45, + ACTIONS(2028), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252069,8 +253368,10 @@ 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, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -252099,12 +253400,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, - [16589] = 4, - ACTIONS(251), 1, + [13815] = 19, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1921), 1, + ACTIONS(2108), 1, + anon_sym_DOLLAR, + ACTIONS(2160), 1, + sym_raw_string_begin, + ACTIONS(4337), 1, + anon_sym_DQUOTE, + ACTIONS(4341), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4343), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4992), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4994), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5096), 1, + anon_sym_LPAREN, + STATE(1931), 1, + sym_comment, + STATE(3720), 1, + sym__val_number_decimal, + STATE(4555), 1, + sym__inter_single_quotes, + STATE(4607), 1, + sym__inter_double_quotes, + ACTIONS(4339), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4990), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4059), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4701), 5, + sym_cmd_identifier, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(359), 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(361), 34, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [13918] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1932), 1, sym_comment, - ACTIONS(2027), 16, + ACTIONS(956), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -252121,9 +253506,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2033), 45, + ACTIONS(958), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252137,8 +253521,10 @@ 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, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -252167,16 +253553,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, - [16661] = 6, - ACTIONS(251), 1, + [13991] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(1922), 1, + STATE(1933), 1, sym_comment, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5118), 13, + ACTIONS(5058), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252190,7 +253572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5116), 46, + ACTIONS(5056), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252212,6 +253594,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -252220,6 +253604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -252237,12 +253622,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, - [16737] = 4, - ACTIONS(251), 1, + [14064] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1923), 1, + STATE(1934), 1, sym_comment, - ACTIONS(2035), 16, + ACTIONS(960), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -252259,9 +253644,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2041), 45, + ACTIONS(962), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252275,8 +253659,10 @@ 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, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -252305,84 +253691,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, - [16809] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1814), 1, - anon_sym_LPAREN2, - ACTIONS(1822), 1, - aux_sym_unquoted_token2, - ACTIONS(5166), 1, - anon_sym_DOT_DOT2, - STATE(1924), 1, - sym_comment, - ACTIONS(5168), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1812), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(1820), 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [16889] = 4, - ACTIONS(251), 1, + [14137] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1925), 1, + STATE(1935), 1, sym_comment, - ACTIONS(2452), 16, + ACTIONS(964), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -252399,9 +253713,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2454), 45, + ACTIONS(966), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252415,8 +253728,10 @@ 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, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -252445,19 +253760,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, - [16961] = 4, - ACTIONS(251), 1, + [14210] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1926), 1, + STATE(1936), 1, sym_comment, - ACTIONS(2456), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(5026), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -252466,10 +253779,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(2458), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5024), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252481,30 +253791,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, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -252513,19 +253829,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, - [17033] = 4, - ACTIONS(251), 1, + [14283] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1927), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(1937), 1, sym_comment, - ACTIONS(2460), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2194), 1, + aux_sym_shebang_repeat1, + STATE(7383), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5172), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -252534,10 +253854,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(2462), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5170), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252549,30 +253866,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_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -252581,16 +253901,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, - [17105] = 6, - ACTIONS(251), 1, + [14362] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, + ACTIONS(4452), 1, anon_sym_LPAREN2, - STATE(1928), 1, + STATE(1938), 1, sym_comment, - STATE(7384), 1, + STATE(2287), 1, + aux_sym_shebang_repeat1, + STATE(7383), 1, sym__expr_parenthesized_immediate, - ACTIONS(5118), 13, + ACTIONS(5172), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252604,7 +253926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5116), 46, + ACTIONS(5170), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252620,12 +253942,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -252651,19 +253973,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, - [17181] = 4, - ACTIONS(251), 1, + [14441] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1929), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(1939), 1, sym_comment, - ACTIONS(2390), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2228), 1, + aux_sym_shebang_repeat1, + STATE(7383), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5172), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -252672,10 +253998,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(2392), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5170), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252687,30 +254010,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_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -252719,12 +254045,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, - [17253] = 4, - ACTIONS(251), 1, + [14520] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1930), 1, + STATE(1940), 1, sym_comment, - ACTIONS(2394), 16, + ACTIONS(986), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -252741,9 +254067,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2396), 45, + ACTIONS(988), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252757,8 +254082,10 @@ 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, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -252787,19 +254114,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, - [17325] = 4, - ACTIONS(251), 1, + [14593] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1931), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(1941), 1, sym_comment, - ACTIONS(2398), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2204), 1, + aux_sym_shebang_repeat1, + STATE(7383), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5172), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -252808,10 +254139,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(2400), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5170), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252823,30 +254151,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_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -252855,19 +254186,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, - [17397] = 4, - ACTIONS(251), 1, + [14672] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1932), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(1942), 1, sym_comment, - ACTIONS(2320), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2278), 1, + aux_sym_shebang_repeat1, + STATE(7383), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5172), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -252876,10 +254211,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(2322), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5170), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252891,30 +254223,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_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -252923,19 +254258,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, - [17469] = 4, - ACTIONS(251), 1, + [14751] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1933), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(1943), 1, sym_comment, - ACTIONS(2324), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2186), 1, + aux_sym_shebang_repeat1, + STATE(7383), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5172), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -252944,10 +254283,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(2326), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5170), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252959,30 +254295,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_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -252991,12 +254330,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, - [17541] = 4, - ACTIONS(251), 1, + [14830] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1934), 1, + STATE(1944), 1, sym_comment, - ACTIONS(2468), 16, + ACTIONS(946), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -253013,9 +254352,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2470), 45, + ACTIONS(948), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253029,8 +254367,10 @@ 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, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -253059,19 +254399,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, - [17613] = 4, - ACTIONS(251), 1, + [14903] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1935), 1, + ACTIONS(4958), 1, + aux_sym__immediate_decimal_token2, + STATE(1945), 1, sym_comment, - ACTIONS(2406), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(1701), 14, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -253080,10 +254420,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(2408), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + aux_sym_unquoted_token2, + ACTIONS(1703), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253095,30 +254433,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, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -253127,19 +254469,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, - [17685] = 4, - ACTIONS(251), 1, + [14978] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1936), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(1946), 1, sym_comment, - ACTIONS(2410), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2224), 1, + aux_sym_shebang_repeat1, + STATE(7383), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5172), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -253148,10 +254494,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(2412), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5170), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253163,30 +254506,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_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -253195,19 +254541,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, - [17757] = 4, - ACTIONS(251), 1, + [15057] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1937), 1, + ACTIONS(5082), 1, + anon_sym_DOT2, + STATE(1640), 1, + aux_sym_cell_path_repeat1, + STATE(1783), 1, + sym_path, + STATE(1947), 1, sym_comment, - ACTIONS(2505), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2439), 1, + sym_cell_path, + ACTIONS(1893), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -253216,9 +254568,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(2507), 45, - sym_raw_string_begin, + ACTIONS(1895), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -253231,30 +254581,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_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -253263,19 +254614,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, - [17829] = 4, - ACTIONS(251), 1, + [15138] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1938), 1, + ACTIONS(5178), 1, + aux_sym__immediate_decimal_token2, + STATE(1948), 1, sym_comment, - ACTIONS(2418), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(1766), 14, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -253284,10 +254635,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(2420), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + aux_sym_unquoted_token2, + ACTIONS(1768), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253299,30 +254648,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, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -253331,19 +254684,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, - [17901] = 4, - ACTIONS(251), 1, + [15213] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1939), 1, + ACTIONS(5180), 1, + anon_sym_DOT, + ACTIONS(5182), 1, + aux_sym__immediate_decimal_token2, + STATE(1949), 1, sym_comment, - ACTIONS(2422), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(1701), 14, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -253352,9 +254707,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(2424), 45, - sym_raw_string_begin, + aux_sym_unquoted_token2, + ACTIONS(1703), 46, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -253367,30 +254721,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_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -253399,19 +254755,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, - [17973] = 4, - ACTIONS(251), 1, + [15290] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1940), 1, + ACTIONS(5082), 1, + anon_sym_DOT2, + STATE(1640), 1, + aux_sym_cell_path_repeat1, + STATE(1783), 1, + sym_path, + STATE(1950), 1, sym_comment, - ACTIONS(2426), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2441), 1, + sym_cell_path, + ACTIONS(1931), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -253420,9 +254782,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(2428), 45, - sym_raw_string_begin, + ACTIONS(1933), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -253435,30 +254795,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_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -253467,19 +254828,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, - [18045] = 4, - ACTIONS(251), 1, + [15371] = 9, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1941), 1, + ACTIONS(1010), 1, + anon_sym_DOT_DOT2, + ACTIONS(5184), 1, + sym__newline, + STATE(1951), 1, sym_comment, - ACTIONS(2430), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(1012), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5189), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5193), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -253488,11 +254855,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(2432), 45, - sym_raw_string_begin, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5187), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -253503,30 +254866,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_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, @@ -253535,19 +254876,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, - [18117] = 4, - ACTIONS(251), 1, + ACTIONS(5191), 25, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [15454] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1942), 1, + ACTIONS(1010), 1, + anon_sym_DOT_DOT2, + STATE(1952), 1, sym_comment, - ACTIONS(1917), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(1012), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5189), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -253556,10 +254926,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(1919), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5191), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253571,30 +254938,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_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -253603,222 +254973,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, - [18189] = 39, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(157), 1, - anon_sym_LPAREN, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(187), 1, - anon_sym_DOT_DOT, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(237), 1, - anon_sym_DQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(253), 1, - sym_raw_string_begin, - ACTIONS(383), 1, - anon_sym_DASH2, - ACTIONS(1030), 1, - anon_sym_DOLLAR, - ACTIONS(3206), 1, - sym__newline, - ACTIONS(3408), 1, - anon_sym_null, - ACTIONS(3412), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3414), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3416), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, - aux_sym__val_number_decimal_token4, - STATE(1667), 1, - sym__val_number, - STATE(1833), 1, - sym_val_variable, - STATE(1943), 1, - sym_comment, - STATE(1944), 1, - aux_sym_shebang_repeat1, - STATE(2015), 1, - sym_expr_parenthesized, - STATE(2034), 1, - sym__inter_single_quotes, - STATE(2035), 1, - sym__inter_double_quotes, - STATE(2143), 1, - sym__expr_unary_minus, - STATE(3154), 1, - sym__val_number_decimal, - STATE(3814), 1, - sym__expr_binary_expression_parenthesized, - STATE(6693), 1, - sym__expression_parenthesized, - ACTIONS(211), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(239), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3410), 2, - anon_sym_true, - anon_sym_false, - STATE(1418), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2398), 4, - sym_expr_unary, - sym_expr_binary_parenthesized, - sym_val_range, - sym__value, - ACTIONS(227), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2085), 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, - [18331] = 39, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(157), 1, - anon_sym_LPAREN, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(187), 1, - anon_sym_DOT_DOT, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(237), 1, - anon_sym_DQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(253), 1, - sym_raw_string_begin, - ACTIONS(383), 1, - anon_sym_DASH2, - ACTIONS(1030), 1, - anon_sym_DOLLAR, - ACTIONS(3206), 1, - sym__newline, - ACTIONS(3408), 1, - anon_sym_null, - ACTIONS(3412), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3414), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3416), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, - aux_sym__val_number_decimal_token4, - STATE(1667), 1, - sym__val_number, - STATE(1833), 1, - sym_val_variable, - STATE(1944), 1, - sym_comment, - STATE(2015), 1, - sym_expr_parenthesized, - STATE(2034), 1, - sym__inter_single_quotes, - STATE(2035), 1, - sym__inter_double_quotes, - STATE(2143), 1, - sym__expr_unary_minus, - STATE(2872), 1, - aux_sym_shebang_repeat1, - STATE(3154), 1, - sym__val_number_decimal, - STATE(3814), 1, - sym__expr_binary_expression_parenthesized, - STATE(6695), 1, - sym__expression_parenthesized, - ACTIONS(211), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(239), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3410), 2, - anon_sym_true, - anon_sym_false, - STATE(1418), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2398), 4, - sym_expr_unary, - sym_expr_binary_parenthesized, - sym_val_range, - sym__value, - ACTIONS(227), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2085), 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, - [18473] = 6, - ACTIONS(251), 1, + [15531] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, + ACTIONS(4452), 1, anon_sym_LPAREN2, - STATE(1945), 1, + STATE(1953), 1, sym_comment, - STATE(7384), 1, + STATE(2148), 1, + aux_sym_shebang_repeat1, + STATE(7383), 1, sym__expr_parenthesized_immediate, - ACTIONS(5118), 13, + ACTIONS(5092), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -253832,7 +254998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5116), 46, + ACTIONS(5090), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253848,12 +255014,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -253879,18 +255045,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, - [18549] = 7, - ACTIONS(251), 1, + [15610] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, + ACTIONS(4452), 1, anon_sym_LPAREN2, - STATE(1946), 1, + STATE(1954), 1, sym_comment, - STATE(2210), 1, + STATE(2157), 1, aux_sym_shebang_repeat1, - STATE(7384), 1, + STATE(7383), 1, sym__expr_parenthesized_immediate, - ACTIONS(5172), 13, + ACTIONS(5092), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -253904,7 +255070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5170), 44, + ACTIONS(5090), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253924,6 +255090,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -253949,18 +255117,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, - [18626] = 7, - ACTIONS(251), 1, + [15689] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, + ACTIONS(4452), 1, anon_sym_LPAREN2, - STATE(1947), 1, + STATE(1955), 1, sym_comment, - STATE(2201), 1, + STATE(2164), 1, aux_sym_shebang_repeat1, - STATE(7384), 1, + STATE(7383), 1, sym__expr_parenthesized_immediate, - ACTIONS(5176), 13, + ACTIONS(5092), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -253974,7 +255142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5174), 44, + ACTIONS(5090), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253994,6 +255162,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -254019,25 +255189,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18703] = 8, - ACTIONS(251), 1, + [15768] = 19, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(1692), 1, - aux_sym_cell_path_repeat1, - STATE(1889), 1, - sym_path, - STATE(1948), 1, + ACTIONS(2236), 1, + anon_sym_DOLLAR, + ACTIONS(2286), 1, + sym_raw_string_begin, + ACTIONS(4297), 1, + anon_sym_DQUOTE, + ACTIONS(4301), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4303), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4992), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4994), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5195), 1, + anon_sym_LPAREN, + STATE(1956), 1, sym_comment, - STATE(2479), 1, - sym_cell_path, - ACTIONS(1957), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + STATE(3708), 1, + sym__val_number_decimal, + STATE(4830), 1, + sym__inter_single_quotes, + STATE(4848), 1, + sym__inter_double_quotes, + ACTIONS(4299), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4990), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4153), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4676), 5, + sym_cmd_identifier, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(19), 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(21), 34, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [15871] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1957), 1, + sym_comment, + ACTIONS(5058), 17, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -254046,7 +255295,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(1959), 43, + aux_sym_unquoted_token1, + ACTIONS(5056), 45, + sym_raw_string_begin, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -254059,29 +255310,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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -254090,18 +255342,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, - [18782] = 7, - ACTIONS(251), 1, + [15944] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, + ACTIONS(4452), 1, anon_sym_LPAREN2, - STATE(1949), 1, + STATE(1958), 1, sym_comment, - STATE(2209), 1, + STATE(2180), 1, aux_sym_shebang_repeat1, - STATE(7384), 1, + STATE(7383), 1, sym__expr_parenthesized_immediate, - ACTIONS(5176), 13, + ACTIONS(5092), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254115,7 +255367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5174), 44, + ACTIONS(5090), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254135,6 +255387,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -254160,18 +255414,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, - [18859] = 7, - ACTIONS(251), 1, + [16023] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, + ACTIONS(4452), 1, anon_sym_LPAREN2, - STATE(1950), 1, + STATE(1959), 1, sym_comment, - STATE(2214), 1, + STATE(2200), 1, aux_sym_shebang_repeat1, - STATE(7384), 1, + STATE(7383), 1, sym__expr_parenthesized_immediate, - ACTIONS(5176), 13, + ACTIONS(5092), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254185,7 +255439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5174), 44, + ACTIONS(5090), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254205,6 +255459,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -254230,89 +255486,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, - [18936] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(1692), 1, - aux_sym_cell_path_repeat1, - STATE(1889), 1, - sym_path, - STATE(1951), 1, - sym_comment, - STATE(2481), 1, - sym_cell_path, - ACTIONS(1961), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(1963), 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [19015] = 7, - ACTIONS(251), 1, + [16102] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, + ACTIONS(4452), 1, anon_sym_LPAREN2, - STATE(1952), 1, + STATE(1960), 1, sym_comment, - STATE(2287), 1, + STATE(2209), 1, aux_sym_shebang_repeat1, - STATE(7384), 1, + STATE(7383), 1, sym__expr_parenthesized_immediate, - ACTIONS(5172), 13, + ACTIONS(5092), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254326,7 +255511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5170), 44, + ACTIONS(5090), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254346,6 +255531,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -254371,18 +255558,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, - [19092] = 7, - ACTIONS(251), 1, + [16181] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, + ACTIONS(4452), 1, anon_sym_LPAREN2, - STATE(1953), 1, + STATE(1961), 1, sym_comment, - STATE(2219), 1, + STATE(2270), 1, aux_sym_shebang_repeat1, - STATE(7384), 1, + STATE(7383), 1, sym__expr_parenthesized_immediate, - ACTIONS(5176), 13, + ACTIONS(5092), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254396,7 +255583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5174), 44, + ACTIONS(5090), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254416,6 +255603,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -254441,18 +255630,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, - [19169] = 7, - ACTIONS(251), 1, + [16260] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, + ACTIONS(4452), 1, anon_sym_LPAREN2, - STATE(1954), 1, + STATE(1962), 1, sym_comment, - STATE(2232), 1, + STATE(2276), 1, aux_sym_shebang_repeat1, - STATE(7384), 1, + STATE(7383), 1, sym__expr_parenthesized_immediate, - ACTIONS(5176), 13, + ACTIONS(5092), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254466,7 +255655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5174), 44, + ACTIONS(5090), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254486,6 +255675,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -254511,18 +255702,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, - [19246] = 7, - ACTIONS(251), 1, + [16339] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(1955), 1, + ACTIONS(5082), 1, + anon_sym_DOT2, + STATE(1640), 1, + aux_sym_cell_path_repeat1, + STATE(1783), 1, + sym_path, + STATE(1963), 1, sym_comment, - STATE(2233), 1, - aux_sym_shebang_repeat1, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5176), 13, + STATE(2423), 1, + sym_cell_path, + ACTIONS(1839), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254536,7 +255729,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(5174), 44, + ACTIONS(1841), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254548,14 +255742,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -254581,18 +255775,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, - [19323] = 7, - ACTIONS(251), 1, + [16420] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(1956), 1, + ACTIONS(5082), 1, + anon_sym_DOT2, + STATE(1640), 1, + aux_sym_cell_path_repeat1, + STATE(1783), 1, + sym_path, + STATE(1964), 1, sym_comment, - STATE(2235), 1, - aux_sym_shebang_repeat1, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5182), 13, + STATE(2424), 1, + sym_cell_path, + ACTIONS(1847), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254606,7 +255802,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(5180), 44, + ACTIONS(1849), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254618,14 +255815,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -254651,14 +255848,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, - [19400] = 5, - ACTIONS(251), 1, + [16501] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5126), 1, - aux_sym__immediate_decimal_token2, - STATE(1957), 1, + ACTIONS(5082), 1, + anon_sym_DOT2, + STATE(1640), 1, + aux_sym_cell_path_repeat1, + STATE(1783), 1, + sym_path, + STATE(1965), 1, sym_comment, - ACTIONS(1755), 14, + STATE(2432), 1, + sym_cell_path, + ACTIONS(1853), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254672,8 +255875,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_token2, - ACTIONS(1757), 45, + ACTIONS(1855), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254685,14 +255888,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_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -254701,7 +255904,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -254719,18 +255921,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, - [19473] = 7, - ACTIONS(251), 1, + [16582] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(1958), 1, + ACTIONS(5082), 1, + anon_sym_DOT2, + STATE(1640), 1, + aux_sym_cell_path_repeat1, + STATE(1783), 1, + sym_path, + STATE(1966), 1, sym_comment, - STATE(2245), 1, - aux_sym_shebang_repeat1, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5182), 13, + STATE(2437), 1, + sym_cell_path, + ACTIONS(1869), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254744,7 +255948,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(5180), 44, + ACTIONS(1871), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254756,14 +255961,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -254789,23 +255994,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, - [19550] = 7, - ACTIONS(251), 1, + [16663] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(1959), 1, + ACTIONS(1010), 1, + anon_sym_DOT_DOT2, + ACTIONS(4665), 1, + anon_sym_COLON2, + STATE(1967), 1, sym_comment, - STATE(2253), 1, - aux_sym_shebang_repeat1, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5182), 13, + ACTIONS(1012), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5006), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + ACTIONS(5010), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -254814,7 +256021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 44, + ACTIONS(5004), 20, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254826,14 +256033,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_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + 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(5008), 25, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -254851,26 +256068,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [19627] = 7, - ACTIONS(251), 1, + [16746] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, + ACTIONS(4452), 1, anon_sym_LPAREN2, - STATE(1960), 1, + STATE(1968), 1, sym_comment, - STATE(2290), 1, + STATE(2199), 1, aux_sym_shebang_repeat1, - STATE(7384), 1, + STATE(7383), 1, sym__expr_parenthesized_immediate, - ACTIONS(5182), 13, + ACTIONS(5092), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254884,7 +256093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 44, + ACTIONS(5090), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254904,6 +256113,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -254929,14 +256140,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, - [19704] = 5, - ACTIONS(251), 1, + [16825] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5184), 1, - aux_sym__immediate_decimal_token2, - STATE(1961), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(1969), 1, sym_comment, - ACTIONS(1783), 14, + STATE(2208), 1, + aux_sym_shebang_repeat1, + STATE(7383), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5092), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254950,8 +256165,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_token2, - ACTIONS(1785), 45, + ACTIONS(5090), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254966,11 +256180,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -254979,7 +256195,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -254997,23 +256212,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, - [19777] = 7, - ACTIONS(251), 1, + [16904] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(1962), 1, + ACTIONS(1010), 1, + anon_sym_DOT_DOT2, + ACTIONS(1014), 1, + anon_sym_COLON2, + STATE(1970), 1, sym_comment, - STATE(2296), 1, - aux_sym_shebang_repeat1, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5182), 13, + ACTIONS(1012), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5006), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + ACTIONS(5010), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -255022,7 +256239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 44, + ACTIONS(5004), 20, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255034,14 +256251,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_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + 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(5008), 25, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -255059,6 +256286,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + [16987] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2063), 1, + aux_sym_unquoted_token4, + STATE(1971), 1, + sym_comment, + ACTIONS(998), 21, + sym_raw_string_begin, + 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, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1002), 40, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -255067,23 +256355,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, - [19854] = 7, - ACTIONS(251), 1, + aux_sym_unquoted_token1, + [17062] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(1963), 1, + STATE(1972), 1, sym_comment, - STATE(2157), 1, - aux_sym_shebang_repeat1, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5026), 17, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -255092,7 +256378,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 44, + aux_sym_unquoted_token1, + ACTIONS(5024), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255104,31 +256393,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_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -255137,18 +256425,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, - [19931] = 7, - ACTIONS(251), 1, + [17135] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(1964), 1, - sym_comment, - STATE(2302), 1, - aux_sym_shebang_repeat1, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5182), 13, + ACTIONS(5082), 1, + anon_sym_DOT2, + STATE(1640), 1, + aux_sym_cell_path_repeat1, + STATE(1783), 1, + sym_path, + STATE(1973), 1, + sym_comment, + STATE(2461), 1, + sym_cell_path, + ACTIONS(1885), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255162,7 +256452,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(5180), 44, + ACTIONS(1887), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255174,14 +256465,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -255207,18 +256498,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, - [20008] = 7, - ACTIONS(251), 1, + [17216] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(1965), 1, + ACTIONS(5082), 1, + anon_sym_DOT2, + STATE(1640), 1, + aux_sym_cell_path_repeat1, + STATE(1783), 1, + sym_path, + STATE(1974), 1, sym_comment, - STATE(2247), 1, - aux_sym_shebang_repeat1, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5182), 13, + STATE(2462), 1, + sym_cell_path, + ACTIONS(1889), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255232,7 +256525,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(5180), 44, + ACTIONS(1891), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255244,14 +256538,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -255277,20 +256571,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, - [20085] = 8, - ACTIONS(251), 1, + [17297] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5178), 1, + ACTIONS(5082), 1, anon_sym_DOT2, - STATE(1692), 1, + STATE(1640), 1, aux_sym_cell_path_repeat1, - STATE(1889), 1, + STATE(1783), 1, sym_path, - STATE(1966), 1, + STATE(1975), 1, sym_comment, - STATE(2487), 1, + STATE(2465), 1, sym_cell_path, - ACTIONS(1983), 13, + ACTIONS(1897), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255304,7 +256598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1985), 43, + ACTIONS(1899), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -255323,6 +256617,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -255348,12 +256644,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, - [20164] = 4, - ACTIONS(251), 1, + [17378] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1967), 1, + ACTIONS(5082), 1, + anon_sym_DOT2, + STATE(1640), 1, + aux_sym_cell_path_repeat1, + STATE(1783), 1, + sym_path, + STATE(1976), 1, sym_comment, - ACTIONS(2390), 13, + STATE(2474), 1, + sym_cell_path, + ACTIONS(1901), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255367,7 +256671,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(2392), 47, + ACTIONS(1903), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255379,17 +256684,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_DASH2, anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -255415,17 +256717,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, - [20235] = 4, - ACTIONS(251), 1, + [17459] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1968), 1, + ACTIONS(2071), 1, + aux_sym_unquoted_token4, + STATE(1977), 1, sym_comment, - ACTIONS(2394), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2069), 21, + sym_raw_string_begin, + 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, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2065), 40, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [17534] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5032), 1, + aux_sym__immediate_decimal_token2, + STATE(1978), 1, + sym_comment, + ACTIONS(1701), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -255434,7 +256810,10 @@ 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), 47, + aux_sym_unquoted_token1, + ACTIONS(1703), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255446,34 +256825,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_DASH2, - anon_sym_in2, - anon_sym_if, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -255482,17 +256857,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, - [20306] = 4, - ACTIONS(251), 1, + [17609] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1969), 1, + STATE(1979), 1, sym_comment, - ACTIONS(2398), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2322), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -255501,7 +256878,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(2400), 47, + aux_sym_unquoted_token1, + ACTIONS(2324), 46, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255513,34 +256892,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_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_if, + anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -255549,12 +256926,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, - [20377] = 4, - ACTIONS(251), 1, + [17682] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1970), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(1980), 1, sym_comment, - ACTIONS(2320), 13, + STATE(2290), 1, + aux_sym_shebang_repeat1, + STATE(7383), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5092), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255568,7 +256951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2322), 47, + ACTIONS(5090), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255583,14 +256966,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -255616,23 +256998,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, - [20448] = 7, - ACTIONS(251), 1, + [17761] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(1971), 1, + STATE(1981), 1, sym_comment, - STATE(2165), 1, - aux_sym_shebang_repeat1, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5182), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1861), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -255641,7 +257019,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(5180), 44, + aux_sym_unquoted_token1, + ACTIONS(1863), 46, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255653,31 +257033,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_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -255686,18 +257067,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, - [20525] = 7, - ACTIONS(251), 1, + [17834] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(1972), 1, + ACTIONS(5182), 1, + aux_sym__immediate_decimal_token2, + STATE(1982), 1, sym_comment, - STATE(2283), 1, - aux_sym_shebang_repeat1, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5182), 13, + ACTIONS(1701), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255711,7 +257088,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(5180), 44, + aux_sym_unquoted_token2, + ACTIONS(1703), 46, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255723,14 +257102,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -255739,6 +257118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -255756,18 +257136,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20602] = 7, - ACTIONS(251), 1, + [17908] = 39, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(155), 1, + anon_sym_LPAREN, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(185), 1, + anon_sym_DOT_DOT, + ACTIONS(201), 1, + aux_sym_expr_unary_token1, + 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(4181), 1, - anon_sym_LPAREN2, - STATE(1973), 1, + ACTIONS(249), 1, + sym_raw_string_begin, + ACTIONS(377), 1, + anon_sym_DASH2, + ACTIONS(1016), 1, + anon_sym_DOLLAR, + ACTIONS(3192), 1, + sym__newline, + ACTIONS(3430), 1, + anon_sym_null, + ACTIONS(3434), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3436), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3438), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3440), 1, + aux_sym__val_number_decimal_token4, + STATE(1536), 1, + sym__val_number, + STATE(1714), 1, + sym_val_variable, + STATE(1875), 1, + sym__inter_single_quotes, + STATE(1877), 1, + sym__inter_double_quotes, + STATE(1951), 1, + sym_expr_parenthesized, + STATE(1983), 1, sym_comment, - STATE(2177), 1, + STATE(2002), 1, + sym__expr_unary_minus, + STATE(2866), 1, aux_sym_shebang_repeat1, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5182), 13, + STATE(2975), 1, + sym__val_number_decimal, + STATE(3786), 1, + sym__expr_binary_expression_parenthesized, + STATE(6694), 1, + sym__expression_parenthesized, + ACTIONS(207), 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(3432), 2, + anon_sym_true, + anon_sym_false, + STATE(1392), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2381), 4, + sym_expr_unary, + sym_expr_binary_parenthesized, + sym_val_range, + sym__value, + ACTIONS(223), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2105), 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, + [18050] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + ACTIONS(1808), 1, + anon_sym_LPAREN2, + STATE(1984), 1, + sym_comment, + ACTIONS(1806), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255781,7 +257262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 44, + ACTIONS(1814), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255796,11 +257277,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -255826,25 +257309,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, - [20679] = 9, - ACTIONS(251), 1, + [18126] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1024), 1, - anon_sym_DOT_DOT2, - ACTIONS(4718), 1, - anon_sym_COLON2, - STATE(1974), 1, + STATE(1985), 1, sym_comment, - ACTIONS(1026), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5156), 5, + ACTIONS(2168), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5160), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -255853,7 +257328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5154), 20, + ACTIONS(2172), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255865,22 +257340,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_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, - ACTIONS(5158), 23, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -255898,18 +257369,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [20760] = 7, - ACTIONS(251), 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, + [18198] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(1975), 1, + STATE(1986), 1, sym_comment, - STATE(2222), 1, - aux_sym_shebang_repeat1, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5182), 13, + ACTIONS(1961), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255923,7 +257396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 44, + ACTIONS(1963), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255939,10 +257412,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -255968,121 +257445,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, - [20837] = 35, - ACTIONS(251), 1, + [18270] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1286), 1, - anon_sym_DQUOTE, - ACTIONS(1290), 1, - sym_raw_string_begin, - ACTIONS(3490), 1, - aux_sym_unquoted_token1, - ACTIONS(3958), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3960), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3962), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3964), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4098), 1, + STATE(1987), 1, + sym_comment, + ACTIONS(1766), 16, anon_sym_DOLLAR, - ACTIONS(4102), 1, - anon_sym_DOT_DOT, - ACTIONS(4116), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4118), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5190), 1, - anon_sym_LBRACK, - ACTIONS(5192), 1, - anon_sym_LPAREN, - ACTIONS(5194), 1, - anon_sym_DASH_DASH, - ACTIONS(5196), 1, anon_sym_DASH2, - ACTIONS(5200), 1, - sym_val_date, - STATE(1976), 1, - sym_comment, - STATE(2017), 1, - aux_sym_overlay_hide_repeat1, - STATE(5264), 1, - sym__inter_single_quotes, - STATE(5265), 1, - sym__inter_double_quotes, - STATE(5825), 1, - sym__val_number_decimal, - STATE(7519), 1, - sym__val_range, - STATE(7624), 1, - sym_val_bool, - STATE(7789), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(1288), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3956), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4104), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(3320), 2, - sym_val_list, - sym__flag, - STATE(3350), 2, - sym_short_flag, - sym_long_flag, - STATE(3668), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5198), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(5112), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2664), 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(2666), 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, - [20970] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(1977), 1, - sym_comment, - STATE(2299), 1, - aux_sym_shebang_repeat1, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5182), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + 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, @@ -256091,7 +257466,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 44, + aux_sym_unquoted_token1, + ACTIONS(1768), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256103,31 +257481,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_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -256136,23 +257513,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, - [21047] = 7, - ACTIONS(251), 1, + [18342] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(1978), 1, + STATE(1988), 1, sym_comment, - STATE(2279), 1, - aux_sym_shebang_repeat1, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2022), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -256161,7 +257534,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 44, + aux_sym_unquoted_token1, + ACTIONS(2024), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256173,31 +257549,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_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -256206,17 +257581,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, - [21124] = 4, - ACTIONS(251), 1, + [18414] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1979), 1, + STATE(1989), 1, sym_comment, - ACTIONS(2324), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5087), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -256225,7 +257602,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2326), 47, + aux_sym_unquoted_token1, + ACTIONS(5084), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256237,34 +257617,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_DASH2, - anon_sym_in2, - anon_sym_if, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -256273,18 +257649,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, - [21195] = 7, - ACTIONS(251), 1, + [18486] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(1980), 1, + STATE(1990), 1, sym_comment, - STATE(2197), 1, - aux_sym_shebang_repeat1, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5172), 13, + ACTIONS(2085), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -256298,7 +257668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5170), 44, + ACTIONS(2087), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256314,10 +257684,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -256343,21 +257717,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, - [21272] = 6, - ACTIONS(251), 1, + [18558] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5202), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5204), 1, - aux_sym__immediate_decimal_token2, - STATE(1981), 1, + STATE(1991), 1, sym_comment, - ACTIONS(1711), 14, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1639), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -256366,8 +257738,9 @@ 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_token2, - ACTIONS(1713), 44, + aux_sym_unquoted_token1, + ACTIONS(1651), 45, + sym_raw_string_begin, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -256380,30 +257753,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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -256412,23 +257785,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, - [21347] = 7, - ACTIONS(251), 1, + [18630] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(1982), 1, + STATE(1992), 1, sym_comment, - STATE(2190), 1, - aux_sym_shebang_repeat1, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5182), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5104), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -256437,7 +257806,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 44, + aux_sym_unquoted_token1, + ACTIONS(5102), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256449,31 +257821,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_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -256482,16 +257853,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, - [21424] = 6, - ACTIONS(251), 1, + [18702] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5206), 1, - anon_sym_DOT, - ACTIONS(5208), 1, - aux_sym__immediate_decimal_token2, - STATE(1983), 1, + ACTIONS(1818), 1, + anon_sym_LPAREN2, + ACTIONS(1826), 1, + aux_sym_unquoted_token2, + STATE(1993), 1, sym_comment, - ACTIONS(1755), 14, + ACTIONS(2164), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -256505,9 +257876,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_token2, - ACTIONS(1757), 44, - ts_builtin_sym_end, + ACTIONS(2166), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256519,12 +257888,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_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -256533,7 +257906,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -256551,17 +257923,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, - [21499] = 4, - ACTIONS(251), 1, + [18778] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1984), 1, + STATE(1994), 1, sym_comment, - ACTIONS(2406), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1002), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -256570,7 +257944,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2408), 47, + aux_sym_unquoted_token1, + ACTIONS(998), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256582,34 +257959,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_DASH2, - anon_sym_in2, - anon_sym_if, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -256618,23 +257991,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, - [21570] = 7, - ACTIONS(251), 1, + [18850] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(1985), 1, + STATE(1995), 1, sym_comment, - STATE(2303), 1, - aux_sym_shebang_repeat1, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2429), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -256643,7 +258012,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 44, + aux_sym_unquoted_token1, + ACTIONS(2431), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256655,31 +258027,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_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -256688,17 +258059,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, - [21647] = 4, - ACTIONS(251), 1, + [18922] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1986), 1, + STATE(1996), 1, sym_comment, - ACTIONS(2410), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2441), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -256707,7 +258080,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2412), 47, + aux_sym_unquoted_token1, + ACTIONS(2443), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256719,34 +258095,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_DASH2, - anon_sym_in2, - anon_sym_if, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -256755,23 +258127,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, - [21718] = 7, - ACTIONS(251), 1, + [18994] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(1987), 1, + STATE(1997), 1, sym_comment, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2441), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -256780,7 +258148,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 44, + aux_sym_unquoted_token1, + ACTIONS(2443), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256792,31 +258163,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_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -256825,30 +258195,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, - [21795] = 6, - ACTIONS(251), 1, + [19066] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4814), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5210), 1, - anon_sym_DOT, - STATE(1988), 1, + ACTIONS(2067), 1, + anon_sym_LPAREN2, + ACTIONS(2071), 1, + aux_sym_unquoted_token4, + STATE(1998), 1, sym_comment, - ACTIONS(1755), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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), 45, + ACTIONS(2069), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256861,31 +258217,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(2065), 46, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, @@ -256894,32 +258265,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, - [21870] = 7, - ACTIONS(251), 1, + [19142] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4181), 1, + ACTIONS(2061), 1, anon_sym_LPAREN2, - STATE(1989), 1, + ACTIONS(2063), 1, + aux_sym_unquoted_token4, + STATE(1999), 1, sym_comment, - STATE(2160), 1, - aux_sym_shebang_repeat1, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(5186), 44, + ACTIONS(998), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256932,30 +258287,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(1002), 46, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, @@ -256964,225 +258335,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, - [21947] = 38, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(157), 1, - anon_sym_LPAREN, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(187), 1, - anon_sym_DOT_DOT, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(237), 1, - anon_sym_DQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 1, + [19218] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(253), 1, - sym_raw_string_begin, - ACTIONS(383), 1, - anon_sym_DASH2, - ACTIONS(1030), 1, - anon_sym_DOLLAR, - ACTIONS(3408), 1, - anon_sym_null, - ACTIONS(3412), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3414), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3416), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3420), 1, - anon_sym_COLON2, - STATE(1667), 1, - sym__val_number, - STATE(1833), 1, - sym_val_variable, - STATE(1888), 1, - sym_expr_parenthesized, - STATE(1990), 1, + STATE(2000), 1, sym_comment, - STATE(2034), 1, - sym__inter_single_quotes, - STATE(2035), 1, - sym__inter_double_quotes, - STATE(2143), 1, - sym__expr_unary_minus, - STATE(3154), 1, - sym__val_number_decimal, - STATE(3865), 1, - sym__expr_binary_expression, - STATE(7442), 1, - sym__expression, - ACTIONS(211), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(239), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3410), 2, - anon_sym_true, - anon_sym_false, - STATE(1418), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2141), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(227), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2085), 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, - [22086] = 38, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(157), 1, - anon_sym_LPAREN, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(187), 1, - anon_sym_DOT_DOT, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(237), 1, - anon_sym_DQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(253), 1, - sym_raw_string_begin, - ACTIONS(383), 1, - anon_sym_DASH2, - ACTIONS(1030), 1, + ACTIONS(5148), 16, anon_sym_DOLLAR, - ACTIONS(3408), 1, - anon_sym_null, - ACTIONS(3412), 1, + anon_sym_DASH2, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - ACTIONS(3414), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3416), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3420), 1, - anon_sym_COLON2, - STATE(1667), 1, - sym__val_number, - STATE(1833), 1, - sym_val_variable, - STATE(1888), 1, - sym_expr_parenthesized, - STATE(1991), 1, - sym_comment, - STATE(2034), 1, - sym__inter_single_quotes, - STATE(2035), 1, - sym__inter_double_quotes, - STATE(2143), 1, - sym__expr_unary_minus, - STATE(3154), 1, - sym__val_number_decimal, - STATE(3865), 1, - sym__expr_binary_expression, - STATE(7453), 1, - sym__expression, - ACTIONS(211), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(233), 2, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(239), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3410), 2, - anon_sym_true, - anon_sym_false, - STATE(1418), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2141), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(227), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2085), 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, - [22225] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(1992), 1, - sym_comment, - STATE(2161), 1, - aux_sym_shebang_repeat1, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5172), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -257191,7 +258356,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5170), 44, + aux_sym_unquoted_token1, + ACTIONS(5146), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257203,31 +258371,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_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -257236,23 +258403,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, - [22302] = 7, - ACTIONS(251), 1, + [19290] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(1993), 1, + STATE(2001), 1, sym_comment, - STATE(2212), 1, - aux_sym_shebang_repeat1, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2318), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -257261,7 +258424,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 44, + aux_sym_unquoted_token1, + ACTIONS(2320), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257273,31 +258439,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_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -257306,12 +258471,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, - [22379] = 4, - ACTIONS(251), 1, + [19362] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1994), 1, + STATE(2002), 1, sym_comment, - ACTIONS(2505), 13, + ACTIONS(5199), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257325,7 +258490,7 @@ 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), 47, + ACTIONS(5197), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257340,7 +258505,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, @@ -257348,6 +258512,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -257373,17 +258539,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, - [22450] = 4, - ACTIONS(251), 1, + [19434] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1995), 1, + STATE(2003), 1, sym_comment, - ACTIONS(2418), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5152), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -257392,7 +258560,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2420), 47, + aux_sym_unquoted_token1, + ACTIONS(5150), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257404,34 +258575,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_DASH2, - anon_sym_in2, - anon_sym_if, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -257440,12 +258607,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, - [22521] = 4, - ACTIONS(251), 1, + [19506] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1996), 1, + ACTIONS(1818), 1, + anon_sym_LPAREN2, + ACTIONS(1826), 1, + aux_sym_unquoted_token2, + STATE(2004), 1, sym_comment, - ACTIONS(2422), 13, + ACTIONS(1816), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257459,7 +258630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2424), 47, + ACTIONS(1824), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257474,14 +258645,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -257507,17 +258677,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, - [22592] = 4, - ACTIONS(251), 1, + [19582] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1997), 1, + STATE(2005), 1, sym_comment, - ACTIONS(2426), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2043), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -257526,7 +258698,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2428), 47, + aux_sym_unquoted_token1, + ACTIONS(2049), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257538,34 +258713,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_DASH2, - anon_sym_in2, - anon_sym_if, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -257574,17 +258745,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, - [22663] = 4, - ACTIONS(251), 1, + [19654] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1998), 1, + STATE(2006), 1, sym_comment, - ACTIONS(2430), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2461), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -257593,7 +258766,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2432), 47, + aux_sym_unquoted_token1, + ACTIONS(2463), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257605,34 +258781,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_DASH2, - anon_sym_in2, - anon_sym_if, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -257641,17 +258813,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, - [22734] = 4, - ACTIONS(251), 1, + [19726] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1999), 1, + STATE(2007), 1, sym_comment, - ACTIONS(1917), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2477), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -257660,7 +258834,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1919), 47, + aux_sym_unquoted_token1, + ACTIONS(2479), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257672,34 +258849,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_DASH2, - anon_sym_in2, - anon_sym_if, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -257708,17 +258881,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, - [22805] = 4, - ACTIONS(251), 1, + [19798] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2000), 1, + STATE(2008), 1, sym_comment, - ACTIONS(2328), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5168), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -257727,7 +258902,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2330), 47, + aux_sym_unquoted_token1, + ACTIONS(5166), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257739,34 +258917,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_DASH2, - anon_sym_in2, - anon_sym_if, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -257775,32 +258949,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, - [22876] = 7, - ACTIONS(251), 1, + [19870] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(2001), 1, + STATE(2009), 1, sym_comment, - STATE(2289), 1, - aux_sym_shebang_repeat1, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(5186), 44, + ACTIONS(2087), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257813,30 +258967,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_RBRACE, + anon_sym_LPAREN2, + ACTIONS(2085), 47, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, @@ -257845,25 +259016,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, - [22953] = 8, - ACTIONS(251), 1, + aux_sym_unquoted_token4, + [19942] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(1692), 1, - aux_sym_cell_path_repeat1, - STATE(1889), 1, - sym_path, - STATE(2002), 1, + STATE(2010), 1, sym_comment, - STATE(2453), 1, - sym_cell_path, - ACTIONS(1909), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2026), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -257872,7 +259038,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(1911), 43, + aux_sym_unquoted_token1, + ACTIONS(2028), 45, + sym_raw_string_begin, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -257885,29 +259053,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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -257916,35 +259085,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, - [23032] = 8, - ACTIONS(251), 1, + [20014] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(1692), 1, - aux_sym_cell_path_repeat1, - STATE(1889), 1, - sym_path, - STATE(2003), 1, + ACTIONS(2075), 1, + anon_sym_LPAREN2, + ACTIONS(2079), 1, + aux_sym_unquoted_token4, + STATE(2011), 1, sym_comment, - STATE(2460), 1, - sym_cell_path, - ACTIONS(1913), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(1915), 43, - ts_builtin_sym_end, + ACTIONS(2077), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257956,56 +259106,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, + ACTIONS(2073), 46, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [23111] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(1692), 1, - aux_sym_cell_path_repeat1, - STATE(1889), 1, - sym_path, - STATE(2004), 1, - sym_comment, - STATE(2554), 1, - sym_cell_path, - ACTIONS(1917), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -258014,8 +259147,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1919), 43, - 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, + [20090] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2075), 1, + anon_sym_LPAREN2, + ACTIONS(2079), 1, + aux_sym_unquoted_token4, + STATE(2012), 1, + sym_comment, + ACTIONS(2083), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258027,29 +259176,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, + ACTIONS(2081), 46, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, @@ -258058,25 +259225,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, - [23190] = 8, - ACTIONS(251), 1, + [20166] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(1692), 1, - aux_sym_cell_path_repeat1, - STATE(1889), 1, - sym_path, - STATE(2005), 1, + STATE(2013), 1, sym_comment, - STATE(2555), 1, - sym_cell_path, - ACTIONS(1925), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5058), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -258085,7 +259246,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(1927), 43, + aux_sym_unquoted_token1, + ACTIONS(5056), 45, + sym_raw_string_begin, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -258098,29 +259261,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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -258129,20 +259293,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, - [23269] = 8, - ACTIONS(251), 1, + [20238] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(1692), 1, - aux_sym_cell_path_repeat1, - STATE(1889), 1, - sym_path, - STATE(2006), 1, + STATE(2014), 1, sym_comment, - STATE(2459), 1, - sym_cell_path, - ACTIONS(1891), 13, + ACTIONS(5006), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -258156,8 +259312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1893), 43, - ts_builtin_sym_end, + ACTIONS(5008), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258169,12 +259324,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -258200,25 +259361,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, - [23348] = 8, - ACTIONS(251), 1, + [20310] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(1692), 1, - aux_sym_cell_path_repeat1, - STATE(1889), 1, - sym_path, - STATE(2007), 1, + STATE(2015), 1, sym_comment, - STATE(2556), 1, - sym_cell_path, - ACTIONS(1929), 13, + ACTIONS(986), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -258227,7 +259381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1931), 43, + ACTIONS(988), 47, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -258246,6 +259400,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -258263,6 +259419,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + 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, @@ -258271,12 +259429,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, - [23427] = 4, - ACTIONS(251), 1, + [20382] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2008), 1, + STATE(2016), 1, sym_comment, - ACTIONS(2332), 13, + ACTIONS(2364), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -258290,7 +259448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2334), 47, + ACTIONS(2366), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258305,7 +259463,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, @@ -258313,6 +259470,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -258338,12 +259497,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, - [23498] = 4, - ACTIONS(251), 1, + [20454] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2009), 1, + ACTIONS(1562), 1, + aux_sym_unquoted_token2, + ACTIONS(2170), 1, + anon_sym_LPAREN2, + STATE(2017), 1, sym_comment, - ACTIONS(1937), 13, + ACTIONS(2168), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -258357,7 +259520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1939), 47, + ACTIONS(2172), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258372,14 +259535,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -258405,25 +259567,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, - [23569] = 8, - ACTIONS(251), 1, + [20530] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(1692), 1, - aux_sym_cell_path_repeat1, - STATE(1889), 1, - sym_path, - STATE(2010), 1, + STATE(2018), 1, sym_comment, - STATE(2557), 1, - sym_cell_path, - ACTIONS(1933), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5116), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -258432,7 +259588,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(1935), 43, + aux_sym_unquoted_token1, + ACTIONS(5114), 45, + sym_raw_string_begin, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -258445,29 +259603,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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -258476,20 +259635,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, - [23648] = 8, - ACTIONS(251), 1, + [20602] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(1692), 1, - aux_sym_cell_path_repeat1, - STATE(1889), 1, - sym_path, - STATE(2011), 1, + STATE(2019), 1, sym_comment, - STATE(2461), 1, - sym_cell_path, - ACTIONS(1895), 13, + ACTIONS(1917), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -258503,8 +259654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1897), 43, - ts_builtin_sym_end, + ACTIONS(1919), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258516,12 +259666,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -258547,25 +259703,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, - [23727] = 8, - ACTIONS(251), 1, + [20674] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(1692), 1, - aux_sym_cell_path_repeat1, - STATE(1889), 1, - sym_path, - STATE(2012), 1, + STATE(2020), 1, sym_comment, - STATE(2522), 1, - sym_cell_path, - ACTIONS(1941), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2338), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -258574,7 +259724,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(1943), 43, + aux_sym_unquoted_token1, + ACTIONS(2340), 45, + sym_raw_string_begin, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -258587,29 +259739,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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -258618,17 +259771,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, - [23806] = 4, - ACTIONS(251), 1, + [20746] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2013), 1, + STATE(2021), 1, sym_comment, - ACTIONS(1949), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2344), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -258637,7 +259792,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1951), 47, + aux_sym_unquoted_token1, + ACTIONS(2346), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258649,34 +259807,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_DASH2, - anon_sym_in2, - anon_sym_if, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -258685,12 +259839,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, - [23877] = 4, - ACTIONS(251), 1, + [20818] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2014), 1, + STATE(2022), 1, sym_comment, - ACTIONS(1953), 13, + ACTIONS(4962), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -258704,7 +259858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1955), 47, + ACTIONS(4960), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258719,7 +259873,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, @@ -258727,6 +259880,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -258752,25 +259907,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, - [23948] = 9, - ACTIONS(251), 1, + [20890] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1024), 1, - anon_sym_DOT_DOT2, - ACTIONS(5212), 1, - sym__newline, - STATE(2015), 1, + STATE(2023), 1, sym_comment, - ACTIONS(1026), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5217), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5221), 8, + ACTIONS(5026), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -258779,7 +259928,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5215), 20, + aux_sym_unquoted_token1, + ACTIONS(5024), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -258790,8 +259943,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_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -258800,49 +259975,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(5219), 23, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [24029] = 8, - ACTIONS(251), 1, + [20962] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(1692), 1, - aux_sym_cell_path_repeat1, - STATE(1889), 1, - sym_path, - STATE(2016), 1, + STATE(2024), 1, sym_comment, - STATE(2538), 1, - sym_cell_path, - ACTIONS(1855), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1917), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -258851,7 +259996,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(1857), 43, + aux_sym_unquoted_token1, + ACTIONS(1919), 45, + sym_raw_string_begin, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -258864,29 +260011,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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -258895,86 +260043,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, - [24108] = 35, - ACTIONS(251), 1, + [21034] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1286), 1, - anon_sym_DQUOTE, - ACTIONS(1290), 1, - sym_raw_string_begin, - ACTIONS(3490), 1, - aux_sym_unquoted_token1, - ACTIONS(3958), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3960), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3962), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3964), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4098), 1, + STATE(2025), 1, + sym_comment, + ACTIONS(2385), 16, anon_sym_DOLLAR, - ACTIONS(4102), 1, - anon_sym_DOT_DOT, - ACTIONS(4116), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4118), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5190), 1, - anon_sym_LBRACK, - ACTIONS(5192), 1, - anon_sym_LPAREN, - ACTIONS(5194), 1, - anon_sym_DASH_DASH, - ACTIONS(5196), 1, anon_sym_DASH2, - ACTIONS(5200), 1, - sym_val_date, - STATE(2017), 1, - sym_comment, - STATE(3181), 1, - aux_sym_overlay_hide_repeat1, - STATE(5264), 1, - sym__inter_single_quotes, - STATE(5265), 1, - sym__inter_double_quotes, - STATE(5825), 1, - sym__val_number_decimal, - STATE(7519), 1, - sym__val_range, - STATE(7624), 1, - sym_val_bool, - STATE(7789), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(1288), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3956), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4104), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(3320), 2, - sym_val_list, - sym__flag, - STATE(3350), 2, - sym_short_flag, - sym_long_flag, - STATE(3668), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5198), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(5025), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2664), 8, + 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, @@ -258983,8 +260064,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2666), 9, + aux_sym_unquoted_token1, + ACTIONS(2387), 45, + sym_raw_string_begin, + 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, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -258993,18 +260111,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, - [24241] = 7, - ACTIONS(251), 1, + [21106] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(2018), 1, + STATE(2026), 1, sym_comment, - STATE(2196), 1, - aux_sym_shebang_repeat1, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5176), 13, + ACTIONS(2385), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -259018,7 +260130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5174), 44, + ACTIONS(2387), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259034,10 +260146,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -259063,86 +260179,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24318] = 35, - ACTIONS(251), 1, + [21178] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3534), 1, - aux_sym_unquoted_token1, - ACTIONS(3958), 1, + STATE(2027), 1, + sym_comment, + ACTIONS(2445), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - ACTIONS(3960), 1, + 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(2447), 45, + sym_raw_string_begin, + 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, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, - ACTIONS(3962), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3964), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4397), 1, - anon_sym_DOLLAR, - ACTIONS(4401), 1, - anon_sym_DOT_DOT, - ACTIONS(4427), 1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(4431), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4433), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4435), 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, + [21250] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2028), 1, + sym_comment, + ACTIONS(5132), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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(5130), 45, sym_raw_string_begin, - ACTIONS(5190), 1, + 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, - ACTIONS(5194), 1, - anon_sym_DASH_DASH, - ACTIONS(5196), 1, - anon_sym_DASH2, - ACTIONS(5200), 1, - sym_val_date, - ACTIONS(5223), 1, anon_sym_LPAREN, - STATE(2019), 1, - sym_comment, - STATE(2037), 1, - aux_sym_overlay_hide_repeat1, - STATE(5636), 1, - sym__inter_single_quotes, - STATE(5637), 1, - sym__inter_double_quotes, - STATE(5813), 1, - sym__val_number_decimal, - STATE(7624), 1, - sym_val_bool, - STATE(7836), 1, - sym__val_range, - STATE(7845), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(3956), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4403), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(4429), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3320), 2, - sym_val_list, - sym__flag, - STATE(3350), 2, - sym_short_flag, - sym_long_flag, - STATE(5380), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5225), 3, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(5185), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2664), 8, + 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, + [21322] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2029), 1, + sym_comment, + ACTIONS(2374), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -259151,8 +260336,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2666), 9, + aux_sym_unquoted_token1, + ACTIONS(2376), 45, + sym_raw_string_begin, + 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, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -259161,12 +260383,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, - [24451] = 4, - ACTIONS(251), 1, + [21394] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2020), 1, + STATE(2030), 1, sym_comment, - ACTIONS(2336), 13, + ACTIONS(4962), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -259180,7 +260402,7 @@ 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), 47, + ACTIONS(4960), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259195,7 +260417,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, @@ -259203,6 +260424,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -259228,12 +260451,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, - [24522] = 4, - ACTIONS(251), 1, + [21466] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2021), 1, + ACTIONS(5201), 1, + anon_sym_DOT_DOT2, + STATE(2031), 1, sym_comment, - ACTIONS(1965), 13, + ACTIONS(5203), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2043), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -259247,7 +260475,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(1967), 47, + ACTIONS(2049), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259259,17 +260488,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_DASH2, anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -259295,17 +260521,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, - [24593] = 4, - ACTIONS(251), 1, + [21542] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2022), 1, + STATE(2032), 1, sym_comment, - ACTIONS(2342), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2030), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -259314,7 +260542,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2344), 47, + aux_sym_unquoted_token1, + ACTIONS(2036), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259326,34 +260557,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_DASH2, - anon_sym_in2, - anon_sym_if, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -259362,12 +260589,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, - [24664] = 4, - ACTIONS(251), 1, + [21614] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2023), 1, + ACTIONS(2192), 1, + anon_sym_LPAREN2, + ACTIONS(2196), 1, + aux_sym_unquoted_token2, + STATE(2033), 1, sym_comment, - ACTIONS(2346), 13, + ACTIONS(2190), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -259381,7 +260612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2348), 47, + ACTIONS(2194), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259396,14 +260627,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -259429,17 +260659,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, - [24735] = 4, - ACTIONS(251), 1, + [21690] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2024), 1, + STATE(2034), 1, sym_comment, - ACTIONS(1969), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5136), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -259448,7 +260680,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1971), 47, + aux_sym_unquoted_token1, + ACTIONS(5134), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259460,34 +260695,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_DASH2, - anon_sym_in2, - anon_sym_if, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -259496,23 +260727,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, - [24806] = 7, - ACTIONS(251), 1, + [21762] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(2025), 1, + STATE(2035), 1, sym_comment, - STATE(2185), 1, - aux_sym_shebang_repeat1, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5176), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1977), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -259521,7 +260748,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5174), 44, + aux_sym_unquoted_token1, + ACTIONS(1983), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259533,31 +260763,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_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -259566,12 +260795,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, - [24883] = 4, - ACTIONS(251), 1, + [21834] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2026), 1, + STATE(2036), 1, sym_comment, - ACTIONS(1905), 13, + ACTIONS(4962), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -259585,7 +260814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1907), 47, + ACTIONS(4960), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259600,7 +260829,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, @@ -259608,6 +260836,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -259633,23 +260863,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, - [24954] = 7, - ACTIONS(251), 1, + [21906] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(2027), 1, + STATE(2037), 1, sym_comment, - STATE(2186), 1, - aux_sym_shebang_repeat1, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5176), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1985), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -259658,7 +260884,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5174), 44, + aux_sym_unquoted_token1, + ACTIONS(1991), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259670,31 +260899,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_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -259703,12 +260931,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, - [25031] = 4, - ACTIONS(251), 1, + [21978] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2028), 1, + ACTIONS(5205), 1, + anon_sym_DOT_DOT2, + STATE(2038), 1, sym_comment, - ACTIONS(2350), 13, + ACTIONS(5207), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1806), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -259722,7 +260955,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(2352), 47, + ACTIONS(1814), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259734,17 +260968,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_DASH2, anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -259770,17 +261001,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, - [25102] = 4, - ACTIONS(251), 1, + [22054] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2029), 1, + STATE(2039), 1, sym_comment, - ACTIONS(2354), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1792), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -259789,7 +261022,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2356), 47, + aux_sym_unquoted_token1, + ACTIONS(1794), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259801,34 +261037,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_DASH2, - anon_sym_in2, - anon_sym_if, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -259837,12 +261069,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, - [25173] = 4, - ACTIONS(251), 1, + [22126] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2030), 1, + STATE(2040), 1, sym_comment, - ACTIONS(1983), 13, + ACTIONS(4962), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -259856,7 +261088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1985), 47, + ACTIONS(4960), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259871,7 +261103,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, @@ -259879,6 +261110,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -259904,12 +261137,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, - [25244] = 4, - ACTIONS(251), 1, + [22198] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2031), 1, + ACTIONS(5209), 1, + aux_sym__immediate_decimal_token2, + STATE(2041), 1, sym_comment, - ACTIONS(2358), 13, + ACTIONS(1766), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -259923,7 +261158,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(2360), 47, + aux_sym_unquoted_token2, + ACTIONS(1768), 46, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259935,17 +261172,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_DASH2, anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -259954,6 +261188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -259971,17 +261206,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, - [25315] = 4, - ACTIONS(251), 1, + [22272] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2032), 1, + STATE(2042), 1, sym_comment, - ACTIONS(2362), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2322), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -259990,7 +261227,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2364), 47, + aux_sym_unquoted_token1, + ACTIONS(2324), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260002,34 +261242,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_DASH2, - anon_sym_in2, - anon_sym_if, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -260038,23 +261274,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, - [25386] = 7, - ACTIONS(251), 1, + [22344] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(2033), 1, + STATE(2043), 1, sym_comment, - STATE(2217), 1, - aux_sym_shebang_repeat1, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, + ACTIONS(2022), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260063,7 +261294,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(5186), 44, + ACTIONS(2024), 47, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260075,14 +261307,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -260100,6 +261332,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + 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, @@ -260108,17 +261342,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, - [25463] = 4, - ACTIONS(251), 1, + [22416] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2034), 1, + STATE(2044), 1, sym_comment, - ACTIONS(2366), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2326), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -260127,7 +261363,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2368), 47, + aux_sym_unquoted_token1, + ACTIONS(2328), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260139,34 +261378,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_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_COLON2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -260175,17 +261410,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, - [25534] = 4, - ACTIONS(251), 1, + [22488] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2035), 1, + STATE(2045), 1, sym_comment, - ACTIONS(2366), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2334), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -260194,7 +261431,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2368), 47, + aux_sym_unquoted_token1, + ACTIONS(2336), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260206,34 +261446,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_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_COLON2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -260242,18 +261478,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, - [25605] = 7, - ACTIONS(251), 1, + [22560] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(2036), 1, + STATE(2046), 1, sym_comment, - STATE(2292), 1, - aux_sym_shebang_repeat1, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5172), 13, + ACTIONS(4962), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -260267,7 +261497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5170), 44, + ACTIONS(4960), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260283,10 +261513,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -260312,86 +261546,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, - [25682] = 35, - ACTIONS(251), 1, + [22632] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3534), 1, - aux_sym_unquoted_token1, - ACTIONS(3958), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3960), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3962), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3964), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4397), 1, + STATE(2047), 1, + sym_comment, + ACTIONS(2356), 16, anon_sym_DOLLAR, - ACTIONS(4401), 1, - anon_sym_DOT_DOT, - ACTIONS(4427), 1, - anon_sym_DQUOTE, - ACTIONS(4431), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4433), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4435), 1, - sym_raw_string_begin, - ACTIONS(5190), 1, - anon_sym_LBRACK, - ACTIONS(5194), 1, - anon_sym_DASH_DASH, - ACTIONS(5196), 1, anon_sym_DASH2, - ACTIONS(5200), 1, - sym_val_date, - ACTIONS(5223), 1, - anon_sym_LPAREN, - STATE(2037), 1, - sym_comment, - STATE(3181), 1, - aux_sym_overlay_hide_repeat1, - STATE(5636), 1, - sym__inter_single_quotes, - STATE(5637), 1, - sym__inter_double_quotes, - STATE(5813), 1, - sym__val_number_decimal, - STATE(7624), 1, - sym_val_bool, - STATE(7836), 1, - sym__val_range, - STATE(7845), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(3956), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4403), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4429), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3320), 2, - sym_val_list, - sym__flag, - STATE(3350), 2, - sym_short_flag, - sym_long_flag, - STATE(5380), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5225), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(5146), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2664), 8, + 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, @@ -260400,8 +261567,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2666), 9, + aux_sym_unquoted_token1, + ACTIONS(2358), 45, + sym_raw_string_begin, + 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, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -260410,12 +261614,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, - [25815] = 4, - ACTIONS(251), 1, + [22704] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2038), 1, + STATE(2048), 1, sym_comment, - ACTIONS(2370), 13, + ACTIONS(2190), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -260429,7 +261633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2372), 47, + ACTIONS(2194), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260451,6 +261655,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -260468,7 +261674,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_COLON2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260477,23 +261682,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, - [25886] = 7, - ACTIONS(251), 1, + [22776] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(2039), 1, + ACTIONS(4694), 1, + anon_sym_DOT_DOT2, + STATE(2049), 1, sym_comment, - STATE(2220), 1, - aux_sym_shebang_repeat1, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5172), 13, + ACTIONS(4696), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5006), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + ACTIONS(5010), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260502,7 +261707,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(5170), 44, + ACTIONS(5004), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260514,14 +261720,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_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + 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(5008), 25, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -260539,25 +261754,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [25963] = 4, - ACTIONS(251), 1, + [22856] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2040), 1, + STATE(2050), 1, sym_comment, - ACTIONS(2374), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2360), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -260566,7 +261775,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2376), 47, + aux_sym_unquoted_token1, + ACTIONS(2362), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260578,34 +261790,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_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_COLON2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -260614,227 +261822,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26034] = 38, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(157), 1, - anon_sym_LPAREN, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(187), 1, - anon_sym_DOT_DOT, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(237), 1, - anon_sym_DQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 1, + [22928] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(253), 1, - sym_raw_string_begin, - ACTIONS(383), 1, - anon_sym_DASH2, - ACTIONS(1030), 1, + STATE(2051), 1, + sym_comment, + ACTIONS(2370), 16, anon_sym_DOLLAR, - ACTIONS(3408), 1, - anon_sym_null, - ACTIONS(3412), 1, + anon_sym_DASH2, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - ACTIONS(3414), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3416), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3442), 1, - anon_sym_COLON2, - STATE(1667), 1, - sym__val_number, - STATE(1833), 1, - sym_val_variable, - STATE(1888), 1, - sym_expr_parenthesized, - STATE(2034), 1, - sym__inter_single_quotes, - STATE(2035), 1, - sym__inter_double_quotes, - STATE(2041), 1, - sym_comment, - STATE(2143), 1, - sym__expr_unary_minus, - STATE(3154), 1, - sym__val_number_decimal, - STATE(3865), 1, - sym__expr_binary_expression, - STATE(7442), 1, - sym__expression, - ACTIONS(211), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(233), 2, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(239), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3410), 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(2372), 45, + sym_raw_string_begin, + 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, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, anon_sym_true, anon_sym_false, - STATE(1418), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2141), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(227), 6, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2085), 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, - [26173] = 38, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(157), 1, - anon_sym_LPAREN, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(187), 1, - anon_sym_DOT_DOT, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, sym_val_date, - ACTIONS(237), 1, anon_sym_DQUOTE, - ACTIONS(241), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 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, + [23000] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(253), 1, - sym_raw_string_begin, - ACTIONS(383), 1, - anon_sym_DASH2, - ACTIONS(1030), 1, + STATE(2052), 1, + sym_comment, + ACTIONS(2457), 16, anon_sym_DOLLAR, - ACTIONS(3408), 1, - anon_sym_null, - ACTIONS(3412), 1, + anon_sym_DASH2, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - ACTIONS(3414), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3416), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3442), 1, - anon_sym_COLON2, - STATE(1667), 1, - sym__val_number, - STATE(1833), 1, - sym_val_variable, - STATE(1888), 1, - sym_expr_parenthesized, - STATE(2034), 1, - sym__inter_single_quotes, - STATE(2035), 1, - sym__inter_double_quotes, - STATE(2042), 1, - sym_comment, - STATE(2143), 1, - sym__expr_unary_minus, - STATE(3154), 1, - sym__val_number_decimal, - STATE(3865), 1, - sym__expr_binary_expression, - STATE(7453), 1, - sym__expression, - ACTIONS(211), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(233), 2, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(239), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3410), 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(2459), 45, + sym_raw_string_begin, + 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, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, anon_sym_true, anon_sym_false, - STATE(1418), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2141), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(227), 6, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2085), 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, - [26312] = 8, - ACTIONS(251), 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, + [23072] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(1692), 1, - aux_sym_cell_path_repeat1, - STATE(1889), 1, - sym_path, - STATE(2043), 1, + STATE(2053), 1, sym_comment, - STATE(2468), 1, - sym_cell_path, - ACTIONS(1921), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5140), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -260843,7 +261979,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(1923), 43, + aux_sym_unquoted_token1, + ACTIONS(5138), 45, + sym_raw_string_begin, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -260856,29 +261994,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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -260887,25 +262026,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, - [26391] = 9, - ACTIONS(251), 1, + [23144] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1024), 1, - anon_sym_DOT_DOT2, - ACTIONS(1028), 1, - anon_sym_COLON2, - STATE(2044), 1, + STATE(2054), 1, sym_comment, - ACTIONS(1026), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5156), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5160), 8, + ACTIONS(956), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -260914,7 +262047,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5154), 20, + aux_sym_unquoted_token1, + ACTIONS(958), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260926,7 +262062,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_RBRACE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -260935,42 +262094,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(5158), 23, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [26472] = 7, - ACTIONS(251), 1, + [23216] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(2045), 1, + STATE(2055), 1, sym_comment, - STATE(2224), 1, - aux_sym_shebang_repeat1, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5172), 13, + ACTIONS(4962), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -260984,7 +262113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5170), 44, + ACTIONS(4960), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261000,10 +262129,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -261029,23 +262162,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, - [26549] = 7, - ACTIONS(251), 1, + [23288] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2056), 1, + sym_comment, + ACTIONS(2306), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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(2308), 45, + sym_raw_string_begin, + 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, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [23360] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(2046), 1, + STATE(2057), 1, sym_comment, - STATE(2262), 1, - aux_sym_shebang_repeat1, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2364), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -261054,7 +262251,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 44, + aux_sym_unquoted_token1, + ACTIONS(2366), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261066,31 +262266,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_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -261099,23 +262298,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, - [26626] = 7, - ACTIONS(251), 1, + [23432] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(2047), 1, + STATE(2058), 1, sym_comment, - STATE(2225), 1, - aux_sym_shebang_repeat1, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5172), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2453), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -261124,7 +262319,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5170), 44, + aux_sym_unquoted_token1, + ACTIONS(2455), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261136,31 +262334,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_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -261169,17 +262366,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, - [26703] = 4, - ACTIONS(251), 1, + [23504] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2048), 1, + STATE(2059), 1, sym_comment, - ACTIONS(2501), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5144), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -261188,7 +262387,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2503), 47, + aux_sym_unquoted_token1, + ACTIONS(5142), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261200,34 +262402,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_DASH2, - anon_sym_in2, - anon_sym_if, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -261236,23 +262434,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26774] = 7, - ACTIONS(251), 1, + [23576] = 39, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(155), 1, + anon_sym_LPAREN, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(185), 1, + anon_sym_DOT_DOT, + ACTIONS(201), 1, + aux_sym_expr_unary_token1, + 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(4181), 1, - anon_sym_LPAREN2, - STATE(2049), 1, + ACTIONS(249), 1, + sym_raw_string_begin, + ACTIONS(377), 1, + anon_sym_DASH2, + ACTIONS(1016), 1, + anon_sym_DOLLAR, + ACTIONS(3192), 1, + sym__newline, + ACTIONS(3430), 1, + anon_sym_null, + ACTIONS(3434), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3436), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3438), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3440), 1, + aux_sym__val_number_decimal_token4, + STATE(1536), 1, + sym__val_number, + STATE(1714), 1, + sym_val_variable, + STATE(1875), 1, + sym__inter_single_quotes, + STATE(1877), 1, + sym__inter_double_quotes, + STATE(1951), 1, + sym_expr_parenthesized, + STATE(2002), 1, + sym__expr_unary_minus, + STATE(2060), 1, sym_comment, - STATE(2174), 1, + STATE(2114), 1, aux_sym_shebang_repeat1, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5172), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + STATE(2975), 1, + sym__val_number_decimal, + STATE(3786), 1, + sym__expr_binary_expression_parenthesized, + STATE(6229), 1, + sym__expression_parenthesized, + ACTIONS(207), 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(3432), 2, + anon_sym_true, + anon_sym_false, + STATE(1392), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2381), 4, + sym_expr_unary, + sym_expr_binary_parenthesized, + sym_val_range, + sym__value, + ACTIONS(223), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2105), 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, + [23718] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2061), 1, + sym_comment, + ACTIONS(2425), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -261261,7 +262558,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5170), 44, + aux_sym_unquoted_token1, + ACTIONS(2427), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261273,31 +262573,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_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -261306,22 +262605,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, - [26851] = 6, - ACTIONS(251), 1, + [23790] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1024), 1, - anon_sym_DOT_DOT2, - STATE(2050), 1, + STATE(2062), 1, sym_comment, - ACTIONS(1026), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5217), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2433), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -261330,7 +262626,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5219), 44, + aux_sym_unquoted_token1, + ACTIONS(2435), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261342,31 +262641,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_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -261375,17 +262673,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, - [26926] = 4, - ACTIONS(251), 1, + [23862] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2051), 1, + STATE(2063), 1, sym_comment, - ACTIONS(2043), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2449), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -261394,7 +262694,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2049), 47, + aux_sym_unquoted_token1, + ACTIONS(2451), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261406,34 +262709,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_DASH2, - anon_sym_in2, - anon_sym_if, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -261442,23 +262741,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, - [26997] = 7, - ACTIONS(251), 1, + [23934] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(2052), 1, + STATE(2064), 1, sym_comment, - STATE(2163), 1, - aux_sym_shebang_repeat1, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5172), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2465), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -261467,7 +262762,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5170), 44, + aux_sym_unquoted_token1, + ACTIONS(2467), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261479,31 +262777,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_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -261512,23 +262809,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, - [27074] = 7, - ACTIONS(251), 1, + [24006] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(2053), 1, + STATE(2065), 1, sym_comment, - STATE(2187), 1, - aux_sym_shebang_repeat1, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5176), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(4924), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -261537,7 +262830,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(5174), 44, + aux_sym_unquoted_token1, + ACTIONS(4922), 45, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261549,31 +262844,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_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -261582,25 +262877,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, - [27151] = 8, - ACTIONS(251), 1, + [24078] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(1692), 1, - aux_sym_cell_path_repeat1, - STATE(1889), 1, - sym_path, - STATE(2054), 1, + STATE(2066), 1, sym_comment, - STATE(2483), 1, - sym_cell_path, - ACTIONS(1965), 13, + ACTIONS(1676), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261609,7 +262897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1967), 43, + ACTIONS(1678), 47, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -261628,6 +262916,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -261645,6 +262935,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + 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, @@ -261653,17 +262945,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, - [27230] = 4, - ACTIONS(251), 1, + [24150] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2055), 1, + STATE(2067), 1, sym_comment, - ACTIONS(2378), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2485), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -261672,7 +262966,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2380), 47, + aux_sym_unquoted_token1, + ACTIONS(2487), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261684,34 +262981,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_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_COLON2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -261720,12 +263013,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, - [27301] = 4, - ACTIONS(251), 1, + [24222] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2056), 1, + ACTIONS(4694), 1, + anon_sym_DOT_DOT2, + STATE(2068), 1, sym_comment, - ACTIONS(2382), 13, + ACTIONS(4696), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5006), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -261739,7 +263037,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(2384), 47, + ACTIONS(5008), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261751,16 +263050,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -261778,7 +263075,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_COLON2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -261787,25 +263083,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, - [27372] = 8, - ACTIONS(251), 1, + [24298] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(1692), 1, - aux_sym_cell_path_repeat1, - STATE(1889), 1, - sym_path, - STATE(2057), 1, + STATE(2069), 1, sym_comment, - STATE(2484), 1, - sym_cell_path, - ACTIONS(1969), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(4970), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -261814,8 +263104,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(1971), 43, - ts_builtin_sym_end, + aux_sym_unquoted_token1, + ACTIONS(4968), 45, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261827,29 +263118,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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -261858,23 +263151,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, - [27451] = 7, - ACTIONS(251), 1, + [24370] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(2058), 1, + STATE(2070), 1, sym_comment, - STATE(2193), 1, - aux_sym_shebang_repeat1, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5176), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5120), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -261883,7 +263172,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5174), 44, + aux_sym_unquoted_token1, + ACTIONS(5118), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261895,31 +263187,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_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -261928,23 +263219,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, - [27528] = 7, - ACTIONS(251), 1, + [24442] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(2059), 1, + STATE(2071), 1, sym_comment, - STATE(2255), 1, - aux_sym_shebang_repeat1, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5172), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1839), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -261953,7 +263240,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5170), 44, + aux_sym_unquoted_token1, + ACTIONS(1841), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261965,31 +263255,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_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -261998,17 +263287,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, - [27605] = 4, - ACTIONS(251), 1, + [24514] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2060), 1, + STATE(2072), 1, sym_comment, - ACTIONS(4994), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2489), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -262017,7 +263308,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4992), 47, + aux_sym_unquoted_token1, + ACTIONS(2491), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262029,34 +263323,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_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -262065,18 +263355,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, - [27676] = 7, - ACTIONS(251), 1, + [24586] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(2061), 1, + STATE(2073), 1, sym_comment, - STATE(2194), 1, - aux_sym_shebang_repeat1, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5176), 13, + ACTIONS(4962), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262090,7 +263374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5174), 44, + ACTIONS(4960), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262106,10 +263390,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -262135,23 +263423,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, - [27753] = 7, - ACTIONS(251), 1, + [24658] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(2062), 1, + STATE(2074), 1, sym_comment, - STATE(2241), 1, - aux_sym_shebang_repeat1, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(4845), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -262160,7 +263444,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 44, + aux_sym_unquoted_token1, + ACTIONS(4843), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262172,31 +263459,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_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -262205,23 +263491,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, - [27830] = 7, - ACTIONS(251), 1, + [24730] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(2063), 1, + STATE(2075), 1, sym_comment, - STATE(2254), 1, - aux_sym_shebang_repeat1, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(986), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -262230,7 +263512,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 44, + aux_sym_unquoted_token1, + ACTIONS(988), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262242,31 +263527,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_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -262275,23 +263559,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, - [27907] = 7, - ACTIONS(251), 1, + [24802] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(2064), 1, + STATE(2076), 1, sym_comment, - STATE(2195), 1, - aux_sym_shebang_repeat1, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5176), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2407), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -262300,7 +263580,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5174), 44, + aux_sym_unquoted_token1, + ACTIONS(2409), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262312,31 +263595,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_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -262345,25 +263627,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, - [27984] = 8, - ACTIONS(251), 1, + [24874] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(1692), 1, - aux_sym_cell_path_repeat1, - STATE(1889), 1, - sym_path, - STATE(2065), 1, + STATE(2077), 1, sym_comment, - STATE(2474), 1, - sym_cell_path, - ACTIONS(1937), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1877), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -262372,7 +263648,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(1939), 43, + aux_sym_unquoted_token1, + ACTIONS(1879), 45, + sym_raw_string_begin, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -262385,29 +263663,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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -262416,25 +263695,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, - [28063] = 8, - ACTIONS(251), 1, + [24946] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(1692), 1, - aux_sym_cell_path_repeat1, - STATE(1889), 1, - sym_path, - STATE(2066), 1, + STATE(2078), 1, sym_comment, - STATE(2485), 1, - sym_cell_path, - ACTIONS(1979), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1833), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -262443,7 +263716,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(1981), 43, + aux_sym_unquoted_token1, + ACTIONS(1835), 45, + sym_raw_string_begin, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -262456,29 +263731,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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -262487,25 +263763,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, - [28142] = 8, - ACTIONS(251), 1, + [25018] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(1692), 1, - aux_sym_cell_path_repeat1, - STATE(1889), 1, - sym_path, - STATE(2067), 1, + STATE(2079), 1, sym_comment, - STATE(2475), 1, - sym_cell_path, - ACTIONS(1945), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1861), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -262514,7 +263784,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(1947), 43, + aux_sym_unquoted_token1, + ACTIONS(1863), 45, + sym_raw_string_begin, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -262527,29 +263799,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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -262558,20 +263831,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, - [28221] = 8, - ACTIONS(251), 1, + [25090] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(1692), 1, - aux_sym_cell_path_repeat1, - STATE(1889), 1, - sym_path, - STATE(2068), 1, + STATE(2080), 1, sym_comment, - STATE(2477), 1, - sym_cell_path, - ACTIONS(1949), 13, + ACTIONS(4962), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262585,8 +263850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1951), 43, - ts_builtin_sym_end, + ACTIONS(4960), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262598,12 +263862,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -262629,18 +263899,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, - [28300] = 7, - ACTIONS(251), 1, + [25162] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(2069), 1, + STATE(2081), 1, sym_comment, - STATE(2248), 1, - aux_sym_shebang_repeat1, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5172), 13, + ACTIONS(1701), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262654,7 +263918,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(5170), 44, + aux_sym_unquoted_token2, + ACTIONS(1703), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262669,11 +263934,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -262682,6 +263949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -262699,18 +263967,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, - [28377] = 7, - ACTIONS(251), 1, + [25234] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(2070), 1, + STATE(2082), 1, sym_comment, - STATE(2261), 1, - aux_sym_shebang_repeat1, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, + ACTIONS(5213), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262724,7 +263986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 44, + ACTIONS(5211), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262740,10 +264002,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -262769,25 +264035,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, - [28454] = 8, - ACTIONS(251), 1, + [25306] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(1692), 1, - aux_sym_cell_path_repeat1, - STATE(1889), 1, - sym_path, - STATE(2071), 1, + STATE(2083), 1, sym_comment, - STATE(2486), 1, - sym_cell_path, - ACTIONS(1905), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2310), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -262796,7 +264056,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(1907), 43, + aux_sym_unquoted_token1, + ACTIONS(2312), 45, + sym_raw_string_begin, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -262809,29 +264071,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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -262840,12 +264103,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, - [28533] = 4, - ACTIONS(251), 1, + [25378] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2072), 1, + STATE(2084), 1, sym_comment, - ACTIONS(4962), 13, + ACTIONS(2413), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262859,7 +264122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4960), 47, + ACTIONS(2415), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262881,6 +264144,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -262889,7 +264154,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -262907,12 +264171,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, - [28604] = 4, - ACTIONS(251), 1, + [25450] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2073), 1, + STATE(2085), 1, sym_comment, - ACTIONS(2414), 13, + ACTIONS(1693), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262926,7 +264190,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(2416), 47, + aux_sym_unquoted_token2, + ACTIONS(1695), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262941,14 +264206,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -262957,6 +264221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -262974,17 +264239,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, - [28675] = 4, - ACTIONS(251), 1, + [25522] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2074), 1, + STATE(2086), 1, sym_comment, - ACTIONS(2386), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1885), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -262993,7 +264260,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2388), 47, + aux_sym_unquoted_token1, + ACTIONS(1887), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263005,34 +264275,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_DASH2, - anon_sym_in2, - anon_sym_if, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -263041,12 +264307,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, - [28746] = 4, - ACTIONS(251), 1, + [25594] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2075), 1, + STATE(2087), 1, sym_comment, - ACTIONS(2019), 13, + ACTIONS(1766), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263060,7 +264326,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(2025), 47, + aux_sym_unquoted_token2, + ACTIONS(1768), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263075,14 +264342,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -263091,6 +264357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -263108,12 +264375,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, - [28817] = 4, - ACTIONS(251), 1, + [25666] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2076), 1, + ACTIONS(5215), 1, + anon_sym_DOT_DOT2, + STATE(2088), 1, sym_comment, - ACTIONS(2027), 13, + ACTIONS(5217), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2030), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263127,7 +264399,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(2033), 47, + ACTIONS(2036), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263139,17 +264412,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_DASH2, anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -263175,18 +264445,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, - [28888] = 7, - ACTIONS(251), 1, + [25742] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(2077), 1, + ACTIONS(5219), 1, + anon_sym_DOT_DOT2, + STATE(2089), 1, sym_comment, - STATE(2297), 1, - aux_sym_shebang_repeat1, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, + ACTIONS(5221), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1977), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263200,7 +264469,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(5186), 44, + ACTIONS(1983), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263212,14 +264482,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -263245,12 +264515,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, - [28965] = 4, - ACTIONS(251), 1, + [25818] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2078), 1, + STATE(2090), 1, sym_comment, - ACTIONS(2035), 13, + ACTIONS(1792), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263264,7 +264534,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(2041), 47, + aux_sym_unquoted_token2, + ACTIONS(1794), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263279,14 +264550,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -263295,6 +264565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -263312,20 +264583,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, - [29036] = 8, - ACTIONS(251), 1, + [25890] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(1692), 1, - aux_sym_cell_path_repeat1, - STATE(1889), 1, - sym_path, - STATE(2079), 1, + ACTIONS(5223), 1, + anon_sym_DOT_DOT2, + STATE(2091), 1, sym_comment, - STATE(2478), 1, - sym_cell_path, - ACTIONS(1953), 13, + ACTIONS(5225), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1985), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263339,7 +264607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1955), 43, + ACTIONS(1991), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -263358,6 +264626,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -263383,18 +264653,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, - [29115] = 7, - ACTIONS(251), 1, + [25966] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(2080), 1, + ACTIONS(5227), 1, + anon_sym_DOT_DOT2, + STATE(2092), 1, sym_comment, - STATE(2223), 1, - aux_sym_shebang_repeat1, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5172), 13, + ACTIONS(5229), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1816), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263408,7 +264677,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(5170), 44, + ACTIONS(1824), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263420,14 +264690,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -263453,17 +264723,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, - [29192] = 4, - ACTIONS(251), 1, + [26042] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2081), 1, + STATE(2093), 1, sym_comment, - ACTIONS(2446), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2314), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -263472,7 +264744,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2448), 46, + aux_sym_unquoted_token1, + ACTIONS(2316), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263484,33 +264759,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_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -263519,22 +264791,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, - [29262] = 6, - ACTIONS(251), 1, + [26114] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5227), 1, - anon_sym_DOT_DOT2, - STATE(2082), 1, + STATE(2094), 1, sym_comment, - ACTIONS(5229), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1812), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2330), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -263543,7 +264812,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(1820), 43, + aux_sym_unquoted_token1, + ACTIONS(2332), 45, + sym_raw_string_begin, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -263556,29 +264827,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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -263587,22 +264859,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, - [29336] = 6, - ACTIONS(251), 1, + [26186] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5231), 1, - anon_sym_DOT_DOT2, - STATE(2083), 1, + STATE(2095), 1, sym_comment, - ACTIONS(5233), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1802), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1889), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -263611,7 +264880,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(1810), 43, + aux_sym_unquoted_token1, + ACTIONS(1891), 45, + sym_raw_string_begin, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -263624,29 +264895,98 @@ static const uint16_t 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_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [26258] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2096), 1, + sym_comment, + ACTIONS(1901), 16, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + 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(1903), 45, + sym_raw_string_begin, + 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, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -263655,17 +264995,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, - [29410] = 4, - ACTIONS(251), 1, + [26330] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2084), 1, + STATE(2097), 1, sym_comment, - ACTIONS(5118), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2389), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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(2391), 45, + sym_raw_string_begin, + 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, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [26402] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2098), 1, + sym_comment, + ACTIONS(2393), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -263674,7 +265084,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5116), 46, + aux_sym_unquoted_token1, + ACTIONS(2395), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263686,33 +265099,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_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -263721,17 +265131,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, - [29480] = 4, - ACTIONS(251), 1, + [26474] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2085), 1, + STATE(2099), 1, sym_comment, - ACTIONS(1016), 13, + ACTIONS(2026), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263740,7 +265151,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(1012), 46, + ACTIONS(2028), 47, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263752,16 +265164,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -263779,6 +265189,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + 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, @@ -263787,16 +265199,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, - [29550] = 6, - ACTIONS(3), 1, + [26546] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2130), 1, - anon_sym_LPAREN2, - ACTIONS(2134), 1, - aux_sym_unquoted_token4, - STATE(2086), 1, + STATE(2100), 1, sym_comment, - ACTIONS(2132), 13, + ACTIONS(1905), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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(1907), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263808,262 +265235,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, - ACTIONS(2128), 44, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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, - [29624] = 37, - ACTIONS(155), 1, anon_sym_LBRACK, - ACTIONS(157), 1, anon_sym_LPAREN, - ACTIONS(183), 1, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(187), 1, - anon_sym_DOT_DOT, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(237), 1, - anon_sym_DQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(253), 1, - sym_raw_string_begin, - ACTIONS(383), 1, - anon_sym_DASH2, - ACTIONS(1030), 1, - anon_sym_DOLLAR, - ACTIONS(3408), 1, - anon_sym_null, - ACTIONS(3412), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3414), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3416), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, - aux_sym__val_number_decimal_token4, - STATE(1667), 1, - sym__val_number, - STATE(1833), 1, - sym_val_variable, - STATE(1888), 1, - sym_expr_parenthesized, - STATE(2034), 1, - sym__inter_single_quotes, - STATE(2035), 1, - sym__inter_double_quotes, - STATE(2087), 1, - sym_comment, - STATE(2143), 1, - sym__expr_unary_minus, - STATE(3154), 1, - sym__val_number_decimal, - STATE(3865), 1, - sym__expr_binary_expression, - STATE(7442), 1, - sym__expression, - ACTIONS(211), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(239), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3410), 2, + anon_sym_null, anon_sym_true, anon_sym_false, - STATE(1418), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2141), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(227), 6, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2085), 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, - [29760] = 37, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(157), 1, - anon_sym_LPAREN, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(187), 1, - anon_sym_DOT_DOT, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, sym_val_date, - ACTIONS(237), 1, anon_sym_DQUOTE, - ACTIONS(241), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 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, + [26618] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(253), 1, - sym_raw_string_begin, - ACTIONS(383), 1, - anon_sym_DASH2, - ACTIONS(1030), 1, + STATE(2101), 1, + sym_comment, + ACTIONS(2421), 16, anon_sym_DOLLAR, - ACTIONS(3408), 1, - anon_sym_null, - ACTIONS(3412), 1, + anon_sym_DASH2, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - ACTIONS(3414), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3416), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, - aux_sym__val_number_decimal_token4, - STATE(1667), 1, - sym__val_number, - STATE(1833), 1, - sym_val_variable, - STATE(1888), 1, - sym_expr_parenthesized, - STATE(2034), 1, - sym__inter_single_quotes, - STATE(2035), 1, - sym__inter_double_quotes, - STATE(2088), 1, - sym_comment, - STATE(2143), 1, - sym__expr_unary_minus, - STATE(3154), 1, - sym__val_number_decimal, - STATE(3865), 1, - sym__expr_binary_expression, - STATE(7453), 1, - sym__expression, - ACTIONS(211), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(233), 2, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(239), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3410), 2, - anon_sym_true, - anon_sym_false, - STATE(1418), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2141), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(227), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2085), 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, - [29896] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2089), 1, - sym_comment, - ACTIONS(2452), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264072,7 +265288,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2454), 46, + aux_sym_unquoted_token1, + ACTIONS(2423), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264084,250 +265303,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_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [29966] = 37, - ACTIONS(155), 1, anon_sym_LBRACK, - ACTIONS(157), 1, anon_sym_LPAREN, - ACTIONS(183), 1, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(187), 1, - anon_sym_DOT_DOT, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(237), 1, - anon_sym_DQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(253), 1, - sym_raw_string_begin, - ACTIONS(383), 1, - anon_sym_DASH2, - ACTIONS(1030), 1, - anon_sym_DOLLAR, - ACTIONS(3408), 1, - anon_sym_null, - ACTIONS(3412), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3414), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3416), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, - aux_sym__val_number_decimal_token4, - STATE(1667), 1, - sym__val_number, - STATE(1833), 1, - sym_val_variable, - STATE(1888), 1, - sym_expr_parenthesized, - STATE(2034), 1, - sym__inter_single_quotes, - STATE(2035), 1, - sym__inter_double_quotes, - STATE(2090), 1, - sym_comment, - STATE(2143), 1, - sym__expr_unary_minus, - STATE(3154), 1, - sym__val_number_decimal, - STATE(3865), 1, - sym__expr_binary_expression, - STATE(7401), 1, - sym__expression, - ACTIONS(211), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(239), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3410), 2, + anon_sym_null, anon_sym_true, anon_sym_false, - STATE(1418), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2141), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(227), 6, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2085), 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, - [30102] = 37, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(157), 1, - anon_sym_LPAREN, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(187), 1, - anon_sym_DOT_DOT, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, sym_val_date, - ACTIONS(237), 1, anon_sym_DQUOTE, - ACTIONS(241), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 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, + [26690] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(253), 1, - sym_raw_string_begin, - ACTIONS(383), 1, - anon_sym_DASH2, - ACTIONS(1030), 1, + STATE(2102), 1, + sym_comment, + ACTIONS(2437), 16, anon_sym_DOLLAR, - ACTIONS(3408), 1, - anon_sym_null, - ACTIONS(3412), 1, + anon_sym_DASH2, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - ACTIONS(3414), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3416), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, - aux_sym__val_number_decimal_token4, - STATE(1667), 1, - sym__val_number, - STATE(1833), 1, - sym_val_variable, - STATE(1888), 1, - sym_expr_parenthesized, - STATE(2034), 1, - sym__inter_single_quotes, - STATE(2035), 1, - sym__inter_double_quotes, - STATE(2091), 1, - sym_comment, - STATE(2143), 1, - sym__expr_unary_minus, - STATE(3154), 1, - sym__val_number_decimal, - STATE(3865), 1, - sym__expr_binary_expression, - STATE(7361), 1, - sym__expression, - ACTIONS(211), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(233), 2, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(239), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3410), 2, - anon_sym_true, - anon_sym_false, - STATE(1418), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2141), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(227), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2085), 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, - [30238] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2092), 1, - sym_comment, - ACTIONS(2468), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264336,7 +265356,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2470), 46, + aux_sym_unquoted_token1, + ACTIONS(2439), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264348,33 +265371,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_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -264383,12 +265403,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, - [30308] = 4, - ACTIONS(251), 1, + [26762] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2093), 1, + STATE(2103), 1, sym_comment, - ACTIONS(5237), 13, + ACTIONS(4962), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264402,7 +265422,7 @@ 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), 46, + ACTIONS(4960), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264424,6 +265444,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -264449,23 +265471,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, - [30378] = 8, - ACTIONS(251), 1, + [26834] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4808), 1, - anon_sym_DOT_DOT2, - STATE(2094), 1, + STATE(2104), 1, sym_comment, - ACTIONS(4810), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5156), 5, + ACTIONS(4962), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5160), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264474,8 +265490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5154), 20, - ts_builtin_sym_end, + ACTIONS(4960), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264487,21 +265502,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_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - 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(5158), 23, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -264519,12 +265531,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30456] = 4, - ACTIONS(251), 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, + [26906] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2095), 1, + STATE(2105), 1, sym_comment, - ACTIONS(5118), 13, + ACTIONS(1002), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264538,7 +265558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5116), 46, + ACTIONS(998), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264560,6 +265580,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -264585,115 +265607,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, - [30526] = 37, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(157), 1, - anon_sym_LPAREN, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(187), 1, - anon_sym_DOT_DOT, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(237), 1, - anon_sym_DQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(253), 1, - sym_raw_string_begin, - ACTIONS(383), 1, - anon_sym_DASH2, - ACTIONS(1030), 1, - anon_sym_DOLLAR, - ACTIONS(3408), 1, - anon_sym_null, - ACTIONS(3412), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3414), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3416), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, - aux_sym__val_number_decimal_token4, - STATE(1667), 1, - sym__val_number, - STATE(1833), 1, - sym_val_variable, - STATE(1888), 1, - sym_expr_parenthesized, - STATE(2034), 1, - sym__inter_single_quotes, - STATE(2035), 1, - sym__inter_double_quotes, - STATE(2096), 1, - sym_comment, - STATE(2143), 1, - sym__expr_unary_minus, - STATE(3154), 1, - sym__val_number_decimal, - STATE(3865), 1, - sym__expr_binary_expression, - STATE(7426), 1, - sym__expression, - ACTIONS(211), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(239), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3410), 2, - anon_sym_true, - anon_sym_false, - STATE(1418), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2141), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(227), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2085), 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, - [30662] = 6, - ACTIONS(251), 1, + [26978] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym_unquoted_token2, - ACTIONS(1804), 1, - anon_sym_LPAREN2, - STATE(2097), 1, + STATE(2106), 1, sym_comment, - ACTIONS(1802), 13, + ACTIONS(2322), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264707,7 +265626,7 @@ 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), 44, + ACTIONS(2324), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264722,11 +265641,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -264752,12 +265675,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, - [30736] = 4, - ACTIONS(251), 1, + [27050] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2098), 1, + STATE(2107), 1, sym_comment, - ACTIONS(5118), 13, + ACTIONS(4962), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264771,7 +265694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5116), 46, + ACTIONS(4960), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264793,6 +265716,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -264818,18 +265743,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, - [30806] = 4, - ACTIONS(251), 1, + [27122] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2099), 1, + STATE(2108), 1, sym_comment, - ACTIONS(1993), 14, + ACTIONS(2065), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264838,58 +265762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1995), 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - 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, - [30876] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2100), 1, - sym_comment, - ACTIONS(2150), 14, + ACTIONS(2069), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264902,45 +265775,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_RBRACE, - anon_sym_LPAREN2, - ACTIONS(2148), 45, - anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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, @@ -264949,23 +265811,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_token4, - [30946] = 6, - ACTIONS(251), 1, + [27194] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4808), 1, - anon_sym_DOT_DOT2, - STATE(2101), 1, + STATE(2109), 1, sym_comment, - ACTIONS(4810), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1016), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(960), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -264974,7 +265832,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(1012), 43, + aux_sym_unquoted_token1, + ACTIONS(962), 45, + sym_raw_string_begin, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -264987,29 +265847,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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -265018,12 +265879,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, - [31020] = 4, - ACTIONS(251), 1, + [27266] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2102), 1, + STATE(2110), 1, sym_comment, - ACTIONS(5118), 13, + ACTIONS(4962), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265037,7 +265898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5116), 46, + ACTIONS(4960), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265059,6 +265920,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -265084,12 +265947,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, - [31090] = 4, - ACTIONS(251), 1, + [27338] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2103), 1, + STATE(2111), 1, sym_comment, - ACTIONS(2456), 13, + ACTIONS(2326), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265103,7 +265966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2458), 46, + ACTIONS(2328), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265125,6 +265988,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -265150,12 +266015,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, - [31160] = 4, - ACTIONS(251), 1, + [27410] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, + STATE(2112), 1, sym_comment, - ACTIONS(5118), 13, + ACTIONS(4962), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265169,7 +266034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5116), 46, + ACTIONS(4960), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265191,6 +266056,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -265216,17 +266083,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, - [31230] = 4, - ACTIONS(251), 1, + [27482] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2105), 1, + STATE(2113), 1, sym_comment, - ACTIONS(2460), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(964), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -265235,7 +266104,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2462), 46, + aux_sym_unquoted_token1, + ACTIONS(966), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265247,33 +266119,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_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -265282,93 +266151,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31300] = 37, - ACTIONS(155), 1, + [27554] = 39, + ACTIONS(153), 1, anon_sym_LBRACK, - ACTIONS(157), 1, + ACTIONS(155), 1, anon_sym_LPAREN, - ACTIONS(183), 1, + ACTIONS(181), 1, anon_sym_LBRACE, - ACTIONS(187), 1, + ACTIONS(185), 1, anon_sym_DOT_DOT, - ACTIONS(205), 1, + ACTIONS(201), 1, aux_sym_expr_unary_token1, - ACTIONS(231), 1, + ACTIONS(227), 1, anon_sym_0b, - ACTIONS(235), 1, + ACTIONS(231), 1, sym_val_date, - ACTIONS(237), 1, + ACTIONS(233), 1, anon_sym_DQUOTE, - ACTIONS(241), 1, + ACTIONS(237), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, + ACTIONS(239), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 1, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(253), 1, + ACTIONS(249), 1, sym_raw_string_begin, - ACTIONS(383), 1, + ACTIONS(377), 1, anon_sym_DASH2, - ACTIONS(1030), 1, + ACTIONS(1016), 1, anon_sym_DOLLAR, - ACTIONS(3408), 1, + ACTIONS(3192), 1, + sym__newline, + ACTIONS(3430), 1, anon_sym_null, - ACTIONS(3412), 1, + ACTIONS(3434), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3414), 1, + ACTIONS(3436), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3416), 1, + ACTIONS(3438), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, + ACTIONS(3440), 1, aux_sym__val_number_decimal_token4, - STATE(1667), 1, + STATE(1536), 1, sym__val_number, - STATE(1833), 1, + STATE(1714), 1, sym_val_variable, - STATE(1888), 1, - sym_expr_parenthesized, - STATE(2034), 1, + STATE(1875), 1, sym__inter_single_quotes, - STATE(2035), 1, + STATE(1877), 1, sym__inter_double_quotes, - STATE(2106), 1, - sym_comment, - STATE(2143), 1, + STATE(1951), 1, + sym_expr_parenthesized, + STATE(2002), 1, sym__expr_unary_minus, - STATE(3154), 1, + STATE(2114), 1, + sym_comment, + STATE(2866), 1, + aux_sym_shebang_repeat1, + STATE(2975), 1, sym__val_number_decimal, - STATE(3865), 1, - sym__expr_binary_expression, - STATE(7368), 1, - sym__expression, - ACTIONS(211), 2, + STATE(3786), 1, + sym__expr_binary_expression_parenthesized, + STATE(6219), 1, + sym__expression_parenthesized, + ACTIONS(207), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(233), 2, + ACTIONS(229), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(239), 2, + ACTIONS(235), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3410), 2, + ACTIONS(3432), 2, anon_sym_true, anon_sym_false, - STATE(1418), 2, + STATE(1392), 2, sym__raw_str, sym__str_double_quotes, - STATE(2141), 4, + STATE(2381), 4, sym_expr_unary, - sym_expr_binary, + sym_expr_binary_parenthesized, sym_val_range, sym__value, - ACTIONS(227), 6, + ACTIONS(223), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2085), 12, + STATE(2105), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -265381,12 +266254,148 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [31436] = 4, - ACTIONS(251), 1, + [27696] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2115), 1, + sym_comment, + ACTIONS(4944), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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(2854), 45, + sym_raw_string_begin, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [27768] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2116), 1, + sym_comment, + ACTIONS(5042), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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(5040), 45, + sym_raw_string_begin, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [27840] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2107), 1, + STATE(2117), 1, sym_comment, - ACTIONS(5118), 13, + ACTIONS(2164), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265400,7 +266409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5116), 46, + ACTIONS(2166), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265422,6 +266431,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -265447,12 +266458,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, - [31506] = 4, - ACTIONS(251), 1, + [27912] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2108), 1, + STATE(2118), 1, sym_comment, - ACTIONS(5118), 13, + ACTIONS(2334), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265466,7 +266477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5116), 46, + ACTIONS(2336), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265488,6 +266499,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -265513,111 +266526,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, - [31576] = 37, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(157), 1, - anon_sym_LPAREN, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(187), 1, - anon_sym_DOT_DOT, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(237), 1, - anon_sym_DQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(253), 1, - sym_raw_string_begin, - ACTIONS(383), 1, - anon_sym_DASH2, - ACTIONS(1030), 1, - anon_sym_DOLLAR, - ACTIONS(3408), 1, - anon_sym_null, - ACTIONS(3412), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3414), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3416), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, - aux_sym__val_number_decimal_token4, - STATE(1667), 1, - sym__val_number, - STATE(1833), 1, - sym_val_variable, - STATE(1888), 1, - sym_expr_parenthesized, - STATE(2034), 1, - sym__inter_single_quotes, - STATE(2035), 1, - sym__inter_double_quotes, - STATE(2109), 1, - sym_comment, - STATE(2143), 1, - sym__expr_unary_minus, - STATE(3154), 1, - sym__val_number_decimal, - STATE(3865), 1, - sym__expr_binary_expression, - STATE(7396), 1, - sym__expression, - ACTIONS(211), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(239), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3410), 2, - anon_sym_true, - anon_sym_false, - STATE(1418), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2141), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(227), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2085), 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, - [31712] = 4, - ACTIONS(251), 1, + [27984] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2110), 1, + STATE(2119), 1, sym_comment, - ACTIONS(5118), 13, + ACTIONS(1816), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265631,7 +266545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5116), 46, + ACTIONS(1824), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265653,6 +266567,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -265678,18 +266594,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, - [31782] = 4, - ACTIONS(251), 1, + [28056] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2111), 1, + STATE(2120), 1, + sym_comment, + ACTIONS(1961), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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(1963), 45, + sym_raw_string_begin, + 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, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [28128] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4694), 1, + anon_sym_DOT_DOT2, + STATE(2121), 1, sym_comment, - ACTIONS(2015), 14, + ACTIONS(4696), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1002), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -265698,7 +266686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2017), 45, + ACTIONS(998), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -265717,6 +266705,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -265734,8 +266724,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - 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, @@ -265744,17 +266732,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, - [31852] = 4, - ACTIONS(251), 1, + [28204] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2112), 1, + STATE(2122), 1, sym_comment, - ACTIONS(2220), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1693), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -265763,7 +266753,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2222), 46, + aux_sym_unquoted_token1, + ACTIONS(1695), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265775,33 +266768,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_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -265810,12 +266800,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, - [31922] = 4, - ACTIONS(251), 1, + [28276] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2113), 1, + STATE(2123), 1, sym_comment, - ACTIONS(1855), 13, + ACTIONS(5233), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265829,7 +266819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1857), 46, + ACTIONS(5231), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265851,6 +266841,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -265876,111 +266868,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, - [31992] = 37, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(157), 1, - anon_sym_LPAREN, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(187), 1, - anon_sym_DOT_DOT, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(237), 1, - anon_sym_DQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 1, + [28348] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(253), 1, - sym_raw_string_begin, - ACTIONS(383), 1, - anon_sym_DASH2, - ACTIONS(1030), 1, + STATE(2124), 1, + sym_comment, + ACTIONS(946), 16, anon_sym_DOLLAR, - ACTIONS(3408), 1, - anon_sym_null, - ACTIONS(3412), 1, + anon_sym_DASH2, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - ACTIONS(3414), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3416), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, - aux_sym__val_number_decimal_token4, - STATE(1667), 1, - sym__val_number, - STATE(1833), 1, - sym_val_variable, - STATE(1888), 1, - sym_expr_parenthesized, - STATE(2034), 1, - sym__inter_single_quotes, - STATE(2035), 1, - sym__inter_double_quotes, - STATE(2114), 1, - sym_comment, - STATE(2143), 1, - sym__expr_unary_minus, - STATE(3154), 1, - sym__val_number_decimal, - STATE(3865), 1, - sym__expr_binary_expression, - STATE(7409), 1, - sym__expression, - ACTIONS(211), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(233), 2, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(239), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3410), 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(948), 45, + sym_raw_string_begin, + 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, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, anon_sym_true, anon_sym_false, - STATE(1418), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2141), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(227), 6, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2085), 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, - [32128] = 4, - ACTIONS(251), 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, + [28420] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2115), 1, + STATE(2125), 1, sym_comment, - ACTIONS(5118), 13, + ACTIONS(5237), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265994,7 +266955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5116), 46, + ACTIONS(5235), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266016,6 +266977,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -266041,17 +267004,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, - [32198] = 4, - ACTIONS(251), 1, + [28492] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2116), 1, + STATE(2126), 1, + sym_comment, + ACTIONS(5124), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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(5122), 45, + sym_raw_string_begin, + 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, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [28564] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2127), 1, sym_comment, - ACTIONS(1783), 14, + ACTIONS(2010), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -266060,8 +267092,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_token2, - ACTIONS(1785), 45, + ACTIONS(2012), 47, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266073,14 +267105,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_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -266089,7 +267121,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -266099,6 +267130,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + 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, @@ -266107,19 +267140,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, - [32268] = 5, - ACTIONS(251), 1, + [28636] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5208), 1, - aux_sym__immediate_decimal_token2, - STATE(2117), 1, + STATE(2128), 1, sym_comment, - ACTIONS(1755), 14, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5128), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, @@ -266128,8 +267161,9 @@ 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_token2, - ACTIONS(1757), 44, + aux_sym_unquoted_token1, + ACTIONS(5126), 45, + sym_raw_string_begin, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -266142,30 +267176,98 @@ static const uint16_t 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_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [28708] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2129), 1, + sym_comment, + ACTIONS(1701), 16, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + 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(1703), 45, + sym_raw_string_begin, + 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, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -266174,16 +267276,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, - [32340] = 6, - ACTIONS(251), 1, + [28780] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1814), 1, - anon_sym_LPAREN2, - ACTIONS(1822), 1, - aux_sym_unquoted_token2, - STATE(2118), 1, + STATE(2130), 1, sym_comment, - ACTIONS(2220), 13, + ACTIONS(1806), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266197,7 +267295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2222), 44, + ACTIONS(1814), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266212,11 +267310,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -266242,18 +267344,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, - [32414] = 4, - ACTIONS(251), 1, + [28852] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2119), 1, + STATE(2131), 1, + sym_comment, + ACTIONS(2413), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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(2415), 45, + sym_raw_string_begin, + 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, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [28924] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2132), 1, sym_comment, - ACTIONS(1000), 14, + ACTIONS(5006), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, + ACTIONS(5010), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -266262,8 +267432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1002), 45, - ts_builtin_sym_end, + ACTIONS(5004), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266275,12 +267444,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_LBRACE, + 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(5008), 25, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -266298,8 +267482,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + [29000] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2133), 1, + sym_comment, + ACTIONS(4928), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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(4926), 45, + sym_raw_string_begin, + 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, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -266308,93 +267550,303 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32484] = 37, - ACTIONS(155), 1, + [29072] = 39, + ACTIONS(153), 1, anon_sym_LBRACK, - ACTIONS(157), 1, + ACTIONS(155), 1, anon_sym_LPAREN, - ACTIONS(183), 1, + ACTIONS(181), 1, anon_sym_LBRACE, - ACTIONS(205), 1, + ACTIONS(185), 1, + anon_sym_DOT_DOT, + ACTIONS(201), 1, aux_sym_expr_unary_token1, - ACTIONS(231), 1, + ACTIONS(227), 1, anon_sym_0b, - ACTIONS(235), 1, + ACTIONS(231), 1, sym_val_date, - ACTIONS(237), 1, + ACTIONS(233), 1, anon_sym_DQUOTE, - ACTIONS(241), 1, + ACTIONS(237), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, + ACTIONS(239), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 1, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(253), 1, + ACTIONS(249), 1, sym_raw_string_begin, - ACTIONS(383), 1, + ACTIONS(377), 1, anon_sym_DASH2, - ACTIONS(1030), 1, + ACTIONS(1016), 1, anon_sym_DOLLAR, - ACTIONS(3408), 1, + ACTIONS(3192), 1, + sym__newline, + ACTIONS(3430), 1, anon_sym_null, - ACTIONS(3416), 1, + ACTIONS(3434), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3436), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3438), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, + ACTIONS(3440), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5239), 1, + STATE(1536), 1, + sym__val_number, + STATE(1714), 1, + sym_val_variable, + STATE(1875), 1, + sym__inter_single_quotes, + STATE(1877), 1, + sym__inter_double_quotes, + STATE(1951), 1, + sym_expr_parenthesized, + STATE(2002), 1, + sym__expr_unary_minus, + STATE(2134), 1, + sym_comment, + STATE(2135), 1, + aux_sym_shebang_repeat1, + STATE(2975), 1, + sym__val_number_decimal, + STATE(3786), 1, + sym__expr_binary_expression_parenthesized, + STATE(6684), 1, + sym__expression_parenthesized, + ACTIONS(207), 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(3432), 2, + anon_sym_true, + anon_sym_false, + STATE(1392), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2381), 4, + sym_expr_unary, + sym_expr_binary_parenthesized, + sym_val_range, + sym__value, + ACTIONS(223), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2105), 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, + [29214] = 39, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(155), 1, + anon_sym_LPAREN, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(185), 1, anon_sym_DOT_DOT, - ACTIONS(5243), 1, + ACTIONS(201), 1, + aux_sym_expr_unary_token1, + 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(249), 1, + sym_raw_string_begin, + ACTIONS(377), 1, + anon_sym_DASH2, + ACTIONS(1016), 1, + anon_sym_DOLLAR, + ACTIONS(3192), 1, + sym__newline, + ACTIONS(3430), 1, + anon_sym_null, + ACTIONS(3434), 1, aux_sym__val_number_decimal_token1, - ACTIONS(5245), 1, + ACTIONS(3436), 1, aux_sym__val_number_decimal_token2, - STATE(1667), 1, + ACTIONS(3438), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3440), 1, + aux_sym__val_number_decimal_token4, + STATE(1536), 1, sym__val_number, - STATE(2034), 1, + STATE(1714), 1, + sym_val_variable, + STATE(1875), 1, sym__inter_single_quotes, - STATE(2035), 1, + STATE(1877), 1, sym__inter_double_quotes, - STATE(2120), 1, - sym_comment, - STATE(2143), 1, + STATE(1951), 1, + sym_expr_parenthesized, + STATE(2002), 1, sym__expr_unary_minus, - STATE(3614), 1, + STATE(2135), 1, + sym_comment, + STATE(2866), 1, + aux_sym_shebang_repeat1, + STATE(2975), 1, sym__val_number_decimal, - STATE(3633), 1, - sym_expr_parenthesized, - STATE(3656), 1, - sym_val_variable, - STATE(3873), 1, - sym__expr_binary_expression, - STATE(7741), 1, - sym__expression, - ACTIONS(233), 2, + STATE(3786), 1, + sym__expr_binary_expression_parenthesized, + STATE(6686), 1, + sym__expression_parenthesized, + ACTIONS(207), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(239), 2, + ACTIONS(235), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3410), 2, + ACTIONS(3432), 2, anon_sym_true, anon_sym_false, - ACTIONS(5241), 2, + STATE(1392), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2381), 4, + sym_expr_unary, + sym_expr_binary_parenthesized, + sym_val_range, + sym__value, + ACTIONS(223), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2105), 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, + [29356] = 39, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(155), 1, + anon_sym_LPAREN, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(185), 1, + anon_sym_DOT_DOT, + ACTIONS(201), 1, + aux_sym_expr_unary_token1, + 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(249), 1, + sym_raw_string_begin, + ACTIONS(377), 1, + anon_sym_DASH2, + ACTIONS(1016), 1, + anon_sym_DOLLAR, + ACTIONS(3192), 1, + sym__newline, + ACTIONS(3430), 1, + anon_sym_null, + ACTIONS(3434), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3436), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3438), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3440), 1, + aux_sym__val_number_decimal_token4, + STATE(1536), 1, + sym__val_number, + STATE(1714), 1, + sym_val_variable, + STATE(1875), 1, + sym__inter_single_quotes, + STATE(1877), 1, + sym__inter_double_quotes, + STATE(1951), 1, + sym_expr_parenthesized, + STATE(1983), 1, + aux_sym_shebang_repeat1, + STATE(2002), 1, + sym__expr_unary_minus, + STATE(2136), 1, + sym_comment, + STATE(2975), 1, + sym__val_number_decimal, + STATE(3786), 1, + sym__expr_binary_expression_parenthesized, + STATE(6692), 1, + sym__expression_parenthesized, + ACTIONS(207), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(1418), 2, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3432), 2, + anon_sym_true, + anon_sym_false, + STATE(1392), 2, sym__raw_str, sym__str_double_quotes, - STATE(2141), 4, + STATE(2381), 4, sym_expr_unary, - sym_expr_binary, + sym_expr_binary_parenthesized, sym_val_range, sym__value, - ACTIONS(227), 6, + ACTIONS(223), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2085), 12, + STATE(2105), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -266407,17 +267859,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [32620] = 6, - ACTIONS(251), 1, + [29498] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5247), 1, - anon_sym_DOT_DOT2, - STATE(2121), 1, + STATE(2137), 1, sym_comment, - ACTIONS(5249), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2035), 13, + ACTIONS(2481), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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(2483), 45, + sym_raw_string_begin, + 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, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [29570] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2138), 1, + sym_comment, + STATE(2164), 1, + aux_sym_shebang_repeat1, + ACTIONS(5092), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266431,8 +267948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2041), 43, - ts_builtin_sym_end, + ACTIONS(5090), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266444,12 +267960,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -266475,18 +267995,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, - [32694] = 4, - ACTIONS(251), 1, + [29643] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2122), 1, + ACTIONS(2192), 1, + anon_sym_LPAREN2, + ACTIONS(2196), 1, + aux_sym_unquoted_token2, + STATE(2139), 1, sym_comment, - ACTIONS(1719), 14, + ACTIONS(2190), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -266495,7 +268018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1721), 45, + ACTIONS(2194), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -266514,6 +268037,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -266531,8 +268056,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - 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, @@ -266541,12 +268064,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, - [32764] = 4, - ACTIONS(251), 1, + [29718] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2123), 1, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(2140), 1, sym_comment, - ACTIONS(2128), 13, + ACTIONS(5241), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266560,7 +268085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2132), 46, + ACTIONS(5239), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266576,12 +268101,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -266607,18 +268132,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, - [32834] = 4, - ACTIONS(251), 1, + [29791] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2124), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(2141), 1, sym_comment, - ACTIONS(1997), 14, + STATE(7298), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4962), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -266627,7 +268155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1999), 45, + ACTIONS(4960), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -266646,6 +268174,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -266663,8 +268193,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - 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, @@ -266673,14 +268201,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, - [32904] = 5, - ACTIONS(251), 1, + [29866] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5251), 1, - aux_sym__immediate_decimal_token2, - STATE(2125), 1, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(2142), 1, sym_comment, - ACTIONS(1783), 14, + ACTIONS(5245), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266694,9 +268222,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_token2, - ACTIONS(1785), 44, - ts_builtin_sym_end, + ACTIONS(5243), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266708,12 +268234,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -266722,7 +268252,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -266740,12 +268269,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, - [32976] = 4, - ACTIONS(251), 1, + [29939] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2126), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(2143), 1, sym_comment, - ACTIONS(1802), 13, + STATE(7298), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4962), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266759,7 +268292,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(1810), 46, + ACTIONS(4960), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266771,16 +268305,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -266806,12 +268338,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, - [33046] = 4, - ACTIONS(251), 1, + [30014] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2127), 1, + STATE(2144), 1, sym_comment, - ACTIONS(5255), 13, + STATE(2258), 1, + aux_sym_shebang_repeat1, + ACTIONS(5249), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266825,7 +268359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5253), 46, + ACTIONS(5247), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266841,12 +268375,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -266872,78 +268406,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33116] = 4, - ACTIONS(251), 1, + [30087] = 38, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(155), 1, + anon_sym_LPAREN, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(185), 1, + anon_sym_DOT_DOT, + ACTIONS(201), 1, + aux_sym_expr_unary_token1, + 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(2128), 1, - sym_comment, - ACTIONS(5118), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(5116), 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, + ACTIONS(249), 1, + sym_raw_string_begin, + ACTIONS(377), 1, anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [33186] = 4, - ACTIONS(251), 1, + ACTIONS(1016), 1, + anon_sym_DOLLAR, + ACTIONS(3430), 1, + anon_sym_null, + ACTIONS(3434), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3436), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3438), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3440), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3442), 1, + anon_sym_COLON2, + STATE(1536), 1, + sym__val_number, + STATE(1690), 1, + sym_expr_parenthesized, + STATE(1714), 1, + sym_val_variable, + STATE(1875), 1, + sym__inter_single_quotes, + STATE(1877), 1, + sym__inter_double_quotes, + STATE(2002), 1, + sym__expr_unary_minus, + STATE(2145), 1, + sym_comment, + STATE(2975), 1, + sym__val_number_decimal, + STATE(3836), 1, + sym__expr_binary_expression, + STATE(7287), 1, + sym__expression, + ACTIONS(207), 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(3432), 2, + anon_sym_true, + anon_sym_false, + STATE(1392), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2132), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(223), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2105), 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, + [30226] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2129), 1, + STATE(2146), 1, sym_comment, - ACTIONS(1812), 13, + STATE(2288), 1, + aux_sym_shebang_repeat1, + ACTIONS(5172), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266957,7 +268528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1820), 46, + ACTIONS(5170), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266973,12 +268544,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -267004,12 +268575,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, - [33256] = 4, - ACTIONS(251), 1, + [30299] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2130), 1, + STATE(2147), 1, sym_comment, - ACTIONS(5259), 13, + STATE(2212), 1, + aux_sym_shebang_repeat1, + ACTIONS(5100), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267023,7 +268596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5257), 46, + ACTIONS(5098), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267039,12 +268612,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -267070,12 +268643,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, - [33326] = 4, - ACTIONS(251), 1, + [30372] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2131), 1, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(2148), 1, sym_comment, - ACTIONS(1835), 14, + ACTIONS(5253), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267089,8 +268664,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_token2, - ACTIONS(1837), 45, + ACTIONS(5251), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267105,11 +268679,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -267118,7 +268694,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -267136,17 +268711,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, - [33396] = 6, - ACTIONS(251), 1, + [30445] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5261), 1, - anon_sym_DOT_DOT2, - STATE(2132), 1, + STATE(2149), 1, sym_comment, - ACTIONS(5263), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2043), 13, + STATE(2194), 1, + aux_sym_shebang_repeat1, + ACTIONS(5172), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267160,8 +268732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2049), 43, - ts_builtin_sym_end, + ACTIONS(5170), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267173,12 +268744,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -267204,12 +268779,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, - [33470] = 4, - ACTIONS(251), 1, + [30518] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2133), 1, + STATE(2150), 1, sym_comment, - ACTIONS(1711), 14, + STATE(2218), 1, + aux_sym_shebang_repeat1, + ACTIONS(5100), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267223,8 +268800,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_token2, - ACTIONS(1713), 45, + ACTIONS(5098), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267239,11 +268815,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -267252,7 +268830,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -267270,12 +268847,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, - [33540] = 4, - ACTIONS(251), 1, + [30591] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2134), 1, + STATE(2151), 1, sym_comment, - ACTIONS(1755), 14, + STATE(2289), 1, + aux_sym_shebang_repeat1, + ACTIONS(5172), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267289,8 +268868,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_token2, - ACTIONS(1757), 45, + ACTIONS(5170), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267305,97 +268883,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [33610] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2206), 1, - anon_sym_LPAREN2, - ACTIONS(2208), 1, - aux_sym_unquoted_token4, - STATE(2135), 1, - sym_comment, - ACTIONS(1012), 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(1016), 44, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_STAR2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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, @@ -267404,12 +268915,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, - [33684] = 4, - ACTIONS(251), 1, + [30664] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2136), 1, + STATE(2152), 1, sym_comment, - ACTIONS(1941), 13, + STATE(2287), 1, + aux_sym_shebang_repeat1, + ACTIONS(5172), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267423,7 +268936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1943), 46, + ACTIONS(5170), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267439,12 +268952,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -267470,12 +268983,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, - [33754] = 4, - ACTIONS(251), 1, + [30737] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2137), 1, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(2153), 1, sym_comment, - ACTIONS(5118), 13, + ACTIONS(5257), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267489,7 +269004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5116), 46, + ACTIONS(5255), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267505,12 +269020,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -267536,12 +269051,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, - [33824] = 4, - ACTIONS(251), 1, + [30810] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2138), 1, + STATE(2154), 1, sym_comment, - ACTIONS(2478), 13, + STATE(2220), 1, + aux_sym_shebang_repeat1, + ACTIONS(5261), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267555,7 +269072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2480), 46, + ACTIONS(5259), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267571,12 +269088,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -267602,12 +269119,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, - [33894] = 4, - ACTIONS(251), 1, + [30883] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2139), 1, + STATE(2155), 1, sym_comment, - ACTIONS(5118), 13, + STATE(2264), 1, + aux_sym_shebang_repeat1, + ACTIONS(5158), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267621,7 +269140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5116), 46, + ACTIONS(5156), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267637,12 +269156,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -267668,148 +269187,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, - [33964] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5265), 1, - anon_sym_DOT_DOT2, - STATE(2140), 1, - sym_comment, - ACTIONS(5267), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2019), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(2025), 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [34038] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2141), 1, - sym_comment, - ACTIONS(5156), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5160), 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(5154), 23, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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_LBRACE, - 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(5158), 23, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [34112] = 4, - ACTIONS(251), 1, + [30956] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2142), 1, + STATE(2156), 1, sym_comment, - ACTIONS(5156), 13, + STATE(2228), 1, + aux_sym_shebang_repeat1, + ACTIONS(5172), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267823,7 +269208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5158), 46, + ACTIONS(5170), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267839,12 +269224,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -267870,12 +269255,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, - [34182] = 4, - ACTIONS(251), 1, + [31029] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2143), 1, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(2157), 1, sym_comment, - ACTIONS(5271), 13, + ACTIONS(5253), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267889,7 +269276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5269), 46, + ACTIONS(5251), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267905,12 +269292,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -267936,16 +269323,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, - [34252] = 6, - ACTIONS(251), 1, + [31102] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1814), 1, - anon_sym_LPAREN2, - ACTIONS(1822), 1, - aux_sym_unquoted_token2, - STATE(2144), 1, + STATE(2158), 1, sym_comment, - ACTIONS(1812), 13, + ACTIONS(1701), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267959,7 +269342,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(1820), 44, + aux_sym_unquoted_token2, + ACTIONS(1703), 46, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267971,14 +269356,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_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -267987,6 +269372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -268004,12 +269390,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, - [34326] = 4, - ACTIONS(251), 1, + [31173] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2145), 1, + STATE(2159), 1, sym_comment, - ACTIONS(2148), 13, + STATE(2204), 1, + aux_sym_shebang_repeat1, + ACTIONS(5172), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268023,7 +269411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2150), 46, + ACTIONS(5170), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268039,12 +269427,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -268070,84 +269458,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, - [34396] = 6, - ACTIONS(3), 1, + [31246] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2138), 1, + ACTIONS(4452), 1, anon_sym_LPAREN2, - ACTIONS(2142), 1, - aux_sym_unquoted_token4, - STATE(2146), 1, - sym_comment, - ACTIONS(2140), 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(2136), 44, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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, - [34470] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2174), 1, - anon_sym_LPAREN2, - ACTIONS(2178), 1, - aux_sym_unquoted_token2, - STATE(2147), 1, + STATE(2160), 1, sym_comment, - ACTIONS(2172), 13, + STATE(7298), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4962), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268161,7 +269481,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(2176), 44, + ACTIONS(4960), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268173,14 +269494,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_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -268206,16 +269527,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, - [34544] = 6, - ACTIONS(251), 1, + [31321] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1540), 1, - aux_sym_unquoted_token2, - ACTIONS(2226), 1, - anon_sym_LPAREN2, - STATE(2148), 1, + STATE(2161), 1, sym_comment, - ACTIONS(2224), 13, + STATE(2273), 1, + aux_sym_shebang_repeat1, + ACTIONS(5158), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268229,7 +269548,7 @@ 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), 44, + ACTIONS(5156), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268244,11 +269563,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -268274,116 +269595,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, - [34618] = 37, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(157), 1, - anon_sym_LPAREN, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(187), 1, - anon_sym_DOT_DOT, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(237), 1, - anon_sym_DQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(253), 1, - sym_raw_string_begin, - ACTIONS(383), 1, - anon_sym_DASH2, - ACTIONS(1030), 1, - anon_sym_DOLLAR, - ACTIONS(3408), 1, - anon_sym_null, - ACTIONS(3412), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3414), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3416), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, - aux_sym__val_number_decimal_token4, - STATE(1667), 1, - sym__val_number, - STATE(1833), 1, - sym_val_variable, - STATE(1888), 1, - sym_expr_parenthesized, - STATE(2034), 1, - sym__inter_single_quotes, - STATE(2035), 1, - sym__inter_double_quotes, - STATE(2143), 1, - sym__expr_unary_minus, - STATE(2149), 1, - sym_comment, - STATE(3154), 1, - sym__val_number_decimal, - STATE(3865), 1, - sym__expr_binary_expression, - STATE(7358), 1, - sym__expression, - ACTIONS(211), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(239), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3410), 2, - anon_sym_true, - anon_sym_false, - STATE(1418), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2141), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(227), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2085), 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, - [34754] = 6, - ACTIONS(251), 1, + [31394] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4808), 1, - anon_sym_DOT_DOT2, - STATE(2150), 1, + STATE(2162), 1, sym_comment, - ACTIONS(4810), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5156), 13, + STATE(2278), 1, + aux_sym_shebang_repeat1, + ACTIONS(5172), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268397,8 +269616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5158), 43, - ts_builtin_sym_end, + ACTIONS(5170), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268410,12 +269628,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -268441,12 +269663,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, - [34828] = 4, - ACTIONS(251), 1, + [31467] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2151), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(2163), 1, sym_comment, - ACTIONS(2172), 13, + STATE(7298), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4962), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268460,7 +269686,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(2176), 46, + ACTIONS(4960), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268472,16 +269699,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -268507,16 +269732,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, - [34898] = 6, - ACTIONS(3), 1, + [31542] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2138), 1, - anon_sym_LPAREN2, - ACTIONS(2142), 1, - aux_sym_unquoted_token4, - STATE(2152), 1, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(2164), 1, sym_comment, - ACTIONS(2146), 13, + ACTIONS(5253), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(5251), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268529,44 +269766,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_RBRACE, - ACTIONS(2144), 44, - anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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, @@ -268575,12 +269800,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, - [34972] = 4, - ACTIONS(251), 1, + [31615] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2153), 1, + STATE(2165), 1, sym_comment, - ACTIONS(2224), 13, + STATE(2186), 1, + aux_sym_shebang_repeat1, + ACTIONS(5172), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268594,7 +269821,7 @@ 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), 46, + ACTIONS(5170), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268610,12 +269837,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -268641,17 +269868,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, - [35042] = 6, - ACTIONS(251), 1, + [31688] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5273), 1, - anon_sym_DOT_DOT2, - STATE(2154), 1, + STATE(2166), 1, sym_comment, - ACTIONS(5275), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2027), 13, + STATE(2254), 1, + aux_sym_shebang_repeat1, + ACTIONS(5100), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268665,8 +269889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2033), 43, - ts_builtin_sym_end, + ACTIONS(5098), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268678,12 +269901,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -268709,12 +269936,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, - [35116] = 4, - ACTIONS(251), 1, + [31761] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2155), 1, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(2167), 1, sym_comment, - ACTIONS(5118), 13, + ACTIONS(5241), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268728,7 +269957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5116), 46, + ACTIONS(5239), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268744,12 +269973,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -268775,16 +270004,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35186] = 6, - ACTIONS(251), 1, + [31834] = 35, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(2156), 1, + ACTIONS(1272), 1, + anon_sym_DQUOTE, + ACTIONS(1276), 1, + sym_raw_string_begin, + ACTIONS(3538), 1, + aux_sym_unquoted_token1, + ACTIONS(3830), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3832), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3834), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3836), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4087), 1, + anon_sym_DOLLAR, + ACTIONS(4091), 1, + anon_sym_DOT_DOT, + ACTIONS(4111), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4113), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5263), 1, + anon_sym_LBRACK, + ACTIONS(5265), 1, + anon_sym_LPAREN, + ACTIONS(5267), 1, + anon_sym_DASH_DASH, + ACTIONS(5269), 1, + anon_sym_DASH2, + ACTIONS(5273), 1, + sym_val_date, + STATE(2168), 1, sym_comment, - STATE(7580), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4876), 13, + STATE(3201), 1, + aux_sym_overlay_hide_repeat1, + STATE(5297), 1, + sym__inter_single_quotes, + STATE(5300), 1, + sym__inter_double_quotes, + STATE(5713), 1, + sym__val_number_decimal, + STATE(7494), 1, + sym_val_bool, + STATE(7649), 1, + sym__unquoted_anonymous_prefix, + STATE(7833), 1, + sym__val_range, + ACTIONS(1274), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3828), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4093), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(3453), 2, + sym_short_flag, + sym_long_flag, + STATE(3472), 2, + sym_val_list, + sym__flag, + STATE(3793), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5271), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(5131), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2830), 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(2832), 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, + [31967] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2169), 1, + sym_comment, + STATE(2256), 1, + aux_sym_shebang_repeat1, + ACTIONS(5172), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268798,8 +270123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4874), 43, - ts_builtin_sym_end, + ACTIONS(5170), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268811,12 +270135,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -268842,14 +270170,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, - [35259] = 5, - ACTIONS(251), 1, + [32040] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2157), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(2170), 1, sym_comment, - ACTIONS(5279), 13, + STATE(7298), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4962), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268863,7 +270193,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(5277), 44, + ACTIONS(4960), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268875,14 +270206,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -268908,14 +270239,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, - [35330] = 5, - ACTIONS(251), 1, + [32115] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2158), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(2171), 1, sym_comment, - STATE(2220), 1, - aux_sym_shebang_repeat1, - ACTIONS(5172), 13, + STATE(7298), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4962), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268929,7 +270262,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(5170), 44, + ACTIONS(4960), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268941,14 +270275,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -268974,14 +270308,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, - [35401] = 5, - ACTIONS(251), 1, + [32190] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2159), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(2172), 1, sym_comment, - STATE(2232), 1, - aux_sym_shebang_repeat1, - ACTIONS(5176), 13, + STATE(7298), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4962), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268995,7 +270331,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(5174), 44, + ACTIONS(4960), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269007,14 +270344,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -269040,14 +270377,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, - [35472] = 5, - ACTIONS(251), 1, + [32265] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2160), 1, + STATE(2173), 1, sym_comment, - ACTIONS(5279), 13, + STATE(2223), 1, + aux_sym_shebang_repeat1, + ACTIONS(5100), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269061,7 +270398,7 @@ 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, + ACTIONS(5098), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269081,6 +270418,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -269106,14 +270445,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, - [35543] = 5, - ACTIONS(251), 1, + [32338] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2161), 1, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + ACTIONS(1808), 1, + anon_sym_LPAREN2, + STATE(2174), 1, sym_comment, - ACTIONS(5283), 13, + ACTIONS(1806), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269127,7 +270468,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(5281), 44, + ACTIONS(1814), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269139,14 +270481,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -269172,14 +270514,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, - [35614] = 5, - ACTIONS(251), 1, + [32413] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2162), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(2175), 1, sym_comment, - STATE(2233), 1, - aux_sym_shebang_repeat1, - ACTIONS(5176), 13, + STATE(7298), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4962), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269193,7 +270537,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(5174), 44, + ACTIONS(4960), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269205,14 +270550,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -269238,14 +270583,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, - [35685] = 5, - ACTIONS(251), 1, + [32488] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2163), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(2176), 1, sym_comment, - ACTIONS(5283), 13, + STATE(7298), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4962), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269259,7 +270606,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(5281), 44, + ACTIONS(4960), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269271,14 +270619,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -269304,14 +270652,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, - [35756] = 5, - ACTIONS(251), 1, + [32563] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2164), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(2177), 1, sym_comment, - STATE(2262), 1, - aux_sym_shebang_repeat1, - ACTIONS(5188), 13, + STATE(7298), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4962), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269325,7 +270675,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(5186), 44, + ACTIONS(4960), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269337,14 +270688,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -269370,14 +270721,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, - [35827] = 5, - ACTIONS(251), 1, + [32638] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2165), 1, + STATE(2178), 1, sym_comment, - ACTIONS(5287), 13, + STATE(2261), 1, + aux_sym_shebang_repeat1, + ACTIONS(5100), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269391,7 +270742,7 @@ 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, + ACTIONS(5098), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269411,6 +270762,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -269436,14 +270789,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, - [35898] = 5, - ACTIONS(251), 1, + [32711] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2166), 1, + STATE(2179), 1, sym_comment, - STATE(2235), 1, + STATE(2284), 1, aux_sym_shebang_repeat1, - ACTIONS(5182), 13, + ACTIONS(5158), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269457,7 +270810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 44, + ACTIONS(5156), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269477,6 +270830,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -269502,83 +270857,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, - [35969] = 6, - ACTIONS(3), 1, + [32784] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2130), 1, - anon_sym_LPAREN2, - ACTIONS(2134), 1, - aux_sym_unquoted_token4, - STATE(2167), 1, - sym_comment, - ACTIONS(2132), 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(2128), 44, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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, - [36042] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(2168), 1, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(2180), 1, sym_comment, - STATE(7398), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5118), 13, + ACTIONS(5253), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269592,8 +270878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5116), 43, - ts_builtin_sym_end, + ACTIONS(5251), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269605,12 +270890,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -269636,14 +270925,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, - [36115] = 5, - ACTIONS(251), 1, + [32857] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2169), 1, + STATE(2181), 1, sym_comment, - STATE(2279), 1, + STATE(2224), 1, aux_sym_shebang_repeat1, - ACTIONS(5188), 13, + ACTIONS(5172), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269657,7 +270946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 44, + ACTIONS(5170), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269677,6 +270966,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -269702,14 +270993,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, - [36186] = 5, - ACTIONS(251), 1, + [32930] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2170), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(2182), 1, sym_comment, - STATE(2245), 1, - aux_sym_shebang_repeat1, - ACTIONS(5182), 13, + STATE(7298), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4962), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269723,7 +271016,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(5180), 44, + ACTIONS(4960), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269735,14 +271029,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -269768,17 +271062,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, - [36257] = 6, - ACTIONS(3), 1, + [33005] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2206), 1, - anon_sym_LPAREN2, - ACTIONS(2208), 1, - aux_sym_unquoted_token4, - STATE(2171), 1, + STATE(2183), 1, sym_comment, - ACTIONS(1012), 12, - ts_builtin_sym_end, + STATE(2225), 1, + aux_sym_shebang_repeat1, + ACTIONS(5172), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(5170), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269790,43 +271095,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(1016), 44, - anon_sym_GT2, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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, @@ -269835,16 +271130,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, - [36330] = 6, - ACTIONS(251), 1, + [33078] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, + ACTIONS(4452), 1, anon_sym_LPAREN2, - STATE(2172), 1, + STATE(2184), 1, sym_comment, - STATE(7398), 1, + STATE(7298), 1, sym__expr_parenthesized_immediate, - ACTIONS(5118), 13, + ACTIONS(4962), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269858,7 +271153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5116), 43, + ACTIONS(4960), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -269877,6 +271172,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -269902,109 +271199,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, - [36403] = 34, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3534), 1, - aux_sym_unquoted_token1, - ACTIONS(3958), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3960), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3962), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3964), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4397), 1, - anon_sym_DOLLAR, - ACTIONS(4401), 1, - anon_sym_DOT_DOT, - ACTIONS(4427), 1, - anon_sym_DQUOTE, - ACTIONS(4431), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4433), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4435), 1, - sym_raw_string_begin, - ACTIONS(5194), 1, - anon_sym_DASH_DASH, - ACTIONS(5196), 1, - anon_sym_DASH2, - ACTIONS(5200), 1, - sym_val_date, - ACTIONS(5223), 1, - anon_sym_LPAREN, - STATE(2173), 1, - sym_comment, - STATE(3261), 1, - aux_sym_ctrl_do_repeat1, - STATE(3437), 1, - sym__flag, - STATE(5636), 1, - sym__inter_single_quotes, - STATE(5637), 1, - sym__inter_double_quotes, - STATE(5813), 1, - sym__val_number_decimal, - STATE(7624), 1, - sym_val_bool, - STATE(7836), 1, - sym__val_range, - STATE(7845), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(3956), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4403), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4429), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3350), 2, - sym_short_flag, - sym_long_flag, - STATE(5380), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5225), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(5309), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2664), 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(2666), 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, - [36532] = 5, - ACTIONS(251), 1, + [33153] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2174), 1, + STATE(2185), 1, sym_comment, - ACTIONS(5283), 13, + ACTIONS(5277), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270018,7 +271220,7 @@ 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, + ACTIONS(5275), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270038,6 +271240,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -270063,14 +271267,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, - [36603] = 5, - ACTIONS(251), 1, + [33226] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2175), 1, - sym_comment, - STATE(2289), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - ACTIONS(5188), 13, + STATE(2186), 1, + sym_comment, + ACTIONS(5277), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270084,7 +271288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 44, + ACTIONS(5275), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270104,6 +271308,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -270129,14 +271335,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, - [36674] = 5, - ACTIONS(251), 1, + [33299] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2176), 1, + STATE(2187), 1, sym_comment, - STATE(2253), 1, + STATE(2277), 1, aux_sym_shebang_repeat1, - ACTIONS(5182), 13, + ACTIONS(5172), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270150,7 +271356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 44, + ACTIONS(5170), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270170,6 +271376,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -270195,14 +271403,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, - [36745] = 5, - ACTIONS(251), 1, + [33372] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2177), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(2188), 1, sym_comment, - ACTIONS(5287), 13, + STATE(7298), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4962), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270216,7 +271426,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), 44, + ACTIONS(4960), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270228,14 +271439,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -270261,12 +271472,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, - [36816] = 4, - ACTIONS(251), 1, + [33447] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2178), 1, + STATE(2189), 1, sym_comment, - ACTIONS(1711), 14, + STATE(2214), 1, + aux_sym_shebang_repeat1, + ACTIONS(5100), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270280,9 +271493,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_token2, - ACTIONS(1713), 44, - ts_builtin_sym_end, + ACTIONS(5098), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270294,12 +271505,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -270308,7 +271523,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -270326,14 +271540,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, - [36885] = 5, - ACTIONS(251), 1, + [33520] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2179), 1, - sym_comment, - STATE(2187), 1, + STATE(2167), 1, aux_sym_shebang_repeat1, - ACTIONS(5176), 13, + STATE(2190), 1, + sym_comment, + ACTIONS(5158), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270347,7 +271561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5174), 44, + ACTIONS(5156), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270367,6 +271581,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -270392,16 +271608,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, - [36956] = 6, - ACTIONS(251), 1, + [33593] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, + ACTIONS(1818), 1, anon_sym_LPAREN2, - STATE(2180), 1, + ACTIONS(1826), 1, + aux_sym_unquoted_token2, + STATE(2191), 1, sym_comment, - STATE(7398), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5118), 13, + ACTIONS(2164), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270415,7 +271631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5116), 43, + ACTIONS(2166), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -270434,6 +271650,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -270459,83 +271677,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, - [37029] = 34, - ACTIONS(251), 1, + [33668] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3534), 1, - aux_sym_unquoted_token1, - ACTIONS(3958), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3960), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3962), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3964), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4397), 1, - anon_sym_DOLLAR, - ACTIONS(4401), 1, - anon_sym_DOT_DOT, - ACTIONS(4427), 1, - anon_sym_DQUOTE, - ACTIONS(4431), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4433), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4435), 1, - sym_raw_string_begin, - ACTIONS(5194), 1, - anon_sym_DASH_DASH, - ACTIONS(5196), 1, - anon_sym_DASH2, - ACTIONS(5200), 1, - sym_val_date, - ACTIONS(5223), 1, - anon_sym_LPAREN, - STATE(2173), 1, - aux_sym_ctrl_do_repeat1, - STATE(2181), 1, + STATE(2192), 1, sym_comment, - STATE(3437), 1, - sym__flag, - STATE(5636), 1, - sym__inter_single_quotes, - STATE(5637), 1, - sym__inter_double_quotes, - STATE(5813), 1, - sym__val_number_decimal, - STATE(7624), 1, - sym_val_bool, - STATE(7836), 1, - sym__val_range, - STATE(7845), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(3956), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4403), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4429), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3350), 2, - sym_short_flag, - sym_long_flag, - STATE(5380), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5225), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(5206), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2664), 8, + ACTIONS(2087), 13, + 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, + ACTIONS(2085), 47, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270544,8 +271735,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(2666), 9, - anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -270554,16 +271743,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, - [37158] = 6, - ACTIONS(251), 1, + aux_sym_unquoted_token4, + [33739] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(2182), 1, + STATE(2193), 1, sym_comment, - STATE(7398), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5118), 13, + ACTIONS(1693), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270577,7 +271763,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(5116), 43, + aux_sym_unquoted_token2, + ACTIONS(1695), 46, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -270596,6 +271783,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -270604,6 +271793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -270621,16 +271811,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, - [37231] = 6, - ACTIONS(251), 1, + [33810] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(2183), 1, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(2194), 1, sym_comment, - STATE(7398), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5118), 13, + ACTIONS(5277), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270644,8 +271832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5116), 43, - ts_builtin_sym_end, + ACTIONS(5275), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270657,12 +271844,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -270688,14 +271879,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, - [37304] = 5, - ACTIONS(251), 1, + [33883] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2184), 1, + STATE(2195), 1, sym_comment, - STATE(2290), 1, + STATE(2282), 1, aux_sym_shebang_repeat1, - ACTIONS(5182), 13, + ACTIONS(5158), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270709,7 +271900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 44, + ACTIONS(5156), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270729,6 +271920,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -270754,14 +271947,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, - [37375] = 5, - ACTIONS(251), 1, + [33956] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2185), 1, + STATE(2196), 1, sym_comment, - ACTIONS(5291), 13, + ACTIONS(5281), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270775,7 +271968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5289), 44, + ACTIONS(5279), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270795,6 +271988,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -270820,14 +272015,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, - [37446] = 5, - ACTIONS(251), 1, + [34029] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2186), 1, + STATE(2197), 1, sym_comment, - ACTIONS(5291), 13, + STATE(2246), 1, + aux_sym_shebang_repeat1, + ACTIONS(5092), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270841,7 +272036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5289), 44, + ACTIONS(5090), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270861,6 +272056,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -270886,14 +272083,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, - [37517] = 5, - ACTIONS(251), 1, + [34102] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2187), 1, + ACTIONS(1818), 1, + anon_sym_LPAREN2, + ACTIONS(1826), 1, + aux_sym_unquoted_token2, + STATE(2198), 1, sym_comment, - ACTIONS(5291), 13, + ACTIONS(1816), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270907,7 +272106,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(5289), 44, + ACTIONS(1824), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270919,14 +272119,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -270952,12 +272152,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, - [37588] = 4, - ACTIONS(251), 1, + [34177] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2188), 1, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(2199), 1, sym_comment, - ACTIONS(1755), 14, + ACTIONS(5253), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270971,9 +272173,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_token2, - ACTIONS(1757), 44, - ts_builtin_sym_end, + ACTIONS(5251), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270985,12 +272185,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -270999,7 +272203,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -271017,94 +272220,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, - [37657] = 19, - ACTIONS(251), 1, + [34250] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3132), 1, - anon_sym_DQUOTE, - ACTIONS(3138), 1, - sym_raw_string_begin, - ACTIONS(4952), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5297), 1, - sym__newline, - ACTIONS(5299), 1, - anon_sym_RBRACK, - STATE(2189), 1, - sym_comment, - STATE(2444), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2592), 1, - aux_sym_command_list_repeat1, - STATE(3765), 1, - sym__val_number_decimal, - STATE(6951), 1, - sym__command_name, - STATE(7043), 1, - sym_val_string, - STATE(7283), 1, - sym_cmd_identifier, - ACTIONS(3134), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4950), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(5195), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5293), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5295), 34, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [37756] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2190), 1, + STATE(2200), 1, sym_comment, - ACTIONS(5287), 13, + ACTIONS(5253), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271118,7 +272241,7 @@ 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, + ACTIONS(5251), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271138,6 +272261,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -271163,14 +272288,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, - [37827] = 5, - ACTIONS(251), 1, + [34323] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2191), 1, - sym_comment, - STATE(2296), 1, + STATE(2142), 1, aux_sym_shebang_repeat1, - ACTIONS(5182), 13, + STATE(2201), 1, + sym_comment, + ACTIONS(5285), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271184,7 +272309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 44, + ACTIONS(5283), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271204,6 +272329,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -271229,14 +272356,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, - [37898] = 5, - ACTIONS(251), 1, + [34396] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2192), 1, + STATE(2202), 1, sym_comment, - ACTIONS(5279), 13, + ACTIONS(1766), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271250,7 +272375,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(5277), 44, + aux_sym_unquoted_token2, + ACTIONS(1768), 46, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271262,14 +272389,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -271278,6 +272405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -271295,14 +272423,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, - [37969] = 5, - ACTIONS(251), 1, + [34467] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2193), 1, + ACTIONS(4706), 1, + aux_sym_unquoted_token2, + STATE(2203), 1, sym_comment, - ACTIONS(5291), 13, + ACTIONS(1639), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271316,7 +272444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5289), 44, + ACTIONS(1651), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271331,11 +272459,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -271361,14 +272491,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, - [38040] = 5, - ACTIONS(251), 1, + [34540] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2194), 1, + STATE(2204), 1, sym_comment, - ACTIONS(5291), 13, + ACTIONS(5277), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271382,7 +272512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5289), 44, + ACTIONS(5275), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271402,6 +272532,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -271427,80 +272559,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, - [38111] = 5, - ACTIONS(251), 1, + [34613] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2195), 1, + STATE(2205), 1, sym_comment, - ACTIONS(5291), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(5289), 44, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [38182] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1800), 1, + STATE(2238), 1, aux_sym_shebang_repeat1, - STATE(2196), 1, - sym_comment, - ACTIONS(5291), 13, + ACTIONS(5158), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271514,7 +272580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5289), 44, + ACTIONS(5156), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271534,6 +272600,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -271559,14 +272627,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, - [38253] = 5, - ACTIONS(251), 1, + [34686] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2197), 1, + STATE(2206), 1, sym_comment, - ACTIONS(5283), 13, + ACTIONS(1792), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271580,7 +272646,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(5281), 44, + aux_sym_unquoted_token2, + ACTIONS(1794), 46, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271592,14 +272660,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -271608,6 +272676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -271625,14 +272694,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, - [38324] = 5, - ACTIONS(251), 1, + [34757] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2198), 1, + STATE(2207), 1, sym_comment, - STATE(2210), 1, + STATE(2222), 1, aux_sym_shebang_repeat1, - ACTIONS(5172), 13, + ACTIONS(5158), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271646,7 +272715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5170), 44, + ACTIONS(5156), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271666,6 +272735,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -271691,14 +272762,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, - [38395] = 5, - ACTIONS(251), 1, + [34830] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2199), 1, - sym_comment, - STATE(2302), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - ACTIONS(5182), 13, + STATE(2208), 1, + sym_comment, + ACTIONS(5253), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271712,7 +272783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 44, + ACTIONS(5251), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271732,6 +272803,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -271757,14 +272830,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, - [38466] = 5, - ACTIONS(251), 1, + [34903] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2157), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2200), 1, + STATE(2209), 1, sym_comment, - ACTIONS(5188), 13, + ACTIONS(5253), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271778,7 +272851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 44, + ACTIONS(5251), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271798,6 +272871,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -271823,19 +272898,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, - [38537] = 5, - ACTIONS(251), 1, + [34976] = 35, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2201), 1, + ACTIONS(1272), 1, + anon_sym_DQUOTE, + ACTIONS(1276), 1, + sym_raw_string_begin, + ACTIONS(3538), 1, + aux_sym_unquoted_token1, + ACTIONS(3830), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3832), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3834), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3836), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4087), 1, + anon_sym_DOLLAR, + ACTIONS(4091), 1, + anon_sym_DOT_DOT, + ACTIONS(4111), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4113), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5263), 1, + anon_sym_LBRACK, + ACTIONS(5265), 1, + anon_sym_LPAREN, + ACTIONS(5267), 1, + anon_sym_DASH_DASH, + ACTIONS(5269), 1, + anon_sym_DASH2, + ACTIONS(5273), 1, + sym_val_date, + STATE(2168), 1, + aux_sym_overlay_hide_repeat1, + STATE(2210), 1, sym_comment, - ACTIONS(5291), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + STATE(5297), 1, + sym__inter_single_quotes, + STATE(5300), 1, + sym__inter_double_quotes, + STATE(5713), 1, + sym__val_number_decimal, + STATE(7494), 1, + sym_val_bool, + STATE(7649), 1, + sym__unquoted_anonymous_prefix, + STATE(7833), 1, + sym__val_range, + ACTIONS(1274), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3828), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4093), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(3453), 2, + sym_short_flag, + sym_long_flag, + STATE(3472), 2, + sym_val_list, + sym__flag, + STATE(3793), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5271), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(5101), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2830), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271844,43 +272986,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(5289), 44, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + ACTIONS(2832), 9, + anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -271889,14 +272996,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, - [38608] = 5, - ACTIONS(251), 1, + [35109] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(2148), 1, aux_sym_shebang_repeat1, - STATE(2202), 1, + STATE(2211), 1, sym_comment, - ACTIONS(5303), 13, + ACTIONS(5092), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271910,7 +273017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5301), 44, + ACTIONS(5090), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271930,6 +273037,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -271955,14 +273064,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, - [38679] = 5, - ACTIONS(251), 1, + [35182] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2193), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2203), 1, + STATE(2212), 1, sym_comment, - ACTIONS(5176), 13, + ACTIONS(5257), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271976,7 +273085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5174), 44, + ACTIONS(5255), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271996,6 +273105,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -272021,14 +273132,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, - [38750] = 5, - ACTIONS(251), 1, + [35255] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2204), 1, + STATE(2213), 1, sym_comment, - STATE(2303), 1, + STATE(2259), 1, aux_sym_shebang_repeat1, - ACTIONS(5188), 13, + ACTIONS(5100), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272042,7 +273153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 44, + ACTIONS(5098), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272062,6 +273173,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -272087,16 +273200,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, - [38821] = 6, - ACTIONS(251), 1, + [35328] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(2205), 1, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(2214), 1, sym_comment, - STATE(7398), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5118), 13, + ACTIONS(5257), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272110,8 +273221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5116), 43, - ts_builtin_sym_end, + ACTIONS(5255), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272123,12 +273233,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -272154,16 +273268,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, - [38894] = 6, - ACTIONS(251), 1, + [35401] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(2206), 1, + STATE(2215), 1, sym_comment, - STATE(7398), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5118), 13, + STATE(2265), 1, + aux_sym_shebang_repeat1, + ACTIONS(5100), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272177,8 +273289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5116), 43, - ts_builtin_sym_end, + ACTIONS(5098), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272190,12 +273301,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -272221,16 +273336,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, - [38967] = 6, - ACTIONS(251), 1, + [35474] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(2207), 1, + STATE(2140), 1, + aux_sym_shebang_repeat1, + STATE(2216), 1, sym_comment, - STATE(7398), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5118), 13, + ACTIONS(5158), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272244,8 +273357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5116), 43, - ts_builtin_sym_end, + ACTIONS(5156), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272257,12 +273369,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -272288,109 +273404,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, - [39040] = 34, - ACTIONS(251), 1, + [35547] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1286), 1, - anon_sym_DQUOTE, - ACTIONS(1290), 1, - sym_raw_string_begin, - ACTIONS(3490), 1, - aux_sym_unquoted_token1, - ACTIONS(3958), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3960), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3962), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3964), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4102), 1, - anon_sym_DOT_DOT, - ACTIONS(4116), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4118), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5194), 1, - anon_sym_DASH_DASH, - ACTIONS(5196), 1, - anon_sym_DASH2, - ACTIONS(5200), 1, - sym_val_date, - ACTIONS(5305), 1, - anon_sym_LPAREN, - ACTIONS(5307), 1, - anon_sym_DOLLAR, - STATE(2208), 1, - sym_comment, - STATE(3261), 1, - aux_sym_ctrl_do_repeat1, - STATE(3437), 1, - sym__flag, - STATE(5264), 1, - sym__inter_single_quotes, - STATE(5265), 1, - sym__inter_double_quotes, - STATE(5825), 1, - sym__val_number_decimal, - STATE(7519), 1, - sym__val_range, - STATE(7624), 1, - sym_val_bool, - STATE(7789), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(1288), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3956), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4104), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(3350), 2, - sym_short_flag, - sym_long_flag, - STATE(3668), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5198), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(5177), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2664), 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(2666), 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, - [39169] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1800), 1, + STATE(2157), 1, aux_sym_shebang_repeat1, - STATE(2209), 1, + STATE(2217), 1, sym_comment, - ACTIONS(5291), 13, + ACTIONS(5092), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272404,7 +273425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5289), 44, + ACTIONS(5090), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272424,6 +273445,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -272449,14 +273472,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, - [39240] = 5, - ACTIONS(251), 1, + [35620] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2210), 1, + STATE(2218), 1, sym_comment, - ACTIONS(5283), 13, + ACTIONS(5257), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272470,7 +273493,7 @@ 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, + ACTIONS(5255), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272490,6 +273513,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -272515,57 +273540,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, - [39311] = 6, - ACTIONS(3), 1, + [35693] = 35, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2138), 1, - anon_sym_LPAREN2, - ACTIONS(2142), 1, - aux_sym_unquoted_token4, - STATE(2211), 1, - sym_comment, - ACTIONS(2146), 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(2144), 44, - anon_sym_GT2, + ACTIONS(3506), 1, + aux_sym_unquoted_token1, + ACTIONS(3830), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3832), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3834), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3836), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4387), 1, + anon_sym_DOLLAR, + ACTIONS(4391), 1, + anon_sym_DOT_DOT, + ACTIONS(4417), 1, + anon_sym_DQUOTE, + ACTIONS(4421), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4423), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4425), 1, + sym_raw_string_begin, + ACTIONS(5263), 1, + anon_sym_LBRACK, + ACTIONS(5267), 1, + anon_sym_DASH_DASH, + ACTIONS(5269), 1, anon_sym_DASH2, - anon_sym_in2, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + ACTIONS(5273), 1, + sym_val_date, + ACTIONS(5287), 1, + anon_sym_LPAREN, + STATE(2219), 1, + sym_comment, + STATE(3201), 1, + aux_sym_overlay_hide_repeat1, + STATE(5610), 1, + sym__inter_single_quotes, + STATE(5632), 1, + sym__inter_double_quotes, + STATE(5706), 1, + sym__val_number_decimal, + STATE(7494), 1, + sym_val_bool, + STATE(7806), 1, + sym__val_range, + STATE(7809), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3828), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4393), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4419), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3453), 2, + sym_short_flag, + sym_long_flag, + STATE(3472), 2, + sym_val_list, + sym__flag, + STATE(5419), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5289), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(5145), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2830), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272574,6 +273628,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(2832), 9, + anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -272582,14 +273638,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, - [39384] = 5, - ACTIONS(251), 1, + [35826] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2212), 1, + STATE(2220), 1, sym_comment, - ACTIONS(5279), 13, + ACTIONS(5293), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272603,7 +273659,7 @@ 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, + ACTIONS(5291), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272623,6 +273679,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -272648,12 +273706,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, - [39455] = 4, - ACTIONS(251), 1, + [35899] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2213), 1, + STATE(2221), 1, sym_comment, - ACTIONS(1783), 14, + STATE(2242), 1, + aux_sym_shebang_repeat1, + ACTIONS(5158), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272667,9 +273727,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_token2, - ACTIONS(1785), 44, - ts_builtin_sym_end, + ACTIONS(5156), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272681,12 +273739,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -272695,7 +273757,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -272713,14 +273774,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, - [39524] = 5, - ACTIONS(251), 1, + [35972] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2214), 1, + STATE(2222), 1, sym_comment, - ACTIONS(5291), 13, + ACTIONS(5241), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272734,7 +273795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5289), 44, + ACTIONS(5239), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272754,6 +273815,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -272779,14 +273842,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, - [39595] = 5, - ACTIONS(251), 1, + [36045] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2194), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2215), 1, + STATE(2223), 1, sym_comment, - ACTIONS(5176), 13, + ACTIONS(5257), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272800,7 +273863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5174), 44, + ACTIONS(5255), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272820,6 +273883,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -272845,14 +273910,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, - [39666] = 5, - ACTIONS(251), 1, + [36118] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2216), 1, - sym_comment, - STATE(2247), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - ACTIONS(5182), 13, + STATE(2224), 1, + sym_comment, + ACTIONS(5277), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272866,7 +273931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 44, + ACTIONS(5275), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272886,6 +273951,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -272911,14 +273978,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, - [39737] = 5, - ACTIONS(251), 1, + [36191] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2217), 1, + STATE(2225), 1, sym_comment, - ACTIONS(5279), 13, + ACTIONS(5277), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272932,7 +273999,7 @@ 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, + ACTIONS(5275), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272952,6 +274019,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -272977,14 +274046,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, - [39808] = 5, - ACTIONS(251), 1, + [36264] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2218), 1, - sym_comment, - STATE(2223), 1, + STATE(2180), 1, aux_sym_shebang_repeat1, - ACTIONS(5172), 13, + STATE(2226), 1, + sym_comment, + ACTIONS(5092), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272998,7 +274067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5170), 44, + ACTIONS(5090), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273018,6 +274087,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -273043,28 +274114,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, - [39879] = 5, - ACTIONS(251), 1, + [36337] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2219), 1, + ACTIONS(2067), 1, + anon_sym_LPAREN2, + ACTIONS(2071), 1, + aux_sym_unquoted_token4, + STATE(2227), 1, sym_comment, - ACTIONS(5291), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(5289), 44, + ACTIONS(2069), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273076,31 +274136,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, + ACTIONS(2065), 46, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, @@ -273109,14 +274183,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, - [39950] = 5, - ACTIONS(251), 1, + [36412] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2220), 1, + STATE(2228), 1, sym_comment, - ACTIONS(5283), 13, + ACTIONS(5277), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273130,7 +274204,7 @@ 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, + ACTIONS(5275), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273150,6 +274224,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -273175,14 +274251,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, - [40021] = 5, - ACTIONS(251), 1, + [36485] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2195), 1, + STATE(2200), 1, aux_sym_shebang_repeat1, - STATE(2221), 1, + STATE(2229), 1, sym_comment, - ACTIONS(5176), 13, + ACTIONS(5092), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273196,7 +274272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5174), 44, + ACTIONS(5090), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273216,6 +274292,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -273241,14 +274319,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, - [40092] = 5, - ACTIONS(251), 1, + [36558] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2222), 1, + ACTIONS(2061), 1, + anon_sym_LPAREN2, + ACTIONS(2063), 1, + aux_sym_unquoted_token4, + STATE(2230), 1, + sym_comment, + ACTIONS(998), 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(1002), 46, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, + [36633] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2231), 1, sym_comment, - ACTIONS(5287), 13, + STATE(2262), 1, + aux_sym_shebang_repeat1, + ACTIONS(5158), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273262,7 +274409,7 @@ 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, + ACTIONS(5156), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273282,6 +274429,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -273307,14 +274456,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, - [40163] = 5, - ACTIONS(251), 1, + [36706] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(2209), 1, aux_sym_shebang_repeat1, - STATE(2223), 1, + STATE(2232), 1, sym_comment, - ACTIONS(5283), 13, + ACTIONS(5092), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273328,7 +274477,7 @@ 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, + ACTIONS(5090), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273348,6 +274497,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -273373,14 +274524,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, - [40234] = 5, - ACTIONS(251), 1, + [36779] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2224), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(2233), 1, sym_comment, - ACTIONS(5283), 13, + STATE(7477), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4897), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273394,7 +274547,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(5281), 44, + ACTIONS(4895), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273406,14 +274560,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -273439,14 +274593,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, - [40305] = 5, - ACTIONS(251), 1, + [36854] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2225), 1, + STATE(2234), 1, sym_comment, - ACTIONS(5283), 13, + STATE(2268), 1, + aux_sym_shebang_repeat1, + ACTIONS(5100), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273460,7 +274614,7 @@ 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, + ACTIONS(5098), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273480,6 +274634,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -273505,12 +274661,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, - [40376] = 4, - ACTIONS(251), 1, + [36927] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2226), 1, + STATE(2235), 1, sym_comment, - ACTIONS(1835), 14, + STATE(2270), 1, + aux_sym_shebang_repeat1, + ACTIONS(5092), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273524,9 +274682,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_token2, - ACTIONS(1837), 44, - ts_builtin_sym_end, + ACTIONS(5090), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273538,12 +274694,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -273552,7 +274712,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -273570,14 +274729,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, - [40445] = 5, - ACTIONS(251), 1, + [37000] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2165), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2227), 1, + STATE(2236), 1, sym_comment, - ACTIONS(5182), 13, + ACTIONS(5257), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273591,7 +274750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 44, + ACTIONS(5255), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273611,6 +274770,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -273636,94 +274797,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, - [40516] = 19, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1286), 1, - anon_sym_DQUOTE, - ACTIONS(1290), 1, - sym_raw_string_begin, - ACTIONS(3442), 1, - anon_sym_COLON2, - ACTIONS(4952), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5309), 1, - anon_sym_DASH_DASH, - STATE(2228), 1, - sym_comment, - STATE(2449), 1, - aux_sym_decl_def_repeat1, - STATE(2999), 1, - sym_long_flag, - STATE(3792), 1, - sym__val_number_decimal, - STATE(4121), 1, - sym_val_string, - STATE(4146), 1, - sym_cmd_identifier, - STATE(6592), 1, - sym__command_name, - ACTIONS(1288), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4950), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3668), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4940), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(4942), 34, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [40615] = 5, - ACTIONS(251), 1, + [37073] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2229), 1, - sym_comment, - STATE(2297), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - ACTIONS(5188), 13, + STATE(2237), 1, + sym_comment, + ACTIONS(5253), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273737,7 +274818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 44, + ACTIONS(5251), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273757,6 +274838,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -273782,16 +274865,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, - [40686] = 6, - ACTIONS(251), 1, + [37146] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(2230), 1, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(2238), 1, sym_comment, - STATE(7398), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5118), 13, + ACTIONS(5241), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273805,8 +274886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5116), 43, - ts_builtin_sym_end, + ACTIONS(5239), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273818,12 +274898,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -273849,83 +274933,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, - [40759] = 8, - ACTIONS(251), 1, + [37219] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5311), 1, - anon_sym_DOT2, - STATE(2231), 1, + STATE(2239), 1, sym_comment, - STATE(2316), 1, - aux_sym_cell_path_repeat1, - STATE(2588), 1, - sym_path, - STATE(2616), 1, - sym_cell_path, - ACTIONS(1697), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1699), 48, - sym_raw_string_begin, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - 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_STAR2, - 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, - [40836] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1800), 1, + STATE(2276), 1, aux_sym_shebang_repeat1, - STATE(2232), 1, - sym_comment, - ACTIONS(5291), 13, + ACTIONS(5092), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273939,7 +274954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5289), 44, + ACTIONS(5090), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273959,6 +274974,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -273984,14 +275001,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, - [40907] = 5, - ACTIONS(251), 1, + [37292] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2233), 1, + STATE(2240), 1, sym_comment, - ACTIONS(5291), 13, + ACTIONS(5241), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274005,7 +275022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5289), 44, + ACTIONS(5239), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274025,6 +275042,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -274050,14 +275069,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, - [40978] = 5, - ACTIONS(251), 1, + [37365] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2234), 1, + STATE(2241), 1, sym_comment, - STATE(2270), 1, + STATE(2271), 1, aux_sym_shebang_repeat1, - ACTIONS(5315), 13, + ACTIONS(5158), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274071,7 +275090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5313), 44, + ACTIONS(5156), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274091,6 +275110,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -274116,14 +275137,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, - [41049] = 5, - ACTIONS(251), 1, + [37438] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2235), 1, + STATE(2242), 1, sym_comment, - ACTIONS(5287), 13, + ACTIONS(5241), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274137,7 +275158,7 @@ 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, + ACTIONS(5239), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274157,6 +275178,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -274182,83 +275205,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, - [41120] = 34, - ACTIONS(251), 1, + [37511] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1286), 1, - anon_sym_DQUOTE, - ACTIONS(1290), 1, - sym_raw_string_begin, - ACTIONS(3490), 1, - aux_sym_unquoted_token1, - ACTIONS(3958), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3960), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3962), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3964), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4102), 1, - anon_sym_DOT_DOT, - ACTIONS(4116), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4118), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5194), 1, - anon_sym_DASH_DASH, - ACTIONS(5196), 1, - anon_sym_DASH2, - ACTIONS(5200), 1, - sym_val_date, - ACTIONS(5305), 1, - anon_sym_LPAREN, - ACTIONS(5307), 1, - anon_sym_DOLLAR, - STATE(2208), 1, - aux_sym_ctrl_do_repeat1, - STATE(2236), 1, + ACTIONS(4820), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5295), 1, + anon_sym_DOT, + STATE(2243), 1, sym_comment, - STATE(3437), 1, - sym__flag, - STATE(5264), 1, - sym__inter_single_quotes, - STATE(5265), 1, - sym__inter_double_quotes, - STATE(5825), 1, - sym__val_number_decimal, - STATE(7519), 1, - sym__val_range, - STATE(7624), 1, - sym_val_bool, - STATE(7789), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(1288), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3956), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4104), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(3350), 2, - sym_short_flag, - sym_long_flag, - STATE(3668), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5198), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(5153), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2664), 8, + ACTIONS(1701), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274267,8 +275228,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2666), 9, - anon_sym_null, + ACTIONS(1703), 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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274277,14 +275274,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, - [41249] = 5, - ACTIONS(251), 1, + [37586] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2237), 1, + ACTIONS(1562), 1, + aux_sym_unquoted_token2, + ACTIONS(2170), 1, + anon_sym_LPAREN2, + STATE(2244), 1, sym_comment, - STATE(2283), 1, + ACTIONS(2168), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(2172), 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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [37661] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2196), 1, aux_sym_shebang_repeat1, - ACTIONS(5182), 13, + STATE(2245), 1, + sym_comment, + ACTIONS(5299), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274298,7 +275364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 44, + ACTIONS(5297), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274318,6 +275384,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -274343,14 +275411,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, - [41320] = 5, - ACTIONS(251), 1, + [37734] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2217), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2238), 1, + STATE(2246), 1, sym_comment, - ACTIONS(5188), 13, + ACTIONS(5253), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274364,7 +275432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 44, + ACTIONS(5251), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274384,6 +275452,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -274409,96 +275479,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, - [41391] = 19, - ACTIONS(251), 1, + [37807] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1286), 1, - anon_sym_DQUOTE, - ACTIONS(1290), 1, - sym_raw_string_begin, - ACTIONS(3420), 1, - anon_sym_COLON2, - ACTIONS(4952), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5309), 1, - anon_sym_DASH_DASH, - STATE(2239), 1, - sym_comment, - STATE(2449), 1, - aux_sym_decl_def_repeat1, - STATE(2999), 1, - sym_long_flag, - STATE(3792), 1, - sym__val_number_decimal, - STATE(4121), 1, - sym_val_string, - STATE(4146), 1, - sym_cmd_identifier, - STATE(6592), 1, - sym__command_name, - ACTIONS(1288), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4950), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3668), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4940), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(4942), 34, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [41490] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(2240), 1, + STATE(2153), 1, + aux_sym_shebang_repeat1, + STATE(2247), 1, sym_comment, - STATE(7580), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4888), 13, + ACTIONS(5100), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274512,8 +275500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4886), 43, - ts_builtin_sym_end, + ACTIONS(5098), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274525,12 +275512,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -274556,14 +275547,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, - [41563] = 5, - ACTIONS(251), 1, + [37880] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2241), 1, + STATE(2248), 1, sym_comment, - ACTIONS(5279), 13, + STATE(2260), 1, + aux_sym_shebang_repeat1, + ACTIONS(5100), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274577,7 +275568,7 @@ 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, + ACTIONS(5098), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274597,6 +275588,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -274622,14 +275615,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, - [41634] = 5, - ACTIONS(251), 1, + [37953] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2225), 1, + STATE(2199), 1, aux_sym_shebang_repeat1, - STATE(2242), 1, + STATE(2249), 1, sym_comment, - ACTIONS(5172), 13, + ACTIONS(5092), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274643,7 +275636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5170), 44, + ACTIONS(5090), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274663,6 +275656,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -274688,83 +275683,314 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41705] = 8, - ACTIONS(251), 1, + [38026] = 35, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5311), 1, - anon_sym_DOT2, - STATE(2243), 1, - sym_comment, - STATE(2316), 1, - aux_sym_cell_path_repeat1, - STATE(2588), 1, - sym_path, - STATE(2621), 1, - sym_cell_path, - ACTIONS(1719), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1721), 48, + ACTIONS(3506), 1, + aux_sym_unquoted_token1, + ACTIONS(3830), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3832), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3834), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3836), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4387), 1, + anon_sym_DOLLAR, + ACTIONS(4391), 1, + anon_sym_DOT_DOT, + ACTIONS(4417), 1, + anon_sym_DQUOTE, + ACTIONS(4421), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4423), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4425), 1, sym_raw_string_begin, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, + ACTIONS(5263), 1, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, + ACTIONS(5267), 1, + anon_sym_DASH_DASH, + ACTIONS(5269), 1, + anon_sym_DASH2, + ACTIONS(5273), 1, + sym_val_date, + ACTIONS(5287), 1, + anon_sym_LPAREN, + STATE(2219), 1, + aux_sym_overlay_hide_repeat1, + STATE(2250), 1, + sym_comment, + STATE(5610), 1, + sym__inter_single_quotes, + STATE(5632), 1, + sym__inter_double_quotes, + STATE(5706), 1, + sym__val_number_decimal, + STATE(7494), 1, + sym_val_bool, + STATE(7806), 1, + sym__val_range, + STATE(7809), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3828), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4393), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4419), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3453), 2, + sym_short_flag, + sym_long_flag, + STATE(3472), 2, + sym_val_list, + sym__flag, + STATE(5419), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5289), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(5184), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2830), 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(2832), 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, + [38159] = 38, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(155), 1, + anon_sym_LPAREN, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(185), 1, + anon_sym_DOT_DOT, + ACTIONS(201), 1, + aux_sym_expr_unary_token1, + 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(249), 1, + sym_raw_string_begin, + ACTIONS(377), 1, + anon_sym_DASH2, + ACTIONS(1016), 1, + anon_sym_DOLLAR, + ACTIONS(3430), 1, + anon_sym_null, + ACTIONS(3434), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3436), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3438), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3440), 1, aux_sym__val_number_decimal_token4, + ACTIONS(3444), 1, + anon_sym_COLON2, + STATE(1536), 1, + sym__val_number, + STATE(1690), 1, + sym_expr_parenthesized, + STATE(1714), 1, + sym_val_variable, + STATE(1875), 1, + sym__inter_single_quotes, + STATE(1877), 1, + sym__inter_double_quotes, + STATE(2002), 1, + sym__expr_unary_minus, + STATE(2251), 1, + sym_comment, + STATE(2975), 1, + sym__val_number_decimal, + STATE(3836), 1, + sym__expr_binary_expression, + STATE(7438), 1, + sym__expression, + ACTIONS(207), 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(3432), 2, + anon_sym_true, + anon_sym_false, + STATE(1392), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2132), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(223), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2105), 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, + [38298] = 38, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(155), 1, + anon_sym_LPAREN, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(185), 1, + anon_sym_DOT_DOT, + ACTIONS(201), 1, + aux_sym_expr_unary_token1, + 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(249), 1, + sym_raw_string_begin, + ACTIONS(377), 1, + anon_sym_DASH2, + ACTIONS(1016), 1, + anon_sym_DOLLAR, + ACTIONS(3430), 1, + anon_sym_null, + ACTIONS(3434), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3436), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3438), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3440), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3444), 1, + anon_sym_COLON2, + STATE(1536), 1, + sym__val_number, + STATE(1690), 1, + sym_expr_parenthesized, + STATE(1714), 1, + sym_val_variable, + STATE(1875), 1, + sym__inter_single_quotes, + STATE(1877), 1, + sym__inter_double_quotes, + STATE(2002), 1, + sym__expr_unary_minus, + STATE(2252), 1, + sym_comment, + STATE(2975), 1, + sym__val_number_decimal, + STATE(3836), 1, + sym__expr_binary_expression, + STATE(7287), 1, + sym__expression, + ACTIONS(207), 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, - [41782] = 5, - ACTIONS(251), 1, + ACTIONS(3432), 2, + anon_sym_true, + anon_sym_false, + STATE(1392), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2132), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(223), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2105), 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, + [38437] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2197), 1, + STATE(2240), 1, aux_sym_shebang_repeat1, - STATE(2244), 1, + STATE(2253), 1, sym_comment, - ACTIONS(5172), 13, + ACTIONS(5158), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274778,7 +276004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5170), 44, + ACTIONS(5156), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274798,6 +276024,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -274823,14 +276051,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, - [41853] = 5, - ACTIONS(251), 1, + [38510] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2245), 1, + STATE(2254), 1, sym_comment, - ACTIONS(5287), 13, + ACTIONS(5257), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274844,7 +276072,7 @@ 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, + ACTIONS(5255), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274864,6 +276092,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -274889,14 +276119,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, - [41924] = 5, - ACTIONS(251), 1, + [38583] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2222), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2246), 1, + STATE(2255), 1, sym_comment, - ACTIONS(5182), 13, + ACTIONS(5241), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274910,7 +276140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 44, + ACTIONS(5239), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274930,6 +276160,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -274955,14 +276187,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, - [41995] = 5, - ACTIONS(251), 1, + [38656] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2247), 1, + STATE(2256), 1, sym_comment, - ACTIONS(5287), 13, + ACTIONS(5277), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274976,7 +276208,7 @@ 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, + ACTIONS(5275), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274996,6 +276228,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -275021,14 +276255,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, - [42066] = 5, - ACTIONS(251), 1, + [38729] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(2237), 1, aux_sym_shebang_repeat1, - STATE(2248), 1, + STATE(2257), 1, sym_comment, - ACTIONS(5283), 13, + ACTIONS(5092), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275042,7 +276276,7 @@ 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, + ACTIONS(5090), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275062,6 +276296,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -275087,14 +276323,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, - [42137] = 5, - ACTIONS(251), 1, + [38802] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2249), 1, - sym_comment, - STATE(2299), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - ACTIONS(5182), 13, + STATE(2258), 1, + sym_comment, + ACTIONS(5303), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275108,7 +276344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 44, + ACTIONS(5301), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275128,6 +276364,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -275153,16 +276391,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, - [42208] = 6, - ACTIONS(251), 1, + [38875] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym_unquoted_token2, - ACTIONS(1804), 1, - anon_sym_LPAREN2, - STATE(2250), 1, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(2259), 1, sym_comment, - ACTIONS(1802), 13, + ACTIONS(5257), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275176,8 +276412,7 @@ 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, - ts_builtin_sym_end, + ACTIONS(5255), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275189,12 +276424,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -275220,14 +276459,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, - [42281] = 5, - ACTIONS(251), 1, + [38948] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2185), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2251), 1, + STATE(2260), 1, sym_comment, - ACTIONS(5176), 13, + ACTIONS(5257), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275241,7 +276480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5174), 44, + ACTIONS(5255), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275261,6 +276500,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -275286,14 +276527,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, - [42352] = 5, - ACTIONS(251), 1, + [39021] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2174), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2252), 1, + STATE(2261), 1, sym_comment, - ACTIONS(5172), 13, + ACTIONS(5257), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275307,7 +276548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5170), 44, + ACTIONS(5255), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275327,6 +276568,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -275352,14 +276595,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, - [42423] = 5, - ACTIONS(251), 1, + [39094] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2253), 1, + STATE(2262), 1, sym_comment, - ACTIONS(5287), 13, + ACTIONS(5241), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275373,7 +276616,7 @@ 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, + ACTIONS(5239), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275393,6 +276636,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -275418,14 +276663,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, - [42494] = 5, - ACTIONS(251), 1, + [39167] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2254), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(2263), 1, sym_comment, - ACTIONS(5279), 13, + STATE(7477), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4901), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275439,7 +276686,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(5277), 44, + ACTIONS(4899), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275451,14 +276699,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -275484,14 +276732,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, - [42565] = 5, - ACTIONS(251), 1, + [39242] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2255), 1, + STATE(2264), 1, sym_comment, - ACTIONS(5283), 13, + ACTIONS(5241), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275505,7 +276753,7 @@ 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, + ACTIONS(5239), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275525,6 +276773,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -275550,14 +276800,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, - [42636] = 5, - ACTIONS(251), 1, + [39315] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2186), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2256), 1, + STATE(2265), 1, sym_comment, - ACTIONS(5176), 13, + ACTIONS(5257), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275571,7 +276821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5174), 44, + ACTIONS(5255), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275591,6 +276841,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -275616,28 +276868,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, - [42707] = 5, - ACTIONS(251), 1, + [39388] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2224), 1, - aux_sym_shebang_repeat1, - STATE(2257), 1, + ACTIONS(2075), 1, + anon_sym_LPAREN2, + ACTIONS(2079), 1, + aux_sym_unquoted_token4, + STATE(2266), 1, sym_comment, - ACTIONS(5172), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(5170), 44, + ACTIONS(2077), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275649,52 +276890,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, + ACTIONS(2073), 46, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [42778] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2258), 1, - sym_comment, - STATE(2292), 1, - aux_sym_shebang_repeat1, - ACTIONS(5172), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275703,43 +276929,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(5170), 44, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -275748,30 +276937,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, - [42849] = 6, - ACTIONS(251), 1, + [39463] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4181), 1, + ACTIONS(2075), 1, anon_sym_LPAREN2, - STATE(2259), 1, + ACTIONS(2079), 1, + aux_sym_unquoted_token4, + STATE(2267), 1, sym_comment, - STATE(7580), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4880), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(4878), 43, + ACTIONS(2083), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -275784,52 +276959,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, + ACTIONS(2081), 46, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [42922] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4968), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5317), 1, - anon_sym_DOT, - STATE(2260), 1, - sym_comment, - ACTIONS(1755), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275838,42 +276998,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(1757), 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -275882,14 +277006,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, - [42995] = 5, - ACTIONS(251), 1, + [39538] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2261), 1, + STATE(2268), 1, sym_comment, - ACTIONS(5279), 13, + ACTIONS(5257), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275903,7 +277027,7 @@ 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, + ACTIONS(5255), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275923,6 +277047,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -275948,14 +277074,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, - [43066] = 5, - ACTIONS(251), 1, + [39611] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2262), 1, + STATE(2269), 1, sym_comment, - ACTIONS(5279), 13, + ACTIONS(5257), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275969,7 +277095,7 @@ 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, + ACTIONS(5255), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275989,6 +277115,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -276014,83 +277142,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, - [43137] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5311), 1, - anon_sym_DOT2, - STATE(2263), 1, - sym_comment, - STATE(2316), 1, - aux_sym_cell_path_repeat1, - STATE(2588), 1, - sym_path, - STATE(2659), 1, - sym_cell_path, - ACTIONS(943), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(945), 48, - sym_raw_string_begin, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - 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_STAR2, - 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, - [43214] = 5, - ACTIONS(251), 1, + [39684] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2264), 1, + STATE(2270), 1, sym_comment, - ACTIONS(5321), 13, + ACTIONS(5253), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -276104,7 +277163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5319), 44, + ACTIONS(5251), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276124,6 +277183,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -276149,14 +277210,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, - [43285] = 5, - ACTIONS(251), 1, + [39757] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4780), 1, - aux_sym_unquoted_token2, - STATE(2265), 1, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(2271), 1, sym_comment, - ACTIONS(1638), 13, + ACTIONS(5241), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -276170,7 +277231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1650), 44, + ACTIONS(5239), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276185,11 +277246,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -276215,14 +277278,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, - [43356] = 5, - ACTIONS(251), 1, + [39830] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2190), 1, + STATE(2269), 1, aux_sym_shebang_repeat1, - STATE(2266), 1, + STATE(2272), 1, sym_comment, - ACTIONS(5182), 13, + ACTIONS(5100), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -276236,7 +277299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 44, + ACTIONS(5098), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276256,6 +277319,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -276281,16 +277346,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, - [43427] = 6, - ACTIONS(251), 1, + [39903] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(2267), 1, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(2273), 1, sym_comment, - STATE(7398), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5118), 13, + ACTIONS(5241), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -276304,8 +277367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5116), 43, - ts_builtin_sym_end, + ACTIONS(5239), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276317,12 +277379,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -276348,14 +277414,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, - [43500] = 5, - ACTIONS(251), 1, + [39976] = 5, + ACTIONS(247), 1, anon_sym_POUND, STATE(2255), 1, aux_sym_shebang_repeat1, - STATE(2268), 1, + STATE(2274), 1, sym_comment, - ACTIONS(5172), 13, + ACTIONS(5158), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -276369,7 +277435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5170), 44, + ACTIONS(5156), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276389,6 +277455,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -276414,14 +277482,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, - [43571] = 5, - ACTIONS(251), 1, + [40049] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, + STATE(2236), 1, aux_sym_shebang_repeat1, - STATE(2269), 1, + STATE(2275), 1, sym_comment, - ACTIONS(5188), 13, + ACTIONS(5100), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -276435,7 +277503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 44, + ACTIONS(5098), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276455,6 +277523,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -276480,14 +277550,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, - [43642] = 5, - ACTIONS(251), 1, + [40122] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2270), 1, + STATE(2276), 1, sym_comment, - ACTIONS(5325), 13, + ACTIONS(5253), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -276501,7 +277571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5323), 44, + ACTIONS(5251), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276521,6 +277591,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -276546,16 +277618,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, - [43713] = 6, - ACTIONS(251), 1, + [40195] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(2271), 1, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(2277), 1, sym_comment, - STATE(7398), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5118), 13, + ACTIONS(5277), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -276569,8 +277639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5116), 43, - ts_builtin_sym_end, + ACTIONS(5275), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276582,12 +277651,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -276613,63 +277686,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43786] = 13, - ACTIONS(3), 1, + [40268] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2560), 1, - anon_sym_DOLLAR, - ACTIONS(5327), 1, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(2278), 1, + sym_comment, + ACTIONS(5277), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(5275), 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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [40341] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4452), 1, anon_sym_LPAREN2, - ACTIONS(5329), 1, - anon_sym_DOT, - ACTIONS(5333), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5335), 1, - aux_sym__immediate_decimal_token5, - STATE(2272), 1, + STATE(2279), 1, sym_comment, - STATE(2691), 1, - sym__immediate_decimal, - ACTIONS(1475), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5331), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2867), 2, + STATE(7477), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1461), 45, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - 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, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(4889), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276678,6 +277777,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(4887), 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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -276686,15 +277823,115 @@ static const 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, - [43873] = 5, - ACTIONS(251), 1, + [40416] = 38, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(155), 1, + anon_sym_LPAREN, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(185), 1, + anon_sym_DOT_DOT, + ACTIONS(201), 1, + aux_sym_expr_unary_token1, + 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(2241), 1, + ACTIONS(249), 1, + sym_raw_string_begin, + ACTIONS(377), 1, + anon_sym_DASH2, + ACTIONS(1016), 1, + anon_sym_DOLLAR, + ACTIONS(3430), 1, + anon_sym_null, + ACTIONS(3434), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3436), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3438), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3440), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3442), 1, + anon_sym_COLON2, + STATE(1536), 1, + sym__val_number, + STATE(1690), 1, + sym_expr_parenthesized, + STATE(1714), 1, + sym_val_variable, + STATE(1875), 1, + sym__inter_single_quotes, + STATE(1877), 1, + sym__inter_double_quotes, + STATE(2002), 1, + sym__expr_unary_minus, + STATE(2280), 1, + sym_comment, + STATE(2975), 1, + sym__val_number_decimal, + STATE(3836), 1, + sym__expr_binary_expression, + STATE(7438), 1, + sym__expression, + ACTIONS(207), 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(3432), 2, + anon_sym_true, + anon_sym_false, + STATE(1392), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2132), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(223), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2105), 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, + [40555] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2208), 1, aux_sym_shebang_repeat1, - STATE(2273), 1, + STATE(2281), 1, sym_comment, - ACTIONS(5188), 13, + ACTIONS(5092), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -276708,7 +277945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 44, + ACTIONS(5090), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276728,6 +277965,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -276753,14 +277992,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, - [43944] = 5, - ACTIONS(251), 1, + [40628] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2163), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2274), 1, + STATE(2282), 1, sym_comment, - ACTIONS(5172), 13, + ACTIONS(5241), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -276774,7 +278013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5170), 44, + ACTIONS(5239), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276794,6 +278033,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -276819,16 +278060,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, - [44015] = 6, - ACTIONS(251), 1, + [40701] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1814), 1, + ACTIONS(4452), 1, anon_sym_LPAREN2, - ACTIONS(1822), 1, - aux_sym_unquoted_token2, - STATE(2275), 1, + STATE(2283), 1, sym_comment, - ACTIONS(2220), 13, + STATE(7477), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4893), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -276842,7 +278083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2222), 43, + ACTIONS(4891), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -276861,6 +278102,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -276886,14 +278129,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, - [44088] = 5, - ACTIONS(251), 1, + [40776] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2264), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2276), 1, + STATE(2284), 1, sym_comment, - ACTIONS(5339), 13, + ACTIONS(5241), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -276907,7 +278150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5337), 44, + ACTIONS(5239), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276927,6 +278170,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -276952,16 +278197,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, - [44159] = 6, - ACTIONS(251), 1, + [40849] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1814), 1, - anon_sym_LPAREN2, - ACTIONS(1822), 1, - aux_sym_unquoted_token2, - STATE(2277), 1, + STATE(2185), 1, + aux_sym_shebang_repeat1, + STATE(2285), 1, sym_comment, - ACTIONS(1812), 13, + ACTIONS(5172), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -276975,8 +278218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1820), 43, - ts_builtin_sym_end, + ACTIONS(5170), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276988,12 +278230,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -277019,14 +278265,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, - [44232] = 5, - ACTIONS(251), 1, + [40922] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2196), 1, - aux_sym_shebang_repeat1, - STATE(2278), 1, + STATE(2286), 1, sym_comment, - ACTIONS(5176), 13, + STATE(2290), 1, + aux_sym_shebang_repeat1, + ACTIONS(5092), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -277040,7 +278286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5174), 44, + ACTIONS(5090), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277060,6 +278306,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -277085,14 +278333,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, - [44303] = 5, - ACTIONS(251), 1, + [40995] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2279), 1, + STATE(2287), 1, sym_comment, - ACTIONS(5279), 13, + ACTIONS(5277), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -277106,7 +278354,7 @@ 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, + ACTIONS(5275), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277126,6 +278374,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -277151,14 +278401,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, - [44374] = 5, - ACTIONS(251), 1, + [41068] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2254), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2280), 1, + STATE(2288), 1, sym_comment, - ACTIONS(5188), 13, + ACTIONS(5277), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -277172,7 +278422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 44, + ACTIONS(5275), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277192,6 +278442,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -277217,16 +278469,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, - [44445] = 6, - ACTIONS(251), 1, + [41141] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(2281), 1, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(2289), 1, sym_comment, - STATE(7398), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5118), 13, + ACTIONS(5277), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -277240,8 +278490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5116), 43, - ts_builtin_sym_end, + ACTIONS(5275), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277253,12 +278502,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -277284,14 +278537,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, - [44518] = 5, - ACTIONS(251), 1, + [41214] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2201), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2282), 1, + STATE(2290), 1, sym_comment, - ACTIONS(5176), 13, + ACTIONS(5253), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -277305,7 +278558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5174), 44, + ACTIONS(5251), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277325,6 +278578,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -277350,19 +278605,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, - [44589] = 5, - ACTIONS(251), 1, + [41287] = 15, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, + ACTIONS(5307), 1, + anon_sym_DASH2, + ACTIONS(5321), 1, + anon_sym_PLUS2, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2283), 1, + STATE(2291), 1, sym_comment, - ACTIONS(5287), 13, + ACTIONS(5305), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5311), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5315), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5317), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5319), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5323), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5313), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5309), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5245), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277371,7 +278655,7 @@ 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, + ACTIONS(5243), 26, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277384,27 +278668,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_DASH2, - anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -277416,18 +278682,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44660] = 6, - ACTIONS(3), 1, + [41379] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2138), 1, - anon_sym_LPAREN2, - ACTIONS(2142), 1, - aux_sym_unquoted_token4, - STATE(2284), 1, - sym_comment, - ACTIONS(2140), 12, - ts_builtin_sym_end, + ACTIONS(5325), 1, sym__newline, + ACTIONS(5328), 1, + anon_sym_DASH2, + ACTIONS(5336), 1, + anon_sym_PLUS2, + STATE(2292), 1, + sym_comment, + STATE(2339), 1, + aux_sym_shebang_repeat1, + ACTIONS(5330), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5332), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5334), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5299), 10, + anon_sym_GT2, + 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(5297), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277438,43 +278726,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, - ACTIONS(2136), 44, - anon_sym_GT2, - anon_sym_DASH2, + anon_sym_RPAREN, anon_sym_in2, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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, @@ -277483,54 +278755,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, - [44733] = 4, - ACTIONS(3), 1, + [41463] = 20, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2285), 1, - sym_comment, - ACTIONS(2150), 13, - 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, - ACTIONS(2148), 45, - anon_sym_GT2, + ACTIONS(5307), 1, anon_sym_DASH2, - anon_sym_in2, - anon_sym_STAR2, + ACTIONS(5321), 1, + anon_sym_PLUS2, + ACTIONS(5338), 1, anon_sym_and2, + ACTIONS(5340), 1, anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, + ACTIONS(5342), 1, + anon_sym_bit_DASHand2, + ACTIONS(5344), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5346), 1, + anon_sym_bit_DASHor2, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(2293), 1, + sym_comment, + ACTIONS(5305), 2, + anon_sym_GT2, anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, + ACTIONS(5311), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5315), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + ACTIONS(5317), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, + ACTIONS(5319), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, + ACTIONS(5323), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + ACTIONS(5313), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5309), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5293), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277539,6 +278815,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(5291), 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_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -277547,20 +278837,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, - aux_sym_unquoted_token4, - [44802] = 5, - ACTIONS(251), 1, + [41565] = 16, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2160), 1, + ACTIONS(5307), 1, + anon_sym_DASH2, + ACTIONS(5321), 1, + anon_sym_PLUS2, + ACTIONS(5342), 1, + anon_sym_bit_DASHand2, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2286), 1, + STATE(2294), 1, sym_comment, - ACTIONS(5188), 13, + ACTIONS(5305), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5311), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5315), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5317), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5319), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5323), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5313), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5309), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5245), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277569,7 +278889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 44, + ACTIONS(5243), 25, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277582,28 +278902,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_DASH2, - anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -277614,19 +278915,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, - [44873] = 5, - ACTIONS(251), 1, + [41659] = 21, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2287), 1, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(5328), 1, + anon_sym_DASH2, + ACTIONS(5336), 1, + anon_sym_PLUS2, + ACTIONS(5352), 1, + anon_sym_and2, + ACTIONS(5354), 1, + anon_sym_xor2, + ACTIONS(5362), 1, + anon_sym_bit_DASHand2, + ACTIONS(5364), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5366), 1, + anon_sym_bit_DASHor2, + STATE(2295), 1, sym_comment, - ACTIONS(5283), 13, - anon_sym_GT2, + STATE(2377), 1, + aux_sym_shebang_repeat1, + ACTIONS(5330), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5332), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5334), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5348), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5358), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5360), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5356), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5350), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5249), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277635,8 +278977,7 @@ 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(5247), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277648,30 +278989,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_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -277680,19 +278998,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, - [44944] = 5, - ACTIONS(251), 1, + [41763] = 16, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2288), 1, + ACTIONS(5325), 1, + sym__newline, + ACTIONS(5328), 1, + anon_sym_DASH2, + ACTIONS(5336), 1, + anon_sym_PLUS2, + STATE(2296), 1, sym_comment, - ACTIONS(5343), 13, - anon_sym_GT2, + STATE(2341), 1, + aux_sym_shebang_repeat1, + ACTIONS(5330), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5332), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5334), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5348), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5358), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5360), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5356), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5350), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5299), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277701,8 +279050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5341), 44, - sym__newline, + ACTIONS(5297), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277714,27 +279062,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_DASH2, - anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -277746,19 +279076,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, - [45015] = 5, - ACTIONS(251), 1, + [41857] = 17, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2289), 1, + ACTIONS(5325), 1, + sym__newline, + ACTIONS(5328), 1, + anon_sym_DASH2, + ACTIONS(5336), 1, + anon_sym_PLUS2, + ACTIONS(5362), 1, + anon_sym_bit_DASHand2, + STATE(2297), 1, sym_comment, - ACTIONS(5279), 13, - anon_sym_GT2, + STATE(2343), 1, + aux_sym_shebang_repeat1, + ACTIONS(5330), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5332), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5334), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5348), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5358), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5360), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5356), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5350), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5299), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277767,8 +279130,7 @@ 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(5297), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277780,28 +279142,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_DASH2, - anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -277812,19 +279155,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, - [45086] = 5, - ACTIONS(251), 1, + [41953] = 13, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, + ACTIONS(5307), 1, + anon_sym_DASH2, + ACTIONS(5321), 1, + anon_sym_PLUS2, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2290), 1, + STATE(2298), 1, sym_comment, - ACTIONS(5287), 13, + ACTIONS(5305), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5311), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5317), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5319), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5323), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5313), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5293), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277833,7 +279195,7 @@ 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, + ACTIONS(5291), 34, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277846,27 +279208,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -277878,19 +279230,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, - [45157] = 5, - ACTIONS(251), 1, + [42041] = 18, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2202), 1, - aux_sym_shebang_repeat1, - STATE(2291), 1, + ACTIONS(5325), 1, + sym__newline, + ACTIONS(5328), 1, + anon_sym_DASH2, + ACTIONS(5336), 1, + anon_sym_PLUS2, + ACTIONS(5362), 1, + anon_sym_bit_DASHand2, + ACTIONS(5364), 1, + anon_sym_bit_DASHxor2, + STATE(2299), 1, sym_comment, - ACTIONS(5347), 13, - anon_sym_GT2, + STATE(2345), 1, + aux_sym_shebang_repeat1, + ACTIONS(5330), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5332), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5334), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5348), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5358), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5360), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5356), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5350), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5299), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277899,8 +279286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5345), 44, - sym__newline, + ACTIONS(5297), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277912,29 +279298,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_DASH2, - anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -277944,19 +279310,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, - [45228] = 5, - ACTIONS(251), 1, + [42139] = 19, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, + ACTIONS(5307), 1, + anon_sym_DASH2, + ACTIONS(5321), 1, + anon_sym_PLUS2, + ACTIONS(5338), 1, + anon_sym_and2, + ACTIONS(5342), 1, + anon_sym_bit_DASHand2, + ACTIONS(5344), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5346), 1, + anon_sym_bit_DASHor2, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2292), 1, + STATE(2300), 1, sym_comment, - ACTIONS(5283), 13, + ACTIONS(5305), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5311), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5315), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5317), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5319), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5323), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5313), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5309), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5245), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277965,7 +279368,7 @@ 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, + ACTIONS(5243), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277978,30 +279381,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_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -278010,21 +279391,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, - [45299] = 6, - ACTIONS(251), 1, + [42239] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1540), 1, - aux_sym_unquoted_token2, - ACTIONS(2226), 1, - anon_sym_LPAREN2, - STATE(2293), 1, + ACTIONS(5307), 1, + anon_sym_DASH2, + ACTIONS(5321), 1, + anon_sym_PLUS2, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(2301), 1, sym_comment, - ACTIONS(2224), 13, + ACTIONS(5305), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5311), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5317), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5319), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5323), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5313), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5309), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5293), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278033,8 +279438,7 @@ 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, - ts_builtin_sym_end, + ACTIONS(5291), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -278046,26 +279450,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_DASH2, - anon_sym_in2, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -278077,19 +279467,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45372] = 5, - ACTIONS(251), 1, + [42329] = 14, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2248), 1, - aux_sym_shebang_repeat1, - STATE(2294), 1, + ACTIONS(5328), 1, + anon_sym_DASH2, + ACTIONS(5336), 1, + anon_sym_PLUS2, + ACTIONS(5368), 1, + sym__newline, + STATE(2302), 1, sym_comment, - ACTIONS(5172), 13, - anon_sym_GT2, + STATE(2336), 1, + aux_sym_shebang_repeat1, + ACTIONS(5330), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5332), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5334), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5348), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5360), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5356), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5249), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278098,8 +279509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5170), 44, - sym__newline, + ACTIONS(5247), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278111,27 +279521,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -278143,19 +279543,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, - [45443] = 5, - ACTIONS(251), 1, + [42419] = 15, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2209), 1, - aux_sym_shebang_repeat1, - STATE(2295), 1, + ACTIONS(5328), 1, + anon_sym_DASH2, + ACTIONS(5336), 1, + anon_sym_PLUS2, + ACTIONS(5368), 1, + sym__newline, + STATE(2303), 1, sym_comment, - ACTIONS(5176), 13, - anon_sym_GT2, + STATE(2380), 1, + aux_sym_shebang_repeat1, + ACTIONS(5330), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5332), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5334), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5348), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5360), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5356), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5350), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5249), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278164,8 +279592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5174), 44, - sym__newline, + ACTIONS(5247), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278177,27 +279604,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_DASH2, - anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -278209,19 +279620,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45514] = 5, - ACTIONS(251), 1, + [42511] = 37, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(155), 1, + anon_sym_LPAREN, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(185), 1, + anon_sym_DOT_DOT, + ACTIONS(201), 1, + aux_sym_expr_unary_token1, + 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(1800), 1, + ACTIONS(249), 1, + sym_raw_string_begin, + ACTIONS(377), 1, + anon_sym_DASH2, + ACTIONS(1016), 1, + anon_sym_DOLLAR, + ACTIONS(3430), 1, + anon_sym_null, + ACTIONS(3434), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3436), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3438), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3440), 1, + aux_sym__val_number_decimal_token4, + STATE(1536), 1, + sym__val_number, + STATE(1690), 1, + sym_expr_parenthesized, + STATE(1714), 1, + sym_val_variable, + STATE(1875), 1, + sym__inter_single_quotes, + STATE(1877), 1, + sym__inter_double_quotes, + STATE(2002), 1, + sym__expr_unary_minus, + STATE(2304), 1, + sym_comment, + STATE(2975), 1, + sym__val_number_decimal, + STATE(3836), 1, + sym__expr_binary_expression, + STATE(7359), 1, + sym__expression, + ACTIONS(207), 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(3432), 2, + anon_sym_true, + anon_sym_false, + STATE(1392), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2132), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(223), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2105), 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, + [42647] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5307), 1, + anon_sym_DASH2, + ACTIONS(5321), 1, + anon_sym_PLUS2, + ACTIONS(5342), 1, + anon_sym_bit_DASHand2, + ACTIONS(5344), 1, + anon_sym_bit_DASHxor2, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2296), 1, + STATE(2305), 1, sym_comment, - ACTIONS(5287), 13, + ACTIONS(5305), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5311), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5315), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5317), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5319), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5323), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5313), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5309), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5245), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278230,7 +279773,7 @@ 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, + ACTIONS(5243), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -278243,29 +279786,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_DASH2, - anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -278275,19 +279798,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, - [45585] = 5, - ACTIONS(251), 1, + [42743] = 18, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, + ACTIONS(5307), 1, + anon_sym_DASH2, + ACTIONS(5321), 1, + anon_sym_PLUS2, + ACTIONS(5342), 1, + anon_sym_bit_DASHand2, + ACTIONS(5344), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5346), 1, + anon_sym_bit_DASHor2, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2297), 1, + STATE(2306), 1, sym_comment, - ACTIONS(5279), 13, + ACTIONS(5305), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5311), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5315), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5317), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5319), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5323), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5313), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5309), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5245), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278296,7 +279854,7 @@ 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, + ACTIONS(5243), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -278309,30 +279867,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_DASH2, - anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -278341,14 +279878,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, - [45656] = 5, - ACTIONS(251), 1, + [42841] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2261), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2298), 1, + STATE(2307), 1, sym_comment, - ACTIONS(5188), 13, + ACTIONS(5317), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5293), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -278362,7 +279902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 44, + ACTIONS(5291), 43, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -278377,11 +279917,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -278390,8 +279931,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -278407,19 +279946,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45727] = 5, - ACTIONS(251), 1, + [42915] = 11, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, + ACTIONS(5307), 1, + anon_sym_DASH2, + ACTIONS(5321), 1, + anon_sym_PLUS2, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2299), 1, + STATE(2308), 1, sym_comment, - ACTIONS(5287), 13, - anon_sym_GT2, + ACTIONS(5311), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5317), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5319), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5323), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5293), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278428,7 +279980,7 @@ 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, + ACTIONS(5291), 38, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -278441,13 +279993,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -278456,12 +280008,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -278473,14 +280019,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45798] = 5, - ACTIONS(251), 1, + [42999] = 37, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(155), 1, + anon_sym_LPAREN, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(185), 1, + anon_sym_DOT_DOT, + ACTIONS(201), 1, + aux_sym_expr_unary_token1, + 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(2214), 1, - aux_sym_shebang_repeat1, - STATE(2300), 1, + ACTIONS(249), 1, + sym_raw_string_begin, + ACTIONS(377), 1, + anon_sym_DASH2, + ACTIONS(1016), 1, + anon_sym_DOLLAR, + ACTIONS(3430), 1, + anon_sym_null, + ACTIONS(3434), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3436), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3438), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3440), 1, + aux_sym__val_number_decimal_token4, + STATE(1536), 1, + sym__val_number, + STATE(1690), 1, + sym_expr_parenthesized, + STATE(1714), 1, + sym_val_variable, + STATE(1875), 1, + sym__inter_single_quotes, + STATE(1877), 1, + sym__inter_double_quotes, + STATE(2002), 1, + sym__expr_unary_minus, + STATE(2309), 1, + sym_comment, + STATE(2975), 1, + sym__val_number_decimal, + STATE(3836), 1, + sym__expr_binary_expression, + STATE(7404), 1, + sym__expression, + ACTIONS(207), 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(3432), 2, + anon_sym_true, + anon_sym_false, + STATE(1392), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2132), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(223), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2105), 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, + [43135] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5368), 1, + sym__newline, + STATE(2310), 1, sym_comment, - ACTIONS(5176), 13, + STATE(2366), 1, + aux_sym_shebang_repeat1, + ACTIONS(5332), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5249), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -278494,8 +280144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5174), 44, - sym__newline, + ACTIONS(5247), 42, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278509,11 +280158,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -278522,8 +280172,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -278539,21 +280187,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, - [45869] = 6, - ACTIONS(251), 1, + [43211] = 20, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(2301), 1, + ACTIONS(5307), 1, + anon_sym_DASH2, + ACTIONS(5321), 1, + anon_sym_PLUS2, + ACTIONS(5338), 1, + anon_sym_and2, + ACTIONS(5340), 1, + anon_sym_xor2, + ACTIONS(5342), 1, + anon_sym_bit_DASHand2, + ACTIONS(5344), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5346), 1, + anon_sym_bit_DASHor2, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(2311), 1, sym_comment, - STATE(7398), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5118), 13, + ACTIONS(5305), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5311), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5315), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5317), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5319), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5323), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5313), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5309), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5245), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278562,8 +280247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5116), 43, - ts_builtin_sym_end, + ACTIONS(5243), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -278575,29 +280259,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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, + anon_sym_RPAREN, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -278606,19 +280269,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45942] = 5, - ACTIONS(251), 1, + [43313] = 11, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, + ACTIONS(5307), 1, + anon_sym_DASH2, + ACTIONS(5321), 1, + anon_sym_PLUS2, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2302), 1, + STATE(2312), 1, sym_comment, - ACTIONS(5287), 13, - anon_sym_GT2, + ACTIONS(5311), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5317), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5319), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5323), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5281), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278627,7 +280303,7 @@ 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, + ACTIONS(5279), 38, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -278640,13 +280316,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -278655,12 +280331,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -278672,19 +280342,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46013] = 5, - ACTIONS(251), 1, + [43397] = 12, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2303), 1, + ACTIONS(5328), 1, + anon_sym_DASH2, + ACTIONS(5336), 1, + anon_sym_PLUS2, + ACTIONS(5371), 1, + sym__newline, + STATE(2313), 1, sym_comment, - ACTIONS(5279), 13, - anon_sym_GT2, + STATE(2409), 1, + aux_sym_shebang_repeat1, + ACTIONS(5330), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5332), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5334), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5360), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5285), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278693,8 +280378,7 @@ 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(5283), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278706,13 +280390,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -278721,12 +280405,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -278738,18 +280416,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, - [46084] = 5, - ACTIONS(251), 1, + [43483] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2288), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2304), 1, + STATE(2314), 1, sym_comment, - ACTIONS(5351), 13, - anon_sym_GT2, + ACTIONS(5311), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(5317), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5319), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5281), 11, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -278759,7 +280444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5349), 44, + ACTIONS(5279), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -278774,11 +280459,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -278787,10 +280473,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -278804,18 +280486,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, - [46155] = 5, - ACTIONS(251), 1, + [43561] = 9, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2212), 1, - aux_sym_shebang_repeat1, - STATE(2305), 1, + ACTIONS(5371), 1, + sym__newline, + STATE(2315), 1, sym_comment, - ACTIONS(5188), 13, - anon_sym_GT2, + STATE(2411), 1, + aux_sym_shebang_repeat1, + ACTIONS(5330), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(5332), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5334), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5285), 11, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -278825,8 +280516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 44, - sym__newline, + ACTIONS(5283), 40, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278840,11 +280530,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -278853,10 +280544,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -278870,101 +280557,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, - [46226] = 19, - ACTIONS(251), 1, + [43641] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3132), 1, - anon_sym_DQUOTE, - ACTIONS(3138), 1, - sym_raw_string_begin, - ACTIONS(4952), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5297), 1, - sym__newline, - ACTIONS(5353), 1, - anon_sym_RBRACK, - STATE(2306), 1, - sym_comment, - STATE(2423), 1, + ACTIONS(5307), 1, + anon_sym_DASH2, + ACTIONS(5321), 1, + anon_sym_PLUS2, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2590), 1, - aux_sym_command_list_repeat1, - STATE(3765), 1, - sym__val_number_decimal, - STATE(6930), 1, - sym__command_name, - STATE(7043), 1, - sym_val_string, - STATE(7283), 1, - sym_cmd_identifier, - ACTIONS(3134), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4950), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(5195), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5293), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5295), 34, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [46325] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2174), 1, - anon_sym_LPAREN2, - ACTIONS(2178), 1, - aux_sym_unquoted_token2, - STATE(2307), 1, + STATE(2316), 1, sym_comment, - ACTIONS(2172), 13, + ACTIONS(5305), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5311), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5317), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5319), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5323), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5313), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5281), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278973,8 +280597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2176), 43, - ts_builtin_sym_end, + ACTIONS(5279), 34, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -278986,26 +280609,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_DASH2, + anon_sym_RPAREN, anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -279017,19 +280632,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46398] = 5, - ACTIONS(251), 1, + [43729] = 14, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2161), 1, - aux_sym_shebang_repeat1, - STATE(2308), 1, + ACTIONS(5328), 1, + anon_sym_DASH2, + ACTIONS(5336), 1, + anon_sym_PLUS2, + ACTIONS(5371), 1, + sym__newline, + STATE(2317), 1, sym_comment, - ACTIONS(5172), 13, - anon_sym_GT2, + STATE(2383), 1, + aux_sym_shebang_repeat1, + ACTIONS(5330), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5332), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5334), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5348), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5360), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5356), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5285), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279038,8 +280674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5170), 44, - sym__newline, + ACTIONS(5283), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279051,27 +280686,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -279083,19 +280708,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46469] = 5, - ACTIONS(251), 1, + [43819] = 12, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2287), 1, - aux_sym_shebang_repeat1, - STATE(2309), 1, + ACTIONS(5328), 1, + anon_sym_DASH2, + ACTIONS(5336), 1, + anon_sym_PLUS2, + ACTIONS(5368), 1, + sym__newline, + STATE(2318), 1, sym_comment, - ACTIONS(5172), 13, - anon_sym_GT2, + STATE(2328), 1, + aux_sym_shebang_repeat1, + ACTIONS(5330), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5332), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5334), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5360), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5249), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279104,8 +280744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5170), 44, - sym__newline, + ACTIONS(5247), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279117,13 +280756,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -279132,12 +280771,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -279149,14 +280782,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, - [46540] = 5, - ACTIONS(251), 1, + [43905] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2219), 1, - aux_sym_shebang_repeat1, - STATE(2310), 1, + ACTIONS(5371), 1, + sym__newline, + STATE(2319), 1, sym_comment, - ACTIONS(5176), 13, + STATE(2337), 1, + aux_sym_shebang_repeat1, + ACTIONS(5332), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5285), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -279170,8 +280808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5174), 44, - sym__newline, + ACTIONS(5283), 42, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279185,11 +280822,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -279198,8 +280836,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -279215,21 +280851,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, - [46611] = 6, - ACTIONS(251), 1, + [43981] = 18, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(2311), 1, + ACTIONS(5307), 1, + anon_sym_DASH2, + ACTIONS(5321), 1, + anon_sym_PLUS2, + ACTIONS(5342), 1, + anon_sym_bit_DASHand2, + ACTIONS(5344), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5346), 1, + anon_sym_bit_DASHor2, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(2320), 1, sym_comment, - STATE(7580), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4884), 13, + ACTIONS(5305), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5311), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5315), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5317), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5319), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5323), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5313), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5309), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5281), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279238,8 +280907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4882), 43, - ts_builtin_sym_end, + ACTIONS(5279), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -279251,29 +280919,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_DASH2, - anon_sym_in2, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -279282,19 +280931,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, - [46684] = 5, - ACTIONS(251), 1, + [44079] = 10, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2177), 1, + ACTIONS(5307), 1, + anon_sym_DASH2, + ACTIONS(5321), 1, + anon_sym_PLUS2, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2312), 1, + STATE(2321), 1, sym_comment, - ACTIONS(5182), 13, - anon_sym_GT2, + ACTIONS(5311), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5317), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5319), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5293), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279303,7 +280962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 44, + ACTIONS(5291), 40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -279316,13 +280975,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -279331,10 +280990,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -279344,134 +280999,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_GT_GT, anon_sym_e_GT_GT, anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [46755] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1286), 1, - anon_sym_DQUOTE, - ACTIONS(1290), 1, - sym_raw_string_begin, - ACTIONS(4952), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5309), 1, - anon_sym_DASH_DASH, - STATE(2313), 1, - sym_comment, - STATE(2318), 1, - aux_sym_decl_def_repeat1, - STATE(2999), 1, - sym_long_flag, - STATE(3792), 1, - sym__val_number_decimal, - STATE(4121), 1, - sym_val_string, - STATE(4146), 1, - sym_cmd_identifier, - STATE(6258), 1, - sym__command_name, - ACTIONS(1288), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4950), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3668), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4940), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(4942), 34, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [46851] = 18, - ACTIONS(251), 1, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [44161] = 19, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5355), 1, - sym__newline, - ACTIONS(5360), 1, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5374), 1, + ACTIONS(5336), 1, anon_sym_PLUS2, - ACTIONS(5378), 1, + ACTIONS(5362), 1, anon_sym_bit_DASHand2, - ACTIONS(5380), 1, + ACTIONS(5364), 1, anon_sym_bit_DASHxor2, - STATE(2314), 1, - sym_comment, - STATE(2372), 1, + ACTIONS(5366), 1, + anon_sym_bit_DASHor2, + ACTIONS(5371), 1, + sym__newline, + STATE(2306), 1, aux_sym_shebang_repeat1, - ACTIONS(5358), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5364), 2, + STATE(2322), 1, + sym_comment, + ACTIONS(5330), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5368), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5370), 2, + ACTIONS(5332), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5372), 2, + ACTIONS(5334), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5376), 2, + ACTIONS(5348), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5358), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5362), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5366), 4, + ACTIONS(5356), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5315), 8, + ACTIONS(5350), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5285), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279480,7 +281061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5313), 23, + ACTIONS(5283), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279495,78 +281076,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [46947] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2560), 1, - anon_sym_DOLLAR, - ACTIONS(5327), 1, - anon_sym_LPAREN2, - ACTIONS(5382), 1, - anon_sym_DOT, - ACTIONS(5386), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5388), 1, - aux_sym__immediate_decimal_token5, - STATE(2315), 1, - sym_comment, - STATE(2865), 1, - sym__immediate_decimal, - ACTIONS(1510), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5384), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2864), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1500), 45, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - 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, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, @@ -279575,122 +281084,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, - aux_sym__unquoted_in_list_token1, - [47031] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5311), 1, - anon_sym_DOT2, - STATE(2316), 1, - sym_comment, - STATE(2320), 1, - aux_sym_cell_path_repeat1, - STATE(2588), 1, - sym_path, - ACTIONS(949), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(951), 48, - sym_raw_string_begin, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - 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_STAR2, - 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, - [47105] = 19, - ACTIONS(251), 1, + [44261] = 19, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5360), 1, + ACTIONS(5307), 1, anon_sym_DASH2, - ACTIONS(5374), 1, + ACTIONS(5321), 1, anon_sym_PLUS2, - ACTIONS(5378), 1, + ACTIONS(5338), 1, + anon_sym_and2, + ACTIONS(5342), 1, anon_sym_bit_DASHand2, - ACTIONS(5380), 1, + ACTIONS(5344), 1, anon_sym_bit_DASHxor2, - ACTIONS(5390), 1, - sym__newline, - ACTIONS(5393), 1, + ACTIONS(5346), 1, anon_sym_bit_DASHor2, - STATE(2317), 1, - sym_comment, - STATE(2397), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - ACTIONS(5358), 2, + STATE(2323), 1, + sym_comment, + ACTIONS(5305), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5364), 2, + ACTIONS(5311), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5368), 2, + ACTIONS(5315), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5370), 2, + ACTIONS(5317), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5372), 2, + ACTIONS(5319), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5376), 2, + ACTIONS(5323), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5362), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5366), 4, + ACTIONS(5313), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5351), 8, + ACTIONS(5309), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5281), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279699,7 +281142,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(5349), 22, + ACTIONS(5279), 22, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279711,7 +281155,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_and2, anon_sym_xor2, anon_sym_or2, anon_sym_err_GT_GT, @@ -279722,134 +281165,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, - [47203] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1286), 1, - anon_sym_DQUOTE, - ACTIONS(1290), 1, - sym_raw_string_begin, - ACTIONS(4952), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5309), 1, - anon_sym_DASH_DASH, - STATE(2318), 1, - sym_comment, - STATE(2814), 1, - aux_sym_decl_def_repeat1, - STATE(2999), 1, - sym_long_flag, - STATE(3792), 1, - sym__val_number_decimal, - STATE(4121), 1, - sym_val_string, - STATE(4146), 1, - sym_cmd_identifier, - STATE(6282), 1, - sym__command_name, - ACTIONS(1288), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4950), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3668), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4940), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(4942), 34, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [47299] = 20, - ACTIONS(251), 1, + [44361] = 20, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5360), 1, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5374), 1, + ACTIONS(5336), 1, anon_sym_PLUS2, - ACTIONS(5378), 1, + ACTIONS(5352), 1, + anon_sym_and2, + ACTIONS(5362), 1, anon_sym_bit_DASHand2, - ACTIONS(5380), 1, + ACTIONS(5364), 1, anon_sym_bit_DASHxor2, - ACTIONS(5390), 1, - sym__newline, - ACTIONS(5393), 1, + ACTIONS(5366), 1, anon_sym_bit_DASHor2, - ACTIONS(5395), 1, - anon_sym_and2, - STATE(2319), 1, - sym_comment, - STATE(2400), 1, + ACTIONS(5371), 1, + sym__newline, + STATE(2300), 1, aux_sym_shebang_repeat1, - ACTIONS(5358), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5364), 2, + STATE(2324), 1, + sym_comment, + ACTIONS(5330), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5368), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5370), 2, + ACTIONS(5332), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5372), 2, + ACTIONS(5334), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5376), 2, + ACTIONS(5348), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5358), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5362), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5366), 4, + ACTIONS(5356), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5351), 8, + ACTIONS(5350), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5285), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279858,7 +281225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5349), 21, + ACTIONS(5283), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279880,124 +281247,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, - [47399] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5397), 1, - anon_sym_DOT2, - STATE(2588), 1, - sym_path, - STATE(2320), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(953), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(955), 48, - sym_raw_string_begin, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - 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_STAR2, - 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, - [47471] = 21, - ACTIONS(251), 1, + [44463] = 18, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(5360), 1, + ACTIONS(5307), 1, anon_sym_DASH2, - ACTIONS(5374), 1, + ACTIONS(5321), 1, anon_sym_PLUS2, - ACTIONS(5378), 1, + ACTIONS(5342), 1, anon_sym_bit_DASHand2, - ACTIONS(5380), 1, + ACTIONS(5344), 1, anon_sym_bit_DASHxor2, - ACTIONS(5393), 1, + ACTIONS(5346), 1, anon_sym_bit_DASHor2, - ACTIONS(5395), 1, - anon_sym_and2, - ACTIONS(5400), 1, - anon_sym_xor2, - STATE(2321), 1, - sym_comment, - STATE(2402), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - ACTIONS(5358), 2, + STATE(2325), 1, + sym_comment, + ACTIONS(5305), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5364), 2, + ACTIONS(5311), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5368), 2, + ACTIONS(5315), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5370), 2, + ACTIONS(5317), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5372), 2, + ACTIONS(5319), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5376), 2, + ACTIONS(5323), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5362), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5366), 4, + ACTIONS(5313), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5351), 8, + ACTIONS(5309), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5293), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280006,7 +281303,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(5349), 20, + ACTIONS(5291), 23, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280018,6 +281316,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_and2, + anon_sym_xor2, anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -280027,45 +281327,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, - [47573] = 15, - ACTIONS(251), 1, + [44561] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5360), 1, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5374), 1, + ACTIONS(5336), 1, anon_sym_PLUS2, - ACTIONS(5390), 1, + ACTIONS(5368), 1, sym__newline, - STATE(2322), 1, + STATE(2326), 1, sym_comment, - STATE(2416), 1, + STATE(2388), 1, aux_sym_shebang_repeat1, - ACTIONS(5358), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5364), 2, + ACTIONS(5330), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5370), 2, + ACTIONS(5332), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5372), 2, + ACTIONS(5334), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5376), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5362), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5366), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5351), 8, + ACTIONS(5249), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280074,7 +281360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5349), 27, + ACTIONS(5247), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280086,11 +281372,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_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -280102,19 +281400,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, - [47663] = 5, - ACTIONS(251), 1, + [44645] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4718), 1, - anon_sym_COLON2, - STATE(2323), 1, + ACTIONS(5307), 1, + anon_sym_DASH2, + ACTIONS(5321), 1, + anon_sym_PLUS2, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(2327), 1, sym_comment, - ACTIONS(1016), 13, - anon_sym_GT2, + ACTIONS(5311), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5317), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5319), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5245), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280123,7 +281431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1012), 43, + ACTIONS(5243), 40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -280135,13 +281443,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_DASH2, + anon_sym_RPAREN, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -280150,10 +281459,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -280167,175 +281472,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, - [47733] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1286), 1, - anon_sym_DQUOTE, - ACTIONS(1290), 1, - sym_raw_string_begin, - ACTIONS(4952), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5309), 1, - anon_sym_DASH_DASH, - STATE(2324), 1, - sym_comment, - STATE(2814), 1, - aux_sym_decl_def_repeat1, - STATE(2999), 1, - sym_long_flag, - STATE(3792), 1, - sym__val_number_decimal, - STATE(4121), 1, - sym_val_string, - STATE(4146), 1, - sym_cmd_identifier, - STATE(6667), 1, - sym__command_name, - ACTIONS(1288), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4950), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3668), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4940), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(4942), 34, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [47829] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5402), 1, - anon_sym_DOT2, - STATE(2325), 1, - sym_comment, - STATE(2560), 1, - aux_sym_cell_path_repeat1, - STATE(2665), 1, - sym_path, - STATE(2738), 1, - sym_cell_path, - ACTIONS(943), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(945), 47, - sym_raw_string_begin, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - 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, - [47905] = 11, - ACTIONS(251), 1, + [44727] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5360), 1, + ACTIONS(5307), 1, anon_sym_DASH2, - ACTIONS(5374), 1, + ACTIONS(5321), 1, anon_sym_PLUS2, - ACTIONS(5390), 1, - sym__newline, - STATE(2326), 1, - sym_comment, - STATE(2418), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - ACTIONS(5364), 2, + STATE(2328), 1, + sym_comment, + ACTIONS(5311), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5370), 2, + ACTIONS(5317), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5372), 2, + ACTIONS(5319), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5351), 10, + ACTIONS(5323), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5303), 10, anon_sym_GT2, anon_sym_LT2, anon_sym_err_GT, @@ -280346,7 +281506,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(5349), 37, + ACTIONS(5301), 38, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280363,6 +281524,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -280371,8 +281534,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -280384,122 +281545,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, - [47987] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(3834), 1, - anon_sym_DOLLAR, - ACTIONS(5404), 1, - anon_sym_LPAREN2, - ACTIONS(5406), 1, - anon_sym_DOT, - ACTIONS(5408), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5410), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5412), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5414), 1, - aux_sym__immediate_decimal_token5, - STATE(2327), 1, - sym_comment, - STATE(2877), 1, - sym__immediate_decimal, - STATE(2889), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1461), 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(1475), 28, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [48075] = 16, - ACTIONS(251), 1, + [44811] = 19, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5360), 1, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5374), 1, + ACTIONS(5336), 1, anon_sym_PLUS2, - ACTIONS(5390), 1, + ACTIONS(5362), 1, + anon_sym_bit_DASHand2, + ACTIONS(5364), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5366), 1, + anon_sym_bit_DASHor2, + ACTIONS(5368), 1, sym__newline, - STATE(2328), 1, + STATE(2329), 1, sym_comment, - STATE(2421), 1, + STATE(2368), 1, aux_sym_shebang_repeat1, - ACTIONS(5358), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5364), 2, + ACTIONS(5330), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5368), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5370), 2, + ACTIONS(5332), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5372), 2, + ACTIONS(5334), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5376), 2, + ACTIONS(5348), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5358), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5362), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5366), 4, + ACTIONS(5356), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5351), 8, + ACTIONS(5350), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5249), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280508,7 +281603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5349), 25, + ACTIONS(5247), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280523,9 +281618,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -280534,50 +281626,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, - [48167] = 17, - ACTIONS(251), 1, + [44911] = 20, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5360), 1, + ACTIONS(5307), 1, anon_sym_DASH2, - ACTIONS(5374), 1, + ACTIONS(5321), 1, anon_sym_PLUS2, - ACTIONS(5378), 1, + ACTIONS(5338), 1, + anon_sym_and2, + ACTIONS(5340), 1, + anon_sym_xor2, + ACTIONS(5342), 1, anon_sym_bit_DASHand2, - ACTIONS(5390), 1, - sym__newline, - STATE(2329), 1, - sym_comment, - STATE(2424), 1, + ACTIONS(5344), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5346), 1, + anon_sym_bit_DASHor2, + STATE(1615), 1, aux_sym_shebang_repeat1, - ACTIONS(5358), 2, + STATE(2330), 1, + sym_comment, + ACTIONS(5305), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5364), 2, + ACTIONS(5311), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5368), 2, + ACTIONS(5315), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5370), 2, + ACTIONS(5317), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5372), 2, + ACTIONS(5319), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5376), 2, + ACTIONS(5323), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5362), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5366), 4, + ACTIONS(5313), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5351), 8, + ACTIONS(5309), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5281), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280586,7 +281686,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(5349), 24, + ACTIONS(5279), 21, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280598,11 +281699,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_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -280611,52 +281708,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, - [48261] = 18, - ACTIONS(251), 1, + [45013] = 21, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5360), 1, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5374), 1, + ACTIONS(5336), 1, anon_sym_PLUS2, - ACTIONS(5378), 1, + ACTIONS(5352), 1, + anon_sym_and2, + ACTIONS(5354), 1, + anon_sym_xor2, + ACTIONS(5362), 1, anon_sym_bit_DASHand2, - ACTIONS(5380), 1, + ACTIONS(5364), 1, anon_sym_bit_DASHxor2, - ACTIONS(5390), 1, - sym__newline, - STATE(2330), 1, - sym_comment, - STATE(2426), 1, + ACTIONS(5366), 1, + anon_sym_bit_DASHor2, + STATE(2311), 1, aux_sym_shebang_repeat1, - ACTIONS(5358), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5364), 2, + STATE(2331), 1, + sym_comment, + ACTIONS(5330), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5368), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5370), 2, + ACTIONS(5332), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5372), 2, + ACTIONS(5334), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5376), 2, + ACTIONS(5348), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5358), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5362), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5366), 4, + ACTIONS(5356), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5351), 8, + ACTIONS(5350), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5285), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280665,7 +281770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5349), 23, + ACTIONS(5283), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280677,10 +281782,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_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -280689,16 +281791,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, - [48357] = 4, - ACTIONS(251), 1, + [45117] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2331), 1, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(2332), 1, sym_comment, - ACTIONS(4994), 13, - anon_sym_GT2, + ACTIONS(5311), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(5317), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5319), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5303), 11, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -280708,8 +281819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4992), 44, - ts_builtin_sym_end, + ACTIONS(5301), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -280721,12 +281831,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_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -280735,11 +281848,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -280753,83 +281861,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, - [48425] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5416), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5418), 1, - aux_sym__immediate_decimal_token2, - STATE(2332), 1, - sym_comment, - ACTIONS(1542), 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_token34, - 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(1544), 44, - sym_raw_string_begin, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - 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, - [48497] = 4, - ACTIONS(251), 1, + [45195] = 15, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(5307), 1, + anon_sym_DASH2, + ACTIONS(5321), 1, + anon_sym_PLUS2, + STATE(1615), 1, + aux_sym_shebang_repeat1, STATE(2333), 1, sym_comment, - ACTIONS(4962), 13, + ACTIONS(5305), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5311), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5315), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5317), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5319), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5323), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5313), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5309), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5293), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280838,8 +281911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4960), 44, - ts_builtin_sym_end, + ACTIONS(5291), 26, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -280851,27 +281923,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_DASH2, - anon_sym_in2, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -280883,104 +281938,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, - [48565] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5420), 1, - anon_sym_DOLLAR, - ACTIONS(5422), 1, - anon_sym_LPAREN2, - ACTIONS(5426), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5428), 1, - aux_sym__immediate_decimal_token5, - STATE(2334), 1, - sym_comment, - STATE(2896), 1, - sym__immediate_decimal, - ACTIONS(1475), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5424), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3116), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1461), 45, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - 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, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [48649] = 11, - ACTIONS(251), 1, + [45287] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5430), 1, + ACTIONS(5307), 1, anon_sym_DASH2, - ACTIONS(5438), 1, + ACTIONS(5321), 1, anon_sym_PLUS2, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2335), 1, + STATE(2334), 1, sym_comment, - ACTIONS(5432), 2, + ACTIONS(5305), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5311), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5434), 2, + ACTIONS(5317), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5436), 2, + ACTIONS(5319), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5440), 2, + ACTIONS(5323), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5303), 10, - anon_sym_GT2, - anon_sym_LT2, + ACTIONS(5313), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5309), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5281), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280989,7 +281985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5301), 36, + ACTIONS(5279), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281002,17 +281998,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_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, @@ -281026,25 +282014,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, - [48731] = 8, - ACTIONS(251), 1, + [45377] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2336), 1, + ACTIONS(4758), 1, + aux_sym_unquoted_token2, + STATE(2335), 1, sym_comment, - ACTIONS(5432), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5434), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5436), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5303), 11, + ACTIONS(1639), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -281054,7 +282035,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(5301), 39, + ACTIONS(1651), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281066,13 +282048,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_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -281081,6 +282064,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -281094,105 +282081,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, - [48807] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1540), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5420), 1, - anon_sym_DOLLAR, - ACTIONS(5422), 1, - anon_sym_LPAREN2, - ACTIONS(5426), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5428), 1, - aux_sym__immediate_decimal_token5, - STATE(2337), 1, - sym_comment, - STATE(2939), 1, - sym__immediate_decimal, - ACTIONS(1538), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5424), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3126), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1536), 45, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - 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, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [48891] = 13, - ACTIONS(251), 1, + [45449] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5430), 1, + ACTIONS(5307), 1, anon_sym_DASH2, - ACTIONS(5438), 1, + ACTIONS(5321), 1, anon_sym_PLUS2, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2338), 1, + STATE(2336), 1, sym_comment, - ACTIONS(5432), 2, + ACTIONS(5305), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5311), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5434), 2, + ACTIONS(5317), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5436), 2, + ACTIONS(5319), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5440), 2, + ACTIONS(5323), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5442), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5444), 4, + ACTIONS(5313), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -281206,7 +282121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5301), 32, + ACTIONS(5301), 34, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281224,6 +282139,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_TILDE2, @@ -281239,17 +282156,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, - [48977] = 6, - ACTIONS(251), 1, + [45537] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2339), 1, + STATE(2337), 1, sym_comment, - ACTIONS(5434), 2, + ACTIONS(5317), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5303), 13, + ACTIONS(5245), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -281263,7 +282180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5301), 41, + ACTIONS(5243), 43, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281282,6 +282199,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -281305,52 +282224,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, - [49049] = 18, - ACTIONS(251), 1, + [45611] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5430), 1, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5438), 1, + ACTIONS(5336), 1, anon_sym_PLUS2, - ACTIONS(5450), 1, - anon_sym_bit_DASHand2, - ACTIONS(5452), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5454), 1, - anon_sym_bit_DASHor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2340), 1, + ACTIONS(5371), 1, + sym__newline, + STATE(2338), 1, sym_comment, - ACTIONS(5432), 2, + STATE(2397), 1, + aux_sym_shebang_repeat1, + ACTIONS(5330), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5434), 2, + ACTIONS(5332), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5436), 2, + ACTIONS(5334), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5440), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5442), 2, + ACTIONS(5348), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5448), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5444), 4, + ACTIONS(5360), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5356), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5446), 4, + ACTIONS(5350), 6, anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5303), 8, + ACTIONS(5285), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281359,8 +282273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5301), 23, - sym__newline, + ACTIONS(5283), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -281375,6 +282288,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -281383,54 +282301,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, - [49145] = 19, - ACTIONS(251), 1, + [45703] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5430), 1, + ACTIONS(5307), 1, anon_sym_DASH2, - ACTIONS(5438), 1, + ACTIONS(5321), 1, anon_sym_PLUS2, - ACTIONS(5450), 1, - anon_sym_bit_DASHand2, - ACTIONS(5452), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5454), 1, - anon_sym_bit_DASHor2, - ACTIONS(5456), 1, - anon_sym_and2, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2341), 1, + STATE(2339), 1, sym_comment, - ACTIONS(5432), 2, + ACTIONS(5311), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5434), 2, + ACTIONS(5317), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5436), 2, + ACTIONS(5319), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5440), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5442), 2, + ACTIONS(5281), 10, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5448), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5444), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5446), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5303), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281439,7 +282332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5301), 22, + ACTIONS(5279), 40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281452,8 +282345,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_in2, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -281462,56 +282373,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, - [49243] = 20, - ACTIONS(251), 1, + [45785] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5430), 1, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5438), 1, + ACTIONS(5336), 1, anon_sym_PLUS2, - ACTIONS(5450), 1, - anon_sym_bit_DASHand2, - ACTIONS(5452), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5454), 1, - anon_sym_bit_DASHor2, - ACTIONS(5456), 1, - anon_sym_and2, - ACTIONS(5458), 1, - anon_sym_xor2, - STATE(1800), 1, + ACTIONS(5371), 1, + sym__newline, + STATE(2327), 1, aux_sym_shebang_repeat1, - STATE(2342), 1, + STATE(2340), 1, sym_comment, - ACTIONS(5432), 2, + ACTIONS(5330), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5434), 2, + ACTIONS(5332), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5436), 2, + ACTIONS(5334), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5440), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5442), 2, + ACTIONS(5285), 10, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5448), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5444), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5446), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5303), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281520,8 +282406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5301), 21, - sym__newline, + ACTIONS(5283), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -281533,7 +282418,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_in2, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -281542,43 +282446,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, - [49343] = 14, - ACTIONS(251), 1, + [45869] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5430), 1, + ACTIONS(5307), 1, anon_sym_DASH2, - ACTIONS(5438), 1, + ACTIONS(5321), 1, anon_sym_PLUS2, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2343), 1, + STATE(2341), 1, sym_comment, - ACTIONS(5432), 2, + ACTIONS(5305), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5311), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5434), 2, + ACTIONS(5315), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5317), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5436), 2, + ACTIONS(5319), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5440), 2, + ACTIONS(5323), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5442), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5444), 4, + ACTIONS(5313), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5446), 4, + ACTIONS(5309), 6, anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5303), 8, + ACTIONS(5281), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281587,7 +282496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5301), 28, + ACTIONS(5279), 26, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281603,8 +282512,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -281616,29 +282523,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, - [49431] = 10, - ACTIONS(251), 1, + [45961] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5430), 1, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5438), 1, + ACTIONS(5336), 1, anon_sym_PLUS2, - STATE(1800), 1, + ACTIONS(5371), 1, + sym__newline, + STATE(2291), 1, aux_sym_shebang_repeat1, - STATE(2344), 1, + STATE(2342), 1, sym_comment, - ACTIONS(5432), 2, + ACTIONS(5330), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5434), 2, + ACTIONS(5332), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5436), 2, + ACTIONS(5334), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5303), 10, + ACTIONS(5348), 2, anon_sym_GT2, anon_sym_LT2, + ACTIONS(5358), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5360), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5356), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5350), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5285), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281647,8 +282575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5301), 38, - sym__newline, + ACTIONS(5283), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -281660,21 +282587,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_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -281686,46 +282601,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, - [49511] = 15, - ACTIONS(251), 1, + [46055] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5430), 1, + ACTIONS(5307), 1, anon_sym_DASH2, - ACTIONS(5438), 1, + ACTIONS(5321), 1, anon_sym_PLUS2, - STATE(1800), 1, + ACTIONS(5342), 1, + anon_sym_bit_DASHand2, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2345), 1, + STATE(2343), 1, sym_comment, - ACTIONS(5432), 2, + ACTIONS(5305), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5311), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5434), 2, + ACTIONS(5315), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5317), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5436), 2, + ACTIONS(5319), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5440), 2, + ACTIONS(5323), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5442), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5448), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5444), 4, + ACTIONS(5313), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5446), 4, + ACTIONS(5309), 6, anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5303), 8, + ACTIONS(5281), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281734,7 +282653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5301), 26, + ACTIONS(5279), 25, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281750,7 +282669,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -281761,48 +282679,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, - [49601] = 16, - ACTIONS(251), 1, + [46149] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5430), 1, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5438), 1, + ACTIONS(5336), 1, anon_sym_PLUS2, - ACTIONS(5450), 1, + ACTIONS(5362), 1, anon_sym_bit_DASHand2, - STATE(1800), 1, + ACTIONS(5371), 1, + sym__newline, + STATE(2294), 1, aux_sym_shebang_repeat1, - STATE(2346), 1, + STATE(2344), 1, sym_comment, - ACTIONS(5432), 2, + ACTIONS(5330), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5434), 2, + ACTIONS(5332), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5436), 2, + ACTIONS(5334), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5440), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5442), 2, + ACTIONS(5348), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5448), 2, + ACTIONS(5358), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5444), 4, + ACTIONS(5360), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5356), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5446), 4, + ACTIONS(5350), 6, anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5303), 8, + ACTIONS(5285), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281811,8 +282733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5301), 25, - sym__newline, + ACTIONS(5283), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -281837,50 +282758,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, - [49693] = 17, - ACTIONS(251), 1, + [46245] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5430), 1, + ACTIONS(5307), 1, anon_sym_DASH2, - ACTIONS(5438), 1, + ACTIONS(5321), 1, anon_sym_PLUS2, - ACTIONS(5450), 1, + ACTIONS(5342), 1, anon_sym_bit_DASHand2, - ACTIONS(5452), 1, + ACTIONS(5344), 1, anon_sym_bit_DASHxor2, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2347), 1, + STATE(2345), 1, sym_comment, - ACTIONS(5432), 2, + ACTIONS(5305), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5311), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5434), 2, + ACTIONS(5315), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5317), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5436), 2, + ACTIONS(5319), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5440), 2, + ACTIONS(5323), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5442), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5448), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5444), 4, + ACTIONS(5313), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5446), 4, + ACTIONS(5309), 6, anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5303), 8, + ACTIONS(5281), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281889,7 +282812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5301), 24, + ACTIONS(5279), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281914,32 +282837,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, - [49787] = 11, - ACTIONS(251), 1, + [46341] = 18, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5430), 1, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5438), 1, + ACTIONS(5336), 1, anon_sym_PLUS2, - STATE(1800), 1, + ACTIONS(5362), 1, + anon_sym_bit_DASHand2, + ACTIONS(5364), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5371), 1, + sym__newline, + STATE(2305), 1, aux_sym_shebang_repeat1, - STATE(2348), 1, + STATE(2346), 1, sym_comment, - ACTIONS(5432), 2, + ACTIONS(5330), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5434), 2, + ACTIONS(5332), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5436), 2, + ACTIONS(5334), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5440), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5325), 10, + ACTIONS(5348), 2, anon_sym_GT2, anon_sym_LT2, + ACTIONS(5358), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5360), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5356), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5350), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5285), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281948,8 +282893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5323), 36, - sym__newline, + ACTIONS(5283), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -281961,21 +282905,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_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -281985,32 +282917,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49869] = 12, - ACTIONS(251), 1, + [46439] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5360), 1, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5374), 1, + ACTIONS(5336), 1, anon_sym_PLUS2, - ACTIONS(5460), 1, + ACTIONS(5374), 1, sym__newline, - STATE(2349), 1, - sym_comment, - STATE(2374), 1, + STATE(2308), 1, aux_sym_shebang_repeat1, - ACTIONS(5364), 2, + STATE(2347), 1, + sym_comment, + ACTIONS(5330), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5370), 2, + ACTIONS(5332), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5372), 2, + ACTIONS(5334), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5376), 2, + ACTIONS(5360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5339), 10, + ACTIONS(5261), 10, anon_sym_GT2, anon_sym_LT2, anon_sym_err_GT, @@ -282021,7 +282953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5337), 35, + ACTIONS(5259), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -282038,6 +282970,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -282057,23 +282991,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, - [49953] = 8, - ACTIONS(251), 1, + [46525] = 9, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2350), 1, + ACTIONS(5374), 1, + sym__newline, + STATE(2348), 1, sym_comment, - ACTIONS(5432), 2, + STATE(2369), 1, + aux_sym_shebang_repeat1, + ACTIONS(5330), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5434), 2, + ACTIONS(5332), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5436), 2, + ACTIONS(5334), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5325), 11, + ACTIONS(5261), 11, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, @@ -282085,8 +283021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5323), 39, - sym__newline, + ACTIONS(5259), 40, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -282104,6 +283039,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -282125,28 +283062,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, - [50029] = 9, - ACTIONS(251), 1, + [46605] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5460), 1, - sym__newline, - STATE(2351), 1, + ACTIONS(5377), 1, + anon_sym_DASH2, + ACTIONS(5385), 1, + anon_sym_PLUS2, + STATE(2349), 1, sym_comment, - STATE(2375), 1, - aux_sym_shebang_repeat1, - ACTIONS(5364), 2, + ACTIONS(5379), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5370), 2, + ACTIONS(5381), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5372), 2, + ACTIONS(5383), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5339), 11, + ACTIONS(5387), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5213), 10, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282155,7 +283094,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(5337), 38, + ACTIONS(5211), 39, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -282167,12 +283107,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_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -282181,8 +283123,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -282194,38 +283134,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, - [50107] = 13, - ACTIONS(251), 1, + [46687] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5430), 1, - anon_sym_DASH2, - ACTIONS(5438), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2352), 1, + STATE(2350), 1, sym_comment, - ACTIONS(5432), 2, + ACTIONS(5379), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5434), 2, + ACTIONS(5381), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5436), 2, + ACTIONS(5383), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5440), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5442), 2, + ACTIONS(5213), 11, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5444), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5325), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282234,7 +283160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5323), 32, + ACTIONS(5211), 42, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -282247,15 +283173,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_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -282267,106 +283203,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, - [50193] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5463), 1, - anon_sym_DOT, - ACTIONS(5465), 1, - aux_sym__immediate_decimal_token2, - STATE(2353), 1, - sym_comment, - ACTIONS(1550), 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_token34, - aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1552), 45, - sym_raw_string_begin, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - 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, - [50265] = 14, - ACTIONS(251), 1, + [46763] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5360), 1, + ACTIONS(5377), 1, anon_sym_DASH2, - ACTIONS(5374), 1, + ACTIONS(5385), 1, anon_sym_PLUS2, - ACTIONS(5460), 1, - sym__newline, - STATE(2354), 1, + STATE(2351), 1, sym_comment, - STATE(2376), 1, - aux_sym_shebang_repeat1, - ACTIONS(5358), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5364), 2, + ACTIONS(5379), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5370), 2, + ACTIONS(5381), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5372), 2, + ACTIONS(5383), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5376), 2, + ACTIONS(5387), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5366), 4, + ACTIONS(5389), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5391), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5339), 8, + ACTIONS(5213), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282375,7 +283241,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(5337), 31, + ACTIONS(5211), 35, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -282388,10 +283255,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_TILDE2, @@ -282407,17 +283277,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, - [50353] = 6, - ACTIONS(251), 1, + [46849] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2355), 1, + STATE(2352), 1, sym_comment, - ACTIONS(5434), 2, + ACTIONS(5381), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5325), 13, + ACTIONS(5213), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -282431,7 +283299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5323), 41, + ACTIONS(5211), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -282446,10 +283314,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -282473,24 +283344,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, - [50425] = 7, - ACTIONS(251), 1, + [46921] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5460), 1, - sym__newline, - STATE(2356), 1, + ACTIONS(5377), 1, + anon_sym_DASH2, + ACTIONS(5385), 1, + anon_sym_PLUS2, + ACTIONS(5397), 1, + anon_sym_bit_DASHand2, + ACTIONS(5399), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5401), 1, + anon_sym_bit_DASHor2, + STATE(2353), 1, sym_comment, - STATE(2377), 1, - aux_sym_shebang_repeat1, - ACTIONS(5370), 2, + ACTIONS(5379), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5381), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5339), 13, + ACTIONS(5383), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5387), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5389), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5395), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5391), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5393), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5213), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282499,7 +283398,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(5337), 40, + ACTIONS(5211), 24, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -282511,27 +283411,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [47017] = 18, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5377), 1, + anon_sym_DASH2, + ACTIONS(5385), 1, + anon_sym_PLUS2, + ACTIONS(5397), 1, + anon_sym_bit_DASHand2, + ACTIONS(5399), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5401), 1, + anon_sym_bit_DASHor2, + ACTIONS(5403), 1, + anon_sym_and2, + STATE(2354), 1, + sym_comment, + ACTIONS(5379), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5381), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5383), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5387), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5389), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5395), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5391), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + ACTIONS(5393), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5213), 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(5211), 23, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_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_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [47115] = 19, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5377), 1, + anon_sym_DASH2, + ACTIONS(5385), 1, + anon_sym_PLUS2, + ACTIONS(5397), 1, + anon_sym_bit_DASHand2, + ACTIONS(5399), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5401), 1, + anon_sym_bit_DASHor2, + ACTIONS(5403), 1, + anon_sym_and2, + ACTIONS(5405), 1, + anon_sym_xor2, + STATE(2355), 1, + sym_comment, + ACTIONS(5379), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5381), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5383), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(5387), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + ACTIONS(5389), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5395), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5391), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5393), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5213), 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(5211), 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_RBRACE, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -282540,52 +283584,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, - [50499] = 18, - ACTIONS(251), 1, + [47215] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5430), 1, + ACTIONS(5377), 1, anon_sym_DASH2, - ACTIONS(5438), 1, + ACTIONS(5385), 1, anon_sym_PLUS2, - ACTIONS(5450), 1, - anon_sym_bit_DASHand2, - ACTIONS(5452), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5454), 1, - anon_sym_bit_DASHor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2357), 1, + STATE(2356), 1, sym_comment, - ACTIONS(5432), 2, + ACTIONS(5379), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5434), 2, + ACTIONS(5381), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5436), 2, + ACTIONS(5383), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5440), 2, + ACTIONS(5387), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5442), 2, + ACTIONS(5389), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5448), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5444), 4, + ACTIONS(5391), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5446), 4, + ACTIONS(5393), 6, anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5325), 8, + ACTIONS(5213), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282594,7 +283629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5323), 23, + ACTIONS(5211), 29, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -282607,9 +283642,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_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -282618,54 +283659,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, - [50595] = 19, - ACTIONS(251), 1, + [47303] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5360), 1, + ACTIONS(5377), 1, anon_sym_DASH2, - ACTIONS(5374), 1, + ACTIONS(5385), 1, anon_sym_PLUS2, - ACTIONS(5378), 1, - anon_sym_bit_DASHand2, - ACTIONS(5380), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5393), 1, - anon_sym_bit_DASHor2, - ACTIONS(5460), 1, - sym__newline, - STATE(2358), 1, + STATE(2357), 1, sym_comment, - STATE(2378), 1, - aux_sym_shebang_repeat1, - ACTIONS(5358), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5364), 2, + ACTIONS(5379), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5368), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5370), 2, + ACTIONS(5381), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5372), 2, + ACTIONS(5383), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5376), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5362), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5366), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5339), 8, + ACTIONS(5213), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282674,7 +283688,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(5337), 22, + ACTIONS(5211), 41, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -282686,9 +283701,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_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -282697,54 +283730,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, - [50693] = 19, - ACTIONS(251), 1, + [47383] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5430), 1, + ACTIONS(5377), 1, anon_sym_DASH2, - ACTIONS(5438), 1, + ACTIONS(5385), 1, anon_sym_PLUS2, - ACTIONS(5450), 1, - anon_sym_bit_DASHand2, - ACTIONS(5452), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5454), 1, - anon_sym_bit_DASHor2, - ACTIONS(5456), 1, - anon_sym_and2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2359), 1, + STATE(2358), 1, sym_comment, - ACTIONS(5432), 2, + ACTIONS(5379), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5434), 2, + ACTIONS(5381), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5436), 2, + ACTIONS(5383), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5440), 2, + ACTIONS(5387), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5442), 2, + ACTIONS(5389), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5448), 2, + ACTIONS(5395), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5444), 4, + ACTIONS(5391), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5446), 4, + ACTIONS(5393), 6, anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5325), 8, + ACTIONS(5213), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282753,7 +283778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5323), 22, + ACTIONS(5211), 27, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -282766,8 +283791,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, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -282776,56 +283806,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, - [50791] = 20, - ACTIONS(251), 1, + [47473] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5360), 1, + ACTIONS(5377), 1, anon_sym_DASH2, - ACTIONS(5374), 1, + ACTIONS(5385), 1, anon_sym_PLUS2, - ACTIONS(5378), 1, + ACTIONS(5397), 1, anon_sym_bit_DASHand2, - ACTIONS(5380), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5393), 1, - anon_sym_bit_DASHor2, - ACTIONS(5395), 1, - anon_sym_and2, - ACTIONS(5460), 1, - sym__newline, - STATE(2360), 1, + STATE(2359), 1, sym_comment, - STATE(2379), 1, - aux_sym_shebang_repeat1, - ACTIONS(5358), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5364), 2, + ACTIONS(5379), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5368), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5370), 2, + ACTIONS(5381), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5372), 2, + ACTIONS(5383), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5376), 2, + ACTIONS(5387), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5362), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5366), 4, + ACTIONS(5389), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5395), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5391), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5339), 8, + ACTIONS(5393), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5213), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282834,7 +283856,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(5337), 21, + ACTIONS(5211), 26, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -282846,8 +283869,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_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -282856,56 +283883,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, - [50891] = 20, - ACTIONS(251), 1, + [47565] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5430), 1, + ACTIONS(5377), 1, anon_sym_DASH2, - ACTIONS(5438), 1, + ACTIONS(5385), 1, anon_sym_PLUS2, - ACTIONS(5450), 1, + ACTIONS(5397), 1, anon_sym_bit_DASHand2, - ACTIONS(5452), 1, + ACTIONS(5399), 1, anon_sym_bit_DASHxor2, - ACTIONS(5454), 1, - anon_sym_bit_DASHor2, - ACTIONS(5456), 1, - anon_sym_and2, - ACTIONS(5458), 1, - anon_sym_xor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2361), 1, + STATE(2360), 1, sym_comment, - ACTIONS(5432), 2, + ACTIONS(5379), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5434), 2, + ACTIONS(5381), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5436), 2, + ACTIONS(5383), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5440), 2, + ACTIONS(5387), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5442), 2, + ACTIONS(5389), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5448), 2, + ACTIONS(5395), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5444), 4, + ACTIONS(5391), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5446), 4, + ACTIONS(5393), 6, anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5325), 8, + ACTIONS(5213), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282914,7 +283935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5323), 21, + ACTIONS(5211), 25, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -282927,7 +283948,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_and2, + anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -282936,58 +283961,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50991] = 21, - ACTIONS(251), 1, + [47659] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(5360), 1, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5374), 1, + ACTIONS(5336), 1, anon_sym_PLUS2, - ACTIONS(5378), 1, - anon_sym_bit_DASHand2, - ACTIONS(5380), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5393), 1, - anon_sym_bit_DASHor2, - ACTIONS(5395), 1, - anon_sym_and2, - ACTIONS(5400), 1, - anon_sym_xor2, - STATE(2362), 1, - sym_comment, - STATE(2380), 1, + ACTIONS(5374), 1, + sym__newline, + STATE(2298), 1, aux_sym_shebang_repeat1, - ACTIONS(5358), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5364), 2, + STATE(2361), 1, + sym_comment, + ACTIONS(5330), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5368), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5370), 2, + ACTIONS(5332), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5372), 2, + ACTIONS(5334), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5376), 2, + ACTIONS(5348), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5362), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5366), 4, + ACTIONS(5356), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5339), 8, + ACTIONS(5261), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282996,7 +284003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5337), 20, + ACTIONS(5259), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -283008,7 +284015,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_in2, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -283017,14 +284037,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51093] = 5, - ACTIONS(251), 1, + [47749] = 37, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(155), 1, + anon_sym_LPAREN, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(185), 1, + anon_sym_DOT_DOT, + ACTIONS(201), 1, + aux_sym_expr_unary_token1, + 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(4904), 1, - aux_sym_unquoted_token2, + ACTIONS(249), 1, + sym_raw_string_begin, + ACTIONS(377), 1, + anon_sym_DASH2, + ACTIONS(1016), 1, + anon_sym_DOLLAR, + ACTIONS(3430), 1, + anon_sym_null, + ACTIONS(3434), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3436), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3438), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3440), 1, + aux_sym__val_number_decimal_token4, + STATE(1536), 1, + sym__val_number, + STATE(1690), 1, + sym_expr_parenthesized, + STATE(1714), 1, + sym_val_variable, + STATE(1875), 1, + sym__inter_single_quotes, + STATE(1877), 1, + sym__inter_double_quotes, + STATE(2002), 1, + sym__expr_unary_minus, + STATE(2362), 1, + sym_comment, + STATE(2975), 1, + sym__val_number_decimal, + STATE(3836), 1, + sym__expr_binary_expression, + STATE(7439), 1, + sym__expression, + ACTIONS(207), 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(3432), 2, + anon_sym_true, + anon_sym_false, + STATE(1392), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2132), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(223), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2105), 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, + [47885] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5374), 1, + sym__newline, + STATE(2307), 1, + aux_sym_shebang_repeat1, STATE(2363), 1, sym_comment, - ACTIONS(1638), 13, + ACTIONS(5332), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5261), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -283038,9 +284162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1650), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5259), 42, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -283051,12 +284173,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_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -283065,8 +284190,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -283082,43 +284205,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, - [51163] = 14, - ACTIONS(251), 1, + [47961] = 19, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5430), 1, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5438), 1, + ACTIONS(5336), 1, anon_sym_PLUS2, - STATE(1800), 1, + ACTIONS(5362), 1, + anon_sym_bit_DASHand2, + ACTIONS(5364), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5366), 1, + anon_sym_bit_DASHor2, + ACTIONS(5374), 1, + sym__newline, + STATE(2325), 1, aux_sym_shebang_repeat1, STATE(2364), 1, sym_comment, - ACTIONS(5432), 2, + ACTIONS(5330), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5434), 2, + ACTIONS(5332), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5436), 2, + ACTIONS(5334), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5440), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5442), 2, + ACTIONS(5348), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5444), 4, + ACTIONS(5358), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5360), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5356), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5446), 4, + ACTIONS(5350), 6, anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5325), 8, + ACTIONS(5261), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283127,8 +284263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5323), 28, - sym__newline, + ACTIONS(5259), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -283143,11 +284278,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -283156,45 +284286,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, - [51251] = 15, - ACTIONS(251), 1, + [48061] = 20, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5360), 1, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5374), 1, + ACTIONS(5336), 1, anon_sym_PLUS2, - ACTIONS(5460), 1, + ACTIONS(5352), 1, + anon_sym_and2, + ACTIONS(5362), 1, + anon_sym_bit_DASHand2, + ACTIONS(5364), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5366), 1, + anon_sym_bit_DASHor2, + ACTIONS(5374), 1, sym__newline, STATE(2365), 1, sym_comment, - STATE(2381), 1, + STATE(2375), 1, aux_sym_shebang_repeat1, - ACTIONS(5358), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5364), 2, + ACTIONS(5330), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5370), 2, + ACTIONS(5332), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5372), 2, + ACTIONS(5334), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5376), 2, + ACTIONS(5348), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5358), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5362), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5366), 4, + ACTIONS(5356), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5339), 8, + ACTIONS(5350), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5261), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283203,7 +284346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5337), 27, + ACTIONS(5259), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -283215,14 +284358,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_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -283231,29 +284368,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, - [51341] = 10, - ACTIONS(251), 1, + [48163] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5430), 1, - anon_sym_DASH2, - ACTIONS(5438), 1, - anon_sym_PLUS2, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, STATE(2366), 1, sym_comment, - ACTIONS(5432), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5434), 2, + ACTIONS(5317), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5436), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5325), 10, + ACTIONS(5303), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283262,7 +284392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5323), 38, + ACTIONS(5301), 43, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283275,11 +284405,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_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -283288,6 +284421,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -283301,31 +284436,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, - [51421] = 11, - ACTIONS(251), 1, + [48237] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5360), 1, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5374), 1, + ACTIONS(5336), 1, anon_sym_PLUS2, - ACTIONS(5460), 1, + ACTIONS(5368), 1, sym__newline, STATE(2367), 1, sym_comment, - STATE(2382), 1, + STATE(2393), 1, aux_sym_shebang_repeat1, - ACTIONS(5364), 2, + ACTIONS(5330), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5370), 2, + ACTIONS(5332), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5372), 2, + ACTIONS(5334), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5339), 10, + ACTIONS(5348), 2, anon_sym_GT2, anon_sym_LT2, + ACTIONS(5358), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5360), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5356), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5350), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5249), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283334,7 +284488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5337), 37, + ACTIONS(5247), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -283346,21 +284500,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_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -283372,46 +284514,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, - [51503] = 15, - ACTIONS(251), 1, + [48331] = 18, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5430), 1, + ACTIONS(5307), 1, anon_sym_DASH2, - ACTIONS(5438), 1, + ACTIONS(5321), 1, anon_sym_PLUS2, - STATE(1800), 1, + ACTIONS(5342), 1, + anon_sym_bit_DASHand2, + ACTIONS(5344), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5346), 1, + anon_sym_bit_DASHor2, + STATE(1615), 1, aux_sym_shebang_repeat1, STATE(2368), 1, sym_comment, - ACTIONS(5432), 2, + ACTIONS(5305), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5311), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5434), 2, + ACTIONS(5315), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5317), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5436), 2, + ACTIONS(5319), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5440), 2, + ACTIONS(5323), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5442), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5448), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5444), 4, + ACTIONS(5313), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5446), 4, + ACTIONS(5309), 6, anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5325), 8, + ACTIONS(5303), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283420,7 +284570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5323), 26, + ACTIONS(5301), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283436,9 +284586,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -283447,48 +284594,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, - [51593] = 16, - ACTIONS(251), 1, + [48429] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5360), 1, - anon_sym_DASH2, - ACTIONS(5374), 1, - anon_sym_PLUS2, - ACTIONS(5460), 1, - sym__newline, + STATE(1615), 1, + aux_sym_shebang_repeat1, STATE(2369), 1, sym_comment, - STATE(2383), 1, - aux_sym_shebang_repeat1, - ACTIONS(5358), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5364), 2, + ACTIONS(5311), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5368), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5370), 2, + ACTIONS(5317), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5372), 2, + ACTIONS(5319), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5376), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5362), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5366), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5339), 8, + ACTIONS(5293), 11, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283497,7 +284622,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(5337), 25, + ACTIONS(5291), 41, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -283509,9 +284635,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_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -283523,48 +284664,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, - [51685] = 16, - ACTIONS(251), 1, + [48507] = 21, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5430), 1, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5438), 1, + ACTIONS(5336), 1, anon_sym_PLUS2, - ACTIONS(5450), 1, + ACTIONS(5352), 1, + anon_sym_and2, + ACTIONS(5354), 1, + anon_sym_xor2, + ACTIONS(5362), 1, anon_sym_bit_DASHand2, - STATE(1800), 1, + ACTIONS(5364), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5366), 1, + anon_sym_bit_DASHor2, + STATE(2293), 1, aux_sym_shebang_repeat1, STATE(2370), 1, sym_comment, - ACTIONS(5432), 2, + ACTIONS(5330), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5434), 2, + ACTIONS(5332), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5436), 2, + ACTIONS(5334), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5440), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5442), 2, + ACTIONS(5348), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5448), 2, + ACTIONS(5358), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5444), 4, + ACTIONS(5360), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5356), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5446), 4, + ACTIONS(5350), 6, anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5325), 8, + ACTIONS(5261), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283573,8 +284726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5323), 25, - sym__newline, + ACTIONS(5259), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -283586,11 +284738,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_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -283599,50 +284747,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, - [51777] = 17, - ACTIONS(251), 1, + [48611] = 19, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5360), 1, + ACTIONS(5307), 1, anon_sym_DASH2, - ACTIONS(5374), 1, + ACTIONS(5321), 1, anon_sym_PLUS2, - ACTIONS(5378), 1, + ACTIONS(5338), 1, + anon_sym_and2, + ACTIONS(5342), 1, anon_sym_bit_DASHand2, - ACTIONS(5460), 1, - sym__newline, + ACTIONS(5344), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5346), 1, + anon_sym_bit_DASHor2, + STATE(1615), 1, + aux_sym_shebang_repeat1, STATE(2371), 1, sym_comment, - STATE(2384), 1, - aux_sym_shebang_repeat1, - ACTIONS(5358), 2, + ACTIONS(5305), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5364), 2, + ACTIONS(5311), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5368), 2, + ACTIONS(5315), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5370), 2, + ACTIONS(5317), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5372), 2, + ACTIONS(5319), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5376), 2, + ACTIONS(5323), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5362), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5366), 4, + ACTIONS(5313), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5339), 8, + ACTIONS(5309), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5303), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283651,7 +284805,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(5337), 24, + ACTIONS(5301), 22, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -283663,11 +284818,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_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -283676,50 +284828,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, - [51871] = 17, - ACTIONS(251), 1, + [48711] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5430), 1, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5438), 1, + ACTIONS(5336), 1, anon_sym_PLUS2, - ACTIONS(5450), 1, - anon_sym_bit_DASHand2, - ACTIONS(5452), 1, - anon_sym_bit_DASHxor2, - STATE(1800), 1, + ACTIONS(5374), 1, + sym__newline, + STATE(2301), 1, aux_sym_shebang_repeat1, STATE(2372), 1, sym_comment, - ACTIONS(5432), 2, + ACTIONS(5330), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5434), 2, + ACTIONS(5332), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5436), 2, + ACTIONS(5334), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5440), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5442), 2, + ACTIONS(5348), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5448), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5444), 4, + ACTIONS(5360), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5356), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5446), 4, + ACTIONS(5350), 6, anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5325), 8, + ACTIONS(5261), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283728,8 +284877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5323), 24, - sym__newline, + ACTIONS(5259), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -283744,84 +284892,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [51965] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5360), 1, - anon_sym_DASH2, - ACTIONS(5374), 1, - anon_sym_PLUS2, - ACTIONS(5378), 1, - anon_sym_bit_DASHand2, - ACTIONS(5380), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5460), 1, - sym__newline, - STATE(2373), 1, - sym_comment, - STATE(2387), 1, - aux_sym_shebang_repeat1, - ACTIONS(5358), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5364), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5368), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5370), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5372), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5376), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5362), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5366), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5339), 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(5337), 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_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -283831,30 +284905,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, - [52061] = 11, - ACTIONS(251), 1, + [48803] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5430), 1, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5438), 1, + ACTIONS(5336), 1, anon_sym_PLUS2, - STATE(1800), 1, + ACTIONS(5374), 1, + sym__newline, + STATE(2321), 1, aux_sym_shebang_repeat1, - STATE(2374), 1, + STATE(2373), 1, sym_comment, - ACTIONS(5432), 2, + ACTIONS(5330), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5434), 2, + ACTIONS(5332), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5436), 2, + ACTIONS(5334), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5440), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5321), 10, + ACTIONS(5261), 10, anon_sym_GT2, anon_sym_LT2, anon_sym_err_GT, @@ -283865,8 +284938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5319), 36, - sym__newline, + ACTIONS(5259), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -283883,6 +284955,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -283891,6 +284965,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -283902,26 +284978,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, - [52143] = 8, - ACTIONS(251), 1, + [48887] = 16, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, + ACTIONS(5328), 1, + anon_sym_DASH2, + ACTIONS(5336), 1, + anon_sym_PLUS2, + ACTIONS(5374), 1, + sym__newline, + STATE(2333), 1, aux_sym_shebang_repeat1, - STATE(2375), 1, + STATE(2374), 1, sym_comment, - ACTIONS(5432), 2, + ACTIONS(5330), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5434), 2, + ACTIONS(5332), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5436), 2, + ACTIONS(5334), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5321), 11, + ACTIONS(5348), 2, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, + ACTIONS(5358), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5360), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5356), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5350), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5261), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283930,8 +285030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5319), 39, - sym__newline, + ACTIONS(5259), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -283943,22 +285042,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_DASH2, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -283970,38 +285056,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, - [52219] = 13, - ACTIONS(251), 1, + [48981] = 19, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5430), 1, + ACTIONS(5307), 1, anon_sym_DASH2, - ACTIONS(5438), 1, + ACTIONS(5321), 1, anon_sym_PLUS2, - STATE(1800), 1, + ACTIONS(5338), 1, + anon_sym_and2, + ACTIONS(5342), 1, + anon_sym_bit_DASHand2, + ACTIONS(5344), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5346), 1, + anon_sym_bit_DASHor2, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2376), 1, + STATE(2375), 1, sym_comment, - ACTIONS(5432), 2, + ACTIONS(5305), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5311), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5434), 2, + ACTIONS(5315), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5317), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5436), 2, + ACTIONS(5319), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5440), 2, + ACTIONS(5323), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5442), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5444), 4, + ACTIONS(5313), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5321), 8, + ACTIONS(5309), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5293), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284010,7 +285114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5319), 32, + ACTIONS(5291), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -284023,18 +285127,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_in2, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -284043,22 +285137,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, - [52305] = 6, - ACTIONS(251), 1, + [49081] = 17, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2377), 1, + ACTIONS(5328), 1, + anon_sym_DASH2, + ACTIONS(5336), 1, + anon_sym_PLUS2, + ACTIONS(5362), 1, + anon_sym_bit_DASHand2, + ACTIONS(5374), 1, + sym__newline, + STATE(2376), 1, sym_comment, - ACTIONS(5434), 2, + STATE(2379), 1, + aux_sym_shebang_repeat1, + ACTIONS(5330), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5332), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5321), 13, + ACTIONS(5334), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5348), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5358), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5360), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5356), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5350), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5261), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284067,8 +285191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5319), 41, - sym__newline, + ACTIONS(5259), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -284080,25 +285203,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_DASH2, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -284109,52 +285216,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, - [52377] = 18, - ACTIONS(251), 1, + [49177] = 20, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5430), 1, + ACTIONS(5307), 1, anon_sym_DASH2, - ACTIONS(5438), 1, + ACTIONS(5321), 1, anon_sym_PLUS2, - ACTIONS(5450), 1, + ACTIONS(5338), 1, + anon_sym_and2, + ACTIONS(5340), 1, + anon_sym_xor2, + ACTIONS(5342), 1, anon_sym_bit_DASHand2, - ACTIONS(5452), 1, + ACTIONS(5344), 1, anon_sym_bit_DASHxor2, - ACTIONS(5454), 1, + ACTIONS(5346), 1, anon_sym_bit_DASHor2, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2378), 1, + STATE(2377), 1, sym_comment, - ACTIONS(5432), 2, + ACTIONS(5305), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5311), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5434), 2, + ACTIONS(5315), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5317), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5436), 2, + ACTIONS(5319), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5440), 2, + ACTIONS(5323), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5442), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5448), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5444), 4, + ACTIONS(5313), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5446), 4, + ACTIONS(5309), 6, anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5321), 8, + ACTIONS(5303), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284163,7 +285276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5319), 23, + ACTIONS(5301), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -284176,8 +285289,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_and2, - anon_sym_xor2, anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -284187,54 +285298,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, - [52473] = 19, - ACTIONS(251), 1, + [49279] = 18, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5430), 1, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5438), 1, + ACTIONS(5336), 1, anon_sym_PLUS2, - ACTIONS(5450), 1, + ACTIONS(5362), 1, anon_sym_bit_DASHand2, - ACTIONS(5452), 1, + ACTIONS(5364), 1, anon_sym_bit_DASHxor2, - ACTIONS(5454), 1, - anon_sym_bit_DASHor2, - ACTIONS(5456), 1, - anon_sym_and2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2379), 1, + ACTIONS(5374), 1, + sym__newline, + STATE(2378), 1, sym_comment, - ACTIONS(5432), 2, + STATE(2395), 1, + aux_sym_shebang_repeat1, + ACTIONS(5330), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5434), 2, + ACTIONS(5332), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5436), 2, + ACTIONS(5334), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5440), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5442), 2, + ACTIONS(5348), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5448), 2, + ACTIONS(5358), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5444), 4, + ACTIONS(5360), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5356), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5446), 4, + ACTIONS(5350), 6, anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5321), 8, + ACTIONS(5261), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284243,8 +285354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5319), 22, - sym__newline, + ACTIONS(5259), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -284256,8 +285366,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_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -284266,56 +285378,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, - [52571] = 20, - ACTIONS(251), 1, + [49377] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5430), 1, + ACTIONS(5307), 1, anon_sym_DASH2, - ACTIONS(5438), 1, + ACTIONS(5321), 1, anon_sym_PLUS2, - ACTIONS(5450), 1, + ACTIONS(5342), 1, anon_sym_bit_DASHand2, - ACTIONS(5452), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5454), 1, - anon_sym_bit_DASHor2, - ACTIONS(5456), 1, - anon_sym_and2, - ACTIONS(5458), 1, - anon_sym_xor2, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2380), 1, + STATE(2379), 1, sym_comment, - ACTIONS(5432), 2, + ACTIONS(5305), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5311), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5434), 2, + ACTIONS(5315), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5317), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5436), 2, + ACTIONS(5319), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5440), 2, + ACTIONS(5323), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5442), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5448), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5444), 4, + ACTIONS(5313), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5446), 4, + ACTIONS(5309), 6, anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5321), 8, + ACTIONS(5293), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284324,7 +285430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5319), 21, + ACTIONS(5291), 25, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -284337,7 +285443,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_and2, + anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -284346,43 +285456,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, - [52671] = 14, - ACTIONS(251), 1, + [49471] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5430), 1, + ACTIONS(5307), 1, anon_sym_DASH2, - ACTIONS(5438), 1, + ACTIONS(5321), 1, anon_sym_PLUS2, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2381), 1, + STATE(2380), 1, sym_comment, - ACTIONS(5432), 2, + ACTIONS(5305), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5311), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5434), 2, + ACTIONS(5317), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5436), 2, + ACTIONS(5319), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5440), 2, + ACTIONS(5323), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5442), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5444), 4, + ACTIONS(5313), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5446), 4, + ACTIONS(5309), 6, anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5321), 8, + ACTIONS(5303), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284391,7 +285503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5319), 28, + ACTIONS(5301), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -284420,29 +285532,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, - [52759] = 10, - ACTIONS(251), 1, + [49561] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5430), 1, - anon_sym_DASH2, - ACTIONS(5438), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2382), 1, + ACTIONS(5184), 1, + sym__newline, + STATE(2381), 1, sym_comment, - ACTIONS(5432), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5434), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5436), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5321), 10, + ACTIONS(5189), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5193), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284451,8 +285554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5319), 38, - sym__newline, + ACTIONS(5187), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -284464,11 +285566,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_LBRACE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + 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(5191), 25, + anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -284477,59 +285592,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [52839] = 15, - ACTIONS(251), 1, + [49637] = 37, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(155), 1, + anon_sym_LPAREN, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(201), 1, + aux_sym_expr_unary_token1, + 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(249), 1, + sym_raw_string_begin, + ACTIONS(377), 1, + anon_sym_DASH2, + ACTIONS(1016), 1, + anon_sym_DOLLAR, + ACTIONS(3430), 1, + anon_sym_null, + ACTIONS(3438), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3440), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5407), 1, + anon_sym_DOT_DOT, + ACTIONS(5411), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5413), 1, + aux_sym__val_number_decimal_token2, + STATE(1536), 1, + sym__val_number, + STATE(1875), 1, + sym__inter_single_quotes, + STATE(1877), 1, + sym__inter_double_quotes, + STATE(2002), 1, + sym__expr_unary_minus, + STATE(2382), 1, + sym_comment, + STATE(3610), 1, + sym__val_number_decimal, + STATE(3629), 1, + sym_val_variable, + STATE(3647), 1, + sym_expr_parenthesized, + STATE(3843), 1, + sym__expr_binary_expression, + STATE(7686), 1, + sym__expression, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3432), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5409), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1392), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2132), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(223), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2105), 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, + [49773] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5430), 1, + ACTIONS(5307), 1, anon_sym_DASH2, - ACTIONS(5438), 1, + ACTIONS(5321), 1, anon_sym_PLUS2, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, STATE(2383), 1, sym_comment, - ACTIONS(5432), 2, + ACTIONS(5305), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5311), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5434), 2, + ACTIONS(5317), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5436), 2, + ACTIONS(5319), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5440), 2, + ACTIONS(5323), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5442), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5448), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5444), 4, + ACTIONS(5313), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5446), 4, + ACTIONS(5245), 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(5243), 34, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_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_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5321), 8, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [49861] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2384), 1, + sym_comment, + ACTIONS(5058), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284538,7 +285794,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(5319), 26, + ACTIONS(5056), 46, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -284550,10 +285807,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_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -284565,48 +285841,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, - [52929] = 16, - ACTIONS(251), 1, + [49931] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5430), 1, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5438), 1, + ACTIONS(5336), 1, anon_sym_PLUS2, - ACTIONS(5450), 1, + ACTIONS(5362), 1, anon_sym_bit_DASHand2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2384), 1, + ACTIONS(5368), 1, + sym__newline, + STATE(2385), 1, sym_comment, - ACTIONS(5432), 2, + STATE(2396), 1, + aux_sym_shebang_repeat1, + ACTIONS(5330), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5434), 2, + ACTIONS(5332), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5436), 2, + ACTIONS(5334), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5440), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5442), 2, + ACTIONS(5348), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5448), 2, + ACTIONS(5358), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5444), 4, + ACTIONS(5360), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5356), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5446), 4, + ACTIONS(5350), 6, anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5321), 8, + ACTIONS(5249), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284615,8 +285895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5319), 25, - sym__newline, + ACTIONS(5247), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -284641,120 +285920,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, - [53021] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5467), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5469), 1, - aux_sym__immediate_decimal_token2, - STATE(2385), 1, - sym_comment, - ACTIONS(1544), 7, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1542), 48, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - 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, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [53093] = 6, - ACTIONS(3), 1, + [50027] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5471), 1, - anon_sym_DOT, - ACTIONS(5473), 1, - aux_sym__immediate_decimal_token2, STATE(2386), 1, sym_comment, - ACTIONS(1552), 7, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1550), 48, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - 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, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(5026), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284763,6 +285939,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(5024), 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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -284771,52 +285986,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, - aux_sym__unquoted_in_list_token2, - [53165] = 17, - ACTIONS(251), 1, + [50097] = 20, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5430), 1, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5438), 1, + ACTIONS(5336), 1, anon_sym_PLUS2, - ACTIONS(5450), 1, + ACTIONS(5352), 1, + anon_sym_and2, + ACTIONS(5362), 1, anon_sym_bit_DASHand2, - ACTIONS(5452), 1, + ACTIONS(5364), 1, anon_sym_bit_DASHxor2, - STATE(1800), 1, + ACTIONS(5366), 1, + anon_sym_bit_DASHor2, + ACTIONS(5368), 1, + sym__newline, + STATE(2371), 1, aux_sym_shebang_repeat1, STATE(2387), 1, sym_comment, - ACTIONS(5432), 2, + ACTIONS(5330), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5434), 2, + ACTIONS(5332), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5436), 2, + ACTIONS(5334), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5440), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5442), 2, + ACTIONS(5348), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5448), 2, + ACTIONS(5358), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5444), 4, + ACTIONS(5360), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5356), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5446), 4, + ACTIONS(5350), 6, anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5321), 8, + ACTIONS(5249), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284825,8 +286046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5319), 24, - sym__newline, + ACTIONS(5247), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -284838,10 +286058,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_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -284850,30 +286068,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, - [53259] = 11, - ACTIONS(251), 1, + [50199] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5430), 1, + ACTIONS(5307), 1, anon_sym_DASH2, - ACTIONS(5438), 1, + ACTIONS(5321), 1, anon_sym_PLUS2, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, STATE(2388), 1, sym_comment, - ACTIONS(5432), 2, + ACTIONS(5311), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5434), 2, + ACTIONS(5317), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5436), 2, + ACTIONS(5319), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5440), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5343), 10, + ACTIONS(5303), 10, anon_sym_GT2, anon_sym_LT2, anon_sym_err_GT, @@ -284884,7 +286099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5341), 36, + ACTIONS(5301), 40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -284902,6 +286117,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -284910,6 +286127,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -284921,34 +286140,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, - [53341] = 12, - ACTIONS(251), 1, + [50281] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5360), 1, - anon_sym_DASH2, - ACTIONS(5374), 1, - anon_sym_PLUS2, - ACTIONS(5475), 1, + ACTIONS(5368), 1, sym__newline, - STATE(2335), 1, + STATE(2332), 1, aux_sym_shebang_repeat1, STATE(2389), 1, sym_comment, - ACTIONS(5364), 2, + ACTIONS(5330), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5370), 2, + ACTIONS(5332), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5372), 2, + ACTIONS(5334), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5376), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5347), 10, + ACTIONS(5249), 11, anon_sym_GT2, anon_sym_LT2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284957,7 +286170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5345), 35, + ACTIONS(5247), 40, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -284969,11 +286182,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_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -284982,6 +286198,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -284993,93 +286211,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, - [53425] = 8, - ACTIONS(251), 1, + [50361] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5402), 1, - anon_sym_DOT2, + ACTIONS(5415), 1, + anon_sym_LBRACK2, STATE(2390), 1, sym_comment, - STATE(2560), 1, - aux_sym_cell_path_repeat1, - STATE(2665), 1, - sym_path, - STATE(2706), 1, - sym_cell_path, - ACTIONS(1697), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1699), 47, - sym_raw_string_begin, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - 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, - [53501] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2391), 1, - sym_comment, - ACTIONS(5432), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5434), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5436), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5343), 11, + ACTIONS(2292), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -285089,7 +286232,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(5341), 39, + ACTIONS(2296), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -285101,13 +286245,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_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -285116,6 +286261,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -285129,27 +286278,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, - [53577] = 9, - ACTIONS(251), 1, + [50433] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5475), 1, - sym__newline, - STATE(2336), 1, - aux_sym_shebang_repeat1, - STATE(2392), 1, + STATE(2391), 1, sym_comment, - ACTIONS(5364), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5370), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5372), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5347), 11, + ACTIONS(5189), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -285159,7 +286297,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(5345), 38, + ACTIONS(5191), 46, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -285173,10 +286312,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -285185,6 +286327,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -285198,38 +286344,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53655] = 13, - ACTIONS(251), 1, + [50503] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5430), 1, + ACTIONS(5325), 1, + sym__newline, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5438), 1, + ACTIONS(5336), 1, anon_sym_PLUS2, - STATE(1800), 1, + STATE(2312), 1, aux_sym_shebang_repeat1, - STATE(2393), 1, + STATE(2392), 1, sym_comment, - ACTIONS(5432), 2, + ACTIONS(5330), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5434), 2, + ACTIONS(5332), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5436), 2, + ACTIONS(5334), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5440), 2, + ACTIONS(5360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5442), 2, + ACTIONS(5299), 10, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5444), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5343), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285238,8 +286380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5341), 32, - sym__newline, + ACTIONS(5297), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -285256,8 +286397,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, @@ -285271,40 +286418,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, - [53741] = 14, - ACTIONS(251), 1, + [50589] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5360), 1, + ACTIONS(5307), 1, anon_sym_DASH2, - ACTIONS(5374), 1, + ACTIONS(5321), 1, anon_sym_PLUS2, - ACTIONS(5475), 1, - sym__newline, - STATE(2338), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2394), 1, + STATE(2393), 1, sym_comment, - ACTIONS(5358), 2, + ACTIONS(5305), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5364), 2, + ACTIONS(5311), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5370), 2, + ACTIONS(5315), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5317), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5372), 2, + ACTIONS(5319), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5376), 2, + ACTIONS(5323), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5366), 4, + ACTIONS(5313), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5347), 8, + ACTIONS(5309), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5303), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285313,7 +286468,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(5345), 31, + ACTIONS(5301), 26, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -285325,15 +286481,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_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -285345,21 +286495,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, - [53829] = 6, - ACTIONS(251), 1, + [50681] = 9, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, + ACTIONS(5325), 1, + sym__newline, + STATE(2314), 1, aux_sym_shebang_repeat1, - STATE(2395), 1, + STATE(2394), 1, sym_comment, - ACTIONS(5434), 2, + ACTIONS(5330), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5332), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5343), 13, + ACTIONS(5334), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5299), 11, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -285369,8 +286525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5341), 41, - sym__newline, + ACTIONS(5297), 40, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -285388,6 +286543,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -285396,8 +286553,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -285411,24 +286566,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, - [53901] = 7, - ACTIONS(251), 1, + [50761] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5475), 1, - sym__newline, - STATE(2339), 1, + ACTIONS(5307), 1, + anon_sym_DASH2, + ACTIONS(5321), 1, + anon_sym_PLUS2, + ACTIONS(5342), 1, + anon_sym_bit_DASHand2, + ACTIONS(5344), 1, + anon_sym_bit_DASHxor2, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2396), 1, + STATE(2395), 1, sym_comment, - ACTIONS(5370), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5347), 13, + ACTIONS(5305), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5311), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5315), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5317), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5319), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5323), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5313), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5309), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5293), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285437,7 +286620,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(5345), 40, + ACTIONS(5291), 24, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -285449,25 +286633,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [50857] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5307), 1, + anon_sym_DASH2, + ACTIONS(5321), 1, + anon_sym_PLUS2, + ACTIONS(5342), 1, + anon_sym_bit_DASHand2, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(2396), 1, + sym_comment, + ACTIONS(5305), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5311), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5315), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + ACTIONS(5317), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5319), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(5323), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, + ACTIONS(5313), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5309), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5303), 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(5301), 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_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -285478,52 +286723,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, - [53975] = 18, - ACTIONS(251), 1, + [50951] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5430), 1, + ACTIONS(5307), 1, anon_sym_DASH2, - ACTIONS(5438), 1, + ACTIONS(5321), 1, anon_sym_PLUS2, - ACTIONS(5450), 1, - anon_sym_bit_DASHand2, - ACTIONS(5452), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5454), 1, - anon_sym_bit_DASHor2, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, STATE(2397), 1, sym_comment, - ACTIONS(5432), 2, + ACTIONS(5305), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5311), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5434), 2, + ACTIONS(5317), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5436), 2, + ACTIONS(5319), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5440), 2, + ACTIONS(5323), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5442), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5448), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5444), 4, + ACTIONS(5313), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5446), 4, + ACTIONS(5309), 6, anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5343), 8, + ACTIONS(5245), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285532,7 +286770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5341), 23, + ACTIONS(5243), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -285548,6 +286786,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -285556,20 +286799,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, - [54071] = 7, - ACTIONS(251), 1, + [51041] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5212), 1, - sym__newline, + ACTIONS(4665), 1, + anon_sym_COLON2, STATE(2398), 1, sym_comment, - ACTIONS(5217), 5, + ACTIONS(1002), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5221), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285578,7 +286820,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(5215), 20, + ACTIONS(998), 45, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -285589,23 +286832,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_LBRACE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - 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(5219), 23, anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -285623,54 +286858,258 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54145] = 19, - ACTIONS(251), 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, + [51113] = 37, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(155), 1, + anon_sym_LPAREN, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(185), 1, + anon_sym_DOT_DOT, + ACTIONS(201), 1, + aux_sym_expr_unary_token1, + 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(5360), 1, + ACTIONS(249), 1, + sym_raw_string_begin, + ACTIONS(377), 1, anon_sym_DASH2, - ACTIONS(5374), 1, + ACTIONS(1016), 1, + anon_sym_DOLLAR, + ACTIONS(3430), 1, + anon_sym_null, + ACTIONS(3434), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3436), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3438), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3440), 1, + aux_sym__val_number_decimal_token4, + STATE(1536), 1, + sym__val_number, + STATE(1690), 1, + sym_expr_parenthesized, + STATE(1714), 1, + sym_val_variable, + STATE(1875), 1, + sym__inter_single_quotes, + STATE(1877), 1, + sym__inter_double_quotes, + STATE(2002), 1, + sym__expr_unary_minus, + STATE(2399), 1, + sym_comment, + STATE(2975), 1, + sym__val_number_decimal, + STATE(3836), 1, + sym__expr_binary_expression, + STATE(7438), 1, + sym__expression, + ACTIONS(207), 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(3432), 2, + anon_sym_true, + anon_sym_false, + STATE(1392), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2132), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(223), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2105), 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, + [51249] = 37, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(155), 1, + anon_sym_LPAREN, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(185), 1, + anon_sym_DOT_DOT, + ACTIONS(201), 1, + aux_sym_expr_unary_token1, + 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(249), 1, + sym_raw_string_begin, + ACTIONS(377), 1, + anon_sym_DASH2, + ACTIONS(1016), 1, + anon_sym_DOLLAR, + ACTIONS(3430), 1, + anon_sym_null, + ACTIONS(3434), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3436), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3438), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3440), 1, + aux_sym__val_number_decimal_token4, + STATE(1536), 1, + sym__val_number, + STATE(1690), 1, + sym_expr_parenthesized, + STATE(1714), 1, + sym_val_variable, + STATE(1875), 1, + sym__inter_single_quotes, + STATE(1877), 1, + sym__inter_double_quotes, + STATE(2002), 1, + sym__expr_unary_minus, + STATE(2400), 1, + sym_comment, + STATE(2975), 1, + sym__val_number_decimal, + STATE(3836), 1, + sym__expr_binary_expression, + STATE(7287), 1, + sym__expression, + ACTIONS(207), 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(3432), 2, + anon_sym_true, + anon_sym_false, + STATE(1392), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2132), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(223), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2105), 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, + [51385] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5307), 1, + anon_sym_DASH2, + ACTIONS(5321), 1, anon_sym_PLUS2, - ACTIONS(5378), 1, + ACTIONS(5342), 1, anon_sym_bit_DASHand2, - ACTIONS(5380), 1, + ACTIONS(5344), 1, anon_sym_bit_DASHxor2, - ACTIONS(5393), 1, - anon_sym_bit_DASHor2, - ACTIONS(5475), 1, - sym__newline, - STATE(2340), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(2399), 1, + STATE(2401), 1, sym_comment, - ACTIONS(5358), 2, + ACTIONS(5305), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5364), 2, + ACTIONS(5311), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5368), 2, + ACTIONS(5315), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5370), 2, + ACTIONS(5317), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5372), 2, + ACTIONS(5319), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5376), 2, + ACTIONS(5323), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5362), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5366), 4, + ACTIONS(5313), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5347), 8, + ACTIONS(5309), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5303), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285679,7 +287118,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(5345), 22, + ACTIONS(5301), 24, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -285694,6 +287134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -285702,54 +287143,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54243] = 19, - ACTIONS(251), 1, + [51481] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5430), 1, + ACTIONS(5325), 1, + sym__newline, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5438), 1, + ACTIONS(5336), 1, anon_sym_PLUS2, - ACTIONS(5450), 1, - anon_sym_bit_DASHand2, - ACTIONS(5452), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5454), 1, - anon_sym_bit_DASHor2, - ACTIONS(5456), 1, - anon_sym_and2, - STATE(1800), 1, + STATE(2316), 1, aux_sym_shebang_repeat1, - STATE(2400), 1, + STATE(2402), 1, sym_comment, - ACTIONS(5432), 2, + ACTIONS(5330), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5434), 2, + ACTIONS(5332), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5436), 2, + ACTIONS(5334), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5440), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5442), 2, + ACTIONS(5348), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5448), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5444), 4, + ACTIONS(5360), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5356), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5446), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5343), 8, + ACTIONS(5299), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285758,8 +287185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5341), 22, - sym__newline, + ACTIONS(5297), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -285771,8 +287197,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_in2, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -285781,56 +287219,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, - [54341] = 20, - ACTIONS(251), 1, + [51571] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5360), 1, - anon_sym_DASH2, - ACTIONS(5374), 1, - anon_sym_PLUS2, - ACTIONS(5378), 1, - anon_sym_bit_DASHand2, - ACTIONS(5380), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5393), 1, - anon_sym_bit_DASHor2, - ACTIONS(5395), 1, - anon_sym_and2, - ACTIONS(5475), 1, - sym__newline, - STATE(2341), 1, - aux_sym_shebang_repeat1, - STATE(2401), 1, + ACTIONS(1014), 1, + anon_sym_COLON2, + STATE(2403), 1, sym_comment, - ACTIONS(5358), 2, + ACTIONS(1002), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5364), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5368), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5370), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5372), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5376), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5362), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5366), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5347), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285839,7 +287240,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(5345), 21, + ACTIONS(998), 45, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -285850,9 +287252,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_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -285861,56 +287286,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, - [54441] = 20, - ACTIONS(251), 1, + [51643] = 37, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(155), 1, + anon_sym_LPAREN, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(185), 1, + anon_sym_DOT_DOT, + ACTIONS(201), 1, + aux_sym_expr_unary_token1, + 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(5430), 1, + ACTIONS(249), 1, + sym_raw_string_begin, + ACTIONS(377), 1, anon_sym_DASH2, - ACTIONS(5438), 1, - anon_sym_PLUS2, - ACTIONS(5450), 1, - anon_sym_bit_DASHand2, - ACTIONS(5452), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5454), 1, - anon_sym_bit_DASHor2, - ACTIONS(5456), 1, - anon_sym_and2, - ACTIONS(5458), 1, - anon_sym_xor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2402), 1, + ACTIONS(1016), 1, + anon_sym_DOLLAR, + ACTIONS(3430), 1, + anon_sym_null, + ACTIONS(3434), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3436), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3438), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3440), 1, + aux_sym__val_number_decimal_token4, + STATE(1536), 1, + sym__val_number, + STATE(1690), 1, + sym_expr_parenthesized, + STATE(1714), 1, + sym_val_variable, + STATE(1875), 1, + sym__inter_single_quotes, + STATE(1877), 1, + sym__inter_double_quotes, + STATE(2002), 1, + sym__expr_unary_minus, + STATE(2404), 1, sym_comment, - ACTIONS(5432), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5434), 2, + STATE(2975), 1, + sym__val_number_decimal, + STATE(3836), 1, + sym__expr_binary_expression, + STATE(7345), 1, + sym__expression, + ACTIONS(207), 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(3432), 2, + anon_sym_true, + anon_sym_false, + STATE(1392), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2132), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(223), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2105), 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, + [51779] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5325), 1, + sym__newline, + STATE(2405), 1, + sym_comment, + STATE(2416), 1, + aux_sym_shebang_repeat1, + ACTIONS(5332), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5436), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5440), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5442), 2, + ACTIONS(5299), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5448), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5444), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5446), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5343), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285919,8 +287411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5341), 21, - sym__newline, + ACTIONS(5297), 42, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -285932,88 +287423,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_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [54541] = 21, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(5360), 1, anon_sym_DASH2, - ACTIONS(5374), 1, - anon_sym_PLUS2, - ACTIONS(5378), 1, - anon_sym_bit_DASHand2, - ACTIONS(5380), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5393), 1, - anon_sym_bit_DASHor2, - ACTIONS(5395), 1, + anon_sym_in2, anon_sym_and2, - ACTIONS(5400), 1, anon_sym_xor2, - STATE(2342), 1, - aux_sym_shebang_repeat1, - STATE(2403), 1, - sym_comment, - ACTIONS(5358), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5364), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5368), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5370), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5372), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5376), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5362), 4, - anon_sym_in2, + anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5366), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - 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(5345), 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, - anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -286022,28 +287454,327 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54643] = 10, - ACTIONS(251), 1, + [51855] = 37, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(155), 1, + anon_sym_LPAREN, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(185), 1, + anon_sym_DOT_DOT, + ACTIONS(201), 1, + aux_sym_expr_unary_token1, + 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(249), 1, + sym_raw_string_begin, + ACTIONS(377), 1, + anon_sym_DASH2, + ACTIONS(1016), 1, + anon_sym_DOLLAR, + ACTIONS(3430), 1, + anon_sym_null, + ACTIONS(3434), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3436), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3438), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3440), 1, + aux_sym__val_number_decimal_token4, + STATE(1536), 1, + sym__val_number, + STATE(1690), 1, + sym_expr_parenthesized, + STATE(1714), 1, + sym_val_variable, + STATE(1875), 1, + sym__inter_single_quotes, + STATE(1877), 1, + sym__inter_double_quotes, + STATE(2002), 1, + sym__expr_unary_minus, + STATE(2406), 1, + sym_comment, + STATE(2975), 1, + sym__val_number_decimal, + STATE(3836), 1, + sym__expr_binary_expression, + STATE(7353), 1, + sym__expression, + ACTIONS(207), 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(3432), 2, + anon_sym_true, + anon_sym_false, + STATE(1392), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2132), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(223), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2105), 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, + [51991] = 37, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(155), 1, + anon_sym_LPAREN, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(185), 1, + anon_sym_DOT_DOT, + ACTIONS(201), 1, + aux_sym_expr_unary_token1, + 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(249), 1, + sym_raw_string_begin, + ACTIONS(377), 1, + anon_sym_DASH2, + ACTIONS(1016), 1, + anon_sym_DOLLAR, + ACTIONS(3430), 1, + anon_sym_null, + ACTIONS(3434), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3436), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3438), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3440), 1, + aux_sym__val_number_decimal_token4, + STATE(1536), 1, + sym__val_number, + STATE(1690), 1, + sym_expr_parenthesized, + STATE(1714), 1, + sym_val_variable, + STATE(1875), 1, + sym__inter_single_quotes, + STATE(1877), 1, + sym__inter_double_quotes, + STATE(2002), 1, + sym__expr_unary_minus, + STATE(2407), 1, + sym_comment, + STATE(2975), 1, + sym__val_number_decimal, + STATE(3836), 1, + sym__expr_binary_expression, + STATE(7381), 1, + sym__expression, + ACTIONS(207), 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(3432), 2, + anon_sym_true, + anon_sym_false, + STATE(1392), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2132), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(223), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2105), 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, + [52127] = 37, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(155), 1, + anon_sym_LPAREN, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(185), 1, + anon_sym_DOT_DOT, + ACTIONS(201), 1, + aux_sym_expr_unary_token1, + 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(249), 1, + sym_raw_string_begin, + ACTIONS(377), 1, + anon_sym_DASH2, + ACTIONS(1016), 1, + anon_sym_DOLLAR, + ACTIONS(3430), 1, + anon_sym_null, + ACTIONS(3434), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3436), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3438), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3440), 1, + aux_sym__val_number_decimal_token4, + STATE(1536), 1, + sym__val_number, + STATE(1690), 1, + sym_expr_parenthesized, + STATE(1714), 1, + sym_val_variable, + STATE(1875), 1, + sym__inter_single_quotes, + STATE(1877), 1, + sym__inter_double_quotes, + STATE(2002), 1, + sym__expr_unary_minus, + STATE(2408), 1, + sym_comment, + STATE(2975), 1, + sym__val_number_decimal, + STATE(3836), 1, + sym__expr_binary_expression, + STATE(7392), 1, + sym__expression, + ACTIONS(207), 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(3432), 2, + anon_sym_true, + anon_sym_false, + STATE(1392), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2132), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(223), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2105), 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, + [52263] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5478), 1, + ACTIONS(5307), 1, anon_sym_DASH2, - ACTIONS(5486), 1, + ACTIONS(5321), 1, anon_sym_PLUS2, - STATE(2404), 1, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(2409), 1, sym_comment, - ACTIONS(5480), 2, + ACTIONS(5311), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5482), 2, + ACTIONS(5317), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5484), 2, + ACTIONS(5319), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5488), 2, + ACTIONS(5323), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5259), 10, + ACTIONS(5245), 10, anon_sym_GT2, anon_sym_LT2, anon_sym_err_GT, @@ -286054,7 +287785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5257), 37, + ACTIONS(5243), 38, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -286068,11 +287799,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -286092,103 +287824,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, - [54723] = 7, - ACTIONS(251), 1, + [52347] = 19, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2405), 1, - sym_comment, - ACTIONS(5480), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5482), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5484), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5259), 11, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(5257), 40, + ACTIONS(5325), 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, + ACTIONS(5328), 1, anon_sym_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, + ACTIONS(5336), 1, + anon_sym_PLUS2, + ACTIONS(5362), 1, anon_sym_bit_DASHand2, + ACTIONS(5364), 1, anon_sym_bit_DASHxor2, + ACTIONS(5366), 1, anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [54797] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5478), 1, - anon_sym_DASH2, - ACTIONS(5486), 1, - anon_sym_PLUS2, - STATE(2406), 1, + STATE(2320), 1, + aux_sym_shebang_repeat1, + STATE(2410), 1, sym_comment, - ACTIONS(5480), 2, + ACTIONS(5330), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5482), 2, + ACTIONS(5332), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5484), 2, + ACTIONS(5334), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5488), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5490), 2, + ACTIONS(5348), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5492), 4, + ACTIONS(5358), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5360), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5356), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5259), 8, + ACTIONS(5350), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5299), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -286197,8 +287882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5257), 33, - sym__newline, + ACTIONS(5297), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -286210,19 +287894,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_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -286231,19 +287905,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, - [54881] = 5, - ACTIONS(251), 1, + [52447] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2407), 1, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(2411), 1, sym_comment, - ACTIONS(5482), 2, + ACTIONS(5311), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5317), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5259), 13, + ACTIONS(5319), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5245), 11, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -286253,7 +287933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5257), 42, + ACTIONS(5243), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -286268,11 +287948,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -286281,8 +287962,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -286296,50 +287975,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, - [54951] = 17, - ACTIONS(251), 1, + [52525] = 20, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5478), 1, + ACTIONS(5325), 1, + sym__newline, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5486), 1, + ACTIONS(5336), 1, anon_sym_PLUS2, - ACTIONS(5498), 1, + ACTIONS(5352), 1, + anon_sym_and2, + ACTIONS(5362), 1, anon_sym_bit_DASHand2, - ACTIONS(5500), 1, + ACTIONS(5364), 1, anon_sym_bit_DASHxor2, - ACTIONS(5502), 1, + ACTIONS(5366), 1, anon_sym_bit_DASHor2, - STATE(2408), 1, + STATE(2323), 1, + aux_sym_shebang_repeat1, + STATE(2412), 1, sym_comment, - ACTIONS(5480), 2, + ACTIONS(5330), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5482), 2, + ACTIONS(5332), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5484), 2, + ACTIONS(5334), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5488), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5490), 2, + ACTIONS(5348), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5496), 2, + ACTIONS(5358), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5492), 4, + ACTIONS(5360), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5356), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5494), 4, + ACTIONS(5350), 6, anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5259), 8, + ACTIONS(5299), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -286348,8 +288035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5257), 24, - sym__newline, + ACTIONS(5297), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -286361,8 +288047,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, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_err_GT_GT, @@ -286373,52 +288057,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, - [55045] = 18, - ACTIONS(251), 1, + [52627] = 21, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5478), 1, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5486), 1, + ACTIONS(5336), 1, anon_sym_PLUS2, - ACTIONS(5498), 1, + ACTIONS(5352), 1, + anon_sym_and2, + ACTIONS(5354), 1, + anon_sym_xor2, + ACTIONS(5362), 1, anon_sym_bit_DASHand2, - ACTIONS(5500), 1, + ACTIONS(5364), 1, anon_sym_bit_DASHxor2, - ACTIONS(5502), 1, + ACTIONS(5366), 1, anon_sym_bit_DASHor2, - ACTIONS(5504), 1, - anon_sym_and2, - STATE(2409), 1, + STATE(2330), 1, + aux_sym_shebang_repeat1, + STATE(2413), 1, sym_comment, - ACTIONS(5480), 2, + ACTIONS(5330), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5482), 2, + ACTIONS(5332), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5484), 2, + ACTIONS(5334), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5488), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5490), 2, + ACTIONS(5348), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5496), 2, + ACTIONS(5358), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5492), 4, + ACTIONS(5360), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5356), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5494), 4, + ACTIONS(5350), 6, anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5259), 8, + ACTIONS(5299), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -286427,8 +288119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5257), 23, - sym__newline, + ACTIONS(5297), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -286440,8 +288131,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, - anon_sym_xor2, anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -286451,54 +288140,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, - [55141] = 19, - ACTIONS(251), 1, + [52731] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5478), 1, + ACTIONS(5325), 1, + sym__newline, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5486), 1, + ACTIONS(5336), 1, anon_sym_PLUS2, - ACTIONS(5498), 1, - anon_sym_bit_DASHand2, - ACTIONS(5500), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5502), 1, - anon_sym_bit_DASHor2, - ACTIONS(5504), 1, - anon_sym_and2, - ACTIONS(5506), 1, - anon_sym_xor2, - STATE(2410), 1, + STATE(2334), 1, + aux_sym_shebang_repeat1, + STATE(2414), 1, sym_comment, - ACTIONS(5480), 2, + ACTIONS(5330), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5482), 2, + ACTIONS(5332), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5484), 2, + ACTIONS(5334), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5488), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5490), 2, + ACTIONS(5348), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5496), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5492), 4, + ACTIONS(5360), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5356), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5494), 4, + ACTIONS(5350), 6, anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5259), 8, + ACTIONS(5299), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -286507,8 +288189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5257), 22, - sym__newline, + ACTIONS(5297), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -286520,8 +288201,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, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -286530,41 +288217,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, - [55239] = 13, - ACTIONS(251), 1, + [52823] = 18, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5478), 1, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5486), 1, + ACTIONS(5336), 1, anon_sym_PLUS2, - STATE(2411), 1, + ACTIONS(5362), 1, + anon_sym_bit_DASHand2, + ACTIONS(5364), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5368), 1, + sym__newline, + STATE(2401), 1, + aux_sym_shebang_repeat1, + STATE(2415), 1, sym_comment, - ACTIONS(5480), 2, + ACTIONS(5330), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5482), 2, + ACTIONS(5332), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5484), 2, + ACTIONS(5334), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5488), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5490), 2, + ACTIONS(5348), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5492), 4, + ACTIONS(5358), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5360), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5356), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5494), 4, + ACTIONS(5350), 6, anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5259), 8, + ACTIONS(5249), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -286573,8 +288273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5257), 29, - sym__newline, + ACTIONS(5247), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -286586,14 +288285,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_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -286603,27 +288297,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, - [55325] = 9, - ACTIONS(251), 1, + [52921] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5478), 1, - anon_sym_DASH2, - ACTIONS(5486), 1, - anon_sym_PLUS2, - STATE(2412), 1, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(2416), 1, sym_comment, - ACTIONS(5480), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5482), 2, + ACTIONS(5317), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5484), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5259), 10, + ACTIONS(5281), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -286632,7 +288321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5257), 39, + ACTIONS(5279), 43, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -286645,12 +288334,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_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -286659,6 +288350,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -286672,44 +288365,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, - [55403] = 14, - ACTIONS(251), 1, + [52995] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5478), 1, - anon_sym_DASH2, - ACTIONS(5486), 1, - anon_sym_PLUS2, - STATE(2413), 1, + STATE(2417), 1, sym_comment, - ACTIONS(5480), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5482), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5484), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5488), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5490), 2, + ACTIONS(2043), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5496), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5492), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5494), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5259), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -286718,7 +288384,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(5257), 27, + ACTIONS(2049), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -286730,11 +288397,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_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -286746,46 +288430,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, - [55491] = 15, - ACTIONS(251), 1, + [53064] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5478), 1, - anon_sym_DASH2, - ACTIONS(5486), 1, - anon_sym_PLUS2, - ACTIONS(5498), 1, - anon_sym_bit_DASHand2, - STATE(2414), 1, + STATE(2418), 1, sym_comment, - ACTIONS(5480), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5482), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5484), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5488), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5490), 2, + ACTIONS(2477), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5496), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5492), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5494), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5259), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -286794,7 +288449,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(5257), 26, + ACTIONS(2479), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -286806,11 +288462,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_RPAREN, - anon_sym_RBRACE, + anon_sym_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -286821,48 +288495,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, - [55581] = 16, - ACTIONS(251), 1, + [53133] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5478), 1, - anon_sym_DASH2, - ACTIONS(5486), 1, - anon_sym_PLUS2, - ACTIONS(5498), 1, - anon_sym_bit_DASHand2, - ACTIONS(5500), 1, - anon_sym_bit_DASHxor2, - STATE(2415), 1, + STATE(2419), 1, sym_comment, - ACTIONS(5480), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5482), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5484), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5488), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5490), 2, + ACTIONS(1002), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5496), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5492), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5494), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5259), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -286871,7 +288514,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(5257), 25, + ACTIONS(998), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -286883,11 +288527,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_RBRACE, + anon_sym_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -286897,43 +288560,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, - [55673] = 14, - ACTIONS(251), 1, + [53202] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5430), 1, - anon_sym_DASH2, - ACTIONS(5438), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2416), 1, + STATE(2420), 1, sym_comment, - ACTIONS(5432), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5434), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5436), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5440), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5442), 2, + ACTIONS(2314), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5444), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5446), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5343), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -286942,7 +288579,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(5341), 28, + ACTIONS(2316), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -286954,12 +288592,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_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -286971,45 +288625,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, - [55761] = 15, - ACTIONS(251), 1, + [53271] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5360), 1, - anon_sym_DASH2, - ACTIONS(5374), 1, - anon_sym_PLUS2, - ACTIONS(5475), 1, - sym__newline, - STATE(2343), 1, - aux_sym_shebang_repeat1, - STATE(2417), 1, + STATE(2421), 1, sym_comment, - ACTIONS(5358), 2, + ACTIONS(2441), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5364), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5370), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5372), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5376), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5362), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5366), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5347), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -287018,7 +288644,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(5345), 27, + ACTIONS(2443), 45, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -287029,12 +288657,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_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -287046,29 +288690,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, - [55851] = 10, - ACTIONS(251), 1, + [53340] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5430), 1, - anon_sym_DASH2, - ACTIONS(5438), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2418), 1, + STATE(2422), 1, sym_comment, - ACTIONS(5432), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5434), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5436), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5343), 10, + ACTIONS(2330), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -287077,7 +288709,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(5341), 38, + ACTIONS(2332), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -287089,12 +288722,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_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -287103,6 +288738,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -287116,31 +288755,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, - [55931] = 11, - ACTIONS(251), 1, + [53409] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5360), 1, - anon_sym_DASH2, - ACTIONS(5374), 1, - anon_sym_PLUS2, - ACTIONS(5475), 1, - sym__newline, - STATE(2344), 1, - aux_sym_shebang_repeat1, - STATE(2419), 1, + STATE(2423), 1, sym_comment, - ACTIONS(5364), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5370), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5372), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5347), 10, + ACTIONS(2407), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -287149,7 +288774,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(5345), 37, + ACTIONS(2409), 45, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -287160,12 +288787,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_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -287174,6 +288803,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -287187,114 +288820,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, - [56013] = 8, - ACTIONS(251), 1, + [53478] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5402), 1, - anon_sym_DOT2, - STATE(2420), 1, + STATE(2424), 1, sym_comment, - STATE(2560), 1, - aux_sym_cell_path_repeat1, - STATE(2665), 1, - sym_path, - STATE(2741), 1, - sym_cell_path, - ACTIONS(1719), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1721), 47, - sym_raw_string_begin, + ACTIONS(1877), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(1879), 45, 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - 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, - [56089] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5430), 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_DASH2, - ACTIONS(5438), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2421), 1, - sym_comment, - ACTIONS(5432), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5434), 2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5436), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5440), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5442), 2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [53547] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2425), 1, + sym_comment, + ACTIONS(2429), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5448), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5444), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5446), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5343), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -287303,7 +288904,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(5341), 26, + ACTIONS(2431), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -287315,10 +288917,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_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -287330,48 +288950,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, - [56179] = 16, - ACTIONS(251), 1, + [53616] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5360), 1, - anon_sym_DASH2, - ACTIONS(5374), 1, - anon_sym_PLUS2, - ACTIONS(5475), 1, - sym__newline, - STATE(2345), 1, - aux_sym_shebang_repeat1, - STATE(2422), 1, + STATE(2426), 1, sym_comment, - ACTIONS(5358), 2, + ACTIONS(2441), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5364), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5368), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5370), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5372), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5376), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5362), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5366), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5347), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -287380,7 +288969,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(5345), 25, + ACTIONS(2443), 45, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -287391,10 +288982,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_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -287406,126 +289015,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, - [56271] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3132), 1, - anon_sym_DQUOTE, - ACTIONS(3138), 1, - sym_raw_string_begin, - ACTIONS(4952), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5297), 1, - sym__newline, - STATE(2423), 1, - sym_comment, - STATE(2583), 1, - aux_sym_command_list_repeat1, - STATE(2887), 1, - aux_sym_shebang_repeat1, - STATE(3765), 1, - sym__val_number_decimal, - STATE(6916), 1, - sym__command_name, - STATE(7043), 1, - sym_val_string, - STATE(7283), 1, - sym_cmd_identifier, - ACTIONS(3134), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4950), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(5195), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5293), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5295), 34, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [56367] = 16, - ACTIONS(251), 1, + [53685] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5430), 1, - anon_sym_DASH2, - ACTIONS(5438), 1, - anon_sym_PLUS2, - ACTIONS(5450), 1, - anon_sym_bit_DASHand2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2424), 1, + STATE(2427), 1, sym_comment, - ACTIONS(5432), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5434), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5436), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5440), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5442), 2, + ACTIONS(1889), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5448), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5444), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5446), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5343), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -287534,7 +289034,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(5341), 25, + ACTIONS(1891), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -287546,10 +289047,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_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -287560,50 +289080,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, - [56459] = 17, - ACTIONS(251), 1, + [53754] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5360), 1, - anon_sym_DASH2, - ACTIONS(5374), 1, - anon_sym_PLUS2, - ACTIONS(5378), 1, - anon_sym_bit_DASHand2, - ACTIONS(5475), 1, - sym__newline, - STATE(2346), 1, - aux_sym_shebang_repeat1, - STATE(2425), 1, + STATE(2428), 1, sym_comment, - ACTIONS(5358), 2, + ACTIONS(2322), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5364), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5368), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5370), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5372), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5376), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5362), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5366), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5347), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -287612,7 +289099,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(5345), 24, + ACTIONS(2324), 45, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -287623,10 +289112,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_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -287637,50 +289145,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, - [56553] = 17, - ACTIONS(251), 1, + [53823] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5430), 1, - anon_sym_DASH2, - ACTIONS(5438), 1, - anon_sym_PLUS2, - ACTIONS(5450), 1, - anon_sym_bit_DASHand2, - ACTIONS(5452), 1, - anon_sym_bit_DASHxor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2426), 1, + STATE(2429), 1, sym_comment, - ACTIONS(5432), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5434), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5436), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5440), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5442), 2, + ACTIONS(2326), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5448), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5444), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5446), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5343), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -287689,7 +289164,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(5341), 24, + ACTIONS(2328), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -287701,10 +289177,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_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -287714,52 +289210,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, - [56647] = 18, - ACTIONS(251), 1, + [53892] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5360), 1, - anon_sym_DASH2, - ACTIONS(5374), 1, - anon_sym_PLUS2, - ACTIONS(5378), 1, - anon_sym_bit_DASHand2, - ACTIONS(5380), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5475), 1, - sym__newline, - STATE(2347), 1, - aux_sym_shebang_repeat1, - STATE(2427), 1, + STATE(2430), 1, sym_comment, - ACTIONS(5358), 2, + ACTIONS(2334), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5364), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5368), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5370), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5372), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5376), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5362), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5366), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5347), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -287768,7 +289229,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(5345), 23, + ACTIONS(2336), 45, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -287779,10 +289242,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_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -287792,34 +289275,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56743] = 12, - ACTIONS(251), 1, + [53961] = 19, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1272), 1, + anon_sym_DQUOTE, + ACTIONS(1276), 1, + sym_raw_string_begin, + ACTIONS(3442), 1, + anon_sym_COLON2, + ACTIONS(4992), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4994), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5417), 1, + anon_sym_DASH_DASH, + STATE(2431), 1, + sym_comment, + STATE(2520), 1, + aux_sym_decl_def_repeat1, + STATE(3039), 1, + sym_long_flag, + STATE(3741), 1, + sym__val_number_decimal, + STATE(4089), 1, + sym_val_string, + STATE(4154), 1, + sym_cmd_identifier, + STATE(6554), 1, + sym__command_name, + ACTIONS(1274), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4990), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3793), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4980), 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(4982), 34, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [54060] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5355), 1, - sym__newline, - ACTIONS(5360), 1, - anon_sym_DASH2, - ACTIONS(5374), 1, - anon_sym_PLUS2, - STATE(2348), 1, - aux_sym_shebang_repeat1, - STATE(2428), 1, + STATE(2432), 1, sym_comment, - ACTIONS(5364), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5370), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5372), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5376), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5315), 10, + ACTIONS(1833), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -287828,7 +289374,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(5313), 35, + ACTIONS(1835), 45, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -287839,12 +289387,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_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -287853,6 +289403,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -287864,27 +289420,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, - [56827] = 9, - ACTIONS(251), 1, + [54129] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5355), 1, - sym__newline, - STATE(2350), 1, - aux_sym_shebang_repeat1, - STATE(2429), 1, + STATE(2433), 1, sym_comment, - ACTIONS(5364), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5370), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5372), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5315), 11, + ACTIONS(2356), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -287894,7 +289439,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(5313), 38, + ACTIONS(2358), 45, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -287905,13 +289452,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_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -287920,6 +289468,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -287933,14 +289485,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, - [56905] = 5, - ACTIONS(251), 1, + [54198] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5508), 1, - anon_sym_LBRACK2, - STATE(2430), 1, + STATE(2434), 1, sym_comment, - ACTIONS(2230), 13, + ACTIONS(2360), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -287954,7 +289504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2234), 43, + ACTIONS(2362), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -287973,6 +289523,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -287998,40 +289550,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, - [56975] = 14, - ACTIONS(251), 1, + [54267] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5355), 1, - sym__newline, - ACTIONS(5360), 1, - anon_sym_DASH2, - ACTIONS(5374), 1, - anon_sym_PLUS2, - STATE(2352), 1, - aux_sym_shebang_repeat1, - STATE(2431), 1, + STATE(2435), 1, sym_comment, - ACTIONS(5358), 2, + ACTIONS(2370), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5364), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5370), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5372), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5376), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5366), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5315), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -288040,7 +289569,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(5313), 31, + ACTIONS(2372), 45, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -288051,16 +289582,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_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -288072,19 +289615,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, - [57063] = 7, - ACTIONS(251), 1, + [54336] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5355), 1, - sym__newline, - STATE(2355), 1, - aux_sym_shebang_repeat1, - STATE(2432), 1, + STATE(2436), 1, sym_comment, - ACTIONS(5370), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5315), 13, + ACTIONS(2168), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -288098,7 +289634,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(5313), 40, + ACTIONS(2172), 45, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -288109,13 +289647,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_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -288124,6 +289663,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -288139,54 +289680,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, - [57137] = 19, - ACTIONS(251), 1, + [54405] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5355), 1, - sym__newline, - ACTIONS(5360), 1, - anon_sym_DASH2, - ACTIONS(5374), 1, - anon_sym_PLUS2, - ACTIONS(5378), 1, - anon_sym_bit_DASHand2, - ACTIONS(5380), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5393), 1, - anon_sym_bit_DASHor2, - STATE(2357), 1, - aux_sym_shebang_repeat1, - STATE(2433), 1, + STATE(2437), 1, sym_comment, - ACTIONS(5358), 2, + ACTIONS(1861), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5364), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5368), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5370), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5372), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5376), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5362), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5366), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5315), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -288195,7 +289699,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(5313), 22, + ACTIONS(1863), 45, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -288206,90 +289712,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, + anon_sym_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [57235] = 20, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5355), 1, - sym__newline, - ACTIONS(5360), 1, - anon_sym_DASH2, - ACTIONS(5374), 1, - anon_sym_PLUS2, - ACTIONS(5378), 1, - anon_sym_bit_DASHand2, - ACTIONS(5380), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5393), 1, - anon_sym_bit_DASHor2, - ACTIONS(5395), 1, - anon_sym_and2, - STATE(2359), 1, - aux_sym_shebang_repeat1, - STATE(2434), 1, - sym_comment, - ACTIONS(5358), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5364), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5368), 2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5370), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5372), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5376), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5362), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5366), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5315), 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(5313), 21, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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_xor2, - anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -288298,50 +289745,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, - [57335] = 18, - ACTIONS(251), 1, + [54474] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1286), 1, - anon_sym_DQUOTE, - ACTIONS(1290), 1, - sym_raw_string_begin, - ACTIONS(4952), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5309), 1, - anon_sym_DASH_DASH, - STATE(2324), 1, - aux_sym_decl_def_repeat1, - STATE(2435), 1, + ACTIONS(5419), 1, + anon_sym_DOT2, + STATE(2438), 1, sym_comment, - STATE(2999), 1, - sym_long_flag, - STATE(3792), 1, - sym__val_number_decimal, - STATE(4121), 1, - sym_val_string, - STATE(4146), 1, - sym_cmd_identifier, - STATE(6610), 1, - sym__command_name, - ACTIONS(1288), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4950), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3668), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4940), 6, + STATE(2536), 1, + aux_sym_cell_path_repeat1, + STATE(2576), 1, + sym_path, + STATE(2629), 1, + sym_cell_path, + ACTIONS(929), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4942), 34, + ACTIONS(931), 48, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -288376,58 +289801,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [57431] = 21, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3826), 1, sym__newline, - ACTIONS(5360), 1, - anon_sym_DASH2, - ACTIONS(5374), 1, - anon_sym_PLUS2, - ACTIONS(5378), 1, - anon_sym_bit_DASHand2, - ACTIONS(5380), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5393), 1, - anon_sym_bit_DASHor2, - ACTIONS(5395), 1, - anon_sym_and2, - ACTIONS(5400), 1, - anon_sym_xor2, - STATE(2361), 1, - aux_sym_shebang_repeat1, - STATE(2436), 1, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + 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, + [54551] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2439), 1, sym_comment, - ACTIONS(5358), 2, + ACTIONS(1917), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5364), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5368), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5370), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5372), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5376), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5362), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5366), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5315), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -288436,7 +289833,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(5313), 20, + ACTIONS(1919), 45, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -288447,80 +289846,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_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [57533] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5355), 1, - sym__newline, - ACTIONS(5360), 1, anon_sym_DASH2, - ACTIONS(5374), 1, - anon_sym_PLUS2, - STATE(2364), 1, - aux_sym_shebang_repeat1, - STATE(2437), 1, - sym_comment, - ACTIONS(5358), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5364), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5370), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5372), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5376), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5362), 4, anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5366), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5315), 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(5313), 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_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -288532,12 +289879,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, - [57623] = 4, - ACTIONS(251), 1, + [54620] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2438), 1, + STATE(2440), 1, sym_comment, - ACTIONS(5217), 13, + ACTIONS(2457), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -288551,7 +289898,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(5219), 44, + ACTIONS(2459), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -288563,14 +289911,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -288596,34 +289944,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, - [57691] = 12, - ACTIONS(251), 1, + [54689] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5360), 1, - anon_sym_DASH2, - ACTIONS(5374), 1, - anon_sym_PLUS2, - ACTIONS(5390), 1, - sym__newline, - STATE(2388), 1, - aux_sym_shebang_repeat1, - STATE(2439), 1, + STATE(2441), 1, sym_comment, - ACTIONS(5364), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5370), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5372), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5376), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5351), 10, + ACTIONS(2306), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -288632,7 +289963,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(5349), 35, + ACTIONS(2308), 45, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -288643,12 +289976,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_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -288657,6 +289992,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -288668,27 +290009,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, - [57775] = 9, - ACTIONS(251), 1, + [54758] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5390), 1, - sym__newline, - STATE(2391), 1, - aux_sym_shebang_repeat1, - STATE(2440), 1, + STATE(2442), 1, sym_comment, - ACTIONS(5364), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5370), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5372), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5351), 11, + ACTIONS(1901), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -288698,7 +290028,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(5349), 38, + ACTIONS(1903), 45, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -288709,13 +290041,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_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -288724,6 +290057,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -288737,31 +290074,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, - [57853] = 11, - ACTIONS(251), 1, + [54827] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5355), 1, - sym__newline, - ACTIONS(5360), 1, - anon_sym_DASH2, - ACTIONS(5374), 1, - anon_sym_PLUS2, - STATE(2366), 1, - aux_sym_shebang_repeat1, - STATE(2441), 1, + STATE(2443), 1, sym_comment, - ACTIONS(5364), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5370), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5372), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5315), 10, + ACTIONS(5006), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5010), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -288770,7 +290094,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(5313), 37, + ACTIONS(5004), 20, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -288781,12 +290107,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_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + 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(5008), 25, + anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -288795,11 +290132,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + [54900] = 34, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1272), 1, + anon_sym_DQUOTE, + ACTIONS(1276), 1, + sym_raw_string_begin, + ACTIONS(3538), 1, + aux_sym_unquoted_token1, + ACTIONS(3830), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3832), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3834), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3836), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4091), 1, + anon_sym_DOT_DOT, + ACTIONS(4111), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4113), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5267), 1, + anon_sym_DASH_DASH, + ACTIONS(5269), 1, + anon_sym_DASH2, + ACTIONS(5273), 1, + sym_val_date, + ACTIONS(5421), 1, + anon_sym_LPAREN, + ACTIONS(5423), 1, + anon_sym_DOLLAR, + STATE(2444), 1, + sym_comment, + STATE(2451), 1, + aux_sym_ctrl_do_repeat1, + STATE(3515), 1, + sym__flag, + STATE(5297), 1, + sym__inter_single_quotes, + STATE(5300), 1, + sym__inter_double_quotes, + STATE(5713), 1, + sym__val_number_decimal, + STATE(7494), 1, + sym_val_bool, + STATE(7649), 1, + sym__unquoted_anonymous_prefix, + STATE(7833), 1, + sym__val_range, + ACTIONS(1274), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3828), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4093), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(3453), 2, + sym_short_flag, + sym_long_flag, + STATE(3793), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5271), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(5159), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2830), 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(2832), 9, + anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -288808,19 +290236,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, - [57935] = 7, - ACTIONS(251), 1, + [55029] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5390), 1, - sym__newline, - STATE(2395), 1, - aux_sym_shebang_repeat1, - STATE(2442), 1, + STATE(2445), 1, sym_comment, - ACTIONS(5370), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5351), 13, + ACTIONS(2385), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -288834,7 +290255,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(5349), 40, + ACTIONS(2387), 45, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -288845,13 +290268,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_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -288860,6 +290284,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -288875,14 +290301,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, - [58009] = 5, - ACTIONS(251), 1, + [55098] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1028), 1, - anon_sym_COLON2, - STATE(2443), 1, + STATE(2446), 1, sym_comment, - ACTIONS(1016), 13, + ACTIONS(2065), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -288896,7 +290320,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(1012), 43, + ACTIONS(2069), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -288910,11 +290335,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -288940,50 +290366,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, - [58079] = 18, - ACTIONS(251), 1, + [55167] = 19, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3132), 1, + ACTIONS(3140), 1, anon_sym_DQUOTE, - ACTIONS(3138), 1, + ACTIONS(3146), 1, sym_raw_string_begin, - ACTIONS(4952), 1, + ACTIONS(4992), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, + ACTIONS(4994), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5297), 1, + ACTIONS(5429), 1, sym__newline, - STATE(2444), 1, + ACTIONS(5431), 1, + anon_sym_RBRACK, + STATE(2447), 1, sym_comment, - STATE(2595), 1, - aux_sym_command_list_repeat1, - STATE(2887), 1, + STATE(2537), 1, aux_sym_shebang_repeat1, - STATE(3765), 1, + STATE(2603), 1, + aux_sym_command_list_repeat1, + STATE(3721), 1, sym__val_number_decimal, - STATE(6757), 1, + STATE(6986), 1, sym__command_name, - STATE(7043), 1, - sym_val_string, - STATE(7283), 1, + STATE(7127), 1, sym_cmd_identifier, - ACTIONS(3134), 2, + STATE(7129), 1, + sym_val_string, + ACTIONS(3142), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4950), 2, + ACTIONS(4990), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(5195), 2, + STATE(5291), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5293), 6, + ACTIONS(5425), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5295), 34, + ACTIONS(5427), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -289018,48 +290446,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [58175] = 16, - ACTIONS(251), 1, + [55266] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5355), 1, - sym__newline, - ACTIONS(5360), 1, - anon_sym_DASH2, - ACTIONS(5374), 1, - anon_sym_PLUS2, - STATE(2368), 1, - aux_sym_shebang_repeat1, - STATE(2445), 1, + STATE(2448), 1, sym_comment, - ACTIONS(5358), 2, + ACTIONS(2085), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5364), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5368), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5370), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5372), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5376), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5362), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5366), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5315), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -289068,7 +290465,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(5313), 25, + ACTIONS(2087), 45, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -289079,10 +290478,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_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -289094,40 +290511,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, - [58267] = 14, - ACTIONS(251), 1, + [55335] = 34, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5360), 1, + ACTIONS(3506), 1, + aux_sym_unquoted_token1, + ACTIONS(3830), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3832), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3834), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3836), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4387), 1, + anon_sym_DOLLAR, + ACTIONS(4391), 1, + anon_sym_DOT_DOT, + ACTIONS(4417), 1, + anon_sym_DQUOTE, + ACTIONS(4421), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4423), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4425), 1, + sym_raw_string_begin, + ACTIONS(5267), 1, + anon_sym_DASH_DASH, + ACTIONS(5269), 1, anon_sym_DASH2, - ACTIONS(5374), 1, - anon_sym_PLUS2, - ACTIONS(5390), 1, - sym__newline, - STATE(2393), 1, - aux_sym_shebang_repeat1, - STATE(2446), 1, + ACTIONS(5273), 1, + sym_val_date, + ACTIONS(5287), 1, + anon_sym_LPAREN, + STATE(2449), 1, sym_comment, - ACTIONS(5358), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5364), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5370), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5372), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5376), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5366), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5351), 8, + STATE(2452), 1, + aux_sym_ctrl_do_repeat1, + STATE(3515), 1, + sym__flag, + STATE(5610), 1, + sym__inter_single_quotes, + STATE(5632), 1, + sym__inter_double_quotes, + STATE(5706), 1, + sym__val_number_decimal, + STATE(7494), 1, + sym_val_bool, + STATE(7806), 1, + sym__val_range, + STATE(7809), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3828), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4393), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4419), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3453), 2, + sym_short_flag, + sym_long_flag, + STATE(5419), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5289), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(5189), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2830), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -289136,30 +290596,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(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, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + ACTIONS(2832), 9, + anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -289168,50 +290606,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, - [58355] = 18, - ACTIONS(251), 1, + [55464] = 19, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1286), 1, + ACTIONS(3140), 1, anon_sym_DQUOTE, - ACTIONS(1290), 1, + ACTIONS(3146), 1, sym_raw_string_begin, - ACTIONS(4952), 1, + ACTIONS(4992), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, + ACTIONS(4994), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5309), 1, - anon_sym_DASH_DASH, - STATE(2447), 1, + ACTIONS(5429), 1, + sym__newline, + ACTIONS(5433), 1, + anon_sym_RBRACK, + STATE(2450), 1, sym_comment, - STATE(2449), 1, - aux_sym_decl_def_repeat1, - STATE(2999), 1, - sym_long_flag, - STATE(3792), 1, + STATE(2527), 1, + aux_sym_shebang_repeat1, + STATE(2594), 1, + aux_sym_command_list_repeat1, + STATE(3721), 1, sym__val_number_decimal, - STATE(4121), 1, - sym_val_string, - STATE(4146), 1, - sym_cmd_identifier, - STATE(6592), 1, + STATE(6725), 1, sym__command_name, - ACTIONS(1288), 2, + STATE(7127), 1, + sym_cmd_identifier, + STATE(7129), 1, + sym_val_string, + ACTIONS(3142), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4950), 2, + ACTIONS(4990), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3668), 2, + STATE(5291), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4940), 6, + ACTIONS(5425), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4942), 34, + ACTIONS(5427), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -289246,284 +290686,207 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [58451] = 18, - ACTIONS(251), 1, + [55563] = 34, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1286), 1, + ACTIONS(1272), 1, anon_sym_DQUOTE, - ACTIONS(1290), 1, + ACTIONS(1276), 1, sym_raw_string_begin, - ACTIONS(4952), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5309), 1, - anon_sym_DASH_DASH, - STATE(2448), 1, - sym_comment, - STATE(2450), 1, - aux_sym_decl_def_repeat1, - STATE(2999), 1, - sym_long_flag, - STATE(3792), 1, - sym__val_number_decimal, - STATE(4121), 1, - sym_val_string, - STATE(4146), 1, - sym_cmd_identifier, - STATE(6607), 1, - sym__command_name, - ACTIONS(1288), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4950), 2, + ACTIONS(3538), 1, + aux_sym_unquoted_token1, + ACTIONS(3830), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3832), 1, aux_sym__val_number_decimal_token2, - STATE(3668), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4940), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(4942), 34, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [58547] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1286), 1, - anon_sym_DQUOTE, - ACTIONS(1290), 1, - sym_raw_string_begin, - ACTIONS(4952), 1, + ACTIONS(3834), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, + ACTIONS(3836), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5309), 1, + ACTIONS(4091), 1, + anon_sym_DOT_DOT, + ACTIONS(4111), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4113), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5267), 1, anon_sym_DASH_DASH, - STATE(2449), 1, + ACTIONS(5269), 1, + anon_sym_DASH2, + ACTIONS(5273), 1, + sym_val_date, + ACTIONS(5421), 1, + anon_sym_LPAREN, + ACTIONS(5423), 1, + anon_sym_DOLLAR, + STATE(2451), 1, sym_comment, - STATE(2814), 1, - aux_sym_decl_def_repeat1, - STATE(2999), 1, - sym_long_flag, - STATE(3792), 1, + STATE(3253), 1, + aux_sym_ctrl_do_repeat1, + STATE(3515), 1, + sym__flag, + STATE(5297), 1, + sym__inter_single_quotes, + STATE(5300), 1, + sym__inter_double_quotes, + STATE(5713), 1, sym__val_number_decimal, - STATE(4121), 1, - sym_val_string, - STATE(4146), 1, - sym_cmd_identifier, - STATE(6608), 1, - sym__command_name, - ACTIONS(1288), 2, + STATE(7494), 1, + sym_val_bool, + STATE(7649), 1, + sym__unquoted_anonymous_prefix, + STATE(7833), 1, + sym__val_range, + ACTIONS(1274), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4950), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3668), 2, + ACTIONS(3828), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4093), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(3453), 2, + sym_short_flag, + sym_long_flag, + STATE(3793), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4940), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(4942), 34, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [58643] = 18, - ACTIONS(251), 1, + ACTIONS(5271), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(5157), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2830), 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(2832), 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, + [55692] = 34, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1286), 1, - anon_sym_DQUOTE, - ACTIONS(1290), 1, - sym_raw_string_begin, - ACTIONS(4952), 1, + ACTIONS(3506), 1, + aux_sym_unquoted_token1, + ACTIONS(3830), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3832), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3834), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, + ACTIONS(3836), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5309), 1, + ACTIONS(4387), 1, + anon_sym_DOLLAR, + ACTIONS(4391), 1, + anon_sym_DOT_DOT, + ACTIONS(4417), 1, + anon_sym_DQUOTE, + ACTIONS(4421), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4423), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4425), 1, + sym_raw_string_begin, + ACTIONS(5267), 1, anon_sym_DASH_DASH, - STATE(2450), 1, + ACTIONS(5269), 1, + anon_sym_DASH2, + ACTIONS(5273), 1, + sym_val_date, + ACTIONS(5287), 1, + anon_sym_LPAREN, + STATE(2452), 1, sym_comment, - STATE(2814), 1, - aux_sym_decl_def_repeat1, - STATE(2999), 1, - sym_long_flag, - STATE(3792), 1, + STATE(3253), 1, + aux_sym_ctrl_do_repeat1, + STATE(3515), 1, + sym__flag, + STATE(5610), 1, + sym__inter_single_quotes, + STATE(5632), 1, + sym__inter_double_quotes, + STATE(5706), 1, sym__val_number_decimal, - STATE(4121), 1, - sym_val_string, - STATE(4146), 1, - sym_cmd_identifier, - STATE(6615), 1, - sym__command_name, - ACTIONS(1288), 2, + STATE(7494), 1, + sym_val_bool, + STATE(7806), 1, + sym__val_range, + STATE(7809), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3828), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4393), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4419), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4950), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3668), 2, + STATE(3453), 2, + sym_short_flag, + sym_long_flag, + STATE(5419), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4940), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(4942), 34, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [58739] = 17, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5355), 1, - sym__newline, - ACTIONS(5360), 1, - anon_sym_DASH2, - ACTIONS(5374), 1, - anon_sym_PLUS2, - ACTIONS(5378), 1, - anon_sym_bit_DASHand2, - STATE(2370), 1, - aux_sym_shebang_repeat1, - STATE(2451), 1, + ACTIONS(5289), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(5262), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2830), 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(2832), 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, + [55821] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2453), 1, sym_comment, - ACTIONS(5358), 2, + ACTIONS(2310), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5364), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5368), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5370), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5372), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5376), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5362), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5366), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5315), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -289532,7 +290895,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(5313), 24, + ACTIONS(2312), 45, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -289543,10 +290908,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_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -289557,12 +290941,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, - [58833] = 4, - ACTIONS(251), 1, + [55890] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2452), 1, + STATE(2454), 1, sym_comment, - ACTIONS(2035), 13, + ACTIONS(2445), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -289576,7 +290960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2041), 43, + ACTIONS(2447), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -289595,6 +290979,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -289620,12 +291006,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, - [58900] = 4, - ACTIONS(251), 1, + [55959] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2453), 1, + STATE(2455), 1, sym_comment, - ACTIONS(1917), 13, + ACTIONS(1961), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -289639,7 +291025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1919), 43, + ACTIONS(1963), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -289658,6 +291044,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -289683,12 +291071,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, - [58967] = 4, - ACTIONS(251), 1, + [56028] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2454), 1, + STATE(2456), 1, sym_comment, - ACTIONS(5118), 13, + ACTIONS(1885), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -289702,7 +291090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5116), 43, + ACTIONS(1887), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -289721,6 +291109,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -289746,176 +291136,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, - [59034] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5420), 1, - anon_sym_DOLLAR, - ACTIONS(5422), 1, - anon_sym_LPAREN2, - ACTIONS(5512), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5514), 1, - aux_sym__immediate_decimal_token5, - STATE(2455), 1, - sym_comment, - STATE(3125), 1, - sym__immediate_decimal, - ACTIONS(1612), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5510), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3124), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1604), 45, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - 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, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [59115] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5516), 1, - anon_sym_DOT2, - STATE(2665), 1, - sym_path, - STATE(2456), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(953), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(955), 47, - sym_raw_string_begin, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - 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, - [59186] = 13, - ACTIONS(251), 1, + [56097] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5521), 1, - anon_sym_DASH2, - ACTIONS(5533), 1, - anon_sym_PLUS2, STATE(2457), 1, sym_comment, - ACTIONS(5519), 2, + ACTIONS(2338), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5525), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5529), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5531), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5535), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5523), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5527), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5259), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -289924,7 +291155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5257), 28, + ACTIONS(2340), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -289937,11 +291168,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_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -289953,12 +291201,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, - [59271] = 4, - ACTIONS(251), 1, + [56166] = 4, + ACTIONS(247), 1, anon_sym_POUND, STATE(2458), 1, sym_comment, - ACTIONS(5271), 13, + ACTIONS(2344), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -289972,7 +291220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5269), 43, + ACTIONS(2346), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -289991,6 +291239,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -290016,12 +291266,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, - [59338] = 4, - ACTIONS(251), 1, + [56235] = 4, + ACTIONS(247), 1, anon_sym_POUND, STATE(2459), 1, sym_comment, - ACTIONS(2324), 13, + ACTIONS(5233), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -290035,7 +291285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2326), 43, + ACTIONS(5231), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -290054,6 +291304,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -290079,12 +291331,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, - [59405] = 4, - ACTIONS(251), 1, + [56304] = 4, + ACTIONS(247), 1, anon_sym_POUND, STATE(2460), 1, sym_comment, - ACTIONS(2328), 13, + ACTIONS(2318), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -290098,7 +291350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2330), 43, + ACTIONS(2320), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -290117,6 +291369,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -290142,12 +291396,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, - [59472] = 4, - ACTIONS(251), 1, + [56373] = 4, + ACTIONS(247), 1, anon_sym_POUND, STATE(2461), 1, sym_comment, - ACTIONS(1855), 13, + ACTIONS(2389), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -290161,7 +291415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1857), 43, + ACTIONS(2391), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -290180,6 +291434,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -290205,12 +291461,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, - [59539] = 4, - ACTIONS(251), 1, + [56442] = 4, + ACTIONS(247), 1, anon_sym_POUND, STATE(2462), 1, sym_comment, - ACTIONS(5118), 13, + ACTIONS(2393), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -290224,7 +291480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5116), 43, + ACTIONS(2395), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -290243,6 +291499,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -290268,12 +291526,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, - [59606] = 4, - ACTIONS(251), 1, + [56511] = 4, + ACTIONS(247), 1, anon_sym_POUND, STATE(2463), 1, sym_comment, - ACTIONS(5259), 13, + ACTIONS(5006), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -290287,7 +291545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5257), 43, + ACTIONS(5008), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -290306,6 +291564,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -290331,12 +291591,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, - [59673] = 4, - ACTIONS(251), 1, + [56580] = 10, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(5435), 1, + anon_sym_DASH2, + ACTIONS(5443), 1, + anon_sym_PLUS2, STATE(2464), 1, sym_comment, - ACTIONS(2414), 13, + ACTIONS(5437), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5439), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5441), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5445), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5213), 10, + anon_sym_GT2, + 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(5211), 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_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [56661] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2465), 1, + sym_comment, + ACTIONS(1905), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -290350,7 +291681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2416), 43, + ACTIONS(1907), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -290369,6 +291700,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -290394,40 +291727,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, - [59740] = 13, - ACTIONS(251), 1, + [56730] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5537), 1, - anon_sym_DOLLAR, - ACTIONS(5539), 1, - anon_sym_LPAREN2, - ACTIONS(5541), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5543), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5545), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5547), 1, - aux_sym__immediate_decimal_token5, - STATE(2465), 1, + STATE(2466), 1, sym_comment, - STATE(3061), 1, - sym__immediate_decimal, - STATE(3135), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1461), 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, + ACTIONS(4962), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290436,28 +291746,44 @@ 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(1475), 28, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(4960), 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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -290466,16 +291792,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, - [59825] = 4, - ACTIONS(251), 1, + [56799] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2466), 1, + STATE(2467), 1, sym_comment, - ACTIONS(5118), 13, - anon_sym_GT2, + ACTIONS(5437), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(5439), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5441), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5213), 11, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -290485,7 +291818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5116), 43, + ACTIONS(5211), 41, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -290504,6 +291837,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -290512,10 +291847,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -290529,52 +291860,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [59892] = 5, - ACTIONS(3), 1, + [56874] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5473), 1, - aux_sym__immediate_decimal_token2, - STATE(2467), 1, + ACTIONS(5419), 1, + anon_sym_DOT2, + STATE(2468), 1, sym_comment, - ACTIONS(1552), 7, + STATE(2536), 1, + aux_sym_cell_path_repeat1, + STATE(2576), 1, + sym_path, + STATE(2651), 1, + sym_cell_path, + ACTIONS(1666), 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1668), 48, sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1550), 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + 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, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, 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, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + [56951] = 19, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1272), 1, + anon_sym_DQUOTE, + ACTIONS(1276), 1, + sym_raw_string_begin, + ACTIONS(3444), 1, + anon_sym_COLON2, + ACTIONS(4992), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4994), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5417), 1, + anon_sym_DASH_DASH, + STATE(2469), 1, + sym_comment, + STATE(2520), 1, + aux_sym_decl_def_repeat1, + STATE(3039), 1, + sym_long_flag, + STATE(3741), 1, + sym__val_number_decimal, + STATE(4089), 1, + sym_val_string, + STATE(4154), 1, + sym_cmd_identifier, + STATE(6554), 1, + sym__command_name, + ACTIONS(1274), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4990), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3793), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4980), 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(4982), 34, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [57050] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5435), 1, + anon_sym_DASH2, + ACTIONS(5443), 1, + anon_sym_PLUS2, + STATE(2470), 1, + sym_comment, + ACTIONS(5437), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5439), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5441), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5445), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5447), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5449), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5213), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290583,6 +292047,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(5211), 34, + 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_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -290591,14 +292082,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_token2, - [59961] = 4, - ACTIONS(251), 1, + [57135] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2468), 1, + STATE(2471), 1, sym_comment, - ACTIONS(1941), 13, + ACTIONS(4962), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -290612,7 +292101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1943), 43, + ACTIONS(4960), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -290631,6 +292120,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -290656,52 +292147,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, - [60028] = 5, - ACTIONS(3), 1, + [57204] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5549), 1, - aux_sym__immediate_decimal_token2, - STATE(2469), 1, + STATE(2472), 1, sym_comment, - ACTIONS(1682), 7, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1680), 48, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - 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, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(5439), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5213), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290710,6 +292169,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(5211), 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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -290718,14 +292213,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_token2, - [60097] = 4, - ACTIONS(251), 1, + [57275] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2470), 1, + STATE(2473), 1, sym_comment, - ACTIONS(2378), 13, + ACTIONS(4962), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -290739,7 +292232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2380), 43, + ACTIONS(4960), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -290758,6 +292251,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -290783,97 +292278,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, - [60164] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5420), 1, - anon_sym_DOLLAR, - ACTIONS(5422), 1, - anon_sym_LPAREN2, - ACTIONS(5512), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5514), 1, - aux_sym__immediate_decimal_token5, - STATE(2471), 1, - sym_comment, - STATE(3115), 1, - sym__immediate_decimal, - ACTIONS(1510), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5510), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3114), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1500), 45, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - 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, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [60245] = 9, - ACTIONS(251), 1, + [57344] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5521), 1, - anon_sym_DASH2, - ACTIONS(5533), 1, - anon_sym_PLUS2, - STATE(2472), 1, + STATE(2474), 1, sym_comment, - ACTIONS(5525), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5529), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5531), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5259), 10, + ACTIONS(2421), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290882,7 +292297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5257), 38, + ACTIONS(2423), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -290895,11 +292310,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_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -290908,6 +292326,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -290921,12 +292343,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, - [60322] = 4, - ACTIONS(251), 1, + [57413] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2473), 1, + STATE(2475), 1, sym_comment, - ACTIONS(5118), 13, + ACTIONS(5237), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -290940,7 +292362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5116), 43, + ACTIONS(5235), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -290959,6 +292381,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -290984,12 +292408,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, - [60389] = 4, - ACTIONS(251), 1, + [57482] = 17, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2474), 1, + ACTIONS(5435), 1, + anon_sym_DASH2, + ACTIONS(5443), 1, + anon_sym_PLUS2, + ACTIONS(5455), 1, + anon_sym_bit_DASHand2, + ACTIONS(5457), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5459), 1, + anon_sym_bit_DASHor2, + STATE(2476), 1, + sym_comment, + ACTIONS(5437), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5439), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5441), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5445), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5447), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5453), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5449), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5451), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5213), 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(5211), 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, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [57577] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2477), 1, sym_comment, - ACTIONS(2336), 13, + ACTIONS(4962), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -291003,7 +292505,7 @@ 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), 43, + ACTIONS(4960), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -291022,6 +292524,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -291047,12 +292551,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, - [60456] = 4, - ACTIONS(251), 1, + [57646] = 18, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2475), 1, + ACTIONS(5435), 1, + anon_sym_DASH2, + ACTIONS(5443), 1, + anon_sym_PLUS2, + ACTIONS(5455), 1, + anon_sym_bit_DASHand2, + ACTIONS(5457), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5459), 1, + anon_sym_bit_DASHor2, + ACTIONS(5461), 1, + anon_sym_and2, + STATE(2478), 1, + sym_comment, + ACTIONS(5437), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5439), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5441), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5445), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5447), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5453), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5449), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5451), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5213), 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(5211), 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, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [57743] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2479), 1, sym_comment, - ACTIONS(1965), 13, + ACTIONS(4962), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -291066,7 +292649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1967), 43, + ACTIONS(4960), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -291085,6 +292668,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -291110,44 +292695,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, - [60523] = 14, - ACTIONS(251), 1, + [57812] = 19, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5521), 1, + ACTIONS(5435), 1, anon_sym_DASH2, - ACTIONS(5533), 1, + ACTIONS(5443), 1, anon_sym_PLUS2, - STATE(2476), 1, + ACTIONS(5455), 1, + anon_sym_bit_DASHand2, + ACTIONS(5457), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5459), 1, + anon_sym_bit_DASHor2, + ACTIONS(5461), 1, + anon_sym_and2, + ACTIONS(5463), 1, + anon_sym_xor2, + STATE(2480), 1, sym_comment, - ACTIONS(5519), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5525), 2, + ACTIONS(5437), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5529), 2, + ACTIONS(5439), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5531), 2, + ACTIONS(5441), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5535), 2, + ACTIONS(5445), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5551), 2, + ACTIONS(5447), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5453), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5523), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5527), 4, + ACTIONS(5449), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5259), 8, + ACTIONS(5451), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5213), 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(5211), 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_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [57911] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5419), 1, + anon_sym_DOT2, + STATE(2481), 1, + sym_comment, + STATE(2536), 1, + aux_sym_cell_path_repeat1, + STATE(2576), 1, + sym_path, + STATE(2624), 1, + sym_cell_path, + ACTIONS(1676), 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1678), 48, + sym_raw_string_begin, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + 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_STAR2, + 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, + [57988] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2482), 1, + sym_comment, + ACTIONS(1806), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -291156,7 +292863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5257), 26, + ACTIONS(1814), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -291169,9 +292876,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_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -291183,12 +292909,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, - [60610] = 4, - ACTIONS(251), 1, + [58057] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2477), 1, + STATE(2483), 1, sym_comment, - ACTIONS(2342), 13, + ACTIONS(4962), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -291202,7 +292928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2344), 43, + ACTIONS(4960), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -291221,6 +292947,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -291246,12 +292974,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, - [60677] = 4, - ACTIONS(251), 1, + [58126] = 13, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2478), 1, + ACTIONS(5435), 1, + anon_sym_DASH2, + ACTIONS(5443), 1, + anon_sym_PLUS2, + STATE(2484), 1, sym_comment, - ACTIONS(2346), 13, + ACTIONS(5437), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5439), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5441), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5445), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5447), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5449), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5451), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5213), 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(5211), 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [58213] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2485), 1, + sym_comment, + ACTIONS(4962), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -291265,7 +293067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2348), 43, + ACTIONS(4960), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -291284,6 +293086,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -291309,12 +293113,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, - [60744] = 4, - ACTIONS(251), 1, + [58282] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2479), 1, + STATE(2486), 1, sym_comment, - ACTIONS(1969), 13, + ACTIONS(5213), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -291328,7 +293132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1971), 43, + ACTIONS(5211), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -291347,6 +293151,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -291372,12 +293178,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, - [60811] = 4, - ACTIONS(251), 1, + [58351] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2480), 1, + STATE(2487), 1, sym_comment, - ACTIONS(5118), 13, + ACTIONS(4962), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -291391,7 +293197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5116), 43, + ACTIONS(4960), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -291410,6 +293216,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -291435,12 +293243,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, - [60878] = 4, - ACTIONS(251), 1, + [58420] = 9, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2481), 1, + ACTIONS(5435), 1, + anon_sym_DASH2, + ACTIONS(5443), 1, + anon_sym_PLUS2, + STATE(2488), 1, sym_comment, - ACTIONS(1905), 13, + ACTIONS(5437), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5439), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5441), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5213), 10, + anon_sym_GT2, + 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(5211), 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, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [58499] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2489), 1, + sym_comment, + ACTIONS(4962), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -291454,7 +293332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1907), 43, + ACTIONS(4960), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -291473,6 +293351,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -291498,46 +293378,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, - [60945] = 15, - ACTIONS(251), 1, + [58568] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5521), 1, + ACTIONS(5435), 1, anon_sym_DASH2, - ACTIONS(5533), 1, + ACTIONS(5443), 1, anon_sym_PLUS2, - ACTIONS(5553), 1, - anon_sym_bit_DASHand2, - STATE(2482), 1, + STATE(2490), 1, sym_comment, - ACTIONS(5519), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5525), 2, + ACTIONS(5437), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5529), 2, + ACTIONS(5439), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5531), 2, + ACTIONS(5441), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5535), 2, + ACTIONS(5445), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5551), 2, + ACTIONS(5447), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5453), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5523), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5527), 4, + ACTIONS(5449), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5259), 8, + ACTIONS(5451), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5213), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -291546,7 +293426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5257), 25, + ACTIONS(5211), 26, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -291562,6 +293442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -291572,12 +293453,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, - [61034] = 4, - ACTIONS(251), 1, + [58657] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2483), 1, + STATE(2491), 1, sym_comment, - ACTIONS(2350), 13, + ACTIONS(4962), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -291591,7 +293472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2352), 43, + ACTIONS(4960), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -291610,6 +293491,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -291635,17 +293518,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, - [61101] = 4, - ACTIONS(251), 1, + [58726] = 15, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2484), 1, + ACTIONS(5435), 1, + anon_sym_DASH2, + ACTIONS(5443), 1, + anon_sym_PLUS2, + ACTIONS(5455), 1, + anon_sym_bit_DASHand2, + STATE(2492), 1, sym_comment, - ACTIONS(2354), 13, - anon_sym_GT2, + ACTIONS(5437), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5439), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5441), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5445), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5447), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5453), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5449), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5451), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5213), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -291654,7 +293568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2356), 43, + ACTIONS(5211), 25, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -291667,27 +293581,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -291698,12 +293594,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, - [61168] = 4, - ACTIONS(251), 1, + [58817] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2485), 1, + STATE(2493), 1, sym_comment, - ACTIONS(1983), 13, + ACTIONS(4962), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -291717,7 +293613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1985), 43, + ACTIONS(4960), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -291736,6 +293632,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -291761,17 +293659,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, - [61235] = 4, - ACTIONS(251), 1, + [58886] = 16, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2486), 1, + ACTIONS(5435), 1, + anon_sym_DASH2, + ACTIONS(5443), 1, + anon_sym_PLUS2, + ACTIONS(5455), 1, + anon_sym_bit_DASHand2, + ACTIONS(5457), 1, + anon_sym_bit_DASHxor2, + STATE(2494), 1, sym_comment, - ACTIONS(2358), 13, - anon_sym_GT2, + ACTIONS(5437), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5439), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5441), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5445), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5447), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5453), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5449), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5451), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5213), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -291780,7 +293711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2360), 43, + ACTIONS(5211), 24, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -291793,28 +293724,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -291824,12 +293736,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, - [61302] = 4, - ACTIONS(251), 1, + [58979] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2487), 1, + STATE(2495), 1, sym_comment, - ACTIONS(2362), 13, + ACTIONS(4962), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -291843,7 +293755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2364), 43, + ACTIONS(4960), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -291862,6 +293774,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -291887,12 +293801,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, - [61369] = 4, - ACTIONS(251), 1, + [59048] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2488), 1, + STATE(2496), 1, sym_comment, - ACTIONS(2382), 13, + ACTIONS(2374), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -291906,7 +293820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2384), 43, + ACTIONS(2376), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -291925,6 +293839,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -291950,12 +293866,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, - [61436] = 4, - ACTIONS(251), 1, + [59117] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2489), 1, + STATE(2497), 1, sym_comment, - ACTIONS(5255), 13, + ACTIONS(2030), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -291969,7 +293885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5253), 43, + ACTIONS(2036), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -291988,6 +293904,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -292013,12 +293931,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, - [61503] = 4, - ACTIONS(251), 1, + [59186] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2490), 1, + STATE(2498), 1, sym_comment, - ACTIONS(5237), 13, + ACTIONS(1977), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -292032,7 +293950,7 @@ 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), 43, + ACTIONS(1983), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -292051,6 +293969,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -292076,88 +293996,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, - [61570] = 11, - ACTIONS(3), 1, + [59255] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5555), 1, - anon_sym_LPAREN2, - ACTIONS(5557), 1, - anon_sym_DOT_DOT2, - ACTIONS(5561), 1, - sym_filesize_unit, - ACTIONS(5563), 1, - sym_duration_unit, - ACTIONS(5565), 1, - aux_sym__unquoted_in_list_token2, - STATE(2491), 1, - sym_comment, - STATE(7428), 1, - sym__expr_parenthesized_immediate, - ACTIONS(1650), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5559), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1638), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - 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, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [61651] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2492), 1, + STATE(2499), 1, sym_comment, - ACTIONS(5156), 5, + ACTIONS(2164), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5160), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -292166,7 +294015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5154), 20, + ACTIONS(2166), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -292179,21 +294028,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_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - 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(5158), 23, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -292211,12 +294053,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [61722] = 4, - ACTIONS(251), 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, + [59324] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2493), 1, + STATE(2500), 1, sym_comment, - ACTIONS(5118), 13, + ACTIONS(1985), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -292230,7 +294080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5116), 43, + ACTIONS(1991), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -292249,6 +294099,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -292274,48 +294126,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, - [61789] = 16, - ACTIONS(251), 1, + [59393] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5521), 1, - anon_sym_DASH2, - ACTIONS(5533), 1, - anon_sym_PLUS2, - ACTIONS(5553), 1, - anon_sym_bit_DASHand2, - ACTIONS(5567), 1, - anon_sym_bit_DASHxor2, - STATE(2494), 1, + STATE(2501), 1, sym_comment, - ACTIONS(5519), 2, + ACTIONS(1816), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5525), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5529), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5531), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5535), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5551), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5523), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5527), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5259), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -292324,7 +294145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5257), 24, + ACTIONS(1824), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -292337,9 +294158,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_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -292349,12 +294191,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, - [61880] = 4, - ACTIONS(251), 1, + [59462] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2495), 1, + STATE(2502), 1, sym_comment, - ACTIONS(2043), 13, + ACTIONS(5199), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -292368,7 +294210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2049), 43, + ACTIONS(5197), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -292387,6 +294229,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -292412,12 +294256,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, - [61947] = 4, - ACTIONS(251), 1, + [59531] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2496), 1, + STATE(2503), 1, sym_comment, - ACTIONS(5118), 13, + ACTIONS(2437), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -292431,7 +294275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5116), 43, + ACTIONS(2439), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -292450,6 +294294,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -292475,12 +294321,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, - [62014] = 4, - ACTIONS(251), 1, + [59600] = 13, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2497), 1, + ACTIONS(1457), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2634), 1, + anon_sym_DOLLAR, + ACTIONS(5465), 1, + anon_sym_LPAREN2, + ACTIONS(5467), 1, + anon_sym_DOT, + ACTIONS(5471), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5473), 1, + aux_sym__immediate_decimal_token5, + STATE(2504), 1, sym_comment, - ACTIONS(2386), 13, + STATE(2707), 1, + sym__immediate_decimal, + ACTIONS(1455), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5469), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2846), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1441), 45, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [59687] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2505), 1, + sym_comment, + ACTIONS(2364), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -292494,7 +294414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2388), 43, + ACTIONS(2366), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -292513,6 +294433,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -292538,12 +294460,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, - [62081] = 4, - ACTIONS(251), 1, + [59756] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2498), 1, + STATE(2506), 1, sym_comment, - ACTIONS(2128), 13, + ACTIONS(2413), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -292557,7 +294479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2132), 43, + ACTIONS(2415), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -292576,6 +294498,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -292601,12 +294525,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, - [62148] = 4, - ACTIONS(251), 1, + [59825] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2499), 1, + STATE(2507), 1, sym_comment, - ACTIONS(1802), 13, + ACTIONS(2453), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -292620,7 +294544,7 @@ 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(2455), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -292639,6 +294563,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -292664,12 +294590,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, - [62215] = 4, - ACTIONS(251), 1, + [59894] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2500), 1, + STATE(2508), 1, sym_comment, - ACTIONS(2446), 13, + ACTIONS(2425), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -292683,7 +294609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2448), 43, + ACTIONS(2427), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -292702,6 +294628,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -292727,12 +294655,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, - [62282] = 4, - ACTIONS(251), 1, + [59963] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2501), 1, + STATE(2509), 1, sym_comment, - ACTIONS(2148), 13, + ACTIONS(2433), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -292746,7 +294674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2150), 43, + ACTIONS(2435), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -292765,6 +294693,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -292790,12 +294720,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, - [62349] = 4, - ACTIONS(251), 1, + [60032] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2502), 1, + STATE(2510), 1, sym_comment, - ACTIONS(2019), 13, + ACTIONS(2449), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -292809,7 +294739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2025), 43, + ACTIONS(2451), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -292828,6 +294758,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -292853,12 +294785,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, - [62416] = 4, - ACTIONS(251), 1, + [60101] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2503), 1, + STATE(2511), 1, sym_comment, - ACTIONS(2027), 13, + ACTIONS(2465), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -292872,7 +294804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2033), 43, + ACTIONS(2467), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -292891,6 +294823,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -292916,12 +294850,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, - [62483] = 4, - ACTIONS(251), 1, + [60170] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2504), 1, + STATE(2512), 1, sym_comment, - ACTIONS(5156), 13, + ACTIONS(2481), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -292935,7 +294869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5158), 43, + ACTIONS(2483), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -292954,6 +294888,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -292979,12 +294915,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, - [62550] = 4, - ACTIONS(251), 1, + [60239] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2505), 1, + STATE(2513), 1, sym_comment, - ACTIONS(2220), 13, + ACTIONS(2485), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -292998,7 +294934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2222), 43, + ACTIONS(2487), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -293017,6 +294953,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -293042,30 +294980,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, - [62617] = 10, - ACTIONS(251), 1, + [60308] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5521), 1, - anon_sym_DASH2, - ACTIONS(5533), 1, - anon_sym_PLUS2, - STATE(2506), 1, + STATE(2514), 1, sym_comment, - ACTIONS(5525), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5529), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5531), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5535), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5259), 10, + ACTIONS(2190), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -293074,7 +294999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5257), 36, + ACTIONS(2194), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -293087,11 +295012,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_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -293100,6 +295028,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -293111,12 +295045,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, - [62696] = 4, - ACTIONS(251), 1, + [60377] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2507), 1, + STATE(2515), 1, sym_comment, - ACTIONS(2430), 13, + ACTIONS(1639), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -293130,7 +295064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2432), 43, + ACTIONS(1651), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -293149,6 +295083,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -293174,12 +295110,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, - [62763] = 4, - ACTIONS(251), 1, + [60446] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2508), 1, + STATE(2516), 1, sym_comment, - ACTIONS(2172), 13, + ACTIONS(2461), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -293193,7 +295129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2176), 43, + ACTIONS(2463), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -293212,6 +295148,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -293237,12 +295175,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, - [62830] = 4, - ACTIONS(251), 1, + [60515] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2509), 1, + STATE(2517), 1, sym_comment, - ACTIONS(5118), 13, + ACTIONS(1839), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -293256,7 +295194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5116), 43, + ACTIONS(1841), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -293275,6 +295213,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -293300,12 +295240,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, - [62897] = 4, - ACTIONS(251), 1, + [60584] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2510), 1, + STATE(2518), 1, sym_comment, - ACTIONS(2370), 13, + ACTIONS(2489), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -293319,7 +295259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2372), 43, + ACTIONS(2491), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -293338,6 +295278,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -293363,12 +295305,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, - [62964] = 4, - ACTIONS(251), 1, + [60653] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2511), 1, + STATE(2519), 1, sym_comment, - ACTIONS(2374), 13, + ACTIONS(4962), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -293382,7 +295324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2376), 43, + ACTIONS(4960), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -293401,6 +295343,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -293426,17 +295370,483 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63031] = 4, - ACTIONS(251), 1, + [60722] = 18, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2512), 1, + ACTIONS(1272), 1, + anon_sym_DQUOTE, + ACTIONS(1276), 1, + sym_raw_string_begin, + ACTIONS(4992), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4994), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5417), 1, + anon_sym_DASH_DASH, + STATE(2520), 1, sym_comment, - ACTIONS(2489), 13, - anon_sym_GT2, + STATE(2876), 1, + aux_sym_decl_def_repeat1, + STATE(3039), 1, + sym_long_flag, + STATE(3741), 1, + sym__val_number_decimal, + STATE(4089), 1, + sym_val_string, + STATE(4154), 1, + sym_cmd_identifier, + STATE(6573), 1, + sym__command_name, + ACTIONS(1274), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4990), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3793), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4980), 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(4982), 34, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [60818] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5475), 1, + anon_sym_DOT2, + STATE(2521), 1, + sym_comment, + STATE(2552), 1, + aux_sym_cell_path_repeat1, + STATE(2650), 1, + sym_path, + STATE(2752), 1, + sym_cell_path, + ACTIONS(929), 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(931), 47, + sym_raw_string_begin, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + 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, + [60894] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5477), 1, + anon_sym_DOT, + ACTIONS(5479), 1, + aux_sym__immediate_decimal_token2, + STATE(2522), 1, + sym_comment, + ACTIONS(1514), 7, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1512), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [60966] = 18, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1272), 1, + anon_sym_DQUOTE, + ACTIONS(1276), 1, + sym_raw_string_begin, + ACTIONS(4992), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4994), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5417), 1, + anon_sym_DASH_DASH, + STATE(2523), 1, + sym_comment, + STATE(2876), 1, + aux_sym_decl_def_repeat1, + STATE(3039), 1, + sym_long_flag, + STATE(3741), 1, + sym__val_number_decimal, + STATE(4089), 1, + sym_val_string, + STATE(4154), 1, + sym_cmd_identifier, + STATE(6299), 1, + sym__command_name, + ACTIONS(1274), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4990), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3793), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4980), 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(4982), 34, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [61062] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5481), 1, + anon_sym_DOT2, + STATE(2576), 1, + sym_path, + STATE(2524), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(935), 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(937), 48, + sym_raw_string_begin, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + 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_STAR2, + 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, + [61134] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5484), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5486), 1, + aux_sym__immediate_decimal_token2, + STATE(2525), 1, + sym_comment, + ACTIONS(1504), 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_token34, + 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(1506), 44, + sym_raw_string_begin, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + 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, + [61206] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1457), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5488), 1, + anon_sym_DOLLAR, + ACTIONS(5490), 1, + anon_sym_LPAREN2, + ACTIONS(5494), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5496), 1, + aux_sym__immediate_decimal_token5, + STATE(2526), 1, + sym_comment, + STATE(2927), 1, + sym__immediate_decimal, + ACTIONS(1455), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5492), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3096), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1441), 45, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -293445,42 +295855,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(2491), 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -293489,24 +295863,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63098] = 7, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [61290] = 18, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2513), 1, + ACTIONS(3140), 1, + anon_sym_DQUOTE, + ACTIONS(3146), 1, + sym_raw_string_begin, + ACTIONS(4992), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4994), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5429), 1, + sym__newline, + STATE(2527), 1, sym_comment, - ACTIONS(5525), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5529), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5531), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5259), 11, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, + STATE(2591), 1, + aux_sym_command_list_repeat1, + STATE(2940), 1, + aux_sym_shebang_repeat1, + STATE(3721), 1, + sym__val_number_decimal, + STATE(7127), 1, + sym_cmd_identifier, + STATE(7129), 1, + sym_val_string, + STATE(7241), 1, + sym__command_name, + ACTIONS(3142), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4990), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(5291), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5425), 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5427), 34, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [61386] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1562), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5488), 1, + anon_sym_DOLLAR, + ACTIONS(5490), 1, + anon_sym_LPAREN2, + ACTIONS(5494), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5496), 1, + aux_sym__immediate_decimal_token5, + STATE(2528), 1, + sym_comment, + STATE(2931), 1, + sym__immediate_decimal, + ACTIONS(1560), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5492), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3089), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1558), 45, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -293515,38 +296005,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(5257), 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -293555,26 +296013,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63171] = 5, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [61470] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5465), 1, - aux_sym__immediate_decimal_token2, - STATE(2514), 1, + ACTIONS(5475), 1, + anon_sym_DOT2, + STATE(2529), 1, sym_comment, - ACTIONS(1550), 10, + STATE(2552), 1, + aux_sym_cell_path_repeat1, + STATE(2650), 1, + sym_path, + STATE(2753), 1, + sym_cell_path, + ACTIONS(1666), 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_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1552), 45, + ACTIONS(1668), 47, + sym_raw_string_begin, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + 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, + [61546] = 18, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1272), 1, + anon_sym_DQUOTE, + ACTIONS(1276), 1, sym_raw_string_begin, + ACTIONS(4992), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4994), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5417), 1, + anon_sym_DASH_DASH, + STATE(2530), 1, + sym_comment, + STATE(2876), 1, + aux_sym_decl_def_repeat1, + STATE(3039), 1, + sym_long_flag, + STATE(3741), 1, + sym__val_number_decimal, + STATE(4089), 1, + sym_val_string, + STATE(4154), 1, + sym_cmd_identifier, + STATE(6362), 1, + sym__command_name, + ACTIONS(1274), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4990), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3793), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4980), 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(4982), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293609,27 +296160,132 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + [61642] = 18, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1272), 1, + anon_sym_DQUOTE, + ACTIONS(1276), 1, + sym_raw_string_begin, + ACTIONS(4992), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4994), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5417), 1, anon_sym_DASH_DASH, + STATE(2530), 1, + aux_sym_decl_def_repeat1, + STATE(2531), 1, + sym_comment, + STATE(3039), 1, + sym_long_flag, + STATE(3741), 1, + sym__val_number_decimal, + STATE(4089), 1, + sym_val_string, + STATE(4154), 1, + sym_cmd_identifier, + STATE(6243), 1, + sym__command_name, + ACTIONS(1274), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4990), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3793), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4980), 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(4982), 34, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [61738] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5498), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5500), 1, + aux_sym__immediate_decimal_token2, + STATE(2532), 1, + sym_comment, + ACTIONS(1506), 7, + sym_raw_string_begin, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1504), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [63240] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2515), 1, - sym_comment, - ACTIONS(2468), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -293638,42 +296294,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(2470), 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -293682,17 +296302,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, - [63307] = 4, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [61810] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2516), 1, + ACTIONS(5502), 1, + anon_sym_DOT, + ACTIONS(5504), 1, + aux_sym__immediate_decimal_token2, + STATE(2533), 1, sym_comment, - ACTIONS(1016), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1512), 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_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1514), 45, + sym_raw_string_begin, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + 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, + [61882] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2634), 1, + anon_sym_DOLLAR, + ACTIONS(5465), 1, + anon_sym_LPAREN2, + ACTIONS(5506), 1, + anon_sym_DOT, + ACTIONS(5510), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5512), 1, + aux_sym__immediate_decimal_token5, + STATE(2534), 1, + sym_comment, + STATE(2844), 1, + sym__immediate_decimal, + ACTIONS(1532), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5508), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2843), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1522), 45, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -293701,42 +296433,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(1012), 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -293745,99 +296441,500 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63374] = 4, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [61966] = 18, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2517), 1, + ACTIONS(1272), 1, + anon_sym_DQUOTE, + ACTIONS(1276), 1, + sym_raw_string_begin, + ACTIONS(4992), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4994), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5417), 1, + anon_sym_DASH_DASH, + STATE(2523), 1, + aux_sym_decl_def_repeat1, + STATE(2535), 1, sym_comment, - ACTIONS(5118), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(5116), 43, - ts_builtin_sym_end, + STATE(3039), 1, + sym_long_flag, + STATE(3741), 1, + sym__val_number_decimal, + STATE(4089), 1, + sym_val_string, + STATE(4154), 1, + sym_cmd_identifier, + STATE(6326), 1, + sym__command_name, + ACTIONS(1274), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4990), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3793), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4980), 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(4982), 34, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [62062] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5419), 1, + anon_sym_DOT2, + STATE(2524), 1, + aux_sym_cell_path_repeat1, + STATE(2536), 1, + sym_comment, + STATE(2576), 1, + sym_path, + ACTIONS(942), 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(944), 48, + sym_raw_string_begin, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [63441] = 12, - ACTIONS(251), 1, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + 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, + [62136] = 18, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3140), 1, + anon_sym_DQUOTE, + ACTIONS(3146), 1, + sym_raw_string_begin, + ACTIONS(4992), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4994), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5429), 1, + sym__newline, + STATE(2537), 1, + sym_comment, + STATE(2583), 1, + aux_sym_command_list_repeat1, + STATE(2940), 1, + aux_sym_shebang_repeat1, + STATE(3721), 1, + sym__val_number_decimal, + STATE(6706), 1, + sym__command_name, + STATE(7127), 1, + sym_cmd_identifier, + STATE(7129), 1, + sym_val_string, + ACTIONS(3142), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4990), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(5291), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5425), 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5427), 34, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [62232] = 18, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1272), 1, + anon_sym_DQUOTE, + ACTIONS(1276), 1, + sym_raw_string_begin, + ACTIONS(4992), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4994), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5417), 1, + anon_sym_DASH_DASH, + STATE(2520), 1, + aux_sym_decl_def_repeat1, + STATE(2538), 1, + sym_comment, + STATE(3039), 1, + sym_long_flag, + STATE(3741), 1, + sym__val_number_decimal, + STATE(4089), 1, + sym_val_string, + STATE(4154), 1, + sym_cmd_identifier, + STATE(6554), 1, + sym__command_name, + ACTIONS(1274), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4990), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3793), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4980), 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(4982), 34, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [62328] = 18, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1272), 1, + anon_sym_DQUOTE, + ACTIONS(1276), 1, + sym_raw_string_begin, + ACTIONS(4992), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4994), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5417), 1, + anon_sym_DASH_DASH, + STATE(2539), 1, + sym_comment, + STATE(2540), 1, + aux_sym_decl_def_repeat1, + STATE(3039), 1, + sym_long_flag, + STATE(3741), 1, + sym__val_number_decimal, + STATE(4089), 1, + sym_val_string, + STATE(4154), 1, + sym_cmd_identifier, + STATE(6572), 1, + sym__command_name, + ACTIONS(1274), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4990), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3793), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4980), 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(4982), 34, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [62424] = 18, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1272), 1, + anon_sym_DQUOTE, + ACTIONS(1276), 1, + sym_raw_string_begin, + ACTIONS(4992), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4994), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5417), 1, + anon_sym_DASH_DASH, + STATE(2540), 1, + sym_comment, + STATE(2876), 1, + aux_sym_decl_def_repeat1, + STATE(3039), 1, + sym_long_flag, + STATE(3741), 1, + sym__val_number_decimal, + STATE(4089), 1, + sym_val_string, + STATE(4154), 1, + sym_cmd_identifier, + STATE(6583), 1, + sym__command_name, + ACTIONS(1274), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4990), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3793), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4980), 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(4982), 34, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [62520] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5521), 1, - anon_sym_DASH2, - ACTIONS(5533), 1, - anon_sym_PLUS2, - STATE(2518), 1, + ACTIONS(1457), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(3850), 1, + anon_sym_DOLLAR, + ACTIONS(5514), 1, + anon_sym_LPAREN2, + ACTIONS(5516), 1, + anon_sym_DOT, + ACTIONS(5518), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5520), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5522), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5524), 1, + aux_sym__immediate_decimal_token5, + STATE(2541), 1, sym_comment, - ACTIONS(5519), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5525), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5529), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5531), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5535), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5527), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5259), 8, + STATE(2874), 1, + sym__immediate_decimal, + STATE(2912), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1441), 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, @@ -293846,31 +296943,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(5257), 32, - 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_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + aux_sym__unquoted_in_list_token1, + ACTIONS(1455), 28, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -293879,31 +296973,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63524] = 11, + [62608] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5475), 1, + anon_sym_DOT2, + STATE(2542), 1, + sym_comment, + STATE(2552), 1, + aux_sym_cell_path_repeat1, + STATE(2650), 1, + sym_path, + STATE(2756), 1, + sym_cell_path, + ACTIONS(1676), 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1678), 47, + sym_raw_string_begin, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + 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, + [62684] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2543), 1, + sym_comment, + ACTIONS(960), 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_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT2, + ACTIONS(962), 49, + sym_raw_string_begin, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + 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_STAR2, + 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, + [62751] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5420), 1, + ACTIONS(5488), 1, anon_sym_DOLLAR, - ACTIONS(5422), 1, + ACTIONS(5490), 1, anon_sym_LPAREN2, - ACTIONS(5512), 1, + ACTIONS(5528), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5514), 1, + ACTIONS(5530), 1, aux_sym__immediate_decimal_token5, - STATE(2519), 1, + STATE(2544), 1, sym_comment, - STATE(3122), 1, + STATE(3072), 1, sym__immediate_decimal, - ACTIONS(1626), 2, + ACTIONS(1582), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(5510), 2, + ACTIONS(5526), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3121), 2, + STATE(3070), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1624), 45, + ACTIONS(1580), 45, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -293949,341 +297174,117 @@ 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, - [63605] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2520), 1, - sym_comment, - ACTIONS(2452), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(2454), 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [63672] = 4, - ACTIONS(251), 1, + [62832] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2521), 1, + ACTIONS(5532), 1, + anon_sym_DOT2, + STATE(2650), 1, + sym_path, + STATE(2545), 2, sym_comment, - ACTIONS(2406), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(2408), 43, + aux_sym_cell_path_repeat1, + ACTIONS(935), 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(937), 47, + sym_raw_string_begin, 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [63739] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2522), 1, - sym_comment, - ACTIONS(2456), 13, - anon_sym_GT2, + anon_sym_LBRACK, anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(2458), 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [63806] = 13, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1540), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5537), 1, - anon_sym_DOLLAR, - ACTIONS(5539), 1, - anon_sym_LPAREN2, - ACTIONS(5541), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5543), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5545), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5547), 1, - aux_sym__immediate_decimal_token5, - STATE(2523), 1, - sym_comment, - STATE(3088), 1, - sym__immediate_decimal, - STATE(3148), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1536), 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(1538), 28, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [62903] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5535), 1, + aux_sym__immediate_decimal_token2, + STATE(2546), 1, + sym_comment, + ACTIONS(1620), 7, sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1618), 48, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + 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, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + 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, - [63891] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2524), 1, - sym_comment, - ACTIONS(2460), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(2462), 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [63958] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2525), 1, - sym_comment, - ACTIONS(5118), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -294292,42 +297293,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(5116), 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -294336,330 +297301,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [64025] = 5, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [62972] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2526), 1, + STATE(2547), 1, sym_comment, - ACTIONS(5529), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5259), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(5257), 41, - ts_builtin_sym_end, + ACTIONS(946), 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_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT2, + ACTIONS(948), 49, + sym_raw_string_begin, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [64094] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2527), 1, - sym_comment, - ACTIONS(2366), 13, - anon_sym_GT2, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(2368), 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [64161] = 4, - ACTIONS(251), 1, + 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, + [63039] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2528), 1, + STATE(2548), 1, sym_comment, - ACTIONS(2366), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(2368), 43, - ts_builtin_sym_end, + ACTIONS(956), 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_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT2, + ACTIONS(958), 49, + sym_raw_string_begin, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [64228] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2529), 1, - sym_comment, - ACTIONS(5118), 13, - anon_sym_GT2, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(5116), 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [64295] = 4, - ACTIONS(251), 1, + 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, + [63106] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2530), 1, + ACTIONS(5537), 1, + aux_sym__immediate_decimal_token2, + STATE(2549), 1, sym_comment, - ACTIONS(2390), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(2392), 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [64362] = 5, - ACTIONS(251), 1, + ACTIONS(1618), 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_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1620), 45, + sym_raw_string_begin, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + 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, + [63175] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5569), 1, + ACTIONS(5504), 1, aux_sym__immediate_decimal_token2, - STATE(2531), 1, + STATE(2550), 1, sym_comment, - ACTIONS(1680), 10, + ACTIONS(1512), 10, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, @@ -294670,7 +297511,7 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - ACTIONS(1682), 45, + ACTIONS(1514), 45, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -294716,278 +297557,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [64431] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2532), 1, - sym_comment, - ACTIONS(2394), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(2396), 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [64498] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2533), 1, - sym_comment, - ACTIONS(2398), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(2400), 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - 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(251), 1, - anon_sym_POUND, - STATE(2534), 1, - sym_comment, - ACTIONS(2224), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(2228), 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [64632] = 13, - ACTIONS(251), 1, + [63244] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3834), 1, + ACTIONS(5488), 1, anon_sym_DOLLAR, - ACTIONS(5404), 1, + ACTIONS(5490), 1, anon_sym_LPAREN2, - ACTIONS(5571), 1, - anon_sym_DOT, - ACTIONS(5573), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5575), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5577), 1, + ACTIONS(5528), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5579), 1, + ACTIONS(5530), 1, aux_sym__immediate_decimal_token5, - STATE(2535), 1, + STATE(2551), 1, sym_comment, - STATE(2884), 1, + STATE(3142), 1, sym__immediate_decimal, - STATE(2882), 2, + ACTIONS(1532), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5526), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3139), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1500), 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(1510), 28, - sym_raw_string_begin, + ACTIONS(1522), 45, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + 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, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + 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, - [64717] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2536), 1, - sym_comment, - ACTIONS(2410), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -294996,42 +297618,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(2412), 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -295040,157 +297626,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [64784] = 4, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [63325] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2537), 1, + ACTIONS(5475), 1, + anon_sym_DOT2, + STATE(2545), 1, + aux_sym_cell_path_repeat1, + STATE(2552), 1, sym_comment, - ACTIONS(2505), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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), 43, + STATE(2650), 1, + sym_path, + ACTIONS(942), 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(944), 47, + sym_raw_string_begin, 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [64851] = 4, - ACTIONS(251), 1, + anon_sym_LBRACK, + anon_sym_STAR2, + 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, + [63398] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2538), 1, + ACTIONS(5539), 1, + anon_sym_QMARK2, + STATE(2553), 1, sym_comment, - ACTIONS(2478), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(2480), 43, - ts_builtin_sym_end, + ACTIONS(950), 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_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT2, + ACTIONS(952), 48, + sym_raw_string_begin, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [64918] = 11, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + 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, + [63467] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5420), 1, + ACTIONS(5488), 1, anon_sym_DOLLAR, - ACTIONS(5422), 1, + ACTIONS(5490), 1, anon_sym_LPAREN2, - ACTIONS(5512), 1, + ACTIONS(5528), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5514), 1, + ACTIONS(5530), 1, aux_sym__immediate_decimal_token5, - STATE(2539), 1, + STATE(2554), 1, sym_comment, - STATE(3038), 1, + STATE(3078), 1, sym__immediate_decimal, - ACTIONS(1656), 2, + ACTIONS(1586), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(5510), 2, + ACTIONS(5526), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3123), 2, + STATE(3075), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1654), 45, + ACTIONS(1584), 45, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -295236,80 +297827,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, - [64999] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2540), 1, - sym_comment, - ACTIONS(2418), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(2420), 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [65066] = 4, - ACTIONS(251), 1, + [63548] = 11, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2541), 1, + ACTIONS(5488), 1, + anon_sym_DOLLAR, + ACTIONS(5490), 1, + anon_sym_LPAREN2, + ACTIONS(5528), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5530), 1, + aux_sym__immediate_decimal_token5, + STATE(2555), 1, sym_comment, - ACTIONS(1638), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + STATE(3088), 1, + sym__immediate_decimal, + ACTIONS(1590), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5526), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3079), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1588), 45, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -295318,42 +297888,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(1650), 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -295362,156 +297896,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65133] = 4, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [63629] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2542), 1, + ACTIONS(5541), 1, + anon_sym_QMARK2, + STATE(2556), 1, sym_comment, - ACTIONS(2422), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(2424), 43, - ts_builtin_sym_end, + ACTIONS(968), 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_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT2, + ACTIONS(970), 48, + sym_raw_string_begin, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [65200] = 17, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5521), 1, - anon_sym_DASH2, - ACTIONS(5533), 1, - anon_sym_PLUS2, - ACTIONS(5553), 1, - anon_sym_bit_DASHand2, - ACTIONS(5567), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5581), 1, - anon_sym_bit_DASHor2, - STATE(2543), 1, - sym_comment, - ACTIONS(5519), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5525), 2, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5529), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5531), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5535), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5551), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5523), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5527), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5259), 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(5257), 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, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [65293] = 4, - ACTIONS(251), 1, + 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, + [63698] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2544), 1, + ACTIONS(5479), 1, + aux_sym__immediate_decimal_token2, + STATE(2557), 1, sym_comment, - ACTIONS(2320), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1514), 7, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1512), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -295520,42 +298015,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(2322), 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -295564,61 +298023,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, - [65360] = 4, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [63767] = 13, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2545), 1, + ACTIONS(3850), 1, + anon_sym_DOLLAR, + ACTIONS(5514), 1, + anon_sym_LPAREN2, + ACTIONS(5543), 1, + anon_sym_DOT, + ACTIONS(5545), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5547), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5549), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5551), 1, + aux_sym__immediate_decimal_token5, + STATE(2558), 1, sym_comment, - ACTIONS(5118), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(5116), 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + STATE(2928), 1, + sym__immediate_decimal, + STATE(2958), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1522), 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(1532), 28, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -295627,52 +298097,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65427] = 18, - ACTIONS(251), 1, + [63852] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5521), 1, - anon_sym_DASH2, - ACTIONS(5533), 1, - anon_sym_PLUS2, + ACTIONS(1562), 1, + aux_sym__unquoted_in_list_token2, ACTIONS(5553), 1, - anon_sym_bit_DASHand2, - ACTIONS(5567), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5581), 1, - anon_sym_bit_DASHor2, - ACTIONS(5583), 1, - anon_sym_and2, - STATE(2546), 1, + anon_sym_DOLLAR, + ACTIONS(5555), 1, + anon_sym_LPAREN2, + ACTIONS(5557), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5559), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5561), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5563), 1, + aux_sym__immediate_decimal_token5, + STATE(2559), 1, sym_comment, - ACTIONS(5519), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5525), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5529), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5531), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5535), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5551), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5523), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5527), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5259), 8, + STATE(3124), 1, + sym__immediate_decimal, + STATE(3183), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1558), 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, @@ -295681,21 +298139,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(5257), 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, - anon_sym_xor2, - anon_sym_or2, + aux_sym__unquoted_in_list_token1, + ACTIONS(1560), 28, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -295704,17 +298169,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, - [65522] = 4, - ACTIONS(251), 1, + [63937] = 11, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2547), 1, + ACTIONS(5565), 1, + anon_sym_LPAREN2, + ACTIONS(5567), 1, + anon_sym_DOT_DOT2, + ACTIONS(5571), 1, + sym_filesize_unit, + ACTIONS(5573), 1, + sym_duration_unit, + ACTIONS(5575), 1, + aux_sym__unquoted_in_list_token2, + STATE(2560), 1, sym_comment, - ACTIONS(2501), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + STATE(7434), 1, + sym__expr_parenthesized_immediate, + ACTIONS(1651), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5569), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1639), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -295723,42 +298230,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(2503), 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -295767,17 +298238,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, - [65589] = 4, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [64018] = 13, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2548), 1, + ACTIONS(1457), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5553), 1, + anon_sym_DOLLAR, + ACTIONS(5555), 1, + anon_sym_LPAREN2, + ACTIONS(5557), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5559), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5561), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5563), 1, + aux_sym__immediate_decimal_token5, + STATE(2561), 1, sym_comment, - ACTIONS(5118), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + STATE(3111), 1, + sym__immediate_decimal, + STATE(3175), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1441), 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, @@ -295786,42 +298281,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(5116), 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + aux_sym__unquoted_in_list_token1, + ACTIONS(1455), 28, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -295830,12 +298311,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, - [65656] = 4, - ACTIONS(251), 1, + [64103] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2549), 1, + STATE(2562), 1, sym_comment, - ACTIONS(972), 7, + ACTIONS(964), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, @@ -295843,7 +298324,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, anon_sym_DOT2, - ACTIONS(974), 49, + ACTIONS(966), 49, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -295893,54 +298374,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [65723] = 19, - ACTIONS(251), 1, + [64170] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5521), 1, - anon_sym_DASH2, - ACTIONS(5533), 1, - anon_sym_PLUS2, ACTIONS(5553), 1, - anon_sym_bit_DASHand2, - ACTIONS(5567), 1, - anon_sym_bit_DASHxor2, + anon_sym_DOLLAR, + ACTIONS(5555), 1, + anon_sym_LPAREN2, + ACTIONS(5577), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5579), 1, + aux_sym__immediate_decimal_token3, ACTIONS(5581), 1, - anon_sym_bit_DASHor2, + aux_sym__immediate_decimal_token4, ACTIONS(5583), 1, - anon_sym_and2, - ACTIONS(5585), 1, - anon_sym_xor2, - STATE(2550), 1, + aux_sym__immediate_decimal_token5, + STATE(2563), 1, sym_comment, - ACTIONS(5519), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5525), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5529), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5531), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5535), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5551), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5523), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5527), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5259), 8, + STATE(3204), 1, + sym__immediate_decimal, + STATE(3179), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1588), 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, @@ -295949,20 +298414,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(5257), 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_or2, + aux_sym__unquoted_in_list_token1, + ACTIONS(1590), 28, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -295971,206 +298444,388 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65820] = 4, - ACTIONS(251), 1, + [64252] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2551), 1, + ACTIONS(5585), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5587), 1, + aux_sym__immediate_decimal_token2, + STATE(2564), 1, sym_comment, - 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_token34, - aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(978), 49, + ACTIONS(1504), 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(1506), 35, sym_raw_string_begin, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - 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_STAR2, - anon_sym_QMARK2, - aux_sym__val_number_decimal_token1, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [65887] = 4, - ACTIONS(251), 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, + [64322] = 12, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2552), 1, + ACTIONS(5553), 1, + anon_sym_DOLLAR, + ACTIONS(5555), 1, + anon_sym_LPAREN2, + ACTIONS(5577), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5579), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5581), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5583), 1, + aux_sym__immediate_decimal_token5, + STATE(2565), 1, sym_comment, - ACTIONS(984), 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_token34, - aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(986), 49, + STATE(3161), 1, + sym__immediate_decimal, + STATE(3181), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1580), 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(1582), 28, sym_raw_string_begin, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - 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_STAR2, - anon_sym_QMARK2, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [64404] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5553), 1, + anon_sym_DOLLAR, + ACTIONS(5555), 1, + anon_sym_LPAREN2, + ACTIONS(5577), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5579), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5581), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5583), 1, + aux_sym__immediate_decimal_token5, + STATE(2566), 1, + sym_comment, + STATE(3168), 1, + sym__immediate_decimal, + STATE(3162), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1584), 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(1586), 28, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [65954] = 4, - ACTIONS(251), 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, + [64486] = 12, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2553), 1, + ACTIONS(5553), 1, + anon_sym_DOLLAR, + ACTIONS(5555), 1, + anon_sym_LPAREN2, + ACTIONS(5577), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5579), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5581), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5583), 1, + aux_sym__immediate_decimal_token5, + STATE(2567), 1, sym_comment, - 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_token34, - aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(982), 49, + STATE(3202), 1, + sym__immediate_decimal, + STATE(3153), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1522), 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(1532), 28, sym_raw_string_begin, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - 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_STAR2, - anon_sym_QMARK2, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [64568] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5589), 1, + anon_sym_DOT, + ACTIONS(5591), 1, + aux_sym__immediate_decimal_token2, + STATE(2568), 1, + sym_comment, + ACTIONS(1512), 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(1514), 35, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [66021] = 4, - ACTIONS(251), 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, + [64638] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2554), 1, + STATE(2569), 1, sym_comment, - ACTIONS(2332), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1514), 7, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1512), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -296179,42 +298834,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(2334), 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -296223,17 +298842,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, - [66088] = 4, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [64704] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2555), 1, + STATE(2570), 1, sym_comment, - ACTIONS(1937), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1506), 7, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1504), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -296242,42 +298896,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(1939), 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -296286,17 +298904,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, - [66155] = 4, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [64770] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2556), 1, + STATE(2571), 1, sym_comment, - ACTIONS(1949), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1620), 7, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1618), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -296305,42 +298958,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(1951), 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -296349,17 +298966,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, - [66222] = 4, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [64836] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2557), 1, + STATE(2572), 1, sym_comment, - ACTIONS(1953), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1691), 7, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1689), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -296368,42 +299020,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(1955), 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -296412,23 +299028,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, - [66289] = 5, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [64902] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5587), 1, - anon_sym_QMARK2, - STATE(2558), 1, + ACTIONS(1272), 1, + anon_sym_DQUOTE, + ACTIONS(1276), 1, + sym_raw_string_begin, + ACTIONS(3442), 1, + anon_sym_COLON2, + ACTIONS(4992), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4994), 1, + aux_sym__val_number_decimal_token4, + STATE(2573), 1, sym_comment, - ACTIONS(966), 7, + STATE(3741), 1, + sym__val_number_decimal, + STATE(4089), 1, + sym_val_string, + STATE(4154), 1, + sym_cmd_identifier, + STATE(7522), 1, + sym__command_name, + ACTIONS(1274), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4990), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3793), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4980), 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_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(968), 48, - sym_raw_string_begin, + ACTIONS(4982), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -296463,36 +299104,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, 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_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + [64992] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1272), 1, + anon_sym_DQUOTE, + ACTIONS(1276), 1, + sym_raw_string_begin, + ACTIONS(3442), 1, + anon_sym_COLON2, + ACTIONS(4992), 1, aux_sym__val_number_decimal_token3, + ACTIONS(4994), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + STATE(2574), 1, + sym_comment, + STATE(3741), 1, + sym__val_number_decimal, + STATE(4089), 1, + sym_val_string, + STATE(4154), 1, + sym_cmd_identifier, + STATE(6186), 1, + sym__command_name, + ACTIONS(1274), 2, sym__str_single_quotes, sym__str_back_ticks, - [66358] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5589), 1, - anon_sym_QMARK2, - STATE(2559), 1, - sym_comment, - ACTIONS(960), 7, + ACTIONS(4990), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3793), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4980), 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_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(962), 48, - sym_raw_string_begin, + ACTIONS(4982), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -296527,38 +299178,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, 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_STAR2, - 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, - [66427] = 7, - ACTIONS(251), 1, + [65082] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5402), 1, - anon_sym_DOT2, - STATE(2456), 1, - aux_sym_cell_path_repeat1, - STATE(2560), 1, + STATE(2575), 1, sym_comment, - STATE(2665), 1, - sym_path, - ACTIONS(949), 6, + ACTIONS(956), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(951), 47, + anon_sym_DOT2, + ACTIONS(958), 48, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -296599,6 +299232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_STAR2, + anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -296606,138 +299240,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [66500] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2561), 1, - sym_comment, - ACTIONS(2426), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(2428), 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [66567] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2562), 1, - sym_comment, - ACTIONS(1812), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(1820), 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [66634] = 4, - ACTIONS(251), 1, + [65148] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2563), 1, + STATE(2576), 1, sym_comment, - ACTIONS(992), 7, + ACTIONS(982), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, @@ -296745,7 +299253,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, anon_sym_DOT2, - ACTIONS(994), 48, + ACTIONS(984), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -296794,108 +299302,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [66700] = 12, - ACTIONS(251), 1, + [65214] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - anon_sym_DOLLAR, - ACTIONS(5539), 1, - anon_sym_LPAREN2, - ACTIONS(5591), 1, - aux_sym__immediate_decimal_token1, ACTIONS(5593), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5595), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5597), 1, - aux_sym__immediate_decimal_token5, - STATE(2564), 1, + anon_sym_DOT2, + STATE(2577), 1, sym_comment, - STATE(3143), 1, - sym__immediate_decimal, - STATE(3142), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1624), 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(1626), 28, + STATE(2664), 1, + aux_sym_cell_path_repeat1, + STATE(2759), 1, + sym_path, + STATE(2891), 1, + sym_cell_path, + ACTIONS(1668), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1666), 47, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + 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, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + 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, - [66782] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5537), 1, - anon_sym_DOLLAR, - ACTIONS(5539), 1, - anon_sym_LPAREN2, - ACTIONS(5591), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5593), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5595), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5597), 1, - aux_sym__immediate_decimal_token5, - STATE(2565), 1, - sym_comment, - STATE(3145), 1, - sym__immediate_decimal, - STATE(3144), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1654), 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, @@ -296904,28 +299359,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(1656), 28, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, @@ -296934,95 +299367,224 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [66864] = 12, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [65288] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - anon_sym_DOLLAR, - ACTIONS(5539), 1, - anon_sym_LPAREN2, - ACTIONS(5591), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5593), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5595), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5597), 1, - aux_sym__immediate_decimal_token5, - STATE(2566), 1, + ACTIONS(1272), 1, + anon_sym_DQUOTE, + ACTIONS(1276), 1, + sym_raw_string_begin, + ACTIONS(3442), 1, + anon_sym_COLON2, + ACTIONS(4992), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4994), 1, + aux_sym__val_number_decimal_token4, + STATE(2578), 1, sym_comment, - STATE(3147), 1, - sym__immediate_decimal, - STATE(3146), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1604), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, + STATE(3741), 1, + sym__val_number_decimal, + STATE(4089), 1, + sym_val_string, + STATE(4154), 1, + sym_cmd_identifier, + STATE(5791), 1, + sym__command_name, + ACTIONS(1274), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4990), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3793), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4980), 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(4982), 34, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [65378] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2579), 1, + sym_comment, + ACTIONS(960), 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_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT2, + ACTIONS(962), 48, + sym_raw_string_begin, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + 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_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(1612), 28, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [65444] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2580), 1, + sym_comment, + ACTIONS(964), 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_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT2, + ACTIONS(966), 48, sym_raw_string_begin, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, + anon_sym_STAR2, + 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, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [66946] = 8, + [65510] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5599), 1, + ACTIONS(5593), 1, anon_sym_DOT2, - STATE(2567), 1, + STATE(2581), 1, sym_comment, - STATE(2653), 1, + STATE(2664), 1, aux_sym_cell_path_repeat1, - STATE(2793), 1, + STATE(2759), 1, sym_path, - STATE(2826), 1, + STATE(2858), 1, sym_cell_path, - ACTIONS(1699), 4, + ACTIONS(1678), 4, sym_raw_string_begin, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1697), 47, + ACTIONS(1676), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -297070,46 +299632,24 @@ 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, - [67020] = 16, - ACTIONS(251), 1, + [65584] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3420), 1, - anon_sym_COLON2, - ACTIONS(4952), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5605), 1, - anon_sym_DQUOTE, - ACTIONS(5609), 1, - sym_raw_string_begin, - STATE(1657), 1, - sym__command_name, - STATE(2568), 1, + ACTIONS(5595), 1, + anon_sym_QMARK2, + STATE(2582), 1, sym_comment, - STATE(2631), 1, - sym_cmd_identifier, - STATE(2634), 1, - sym_val_string, - STATE(3763), 1, - sym__val_number_decimal, - ACTIONS(4950), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(5607), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2624), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5601), 6, + ACTIONS(950), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5603), 34, + anon_sym_DOT2, + ACTIONS(952), 47, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297144,22 +299684,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [67110] = 4, - ACTIONS(251), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + 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, + [65652] = 16, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2569), 1, + ACTIONS(3140), 1, + anon_sym_DQUOTE, + ACTIONS(3146), 1, + sym_raw_string_begin, + ACTIONS(4992), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4994), 1, + aux_sym__val_number_decimal_token4, + STATE(2583), 1, sym_comment, - ACTIONS(980), 7, + STATE(2592), 1, + aux_sym_command_list_repeat1, + STATE(3721), 1, + sym__val_number_decimal, + STATE(6841), 1, + sym__command_name, + STATE(7127), 1, + sym_cmd_identifier, + STATE(7129), 1, + sym_val_string, + ACTIONS(3142), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4990), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(5291), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5425), 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_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(982), 48, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5427), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297194,32 +299769,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - 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, - [67176] = 4, + [65742] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2570), 1, + ACTIONS(5597), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5599), 1, + aux_sym__immediate_decimal_token2, + STATE(2584), 1, sym_comment, - ACTIONS(1552), 7, + ACTIONS(1695), 5, sym_raw_string_begin, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - ACTIONS(1550), 48, + ACTIONS(1693), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -297268,14 +299833,12 @@ 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, - [67242] = 5, - ACTIONS(251), 1, + [65812] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5611), 1, - anon_sym_QMARK2, - STATE(2571), 1, + STATE(2585), 1, sym_comment, - ACTIONS(966), 7, + ACTIONS(978), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, @@ -297283,9 +299846,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, anon_sym_DOT2, - ACTIONS(968), 47, + ACTIONS(980), 48, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297323,6 +299885,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -297331,14 +299895,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [67310] = 5, - ACTIONS(251), 1, + [65878] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5613), 1, - anon_sym_QMARK2, - STATE(2572), 1, + STATE(2586), 1, sym_comment, - ACTIONS(960), 7, + ACTIONS(974), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, @@ -297346,9 +299908,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, anon_sym_DOT2, - ACTIONS(962), 47, + ACTIONS(976), 48, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297386,6 +299947,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -297394,24 +299957,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [67378] = 4, - ACTIONS(251), 1, + [65944] = 16, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2573), 1, + ACTIONS(3442), 1, + anon_sym_COLON2, + ACTIONS(4992), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4994), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5605), 1, + anon_sym_DQUOTE, + ACTIONS(5609), 1, + sym_raw_string_begin, + STATE(1683), 1, + sym__command_name, + STATE(2587), 1, sym_comment, - ACTIONS(1550), 10, + STATE(2636), 1, + sym_cmd_identifier, + STATE(2639), 1, + sym_val_string, + STATE(3661), 1, + sym__val_number_decimal, + ACTIONS(4990), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(5607), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2610), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5601), 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_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1552), 45, - sym_raw_string_begin, + ACTIONS(5603), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297446,40 +300031,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, 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, - [67444] = 9, - ACTIONS(251), 1, + [66034] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4622), 1, - anon_sym_DOT_DOT2, - ACTIONS(5615), 1, - sym_filesize_unit, - ACTIONS(5617), 1, - sym_duration_unit, - ACTIONS(5619), 1, - aux_sym_unquoted_token2, - STATE(2574), 1, + STATE(2588), 1, sym_comment, - ACTIONS(4624), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1638), 6, + ACTIONS(1512), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1650), 43, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1514), 45, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -297516,219 +300084,100 @@ 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_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, - [67520] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2575), 1, - sym_comment, - ACTIONS(1544), 7, - sym_raw_string_begin, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1542), 48, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, 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, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [67586] = 6, - ACTIONS(3), 1, + [66100] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5621), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5623), 1, - aux_sym__immediate_decimal_token2, - STATE(2576), 1, - sym_comment, - ACTIONS(1713), 5, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1711), 48, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, + ACTIONS(4608), 1, anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - 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, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [67656] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5625), 1, - anon_sym_DOT, - ACTIONS(5627), 1, - aux_sym__immediate_decimal_token2, - STATE(2577), 1, + ACTIONS(5611), 1, + sym_filesize_unit, + ACTIONS(5613), 1, + sym_duration_unit, + ACTIONS(5615), 1, + aux_sym_unquoted_token2, + STATE(2589), 1, sym_comment, - ACTIONS(1757), 5, - sym_raw_string_begin, - anon_sym_LPAREN2, + ACTIONS(4610), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1755), 48, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + ACTIONS(1639), 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1651), 43, + sym_raw_string_begin, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + 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, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [67726] = 4, - ACTIONS(251), 1, + [66176] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2578), 1, + STATE(2590), 1, sym_comment, - ACTIONS(976), 7, + ACTIONS(1504), 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_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(978), 48, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1506), 45, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297763,11 +300212,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - anon_sym_QMARK2, + 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, @@ -297775,46 +300222,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [67792] = 16, - ACTIONS(251), 1, + [66242] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1286), 1, + ACTIONS(3140), 1, anon_sym_DQUOTE, - ACTIONS(1290), 1, + ACTIONS(3146), 1, sym_raw_string_begin, - ACTIONS(3420), 1, - anon_sym_COLON2, - ACTIONS(4952), 1, + ACTIONS(4992), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, + ACTIONS(4994), 1, aux_sym__val_number_decimal_token4, - STATE(2579), 1, + STATE(2591), 1, sym_comment, - STATE(3792), 1, + STATE(2592), 1, + aux_sym_command_list_repeat1, + STATE(3721), 1, sym__val_number_decimal, - STATE(4121), 1, - sym_val_string, - STATE(4146), 1, - sym_cmd_identifier, - STATE(7518), 1, + STATE(6877), 1, sym__command_name, - ACTIONS(1288), 2, + STATE(7127), 1, + sym_cmd_identifier, + STATE(7129), 1, + sym_val_string, + ACTIONS(3142), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4950), 2, + ACTIONS(4990), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3668), 2, + STATE(5291), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4940), 6, + ACTIONS(5425), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4942), 34, + ACTIONS(5427), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297849,46 +300296,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [67882] = 16, - ACTIONS(251), 1, + [66332] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1286), 1, - anon_sym_DQUOTE, - ACTIONS(1290), 1, - sym_raw_string_begin, - ACTIONS(3420), 1, - anon_sym_COLON2, - ACTIONS(4952), 1, + ACTIONS(5626), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, + ACTIONS(5629), 1, aux_sym__val_number_decimal_token4, - STATE(2580), 1, - sym_comment, - STATE(3792), 1, + ACTIONS(5632), 1, + anon_sym_DQUOTE, + ACTIONS(5638), 1, + sym_raw_string_begin, + STATE(3721), 1, sym__val_number_decimal, - STATE(4121), 1, - sym_val_string, - STATE(4146), 1, + STATE(7127), 1, sym_cmd_identifier, - STATE(6186), 1, + STATE(7129), 1, + sym_val_string, + STATE(7362), 1, sym__command_name, - ACTIONS(1288), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4950), 2, + ACTIONS(5623), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3668), 2, + ACTIONS(5635), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2592), 2, + sym_comment, + aux_sym_command_list_repeat1, + STATE(5291), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4940), 6, + ACTIONS(5617), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4942), 34, + ACTIONS(5620), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297923,12 +300369,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [67972] = 4, - ACTIONS(251), 1, + [66420] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2581), 1, + STATE(2593), 1, sym_comment, - ACTIONS(1680), 10, + ACTIONS(1618), 10, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, @@ -297939,7 +300385,7 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - ACTIONS(1682), 45, + ACTIONS(1620), 45, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -297985,45 +300431,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [68038] = 15, - ACTIONS(251), 1, + [66486] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5638), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5641), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5644), 1, + ACTIONS(3140), 1, anon_sym_DQUOTE, - ACTIONS(5650), 1, + ACTIONS(3146), 1, sym_raw_string_begin, - STATE(3765), 1, + ACTIONS(4992), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4994), 1, + aux_sym__val_number_decimal_token4, + STATE(2592), 1, + aux_sym_command_list_repeat1, + STATE(2594), 1, + sym_comment, + STATE(3721), 1, sym__val_number_decimal, - STATE(7043), 1, - sym_val_string, - STATE(7283), 1, + STATE(7127), 1, sym_cmd_identifier, - STATE(7329), 1, + STATE(7129), 1, + sym_val_string, + STATE(7259), 1, sym__command_name, - ACTIONS(5635), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(5647), 2, + ACTIONS(3142), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2582), 2, - sym_comment, - aux_sym_command_list_repeat1, - STATE(5195), 2, + ACTIONS(4990), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(5291), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5629), 6, + ACTIONS(5425), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5632), 34, + ACTIONS(5427), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298058,46 +300505,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [68126] = 16, - ACTIONS(251), 1, + [66576] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3132), 1, - anon_sym_DQUOTE, - ACTIONS(3138), 1, - sym_raw_string_begin, - ACTIONS(4952), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, - aux_sym__val_number_decimal_token4, - STATE(2582), 1, - aux_sym_command_list_repeat1, - STATE(2583), 1, + STATE(2595), 1, sym_comment, - STATE(3765), 1, - sym__val_number_decimal, - STATE(7043), 1, - sym_val_string, - STATE(7283), 1, - sym_cmd_identifier, - STATE(7297), 1, - sym__command_name, - ACTIONS(3134), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4950), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(5195), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5293), 6, + ACTIONS(1689), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5295), 34, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1691), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298132,20 +300557,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [68216] = 4, + 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, + [66642] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2584), 1, + ACTIONS(5641), 1, + anon_sym_DOT, + ACTIONS(5643), 1, + aux_sym__immediate_decimal_token2, + STATE(2596), 1, sym_comment, - ACTIONS(1682), 7, + ACTIONS(1703), 5, sym_raw_string_begin, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - ACTIONS(1680), 48, + ACTIONS(1701), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -298194,46 +300631,90 @@ 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, - [68282] = 16, - ACTIONS(251), 1, + [66712] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1286), 1, - anon_sym_DQUOTE, - ACTIONS(1290), 1, + ACTIONS(5593), 1, + anon_sym_DOT2, + STATE(2597), 1, + sym_comment, + STATE(2664), 1, + aux_sym_cell_path_repeat1, + STATE(2759), 1, + sym_path, + STATE(2854), 1, + sym_cell_path, + ACTIONS(931), 4, sym_raw_string_begin, - ACTIONS(3442), 1, - anon_sym_COLON2, - ACTIONS(4952), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(929), 47, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, aux_sym__val_number_decimal_token4, - STATE(2585), 1, - sym_comment, - STATE(3792), 1, - sym__val_number_decimal, - STATE(4121), 1, - sym_val_string, - STATE(4146), 1, - sym_cmd_identifier, - STATE(7518), 1, - sym__command_name, - ACTIONS(1288), 2, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4950), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3668), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4940), 6, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, + [66786] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5645), 1, + anon_sym_QMARK2, + STATE(2598), 1, + sym_comment, + ACTIONS(968), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4942), 34, + anon_sym_DOT2, + ACTIONS(970), 47, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298268,46 +300749,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [68372] = 16, - ACTIONS(251), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + 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, + [66854] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1286), 1, + ACTIONS(1272), 1, anon_sym_DQUOTE, - ACTIONS(1290), 1, + ACTIONS(1276), 1, sym_raw_string_begin, - ACTIONS(3442), 1, + ACTIONS(3444), 1, anon_sym_COLON2, - ACTIONS(4952), 1, + ACTIONS(4992), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, + ACTIONS(4994), 1, aux_sym__val_number_decimal_token4, - STATE(2586), 1, + STATE(2599), 1, sym_comment, - STATE(3792), 1, + STATE(3741), 1, sym__val_number_decimal, - STATE(4121), 1, + STATE(4089), 1, sym_val_string, - STATE(4146), 1, + STATE(4154), 1, sym_cmd_identifier, - STATE(6186), 1, + STATE(7522), 1, sym__command_name, - ACTIONS(1288), 2, + ACTIONS(1274), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4950), 2, + ACTIONS(4990), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3668), 2, + STATE(3793), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4940), 6, + ACTIONS(4980), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4942), 34, + ACTIONS(4982), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298342,46 +300834,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [68462] = 16, - ACTIONS(251), 1, + [66944] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1286), 1, + ACTIONS(1272), 1, anon_sym_DQUOTE, - ACTIONS(1290), 1, + ACTIONS(1276), 1, sym_raw_string_begin, - ACTIONS(3442), 1, + ACTIONS(3444), 1, anon_sym_COLON2, - ACTIONS(4952), 1, + ACTIONS(4992), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, + ACTIONS(4994), 1, aux_sym__val_number_decimal_token4, - STATE(2587), 1, + STATE(2600), 1, sym_comment, - STATE(3792), 1, + STATE(3741), 1, sym__val_number_decimal, - STATE(4121), 1, + STATE(4089), 1, sym_val_string, - STATE(4146), 1, + STATE(4154), 1, sym_cmd_identifier, - STATE(5852), 1, + STATE(6186), 1, sym__command_name, - ACTIONS(1288), 2, + ACTIONS(1274), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4950), 2, + ACTIONS(4990), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3668), 2, + STATE(3793), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4940), 6, + ACTIONS(4980), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4942), 34, + ACTIONS(4982), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298416,21 +300908,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [68552] = 4, - ACTIONS(251), 1, + [67034] = 16, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2588), 1, + ACTIONS(1272), 1, + anon_sym_DQUOTE, + ACTIONS(1276), 1, + sym_raw_string_begin, + ACTIONS(3444), 1, + anon_sym_COLON2, + ACTIONS(4992), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4994), 1, + aux_sym__val_number_decimal_token4, + STATE(2601), 1, sym_comment, - ACTIONS(996), 7, + STATE(3741), 1, + sym__val_number_decimal, + STATE(4089), 1, + sym_val_string, + STATE(4154), 1, + sym_cmd_identifier, + STATE(5791), 1, + sym__command_name, + ACTIONS(1274), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4990), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3793), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4980), 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_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(998), 48, - sym_raw_string_begin, + ACTIONS(4982), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298465,49 +300982,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, 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_STAR2, - 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, - [68618] = 16, - ACTIONS(251), 1, + [67124] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3442), 1, + ACTIONS(3444), 1, anon_sym_COLON2, - ACTIONS(4952), 1, + ACTIONS(4992), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, + ACTIONS(4994), 1, aux_sym__val_number_decimal_token4, ACTIONS(5605), 1, anon_sym_DQUOTE, ACTIONS(5609), 1, sym_raw_string_begin, - STATE(1657), 1, + STATE(1683), 1, sym__command_name, - STATE(2589), 1, + STATE(2602), 1, sym_comment, - STATE(2631), 1, + STATE(2636), 1, sym_cmd_identifier, - STATE(2634), 1, + STATE(2639), 1, sym_val_string, - STATE(3763), 1, + STATE(3661), 1, sym__val_number_decimal, - ACTIONS(4950), 2, + ACTIONS(4990), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, ACTIONS(5607), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2624), 2, + STATE(2610), 2, sym__raw_str, sym__str_double_quotes, ACTIONS(5601), 6, @@ -298552,46 +301056,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [68708] = 16, - ACTIONS(251), 1, + [67214] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3132), 1, + ACTIONS(3140), 1, anon_sym_DQUOTE, - ACTIONS(3138), 1, + ACTIONS(3146), 1, sym_raw_string_begin, - ACTIONS(4952), 1, + ACTIONS(4992), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, + ACTIONS(4994), 1, aux_sym__val_number_decimal_token4, - STATE(2582), 1, + STATE(2592), 1, aux_sym_command_list_repeat1, - STATE(2590), 1, + STATE(2603), 1, sym_comment, - STATE(3765), 1, + STATE(3721), 1, sym__val_number_decimal, - STATE(6932), 1, + STATE(6721), 1, sym__command_name, - STATE(7043), 1, - sym_val_string, - STATE(7283), 1, + STATE(7127), 1, sym_cmd_identifier, - ACTIONS(3134), 2, + STATE(7129), 1, + sym_val_string, + ACTIONS(3142), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4950), 2, + ACTIONS(4990), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(5195), 2, + STATE(5291), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5293), 6, + ACTIONS(5425), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5295), 34, + ACTIONS(5427), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298626,25 +301130,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [68798] = 8, - ACTIONS(3), 1, + [67304] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5599), 1, + STATE(2604), 1, + sym_comment, + ACTIONS(946), 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_token34, + aux_sym_cmd_identifier_token38, anon_sym_DOT2, - STATE(2591), 1, + ACTIONS(948), 48, + sym_raw_string_begin, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + 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, + [67370] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5643), 1, + aux_sym__immediate_decimal_token2, + STATE(2605), 1, sym_comment, - STATE(2653), 1, - aux_sym_cell_path_repeat1, - STATE(2793), 1, - sym_path, - STATE(2843), 1, - sym_cell_path, - ACTIONS(945), 4, + ACTIONS(1703), 5, sym_raw_string_begin, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(943), 47, + ACTIONS(1701), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -298692,97 +301253,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, - [68872] = 16, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3132), 1, - anon_sym_DQUOTE, - ACTIONS(3138), 1, - sym_raw_string_begin, - ACTIONS(4952), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, - aux_sym__val_number_decimal_token4, - STATE(2582), 1, - aux_sym_command_list_repeat1, - STATE(2592), 1, - sym_comment, - STATE(3765), 1, - sym__val_number_decimal, - STATE(6758), 1, - sym__command_name, - STATE(7043), 1, - sym_val_string, - STATE(7283), 1, - sym_cmd_identifier, - ACTIONS(3134), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4950), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(5195), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5293), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5295), 34, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [68962] = 4, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token2, + [67437] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2593), 1, + STATE(2606), 1, sym_comment, - ACTIONS(1542), 10, + ACTIONS(2441), 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_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1544), 45, + ACTIONS(2443), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -298818,126 +301302,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, 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, - [69028] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5537), 1, - anon_sym_DOLLAR, - ACTIONS(5539), 1, - anon_sym_LPAREN2, - ACTIONS(5591), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5593), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5595), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5597), 1, - aux_sym__immediate_decimal_token5, - STATE(2594), 1, - sym_comment, - STATE(3133), 1, - sym__immediate_decimal, - STATE(3132), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1500), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, 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(1510), 28, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [69110] = 16, - ACTIONS(251), 1, + [67502] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3132), 1, + ACTIONS(1272), 1, anon_sym_DQUOTE, - ACTIONS(3138), 1, + ACTIONS(1276), 1, sym_raw_string_begin, - ACTIONS(4952), 1, + ACTIONS(4992), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, + ACTIONS(4994), 1, aux_sym__val_number_decimal_token4, - STATE(2582), 1, - aux_sym_command_list_repeat1, - STATE(2595), 1, + STATE(2607), 1, sym_comment, - STATE(3765), 1, + STATE(3741), 1, sym__val_number_decimal, - STATE(6888), 1, - sym__command_name, - STATE(7043), 1, + STATE(4089), 1, sym_val_string, - STATE(7283), 1, + STATE(4154), 1, sym_cmd_identifier, - ACTIONS(3134), 2, + STATE(7674), 1, + sym__command_name, + ACTIONS(1274), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4950), 2, + ACTIONS(4990), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(5195), 2, + STATE(3793), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5293), 6, + ACTIONS(4980), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5295), 34, + ACTIONS(4982), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298972,22 +301387,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [69200] = 4, - ACTIONS(251), 1, + [67589] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2596), 1, + STATE(2608), 1, sym_comment, - ACTIONS(972), 7, + ACTIONS(2441), 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_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(974), 48, + ACTIONS(2443), 48, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -299025,8 +301438,9 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR2, - anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -299034,22 +301448,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [69266] = 4, - ACTIONS(251), 1, + [67654] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2597), 1, + STATE(2609), 1, sym_comment, - ACTIONS(984), 7, + ACTIONS(5647), 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_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(986), 48, + ACTIONS(5649), 48, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -299087,93 +301499,29 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR2, - 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, - [69332] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5653), 1, - anon_sym_DOT, - ACTIONS(5655), 1, - aux_sym__immediate_decimal_token2, - STATE(2598), 1, - sym_comment, - ACTIONS(1550), 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(1552), 35, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [69402] = 4, - ACTIONS(251), 1, + [67719] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2599), 1, + STATE(2610), 1, sym_comment, - ACTIONS(988), 7, + ACTIONS(956), 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_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(990), 48, + ACTIONS(958), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -299222,23 +301570,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [69468] = 4, - ACTIONS(251), 1, + [67784] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2600), 1, + STATE(2611), 1, sym_comment, - ACTIONS(1743), 10, + ACTIONS(2338), 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_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1745), 45, + ACTIONS(2340), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -299274,248 +301618,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, 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, - [69534] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5657), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5659), 1, - aux_sym__immediate_decimal_token2, - STATE(2601), 1, - sym_comment, - ACTIONS(1542), 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(1544), 35, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [69604] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2602), 1, - sym_comment, - ACTIONS(1745), 7, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1743), 48, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - 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, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [69670] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5599), 1, - anon_sym_DOT2, - STATE(2603), 1, - sym_comment, - STATE(2653), 1, - aux_sym_cell_path_repeat1, - STATE(2793), 1, - sym_path, - STATE(2835), 1, - sym_cell_path, - ACTIONS(1721), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1719), 47, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, 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, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [69744] = 16, - ACTIONS(251), 1, + [67849] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1286), 1, - anon_sym_DQUOTE, - ACTIONS(1290), 1, - sym_raw_string_begin, - ACTIONS(3420), 1, - anon_sym_COLON2, - ACTIONS(4952), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, - aux_sym__val_number_decimal_token4, - STATE(2604), 1, + STATE(2612), 1, sym_comment, - STATE(3792), 1, - sym__val_number_decimal, - STATE(4121), 1, - sym_val_string, - STATE(4146), 1, - sym_cmd_identifier, - STATE(5852), 1, - sym__command_name, - ACTIONS(1288), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4950), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3668), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4940), 6, + ACTIONS(5026), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4942), 34, + ACTIONS(5024), 48, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -299550,44 +301679,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [69834] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1286), 1, - anon_sym_DQUOTE, - ACTIONS(1290), 1, - sym_raw_string_begin, - ACTIONS(4952), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, aux_sym__val_number_decimal_token4, - STATE(2605), 1, - sym_comment, - STATE(3792), 1, - sym__val_number_decimal, - STATE(4121), 1, - sym_val_string, - STATE(4146), 1, - sym_cmd_identifier, - STATE(6223), 1, - sym__command_name, - ACTIONS(1288), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4950), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3668), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4940), 6, + [67914] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2613), 1, + sym_comment, + ACTIONS(960), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4942), 34, + ACTIONS(962), 48, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -299622,106 +301740,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [69921] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5661), 1, - aux_sym__immediate_decimal_token2, - STATE(2606), 1, - sym_comment, - ACTIONS(1680), 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(1682), 35, - sym_raw_string_begin, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + 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, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [69988] = 15, - ACTIONS(251), 1, + [67979] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4427), 1, + ACTIONS(1272), 1, anon_sym_DQUOTE, - ACTIONS(4435), 1, + ACTIONS(1276), 1, sym_raw_string_begin, - ACTIONS(4952), 1, + ACTIONS(4992), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, + ACTIONS(4994), 1, aux_sym__val_number_decimal_token4, - STATE(2607), 1, + STATE(2614), 1, sym_comment, - STATE(3787), 1, + STATE(3741), 1, sym__val_number_decimal, - STATE(5325), 1, - sym__command_name, - STATE(5782), 1, - sym_cmd_identifier, - STATE(5791), 1, + STATE(4089), 1, sym_val_string, - ACTIONS(4429), 2, + STATE(4154), 1, + sym_cmd_identifier, + STATE(6295), 1, + sym__command_name, + ACTIONS(1274), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4950), 2, + ACTIONS(4990), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(5380), 2, + STATE(3793), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5027), 6, + ACTIONS(4980), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5029), 34, + ACTIONS(4982), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -299756,22 +301825,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [70075] = 4, - ACTIONS(251), 1, + [68066] = 15, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2608), 1, + ACTIONS(1272), 1, + anon_sym_DQUOTE, + ACTIONS(1276), 1, + sym_raw_string_begin, + ACTIONS(4992), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4994), 1, + aux_sym__val_number_decimal_token4, + STATE(2615), 1, sym_comment, - ACTIONS(992), 7, + STATE(3741), 1, + sym__val_number_decimal, + STATE(4089), 1, + sym_val_string, + STATE(4154), 1, + sym_cmd_identifier, + STATE(7456), 1, + sym__command_name, + ACTIONS(1274), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4990), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3793), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4980), 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_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(994), 47, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(4982), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -299806,33 +301897,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - 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, - [70140] = 4, - ACTIONS(251), 1, + [68153] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2609), 1, + STATE(2616), 1, sym_comment, - ACTIONS(988), 7, + ACTIONS(5651), 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_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(990), 47, + ACTIONS(5653), 48, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -299870,6 +301948,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -299878,44 +301958,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [70205] = 15, - ACTIONS(251), 1, + [68218] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1286), 1, - anon_sym_DQUOTE, - ACTIONS(1290), 1, - sym_raw_string_begin, - ACTIONS(4952), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, - aux_sym__val_number_decimal_token4, - STATE(2610), 1, + ACTIONS(5655), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5657), 1, + aux_sym__immediate_decimal_token2, + STATE(2617), 1, sym_comment, - STATE(3792), 1, - sym__val_number_decimal, - STATE(4121), 1, - sym_val_string, - STATE(4146), 1, - sym_cmd_identifier, - STATE(7826), 1, - sym__command_name, - ACTIONS(1288), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4950), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3668), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4940), 6, + ACTIONS(1504), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + anon_sym_DOT2, + ACTIONS(1506), 44, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [68287] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2618), 1, + sym_comment, + ACTIONS(964), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4942), 34, + ACTIONS(966), 48, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -299950,44 +302069,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [70292] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4952), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5667), 1, anon_sym_DQUOTE, - ACTIONS(5671), 1, - sym_raw_string_begin, - STATE(1728), 1, - sym__command_name, - STATE(2611), 1, - sym_comment, - STATE(2737), 1, - sym_cmd_identifier, - STATE(2746), 1, - sym_val_string, - STATE(3751), 1, - sym__val_number_decimal, - ACTIONS(4950), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(5669), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2730), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5663), 6, + [68352] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2619), 1, + sym_comment, + 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5665), 34, + ACTIONS(2346), 48, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300022,19 +302130,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [70379] = 4, - ACTIONS(251), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + 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, + [68417] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2612), 1, + STATE(2620), 1, sym_comment, - ACTIONS(2366), 6, + ACTIONS(2461), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2368), 48, + ACTIONS(2463), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -300083,19 +302204,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [70444] = 4, - ACTIONS(251), 1, + [68482] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2613), 1, + STATE(2621), 1, sym_comment, - ACTIONS(2366), 6, + ACTIONS(2477), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2368), 48, + ACTIONS(2479), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -300144,20 +302265,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [70509] = 4, - ACTIONS(251), 1, + [68547] = 15, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2614), 1, + ACTIONS(3140), 1, + anon_sym_DQUOTE, + ACTIONS(3146), 1, + sym_raw_string_begin, + ACTIONS(4992), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4994), 1, + aux_sym__val_number_decimal_token4, + STATE(2622), 1, sym_comment, - ACTIONS(2370), 6, + STATE(3721), 1, + sym__val_number_decimal, + STATE(7127), 1, + sym_cmd_identifier, + STATE(7129), 1, + sym_val_string, + STATE(7370), 1, + sym__command_name, + ACTIONS(3142), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4990), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(5291), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5425), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2372), 48, - sym_raw_string_begin, + ACTIONS(5427), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300192,33 +302337,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, 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_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + [68634] = 15, + ACTIONS(107), 1, + anon_sym_DQUOTE, + ACTIONS(121), 1, + sym_raw_string_begin, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4992), 1, aux_sym__val_number_decimal_token3, + ACTIONS(4994), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + STATE(2623), 1, + sym_comment, + STATE(3761), 1, + sym__val_number_decimal, + STATE(5779), 1, + sym_cmd_identifier, + STATE(5782), 1, + sym_val_string, + STATE(6975), 1, + sym__command_name, + ACTIONS(109), 2, sym__str_single_quotes, sym__str_back_ticks, - [70574] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2615), 1, - sym_comment, - ACTIONS(2374), 6, + ACTIONS(4990), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(1605), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5106), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2376), 48, - sym_raw_string_begin, + ACTIONS(5108), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300253,32 +302409,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, 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_STAR2, - 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, - [70639] = 4, - ACTIONS(251), 1, + [68721] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2616), 1, + STATE(2624), 1, sym_comment, - ACTIONS(1719), 6, + ACTIONS(2010), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1721), 48, + ACTIONS(2012), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -300327,50 +302470,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [70704] = 5, - ACTIONS(3), 1, + [68786] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5627), 1, + ACTIONS(5659), 1, aux_sym__immediate_decimal_token2, - STATE(2617), 1, + STATE(2625), 1, sym_comment, - ACTIONS(1757), 5, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1755), 48, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(1618), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, 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, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, 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, @@ -300379,44 +302494,21 @@ 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, - [70771] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5673), 1, - aux_sym__immediate_decimal_token2, - STATE(2618), 1, - sym_comment, - ACTIONS(1785), 5, + ACTIONS(1620), 35, sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1783), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -300426,21 +302518,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_filesize_unit, + sym_duration_unit, 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, @@ -300449,22 +302532,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, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [70838] = 4, - ACTIONS(251), 1, + [68853] = 15, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2619), 1, + ACTIONS(1272), 1, + anon_sym_DQUOTE, + ACTIONS(1276), 1, + sym_raw_string_begin, + ACTIONS(4992), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4994), 1, + aux_sym__val_number_decimal_token4, + STATE(2626), 1, sym_comment, - ACTIONS(2378), 6, + STATE(3741), 1, + sym__val_number_decimal, + STATE(4089), 1, + sym_val_string, + STATE(4154), 1, + sym_cmd_identifier, + STATE(4959), 1, + sym__command_name, + ACTIONS(1274), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4990), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3793), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4980), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2380), 48, - sym_raw_string_begin, + ACTIONS(4982), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300499,33 +302604,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, 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_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + [68940] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1272), 1, + anon_sym_DQUOTE, + ACTIONS(1276), 1, + sym_raw_string_begin, + ACTIONS(4992), 1, aux_sym__val_number_decimal_token3, + ACTIONS(4994), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + STATE(2627), 1, + sym_comment, + STATE(3741), 1, + sym__val_number_decimal, + STATE(4089), 1, + sym_val_string, + STATE(4154), 1, + sym_cmd_identifier, + STATE(7534), 1, + sym__command_name, + ACTIONS(1274), 2, sym__str_single_quotes, sym__str_back_ticks, - [70903] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2620), 1, - sym_comment, - ACTIONS(2382), 6, + ACTIONS(4990), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3793), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4980), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2384), 48, - sym_raw_string_begin, + ACTIONS(4982), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300560,32 +302676,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, 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_STAR2, - 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, - [70968] = 4, - ACTIONS(251), 1, + [69027] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2621), 1, + STATE(2628), 1, sym_comment, - ACTIONS(2015), 6, + ACTIONS(946), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2017), 48, + ACTIONS(948), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -300634,19 +302737,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [71033] = 4, - ACTIONS(251), 1, + [69092] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2622), 1, + STATE(2629), 1, sym_comment, - ACTIONS(5675), 6, + ACTIONS(986), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5677), 48, + ACTIONS(988), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -300695,44 +302798,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [71098] = 15, - ACTIONS(251), 1, + [69157] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1286), 1, + ACTIONS(1272), 1, anon_sym_DQUOTE, - ACTIONS(1290), 1, + ACTIONS(1276), 1, sym_raw_string_begin, - ACTIONS(4952), 1, + ACTIONS(4992), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, + ACTIONS(4994), 1, aux_sym__val_number_decimal_token4, - STATE(2623), 1, + STATE(2630), 1, sym_comment, - STATE(3792), 1, + STATE(3741), 1, sym__val_number_decimal, - STATE(4121), 1, + STATE(4089), 1, sym_val_string, - STATE(4146), 1, + STATE(4154), 1, sym_cmd_identifier, - STATE(5852), 1, + STATE(6550), 1, sym__command_name, - ACTIONS(1288), 2, + ACTIONS(1274), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4950), 2, + ACTIONS(4990), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3668), 2, + STATE(3793), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4940), 6, + ACTIONS(4980), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4942), 34, + ACTIONS(4982), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300767,20 +302870,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [71185] = 4, - ACTIONS(251), 1, + [69244] = 15, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2624), 1, + ACTIONS(4417), 1, + anon_sym_DQUOTE, + ACTIONS(4425), 1, + sym_raw_string_begin, + ACTIONS(4992), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4994), 1, + aux_sym__val_number_decimal_token4, + STATE(2631), 1, sym_comment, - ACTIONS(972), 6, + STATE(3761), 1, + sym__val_number_decimal, + STATE(5365), 1, + sym__command_name, + STATE(5779), 1, + sym_cmd_identifier, + STATE(5782), 1, + sym_val_string, + ACTIONS(4419), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4990), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(5419), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5106), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(974), 48, - sym_raw_string_begin, + ACTIONS(5108), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300815,57 +302942,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, 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_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, + [69331] = 15, + ACTIONS(107), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [71250] = 15, - ACTIONS(251), 1, + ACTIONS(121), 1, + sym_raw_string_begin, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4952), 1, + ACTIONS(4992), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, + ACTIONS(4994), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5605), 1, - anon_sym_DQUOTE, - ACTIONS(5609), 1, - sym_raw_string_begin, - STATE(1657), 1, - sym__command_name, - STATE(2625), 1, + STATE(2632), 1, sym_comment, - STATE(2631), 1, + STATE(3761), 1, + sym__val_number_decimal, + STATE(5779), 1, sym_cmd_identifier, - STATE(2634), 1, + STATE(5782), 1, sym_val_string, - STATE(3763), 1, - sym__val_number_decimal, - ACTIONS(4950), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(5607), 2, + STATE(6047), 1, + sym__command_name, + ACTIONS(109), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2624), 2, + ACTIONS(4990), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(1605), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5601), 6, + ACTIONS(5106), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5603), 34, + ACTIONS(5108), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300900,19 +303014,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [71337] = 4, - ACTIONS(251), 1, + [69418] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2626), 1, + STATE(2633), 1, sym_comment, - ACTIONS(976), 6, + ACTIONS(5661), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(978), 48, + ACTIONS(5663), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -300961,19 +303075,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [71402] = 4, - ACTIONS(251), 1, + [69483] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2627), 1, + STATE(2634), 1, sym_comment, - ACTIONS(5679), 6, + ACTIONS(974), 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_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT2, + ACTIONS(976), 47, + sym_raw_string_begin, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + 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, + [69548] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2635), 1, + sym_comment, + ACTIONS(5665), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5681), 48, + ACTIONS(5667), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -301022,19 +303197,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [71467] = 4, - ACTIONS(251), 1, + [69613] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2628), 1, + STATE(2636), 1, sym_comment, - ACTIONS(984), 6, + ACTIONS(5669), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(986), 48, + ACTIONS(5671), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -301083,44 +303258,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [71532] = 15, - ACTIONS(251), 1, + [69678] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1286), 1, + ACTIONS(1272), 1, anon_sym_DQUOTE, - ACTIONS(1290), 1, + ACTIONS(1276), 1, sym_raw_string_begin, - ACTIONS(4952), 1, + ACTIONS(4992), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, + ACTIONS(4994), 1, aux_sym__val_number_decimal_token4, - STATE(2629), 1, + STATE(2637), 1, sym_comment, - STATE(3792), 1, + STATE(3741), 1, sym__val_number_decimal, - STATE(4121), 1, + STATE(4089), 1, sym_val_string, - STATE(4146), 1, + STATE(4154), 1, sym_cmd_identifier, - STATE(5723), 1, + STATE(6251), 1, sym__command_name, - ACTIONS(1288), 2, + ACTIONS(1274), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4950), 2, + ACTIONS(4990), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3668), 2, + STATE(3793), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4940), 6, + ACTIONS(4980), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4942), 34, + ACTIONS(4982), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -301155,19 +303330,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [71619] = 4, - ACTIONS(251), 1, + [69765] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2630), 1, + ACTIONS(5673), 1, + aux_sym__immediate_decimal_token2, + STATE(2638), 1, + sym_comment, + ACTIONS(1768), 5, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1766), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [69832] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2639), 1, sym_comment, - ACTIONS(980), 6, + ACTIONS(5675), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(982), 48, + ACTIONS(5677), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -301216,19 +303453,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [71684] = 4, - ACTIONS(251), 1, + [69897] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2631), 1, + STATE(2640), 1, sym_comment, - ACTIONS(5683), 6, + ACTIONS(5058), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5685), 48, + ACTIONS(5056), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -301277,20 +303514,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [71749] = 4, - ACTIONS(251), 1, + [69962] = 15, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2632), 1, + ACTIONS(4992), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4994), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5683), 1, + anon_sym_DQUOTE, + ACTIONS(5687), 1, + sym_raw_string_begin, + STATE(1919), 1, + sym__command_name, + STATE(2641), 1, sym_comment, - ACTIONS(5687), 6, + STATE(2677), 1, + sym_val_string, + STATE(2755), 1, + sym_cmd_identifier, + STATE(3754), 1, + sym__val_number_decimal, + ACTIONS(4990), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(5685), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2705), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5679), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5689), 48, - sym_raw_string_begin, + ACTIONS(5681), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -301325,33 +303586,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, 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_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + [70049] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1272), 1, + anon_sym_DQUOTE, + ACTIONS(1276), 1, + sym_raw_string_begin, + ACTIONS(4992), 1, aux_sym__val_number_decimal_token3, + ACTIONS(4994), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + STATE(2642), 1, + sym_comment, + STATE(3741), 1, + sym__val_number_decimal, + STATE(4089), 1, + sym_val_string, + STATE(4154), 1, + sym_cmd_identifier, + STATE(5205), 1, + sym__command_name, + ACTIONS(1274), 2, sym__str_single_quotes, sym__str_back_ticks, - [71814] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2633), 1, - sym_comment, - ACTIONS(5691), 6, + ACTIONS(4990), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3793), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4980), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5693), 48, - sym_raw_string_begin, + ACTIONS(4982), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -301386,33 +303658,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, 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_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + [70136] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3686), 1, + anon_sym_DQUOTE, + ACTIONS(3700), 1, + sym_raw_string_begin, + ACTIONS(4992), 1, aux_sym__val_number_decimal_token3, + ACTIONS(4994), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + STATE(2643), 1, + sym_comment, + STATE(3741), 1, + sym__val_number_decimal, + STATE(4089), 1, + sym_val_string, + STATE(4154), 1, + sym_cmd_identifier, + STATE(4959), 1, + sym__command_name, + ACTIONS(3688), 2, sym__str_single_quotes, sym__str_back_ticks, - [71879] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2634), 1, - sym_comment, - ACTIONS(5695), 6, + ACTIONS(4990), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4206), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4980), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5697), 48, - sym_raw_string_begin, + ACTIONS(4982), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -301447,33 +303730,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, 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_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + [70223] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4417), 1, + anon_sym_DQUOTE, + ACTIONS(4425), 1, + sym_raw_string_begin, + ACTIONS(4992), 1, aux_sym__val_number_decimal_token3, + ACTIONS(4994), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + STATE(2644), 1, + sym_comment, + STATE(3761), 1, + sym__val_number_decimal, + STATE(5351), 1, + sym__command_name, + STATE(5779), 1, + sym_cmd_identifier, + STATE(5782), 1, + sym_val_string, + ACTIONS(4419), 2, sym__str_single_quotes, sym__str_back_ticks, - [71944] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2635), 1, - sym_comment, - ACTIONS(4994), 6, + ACTIONS(4990), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(5419), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5106), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4992), 48, - sym_raw_string_begin, + ACTIONS(5108), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -301508,32 +303802,91 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, 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_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + [70310] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1272), 1, + anon_sym_DQUOTE, + ACTIONS(1276), 1, + sym_raw_string_begin, + ACTIONS(4992), 1, aux_sym__val_number_decimal_token3, + ACTIONS(4994), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + STATE(2645), 1, + sym_comment, + STATE(3741), 1, + sym__val_number_decimal, + STATE(4089), 1, + sym_val_string, + STATE(4154), 1, + sym_cmd_identifier, + STATE(5902), 1, + sym__command_name, + ACTIONS(1274), 2, sym__str_single_quotes, sym__str_back_ticks, - [72009] = 4, - ACTIONS(251), 1, + ACTIONS(4990), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3793), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4980), 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(4982), 34, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [70397] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2636), 1, + STATE(2646), 1, sym_comment, - ACTIONS(5699), 6, + ACTIONS(5689), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5701), 48, + ACTIONS(5691), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -301582,44 +303935,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [72074] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1286), 1, + [70462] = 15, + ACTIONS(107), 1, anon_sym_DQUOTE, - ACTIONS(1290), 1, + ACTIONS(121), 1, sym_raw_string_begin, - ACTIONS(4952), 1, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4992), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, + ACTIONS(4994), 1, aux_sym__val_number_decimal_token4, - STATE(2637), 1, + STATE(2647), 1, sym_comment, - STATE(3792), 1, + STATE(3761), 1, sym__val_number_decimal, - STATE(4121), 1, - sym_val_string, - STATE(4146), 1, + STATE(5779), 1, sym_cmd_identifier, - STATE(5276), 1, + STATE(5782), 1, + sym_val_string, + STATE(6014), 1, sym__command_name, - ACTIONS(1288), 2, + ACTIONS(109), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4950), 2, + ACTIONS(4990), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3668), 2, + STATE(1605), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4940), 6, + ACTIONS(5106), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4942), 34, + ACTIONS(5108), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -301654,44 +304007,216 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [72161] = 15, - ACTIONS(251), 1, + [70549] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3610), 1, - anon_sym_DQUOTE, - ACTIONS(3624), 1, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + ACTIONS(3618), 1, + anon_sym_DOLLAR, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(5693), 1, + anon_sym_DOT, + ACTIONS(5697), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5699), 1, + aux_sym__immediate_decimal_token5, + STATE(2648), 1, + sym_comment, + STATE(3131), 1, + sym__immediate_decimal, + ACTIONS(5695), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1693), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1441), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1455), 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_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [70632] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5701), 1, + anon_sym_DOT2, + STATE(2649), 1, + sym_comment, + STATE(2690), 1, + aux_sym_cell_path_repeat1, + STATE(2872), 1, + sym_path, + STATE(2929), 1, + sym_cell_path, + ACTIONS(929), 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(931), 33, sym_raw_string_begin, - ACTIONS(4952), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, aux_sym__val_number_decimal_token4, - STATE(2638), 1, - sym_comment, - STATE(3792), 1, - sym__val_number_decimal, - STATE(4121), 1, - sym_val_string, - STATE(4146), 1, - sym_cmd_identifier, - STATE(4914), 1, - sym__command_name, - ACTIONS(3612), 2, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4950), 2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [70705] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2650), 1, + sym_comment, + ACTIONS(982), 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_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT2, + ACTIONS(984), 47, + sym_raw_string_begin, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4208), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4940), 6, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [70770] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2651), 1, + sym_comment, + ACTIONS(1676), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4942), 34, + ACTIONS(1678), 48, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -301726,44 +304251,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [72248] = 15, - ACTIONS(251), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + 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, + [70835] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1286), 1, + ACTIONS(1272), 1, anon_sym_DQUOTE, - ACTIONS(1290), 1, + ACTIONS(1276), 1, sym_raw_string_begin, - ACTIONS(4952), 1, + ACTIONS(4992), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, + ACTIONS(4994), 1, aux_sym__val_number_decimal_token4, - STATE(2639), 1, + STATE(2652), 1, sym_comment, - STATE(3792), 1, + STATE(3741), 1, sym__val_number_decimal, - STATE(4121), 1, + STATE(4089), 1, sym_val_string, - STATE(4146), 1, + STATE(4154), 1, sym_cmd_identifier, - STATE(5280), 1, + STATE(7648), 1, sym__command_name, - ACTIONS(1288), 2, + ACTIONS(1274), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4950), 2, + ACTIONS(4990), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3668), 2, + STATE(3793), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4940), 6, + ACTIONS(4980), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4942), 34, + ACTIONS(4982), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -301798,44 +304336,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [72335] = 15, - ACTIONS(109), 1, + [70922] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1272), 1, anon_sym_DQUOTE, - ACTIONS(123), 1, + ACTIONS(1276), 1, sym_raw_string_begin, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4952), 1, + ACTIONS(4992), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, + ACTIONS(4994), 1, aux_sym__val_number_decimal_token4, - STATE(2640), 1, + STATE(2653), 1, sym_comment, - STATE(3787), 1, - sym__val_number_decimal, - STATE(5782), 1, - sym_cmd_identifier, - STATE(5791), 1, + STATE(3741), 1, + sym__val_number_decimal, + STATE(4089), 1, sym_val_string, - STATE(6876), 1, + STATE(4154), 1, + sym_cmd_identifier, + STATE(7522), 1, sym__command_name, - ACTIONS(111), 2, + ACTIONS(1274), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4950), 2, + ACTIONS(4990), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(1732), 2, + STATE(3793), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5027), 6, + ACTIONS(4980), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5029), 34, + ACTIONS(4982), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -301870,20 +304408,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [72422] = 4, - ACTIONS(251), 1, + [71009] = 15, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2641), 1, + ACTIONS(1272), 1, + anon_sym_DQUOTE, + ACTIONS(1276), 1, + sym_raw_string_begin, + ACTIONS(4992), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4994), 1, + aux_sym__val_number_decimal_token4, + STATE(2654), 1, sym_comment, - ACTIONS(4962), 6, + STATE(3741), 1, + sym__val_number_decimal, + STATE(4089), 1, + sym_val_string, + STATE(4154), 1, + sym_cmd_identifier, + STATE(6186), 1, + sym__command_name, + ACTIONS(1274), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4990), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3793), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4980), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4960), 48, - sym_raw_string_begin, + ACTIONS(4982), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -301918,57 +304480,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, 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_STAR2, - 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, - [72487] = 15, - ACTIONS(251), 1, + [71096] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1286), 1, + ACTIONS(1272), 1, anon_sym_DQUOTE, - ACTIONS(1290), 1, + ACTIONS(1276), 1, sym_raw_string_begin, - ACTIONS(4952), 1, + ACTIONS(4992), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, + ACTIONS(4994), 1, aux_sym__val_number_decimal_token4, - STATE(2642), 1, + STATE(2655), 1, sym_comment, - STATE(3792), 1, + STATE(3741), 1, sym__val_number_decimal, - STATE(4121), 1, + STATE(4089), 1, sym_val_string, - STATE(4146), 1, + STATE(4154), 1, sym_cmd_identifier, - STATE(7816), 1, + STATE(7585), 1, sym__command_name, - ACTIONS(1288), 2, + ACTIONS(1274), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4950), 2, + ACTIONS(4990), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3668), 2, + STATE(3793), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4940), 6, + ACTIONS(4980), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4942), 34, + ACTIONS(4982), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -302003,44 +304552,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [72574] = 15, - ACTIONS(251), 1, + [71183] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4427), 1, + ACTIONS(1272), 1, anon_sym_DQUOTE, - ACTIONS(4435), 1, + ACTIONS(1276), 1, sym_raw_string_begin, - ACTIONS(4952), 1, + ACTIONS(4992), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, + ACTIONS(4994), 1, aux_sym__val_number_decimal_token4, - STATE(2643), 1, + STATE(2656), 1, sym_comment, - STATE(3787), 1, + STATE(3741), 1, sym__val_number_decimal, - STATE(5357), 1, - sym__command_name, - STATE(5782), 1, - sym_cmd_identifier, - STATE(5791), 1, + STATE(4089), 1, sym_val_string, - ACTIONS(4429), 2, + STATE(4154), 1, + sym_cmd_identifier, + STATE(6220), 1, + sym__command_name, + ACTIONS(1274), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4950), 2, + ACTIONS(4990), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(5380), 2, + STATE(3793), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5027), 6, + ACTIONS(4980), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5029), 34, + ACTIONS(4982), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -302075,85 +304624,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [72661] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5703), 1, - anon_sym_DOT2, - STATE(2644), 1, - sym_comment, - STATE(2709), 1, - aux_sym_cell_path_repeat1, - STATE(2824), 1, - sym_path, - STATE(2899), 1, - sym_cell_path, - ACTIONS(1697), 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(1699), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [72734] = 8, - ACTIONS(251), 1, + [71270] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5703), 1, + ACTIONS(5701), 1, anon_sym_DOT2, - STATE(2645), 1, + STATE(2657), 1, sym_comment, - STATE(2709), 1, + STATE(2690), 1, aux_sym_cell_path_repeat1, - STATE(2824), 1, + STATE(2872), 1, sym_path, - STATE(2915), 1, + STATE(2947), 1, sym_cell_path, - ACTIONS(943), 17, + ACTIONS(1676), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -302171,7 +304655,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(945), 33, + ACTIONS(1678), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -302205,44 +304689,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, - [72807] = 15, - ACTIONS(251), 1, + [71343] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3132), 1, + ACTIONS(1272), 1, anon_sym_DQUOTE, - ACTIONS(3138), 1, + ACTIONS(1276), 1, sym_raw_string_begin, - ACTIONS(4952), 1, + ACTIONS(4992), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, + ACTIONS(4994), 1, aux_sym__val_number_decimal_token4, - STATE(2646), 1, + STATE(2658), 1, sym_comment, - STATE(3765), 1, + STATE(3741), 1, sym__val_number_decimal, - STATE(7043), 1, + STATE(4089), 1, sym_val_string, - STATE(7283), 1, + STATE(4154), 1, sym_cmd_identifier, - STATE(7444), 1, + STATE(5233), 1, sym__command_name, - ACTIONS(3134), 2, + ACTIONS(1274), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4950), 2, + ACTIONS(4990), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(5195), 2, + STATE(3793), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5293), 6, + ACTIONS(4980), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5295), 34, + ACTIONS(4982), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -302277,109 +304761,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [72894] = 8, - ACTIONS(251), 1, + [71430] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5703), 1, - anon_sym_DOT2, - STATE(2647), 1, - sym_comment, - STATE(2709), 1, - aux_sym_cell_path_repeat1, - STATE(2824), 1, - sym_path, - STATE(2944), 1, - sym_cell_path, - ACTIONS(1719), 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(1721), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [72967] = 15, - ACTIONS(109), 1, + ACTIONS(1272), 1, anon_sym_DQUOTE, - ACTIONS(123), 1, + ACTIONS(1276), 1, sym_raw_string_begin, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4952), 1, + ACTIONS(4992), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, + ACTIONS(4994), 1, aux_sym__val_number_decimal_token4, - STATE(2648), 1, + STATE(2659), 1, sym_comment, - STATE(3787), 1, + STATE(3741), 1, sym__val_number_decimal, - STATE(5782), 1, + STATE(4089), 1, + sym_val_string, + STATE(4154), 1, sym_cmd_identifier, STATE(5791), 1, - sym_val_string, - STATE(5944), 1, sym__command_name, - ACTIONS(111), 2, + ACTIONS(1274), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4950), 2, + ACTIONS(4990), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(1732), 2, + STATE(3793), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5027), 6, + ACTIONS(4980), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5029), 34, + ACTIONS(4982), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -302414,44 +304833,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [73054] = 15, - ACTIONS(251), 1, + [71517] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1286), 1, + ACTIONS(1272), 1, anon_sym_DQUOTE, - ACTIONS(1290), 1, + ACTIONS(1276), 1, sym_raw_string_begin, - ACTIONS(4952), 1, + ACTIONS(4992), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, + ACTIONS(4994), 1, aux_sym__val_number_decimal_token4, - STATE(2649), 1, + STATE(2660), 1, sym_comment, - STATE(3792), 1, + STATE(3741), 1, sym__val_number_decimal, - STATE(4121), 1, + STATE(4089), 1, sym_val_string, - STATE(4146), 1, + STATE(4154), 1, sym_cmd_identifier, - STATE(6280), 1, + STATE(7760), 1, sym__command_name, - ACTIONS(1288), 2, + ACTIONS(1274), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4950), 2, + ACTIONS(4990), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3668), 2, + STATE(3793), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4940), 6, + ACTIONS(4980), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4942), 34, + ACTIONS(4982), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -302486,44 +304905,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [73141] = 15, - ACTIONS(251), 1, + [71604] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1286), 1, + ACTIONS(1272), 1, anon_sym_DQUOTE, - ACTIONS(1290), 1, + ACTIONS(1276), 1, sym_raw_string_begin, - ACTIONS(4952), 1, + ACTIONS(4992), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, + ACTIONS(4994), 1, aux_sym__val_number_decimal_token4, - STATE(2650), 1, + STATE(2661), 1, sym_comment, - STATE(3792), 1, + STATE(3741), 1, sym__val_number_decimal, - STATE(4121), 1, + STATE(4089), 1, sym_val_string, - STATE(4146), 1, + STATE(4154), 1, sym_cmd_identifier, - STATE(7512), 1, + STATE(7853), 1, sym__command_name, - ACTIONS(1288), 2, + ACTIONS(1274), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4950), 2, + ACTIONS(4990), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3668), 2, + STATE(3793), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4940), 6, + ACTIONS(4980), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4942), 34, + ACTIONS(4982), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -302558,44 +304977,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [73228] = 15, - ACTIONS(251), 1, + [71691] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1286), 1, + ACTIONS(1272), 1, anon_sym_DQUOTE, - ACTIONS(1290), 1, + ACTIONS(1276), 1, sym_raw_string_begin, - ACTIONS(4952), 1, + ACTIONS(4992), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, + ACTIONS(4994), 1, aux_sym__val_number_decimal_token4, - STATE(2651), 1, + STATE(2662), 1, sym_comment, - STATE(3792), 1, + STATE(3741), 1, sym__val_number_decimal, - STATE(4121), 1, + STATE(4089), 1, sym_val_string, - STATE(4146), 1, + STATE(4154), 1, sym_cmd_identifier, - STATE(6620), 1, + STATE(7846), 1, sym__command_name, - ACTIONS(1288), 2, + ACTIONS(1274), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4950), 2, + ACTIONS(4990), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3668), 2, + STATE(3793), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4940), 6, + ACTIONS(4980), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4942), 34, + ACTIONS(4982), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -302630,44 +305049,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [73315] = 15, - ACTIONS(109), 1, + [71778] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1272), 1, anon_sym_DQUOTE, - ACTIONS(123), 1, + ACTIONS(1276), 1, sym_raw_string_begin, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4952), 1, + ACTIONS(4992), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, + ACTIONS(4994), 1, aux_sym__val_number_decimal_token4, - STATE(2652), 1, + STATE(2663), 1, sym_comment, - STATE(3787), 1, + STATE(3741), 1, sym__val_number_decimal, - STATE(5782), 1, - sym_cmd_identifier, - STATE(5791), 1, + STATE(4089), 1, sym_val_string, - STATE(6037), 1, + STATE(4154), 1, + sym_cmd_identifier, + STATE(7587), 1, sym__command_name, - ACTIONS(111), 2, + ACTIONS(1274), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4950), 2, + ACTIONS(4990), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(1732), 2, + STATE(3793), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5027), 6, + ACTIONS(4980), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5029), 34, + ACTIONS(4982), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -302702,23 +305121,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [73402] = 7, + [71865] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5599), 1, + ACTIONS(5593), 1, anon_sym_DOT2, - STATE(2653), 1, + STATE(2664), 1, sym_comment, - STATE(2657), 1, + STATE(2669), 1, aux_sym_cell_path_repeat1, - STATE(2793), 1, + STATE(2759), 1, sym_path, - ACTIONS(951), 4, + ACTIONS(944), 4, sym_raw_string_begin, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(949), 47, + ACTIONS(942), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -302766,44 +305185,44 @@ 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, - [73473] = 15, - ACTIONS(251), 1, + [71936] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1286), 1, - anon_sym_DQUOTE, - ACTIONS(1290), 1, - sym_raw_string_begin, - ACTIONS(4952), 1, + ACTIONS(4992), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, + ACTIONS(4994), 1, aux_sym__val_number_decimal_token4, - STATE(2654), 1, + ACTIONS(5605), 1, + anon_sym_DQUOTE, + ACTIONS(5609), 1, + sym_raw_string_begin, + STATE(1683), 1, + sym__command_name, + STATE(2636), 1, + sym_cmd_identifier, + STATE(2639), 1, + sym_val_string, + STATE(2665), 1, sym_comment, - STATE(3792), 1, + STATE(3661), 1, sym__val_number_decimal, - STATE(4121), 1, - sym_val_string, - STATE(4146), 1, - sym_cmd_identifier, - STATE(7518), 1, - sym__command_name, - ACTIONS(1288), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4950), 2, + ACTIONS(4990), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3668), 2, + ACTIONS(5607), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2610), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4940), 6, + ACTIONS(5601), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4942), 34, + ACTIONS(5603), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -302838,44 +305257,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [73560] = 15, - ACTIONS(251), 1, + [72023] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1286), 1, + ACTIONS(1272), 1, anon_sym_DQUOTE, - ACTIONS(1290), 1, + ACTIONS(1276), 1, sym_raw_string_begin, - ACTIONS(4952), 1, + ACTIONS(4992), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, + ACTIONS(4994), 1, aux_sym__val_number_decimal_token4, - STATE(2655), 1, + STATE(2666), 1, sym_comment, - STATE(3792), 1, + STATE(3741), 1, sym__val_number_decimal, - STATE(4121), 1, + STATE(4089), 1, sym_val_string, - STATE(4146), 1, + STATE(4154), 1, sym_cmd_identifier, - STATE(6186), 1, + STATE(7653), 1, sym__command_name, - ACTIONS(1288), 2, + ACTIONS(1274), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4950), 2, + ACTIONS(4990), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3668), 2, + STATE(3793), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4940), 6, + ACTIONS(4980), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4942), 34, + ACTIONS(4982), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -302910,44 +305329,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [73647] = 15, - ACTIONS(251), 1, + [72110] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1286), 1, + ACTIONS(1272), 1, anon_sym_DQUOTE, - ACTIONS(1290), 1, + ACTIONS(1276), 1, sym_raw_string_begin, - ACTIONS(4952), 1, + ACTIONS(4992), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, + ACTIONS(4994), 1, aux_sym__val_number_decimal_token4, - STATE(2656), 1, + STATE(2667), 1, sym_comment, - STATE(3792), 1, + STATE(3741), 1, sym__val_number_decimal, - STATE(4121), 1, + STATE(4089), 1, sym_val_string, - STATE(4146), 1, + STATE(4154), 1, sym_cmd_identifier, - STATE(7558), 1, + STATE(7731), 1, sym__command_name, - ACTIONS(1288), 2, + ACTIONS(1274), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4950), 2, + ACTIONS(4990), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3668), 2, + STATE(3793), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4940), 6, + ACTIONS(4980), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4942), 34, + ACTIONS(4982), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -302982,22 +305401,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [73734] = 6, + [72197] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5591), 1, + aux_sym__immediate_decimal_token2, + STATE(2668), 1, + sym_comment, + ACTIONS(1512), 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(1514), 35, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [72264] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5705), 1, + ACTIONS(5703), 1, anon_sym_DOT2, - STATE(2793), 1, + STATE(2759), 1, sym_path, - STATE(2657), 2, + STATE(2669), 2, sym_comment, aux_sym_cell_path_repeat1, - ACTIONS(955), 4, + ACTIONS(937), 4, sym_raw_string_begin, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(953), 47, + ACTIONS(935), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -303045,44 +305526,241 @@ 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, - [73803] = 15, - ACTIONS(251), 1, + [72333] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1286), 1, - anon_sym_DQUOTE, - ACTIONS(1290), 1, + STATE(2670), 1, + sym_comment, + ACTIONS(978), 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_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT2, + ACTIONS(980), 47, sym_raw_string_begin, - ACTIONS(4952), 1, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, aux_sym__val_number_decimal_token4, - STATE(2658), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [72398] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5701), 1, + anon_sym_DOT2, + STATE(2671), 1, sym_comment, - STATE(3792), 1, - sym__val_number_decimal, - STATE(4121), 1, - sym_val_string, - STATE(4146), 1, - sym_cmd_identifier, - STATE(4914), 1, - sym__command_name, - ACTIONS(1288), 2, + STATE(2690), 1, + aux_sym_cell_path_repeat1, + STATE(2872), 1, + sym_path, + STATE(2919), 1, + sym_cell_path, + ACTIONS(1666), 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(1668), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4950), 2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [72471] = 31, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1258), 1, + anon_sym_LPAREN, + ACTIONS(1272), 1, + anon_sym_DQUOTE, + ACTIONS(1276), 1, + sym_raw_string_begin, + ACTIONS(3442), 1, + anon_sym_COLON2, + ACTIONS(3512), 1, + anon_sym_DOLLAR, + ACTIONS(3538), 1, + aux_sym_unquoted_token1, + ACTIONS(3830), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3832), 1, aux_sym__val_number_decimal_token2, - STATE(3668), 2, + ACTIONS(3834), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3836), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4091), 1, + anon_sym_DOT_DOT, + ACTIONS(5273), 1, + sym_val_date, + STATE(1875), 1, + sym__inter_single_quotes, + STATE(1877), 1, + sym__inter_double_quotes, + STATE(2672), 1, + sym_comment, + STATE(5713), 1, + sym__val_number_decimal, + STATE(6209), 1, + sym_unquoted, + STATE(7494), 1, + sym_val_bool, + STATE(7649), 1, + sym__unquoted_anonymous_prefix, + STATE(7833), 1, + sym__val_range, + ACTIONS(1274), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3828), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4093), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(3793), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4940), 6, + ACTIONS(5271), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(6208), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(2830), 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(2832), 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, + [72589] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5706), 1, + anon_sym_DOT2, + STATE(2673), 1, + sym_comment, + STATE(2814), 1, + aux_sym_cell_path_repeat1, + STATE(2939), 1, + sym_path, + STATE(3047), 1, + sym_cell_path, + ACTIONS(1917), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4942), 34, + ACTIONS(1919), 43, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -303117,20 +305795,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [73890] = 4, - ACTIONS(251), 1, + 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, + [72661] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2659), 1, + STATE(2674), 1, sym_comment, - ACTIONS(1000), 6, + ACTIONS(5026), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1002), 48, + ACTIONS(5024), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -303168,8 +305855,6 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -303178,44 +305863,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [73955] = 15, - ACTIONS(251), 1, + [72725] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1286), 1, - anon_sym_DQUOTE, - ACTIONS(1290), 1, - sym_raw_string_begin, - ACTIONS(4952), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, - aux_sym__val_number_decimal_token4, - STATE(2660), 1, + STATE(2675), 1, sym_comment, - STATE(3792), 1, - sym__val_number_decimal, - STATE(4121), 1, - sym_val_string, - STATE(4146), 1, - sym_cmd_identifier, - STATE(7658), 1, - sym__command_name, - ACTIONS(1288), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4950), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3668), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4940), 6, + ACTIONS(2477), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4942), 34, + ACTIONS(2479), 47, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -303250,44 +305912,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [74042] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1286), 1, - anon_sym_DQUOTE, - ACTIONS(1290), 1, - sym_raw_string_begin, - ACTIONS(4952), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, aux_sym__val_number_decimal_token4, - STATE(2661), 1, - sym_comment, - STATE(3792), 1, - sym__val_number_decimal, - STATE(4121), 1, - sym_val_string, - STATE(4146), 1, - sym_cmd_identifier, - STATE(7821), 1, - sym__command_name, - ACTIONS(1288), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4950), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3668), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4940), 6, + [72789] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2676), 1, + sym_comment, + ACTIONS(2441), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4942), 34, + ACTIONS(2443), 47, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -303322,44 +305972,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [74129] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1286), 1, - anon_sym_DQUOTE, - ACTIONS(1290), 1, - sym_raw_string_begin, - ACTIONS(4952), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, aux_sym__val_number_decimal_token4, - STATE(2662), 1, - sym_comment, - STATE(3792), 1, - sym__val_number_decimal, - STATE(4121), 1, - sym_val_string, - STATE(4146), 1, - sym_cmd_identifier, - STATE(7828), 1, - sym__command_name, - ACTIONS(1288), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4950), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3668), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4940), 6, + [72853] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2677), 1, + sym_comment, + ACTIONS(5675), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4942), 34, + ACTIONS(5677), 47, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -303394,44 +306032,367 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [74216] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1286), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + 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, - ACTIONS(1290), 1, - sym_raw_string_begin, - ACTIONS(4952), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [72917] = 30, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3442), 1, + anon_sym_COLON2, + ACTIONS(3830), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3832), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3834), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, + ACTIONS(3836), 1, aux_sym__val_number_decimal_token4, - STATE(2663), 1, + ACTIONS(5273), 1, + sym_val_date, + ACTIONS(5605), 1, + anon_sym_DQUOTE, + ACTIONS(5609), 1, + sym_raw_string_begin, + ACTIONS(5708), 1, + anon_sym_LPAREN, + ACTIONS(5710), 1, + anon_sym_DOLLAR, + ACTIONS(5712), 1, + anon_sym_DOT_DOT, + ACTIONS(5718), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5720), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5722), 1, + aux_sym_unquoted_token1, + STATE(2606), 1, + sym__inter_single_quotes, + STATE(2608), 1, + sym__inter_double_quotes, + STATE(2678), 1, sym_comment, - STATE(3792), 1, + STATE(5726), 1, sym__val_number_decimal, - STATE(4121), 1, + STATE(7494), 1, + sym_val_bool, + STATE(7595), 1, + sym__unquoted_anonymous_prefix, + STATE(7628), 1, + sym__val_range, + ACTIONS(3828), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5607), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5714), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(2610), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5716), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(1711), 5, + sym_expr_parenthesized, + sym_val_variable, sym_val_string, - STATE(4146), 1, - sym_cmd_identifier, - STATE(7700), 1, - sym__command_name, - ACTIONS(1288), 2, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2830), 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(2832), 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, + [73033] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + ACTIONS(4484), 1, + anon_sym_DOLLAR, + ACTIONS(4486), 1, + anon_sym_LPAREN2, + ACTIONS(5724), 1, + anon_sym_DOT, + ACTIONS(5728), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5730), 1, + aux_sym__immediate_decimal_token5, + STATE(2679), 1, + sym_comment, + STATE(3196), 1, + sym__immediate_decimal, + ACTIONS(5726), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2091), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1441), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1455), 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_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [73115] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2680), 1, + sym_comment, + ACTIONS(962), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(960), 49, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4950), 2, + anon_sym_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, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + 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, + [73179] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2681), 1, + sym_comment, + ACTIONS(966), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(964), 49, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3668), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4940), 6, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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_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, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + 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, + [73243] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2682), 1, + sym_comment, + ACTIONS(1618), 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(1620), 35, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [73307] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2683), 1, + sym_comment, + ACTIONS(5661), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4942), 34, + ACTIONS(5663), 47, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -303466,44 +306427,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [74303] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1286), 1, - anon_sym_DQUOTE, - ACTIONS(1290), 1, - sym_raw_string_begin, - ACTIONS(4952), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, aux_sym__val_number_decimal_token4, - STATE(2664), 1, - sym_comment, - STATE(3792), 1, - sym__val_number_decimal, - STATE(4121), 1, - sym_val_string, - STATE(4146), 1, - sym_cmd_identifier, - STATE(7773), 1, - sym__command_name, - ACTIONS(1288), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4950), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3668), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4940), 6, + [73371] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5706), 1, + anon_sym_DOT2, + STATE(2684), 1, + sym_comment, + STATE(2814), 1, + aux_sym_cell_path_repeat1, + STATE(2939), 1, + sym_path, + STATE(3022), 1, + sym_cell_path, + ACTIONS(1893), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4942), 34, + ACTIONS(1895), 43, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -303538,20 +306494,89 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [74390] = 4, - ACTIONS(251), 1, + 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, + [73443] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2665), 1, + ACTIONS(5732), 1, + sym__newline, + STATE(2685), 1, sym_comment, - ACTIONS(996), 7, + ACTIONS(5735), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(1290), 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, + 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(1288), 35, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [73511] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2686), 1, + sym_comment, + ACTIONS(5665), 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_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(998), 47, + ACTIONS(5667), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -303599,14 +306624,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [74455] = 5, - ACTIONS(251), 1, + [73575] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5655), 1, + STATE(2687), 1, + sym_comment, + ACTIONS(948), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(946), 49, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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_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, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + 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, + [73639] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5737), 1, + anon_sym_DOT, + ACTIONS(5739), 1, aux_sym__immediate_decimal_token2, - STATE(2666), 1, + STATE(2688), 1, sym_comment, - ACTIONS(1550), 18, + ACTIONS(1701), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -303625,7 +306712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - ACTIONS(1552), 35, + ACTIONS(1703), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -303647,8 +306734,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -303661,44 +306746,273 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [74522] = 15, - ACTIONS(251), 1, + [73707] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1286), 1, + STATE(2689), 1, + sym_comment, + ACTIONS(1703), 5, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1701), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(1290), 1, + 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, + [73771] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5701), 1, + anon_sym_DOT2, + STATE(2690), 1, + sym_comment, + STATE(2691), 1, + aux_sym_cell_path_repeat1, + STATE(2872), 1, + sym_path, + ACTIONS(942), 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(944), 33, sym_raw_string_begin, - ACTIONS(4952), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, aux_sym__val_number_decimal_token4, - STATE(2667), 1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [73841] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5741), 1, + anon_sym_DOT2, + STATE(2872), 1, + sym_path, + STATE(2691), 2, sym_comment, - STATE(3792), 1, - sym__val_number_decimal, - STATE(4121), 1, - sym_val_string, - STATE(4146), 1, - sym_cmd_identifier, - STATE(7649), 1, - sym__command_name, - ACTIONS(1288), 2, + aux_sym_cell_path_repeat1, + ACTIONS(935), 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(937), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4950), 2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [73909] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2692), 1, + sym_comment, + ACTIONS(1695), 5, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1693), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3668), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4940), 6, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [73973] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5706), 1, + anon_sym_DOT2, + STATE(2693), 1, + sym_comment, + STATE(2814), 1, + aux_sym_cell_path_repeat1, + STATE(2939), 1, + sym_path, + STATE(2965), 1, + sym_cell_path, + ACTIONS(1931), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4942), 34, + ACTIONS(1933), 43, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -303733,44 +307047,277 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [74609] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1286), 1, + 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, - ACTIONS(1290), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [74045] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2694), 1, + sym_comment, + ACTIONS(1689), 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(1691), 35, sym_raw_string_begin, - ACTIONS(4952), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, aux_sym__val_number_decimal_token4, - STATE(2668), 1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [74109] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5744), 1, + anon_sym_DOT_DOT2, + ACTIONS(5748), 1, + sym_filesize_unit, + ACTIONS(5750), 1, + sym_duration_unit, + ACTIONS(5752), 1, + aux_sym__unquoted_in_list_token2, + STATE(2695), 1, sym_comment, - STATE(3792), 1, - sym__val_number_decimal, - STATE(4121), 1, - sym_val_string, - STATE(4146), 1, - sym_cmd_identifier, - STATE(7730), 1, - sym__command_name, - ACTIONS(1288), 2, + ACTIONS(5746), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1639), 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(1651), 31, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4950), 2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [74183] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5754), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5756), 1, + aux_sym__immediate_decimal_token2, + STATE(2696), 1, + sym_comment, + ACTIONS(1693), 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(1695), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, - STATE(3668), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4940), 6, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [74251] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5758), 1, + aux_sym__immediate_decimal_token2, + STATE(2697), 1, + sym_comment, + ACTIONS(1618), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + anon_sym_DOT2, + ACTIONS(1620), 44, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [74317] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2698), 1, + sym_comment, + ACTIONS(5689), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4942), 34, + ACTIONS(5691), 47, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -303805,100 +307352,181 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [74696] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1286), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + 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, - ACTIONS(1290), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [74381] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2699), 1, + sym_comment, + ACTIONS(1768), 5, sym_raw_string_begin, - ACTIONS(4952), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1766), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(4954), 1, aux_sym__val_number_decimal_token4, - STATE(2669), 1, - sym_comment, - STATE(3792), 1, - sym__val_number_decimal, - STATE(4121), 1, - sym_val_string, - STATE(4146), 1, - sym_cmd_identifier, - STATE(6403), 1, - sym__command_name, - ACTIONS(1288), 2, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4950), 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, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + 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, + [74445] = 33, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2668), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2670), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3108), 1, + anon_sym_LPAREN, + ACTIONS(3110), 1, + anon_sym_DOLLAR, + ACTIONS(3122), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3124), 1, aux_sym__val_number_decimal_token2, - STATE(3668), 2, + ACTIONS(3126), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3128), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3134), 1, + anon_sym_0b, + ACTIONS(3140), 1, + anon_sym_DQUOTE, + ACTIONS(3146), 1, + sym_raw_string_begin, + ACTIONS(3150), 1, + anon_sym_LBRACK, + ACTIONS(5760), 1, + anon_sym_LBRACE, + ACTIONS(5762), 1, + anon_sym_DOT_DOT, + ACTIONS(5766), 1, + anon_sym_null, + ACTIONS(5770), 1, + sym_val_date, + STATE(2700), 1, + sym_comment, + STATE(5628), 1, + sym__val_number_decimal, + STATE(5759), 1, + sym_val_variable, + STATE(5971), 1, + sym_expr_parenthesized, + STATE(6713), 1, + sym__inter_double_quotes, + STATE(6724), 1, + sym__val_number, + STATE(7039), 1, + sym__inter_single_quotes, + STATE(7290), 1, + sym_block, + ACTIONS(3136), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3142), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5764), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5768), 2, + anon_sym_true, + anon_sym_false, + STATE(5291), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4940), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(4942), 34, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [74783] = 8, - ACTIONS(251), 1, + STATE(7322), 2, + sym_val_range, + sym__value, + ACTIONS(3130), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(6851), 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, + [74567] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5708), 1, - anon_sym_DOT2, - STATE(2670), 1, + STATE(2701), 1, sym_comment, - STATE(2782), 1, - aux_sym_cell_path_repeat1, - STATE(2930), 1, - sym_path, - STATE(3019), 1, - sym_cell_path, - ACTIONS(1855), 6, + ACTIONS(5058), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1857), 43, + ACTIONS(5056), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -303933,27 +307561,214 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + 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, + [74631] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2702), 1, + sym_comment, + ACTIONS(1504), 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(1506), 35, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [74695] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2703), 1, + sym_comment, + ACTIONS(1794), 5, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1792), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [74759] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1457), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1808), 1, + anon_sym_LPAREN2, + ACTIONS(5772), 1, + anon_sym_DOT_DOT2, + STATE(2704), 1, + sym_comment, + ACTIONS(1814), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5774), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1806), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [74855] = 4, - ACTIONS(251), 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, + [74831] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2671), 1, + STATE(2705), 1, sym_comment, - ACTIONS(5679), 6, + ACTIONS(956), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5681), 47, + ACTIONS(958), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -304001,43 +307816,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [74919] = 4, - ACTIONS(251), 1, + [74895] = 33, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2672), 1, - sym_comment, - ACTIONS(1743), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + ACTIONS(2668), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2670), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3108), 1, + anon_sym_LPAREN, + ACTIONS(3110), 1, + anon_sym_DOLLAR, + ACTIONS(3122), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3124), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3126), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3128), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3134), 1, anon_sym_0b, + ACTIONS(3140), 1, + anon_sym_DQUOTE, + ACTIONS(3146), 1, + sym_raw_string_begin, + ACTIONS(3150), 1, + anon_sym_LBRACK, + ACTIONS(5760), 1, + anon_sym_LBRACE, + ACTIONS(5762), 1, + anon_sym_DOT_DOT, + ACTIONS(5766), 1, + anon_sym_null, + ACTIONS(5770), 1, + sym_val_date, + STATE(2706), 1, + sym_comment, + STATE(5628), 1, + sym__val_number_decimal, + STATE(5759), 1, + sym_val_variable, + STATE(5988), 1, + sym_expr_parenthesized, + STATE(6713), 1, + sym__inter_double_quotes, + STATE(6724), 1, + sym__val_number, + STATE(7039), 1, + sym__inter_single_quotes, + STATE(7341), 1, + sym_block, + ACTIONS(3136), 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(3142), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5764), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5768), 2, + anon_sym_true, + anon_sym_false, + STATE(5291), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(7347), 2, + sym_val_range, + sym__value, + ACTIONS(3130), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(6851), 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, + [75017] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1818), 1, + anon_sym_LPAREN2, + ACTIONS(1826), 1, aux_sym__unquoted_in_list_token2, - ACTIONS(1745), 35, + ACTIONS(5776), 1, + anon_sym_DOT_DOT2, + STATE(2707), 1, + sym_comment, + ACTIONS(1824), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5778), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1816), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -304047,12 +307945,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - 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, @@ -304061,27 +307968,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, - [74983] = 8, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [75089] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5708), 1, + ACTIONS(5706), 1, anon_sym_DOT2, - STATE(2673), 1, + STATE(2708), 1, sym_comment, - STATE(2782), 1, + STATE(2814), 1, aux_sym_cell_path_repeat1, - STATE(2930), 1, + STATE(2939), 1, sym_path, - STATE(2974), 1, + STATE(3009), 1, sym_cell_path, - ACTIONS(1909), 6, + ACTIONS(1961), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1911), 43, + ACTIONS(1963), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -304125,28 +308033,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75055] = 8, - ACTIONS(251), 1, + [75161] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5708), 1, - anon_sym_DOT2, - STATE(2674), 1, + STATE(2709), 1, sym_comment, - STATE(2782), 1, - aux_sym_cell_path_repeat1, - STATE(2930), 1, - sym_path, - STATE(2975), 1, - sym_cell_path, - ACTIONS(1913), 6, + ACTIONS(960), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1915), 43, + ACTIONS(962), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -304181,7 +308082,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -304189,24 +308093,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75127] = 6, - ACTIONS(251), 1, + [75225] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5710), 1, - anon_sym_DOT, - ACTIONS(5712), 1, + ACTIONS(5780), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5782), 1, aux_sym__immediate_decimal_token2, - STATE(2675), 1, + STATE(2710), 1, sym_comment, - ACTIONS(1755), 18, + ACTIONS(1695), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1693), 47, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, 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, @@ -304215,21 +308146,40 @@ 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(1757), 33, + [75293] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2383), 1, sym_raw_string_begin, + ACTIONS(5784), 1, + sym__entry_separator, + STATE(2711), 2, + sym_comment, + aux_sym__multiple_types_repeat1, + ACTIONS(2378), 50, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - 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_null, anon_sym_true, anon_sym_false, + 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, @@ -304239,10 +308189,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + 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, @@ -304251,18 +308215,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, - [75195] = 4, + aux_sym__unquoted_in_list_token1, + [75359] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2676), 1, + ACTIONS(5789), 1, + anon_sym_RBRACK, + ACTIONS(5791), 1, + sym__entry_separator, + ACTIONS(5793), 1, + sym_raw_string_begin, + STATE(2711), 1, + aux_sym__multiple_types_repeat1, + STATE(2712), 1, + sym_comment, + ACTIONS(5787), 49, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + anon_sym_o_GT_GT, + 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, + [75429] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5791), 1, + sym__entry_separator, + ACTIONS(5793), 1, + sym_raw_string_begin, + ACTIONS(5795), 1, + anon_sym_RBRACK, + STATE(2711), 1, + aux_sym__multiple_types_repeat1, + STATE(2713), 1, sym_comment, - ACTIONS(1757), 5, + ACTIONS(5787), 49, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + anon_sym_o_GT_GT, + 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, + [75499] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5791), 1, + sym__entry_separator, + ACTIONS(5793), 1, + sym_raw_string_begin, + ACTIONS(5797), 1, + anon_sym_RBRACK, + STATE(2711), 1, + aux_sym__multiple_types_repeat1, + STATE(2714), 1, + sym_comment, + ACTIONS(5787), 49, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + anon_sym_o_GT_GT, + 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, + [75569] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2715), 1, + sym_comment, + ACTIONS(958), 4, sym_raw_string_begin, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1755), 48, + ACTIONS(956), 49, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -304270,6 +308423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_QMARK2, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -304293,6 +308447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -304310,21 +308465,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, - aux_sym__unquoted_in_list_token2, - [75259] = 4, - ACTIONS(251), 1, + [75633] = 12, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2677), 1, + ACTIONS(1562), 1, + aux_sym_unquoted_token2, + ACTIONS(3618), 1, + anon_sym_DOLLAR, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(5801), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5803), 1, + aux_sym__immediate_decimal_token5, + STATE(2716), 1, + sym_comment, + STATE(3267), 1, + sym__immediate_decimal, + ACTIONS(5799), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1823), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1558), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1560), 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_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [75713] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5791), 1, + sym__entry_separator, + ACTIONS(5793), 1, + sym_raw_string_begin, + ACTIONS(5805), 1, + anon_sym_RBRACK, + STATE(2711), 1, + aux_sym__multiple_types_repeat1, + STATE(2717), 1, sym_comment, - ACTIONS(1542), 18, + ACTIONS(5787), 49, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, 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, @@ -304333,21 +308587,44 @@ 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(1544), 35, + [75783] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5807), 1, + anon_sym_DOT, + ACTIONS(5809), 1, + aux_sym__immediate_decimal_token2, + STATE(2718), 1, + sym_comment, + ACTIONS(1703), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1701), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - 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, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -304357,12 +308634,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - 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, @@ -304371,27 +308657,276 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [75323] = 8, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [75851] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5708), 1, + STATE(2719), 1, + sym_comment, + ACTIONS(2338), 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2340), 47, + sym_raw_string_begin, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + 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, + [75915] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2720), 1, + sym_comment, + ACTIONS(5651), 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5653), 47, + sym_raw_string_begin, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + 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, + [75979] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2721), 1, + sym_comment, + 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2346), 47, + sym_raw_string_begin, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + 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, + [76043] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + ACTIONS(3618), 1, + anon_sym_DOLLAR, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(5801), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5803), 1, + aux_sym__immediate_decimal_token5, + STATE(2722), 1, + sym_comment, + STATE(3263), 1, + sym__immediate_decimal, + ACTIONS(5799), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1780), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1441), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1455), 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_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [76123] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5706), 1, anon_sym_DOT2, - STATE(2678), 1, + STATE(2723), 1, sym_comment, - STATE(2782), 1, + STATE(2814), 1, aux_sym_cell_path_repeat1, - STATE(2930), 1, + STATE(2939), 1, sym_path, STATE(2976), 1, sym_cell_path, - ACTIONS(1917), 6, + ACTIONS(1939), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1919), 43, + ACTIONS(1941), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -304435,27 +308970,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75395] = 8, - ACTIONS(251), 1, + [76195] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5708), 1, + ACTIONS(5706), 1, anon_sym_DOT2, - STATE(2679), 1, + STATE(2724), 1, sym_comment, - STATE(2782), 1, + STATE(2814), 1, aux_sym_cell_path_repeat1, - STATE(2930), 1, + STATE(2939), 1, sym_path, STATE(2977), 1, sym_cell_path, - ACTIONS(1925), 6, + ACTIONS(1909), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1927), 43, + ACTIONS(1911), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -304499,27 +309034,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75467] = 8, - ACTIONS(251), 1, + [76267] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5708), 1, + STATE(2725), 1, + sym_comment, + ACTIONS(964), 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(966), 47, + sym_raw_string_begin, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + 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, + [76331] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5706), 1, anon_sym_DOT2, - STATE(2680), 1, + STATE(2726), 1, sym_comment, - STATE(2782), 1, + STATE(2814), 1, aux_sym_cell_path_repeat1, - STATE(2930), 1, + STATE(2939), 1, sym_path, - STATE(2978), 1, + STATE(3006), 1, sym_cell_path, - ACTIONS(1929), 6, + ACTIONS(929), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1931), 43, + ACTIONS(931), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -304563,27 +309158,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75539] = 8, - ACTIONS(251), 1, + [76403] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5708), 1, + ACTIONS(5706), 1, anon_sym_DOT2, - STATE(2681), 1, + STATE(2727), 1, sym_comment, - STATE(2782), 1, + STATE(2814), 1, aux_sym_cell_path_repeat1, - STATE(2930), 1, + STATE(2939), 1, sym_path, - STATE(2979), 1, + STATE(3041), 1, sym_cell_path, - ACTIONS(1933), 6, + ACTIONS(1945), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1935), 43, + ACTIONS(1947), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -304627,28 +309222,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75611] = 8, - ACTIONS(251), 1, + [76475] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2728), 1, + sym_comment, + ACTIONS(2441), 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2443), 47, + sym_raw_string_begin, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + 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, + [76539] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5811), 1, + anon_sym_QMARK2, + STATE(2729), 1, + sym_comment, + ACTIONS(952), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(950), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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_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, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + 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, + [76605] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5813), 1, + anon_sym_QMARK2, + STATE(2730), 1, + sym_comment, + ACTIONS(970), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(968), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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_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, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + 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, + [76671] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5708), 1, - anon_sym_DOT2, - STATE(2682), 1, + STATE(2731), 1, sym_comment, - STATE(2782), 1, - aux_sym_cell_path_repeat1, - STATE(2930), 1, - sym_path, - STATE(2980), 1, - sym_cell_path, - ACTIONS(1937), 6, + ACTIONS(5647), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1939), 43, + ACTIONS(5649), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -304683,7 +309453,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -304691,27 +309464,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75683] = 8, - ACTIONS(251), 1, + [76735] = 30, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(3444), 1, + anon_sym_COLON2, + ACTIONS(3830), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3832), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3834), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3836), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5273), 1, + sym_val_date, + ACTIONS(5605), 1, + anon_sym_DQUOTE, + ACTIONS(5609), 1, + sym_raw_string_begin, ACTIONS(5708), 1, + anon_sym_LPAREN, + ACTIONS(5710), 1, + anon_sym_DOLLAR, + ACTIONS(5712), 1, + anon_sym_DOT_DOT, + ACTIONS(5718), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5720), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5722), 1, + aux_sym_unquoted_token1, + STATE(2606), 1, + sym__inter_single_quotes, + STATE(2608), 1, + sym__inter_double_quotes, + STATE(2732), 1, + sym_comment, + STATE(5726), 1, + sym__val_number_decimal, + STATE(7494), 1, + sym_val_bool, + STATE(7595), 1, + sym__unquoted_anonymous_prefix, + STATE(7628), 1, + sym__val_range, + ACTIONS(3828), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5607), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5714), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(2610), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5716), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(1711), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2830), 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(2832), 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, + [76851] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5706), 1, anon_sym_DOT2, - STATE(2683), 1, + STATE(2733), 1, sym_comment, - STATE(2782), 1, + STATE(2814), 1, aux_sym_cell_path_repeat1, - STATE(2930), 1, + STATE(2939), 1, sym_path, STATE(2981), 1, sym_cell_path, - ACTIONS(1945), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1947), 43, + ACTIONS(1841), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -304755,27 +309614,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75755] = 8, - ACTIONS(251), 1, + [76923] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5708), 1, + ACTIONS(5706), 1, anon_sym_DOT2, - STATE(2684), 1, + STATE(2734), 1, sym_comment, - STATE(2782), 1, + STATE(2814), 1, aux_sym_cell_path_repeat1, - STATE(2930), 1, + STATE(2939), 1, sym_path, STATE(2982), 1, sym_cell_path, - ACTIONS(1949), 6, + 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1951), 43, + ACTIONS(1849), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -304819,27 +309678,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75827] = 8, - ACTIONS(251), 1, + [76995] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5708), 1, + ACTIONS(5706), 1, anon_sym_DOT2, - STATE(2685), 1, + STATE(2735), 1, sym_comment, - STATE(2782), 1, + STATE(2814), 1, aux_sym_cell_path_repeat1, - STATE(2930), 1, + STATE(2939), 1, sym_path, - STATE(2983), 1, + STATE(2993), 1, sym_cell_path, - ACTIONS(1953), 6, + ACTIONS(1853), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1955), 43, + ACTIONS(1855), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -304883,28 +309742,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75899] = 8, - ACTIONS(251), 1, + [77067] = 31, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5708), 1, - anon_sym_DOT2, - STATE(2686), 1, + ACTIONS(1258), 1, + anon_sym_LPAREN, + ACTIONS(1272), 1, + anon_sym_DQUOTE, + ACTIONS(1276), 1, + sym_raw_string_begin, + ACTIONS(3444), 1, + anon_sym_COLON2, + ACTIONS(3512), 1, + anon_sym_DOLLAR, + ACTIONS(3538), 1, + aux_sym_unquoted_token1, + ACTIONS(3830), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3832), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3834), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3836), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4091), 1, + anon_sym_DOT_DOT, + ACTIONS(5273), 1, + sym_val_date, + STATE(1875), 1, + sym__inter_single_quotes, + STATE(1877), 1, + sym__inter_double_quotes, + STATE(2736), 1, sym_comment, - STATE(2782), 1, - aux_sym_cell_path_repeat1, - STATE(2930), 1, - sym_path, - STATE(2984), 1, - sym_cell_path, - ACTIONS(1957), 6, + STATE(5713), 1, + sym__val_number_decimal, + STATE(6209), 1, + sym_unquoted, + STATE(7494), 1, + sym_val_bool, + STATE(7649), 1, + sym__unquoted_anonymous_prefix, + STATE(7833), 1, + sym__val_range, + ACTIONS(1274), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3828), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4093), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(3793), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5271), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(6208), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(2830), 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(2832), 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, + [77185] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2737), 1, + sym_comment, + ACTIONS(946), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1959), 43, + ACTIONS(948), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -304939,7 +309878,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -304947,27 +309889,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75971] = 8, - ACTIONS(251), 1, + [77249] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5708), 1, + ACTIONS(5706), 1, anon_sym_DOT2, - STATE(2687), 1, + STATE(2738), 1, sym_comment, - STATE(2782), 1, + STATE(2814), 1, aux_sym_cell_path_repeat1, - STATE(2930), 1, + STATE(2939), 1, sym_path, - STATE(2985), 1, + STATE(2996), 1, sym_cell_path, - ACTIONS(1961), 6, + ACTIONS(1869), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1963), 43, + ACTIONS(1871), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -305011,27 +309953,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [76043] = 8, - ACTIONS(251), 1, + [77321] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5708), 1, + ACTIONS(5706), 1, anon_sym_DOT2, - STATE(2688), 1, + STATE(2739), 1, sym_comment, - STATE(2782), 1, + STATE(2814), 1, aux_sym_cell_path_repeat1, - STATE(2930), 1, + STATE(2939), 1, sym_path, - STATE(2986), 1, + STATE(3015), 1, sym_cell_path, - ACTIONS(1965), 6, + ACTIONS(1877), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1967), 43, + ACTIONS(1879), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -305075,18 +310017,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [76115] = 8, - ACTIONS(251), 1, + [77393] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5708), 1, + ACTIONS(5815), 1, + aux_sym__immediate_decimal_token2, + STATE(2740), 1, + sym_comment, + ACTIONS(1512), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, anon_sym_DOT2, - STATE(2689), 1, + ACTIONS(1514), 44, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [77459] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5706), 1, + anon_sym_DOT2, + STATE(2741), 1, sym_comment, - STATE(2782), 1, + STATE(2814), 1, aux_sym_cell_path_repeat1, - STATE(2930), 1, + STATE(2939), 1, sym_path, - STATE(2987), 1, + STATE(3026), 1, sym_cell_path, ACTIONS(1969), 6, aux_sym_cmd_identifier_token1, @@ -305139,27 +310142,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [76187] = 8, - ACTIONS(251), 1, + [77531] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5708), 1, + ACTIONS(5706), 1, anon_sym_DOT2, - STATE(2690), 1, + STATE(2742), 1, sym_comment, - STATE(2782), 1, + STATE(2814), 1, aux_sym_cell_path_repeat1, - STATE(2930), 1, + STATE(2939), 1, sym_path, - STATE(2988), 1, + STATE(3027), 1, sym_cell_path, - ACTIONS(1979), 6, + ACTIONS(1833), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1981), 43, + ACTIONS(1835), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -305203,26 +310206,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [76259] = 8, + [77603] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1814), 1, - anon_sym_LPAREN2, - ACTIONS(1822), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5714), 1, - anon_sym_DOT_DOT2, - STATE(2691), 1, - sym_comment, - ACTIONS(1820), 2, + ACTIONS(5819), 1, + anon_sym_RBRACK, + ACTIONS(5822), 1, + anon_sym_DOT2, + ACTIONS(5824), 1, sym_raw_string_begin, + STATE(2743), 1, + sym_comment, + STATE(5708), 1, + aux_sym_cell_path_repeat1, + STATE(6267), 1, + sym_path, + STATE(6945), 1, + sym_cell_path, + ACTIONS(1945), 2, sym__entry_separator, - ACTIONS(5716), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1812), 46, + sym__table_head_separator, + ACTIONS(5817), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -305267,27 +310272,27 @@ 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, - [76331] = 8, - ACTIONS(251), 1, + [77679] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5708), 1, + ACTIONS(5706), 1, anon_sym_DOT2, - STATE(2692), 1, + STATE(2744), 1, sym_comment, - STATE(2782), 1, + STATE(2814), 1, aux_sym_cell_path_repeat1, - STATE(2930), 1, + STATE(2939), 1, sym_path, - STATE(2989), 1, + STATE(3029), 1, sym_cell_path, - ACTIONS(1905), 6, + ACTIONS(1861), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1907), 43, + ACTIONS(1863), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -305331,27 +310336,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [76403] = 8, - ACTIONS(251), 1, + [77751] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5708), 1, + ACTIONS(5706), 1, anon_sym_DOT2, - STATE(2693), 1, + STATE(2745), 1, sym_comment, - STATE(2782), 1, + STATE(2814), 1, aux_sym_cell_path_repeat1, - STATE(2930), 1, + STATE(2939), 1, sym_path, - STATE(2990), 1, + STATE(3038), 1, sym_cell_path, - ACTIONS(1983), 6, + ACTIONS(1873), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1985), 43, + ACTIONS(1875), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -305395,21 +310400,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [76475] = 4, - ACTIONS(251), 1, + [77823] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2694), 1, + ACTIONS(5706), 1, + anon_sym_DOT2, + STATE(2746), 1, sym_comment, - ACTIONS(2370), 6, + STATE(2814), 1, + aux_sym_cell_path_repeat1, + STATE(2939), 1, + sym_path, + STATE(3040), 1, + sym_cell_path, + ACTIONS(1881), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2372), 47, + ACTIONS(1883), 43, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -305444,10 +310456,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -305455,21 +310464,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [76539] = 4, - ACTIONS(251), 1, + [77895] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2695), 1, + ACTIONS(5706), 1, + anon_sym_DOT2, + STATE(2747), 1, sym_comment, - ACTIONS(2374), 6, + STATE(2814), 1, + aux_sym_cell_path_repeat1, + STATE(2939), 1, + sym_path, + STATE(3054), 1, + sym_cell_path, + ACTIONS(1885), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2376), 47, + ACTIONS(1887), 43, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -305504,215 +310520,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - 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, - [76603] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5720), 1, - anon_sym_RBRACK, - ACTIONS(5722), 1, - sym__entry_separator, - ACTIONS(5724), 1, - sym_raw_string_begin, - STATE(2696), 1, - sym_comment, - STATE(2718), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5718), 49, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - 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, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - anon_sym_o_GT_GT, - 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, - [76673] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2697), 1, - sym_comment, - ACTIONS(1713), 5, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1711), 48, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + 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, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [76737] = 4, - ACTIONS(3), 1, + [77967] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2698), 1, - sym_comment, - ACTIONS(974), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(972), 49, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - 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, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(5706), 1, anon_sym_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, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - 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, - [76801] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2699), 1, + STATE(2748), 1, sym_comment, - ACTIONS(980), 6, + STATE(2814), 1, + aux_sym_cell_path_repeat1, + STATE(2939), 1, + sym_path, + STATE(3013), 1, + sym_cell_path, + ACTIONS(1889), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(982), 47, + ACTIONS(1891), 43, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -305747,306 +310584,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - 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, - [76865] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2700), 1, - sym_comment, - ACTIONS(1785), 5, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1783), 48, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - 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, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [76929] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2701), 1, - sym_comment, - ACTIONS(1837), 5, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1835), 48, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - 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, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [76993] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5726), 1, - anon_sym_DOT_DOT2, - ACTIONS(5730), 1, - sym_filesize_unit, - ACTIONS(5732), 1, - sym_duration_unit, - ACTIONS(5734), 1, - aux_sym__unquoted_in_list_token2, - STATE(2702), 1, - sym_comment, - ACTIONS(5728), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1638), 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(1650), 31, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [77067] = 33, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2594), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2596), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3100), 1, - anon_sym_LPAREN, - ACTIONS(3102), 1, - anon_sym_DOLLAR, - ACTIONS(3114), 1, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, - ACTIONS(3116), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3118), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3120), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3126), 1, - anon_sym_0b, - ACTIONS(3132), 1, anon_sym_DQUOTE, - ACTIONS(3138), 1, - sym_raw_string_begin, - ACTIONS(3142), 1, - anon_sym_LBRACK, - ACTIONS(5736), 1, - anon_sym_LBRACE, - ACTIONS(5738), 1, - anon_sym_DOT_DOT, - ACTIONS(5742), 1, - anon_sym_null, - ACTIONS(5746), 1, - sym_val_date, - STATE(2703), 1, - sym_comment, - STATE(5634), 1, - sym__val_number_decimal, - STATE(5708), 1, - sym_val_variable, - STATE(6073), 1, - sym_expr_parenthesized, - STATE(6792), 1, - sym__inter_single_quotes, - STATE(6795), 1, - sym__inter_double_quotes, - STATE(7097), 1, - sym__val_number, - STATE(7455), 1, - sym_block, - ACTIONS(3128), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3134), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5740), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5744), 2, - anon_sym_true, - anon_sym_false, - STATE(5195), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(7430), 2, - sym_val_range, - sym__value, - ACTIONS(3122), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(7049), 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, - [77189] = 4, - ACTIONS(251), 1, + [78039] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2704), 1, + ACTIONS(5706), 1, + anon_sym_DOT2, + STATE(2749), 1, sym_comment, - ACTIONS(976), 6, + STATE(2814), 1, + aux_sym_cell_path_repeat1, + STATE(2939), 1, + sym_path, + STATE(3049), 1, + sym_cell_path, + ACTIONS(1897), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(978), 47, + ACTIONS(1899), 43, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -306081,10 +310648,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -306092,81 +310656,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77253] = 4, - ACTIONS(3), 1, + [78111] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2705), 1, - sym_comment, - ACTIONS(978), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(976), 49, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - 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, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(5706), 1, anon_sym_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, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - 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, - [77317] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2706), 1, + STATE(2750), 1, sym_comment, - ACTIONS(1719), 6, + STATE(2814), 1, + aux_sym_cell_path_repeat1, + STATE(2939), 1, + sym_path, + STATE(2963), 1, + sym_cell_path, + ACTIONS(1901), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1721), 47, + ACTIONS(1903), 43, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -306201,10 +310712,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -306212,27 +310720,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77381] = 8, - ACTIONS(251), 1, + [78183] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5708), 1, + ACTIONS(5706), 1, anon_sym_DOT2, - STATE(2707), 1, + STATE(2751), 1, sym_comment, - STATE(2782), 1, + STATE(2814), 1, aux_sym_cell_path_repeat1, - STATE(2930), 1, + STATE(2939), 1, sym_path, - STATE(3015), 1, + STATE(2974), 1, sym_cell_path, - ACTIONS(1895), 6, + ACTIONS(1905), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1897), 43, + ACTIONS(1907), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -306276,19 +310784,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77453] = 4, - ACTIONS(251), 1, + [78255] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2708), 1, + STATE(2752), 1, sym_comment, - ACTIONS(5687), 6, + ACTIONS(986), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5689), 47, + ACTIONS(988), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -306336,82 +310844,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77517] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5703), 1, - anon_sym_DOT2, - STATE(2709), 1, - sym_comment, - STATE(2711), 1, - aux_sym_cell_path_repeat1, - STATE(2824), 1, - sym_path, - ACTIONS(949), 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(951), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [77587] = 4, - ACTIONS(251), 1, + [78319] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2710), 1, + STATE(2753), 1, sym_comment, - ACTIONS(5691), 6, + ACTIONS(1676), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5693), 47, + ACTIONS(1678), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -306452,120 +310897,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_STAR2, - 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, - [77651] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5748), 1, - anon_sym_DOT2, - STATE(2824), 1, - sym_path, - STATE(2711), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(953), 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(955), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [77719] = 6, - ACTIONS(3), 1, + 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, + [78383] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5751), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5753), 1, - aux_sym__immediate_decimal_token2, - STATE(2712), 1, + STATE(2754), 1, sym_comment, - ACTIONS(1713), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1711), 47, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(1512), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, 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, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, 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, @@ -306574,42 +310926,21 @@ 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, - [77787] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5722), 1, - sym__entry_separator, - ACTIONS(5724), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1514), 35, sym_raw_string_begin, - ACTIONS(5755), 1, - anon_sym_RBRACK, - STATE(2713), 1, - sym_comment, - STATE(2718), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5718), 49, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, - 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, @@ -306619,24 +310950,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + 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, - 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, @@ -306645,29 +310964,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, - [77857] = 8, - ACTIONS(251), 1, + [78447] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5708), 1, - anon_sym_DOT2, - STATE(2714), 1, + STATE(2755), 1, sym_comment, - STATE(2782), 1, - aux_sym_cell_path_repeat1, - STATE(2930), 1, - sym_path, - STATE(2973), 1, - sym_cell_path, - ACTIONS(1891), 6, + ACTIONS(5669), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1893), 43, + ACTIONS(5671), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -306702,7 +311013,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -306710,19 +311024,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77929] = 4, - ACTIONS(251), 1, + [78511] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2715), 1, + STATE(2756), 1, sym_comment, - ACTIONS(2382), 6, + ACTIONS(2010), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2384), 47, + ACTIONS(2012), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -306770,206 +311084,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77993] = 33, - ACTIONS(251), 1, + [78575] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2594), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2596), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3100), 1, - anon_sym_LPAREN, - ACTIONS(3102), 1, - anon_sym_DOLLAR, - ACTIONS(3114), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3116), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3118), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3120), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3126), 1, - anon_sym_0b, - ACTIONS(3132), 1, - anon_sym_DQUOTE, - ACTIONS(3138), 1, - sym_raw_string_begin, - ACTIONS(3142), 1, - anon_sym_LBRACK, - ACTIONS(5736), 1, - anon_sym_LBRACE, - ACTIONS(5738), 1, - anon_sym_DOT_DOT, - ACTIONS(5742), 1, - anon_sym_null, - ACTIONS(5746), 1, - sym_val_date, - STATE(2716), 1, + STATE(2757), 1, sym_comment, - STATE(5634), 1, - sym__val_number_decimal, - STATE(5708), 1, - sym_val_variable, - STATE(6076), 1, - sym_expr_parenthesized, - STATE(6792), 1, - sym__inter_single_quotes, - STATE(6795), 1, - sym__inter_double_quotes, - STATE(7097), 1, - sym__val_number, - STATE(7324), 1, - sym_block, - ACTIONS(3128), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3134), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5740), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5744), 2, - anon_sym_true, - anon_sym_false, - STATE(5195), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(7333), 2, - sym_val_range, - sym__value, - ACTIONS(3122), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(7049), 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, - [78115] = 31, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1272), 1, - anon_sym_LPAREN, - ACTIONS(1286), 1, - anon_sym_DQUOTE, - ACTIONS(1290), 1, + ACTIONS(2461), 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2463), 47, sym_raw_string_begin, - ACTIONS(3420), 1, - anon_sym_COLON2, - ACTIONS(3464), 1, - anon_sym_DOLLAR, - ACTIONS(3490), 1, - aux_sym_unquoted_token1, - ACTIONS(3958), 1, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, - ACTIONS(3960), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3962), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3964), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4102), 1, - anon_sym_DOT_DOT, - ACTIONS(5200), 1, - sym_val_date, - STATE(2034), 1, - sym__inter_single_quotes, - STATE(2035), 1, - sym__inter_double_quotes, - STATE(2717), 1, - sym_comment, - STATE(5825), 1, - sym__val_number_decimal, - STATE(6699), 1, - sym_unquoted, - STATE(7519), 1, - sym__val_range, - STATE(7624), 1, - sym_val_bool, - STATE(7789), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(1288), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3956), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4104), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(3668), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5198), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(6698), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(2664), 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(2666), 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, - [78233] = 5, + [78639] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2487), 1, + ACTIONS(5826), 1, + anon_sym_DOT, + ACTIONS(5828), 1, + aux_sym__immediate_decimal_token2, + STATE(2758), 1, + sym_comment, + ACTIONS(1703), 3, sym_raw_string_begin, - ACTIONS(5757), 1, + anon_sym_LPAREN2, sym__entry_separator, - STATE(2718), 2, - sym_comment, - aux_sym__multiple_types_repeat1, - ACTIONS(2482), 50, + ACTIONS(1701), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -306987,9 +311187,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, @@ -307007,32 +311204,31 @@ 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, - [78299] = 7, + aux_sym__unquoted_in_list_token2, + [78706] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5722), 1, - sym__entry_separator, - ACTIONS(5724), 1, - sym_raw_string_begin, - ACTIONS(5760), 1, - anon_sym_RBRACK, - STATE(2718), 1, - aux_sym__multiple_types_repeat1, - STATE(2719), 1, + STATE(2759), 1, sym_comment, - ACTIONS(5718), 49, + ACTIONS(984), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(982), 48, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, 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_null, anon_sym_true, anon_sym_false, - anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -307050,9 +311246,7 @@ 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_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -307070,32 +311264,35 @@ 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, - [78369] = 7, + [78769] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5722), 1, - sym__entry_separator, - ACTIONS(5724), 1, - sym_raw_string_begin, - ACTIONS(5762), 1, - anon_sym_RBRACK, - STATE(2718), 1, - aux_sym__multiple_types_repeat1, - STATE(2720), 1, + ACTIONS(5830), 1, + anon_sym_DOT2, + STATE(2760), 1, sym_comment, - ACTIONS(5718), 49, + STATE(2879), 1, + aux_sym_cell_path_repeat1, + STATE(3043), 1, + sym_path, + STATE(3140), 1, + sym_cell_path, + ACTIONS(931), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(929), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -307113,9 +311310,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, @@ -307133,24 +311327,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, - [78439] = 8, + [78840] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1804), 1, - anon_sym_LPAREN2, - ACTIONS(5764), 1, - anon_sym_DOT_DOT2, - STATE(2721), 1, + ACTIONS(5830), 1, + anon_sym_DOT2, + STATE(2761), 1, sym_comment, - ACTIONS(1810), 2, + STATE(2879), 1, + aux_sym_cell_path_repeat1, + STATE(3043), 1, + sym_path, + STATE(3065), 1, + sym_cell_path, + ACTIONS(1911), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(5766), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1802), 46, + ACTIONS(1909), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -307197,32 +311390,44 @@ 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, - [78511] = 4, - ACTIONS(3), 1, + [78911] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2722), 1, + STATE(2762), 1, sym_comment, - ACTIONS(986), 4, + ACTIONS(946), 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_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, + aux_sym__unquoted_in_list_token1, + ACTIONS(948), 34, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(984), 49, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -307232,22 +311437,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - 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_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, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -307256,142 +311449,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_in_list_token1, - [78575] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2723), 1, - sym_comment, - ACTIONS(4994), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(4992), 47, - sym_raw_string_begin, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - 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, - [78639] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2724), 1, - sym_comment, - ACTIONS(5699), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5701), 47, - sym_raw_string_begin, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - 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, - [78703] = 6, + [78974] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5768), 1, - anon_sym_DOT, - ACTIONS(5770), 1, - aux_sym__immediate_decimal_token2, - STATE(2725), 1, + ACTIONS(5830), 1, + anon_sym_DOT2, + STATE(2763), 1, sym_comment, - ACTIONS(1757), 4, + STATE(2879), 1, + aux_sym_cell_path_repeat1, + STATE(3043), 1, + sym_path, + STATE(3067), 1, + sym_cell_path, + ACTIONS(1841), 2, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1755), 47, + ACTIONS(1839), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -307399,7 +311473,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -307439,19 +311512,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, - [78771] = 5, + [79045] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5772), 1, - anon_sym_QMARK2, - STATE(2726), 1, + ACTIONS(5830), 1, + anon_sym_DOT2, + STATE(2764), 1, sym_comment, - ACTIONS(968), 4, + STATE(2879), 1, + aux_sym_cell_path_repeat1, + STATE(3043), 1, + sym_path, + STATE(3076), 1, + sym_cell_path, + ACTIONS(1849), 2, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(966), 48, + ACTIONS(1847), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -307459,7 +311536,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -307482,7 +311558,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -307500,19 +311575,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, - [78837] = 5, + [79116] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5774), 1, - anon_sym_QMARK2, - STATE(2727), 1, + ACTIONS(5830), 1, + anon_sym_DOT2, + STATE(2765), 1, sym_comment, - ACTIONS(962), 4, + STATE(2879), 1, + aux_sym_cell_path_repeat1, + STATE(3043), 1, + sym_path, + STATE(3087), 1, + sym_cell_path, + ACTIONS(1855), 2, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(960), 48, + ACTIONS(1853), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -307520,7 +311599,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -307543,7 +311621,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -307561,109 +311638,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, - [78903] = 4, - ACTIONS(251), 1, + [79187] = 29, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2728), 1, - sym_comment, - ACTIONS(984), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(986), 47, - sym_raw_string_begin, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + ACTIONS(3830), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3832), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3834), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3836), 1, aux_sym__val_number_decimal_token4, + ACTIONS(5273), 1, + sym_val_date, + ACTIONS(5683), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [78967] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2729), 1, - sym_comment, - ACTIONS(982), 4, + ACTIONS(5687), 1, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(980), 49, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5832), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(5834), 1, anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(5836), 1, anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, + ACTIONS(5842), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5844), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5846), 1, + aux_sym_unquoted_token1, + STATE(2676), 1, + sym__inter_single_quotes, + STATE(2728), 1, + sym__inter_double_quotes, + STATE(2766), 1, + sym_comment, + STATE(5890), 1, + sym__val_number_decimal, + STATE(7493), 1, + sym__val_range, + STATE(7494), 1, + sym_val_bool, + STATE(7840), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3828), 2, anon_sym_true, anon_sym_false, - 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, + ACTIONS(5685), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5838), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(2705), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5840), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - 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_DOT2, + STATE(1760), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2830), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -307672,6 +311712,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(2832), 9, + anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -307680,77 +311722,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, - [79031] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2730), 1, - sym_comment, - ACTIONS(972), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(974), 47, - sym_raw_string_begin, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - 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, - [79095] = 6, - ACTIONS(251), 1, + [79300] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5776), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5778), 1, - aux_sym__immediate_decimal_token2, - STATE(2731), 1, + ACTIONS(5848), 1, + anon_sym_QMARK2, + STATE(2767), 1, sym_comment, - ACTIONS(1711), 18, + ACTIONS(950), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -307759,6 +311738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -307768,8 +311748,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(1713), 33, + ACTIONS(952), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -307803,74 +311782,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, - [79163] = 30, - ACTIONS(251), 1, + [79365] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3420), 1, - anon_sym_COLON2, - ACTIONS(3958), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3960), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3962), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3964), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5200), 1, - sym_val_date, - ACTIONS(5605), 1, - anon_sym_DQUOTE, - ACTIONS(5609), 1, + ACTIONS(5830), 1, + anon_sym_DOT2, + STATE(2768), 1, + sym_comment, + STATE(2879), 1, + aux_sym_cell_path_repeat1, + STATE(3043), 1, + sym_path, + STATE(3093), 1, + sym_cell_path, + ACTIONS(1871), 2, sym_raw_string_begin, - ACTIONS(5780), 1, + sym__entry_separator, + ACTIONS(1869), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(5782), 1, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(5784), 1, + anon_sym_LBRACE, anon_sym_DOT_DOT, - ACTIONS(5790), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5792), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5794), 1, - aux_sym_unquoted_token1, - STATE(2612), 1, - sym__inter_single_quotes, - STATE(2613), 1, - sym__inter_double_quotes, - STATE(2732), 1, - sym_comment, - STATE(5786), 1, - sym__val_number_decimal, - STATE(7624), 1, - sym_val_bool, - STATE(7717), 1, - sym__val_range, - STATE(7722), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(3956), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5607), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5786), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(2624), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5788), 3, + anon_sym_null, + anon_sym_true, + anon_sym_false, + 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, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1626), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2664), 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, @@ -307879,8 +311836,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(2666), 9, - anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -307889,108 +311844,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, - [79279] = 8, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [79436] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5708), 1, + ACTIONS(5830), 1, anon_sym_DOT2, - STATE(2733), 1, + STATE(2769), 1, sym_comment, - STATE(2782), 1, + STATE(2879), 1, aux_sym_cell_path_repeat1, - STATE(2930), 1, + STATE(3043), 1, sym_path, - STATE(2958), 1, + STATE(3145), 1, sym_cell_path, - ACTIONS(1921), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1923), 43, + ACTIONS(1879), 2, sym_raw_string_begin, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - 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, - [79351] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5796), 1, - sym__newline, - STATE(2734), 1, - sym_comment, - ACTIONS(5799), 2, + sym__entry_separator, + ACTIONS(1877), 46, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_COMMA, - ACTIONS(1311), 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, - 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(1309), 35, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - 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, @@ -308000,89 +311884,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + 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_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [79419] = 30, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3442), 1, - anon_sym_COLON2, - ACTIONS(3958), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3960), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3962), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3964), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5200), 1, - sym_val_date, - ACTIONS(5605), 1, - anon_sym_DQUOTE, - ACTIONS(5609), 1, - sym_raw_string_begin, - ACTIONS(5780), 1, - anon_sym_LPAREN, - ACTIONS(5782), 1, - anon_sym_DOLLAR, - ACTIONS(5784), 1, - anon_sym_DOT_DOT, - ACTIONS(5790), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5792), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5794), 1, - aux_sym_unquoted_token1, - STATE(2612), 1, - sym__inter_single_quotes, - STATE(2613), 1, - sym__inter_double_quotes, - STATE(2735), 1, - sym_comment, - STATE(5786), 1, - sym__val_number_decimal, - STATE(7624), 1, - sym_val_bool, - STATE(7717), 1, - sym__val_range, - STATE(7722), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(3956), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5607), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5786), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(2624), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5788), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(1626), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2664), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -308091,8 +311899,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(2666), 9, - anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -308101,75 +311907,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, - [79535] = 31, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [79507] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1272), 1, - anon_sym_LPAREN, - ACTIONS(1286), 1, - anon_sym_DQUOTE, - ACTIONS(1290), 1, - sym_raw_string_begin, - ACTIONS(3442), 1, - anon_sym_COLON2, - ACTIONS(3464), 1, - anon_sym_DOLLAR, - ACTIONS(3490), 1, - aux_sym_unquoted_token1, - ACTIONS(3958), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3960), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3962), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3964), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4102), 1, - anon_sym_DOT_DOT, - ACTIONS(5200), 1, - sym_val_date, - STATE(2034), 1, - sym__inter_single_quotes, - STATE(2035), 1, - sym__inter_double_quotes, - STATE(2736), 1, + ACTIONS(5830), 1, + anon_sym_DOT2, + STATE(2770), 1, sym_comment, - STATE(5825), 1, - sym__val_number_decimal, - STATE(6699), 1, - sym_unquoted, - STATE(7519), 1, - sym__val_range, - STATE(7624), 1, - sym_val_bool, - STATE(7789), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(1288), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3956), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4104), 2, + STATE(2879), 1, + aux_sym_cell_path_repeat1, + STATE(3043), 1, + sym_path, + STATE(3108), 1, + sym_cell_path, + ACTIONS(1971), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1969), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(3668), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5198), 3, + anon_sym_null, + anon_sym_true, + anon_sym_false, + 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, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6698), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(2664), 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, @@ -308178,8 +311962,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(2666), 9, - anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -308188,21 +311970,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, - [79653] = 4, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [79578] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2737), 1, + ACTIONS(5850), 1, + anon_sym_DOT2, + STATE(2939), 1, + sym_path, + STATE(2771), 2, sym_comment, - ACTIONS(5683), 6, + aux_sym_cell_path_repeat1, + ACTIONS(935), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5685), 47, + ACTIONS(937), 43, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -308237,10 +312024,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -308248,440 +312032,323 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79717] = 4, - ACTIONS(251), 1, + [79645] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2738), 1, + ACTIONS(5853), 1, + anon_sym_DOT, + ACTIONS(5855), 1, + aux_sym__immediate_decimal_token2, + STATE(2772), 1, sym_comment, - ACTIONS(1000), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1002), 47, - sym_raw_string_begin, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(1512), 8, + anon_sym_GT2, anon_sym_STAR2, - 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, - [79781] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2739), 1, - sym_comment, - ACTIONS(2366), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2368), 47, - sym_raw_string_begin, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1514), 42, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - 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, - [79845] = 4, - ACTIONS(251), 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, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [79712] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2740), 1, + ACTIONS(5830), 1, + anon_sym_DOT2, + STATE(2773), 1, sym_comment, - ACTIONS(2366), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2368), 47, + STATE(2879), 1, + aux_sym_cell_path_repeat1, + STATE(3043), 1, + sym_path, + STATE(3109), 1, + sym_cell_path, + ACTIONS(1835), 2, sym_raw_string_begin, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, + sym__entry_separator, + ACTIONS(1833), 46, anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79909] = 4, - ACTIONS(251), 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, + [79783] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2741), 1, + ACTIONS(5809), 1, + aux_sym__immediate_decimal_token2, + STATE(2774), 1, sym_comment, - ACTIONS(2015), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2017), 47, + ACTIONS(1703), 4, sym_raw_string_begin, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1701), 47, anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79973] = 8, - ACTIONS(251), 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, + [79848] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5708), 1, + ACTIONS(1947), 1, + sym__table_head_separator, + ACTIONS(5857), 1, anon_sym_DOT2, - STATE(2742), 1, + STATE(2775), 1, sym_comment, - STATE(2782), 1, + STATE(6422), 1, aux_sym_cell_path_repeat1, - STATE(2930), 1, + STATE(7324), 1, sym_path, - STATE(2970), 1, + STATE(7671), 1, sym_cell_path, - ACTIONS(1941), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1943), 43, - sym_raw_string_begin, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + ACTIONS(5817), 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(5824), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [80045] = 8, - ACTIONS(251), 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, + [79921] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5708), 1, + ACTIONS(5830), 1, anon_sym_DOT2, - STATE(2743), 1, + STATE(2776), 1, sym_comment, - STATE(2782), 1, + STATE(2879), 1, aux_sym_cell_path_repeat1, - STATE(2930), 1, + STATE(3043), 1, sym_path, - STATE(3017), 1, + STATE(3121), 1, sym_cell_path, - ACTIONS(943), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(945), 43, - sym_raw_string_begin, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - 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, - [80117] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2744), 1, - sym_comment, - ACTIONS(5675), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5677), 47, + ACTIONS(1933), 2, sym_raw_string_begin, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, + sym__entry_separator, + ACTIONS(1931), 46, anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [80181] = 4, - ACTIONS(251), 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, + [79992] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2745), 1, + STATE(2777), 1, sym_comment, - ACTIONS(1550), 18, + ACTIONS(956), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -308690,6 +312357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -308699,8 +312367,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(1552), 35, + ACTIONS(958), 34, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -308708,6 +312375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_null, @@ -308722,8 +312390,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -308736,153 +312402,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [80245] = 4, - ACTIONS(251), 1, + [80055] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2746), 1, + ACTIONS(5859), 1, + sym__newline, + STATE(2778), 2, sym_comment, - ACTIONS(5695), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5697), 47, + aux_sym_shebang_repeat1, + ACTIONS(1294), 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, + 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(1296), 35, sym_raw_string_begin, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [80309] = 4, - ACTIONS(251), 1, + 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, + [80120] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2747), 1, + ACTIONS(5862), 1, + aux_sym__immediate_decimal_token2, + STATE(2779), 1, sym_comment, - ACTIONS(4962), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(4960), 47, + ACTIONS(1768), 4, sym_raw_string_begin, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1766), 47, anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [80373] = 10, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, + [80185] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5803), 1, - anon_sym_RBRACK, - ACTIONS(5806), 1, - anon_sym_DOT2, - ACTIONS(5808), 1, - sym_raw_string_begin, - STATE(2748), 1, + STATE(2780), 1, sym_comment, - STATE(5922), 1, - aux_sym_cell_path_repeat1, - STATE(6614), 1, - sym_path, - STATE(6923), 1, - sym_cell_path, - ACTIONS(1895), 2, + ACTIONS(980), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - sym__table_head_separator, - ACTIONS(5801), 45, + ACTIONS(978), 48, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -308905,6 +312563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -308922,20 +312581,48 @@ 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, - [80449] = 4, - ACTIONS(251), 1, + [80248] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2749), 1, + STATE(2781), 1, sym_comment, - ACTIONS(1680), 18, + ACTIONS(976), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(974), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, 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_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -308944,21 +312631,45 @@ 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(1682), 35, + [80311] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5830), 1, + anon_sym_DOT2, + STATE(2782), 1, + sym_comment, + STATE(2879), 1, + aux_sym_cell_path_repeat1, + STATE(3043), 1, + sym_path, + STATE(3126), 1, + sym_cell_path, + ACTIONS(1863), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1861), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -308968,12 +312679,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - 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, @@ -308982,91 +312702,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [80513] = 4, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [80382] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2750), 1, + STATE(2783), 1, sym_comment, - ACTIONS(2378), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2380), 47, - sym_raw_string_begin, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1512), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + anon_sym_DOT2, + ACTIONS(1514), 44, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - 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, - [80577] = 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, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [80445] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2751), 1, + ACTIONS(5864), 1, + anon_sym_QMARK2, + STATE(2784), 1, sym_comment, - ACTIONS(990), 4, + ACTIONS(968), 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_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, + aux_sym__unquoted_in_list_token1, + ACTIONS(970), 33, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(988), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -309076,22 +312810,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - 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_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, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -309100,74 +312822,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, - [80640] = 30, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 1, + [80510] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1272), 1, - anon_sym_LPAREN, - ACTIONS(1286), 1, + ACTIONS(5866), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5868), 1, + aux_sym__immediate_decimal_token2, + STATE(2785), 1, + sym_comment, + ACTIONS(1504), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1506), 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_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [80577] = 30, + ACTIONS(107), 1, anon_sym_DQUOTE, - ACTIONS(1290), 1, + ACTIONS(111), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(113), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(121), 1, sym_raw_string_begin, - ACTIONS(3464), 1, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3482), 1, anon_sym_DOLLAR, - ACTIONS(3490), 1, + ACTIONS(3506), 1, aux_sym_unquoted_token1, - ACTIONS(3958), 1, + ACTIONS(3830), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3960), 1, + ACTIONS(3832), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3962), 1, + ACTIONS(3834), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3964), 1, + ACTIONS(3836), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4102), 1, + ACTIONS(4391), 1, anon_sym_DOT_DOT, - ACTIONS(5200), 1, + ACTIONS(5273), 1, sym_val_date, - STATE(2034), 1, - sym__inter_single_quotes, - STATE(2035), 1, + ACTIONS(5870), 1, + anon_sym_LPAREN, + STATE(2421), 1, sym__inter_double_quotes, - STATE(2752), 1, + STATE(2426), 1, + sym__inter_single_quotes, + STATE(2786), 1, sym_comment, - STATE(5825), 1, + STATE(5706), 1, sym__val_number_decimal, - STATE(6699), 1, + STATE(7126), 1, sym_unquoted, - STATE(7519), 1, - sym__val_range, - STATE(7624), 1, + STATE(7494), 1, sym_val_bool, - STATE(7789), 1, + STATE(7806), 1, + sym__val_range, + STATE(7809), 1, sym__unquoted_anonymous_prefix, - ACTIONS(1288), 2, + ACTIONS(109), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3956), 2, + ACTIONS(3828), 2, anon_sym_true, anon_sym_false, - ACTIONS(4104), 2, + ACTIONS(4393), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(3668), 2, + STATE(1605), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5198), 3, + ACTIONS(5289), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6698), 4, + STATE(7125), 4, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, - ACTIONS(2664), 8, + ACTIONS(2830), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -309176,7 +312958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2666), 9, + ACTIONS(2832), 9, anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -309186,12 +312968,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, - [80755] = 4, - ACTIONS(251), 1, + [80692] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2753), 1, + STATE(2787), 1, sym_comment, - ACTIONS(972), 18, + ACTIONS(964), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -309210,7 +312992,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(974), 34, + ACTIONS(966), 34, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -309245,72 +313027,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, - [80818] = 29, - ACTIONS(251), 1, + [80755] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3958), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3960), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3962), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3964), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5200), 1, - sym_val_date, - ACTIONS(5605), 1, - anon_sym_DQUOTE, - ACTIONS(5609), 1, + STATE(2788), 1, + sym_comment, + ACTIONS(2497), 2, sym_raw_string_begin, - ACTIONS(5780), 1, + sym__entry_separator, + ACTIONS(2495), 50, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(5782), 1, anon_sym_DOLLAR, - ACTIONS(5784), 1, + anon_sym_LBRACE, anon_sym_DOT_DOT, - ACTIONS(5790), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5792), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5794), 1, - aux_sym_unquoted_token1, - STATE(2612), 1, - sym__inter_single_quotes, - STATE(2613), 1, - sym__inter_double_quotes, - STATE(2754), 1, - sym_comment, - STATE(5786), 1, - sym__val_number_decimal, - STATE(7624), 1, - sym_val_bool, - STATE(7717), 1, - sym__val_range, - STATE(7722), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(3956), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5607), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5786), 2, + anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(2624), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5788), 3, + anon_sym_null, + anon_sym_true, + anon_sym_false, + 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, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1696), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2664), 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_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -309319,8 +313077,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(2666), 9, - anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -309329,27 +313085,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, - [80931] = 10, + aux_sym__unquoted_in_list_token1, + [80818] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1923), 1, - sym__entry_separator, - ACTIONS(5812), 1, - anon_sym_RBRACK, - ACTIONS(5815), 1, + ACTIONS(5830), 1, anon_sym_DOT2, - ACTIONS(5817), 1, - sym_raw_string_begin, - STATE(2755), 1, + STATE(2789), 1, sym_comment, - STATE(2858), 1, + STATE(2879), 1, aux_sym_cell_path_repeat1, - STATE(3003), 1, + STATE(3043), 1, sym_path, - STATE(3103), 1, + STATE(3127), 1, sym_cell_path, - ACTIONS(5810), 45, + ACTIONS(1875), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1873), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -309394,83 +313149,149 @@ 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, - [81006] = 5, - ACTIONS(251), 1, + [80889] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5712), 1, - aux_sym__immediate_decimal_token2, - STATE(2756), 1, + ACTIONS(1562), 1, + aux_sym_unquoted_token2, + ACTIONS(4484), 1, + anon_sym_DOLLAR, + ACTIONS(4486), 1, + anon_sym_LPAREN2, + ACTIONS(5874), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5876), 1, + aux_sym__immediate_decimal_token5, + STATE(2790), 1, sym_comment, - ACTIONS(1755), 18, - anon_sym_DOT_DOT, + STATE(3288), 1, + sym__immediate_decimal, + ACTIONS(5872), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2513), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1558), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1560), 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_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [80968] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2791), 1, + sym_comment, + ACTIONS(1689), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, 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(1757), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, + sym_filesize_unit, + anon_sym_DOT2, + ACTIONS(1691), 44, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_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_DASH2, + anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [81071] = 8, + sym_duration_unit, + [81031] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5815), 1, + ACTIONS(5830), 1, anon_sym_DOT2, - STATE(2757), 1, + STATE(2792), 1, sym_comment, - STATE(2858), 1, + STATE(2879), 1, aux_sym_cell_path_repeat1, - STATE(3003), 1, + STATE(3043), 1, sym_path, - STATE(3079), 1, + STATE(3130), 1, sym_cell_path, - ACTIONS(1911), 2, + ACTIONS(1883), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1909), 46, + ACTIONS(1881), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -309517,83 +313338,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, - [81142] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5819), 1, - aux_sym__immediate_decimal_token2, - STATE(2758), 1, - sym_comment, - ACTIONS(1783), 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(1785), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [81207] = 8, + [81102] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5815), 1, + ACTIONS(5830), 1, anon_sym_DOT2, - STATE(2759), 1, + STATE(2793), 1, sym_comment, - STATE(2858), 1, + STATE(2879), 1, aux_sym_cell_path_repeat1, - STATE(3003), 1, + STATE(3043), 1, sym_path, - STATE(3081), 1, + STATE(3134), 1, sym_cell_path, - ACTIONS(1915), 2, + ACTIONS(1887), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1913), 46, + ACTIONS(1885), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -309640,23 +313401,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, - [81278] = 8, + [81173] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5815), 1, + ACTIONS(5830), 1, anon_sym_DOT2, - STATE(2760), 1, + STATE(2794), 1, sym_comment, - STATE(2858), 1, + STATE(2879), 1, aux_sym_cell_path_repeat1, - STATE(3003), 1, + STATE(3043), 1, sym_path, - STATE(3082), 1, + STATE(3138), 1, sym_cell_path, - ACTIONS(1919), 2, + ACTIONS(1891), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1917), 46, + ACTIONS(1889), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -309703,21 +313464,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, - [81349] = 4, - ACTIONS(251), 1, + [81244] = 29, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2761), 1, - sym_comment, - ACTIONS(976), 18, + ACTIONS(3830), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3832), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3834), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3836), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5273), 1, + sym_val_date, + ACTIONS(5605), 1, + anon_sym_DQUOTE, + ACTIONS(5609), 1, + sym_raw_string_begin, + ACTIONS(5708), 1, + anon_sym_LPAREN, + ACTIONS(5710), 1, + anon_sym_DOLLAR, + ACTIONS(5712), 1, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, + ACTIONS(5718), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5720), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5722), 1, + aux_sym_unquoted_token1, + STATE(2606), 1, + sym__inter_single_quotes, + STATE(2608), 1, + sym__inter_double_quotes, + STATE(2795), 1, + sym_comment, + STATE(5726), 1, + sym__val_number_decimal, + STATE(7494), 1, + sym_val_bool, + STATE(7595), 1, + sym__unquoted_anonymous_prefix, + STATE(7628), 1, + sym__val_range, + ACTIONS(3828), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5607), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5714), 2, 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_DOT2, + STATE(2610), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5716), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(1711), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2830), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -309726,34 +313538,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(978), 34, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(2832), 9, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, @@ -309762,35 +313548,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, - [81412] = 8, + [81357] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5815), 1, - anon_sym_DOT2, - STATE(2762), 1, - sym_comment, - STATE(2858), 1, - aux_sym_cell_path_repeat1, - STATE(3003), 1, - sym_path, - STATE(3083), 1, - sym_cell_path, - ACTIONS(1927), 2, - sym_raw_string_begin, + ACTIONS(5791), 1, sym__entry_separator, - ACTIONS(1925), 46, + ACTIONS(5793), 1, + sym_raw_string_begin, + STATE(2711), 1, + aux_sym__multiple_types_repeat1, + STATE(2796), 1, + sym_comment, + ACTIONS(5787), 49, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -309808,6 +313589,9 @@ 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, @@ -309825,21 +313609,73 @@ 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, - [81483] = 4, - ACTIONS(251), 1, + [81424] = 30, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2763), 1, - sym_comment, - ACTIONS(984), 18, + ACTIONS(1258), 1, + anon_sym_LPAREN, + ACTIONS(1272), 1, + anon_sym_DQUOTE, + ACTIONS(1276), 1, + sym_raw_string_begin, + ACTIONS(3512), 1, + anon_sym_DOLLAR, + ACTIONS(3538), 1, + aux_sym_unquoted_token1, + ACTIONS(3830), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3832), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3834), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3836), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4091), 1, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, + ACTIONS(5273), 1, + sym_val_date, + STATE(1875), 1, + sym__inter_single_quotes, + STATE(1877), 1, + sym__inter_double_quotes, + STATE(2797), 1, + sym_comment, + STATE(5713), 1, + sym__val_number_decimal, + STATE(6209), 1, + sym_unquoted, + STATE(7494), 1, + sym_val_bool, + STATE(7649), 1, + sym__unquoted_anonymous_prefix, + STATE(7833), 1, + sym__val_range, + ACTIONS(1274), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3828), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4093), 2, 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_DOT2, + STATE(3793), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5271), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(6208), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(2830), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -309848,34 +313684,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(986), 34, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(2832), 9, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, @@ -309884,23 +313694,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, - [81546] = 8, + [81539] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5815), 1, + ACTIONS(5830), 1, anon_sym_DOT2, - STATE(2764), 1, + STATE(2798), 1, sym_comment, - STATE(2858), 1, + STATE(2879), 1, aux_sym_cell_path_repeat1, - STATE(3003), 1, + STATE(3043), 1, sym_path, - STATE(3084), 1, + STATE(3057), 1, sym_cell_path, - ACTIONS(1931), 2, + ACTIONS(1899), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1929), 46, + ACTIONS(1897), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -309947,23 +313757,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, - [81617] = 8, + [81610] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5815), 1, + ACTIONS(5830), 1, anon_sym_DOT2, - STATE(2765), 1, + STATE(2799), 1, sym_comment, - STATE(2858), 1, + STATE(2879), 1, aux_sym_cell_path_repeat1, - STATE(3003), 1, + STATE(3043), 1, sym_path, - STATE(3085), 1, + STATE(3094), 1, sym_cell_path, - ACTIONS(1935), 2, + ACTIONS(1903), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1933), 46, + ACTIONS(1901), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -310010,21 +313820,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, - [81688] = 4, - ACTIONS(251), 1, + [81681] = 29, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2766), 1, - sym_comment, - ACTIONS(980), 18, + ACTIONS(3830), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3832), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3834), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3836), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5273), 1, + sym_val_date, + ACTIONS(5605), 1, + anon_sym_DQUOTE, + ACTIONS(5609), 1, + sym_raw_string_begin, + ACTIONS(5708), 1, + anon_sym_LPAREN, + ACTIONS(5710), 1, + anon_sym_DOLLAR, + ACTIONS(5712), 1, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, + ACTIONS(5718), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5720), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5722), 1, + aux_sym_unquoted_token1, + STATE(2606), 1, + sym__inter_single_quotes, + STATE(2608), 1, + sym__inter_double_quotes, + STATE(2800), 1, + sym_comment, + STATE(5726), 1, + sym__val_number_decimal, + STATE(7494), 1, + sym_val_bool, + STATE(7595), 1, + sym__unquoted_anonymous_prefix, + STATE(7628), 1, + sym__val_range, + ACTIONS(3828), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5607), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5714), 2, 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_DOT2, + STATE(2610), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5716), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(1743), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2830), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -310033,34 +313894,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(982), 34, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(2832), 9, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, @@ -310069,23 +313904,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, - [81751] = 8, + [81794] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5815), 1, + ACTIONS(5830), 1, anon_sym_DOT2, - STATE(2767), 1, + STATE(2801), 1, sym_comment, - STATE(2858), 1, + STATE(2879), 1, aux_sym_cell_path_repeat1, - STATE(3003), 1, + STATE(3043), 1, sym_path, - STATE(3089), 1, + STATE(3095), 1, sym_cell_path, - ACTIONS(1939), 2, + ACTIONS(1907), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1937), 46, + ACTIONS(1905), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -310132,36 +313967,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, - [81822] = 8, - ACTIONS(3), 1, + [81865] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5815), 1, - anon_sym_DOT2, - STATE(2768), 1, + ACTIONS(5878), 1, + anon_sym_DOT, + ACTIONS(5880), 1, + aux_sym__immediate_decimal_token2, + STATE(2802), 1, sym_comment, - STATE(2858), 1, - aux_sym_cell_path_repeat1, - STATE(3003), 1, - sym_path, - STATE(3070), 1, - sym_cell_path, - ACTIONS(1893), 2, + ACTIONS(1701), 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(1703), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1891), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -310171,21 +314016,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - 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, @@ -310194,29 +314028,32 @@ static const 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, - [81893] = 4, + [81932] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2769), 1, + ACTIONS(5882), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5884), 1, + aux_sym__immediate_decimal_token2, + STATE(2803), 1, sym_comment, - ACTIONS(2514), 2, + ACTIONS(1695), 3, sym_raw_string_begin, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(2512), 50, + ACTIONS(1693), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -310234,9 +314071,90 @@ static const uint16_t ts_small_parse_table[] = { 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, + [81999] = 29, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3830), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3832), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3834), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3836), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5273), 1, + sym_val_date, + ACTIONS(5683), 1, + anon_sym_DQUOTE, + ACTIONS(5687), 1, + sym_raw_string_begin, + ACTIONS(5832), 1, + anon_sym_LPAREN, + ACTIONS(5834), 1, + anon_sym_DOLLAR, + ACTIONS(5836), 1, + anon_sym_DOT_DOT, + ACTIONS(5842), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(5844), 1, anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, + ACTIONS(5846), 1, + aux_sym_unquoted_token1, + STATE(2676), 1, + sym__inter_single_quotes, + STATE(2728), 1, + sym__inter_double_quotes, + STATE(2804), 1, + sym_comment, + STATE(5890), 1, + sym__val_number_decimal, + STATE(7493), 1, + sym__val_range, + STATE(7494), 1, + sym_val_bool, + STATE(7840), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3828), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5685), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5838), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(2705), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5840), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(1830), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2830), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -310245,6 +314163,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(2832), 9, + anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -310253,17 +314173,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, - [81956] = 6, - ACTIONS(251), 1, + [82112] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5821), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5823), 1, - aux_sym__immediate_decimal_token2, - STATE(2770), 1, + STATE(2805), 1, sym_comment, - ACTIONS(1542), 8, + ACTIONS(1618), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -310272,7 +314187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, anon_sym_DOT2, - ACTIONS(1544), 42, + ACTIONS(1620), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -310295,6 +314210,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -310313,178 +314230,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [82023] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5722), 1, - sym__entry_separator, - ACTIONS(5724), 1, - sym_raw_string_begin, - STATE(2718), 1, - aux_sym__multiple_types_repeat1, - STATE(2771), 1, - sym_comment, - ACTIONS(5718), 49, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - 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, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - anon_sym_o_GT_GT, - 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, - [82090] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5815), 1, - anon_sym_DOT2, - STATE(2772), 1, - sym_comment, - STATE(2858), 1, - aux_sym_cell_path_repeat1, - STATE(3003), 1, - sym_path, - STATE(3091), 1, - sym_cell_path, - ACTIONS(1947), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1945), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - 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, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [82161] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5815), 1, - anon_sym_DOT2, - STATE(2773), 1, - sym_comment, - STATE(2858), 1, - aux_sym_cell_path_repeat1, - STATE(3003), 1, - sym_path, - STATE(3092), 1, - sym_cell_path, - ACTIONS(1951), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1949), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [82175] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5739), 1, + aux_sym__immediate_decimal_token2, + STATE(2806), 1, + sym_comment, + ACTIONS(1701), 18, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, 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, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, 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, @@ -310493,45 +314256,21 @@ 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, - [82232] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5815), 1, - anon_sym_DOT2, - STATE(2774), 1, - sym_comment, - STATE(2858), 1, - aux_sym_cell_path_repeat1, - STATE(3003), 1, - sym_path, - STATE(3097), 1, - sym_cell_path, - ACTIONS(1955), 2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1703), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1953), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -310541,21 +314280,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - 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, @@ -310564,17 +314292,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, - aux_sym__unquoted_in_list_token1, - [82303] = 6, - ACTIONS(251), 1, + [82240] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5825), 1, - anon_sym_DOT, - ACTIONS(5827), 1, - aux_sym__immediate_decimal_token2, - STATE(2775), 1, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + ACTIONS(4484), 1, + anon_sym_DOLLAR, + ACTIONS(4486), 1, + anon_sym_LPAREN2, + ACTIONS(5874), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5876), 1, + aux_sym__immediate_decimal_token5, + STATE(2807), 1, + sym_comment, + STATE(3300), 1, + sym__immediate_decimal, + ACTIONS(5872), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2500), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1441), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1455), 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_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [82319] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2808), 1, sym_comment, - ACTIONS(1755), 17, + ACTIONS(960), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -310583,6 +314373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -310592,7 +314383,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(1757), 33, + ACTIONS(962), 34, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -310600,6 +314391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_null, @@ -310626,52 +314418,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, - [82370] = 8, - ACTIONS(3), 1, + [82382] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5815), 1, - anon_sym_DOT2, - STATE(2776), 1, + ACTIONS(5886), 1, + aux_sym__immediate_decimal_token2, + STATE(2809), 1, sym_comment, - STATE(2858), 1, - aux_sym_cell_path_repeat1, - STATE(3003), 1, - sym_path, - STATE(3107), 1, - sym_cell_path, - ACTIONS(1963), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1961), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(1766), 18, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, 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, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, 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, @@ -310680,45 +314442,21 @@ 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, - [82441] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5815), 1, - anon_sym_DOT2, - STATE(2777), 1, - sym_comment, - STATE(2858), 1, - aux_sym_cell_path_repeat1, - STATE(3003), 1, - sym_path, - STATE(3108), 1, - sym_cell_path, - ACTIONS(1967), 2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1768), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1965), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -310728,21 +314466,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - 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, @@ -310751,24 +314478,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_in_list_token1, - [82512] = 8, + [82447] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5815), 1, + ACTIONS(5830), 1, anon_sym_DOT2, - STATE(2778), 1, + STATE(2810), 1, sym_comment, - STATE(2858), 1, + STATE(2879), 1, aux_sym_cell_path_repeat1, - STATE(3003), 1, + STATE(3043), 1, sym_path, - STATE(3109), 1, + STATE(3063), 1, sym_cell_path, - ACTIONS(1971), 2, + ACTIONS(1941), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1969), 46, + ACTIONS(1939), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -310815,25 +314541,27 @@ 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, - [82583] = 8, + [82518] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5815), 1, + ACTIONS(1895), 1, + sym__entry_separator, + ACTIONS(5830), 1, anon_sym_DOT2, - STATE(2779), 1, + ACTIONS(5890), 1, + anon_sym_RBRACK, + ACTIONS(5893), 1, + sym_raw_string_begin, + STATE(2811), 1, sym_comment, - STATE(2858), 1, + STATE(2879), 1, aux_sym_cell_path_repeat1, - STATE(3003), 1, + STATE(3043), 1, sym_path, - STATE(3110), 1, + STATE(3104), 1, sym_cell_path, - ACTIONS(1981), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1979), 46, + ACTIONS(5888), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -310878,52 +314606,24 @@ 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, - [82654] = 8, - ACTIONS(3), 1, + [82593] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5815), 1, - anon_sym_DOT2, - STATE(2780), 1, + ACTIONS(5895), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5897), 1, + aux_sym__immediate_decimal_token2, + STATE(2812), 1, sym_comment, - STATE(2858), 1, - aux_sym_cell_path_repeat1, - STATE(3003), 1, - sym_path, - STATE(3113), 1, - sym_cell_path, - ACTIONS(1907), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1905), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(1693), 17, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, 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, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, 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, @@ -310932,45 +314632,20 @@ 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, - [82725] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5815), 1, - anon_sym_DOT2, - STATE(2781), 1, - sym_comment, - STATE(2858), 1, - aux_sym_cell_path_repeat1, - STATE(3003), 1, - sym_path, - STATE(3117), 1, - sym_cell_path, - ACTIONS(1985), 2, + ACTIONS(1695), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1983), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -310980,21 +314655,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - 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, @@ -311003,26 +314667,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, - aux_sym__unquoted_in_list_token1, - [82796] = 7, - ACTIONS(251), 1, + [82660] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5708), 1, - anon_sym_DOT2, - STATE(2782), 1, + STATE(2813), 1, sym_comment, - STATE(2783), 1, + ACTIONS(1504), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + anon_sym_DOT2, + ACTIONS(1506), 44, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [82723] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5706), 1, + anon_sym_DOT2, + STATE(2771), 1, aux_sym_cell_path_repeat1, - STATE(2930), 1, + STATE(2814), 1, + sym_comment, + STATE(2939), 1, sym_path, - ACTIONS(949), 6, + ACTIONS(942), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(951), 43, + ACTIONS(944), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -311066,25 +314788,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [82865] = 6, - ACTIONS(251), 1, + [82792] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5829), 1, - anon_sym_DOT2, - STATE(2930), 1, - sym_path, - STATE(2783), 2, + ACTIONS(5901), 1, + anon_sym_RBRACK, + ACTIONS(5903), 1, + sym__entry_separator, + ACTIONS(5905), 1, + sym_raw_string_begin, + STATE(2815), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(953), 6, + STATE(2867), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(5899), 47, aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(955), 43, - sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -311092,10 +314810,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, @@ -311114,12 +314835,13 @@ static const uint16_t ts_small_parse_table[] = { 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, aux_sym_cmd_identifier_token37, + 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, @@ -311127,84 +314849,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [82932] = 13, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym_unquoted_token2, - ACTIONS(3630), 1, - anon_sym_DOLLAR, - ACTIONS(4580), 1, - anon_sym_LPAREN2, - ACTIONS(5832), 1, - anon_sym_DOT, - ACTIONS(5836), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5838), 1, - aux_sym__immediate_decimal_token5, - STATE(2784), 1, - sym_comment, - STATE(3218), 1, - sym__immediate_decimal, - ACTIONS(5834), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1870), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1461), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1475), 35, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [83013] = 5, - ACTIONS(251), 1, + [82860] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5840), 1, - sym__newline, - STATE(2785), 2, + ACTIONS(5907), 1, + anon_sym_DOT2, + STATE(2816), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1296), 15, - anon_sym_DOLLAR, + STATE(2913), 1, + aux_sym_cell_path_repeat1, + STATE(3080), 1, + sym_path, + STATE(3199), 1, + sym_cell_path, + ACTIONS(1839), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -311219,18 +314877,19 @@ 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(1298), 35, + ACTIONS(1841), 33, sym_raw_string_begin, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -311244,9 +314903,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_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -311255,22 +314911,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, - [83078] = 9, - ACTIONS(251), 1, + [82930] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1897), 1, - sym__table_head_separator, - ACTIONS(5843), 1, + ACTIONS(5907), 1, anon_sym_DOT2, - STATE(2786), 1, + STATE(2817), 1, sym_comment, - STATE(6497), 1, + STATE(2913), 1, aux_sym_cell_path_repeat1, - STATE(7405), 1, + STATE(3080), 1, sym_path, - STATE(7585), 1, + STATE(3172), 1, sym_cell_path, - ACTIONS(5801), 14, + ACTIONS(1847), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -311285,7 +314939,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(5808), 33, + ACTIONS(1849), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -311319,23 +314973,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, - [83151] = 5, - ACTIONS(251), 1, + [83000] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5845), 1, - anon_sym_QMARK2, - STATE(2787), 1, + ACTIONS(5907), 1, + anon_sym_DOT2, + STATE(2818), 1, sym_comment, - ACTIONS(966), 18, + STATE(2913), 1, + aux_sym_cell_path_repeat1, + STATE(3080), 1, + sym_path, + STATE(3206), 1, + sym_cell_path, + ACTIONS(1853), 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_0b, anon_sym_0o, anon_sym_0x, - anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -311345,7 +315001,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(968), 33, + ACTIONS(1855), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -311353,8 +315009,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -311379,23 +315035,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, - [83216] = 5, - ACTIONS(251), 1, + [83070] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5847), 1, - anon_sym_QMARK2, - STATE(2788), 1, + ACTIONS(5907), 1, + anon_sym_DOT2, + STATE(2819), 1, sym_comment, - ACTIONS(960), 18, + STATE(2913), 1, + aux_sym_cell_path_repeat1, + STATE(3080), 1, + sym_path, + STATE(3218), 1, + sym_cell_path, + ACTIONS(1869), 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_0b, anon_sym_0o, anon_sym_0x, - anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -311405,7 +315063,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(962), 33, + ACTIONS(1871), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -311413,8 +315071,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -311439,33 +315097,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, - [83281] = 6, - ACTIONS(3), 1, + [83140] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5849), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5851), 1, - aux_sym__immediate_decimal_token2, - STATE(2789), 1, + ACTIONS(5907), 1, + anon_sym_DOT2, + STATE(2820), 1, sym_comment, - ACTIONS(1713), 3, + STATE(2913), 1, + aux_sym_cell_path_repeat1, + STATE(3080), 1, + sym_path, + STATE(3174), 1, + sym_cell_path, + ACTIONS(1877), 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(1879), 33, sym_raw_string_begin, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1711), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -311475,107 +315147,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - 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, - [83348] = 29, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3958), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3960), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3962), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3964), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5200), 1, sym_val_date, - ACTIONS(5667), 1, anon_sym_DQUOTE, - ACTIONS(5671), 1, - sym_raw_string_begin, - ACTIONS(5853), 1, - anon_sym_LPAREN, - ACTIONS(5855), 1, - anon_sym_DOLLAR, - ACTIONS(5857), 1, - anon_sym_DOT_DOT, - ACTIONS(5863), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5865), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5867), 1, - aux_sym_unquoted_token1, - STATE(2739), 1, - sym__inter_single_quotes, - STATE(2740), 1, - sym__inter_double_quotes, - STATE(2790), 1, - sym_comment, - STATE(5776), 1, - sym__val_number_decimal, - STATE(7540), 1, - sym__val_range, - STATE(7586), 1, - sym__unquoted_anonymous_prefix, - STATE(7624), 1, - sym_val_bool, - ACTIONS(3956), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5669), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5859), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(2730), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5861), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(1709), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2664), 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(2666), 9, - anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -311584,20 +315159,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, - [83461] = 6, - ACTIONS(251), 1, + [83210] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5869), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5871), 1, - aux_sym__immediate_decimal_token2, - STATE(2791), 1, + ACTIONS(5907), 1, + anon_sym_DOT2, + STATE(2821), 1, sym_comment, - ACTIONS(1711), 17, + STATE(2913), 1, + aux_sym_cell_path_repeat1, + STATE(3080), 1, + sym_path, + STATE(3176), 1, + sym_cell_path, + ACTIONS(1969), 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_0b, anon_sym_0o, @@ -311611,7 +315187,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(1713), 33, + ACTIONS(1971), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -311619,8 +315195,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -311645,73 +315221,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, - [83528] = 30, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(113), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(115), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(123), 1, - sym_raw_string_begin, - ACTIONS(251), 1, + [83280] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3510), 1, - anon_sym_DOLLAR, - ACTIONS(3534), 1, - aux_sym_unquoted_token1, - ACTIONS(3958), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3960), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3962), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3964), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4401), 1, - anon_sym_DOT_DOT, - ACTIONS(5200), 1, - sym_val_date, - ACTIONS(5873), 1, - anon_sym_LPAREN, - STATE(2527), 1, - sym__inter_single_quotes, - STATE(2528), 1, - sym__inter_double_quotes, - STATE(2792), 1, + ACTIONS(5907), 1, + anon_sym_DOT2, + STATE(2822), 1, sym_comment, - STATE(5813), 1, - sym__val_number_decimal, - STATE(6967), 1, - sym_unquoted, - STATE(7624), 1, - sym_val_bool, - STATE(7836), 1, - sym__val_range, - STATE(7845), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3956), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4403), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1732), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5225), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(6965), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(2664), 8, + STATE(2913), 1, + aux_sym_cell_path_repeat1, + STATE(3080), 1, + sym_path, + STATE(3220), 1, + sym_cell_path, + ACTIONS(1833), 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, @@ -311720,41 +315248,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2666), 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, - [83643] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2793), 1, - sym_comment, - ACTIONS(998), 4, + aux_sym__unquoted_in_list_token1, + ACTIONS(1835), 33, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(996), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -311764,22 +315271,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - 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_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, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -311788,32 +315283,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, - aux_sym__unquoted_in_list_token1, - [83706] = 4, - ACTIONS(3), 1, + [83350] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2794), 1, + ACTIONS(5907), 1, + anon_sym_DOT2, + STATE(2823), 1, sym_comment, - ACTIONS(994), 4, + STATE(2913), 1, + aux_sym_cell_path_repeat1, + STATE(3080), 1, + sym_path, + STATE(3205), 1, + sym_cell_path, + ACTIONS(1861), 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(1863), 33, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(992), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -311823,22 +315333,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - 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_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, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -311847,73 +315345,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, - aux_sym__unquoted_in_list_token1, - [83769] = 29, - ACTIONS(251), 1, + [83420] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3958), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3960), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3962), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3964), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5200), 1, - sym_val_date, - ACTIONS(5667), 1, - anon_sym_DQUOTE, - ACTIONS(5671), 1, - sym_raw_string_begin, - ACTIONS(5853), 1, - anon_sym_LPAREN, - ACTIONS(5855), 1, - anon_sym_DOLLAR, - ACTIONS(5857), 1, - anon_sym_DOT_DOT, - ACTIONS(5863), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5865), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5867), 1, - aux_sym_unquoted_token1, - STATE(2739), 1, - sym__inter_single_quotes, - STATE(2740), 1, - sym__inter_double_quotes, - STATE(2795), 1, + ACTIONS(5907), 1, + anon_sym_DOT2, + STATE(2824), 1, sym_comment, - STATE(5776), 1, - sym__val_number_decimal, - STATE(7540), 1, - sym__val_range, - STATE(7586), 1, - sym__unquoted_anonymous_prefix, - STATE(7624), 1, - sym_val_bool, - ACTIONS(3956), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5669), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5859), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(2730), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5861), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(1768), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2664), 8, + STATE(2913), 1, + aux_sym_cell_path_repeat1, + STATE(3080), 1, + sym_path, + STATE(3208), 1, + sym_cell_path, + ACTIONS(1873), 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, @@ -311922,43 +315372,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2666), 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, - [83882] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5770), 1, - aux_sym__immediate_decimal_token2, - STATE(2796), 1, - sym_comment, - ACTIONS(1757), 4, + aux_sym__unquoted_in_list_token1, + ACTIONS(1875), 33, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1755), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -311968,21 +315395,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - 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, @@ -311991,50 +315407,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, - aux_sym__unquoted_in_list_token1, - [83947] = 5, - ACTIONS(3), 1, + [83490] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5875), 1, - aux_sym__immediate_decimal_token2, - STATE(2797), 1, + ACTIONS(5907), 1, + anon_sym_DOT2, + STATE(2825), 1, sym_comment, - ACTIONS(1785), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1783), 47, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + STATE(2913), 1, + aux_sym_cell_path_repeat1, + STATE(3080), 1, + sym_path, + STATE(3213), 1, + sym_cell_path, + ACTIONS(1881), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, 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, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, 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, @@ -312043,42 +315434,20 @@ 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, - [84012] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5877), 1, - anon_sym_DOT, - ACTIONS(5879), 1, - aux_sym__immediate_decimal_token2, - STATE(2798), 1, - sym_comment, - ACTIONS(1757), 3, + ACTIONS(1883), 33, sym_raw_string_begin, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1755), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -312088,21 +315457,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - 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, @@ -312111,74 +315469,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, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [84079] = 29, - ACTIONS(251), 1, + [83560] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3958), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3960), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3962), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3964), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5200), 1, - sym_val_date, - ACTIONS(5605), 1, - anon_sym_DQUOTE, - ACTIONS(5609), 1, - sym_raw_string_begin, - ACTIONS(5780), 1, - anon_sym_LPAREN, - ACTIONS(5782), 1, - anon_sym_DOLLAR, - ACTIONS(5784), 1, - anon_sym_DOT_DOT, - ACTIONS(5790), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5792), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5794), 1, - aux_sym_unquoted_token1, - STATE(2612), 1, - sym__inter_single_quotes, - STATE(2613), 1, - sym__inter_double_quotes, - STATE(2799), 1, + ACTIONS(5907), 1, + anon_sym_DOT2, + STATE(2826), 1, sym_comment, - STATE(5786), 1, - sym__val_number_decimal, - STATE(7624), 1, - sym_val_bool, - STATE(7717), 1, - sym__val_range, - STATE(7722), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(3956), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5607), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5786), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(2624), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5788), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(1626), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2664), 8, + STATE(2913), 1, + aux_sym_cell_path_repeat1, + STATE(3080), 1, + sym_path, + STATE(3219), 1, + sym_cell_path, + ACTIONS(1885), 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, @@ -312187,8 +315496,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2666), 9, + aux_sym__unquoted_in_list_token1, + ACTIONS(1887), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -312197,36 +315531,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, - [84192] = 8, - ACTIONS(3), 1, + [83630] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5815), 1, + ACTIONS(5907), 1, anon_sym_DOT2, - STATE(2800), 1, + STATE(2827), 1, sym_comment, - STATE(2858), 1, + STATE(2913), 1, aux_sym_cell_path_repeat1, - STATE(3003), 1, + STATE(3080), 1, sym_path, - STATE(3074), 1, + STATE(3155), 1, sym_cell_path, - ACTIONS(945), 2, + ACTIONS(1889), 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(1891), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(943), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -312236,21 +315581,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - 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, @@ -312259,37 +315593,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, - aux_sym__unquoted_in_list_token1, - [84263] = 8, - ACTIONS(3), 1, + [83700] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5815), 1, + ACTIONS(5907), 1, anon_sym_DOT2, - STATE(2801), 1, + STATE(2828), 1, sym_comment, - STATE(2858), 1, + STATE(2913), 1, aux_sym_cell_path_repeat1, - STATE(3003), 1, + STATE(3080), 1, sym_path, - STATE(3099), 1, + STATE(3158), 1, sym_cell_path, - ACTIONS(1959), 2, + ACTIONS(1897), 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(1899), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1957), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -312299,21 +315643,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - 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, @@ -312322,34 +315655,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, - aux_sym__unquoted_in_list_token1, - [84334] = 6, - ACTIONS(3), 1, + [83770] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5881), 1, + ACTIONS(5907), 1, anon_sym_DOT2, - STATE(3003), 1, - sym_path, - ACTIONS(955), 2, - sym_raw_string_begin, - sym__entry_separator, - STATE(2802), 2, + STATE(2829), 1, sym_comment, + STATE(2913), 1, aux_sym_cell_path_repeat1, - ACTIONS(953), 46, + STATE(3080), 1, + sym_path, + STATE(3167), 1, + sym_cell_path, + ACTIONS(1901), 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(1903), 33, + sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -312359,21 +315705,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - 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, @@ -312382,21 +315717,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, - [84400] = 8, - ACTIONS(251), 1, + [83840] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5884), 1, + ACTIONS(5907), 1, anon_sym_DOT2, - STATE(2803), 1, + STATE(2830), 1, sym_comment, - STATE(2914), 1, + STATE(2913), 1, aux_sym_cell_path_repeat1, - STATE(3047), 1, + STATE(3080), 1, sym_path, - STATE(3187), 1, + STATE(3170), 1, sym_cell_path, - ACTIONS(1913), 14, + ACTIONS(1905), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -312411,7 +315745,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), 33, + ACTIONS(1907), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -312445,20 +315779,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, - [84470] = 7, + [83910] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5888), 1, - anon_sym_RBRACK, - ACTIONS(5890), 1, + ACTIONS(5903), 1, sym__entry_separator, - ACTIONS(5892), 1, + ACTIONS(5905), 1, sym_raw_string_begin, - STATE(2804), 1, + ACTIONS(5909), 1, + anon_sym_RBRACK, + STATE(2831), 1, sym_comment, - STATE(2834), 1, + STATE(2867), 1, aux_sym__multiple_types_repeat1, - ACTIONS(5886), 47, + ACTIONS(5899), 47, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -312506,20 +315840,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [84538] = 7, + [83978] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5890), 1, + ACTIONS(5903), 1, sym__entry_separator, - ACTIONS(5892), 1, + ACTIONS(5905), 1, sym_raw_string_begin, - ACTIONS(5894), 1, + ACTIONS(5911), 1, anon_sym_RBRACK, - STATE(2805), 1, + STATE(2832), 1, sym_comment, - STATE(2834), 1, + STATE(2867), 1, aux_sym__multiple_types_repeat1, - ACTIONS(5886), 47, + ACTIONS(5899), 47, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -312567,20 +315901,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [84606] = 7, + [84046] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5890), 1, + ACTIONS(5903), 1, sym__entry_separator, - ACTIONS(5892), 1, + ACTIONS(5905), 1, sym_raw_string_begin, - ACTIONS(5896), 1, + ACTIONS(5913), 1, anon_sym_RBRACK, - STATE(2806), 1, + STATE(2833), 1, sym_comment, + STATE(2867), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(5899), 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, + aux_sym_cmd_identifier_token37, + 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, + [84114] = 4, + ACTIONS(247), 1, + anon_sym_POUND, STATE(2834), 1, + sym_comment, + ACTIONS(956), 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_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT2, + ACTIONS(958), 44, + sym_raw_string_begin, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + 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, + [84176] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5903), 1, + sym__entry_separator, + ACTIONS(5905), 1, + sym_raw_string_begin, + ACTIONS(5915), 1, + anon_sym_RBRACK, + STATE(2835), 1, + sym_comment, + STATE(2867), 1, aux_sym__multiple_types_repeat1, - ACTIONS(5886), 47, + ACTIONS(5899), 47, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -312628,12 +316081,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [84674] = 4, - ACTIONS(251), 1, + [84244] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2807), 1, + STATE(2836), 1, sym_comment, - ACTIONS(1835), 18, + ACTIONS(978), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -312642,6 +316095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -312651,8 +316105,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(1837), 33, + ACTIONS(980), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -312686,25 +316139,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, - [84736] = 8, - ACTIONS(251), 1, + [84306] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5884), 1, - anon_sym_DOT2, - STATE(2808), 1, + STATE(2837), 1, sym_comment, - STATE(2914), 1, - aux_sym_cell_path_repeat1, - STATE(3047), 1, - sym_path, - STATE(3195), 1, - sym_cell_path, - ACTIONS(1957), 14, + ACTIONS(974), 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_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -312714,7 +316163,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(1959), 33, + ACTIONS(976), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -312722,8 +316171,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -312748,20 +316197,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, - [84806] = 7, - ACTIONS(3), 1, + [84368] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5890), 1, - sym__entry_separator, - ACTIONS(5892), 1, - sym_raw_string_begin, - ACTIONS(5898), 1, - anon_sym_RBRACK, - STATE(2809), 1, + ACTIONS(5917), 1, + sym_long_flag_identifier, + ACTIONS(5919), 1, + anon_sym_EQ2, + STATE(2838), 1, sym_comment, - STATE(2834), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5886), 47, + ACTIONS(4938), 9, + sym_raw_string_begin, + 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(4940), 40, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -312800,8 +316255,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_decimal_token1, + [84434] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2839), 1, + sym_comment, + ACTIONS(960), 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_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT2, + ACTIONS(962), 44, + sym_raw_string_begin, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, 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, @@ -312809,25 +316315,232 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [84874] = 8, - ACTIONS(251), 1, + [84496] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5884), 1, + ACTIONS(5815), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5921), 1, + anon_sym_DOT, + STATE(2840), 1, + sym_comment, + ACTIONS(1512), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + ACTIONS(1514), 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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [84562] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2841), 1, + sym_comment, + ACTIONS(964), 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_token34, + aux_sym_cmd_identifier_token38, anon_sym_DOT2, - STATE(2810), 1, + ACTIONS(966), 44, + sym_raw_string_begin, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + 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, + [84624] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + ACTIONS(4706), 1, + aux_sym_unquoted_token2, + ACTIONS(5923), 1, + anon_sym_DOT_DOT2, + ACTIONS(5927), 1, + sym_filesize_unit, + ACTIONS(5929), 1, + sym_duration_unit, + STATE(2842), 1, sym_comment, - STATE(2914), 1, - aux_sym_cell_path_repeat1, - STATE(3047), 1, - sym_path, - STATE(3188), 1, - sym_cell_path, - ACTIONS(1917), 14, + STATE(7382), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5925), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1639), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1651), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_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_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [84700] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5931), 1, + anon_sym_DOT_DOT2, + STATE(2843), 1, + sym_comment, + ACTIONS(2036), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5933), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2030), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, 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, @@ -312836,20 +316549,42 @@ 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(1919), 33, + [84766] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5935), 1, + anon_sym_DOT_DOT2, + STATE(2844), 1, + sym_comment, + ACTIONS(1983), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5937), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1977), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -312859,10 +316594,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + 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, @@ -312871,20 +316617,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, - [84944] = 8, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [84832] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5884), 1, + ACTIONS(5907), 1, anon_sym_DOT2, - STATE(2811), 1, + STATE(2845), 1, sym_comment, - STATE(2914), 1, + STATE(2913), 1, aux_sym_cell_path_repeat1, - STATE(3047), 1, + STATE(3080), 1, sym_path, - STATE(3189), 1, + STATE(3165), 1, sym_cell_path, - ACTIONS(1925), 14, + ACTIONS(5941), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -312899,7 +316646,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(1927), 33, + ACTIONS(5939), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -312933,17 +316680,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, - [85014] = 4, + [84902] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2812), 1, + ACTIONS(5943), 1, + anon_sym_DOT_DOT2, + STATE(2846), 1, sym_comment, - ACTIONS(1999), 4, + ACTIONS(1991), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5945), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1997), 47, + ACTIONS(1985), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -312951,7 +316701,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -312991,47 +316740,31 @@ 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, - [85076] = 8, - ACTIONS(251), 1, + [84968] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5884), 1, - anon_sym_DOT2, - STATE(2813), 1, + ACTIONS(5828), 1, + aux_sym__immediate_decimal_token2, + STATE(2847), 1, sym_comment, - STATE(2914), 1, - aux_sym_cell_path_repeat1, - STATE(3047), 1, - sym_path, - STATE(3129), 1, - sym_cell_path, - ACTIONS(1929), 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(1931), 33, + ACTIONS(1703), 3, sym_raw_string_begin, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1701), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -313041,10 +316774,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + 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, @@ -313053,25 +316797,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, - [85146] = 6, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [85032] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5904), 1, - anon_sym_DASH_DASH, - STATE(2999), 1, - sym_long_flag, - STATE(2814), 2, + ACTIONS(5903), 1, + sym__entry_separator, + ACTIONS(5905), 1, + sym_raw_string_begin, + ACTIONS(5947), 1, + anon_sym_RBRACK, + STATE(2848), 1, sym_comment, - aux_sym_decl_def_repeat1, - ACTIONS(5900), 6, + STATE(2867), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(5899), 47, aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5902), 42, - sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -313079,10 +316821,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, @@ -313101,9 +316846,11 @@ static const uint16_t ts_small_parse_table[] = { 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, aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, aux_sym__val_number_decimal_token1, @@ -313113,47 +316860,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [85212] = 8, - ACTIONS(251), 1, + [85100] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5884), 1, - anon_sym_DOT2, - STATE(2815), 1, + ACTIONS(5949), 1, + aux_sym__immediate_decimal_token2, + STATE(2849), 1, sym_comment, - STATE(2914), 1, - aux_sym_cell_path_repeat1, - STATE(3047), 1, - sym_path, - STATE(3200), 1, - sym_cell_path, - ACTIONS(1905), 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(1907), 33, + ACTIONS(1768), 3, sym_raw_string_begin, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1766), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -313163,99 +316894,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - 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, - [85282] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5884), 1, - anon_sym_DOT2, - STATE(2816), 1, - sym_comment, - STATE(2914), 1, - aux_sym_cell_path_repeat1, - STATE(3047), 1, - sym_path, - STATE(3201), 1, - sym_cell_path, - ACTIONS(1983), 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(1985), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, 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, - [85352] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5884), 1, - anon_sym_DOT2, - STATE(2817), 1, - sym_comment, - STATE(2914), 1, - aux_sym_cell_path_repeat1, - STATE(3047), 1, - sym_path, - STATE(3190), 1, - sym_cell_path, - ACTIONS(1933), 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, @@ -313264,33 +316909,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(1935), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, @@ -313299,21 +316917,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, - [85422] = 8, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [85164] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5884), 1, - anon_sym_DOT2, - STATE(2818), 1, + ACTIONS(5880), 1, + aux_sym__immediate_decimal_token2, + STATE(2850), 1, sym_comment, - STATE(2914), 1, - aux_sym_cell_path_repeat1, - STATE(3047), 1, - sym_path, - STATE(3191), 1, - sym_cell_path, - ACTIONS(1937), 14, + ACTIONS(1701), 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, @@ -313327,7 +316944,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(1939), 33, + ACTIONS(1703), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -313335,8 +316952,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -313361,74 +316978,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, - [85492] = 8, - ACTIONS(251), 1, + [85228] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5884), 1, - anon_sym_DOT2, - STATE(2819), 1, + STATE(2851), 1, sym_comment, - STATE(2914), 1, - aux_sym_cell_path_repeat1, - STATE(3047), 1, - sym_path, - STATE(3192), 1, - sym_cell_path, - ACTIONS(1945), 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(1947), 33, + ACTIONS(946), 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_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT2, + ACTIONS(948), 44, sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + 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, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [85562] = 4, - ACTIONS(251), 1, + [85290] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2820), 1, + ACTIONS(5951), 1, + aux_sym__immediate_decimal_token2, + STATE(2852), 1, sym_comment, - ACTIONS(1711), 18, + ACTIONS(1766), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -313446,8 +317061,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(1713), 33, + ACTIONS(1768), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -313481,20 +317095,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, - [85624] = 8, - ACTIONS(251), 1, + [85354] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5884), 1, - anon_sym_DOT2, - STATE(2821), 1, + ACTIONS(5953), 1, + sym__newline, + STATE(2853), 2, sym_comment, - STATE(2914), 1, - aux_sym_cell_path_repeat1, - STATE(3047), 1, - sym_path, - STATE(3193), 1, - sym_cell_path, - ACTIONS(1949), 14, + aux_sym_shebang_repeat1, + ACTIONS(1294), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -313508,14 +317119,12 @@ 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(1951), 33, + aux_sym_unquoted_token1, + ACTIONS(1296), 33, sym_raw_string_begin, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -313535,6 +317144,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, @@ -313543,17 +317154,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, - [85694] = 4, + [85418] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2822), 1, + STATE(2854), 1, sym_comment, - ACTIONS(1995), 4, + ACTIONS(988), 4, sym_raw_string_begin, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1993), 47, + ACTIONS(986), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -313601,71 +317212,12 @@ 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, - [85756] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5907), 1, - sym__newline, - STATE(2823), 2, - sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1296), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - 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(1298), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [85820] = 4, - ACTIONS(251), 1, + [85480] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2824), 1, + STATE(2855), 1, sym_comment, - ACTIONS(996), 18, + ACTIONS(1792), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -313674,7 +317226,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -313684,7 +317235,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(998), 33, + aux_sym__unquoted_in_list_token2, + ACTIONS(1794), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -313718,37 +317270,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, - [85882] = 12, - ACTIONS(251), 1, + [85542] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1477), 1, + ACTIONS(5855), 1, + aux_sym__immediate_decimal_token2, + STATE(2856), 1, + sym_comment, + ACTIONS(1512), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(3630), 1, - anon_sym_DOLLAR, - ACTIONS(4580), 1, + ACTIONS(1514), 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_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_LPAREN2, - ACTIONS(5912), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5914), 1, - aux_sym__immediate_decimal_token5, - STATE(2825), 1, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [85606] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5956), 1, + aux_sym__immediate_decimal_token2, + STATE(2857), 1, sym_comment, - STATE(3291), 1, - sym__immediate_decimal, - ACTIONS(5910), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2078), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1461), 6, + ACTIONS(1618), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1475), 35, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1620), 42, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -313761,12 +317358,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_DASH2, anon_sym_in2, anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -313775,6 +317375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -313784,17 +317385,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [85960] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [85670] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2826), 1, + STATE(2858), 1, sym_comment, - ACTIONS(1721), 4, + ACTIONS(2012), 4, sym_raw_string_begin, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1719), 47, + ACTIONS(2010), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -313842,79 +317446,135 @@ 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, - [86022] = 7, + [85732] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5890), 1, - sym__entry_separator, - ACTIONS(5892), 1, + STATE(2859), 1, + sym_comment, + ACTIONS(1703), 4, sym_raw_string_begin, - ACTIONS(5916), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1701), 47, + anon_sym_LBRACK, anon_sym_RBRACK, - STATE(2827), 1, - sym_comment, - STATE(2834), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5886), 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, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [86090] = 5, - 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, + [85794] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5879), 1, + ACTIONS(5958), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5960), 1, aux_sym__immediate_decimal_token2, - STATE(2828), 1, + STATE(2860), 1, sym_comment, - ACTIONS(1757), 3, - sym_raw_string_begin, + ACTIONS(1504), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1506), 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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [85860] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2861), 1, + sym_comment, + ACTIONS(1695), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1755), 47, + ACTIONS(1693), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -313922,6 +317582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -313961,30 +317622,25 @@ 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, - [86154] = 8, + [85922] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5920), 1, - anon_sym_RBRACK, - ACTIONS(5922), 1, - anon_sym_DOT_DOT2, - ACTIONS(5926), 1, - sym__entry_separator, - ACTIONS(5928), 1, - sym_raw_string_begin, - STATE(2829), 1, + STATE(2862), 1, sym_comment, - ACTIONS(5924), 2, + ACTIONS(1768), 4, + sym_raw_string_begin, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5918), 45, + sym__entry_separator, + ACTIONS(1766), 47, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -314024,29 +317680,25 @@ 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, - [86224] = 8, + [85984] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1012), 1, - sym__entry_separator, - ACTIONS(5922), 1, - anon_sym_DOT_DOT2, - ACTIONS(5932), 1, - anon_sym_RBRACK, - ACTIONS(5935), 1, - sym_raw_string_begin, - STATE(2830), 1, + STATE(2863), 1, sym_comment, - ACTIONS(5924), 2, + ACTIONS(1794), 4, + sym_raw_string_begin, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5930), 45, + sym__entry_separator, + ACTIONS(1792), 47, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -314086,14 +317738,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, - [86294] = 5, - ACTIONS(251), 1, + [86046] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5937), 1, + ACTIONS(5962), 1, + anon_sym_DOT, + ACTIONS(5964), 1, aux_sym__immediate_decimal_token2, - STATE(2831), 1, + STATE(2864), 1, sym_comment, - ACTIONS(1680), 8, + ACTIONS(1512), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -314101,8 +317755,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym_filesize_unit, - anon_sym_DOT2, - ACTIONS(1682), 42, + aux_sym_unquoted_token2, + ACTIONS(1514), 41, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -314114,17 +317769,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -314133,6 +317785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -314145,21 +317798,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [86358] = 4, - ACTIONS(251), 1, + [86112] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2832), 1, + STATE(2865), 1, sym_comment, - ACTIONS(992), 18, + ACTIONS(1290), 15, + anon_sym_DOLLAR, 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_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -314169,19 +317819,19 @@ 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(994), 33, + ACTIONS(1288), 36, sym_raw_string_begin, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -314195,6 +317845,9 @@ 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_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -314203,21 +317856,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, - [86420] = 4, - ACTIONS(251), 1, + [86174] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2833), 1, + ACTIONS(5966), 1, + sym__newline, + STATE(2866), 2, sym_comment, - ACTIONS(988), 18, + aux_sym_shebang_repeat1, + ACTIONS(1294), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, 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_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -314226,17 +317880,15 @@ 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(990), 33, + aux_sym_unquoted_token1, + ACTIONS(1296), 33, sym_raw_string_begin, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -314253,6 +317905,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, @@ -314261,17 +317915,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, - [86482] = 5, + [86238] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2487), 1, + ACTIONS(2383), 1, sym_raw_string_begin, - ACTIONS(5939), 1, + ACTIONS(5969), 1, sym__entry_separator, - STATE(2834), 2, + STATE(2867), 2, sym_comment, aux_sym__multiple_types_repeat1, - ACTIONS(2482), 48, + ACTIONS(2378), 48, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -314320,25 +317974,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [86546] = 4, + [86302] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2835), 1, - sym_comment, - ACTIONS(2017), 4, + ACTIONS(5974), 1, + anon_sym_RBRACK, + ACTIONS(5976), 1, + anon_sym_DOT_DOT2, + ACTIONS(5980), 1, + sym__entry_separator, + ACTIONS(5982), 1, sym_raw_string_begin, + STATE(2868), 1, + sym_comment, + ACTIONS(5978), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(2015), 47, + ACTIONS(5972), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -314378,76 +318036,142 @@ 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, - [86608] = 4, - ACTIONS(251), 1, + [86372] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2836), 1, + ACTIONS(5903), 1, + sym__entry_separator, + ACTIONS(5905), 1, + sym_raw_string_begin, + ACTIONS(5984), 1, + anon_sym_RBRACK, + STATE(2867), 1, + aux_sym__multiple_types_repeat1, + STATE(2869), 1, sym_comment, - ACTIONS(1755), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + ACTIONS(5899), 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, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, 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(1757), 33, + 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, + [86440] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5903), 1, + sym__entry_separator, + ACTIONS(5905), 1, sym_raw_string_begin, - anon_sym_LBRACK, + ACTIONS(5986), 1, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, + STATE(2867), 1, + aux_sym__multiple_types_repeat1, + STATE(2870), 1, + sym_comment, + ACTIONS(5899), 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, + aux_sym_cmd_identifier_token37, + 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, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [86670] = 5, + [86508] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5942), 1, - aux_sym__immediate_decimal_token2, - STATE(2837), 1, - sym_comment, - ACTIONS(1785), 3, + ACTIONS(5988), 1, + anon_sym_DOT2, + STATE(3043), 1, + sym_path, + ACTIONS(937), 2, sym_raw_string_begin, - anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1783), 47, + STATE(2871), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(935), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -314494,26 +318218,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_token2, - [86734] = 8, - ACTIONS(251), 1, + [86574] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5884), 1, - anon_sym_DOT2, - STATE(2838), 1, + STATE(2872), 1, sym_comment, - STATE(2914), 1, - aux_sym_cell_path_repeat1, - STATE(3047), 1, - sym_path, - STATE(3194), 1, - sym_cell_path, - ACTIONS(1953), 14, + ACTIONS(982), 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_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -314523,7 +318242,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(1955), 33, + ACTIONS(984), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -314531,8 +318250,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -314557,17 +318276,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, - [86804] = 6, + [86636] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5944), 1, + ACTIONS(5991), 1, anon_sym_DOT_DOT2, - STATE(2839), 1, + STATE(2873), 1, sym_comment, ACTIONS(2049), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(5946), 2, + ACTIONS(5993), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(2043), 46, @@ -314617,16 +318336,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, - [86870] = 5, - ACTIONS(251), 1, + [86702] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5827), 1, - aux_sym__immediate_decimal_token2, - STATE(2840), 1, + ACTIONS(1826), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5995), 1, + anon_sym_DOT_DOT2, + STATE(2874), 1, sym_comment, - ACTIONS(1755), 17, + ACTIONS(5997), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1816), 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, @@ -314642,7 +318365,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(1757), 33, + ACTIONS(1824), 31, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -314650,8 +318373,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -314676,40 +318397,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, - [86934] = 4, - ACTIONS(251), 1, + [86770] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2841), 1, - sym_comment, - ACTIONS(1311), 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, - 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(1309), 36, + ACTIONS(998), 1, + sym__entry_separator, + ACTIONS(5976), 1, + anon_sym_DOT_DOT2, + ACTIONS(6001), 1, + anon_sym_RBRACK, + ACTIONS(6004), 1, sym_raw_string_begin, - sym__newline, + STATE(2875), 1, + sym_comment, + ACTIONS(5978), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5999), 45, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - 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, @@ -314719,13 +318435,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + 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, @@ -314734,79 +318458,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, - [86996] = 8, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [86840] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5884), 1, - anon_sym_DOT2, - STATE(2842), 1, + ACTIONS(6010), 1, + anon_sym_DASH_DASH, + STATE(3039), 1, + sym_long_flag, + STATE(2876), 2, sym_comment, - STATE(2914), 1, - aux_sym_cell_path_repeat1, - STATE(3047), 1, - sym_path, - STATE(3168), 1, - sym_cell_path, - ACTIONS(5810), 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(5817), 33, + aux_sym_decl_def_repeat1, + ACTIONS(6006), 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(6008), 42, sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + 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, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [87066] = 4, + [86906] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2843), 1, + STATE(2877), 1, sym_comment, - ACTIONS(1002), 4, + ACTIONS(2024), 4, sym_raw_string_begin, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1000), 47, + ACTIONS(2022), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -314854,106 +318577,93 @@ 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, - [87128] = 5, - ACTIONS(251), 1, + [86968] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5948), 1, - aux_sym__immediate_decimal_token2, - STATE(2844), 1, + ACTIONS(6013), 1, + anon_sym_QMARK2, + STATE(2878), 1, sym_comment, - ACTIONS(1550), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, + ACTIONS(950), 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_token34, + aux_sym_cmd_identifier_token38, anon_sym_DOT2, - ACTIONS(1552), 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_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [87192] = 8, - ACTIONS(251), 1, + ACTIONS(952), 43, + sym_raw_string_begin, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + 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, + [87032] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5884), 1, + ACTIONS(5830), 1, anon_sym_DOT2, - STATE(2845), 1, - sym_comment, - STATE(2914), 1, + STATE(2871), 1, aux_sym_cell_path_repeat1, - STATE(3047), 1, + STATE(2879), 1, + sym_comment, + STATE(3043), 1, sym_path, - STATE(3184), 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), 33, + ACTIONS(944), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(942), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -314963,10 +318673,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + 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, @@ -314975,21 +318696,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, - [87262] = 7, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [87100] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5890), 1, - sym__entry_separator, - ACTIONS(5892), 1, - sym_raw_string_begin, - ACTIONS(5950), 1, - anon_sym_RBRACK, - STATE(2834), 1, - aux_sym__multiple_types_repeat1, - STATE(2846), 1, + ACTIONS(6015), 1, + anon_sym_QMARK2, + STATE(2880), 1, sym_comment, - ACTIONS(5886), 47, + ACTIONS(968), 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_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT2, + ACTIONS(970), 43, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -314997,13 +318721,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, @@ -315022,13 +318743,12 @@ static const uint16_t ts_small_parse_table[] = { 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, aux_sym_cmd_identifier_token37, - 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, @@ -315036,18 +318756,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [87330] = 5, - ACTIONS(251), 1, + [87164] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5952), 1, - aux_sym__immediate_decimal_token2, - STATE(2847), 1, + ACTIONS(5907), 1, + anon_sym_DOT2, + STATE(2881), 1, sym_comment, - ACTIONS(1783), 17, + STATE(2913), 1, + aux_sym_cell_path_repeat1, + STATE(3080), 1, + sym_path, + STATE(3214), 1, + sym_cell_path, + ACTIONS(929), 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_0b, anon_sym_0o, @@ -315061,7 +318784,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(1785), 33, + ACTIONS(931), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -315069,8 +318792,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -315095,31 +318818,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, - [87394] = 4, - ACTIONS(3), 1, + [87234] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2848), 1, + STATE(2882), 1, sym_comment, - ACTIONS(1757), 4, + ACTIONS(1701), 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(1703), 33, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1755), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -315129,21 +318864,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - 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, @@ -315152,21 +318876,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, - [87456] = 8, - ACTIONS(251), 1, + [87296] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5884), 1, + ACTIONS(5907), 1, anon_sym_DOT2, - STATE(2849), 1, + STATE(2883), 1, sym_comment, - STATE(2914), 1, + STATE(2913), 1, aux_sym_cell_path_repeat1, - STATE(3047), 1, + STATE(3080), 1, sym_path, - STATE(3186), 1, + STATE(3212), 1, sym_cell_path, - ACTIONS(1909), 14, + ACTIONS(1931), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -315181,7 +318904,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(1911), 33, + ACTIONS(1933), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -315215,140 +318938,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, - [87526] = 5, - ACTIONS(251), 1, + [87366] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5954), 1, - anon_sym_QMARK2, - STATE(2850), 1, + STATE(2884), 1, sym_comment, - 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_token34, - aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(968), 43, + ACTIONS(2028), 4, sym_raw_string_begin, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - 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__entry_separator, + ACTIONS(2026), 47, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [87590] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5956), 1, - sym_long_flag_identifier, - ACTIONS(5958), 1, - anon_sym_EQ2, - STATE(2851), 1, - sym_comment, - ACTIONS(4860), 9, - sym_raw_string_begin, - 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(4862), 40, - 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, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_decimal_token1, - [87656] = 8, - ACTIONS(251), 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, + [87428] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5884), 1, - anon_sym_DOT2, - STATE(2852), 1, + STATE(2885), 1, sym_comment, - STATE(2914), 1, - aux_sym_cell_path_repeat1, - STATE(3047), 1, - sym_path, - STATE(3163), 1, - sym_cell_path, - ACTIONS(943), 14, + ACTIONS(1693), 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, @@ -315362,7 +319019,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(945), 33, + aux_sym__unquoted_in_list_token2, + ACTIONS(1695), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -315370,8 +319028,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -315396,20 +319054,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, - [87726] = 8, - ACTIONS(251), 1, + [87490] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5884), 1, + ACTIONS(5907), 1, anon_sym_DOT2, - STATE(2853), 1, + STATE(2886), 1, sym_comment, - STATE(2914), 1, + STATE(2913), 1, aux_sym_cell_path_repeat1, - STATE(3047), 1, + STATE(3080), 1, sym_path, - STATE(3156), 1, + STATE(3173), 1, sym_cell_path, - ACTIONS(5962), 14, + ACTIONS(1939), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -315424,7 +319082,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(5960), 33, + ACTIONS(1941), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -315458,31 +319116,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, - [87796] = 4, - ACTIONS(3), 1, + [87560] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2854), 1, + ACTIONS(5907), 1, + anon_sym_DOT2, + STATE(2887), 1, sym_comment, - ACTIONS(1713), 4, + STATE(2913), 1, + aux_sym_cell_path_repeat1, + STATE(3080), 1, + sym_path, + STATE(3194), 1, + sym_cell_path, + ACTIONS(1909), 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(1911), 33, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1711), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -315492,21 +319166,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - 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, @@ -315515,32 +319178,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, - aux_sym__unquoted_in_list_token1, - [87858] = 4, - ACTIONS(3), 1, + [87630] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2855), 1, + ACTIONS(1457), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(6017), 1, + anon_sym_DOT_DOT2, + STATE(2888), 1, sym_comment, - ACTIONS(1785), 4, - sym_raw_string_begin, + ACTIONS(6019), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1783), 47, + ACTIONS(1806), 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(1814), 31, + sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -315550,21 +319227,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - 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, @@ -315573,32 +319239,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, - aux_sym__unquoted_in_list_token1, - [87920] = 4, - ACTIONS(3), 1, + [87698] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2856), 1, + ACTIONS(5907), 1, + anon_sym_DOT2, + STATE(2889), 1, sym_comment, - ACTIONS(1837), 4, + STATE(2913), 1, + aux_sym_cell_path_repeat1, + STATE(3080), 1, + sym_path, + STATE(3216), 1, + sym_cell_path, + ACTIONS(5888), 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(5893), 33, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1835), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -315608,21 +319289,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - 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, @@ -315631,21 +319301,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, - [87982] = 7, - ACTIONS(251), 1, + [87768] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5964), 1, - anon_sym_DOT_DOT2, - STATE(2857), 1, + STATE(2890), 1, sym_comment, - ACTIONS(5966), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1802), 16, + ACTIONS(1766), 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, @@ -315661,7 +319324,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(1768), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -315669,6 +319333,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -315693,21 +319359,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, - [88050] = 7, + [87830] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5815), 1, - anon_sym_DOT2, - STATE(2802), 1, - aux_sym_cell_path_repeat1, - STATE(2858), 1, + STATE(2891), 1, sym_comment, - STATE(3003), 1, - sym_path, - ACTIONS(951), 2, + ACTIONS(1678), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(949), 46, + ACTIONS(1676), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -315715,6 +319377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -315754,102 +319417,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, - [88118] = 8, - ACTIONS(251), 1, + [87892] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5884), 1, - anon_sym_DOT2, - STATE(2859), 1, + STATE(2892), 1, sym_comment, - STATE(2914), 1, - aux_sym_cell_path_repeat1, - STATE(3047), 1, - sym_path, - STATE(3196), 1, - sym_cell_path, - ACTIONS(1961), 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(1963), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [88188] = 13, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1477), 1, + ACTIONS(1504), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(4678), 1, - anon_sym_DOLLAR, - ACTIONS(4680), 1, + ACTIONS(1506), 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_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_LPAREN2, - ACTIONS(5968), 1, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [87953] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6021), 1, anon_sym_DOT, - ACTIONS(5972), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5974), 1, - aux_sym__immediate_decimal_token5, - STATE(2860), 1, + ACTIONS(6023), 1, + aux_sym__immediate_decimal_token2, + STATE(2893), 1, sym_comment, - STATE(3239), 1, - sym__immediate_decimal, - ACTIONS(5970), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2121), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1461), 6, + ACTIONS(1701), 7, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1475), 34, - ts_builtin_sym_end, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1703), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -315861,11 +319503,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_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -315874,6 +319521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -315883,75 +319531,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [88268] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5976), 1, - anon_sym_QMARK2, - STATE(2861), 1, - sym_comment, - ACTIONS(960), 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_token34, - aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(962), 43, - sym_raw_string_begin, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - 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, - [88332] = 4, - ACTIONS(251), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [88018] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2862), 1, + STATE(2894), 1, sym_comment, - ACTIONS(1783), 18, + ACTIONS(1290), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, 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, @@ -315964,18 +319554,16 @@ 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(1785), 33, + aux_sym_unquoted_token1, + ACTIONS(1288), 34, sym_raw_string_begin, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -315992,6 +319580,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, @@ -316000,20 +319590,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, - [88394] = 4, - ACTIONS(251), 1, + [88079] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2863), 1, + ACTIONS(5615), 1, + aux_sym_unquoted_token2, + STATE(2895), 1, sym_comment, - ACTIONS(972), 7, + ACTIONS(1639), 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_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(974), 44, + ACTIONS(1651), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -316050,7 +319641,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -316058,33 +319648,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [88456] = 6, - ACTIONS(3), 1, + [88142] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5978), 1, - anon_sym_DOT_DOT2, - STATE(2864), 1, + STATE(2896), 1, sym_comment, - ACTIONS(2025), 2, + ACTIONS(1290), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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(1288), 34, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5980), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2019), 46, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -316094,21 +319691,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - 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, @@ -316117,50 +319705,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, - [88522] = 6, - ACTIONS(3), 1, + [88203] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5982), 1, - anon_sym_DOT_DOT2, - STATE(2865), 1, + STATE(2897), 1, sym_comment, - ACTIONS(2033), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5984), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2027), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(2022), 17, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, 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, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, 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, @@ -316169,108 +319727,20 @@ 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, - [88588] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1540), 1, - aux_sym_unquoted_token2, - ACTIONS(3630), 1, - anon_sym_DOLLAR, - ACTIONS(4580), 1, - anon_sym_LPAREN2, - ACTIONS(5912), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5914), 1, - aux_sym__immediate_decimal_token5, - STATE(2866), 1, - sym_comment, - STATE(3284), 1, - sym__immediate_decimal, - ACTIONS(5910), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1998), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1536), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1538), 35, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [88666] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5986), 1, - anon_sym_DOT_DOT2, - STATE(2867), 1, - sym_comment, - ACTIONS(2041), 2, + ACTIONS(2024), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5988), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2035), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -316280,21 +319750,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - 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, @@ -316303,21 +319762,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, - [88732] = 4, - ACTIONS(251), 1, + [88264] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2868), 1, + ACTIONS(6025), 1, + anon_sym_LBRACK2, + STATE(2898), 1, sym_comment, - ACTIONS(976), 7, + ACTIONS(2292), 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_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(978), 44, + ACTIONS(2296), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -316354,7 +319813,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -316362,21 +319820,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [88794] = 4, - ACTIONS(251), 1, + [88327] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2869), 1, + ACTIONS(2079), 1, + aux_sym_unquoted_token4, + STATE(2899), 1, sym_comment, - ACTIONS(984), 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_token34, - aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(986), 44, + ACTIONS(2077), 4, sym_raw_string_begin, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2073), 45, + aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -316384,10 +319841,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, @@ -316406,35 +319866,28 @@ static const uint16_t ts_small_parse_table[] = { 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, aux_sym_cmd_identifier_token37, + 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, 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, - [88856] = 8, - ACTIONS(251), 1, + [88390] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5884), 1, - anon_sym_DOT2, - STATE(2870), 1, + STATE(2900), 1, sym_comment, - STATE(2914), 1, - aux_sym_cell_path_repeat1, - STATE(3047), 1, - sym_path, - STATE(3197), 1, - sym_cell_path, - ACTIONS(1965), 14, + ACTIONS(2026), 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, @@ -316448,7 +319901,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(1967), 33, + ACTIONS(2028), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -316456,8 +319909,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -316482,80 +319935,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, - [88926] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2871), 1, - sym_comment, - 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_token34, - aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(982), 44, - sym_raw_string_begin, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - 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, - [88988] = 5, - ACTIONS(251), 1, + [88451] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5990), 1, - sym__newline, - STATE(2872), 2, + ACTIONS(6027), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6029), 1, + aux_sym__immediate_decimal_token2, + STATE(2901), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1296), 16, + ACTIONS(1504), 17, anon_sym_DOLLAR, anon_sym_DASH2, 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, @@ -316565,26 +319961,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1298), 33, + aux_sym_unquoted_token2, + ACTIONS(1506), 31, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -316599,20 +319994,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, - [89052] = 8, - ACTIONS(251), 1, + [88516] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5884), 1, - anon_sym_DOT2, - STATE(2873), 1, + ACTIONS(6031), 1, + anon_sym_DOT, + ACTIONS(6033), 1, + aux_sym__immediate_decimal_token2, + STATE(2902), 1, sym_comment, - STATE(2914), 1, - aux_sym_cell_path_repeat1, - STATE(3047), 1, - sym_path, - STATE(3198), 1, - sym_cell_path, - ACTIONS(1969), 14, + ACTIONS(1701), 15, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -316627,7 +320018,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(1971), 33, + aux_sym__unquoted_in_list_token2, + ACTIONS(1703), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -316661,86 +320053,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, - [89122] = 7, + [88581] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5890), 1, - sym__entry_separator, - ACTIONS(5892), 1, + STATE(2903), 1, + sym_comment, + ACTIONS(1703), 3, sym_raw_string_begin, - ACTIONS(5993), 1, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1701), 47, + anon_sym_LBRACK, anon_sym_RBRACK, - STATE(2834), 1, - aux_sym__multiple_types_repeat1, - STATE(2874), 1, - sym_comment, - ACTIONS(5886), 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, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, 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, - [89190] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5884), 1, - anon_sym_DOT2, - STATE(2875), 1, - sym_comment, - STATE(2914), 1, - aux_sym_cell_path_repeat1, - STATE(3047), 1, - sym_path, - STATE(3199), 1, - sym_cell_path, - ACTIONS(1979), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, 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, @@ -316749,20 +320100,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(1981), 33, + aux_sym__unquoted_in_list_token2, + [88642] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2904), 1, + sym_comment, + ACTIONS(1695), 3, sym_raw_string_begin, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1693), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -316772,10 +320142,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + 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, @@ -316784,83 +320165,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, - [89260] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5890), 1, - sym__entry_separator, - ACTIONS(5892), 1, - sym_raw_string_begin, - ACTIONS(5995), 1, - anon_sym_RBRACK, - STATE(2834), 1, - aux_sym__multiple_types_repeat1, - STATE(2876), 1, - sym_comment, - ACTIONS(5886), 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, - aux_sym_cmd_identifier_token37, - 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, - [89328] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1822), 1, + aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - ACTIONS(5997), 1, - anon_sym_DOT_DOT2, - STATE(2877), 1, + [88703] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6035), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6037), 1, + aux_sym__immediate_decimal_token2, + STATE(2905), 1, sym_comment, - ACTIONS(5999), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1812), 16, + ACTIONS(1693), 15, 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, @@ -316874,7 +320191,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(1820), 31, + aux_sym__unquoted_in_list_token2, + ACTIONS(1695), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -316882,6 +320200,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -316906,44 +320226,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, - [89396] = 6, - ACTIONS(251), 1, + [88768] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6001), 1, - anon_sym_DOT_DOT2, - STATE(2878), 1, + STATE(2906), 1, sym_comment, - ACTIONS(6003), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2043), 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(2049), 31, + ACTIONS(1768), 3, sym_raw_string_begin, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1766), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -316953,10 +320258,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + 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, @@ -316965,15 +320281,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, - [89461] = 4, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [88829] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2879), 1, + STATE(2907), 1, sym_comment, - ACTIONS(974), 2, + ACTIONS(1794), 3, sym_raw_string_begin, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(972), 48, + ACTIONS(1792), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -316981,7 +320300,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -317004,7 +320322,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -317022,69 +320339,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, - [89522] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2880), 1, - sym_comment, - ACTIONS(2514), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2512), 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, - aux_sym_cmd_identifier_token37, - 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, - [89583] = 4, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token2, + [88890] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2881), 1, + STATE(2908), 1, sym_comment, - ACTIONS(1711), 17, + ACTIONS(1701), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -317102,7 +320363,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(1713), 33, + ACTIONS(1703), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -317136,18 +320397,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, - [89644] = 6, - ACTIONS(251), 1, + [88951] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6005), 1, - anon_sym_DOT_DOT2, - STATE(2882), 1, + STATE(2909), 1, sym_comment, - ACTIONS(6007), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2019), 16, + ACTIONS(1693), 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, @@ -317163,7 +320420,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(2025), 31, + ACTIONS(1695), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -317171,6 +320428,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -317195,18 +320454,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, - [89709] = 6, - ACTIONS(251), 1, + [89012] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6009), 1, - anon_sym_DOT2, - STATE(3047), 1, - sym_path, - STATE(2883), 2, + STATE(2910), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(953), 14, + ACTIONS(1766), 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, @@ -317220,7 +320477,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(955), 33, + ACTIONS(1768), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -317228,8 +320485,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -317254,18 +320511,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, - [89774] = 6, - ACTIONS(251), 1, + [89073] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6012), 1, - anon_sym_DOT_DOT2, - STATE(2884), 1, + STATE(2911), 1, sym_comment, - ACTIONS(6014), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2027), 16, + ACTIONS(1792), 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, @@ -317281,7 +320534,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(2033), 31, + ACTIONS(1794), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -317289,6 +320542,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -317313,207 +320568,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, - [89839] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5890), 1, - sym__entry_separator, - ACTIONS(5892), 1, - sym_raw_string_begin, - STATE(2834), 1, - aux_sym__multiple_types_repeat1, - STATE(2885), 1, - sym_comment, - ACTIONS(5886), 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, - aux_sym_cmd_identifier_token37, - 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, - [89904] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6016), 1, - anon_sym_LBRACK2, - STATE(2886), 1, - sym_comment, - ACTIONS(2230), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2234), 43, - sym_raw_string_begin, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - 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, - [89967] = 5, - ACTIONS(251), 1, + [89134] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6018), 1, - sym__newline, - STATE(2887), 2, + ACTIONS(6039), 1, + anon_sym_DOT_DOT2, + STATE(2912), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1296), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1298), 42, - sym_raw_string_begin, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(6041), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1985), 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, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [90030] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1814), 1, - anon_sym_LPAREN2, - ACTIONS(1822), 1, - aux_sym__unquoted_in_list_token2, - STATE(2888), 1, - sym_comment, - ACTIONS(2222), 2, + 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(1991), 31, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2220), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -317523,21 +320615,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - 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, @@ -317546,21 +320627,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, - [90095] = 6, - ACTIONS(251), 1, + [89199] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6021), 1, - anon_sym_DOT_DOT2, - STATE(2889), 1, + ACTIONS(5907), 1, + anon_sym_DOT2, + STATE(2913), 1, sym_comment, - ACTIONS(6023), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2035), 16, + STATE(2922), 1, + aux_sym_cell_path_repeat1, + STATE(3080), 1, + sym_path, + ACTIONS(942), 14, 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, @@ -317574,7 +320653,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(2041), 31, + ACTIONS(944), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -317582,6 +320661,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -317606,56 +320687,228 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [90160] = 6, - ACTIONS(3), 1, + [89266] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1804), 1, + STATE(2914), 1, + sym_comment, + ACTIONS(1512), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1514), 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_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_LPAREN2, - STATE(2890), 1, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [89327] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2915), 1, sym_comment, - ACTIONS(1810), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1802), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(1618), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1620), 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_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [89388] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2916), 1, + sym_comment, + ACTIONS(1689), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1691), 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_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [89449] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6043), 1, + anon_sym_DOT, + ACTIONS(6045), 1, + aux_sym__immediate_decimal_token2, + STATE(2917), 1, + sym_comment, + ACTIONS(1512), 17, anon_sym_DOLLAR, - anon_sym_LBRACE, + anon_sym_DASH2, 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_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(1514), 31, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, - 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, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_filesize_unit, + sym_duration_unit, 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, @@ -317664,13 +320917,70 @@ static const 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, - [90225] = 4, - ACTIONS(251), 1, + [89514] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2891), 1, + ACTIONS(5964), 1, + aux_sym__immediate_decimal_token2, + STATE(2918), 1, + sym_comment, + ACTIONS(1512), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1514), 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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [89577] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2919), 1, sym_comment, - ACTIONS(1783), 17, + ACTIONS(1676), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -317688,7 +320998,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(1785), 33, + ACTIONS(1678), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -317722,14 +321032,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, - [90286] = 4, - ACTIONS(251), 1, + [89638] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2892), 1, + ACTIONS(6047), 1, + anon_sym_DOT_DOT2, + STATE(2920), 1, sym_comment, - ACTIONS(1835), 17, + ACTIONS(6049), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5999), 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, @@ -317745,7 +321059,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(1837), 33, + ACTIONS(6004), 31, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -317753,8 +321067,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -317779,16 +321091,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, - [90347] = 6, - ACTIONS(251), 1, + [89703] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6025), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6027), 1, + ACTIONS(6051), 1, aux_sym__immediate_decimal_token2, - STATE(2893), 1, + STATE(2921), 1, sym_comment, - ACTIONS(1542), 8, + ACTIONS(1618), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -317797,7 +321107,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1544), 40, + ACTIONS(1620), 41, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -317809,14 +321120,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_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -317838,23 +321149,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [90412] = 6, - ACTIONS(251), 1, + [89766] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6029), 1, - anon_sym_DOT, - ACTIONS(6031), 1, + ACTIONS(6053), 1, + anon_sym_DOT2, + STATE(3080), 1, + sym_path, + STATE(2922), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(935), 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(937), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [89831] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6056), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6058), 1, aux_sym__immediate_decimal_token2, - STATE(2894), 1, + STATE(2923), 1, sym_comment, - ACTIONS(1550), 17, + ACTIONS(1695), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1693), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_DASH2, + anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -317863,32 +321258,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, - aux_sym_unquoted_token2, - ACTIONS(1552), 31, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + 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, + [89896] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1457), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1808), 1, + anon_sym_LPAREN2, + STATE(2924), 1, + sym_comment, + ACTIONS(1814), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1806), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + 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, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - 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_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, @@ -317897,25 +321325,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, - [90477] = 6, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [89961] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6033), 1, - anon_sym_DOT, - ACTIONS(6035), 1, + ACTIONS(6060), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6062), 1, aux_sym__immediate_decimal_token2, - STATE(2895), 1, + STATE(2925), 1, sym_comment, - ACTIONS(1550), 8, + ACTIONS(1693), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1552), 40, + ACTIONS(1695), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -317935,6 +321363,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -317955,20 +321385,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [90542] = 6, + [90026] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1814), 1, + ACTIONS(1818), 1, anon_sym_LPAREN2, - ACTIONS(1822), 1, + ACTIONS(1826), 1, aux_sym__unquoted_in_list_token2, - STATE(2896), 1, + STATE(2926), 1, sym_comment, - ACTIONS(1820), 2, + ACTIONS(2166), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1812), 46, + ACTIONS(2164), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -318015,73 +321444,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, - [90607] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6037), 1, - anon_sym_EQ2, - STATE(2897), 1, - sym_comment, - ACTIONS(4986), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(4984), 43, - sym_raw_string_begin, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - 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, - [90670] = 4, + [90091] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2898), 1, + ACTIONS(1818), 1, + anon_sym_LPAREN2, + ACTIONS(1826), 1, + aux_sym__unquoted_in_list_token2, + STATE(2927), 1, sym_comment, - ACTIONS(982), 2, + ACTIONS(1824), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(980), 48, + ACTIONS(1816), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -318089,7 +321464,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -318112,7 +321486,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -318130,12 +321503,71 @@ 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, - [90731] = 4, - ACTIONS(251), 1, + [90156] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2899), 1, + ACTIONS(6064), 1, + anon_sym_DOT_DOT2, + STATE(2928), 1, + sym_comment, + ACTIONS(6066), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1977), 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(1983), 31, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [90221] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2929), 1, sym_comment, - ACTIONS(1719), 17, + ACTIONS(986), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -318153,7 +321585,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(1721), 33, + ACTIONS(988), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -318187,18 +321619,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, - [90792] = 4, + [90282] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2900), 1, - sym_comment, - ACTIONS(1757), 3, - sym_raw_string_begin, - anon_sym_LPAREN2, + ACTIONS(998), 1, sym__entry_separator, - ACTIONS(1755), 47, - anon_sym_LBRACK, + ACTIONS(2061), 1, + anon_sym_LPAREN2, + ACTIONS(2063), 1, + aux_sym__unquoted_in_list_token4, + ACTIONS(6001), 1, anon_sym_RBRACK, + ACTIONS(6004), 1, + sym_raw_string_begin, + STATE(2930), 1, + sym_comment, + ACTIONS(5999), 45, + anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -318243,82 +321680,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_token2, - [90853] = 5, + [90351] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2134), 1, - aux_sym_unquoted_token4, - STATE(2901), 1, + ACTIONS(2192), 1, + anon_sym_LPAREN2, + ACTIONS(2196), 1, + aux_sym__unquoted_in_list_token2, + STATE(2931), 1, sym_comment, - ACTIONS(2132), 4, + ACTIONS(2194), 2, sym_raw_string_begin, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2128), 45, - 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, - aux_sym_cmd_identifier_token37, - 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, - [90916] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1012), 1, sym__entry_separator, - ACTIONS(2206), 1, - anon_sym_LPAREN2, - ACTIONS(2208), 1, - aux_sym__unquoted_in_list_token4, - ACTIONS(5932), 1, - anon_sym_RBRACK, - ACTIONS(5935), 1, - sym_raw_string_begin, - STATE(2902), 1, - sym_comment, - ACTIONS(5930), 45, + ACTIONS(2190), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -318363,57 +321739,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, - [90985] = 6, - ACTIONS(251), 1, + [90416] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6039), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6041), 1, + ACTIONS(6068), 1, + anon_sym_DOT, + ACTIONS(6070), 1, aux_sym__immediate_decimal_token2, - STATE(2903), 1, + STATE(2932), 1, sym_comment, - ACTIONS(1542), 17, + ACTIONS(1703), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1701), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_DASH2, + anon_sym_LBRACE, 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_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(1544), 31, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, + 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, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - 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_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, @@ -318422,77 +321797,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [91050] = 5, + aux_sym__unquoted_in_list_token1, + [90481] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6072), 1, + anon_sym_EQ2, + STATE(2933), 1, + sym_comment, + ACTIONS(5052), 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5050), 43, + sym_raw_string_begin, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + 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, + [90544] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6043), 1, - anon_sym_QMARK2, - STATE(2904), 1, + ACTIONS(2079), 1, + aux_sym_unquoted_token4, + STATE(2934), 1, sym_comment, - ACTIONS(968), 2, + ACTIONS(2083), 4, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(966), 47, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2081), 45, + 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, + aux_sym_cmd_identifier_token37, + 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, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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_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, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - 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, - [91113] = 5, + [90607] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2208), 1, + ACTIONS(2071), 1, aux_sym_unquoted_token4, - STATE(2905), 1, + STATE(2935), 1, sym_comment, - ACTIONS(1012), 4, + ACTIONS(2069), 4, sym_raw_string_begin, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1016), 45, + ACTIONS(2065), 45, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -318538,73 +321972,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - [91176] = 5, + [90670] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6045), 1, - anon_sym_QMARK2, - STATE(2906), 1, + ACTIONS(2063), 1, + aux_sym_unquoted_token4, + STATE(2936), 1, sym_comment, - ACTIONS(962), 2, + ACTIONS(998), 4, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(960), 47, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1002), 45, + 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, + aux_sym_cmd_identifier_token37, + 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, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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_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, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - 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, - [91239] = 4, - ACTIONS(251), 1, + [90733] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2907), 1, + ACTIONS(6047), 1, + anon_sym_DOT_DOT2, + STATE(2937), 1, sym_comment, - ACTIONS(1311), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, + ACTIONS(6049), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5972), 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, @@ -318617,16 +322056,15 @@ 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(1309), 34, + aux_sym__unquoted_in_list_token1, + ACTIONS(5982), 31, sym_raw_string_begin, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -318643,8 +322081,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, @@ -318653,72 +322089,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [91300] = 4, - ACTIONS(251), 1, + [90798] = 11, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2908), 1, - sym_comment, - ACTIONS(1993), 17, - anon_sym_DOT_DOT, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + ACTIONS(4758), 1, + aux_sym_unquoted_token2, + ACTIONS(6074), 1, 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(1995), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(6078), 1, + sym_filesize_unit, + ACTIONS(6080), 1, + sym_duration_unit, + STATE(2938), 1, + sym_comment, + STATE(7297), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6076), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, + ACTIONS(1639), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1651), 37, + 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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [90873] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2939), 1, + sym_comment, + ACTIONS(982), 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_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT2, + ACTIONS(984), 43, + sym_raw_string_begin, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + 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, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [91361] = 4, + [90934] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6082), 1, + sym__newline, + STATE(2940), 2, + sym_comment, + aux_sym_shebang_repeat1, + ACTIONS(1294), 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1296), 42, + sym_raw_string_begin, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + 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, + [90997] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2909), 1, + ACTIONS(2067), 1, + anon_sym_LPAREN2, + ACTIONS(2071), 1, + aux_sym__unquoted_in_list_token4, + STATE(2941), 1, sym_comment, - ACTIONS(978), 2, + ACTIONS(2069), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(976), 48, + ACTIONS(2065), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -318726,7 +322288,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -318749,7 +322310,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -318767,19 +322327,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, - [91422] = 6, + [91062] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2130), 1, - anon_sym_LPAREN2, - ACTIONS(2134), 1, - aux_sym__unquoted_in_list_token4, - STATE(2910), 1, + STATE(2942), 1, sym_comment, - ACTIONS(2132), 2, + ACTIONS(2087), 3, sym_raw_string_begin, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(2128), 46, + ACTIONS(2085), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -318826,19 +322383,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, - [91487] = 6, + aux_sym__unquoted_in_list_token4, + [91123] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6047), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6049), 1, - aux_sym__immediate_decimal_token2, - STATE(2911), 1, + STATE(2943), 1, sym_comment, - ACTIONS(1713), 2, + ACTIONS(958), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1711), 46, + ACTIONS(956), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -318846,6 +322400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -318868,6 +322423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -318885,17 +322441,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, - [91552] = 6, - ACTIONS(251), 1, + [91184] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6051), 1, + ACTIONS(6085), 1, anon_sym_DOT_DOT2, - STATE(2912), 1, + STATE(2944), 1, sym_comment, - ACTIONS(6053), 2, + ACTIONS(6087), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5930), 16, + ACTIONS(2043), 16, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -318912,7 +322468,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(5935), 31, + ACTIONS(2049), 31, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -318944,44 +322500,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, - [91617] = 6, - ACTIONS(251), 1, + [91249] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6055), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6057), 1, - aux_sym__immediate_decimal_token2, - STATE(2913), 1, + STATE(2945), 1, sym_comment, - ACTIONS(1711), 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(1713), 33, + ACTIONS(962), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(960), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -318991,92 +322532,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - 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, - [91682] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5884), 1, - anon_sym_DOT2, - STATE(2883), 1, - aux_sym_cell_path_repeat1, - STATE(2914), 1, - sym_comment, - STATE(3047), 1, - sym_path, - ACTIONS(949), 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(951), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, 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, - [91749] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2915), 1, - sym_comment, - ACTIONS(1000), 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_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -319085,33 +322548,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(1002), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, @@ -319120,84 +322556,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, - [91810] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym_unquoted_token2, - ACTIONS(4678), 1, - anon_sym_DOLLAR, - ACTIONS(4680), 1, - anon_sym_LPAREN2, - ACTIONS(6061), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6063), 1, - aux_sym__immediate_decimal_token5, - STATE(2916), 1, - sym_comment, - STATE(3352), 1, - sym__immediate_decimal, - ACTIONS(6059), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2452), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1461), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1475), 34, - 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_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [91887] = 6, + aux_sym__unquoted_in_list_token1, + [91310] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2138), 1, - anon_sym_LPAREN2, - ACTIONS(2142), 1, - aux_sym__unquoted_in_list_token4, - STATE(2917), 1, + STATE(2946), 1, sym_comment, - ACTIONS(2146), 2, + ACTIONS(966), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2144), 46, + ACTIONS(964), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -319205,6 +322573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -319227,6 +322596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -319244,15 +322614,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, - [91952] = 4, - ACTIONS(251), 1, + [91371] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2918), 1, + STATE(2947), 1, sym_comment, - ACTIONS(1311), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, + ACTIONS(2010), 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, @@ -319265,16 +322636,17 @@ 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(1309), 34, + aux_sym__unquoted_in_list_token1, + ACTIONS(2012), 33, sym_raw_string_begin, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -319291,8 +322663,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, @@ -319301,26 +322671,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, - [92013] = 9, + [91432] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5555), 1, + ACTIONS(2075), 1, anon_sym_LPAREN2, - ACTIONS(5920), 1, - anon_sym_RBRACK, - ACTIONS(5926), 1, - sym__entry_separator, - ACTIONS(6067), 1, - anon_sym_COMMA, - ACTIONS(6069), 1, - sym_raw_string_begin, - STATE(2919), 1, + ACTIONS(2079), 1, + aux_sym__unquoted_in_list_token4, + STATE(2948), 1, sym_comment, - STATE(7359), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6065), 44, + ACTIONS(2077), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2073), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, @@ -319363,18 +322730,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, - [92084] = 4, - ACTIONS(3), 1, + [91497] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2920), 1, + STATE(2949), 1, sym_comment, - ACTIONS(2150), 4, - sym_raw_string_begin, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2148), 46, + ACTIONS(978), 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_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT2, + ACTIONS(980), 43, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -319382,13 +322752,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, @@ -319407,11 +322774,9 @@ static const uint16_t ts_small_parse_table[] = { 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, aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, @@ -319419,136 +322784,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym_unquoted_token4, - [92145] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2921), 1, - sym_comment, - ACTIONS(2150), 3, - sym_raw_string_begin, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(2148), 47, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - 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, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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_token4, - [92206] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2922), 1, - sym_comment, - ACTIONS(1680), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - anon_sym_DOT2, - ACTIONS(1682), 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_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [92267] = 5, - ACTIONS(251), 1, + [91558] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5619), 1, - aux_sym_unquoted_token2, - STATE(2923), 1, + STATE(2950), 1, sym_comment, - ACTIONS(1638), 6, + ACTIONS(974), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1650), 43, + anon_sym_DOT2, + ACTIONS(976), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -319592,76 +322844,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [92330] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2924), 1, - sym_comment, - ACTIONS(1542), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - anon_sym_DOT2, - ACTIONS(1544), 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_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [92391] = 5, + [91619] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2142), 1, - aux_sym_unquoted_token4, - STATE(2925), 1, - sym_comment, - ACTIONS(2146), 4, + ACTIONS(5903), 1, + sym__entry_separator, + ACTIONS(5905), 1, sym_raw_string_begin, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2144), 45, + STATE(2867), 1, + aux_sym__multiple_types_repeat1, + STATE(2951), 1, + sym_comment, + ACTIONS(5899), 47, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -319702,135 +322896,88 @@ 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, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - [92454] = 4, - ACTIONS(251), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [91684] = 9, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2926), 1, - sym_comment, - ACTIONS(992), 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_token34, - aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(994), 43, + ACTIONS(5565), 1, + anon_sym_LPAREN2, + ACTIONS(5974), 1, + anon_sym_RBRACK, + ACTIONS(5980), 1, + sym__entry_separator, + ACTIONS(6091), 1, + anon_sym_COMMA, + ACTIONS(6093), 1, sym_raw_string_begin, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + STATE(2952), 1, + sym_comment, + STATE(7357), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6089), 44, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [92515] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2927), 1, - sym_comment, - ACTIONS(1743), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - anon_sym_DOT2, - ACTIONS(1745), 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_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [92576] = 4, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, + [91755] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2928), 1, + ACTIONS(2075), 1, + anon_sym_LPAREN2, + ACTIONS(2079), 1, + aux_sym__unquoted_in_list_token4, + STATE(2953), 1, sym_comment, - ACTIONS(1713), 3, + ACTIONS(2083), 2, sym_raw_string_begin, - anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1711), 47, + ACTIONS(2081), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -319877,79 +323024,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, - aux_sym__unquoted_in_list_token2, - [92637] = 4, - ACTIONS(251), 1, + [91820] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2929), 1, + STATE(2954), 1, sym_comment, - ACTIONS(1550), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - anon_sym_DOT2, - ACTIONS(1552), 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_DASH2, - anon_sym_in2, + ACTIONS(948), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(946), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_DOT_DOT, anon_sym_QMARK2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [92698] = 4, - ACTIONS(251), 1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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_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, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + 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, + [91881] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2930), 1, + STATE(2955), 1, sym_comment, - ACTIONS(996), 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_token34, - aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(998), 43, + ACTIONS(2087), 4, sym_raw_string_begin, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2085), 46, + aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -319957,10 +323100,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, @@ -319979,9 +323125,11 @@ static const uint16_t ts_small_parse_table[] = { 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, aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, @@ -319989,22 +323137,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [92759] = 5, + aux_sym_unquoted_token4, + [91942] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2142), 1, - aux_sym_unquoted_token4, - STATE(2931), 1, + STATE(2956), 1, sym_comment, - ACTIONS(2140), 4, + ACTIONS(2497), 2, sym_raw_string_begin, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2136), 45, + sym__entry_separator, + ACTIONS(2495), 48, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -320045,78 +323187,25 @@ 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, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - [92822] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2932), 1, - sym_comment, - ACTIONS(1997), 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(1999), 33, - sym_raw_string_begin, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, + 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, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [92883] = 4, + [92003] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2933), 1, + ACTIONS(6095), 1, + anon_sym_QMARK2, + STATE(2957), 1, sym_comment, - ACTIONS(1785), 3, + ACTIONS(952), 2, sym_raw_string_begin, - anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1783), 47, + ACTIONS(950), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -320146,6 +323235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -320163,18 +323253,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, - aux_sym__unquoted_in_list_token2, - [92944] = 6, - ACTIONS(251), 1, + [92066] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6051), 1, + ACTIONS(6097), 1, anon_sym_DOT_DOT2, - STATE(2934), 1, + STATE(2958), 1, sym_comment, - ACTIONS(6053), 2, + ACTIONS(6099), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5918), 16, + ACTIONS(2030), 16, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -320191,7 +323280,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(5928), 31, + ACTIONS(2036), 31, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -320223,19 +323312,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, - [93009] = 6, + [92131] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1540), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2226), 1, - anon_sym_LPAREN2, - STATE(2935), 1, + ACTIONS(6101), 1, + anon_sym_QMARK2, + STATE(2959), 1, sym_comment, - ACTIONS(2228), 2, + ACTIONS(970), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2224), 46, + ACTIONS(968), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -320265,6 +323352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -320282,16 +323370,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, - [93074] = 4, + [92194] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2936), 1, + ACTIONS(1562), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2170), 1, + anon_sym_LPAREN2, + STATE(2960), 1, sym_comment, - ACTIONS(1837), 3, + ACTIONS(2172), 2, sym_raw_string_begin, - anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1835), 47, + ACTIONS(2168), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -320338,38 +323429,24 @@ 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, - [93135] = 12, - ACTIONS(251), 1, + [92259] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1540), 1, - aux_sym_unquoted_token2, - ACTIONS(4678), 1, - anon_sym_DOLLAR, - ACTIONS(4680), 1, - anon_sym_LPAREN2, - ACTIONS(6061), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6063), 1, - aux_sym__immediate_decimal_token5, - STATE(2937), 1, + ACTIONS(6103), 1, + anon_sym_DOT, + ACTIONS(6105), 1, + aux_sym__immediate_decimal_token2, + STATE(2961), 1, sym_comment, - STATE(3365), 1, - sym__immediate_decimal, - ACTIONS(6059), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2507), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1536), 6, + ACTIONS(1701), 7, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1538), 34, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1703), 40, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -320382,11 +323459,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_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -320395,6 +323475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -320404,197 +323485,247 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [93212] = 6, - ACTIONS(251), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [92323] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6071), 1, - anon_sym_DOT, - ACTIONS(6073), 1, - aux_sym__immediate_decimal_token2, - STATE(2938), 1, + STATE(2962), 1, sym_comment, - ACTIONS(1755), 15, - anon_sym_DOT_DOT, + ACTIONS(1639), 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1651), 43, + sym_raw_string_begin, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, 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(1757), 33, + 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, + [92383] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2963), 1, + sym_comment, + ACTIONS(2421), 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2423), 43, sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + 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, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [93277] = 6, - ACTIONS(3), 1, + [92443] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2174), 1, - anon_sym_LPAREN2, - ACTIONS(2178), 1, - aux_sym__unquoted_in_list_token2, - STATE(2939), 1, + STATE(2964), 1, sym_comment, - ACTIONS(2176), 2, + ACTIONS(1002), 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(998), 43, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2172), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + 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, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [93342] = 6, - ACTIONS(3), 1, + [92503] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6075), 1, - anon_sym_DOT, - ACTIONS(6077), 1, - aux_sym__immediate_decimal_token2, - STATE(2940), 1, + STATE(2965), 1, sym_comment, - ACTIONS(1757), 2, + ACTIONS(2306), 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2308), 43, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1755), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + 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, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [93407] = 4, - ACTIONS(251), 1, + [92563] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2941), 1, + ACTIONS(6045), 1, + aux_sym__immediate_decimal_token2, + STATE(2966), 1, sym_comment, - ACTIONS(1755), 17, + ACTIONS(1512), 17, + anon_sym_DOLLAR, + anon_sym_DASH2, 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, @@ -320603,15 +323734,13 @@ 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), 33, + aux_sym_unquoted_token1, + aux_sym_unquoted_token2, + ACTIONS(1514), 31, sym_raw_string_begin, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_null, @@ -320620,16 +323749,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + 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, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -320638,23 +323768,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, - [93468] = 4, + [92625] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2942), 1, - sym_comment, - ACTIONS(986), 2, - sym_raw_string_begin, + ACTIONS(6109), 1, + anon_sym_RBRACE, + ACTIONS(6111), 1, sym__entry_separator, - ACTIONS(984), 48, + ACTIONS(6113), 1, + sym_raw_string_begin, + STATE(2967), 1, + sym_comment, + STATE(2978), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6107), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym__, anon_sym_DOT_DOT, - anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -320677,7 +323810,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -320694,21 +323826,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, - [93529] = 4, - ACTIONS(251), 1, + aux_sym_unquoted_token1, + [92691] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2943), 1, + STATE(2968), 1, sym_comment, - ACTIONS(988), 7, + ACTIONS(5026), 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_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(990), 43, + ACTIONS(5024), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -320752,249 +323883,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93590] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2944), 1, - sym_comment, - ACTIONS(2015), 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(2017), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [93651] = 6, - ACTIONS(3), 1, + [92751] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2138), 1, - anon_sym_LPAREN2, - ACTIONS(2142), 1, - aux_sym__unquoted_in_list_token4, - STATE(2945), 1, + STATE(2969), 1, sym_comment, - ACTIONS(2140), 2, + ACTIONS(2429), 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2431), 43, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2136), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + 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, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [93716] = 5, - ACTIONS(251), 1, + [92811] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6079), 1, + ACTIONS(6115), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6117), 1, aux_sym__immediate_decimal_token2, - STATE(2946), 1, + STATE(2970), 1, sym_comment, - ACTIONS(1783), 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(1785), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [93778] = 7, - ACTIONS(3), 1, + ACTIONS(1693), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1695), 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, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [92875] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6083), 1, - anon_sym_RBRACE, - ACTIONS(6085), 1, - sym__entry_separator, - ACTIONS(6087), 1, - sym_raw_string_begin, - STATE(2947), 1, + STATE(2971), 1, sym_comment, - STATE(3032), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(6081), 45, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + ACTIONS(1290), 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1288), 43, + sym_raw_string_begin, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, 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, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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_token1, - [93844] = 5, + [92935] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6089), 1, - anon_sym_LBRACK2, - STATE(2948), 1, + STATE(2972), 1, sym_comment, - ACTIONS(2234), 2, + ACTIONS(976), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2230), 46, + ACTIONS(974), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -321024,6 +324091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -321041,19 +324109,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, - [93906] = 5, - ACTIONS(251), 1, + [92995] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6073), 1, + ACTIONS(6119), 1, aux_sym__immediate_decimal_token2, - STATE(2949), 1, + STATE(2973), 1, sym_comment, - ACTIONS(1755), 15, + ACTIONS(1618), 17, + anon_sym_DOLLAR, + anon_sym_DASH2, 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, @@ -321062,89 +324132,32 @@ 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(1757), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [93968] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2950), 1, - sym_comment, - ACTIONS(6093), 3, + aux_sym_unquoted_token1, + aux_sym_unquoted_token2, + ACTIONS(1620), 31, sym_raw_string_begin, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(6091), 46, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, - 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, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_filesize_unit, + sym_duration_unit, 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, @@ -321153,78 +324166,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, - [94028] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5948), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6095), 1, - anon_sym_DOT, - STATE(2951), 1, - sym_comment, - ACTIONS(1550), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - ACTIONS(1552), 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_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [94092] = 4, - ACTIONS(251), 1, + [93057] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2952), 1, + STATE(2974), 1, sym_comment, - ACTIONS(1638), 6, + ACTIONS(2437), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1650), 43, + ACTIONS(2439), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -321268,19 +324222,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94152] = 4, - ACTIONS(251), 1, + [93117] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2584), 1, + anon_sym_DOT_DOT2, + ACTIONS(6121), 1, + sym_filesize_unit, + ACTIONS(6123), 1, + sym_duration_unit, + STATE(2975), 1, + sym_comment, + ACTIONS(2586), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1639), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1651), 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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [93185] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2953), 1, + STATE(2976), 1, sym_comment, - ACTIONS(1016), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1012), 43, + ACTIONS(1841), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -321324,10 +324338,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94212] = 4, - ACTIONS(251), 1, + [93245] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2954), 1, + STATE(2977), 1, sym_comment, ACTIONS(2489), 6, aux_sym_cmd_identifier_token1, @@ -321380,24 +324394,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94272] = 7, + [93305] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6085), 1, - sym__entry_separator, - ACTIONS(6087), 1, + ACTIONS(2383), 1, sym_raw_string_begin, - ACTIONS(6097), 1, - anon_sym_RBRACE, - STATE(2955), 1, + ACTIONS(6125), 1, + sym__entry_separator, + STATE(2978), 2, sym_comment, - STATE(3032), 1, aux_sym__multiple_types_repeat1, - ACTIONS(6081), 45, + ACTIONS(2378), 46, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -321439,131 +324451,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - [94338] = 4, - ACTIONS(251), 1, + [93367] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2956), 1, + ACTIONS(6128), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6130), 1, + aux_sym__immediate_decimal_token2, + STATE(2979), 1, sym_comment, - ACTIONS(2501), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2503), 43, - sym_raw_string_begin, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + ACTIONS(1693), 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(1695), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94398] = 4, - ACTIONS(251), 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, + [93431] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2957), 1, + ACTIONS(5575), 1, + aux_sym__unquoted_in_list_token2, + STATE(2980), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(978), 43, + ACTIONS(1651), 2, sym_raw_string_begin, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__entry_separator, + ACTIONS(1639), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94458] = 4, - ACTIONS(251), 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, + [93493] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2958), 1, + STATE(2981), 1, sym_comment, - ACTIONS(1941), 6, + ACTIONS(2407), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1943), 43, + ACTIONS(2409), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -321607,19 +324622,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94518] = 4, - ACTIONS(251), 1, + [93553] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2959), 1, + STATE(2982), 1, sym_comment, - ACTIONS(2446), 6, + ACTIONS(1877), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2448), 43, + ACTIONS(1879), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -321663,25 +324678,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94578] = 7, + [93613] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6085), 1, - sym__entry_separator, - ACTIONS(6087), 1, + STATE(2983), 1, + sym_comment, + ACTIONS(6134), 3, sym_raw_string_begin, - ACTIONS(6099), 1, - anon_sym_RBRACE, - STATE(2960), 1, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(6132), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [93673] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2984), 1, sym_comment, - STATE(3032), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(6081), 45, + ACTIONS(980), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(978), 47, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -321705,6 +324772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -321721,20 +324789,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, - [94644] = 4, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [93733] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2961), 1, + STATE(2985), 1, sym_comment, - ACTIONS(2414), 6, + ACTIONS(2457), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2416), 43, + ACTIONS(2459), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -321778,19 +324846,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94704] = 4, - ACTIONS(251), 1, + [93793] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2962), 1, + STATE(2986), 1, + sym_comment, + ACTIONS(1512), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1514), 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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [93853] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2987), 1, sym_comment, - ACTIONS(980), 6, + ACTIONS(2461), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(982), 43, + ACTIONS(2463), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -321834,21 +324958,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94764] = 6, - ACTIONS(251), 1, + [93913] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6101), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6103), 1, - aux_sym__immediate_decimal_token2, - STATE(2963), 1, + STATE(2988), 1, sym_comment, - ACTIONS(1711), 14, + ACTIONS(956), 15, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -321858,7 +324979,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(1713), 33, + ACTIONS(958), 34, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -321866,6 +324987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -321892,71 +325014,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, - [94828] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6035), 1, - aux_sym__immediate_decimal_token2, - STATE(2964), 1, - sym_comment, - ACTIONS(1550), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1552), 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_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [94890] = 5, - ACTIONS(251), 1, + [93973] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6105), 1, - aux_sym__immediate_decimal_token2, - STATE(2965), 1, + STATE(2989), 1, sym_comment, - ACTIONS(1680), 8, + ACTIONS(1504), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -321965,7 +325028,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1682), 40, + ACTIONS(1506), 41, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -321977,14 +325041,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_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -322006,74 +325070,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [94952] = 6, - ACTIONS(251), 1, + [94033] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6107), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6109), 1, + ACTIONS(6136), 1, aux_sym__immediate_decimal_token2, - STATE(2966), 1, + STATE(2990), 1, sym_comment, - ACTIONS(1542), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1544), 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [95016] = 6, - ACTIONS(251), 1, + ACTIONS(1766), 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(1768), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [94095] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6111), 1, - anon_sym_DOT, - ACTIONS(6113), 1, - aux_sym__immediate_decimal_token2, - STATE(2967), 1, + STATE(2991), 1, sym_comment, - ACTIONS(1550), 8, + ACTIONS(1618), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -322082,7 +325141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1552), 39, + ACTIONS(1620), 41, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -322101,6 +325160,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -322122,133 +325183,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [95080] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6077), 1, - aux_sym__immediate_decimal_token2, - STATE(2968), 1, - sym_comment, - ACTIONS(1757), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1755), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - 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, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [95142] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6115), 1, - aux_sym__immediate_decimal_token2, - STATE(2969), 1, - sym_comment, - ACTIONS(1785), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1783), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - 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, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [95204] = 4, - ACTIONS(251), 1, + [94155] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2970), 1, + STATE(2992), 1, sym_comment, - ACTIONS(2456), 6, + ACTIONS(2322), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2458), 43, + ACTIONS(2324), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -322292,19 +325239,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95264] = 4, - ACTIONS(251), 1, + [94215] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2971), 1, + STATE(2993), 1, sym_comment, - ACTIONS(2320), 6, + ACTIONS(1833), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2322), 43, + ACTIONS(1835), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -322348,77 +325295,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95324] = 6, - ACTIONS(251), 1, + [94275] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6117), 1, - anon_sym_DOT, - ACTIONS(6119), 1, - aux_sym__immediate_decimal_token2, - STATE(2972), 1, + STATE(2994), 1, sym_comment, - ACTIONS(1755), 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(1757), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [95388] = 4, - ACTIONS(251), 1, + ACTIONS(1689), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1691), 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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [94335] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2973), 1, + STATE(2995), 1, sym_comment, - ACTIONS(2324), 6, + ACTIONS(2334), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2326), 43, + ACTIONS(2336), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -322462,19 +325407,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95448] = 4, - ACTIONS(251), 1, + [94395] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2974), 1, + STATE(2996), 1, sym_comment, - ACTIONS(1917), 6, + ACTIONS(1861), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1919), 43, + ACTIONS(1863), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -322518,19 +325463,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95508] = 4, - ACTIONS(251), 1, + [94455] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2975), 1, + ACTIONS(6023), 1, + aux_sym__immediate_decimal_token2, + STATE(2997), 1, + sym_comment, + ACTIONS(1701), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1703), 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_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [94517] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2998), 1, sym_comment, - ACTIONS(2328), 6, + ACTIONS(5140), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2330), 43, + ACTIONS(5138), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -322574,19 +325576,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95568] = 4, - ACTIONS(251), 1, + [94577] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2976), 1, + ACTIONS(6070), 1, + aux_sym__immediate_decimal_token2, + STATE(2999), 1, + sym_comment, + ACTIONS(1703), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1701), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [94639] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3000), 1, sym_comment, - ACTIONS(2332), 6, + ACTIONS(5144), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2334), 43, + ACTIONS(5142), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -322630,19 +325689,304 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95628] = 4, - ACTIONS(251), 1, + [94699] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6138), 1, + aux_sym__immediate_decimal_token2, + STATE(3001), 1, + sym_comment, + ACTIONS(1768), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1766), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [94761] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6140), 1, + sym__newline, + STATE(3002), 2, + sym_comment, + aux_sym_shebang_repeat1, + ACTIONS(1294), 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, + 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_record_token1, + ACTIONS(1296), 32, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [94823] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3003), 1, + sym_comment, + ACTIONS(960), 15, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_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, + aux_sym__unquoted_in_list_token1, + ACTIONS(962), 34, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [94883] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6111), 1, + sym__entry_separator, + ACTIONS(6113), 1, + sym_raw_string_begin, + ACTIONS(6143), 1, + anon_sym_RBRACE, + STATE(2978), 1, + aux_sym__multiple_types_repeat1, + STATE(3004), 1, + sym_comment, + ACTIONS(6107), 45, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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_token1, + [94949] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3005), 1, + sym_comment, + ACTIONS(964), 15, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_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, + aux_sym__unquoted_in_list_token1, + ACTIONS(966), 34, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [95009] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2977), 1, + STATE(3006), 1, sym_comment, - ACTIONS(1937), 6, + ACTIONS(986), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1939), 43, + ACTIONS(988), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -322686,131 +326030,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95688] = 4, - ACTIONS(251), 1, + [95069] = 7, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6111), 1, + sym__entry_separator, + ACTIONS(6113), 1, + sym_raw_string_begin, + ACTIONS(6145), 1, + anon_sym_RBRACE, STATE(2978), 1, + aux_sym__multiple_types_repeat1, + STATE(3007), 1, sym_comment, - ACTIONS(1949), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1951), 43, - sym_raw_string_begin, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + ACTIONS(6107), 45, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95748] = 4, - ACTIONS(251), 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_token1, + [95135] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2979), 1, + STATE(3008), 1, sym_comment, - ACTIONS(1953), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1955), 43, - sym_raw_string_begin, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + ACTIONS(946), 15, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_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, + aux_sym__unquoted_in_list_token1, + ACTIONS(948), 34, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95808] = 4, - ACTIONS(251), 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, + [95195] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2980), 1, + STATE(3009), 1, sym_comment, - ACTIONS(2336), 6, + ACTIONS(2413), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2338), 43, + ACTIONS(2415), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -322854,131 +326201,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95868] = 4, - ACTIONS(251), 1, + [95255] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2981), 1, + ACTIONS(6147), 1, + anon_sym_QMARK2, + STATE(3010), 1, sym_comment, - ACTIONS(1965), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1967), 43, - sym_raw_string_begin, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + ACTIONS(968), 15, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_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, + aux_sym__unquoted_in_list_token1, + ACTIONS(970), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95928] = 4, - ACTIONS(251), 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, + [95317] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2982), 1, + ACTIONS(6149), 1, + anon_sym_DOT, + ACTIONS(6151), 1, + aux_sym__immediate_decimal_token2, + STATE(3011), 1, sym_comment, - ACTIONS(2342), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2344), 43, - sym_raw_string_begin, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + ACTIONS(1701), 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(1703), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95988] = 4, - ACTIONS(251), 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, + [95381] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2983), 1, + ACTIONS(6153), 1, + aux_sym__immediate_decimal_token2, + STATE(3012), 1, sym_comment, - ACTIONS(2346), 6, + ACTIONS(1766), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1768), 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_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [95443] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3013), 1, + sym_comment, + ACTIONS(2393), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2348), 43, + ACTIONS(2395), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -323022,19 +326429,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [96048] = 4, - ACTIONS(251), 1, + [95503] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2984), 1, + STATE(3014), 1, sym_comment, - ACTIONS(1969), 6, + ACTIONS(956), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1971), 43, + ACTIONS(958), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -323078,19 +326485,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [96108] = 4, - ACTIONS(251), 1, + [95563] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2985), 1, + STATE(3015), 1, sym_comment, - ACTIONS(1905), 6, + ACTIONS(2310), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1907), 43, + ACTIONS(2312), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -323134,131 +326541,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [96168] = 4, - ACTIONS(251), 1, + [95623] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2986), 1, - sym_comment, - ACTIONS(2350), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2352), 43, + ACTIONS(6111), 1, + sym__entry_separator, + ACTIONS(6113), 1, sym_raw_string_begin, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + ACTIONS(6155), 1, + anon_sym_RBRACE, + STATE(2978), 1, + aux_sym__multiple_types_repeat1, + STATE(3016), 1, + sym_comment, + ACTIONS(6107), 45, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [96228] = 4, - ACTIONS(251), 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_token1, + [95689] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2987), 1, - sym_comment, - ACTIONS(2354), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2356), 43, + ACTIONS(6111), 1, + sym__entry_separator, + ACTIONS(6113), 1, sym_raw_string_begin, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + ACTIONS(6157), 1, + anon_sym_RBRACE, + STATE(2978), 1, + aux_sym__multiple_types_repeat1, + STATE(3017), 1, + sym_comment, + ACTIONS(6107), 45, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [96288] = 4, - ACTIONS(251), 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_token1, + [95755] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2988), 1, + STATE(3018), 1, sym_comment, - ACTIONS(1983), 6, + ACTIONS(2318), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1985), 43, + ACTIONS(2320), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -323302,19 +326715,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [96348] = 4, - ACTIONS(251), 1, + [95815] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2989), 1, + STATE(3019), 1, sym_comment, - ACTIONS(2358), 6, + ACTIONS(2477), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2360), 43, + ACTIONS(2479), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -323358,19 +326771,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [96408] = 4, - ACTIONS(251), 1, + [95875] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2990), 1, + STATE(3020), 1, sym_comment, - ACTIONS(2362), 6, + ACTIONS(2364), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2364), 43, + ACTIONS(2366), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -323414,19 +326827,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [96468] = 4, - ACTIONS(251), 1, + [95935] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2991), 1, + STATE(3021), 1, sym_comment, - ACTIONS(4994), 6, + ACTIONS(5148), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4992), 43, + ACTIONS(5146), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -323470,19 +326883,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [96528] = 4, - ACTIONS(251), 1, + [95995] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2992), 1, + STATE(3022), 1, sym_comment, - ACTIONS(4962), 6, + ACTIONS(1917), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4960), 43, + ACTIONS(1919), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -323526,200 +326939,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [96588] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6085), 1, - sym__entry_separator, - ACTIONS(6087), 1, - sym_raw_string_begin, - ACTIONS(6121), 1, - anon_sym_RBRACE, - STATE(2993), 1, - sym_comment, - STATE(3032), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(6081), 45, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - 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, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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_token1, - [96654] = 7, + [96055] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6085), 1, - sym__entry_separator, - ACTIONS(6087), 1, - sym_raw_string_begin, - ACTIONS(6123), 1, - anon_sym_RBRACE, - STATE(2994), 1, - sym_comment, - STATE(3032), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(6081), 45, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - 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, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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_token1, - [96720] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6125), 1, - anon_sym_QMARK2, - STATE(2995), 1, + STATE(3023), 1, sym_comment, - ACTIONS(960), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_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, - aux_sym__unquoted_in_list_token1, - ACTIONS(962), 33, + ACTIONS(6161), 3, sym_raw_string_begin, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(6159), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [96782] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6085), 1, - sym__entry_separator, - ACTIONS(6087), 1, - sym_raw_string_begin, - ACTIONS(6127), 1, - anon_sym_RBRACE, - STATE(2996), 1, - sym_comment, - STATE(3032), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(6081), 45, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -323759,20 +326994,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, - [96848] = 4, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [96115] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2997), 1, + STATE(3024), 1, sym_comment, - ACTIONS(2452), 6, + ACTIONS(5152), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2454), 43, + ACTIONS(5150), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -323816,19 +327051,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [96908] = 4, - ACTIONS(251), 1, + [96175] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2998), 1, + STATE(3025), 1, sym_comment, - ACTIONS(2460), 6, + ACTIONS(2385), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2462), 43, + ACTIONS(2387), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -323872,19 +327107,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [96968] = 4, - ACTIONS(251), 1, + [96235] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2999), 1, + STATE(3026), 1, sym_comment, - ACTIONS(6129), 6, + ACTIONS(1885), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(6131), 43, + ACTIONS(1887), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -323928,19 +327163,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97028] = 4, - ACTIONS(251), 1, + [96295] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3000), 1, + STATE(3027), 1, sym_comment, - ACTIONS(2468), 6, + ACTIONS(2314), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2470), 43, + ACTIONS(2316), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -323984,194 +327219,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97088] = 7, - ACTIONS(3), 1, + [96355] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6085), 1, - sym__entry_separator, - ACTIONS(6087), 1, - sym_raw_string_begin, - ACTIONS(6133), 1, - anon_sym_RBRACE, - STATE(3001), 1, + STATE(3028), 1, sym_comment, - STATE(3032), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(6081), 45, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - 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, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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_token1, - [97154] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6085), 1, - sym__entry_separator, - ACTIONS(6087), 1, + ACTIONS(960), 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(962), 43, sym_raw_string_begin, - ACTIONS(6135), 1, - anon_sym_RBRACE, - STATE(3002), 1, - sym_comment, - STATE(3032), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(6081), 45, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + 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, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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_token1, - [97220] = 4, - ACTIONS(3), 1, + [96415] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3003), 1, + STATE(3029), 1, sym_comment, - ACTIONS(998), 2, + ACTIONS(2330), 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2332), 43, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(996), 47, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + 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, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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_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, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - 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, - [97280] = 7, + [96475] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6085), 1, + ACTIONS(6111), 1, sym__entry_separator, - ACTIONS(6087), 1, + ACTIONS(6113), 1, sym_raw_string_begin, - ACTIONS(6137), 1, + ACTIONS(6163), 1, anon_sym_RBRACE, - STATE(3004), 1, - sym_comment, - STATE(3032), 1, + STATE(2978), 1, aux_sym__multiple_types_repeat1, - ACTIONS(6081), 45, + STATE(3030), 1, + sym_comment, + ACTIONS(6107), 45, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -324217,25 +327390,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - [97346] = 7, + [96541] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6085), 1, - sym__entry_separator, - ACTIONS(6087), 1, - sym_raw_string_begin, - ACTIONS(6139), 1, - anon_sym_RBRACE, - STATE(3005), 1, + ACTIONS(6165), 1, + anon_sym_LBRACK2, + STATE(3031), 1, sym_comment, - STATE(3032), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(6081), 45, + ACTIONS(2296), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2292), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -324275,80 +327446,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_token1, - [97412] = 7, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [96603] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6085), 1, - sym__entry_separator, - ACTIONS(6087), 1, - sym_raw_string_begin, - ACTIONS(6141), 1, - anon_sym_RBRACE, - STATE(3006), 1, - sym_comment, STATE(3032), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(6081), 45, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + sym_comment, + ACTIONS(964), 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(966), 43, + sym_raw_string_begin, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + 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, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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_token1, - [97478] = 7, + [96663] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6085), 1, + ACTIONS(6111), 1, sym__entry_separator, - ACTIONS(6087), 1, + ACTIONS(6113), 1, sym_raw_string_begin, - ACTIONS(6143), 1, + ACTIONS(6167), 1, anon_sym_RBRACE, - STATE(3007), 1, - sym_comment, - STATE(3032), 1, + STATE(2978), 1, aux_sym__multiple_types_repeat1, - ACTIONS(6081), 45, + STATE(3033), 1, + sym_comment, + ACTIONS(6107), 45, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -324394,21 +327562,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - [97544] = 4, + [96729] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(3008), 1, - sym_comment, - ACTIONS(994), 2, - sym_raw_string_begin, + ACTIONS(6111), 1, sym__entry_separator, - ACTIONS(992), 47, + ACTIONS(6113), 1, + sym_raw_string_begin, + ACTIONS(6169), 1, + anon_sym_RBRACE, + STATE(2978), 1, + aux_sym__multiple_types_repeat1, + STATE(3034), 1, + sym_comment, + ACTIONS(6107), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -324432,7 +327604,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -324449,22 +327620,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, - aux_sym__unquoted_in_list_token1, - [97604] = 4, + aux_sym_unquoted_token1, + [96795] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(3009), 1, - sym_comment, - ACTIONS(990), 2, - sym_raw_string_begin, + ACTIONS(6111), 1, sym__entry_separator, - ACTIONS(988), 47, + ACTIONS(6113), 1, + sym_raw_string_begin, + ACTIONS(6171), 1, + anon_sym_RBRACE, + STATE(2978), 1, + aux_sym__multiple_types_repeat1, + STATE(3035), 1, + sym_comment, + ACTIONS(6107), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -324488,7 +327663,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -324505,77 +327679,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, - aux_sym__unquoted_in_list_token1, - [97664] = 5, - ACTIONS(251), 1, + aux_sym_unquoted_token1, + [96861] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6145), 1, - sym__newline, - STATE(3010), 2, + STATE(3036), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1296), 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, - 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_record_token1, - ACTIONS(1298), 32, + ACTIONS(2445), 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2447), 43, sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + 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, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [97726] = 4, - ACTIONS(251), 1, + [96921] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3011), 1, + STATE(3037), 1, sym_comment, - ACTIONS(5037), 6, + ACTIONS(946), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5035), 43, + ACTIONS(948), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -324619,19 +327792,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97786] = 4, - ACTIONS(251), 1, + [96981] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3012), 1, + STATE(3038), 1, sym_comment, - ACTIONS(5041), 6, + ACTIONS(1889), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5039), 43, + ACTIONS(1891), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -324675,19 +327848,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97846] = 4, - ACTIONS(251), 1, + [97041] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3013), 1, + STATE(3039), 1, sym_comment, - ACTIONS(1311), 6, + ACTIONS(6173), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1309), 43, + ACTIONS(6175), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -324723,7 +327896,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, 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, aux_sym__val_number_decimal_token3, @@ -324731,19 +327904,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97906] = 4, - ACTIONS(251), 1, + [97101] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3014), 1, + STATE(3040), 1, sym_comment, - ACTIONS(984), 6, + ACTIONS(1901), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(986), 43, + ACTIONS(1903), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -324787,19 +327960,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97966] = 4, - ACTIONS(251), 1, + [97161] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3015), 1, + STATE(3041), 1, sym_comment, - ACTIONS(1855), 6, + ACTIONS(1961), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1857), 43, + ACTIONS(1963), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -324843,23 +328016,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [98026] = 5, + [97221] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5565), 1, - aux_sym__unquoted_in_list_token2, - STATE(3016), 1, - sym_comment, - ACTIONS(1650), 2, - sym_raw_string_begin, + ACTIONS(6111), 1, sym__entry_separator, - ACTIONS(1638), 46, + ACTIONS(6113), 1, + sym_raw_string_begin, + ACTIONS(6177), 1, + anon_sym_RBRACE, + STATE(2978), 1, + aux_sym__multiple_types_repeat1, + STATE(3042), 1, + sym_comment, + ACTIONS(6107), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -324899,73 +328074,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, - [98088] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3017), 1, - sym_comment, - ACTIONS(1000), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1002), 43, - sym_raw_string_begin, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - 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, - [98148] = 4, + aux_sym_unquoted_token1, + [97287] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3018), 1, + STATE(3043), 1, sym_comment, - ACTIONS(6150), 3, + ACTIONS(984), 2, sym_raw_string_begin, - anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(6148), 46, + ACTIONS(982), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -324995,6 +328113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -325012,19 +328131,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, - [98208] = 4, - ACTIONS(251), 1, + [97347] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3019), 1, + STATE(3044), 1, sym_comment, - ACTIONS(2478), 6, + ACTIONS(2441), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2480), 43, + ACTIONS(2443), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -325068,19 +328187,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [98268] = 4, - ACTIONS(251), 1, + [97407] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3020), 1, + STATE(3045), 1, sym_comment, - ACTIONS(5097), 6, + ACTIONS(5058), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5095), 43, + ACTIONS(5056), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -325124,19 +328243,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [98328] = 4, - ACTIONS(251), 1, + [97467] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3021), 1, + STATE(3046), 1, sym_comment, - ACTIONS(5101), 6, + ACTIONS(2338), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5099), 43, + ACTIONS(2340), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -325180,133 +328299,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [98388] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6031), 1, - aux_sym__immediate_decimal_token2, - STATE(3022), 1, - sym_comment, - ACTIONS(1550), 17, - anon_sym_DOLLAR, - anon_sym_DASH2, - 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_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(1552), 31, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [98450] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6152), 1, - aux_sym__immediate_decimal_token2, - STATE(3023), 1, - sym_comment, - ACTIONS(1680), 17, - anon_sym_DOLLAR, - anon_sym_DASH2, - 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_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(1682), 31, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [98512] = 4, - ACTIONS(251), 1, + [97527] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3024), 1, + STATE(3047), 1, sym_comment, - ACTIONS(2366), 6, + 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2368), 43, + ACTIONS(2328), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -325350,19 +328355,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [98572] = 4, - ACTIONS(251), 1, + [97587] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3025), 1, + STATE(3048), 1, sym_comment, - ACTIONS(2366), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2368), 43, + ACTIONS(2346), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -325406,75 +328411,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [98632] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3026), 1, - sym_comment, - ACTIONS(972), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_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, - aux_sym__unquoted_in_list_token1, - ACTIONS(974), 34, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [98692] = 4, - ACTIONS(251), 1, + [97647] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3027), 1, + STATE(3049), 1, sym_comment, - ACTIONS(2370), 6, + ACTIONS(1905), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2372), 43, + ACTIONS(1907), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -325518,19 +328467,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [98752] = 4, - ACTIONS(251), 1, + [97707] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3028), 1, + STATE(3050), 1, sym_comment, - ACTIONS(2374), 6, + ACTIONS(2441), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2376), 43, + ACTIONS(2443), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -325574,41 +328523,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [98812] = 4, - ACTIONS(251), 1, + [97767] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3029), 1, - sym_comment, - ACTIONS(976), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_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, - aux_sym__unquoted_in_list_token1, - ACTIONS(978), 34, + ACTIONS(6111), 1, + sym__entry_separator, + ACTIONS(6113), 1, sym_raw_string_begin, + ACTIONS(6179), 1, + anon_sym_RBRACE, + STATE(2978), 1, + aux_sym__multiple_types_repeat1, + STATE(3051), 1, + sym_comment, + ACTIONS(6107), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_QMARK2, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -325618,10 +328558,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + 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, @@ -325630,41 +328581,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, - [98872] = 4, - ACTIONS(251), 1, + aux_sym_unquoted_token1, + [97833] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3030), 1, - sym_comment, - ACTIONS(984), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_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, - aux_sym__unquoted_in_list_token1, - ACTIONS(986), 34, + ACTIONS(6111), 1, + sym__entry_separator, + ACTIONS(6113), 1, sym_raw_string_begin, + ACTIONS(6181), 1, + anon_sym_RBRACE, + STATE(2978), 1, + aux_sym__multiple_types_repeat1, + STATE(3052), 1, + sym_comment, + ACTIONS(6107), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_QMARK2, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -325674,10 +328617,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + 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, @@ -325686,18 +328640,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, - [98932] = 4, - ACTIONS(251), 1, + aux_sym_unquoted_token1, + [97899] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3031), 1, + ACTIONS(6033), 1, + aux_sym__immediate_decimal_token2, + STATE(3053), 1, sym_comment, - ACTIONS(980), 15, + ACTIONS(1701), 15, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -325707,7 +328663,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(982), 34, + aux_sym__unquoted_in_list_token2, + ACTIONS(1703), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -325715,57 +328672,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [98992] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2487), 1, - sym_raw_string_begin, - ACTIONS(6154), 1, - sym__entry_separator, - STATE(3032), 2, - sym_comment, - aux_sym__multiple_types_repeat1, - ACTIONS(2482), 46, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym__, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -325775,21 +328686,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - 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, @@ -325798,195 +328698,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, - [99054] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - ACTIONS(4780), 1, - aux_sym_unquoted_token2, - ACTIONS(6157), 1, - anon_sym_DOT_DOT2, - ACTIONS(6161), 1, - sym_filesize_unit, - ACTIONS(6163), 1, - sym_duration_unit, - STATE(3033), 1, - sym_comment, - STATE(7381), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6159), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1638), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1650), 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_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [99128] = 4, - ACTIONS(251), 1, + [97961] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3034), 1, - sym_comment, - ACTIONS(2378), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2380), 43, - sym_raw_string_begin, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - 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, - [99188] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3035), 1, - sym_comment, - ACTIONS(2382), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2384), 43, - sym_raw_string_begin, - 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_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - 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, - [99248] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3036), 1, + STATE(3054), 1, sym_comment, - ACTIONS(972), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(974), 43, + ACTIONS(2391), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -326030,14 +328754,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [99308] = 5, - ACTIONS(251), 1, + [98021] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6165), 1, + ACTIONS(6183), 1, anon_sym_QMARK2, - STATE(3037), 1, + STATE(3055), 1, sym_comment, - ACTIONS(966), 15, + ACTIONS(950), 15, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -326053,7 +328777,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(968), 33, + ACTIONS(952), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -326087,15 +328811,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, - [99370] = 4, + [98083] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3038), 1, + STATE(3056), 1, sym_comment, - ACTIONS(2420), 2, + ACTIONS(2376), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2418), 46, + ACTIONS(2374), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -326142,15 +328866,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, - [99429] = 4, + [98142] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3039), 1, + STATE(3057), 1, sym_comment, - ACTIONS(2491), 2, + ACTIONS(1907), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2489), 46, + ACTIONS(1905), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -326197,38 +328921,83 @@ 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, - [99488] = 4, - ACTIONS(251), 1, + [98201] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3040), 1, + STATE(3058), 1, sym_comment, - ACTIONS(1311), 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, - 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_record_token1, - ACTIONS(1309), 33, - sym_raw_string_begin, + ACTIONS(1701), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1703), 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_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [98260] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3059), 1, + sym_comment, + ACTIONS(2362), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2360), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -326238,12 +329007,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + 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, @@ -326252,15 +329030,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, - [99547] = 4, + aux_sym__unquoted_in_list_token1, + [98319] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3041), 1, + STATE(3060), 1, sym_comment, - ACTIONS(2416), 2, + ACTIONS(2372), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2414), 46, + ACTIONS(2370), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -326307,28 +329086,40 @@ 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, - [99606] = 4, - ACTIONS(3), 1, + [98378] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3042), 1, + STATE(3061), 1, sym_comment, - ACTIONS(2503), 2, + ACTIONS(1766), 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(1768), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2501), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -326338,21 +329129,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - 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, @@ -326361,18 +329141,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, - [99665] = 4, - ACTIONS(251), 1, + [98437] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3043), 1, + STATE(3062), 1, sym_comment, - ACTIONS(1711), 15, + ACTIONS(1618), 17, + anon_sym_DOLLAR, + anon_sym_DASH2, anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -326381,34 +329162,32 @@ 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(1713), 33, + aux_sym_unquoted_token1, + aux_sym_unquoted_token2, + ACTIONS(1620), 31, sym_raw_string_begin, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + 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, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -326417,15 +329196,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, - [99724] = 4, + [98496] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3044), 1, + STATE(3063), 1, sym_comment, - ACTIONS(1995), 2, + ACTIONS(1841), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1993), 46, + ACTIONS(1839), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -326472,15 +329251,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, - [99783] = 4, + [98555] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3045), 1, + STATE(3064), 1, sym_comment, - ACTIONS(1999), 2, + ACTIONS(1703), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1997), 46, + ACTIONS(1701), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -326527,25 +329306,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, - [99842] = 5, + [98614] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2134), 1, - aux_sym__unquoted_in_list_token4, - STATE(3046), 1, + STATE(3065), 1, sym_comment, - ACTIONS(2132), 9, + ACTIONS(2491), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2489), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2128), 38, anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -326566,6 +329341,9 @@ 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, @@ -326583,40 +329361,28 @@ 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, - [99903] = 4, - ACTIONS(251), 1, + [98673] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3047), 1, + STATE(3066), 1, sym_comment, - ACTIONS(996), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_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, - aux_sym__unquoted_in_list_token1, - ACTIONS(998), 33, + ACTIONS(2024), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2022), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -326626,10 +329392,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + 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, @@ -326638,25 +329415,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, - [99962] = 5, + aux_sym__unquoted_in_list_token1, + [98732] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2142), 1, - aux_sym__unquoted_in_list_token4, - STATE(3048), 1, + STATE(3067), 1, sym_comment, - ACTIONS(2140), 9, + ACTIONS(2409), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2407), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2136), 38, anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -326677,6 +329451,9 @@ 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, @@ -326694,14 +329471,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, - [100023] = 5, + [98791] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2142), 1, + ACTIONS(2071), 1, aux_sym__unquoted_in_list_token4, - STATE(3049), 1, + STATE(3068), 1, sym_comment, - ACTIONS(2146), 9, + ACTIONS(2069), 9, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -326711,7 +329488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2144), 38, + ACTIONS(2065), 38, anon_sym_DOLLAR, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -326750,101 +329527,28 @@ 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, - [100084] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4622), 1, - anon_sym_DOT_DOT2, - ACTIONS(6167), 1, - sym_filesize_unit, - ACTIONS(6169), 1, - sym_duration_unit, - ACTIONS(6171), 1, - aux_sym_unquoted_token2, - STATE(3050), 1, - sym_comment, - ACTIONS(4624), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1638), 15, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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), 27, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [100153] = 5, - ACTIONS(251), 1, + [98852] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5734), 1, - aux_sym__unquoted_in_list_token2, - STATE(3051), 1, + STATE(3069), 1, sym_comment, - ACTIONS(1638), 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(1650), 33, + ACTIONS(1695), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1693), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -326854,10 +329558,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + 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, @@ -326866,40 +329581,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, - [100214] = 4, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [98911] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3052), 1, + STATE(3070), 1, sym_comment, - ACTIONS(992), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_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, - aux_sym__unquoted_in_list_token1, - ACTIONS(994), 33, + ACTIONS(2455), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2453), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -326909,10 +329613,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + 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, @@ -326921,40 +329636,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, - [100273] = 4, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [98970] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3053), 1, + STATE(3071), 1, sym_comment, - ACTIONS(988), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_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, - aux_sym__unquoted_in_list_token1, - ACTIONS(990), 33, + ACTIONS(1768), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1766), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -326964,10 +329668,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + 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, @@ -326976,15 +329691,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, - [100332] = 4, + aux_sym__unquoted_in_list_token1, + [99029] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3054), 1, + STATE(3072), 1, sym_comment, - ACTIONS(2322), 2, + ACTIONS(2427), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2320), 46, + ACTIONS(2425), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -327031,41 +329747,30 @@ 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, - [100391] = 5, - ACTIONS(251), 1, + [99088] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6119), 1, - aux_sym__immediate_decimal_token2, - STATE(3055), 1, + STATE(3073), 1, sym_comment, - ACTIONS(1755), 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(1757), 33, + ACTIONS(2087), 9, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2085), 39, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -327075,29 +329780,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - 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, - [100452] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3056), 1, - sym_comment, - ACTIONS(1783), 15, - 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, @@ -327106,21 +329792,38 @@ 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(1785), 33, + aux_sym__unquoted_in_list_token4, + [99147] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3074), 1, + sym_comment, + ACTIONS(1794), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1792), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -327130,10 +329833,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + 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, @@ -327142,41 +329856,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, - [100511] = 5, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [99206] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6173), 1, - aux_sym__immediate_decimal_token2, - STATE(3057), 1, + STATE(3075), 1, sym_comment, - ACTIONS(1783), 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(1785), 33, + ACTIONS(2435), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2433), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -327186,10 +329888,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + 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, @@ -327198,23 +329911,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, - [100572] = 4, + aux_sym__unquoted_in_list_token1, + [99265] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3058), 1, + STATE(3076), 1, sym_comment, - ACTIONS(2150), 9, + ACTIONS(1879), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1877), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2148), 39, anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -327235,6 +329947,9 @@ 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, @@ -327252,15 +329967,12 @@ 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_token4, - [100631] = 5, - ACTIONS(251), 1, + [99324] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1822), 1, - aux_sym__unquoted_in_list_token2, - STATE(3059), 1, + STATE(3077), 1, sym_comment, - ACTIONS(2220), 14, + ACTIONS(1693), 15, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -327275,7 +329987,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(2222), 33, + aux_sym__unquoted_in_list_token2, + ACTIONS(1695), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -327309,25 +330022,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, - [100692] = 5, + [99383] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2208), 1, - aux_sym__unquoted_in_list_token4, - STATE(3060), 1, + STATE(3078), 1, sym_comment, - ACTIONS(5935), 9, + ACTIONS(2451), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2449), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5930), 38, anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -327348,6 +330057,9 @@ 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, @@ -327365,71 +330077,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, - [100753] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1822), 1, - aux_sym__unquoted_in_list_token2, - STATE(3061), 1, - sym_comment, - ACTIONS(1812), 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(1820), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [100814] = 4, + [99442] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3062), 1, + STATE(3079), 1, sym_comment, - ACTIONS(974), 2, + ACTIONS(2467), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(972), 46, + ACTIONS(2465), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -327476,28 +330132,40 @@ 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, - [100873] = 4, - ACTIONS(3), 1, + [99501] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3063), 1, + STATE(3080), 1, sym_comment, - ACTIONS(978), 2, + ACTIONS(982), 15, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_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, + aux_sym__unquoted_in_list_token1, + ACTIONS(984), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(976), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -327507,21 +330175,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - 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, @@ -327530,22 +330187,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, - aux_sym__unquoted_in_list_token1, - [100932] = 4, + [99560] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3064), 1, + ACTIONS(2063), 1, + aux_sym__unquoted_in_list_token4, + STATE(3081), 1, sym_comment, - ACTIONS(986), 2, + ACTIONS(6004), 9, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(984), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5999), 38, + anon_sym_DOLLAR, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -327566,9 +330226,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, @@ -327586,21 +330243,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, - [100991] = 4, - ACTIONS(251), 1, + [99621] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3065), 1, + STATE(3082), 1, sym_comment, - ACTIONS(1550), 8, + ACTIONS(1693), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1552), 40, + ACTIONS(1695), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -327620,6 +330276,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -327640,18 +330298,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [101050] = 4, - ACTIONS(251), 1, + [99680] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3066), 1, + ACTIONS(2079), 1, + aux_sym__unquoted_in_list_token4, + STATE(3083), 1, sym_comment, - ACTIONS(1835), 15, + ACTIONS(2077), 9, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2073), 38, + anon_sym_DOLLAR, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -327660,34 +330345,62 @@ 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(1837), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, + [99741] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3084), 1, + sym_comment, + ACTIONS(1512), 17, anon_sym_DOLLAR, - anon_sym_LBRACE, + anon_sym_DASH2, + 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_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(1514), 31, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + 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, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -327696,78 +330409,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, - [101109] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3067), 1, - sym_comment, - ACTIONS(1542), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1544), 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_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [101168] = 6, + [99800] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6085), 1, - sym__entry_separator, - ACTIONS(6087), 1, - sym_raw_string_begin, - STATE(3032), 1, - aux_sym__multiple_types_repeat1, - STATE(3068), 1, + STATE(3085), 1, sym_comment, - ACTIONS(6081), 45, + ACTIONS(2447), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2445), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -327807,22 +330463,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, - aux_sym_unquoted_token1, - [101231] = 4, + aux_sym__unquoted_in_list_token1, + [99859] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3069), 1, + ACTIONS(2079), 1, + aux_sym__unquoted_in_list_token4, + STATE(3086), 1, sym_comment, - ACTIONS(982), 2, + ACTIONS(2083), 9, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(980), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2081), 38, + anon_sym_DOLLAR, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -327843,9 +330503,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, @@ -327863,15 +330520,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, - [101290] = 4, + [99920] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3070), 1, + STATE(3087), 1, sym_comment, - ACTIONS(2326), 2, + ACTIONS(1835), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2324), 46, + ACTIONS(1833), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -327918,181 +330575,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, - [101349] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3071), 1, - sym_comment, - ACTIONS(1680), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1682), 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_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [101408] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3072), 1, - sym_comment, - ACTIONS(1743), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1745), 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_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [101467] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6113), 1, - aux_sym__immediate_decimal_token2, - STATE(3073), 1, - sym_comment, - ACTIONS(1550), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1552), 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [101528] = 4, + [99979] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3074), 1, + STATE(3088), 1, sym_comment, - ACTIONS(1002), 2, + ACTIONS(2483), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1000), 46, + ACTIONS(2481), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -328139,41 +330630,28 @@ 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, - [101587] = 5, - ACTIONS(251), 1, + [100038] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1540), 1, - aux_sym__unquoted_in_list_token2, - STATE(3075), 1, + STATE(3089), 1, sym_comment, - ACTIONS(2224), 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(2228), 33, + ACTIONS(2487), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2485), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -328183,10 +330661,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + 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, @@ -328195,23 +330684,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, - [101648] = 5, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [100097] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6175), 1, + ACTIONS(6105), 1, aux_sym__immediate_decimal_token2, - STATE(3076), 1, + STATE(3090), 1, sym_comment, - ACTIONS(1680), 8, + ACTIONS(1701), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1682), 39, + ACTIONS(1703), 40, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -328230,6 +330719,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -328250,35 +330741,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [101709] = 11, - ACTIONS(251), 1, + [100158] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - ACTIONS(4904), 1, - aux_sym_unquoted_token2, - ACTIONS(6177), 1, - anon_sym_DOT_DOT2, - ACTIONS(6181), 1, - sym_filesize_unit, - ACTIONS(6183), 1, - sym_duration_unit, - STATE(3077), 1, + STATE(3091), 1, sym_comment, - STATE(7393), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6179), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1638), 5, + ACTIONS(1766), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1650), 35, - ts_builtin_sym_end, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1768), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -328290,12 +330766,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_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -328304,6 +330784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -328313,16 +330794,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [101782] = 6, - ACTIONS(251), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [100217] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6185), 1, - anon_sym_DOT, - ACTIONS(6187), 1, - aux_sym__immediate_decimal_token2, - STATE(3078), 1, + STATE(3092), 1, sym_comment, - ACTIONS(1755), 7, + ACTIONS(1792), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -328330,7 +330809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1757), 39, + ACTIONS(1794), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -328350,6 +330829,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -328370,180 +330851,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [101845] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3079), 1, - sym_comment, - ACTIONS(1919), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1917), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - 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, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [101904] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3080), 1, - sym_comment, - ACTIONS(2514), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2512), 46, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - 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, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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_token1, - [101963] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3081), 1, - sym_comment, - ACTIONS(2330), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2328), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - 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, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [102022] = 4, + [100276] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3082), 1, + STATE(3093), 1, sym_comment, - ACTIONS(2334), 2, + ACTIONS(1863), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2332), 46, + ACTIONS(1861), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -328590,15 +330906,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, - [102081] = 4, + [100335] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3083), 1, + STATE(3094), 1, sym_comment, - ACTIONS(1939), 2, + ACTIONS(2423), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1937), 46, + ACTIONS(2421), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -328645,15 +330961,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, - [102140] = 4, + [100394] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3084), 1, + STATE(3095), 1, sym_comment, - ACTIONS(1951), 2, + ACTIONS(2439), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1949), 46, + ACTIONS(2437), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -328700,15 +331016,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, - [102199] = 4, + [100453] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3085), 1, + STATE(3096), 1, sym_comment, - ACTIONS(1955), 2, + ACTIONS(1991), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1953), 46, + ACTIONS(1985), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -328755,28 +331071,40 @@ 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, - [102258] = 4, - ACTIONS(3), 1, + [100512] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3086), 1, + STATE(3097), 1, sym_comment, - ACTIONS(1650), 2, + ACTIONS(978), 15, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_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, + aux_sym__unquoted_in_list_token1, + ACTIONS(980), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1638), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -328786,21 +331114,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - 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, @@ -328809,29 +331126,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, - aux_sym__unquoted_in_list_token1, - [102317] = 4, - ACTIONS(3), 1, + [100571] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3087), 1, + ACTIONS(6151), 1, + aux_sym__immediate_decimal_token2, + STATE(3098), 1, sym_comment, - ACTIONS(1757), 2, + ACTIONS(1701), 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(1703), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1755), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -328841,21 +331170,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - 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, @@ -328864,15 +331182,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, - [102376] = 5, - ACTIONS(251), 1, + [100632] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2178), 1, - aux_sym__unquoted_in_list_token2, - STATE(3088), 1, + STATE(3099), 1, sym_comment, - ACTIONS(2172), 14, + ACTIONS(1792), 15, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -328887,7 +331202,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(2176), 33, + aux_sym__unquoted_in_list_token2, + ACTIONS(1794), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -328921,28 +331237,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [102437] = 4, - ACTIONS(3), 1, + [100691] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3089), 1, + STATE(3100), 1, sym_comment, - ACTIONS(2338), 2, + ACTIONS(1701), 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(1703), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2336), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -328952,21 +331280,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - 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, @@ -328975,20 +331292,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, - [102496] = 4, - ACTIONS(251), 1, + [100750] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3090), 1, + ACTIONS(1826), 1, + aux_sym__unquoted_in_list_token2, + STATE(3101), 1, sym_comment, - ACTIONS(1542), 17, - anon_sym_DOLLAR, - anon_sym_DASH2, + ACTIONS(2164), 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_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -328997,32 +331313,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, - aux_sym_unquoted_token2, - ACTIONS(1544), 31, + aux_sym__unquoted_in_list_token1, + ACTIONS(2166), 33, sym_raw_string_begin, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - 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, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -329031,17 +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, - [102555] = 4, + [100811] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3091), 1, - sym_comment, - ACTIONS(1967), 2, - sym_raw_string_begin, + ACTIONS(5974), 1, + anon_sym_RBRACK, + ACTIONS(5980), 1, sym__entry_separator, - ACTIONS(1965), 46, + ACTIONS(5982), 1, + sym_raw_string_begin, + STATE(3102), 1, + sym_comment, + ACTIONS(5972), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -329086,17 +331405,74 @@ 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, - [102614] = 4, - ACTIONS(3), 1, + [100874] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3092), 1, + STATE(3103), 1, sym_comment, - ACTIONS(2344), 2, + ACTIONS(1290), 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, + 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_record_token1, + ACTIONS(1288), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2342), 46, + sym__newline, anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [100933] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1919), 1, + sym__entry_separator, + ACTIONS(6187), 1, anon_sym_RBRACK, + ACTIONS(6190), 1, + sym_raw_string_begin, + STATE(3104), 1, + sym_comment, + ACTIONS(6185), 45, + anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -329141,12 +331517,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, - [102673] = 4, - ACTIONS(251), 1, + [100996] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3093), 1, + ACTIONS(6192), 1, + aux_sym__immediate_decimal_token2, + STATE(3105), 1, sym_comment, - ACTIONS(1755), 15, + ACTIONS(1766), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -329161,8 +331539,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(1757), 33, + ACTIONS(1768), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -329196,53 +331573,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, - [102732] = 4, - ACTIONS(251), 1, + [101057] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3094), 1, + STATE(3106), 1, sym_comment, - ACTIONS(1680), 17, + ACTIONS(1651), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1639), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_DASH2, + anon_sym_LBRACE, 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_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(1682), 31, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, + 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, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - 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_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, @@ -329251,41 +331627,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, - [102791] = 5, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [101116] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6189), 1, - anon_sym_LBRACK2, - STATE(3095), 1, + ACTIONS(6194), 1, + aux_sym__immediate_decimal_token2, + STATE(3107), 1, sym_comment, - ACTIONS(2230), 15, - anon_sym_LBRACK, - 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(2234), 32, + ACTIONS(1766), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1768), 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, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [101177] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3108), 1, + sym_comment, + ACTIONS(1887), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1885), 46, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -329295,10 +331715,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + 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, @@ -329307,15 +331738,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, - [102852] = 4, + aux_sym__unquoted_in_list_token1, + [101236] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3096), 1, + STATE(3109), 1, sym_comment, - ACTIONS(1713), 2, + ACTIONS(2316), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1711), 46, + ACTIONS(2314), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -329362,17 +331794,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, - [102911] = 4, + [101295] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3097), 1, - sym_comment, - ACTIONS(2348), 2, - sym_raw_string_begin, + ACTIONS(998), 1, sym__entry_separator, - ACTIONS(2346), 46, - anon_sym_LBRACK, + ACTIONS(6001), 1, anon_sym_RBRACK, + ACTIONS(6004), 1, + sym_raw_string_begin, + STATE(3110), 1, + sym_comment, + ACTIONS(5999), 45, + anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -329417,19 +331851,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, - [102970] = 4, - ACTIONS(251), 1, + [101358] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3098), 1, + ACTIONS(1826), 1, + aux_sym__unquoted_in_list_token2, + STATE(3111), 1, sym_comment, - ACTIONS(1743), 17, - anon_sym_DOLLAR, - anon_sym_DASH2, + ACTIONS(1816), 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_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -329438,32 +331872,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, - aux_sym_unquoted_token2, - ACTIONS(1745), 31, + aux_sym__unquoted_in_list_token1, + ACTIONS(1824), 33, sym_raw_string_begin, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - 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, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -329472,21 +331907,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, - [103029] = 4, + [101419] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3099), 1, - sym_comment, - ACTIONS(1971), 2, - sym_raw_string_begin, + ACTIONS(6111), 1, sym__entry_separator, - ACTIONS(1969), 46, + ACTIONS(6113), 1, + sym_raw_string_begin, + STATE(2978), 1, + aux_sym__multiple_types_repeat1, + STATE(3112), 1, + sym_comment, + ACTIONS(6107), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -329526,29 +331963,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, - aux_sym__unquoted_in_list_token1, - [103088] = 4, - ACTIONS(3), 1, + aux_sym_unquoted_token1, + [101482] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3100), 1, + ACTIONS(5752), 1, + aux_sym__unquoted_in_list_token2, + STATE(3113), 1, sym_comment, - ACTIONS(2049), 2, + ACTIONS(1639), 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(1651), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2043), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -329558,21 +332008,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - 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, @@ -329581,16 +332020,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, - [103147] = 4, + [101543] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3101), 1, + STATE(3114), 1, sym_comment, - ACTIONS(1785), 2, + ACTIONS(2431), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1783), 46, + ACTIONS(2429), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -329637,21 +332075,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, - [103206] = 4, + [101602] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3102), 1, + STATE(3115), 1, sym_comment, - ACTIONS(1837), 2, + ACTIONS(2497), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1835), 46, + ACTIONS(2495), 46, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -329691,31 +332129,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, - aux_sym__unquoted_in_list_token1, - [103265] = 6, - ACTIONS(3), 1, + aux_sym_unquoted_token1, + [101661] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1943), 1, - sym__entry_separator, - ACTIONS(6193), 1, - anon_sym_RBRACK, - ACTIONS(6196), 1, - sym_raw_string_begin, - STATE(3103), 1, + STATE(3116), 1, sym_comment, - ACTIONS(6191), 45, + ACTIONS(974), 15, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_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, + aux_sym__unquoted_in_list_token1, + ACTIONS(976), 33, + sym_raw_string_begin, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -329725,21 +332173,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - 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, @@ -329748,74 +332185,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, - [103328] = 6, - ACTIONS(251), 1, + [101720] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6198), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6200), 1, - aux_sym__immediate_decimal_token2, - STATE(3104), 1, - sym_comment, - ACTIONS(1711), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1713), 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_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [103391] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6202), 1, - sym__newline, - STATE(3105), 2, + ACTIONS(1562), 1, + aux_sym__unquoted_in_list_token2, + STATE(3117), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1296), 15, - anon_sym__, + ACTIONS(2168), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -329829,11 +332206,13 @@ 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(1298), 31, + aux_sym__unquoted_in_list_token1, + ACTIONS(2172), 33, sym_raw_string_begin, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -329862,54 +332241,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, - [103452] = 6, - ACTIONS(3), 1, + [101781] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5920), 1, - anon_sym_RBRACK, - ACTIONS(5926), 1, - sym__entry_separator, - ACTIONS(5928), 1, - sym_raw_string_begin, - STATE(3106), 1, + STATE(3118), 1, sym_comment, - ACTIONS(5918), 45, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(1689), 17, anon_sym_DOLLAR, - anon_sym_LBRACE, + anon_sym_DASH2, 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_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(1691), 31, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, - 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, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_filesize_unit, + sym_duration_unit, 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, @@ -329918,16 +332296,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, - [103515] = 4, + [101840] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3107), 1, + STATE(3119), 1, sym_comment, - ACTIONS(1907), 2, + ACTIONS(958), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1905), 46, + ACTIONS(956), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -329974,15 +332351,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, - [103574] = 4, + [101899] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3108), 1, + STATE(3120), 1, sym_comment, - ACTIONS(2352), 2, + ACTIONS(2320), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2350), 46, + ACTIONS(2318), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -330029,15 +332406,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, - [103633] = 4, + [101958] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3109), 1, + STATE(3121), 1, sym_comment, - ACTIONS(2356), 2, + ACTIONS(2308), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2354), 46, + ACTIONS(2306), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -330084,28 +332461,100 @@ 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, - [103692] = 4, - ACTIONS(3), 1, + [102017] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3110), 1, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + ACTIONS(1808), 1, + anon_sym_LPAREN2, + ACTIONS(6196), 1, + anon_sym_DOT_DOT2, + STATE(3122), 1, sym_comment, - ACTIONS(1985), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1983), 46, + ACTIONS(6198), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1806), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1814), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_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_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [102084] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6200), 1, + anon_sym_LBRACK2, + STATE(3123), 1, + sym_comment, + ACTIONS(2292), 15, anon_sym_LBRACK, + 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(2296), 32, + sym_raw_string_begin, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -330115,21 +332564,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - 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, @@ -330138,31 +332576,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, - aux_sym__unquoted_in_list_token1, - [103751] = 6, - ACTIONS(3), 1, + [102145] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1012), 1, - sym__entry_separator, - ACTIONS(5932), 1, - anon_sym_RBRACK, - ACTIONS(5935), 1, - sym_raw_string_begin, - STATE(3111), 1, + ACTIONS(2196), 1, + aux_sym__unquoted_in_list_token2, + STATE(3124), 1, sym_comment, - ACTIONS(5930), 45, + ACTIONS(2190), 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(2194), 33, + sym_raw_string_begin, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -330172,13 +332620,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - 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, + [102206] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4608), 1, + anon_sym_DOT_DOT2, + ACTIONS(6202), 1, + sym_filesize_unit, + ACTIONS(6204), 1, + sym_duration_unit, + ACTIONS(6206), 1, + aux_sym_unquoted_token2, + STATE(3125), 1, + sym_comment, + ACTIONS(4610), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1639), 15, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -330187,6 +332663,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_token1, + ACTIONS(1651), 27, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -330195,16 +332692,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, - [103814] = 4, + [102275] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3112), 1, + STATE(3126), 1, sym_comment, - ACTIONS(2388), 2, + ACTIONS(2332), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2386), 46, + ACTIONS(2330), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -330251,15 +332747,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, - [103873] = 4, + [102334] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3113), 1, + STATE(3127), 1, sym_comment, - ACTIONS(2360), 2, + ACTIONS(1891), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2358), 46, + ACTIONS(1889), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -330306,15 +332802,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, - [103932] = 4, + [102393] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3114), 1, + STATE(3128), 1, sym_comment, - ACTIONS(2025), 2, + ACTIONS(962), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2019), 46, + ACTIONS(960), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -330361,15 +332857,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, - [103991] = 4, + [102452] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3115), 1, + STATE(3129), 1, sym_comment, - ACTIONS(2033), 2, + ACTIONS(966), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2027), 46, + ACTIONS(964), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -330416,15 +332912,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, - [104050] = 4, + [102511] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3116), 1, + STATE(3130), 1, sym_comment, - ACTIONS(2041), 2, + ACTIONS(1903), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2035), 46, + ACTIONS(1901), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -330471,52 +332967,112 @@ 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, - [104109] = 4, - ACTIONS(3), 1, + [102570] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3117), 1, + ACTIONS(1818), 1, + anon_sym_LPAREN2, + ACTIONS(1826), 1, + aux_sym_unquoted_token2, + ACTIONS(6208), 1, + anon_sym_DOT_DOT2, + STATE(3131), 1, sym_comment, - ACTIONS(2364), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2362), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(6210), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1816), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1824), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_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_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [102637] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3132), 1, + sym_comment, + ACTIONS(1504), 17, anon_sym_DOLLAR, - anon_sym_LBRACE, + anon_sym_DASH2, 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_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(1506), 31, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, - 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, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_filesize_unit, + sym_duration_unit, 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, @@ -330525,16 +333081,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, - [104168] = 4, + [102696] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3118), 1, + STATE(3133), 1, sym_comment, - ACTIONS(2392), 2, + ACTIONS(2459), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2390), 46, + ACTIONS(2457), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -330581,15 +333136,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, - [104227] = 4, + [102755] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3119), 1, + STATE(3134), 1, sym_comment, - ACTIONS(2396), 2, + ACTIONS(2391), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2394), 46, + ACTIONS(2389), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -330636,28 +333191,41 @@ 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, - [104286] = 4, - ACTIONS(3), 1, + [102814] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3120), 1, + ACTIONS(6212), 1, + sym__newline, + STATE(3135), 2, sym_comment, - ACTIONS(2400), 2, + aux_sym_shebang_repeat1, + ACTIONS(1294), 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(1296), 31, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2398), 46, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -330667,21 +333235,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - 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, @@ -330690,16 +333247,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, - [104345] = 4, + [102875] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3121), 1, + STATE(3136), 1, sym_comment, - ACTIONS(2408), 2, + ACTIONS(948), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2406), 46, + ACTIONS(946), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -330746,15 +333302,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, - [104404] = 4, + [102934] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3122), 1, + STATE(3137), 1, sym_comment, - ACTIONS(2412), 2, + ACTIONS(2358), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2410), 46, + ACTIONS(2356), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -330801,15 +333357,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, - [104463] = 4, + [102993] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3123), 1, + STATE(3138), 1, sym_comment, - ACTIONS(2507), 2, + ACTIONS(2395), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2505), 46, + ACTIONS(2393), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -330856,15 +333412,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, - [104522] = 4, + [103052] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3124), 1, + STATE(3139), 1, sym_comment, - ACTIONS(2424), 2, + ACTIONS(2036), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2422), 46, + ACTIONS(2030), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -330911,15 +333467,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, - [104581] = 4, + [103111] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3125), 1, + STATE(3140), 1, sym_comment, - ACTIONS(2428), 2, + ACTIONS(988), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2426), 46, + ACTIONS(986), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -330966,15 +333522,71 @@ 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, - [104640] = 4, + [103170] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1457), 1, + aux_sym__unquoted_in_list_token2, + STATE(3141), 1, + sym_comment, + ACTIONS(1806), 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(1814), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [103231] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3126), 1, + STATE(3142), 1, sym_comment, - ACTIONS(2432), 2, + ACTIONS(1983), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2430), 46, + ACTIONS(1977), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -331021,19 +333633,44 @@ 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, - [104699] = 5, - ACTIONS(251), 1, + [103290] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym__unquoted_in_list_token2, - STATE(3127), 1, + STATE(3143), 1, sym_comment, - ACTIONS(1802), 14, + ACTIONS(2028), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2026), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, 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, @@ -331042,20 +333679,37 @@ 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(1810), 33, + [103349] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3144), 1, + sym_comment, + ACTIONS(2049), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2043), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -331065,10 +333719,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + 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, @@ -331077,19 +333742,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, - [104760] = 4, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [103408] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3128), 1, + STATE(3145), 1, sym_comment, - ACTIONS(1550), 17, + ACTIONS(2312), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2310), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_DASH2, + anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -331098,32 +333789,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, - aux_sym_unquoted_token2, - ACTIONS(1552), 31, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + 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, + [103467] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3146), 1, + sym_comment, + ACTIONS(1792), 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(1794), 33, sym_raw_string_begin, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - 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, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -331132,12 +333852,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, - [104819] = 4, - ACTIONS(251), 1, + [103525] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3129), 1, + STATE(3147), 1, sym_comment, - ACTIONS(1949), 14, + ACTIONS(960), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331152,7 +333872,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(1951), 33, + ACTIONS(962), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -331186,12 +333906,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, - [104877] = 4, - ACTIONS(251), 1, + [103583] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3130), 1, + STATE(3148), 1, sym_comment, - ACTIONS(2386), 14, + ACTIONS(964), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331206,7 +333926,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(2388), 33, + ACTIONS(966), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -331240,66 +333960,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, - [104935] = 4, - ACTIONS(251), 1, + [103641] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3131), 1, - sym_comment, - ACTIONS(1680), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1682), 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [104993] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3132), 1, + STATE(3149), 1, sym_comment, - ACTIONS(2019), 14, + ACTIONS(1766), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331314,7 +333980,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(2025), 33, + ACTIONS(1768), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -331348,12 +334014,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, - [105051] = 4, - ACTIONS(251), 1, + [103699] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3133), 1, + STATE(3150), 1, sym_comment, - ACTIONS(2027), 14, + ACTIONS(6217), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331368,7 +334034,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(2033), 33, + ACTIONS(6215), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -331402,68 +334068,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, - [105109] = 6, - ACTIONS(251), 1, + [103757] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6205), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6207), 1, - aux_sym__immediate_decimal_token2, - STATE(3134), 1, - sym_comment, - ACTIONS(1711), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1713), 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [105171] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3135), 1, + STATE(3151), 1, sym_comment, - ACTIONS(2035), 14, + ACTIONS(2360), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331478,7 +334088,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(2041), 33, + ACTIONS(2362), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -331512,22 +334122,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, - [105229] = 4, - ACTIONS(251), 1, + [103815] = 9, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3136), 1, + ACTIONS(4770), 1, + anon_sym_DOT2, + STATE(1338), 1, + aux_sym_cell_path_repeat1, + STATE(1428), 1, + sym_path, + STATE(2019), 1, + sym_cell_path, + STATE(3152), 1, sym_comment, - ACTIONS(1743), 8, + ACTIONS(1893), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1745), 39, - ts_builtin_sym_end, + ACTIONS(6219), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -331539,12 +334153,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, + ACTIONS(1895), 25, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -331553,7 +334172,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -331563,15 +334181,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [105287] = 4, - ACTIONS(251), 1, + [103883] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3137), 1, + STATE(3153), 1, sym_comment, - ACTIONS(980), 14, + ACTIONS(2030), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331586,7 +334201,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(982), 33, + ACTIONS(2036), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -331620,12 +334235,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, - [105345] = 4, - ACTIONS(251), 1, + [103941] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3138), 1, + STATE(3154), 1, sym_comment, - ACTIONS(2390), 14, + ACTIONS(1290), 15, + anon_sym__, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331639,13 +334255,12 @@ 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(2392), 33, + aux_sym_unquoted_token1, + ACTIONS(1288), 32, sym_raw_string_begin, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -331674,12 +334289,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, - [105403] = 4, - ACTIONS(251), 1, + [103999] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3139), 1, + STATE(3155), 1, sym_comment, - ACTIONS(2394), 14, + ACTIONS(2393), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331694,7 +334309,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), 33, + ACTIONS(2395), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -331728,12 +334343,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105461] = 4, - ACTIONS(251), 1, + [104057] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3140), 1, + STATE(3156), 1, + sym_comment, + ACTIONS(1766), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1768), 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, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [104115] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3157), 1, sym_comment, - ACTIONS(2398), 14, + ACTIONS(2318), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331748,7 +334417,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(2400), 33, + ACTIONS(2320), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -331782,12 +334451,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, - [105519] = 4, - ACTIONS(251), 1, + [104173] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3141), 1, + STATE(3158), 1, sym_comment, - ACTIONS(6091), 14, + ACTIONS(1905), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331802,7 +334471,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(6093), 33, + ACTIONS(1907), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -331836,12 +334505,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, - [105577] = 4, - ACTIONS(251), 1, + [104231] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3142), 1, + STATE(3159), 1, sym_comment, - ACTIONS(2406), 14, + ACTIONS(6217), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331856,7 +334525,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(2408), 33, + ACTIONS(6215), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -331890,12 +334559,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, - [105635] = 4, - ACTIONS(251), 1, + [104289] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3143), 1, + STATE(3160), 1, sym_comment, - ACTIONS(2410), 14, + ACTIONS(2356), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331910,7 +334579,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(2412), 33, + ACTIONS(2358), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -331944,12 +334613,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, - [105693] = 4, - ACTIONS(251), 1, + [104347] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3144), 1, + STATE(3161), 1, sym_comment, - ACTIONS(2505), 14, + ACTIONS(2425), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331964,7 +334633,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(2507), 33, + ACTIONS(2427), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -331998,12 +334667,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, - [105751] = 4, - ACTIONS(251), 1, + [104405] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3145), 1, + STATE(3162), 1, sym_comment, - ACTIONS(2418), 14, + ACTIONS(2433), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -332018,7 +334687,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(2420), 33, + ACTIONS(2435), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -332052,12 +334721,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, - [105809] = 4, - ACTIONS(251), 1, + [104463] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3146), 1, + STATE(3163), 1, sym_comment, - ACTIONS(2422), 14, + ACTIONS(6132), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -332072,7 +334741,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(2424), 33, + ACTIONS(6134), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -332106,12 +334775,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, - [105867] = 4, - ACTIONS(251), 1, + [104521] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3147), 1, + STATE(3164), 1, sym_comment, - ACTIONS(2426), 14, + ACTIONS(2022), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -332126,7 +334795,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(2428), 33, + ACTIONS(2024), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -332160,12 +334829,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, - [105925] = 4, - ACTIONS(251), 1, + [104579] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3148), 1, + STATE(3165), 1, sym_comment, - ACTIONS(2430), 14, + ACTIONS(6224), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -332180,7 +334849,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(2432), 33, + ACTIONS(6222), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -332214,12 +334883,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105983] = 4, - ACTIONS(251), 1, + [104637] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3149), 1, + STATE(3166), 1, sym_comment, - ACTIONS(6211), 14, + ACTIONS(1792), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1794), 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, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [104695] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3167), 1, + sym_comment, + ACTIONS(2421), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -332234,7 +334957,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(6209), 33, + ACTIONS(2423), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -332268,12 +334991,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, - [106041] = 4, - ACTIONS(251), 1, + [104753] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3150), 1, + STATE(3168), 1, sym_comment, - ACTIONS(1755), 14, + ACTIONS(2449), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -332288,7 +335011,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(1757), 33, + ACTIONS(2451), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -332322,12 +335045,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, - [106099] = 4, - ACTIONS(251), 1, + [104811] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3151), 1, + STATE(3169), 1, sym_comment, - ACTIONS(6215), 14, + ACTIONS(956), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -332342,7 +335065,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(6213), 33, + ACTIONS(958), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -332376,12 +335099,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, - [106157] = 4, - ACTIONS(251), 1, + [104869] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3152), 1, + STATE(3170), 1, sym_comment, - ACTIONS(6219), 14, + ACTIONS(2437), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -332396,7 +335119,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(6217), 33, + ACTIONS(2439), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -332430,12 +335153,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, - [106215] = 4, - ACTIONS(251), 1, + [104927] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3153), 1, + STATE(3171), 1, sym_comment, - ACTIONS(1993), 14, + ACTIONS(5972), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -332450,7 +335173,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(1995), 33, + ACTIONS(5982), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -332484,70 +335207,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, - [106273] = 8, - ACTIONS(251), 1, + [104985] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3044), 1, - anon_sym_DOT_DOT2, - ACTIONS(6221), 1, - sym_filesize_unit, - ACTIONS(6223), 1, - sym_duration_unit, - STATE(3154), 1, - sym_comment, - ACTIONS(3046), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1638), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1650), 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_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [106339] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3155), 1, + STATE(3172), 1, sym_comment, - ACTIONS(1711), 14, + ACTIONS(1877), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -332562,7 +335227,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(1713), 33, + ACTIONS(1879), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -332596,12 +335261,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, - [106397] = 4, - ACTIONS(251), 1, + [105043] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3156), 1, + STATE(3173), 1, sym_comment, - ACTIONS(6227), 14, + ACTIONS(1839), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -332616,7 +335281,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(6225), 33, + ACTIONS(1841), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -332650,12 +335315,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, - [106455] = 4, - ACTIONS(251), 1, + [105101] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3157), 1, + STATE(3174), 1, sym_comment, - ACTIONS(1997), 14, + ACTIONS(2310), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -332670,7 +335335,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(1999), 33, + ACTIONS(2312), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -332704,12 +335369,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, - [106513] = 4, - ACTIONS(251), 1, + [105159] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3158), 1, + STATE(3175), 1, sym_comment, - ACTIONS(5801), 14, + ACTIONS(1985), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -332724,7 +335389,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(5808), 33, + ACTIONS(1991), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -332758,12 +335423,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, - [106571] = 4, - ACTIONS(251), 1, + [105217] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3159), 1, + STATE(3176), 1, sym_comment, - ACTIONS(6231), 14, + ACTIONS(1885), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -332778,7 +335443,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(6229), 33, + ACTIONS(1887), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -332812,12 +335477,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, - [106629] = 4, - ACTIONS(251), 1, + [105275] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3160), 1, + STATE(3177), 1, sym_comment, - ACTIONS(1638), 14, + ACTIONS(946), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -332832,7 +335497,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(1650), 33, + ACTIONS(948), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -332866,12 +335531,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, - [106687] = 4, - ACTIONS(251), 1, + [105333] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3161), 1, + STATE(3178), 1, sym_comment, - ACTIONS(2489), 14, + ACTIONS(5999), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -332886,7 +335551,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(2491), 33, + ACTIONS(6004), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -332920,14 +335585,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, - [106745] = 5, - ACTIONS(251), 1, + [105391] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6233), 1, - anon_sym_COMMA, - STATE(3162), 1, + STATE(3179), 1, sym_comment, - ACTIONS(6065), 14, + ACTIONS(2465), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -332942,11 +335605,12 @@ 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(6069), 32, + ACTIONS(2467), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -332975,12 +335639,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, - [106805] = 4, - ACTIONS(251), 1, + [105449] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3163), 1, + STATE(3180), 1, sym_comment, - ACTIONS(1000), 14, + ACTIONS(1701), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -332995,7 +335659,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(1002), 33, + ACTIONS(1703), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -333029,12 +335693,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, - [106863] = 4, - ACTIONS(251), 1, + [105507] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3164), 1, + STATE(3181), 1, sym_comment, - ACTIONS(2501), 14, + ACTIONS(2453), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -333049,7 +335713,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(2503), 33, + ACTIONS(2455), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -333083,12 +335747,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, - [106921] = 4, - ACTIONS(251), 1, + [105565] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3165), 1, + ACTIONS(6226), 1, + anon_sym_DOT, + ACTIONS(6228), 1, + aux_sym__immediate_decimal_token2, + STATE(3182), 1, sym_comment, - ACTIONS(1783), 14, + ACTIONS(1701), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1703), 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_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [105627] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3183), 1, + sym_comment, + ACTIONS(2485), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -333103,7 +335823,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(1785), 33, + ACTIONS(2487), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -333137,12 +335857,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, - [106979] = 4, - ACTIONS(251), 1, + [105685] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3166), 1, + ACTIONS(6230), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6232), 1, + aux_sym__immediate_decimal_token2, + STATE(3184), 1, + sym_comment, + ACTIONS(1693), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1695), 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_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [105747] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3185), 1, sym_comment, - ACTIONS(1835), 14, + ACTIONS(2457), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -333157,7 +335933,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(1837), 33, + ACTIONS(2459), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -333191,12 +335967,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, - [107037] = 4, - ACTIONS(251), 1, + [105805] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3167), 1, + ACTIONS(6234), 1, + anon_sym_COMMA, + STATE(3186), 1, sym_comment, - ACTIONS(5930), 14, + ACTIONS(6089), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -333211,12 +335989,11 @@ 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(5935), 33, + ACTIONS(6093), 32, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -333245,12 +336022,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, - [107095] = 4, - ACTIONS(251), 1, + [105865] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3168), 1, + STATE(3187), 1, sym_comment, - ACTIONS(6191), 14, + ACTIONS(6238), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -333265,7 +336042,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(6196), 33, + ACTIONS(6236), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -333299,12 +336076,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, - [107153] = 4, - ACTIONS(251), 1, + [105923] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3169), 1, + STATE(3188), 1, sym_comment, - ACTIONS(6219), 14, + ACTIONS(6242), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -333319,7 +336096,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(6217), 33, + ACTIONS(6240), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -333353,77 +336130,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, - [107211] = 5, - ACTIONS(251), 1, + [105981] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6187), 1, - aux_sym__immediate_decimal_token2, - STATE(3170), 1, + STATE(3189), 1, sym_comment, - ACTIONS(1755), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2429), 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(2431), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [106039] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2608), 1, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1757), 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_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + ACTIONS(6244), 1, + sym_filesize_unit, + ACTIONS(6246), 1, + sym_duration_unit, + STATE(3190), 1, + sym_comment, + ACTIONS(2610), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [107271] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6235), 1, - aux_sym__immediate_decimal_token2, - STATE(3171), 1, - sym_comment, - ACTIONS(1783), 7, + ACTIONS(1639), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1785), 39, + ACTIONS(1651), 37, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -333435,14 +336217,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_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -333451,7 +336233,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -333461,14 +336242,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [107331] = 4, - ACTIONS(251), 1, + [106105] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3172), 1, + STATE(3191), 1, sym_comment, - ACTIONS(976), 14, + ACTIONS(2026), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -333483,7 +336262,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(978), 33, + ACTIONS(2028), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -333517,13 +336296,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, - [107389] = 4, - ACTIONS(251), 1, + [106163] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3173), 1, + STATE(3192), 1, sym_comment, - ACTIONS(1311), 15, - anon_sym__, + ACTIONS(2370), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -333537,12 +336315,13 @@ 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(1309), 32, + aux_sym__unquoted_in_list_token1, + ACTIONS(2372), 33, sym_raw_string_begin, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -333571,12 +336350,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, - [107447] = 4, - ACTIONS(251), 1, + [106221] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3174), 1, + STATE(3193), 1, sym_comment, - ACTIONS(972), 14, + ACTIONS(2445), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -333591,7 +336370,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(974), 33, + ACTIONS(2447), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -333625,12 +336404,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, - [107505] = 4, - ACTIONS(251), 1, + [106279] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3175), 1, + STATE(3194), 1, sym_comment, - ACTIONS(2414), 14, + ACTIONS(2489), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -333645,7 +336424,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(2416), 33, + ACTIONS(2491), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -333679,12 +336458,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, - [107563] = 4, - ACTIONS(251), 1, + [106337] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3176), 1, + STATE(3195), 1, sym_comment, - ACTIONS(5918), 14, + ACTIONS(2374), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -333699,7 +336478,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(5928), 33, + ACTIONS(2376), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -333733,12 +336512,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [107621] = 4, - ACTIONS(251), 1, + [106395] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3177), 1, + ACTIONS(1818), 1, + anon_sym_LPAREN2, + ACTIONS(1826), 1, + aux_sym_unquoted_token2, + ACTIONS(6248), 1, + anon_sym_DOT_DOT2, + STATE(3196), 1, + sym_comment, + ACTIONS(6250), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1816), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1824), 37, + 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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [106461] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3197), 1, sym_comment, - ACTIONS(6148), 14, + ACTIONS(6254), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -333753,7 +336590,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(6150), 33, + ACTIONS(6252), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -333787,12 +336624,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, - [107679] = 4, - ACTIONS(251), 1, + [106519] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3178), 1, + STATE(3198), 1, sym_comment, - ACTIONS(984), 14, + ACTIONS(1693), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -333807,7 +336644,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(986), 33, + ACTIONS(1695), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -333841,12 +336678,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, - [107737] = 4, - ACTIONS(251), 1, + [106577] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3179), 1, + STATE(3199), 1, sym_comment, - ACTIONS(2043), 14, + ACTIONS(2407), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -333861,7 +336698,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(2049), 33, + ACTIONS(2409), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -333895,21 +336732,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, - [107795] = 4, - ACTIONS(251), 1, + [106635] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3180), 1, + STATE(3200), 1, sym_comment, - ACTIONS(1550), 8, + ACTIONS(1693), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1552), 39, + ACTIONS(1695), 40, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -333928,6 +336764,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -333948,26 +336786,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [107853] = 9, - ACTIONS(251), 1, + [106693] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6237), 1, + ACTIONS(6256), 1, anon_sym_LBRACK, - ACTIONS(6244), 1, + ACTIONS(6263), 1, anon_sym_DASH_DASH, - ACTIONS(6247), 1, + ACTIONS(6266), 1, anon_sym_DASH2, - STATE(3181), 2, + STATE(3201), 2, sym_comment, aux_sym_overlay_hide_repeat1, - STATE(3320), 2, - sym_val_list, - sym__flag, - STATE(3350), 2, + STATE(3453), 2, sym_short_flag, sym_long_flag, - ACTIONS(6242), 12, + STATE(3472), 2, + sym_val_list, + sym__flag, + ACTIONS(6261), 12, anon_sym_DOLLAR, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, @@ -333980,7 +336817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(6240), 27, + ACTIONS(6259), 27, sym_raw_string_begin, anon_sym_LPAREN, anon_sym_DOT_DOT_EQ, @@ -334008,66 +336845,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, - [107921] = 4, - ACTIONS(251), 1, + [106761] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3182), 1, - sym_comment, - ACTIONS(2320), 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(2322), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [107979] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3183), 1, + STATE(3202), 1, sym_comment, - ACTIONS(6252), 14, + ACTIONS(1977), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -334082,7 +336865,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(6250), 33, + ACTIONS(1983), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -334116,12 +336899,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, - [108037] = 4, - ACTIONS(251), 1, + [106819] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3184), 1, + STATE(3203), 1, sym_comment, - ACTIONS(2324), 14, + ACTIONS(6159), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -334136,7 +336919,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(2326), 33, + ACTIONS(6161), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -334170,66 +336953,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, - [108095] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3185), 1, - sym_comment, - ACTIONS(1542), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1544), 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [108153] = 4, - ACTIONS(251), 1, + [106877] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3186), 1, + STATE(3204), 1, sym_comment, - ACTIONS(1917), 14, + ACTIONS(2481), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -334244,7 +336973,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(1919), 33, + ACTIONS(2483), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -334278,12 +337007,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, - [108211] = 4, - ACTIONS(251), 1, + [106935] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3187), 1, + STATE(3205), 1, sym_comment, - ACTIONS(2328), 14, + ACTIONS(2330), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -334298,7 +337027,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(2330), 33, + ACTIONS(2332), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -334332,12 +337061,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, - [108269] = 4, - ACTIONS(251), 1, + [106993] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3188), 1, + STATE(3206), 1, sym_comment, - ACTIONS(2332), 14, + ACTIONS(1833), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -334352,7 +337081,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(2334), 33, + ACTIONS(1835), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -334386,12 +337115,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, - [108327] = 4, - ACTIONS(251), 1, + [107051] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3189), 1, + STATE(3207), 1, sym_comment, - ACTIONS(1937), 14, + ACTIONS(6271), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -334406,7 +337135,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(1939), 33, + ACTIONS(6269), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -334440,12 +337169,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, - [108385] = 4, - ACTIONS(251), 1, + [107109] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3190), 1, + STATE(3208), 1, sym_comment, - ACTIONS(1953), 14, + ACTIONS(1889), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -334460,7 +337189,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(1955), 33, + ACTIONS(1891), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -334494,12 +337223,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, - [108443] = 4, - ACTIONS(251), 1, + [107167] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3191), 1, + STATE(3209), 1, sym_comment, - ACTIONS(2336), 14, + ACTIONS(1639), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -334514,7 +337243,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(2338), 33, + ACTIONS(1651), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -334548,12 +337277,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, - [108501] = 4, - ACTIONS(251), 1, + [107225] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3192), 1, + STATE(3210), 1, sym_comment, - ACTIONS(1965), 14, + ACTIONS(5817), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -334568,7 +337297,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(1967), 33, + ACTIONS(5824), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -334602,12 +337331,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, - [108559] = 4, - ACTIONS(251), 1, + [107283] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3193), 1, + STATE(3211), 1, sym_comment, - ACTIONS(2342), 14, + ACTIONS(2043), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -334622,7 +337351,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(2344), 33, + ACTIONS(2049), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -334656,12 +337385,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, - [108617] = 4, - ACTIONS(251), 1, + [107341] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3194), 1, + STATE(3212), 1, sym_comment, - ACTIONS(2346), 14, + ACTIONS(2306), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -334676,7 +337405,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(2348), 33, + ACTIONS(2308), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -334710,12 +337439,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, - [108675] = 4, - ACTIONS(251), 1, + [107399] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3195), 1, + STATE(3213), 1, sym_comment, - ACTIONS(1969), 14, + ACTIONS(1901), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -334730,7 +337459,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(1971), 33, + ACTIONS(1903), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -334764,12 +337493,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, - [108733] = 4, - ACTIONS(251), 1, + [107457] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3196), 1, + STATE(3214), 1, sym_comment, - ACTIONS(1905), 14, + ACTIONS(986), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -334784,7 +337513,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(1907), 33, + ACTIONS(988), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -334818,66 +337547,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [108791] = 4, - ACTIONS(251), 1, + [107515] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3197), 1, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + ACTIONS(1808), 1, + anon_sym_LPAREN2, + ACTIONS(6273), 1, + anon_sym_DOT_DOT2, + STATE(3215), 1, sym_comment, - ACTIONS(2350), 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(2352), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [108849] = 4, - ACTIONS(251), 1, + ACTIONS(6275), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1806), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1814), 37, + 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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [107581] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3198), 1, + STATE(3216), 1, sym_comment, - ACTIONS(2354), 14, + ACTIONS(6185), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -334892,7 +337625,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(2356), 33, + ACTIONS(6190), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -334926,12 +337659,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [108907] = 4, - ACTIONS(251), 1, + [107639] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3199), 1, + STATE(3217), 1, + sym_comment, + ACTIONS(1701), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1703), 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, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [107697] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3218), 1, sym_comment, - ACTIONS(1983), 14, + ACTIONS(1861), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -334946,7 +337733,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(1985), 33, + ACTIONS(1863), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -334980,12 +337767,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, - [108965] = 4, - ACTIONS(251), 1, + [107755] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3200), 1, + STATE(3219), 1, sym_comment, - ACTIONS(2358), 14, + ACTIONS(2389), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -335000,7 +337787,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(2360), 33, + ACTIONS(2391), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -335034,12 +337821,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, - [109023] = 4, - ACTIONS(251), 1, + [107813] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3201), 1, + STATE(3220), 1, sym_comment, - ACTIONS(2362), 14, + ACTIONS(2314), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -335054,7 +337841,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(2364), 33, + ACTIONS(2316), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -335088,129 +337875,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, - [109081] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6254), 1, - anon_sym_DOT, - ACTIONS(6256), 1, - aux_sym__immediate_decimal_token2, - STATE(3202), 1, - sym_comment, - ACTIONS(1755), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1757), 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [109143] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3203), 1, - sym_comment, - ACTIONS(1755), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1757), 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_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [109200] = 8, - ACTIONS(251), 1, + [107871] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6258), 1, + ACTIONS(6277), 1, anon_sym_DOT2, - STATE(3204), 1, + STATE(3221), 1, sym_comment, - STATE(3248), 1, + STATE(3268), 1, aux_sym_cell_path_repeat1, - STATE(3307), 1, + STATE(3428), 1, sym_path, - STATE(3331), 1, + STATE(3506), 1, sym_cell_path, - ACTIONS(1917), 13, + ACTIONS(1861), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -335224,7 +337902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1919), 29, + ACTIONS(1863), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -335254,17 +337932,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, - [109265] = 4, - ACTIONS(251), 1, + [107936] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3205), 1, + ACTIONS(6277), 1, + anon_sym_DOT2, + STATE(3222), 1, sym_comment, - ACTIONS(6262), 14, + STATE(3268), 1, + aux_sym_cell_path_repeat1, + STATE(3428), 1, + sym_path, + STATE(3464), 1, + sym_cell_path, + ACTIONS(1945), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, 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, @@ -335273,14 +337958,12 @@ 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(6260), 32, + aux_sym_unquoted_token1, + ACTIONS(1947), 29, sym_raw_string_begin, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -335289,9 +337972,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, @@ -335299,6 +337979,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, @@ -335307,20 +337989,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, - [109322] = 8, - ACTIONS(251), 1, + [108001] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6258), 1, + ACTIONS(6277), 1, anon_sym_DOT2, - STATE(3206), 1, + STATE(3223), 1, sym_comment, - STATE(3248), 1, + STATE(3268), 1, aux_sym_cell_path_repeat1, - STATE(3307), 1, + STATE(3428), 1, sym_path, - STATE(3364), 1, + STATE(3470), 1, sym_cell_path, - ACTIONS(1929), 13, + ACTIONS(929), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -335334,7 +338016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1931), 29, + ACTIONS(931), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -335364,20 +338046,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, - [109387] = 4, - ACTIONS(251), 1, + [108066] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3207), 1, + ACTIONS(6279), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6281), 1, + aux_sym__immediate_decimal_token2, + STATE(3224), 1, sym_comment, - ACTIONS(1711), 7, + ACTIONS(1693), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1713), 39, + ACTIONS(1695), 38, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -335389,14 +338075,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_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -335415,79 +338101,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [109444] = 8, - ACTIONS(251), 1, + [108127] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6258), 1, - anon_sym_DOT2, - STATE(3208), 1, + ACTIONS(6283), 1, + anon_sym_DOT, + ACTIONS(6285), 1, + aux_sym__immediate_decimal_token2, + STATE(3225), 1, sym_comment, - STATE(3248), 1, - aux_sym_cell_path_repeat1, - STATE(3307), 1, - sym_path, - STATE(3377), 1, - sym_cell_path, - ACTIONS(943), 13, - anon_sym_DOLLAR, + ACTIONS(1701), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1703), 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_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(945), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [109509] = 4, - ACTIONS(251), 1, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [108188] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3209), 1, + ACTIONS(6228), 1, + aux_sym__immediate_decimal_token2, + STATE(3226), 1, sym_comment, - ACTIONS(1783), 7, + ACTIONS(1701), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1785), 39, + ACTIONS(1703), 39, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -335507,6 +338190,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -335525,22 +338210,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [109566] = 4, - ACTIONS(251), 1, + [108247] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3210), 1, + ACTIONS(6287), 1, + aux_sym__immediate_decimal_token2, + STATE(3227), 1, sym_comment, - ACTIONS(1835), 7, + ACTIONS(1766), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1837), 39, + ACTIONS(1768), 39, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -335560,6 +338244,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -335578,26 +338264,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [109623] = 8, - ACTIONS(251), 1, + [108306] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6258), 1, - anon_sym_DOT2, - STATE(3211), 1, + STATE(3228), 1, sym_comment, - STATE(3248), 1, - aux_sym_cell_path_repeat1, - STATE(3307), 1, - sym_path, - STATE(3347), 1, - sym_cell_path, - ACTIONS(1855), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, + ACTIONS(6291), 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, @@ -335606,69 +338283,14 @@ 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(1857), 29, + aux_sym__unquoted_in_list_token1, + ACTIONS(6289), 32, sym_raw_string_begin, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [109688] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6258), 1, - anon_sym_DOT2, - STATE(3212), 1, - sym_comment, - STATE(3248), 1, - aux_sym_cell_path_repeat1, - STATE(3307), 1, - sym_path, - STATE(3368), 1, - sym_cell_path, - ACTIONS(1969), 13, anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(1971), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -335677,6 +338299,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, @@ -335684,8 +338309,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, @@ -335694,20 +338317,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, - [109753] = 8, - ACTIONS(251), 1, + [108363] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6258), 1, + ACTIONS(6277), 1, anon_sym_DOT2, - STATE(3213), 1, + STATE(3229), 1, sym_comment, - STATE(3248), 1, + STATE(3268), 1, aux_sym_cell_path_repeat1, - STATE(3307), 1, + STATE(3428), 1, sym_path, - STATE(3369), 1, + STATE(3456), 1, sym_cell_path, - ACTIONS(1979), 13, + ACTIONS(1893), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -335721,7 +338344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1981), 29, + ACTIONS(1895), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -335751,79 +338374,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, - [109818] = 8, - ACTIONS(251), 1, + [108428] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6258), 1, + ACTIONS(5082), 1, anon_sym_DOT2, - STATE(3214), 1, - sym_comment, - STATE(3248), 1, + STATE(1640), 1, aux_sym_cell_path_repeat1, - STATE(3307), 1, + STATE(1783), 1, sym_path, - STATE(3324), 1, + STATE(2439), 1, sym_cell_path, - ACTIONS(1933), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(1935), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [109883] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6264), 1, - aux_sym__immediate_decimal_token2, - STATE(3215), 1, + STATE(3230), 1, sym_comment, - ACTIONS(1783), 7, + ACTIONS(1893), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1785), 38, + ACTIONS(6219), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -335836,12 +338406,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, + ACTIONS(1895), 25, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -335850,7 +338423,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -335860,22 +338432,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [109942] = 8, - ACTIONS(251), 1, + [108495] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6258), 1, + ACTIONS(6277), 1, anon_sym_DOT2, - STATE(3216), 1, + STATE(3231), 1, sym_comment, - STATE(3248), 1, + STATE(3268), 1, aux_sym_cell_path_repeat1, - STATE(3307), 1, + STATE(3428), 1, sym_path, - STATE(3378), 1, + STATE(3465), 1, sym_cell_path, - ACTIONS(1905), 13, + ACTIONS(1917), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -335889,7 +338459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1907), 29, + ACTIONS(1919), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -335919,20 +338489,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, - [110007] = 8, - ACTIONS(251), 1, + [108560] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6258), 1, + ACTIONS(6277), 1, anon_sym_DOT2, - STATE(3217), 1, + STATE(3232), 1, sym_comment, - STATE(3248), 1, + STATE(3268), 1, aux_sym_cell_path_repeat1, - STATE(3307), 1, + STATE(3428), 1, sym_path, - STATE(3343), 1, + STATE(3449), 1, sym_cell_path, - ACTIONS(1937), 13, + ACTIONS(1961), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -335946,7 +338516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1939), 29, + ACTIONS(1963), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -335976,134 +338546,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, - [110072] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1814), 1, - anon_sym_LPAREN2, - ACTIONS(1822), 1, - aux_sym_unquoted_token2, - ACTIONS(6266), 1, - anon_sym_DOT_DOT2, - STATE(3218), 1, - sym_comment, - ACTIONS(6268), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1812), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1820), 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_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [110137] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym_unquoted_token2, - ACTIONS(1804), 1, - anon_sym_LPAREN2, - ACTIONS(6270), 1, - anon_sym_DOT_DOT2, - STATE(3219), 1, - sym_comment, - ACTIONS(6272), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1802), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1810), 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_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [110202] = 8, - ACTIONS(251), 1, + [108625] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6258), 1, + ACTIONS(6277), 1, anon_sym_DOT2, - STATE(3220), 1, + STATE(3233), 1, sym_comment, - STATE(3248), 1, + STATE(3268), 1, aux_sym_cell_path_repeat1, - STATE(3307), 1, + STATE(3428), 1, sym_path, - STATE(3370), 1, + STATE(3469), 1, sym_cell_path, - ACTIONS(1909), 13, + ACTIONS(1931), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -336117,7 +338573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1911), 29, + ACTIONS(1933), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -336147,20 +338603,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, - [110267] = 8, - ACTIONS(251), 1, + [108690] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6258), 1, + ACTIONS(6277), 1, anon_sym_DOT2, - STATE(3221), 1, + STATE(3234), 1, sym_comment, - STATE(3248), 1, + STATE(3268), 1, aux_sym_cell_path_repeat1, - STATE(3307), 1, + STATE(3428), 1, sym_path, - STATE(3323), 1, + STATE(3473), 1, sym_cell_path, - ACTIONS(1983), 13, + ACTIONS(1939), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -336174,7 +338630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1985), 29, + ACTIONS(1941), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -336204,20 +338660,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, - [110332] = 8, - ACTIONS(251), 1, + [108755] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6258), 1, + ACTIONS(6277), 1, anon_sym_DOT2, - STATE(3222), 1, + STATE(3235), 1, sym_comment, - STATE(3248), 1, + STATE(3268), 1, aux_sym_cell_path_repeat1, - STATE(3307), 1, + STATE(3428), 1, sym_path, - STATE(3375), 1, + STATE(3474), 1, sym_cell_path, - ACTIONS(1945), 13, + ACTIONS(1909), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -336231,7 +338687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1947), 29, + ACTIONS(1911), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -336261,20 +338717,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, - [110397] = 8, - ACTIONS(251), 1, + [108820] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6258), 1, + ACTIONS(6277), 1, anon_sym_DOT2, - STATE(3223), 1, + STATE(3236), 1, sym_comment, - STATE(3248), 1, + STATE(3268), 1, aux_sym_cell_path_repeat1, - STATE(3307), 1, + STATE(3428), 1, sym_path, - STATE(3311), 1, + STATE(3475), 1, sym_cell_path, - ACTIONS(1949), 13, + ACTIONS(1839), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -336288,7 +338744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1951), 29, + ACTIONS(1841), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -336318,20 +338774,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, - [110462] = 8, - ACTIONS(251), 1, + [108885] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6258), 1, + ACTIONS(6277), 1, anon_sym_DOT2, - STATE(3224), 1, + STATE(3237), 1, sym_comment, - STATE(3248), 1, + STATE(3268), 1, aux_sym_cell_path_repeat1, - STATE(3307), 1, + STATE(3428), 1, sym_path, - STATE(3318), 1, + STATE(3476), 1, sym_cell_path, - ACTIONS(1913), 13, + ACTIONS(1847), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -336345,7 +338801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1915), 29, + ACTIONS(1849), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -336375,20 +338831,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, - [110527] = 8, - ACTIONS(251), 1, + [108950] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6258), 1, + ACTIONS(6277), 1, anon_sym_DOT2, - STATE(3225), 1, + STATE(3238), 1, sym_comment, - STATE(3248), 1, + STATE(3268), 1, aux_sym_cell_path_repeat1, - STATE(3307), 1, + STATE(3428), 1, sym_path, - STATE(3358), 1, + STATE(3477), 1, sym_cell_path, - ACTIONS(1953), 13, + ACTIONS(1853), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -336402,7 +338858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1955), 29, + ACTIONS(1855), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -336432,20 +338888,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, - [110592] = 8, - ACTIONS(251), 1, + [109015] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6258), 1, + ACTIONS(6277), 1, anon_sym_DOT2, - STATE(3226), 1, + STATE(3239), 1, sym_comment, - STATE(3248), 1, + STATE(3268), 1, aux_sym_cell_path_repeat1, - STATE(3307), 1, + STATE(3428), 1, sym_path, - STATE(3345), 1, + STATE(3478), 1, sym_cell_path, - ACTIONS(1891), 13, + ACTIONS(1869), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -336459,7 +338915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1893), 29, + ACTIONS(1871), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -336489,20 +338945,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, - [110657] = 8, - ACTIONS(251), 1, + [109080] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6258), 1, + ACTIONS(6277), 1, anon_sym_DOT2, - STATE(3227), 1, + STATE(3240), 1, sym_comment, - STATE(3248), 1, + STATE(3268), 1, aux_sym_cell_path_repeat1, - STATE(3307), 1, + STATE(3428), 1, sym_path, - STATE(3309), 1, + STATE(3503), 1, sym_cell_path, - ACTIONS(1957), 13, + ACTIONS(1877), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -336516,7 +338972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1959), 29, + ACTIONS(1879), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -336546,20 +339002,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, - [110722] = 8, - ACTIONS(251), 1, + [109145] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6258), 1, + ACTIONS(6277), 1, anon_sym_DOT2, - STATE(3228), 1, + STATE(3241), 1, sym_comment, - STATE(3248), 1, + STATE(3268), 1, aux_sym_cell_path_repeat1, - STATE(3307), 1, + STATE(3428), 1, sym_path, - STATE(3362), 1, + STATE(3504), 1, sym_cell_path, - ACTIONS(1961), 13, + ACTIONS(1969), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -336573,7 +339029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1963), 29, + ACTIONS(1971), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -336603,20 +339059,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, - [110787] = 8, - ACTIONS(251), 1, + [109210] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6258), 1, + ACTIONS(6277), 1, anon_sym_DOT2, - STATE(3229), 1, + STATE(3242), 1, sym_comment, - STATE(3248), 1, + STATE(3268), 1, aux_sym_cell_path_repeat1, - STATE(3307), 1, + STATE(3428), 1, sym_path, - STATE(3333), 1, + STATE(3505), 1, sym_cell_path, - ACTIONS(1921), 13, + ACTIONS(1833), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -336630,7 +339086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1923), 29, + ACTIONS(1835), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -336660,20 +339116,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, - [110852] = 8, - ACTIONS(251), 1, + [109275] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6258), 1, + ACTIONS(6277), 1, anon_sym_DOT2, - STATE(3230), 1, + STATE(3243), 1, sym_comment, - STATE(3248), 1, + STATE(3268), 1, aux_sym_cell_path_repeat1, - STATE(3307), 1, + STATE(3428), 1, sym_path, - STATE(3366), 1, + STATE(3438), 1, sym_cell_path, - ACTIONS(1965), 13, + ACTIONS(1873), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -336687,7 +339143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1967), 29, + ACTIONS(1875), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -336717,20 +339173,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, - [110917] = 8, - ACTIONS(251), 1, + [109340] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6258), 1, + ACTIONS(6277), 1, anon_sym_DOT2, - STATE(3231), 1, + STATE(3244), 1, sym_comment, - STATE(3248), 1, + STATE(3268), 1, aux_sym_cell_path_repeat1, - STATE(3307), 1, + STATE(3428), 1, sym_path, - STATE(3336), 1, + STATE(3435), 1, sym_cell_path, - ACTIONS(1895), 13, + ACTIONS(1881), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -336744,7 +339200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1897), 29, + ACTIONS(1883), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -336774,20 +339230,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, - [110982] = 8, - ACTIONS(251), 1, + [109405] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6258), 1, + ACTIONS(6277), 1, anon_sym_DOT2, - STATE(3232), 1, + STATE(3245), 1, sym_comment, - STATE(3248), 1, + STATE(3268), 1, aux_sym_cell_path_repeat1, - STATE(3307), 1, + STATE(3428), 1, sym_path, - STATE(3354), 1, + STATE(3436), 1, sym_cell_path, - ACTIONS(1941), 13, + ACTIONS(1885), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -336801,7 +339257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1943), 29, + ACTIONS(1887), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -336831,74 +339287,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, - [111047] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6256), 1, - aux_sym__immediate_decimal_token2, - STATE(3233), 1, - sym_comment, - ACTIONS(1755), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1757), 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [111106] = 8, - ACTIONS(251), 1, + [109470] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6258), 1, + ACTIONS(6277), 1, anon_sym_DOT2, - STATE(3234), 1, + STATE(3246), 1, sym_comment, - STATE(3248), 1, + STATE(3268), 1, aux_sym_cell_path_repeat1, - STATE(3307), 1, + STATE(3428), 1, sym_path, - STATE(3337), 1, + STATE(3437), 1, sym_cell_path, - ACTIONS(1925), 13, + ACTIONS(1889), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -336912,7 +339314,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), 29, + ACTIONS(1891), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -336942,313 +339344,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, - [111171] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6274), 1, - anon_sym_COLON, - ACTIONS(6276), 1, - anon_sym_LBRACK, - ACTIONS(6282), 1, - anon_sym_list, - ACTIONS(6284), 1, - anon_sym_LBRACE, - STATE(3235), 1, - sym_comment, - STATE(6658), 1, - sym_block, - STATE(7423), 1, - sym_returns, - STATE(7508), 1, - sym__one_type, - STATE(7510), 1, - sym__multiple_types, - STATE(7536), 1, - sym__type_annotation, - ACTIONS(6280), 2, - anon_sym_table, - anon_sym_record, - STATE(6180), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6278), 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, - [111247] = 6, - ACTIONS(251), 1, + [109535] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6286), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6288), 1, - aux_sym__immediate_decimal_token2, - STATE(3236), 1, + ACTIONS(6277), 1, + anon_sym_DOT2, + STATE(3247), 1, sym_comment, - ACTIONS(1711), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1713), 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, + STATE(3268), 1, + aux_sym_cell_path_repeat1, + STATE(3428), 1, + sym_path, + STATE(3507), 1, + sym_cell_path, + ACTIONS(1897), 13, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [111307] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6274), 1, - anon_sym_COLON, - ACTIONS(6276), 1, - anon_sym_LBRACK, - ACTIONS(6282), 1, - anon_sym_list, - ACTIONS(6290), 1, - anon_sym_LBRACE, - STATE(3237), 1, - sym_comment, - STATE(7078), 1, - sym_block, - STATE(7427), 1, - sym_returns, - STATE(7508), 1, - sym__one_type, - STATE(7510), 1, - sym__multiple_types, - STATE(7536), 1, - sym__type_annotation, - ACTIONS(6280), 2, - anon_sym_table, - anon_sym_record, - STATE(6180), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6278), 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, - [111383] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6274), 1, - anon_sym_COLON, - ACTIONS(6276), 1, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(1899), 29, + sym_raw_string_begin, anon_sym_LBRACK, - ACTIONS(6282), 1, - anon_sym_list, - ACTIONS(6290), 1, - anon_sym_LBRACE, - STATE(3238), 1, - sym_comment, - STATE(7082), 1, - sym_block, - STATE(7353), 1, - sym_returns, - STATE(7508), 1, - sym__one_type, - STATE(7510), 1, - sym__multiple_types, - STATE(7536), 1, - sym__type_annotation, - ACTIONS(6280), 2, - anon_sym_table, - anon_sym_record, - STATE(6180), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6278), 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, - [111459] = 8, - ACTIONS(251), 1, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [109600] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1814), 1, - anon_sym_LPAREN2, - ACTIONS(1822), 1, - aux_sym_unquoted_token2, - ACTIONS(6292), 1, - anon_sym_DOT_DOT2, - STATE(3239), 1, + ACTIONS(6277), 1, + anon_sym_DOT2, + STATE(3248), 1, sym_comment, - ACTIONS(6294), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1812), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1820), 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, + STATE(3268), 1, + aux_sym_cell_path_repeat1, + STATE(3428), 1, + sym_path, + STATE(3439), 1, + sym_cell_path, + ACTIONS(1901), 13, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [111523] = 6, - ACTIONS(251), 1, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(1903), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [109665] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6296), 1, + ACTIONS(6277), 1, anon_sym_DOT2, - STATE(3307), 1, - sym_path, - STATE(3240), 2, + STATE(3249), 1, sym_comment, + STATE(3268), 1, aux_sym_cell_path_repeat1, - ACTIONS(953), 13, + STATE(3428), 1, + sym_path, + STATE(3440), 1, + sym_cell_path, + ACTIONS(1905), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -337262,7 +339485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(955), 29, + ACTIONS(1907), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -337292,23 +339515,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, - [111583] = 6, - ACTIONS(251), 1, + [109730] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6299), 1, - anon_sym_DOT, - ACTIONS(6301), 1, - aux_sym__immediate_decimal_token2, - STATE(3241), 1, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + ACTIONS(1808), 1, + anon_sym_LPAREN2, + STATE(3250), 1, sym_comment, - ACTIONS(1755), 6, + ACTIONS(1806), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1757), 37, + ACTIONS(1814), 38, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337328,6 +339550,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -337336,7 +339560,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -337346,28 +339569,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [111643] = 8, - ACTIONS(251), 1, + [109790] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3074), 1, - anon_sym_DOT_DOT2, - ACTIONS(6303), 1, - sym_filesize_unit, - ACTIONS(6305), 1, - sym_duration_unit, - STATE(3242), 1, + STATE(3251), 1, sym_comment, - ACTIONS(3076), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1638), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1650), 35, - ts_builtin_sym_end, + ACTIONS(2087), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337379,106 +339586,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_LPAREN2, + ACTIONS(2085), 31, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [111707] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6274), 1, - anon_sym_COLON, - ACTIONS(6276), 1, - anon_sym_LBRACK, - ACTIONS(6282), 1, - anon_sym_list, - ACTIONS(6284), 1, - anon_sym_LBRACE, - STATE(3243), 1, - sym_comment, - STATE(6203), 1, - sym_block, - STATE(7391), 1, - sym_returns, - STATE(7508), 1, - sym__one_type, - STATE(7510), 1, - sym__multiple_types, - STATE(7536), 1, - sym__type_annotation, - ACTIONS(6280), 2, - anon_sym_table, - anon_sym_record, - STATE(6180), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6278), 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, - [111783] = 4, - ACTIONS(251), 1, + aux_sym_unquoted_token4, + [109846] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3244), 1, + ACTIONS(2067), 1, + anon_sym_LPAREN2, + ACTIONS(2071), 1, + aux_sym_unquoted_token4, + STATE(3252), 1, sym_comment, - ACTIONS(1755), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1757), 38, - ts_builtin_sym_end, + ACTIONS(2069), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337490,232 +339642,56 @@ static const uint16_t 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, + ACTIONS(2065), 30, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [111839] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6274), 1, - anon_sym_COLON, - ACTIONS(6276), 1, - anon_sym_LBRACK, - ACTIONS(6282), 1, - anon_sym_list, - ACTIONS(6284), 1, - anon_sym_LBRACE, - STATE(3245), 1, - sym_comment, - STATE(6234), 1, - sym_block, - STATE(7335), 1, - sym_returns, - STATE(7508), 1, - sym__one_type, - STATE(7510), 1, - sym__multiple_types, - STATE(7536), 1, - sym__type_annotation, - ACTIONS(6280), 2, - anon_sym_table, - anon_sym_record, - STATE(6180), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6278), 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, - [111915] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6274), 1, - anon_sym_COLON, - ACTIONS(6276), 1, - anon_sym_LBRACK, - ACTIONS(6282), 1, - anon_sym_list, - ACTIONS(6284), 1, - anon_sym_LBRACE, - STATE(3246), 1, - sym_comment, - STATE(6194), 1, - sym_block, - STATE(7429), 1, - sym_returns, - STATE(7508), 1, - sym__one_type, - STATE(7510), 1, - sym__multiple_types, - STATE(7536), 1, - sym__type_annotation, - ACTIONS(6280), 2, - anon_sym_table, - anon_sym_record, - STATE(6180), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6278), 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, - [111991] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6274), 1, - anon_sym_COLON, - ACTIONS(6276), 1, - anon_sym_LBRACK, - ACTIONS(6282), 1, - anon_sym_list, - ACTIONS(6284), 1, - anon_sym_LBRACE, - STATE(3247), 1, - sym_comment, - STATE(6195), 1, - sym_block, - STATE(7431), 1, - sym_returns, - STATE(7508), 1, - sym__one_type, - STATE(7510), 1, - sym__multiple_types, - STATE(7536), 1, - sym__type_annotation, - ACTIONS(6280), 2, - anon_sym_table, - anon_sym_record, - STATE(6180), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6278), 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, - [112067] = 7, - ACTIONS(251), 1, + [109906] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6258), 1, - anon_sym_DOT2, - STATE(3240), 1, - aux_sym_cell_path_repeat1, - STATE(3248), 1, + ACTIONS(6297), 1, + anon_sym_DASH_DASH, + ACTIONS(6300), 1, + anon_sym_DASH2, + STATE(3515), 1, + sym__flag, + STATE(3253), 2, sym_comment, - STATE(3307), 1, - sym_path, - ACTIONS(949), 13, + aux_sym_ctrl_do_repeat1, + STATE(3453), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(6295), 12, anon_sym_DOLLAR, - anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_err_GT, @@ -337727,11 +339703,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(951), 29, + ACTIONS(6293), 27, sym_raw_string_begin, - anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -337757,146 +339731,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, - [112129] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3249), 1, - sym_comment, - ACTIONS(1711), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1713), 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [112185] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4912), 1, - anon_sym_DOT2, - STATE(1386), 1, - aux_sym_cell_path_repeat1, - STATE(1532), 1, - sym_path, - STATE(2136), 1, - sym_cell_path, - STATE(3250), 1, - sym_comment, - ACTIONS(1921), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(6307), 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(1923), 23, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [112251] = 14, - ACTIONS(251), 1, + [109970] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6274), 1, + ACTIONS(6303), 1, anon_sym_COLON, - ACTIONS(6276), 1, + ACTIONS(6305), 1, anon_sym_LBRACK, - ACTIONS(6282), 1, + ACTIONS(6311), 1, anon_sym_list, - ACTIONS(6284), 1, + ACTIONS(6313), 1, anon_sym_LBRACE, - STATE(3251), 1, + STATE(3254), 1, sym_comment, - STATE(6235), 1, + STATE(6585), 1, sym_block, - STATE(7351), 1, + STATE(7443), 1, sym_returns, - STATE(7508), 1, - sym__one_type, - STATE(7510), 1, + STATE(7481), 1, sym__multiple_types, - STATE(7536), 1, + STATE(7666), 1, sym__type_annotation, - ACTIONS(6280), 2, + STATE(7738), 1, + sym__one_type, + ACTIONS(6309), 2, anon_sym_table, anon_sym_record, - STATE(6180), 3, + STATE(6434), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6278), 31, + ACTIONS(6307), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -337928,37 +339793,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [112327] = 14, - ACTIONS(251), 1, + [110046] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6274), 1, + ACTIONS(6303), 1, anon_sym_COLON, - ACTIONS(6276), 1, + ACTIONS(6305), 1, anon_sym_LBRACK, - ACTIONS(6282), 1, + ACTIONS(6311), 1, anon_sym_list, - ACTIONS(6284), 1, + ACTIONS(6313), 1, anon_sym_LBRACE, - STATE(3252), 1, + STATE(3255), 1, sym_comment, - STATE(6206), 1, + STATE(6586), 1, sym_block, - STATE(7392), 1, + STATE(7448), 1, sym_returns, - STATE(7508), 1, - sym__one_type, - STATE(7510), 1, + STATE(7481), 1, sym__multiple_types, - STATE(7536), 1, + STATE(7666), 1, sym__type_annotation, - ACTIONS(6280), 2, + STATE(7738), 1, + sym__one_type, + ACTIONS(6309), 2, anon_sym_table, anon_sym_record, - STATE(6180), 3, + STATE(6434), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6278), 31, + ACTIONS(6307), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -337990,141 +339855,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [112403] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3253), 1, - sym_comment, - ACTIONS(1783), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1785), 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [112459] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3254), 1, - sym_comment, - ACTIONS(1835), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1837), 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [112515] = 14, - ACTIONS(251), 1, + [110122] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6274), 1, + ACTIONS(6303), 1, anon_sym_COLON, - ACTIONS(6276), 1, + ACTIONS(6305), 1, anon_sym_LBRACK, - ACTIONS(6282), 1, + ACTIONS(6311), 1, anon_sym_list, - ACTIONS(6290), 1, + ACTIONS(6313), 1, anon_sym_LBRACE, - STATE(3255), 1, + STATE(3256), 1, sym_comment, - STATE(6786), 1, + STATE(6683), 1, sym_block, - STATE(7346), 1, + STATE(7441), 1, sym_returns, - STATE(7508), 1, - sym__one_type, - STATE(7510), 1, + STATE(7481), 1, sym__multiple_types, - STATE(7536), 1, + STATE(7666), 1, sym__type_annotation, - ACTIONS(6280), 2, + STATE(7738), 1, + sym__one_type, + ACTIONS(6309), 2, anon_sym_table, anon_sym_record, - STATE(6180), 3, + STATE(6434), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6278), 31, + ACTIONS(6307), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -338156,93 +339917,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [112591] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym_unquoted_token2, - ACTIONS(1804), 1, - anon_sym_LPAREN2, - ACTIONS(6310), 1, - anon_sym_DOT_DOT2, - STATE(3256), 1, - sym_comment, - ACTIONS(6312), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1802), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1810), 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [112655] = 14, - ACTIONS(251), 1, + [110198] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6274), 1, + ACTIONS(6303), 1, anon_sym_COLON, - ACTIONS(6276), 1, + ACTIONS(6305), 1, anon_sym_LBRACK, - ACTIONS(6282), 1, + ACTIONS(6311), 1, anon_sym_list, - ACTIONS(6290), 1, + ACTIONS(6313), 1, anon_sym_LBRACE, STATE(3257), 1, sym_comment, - STATE(6872), 1, + STATE(6184), 1, sym_block, - STATE(7341), 1, + STATE(7442), 1, sym_returns, - STATE(7508), 1, - sym__one_type, - STATE(7510), 1, + STATE(7481), 1, sym__multiple_types, - STATE(7536), 1, + STATE(7666), 1, sym__type_annotation, - ACTIONS(6280), 2, + STATE(7738), 1, + sym__one_type, + ACTIONS(6309), 2, anon_sym_table, anon_sym_record, - STATE(6180), 3, + STATE(6434), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6278), 31, + ACTIONS(6307), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -338274,37 +339979,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [112731] = 14, - ACTIONS(251), 1, + [110274] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6274), 1, + ACTIONS(6303), 1, anon_sym_COLON, - ACTIONS(6276), 1, + ACTIONS(6305), 1, anon_sym_LBRACK, - ACTIONS(6282), 1, + ACTIONS(6311), 1, anon_sym_list, - ACTIONS(6290), 1, + ACTIONS(6313), 1, anon_sym_LBRACE, STATE(3258), 1, sym_comment, - STATE(6804), 1, + STATE(6556), 1, sym_block, - STATE(7342), 1, + STATE(7348), 1, sym_returns, - STATE(7508), 1, - sym__one_type, - STATE(7510), 1, + STATE(7481), 1, sym__multiple_types, - STATE(7536), 1, + STATE(7666), 1, sym__type_annotation, - ACTIONS(6280), 2, + STATE(7738), 1, + sym__one_type, + ACTIONS(6309), 2, anon_sym_table, anon_sym_record, - STATE(6180), 3, + STATE(6434), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6278), 31, + ACTIONS(6307), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -338336,37 +340041,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [112807] = 14, - ACTIONS(251), 1, + [110350] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6274), 1, + ACTIONS(6303), 1, anon_sym_COLON, - ACTIONS(6276), 1, + ACTIONS(6305), 1, anon_sym_LBRACK, - ACTIONS(6282), 1, + ACTIONS(6311), 1, anon_sym_list, - ACTIONS(6290), 1, + ACTIONS(6313), 1, anon_sym_LBRACE, STATE(3259), 1, sym_comment, - STATE(6798), 1, + STATE(6560), 1, sym_block, - STATE(7367), 1, + STATE(7328), 1, sym_returns, - STATE(7508), 1, - sym__one_type, - STATE(7510), 1, + STATE(7481), 1, sym__multiple_types, - STATE(7536), 1, + STATE(7666), 1, sym__type_annotation, - ACTIONS(6280), 2, + STATE(7738), 1, + sym__one_type, + ACTIONS(6309), 2, anon_sym_table, anon_sym_record, - STATE(6180), 3, + STATE(6434), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6278), 31, + ACTIONS(6307), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -338398,37 +340103,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [112883] = 14, - ACTIONS(251), 1, + [110426] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6274), 1, + ACTIONS(6303), 1, anon_sym_COLON, - ACTIONS(6276), 1, + ACTIONS(6305), 1, anon_sym_LBRACK, - ACTIONS(6282), 1, + ACTIONS(6311), 1, anon_sym_list, - ACTIONS(6290), 1, + ACTIONS(6313), 1, anon_sym_LBRACE, STATE(3260), 1, sym_comment, - STATE(7173), 1, + STATE(6557), 1, sym_block, - STATE(7386), 1, + STATE(7450), 1, sym_returns, - STATE(7508), 1, - sym__one_type, - STATE(7510), 1, + STATE(7481), 1, sym__multiple_types, - STATE(7536), 1, + STATE(7666), 1, sym__type_annotation, - ACTIONS(6280), 2, + STATE(7738), 1, + sym__one_type, + ACTIONS(6309), 2, anon_sym_table, anon_sym_record, - STATE(6180), 3, + STATE(6434), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6278), 31, + ACTIONS(6307), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -338460,93 +340165,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [112959] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6318), 1, - anon_sym_DASH_DASH, - ACTIONS(6321), 1, - anon_sym_DASH2, - STATE(3437), 1, - sym__flag, - STATE(3261), 2, - sym_comment, - aux_sym_ctrl_do_repeat1, - STATE(3350), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(6316), 12, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(6314), 27, - sym_raw_string_begin, - anon_sym_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [113023] = 14, - ACTIONS(251), 1, + [110502] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6274), 1, + ACTIONS(6303), 1, anon_sym_COLON, - ACTIONS(6276), 1, + ACTIONS(6305), 1, anon_sym_LBRACK, - ACTIONS(6282), 1, + ACTIONS(6311), 1, anon_sym_list, - ACTIONS(6290), 1, + ACTIONS(6313), 1, anon_sym_LBRACE, - STATE(3262), 1, + STATE(3261), 1, sym_comment, - STATE(6785), 1, + STATE(6559), 1, sym_block, - STATE(7416), 1, + STATE(7373), 1, sym_returns, - STATE(7508), 1, - sym__one_type, - STATE(7510), 1, + STATE(7481), 1, sym__multiple_types, - STATE(7536), 1, + STATE(7666), 1, sym__type_annotation, - ACTIONS(6280), 2, + STATE(7738), 1, + sym__one_type, + ACTIONS(6309), 2, anon_sym_table, anon_sym_record, - STATE(6180), 3, + STATE(6434), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6278), 31, + ACTIONS(6307), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -338578,37 +340227,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [113099] = 14, - ACTIONS(251), 1, + [110578] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1818), 1, + anon_sym_LPAREN2, + ACTIONS(1826), 1, + aux_sym_unquoted_token2, + STATE(3262), 1, + sym_comment, + ACTIONS(2164), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2166), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_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_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [110638] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1818), 1, + anon_sym_LPAREN2, + ACTIONS(1826), 1, + aux_sym_unquoted_token2, + STATE(3263), 1, + sym_comment, + ACTIONS(1816), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1824), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_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_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [110698] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6274), 1, + ACTIONS(6303), 1, anon_sym_COLON, - ACTIONS(6276), 1, + ACTIONS(6305), 1, anon_sym_LBRACK, - ACTIONS(6282), 1, + ACTIONS(6311), 1, anon_sym_list, - ACTIONS(6284), 1, + ACTIONS(6315), 1, anon_sym_LBRACE, - STATE(3263), 1, + STATE(3264), 1, sym_comment, - STATE(6657), 1, + STATE(6821), 1, sym_block, - STATE(7420), 1, + STATE(7367), 1, sym_returns, - STATE(7508), 1, - sym__one_type, - STATE(7510), 1, + STATE(7481), 1, sym__multiple_types, - STATE(7536), 1, + STATE(7666), 1, sym__type_annotation, - ACTIONS(6280), 2, + STATE(7738), 1, + sym__one_type, + ACTIONS(6309), 2, anon_sym_table, anon_sym_record, - STATE(6180), 3, + STATE(6434), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6278), 31, + ACTIONS(6307), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -338640,130 +340397,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [113175] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6324), 1, - anon_sym_QMARK2, - STATE(3264), 1, - sym_comment, - ACTIONS(960), 14, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_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, - aux_sym_unquoted_token1, - ACTIONS(962), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [113232] = 4, - ACTIONS(251), 1, + [110774] = 14, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3265), 1, - sym_comment, - ACTIONS(972), 14, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_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, - aux_sym_unquoted_token1, - ACTIONS(974), 30, - sym_raw_string_begin, + ACTIONS(6303), 1, + anon_sym_COLON, + ACTIONS(6305), 1, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [113287] = 9, - ACTIONS(251), 1, + ACTIONS(6311), 1, + anon_sym_list, + ACTIONS(6315), 1, + anon_sym_LBRACE, + STATE(3265), 1, + sym_comment, + STATE(7063), 1, + sym_block, + STATE(7329), 1, + sym_returns, + STATE(7481), 1, + sym__multiple_types, + STATE(7666), 1, + sym__type_annotation, + STATE(7738), 1, + sym__one_type, + ACTIONS(6309), 2, + anon_sym_table, + anon_sym_record, + STATE(6434), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6307), 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, + [110850] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(1692), 1, - aux_sym_cell_path_repeat1, - STATE(1889), 1, - sym_path, - STATE(2468), 1, - sym_cell_path, + ACTIONS(1562), 1, + aux_sym_unquoted_token2, + ACTIONS(2170), 1, + anon_sym_LPAREN2, STATE(3266), 1, sym_comment, - ACTIONS(1921), 5, + ACTIONS(2168), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(6307), 12, - ts_builtin_sym_end, + ACTIONS(2172), 38, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338775,13 +340486,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, - ACTIONS(1923), 23, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -338799,24 +340513,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113352] = 6, - ACTIONS(251), 1, + [110910] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6326), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6328), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(2192), 1, + anon_sym_LPAREN2, + ACTIONS(2196), 1, + aux_sym_unquoted_token2, STATE(3267), 1, sym_comment, - ACTIONS(1711), 6, + ACTIONS(2190), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1713), 36, - ts_builtin_sym_end, + ACTIONS(2194), 38, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338828,12 +340540,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_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -338842,7 +340558,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -338852,69 +340567,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113411] = 5, - ACTIONS(251), 1, + [110970] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6330), 1, - anon_sym_QMARK2, - STATE(3268), 1, - sym_comment, - ACTIONS(966), 14, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, + ACTIONS(6277), 1, anon_sym_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, - aux_sym_unquoted_token1, - ACTIONS(968), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [113468] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3269), 1, + STATE(3268), 1, sym_comment, - ACTIONS(976), 14, + STATE(3274), 1, + aux_sym_cell_path_repeat1, + STATE(3428), 1, + sym_path, + ACTIONS(942), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -338924,12 +340592,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(978), 30, + ACTIONS(944), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -338955,127 +340622,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, - [113523] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6332), 1, - anon_sym_EQ2, - ACTIONS(6334), 1, - sym_short_flag_identifier, - STATE(3270), 1, - sym_comment, - ACTIONS(4839), 20, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - 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, - anon_sym_o_GT_GT, - 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(4841), 22, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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_unquoted_token1, - [113582] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6336), 1, - sym_long_flag_identifier, - ACTIONS(6338), 1, - anon_sym_EQ2, - STATE(3271), 1, - sym_comment, - ACTIONS(4862), 19, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - 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_unquoted_token1, - ACTIONS(4860), 23, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_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_token5, - 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, - [113641] = 5, - ACTIONS(251), 1, + [111032] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6301), 1, + ACTIONS(6317), 1, aux_sym__immediate_decimal_token2, - STATE(3272), 1, + STATE(3269), 1, sym_comment, - ACTIONS(1755), 6, + ACTIONS(1766), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, aux_sym_unquoted_token2, - ACTIONS(1757), 37, + ACTIONS(1768), 38, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339087,14 +340649,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_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -339113,24 +340675,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113698] = 6, - ACTIONS(251), 1, + [111090] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6340), 1, - anon_sym_DOT, - ACTIONS(6342), 1, - aux_sym__immediate_decimal_token2, - STATE(3273), 1, + ACTIONS(2075), 1, + anon_sym_LPAREN2, + ACTIONS(2079), 1, + aux_sym_unquoted_token4, + STATE(3270), 1, sym_comment, - ACTIONS(1755), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1757), 36, - ts_builtin_sym_end, + ACTIONS(2077), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339142,45 +340696,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, + ACTIONS(2073), 30, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113757] = 5, - ACTIONS(251), 1, + [111150] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6344), 1, - aux_sym__immediate_decimal_token2, - STATE(3274), 1, + STATE(3271), 1, sym_comment, - ACTIONS(1783), 6, + ACTIONS(1701), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, aux_sym_unquoted_token2, - ACTIONS(1785), 37, + ACTIONS(1703), 39, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339200,6 +340761,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -339218,118 +340781,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113814] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3275), 1, - sym_comment, - ACTIONS(984), 14, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_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, - aux_sym_unquoted_token1, - ACTIONS(986), 30, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [113869] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3276), 1, - sym_comment, - ACTIONS(980), 14, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_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, - aux_sym_unquoted_token1, - ACTIONS(982), 30, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [113924] = 6, + [111206] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2138), 1, + ACTIONS(2075), 1, anon_sym_LPAREN2, - ACTIONS(2142), 1, + ACTIONS(2079), 1, aux_sym_unquoted_token4, - STATE(3277), 1, + STATE(3272), 1, sym_comment, - ACTIONS(2146), 13, + ACTIONS(2083), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339343,7 +340804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(2144), 28, + ACTIONS(2081), 30, anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, @@ -339352,6 +340813,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -339372,15 +340835,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113982] = 5, - ACTIONS(251), 1, + [111266] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6346), 1, - anon_sym_LBRACK2, - STATE(3278), 1, + STATE(3273), 1, sym_comment, - ACTIONS(2230), 14, - anon_sym_LBRACK, + ACTIONS(1693), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1695), 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_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [111322] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6319), 1, + anon_sym_DOT2, + STATE(3428), 1, + sym_path, + STATE(3274), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(935), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -339394,8 +340911,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2234), 28, + ACTIONS(937), 29, sym_raw_string_begin, + anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ, @@ -339423,22 +340941,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, - [114038] = 6, - ACTIONS(251), 1, + [111382] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1814), 1, - anon_sym_LPAREN2, - ACTIONS(1822), 1, - aux_sym_unquoted_token2, - STATE(3279), 1, + STATE(3275), 1, sym_comment, - ACTIONS(2220), 5, + ACTIONS(1766), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2222), 36, + aux_sym_unquoted_token2, + ACTIONS(1768), 39, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339458,6 +340973,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -339466,6 +340983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -339475,22 +340993,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [114096] = 6, - ACTIONS(251), 1, + [111438] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym_unquoted_token2, - ACTIONS(1804), 1, - anon_sym_LPAREN2, - STATE(3280), 1, + STATE(3276), 1, sym_comment, - ACTIONS(1802), 5, + ACTIONS(1792), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1810), 36, + aux_sym_unquoted_token2, + ACTIONS(1794), 39, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339510,6 +341025,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -339518,6 +341035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -339527,135 +341045,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [114154] = 5, - ACTIONS(3), 1, + [111494] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2208), 1, - aux_sym_unquoted_token4, - STATE(3281), 1, - sym_comment, - ACTIONS(1012), 8, - sym_raw_string_begin, + ACTIONS(6303), 1, + anon_sym_COLON, + ACTIONS(6305), 1, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1016), 34, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - 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_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [114210] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6348), 1, - anon_sym_EQ2, - STATE(3282), 1, + ACTIONS(6311), 1, + anon_sym_list, + ACTIONS(6315), 1, + anon_sym_LBRACE, + STATE(3277), 1, sym_comment, - ACTIONS(4986), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(4984), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [114266] = 12, - ACTIONS(251), 1, + STATE(6756), 1, + sym_block, + STATE(7364), 1, + sym_returns, + STATE(7481), 1, + sym__multiple_types, + STATE(7666), 1, + sym__type_annotation, + STATE(7738), 1, + sym__one_type, + ACTIONS(6309), 2, + anon_sym_table, + anon_sym_record, + STATE(6434), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6307), 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, + [111570] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6282), 1, + ACTIONS(6303), 1, + anon_sym_COLON, + ACTIONS(6305), 1, + anon_sym_LBRACK, + ACTIONS(6311), 1, anon_sym_list, - ACTIONS(6350), 1, - sym__newline, - ACTIONS(6352), 1, - anon_sym_RBRACK, - STATE(3283), 1, + ACTIONS(6315), 1, + anon_sym_LBRACE, + STATE(3278), 1, sym_comment, - STATE(3344), 1, - aux_sym_shebang_repeat1, - STATE(3511), 1, - aux_sym__multiple_types_repeat2, - STATE(6745), 1, - sym__one_type, - STATE(7672), 1, + STATE(6758), 1, + sym_block, + STATE(7376), 1, + sym_returns, + STATE(7481), 1, + sym__multiple_types, + STATE(7666), 1, sym__type_annotation, - ACTIONS(6280), 2, + STATE(7738), 1, + sym__one_type, + ACTIONS(6309), 2, anon_sym_table, anon_sym_record, - STATE(6180), 3, + STATE(6434), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6278), 31, + ACTIONS(6307), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -339687,22 +341169,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [114336] = 6, - ACTIONS(251), 1, + [111646] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2174), 1, - anon_sym_LPAREN2, - ACTIONS(2178), 1, - aux_sym_unquoted_token2, - STATE(3284), 1, + STATE(3279), 1, sym_comment, - ACTIONS(2172), 5, + ACTIONS(2073), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2176), 36, + ACTIONS(2077), 40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339717,11 +341195,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -339739,74 +341221,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [114394] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2138), 1, - anon_sym_LPAREN2, - ACTIONS(2142), 1, - aux_sym_unquoted_token4, - STATE(3285), 1, - sym_comment, - ACTIONS(2140), 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(2136), 28, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [114452] = 5, - ACTIONS(251), 1, + [111702] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6342), 1, - aux_sym__immediate_decimal_token2, - STATE(3286), 1, + STATE(3280), 1, sym_comment, - ACTIONS(1755), 6, + ACTIONS(2081), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1757), 36, - ts_builtin_sym_end, + ACTIONS(2083), 40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339818,12 +341244,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -339832,7 +341264,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -339842,224 +341273,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [114508] = 5, - ACTIONS(251), 1, + [111758] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6171), 1, - aux_sym_unquoted_token2, - STATE(3287), 1, - sym_comment, - ACTIONS(1638), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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), 29, - sym_raw_string_begin, + ACTIONS(6303), 1, + anon_sym_COLON, + ACTIONS(6305), 1, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [114564] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6354), 1, - aux_sym__immediate_decimal_token2, - STATE(3288), 1, + ACTIONS(6311), 1, + anon_sym_list, + ACTIONS(6315), 1, + anon_sym_LBRACE, + STATE(3281), 1, sym_comment, - ACTIONS(1783), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1785), 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [114620] = 4, - ACTIONS(251), 1, + STATE(6963), 1, + sym_block, + STATE(7409), 1, + sym_returns, + STATE(7481), 1, + sym__multiple_types, + STATE(7666), 1, + sym__type_annotation, + STATE(7738), 1, + sym__one_type, + ACTIONS(6309), 2, + anon_sym_table, + anon_sym_record, + STATE(6434), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6307), 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, + [111834] = 14, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3289), 1, - sym_comment, - ACTIONS(992), 14, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_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, - aux_sym_unquoted_token1, - ACTIONS(994), 29, - sym_raw_string_begin, + ACTIONS(6303), 1, + anon_sym_COLON, + ACTIONS(6305), 1, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [114674] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3290), 1, + ACTIONS(6311), 1, + anon_sym_list, + ACTIONS(6315), 1, + anon_sym_LBRACE, + STATE(3282), 1, sym_comment, - ACTIONS(988), 14, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_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, - aux_sym_unquoted_token1, - ACTIONS(990), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [114728] = 6, - ACTIONS(251), 1, + STATE(7028), 1, + sym_block, + STATE(7433), 1, + sym_returns, + STATE(7481), 1, + sym__multiple_types, + STATE(7666), 1, + sym__type_annotation, + STATE(7738), 1, + sym__one_type, + ACTIONS(6309), 2, + anon_sym_table, + anon_sym_record, + STATE(6434), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6307), 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, + [111910] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1814), 1, + ACTIONS(2061), 1, anon_sym_LPAREN2, - ACTIONS(1822), 1, - aux_sym_unquoted_token2, - STATE(3291), 1, + ACTIONS(2063), 1, + aux_sym_unquoted_token4, + STATE(3283), 1, sym_comment, - ACTIONS(1812), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1820), 36, + ACTIONS(998), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340072,42 +341419,178 @@ static 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(1002), 30, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [114786] = 4, - ACTIONS(251), 1, + [111970] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6303), 1, + anon_sym_COLON, + ACTIONS(6305), 1, + anon_sym_LBRACK, + ACTIONS(6311), 1, + anon_sym_list, + ACTIONS(6315), 1, + anon_sym_LBRACE, + STATE(3284), 1, + sym_comment, + STATE(7216), 1, + sym_block, + STATE(7417), 1, + sym_returns, + STATE(7481), 1, + sym__multiple_types, + STATE(7666), 1, + sym__type_annotation, + STATE(7738), 1, + sym__one_type, + ACTIONS(6309), 2, + anon_sym_table, + anon_sym_record, + STATE(6434), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6307), 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, + [112046] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6303), 1, + anon_sym_COLON, + ACTIONS(6305), 1, + anon_sym_LBRACK, + ACTIONS(6311), 1, + anon_sym_list, + ACTIONS(6315), 1, + anon_sym_LBRACE, + STATE(3285), 1, + sym_comment, + STATE(7223), 1, + sym_block, + STATE(7420), 1, + sym_returns, + STATE(7481), 1, + sym__multiple_types, + STATE(7666), 1, + sym__type_annotation, + STATE(7738), 1, + sym__one_type, + ACTIONS(6309), 2, + anon_sym_table, + anon_sym_record, + STATE(6434), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6307), 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, + [112122] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3292), 1, + ACTIONS(6285), 1, + aux_sym__immediate_decimal_token2, + STATE(3286), 1, sym_comment, - ACTIONS(2136), 5, + ACTIONS(1701), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2140), 38, + aux_sym_unquoted_token2, + ACTIONS(1703), 38, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340119,16 +341602,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -340137,6 +341618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -340146,18 +341628,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [114840] = 4, - ACTIONS(251), 1, + [112180] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3293), 1, + ACTIONS(1562), 1, + aux_sym_unquoted_token2, + ACTIONS(2170), 1, + anon_sym_LPAREN2, + STATE(3287), 1, sym_comment, - ACTIONS(2144), 5, + ACTIONS(2168), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2146), 38, + ACTIONS(2172), 37, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340169,16 +341656,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -340196,19 +341681,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [114894] = 4, - ACTIONS(251), 1, + [112239] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3294), 1, + ACTIONS(2192), 1, + anon_sym_LPAREN2, + ACTIONS(2196), 1, + aux_sym_unquoted_token2, + STATE(3288), 1, sym_comment, - ACTIONS(1755), 6, + ACTIONS(2190), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1757), 37, + ACTIONS(2194), 37, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340220,14 +341709,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_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -340236,7 +341725,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -340246,33 +341734,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [114948] = 5, - ACTIONS(3), 1, + [112298] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2134), 1, - aux_sym_unquoted_token4, - STATE(3295), 1, + STATE(3289), 1, sym_comment, - ACTIONS(2132), 8, + ACTIONS(946), 14, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_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, + aux_sym_unquoted_token1, + ACTIONS(948), 30, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2128), 34, - anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_DOT_DOT, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -340280,14 +341772,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token5, aux_sym__val_number_token6, 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, @@ -340296,23 +341785,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, - [115004] = 6, - ACTIONS(251), 1, + [112353] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1540), 1, + ACTIONS(1457), 1, aux_sym_unquoted_token2, - ACTIONS(2226), 1, + ACTIONS(1808), 1, anon_sym_LPAREN2, - STATE(3296), 1, + STATE(3290), 1, sym_comment, - ACTIONS(2224), 5, + ACTIONS(1806), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2228), 36, + ACTIONS(1814), 37, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340324,14 +341813,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_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -340349,33 +341838,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [115062] = 5, - ACTIONS(3), 1, + [112412] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2142), 1, - aux_sym_unquoted_token4, - STATE(3297), 1, + STATE(3291), 1, sym_comment, - ACTIONS(2140), 8, + ACTIONS(956), 14, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_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, + aux_sym_unquoted_token1, + ACTIONS(958), 30, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2136), 34, - anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_DOT_DOT, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -340383,6 +341876,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token5, aux_sym__val_number_token6, 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, + [112467] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3292), 1, + sym_comment, + ACTIONS(960), 14, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -340391,6 +341908,30 @@ 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(962), 30, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, @@ -340399,20 +341940,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, - [115118] = 4, - ACTIONS(251), 1, + [112522] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3298), 1, + STATE(3293), 1, sym_comment, - ACTIONS(1711), 6, + ACTIONS(1701), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, aux_sym_unquoted_token2, - ACTIONS(1713), 37, + ACTIONS(1703), 38, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340424,14 +341965,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_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -340450,67 +341991,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [115172] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2142), 1, - aux_sym_unquoted_token4, - STATE(3299), 1, - sym_comment, - ACTIONS(2146), 8, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2144), 34, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - 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_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [115228] = 6, + [112577] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2206), 1, - anon_sym_LPAREN2, - ACTIONS(2208), 1, - aux_sym_unquoted_token4, - STATE(3300), 1, + STATE(3294), 1, sym_comment, - ACTIONS(1012), 13, + ACTIONS(2087), 13, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340522,9 +342009,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_RPAREN, - anon_sym_RBRACE, - ACTIONS(1016), 28, + anon_sym_LPAREN2, + ACTIONS(2085), 31, anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, @@ -340533,6 +342019,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -340553,19 +342041,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [115286] = 4, - ACTIONS(251), 1, + aux_sym_unquoted_token4, + [112632] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3301), 1, + ACTIONS(2061), 1, + anon_sym_LPAREN2, + ACTIONS(2063), 1, + aux_sym_unquoted_token4, + STATE(3295), 1, sym_comment, - ACTIONS(1783), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1785), 37, + ACTIONS(998), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340577,45 +342064,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_RPAREN, + ACTIONS(1002), 30, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [115340] = 4, - ACTIONS(251), 1, + [112691] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3302), 1, + ACTIONS(2067), 1, + anon_sym_LPAREN2, + ACTIONS(2071), 1, + aux_sym_unquoted_token4, + STATE(3296), 1, sym_comment, - ACTIONS(1835), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1837), 37, + ACTIONS(2069), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340627,93 +342117,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_RPAREN, + ACTIONS(2065), 30, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [115394] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6356), 1, - anon_sym_EQ2, - STATE(3303), 1, - sym_comment, - ACTIONS(4972), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(4970), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [115450] = 6, + [112750] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2130), 1, + ACTIONS(2075), 1, anon_sym_LPAREN2, - ACTIONS(2134), 1, + ACTIONS(2079), 1, aux_sym_unquoted_token4, - STATE(3304), 1, + STATE(3297), 1, sym_comment, - ACTIONS(2132), 13, + ACTIONS(2077), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340725,9 +342170,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_RBRACE, - ACTIONS(2128), 28, + ACTIONS(2073), 30, anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, @@ -340736,6 +342179,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -340756,62 +342201,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [115508] = 4, + [112809] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3305), 1, - sym_comment, - ACTIONS(2150), 8, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2148), 35, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - 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_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, + ACTIONS(2075), 1, + anon_sym_LPAREN2, + ACTIONS(2079), 1, aux_sym_unquoted_token4, - [115562] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3306), 1, + STATE(3298), 1, sym_comment, - ACTIONS(2150), 14, + ACTIONS(2083), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340823,10 +342223,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_RBRACE, - anon_sym_LPAREN2, - ACTIONS(2148), 29, + ACTIONS(2081), 30, anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, @@ -340835,6 +342232,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -340855,168 +342254,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - aux_sym_unquoted_token4, - [115616] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3307), 1, - sym_comment, - ACTIONS(996), 14, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_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, - aux_sym_unquoted_token1, - ACTIONS(998), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [115670] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3308), 1, - sym_comment, - ACTIONS(5059), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(5057), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [115723] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3309), 1, - sym_comment, - ACTIONS(1969), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(1971), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [115776] = 4, - ACTIONS(251), 1, + [112868] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3310), 1, + ACTIONS(1818), 1, + anon_sym_LPAREN2, + ACTIONS(1826), 1, + aux_sym_unquoted_token2, + STATE(3299), 1, sym_comment, - ACTIONS(1835), 6, + ACTIONS(2164), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1837), 36, + ACTIONS(2166), 37, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -341035,6 +342288,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -341043,7 +342298,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -341053,212 +342307,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [115829] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3311), 1, - sym_comment, - ACTIONS(2342), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(2344), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [115882] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3312), 1, - sym_comment, - ACTIONS(980), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(982), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [115935] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3313), 1, - sym_comment, - ACTIONS(2501), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(2503), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [115988] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3314), 1, - sym_comment, - ACTIONS(5037), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(5035), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [116041] = 6, - ACTIONS(3), 1, + [112927] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2138), 1, + ACTIONS(1818), 1, anon_sym_LPAREN2, - ACTIONS(2142), 1, - aux_sym_unquoted_token4, - STATE(3315), 1, + ACTIONS(1826), 1, + aux_sym_unquoted_token2, + STATE(3300), 1, sym_comment, - ACTIONS(2140), 12, + ACTIONS(1816), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1824), 37, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -341271,339 +342335,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, - ACTIONS(2136), 28, - anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [116098] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3316), 1, - sym_comment, - ACTIONS(1016), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(1012), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [116151] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3317), 1, - sym_comment, - ACTIONS(5041), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [116204] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3318), 1, - sym_comment, - ACTIONS(2328), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(2330), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [116257] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3319), 1, - sym_comment, - ACTIONS(4994), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(4992), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [116310] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3320), 1, - sym_comment, - ACTIONS(6360), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(6358), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [116363] = 4, - ACTIONS(251), 1, + [112986] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3321), 1, + STATE(3301), 1, sym_comment, - ACTIONS(976), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [116416] = 4, - ACTIONS(251), 1, + ACTIONS(1693), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1695), 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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [113041] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3322), 1, + STATE(3302), 1, sym_comment, - ACTIONS(2366), 13, + ACTIONS(964), 14, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -341613,11 +342431,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2368), 29, + ACTIONS(966), 30, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -341643,42 +342462,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, - [116469] = 4, - ACTIONS(251), 1, + [113096] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3323), 1, + STATE(3303), 1, sym_comment, - ACTIONS(2362), 13, - anon_sym_DOLLAR, + ACTIONS(1766), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1768), 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_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(2364), 29, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [113151] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4706), 1, + aux_sym_unquoted_token2, + STATE(3304), 1, + sym_comment, + ACTIONS(1639), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1651), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_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_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [113208] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6322), 1, + anon_sym_EQ2, + ACTIONS(6324), 1, + sym_short_flag_identifier, + STATE(3305), 1, + sym_comment, + ACTIONS(4861), 20, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, @@ -341692,65 +342595,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, - [116522] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3324), 1, - sym_comment, - ACTIONS(1953), 13, + ACTIONS(4863), 22, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH2, anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(1955), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + 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_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, 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, - [116575] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3325), 1, - sym_comment, - ACTIONS(5055), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -341760,95 +342618,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5053), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [116628] = 4, - ACTIONS(251), 1, + [113267] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3326), 1, + STATE(3306), 1, + sym_comment, + ACTIONS(1792), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1794), 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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [113322] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6326), 1, + sym_long_flag_identifier, + ACTIONS(6328), 1, + anon_sym_EQ2, + STATE(3307), 1, sym_comment, - ACTIONS(2378), 13, + ACTIONS(4940), 19, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(2380), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, 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, - [116681] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3327), 1, - sym_comment, - ACTIONS(2382), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -341858,23 +342698,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2384), 29, + ACTIONS(4938), 23, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, @@ -341888,16 +342722,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, - [116734] = 4, - ACTIONS(251), 1, + [113381] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3328), 1, + ACTIONS(6330), 1, + anon_sym_QMARK2, + STATE(3308), 1, sym_comment, - ACTIONS(2414), 13, + ACTIONS(950), 14, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -341907,7 +342744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2416), 29, + ACTIONS(952), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -341937,16 +342774,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, - [116787] = 4, - ACTIONS(251), 1, + [113438] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3329), 1, + ACTIONS(6332), 1, + anon_sym_QMARK2, + STATE(3309), 1, sym_comment, - ACTIONS(2320), 13, + ACTIONS(968), 14, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -341956,7 +342796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2322), 29, + ACTIONS(970), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -341986,24 +342826,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, - [116840] = 6, - ACTIONS(251), 1, + [113495] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym_unquoted_token2, - ACTIONS(1804), 1, - anon_sym_LPAREN2, - STATE(3330), 1, + ACTIONS(5371), 1, + sym__newline, + STATE(3310), 1, sym_comment, - ACTIONS(1802), 5, + STATE(3371), 1, + aux_sym_shebang_repeat1, + ACTIONS(6334), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5285), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1810), 35, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5283), 34, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -342014,12 +342855,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_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -342028,8 +342872,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -342037,12 +342879,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [116897] = 4, - ACTIONS(251), 1, + [113555] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3331), 1, + ACTIONS(6336), 1, + anon_sym_EQ2, + STATE(3311), 1, sym_comment, - ACTIONS(2332), 13, + ACTIONS(5062), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -342056,7 +342900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2334), 29, + ACTIONS(5060), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -342086,12 +342930,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, - [116950] = 4, - ACTIONS(251), 1, + [113611] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3332), 1, + ACTIONS(6206), 1, + aux_sym_unquoted_token2, + STATE(3312), 1, sym_comment, - ACTIONS(984), 13, + ACTIONS(1639), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -342105,7 +342951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(986), 29, + ACTIONS(1651), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -342135,35 +342981,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, - [117003] = 4, - ACTIONS(251), 1, + [113667] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3333), 1, + ACTIONS(2071), 1, + aux_sym_unquoted_token4, + STATE(3313), 1, sym_comment, - ACTIONS(1941), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(1943), 29, + ACTIONS(2069), 8, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2065), 34, + anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -342171,29 +343015,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token5, aux_sym__val_number_token6, 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, - [117056] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3334), 1, - sym_comment, - ACTIONS(2446), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -342202,29 +343023,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(2448), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, @@ -342233,35 +343031,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [117109] = 4, - ACTIONS(251), 1, + aux_sym_unquoted_token1, + [113723] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3335), 1, + ACTIONS(2079), 1, + aux_sym_unquoted_token4, + STATE(3314), 1, sym_comment, - ACTIONS(2366), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(2368), 29, + ACTIONS(2077), 8, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2073), 34, + anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -342269,11 +343066,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token5, aux_sym__val_number_token6, 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, @@ -342282,35 +343082,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [117162] = 4, - ACTIONS(251), 1, + aux_sym_unquoted_token1, + [113779] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3336), 1, + ACTIONS(2079), 1, + aux_sym_unquoted_token4, + STATE(3315), 1, sym_comment, - ACTIONS(1855), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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), 29, + ACTIONS(2083), 8, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2081), 34, + anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -342318,11 +343117,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token5, aux_sym__val_number_token6, 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, @@ -342331,35 +343133,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, - [117215] = 4, - ACTIONS(251), 1, + aux_sym_unquoted_token1, + [113835] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3337), 1, + ACTIONS(4758), 1, + aux_sym_unquoted_token2, + STATE(3316), 1, sym_comment, - ACTIONS(1937), 13, - anon_sym_DOLLAR, + ACTIONS(1639), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1651), 37, + 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_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(1939), 29, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [113891] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3317), 1, + sym_comment, + ACTIONS(2087), 8, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2085), 35, + anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -342367,11 +343217,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token5, aux_sym__val_number_token6, 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, @@ -342380,12 +343233,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, - [117268] = 4, - ACTIONS(251), 1, + aux_sym_unquoted_token1, + aux_sym_unquoted_token4, + [113945] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3338), 1, + ACTIONS(6338), 1, + anon_sym_EQ2, + STATE(3318), 1, sym_comment, - ACTIONS(5097), 13, + ACTIONS(5052), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -342399,7 +343256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5095), 29, + ACTIONS(5050), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -342429,35 +343286,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, - [117321] = 4, - ACTIONS(251), 1, + [114001] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3339), 1, + STATE(3319), 1, sym_comment, - ACTIONS(2489), 13, - anon_sym_DOLLAR, + ACTIONS(2385), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5084), 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(2387), 25, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(2491), 29, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [114057] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2063), 1, + aux_sym_unquoted_token4, + STATE(3320), 1, + sym_comment, + ACTIONS(998), 8, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1002), 34, + anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -342465,11 +343371,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token5, aux_sym__val_number_token6, 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, @@ -342478,18 +343387,513 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [117374] = 6, - ACTIONS(3), 1, + aux_sym_unquoted_token1, + [114113] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5325), 1, + sym__newline, + ACTIONS(6340), 1, + anon_sym_DASH2, + ACTIONS(6346), 1, + anon_sym_PLUS2, + STATE(3321), 1, + sym_comment, + STATE(3333), 1, + aux_sym_shebang_repeat1, + ACTIONS(5299), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6334), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6342), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6344), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6348), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5297), 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, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [114183] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5325), 1, + sym__newline, + STATE(3322), 1, + sym_comment, + STATE(3335), 1, + aux_sym_shebang_repeat1, + ACTIONS(6334), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6342), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6344), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5299), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5297), 32, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [114247] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5325), 1, + sym__newline, + ACTIONS(6340), 1, + anon_sym_DASH2, + ACTIONS(6346), 1, + anon_sym_PLUS2, + STATE(3323), 1, + sym_comment, + STATE(3337), 1, + aux_sym_shebang_repeat1, + ACTIONS(6334), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6342), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6344), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6348), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6350), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6352), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5297), 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, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [114319] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5325), 1, + sym__newline, + STATE(3324), 1, + sym_comment, + STATE(3339), 1, + aux_sym_shebang_repeat1, + ACTIONS(6334), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5299), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5297), 34, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [114379] = 18, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5325), 1, + sym__newline, + ACTIONS(6340), 1, + anon_sym_DASH2, + ACTIONS(6346), 1, + anon_sym_PLUS2, + ACTIONS(6358), 1, + anon_sym_bit_DASHand2, + ACTIONS(6360), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6362), 1, + anon_sym_bit_DASHor2, + STATE(3325), 1, + sym_comment, + STATE(3340), 1, + aux_sym_shebang_repeat1, + ACTIONS(6334), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6342), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6344), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6348), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6350), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6356), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6352), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6354), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5297), 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, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [114461] = 19, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5325), 1, + sym__newline, + ACTIONS(6340), 1, + anon_sym_DASH2, + ACTIONS(6346), 1, + anon_sym_PLUS2, + ACTIONS(6358), 1, + anon_sym_bit_DASHand2, + ACTIONS(6360), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6362), 1, + anon_sym_bit_DASHor2, + ACTIONS(6364), 1, + anon_sym_and2, + STATE(3326), 1, + sym_comment, + STATE(3342), 1, + aux_sym_shebang_repeat1, + ACTIONS(6334), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6342), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6344), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6348), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6350), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6356), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6352), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6354), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5297), 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, + anon_sym_xor2, + anon_sym_or2, + [114545] = 20, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(6340), 1, + anon_sym_DASH2, + ACTIONS(6346), 1, + anon_sym_PLUS2, + ACTIONS(6358), 1, + anon_sym_bit_DASHand2, + ACTIONS(6360), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6362), 1, + anon_sym_bit_DASHor2, + ACTIONS(6364), 1, + anon_sym_and2, + ACTIONS(6366), 1, + anon_sym_xor2, + STATE(3327), 1, + sym_comment, + STATE(3344), 1, + aux_sym_shebang_repeat1, + ACTIONS(6334), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6342), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6344), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6348), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6350), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6356), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6352), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6354), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5297), 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_or2, + [114631] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5325), 1, + sym__newline, + ACTIONS(6340), 1, + anon_sym_DASH2, + ACTIONS(6346), 1, + anon_sym_PLUS2, + STATE(3328), 1, + sym_comment, + STATE(3346), 1, + aux_sym_shebang_repeat1, + ACTIONS(6334), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6342), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6344), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6348), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6350), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6352), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6354), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5297), 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [114705] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2138), 1, - anon_sym_LPAREN2, - ACTIONS(2142), 1, - aux_sym_unquoted_token4, - STATE(3340), 1, - sym_comment, - ACTIONS(2146), 12, - ts_builtin_sym_end, + ACTIONS(5325), 1, sym__newline, + ACTIONS(6340), 1, + anon_sym_DASH2, + ACTIONS(6346), 1, + anon_sym_PLUS2, + STATE(3329), 1, + sym_comment, + STATE(3348), 1, + aux_sym_shebang_repeat1, + ACTIONS(5299), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6334), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6342), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6344), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5297), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -342500,95 +343904,240 @@ static const 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(2144), 28, - anon_sym_GT2, - anon_sym_DASH2, + anon_sym_RPAREN, anon_sym_in2, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [114773] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5325), 1, + sym__newline, + ACTIONS(6340), 1, + anon_sym_DASH2, + ACTIONS(6346), 1, + anon_sym_PLUS2, + STATE(3330), 1, + sym_comment, + STATE(3350), 1, + aux_sym_shebang_repeat1, + ACTIONS(6334), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6342), 2, + anon_sym_STAR2, anon_sym_SLASH2, + ACTIONS(6344), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, + ACTIONS(6348), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, + ACTIONS(6350), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6356), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6352), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6354), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5297), 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, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117431] = 4, - ACTIONS(251), 1, + [114849] = 16, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3341), 1, + ACTIONS(5325), 1, + sym__newline, + ACTIONS(6340), 1, + anon_sym_DASH2, + ACTIONS(6346), 1, + anon_sym_PLUS2, + ACTIONS(6358), 1, + anon_sym_bit_DASHand2, + STATE(3331), 1, sym_comment, - ACTIONS(5101), 13, - anon_sym_DOLLAR, + STATE(3352), 1, + aux_sym_shebang_repeat1, + ACTIONS(6334), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6342), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6344), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6348), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6350), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6356), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6352), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6354), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5297), 16, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [114927] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5325), 1, + sym__newline, + ACTIONS(6340), 1, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(5099), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [117484] = 6, - ACTIONS(3), 1, + ACTIONS(6346), 1, + anon_sym_PLUS2, + ACTIONS(6358), 1, + anon_sym_bit_DASHand2, + ACTIONS(6360), 1, + anon_sym_bit_DASHxor2, + STATE(3332), 1, + sym_comment, + STATE(3354), 1, + aux_sym_shebang_repeat1, + ACTIONS(6334), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6342), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6344), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6348), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6350), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6356), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6352), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6354), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5297), 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, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [115007] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2130), 1, - anon_sym_LPAREN2, - ACTIONS(2134), 1, - aux_sym_unquoted_token4, - STATE(3342), 1, + ACTIONS(6368), 1, + anon_sym_DASH2, + ACTIONS(6376), 1, + anon_sym_PLUS2, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(3333), 1, sym_comment, - ACTIONS(2132), 12, - ts_builtin_sym_end, + ACTIONS(5281), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6370), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6372), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6374), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6378), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5279), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342600,204 +344149,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, - ACTIONS(2128), 28, - anon_sym_GT2, - anon_sym_DASH2, + anon_sym_RPAREN, anon_sym_in2, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117541] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3343), 1, - sym_comment, - ACTIONS(2336), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(2338), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [117594] = 11, - ACTIONS(251), 1, + [115075] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6282), 1, - anon_sym_list, - ACTIONS(6350), 1, + ACTIONS(5371), 1, sym__newline, - STATE(3344), 1, - sym_comment, - STATE(3522), 1, - aux_sym__multiple_types_repeat2, - STATE(3604), 1, - aux_sym_shebang_repeat1, - STATE(7019), 1, - sym__one_type, - STATE(7672), 1, - sym__type_annotation, - ACTIONS(6280), 2, - anon_sym_table, - anon_sym_record, - STATE(6180), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6278), 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, - [117661] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3345), 1, - sym_comment, - ACTIONS(2324), 13, - anon_sym_DOLLAR, + ACTIONS(6340), 1, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(2326), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [117714] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3346), 1, + ACTIONS(6346), 1, + anon_sym_PLUS2, + STATE(3334), 1, sym_comment, - ACTIONS(1755), 6, + STATE(3368), 1, + aux_sym_shebang_repeat1, + ACTIONS(5285), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6334), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6342), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1757), 36, - ts_builtin_sym_end, - sym__newline, + ACTIONS(6344), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6348), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5283), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -342808,12 +344207,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_DASH2, + anon_sym_RPAREN, anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -342822,72 +344223,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117767] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3347), 1, - sym_comment, - ACTIONS(2478), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(2480), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [117820] = 4, - ACTIONS(3), 1, + [115145] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3348), 1, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(3335), 1, sym_comment, - ACTIONS(2150), 13, - ts_builtin_sym_end, + ACTIONS(6370), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6372), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6374), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5281), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5279), 33, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342899,153 +344258,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_LPAREN2, - ACTIONS(2148), 29, - anon_sym_GT2, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - aux_sym_unquoted_token4, - [117873] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3349), 1, - sym_comment, - ACTIONS(4962), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(4960), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [117926] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3350), 1, - sym_comment, - ACTIONS(5081), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(5079), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [117979] = 6, - ACTIONS(251), 1, + [115207] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1814), 1, - anon_sym_LPAREN2, - ACTIONS(1822), 1, - aux_sym_unquoted_token2, - STATE(3351), 1, + ACTIONS(5371), 1, + sym__newline, + STATE(3336), 1, sym_comment, - ACTIONS(2220), 5, - anon_sym_GT2, + STATE(3369), 1, + aux_sym_shebang_repeat1, + ACTIONS(6334), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6342), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(6344), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5285), 3, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2222), 35, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5283), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -343056,12 +344313,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_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -343070,32 +344330,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [118036] = 6, - ACTIONS(251), 1, + [115271] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1814), 1, - anon_sym_LPAREN2, - ACTIONS(1822), 1, - aux_sym_unquoted_token2, - STATE(3352), 1, + ACTIONS(6368), 1, + anon_sym_DASH2, + ACTIONS(6376), 1, + anon_sym_PLUS2, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(3337), 1, sym_comment, - ACTIONS(1812), 5, - anon_sym_GT2, + ACTIONS(6370), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1820), 35, - ts_builtin_sym_end, + ACTIONS(6372), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6374), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6378), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6380), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6382), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5279), 26, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -343107,239 +344378,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_DASH2, + anon_sym_RPAREN, anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [115341] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5371), 1, + sym__newline, + ACTIONS(6340), 1, + anon_sym_DASH2, + ACTIONS(6346), 1, + anon_sym_PLUS2, + STATE(3338), 1, + sym_comment, + STATE(3370), 1, + aux_sym_shebang_repeat1, + ACTIONS(6334), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6342), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6344), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6348), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, + ACTIONS(6350), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6352), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5283), 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, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [118093] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3353), 1, - sym_comment, - ACTIONS(2452), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(2454), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [118146] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3354), 1, - sym_comment, - ACTIONS(2456), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(2458), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [118199] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3355), 1, - sym_comment, - ACTIONS(2460), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(2462), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [118252] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3356), 1, - sym_comment, - ACTIONS(5069), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(5067), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [118305] = 5, - ACTIONS(251), 1, + [115413] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4780), 1, - aux_sym_unquoted_token2, - STATE(3357), 1, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(3339), 1, sym_comment, - ACTIONS(1638), 5, + ACTIONS(6372), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5281), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1650), 36, + ACTIONS(5279), 35, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -343354,11 +344483,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -343367,8 +344497,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -343376,119 +344504,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [118360] = 4, - ACTIONS(251), 1, + [115471] = 17, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3358), 1, - sym_comment, - ACTIONS(2346), 13, - anon_sym_DOLLAR, + ACTIONS(6368), 1, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(2348), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [118413] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3359), 1, + ACTIONS(6376), 1, + anon_sym_PLUS2, + ACTIONS(6388), 1, + anon_sym_bit_DASHand2, + ACTIONS(6390), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6392), 1, + anon_sym_bit_DASHor2, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(3340), 1, sym_comment, - ACTIONS(5077), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(5075), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [118466] = 4, - ACTIONS(251), 1, + ACTIONS(6370), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6372), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6374), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6378), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6380), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6386), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6382), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6384), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5279), 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_and2, + anon_sym_xor2, + anon_sym_or2, + [115551] = 18, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3360), 1, + ACTIONS(5371), 1, + sym__newline, + ACTIONS(6340), 1, + anon_sym_DASH2, + ACTIONS(6346), 1, + anon_sym_PLUS2, + ACTIONS(6358), 1, + anon_sym_bit_DASHand2, + ACTIONS(6360), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6362), 1, + anon_sym_bit_DASHor2, + STATE(3341), 1, sym_comment, - ACTIONS(1711), 6, - anon_sym_GT2, + STATE(3372), 1, + aux_sym_shebang_repeat1, + ACTIONS(6334), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6342), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1713), 36, - ts_builtin_sym_end, - sym__newline, + ACTIONS(6344), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6348), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6350), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6356), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6352), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6354), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5283), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -343499,47 +344627,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_DASH2, - anon_sym_in2, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, + [115633] = 18, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6368), 1, + anon_sym_DASH2, + ACTIONS(6376), 1, + anon_sym_PLUS2, + ACTIONS(6388), 1, + anon_sym_bit_DASHand2, + ACTIONS(6390), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6392), 1, + anon_sym_bit_DASHor2, + ACTIONS(6394), 1, + anon_sym_and2, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(3342), 1, + sym_comment, + ACTIONS(6370), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6372), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6374), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6378), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [118519] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1540), 1, - aux_sym_unquoted_token2, - ACTIONS(2226), 1, - anon_sym_LPAREN2, - STATE(3361), 1, - sym_comment, - ACTIONS(2224), 5, + ACTIONS(6380), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2228), 35, - ts_builtin_sym_end, + ACTIONS(6386), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6382), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6384), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5279), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -343551,193 +344692,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, + anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + [115715] = 19, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5371), 1, + sym__newline, + ACTIONS(6340), 1, + anon_sym_DASH2, + ACTIONS(6346), 1, + anon_sym_PLUS2, + ACTIONS(6358), 1, + anon_sym_bit_DASHand2, + ACTIONS(6360), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6362), 1, + anon_sym_bit_DASHor2, + ACTIONS(6364), 1, + anon_sym_and2, + STATE(3343), 1, + sym_comment, + STATE(3373), 1, + aux_sym_shebang_repeat1, + ACTIONS(6334), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6342), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6344), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6348), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, + ACTIONS(6350), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6356), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6352), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6354), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5283), 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, + anon_sym_xor2, + anon_sym_or2, + [115799] = 19, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6368), 1, + anon_sym_DASH2, + ACTIONS(6376), 1, + anon_sym_PLUS2, + ACTIONS(6388), 1, anon_sym_bit_DASHand2, + ACTIONS(6390), 1, anon_sym_bit_DASHxor2, + ACTIONS(6392), 1, anon_sym_bit_DASHor2, - [118576] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3362), 1, - sym_comment, - ACTIONS(1905), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(1907), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [118629] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3363), 1, - sym_comment, - ACTIONS(2468), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(2470), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [118682] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3364), 1, - sym_comment, - ACTIONS(1949), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(1951), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [118735] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2174), 1, - anon_sym_LPAREN2, - ACTIONS(2178), 1, - aux_sym_unquoted_token2, - STATE(3365), 1, + ACTIONS(6394), 1, + anon_sym_and2, + ACTIONS(6396), 1, + anon_sym_xor2, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(3344), 1, sym_comment, - ACTIONS(2172), 5, - anon_sym_GT2, + ACTIONS(6370), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2176), 35, - ts_builtin_sym_end, + ACTIONS(6372), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6374), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6378), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6380), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6386), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6382), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6384), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5279), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -343749,89 +344823,113 @@ static const uint16_t 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_or2, + [115883] = 20, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(6340), 1, anon_sym_DASH2, - anon_sym_in2, + ACTIONS(6346), 1, + anon_sym_PLUS2, + ACTIONS(6358), 1, + anon_sym_bit_DASHand2, + ACTIONS(6360), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6362), 1, + anon_sym_bit_DASHor2, + ACTIONS(6364), 1, anon_sym_and2, + ACTIONS(6366), 1, anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, + STATE(3345), 1, + sym_comment, + STATE(3433), 1, + aux_sym_shebang_repeat1, + ACTIONS(6334), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6342), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6344), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6348), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6350), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6356), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6352), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + ACTIONS(6354), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5283), 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_or2, + [115969] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6368), 1, + anon_sym_DASH2, + ACTIONS(6376), 1, + anon_sym_PLUS2, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(3346), 1, + sym_comment, + ACTIONS(6370), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6372), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6374), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6378), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [118792] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3366), 1, - sym_comment, - ACTIONS(2350), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(2352), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [118845] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2206), 1, - anon_sym_LPAREN2, - ACTIONS(2208), 1, - aux_sym_unquoted_token4, - STATE(3367), 1, - sym_comment, - ACTIONS(1012), 12, - ts_builtin_sym_end, + ACTIONS(6380), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6382), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6384), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5279), 20, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -343843,343 +344941,99 @@ static const 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(1016), 28, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_STAR2, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [116041] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5371), 1, + sym__newline, + ACTIONS(6340), 1, + anon_sym_DASH2, + ACTIONS(6346), 1, + anon_sym_PLUS2, + STATE(3347), 1, + sym_comment, + STATE(3375), 1, + aux_sym_shebang_repeat1, + ACTIONS(6334), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6342), 2, + anon_sym_STAR2, anon_sym_SLASH2, + ACTIONS(6344), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, + ACTIONS(6348), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, + ACTIONS(6350), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6352), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6354), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5283), 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [118902] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3368), 1, - sym_comment, - ACTIONS(2354), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(2356), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [118955] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3369), 1, - sym_comment, - ACTIONS(1983), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(1985), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [119008] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3370), 1, - sym_comment, - ACTIONS(1917), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(1919), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [119061] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3371), 1, - sym_comment, - ACTIONS(972), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(974), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [119114] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3372), 1, - sym_comment, - ACTIONS(2370), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(2372), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [119167] = 4, - ACTIONS(251), 1, + [116115] = 10, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3373), 1, - sym_comment, - ACTIONS(2374), 13, - anon_sym_DOLLAR, + ACTIONS(6368), 1, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(2376), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [119220] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3374), 1, + ACTIONS(6376), 1, + anon_sym_PLUS2, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(3348), 1, sym_comment, - ACTIONS(1783), 6, + ACTIONS(5281), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6370), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1785), 36, - ts_builtin_sym_end, + ACTIONS(6372), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6374), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5279), 32, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -344191,12 +345045,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_DASH2, + anon_sym_RPAREN, anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -344205,310 +345061,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [119273] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3375), 1, - sym_comment, - ACTIONS(1965), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(1967), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [119326] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3376), 1, - sym_comment, - ACTIONS(1638), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [119379] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3377), 1, - sym_comment, - ACTIONS(1000), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(1002), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [119432] = 4, - ACTIONS(251), 1, + [116181] = 11, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3378), 1, - sym_comment, - ACTIONS(2358), 13, - anon_sym_DOLLAR, + ACTIONS(5371), 1, + sym__newline, + ACTIONS(6340), 1, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(2360), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [119485] = 10, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6276), 1, - anon_sym_LBRACK, - ACTIONS(6282), 1, - anon_sym_list, - STATE(3379), 1, + ACTIONS(6346), 1, + anon_sym_PLUS2, + STATE(3349), 1, sym_comment, - STATE(7536), 1, - sym__type_annotation, - STATE(7680), 1, - sym__multiple_types, - STATE(7869), 1, - sym__one_type, - ACTIONS(6280), 2, - anon_sym_table, - anon_sym_record, - STATE(6180), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6278), 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, - [119549] = 16, - ACTIONS(251), 1, + STATE(3376), 1, + aux_sym_shebang_repeat1, + ACTIONS(5285), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6334), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6342), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6344), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5283), 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, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [116249] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5460), 1, - sym__newline, - ACTIONS(6364), 1, + ACTIONS(6368), 1, anon_sym_DASH2, - ACTIONS(6378), 1, + ACTIONS(6376), 1, anon_sym_PLUS2, - ACTIONS(6382), 1, - anon_sym_bit_DASHand2, - STATE(3380), 1, - sym_comment, - STATE(3393), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - ACTIONS(6362), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6368), 2, + STATE(3350), 1, + sym_comment, + ACTIONS(6370), 2, anon_sym_STAR2, anon_sym_SLASH2, ACTIONS(6372), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6374), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6376), 2, + ACTIONS(6374), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6380), 2, + ACTIONS(6378), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6366), 4, + ACTIONS(6380), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6386), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6382), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6384), 6, anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6370), 4, + ACTIONS(5279), 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [116323] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5371), 1, + sym__newline, + ACTIONS(6340), 1, + anon_sym_DASH2, + ACTIONS(6346), 1, + anon_sym_PLUS2, + STATE(3351), 1, + sym_comment, + STATE(3377), 1, + aux_sym_shebang_repeat1, + ACTIONS(6334), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6342), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6344), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6348), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6350), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6356), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6352), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5337), 16, + ACTIONS(6354), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5283), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -344523,52 +345241,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [119625] = 16, - ACTIONS(251), 1, + [116399] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6386), 1, + ACTIONS(6368), 1, anon_sym_DASH2, - ACTIONS(6400), 1, + ACTIONS(6376), 1, anon_sym_PLUS2, - ACTIONS(6404), 1, + ACTIONS(6388), 1, anon_sym_bit_DASHand2, - ACTIONS(6406), 1, - anon_sym_bit_DASHxor2, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(3381), 1, + STATE(3352), 1, sym_comment, - ACTIONS(6384), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6390), 2, + ACTIONS(6370), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6394), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6396), 2, + ACTIONS(6372), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6398), 2, + ACTIONS(6374), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6402), 2, + ACTIONS(6378), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6388), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6392), 4, + ACTIONS(6380), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6386), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6382), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5323), 16, + ACTIONS(6384), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5279), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -344584,53 +345303,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [119701] = 17, - ACTIONS(251), 1, + [116475] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5460), 1, + ACTIONS(5371), 1, sym__newline, - ACTIONS(6364), 1, + ACTIONS(6340), 1, anon_sym_DASH2, - ACTIONS(6378), 1, + ACTIONS(6346), 1, anon_sym_PLUS2, - ACTIONS(6382), 1, + ACTIONS(6358), 1, anon_sym_bit_DASHand2, - ACTIONS(6408), 1, - anon_sym_bit_DASHxor2, - STATE(3382), 1, + STATE(3353), 1, sym_comment, - STATE(3394), 1, + STATE(3378), 1, aux_sym_shebang_repeat1, - ACTIONS(6362), 2, + ACTIONS(6334), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6342), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6344), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6348), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6350), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6368), 2, + ACTIONS(6356), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6352), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6354), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5283), 16, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [116553] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6368), 1, + anon_sym_DASH2, + ACTIONS(6376), 1, + anon_sym_PLUS2, + ACTIONS(6388), 1, + anon_sym_bit_DASHand2, + ACTIONS(6390), 1, + anon_sym_bit_DASHxor2, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(3354), 1, + sym_comment, + ACTIONS(6370), 2, anon_sym_STAR2, anon_sym_SLASH2, ACTIONS(6372), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6374), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6376), 2, + ACTIONS(6374), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6380), 2, + ACTIONS(6378), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6366), 4, + ACTIONS(6380), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6386), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6382), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6384), 6, anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6370), 4, + ACTIONS(5279), 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [116631] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5371), 1, + sym__newline, + ACTIONS(6340), 1, + anon_sym_DASH2, + ACTIONS(6346), 1, + anon_sym_PLUS2, + ACTIONS(6358), 1, + anon_sym_bit_DASHand2, + ACTIONS(6360), 1, + anon_sym_bit_DASHxor2, + STATE(3355), 1, + sym_comment, + STATE(3379), 1, + aux_sym_shebang_repeat1, + ACTIONS(6334), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6342), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6344), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6348), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6350), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6356), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6352), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5337), 15, + ACTIONS(6354), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5283), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -344646,34 +345492,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [119779] = 11, - ACTIONS(251), 1, + [116711] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6386), 1, + ACTIONS(5374), 1, + sym__newline, + ACTIONS(6340), 1, anon_sym_DASH2, - ACTIONS(6400), 1, + ACTIONS(6346), 1, anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3383), 1, + STATE(3356), 1, sym_comment, - ACTIONS(5321), 2, + STATE(3380), 1, + aux_sym_shebang_repeat1, + ACTIONS(5261), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6390), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6396), 2, + ACTIONS(6334), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6398), 2, + ACTIONS(6342), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6344), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6402), 2, + ACTIONS(6348), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5319), 28, - sym__newline, + ACTIONS(5259), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -344690,6 +345537,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -344701,28 +345550,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [119845] = 8, - ACTIONS(251), 1, + [116781] = 9, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3384), 1, + ACTIONS(5374), 1, + sym__newline, + STATE(3357), 1, sym_comment, - ACTIONS(6390), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6396), 2, + STATE(3382), 1, + aux_sym_shebang_repeat1, + ACTIONS(6334), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6398), 2, + ACTIONS(6342), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6344), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5321), 3, + ACTIONS(5261), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5319), 31, - sym__newline, + ACTIONS(5259), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -344740,6 +345590,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -344753,39 +345605,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [119905] = 12, - ACTIONS(251), 1, + [116845] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6386), 1, + ACTIONS(5374), 1, + sym__newline, + ACTIONS(6340), 1, anon_sym_DASH2, - ACTIONS(6400), 1, + ACTIONS(6346), 1, anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3385), 1, + STATE(3358), 1, sym_comment, - ACTIONS(6384), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6390), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6396), 2, + STATE(3384), 1, + aux_sym_shebang_repeat1, + ACTIONS(6334), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6398), 2, + ACTIONS(6342), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6344), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6402), 2, + ACTIONS(6348), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6392), 4, + ACTIONS(6350), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6352), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5319), 24, - sym__newline, + ACTIONS(5259), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -344802,6 +345655,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_TILDE2, @@ -344809,24 +345664,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [119973] = 6, - ACTIONS(251), 1, + [116917] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3386), 1, + ACTIONS(5374), 1, + sym__newline, + STATE(3359), 1, sym_comment, - ACTIONS(6396), 2, + STATE(3386), 1, + aux_sym_shebang_repeat1, + ACTIONS(6334), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5321), 5, + ACTIONS(5261), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5319), 33, - sym__newline, + ACTIONS(5259), 34, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -344844,6 +345700,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -344859,53 +345717,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [120029] = 17, - ACTIONS(251), 1, + [116977] = 18, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6386), 1, + ACTIONS(5374), 1, + sym__newline, + ACTIONS(6340), 1, anon_sym_DASH2, - ACTIONS(6400), 1, + ACTIONS(6346), 1, anon_sym_PLUS2, - ACTIONS(6404), 1, + ACTIONS(6358), 1, anon_sym_bit_DASHand2, - ACTIONS(6406), 1, + ACTIONS(6360), 1, anon_sym_bit_DASHxor2, - ACTIONS(6410), 1, + ACTIONS(6362), 1, anon_sym_bit_DASHor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3387), 1, + STATE(3360), 1, sym_comment, - ACTIONS(6384), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6390), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6394), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6396), 2, + STATE(3388), 1, + aux_sym_shebang_repeat1, + ACTIONS(6334), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6398), 2, + ACTIONS(6342), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6344), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6402), 2, + ACTIONS(6348), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6388), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6392), 4, + ACTIONS(6350), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6356), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6352), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5319), 15, - sym__newline, + ACTIONS(6354), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5259), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -344920,55 +345781,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [120107] = 18, - ACTIONS(251), 1, + [117059] = 19, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6386), 1, + ACTIONS(5374), 1, + sym__newline, + ACTIONS(6340), 1, anon_sym_DASH2, - ACTIONS(6400), 1, + ACTIONS(6346), 1, anon_sym_PLUS2, - ACTIONS(6404), 1, + ACTIONS(6358), 1, anon_sym_bit_DASHand2, - ACTIONS(6406), 1, + ACTIONS(6360), 1, anon_sym_bit_DASHxor2, - ACTIONS(6410), 1, + ACTIONS(6362), 1, anon_sym_bit_DASHor2, - ACTIONS(6412), 1, + ACTIONS(6364), 1, anon_sym_and2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3388), 1, + STATE(3361), 1, sym_comment, - ACTIONS(6384), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6390), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6394), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6396), 2, + STATE(3390), 1, + aux_sym_shebang_repeat1, + ACTIONS(6334), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6398), 2, + ACTIONS(6342), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6344), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6402), 2, + ACTIONS(6348), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6388), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6392), 4, + ACTIONS(6350), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6356), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6352), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5319), 14, - sym__newline, + ACTIONS(6354), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5259), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -344982,57 +345846,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [120187] = 19, - ACTIONS(251), 1, + [117143] = 20, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6386), 1, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(6340), 1, anon_sym_DASH2, - ACTIONS(6400), 1, + ACTIONS(6346), 1, anon_sym_PLUS2, - ACTIONS(6404), 1, + ACTIONS(6358), 1, anon_sym_bit_DASHand2, - ACTIONS(6406), 1, + ACTIONS(6360), 1, anon_sym_bit_DASHxor2, - ACTIONS(6410), 1, + ACTIONS(6362), 1, anon_sym_bit_DASHor2, - ACTIONS(6412), 1, + ACTIONS(6364), 1, anon_sym_and2, - ACTIONS(6414), 1, + ACTIONS(6366), 1, anon_sym_xor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3389), 1, + STATE(3362), 1, sym_comment, - ACTIONS(6384), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6390), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6394), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6396), 2, + STATE(3392), 1, + aux_sym_shebang_repeat1, + ACTIONS(6334), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6398), 2, + ACTIONS(6342), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6344), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6402), 2, + ACTIONS(6348), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6388), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6392), 4, + ACTIONS(6350), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6356), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6352), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5319), 13, - sym__newline, + ACTIONS(6354), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5259), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -345045,44 +345912,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [120269] = 13, - ACTIONS(251), 1, + [117229] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6386), 1, + ACTIONS(5374), 1, + sym__newline, + ACTIONS(6340), 1, anon_sym_DASH2, - ACTIONS(6400), 1, + ACTIONS(6346), 1, anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3390), 1, + STATE(3363), 1, sym_comment, - ACTIONS(6384), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6390), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6396), 2, + STATE(3394), 1, + aux_sym_shebang_repeat1, + ACTIONS(6334), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6398), 2, + ACTIONS(6342), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6344), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6402), 2, + ACTIONS(6348), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6388), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6392), 4, + ACTIONS(6350), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6352), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5319), 20, - sym__newline, + ACTIONS(6354), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5259), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -345102,31 +345972,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [120339] = 10, - ACTIONS(251), 1, + [117303] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6386), 1, + ACTIONS(5374), 1, + sym__newline, + ACTIONS(6340), 1, anon_sym_DASH2, - ACTIONS(6400), 1, + ACTIONS(6346), 1, anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3391), 1, + STATE(3364), 1, sym_comment, - ACTIONS(5321), 2, + STATE(3396), 1, + aux_sym_shebang_repeat1, + ACTIONS(5261), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6390), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6396), 2, + ACTIONS(6334), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6398), 2, + ACTIONS(6342), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6344), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5319), 30, - sym__newline, + ACTIONS(5259), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -345143,6 +346014,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -345156,47 +346029,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [120403] = 14, - ACTIONS(251), 1, + [117371] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6386), 1, + ACTIONS(5374), 1, + sym__newline, + ACTIONS(6340), 1, anon_sym_DASH2, - ACTIONS(6400), 1, + ACTIONS(6346), 1, anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3392), 1, + STATE(3365), 1, sym_comment, - ACTIONS(6384), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6390), 2, + STATE(3398), 1, + aux_sym_shebang_repeat1, + ACTIONS(6334), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6342), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6394), 2, + ACTIONS(6344), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6348), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6350), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6356), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6396), 2, + ACTIONS(6352), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6354), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5259), 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, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [117447] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5374), 1, + sym__newline, + ACTIONS(6340), 1, + anon_sym_DASH2, + ACTIONS(6346), 1, + anon_sym_PLUS2, + ACTIONS(6358), 1, + anon_sym_bit_DASHand2, + STATE(3366), 1, + sym_comment, + STATE(3400), 1, + aux_sym_shebang_repeat1, + ACTIONS(6334), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6398), 2, + ACTIONS(6342), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6344), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6402), 2, + ACTIONS(6348), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6388), 4, + ACTIONS(6350), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6356), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6352), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6354), 6, anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6392), 4, + ACTIONS(5259), 16, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [117525] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5374), 1, + sym__newline, + ACTIONS(6340), 1, + anon_sym_DASH2, + ACTIONS(6346), 1, + anon_sym_PLUS2, + ACTIONS(6358), 1, + anon_sym_bit_DASHand2, + ACTIONS(6360), 1, + anon_sym_bit_DASHxor2, + STATE(3367), 1, + sym_comment, + STATE(3402), 1, + aux_sym_shebang_repeat1, + ACTIONS(6334), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6342), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6344), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6348), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6350), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6356), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6352), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5319), 18, - sym__newline, + ACTIONS(6354), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5259), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -345211,51 +346214,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [120475] = 15, - ACTIONS(251), 1, + [117605] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6386), 1, + ACTIONS(6368), 1, anon_sym_DASH2, - ACTIONS(6400), 1, + ACTIONS(6376), 1, anon_sym_PLUS2, - ACTIONS(6404), 1, - anon_sym_bit_DASHand2, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(3393), 1, + STATE(3368), 1, sym_comment, - ACTIONS(6384), 2, + ACTIONS(5245), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6390), 2, + ACTIONS(6370), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6394), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6396), 2, + ACTIONS(6372), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6398), 2, + ACTIONS(6374), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6402), 2, + ACTIONS(6378), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6388), 4, + ACTIONS(5243), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_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_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6392), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5319), 17, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [117673] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(3369), 1, + sym_comment, + ACTIONS(6370), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6372), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6374), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5245), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5243), 33, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -345268,55 +346305,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_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [120549] = 16, - ACTIONS(251), 1, + [117735] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6386), 1, + ACTIONS(6368), 1, anon_sym_DASH2, - ACTIONS(6400), 1, + ACTIONS(6376), 1, anon_sym_PLUS2, - ACTIONS(6404), 1, - anon_sym_bit_DASHand2, - ACTIONS(6406), 1, - anon_sym_bit_DASHxor2, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(3394), 1, + STATE(3370), 1, sym_comment, - ACTIONS(6384), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6390), 2, + ACTIONS(6370), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6394), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6396), 2, + ACTIONS(6372), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6398), 2, + ACTIONS(6374), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6402), 2, + ACTIONS(6378), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6388), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6392), 4, + ACTIONS(6380), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6382), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5319), 16, + ACTIONS(5243), 26, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -345329,107 +346370,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [120625] = 3, - ACTIONS(251), 1, + [117805] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3395), 1, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(3371), 1, sym_comment, - ACTIONS(6416), 41, + ACTIONS(6372), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5245), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5243), 35, sym__newline, 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, - anon_sym_LBRACE, - anon_sym_RBRACE, - [120675] = 19, - ACTIONS(251), 1, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [117863] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5390), 1, - sym__newline, - ACTIONS(6364), 1, + ACTIONS(6368), 1, anon_sym_DASH2, - ACTIONS(6378), 1, + ACTIONS(6376), 1, anon_sym_PLUS2, - ACTIONS(6382), 1, + ACTIONS(6388), 1, anon_sym_bit_DASHand2, - ACTIONS(6408), 1, + ACTIONS(6390), 1, anon_sym_bit_DASHxor2, - ACTIONS(6418), 1, - anon_sym_and2, - ACTIONS(6420), 1, + ACTIONS(6392), 1, anon_sym_bit_DASHor2, - STATE(3396), 1, - sym_comment, - STATE(3434), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - ACTIONS(6362), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6368), 2, + STATE(3372), 1, + sym_comment, + ACTIONS(6370), 2, anon_sym_STAR2, anon_sym_SLASH2, ACTIONS(6372), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6374), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6376), 2, + ACTIONS(6374), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6380), 2, + ACTIONS(6378), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6366), 4, + ACTIONS(6380), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6386), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6382), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6384), 6, anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6370), 4, + ACTIONS(5243), 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_and2, + anon_sym_xor2, + anon_sym_or2, + [117943] = 18, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6368), 1, + anon_sym_DASH2, + ACTIONS(6376), 1, + anon_sym_PLUS2, + ACTIONS(6388), 1, + anon_sym_bit_DASHand2, + ACTIONS(6390), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6392), 1, + anon_sym_bit_DASHor2, + ACTIONS(6394), 1, + anon_sym_and2, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(3373), 1, + sym_comment, + ACTIONS(6370), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6372), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6374), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6378), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6380), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6386), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6382), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5349), 13, + ACTIONS(6384), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5243), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -345443,105 +346563,277 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [120757] = 3, - ACTIONS(251), 1, + [118025] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3397), 1, + ACTIONS(6398), 1, + anon_sym_LBRACK2, + STATE(3374), 1, sym_comment, - ACTIONS(6422), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(2292), 14, 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_LBRACE, - anon_sym_RBRACE, - [120807] = 20, - ACTIONS(251), 1, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(2296), 28, + sym_raw_string_begin, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [118081] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(6364), 1, + ACTIONS(6368), 1, anon_sym_DASH2, - ACTIONS(6378), 1, + ACTIONS(6376), 1, anon_sym_PLUS2, - ACTIONS(6382), 1, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(3375), 1, + sym_comment, + ACTIONS(6370), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6372), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6374), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6378), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6380), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6382), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6384), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5243), 20, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, - ACTIONS(6408), 1, anon_sym_bit_DASHxor2, - ACTIONS(6418), 1, - anon_sym_and2, - ACTIONS(6420), 1, anon_sym_bit_DASHor2, - ACTIONS(6424), 1, - anon_sym_xor2, - STATE(3398), 1, - sym_comment, - STATE(3436), 1, + [118153] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6368), 1, + anon_sym_DASH2, + ACTIONS(6376), 1, + anon_sym_PLUS2, + STATE(1615), 1, aux_sym_shebang_repeat1, - ACTIONS(6362), 2, + STATE(3376), 1, + sym_comment, + ACTIONS(5245), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6368), 2, + ACTIONS(6370), 2, anon_sym_STAR2, anon_sym_SLASH2, ACTIONS(6372), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6374), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5243), 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_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6374), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [118219] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6368), 1, + anon_sym_DASH2, + ACTIONS(6376), 1, + anon_sym_PLUS2, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(3377), 1, + sym_comment, + ACTIONS(6370), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6372), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6376), 2, + ACTIONS(6374), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6380), 2, + ACTIONS(6378), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6366), 4, + ACTIONS(6380), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6386), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6382), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6384), 6, anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6370), 4, + ACTIONS(5243), 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [118293] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6368), 1, + anon_sym_DASH2, + ACTIONS(6376), 1, + anon_sym_PLUS2, + ACTIONS(6388), 1, + anon_sym_bit_DASHand2, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(3378), 1, + sym_comment, + ACTIONS(6370), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6372), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6374), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6378), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6380), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6386), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6382), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5349), 12, + ACTIONS(6384), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5243), 17, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -345553,46 +346845,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_and2, + anon_sym_xor2, anon_sym_or2, - [120891] = 14, - ACTIONS(251), 1, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [118369] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5390), 1, - sym__newline, - ACTIONS(6364), 1, + ACTIONS(6368), 1, anon_sym_DASH2, - ACTIONS(6378), 1, + ACTIONS(6376), 1, anon_sym_PLUS2, - STATE(3399), 1, - sym_comment, - STATE(3439), 1, + ACTIONS(6388), 1, + anon_sym_bit_DASHand2, + ACTIONS(6390), 1, + anon_sym_bit_DASHxor2, + STATE(1615), 1, aux_sym_shebang_repeat1, - ACTIONS(6362), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6368), 2, + STATE(3379), 1, + sym_comment, + ACTIONS(6370), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6374), 2, + ACTIONS(6372), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6376), 2, + ACTIONS(6374), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6380), 2, + ACTIONS(6378), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6366), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6370), 4, + ACTIONS(6380), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6386), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6382), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5349), 19, + ACTIONS(6384), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5243), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -345607,40 +346911,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [120963] = 12, - ACTIONS(251), 1, + [118447] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5390), 1, - sym__newline, - ACTIONS(6364), 1, + ACTIONS(6368), 1, anon_sym_DASH2, - ACTIONS(6378), 1, + ACTIONS(6376), 1, anon_sym_PLUS2, - STATE(3400), 1, - sym_comment, - STATE(3424), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - ACTIONS(5351), 2, + STATE(3380), 1, + sym_comment, + ACTIONS(5293), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6368), 2, + ACTIONS(6370), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6374), 2, + ACTIONS(6372), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6376), 2, + ACTIONS(6374), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6380), 2, + ACTIONS(6378), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5349), 27, + ACTIONS(5291), 30, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -345657,6 +346956,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -345668,22 +346969,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [121031] = 5, - ACTIONS(251), 1, + [118515] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4904), 1, - aux_sym_unquoted_token2, - STATE(3401), 1, + ACTIONS(5368), 1, + sym__newline, + ACTIONS(6340), 1, + anon_sym_DASH2, + ACTIONS(6346), 1, + anon_sym_PLUS2, + STATE(3381), 1, sym_comment, - ACTIONS(1638), 5, + STATE(3404), 1, + aux_sym_shebang_repeat1, + ACTIONS(5249), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6334), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6342), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1650), 35, - ts_builtin_sym_end, - sym__newline, + ACTIONS(6344), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6348), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5247), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -345694,12 +347008,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_DASH2, + anon_sym_RPAREN, anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -345708,41 +347024,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [121085] = 11, - ACTIONS(251), 1, + [118585] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5390), 1, - sym__newline, - ACTIONS(6364), 1, - anon_sym_DASH2, - ACTIONS(6378), 1, - anon_sym_PLUS2, - STATE(3402), 1, - sym_comment, - STATE(3441), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - ACTIONS(5351), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6368), 2, + STATE(3382), 1, + sym_comment, + ACTIONS(6370), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6374), 2, + ACTIONS(6372), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6376), 2, + ACTIONS(6374), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5349), 29, + ACTIONS(5293), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5291), 33, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -345754,11 +347060,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_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -345772,109 +347081,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [121151] = 15, - ACTIONS(251), 1, + [118647] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5390), 1, + ACTIONS(5368), 1, sym__newline, - ACTIONS(6364), 1, - anon_sym_DASH2, - ACTIONS(6378), 1, - anon_sym_PLUS2, - STATE(3403), 1, + STATE(3383), 1, sym_comment, - STATE(3500), 1, + STATE(3405), 1, aux_sym_shebang_repeat1, - ACTIONS(6362), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6368), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6372), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6374), 2, + ACTIONS(6334), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6376), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6380), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6366), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6370), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5349), 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, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [121225] = 16, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5390), 1, - sym__newline, - ACTIONS(6364), 1, - anon_sym_DASH2, - ACTIONS(6378), 1, - anon_sym_PLUS2, - ACTIONS(6382), 1, - anon_sym_bit_DASHand2, - STATE(3404), 1, - sym_comment, - STATE(3445), 1, - aux_sym_shebang_repeat1, - ACTIONS(6362), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6368), 2, + ACTIONS(6342), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6372), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6374), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6376), 2, + ACTIONS(6344), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6380), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6366), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6370), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5349), 16, + ACTIONS(5249), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5247), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -345886,51 +347115,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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [121301] = 13, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym_unquoted_token2, - ACTIONS(3630), 1, - anon_sym_DOLLAR, - ACTIONS(4580), 1, - anon_sym_LPAREN2, - ACTIONS(6426), 1, - anon_sym_DOT, - ACTIONS(6430), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6432), 1, - aux_sym__immediate_decimal_token5, - STATE(3405), 1, - sym_comment, - STATE(3608), 1, - sym__immediate_decimal, - ACTIONS(6428), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1870), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1461), 6, - anon_sym_GT2, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1475), 24, - sym__newline, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -345939,61 +347131,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [121371] = 17, - ACTIONS(251), 1, + [118711] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5390), 1, - sym__newline, - ACTIONS(6364), 1, + ACTIONS(6368), 1, anon_sym_DASH2, - ACTIONS(6378), 1, + ACTIONS(6376), 1, anon_sym_PLUS2, - ACTIONS(6382), 1, - anon_sym_bit_DASHand2, - ACTIONS(6408), 1, - anon_sym_bit_DASHxor2, - STATE(3406), 1, - sym_comment, - STATE(3447), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - ACTIONS(6362), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6368), 2, + STATE(3384), 1, + sym_comment, + ACTIONS(6370), 2, anon_sym_STAR2, anon_sym_SLASH2, ACTIONS(6372), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6374), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6376), 2, + ACTIONS(6374), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6380), 2, + ACTIONS(6378), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6366), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6370), 4, + ACTIONS(6380), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6382), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5349), 15, + ACTIONS(5291), 26, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -346005,44 +347180,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_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [121449] = 13, - ACTIONS(251), 1, + [118781] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5390), 1, + ACTIONS(5368), 1, sym__newline, - ACTIONS(6364), 1, + ACTIONS(6340), 1, anon_sym_DASH2, - ACTIONS(6378), 1, + ACTIONS(6346), 1, anon_sym_PLUS2, - STATE(3407), 1, + STATE(3385), 1, sym_comment, - STATE(3428), 1, + STATE(3406), 1, aux_sym_shebang_repeat1, - ACTIONS(6362), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6368), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6374), 2, + ACTIONS(6334), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6376), 2, + ACTIONS(6342), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6344), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6380), 2, + ACTIONS(6348), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6370), 4, + ACTIONS(6350), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6352), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5349), 23, + ACTIONS(5247), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -346059,6 +347244,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_TILDE2, @@ -346066,31 +347253,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [121519] = 10, - ACTIONS(251), 1, + [118853] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6434), 1, - anon_sym_DASH2, - ACTIONS(6442), 1, - anon_sym_PLUS2, - STATE(3408), 1, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(3386), 1, sym_comment, - ACTIONS(5259), 2, + ACTIONS(6372), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5293), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6436), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6438), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6440), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6444), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5257), 29, + anon_sym_PLUS2, + ACTIONS(5291), 35, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -346103,12 +347282,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_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -346117,29 +347298,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [121583] = 7, - ACTIONS(251), 1, + [118911] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3409), 1, + ACTIONS(5368), 1, + sym__newline, + STATE(3387), 1, sym_comment, - ACTIONS(6436), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6438), 2, + STATE(3407), 1, + aux_sym_shebang_repeat1, + ACTIONS(6334), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6440), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5259), 3, + ACTIONS(5249), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5257), 32, - sym__newline, + ACTIONS(5247), 34, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -346153,11 +347337,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -346166,81 +347351,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [121641] = 11, - ACTIONS(251), 1, + [118971] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6434), 1, + ACTIONS(6368), 1, anon_sym_DASH2, - ACTIONS(6442), 1, + ACTIONS(6376), 1, anon_sym_PLUS2, - STATE(3410), 1, + ACTIONS(6388), 1, + anon_sym_bit_DASHand2, + ACTIONS(6390), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6392), 1, + anon_sym_bit_DASHor2, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(3388), 1, sym_comment, - ACTIONS(6436), 2, + ACTIONS(6370), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6438), 2, + ACTIONS(6372), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6440), 2, + ACTIONS(6374), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6444), 2, + ACTIONS(6378), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6446), 2, + ACTIONS(6380), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6448), 4, + ACTIONS(6386), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6382), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5257), 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, + ACTIONS(6384), 6, anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [121707] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3411), 1, - sym_comment, - ACTIONS(6438), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5259), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5257), 34, + ACTIONS(5291), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -346253,73 +347418,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_DASH2, - anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [121761] = 16, - ACTIONS(251), 1, + [119051] = 18, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6434), 1, + ACTIONS(5368), 1, + sym__newline, + ACTIONS(6340), 1, anon_sym_DASH2, - ACTIONS(6442), 1, + ACTIONS(6346), 1, anon_sym_PLUS2, - ACTIONS(6454), 1, + ACTIONS(6358), 1, anon_sym_bit_DASHand2, - ACTIONS(6456), 1, + ACTIONS(6360), 1, anon_sym_bit_DASHxor2, - ACTIONS(6458), 1, + ACTIONS(6362), 1, anon_sym_bit_DASHor2, - STATE(3412), 1, + STATE(3389), 1, sym_comment, - ACTIONS(6436), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6438), 2, + STATE(3408), 1, + aux_sym_shebang_repeat1, + ACTIONS(6334), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6440), 2, + ACTIONS(6342), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6344), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6444), 2, + ACTIONS(6348), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6446), 2, + ACTIONS(6350), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6452), 2, + ACTIONS(6356), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6448), 4, + ACTIONS(6352), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6450), 4, + ACTIONS(6354), 6, anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5257), 16, - sym__newline, + ACTIONS(5247), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -346331,56 +347482,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_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [121837] = 17, - ACTIONS(251), 1, + [119133] = 18, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6434), 1, + ACTIONS(6368), 1, anon_sym_DASH2, - ACTIONS(6442), 1, + ACTIONS(6376), 1, anon_sym_PLUS2, - ACTIONS(6454), 1, + ACTIONS(6388), 1, anon_sym_bit_DASHand2, - ACTIONS(6456), 1, + ACTIONS(6390), 1, anon_sym_bit_DASHxor2, - ACTIONS(6458), 1, + ACTIONS(6392), 1, anon_sym_bit_DASHor2, - ACTIONS(6460), 1, + ACTIONS(6394), 1, anon_sym_and2, - STATE(3413), 1, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(3390), 1, sym_comment, - ACTIONS(6436), 2, + ACTIONS(6370), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6438), 2, + ACTIONS(6372), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6440), 2, + ACTIONS(6374), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6444), 2, + ACTIONS(6378), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6446), 2, + ACTIONS(6380), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6452), 2, + ACTIONS(6386), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6448), 4, + ACTIONS(6382), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6450), 4, + ACTIONS(6384), 6, anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5257), 15, + ACTIONS(5291), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -346393,58 +347547,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_RBRACE, anon_sym_xor2, anon_sym_or2, - [121915] = 18, - ACTIONS(251), 1, + [119215] = 19, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6434), 1, + ACTIONS(5368), 1, + sym__newline, + ACTIONS(6340), 1, anon_sym_DASH2, - ACTIONS(6442), 1, + ACTIONS(6346), 1, anon_sym_PLUS2, - ACTIONS(6454), 1, + ACTIONS(6358), 1, anon_sym_bit_DASHand2, - ACTIONS(6456), 1, + ACTIONS(6360), 1, anon_sym_bit_DASHxor2, - ACTIONS(6458), 1, + ACTIONS(6362), 1, anon_sym_bit_DASHor2, - ACTIONS(6460), 1, + ACTIONS(6364), 1, anon_sym_and2, - ACTIONS(6462), 1, - anon_sym_xor2, - STATE(3414), 1, + STATE(3391), 1, sym_comment, - ACTIONS(6436), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6438), 2, + STATE(3409), 1, + aux_sym_shebang_repeat1, + ACTIONS(6334), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6440), 2, + ACTIONS(6342), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6344), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6444), 2, + ACTIONS(6348), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6446), 2, + ACTIONS(6350), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6452), 2, + ACTIONS(6356), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6448), 4, + ACTIONS(6352), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6450), 4, + ACTIONS(6354), 6, anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5257), 14, - sym__newline, + ACTIONS(5247), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -346456,43 +347612,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_RBRACE, + anon_sym_xor2, anon_sym_or2, - [121995] = 12, - ACTIONS(251), 1, + [119299] = 19, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6434), 1, + ACTIONS(6368), 1, anon_sym_DASH2, - ACTIONS(6442), 1, + ACTIONS(6376), 1, anon_sym_PLUS2, - STATE(3415), 1, + ACTIONS(6388), 1, + anon_sym_bit_DASHand2, + ACTIONS(6390), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6392), 1, + anon_sym_bit_DASHor2, + ACTIONS(6394), 1, + anon_sym_and2, + ACTIONS(6396), 1, + anon_sym_xor2, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(3392), 1, sym_comment, - ACTIONS(6436), 2, + ACTIONS(6370), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6438), 2, + ACTIONS(6372), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6440), 2, + ACTIONS(6374), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6444), 2, + ACTIONS(6378), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6446), 2, + ACTIONS(6380), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6448), 4, + ACTIONS(6386), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6382), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6450), 4, + ACTIONS(6384), 6, anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5257), 21, + ACTIONS(5291), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -346505,38 +347678,61 @@ static 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_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [122063] = 9, - ACTIONS(251), 1, + [119383] = 20, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6434), 1, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(6340), 1, anon_sym_DASH2, - ACTIONS(6442), 1, + ACTIONS(6346), 1, anon_sym_PLUS2, - STATE(3416), 1, + ACTIONS(6358), 1, + anon_sym_bit_DASHand2, + ACTIONS(6360), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6362), 1, + anon_sym_bit_DASHor2, + ACTIONS(6364), 1, + anon_sym_and2, + ACTIONS(6366), 1, + anon_sym_xor2, + STATE(3393), 1, sym_comment, - ACTIONS(5259), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6436), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6438), 2, + STATE(3410), 1, + aux_sym_shebang_repeat1, + ACTIONS(6334), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6440), 2, + ACTIONS(6342), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6344), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5257), 31, - sym__newline, + ACTIONS(6348), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6350), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6356), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6352), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6354), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5247), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -346548,63 +347744,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_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [122125] = 13, - ACTIONS(251), 1, + [119469] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6434), 1, + ACTIONS(6368), 1, anon_sym_DASH2, - ACTIONS(6442), 1, + ACTIONS(6376), 1, anon_sym_PLUS2, - STATE(3417), 1, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(3394), 1, sym_comment, - ACTIONS(6436), 2, + ACTIONS(6370), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6438), 2, + ACTIONS(6372), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6440), 2, + ACTIONS(6374), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6444), 2, + ACTIONS(6378), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6446), 2, + ACTIONS(6380), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6452), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6448), 4, + ACTIONS(6382), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6450), 4, + ACTIONS(6384), 6, anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5257), 19, + ACTIONS(5291), 20, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -346617,54 +347796,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_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [122195] = 14, - ACTIONS(251), 1, + [119541] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6434), 1, + ACTIONS(5368), 1, + sym__newline, + ACTIONS(6340), 1, anon_sym_DASH2, - ACTIONS(6442), 1, + ACTIONS(6346), 1, anon_sym_PLUS2, - ACTIONS(6454), 1, - anon_sym_bit_DASHand2, - STATE(3418), 1, + STATE(3395), 1, sym_comment, - ACTIONS(6436), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6438), 2, + STATE(3411), 1, + aux_sym_shebang_repeat1, + ACTIONS(6334), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6440), 2, + ACTIONS(6342), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6344), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6444), 2, + ACTIONS(6348), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6446), 2, + ACTIONS(6350), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6452), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6448), 4, + ACTIONS(6352), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6450), 4, + ACTIONS(6354), 6, anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5257), 18, - sym__newline, + ACTIONS(5247), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -346676,54 +347856,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_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [122267] = 15, - ACTIONS(251), 1, + [119615] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6434), 1, + ACTIONS(6368), 1, anon_sym_DASH2, - ACTIONS(6442), 1, + ACTIONS(6376), 1, anon_sym_PLUS2, - ACTIONS(6454), 1, - anon_sym_bit_DASHand2, - ACTIONS(6456), 1, - anon_sym_bit_DASHxor2, - STATE(3419), 1, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(3396), 1, sym_comment, - ACTIONS(6436), 2, + ACTIONS(5293), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6370), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6438), 2, + ACTIONS(6372), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6440), 2, + ACTIONS(6374), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6444), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6446), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6452), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6448), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6450), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5257), 17, + ACTIONS(5291), 32, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -346736,30 +347900,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, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [122341] = 7, - ACTIONS(251), 1, + [119681] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5390), 1, + ACTIONS(5368), 1, sym__newline, - STATE(3420), 1, + ACTIONS(6340), 1, + anon_sym_DASH2, + ACTIONS(6346), 1, + anon_sym_PLUS2, + STATE(3397), 1, sym_comment, - STATE(3430), 1, + STATE(3412), 1, aux_sym_shebang_repeat1, - ACTIONS(6374), 2, + ACTIONS(5249), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6334), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5351), 5, - anon_sym_GT2, + ACTIONS(6342), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5349), 32, + ACTIONS(6344), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5247), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -346771,12 +347957,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_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -346785,61 +347972,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [122399] = 18, - ACTIONS(251), 1, + [119749] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5390), 1, - sym__newline, - ACTIONS(6364), 1, + ACTIONS(6368), 1, anon_sym_DASH2, - ACTIONS(6378), 1, + ACTIONS(6376), 1, anon_sym_PLUS2, - ACTIONS(6382), 1, - anon_sym_bit_DASHand2, - ACTIONS(6408), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6420), 1, - anon_sym_bit_DASHor2, - STATE(3421), 1, - sym_comment, - STATE(3432), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - ACTIONS(6362), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6368), 2, + STATE(3398), 1, + sym_comment, + ACTIONS(6370), 2, anon_sym_STAR2, anon_sym_SLASH2, ACTIONS(6372), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6374), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6376), 2, + ACTIONS(6374), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6380), 2, + ACTIONS(6378), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6366), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6370), 4, + ACTIONS(6380), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6386), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6382), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5349), 14, + ACTIONS(6384), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5291), 18, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -346854,83 +348034,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [122479] = 10, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6282), 1, - anon_sym_list, - ACTIONS(6464), 1, - anon_sym_GT2, - ACTIONS(6466), 1, - anon_sym_AT, - STATE(3422), 1, - sym_comment, - STATE(7071), 1, - sym__all_type, - STATE(7497), 1, - sym_param_cmd, - ACTIONS(6280), 2, - anon_sym_table, - anon_sym_record, - STATE(7443), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6278), 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, - [122543] = 9, - ACTIONS(251), 1, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [119823] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5390), 1, + ACTIONS(5368), 1, sym__newline, - STATE(3423), 1, + ACTIONS(6340), 1, + anon_sym_DASH2, + ACTIONS(6346), 1, + anon_sym_PLUS2, + STATE(3399), 1, sym_comment, - STATE(3426), 1, + STATE(3413), 1, aux_sym_shebang_repeat1, - ACTIONS(6368), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6374), 2, + ACTIONS(6334), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6376), 2, + ACTIONS(6342), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6344), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5351), 3, + ACTIONS(6348), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6350), 2, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5349), 30, + ACTIONS(6356), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6352), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6354), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5247), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -346942,52 +348092,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_DASH2, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [122605] = 11, - ACTIONS(251), 1, + [119899] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6386), 1, + ACTIONS(6368), 1, anon_sym_DASH2, - ACTIONS(6400), 1, + ACTIONS(6376), 1, anon_sym_PLUS2, - STATE(1800), 1, + ACTIONS(6388), 1, + anon_sym_bit_DASHand2, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(3424), 1, + STATE(3400), 1, sym_comment, - ACTIONS(5343), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6390), 2, + ACTIONS(6370), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6396), 2, + ACTIONS(6372), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6398), 2, + ACTIONS(6374), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6402), 2, + ACTIONS(6378), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5341), 28, + ACTIONS(6380), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6386), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6382), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6384), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5291), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347000,51 +348154,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_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [122671] = 12, - ACTIONS(251), 1, + [119975] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5475), 1, + ACTIONS(5368), 1, sym__newline, - ACTIONS(6364), 1, + ACTIONS(6340), 1, anon_sym_DASH2, - ACTIONS(6378), 1, + ACTIONS(6346), 1, anon_sym_PLUS2, - STATE(3425), 1, + ACTIONS(6358), 1, + anon_sym_bit_DASHand2, + STATE(3401), 1, sym_comment, - STATE(3464), 1, + STATE(3414), 1, aux_sym_shebang_repeat1, - ACTIONS(5347), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6368), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6374), 2, + ACTIONS(6334), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6376), 2, + ACTIONS(6342), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6344), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6380), 2, + ACTIONS(6348), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5345), 27, + ACTIONS(6350), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6356), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6352), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6354), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5247), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -347056,43 +348216,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_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [122739] = 8, - ACTIONS(251), 1, + [120053] = 16, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, + ACTIONS(6368), 1, + anon_sym_DASH2, + ACTIONS(6376), 1, + anon_sym_PLUS2, + ACTIONS(6388), 1, + anon_sym_bit_DASHand2, + ACTIONS(6390), 1, + anon_sym_bit_DASHxor2, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(3426), 1, + STATE(3402), 1, sym_comment, - ACTIONS(6390), 2, + ACTIONS(6370), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6396), 2, + ACTIONS(6372), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6398), 2, + ACTIONS(6374), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5343), 3, + ACTIONS(6378), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6380), 2, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5341), 31, + ACTIONS(6386), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6382), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6384), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5291), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347105,48 +348279,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_DASH2, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [122799] = 9, - ACTIONS(251), 1, + [120131] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5475), 1, + ACTIONS(5368), 1, sym__newline, - STATE(3427), 1, + ACTIONS(6340), 1, + anon_sym_DASH2, + ACTIONS(6346), 1, + anon_sym_PLUS2, + ACTIONS(6358), 1, + anon_sym_bit_DASHand2, + ACTIONS(6360), 1, + anon_sym_bit_DASHxor2, + STATE(3403), 1, sym_comment, - STATE(3465), 1, + STATE(3415), 1, aux_sym_shebang_repeat1, - ACTIONS(6368), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6374), 2, + ACTIONS(6334), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6376), 2, + ACTIONS(6342), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6344), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5347), 3, + ACTIONS(6348), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6350), 2, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5345), 30, + ACTIONS(6356), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6352), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6354), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5247), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -347158,57 +348342,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_DASH2, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [122861] = 12, - ACTIONS(251), 1, + [120211] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6386), 1, + ACTIONS(6368), 1, anon_sym_DASH2, - ACTIONS(6400), 1, + ACTIONS(6376), 1, anon_sym_PLUS2, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(3428), 1, + STATE(3404), 1, sym_comment, - ACTIONS(6384), 2, + ACTIONS(5303), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6390), 2, + ACTIONS(6370), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6396), 2, + ACTIONS(6372), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6398), 2, + ACTIONS(6374), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6402), 2, + ACTIONS(6378), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6392), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5341), 24, + ACTIONS(5301), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347226,47 +348390,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [122929] = 13, - ACTIONS(251), 1, + [120279] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5475), 1, - sym__newline, - ACTIONS(6364), 1, - anon_sym_DASH2, - ACTIONS(6378), 1, - anon_sym_PLUS2, - STATE(3429), 1, - sym_comment, - STATE(3466), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - ACTIONS(6362), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6368), 2, + STATE(3405), 1, + sym_comment, + ACTIONS(6370), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6374), 2, + ACTIONS(6372), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6376), 2, + ACTIONS(6374), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6380), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6370), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5345), 23, + ACTIONS(5303), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5301), 33, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -347278,35 +348436,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_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [122999] = 6, - ACTIONS(251), 1, + [120341] = 12, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, + ACTIONS(6368), 1, + anon_sym_DASH2, + ACTIONS(6376), 1, + anon_sym_PLUS2, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(3430), 1, + STATE(3406), 1, sym_comment, - ACTIONS(6396), 2, + ACTIONS(6370), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6372), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5343), 5, + ACTIONS(6374), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6378), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6380), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5341), 33, + ACTIONS(6382), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5301), 26, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347319,46 +348501,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_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [123055] = 7, - ACTIONS(251), 1, + [120411] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5475), 1, - sym__newline, - STATE(3431), 1, - sym_comment, - STATE(3467), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - ACTIONS(6374), 2, + STATE(3407), 1, + sym_comment, + ACTIONS(6372), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 5, + ACTIONS(5303), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5345), 32, + ACTIONS(5301), 35, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -347376,6 +348550,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -347391,52 +348567,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [123113] = 17, - ACTIONS(251), 1, + [120469] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6386), 1, + ACTIONS(6368), 1, anon_sym_DASH2, - ACTIONS(6400), 1, + ACTIONS(6376), 1, anon_sym_PLUS2, - ACTIONS(6404), 1, + ACTIONS(6388), 1, anon_sym_bit_DASHand2, - ACTIONS(6406), 1, + ACTIONS(6390), 1, anon_sym_bit_DASHxor2, - ACTIONS(6410), 1, + ACTIONS(6392), 1, anon_sym_bit_DASHor2, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(3432), 1, + STATE(3408), 1, sym_comment, - ACTIONS(6384), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6390), 2, + ACTIONS(6370), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6394), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6396), 2, + ACTIONS(6372), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6398), 2, + ACTIONS(6374), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6402), 2, + ACTIONS(6378), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6388), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6392), 4, + ACTIONS(6380), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6386), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6382), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5341), 15, + ACTIONS(6384), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5301), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347452,54 +348630,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [123191] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5475), 1, - sym__newline, - ACTIONS(6364), 1, + [120549] = 18, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6368), 1, anon_sym_DASH2, - ACTIONS(6378), 1, + ACTIONS(6376), 1, anon_sym_PLUS2, - ACTIONS(6382), 1, + ACTIONS(6388), 1, anon_sym_bit_DASHand2, - ACTIONS(6408), 1, + ACTIONS(6390), 1, anon_sym_bit_DASHxor2, - ACTIONS(6420), 1, + ACTIONS(6392), 1, anon_sym_bit_DASHor2, - STATE(3433), 1, - sym_comment, - STATE(3468), 1, + ACTIONS(6394), 1, + anon_sym_and2, + STATE(1615), 1, aux_sym_shebang_repeat1, - ACTIONS(6362), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6368), 2, + STATE(3409), 1, + sym_comment, + ACTIONS(6370), 2, anon_sym_STAR2, anon_sym_SLASH2, ACTIONS(6372), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6374), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6376), 2, + ACTIONS(6374), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6380), 2, + ACTIONS(6378), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6366), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6370), 4, + ACTIONS(6380), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6386), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6382), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5345), 14, + ACTIONS(6384), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5301), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -347511,57 +348692,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_and2, anon_sym_xor2, anon_sym_or2, - [123271] = 18, - ACTIONS(251), 1, + [120631] = 19, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6386), 1, + ACTIONS(6368), 1, anon_sym_DASH2, - ACTIONS(6400), 1, + ACTIONS(6376), 1, anon_sym_PLUS2, - ACTIONS(6404), 1, + ACTIONS(6388), 1, anon_sym_bit_DASHand2, - ACTIONS(6406), 1, + ACTIONS(6390), 1, anon_sym_bit_DASHxor2, - ACTIONS(6410), 1, + ACTIONS(6392), 1, anon_sym_bit_DASHor2, - ACTIONS(6412), 1, + ACTIONS(6394), 1, anon_sym_and2, - STATE(1800), 1, + ACTIONS(6396), 1, + anon_sym_xor2, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(3434), 1, + STATE(3410), 1, sym_comment, - ACTIONS(6384), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6390), 2, + ACTIONS(6370), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6394), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6396), 2, + ACTIONS(6372), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6398), 2, + ACTIONS(6374), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6402), 2, + ACTIONS(6378), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6388), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6392), 4, + ACTIONS(6380), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6386), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6382), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5341), 14, + ACTIONS(6384), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5301), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347574,58 +348758,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_xor2, anon_sym_or2, - [123351] = 19, - ACTIONS(251), 1, + [120715] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5475), 1, - sym__newline, - ACTIONS(6364), 1, + ACTIONS(6368), 1, anon_sym_DASH2, - ACTIONS(6378), 1, + ACTIONS(6376), 1, anon_sym_PLUS2, - ACTIONS(6382), 1, - anon_sym_bit_DASHand2, - ACTIONS(6408), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6418), 1, - anon_sym_and2, - ACTIONS(6420), 1, - anon_sym_bit_DASHor2, - STATE(3435), 1, - sym_comment, - STATE(3469), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - ACTIONS(6362), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6368), 2, + STATE(3411), 1, + sym_comment, + ACTIONS(6370), 2, anon_sym_STAR2, anon_sym_SLASH2, ACTIONS(6372), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6374), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6376), 2, + ACTIONS(6374), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6380), 2, + ACTIONS(6378), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6366), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6370), 4, + ACTIONS(6380), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6382), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5345), 13, + ACTIONS(6384), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5301), 20, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -347637,58 +348810,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_and2, anon_sym_xor2, anon_sym_or2, - [123433] = 19, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6386), 1, - anon_sym_DASH2, - ACTIONS(6400), 1, - anon_sym_PLUS2, - ACTIONS(6404), 1, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, - ACTIONS(6406), 1, anon_sym_bit_DASHxor2, - ACTIONS(6410), 1, anon_sym_bit_DASHor2, - ACTIONS(6412), 1, - anon_sym_and2, - ACTIONS(6414), 1, - anon_sym_xor2, - STATE(1800), 1, + [120787] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6368), 1, + anon_sym_DASH2, + ACTIONS(6376), 1, + anon_sym_PLUS2, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(3436), 1, + STATE(3412), 1, sym_comment, - ACTIONS(6384), 2, + ACTIONS(5303), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6390), 2, + ACTIONS(6370), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6394), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6396), 2, + ACTIONS(6372), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6398), 2, + ACTIONS(6374), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6402), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6388), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6392), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5341), 13, + ACTIONS(5301), 32, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347701,107 +348854,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [123515] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3437), 1, - sym_comment, - ACTIONS(6470), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(6468), 28, - sym_raw_string_begin, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - [123567] = 20, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(6364), 1, - anon_sym_DASH2, - ACTIONS(6378), 1, - anon_sym_PLUS2, - ACTIONS(6382), 1, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, - ACTIONS(6408), 1, anon_sym_bit_DASHxor2, - ACTIONS(6418), 1, - anon_sym_and2, - ACTIONS(6420), 1, anon_sym_bit_DASHor2, - ACTIONS(6424), 1, - anon_sym_xor2, - STATE(3438), 1, - sym_comment, - STATE(3471), 1, + [120853] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6368), 1, + anon_sym_DASH2, + ACTIONS(6376), 1, + anon_sym_PLUS2, + STATE(1615), 1, aux_sym_shebang_repeat1, - ACTIONS(6362), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6368), 2, + STATE(3413), 1, + sym_comment, + ACTIONS(6370), 2, anon_sym_STAR2, anon_sym_SLASH2, ACTIONS(6372), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6374), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6376), 2, + ACTIONS(6374), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6380), 2, + ACTIONS(6378), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6366), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6370), 4, + ACTIONS(6380), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6386), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6382), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5345), 12, + ACTIONS(6384), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5301), 18, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -347813,44 +348928,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_and2, + anon_sym_xor2, anon_sym_or2, - [123651] = 13, - ACTIONS(251), 1, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [120927] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6386), 1, + ACTIONS(6368), 1, anon_sym_DASH2, - ACTIONS(6400), 1, + ACTIONS(6376), 1, anon_sym_PLUS2, - STATE(1800), 1, + ACTIONS(6388), 1, + anon_sym_bit_DASHand2, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(3439), 1, + STATE(3414), 1, sym_comment, - ACTIONS(6384), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6390), 2, + ACTIONS(6370), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6396), 2, + ACTIONS(6372), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6398), 2, + ACTIONS(6374), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6402), 2, + ACTIONS(6378), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6388), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6392), 4, + ACTIONS(6380), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6386), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6382), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5341), 20, + ACTIONS(6384), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5301), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347866,50 +348993,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [123721] = 14, - ACTIONS(251), 1, + [121003] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5475), 1, - sym__newline, - ACTIONS(6364), 1, + ACTIONS(6368), 1, anon_sym_DASH2, - ACTIONS(6378), 1, + ACTIONS(6376), 1, anon_sym_PLUS2, - STATE(3440), 1, - sym_comment, - STATE(3472), 1, + ACTIONS(6388), 1, + anon_sym_bit_DASHand2, + ACTIONS(6390), 1, + anon_sym_bit_DASHxor2, + STATE(1615), 1, aux_sym_shebang_repeat1, - ACTIONS(6362), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6368), 2, + STATE(3415), 1, + sym_comment, + ACTIONS(6370), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6374), 2, + ACTIONS(6372), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6376), 2, + ACTIONS(6374), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6380), 2, + ACTIONS(6378), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6366), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6370), 4, + ACTIONS(6380), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6386), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6382), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5345), 19, + ACTIONS(6384), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5301), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -347924,35 +349056,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [123793] = 10, - ACTIONS(251), 1, + [121081] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6386), 1, - anon_sym_DASH2, ACTIONS(6400), 1, + anon_sym_DASH2, + ACTIONS(6408), 1, anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3441), 1, + STATE(3416), 1, sym_comment, - ACTIONS(5343), 2, + ACTIONS(5213), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6390), 2, + ACTIONS(6402), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6396), 2, + ACTIONS(6404), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6398), 2, + ACTIONS(6406), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5341), 30, + ACTIONS(6410), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5211), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347966,10 +349095,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -347978,37 +349110,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [123857] = 11, - ACTIONS(251), 1, + [121147] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5475), 1, - sym__newline, - ACTIONS(6364), 1, - anon_sym_DASH2, - ACTIONS(6378), 1, - anon_sym_PLUS2, - STATE(3442), 1, + STATE(3417), 1, sym_comment, - STATE(3473), 1, - aux_sym_shebang_repeat1, - ACTIONS(5347), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6368), 2, + ACTIONS(6402), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6374), 2, + ACTIONS(6404), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6376), 2, + ACTIONS(6406), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5345), 29, + ACTIONS(5213), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5211), 34, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -348020,11 +349144,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_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -348038,95 +349166,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [123923] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3443), 1, - sym_comment, - ACTIONS(6472), 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_LBRACE, - anon_sym_RBRACE, - [123973] = 15, - ACTIONS(251), 1, + [121207] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5475), 1, - sym__newline, - ACTIONS(6364), 1, + ACTIONS(6400), 1, anon_sym_DASH2, - ACTIONS(6378), 1, + ACTIONS(6408), 1, anon_sym_PLUS2, - STATE(3444), 1, + STATE(3418), 1, sym_comment, - STATE(3474), 1, - aux_sym_shebang_repeat1, - ACTIONS(6362), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6368), 2, + ACTIONS(6402), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6372), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6374), 2, + ACTIONS(6404), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6376), 2, + ACTIONS(6406), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6380), 2, + ACTIONS(6410), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6366), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6370), 4, + ACTIONS(6412), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6414), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5345), 17, + ACTIONS(5211), 27, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -348138,54 +349208,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [124047] = 15, - ACTIONS(251), 1, + [121275] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6386), 1, + STATE(3419), 1, + sym_comment, + ACTIONS(6404), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5213), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5211), 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_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [121331] = 16, + ACTIONS(247), 1, + anon_sym_POUND, ACTIONS(6400), 1, + anon_sym_DASH2, + ACTIONS(6408), 1, anon_sym_PLUS2, - ACTIONS(6404), 1, + ACTIONS(6420), 1, anon_sym_bit_DASHand2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3445), 1, + ACTIONS(6422), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6424), 1, + anon_sym_bit_DASHor2, + STATE(3420), 1, sym_comment, - ACTIONS(6384), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6390), 2, + ACTIONS(6402), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6394), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6396), 2, + ACTIONS(6404), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6398), 2, + ACTIONS(6406), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6402), 2, + ACTIONS(6410), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6388), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6392), 4, + ACTIONS(6412), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6418), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6414), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5341), 17, + ACTIONS(6416), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5211), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -348198,55 +349332,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_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [124121] = 16, - ACTIONS(251), 1, + [121409] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5475), 1, - sym__newline, - ACTIONS(6364), 1, + ACTIONS(6400), 1, anon_sym_DASH2, - ACTIONS(6378), 1, + ACTIONS(6408), 1, anon_sym_PLUS2, - ACTIONS(6382), 1, + ACTIONS(6420), 1, anon_sym_bit_DASHand2, - STATE(3446), 1, + ACTIONS(6422), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6424), 1, + anon_sym_bit_DASHor2, + ACTIONS(6426), 1, + anon_sym_and2, + STATE(3421), 1, sym_comment, - STATE(3475), 1, - aux_sym_shebang_repeat1, - ACTIONS(6362), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6368), 2, + ACTIONS(6402), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6372), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6374), 2, + ACTIONS(6404), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6376), 2, + ACTIONS(6406), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6380), 2, + ACTIONS(6410), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6366), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6370), 4, + ACTIONS(6412), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6418), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6414), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5345), 16, + ACTIONS(6416), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5211), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -348258,55 +349396,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_and2, + anon_sym_RBRACE, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [124197] = 16, - ACTIONS(251), 1, + [121489] = 18, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6386), 1, - anon_sym_DASH2, ACTIONS(6400), 1, + anon_sym_DASH2, + ACTIONS(6408), 1, anon_sym_PLUS2, - ACTIONS(6404), 1, + ACTIONS(6420), 1, anon_sym_bit_DASHand2, - ACTIONS(6406), 1, + ACTIONS(6422), 1, anon_sym_bit_DASHxor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3447), 1, + ACTIONS(6424), 1, + anon_sym_bit_DASHor2, + ACTIONS(6426), 1, + anon_sym_and2, + ACTIONS(6428), 1, + anon_sym_xor2, + STATE(3422), 1, sym_comment, - ACTIONS(6384), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6390), 2, + ACTIONS(6402), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6394), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6396), 2, + ACTIONS(6404), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6398), 2, + ACTIONS(6406), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6402), 2, + ACTIONS(6410), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6388), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6392), 4, + ACTIONS(6412), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6418), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6414), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5341), 16, + ACTIONS(6416), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5211), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -348319,110 +349461,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_and2, - anon_sym_xor2, + anon_sym_RBRACE, anon_sym_or2, - anon_sym_bit_DASHor2, - [124273] = 10, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6282), 1, - anon_sym_list, - ACTIONS(6466), 1, - anon_sym_AT, - ACTIONS(6474), 1, - anon_sym_GT2, - STATE(3448), 1, - sym_comment, - STATE(6880), 1, - sym__all_type, - STATE(7482), 1, - sym_param_cmd, - ACTIONS(6280), 2, - anon_sym_table, - anon_sym_record, - STATE(7443), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6278), 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, - [124337] = 17, - ACTIONS(251), 1, + [121571] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5475), 1, - sym__newline, - ACTIONS(6364), 1, + ACTIONS(6400), 1, anon_sym_DASH2, - ACTIONS(6378), 1, - anon_sym_PLUS2, - ACTIONS(6382), 1, - anon_sym_bit_DASHand2, ACTIONS(6408), 1, - anon_sym_bit_DASHxor2, - STATE(3449), 1, + anon_sym_PLUS2, + STATE(3423), 1, sym_comment, - STATE(3476), 1, - aux_sym_shebang_repeat1, - ACTIONS(6362), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6368), 2, + ACTIONS(6402), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6372), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6374), 2, + ACTIONS(6404), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6376), 2, + ACTIONS(6406), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6380), 2, + ACTIONS(6410), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6366), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6370), 4, + ACTIONS(6412), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6414), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5345), 15, + ACTIONS(6416), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5211), 21, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -348434,39 +349512,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_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [124415] = 12, - ACTIONS(251), 1, + [121641] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5355), 1, - sym__newline, - ACTIONS(6364), 1, + ACTIONS(6400), 1, anon_sym_DASH2, - ACTIONS(6378), 1, + ACTIONS(6408), 1, anon_sym_PLUS2, - STATE(3450), 1, + STATE(3424), 1, sym_comment, - STATE(3477), 1, - aux_sym_shebang_repeat1, - ACTIONS(5315), 2, + ACTIONS(5213), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6368), 2, + ACTIONS(6402), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6374), 2, + ACTIONS(6404), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6376), 2, + ACTIONS(6406), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6380), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5313), 27, + ACTIONS(5211), 33, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -348479,10 +349556,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -348491,32 +349571,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [124483] = 9, - ACTIONS(251), 1, + [121705] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5355), 1, - sym__newline, - STATE(3451), 1, + ACTIONS(6400), 1, + anon_sym_DASH2, + ACTIONS(6408), 1, + anon_sym_PLUS2, + STATE(3425), 1, sym_comment, - STATE(3479), 1, - aux_sym_shebang_repeat1, - ACTIONS(6368), 2, + ACTIONS(6402), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6374), 2, + ACTIONS(6404), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6376), 2, + ACTIONS(6406), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5315), 3, + ACTIONS(6410), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6412), 2, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5313), 30, + ACTIONS(6418), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6414), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6416), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5211), 19, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -348528,59 +349628,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_DASH2, - anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [124545] = 13, - ACTIONS(251), 1, + [121777] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5355), 1, - sym__newline, - ACTIONS(6364), 1, + ACTIONS(6400), 1, anon_sym_DASH2, - ACTIONS(6378), 1, + ACTIONS(6408), 1, anon_sym_PLUS2, - STATE(3452), 1, + ACTIONS(6420), 1, + anon_sym_bit_DASHand2, + STATE(3426), 1, sym_comment, - STATE(3481), 1, - aux_sym_shebang_repeat1, - ACTIONS(6362), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6368), 2, + ACTIONS(6402), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6374), 2, + ACTIONS(6404), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6376), 2, + ACTIONS(6406), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6380), 2, + ACTIONS(6410), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6370), 4, + ACTIONS(6412), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6418), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6414), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5313), 23, + ACTIONS(6416), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5211), 18, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -348592,37 +349689,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_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [124615] = 7, - ACTIONS(251), 1, + [121851] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5355), 1, - sym__newline, - STATE(3453), 1, + ACTIONS(6400), 1, + anon_sym_DASH2, + ACTIONS(6408), 1, + anon_sym_PLUS2, + ACTIONS(6420), 1, + anon_sym_bit_DASHand2, + ACTIONS(6422), 1, + anon_sym_bit_DASHxor2, + STATE(3427), 1, sym_comment, - STATE(3483), 1, - aux_sym_shebang_repeat1, - ACTIONS(6374), 2, + ACTIONS(6402), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6404), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5315), 5, + ACTIONS(6406), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6410), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6412), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5313), 32, + ACTIONS(6418), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6414), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6416), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5211), 17, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -348634,38 +349751,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [124673] = 3, - ACTIONS(251), 1, + [121927] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3454), 1, + STATE(3428), 1, sym_comment, - ACTIONS(6476), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(982), 14, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_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, + aux_sym_unquoted_token1, + ACTIONS(984), 29, + sym_raw_string_begin, anon_sym_LBRACK, - anon_sym_RPAREN, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [121981] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6311), 1, + anon_sym_list, + ACTIONS(6430), 1, + sym__newline, + ACTIONS(6432), 1, + anon_sym_RBRACK, + STATE(3429), 1, + sym_comment, + STATE(3460), 1, + aux_sym_shebang_repeat1, + STATE(3539), 1, + aux_sym__multiple_types_repeat2, + STATE(7167), 1, + sym__one_type, + STATE(7827), 1, + sym__type_annotation, + ACTIONS(6309), 2, + anon_sym_table, + anon_sym_record, + STATE(6434), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6307), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -348695,241 +349862,220 @@ 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, - anon_sym_LBRACE, - anon_sym_RBRACE, - [124723] = 18, - ACTIONS(251), 1, + [122051] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5355), 1, - sym__newline, - ACTIONS(6364), 1, - anon_sym_DASH2, - ACTIONS(6378), 1, - anon_sym_PLUS2, - ACTIONS(6382), 1, - anon_sym_bit_DASHand2, - ACTIONS(6408), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6420), 1, - anon_sym_bit_DASHor2, - STATE(3455), 1, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + ACTIONS(3618), 1, + anon_sym_DOLLAR, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(6434), 1, + anon_sym_DOT, + ACTIONS(6438), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6440), 1, + aux_sym__immediate_decimal_token5, + STATE(3430), 1, sym_comment, - STATE(3486), 1, - aux_sym_shebang_repeat1, - ACTIONS(6362), 2, + STATE(3598), 1, + sym__immediate_decimal, + ACTIONS(6436), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1693), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1441), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6368), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6372), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6374), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6376), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6380), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6366), 4, + anon_sym_PLUS2, + ACTIONS(1455), 26, + sym__newline, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6370), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5313), 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, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [124803] = 19, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5355), 1, - sym__newline, - ACTIONS(6364), 1, - anon_sym_DASH2, - ACTIONS(6378), 1, - anon_sym_PLUS2, - ACTIONS(6382), 1, - anon_sym_bit_DASHand2, - ACTIONS(6408), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6418), 1, - anon_sym_and2, - ACTIONS(6420), 1, - anon_sym_bit_DASHor2, - STATE(3456), 1, - sym_comment, - STATE(3488), 1, - aux_sym_shebang_repeat1, - ACTIONS(6362), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6368), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6372), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6374), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6376), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6380), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6366), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6370), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5313), 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, - anon_sym_xor2, - anon_sym_or2, - [124885] = 20, - ACTIONS(251), 1, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [122123] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3431), 1, + sym_comment, + ACTIONS(978), 14, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_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, + aux_sym_unquoted_token1, + ACTIONS(980), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [122177] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3432), 1, + sym_comment, + ACTIONS(974), 14, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_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, + aux_sym_unquoted_token1, + ACTIONS(976), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [122231] = 19, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(6364), 1, + ACTIONS(6368), 1, anon_sym_DASH2, - ACTIONS(6378), 1, + ACTIONS(6376), 1, anon_sym_PLUS2, - ACTIONS(6382), 1, + ACTIONS(6388), 1, anon_sym_bit_DASHand2, - ACTIONS(6408), 1, + ACTIONS(6390), 1, anon_sym_bit_DASHxor2, - ACTIONS(6418), 1, - anon_sym_and2, - ACTIONS(6420), 1, + ACTIONS(6392), 1, anon_sym_bit_DASHor2, - ACTIONS(6424), 1, + ACTIONS(6394), 1, + anon_sym_and2, + ACTIONS(6396), 1, anon_sym_xor2, - STATE(3457), 1, - sym_comment, - STATE(3490), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - ACTIONS(6362), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6368), 2, + STATE(3433), 1, + sym_comment, + ACTIONS(6370), 2, anon_sym_STAR2, anon_sym_SLASH2, ACTIONS(6372), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6374), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6376), 2, + ACTIONS(6374), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6380), 2, + ACTIONS(6378), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6366), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6370), 4, + ACTIONS(6380), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6386), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6382), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5313), 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_or2, - [124969] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5355), 1, - sym__newline, - ACTIONS(6364), 1, - anon_sym_DASH2, - ACTIONS(6378), 1, - anon_sym_PLUS2, - STATE(3458), 1, - sym_comment, - STATE(3492), 1, - aux_sym_shebang_repeat1, - ACTIONS(6362), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6368), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6374), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6376), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6380), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6366), 4, + ACTIONS(6384), 6, anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6370), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5313), 19, + ACTIONS(5243), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -348941,40 +350087,854 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [125041] = 11, - ACTIONS(251), 1, + [122315] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5355), 1, - sym__newline, - ACTIONS(6364), 1, + STATE(3434), 1, + sym_comment, + ACTIONS(2457), 13, + anon_sym_DOLLAR, anon_sym_DASH2, - ACTIONS(6378), 1, - anon_sym_PLUS2, - STATE(3459), 1, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(2459), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [122368] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3435), 1, sym_comment, - STATE(3495), 1, - aux_sym_shebang_repeat1, - ACTIONS(5315), 2, + ACTIONS(1901), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(1903), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [122421] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3436), 1, + sym_comment, + ACTIONS(2389), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(2391), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [122474] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3437), 1, + sym_comment, + ACTIONS(2393), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(2395), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [122527] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3438), 1, + sym_comment, + ACTIONS(1889), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(1891), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [122580] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3439), 1, + sym_comment, + ACTIONS(2421), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(2423), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [122633] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3440), 1, + sym_comment, + ACTIONS(2437), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(2439), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [122686] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3441), 1, + sym_comment, + ACTIONS(5026), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(5024), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [122739] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3442), 1, + sym_comment, + ACTIONS(2429), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [122792] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3443), 1, + sym_comment, + ACTIONS(5140), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(5138), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [122845] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3444), 1, + sym_comment, + ACTIONS(5132), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(5130), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [122898] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3445), 1, + sym_comment, + ACTIONS(5144), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(5142), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [122951] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3446), 1, + sym_comment, + ACTIONS(1002), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(998), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [123004] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3447), 1, + sym_comment, + ACTIONS(5124), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(5122), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [123057] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3448), 1, + sym_comment, + ACTIONS(5136), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(5134), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [123110] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3449), 1, + sym_comment, + ACTIONS(2413), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(2415), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [123163] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3450), 1, + sym_comment, + ACTIONS(5128), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(5126), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [123216] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3451), 1, + sym_comment, + ACTIONS(2385), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6368), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6374), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6376), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5313), 29, + anon_sym_PLUS2, + ACTIONS(5084), 12, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -348985,12 +350945,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, + ACTIONS(2387), 25, + anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -348999,114 +350962,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [125107] = 15, - ACTIONS(251), 1, + [123271] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5355), 1, - sym__newline, - ACTIONS(6364), 1, - anon_sym_DASH2, - ACTIONS(6378), 1, - anon_sym_PLUS2, - STATE(3460), 1, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + ACTIONS(3618), 1, + anon_sym_DOLLAR, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(6442), 1, + anon_sym_DOT, + ACTIONS(6446), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6448), 1, + aux_sym__immediate_decimal_token5, + STATE(3452), 1, sym_comment, - STATE(3497), 1, - aux_sym_shebang_repeat1, - ACTIONS(6362), 2, + STATE(3618), 1, + sym__immediate_decimal, + ACTIONS(6444), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3660), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1441), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6368), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6372), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6374), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6376), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6380), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6366), 4, + anon_sym_PLUS2, + ACTIONS(1455), 25, anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6370), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5313), 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, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [125181] = 16, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5355), 1, - sym__newline, - ACTIONS(6364), 1, - anon_sym_DASH2, - ACTIONS(6378), 1, - anon_sym_PLUS2, - ACTIONS(6382), 1, - anon_sym_bit_DASHand2, - STATE(3461), 1, - sym_comment, - STATE(3499), 1, - aux_sym_shebang_repeat1, - ACTIONS(6362), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6368), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6372), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6374), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6376), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6380), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6366), 4, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [123342] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3453), 1, + sym_comment, + ACTIONS(5120), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(5118), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [123395] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1562), 1, + aux_sym_unquoted_token2, + ACTIONS(3618), 1, + anon_sym_DOLLAR, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(6452), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6454), 1, + aux_sym__immediate_decimal_token5, + STATE(3454), 1, + sym_comment, + STATE(3641), 1, + sym__immediate_decimal, + ACTIONS(6450), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1823), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1558), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1560), 26, + sym__newline, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6370), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5313), 16, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [123464] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3455), 1, + sym_comment, + ACTIONS(2073), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2077), 37, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -349117,58 +351159,143 @@ static const uint16_t 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_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [125257] = 17, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5355), 1, - sym__newline, - ACTIONS(6364), 1, - anon_sym_DASH2, - ACTIONS(6378), 1, - anon_sym_PLUS2, - ACTIONS(6382), 1, - anon_sym_bit_DASHand2, - ACTIONS(6408), 1, - anon_sym_bit_DASHxor2, - STATE(3381), 1, - aux_sym_shebang_repeat1, - STATE(3462), 1, - sym_comment, - ACTIONS(6362), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6368), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6372), 2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6374), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6376), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6380), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6366), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6370), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5313), 15, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [123517] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3456), 1, + sym_comment, + ACTIONS(1917), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(1919), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [123570] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3457), 1, + sym_comment, + ACTIONS(2385), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(2387), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [123623] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3458), 1, + sym_comment, + ACTIONS(2081), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2083), 37, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -349179,34 +351306,105 @@ static const uint16_t 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_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [125335] = 10, - ACTIONS(251), 1, + [123676] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3459), 1, + sym_comment, + ACTIONS(960), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(962), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [123729] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6282), 1, + ACTIONS(6311), 1, anon_sym_list, - ACTIONS(6466), 1, - anon_sym_AT, - ACTIONS(6478), 1, - anon_sym_GT2, - STATE(3463), 1, + ACTIONS(6430), 1, + sym__newline, + STATE(3460), 1, sym_comment, - STATE(6825), 1, - sym__all_type, - STATE(7760), 1, - sym_param_cmd, - ACTIONS(6280), 2, + STATE(3533), 1, + aux_sym__multiple_types_repeat2, + STATE(3614), 1, + aux_sym_shebang_repeat1, + STATE(6815), 1, + sym__one_type, + STATE(7827), 1, + sym__type_annotation, + ACTIONS(6309), 2, anon_sym_table, anon_sym_record, - STATE(7443), 3, + STATE(6434), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6278), 31, + ACTIONS(6307), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -349238,33 +351436,914 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [125399] = 11, - ACTIONS(251), 1, + [123796] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3461), 1, + sym_comment, + ACTIONS(964), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(966), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [123849] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3462), 1, + sym_comment, + ACTIONS(956), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(958), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [123902] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3463), 1, + sym_comment, + ACTIONS(2322), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(2324), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [123955] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3464), 1, + sym_comment, + ACTIONS(1961), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(1963), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [124008] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3465), 1, + sym_comment, + ACTIONS(2326), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(2328), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [124061] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3466), 1, + sym_comment, + ACTIONS(2334), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(2336), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [124114] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3467), 1, + sym_comment, + ACTIONS(2445), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(2447), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [124167] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3468), 1, + sym_comment, + ACTIONS(1639), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(1651), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [124220] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3469), 1, + sym_comment, + ACTIONS(2306), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(2308), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [124273] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3470), 1, + sym_comment, + ACTIONS(986), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [124326] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3471), 1, + sym_comment, + ACTIONS(946), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(948), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [124379] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3472), 1, + sym_comment, + ACTIONS(6458), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(6456), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [124432] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3473), 1, + sym_comment, + ACTIONS(1839), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(1841), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [124485] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3474), 1, + sym_comment, + ACTIONS(2489), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(2491), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [124538] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3475), 1, + sym_comment, + ACTIONS(2407), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(2409), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [124591] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3476), 1, + sym_comment, + ACTIONS(1877), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(1879), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [124644] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3477), 1, + sym_comment, + ACTIONS(1833), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(1835), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [124697] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6386), 1, + STATE(3478), 1, + sym_comment, + ACTIONS(1861), 13, + anon_sym_DOLLAR, anon_sym_DASH2, - ACTIONS(6400), 1, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(1863), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [124750] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6460), 1, + anon_sym_DASH2, + ACTIONS(6468), 1, anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3464), 1, + STATE(3479), 1, sym_comment, - ACTIONS(5303), 2, + ACTIONS(5213), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6390), 2, + ACTIONS(6462), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6396), 2, + ACTIONS(6464), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6398), 2, + ACTIONS(6466), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6402), 2, + ACTIONS(6470), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5301), 28, + ACTIONS(5211), 30, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -349276,12 +352355,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_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -349293,27 +352373,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [125465] = 8, - ACTIONS(251), 1, + [124815] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3465), 1, + STATE(3480), 1, sym_comment, - ACTIONS(6390), 2, + ACTIONS(6462), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6396), 2, + ACTIONS(6464), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6398), 2, + ACTIONS(6466), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5303), 3, + ACTIONS(5213), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5301), 31, + ACTIONS(5211), 33, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -349325,13 +352404,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_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -349345,38 +352425,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [125525] = 12, - ACTIONS(251), 1, + [124874] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6386), 1, + ACTIONS(6460), 1, anon_sym_DASH2, - ACTIONS(6400), 1, + ACTIONS(6468), 1, anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3466), 1, + STATE(3481), 1, sym_comment, - ACTIONS(6384), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6390), 2, + ACTIONS(6462), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6396), 2, + ACTIONS(6464), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6398), 2, + ACTIONS(6466), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6402), 2, + ACTIONS(6470), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6392), 4, + ACTIONS(6472), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6474), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5301), 24, + ACTIONS(5211), 26, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -349388,12 +352467,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_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_TILDE2, @@ -349401,23 +352481,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [125593] = 6, - ACTIONS(251), 1, + [124941] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3467), 1, + STATE(3482), 1, sym_comment, - ACTIONS(6396), 2, + ACTIONS(6464), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5303), 5, + ACTIONS(5213), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5301), 33, + ACTIONS(5211), 35, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -349429,13 +352508,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_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -349451,52 +352531,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [125649] = 17, - ACTIONS(251), 1, + [124996] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6386), 1, + ACTIONS(6460), 1, anon_sym_DASH2, - ACTIONS(6400), 1, + ACTIONS(6468), 1, anon_sym_PLUS2, - ACTIONS(6404), 1, + ACTIONS(6480), 1, anon_sym_bit_DASHand2, - ACTIONS(6406), 1, + ACTIONS(6482), 1, anon_sym_bit_DASHxor2, - ACTIONS(6410), 1, + ACTIONS(6484), 1, anon_sym_bit_DASHor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3468), 1, + STATE(3483), 1, sym_comment, - ACTIONS(6384), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6390), 2, + ACTIONS(6462), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6394), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6396), 2, + ACTIONS(6464), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6398), 2, + ACTIONS(6466), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6402), 2, + ACTIONS(6470), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6388), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6392), 4, + ACTIONS(6472), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6478), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6474), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5301), 15, + ACTIONS(6476), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5211), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -349508,58 +352589,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_and2, anon_sym_xor2, anon_sym_or2, - [125727] = 18, - ACTIONS(251), 1, + [125073] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6386), 1, + ACTIONS(6460), 1, anon_sym_DASH2, - ACTIONS(6400), 1, + ACTIONS(6468), 1, anon_sym_PLUS2, - ACTIONS(6404), 1, + ACTIONS(6480), 1, anon_sym_bit_DASHand2, - ACTIONS(6406), 1, + ACTIONS(6482), 1, anon_sym_bit_DASHxor2, - ACTIONS(6410), 1, + ACTIONS(6484), 1, anon_sym_bit_DASHor2, - ACTIONS(6412), 1, + ACTIONS(6486), 1, anon_sym_and2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3469), 1, + STATE(3484), 1, sym_comment, - ACTIONS(6384), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6390), 2, + ACTIONS(6462), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6394), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6396), 2, + ACTIONS(6464), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6398), 2, + ACTIONS(6466), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6402), 2, + ACTIONS(6470), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6388), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6392), 4, + ACTIONS(6472), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6478), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6474), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5301), 14, + ACTIONS(6476), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5211), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -349571,21 +352652,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_RPAREN, anon_sym_xor2, anon_sym_or2, - [125807] = 5, - ACTIONS(251), 1, + [125152] = 18, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3470), 1, + ACTIONS(6460), 1, + anon_sym_DASH2, + ACTIONS(6468), 1, + anon_sym_PLUS2, + ACTIONS(6480), 1, + anon_sym_bit_DASHand2, + ACTIONS(6482), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6484), 1, + anon_sym_bit_DASHor2, + ACTIONS(6486), 1, + anon_sym_and2, + ACTIONS(6488), 1, + anon_sym_xor2, + STATE(3485), 1, sym_comment, - ACTIONS(2446), 5, - anon_sym_GT2, + ACTIONS(6462), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5043), 13, + ACTIONS(6464), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6466), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6470), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6472), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6478), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6474), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6476), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5211), 13, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -349597,15 +352716,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, - ACTIONS(2448), 23, + anon_sym_or2, + [125233] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + ACTIONS(3618), 1, + anon_sym_DOLLAR, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(6452), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6454), 1, + aux_sym__immediate_decimal_token5, + STATE(3486), 1, + sym_comment, + STATE(3645), 1, + sym__immediate_decimal, + ACTIONS(6450), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1780), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1441), 6, + anon_sym_GT2, anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1455), 26, + sym__newline, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -349623,56 +352774,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [125861] = 19, - ACTIONS(251), 1, + [125302] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6386), 1, + ACTIONS(6460), 1, anon_sym_DASH2, - ACTIONS(6400), 1, + ACTIONS(6468), 1, anon_sym_PLUS2, - ACTIONS(6404), 1, - anon_sym_bit_DASHand2, - ACTIONS(6406), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6410), 1, - anon_sym_bit_DASHor2, - ACTIONS(6412), 1, - anon_sym_and2, - ACTIONS(6414), 1, - anon_sym_xor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3471), 1, + STATE(3487), 1, sym_comment, - ACTIONS(6384), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6390), 2, + ACTIONS(6462), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6394), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6396), 2, + ACTIONS(6464), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6398), 2, + ACTIONS(6466), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6402), 2, + ACTIONS(6470), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6388), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6392), 4, + ACTIONS(6472), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6474), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5301), 13, + ACTIONS(6476), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5211), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -349684,45 +352823,109 @@ static const uint16_t 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_and2, + anon_sym_xor2, anon_sym_or2, - [125943] = 13, - ACTIONS(251), 1, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [125371] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6386), 1, + ACTIONS(6460), 1, anon_sym_DASH2, - ACTIONS(6400), 1, + ACTIONS(6468), 1, anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3472), 1, + STATE(3488), 1, sym_comment, - ACTIONS(6384), 2, + ACTIONS(5213), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6390), 2, + ACTIONS(6462), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6396), 2, + ACTIONS(6464), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6398), 2, + ACTIONS(6466), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6402), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6388), 4, + ACTIONS(5211), 32, + 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_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6392), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5301), 20, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [125434] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6460), 1, + anon_sym_DASH2, + ACTIONS(6468), 1, + anon_sym_PLUS2, + STATE(3489), 1, + sym_comment, + ACTIONS(6462), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6464), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6466), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6470), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6472), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6478), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6474), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6476), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5211), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -349734,39 +352937,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_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [126013] = 10, - ACTIONS(251), 1, + [125505] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6386), 1, + ACTIONS(6460), 1, anon_sym_DASH2, - ACTIONS(6400), 1, + ACTIONS(6468), 1, anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3473), 1, + ACTIONS(6480), 1, + anon_sym_bit_DASHand2, + STATE(3490), 1, sym_comment, - ACTIONS(5303), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6390), 2, + ACTIONS(6462), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6396), 2, + ACTIONS(6464), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6398), 2, + ACTIONS(6466), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5301), 30, + ACTIONS(6470), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6472), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6478), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6474), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6476), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5211), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -349778,65 +352997,56 @@ static const uint16_t 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_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [126077] = 14, - ACTIONS(251), 1, + [125578] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6386), 1, + ACTIONS(6460), 1, anon_sym_DASH2, - ACTIONS(6400), 1, + ACTIONS(6468), 1, anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3474), 1, + ACTIONS(6480), 1, + anon_sym_bit_DASHand2, + ACTIONS(6482), 1, + anon_sym_bit_DASHxor2, + STATE(3491), 1, sym_comment, - ACTIONS(6384), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6390), 2, + ACTIONS(6462), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6394), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6396), 2, + ACTIONS(6464), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6398), 2, + ACTIONS(6466), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6402), 2, + ACTIONS(6470), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6388), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6392), 4, + ACTIONS(6472), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6478), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6474), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5301), 18, + ACTIONS(6476), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5211), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -349848,176 +353058,880 @@ static const uint16_t 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_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [126149] = 15, - ACTIONS(251), 1, + [125653] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3492), 1, + sym_comment, + ACTIONS(5058), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(5056), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [125706] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3493), 1, + sym_comment, + ACTIONS(2318), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(2320), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [125759] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3494), 1, + sym_comment, + ACTIONS(5152), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(5150), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [125812] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3495), 1, + sym_comment, + ACTIONS(2441), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [125865] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3496), 1, + sym_comment, + ACTIONS(2441), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [125918] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3497), 1, + sym_comment, + ACTIONS(2364), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(2366), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [125971] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3498), 1, + sym_comment, + ACTIONS(2461), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(2463), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [126024] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3499), 1, + sym_comment, + ACTIONS(2477), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(2479), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [126077] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3500), 1, + sym_comment, + ACTIONS(2338), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(2340), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [126130] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3501), 1, + sym_comment, + ACTIONS(2344), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(2346), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [126183] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3502), 1, + sym_comment, + ACTIONS(5148), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(5146), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [126236] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3503), 1, + sym_comment, + ACTIONS(2310), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(2312), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [126289] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3504), 1, + sym_comment, + ACTIONS(1885), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(1887), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [126342] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3505), 1, + sym_comment, + ACTIONS(2314), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(2316), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [126395] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3506), 1, + sym_comment, + ACTIONS(2330), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(2332), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [126448] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6386), 1, - anon_sym_DASH2, - ACTIONS(6400), 1, - anon_sym_PLUS2, - ACTIONS(6404), 1, - anon_sym_bit_DASHand2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3475), 1, + STATE(3507), 1, sym_comment, - ACTIONS(6384), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6390), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6394), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6396), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6398), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6402), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6388), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6392), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5301), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [126223] = 16, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6386), 1, + ACTIONS(1905), 13, + anon_sym_DOLLAR, anon_sym_DASH2, - ACTIONS(6400), 1, - anon_sym_PLUS2, - ACTIONS(6404), 1, - anon_sym_bit_DASHand2, - ACTIONS(6406), 1, - anon_sym_bit_DASHxor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3476), 1, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(1907), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [126501] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3508), 1, sym_comment, - ACTIONS(6384), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6390), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6394), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6396), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6398), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6402), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6388), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6392), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5301), 16, + ACTIONS(6490), 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [126299] = 11, - ACTIONS(251), 1, + 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_LBRACE, + anon_sym_RBRACE, + [126551] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6386), 1, - anon_sym_DASH2, - ACTIONS(6400), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3477), 1, + ACTIONS(3618), 1, + anon_sym_DOLLAR, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(4209), 1, + anon_sym_DOT, + ACTIONS(6446), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6448), 1, + aux_sym__immediate_decimal_token5, + STATE(3509), 1, sym_comment, - ACTIONS(5325), 2, + STATE(3651), 1, + sym__immediate_decimal, + ACTIONS(6444), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3660), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1441), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6390), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6396), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6398), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6402), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5323), 28, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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_PLUS2, + ACTIONS(1455), 25, anon_sym_in2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -350026,157 +353940,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [126365] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5460), 1, - sym__newline, - ACTIONS(6364), 1, - anon_sym_DASH2, - ACTIONS(6378), 1, - anon_sym_PLUS2, - STATE(3383), 1, - aux_sym_shebang_repeat1, - STATE(3478), 1, - sym_comment, - ACTIONS(5339), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6368), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6374), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6376), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6380), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5337), 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_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [126433] = 8, - ACTIONS(251), 1, + [126619] = 10, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3479), 1, - sym_comment, - ACTIONS(6390), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6396), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6398), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5325), 3, + ACTIONS(6311), 1, + anon_sym_list, + ACTIONS(6492), 1, anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5323), 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [126493] = 9, - ACTIONS(251), 1, + ACTIONS(6494), 1, + anon_sym_AT, + STATE(3510), 1, + sym_comment, + STATE(7232), 1, + sym__all_type, + STATE(7748), 1, + sym_param_cmd, + ACTIONS(6309), 2, + anon_sym_table, + anon_sym_record, + STATE(7330), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6307), 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, + [126683] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5460), 1, - sym__newline, - STATE(3384), 1, - aux_sym_shebang_repeat1, - STATE(3480), 1, + ACTIONS(3618), 1, + anon_sym_DOLLAR, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(4447), 1, + anon_sym_DOT, + ACTIONS(6446), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6448), 1, + aux_sym__immediate_decimal_token5, + STATE(3511), 1, sym_comment, - ACTIONS(6368), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6374), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6376), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5339), 3, + STATE(3659), 1, + sym__immediate_decimal, + ACTIONS(6444), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3658), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1522), 6, anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5337), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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_DASH2, + ACTIONS(1532), 25, anon_sym_in2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -350185,159 +354050,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [126555] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6386), 1, - anon_sym_DASH2, - ACTIONS(6400), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3481), 1, - sym_comment, - ACTIONS(6384), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6390), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6396), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6398), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6402), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6392), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5323), 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_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [126623] = 13, - ACTIONS(251), 1, + [126751] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5460), 1, - sym__newline, - ACTIONS(6364), 1, - anon_sym_DASH2, - ACTIONS(6378), 1, - anon_sym_PLUS2, - STATE(3385), 1, - aux_sym_shebang_repeat1, - STATE(3482), 1, + ACTIONS(6311), 1, + anon_sym_list, + ACTIONS(6494), 1, + anon_sym_AT, + ACTIONS(6496), 1, + anon_sym_GT2, + STATE(3512), 1, sym_comment, - ACTIONS(6362), 2, + STATE(6838), 1, + sym__all_type, + STATE(7532), 1, + sym_param_cmd, + ACTIONS(6309), 2, + anon_sym_table, + anon_sym_record, + STATE(7330), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6307), 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, + [126815] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6311), 1, + anon_sym_list, + ACTIONS(6494), 1, + anon_sym_AT, + ACTIONS(6498), 1, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6368), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6374), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6376), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6380), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6370), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5337), 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_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [126693] = 6, - ACTIONS(251), 1, + STATE(3513), 1, + sym_comment, + STATE(6779), 1, + sym__all_type, + STATE(7462), 1, + sym_param_cmd, + ACTIONS(6309), 2, + anon_sym_table, + anon_sym_record, + STATE(7330), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6307), 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, + [126879] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3483), 1, + ACTIONS(6500), 1, + anon_sym_DOT, + ACTIONS(6502), 1, + aux_sym__immediate_decimal_token2, + STATE(3514), 1, sym_comment, - ACTIONS(6396), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5325), 5, + ACTIONS(1512), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5323), 33, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1514), 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_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -350346,6 +354204,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -350353,42 +354214,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [126749] = 7, - ACTIONS(251), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [126935] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5460), 1, - sym__newline, - STATE(3386), 1, - aux_sym_shebang_repeat1, - STATE(3484), 1, + STATE(3515), 1, sym_comment, - ACTIONS(6374), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5339), 5, + ACTIONS(6506), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(6504), 28, + sym_raw_string_begin, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [126987] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1562), 1, + aux_sym_unquoted_token2, + ACTIONS(3618), 1, + anon_sym_DOLLAR, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(6510), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6512), 1, + aux_sym__immediate_decimal_token5, + STATE(3516), 1, + sym_comment, + STATE(3735), 1, + sym__immediate_decimal, + ACTIONS(6508), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1823), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1558), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5337), 32, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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_DASH2, + ACTIONS(1560), 25, anon_sym_in2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -350397,6 +354312,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -350404,12 +354321,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [126807] = 3, - ACTIONS(251), 1, + [127055] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3485), 1, + STATE(3517), 1, sym_comment, - ACTIONS(6480), 41, + ACTIONS(6514), 41, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -350451,502 +354368,313 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_list, anon_sym_LBRACE, anon_sym_RBRACE, - [126857] = 17, - ACTIONS(251), 1, + [127105] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6386), 1, - anon_sym_DASH2, - ACTIONS(6400), 1, - anon_sym_PLUS2, - ACTIONS(6404), 1, - anon_sym_bit_DASHand2, - ACTIONS(6406), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6410), 1, - anon_sym_bit_DASHor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3486), 1, + STATE(3518), 1, sym_comment, - ACTIONS(6384), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6390), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6394), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6396), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6398), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6402), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6388), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6392), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5323), 15, + ACTIONS(6516), 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_and2, - anon_sym_xor2, - anon_sym_or2, - [126935] = 18, - ACTIONS(251), 1, + 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_LBRACE, + anon_sym_RBRACE, + [127155] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5460), 1, - sym__newline, - ACTIONS(6364), 1, - anon_sym_DASH2, - ACTIONS(6378), 1, - anon_sym_PLUS2, - ACTIONS(6382), 1, - anon_sym_bit_DASHand2, - ACTIONS(6408), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6420), 1, - anon_sym_bit_DASHor2, - STATE(3387), 1, - aux_sym_shebang_repeat1, - STATE(3487), 1, + ACTIONS(6518), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6520), 1, + aux_sym__immediate_decimal_token2, + STATE(3519), 1, sym_comment, - ACTIONS(6362), 2, + ACTIONS(1504), 8, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6368), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6372), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6374), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6376), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6380), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6366), 4, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1506), 31, + sym__newline, + anon_sym_DASH2, anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6370), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5337), 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, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [127015] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6386), 1, - anon_sym_DASH2, - ACTIONS(6400), 1, - anon_sym_PLUS2, - ACTIONS(6404), 1, - anon_sym_bit_DASHand2, - ACTIONS(6406), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6410), 1, - anon_sym_bit_DASHor2, - ACTIONS(6412), 1, - anon_sym_and2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3488), 1, - sym_comment, - ACTIONS(6384), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6390), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6394), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6396), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6398), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6402), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6388), 4, - anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6392), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5323), 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_xor2, - anon_sym_or2, - [127095] = 19, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5460), 1, - sym__newline, - ACTIONS(6364), 1, - anon_sym_DASH2, - ACTIONS(6378), 1, - anon_sym_PLUS2, - ACTIONS(6382), 1, - anon_sym_bit_DASHand2, - ACTIONS(6408), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6418), 1, - anon_sym_and2, - ACTIONS(6420), 1, - anon_sym_bit_DASHor2, - STATE(3388), 1, - aux_sym_shebang_repeat1, - STATE(3489), 1, - sym_comment, - ACTIONS(6362), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6368), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6372), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6374), 2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6376), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6380), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6366), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6370), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5337), 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, - anon_sym_xor2, - anon_sym_or2, - [127177] = 19, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6386), 1, - anon_sym_DASH2, - ACTIONS(6400), 1, - anon_sym_PLUS2, - ACTIONS(6404), 1, anon_sym_bit_DASHand2, - ACTIONS(6406), 1, anon_sym_bit_DASHxor2, - ACTIONS(6410), 1, anon_sym_bit_DASHor2, - ACTIONS(6412), 1, - anon_sym_and2, - ACTIONS(6414), 1, - anon_sym_xor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3490), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [127211] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3520), 1, sym_comment, - ACTIONS(6384), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6390), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6394), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6396), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6398), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6402), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6388), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6392), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5323), 13, + ACTIONS(6522), 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_or2, - [127259] = 20, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(6364), 1, - anon_sym_DASH2, - ACTIONS(6378), 1, - anon_sym_PLUS2, - ACTIONS(6382), 1, - anon_sym_bit_DASHand2, - ACTIONS(6408), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6418), 1, - anon_sym_and2, - ACTIONS(6420), 1, - anon_sym_bit_DASHor2, - ACTIONS(6424), 1, - anon_sym_xor2, - STATE(3389), 1, - aux_sym_shebang_repeat1, - STATE(3491), 1, - sym_comment, - ACTIONS(6362), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6368), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6372), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6374), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6376), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6380), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6366), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6370), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5337), 12, + 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_LBRACE, + anon_sym_RBRACE, + [127261] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3521), 1, + sym_comment, + ACTIONS(6524), 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_or2, - [127343] = 13, - ACTIONS(251), 1, + 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_LBRACE, + anon_sym_RBRACE, + [127311] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6386), 1, - anon_sym_DASH2, - ACTIONS(6400), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3492), 1, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + ACTIONS(3618), 1, + anon_sym_DOLLAR, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(6510), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6512), 1, + aux_sym__immediate_decimal_token5, + STATE(3522), 1, sym_comment, - ACTIONS(6384), 2, + STATE(3738), 1, + sym__immediate_decimal, + ACTIONS(6508), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1780), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1441), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6390), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6396), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6398), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6402), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6388), 4, + anon_sym_PLUS2, + ACTIONS(1455), 25, anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6392), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5323), 20, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [127413] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5460), 1, - sym__newline, - ACTIONS(6364), 1, - anon_sym_DASH2, - ACTIONS(6378), 1, - anon_sym_PLUS2, - STATE(3390), 1, - aux_sym_shebang_repeat1, - STATE(3493), 1, - sym_comment, - ACTIONS(6362), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6368), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6374), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6376), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6380), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6366), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6370), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5337), 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [127485] = 3, - ACTIONS(251), 1, + [127379] = 10, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3494), 1, + ACTIONS(6305), 1, + anon_sym_LBRACK, + ACTIONS(6311), 1, + anon_sym_list, + STATE(3523), 1, + sym_comment, + STATE(7632), 1, + sym__one_type, + STATE(7633), 1, + sym__multiple_types, + STATE(7666), 1, + sym__type_annotation, + ACTIONS(6309), 2, + anon_sym_table, + anon_sym_record, + STATE(6434), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6307), 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, + [127443] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3524), 1, sym_comment, - ACTIONS(6482), 41, + ACTIONS(6526), 41, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -350988,47 +354716,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_list, anon_sym_LBRACE, anon_sym_RBRACE, - [127535] = 10, - ACTIONS(251), 1, + [127493] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6386), 1, - anon_sym_DASH2, - ACTIONS(6400), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3495), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + ACTIONS(4706), 1, + aux_sym_unquoted_token2, + ACTIONS(6528), 1, + anon_sym_DOT_DOT2, + ACTIONS(6532), 1, + sym_filesize_unit, + ACTIONS(6534), 1, + sym_duration_unit, + STATE(3525), 1, sym_comment, - ACTIONS(5325), 2, + STATE(7382), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6530), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1639), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6390), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6396), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6398), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5323), 30, + anon_sym_PLUS2, + ACTIONS(1651), 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_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -351037,53 +354761,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [127599] = 11, - ACTIONS(251), 1, + [127558] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5460), 1, + ACTIONS(6430), 1, sym__newline, - ACTIONS(6364), 1, - anon_sym_DASH2, - ACTIONS(6378), 1, - anon_sym_PLUS2, - STATE(3391), 1, + ACTIONS(6540), 1, + anon_sym_list, + STATE(3526), 1, + sym_comment, + STATE(3614), 1, aux_sym_shebang_repeat1, - STATE(3496), 1, + STATE(4713), 1, + sym__type_annotation, + ACTIONS(6538), 2, + anon_sym_table, + anon_sym_record, + STATE(4737), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6536), 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, + [127619] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3618), 1, + anon_sym_DOLLAR, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(6446), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6448), 1, + aux_sym__immediate_decimal_token5, + STATE(1820), 1, + sym__immediate_decimal, + STATE(3527), 1, sym_comment, - ACTIONS(5339), 2, + ACTIONS(6542), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1817), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1584), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6368), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6374), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6376), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5337), 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, + anon_sym_PLUS2, + ACTIONS(1586), 25, anon_sym_in2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -351092,265 +354867,451 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [127665] = 14, - ACTIONS(251), 1, + [127684] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6386), 1, - anon_sym_DASH2, - ACTIONS(6400), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3497), 1, + ACTIONS(3618), 1, + anon_sym_DOLLAR, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(6446), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6448), 1, + aux_sym__immediate_decimal_token5, + STATE(2119), 1, + sym__immediate_decimal, + STATE(3528), 1, sym_comment, - ACTIONS(6384), 2, + ACTIONS(6542), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1780), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1441), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6390), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6394), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6396), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6398), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6402), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6388), 4, + anon_sym_PLUS2, + ACTIONS(1455), 25, anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6392), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5323), 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_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [127737] = 15, - ACTIONS(251), 1, + [127749] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5460), 1, - sym__newline, - ACTIONS(6364), 1, - anon_sym_DASH2, - ACTIONS(6378), 1, - anon_sym_PLUS2, - STATE(3392), 1, - aux_sym_shebang_repeat1, - STATE(3498), 1, + ACTIONS(3618), 1, + anon_sym_DOLLAR, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(6446), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6448), 1, + aux_sym__immediate_decimal_token5, + STATE(1778), 1, + sym__immediate_decimal, + STATE(3529), 1, sym_comment, - ACTIONS(6362), 2, + ACTIONS(6542), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1777), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1522), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6368), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6372), 2, + anon_sym_PLUS2, + ACTIONS(1532), 25, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6374), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6376), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6380), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6366), 4, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [127814] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6502), 1, + aux_sym__immediate_decimal_token2, + STATE(3530), 1, + sym_comment, + ACTIONS(1512), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1514), 31, + sym__newline, + anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6370), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5337), 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, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [127811] = 15, - ACTIONS(251), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [127867] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6386), 1, - anon_sym_DASH2, - ACTIONS(6400), 1, - anon_sym_PLUS2, - ACTIONS(6404), 1, - anon_sym_bit_DASHand2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3499), 1, + ACTIONS(3618), 1, + anon_sym_DOLLAR, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(6446), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6448), 1, + aux_sym__immediate_decimal_token5, + STATE(1816), 1, + sym__immediate_decimal, + STATE(3531), 1, sym_comment, - ACTIONS(6384), 2, + ACTIONS(6542), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1814), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1580), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6390), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6394), 2, + anon_sym_PLUS2, + ACTIONS(1582), 25, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6396), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6398), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6402), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6388), 4, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [127932] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6544), 1, + aux_sym__immediate_decimal_token2, + STATE(3532), 1, + sym_comment, + ACTIONS(1618), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1620), 31, + sym__newline, + anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6392), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5323), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [127885] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6386), 1, - anon_sym_DASH2, - ACTIONS(6400), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3500), 1, - sym_comment, - ACTIONS(6384), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6390), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6394), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6396), 2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6398), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6402), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6388), 4, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [127985] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6311), 1, + anon_sym_list, + STATE(3533), 1, + sym_comment, + STATE(3534), 1, + aux_sym__multiple_types_repeat2, + STATE(7083), 1, + sym__one_type, + STATE(7827), 1, + sym__type_annotation, + ACTIONS(6309), 2, + anon_sym_table, + anon_sym_record, + STATE(6434), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6307), 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, + [128046] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6552), 1, + anon_sym_list, + STATE(7344), 1, + sym__one_type, + STATE(7827), 1, + sym__type_annotation, + ACTIONS(6549), 2, + anon_sym_table, + anon_sym_record, + STATE(3534), 2, + sym_comment, + aux_sym__multiple_types_repeat2, + STATE(6434), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6546), 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, + [128105] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3618), 1, + anon_sym_DOLLAR, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(6446), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6448), 1, + aux_sym__immediate_decimal_token5, + STATE(1822), 1, + sym__immediate_decimal, + STATE(3535), 1, + sym_comment, + ACTIONS(6542), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1821), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1588), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1590), 25, anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6392), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5341), 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_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [127957] = 8, - ACTIONS(251), 1, + [128170] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6490), 1, + ACTIONS(6311), 1, anon_sym_list, - STATE(7320), 1, - sym__one_type, - STATE(7672), 1, + ACTIONS(6430), 1, + sym__newline, + STATE(3536), 1, + sym_comment, + STATE(3614), 1, + aux_sym_shebang_repeat1, + STATE(7113), 1, sym__type_annotation, - ACTIONS(6487), 2, + ACTIONS(6309), 2, anon_sym_table, anon_sym_record, - STATE(3501), 2, - sym_comment, - aux_sym__multiple_types_repeat2, - STATE(6180), 3, + STATE(6434), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6484), 31, + ACTIONS(6307), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -351382,27 +355343,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [128016] = 9, - ACTIONS(251), 1, + [128231] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6350), 1, - sym__newline, - ACTIONS(6497), 1, + ACTIONS(6311), 1, anon_sym_list, - STATE(3502), 1, + ACTIONS(6430), 1, + sym__newline, + STATE(3537), 1, sym_comment, - STATE(3529), 1, + STATE(3540), 1, aux_sym_shebang_repeat1, - STATE(4694), 1, + STATE(7122), 1, sym__type_annotation, - ACTIONS(6495), 2, + ACTIONS(6309), 2, anon_sym_table, anon_sym_record, - STATE(4943), 3, + STATE(6434), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6493), 31, + ACTIONS(6307), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -351434,27 +355395,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [128077] = 9, - ACTIONS(251), 1, + [128292] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6350), 1, - sym__newline, - ACTIONS(6497), 1, + ACTIONS(6311), 1, anon_sym_list, - STATE(3503), 1, - sym_comment, - STATE(3506), 1, + ACTIONS(6430), 1, + sym__newline, + STATE(3536), 1, aux_sym_shebang_repeat1, - STATE(4720), 1, + STATE(3538), 1, + sym_comment, + STATE(6907), 1, sym__type_annotation, - ACTIONS(6495), 2, + ACTIONS(6309), 2, anon_sym_table, anon_sym_record, - STATE(4943), 3, + STATE(6434), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6493), 31, + ACTIONS(6307), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -351486,83 +355447,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [128138] = 4, - ACTIONS(251), 1, + [128353] = 9, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3504), 1, + ACTIONS(6311), 1, + anon_sym_list, + STATE(3534), 1, + aux_sym__multiple_types_repeat2, + STATE(3539), 1, sym_comment, - ACTIONS(2136), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2140), 35, - ts_builtin_sym_end, + STATE(6820), 1, + sym__one_type, + STATE(7827), 1, + sym__type_annotation, + ACTIONS(6309), 2, + anon_sym_table, + anon_sym_record, + STATE(6434), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6307), 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, + [128414] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6311), 1, + anon_sym_list, + ACTIONS(6430), 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [128189] = 4, - ACTIONS(251), 1, + STATE(3540), 1, + sym_comment, + STATE(3614), 1, + aux_sym_shebang_repeat1, + STATE(6807), 1, + sym__type_annotation, + ACTIONS(6309), 2, + anon_sym_table, + anon_sym_record, + STATE(6434), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6307), 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, + [128475] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3505), 1, + ACTIONS(6555), 1, + anon_sym_DOT, + ACTIONS(6557), 1, + aux_sym__immediate_decimal_token2, + STATE(3541), 1, sym_comment, - ACTIONS(2144), 5, + ACTIONS(1512), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2146), 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_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1514), 30, anon_sym_DASH2, anon_sym_in2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -351571,6 +355587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -351580,27 +355597,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128240] = 9, - ACTIONS(251), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [128530] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6350), 1, + ACTIONS(6430), 1, sym__newline, - ACTIONS(6497), 1, + ACTIONS(6540), 1, anon_sym_list, - STATE(3506), 1, + STATE(3542), 1, sym_comment, - STATE(3604), 1, + STATE(3543), 1, aux_sym_shebang_repeat1, - STATE(4667), 1, + STATE(4635), 1, sym__type_annotation, - ACTIONS(6495), 2, + ACTIONS(6538), 2, anon_sym_table, anon_sym_record, - STATE(4943), 3, + STATE(4737), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6493), 31, + ACTIONS(6536), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -351632,27 +355652,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [128301] = 9, - ACTIONS(251), 1, + [128591] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6282), 1, - anon_sym_list, - ACTIONS(6350), 1, + ACTIONS(6430), 1, sym__newline, - STATE(3507), 1, + ACTIONS(6540), 1, + anon_sym_list, + STATE(3543), 1, + sym_comment, + STATE(3614), 1, + aux_sym_shebang_repeat1, + STATE(4636), 1, + sym__type_annotation, + ACTIONS(6538), 2, + anon_sym_table, + anon_sym_record, + STATE(4737), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6536), 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, + [128652] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6559), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6561), 1, + aux_sym__immediate_decimal_token2, + STATE(3544), 1, + sym_comment, + ACTIONS(1504), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1506), 30, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [128707] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3618), 1, + anon_sym_DOLLAR, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(6446), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6448), 1, + aux_sym__immediate_decimal_token5, + STATE(2048), 1, + sym__immediate_decimal, + STATE(3545), 1, sym_comment, + ACTIONS(6542), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1823), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1558), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1560), 25, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [128772] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6430), 1, + sym__newline, + ACTIONS(6540), 1, + anon_sym_list, STATE(3526), 1, aux_sym_shebang_repeat1, - STATE(7144), 1, + STATE(3546), 1, + sym_comment, + STATE(4637), 1, sym__type_annotation, - ACTIONS(6280), 2, + ACTIONS(6538), 2, anon_sym_table, anon_sym_record, - STATE(6180), 3, + STATE(4737), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6278), 31, + ACTIONS(6536), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -351684,44 +355859,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [128362] = 12, - ACTIONS(251), 1, + [128833] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1540), 1, - aux_sym_unquoted_token2, - ACTIONS(3630), 1, - anon_sym_DOLLAR, - ACTIONS(4580), 1, - anon_sym_LPAREN2, - ACTIONS(6501), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6503), 1, - aux_sym__immediate_decimal_token5, - STATE(3508), 1, + STATE(3547), 1, sym_comment, - STATE(3640), 1, - sym__immediate_decimal, - ACTIONS(6499), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1998), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1536), 6, + ACTIONS(1512), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1538), 24, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1514), 31, sym__newline, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -351730,6 +355892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -351739,44 +355902,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128429] = 12, - ACTIONS(251), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [128883] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym_unquoted_token2, - ACTIONS(3630), 1, - anon_sym_DOLLAR, - ACTIONS(4580), 1, - anon_sym_LPAREN2, - ACTIONS(6501), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6503), 1, - aux_sym__immediate_decimal_token5, - STATE(3509), 1, + STATE(3548), 1, sym_comment, - STATE(3638), 1, - sym__immediate_decimal, - ACTIONS(6499), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2078), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1461), 6, + ACTIONS(1504), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1475), 24, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1506), 31, sym__newline, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -351785,6 +355938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -351794,37 +355948,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128496] = 5, - ACTIONS(251), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [128933] = 11, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3510), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + ACTIONS(4706), 1, + aux_sym_unquoted_token2, + ACTIONS(6563), 1, + anon_sym_DOT_DOT2, + ACTIONS(6567), 1, + sym_filesize_unit, + ACTIONS(6569), 1, + sym_duration_unit, + STATE(3549), 1, sym_comment, - ACTIONS(2446), 5, + STATE(7382), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6565), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1639), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5043), 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(2448), 23, + ACTIONS(1651), 26, anon_sym_DASH2, anon_sym_in2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -351842,97 +356004,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128549] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6282), 1, - anon_sym_list, - STATE(3501), 1, - aux_sym__multiple_types_repeat2, - STATE(3511), 1, - sym_comment, - STATE(7024), 1, - sym__one_type, - STATE(7672), 1, - sym__type_annotation, - ACTIONS(6280), 2, - anon_sym_table, - anon_sym_record, - STATE(6180), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6278), 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, - [128610] = 13, - ACTIONS(251), 1, + [128997] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym_unquoted_token2, - ACTIONS(3630), 1, - anon_sym_DOLLAR, - ACTIONS(4580), 1, - anon_sym_LPAREN2, - ACTIONS(6505), 1, + ACTIONS(6571), 1, anon_sym_DOT, - ACTIONS(6509), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6511), 1, - aux_sym__immediate_decimal_token5, - STATE(3512), 1, + ACTIONS(6573), 1, + aux_sym__immediate_decimal_token2, + STATE(3550), 1, sym_comment, - STATE(3619), 1, - sym__immediate_decimal, - ACTIONS(6507), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3665), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1461), 6, + ACTIONS(1701), 7, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1475), 23, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1703), 30, + sym__newline, + anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -351941,6 +356040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -351950,100 +356050,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128679] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6282), 1, - anon_sym_list, - ACTIONS(6350), 1, - sym__newline, - STATE(3513), 1, - sym_comment, - STATE(3604), 1, - aux_sym_shebang_repeat1, - STATE(7138), 1, - sym__type_annotation, - ACTIONS(6280), 2, - anon_sym_table, - anon_sym_record, - STATE(6180), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6278), 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, - [128740] = 10, - ACTIONS(251), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [129051] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6513), 1, - anon_sym_DASH2, - ACTIONS(6521), 1, - anon_sym_PLUS2, - STATE(3514), 1, + STATE(3551), 1, sym_comment, - ACTIONS(5259), 2, + ACTIONS(1689), 8, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6515), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6517), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6519), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6523), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5257), 28, - ts_builtin_sym_end, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1691), 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_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -352052,46 +356085,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128803] = 7, - ACTIONS(251), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [129101] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3515), 1, + ACTIONS(6557), 1, + aux_sym__immediate_decimal_token2, + STATE(3552), 1, sym_comment, - ACTIONS(6515), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6517), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6519), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5259), 3, + ACTIONS(1512), 8, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5257), 31, - 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_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1514), 30, anon_sym_DASH2, anon_sym_in2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -352100,98 +356132,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128860] = 11, - ACTIONS(251), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [129153] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6513), 1, - anon_sym_DASH2, - ACTIONS(6521), 1, - anon_sym_PLUS2, - STATE(3516), 1, + ACTIONS(6575), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6577), 1, + aux_sym__immediate_decimal_token2, + STATE(3553), 1, sym_comment, - ACTIONS(6515), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6517), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6519), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6523), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6525), 2, + ACTIONS(1693), 7, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(6527), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5257), 24, - ts_builtin_sym_end, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1695), 30, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128925] = 5, - ACTIONS(251), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [129207] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3517), 1, + ACTIONS(6579), 1, + aux_sym__immediate_decimal_token2, + STATE(3554), 1, sym_comment, - ACTIONS(6517), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5259), 5, + ACTIONS(1618), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5257), 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_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1620), 30, anon_sym_DASH2, anon_sym_in2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -352200,6 +356227,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -352207,262 +356237,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128978] = 16, - ACTIONS(251), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [129259] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6513), 1, - anon_sym_DASH2, - ACTIONS(6521), 1, - anon_sym_PLUS2, - ACTIONS(6533), 1, - anon_sym_bit_DASHand2, - ACTIONS(6535), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6537), 1, - anon_sym_bit_DASHor2, - STATE(3518), 1, + STATE(3555), 1, sym_comment, - ACTIONS(6515), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6517), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6519), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6523), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6525), 2, + ACTIONS(1618), 8, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(6531), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6527), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6529), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5257), 15, - ts_builtin_sym_end, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1620), 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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [129053] = 17, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6513), 1, - anon_sym_DASH2, - ACTIONS(6521), 1, - anon_sym_PLUS2, - ACTIONS(6533), 1, - anon_sym_bit_DASHand2, - ACTIONS(6535), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6537), 1, - anon_sym_bit_DASHor2, - ACTIONS(6539), 1, - anon_sym_and2, - STATE(3519), 1, - sym_comment, - ACTIONS(6515), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6517), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6519), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6523), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6525), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6531), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6527), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6529), 4, - anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5257), 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_xor2, - anon_sym_or2, - [129130] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6513), 1, - anon_sym_DASH2, - ACTIONS(6521), 1, - anon_sym_PLUS2, - ACTIONS(6533), 1, - anon_sym_bit_DASHand2, - ACTIONS(6535), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6537), 1, - anon_sym_bit_DASHor2, - ACTIONS(6539), 1, - anon_sym_and2, - ACTIONS(6541), 1, - anon_sym_xor2, - STATE(3520), 1, - sym_comment, - ACTIONS(6515), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6517), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6519), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6523), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6525), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6531), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6527), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6529), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5257), 13, - 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_or2, - [129209] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6513), 1, - anon_sym_DASH2, - ACTIONS(6521), 1, - anon_sym_PLUS2, - STATE(3521), 1, - sym_comment, - ACTIONS(6515), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6517), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6519), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6523), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6525), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6527), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6529), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5257), 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129276] = 9, - ACTIONS(251), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [129309] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6282), 1, + ACTIONS(6585), 1, anon_sym_list, - STATE(3501), 1, - aux_sym__multiple_types_repeat2, - STATE(3522), 1, + STATE(3556), 1, sym_comment, - STATE(7286), 1, - sym__one_type, - STATE(7672), 1, - sym__type_annotation, - ACTIONS(6280), 2, + STATE(6060), 1, + sym__all_type, + ACTIONS(6583), 2, anon_sym_table, anon_sym_record, - STATE(6180), 3, + STATE(7118), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6278), 31, + ACTIONS(6581), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -352494,45 +356334,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [129337] = 9, - ACTIONS(251), 1, + [129364] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6513), 1, - anon_sym_DASH2, - ACTIONS(6521), 1, - anon_sym_PLUS2, - STATE(3523), 1, + ACTIONS(6587), 1, + anon_sym_DOT, + ACTIONS(6589), 1, + aux_sym__immediate_decimal_token2, + STATE(3557), 1, sym_comment, - ACTIONS(5259), 2, + ACTIONS(1701), 7, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6515), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6517), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6519), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5257), 30, - 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_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1703), 29, + anon_sym_DASH2, anon_sym_in2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -352541,145 +356369,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [129398] = 13, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6513), 1, - anon_sym_DASH2, - ACTIONS(6521), 1, - anon_sym_PLUS2, - STATE(3524), 1, - sym_comment, - ACTIONS(6515), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6517), 2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6519), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6523), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6525), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6531), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6527), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6529), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5257), 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_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129467] = 14, - ACTIONS(251), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [129417] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6513), 1, - anon_sym_DASH2, - ACTIONS(6521), 1, - anon_sym_PLUS2, - ACTIONS(6533), 1, - anon_sym_bit_DASHand2, - STATE(3525), 1, + ACTIONS(6591), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6593), 1, + aux_sym__immediate_decimal_token2, + STATE(3558), 1, sym_comment, - ACTIONS(6515), 2, + ACTIONS(1693), 7, + anon_sym_GT2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6517), 2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1695), 29, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6519), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6523), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6525), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6531), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6527), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6529), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5257), 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_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129538] = 9, - ACTIONS(251), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [129470] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6282), 1, + ACTIONS(6585), 1, anon_sym_list, - ACTIONS(6350), 1, - sym__newline, - STATE(3526), 1, + STATE(3559), 1, sym_comment, - STATE(3604), 1, - aux_sym_shebang_repeat1, - STATE(6885), 1, + STATE(7385), 1, sym__type_annotation, - ACTIONS(6280), 2, + ACTIONS(6583), 2, anon_sym_table, anon_sym_record, - STATE(6180), 3, + STATE(7310), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6278), 31, + ACTIONS(6581), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -352711,85 +356476,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [129599] = 15, - ACTIONS(251), 1, + [129525] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6513), 1, - anon_sym_DASH2, - ACTIONS(6521), 1, - anon_sym_PLUS2, - ACTIONS(6533), 1, - anon_sym_bit_DASHand2, - ACTIONS(6535), 1, - anon_sym_bit_DASHxor2, - STATE(3527), 1, + ACTIONS(6595), 1, + sym__entry_separator, + STATE(3560), 2, sym_comment, - ACTIONS(6515), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6517), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6519), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6523), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6525), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6531), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6527), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6529), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5257), 16, - 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [129672] = 9, - ACTIONS(251), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(2378), 36, + anon_sym_LBRACK, + 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, + [129574] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6282), 1, + ACTIONS(6585), 1, anon_sym_list, - ACTIONS(6350), 1, - sym__newline, - STATE(3513), 1, - aux_sym_shebang_repeat1, - STATE(3528), 1, + STATE(3561), 1, sym_comment, - STATE(6873), 1, - sym__type_annotation, - ACTIONS(6280), 2, + STATE(6150), 1, + sym__all_type, + ACTIONS(6583), 2, anon_sym_table, anon_sym_record, - STATE(6180), 3, + STATE(7118), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6278), 31, + ACTIONS(6581), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -352821,27 +356569,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [129733] = 9, - ACTIONS(251), 1, + [129629] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6350), 1, - sym__newline, - ACTIONS(6497), 1, + ACTIONS(6585), 1, anon_sym_list, - STATE(3529), 1, + STATE(3562), 1, sym_comment, - STATE(3604), 1, - aux_sym_shebang_repeat1, - STATE(4559), 1, - sym__type_annotation, - ACTIONS(6495), 2, + STATE(6157), 1, + sym__all_type, + ACTIONS(6583), 2, anon_sym_table, anon_sym_record, - STATE(4943), 3, + STATE(7118), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6493), 31, + ACTIONS(6581), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -352873,321 +356617,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [129794] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6543), 1, - anon_sym_DOT, - ACTIONS(6545), 1, - aux_sym__immediate_decimal_token2, - STATE(3530), 1, - sym_comment, - ACTIONS(1550), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1552), 29, - sym__newline, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [129848] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3630), 1, - anon_sym_DOLLAR, - ACTIONS(4580), 1, - anon_sym_LPAREN2, - ACTIONS(4614), 1, - anon_sym_DOT, - ACTIONS(6509), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6511), 1, - aux_sym__immediate_decimal_token5, - STATE(3531), 1, - sym_comment, - STATE(3664), 1, - sym__immediate_decimal, - ACTIONS(6507), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3663), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1500), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1510), 23, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [129914] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6547), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6549), 1, - aux_sym__immediate_decimal_token2, - STATE(3532), 1, - sym_comment, - ACTIONS(1542), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1544), 29, - sym__newline, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [129968] = 22, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3420), 1, - anon_sym_COLON2, - ACTIONS(3490), 1, - aux_sym_unquoted_token1, - ACTIONS(3958), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3960), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3962), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3964), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4102), 1, - anon_sym_DOT_DOT, - ACTIONS(5200), 1, - sym_val_date, - ACTIONS(6551), 1, - anon_sym_DOLLAR, - STATE(3533), 1, - sym_comment, - STATE(5825), 1, - sym__val_number_decimal, - STATE(5920), 1, - sym_val_variable, - STATE(5921), 1, - sym_unquoted, - STATE(7519), 1, - sym__val_range, - STATE(7624), 1, - sym_val_bool, - STATE(7789), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(3956), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4104), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5198), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(2664), 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(2666), 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, - [130054] = 22, - ACTIONS(251), 1, + [129684] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3442), 1, - anon_sym_COLON2, - ACTIONS(3490), 1, - aux_sym_unquoted_token1, - ACTIONS(3958), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3960), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3962), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3964), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4102), 1, - anon_sym_DOT_DOT, - ACTIONS(5200), 1, - sym_val_date, - ACTIONS(6551), 1, - anon_sym_DOLLAR, - STATE(3534), 1, + ACTIONS(6311), 1, + anon_sym_list, + STATE(3563), 1, sym_comment, - STATE(5825), 1, - sym__val_number_decimal, - STATE(5920), 1, - sym_val_variable, - STATE(5921), 1, - sym_unquoted, - STATE(7519), 1, - sym__val_range, - STATE(7624), 1, - sym_val_bool, - STATE(7789), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(3956), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4104), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5198), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(2664), 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(2666), 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, - [130140] = 12, - ACTIONS(251), 1, + STATE(7736), 1, + sym__type_annotation, + ACTIONS(6309), 2, + anon_sym_table, + anon_sym_record, + STATE(6434), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6307), 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, + [129739] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym_unquoted_token2, - ACTIONS(3630), 1, - anon_sym_DOLLAR, - ACTIONS(4580), 1, - anon_sym_LPAREN2, - ACTIONS(6555), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6557), 1, - aux_sym__immediate_decimal_token5, - STATE(3535), 1, + STATE(3564), 1, sym_comment, - STATE(3746), 1, - sym__immediate_decimal, - ACTIONS(6553), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2078), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1461), 6, + ACTIONS(1512), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1475), 23, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1514), 30, + anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -353196,6 +356697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -353205,43 +356707,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [130206] = 12, - ACTIONS(251), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [129788] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3630), 1, - anon_sym_DOLLAR, - ACTIONS(4580), 1, - anon_sym_LPAREN2, - ACTIONS(4632), 1, - anon_sym_DOT, - ACTIONS(6509), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6511), 1, - aux_sym__immediate_decimal_token5, - STATE(3536), 1, + STATE(3565), 1, sym_comment, - STATE(3659), 1, - sym__immediate_decimal, - ACTIONS(6507), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3665), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1461), 6, + ACTIONS(1504), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1475), 23, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1506), 30, + anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -353250,6 +356742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -353259,43 +356752,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [130272] = 12, - ACTIONS(251), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [129837] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1540), 1, + STATE(3566), 1, + sym_comment, + ACTIONS(1618), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(3630), 1, - anon_sym_DOLLAR, - ACTIONS(4580), 1, + ACTIONS(1620), 30, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_LPAREN2, - ACTIONS(6555), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6557), 1, - aux_sym__immediate_decimal_token5, - STATE(3537), 1, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [129886] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3567), 1, sym_comment, - STATE(3749), 1, - sym__immediate_decimal, - ACTIONS(6553), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1998), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1536), 6, + ACTIONS(1689), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1538), 23, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1691), 30, + anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -353304,6 +356832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -353313,41 +356842,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [130338] = 11, - ACTIONS(251), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [129935] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3630), 1, - anon_sym_DOLLAR, - ACTIONS(4580), 1, - anon_sym_LPAREN2, - ACTIONS(6509), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6511), 1, - aux_sym__immediate_decimal_token5, - STATE(2076), 1, - sym__immediate_decimal, - STATE(3538), 1, + ACTIONS(5815), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5921), 1, + anon_sym_DOT, + STATE(3568), 1, sym_comment, - ACTIONS(6559), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2075), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1500), 6, + ACTIONS(1512), 7, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1510), 23, + anon_sym_DOT_DOT2, + sym_filesize_unit, + ACTIONS(1514), 29, + anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -353365,23 +356889,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [130401] = 7, - ACTIONS(251), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [129988] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6565), 1, + ACTIONS(6585), 1, anon_sym_list, - STATE(3539), 1, + STATE(3569), 1, sym_comment, - STATE(6085), 1, + STATE(6006), 1, sym__all_type, - ACTIONS(6563), 2, + ACTIONS(6583), 2, anon_sym_table, anon_sym_record, - STATE(6766), 3, + STATE(7118), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6561), 31, + ACTIONS(6581), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -353413,122 +356940,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [130456] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3630), 1, - anon_sym_DOLLAR, - ACTIONS(4580), 1, - anon_sym_LPAREN2, - ACTIONS(6509), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6511), 1, - aux_sym__immediate_decimal_token5, - STATE(2151), 1, - sym__immediate_decimal, - STATE(3540), 1, - sym_comment, - ACTIONS(6559), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1998), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1536), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1538), 23, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [130519] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6567), 1, - anon_sym_DOT, - ACTIONS(6569), 1, - aux_sym__immediate_decimal_token2, - STATE(3541), 1, - sym_comment, - ACTIONS(1550), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1552), 28, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [130572] = 7, - ACTIONS(251), 1, + [130043] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6565), 1, + ACTIONS(6585), 1, anon_sym_list, - STATE(3542), 1, + STATE(3570), 1, sym_comment, - STATE(7319), 1, - sym__type_annotation, - ACTIONS(6563), 2, + STATE(6010), 1, + sym__all_type, + ACTIONS(6583), 2, anon_sym_table, anon_sym_record, - STATE(7349), 3, + STATE(7118), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6561), 31, + ACTIONS(6581), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -353560,23 +356988,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [130627] = 7, - ACTIONS(251), 1, + [130098] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6565), 1, + ACTIONS(6585), 1, anon_sym_list, - STATE(3543), 1, + STATE(3571), 1, sym_comment, - STATE(6089), 1, + STATE(6042), 1, sym__all_type, - ACTIONS(6563), 2, + ACTIONS(6583), 2, anon_sym_table, anon_sym_record, - STATE(6766), 3, + STATE(7118), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6561), 31, + ACTIONS(6581), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -353608,23 +357036,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [130682] = 7, - ACTIONS(251), 1, + [130153] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6565), 1, + ACTIONS(6585), 1, anon_sym_list, - STATE(3544), 1, + STATE(3572), 1, sym_comment, - STATE(6016), 1, + STATE(6599), 1, sym__all_type, - ACTIONS(6563), 2, + ACTIONS(6583), 2, anon_sym_table, anon_sym_record, - STATE(6766), 3, + STATE(7118), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6561), 31, + ACTIONS(6581), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -353656,23 +357084,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [130737] = 7, - ACTIONS(251), 1, + [130208] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6565), 1, + ACTIONS(6585), 1, anon_sym_list, - STATE(3545), 1, + STATE(3573), 1, sym_comment, - STATE(6019), 1, + STATE(5942), 1, sym__all_type, - ACTIONS(6563), 2, + ACTIONS(6583), 2, anon_sym_table, anon_sym_record, - STATE(6766), 3, + STATE(7118), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6561), 31, + ACTIONS(6581), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -353704,23 +357132,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [130792] = 7, - ACTIONS(251), 1, + [130263] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6565), 1, + ACTIONS(6585), 1, anon_sym_list, - STATE(3546), 1, + STATE(3574), 1, sym_comment, - STATE(6064), 1, + STATE(6151), 1, sym__all_type, - ACTIONS(6563), 2, + ACTIONS(6583), 2, anon_sym_table, anon_sym_record, - STATE(6766), 3, + STATE(7118), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6561), 31, + ACTIONS(6581), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -353752,23 +357180,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [130847] = 7, - ACTIONS(251), 1, + [130318] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6573), 1, + aux_sym__immediate_decimal_token2, + STATE(3575), 1, + sym_comment, + ACTIONS(1701), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1703), 30, + sym__newline, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [130369] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6565), 1, + ACTIONS(6585), 1, anon_sym_list, - STATE(3547), 1, + STATE(3576), 1, sym_comment, STATE(6065), 1, sym__all_type, - ACTIONS(6563), 2, + ACTIONS(6583), 2, anon_sym_table, anon_sym_record, - STATE(6766), 3, + STATE(7118), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6561), 31, + ACTIONS(6581), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -353800,23 +357274,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [130902] = 7, - ACTIONS(251), 1, + [130424] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6565), 1, + ACTIONS(6585), 1, anon_sym_list, - STATE(3548), 1, + STATE(3577), 1, sym_comment, - STATE(6096), 1, + STATE(6121), 1, sym__all_type, - ACTIONS(6563), 2, + ACTIONS(6583), 2, anon_sym_table, anon_sym_record, - STATE(6766), 3, + STATE(7118), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6561), 31, + ACTIONS(6581), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -353848,23 +357322,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [130957] = 7, - ACTIONS(251), 1, + [130479] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6565), 1, + ACTIONS(6585), 1, anon_sym_list, - STATE(3549), 1, + STATE(3578), 1, sym_comment, - STATE(6109), 1, + STATE(6077), 1, sym__all_type, - ACTIONS(6563), 2, + ACTIONS(6583), 2, anon_sym_table, anon_sym_record, - STATE(6766), 3, + STATE(7118), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6561), 31, + ACTIONS(6581), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -353896,23 +357370,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [131012] = 7, - ACTIONS(251), 1, + [130534] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6565), 1, + ACTIONS(6585), 1, anon_sym_list, - STATE(3550), 1, + STATE(3579), 1, sym_comment, - STATE(6150), 1, + STATE(6144), 1, sym__all_type, - ACTIONS(6563), 2, + ACTIONS(6583), 2, anon_sym_table, anon_sym_record, - STATE(6766), 3, + STATE(7118), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6561), 31, + ACTIONS(6581), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -353944,23 +357418,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [131067] = 7, - ACTIONS(251), 1, + [130589] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6565), 1, + ACTIONS(6585), 1, anon_sym_list, - STATE(3551), 1, + STATE(3580), 1, sym_comment, - STATE(6151), 1, + STATE(6100), 1, sym__all_type, - ACTIONS(6563), 2, + ACTIONS(6583), 2, anon_sym_table, anon_sym_record, - STATE(6766), 3, + STATE(7118), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6561), 31, + ACTIONS(6581), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -353992,69 +357466,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [131122] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6545), 1, - aux_sym__immediate_decimal_token2, - STATE(3552), 1, - sym_comment, - ACTIONS(1550), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1552), 29, - sym__newline, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [131173] = 7, - ACTIONS(251), 1, + [130644] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6565), 1, + ACTIONS(6585), 1, anon_sym_list, - STATE(3553), 1, + STATE(3581), 1, sym_comment, - STATE(6054), 1, + STATE(6152), 1, sym__all_type, - ACTIONS(6563), 2, + ACTIONS(6583), 2, anon_sym_table, anon_sym_record, - STATE(6766), 3, + STATE(7118), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6561), 31, + ACTIONS(6581), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -354086,127 +357514,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [131228] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3630), 1, - anon_sym_DOLLAR, - ACTIONS(4580), 1, - anon_sym_LPAREN2, - ACTIONS(6509), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6511), 1, - aux_sym__immediate_decimal_token5, - STATE(2129), 1, - sym__immediate_decimal, - STATE(3554), 1, - sym_comment, - ACTIONS(6559), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2078), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1461), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1475), 23, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [131291] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3630), 1, - anon_sym_DOLLAR, - ACTIONS(4580), 1, - anon_sym_LPAREN2, - ACTIONS(6509), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6511), 1, - aux_sym__immediate_decimal_token5, - STATE(1986), 1, - sym__immediate_decimal, - STATE(3555), 1, - sym_comment, - ACTIONS(6559), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1984), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1624), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1626), 23, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [131354] = 7, - ACTIONS(251), 1, + [130699] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6565), 1, + ACTIONS(6585), 1, anon_sym_list, - STATE(3556), 1, + STATE(3582), 1, sym_comment, - STATE(5949), 1, + STATE(6046), 1, sym__all_type, - ACTIONS(6563), 2, + ACTIONS(6583), 2, anon_sym_table, anon_sym_record, - STATE(6766), 3, + STATE(7118), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6561), 31, + ACTIONS(6581), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -354238,23 +357562,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [131409] = 7, - ACTIONS(251), 1, + [130754] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6565), 1, + ACTIONS(6585), 1, anon_sym_list, - STATE(3557), 1, + STATE(3583), 1, sym_comment, - STATE(5950), 1, + STATE(6055), 1, sym__all_type, - ACTIONS(6563), 2, + ACTIONS(6583), 2, anon_sym_table, anon_sym_record, - STATE(6766), 3, + STATE(7118), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6561), 31, + ACTIONS(6581), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -354286,23 +357610,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [131464] = 7, - ACTIONS(251), 1, + [130809] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6565), 1, + ACTIONS(6585), 1, anon_sym_list, - STATE(3558), 1, + STATE(3584), 1, sym_comment, - STATE(5963), 1, + STATE(6598), 1, sym__all_type, - ACTIONS(6563), 2, + ACTIONS(6583), 2, anon_sym_table, anon_sym_record, - STATE(6766), 3, + STATE(7118), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6561), 31, + ACTIONS(6581), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -354334,23 +357658,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [131519] = 7, - ACTIONS(251), 1, + [130864] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6565), 1, + ACTIONS(6585), 1, anon_sym_list, - STATE(3559), 1, + STATE(3585), 1, sym_comment, - STATE(5966), 1, + STATE(6059), 1, sym__all_type, - ACTIONS(6563), 2, + ACTIONS(6583), 2, anon_sym_table, anon_sym_record, - STATE(6766), 3, + STATE(7118), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6561), 31, + ACTIONS(6581), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -354382,23 +357706,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [131574] = 7, - ACTIONS(251), 1, + [130919] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6565), 1, + ACTIONS(6585), 1, anon_sym_list, - STATE(3560), 1, + STATE(3586), 1, sym_comment, - STATE(5974), 1, + STATE(6083), 1, sym__all_type, - ACTIONS(6563), 2, + ACTIONS(6583), 2, anon_sym_table, anon_sym_record, - STATE(6766), 3, + STATE(7118), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6561), 31, + ACTIONS(6581), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -354430,23 +357754,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [131629] = 7, - ACTIONS(251), 1, + [130974] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6565), 1, + ACTIONS(6585), 1, anon_sym_list, - STATE(3561), 1, + STATE(3587), 1, sym_comment, - STATE(5977), 1, + STATE(6084), 1, sym__all_type, - ACTIONS(6563), 2, + ACTIONS(6583), 2, anon_sym_table, anon_sym_record, - STATE(6766), 3, + STATE(7118), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6561), 31, + ACTIONS(6581), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -354478,23 +357802,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [131684] = 7, - ACTIONS(251), 1, + [131029] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6565), 1, + ACTIONS(6585), 1, anon_sym_list, - STATE(3562), 1, + STATE(3588), 1, sym_comment, - STATE(5992), 1, + STATE(6092), 1, sym__all_type, - ACTIONS(6563), 2, + ACTIONS(6583), 2, anon_sym_table, anon_sym_record, - STATE(6766), 3, + STATE(7118), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6561), 31, + ACTIONS(6581), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -354526,23 +357850,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [131739] = 7, - ACTIONS(251), 1, + [131084] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6565), 1, + ACTIONS(6585), 1, anon_sym_list, - STATE(3563), 1, + STATE(3589), 1, sym_comment, - STATE(5994), 1, + STATE(6095), 1, sym__all_type, - ACTIONS(6563), 2, + ACTIONS(6583), 2, anon_sym_table, anon_sym_record, - STATE(6766), 3, + STATE(7118), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6561), 31, + ACTIONS(6581), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -354574,127 +357898,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [131794] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3630), 1, - anon_sym_DOLLAR, - ACTIONS(4580), 1, - anon_sym_LPAREN2, - ACTIONS(6509), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6511), 1, - aux_sym__immediate_decimal_token5, - STATE(1995), 1, - sym__immediate_decimal, - STATE(3564), 1, - sym_comment, - ACTIONS(6559), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1994), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1654), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1656), 23, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [131857] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3630), 1, - anon_sym_DOLLAR, - ACTIONS(4580), 1, - anon_sym_LPAREN2, - ACTIONS(6509), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6511), 1, - aux_sym__immediate_decimal_token5, - STATE(1997), 1, - sym__immediate_decimal, - STATE(3565), 1, - sym_comment, - ACTIONS(6559), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1996), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1604), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1612), 23, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [131920] = 7, - ACTIONS(251), 1, + [131139] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6565), 1, + ACTIONS(6585), 1, anon_sym_list, - STATE(3566), 1, + STATE(3590), 1, sym_comment, - STATE(6061), 1, + STATE(6141), 1, sym__all_type, - ACTIONS(6563), 2, + ACTIONS(6583), 2, anon_sym_table, anon_sym_record, - STATE(6766), 3, + STATE(7118), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6561), 31, + ACTIONS(6581), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -354726,23 +357946,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [131975] = 7, - ACTIONS(251), 1, + [131194] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6565), 1, + ACTIONS(6585), 1, anon_sym_list, - STATE(3567), 1, + STATE(3591), 1, sym_comment, - STATE(6120), 1, + STATE(6142), 1, sym__all_type, - ACTIONS(6563), 2, + ACTIONS(6583), 2, anon_sym_table, anon_sym_record, - STATE(6766), 3, + STATE(7118), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6561), 31, + ACTIONS(6581), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -354774,94 +357994,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [132030] = 21, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3490), 1, - aux_sym_unquoted_token1, - ACTIONS(3958), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3960), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3962), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3964), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4102), 1, - anon_sym_DOT_DOT, - ACTIONS(5200), 1, - sym_val_date, - ACTIONS(6551), 1, - anon_sym_DOLLAR, - STATE(3568), 1, - sym_comment, - STATE(5825), 1, - sym__val_number_decimal, - STATE(5920), 1, - sym_val_variable, - STATE(5921), 1, - sym_unquoted, - STATE(7519), 1, - sym__val_range, - STATE(7624), 1, - sym_val_bool, - STATE(7789), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(3956), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4104), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5198), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(2664), 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(2666), 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, - [132113] = 6, - ACTIONS(251), 1, + [131249] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6571), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6573), 1, + ACTIONS(6598), 1, aux_sym__immediate_decimal_token2, - STATE(3569), 1, + STATE(3592), 1, sym_comment, - ACTIONS(1542), 8, + ACTIONS(1766), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1544), 28, + ACTIONS(1768), 30, + sym__newline, anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -354882,18 +358040,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [132166] = 4, - ACTIONS(3), 1, + [131300] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6575), 1, - sym__entry_separator, - STATE(3570), 2, + ACTIONS(6585), 1, + anon_sym_list, + STATE(3593), 1, sym_comment, - aux_sym__multiple_types_repeat1, - ACTIONS(2482), 36, - anon_sym_LBRACK, - anon_sym_RBRACK, + STATE(6052), 1, + sym__all_type, + ACTIONS(6583), 2, + anon_sym_table, + anon_sym_record, + STATE(7118), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6581), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -354923,28 +358086,20 @@ 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, - [132215] = 7, - ACTIONS(251), 1, + [131355] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6565), 1, - anon_sym_list, - STATE(3571), 1, + ACTIONS(6600), 1, + anon_sym_RBRACK, + ACTIONS(6604), 1, + sym__entry_separator, + STATE(3560), 1, + aux_sym__multiple_types_repeat1, + STATE(3594), 1, sym_comment, - STATE(5943), 1, - sym__all_type, - ACTIONS(6563), 2, - anon_sym_table, - anon_sym_record, - STATE(6766), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6561), 31, + ACTIONS(6602), 34, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -354974,25 +358129,71 @@ 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, - [132270] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6565), 1, + anon_sym_record, anon_sym_list, - STATE(3572), 1, + [131407] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + ACTIONS(1808), 1, + anon_sym_LPAREN2, + ACTIONS(6606), 1, + anon_sym_DOT_DOT2, + STATE(3595), 1, sym_comment, - STATE(5997), 1, - sym__all_type, - ACTIONS(6563), 2, - anon_sym_table, - anon_sym_record, - STATE(6766), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6561), 31, + ACTIONS(6608), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1806), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1814), 27, + sym__newline, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [131463] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(6610), 1, + anon_sym_RBRACK, + STATE(3560), 1, + aux_sym__multiple_types_repeat1, + STATE(3596), 1, + sym_comment, + ACTIONS(6602), 34, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -355022,25 +358223,159 @@ 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, - [132325] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6565), 1, + anon_sym_record, anon_sym_list, - STATE(3573), 1, + [131515] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3597), 1, sym_comment, - STATE(6086), 1, - sym__all_type, - ACTIONS(6563), 2, - anon_sym_table, - anon_sym_record, - STATE(6766), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6561), 31, + ACTIONS(1701), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1703), 30, + sym__newline, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [131563] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1818), 1, + anon_sym_LPAREN2, + ACTIONS(1826), 1, + aux_sym_unquoted_token2, + ACTIONS(6612), 1, + anon_sym_DOT_DOT2, + STATE(3598), 1, + sym_comment, + ACTIONS(6614), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1816), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1824), 27, + sym__newline, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [131619] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3599), 1, + sym_comment, + ACTIONS(1693), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1695), 30, + sym__newline, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [131667] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(6616), 1, + anon_sym_RBRACK, + STATE(3560), 1, + aux_sym__multiple_types_repeat1, + STATE(3600), 1, + sym_comment, + ACTIONS(6602), 34, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -355070,25 +358405,23 @@ 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, - [132380] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6565), 1, + anon_sym_record, anon_sym_list, - STATE(3574), 1, + [131719] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(6618), 1, + anon_sym_RBRACK, + STATE(3560), 1, + aux_sym__multiple_types_repeat1, + STATE(3601), 1, sym_comment, - STATE(6326), 1, - sym__all_type, - ACTIONS(6563), 2, - anon_sym_table, - anon_sym_record, - STATE(6766), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6561), 31, + ACTIONS(6602), 34, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -355118,25 +358451,66 @@ 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, - [132435] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6565), 1, + anon_sym_record, anon_sym_list, - STATE(3575), 1, + [131771] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6589), 1, + aux_sym__immediate_decimal_token2, + STATE(3602), 1, sym_comment, - STATE(6327), 1, - sym__all_type, - ACTIONS(6563), 2, - anon_sym_table, - anon_sym_record, - STATE(6766), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6561), 31, + ACTIONS(1701), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1703), 29, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [131821] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2497), 1, + sym__entry_separator, + STATE(3603), 1, + sym_comment, + ACTIONS(2495), 36, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -355166,35 +358540,161 @@ 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, - [132490] = 11, - ACTIONS(251), 1, + anon_sym_record, + anon_sym_list, + [131869] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, + ACTIONS(6620), 1, + aux_sym__immediate_decimal_token2, + STATE(3604), 1, + sym_comment, + ACTIONS(1766), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1768), 29, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_LPAREN2, - ACTIONS(4780), 1, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [131919] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3605), 1, + sym_comment, + ACTIONS(1766), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(6578), 1, + ACTIONS(1768), 30, + sym__newline, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [131967] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3606), 1, + sym_comment, + ACTIONS(1792), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_DOT_DOT2, - ACTIONS(6582), 1, - sym_filesize_unit, - ACTIONS(6584), 1, - sym_duration_unit, - STATE(3576), 1, + aux_sym_unquoted_token2, + ACTIONS(1794), 30, + sym__newline, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [132015] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6622), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6624), 1, + aux_sym__immediate_decimal_token2, + STATE(3607), 1, sym_comment, - STATE(7381), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6580), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1638), 5, + ACTIONS(1693), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1650), 25, + aux_sym_unquoted_token2, + ACTIONS(1695), 28, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -355203,6 +358703,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -355211,6 +358713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -355220,85 +358723,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [132553] = 21, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3534), 1, - aux_sym_unquoted_token1, - ACTIONS(3958), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3960), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3962), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3964), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4401), 1, - anon_sym_DOT_DOT, - ACTIONS(5200), 1, - sym_val_date, - ACTIONS(6586), 1, - anon_sym_DOLLAR, - STATE(3577), 1, - sym_comment, - STATE(5813), 1, - sym__val_number_decimal, - STATE(5933), 1, - sym_val_variable, - STATE(5937), 1, - sym_unquoted, - STATE(7624), 1, - sym_val_bool, - STATE(7836), 1, - sym__val_range, - STATE(7845), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(3956), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4403), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5225), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(2664), 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(2666), 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, - [132636] = 5, - ACTIONS(251), 1, + [132066] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6588), 1, + ACTIONS(6626), 1, + anon_sym_DOT, + ACTIONS(6628), 1, aux_sym__immediate_decimal_token2, - STATE(3578), 1, + STATE(3608), 1, sym_comment, - ACTIONS(1680), 8, + ACTIONS(1701), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1682), 29, + ACTIONS(1703), 28, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -355307,6 +358748,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -355325,80 +358768,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [132687] = 7, - ACTIONS(251), 1, + [132117] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6282), 1, - anon_sym_list, - STATE(3579), 1, + ACTIONS(6630), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6632), 1, + aux_sym__immediate_decimal_token2, + STATE(3609), 1, sym_comment, - STATE(7602), 1, - sym__type_annotation, - ACTIONS(6280), 2, - anon_sym_table, - anon_sym_record, - STATE(6180), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6278), 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, - [132742] = 4, - ACTIONS(251), 1, + ACTIONS(1504), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(1506), 26, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [132168] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3580), 1, + ACTIONS(6121), 1, + sym_filesize_unit, + ACTIONS(6123), 1, + sym_duration_unit, + ACTIONS(6634), 1, + anon_sym_DOT_DOT2, + STATE(3610), 1, sym_comment, - ACTIONS(1542), 8, + ACTIONS(6636), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1639), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1544), 29, - sym__newline, + ACTIONS(1651), 26, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -355407,7 +358851,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -355417,127 +358860,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [132790] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6590), 1, - anon_sym_RBRACK, - ACTIONS(6594), 1, - sym__entry_separator, - STATE(3570), 1, - aux_sym__multiple_types_repeat1, - STATE(3581), 1, - sym_comment, - ACTIONS(6592), 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, - [132842] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(6596), 1, - anon_sym_RBRACK, - STATE(3570), 1, - aux_sym__multiple_types_repeat1, - STATE(3582), 1, - sym_comment, - ACTIONS(6592), 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, - [132894] = 6, - ACTIONS(251), 1, + [132223] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6598), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6600), 1, - aux_sym__immediate_decimal_token2, - STATE(3583), 1, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + ACTIONS(1808), 1, + anon_sym_LPAREN2, + ACTIONS(6638), 1, + anon_sym_DOT_DOT2, + STATE(3611), 1, sym_comment, - ACTIONS(1711), 7, + ACTIONS(6640), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1806), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1713), 28, - sym__newline, + ACTIONS(1814), 26, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -355546,7 +358898,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -355556,18 +358907,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [132946] = 6, - ACTIONS(251), 1, + [132278] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6602), 1, - anon_sym_DOT, - ACTIONS(6604), 1, - aux_sym__immediate_decimal_token2, - STATE(3584), 1, + STATE(3612), 1, sym_comment, - ACTIONS(1755), 7, + ACTIONS(1693), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -355575,15 +358920,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1757), 28, - sym__newline, + ACTIONS(1695), 29, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -355604,18 +358950,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [132998] = 6, + [132325] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(6606), 1, - anon_sym_RBRACK, - STATE(3570), 1, - aux_sym__multiple_types_repeat1, - STATE(3585), 1, + ACTIONS(6642), 1, + anon_sym_DOT, + ACTIONS(6644), 1, + aux_sym__immediate_decimal_token2, + STATE(3613), 1, + sym_comment, + ACTIONS(1512), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(1514), 26, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [132376] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6646), 1, + sym__newline, + STATE(3614), 2, sym_comment, - ACTIONS(6592), 34, + aux_sym_shebang_repeat1, + ACTIONS(1296), 34, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -355650,29 +359038,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var_DASHwith_DASHopt_DASHtype, anon_sym_record, anon_sym_list, - [133050] = 4, - ACTIONS(251), 1, + [132423] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3586), 1, + STATE(3615), 1, sym_comment, - ACTIONS(1743), 8, + ACTIONS(1766), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1745), 29, - sym__newline, + ACTIONS(1768), 29, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -355693,76 +359081,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [133098] = 6, - ACTIONS(3), 1, + [132470] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(6608), 1, - anon_sym_RBRACK, - STATE(3570), 1, - aux_sym__multiple_types_repeat1, - STATE(3587), 1, + STATE(3616), 1, sym_comment, - ACTIONS(6592), 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, - [133150] = 4, - ACTIONS(251), 1, + ACTIONS(1792), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1794), 29, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [132517] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3588), 1, + STATE(3617), 1, sym_comment, - ACTIONS(1680), 8, + ACTIONS(1701), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1682), 29, - sym__newline, + ACTIONS(1703), 29, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -355783,34 +359167,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [133198] = 11, - ACTIONS(251), 1, + [132564] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, + ACTIONS(1818), 1, anon_sym_LPAREN2, - ACTIONS(4780), 1, + ACTIONS(1826), 1, aux_sym_unquoted_token2, - ACTIONS(6610), 1, + ACTIONS(6649), 1, anon_sym_DOT_DOT2, - ACTIONS(6614), 1, - sym_filesize_unit, - ACTIONS(6616), 1, - sym_duration_unit, - STATE(3589), 1, + STATE(3618), 1, sym_comment, - STATE(7381), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6612), 2, + ACTIONS(6651), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1638), 5, + ACTIONS(1816), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1650), 24, + ACTIONS(1824), 26, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -355818,6 +359195,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -355835,16 +359214,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [133260] = 4, + [132619] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2514), 1, + ACTIONS(6604), 1, sym__entry_separator, - STATE(3590), 1, + STATE(3560), 1, + aux_sym__multiple_types_repeat1, + STATE(3619), 1, sym_comment, - ACTIONS(2512), 36, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(6602), 34, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -355879,23 +359258,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var_DASHwith_DASHopt_DASHtype, anon_sym_record, anon_sym_list, - [133308] = 5, - ACTIONS(251), 1, + [132668] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6618), 1, + ACTIONS(6653), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6655), 1, aux_sym__immediate_decimal_token2, - STATE(3591), 1, + STATE(3620), 1, sym_comment, - ACTIONS(1680), 8, + ACTIONS(1693), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1682), 28, + ACTIONS(1695), 27, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -355903,6 +359282,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -355921,33 +359302,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [133358] = 5, - ACTIONS(251), 1, + [132718] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6569), 1, + ACTIONS(6628), 1, aux_sym__immediate_decimal_token2, - STATE(3592), 1, + STATE(3621), 1, sym_comment, - ACTIONS(1550), 8, + ACTIONS(1701), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1552), 28, + ACTIONS(1703), 28, + sym__newline, anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -355966,24 +359345,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + [132766] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6657), 1, + aux_sym__immediate_decimal_token2, + STATE(3622), 1, + sym_comment, + ACTIONS(1618), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(1620), 26, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, sym_duration_unit, - [133408] = 4, - ACTIONS(251), 1, + [132814] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3593), 1, + ACTIONS(6659), 1, + aux_sym__immediate_decimal_token2, + STATE(3623), 1, sym_comment, - ACTIONS(1550), 8, + ACTIONS(1766), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1552), 29, + ACTIONS(1768), 28, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -355992,6 +359411,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -356010,27 +359431,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [133456] = 6, - ACTIONS(251), 1, + [132862] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5948), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6095), 1, + STATE(3624), 1, + sym_comment, + ACTIONS(1288), 35, + sym__newline, + 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, + [132906] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6661), 1, anon_sym_DOT, - STATE(3594), 1, + ACTIONS(6663), 1, + aux_sym__immediate_decimal_token2, + STATE(3625), 1, sym_comment, - ACTIONS(1550), 7, + ACTIONS(1701), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - ACTIONS(1552), 27, + aux_sym_unquoted_token2, + ACTIONS(1703), 27, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -356038,6 +359496,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -356046,6 +359506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -356055,27 +359516,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + [132956] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6644), 1, + aux_sym__immediate_decimal_token2, + STATE(3626), 1, + sym_comment, + ACTIONS(1512), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(1514), 26, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, sym_duration_unit, - [133507] = 6, - ACTIONS(251), 1, + [133004] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6620), 1, + ACTIONS(6665), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6622), 1, + ACTIONS(6667), 1, aux_sym__immediate_decimal_token2, - STATE(3595), 1, + STATE(3627), 1, + sym_comment, + ACTIONS(1504), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + ACTIONS(1506), 26, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [133054] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6669), 1, + anon_sym_DOT, + ACTIONS(6671), 1, + aux_sym__immediate_decimal_token2, + STATE(3628), 1, + sym_comment, + ACTIONS(1512), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + ACTIONS(1514), 26, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [133104] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6673), 1, + anon_sym_DOT_DOT2, + STATE(3629), 1, sym_comment, - ACTIONS(1711), 7, + ACTIONS(6675), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1002), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1713), 27, + ACTIONS(998), 26, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -356083,6 +359671,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -356091,7 +359681,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -356101,74 +359690,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [133558] = 5, - ACTIONS(251), 1, + [133153] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6604), 1, - aux_sym__immediate_decimal_token2, - STATE(3596), 1, + ACTIONS(2075), 1, + anon_sym_LPAREN2, + ACTIONS(2079), 1, + aux_sym_unquoted_token4, + STATE(3630), 1, sym_comment, - ACTIONS(1755), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1757), 28, + ACTIONS(2083), 2, sym__newline, + anon_sym_LBRACE, + ACTIONS(2081), 30, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [133607] = 4, - ACTIONS(251), 1, + [133202] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3597), 1, + ACTIONS(1639), 1, + anon_sym_COLON2, + ACTIONS(2582), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6677), 1, + sym_filesize_unit, + ACTIONS(6679), 1, + sym_duration_unit, + STATE(3631), 1, + sym_comment, + ACTIONS(2580), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2578), 25, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [133255] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3632), 1, sym_comment, - ACTIONS(1542), 8, + ACTIONS(1693), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1544), 28, + ACTIONS(1695), 28, + sym__newline, anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -356187,77 +359819,280 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + [133300] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3633), 1, + sym_comment, + ACTIONS(1618), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(1620), 26, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, sym_duration_unit, - [133654] = 4, - ACTIONS(251), 1, + [133345] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3598), 1, + ACTIONS(6681), 1, + aux_sym__immediate_decimal_token2, + STATE(3634), 1, sym_comment, - ACTIONS(1550), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, + ACTIONS(1618), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1552), 28, + ACTIONS(1620), 26, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [133392] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3635), 1, + sym_comment, + ACTIONS(2087), 3, + sym__newline, + anon_sym_LBRACE, + anon_sym_LPAREN2, + ACTIONS(2085), 31, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + aux_sym_unquoted_token4, + [133437] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3636), 1, + sym_comment, + ACTIONS(1512), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(1514), 26, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, sym_duration_unit, - [133701] = 6, - ACTIONS(251), 1, + [133482] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6624), 1, - anon_sym_DOT, - ACTIONS(6626), 1, + ACTIONS(6671), 1, aux_sym__immediate_decimal_token2, - STATE(3599), 1, + STATE(3637), 1, + sym_comment, + ACTIONS(1512), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + ACTIONS(1514), 26, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [133529] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3638), 1, + sym_comment, + ACTIONS(1689), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(1691), 26, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [133574] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1818), 1, + anon_sym_LPAREN2, + ACTIONS(1826), 1, + aux_sym_unquoted_token2, + STATE(3639), 1, sym_comment, - ACTIONS(1755), 7, + ACTIONS(2164), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1757), 27, + ACTIONS(2166), 27, + sym__newline, anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -356266,7 +360101,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -356276,154 +360110,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [133752] = 5, - ACTIONS(251), 1, + [133623] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6628), 1, - aux_sym__immediate_decimal_token2, - STATE(3600), 1, + STATE(3640), 1, + sym_comment, + ACTIONS(1504), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(1506), 26, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [133668] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2192), 1, + anon_sym_LPAREN2, + ACTIONS(2196), 1, + aux_sym_unquoted_token2, + STATE(3641), 1, sym_comment, - ACTIONS(1783), 7, + ACTIONS(2190), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1785), 28, + ACTIONS(2194), 27, + sym__newline, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [133717] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2067), 1, + anon_sym_LPAREN2, + ACTIONS(2071), 1, + aux_sym_unquoted_token4, + STATE(3642), 1, + sym_comment, + ACTIONS(2069), 2, sym__newline, + anon_sym_LBRACE, + ACTIONS(2065), 30, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [133801] = 5, + [133766] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - STATE(3570), 1, - aux_sym__multiple_types_repeat1, - STATE(3601), 1, - sym_comment, - ACTIONS(6592), 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, - [133850] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3602), 1, + ACTIONS(2061), 1, + anon_sym_LPAREN2, + ACTIONS(2063), 1, + aux_sym_unquoted_token4, + STATE(3643), 1, sym_comment, - ACTIONS(1680), 8, + ACTIONS(998), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(1002), 30, anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1682), 28, anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [133897] = 4, - ACTIONS(251), 1, + [133815] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3603), 1, + ACTIONS(6663), 1, + aux_sym__immediate_decimal_token2, + STATE(3644), 1, sym_comment, - ACTIONS(1743), 8, + ACTIONS(1701), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1745), 28, + ACTIONS(1703), 27, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -356431,6 +360302,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -356449,116 +360322,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [133944] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6630), 1, - sym__newline, - STATE(3604), 2, - sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1298), 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, - [133991] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3605), 1, - sym_comment, - ACTIONS(1309), 35, - sym__newline, - 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, - [134035] = 5, - ACTIONS(251), 1, + [133862] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6633), 1, - aux_sym__immediate_decimal_token2, - STATE(3606), 1, + ACTIONS(1818), 1, + anon_sym_LPAREN2, + ACTIONS(1826), 1, + aux_sym_unquoted_token2, + STATE(3645), 1, sym_comment, - ACTIONS(1783), 7, + ACTIONS(1816), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1785), 27, + ACTIONS(1824), 27, + sym__newline, anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -356567,7 +360356,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -356577,22 +360365,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [134083] = 4, - ACTIONS(251), 1, + [133911] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3607), 1, + STATE(3646), 1, sym_comment, - ACTIONS(1755), 7, + ACTIONS(1766), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1757), 28, + ACTIONS(1768), 28, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -356601,6 +360386,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -356619,37 +360406,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [134129] = 8, - ACTIONS(251), 1, + [133956] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1814), 1, - anon_sym_LPAREN2, - ACTIONS(1822), 1, - aux_sym_unquoted_token2, - ACTIONS(6635), 1, + ACTIONS(5004), 1, + anon_sym_EQ_GT, + ACTIONS(6673), 1, anon_sym_DOT_DOT2, - STATE(3608), 1, + STATE(3647), 1, sym_comment, - ACTIONS(6637), 2, + ACTIONS(6675), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1812), 5, + ACTIONS(5006), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1820), 25, - sym__newline, + ACTIONS(5008), 25, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -356667,20 +360450,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [134183] = 4, - ACTIONS(251), 1, + [134007] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3609), 1, + STATE(3648), 1, sym_comment, - ACTIONS(1783), 7, + ACTIONS(1792), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1785), 28, + ACTIONS(1794), 28, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -356689,6 +360471,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -356707,30 +360491,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [134229] = 4, - ACTIONS(251), 1, + [134052] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3610), 1, + ACTIONS(6683), 1, + anon_sym_DOT_DOT2, + STATE(3649), 1, sym_comment, - ACTIONS(1711), 7, + ACTIONS(6685), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1806), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1713), 28, - sym__newline, + ACTIONS(1814), 26, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -356739,7 +360525,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -356749,30 +360534,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [134275] = 4, - ACTIONS(251), 1, + [134101] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3611), 1, + ACTIONS(6673), 1, + anon_sym_DOT_DOT2, + STATE(3650), 1, sym_comment, - ACTIONS(1835), 7, + ACTIONS(6675), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5006), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1837), 28, - sym__newline, + ACTIONS(5008), 26, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -356781,7 +360568,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -356791,24 +360577,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [134321] = 5, - ACTIONS(251), 1, + [134150] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6626), 1, - aux_sym__immediate_decimal_token2, - STATE(3612), 1, + ACTIONS(6687), 1, + anon_sym_DOT_DOT2, + STATE(3651), 1, sym_comment, - ACTIONS(1755), 7, + ACTIONS(6689), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1816), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1757), 27, + ACTIONS(1824), 26, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -356816,6 +360601,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -356824,7 +360611,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -356834,29 +360620,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [134369] = 8, - ACTIONS(251), 1, + [134199] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1477), 1, + ACTIONS(1457), 1, aux_sym_unquoted_token2, - ACTIONS(1804), 1, + ACTIONS(1808), 1, anon_sym_LPAREN2, - ACTIONS(6639), 1, - anon_sym_DOT_DOT2, - STATE(3613), 1, + STATE(3652), 1, sym_comment, - ACTIONS(6641), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1802), 5, + ACTIONS(1806), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1810), 25, + ACTIONS(1814), 27, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -356865,6 +360644,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -356882,34 +360663,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [134423] = 8, - ACTIONS(251), 1, + [134248] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6221), 1, - sym_filesize_unit, - ACTIONS(6223), 1, - sym_duration_unit, - ACTIONS(6643), 1, - anon_sym_DOT_DOT2, - STATE(3614), 1, + ACTIONS(1562), 1, + aux_sym_unquoted_token2, + ACTIONS(2170), 1, + anon_sym_LPAREN2, + STATE(3653), 1, sym_comment, - ACTIONS(6645), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1638), 5, + ACTIONS(2168), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1650), 24, + ACTIONS(2172), 27, + sym__newline, anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -356927,27 +360706,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [134476] = 4, - ACTIONS(251), 1, + [134297] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3615), 1, + STATE(3654), 1, sym_comment, - ACTIONS(1783), 7, + ACTIONS(1701), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1785), 27, + ACTIONS(1703), 28, + sym__newline, anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -356966,65 +360747,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [134521] = 6, - ACTIONS(3), 1, + [134342] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6647), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6649), 1, + ACTIONS(6691), 1, aux_sym__immediate_decimal_token2, - STATE(3616), 1, - sym_comment, - ACTIONS(1542), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - anon_sym_COLON2, - ACTIONS(1544), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - 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, - sym_duration_unit, - [134570] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3617), 1, + STATE(3655), 1, sym_comment, - ACTIONS(1711), 7, + ACTIONS(1766), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1713), 27, + ACTIONS(1768), 27, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -357032,6 +360769,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -357050,72 +360789,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [134615] = 6, - ACTIONS(251), 1, + [134389] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6651), 1, - anon_sym_DOT, - ACTIONS(6653), 1, - aux_sym__immediate_decimal_token2, - STATE(3618), 1, + ACTIONS(2075), 1, + anon_sym_LPAREN2, + ACTIONS(2079), 1, + aux_sym_unquoted_token4, + STATE(3656), 1, sym_comment, - ACTIONS(1755), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1757), 26, + ACTIONS(2077), 2, sym__newline, + anon_sym_LBRACE, + ACTIONS(2073), 30, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [134664] = 8, - ACTIONS(251), 1, + [134438] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1814), 1, - anon_sym_LPAREN2, - ACTIONS(1822), 1, - aux_sym_unquoted_token2, - ACTIONS(6655), 1, + ACTIONS(6693), 1, anon_sym_DOT_DOT2, - STATE(3619), 1, + STATE(3657), 1, sym_comment, - ACTIONS(6657), 2, + ACTIONS(6695), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1812), 5, + ACTIONS(2043), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1820), 24, + ACTIONS(2049), 26, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -357123,6 +360856,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -357140,31 +360875,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [134717] = 6, - ACTIONS(251), 1, + [134487] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6659), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6661), 1, - aux_sym__immediate_decimal_token2, - STATE(3620), 1, + ACTIONS(6697), 1, + anon_sym_DOT_DOT2, + STATE(3658), 1, sym_comment, - ACTIONS(1711), 6, + ACTIONS(6699), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2030), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1713), 26, - sym__newline, + ACTIONS(2036), 26, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -357173,7 +360909,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -357183,20 +360918,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [134766] = 4, - ACTIONS(251), 1, + [134536] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3621), 1, + ACTIONS(6701), 1, + anon_sym_DOT_DOT2, + STATE(3659), 1, sym_comment, - ACTIONS(1755), 7, + ACTIONS(6703), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1977), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1757), 27, + ACTIONS(1983), 26, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -357204,6 +360942,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -357212,7 +360952,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -357222,29 +360961,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [134811] = 8, - ACTIONS(251), 1, + [134585] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym_unquoted_token2, - ACTIONS(1804), 1, - anon_sym_LPAREN2, - ACTIONS(6663), 1, + ACTIONS(6705), 1, anon_sym_DOT_DOT2, - STATE(3622), 1, + STATE(3660), 1, sym_comment, - ACTIONS(6665), 2, + ACTIONS(6707), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1802), 5, + ACTIONS(1985), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1810), 24, + ACTIONS(1991), 26, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -357252,6 +360985,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -357269,25 +361004,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [134864] = 6, + [134634] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6667), 1, - anon_sym_DOT, - ACTIONS(6669), 1, - aux_sym__immediate_decimal_token2, - STATE(3623), 1, + ACTIONS(6713), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6715), 1, + sym_filesize_unit, + ACTIONS(6717), 1, + sym_duration_unit, + STATE(3661), 1, sym_comment, - ACTIONS(1550), 8, + ACTIONS(6711), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - anon_sym_COLON2, - ACTIONS(1552), 24, + ACTIONS(6709), 25, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -357305,119 +361039,473 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_in, anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - sym_duration_unit, - [134913] = 4, - ACTIONS(251), 1, + [134684] = 17, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3624), 1, + ACTIONS(6721), 1, + anon_sym_DASH2, + ACTIONS(6735), 1, + anon_sym_PLUS2, + ACTIONS(6739), 1, + anon_sym_bit_DASHand2, + ACTIONS(6741), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6743), 1, + anon_sym_bit_DASHor2, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(3662), 1, sym_comment, - ACTIONS(1835), 7, + ACTIONS(6719), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6725), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1837), 27, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, + ACTIONS(6729), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6731), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6733), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6737), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6727), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5279), 5, + sym__newline, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + ACTIONS(6723), 6, + anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + [134754] = 18, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5371), 1, + sym__newline, + ACTIONS(6747), 1, + anon_sym_DASH2, + ACTIONS(6761), 1, + anon_sym_PLUS2, + ACTIONS(6765), 1, + anon_sym_bit_DASHand2, + ACTIONS(6767), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6769), 1, + anon_sym_bit_DASHor2, + STATE(3663), 1, + sym_comment, + STATE(3695), 1, + aux_sym_shebang_repeat1, + ACTIONS(6745), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6751), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6755), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6757), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6759), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6763), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5283), 4, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6753), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(6749), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [134826] = 18, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6721), 1, + anon_sym_DASH2, + ACTIONS(6735), 1, + anon_sym_PLUS2, + ACTIONS(6739), 1, + anon_sym_bit_DASHand2, + ACTIONS(6741), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6743), 1, + anon_sym_bit_DASHor2, + ACTIONS(6771), 1, + anon_sym_and2, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(3664), 1, + sym_comment, + ACTIONS(6719), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6725), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6729), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, + ACTIONS(6731), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6733), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6737), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, + ACTIONS(5279), 4, + sym__newline, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6727), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6723), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [134898] = 19, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5371), 1, + sym__newline, + ACTIONS(6747), 1, + anon_sym_DASH2, + ACTIONS(6761), 1, + anon_sym_PLUS2, + ACTIONS(6765), 1, anon_sym_bit_DASHand2, + ACTIONS(6767), 1, anon_sym_bit_DASHxor2, + ACTIONS(6769), 1, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [134958] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6653), 1, - aux_sym__immediate_decimal_token2, - STATE(3625), 1, + ACTIONS(6773), 1, + anon_sym_and2, + STATE(3665), 1, sym_comment, - ACTIONS(1755), 6, + STATE(3696), 1, + aux_sym_shebang_repeat1, + ACTIONS(6745), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6751), 2, + anon_sym_STAR2, anon_sym_SLASH2, + ACTIONS(6755), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6757), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6759), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6763), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5283), 3, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6753), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6749), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [134972] = 19, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6721), 1, + anon_sym_DASH2, + ACTIONS(6735), 1, anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1757), 26, + ACTIONS(6739), 1, + anon_sym_bit_DASHand2, + ACTIONS(6741), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6743), 1, + anon_sym_bit_DASHor2, + ACTIONS(6771), 1, + anon_sym_and2, + ACTIONS(6775), 1, + anon_sym_xor2, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(3666), 1, + sym_comment, + ACTIONS(6719), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6725), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6729), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6731), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6733), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6737), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5279), 3, sym__newline, - anon_sym_DASH2, - anon_sym_in2, anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(6727), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6723), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [135046] = 20, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(6747), 1, + anon_sym_DASH2, + ACTIONS(6761), 1, + anon_sym_PLUS2, + ACTIONS(6765), 1, + anon_sym_bit_DASHand2, + ACTIONS(6767), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6769), 1, + anon_sym_bit_DASHor2, + ACTIONS(6773), 1, anon_sym_and2, + ACTIONS(6777), 1, anon_sym_xor2, + STATE(3667), 1, + sym_comment, + STATE(3697), 1, + aux_sym_shebang_repeat1, + ACTIONS(5283), 2, + anon_sym_LBRACE, anon_sym_or2, + ACTIONS(6745), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6751), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6755), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6757), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6759), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6763), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6753), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6749), 6, + anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + [135122] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6721), 1, + anon_sym_DASH2, + ACTIONS(6735), 1, + anon_sym_PLUS2, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(3668), 1, + sym_comment, + ACTIONS(6719), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6725), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6731), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6733), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6737), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6727), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(6723), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5279), 10, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [135184] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5371), 1, + sym__newline, + ACTIONS(6747), 1, + anon_sym_DASH2, + ACTIONS(6761), 1, + anon_sym_PLUS2, + STATE(3669), 1, + sym_comment, + STATE(3698), 1, + aux_sym_shebang_repeat1, + ACTIONS(6745), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6751), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6757), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6759), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6763), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, + ACTIONS(6753), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6749), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5283), 9, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [135004] = 6, - ACTIONS(251), 1, + [135248] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6671), 1, - anon_sym_DOT, - ACTIONS(6673), 1, - aux_sym__immediate_decimal_token2, - STATE(3626), 1, + ACTIONS(6721), 1, + anon_sym_DASH2, + ACTIONS(6735), 1, + anon_sym_PLUS2, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(3670), 1, sym_comment, - ACTIONS(1755), 6, + ACTIONS(5281), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6725), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1757), 25, - anon_sym_DASH2, + ACTIONS(6731), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6733), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5279), 22, + sym__newline, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -357426,165 +361514,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [135052] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6675), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6677), 1, - aux_sym__immediate_decimal_token2, - STATE(3627), 1, - sym_comment, - ACTIONS(1542), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - ACTIONS(1544), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - 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, - sym_duration_unit, - [135100] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6679), 1, - anon_sym_DOT, - ACTIONS(6681), 1, - aux_sym__immediate_decimal_token2, - STATE(3628), 1, - sym_comment, - ACTIONS(1550), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - ACTIONS(1552), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - 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, - sym_duration_unit, - [135148] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6669), 1, - aux_sym__immediate_decimal_token2, - STATE(3629), 1, - sym_comment, - ACTIONS(1550), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - anon_sym_COLON2, - ACTIONS(1552), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - 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, - sym_duration_unit, - [135194] = 6, - ACTIONS(251), 1, + [135304] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6683), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6685), 1, - aux_sym__immediate_decimal_token2, - STATE(3630), 1, + ACTIONS(5371), 1, + sym__newline, + ACTIONS(6747), 1, + anon_sym_DASH2, + ACTIONS(6761), 1, + anon_sym_PLUS2, + STATE(3671), 1, sym_comment, - ACTIONS(1711), 6, + STATE(3699), 1, + aux_sym_shebang_repeat1, + ACTIONS(5285), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6751), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1713), 25, - anon_sym_DASH2, + ACTIONS(6757), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6759), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5283), 21, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -357593,123 +361561,357 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [135362] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6721), 1, + anon_sym_DASH2, + ACTIONS(6735), 1, + anon_sym_PLUS2, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(3672), 1, + sym_comment, + ACTIONS(6719), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6725), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6729), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6731), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6733), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6737), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, + ACTIONS(6727), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6723), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5279), 8, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [135242] = 5, - ACTIONS(251), 1, + [135426] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6687), 1, - aux_sym__immediate_decimal_token2, - STATE(3631), 1, + ACTIONS(5371), 1, + sym__newline, + ACTIONS(6747), 1, + anon_sym_DASH2, + ACTIONS(6761), 1, + anon_sym_PLUS2, + STATE(3673), 1, sym_comment, - ACTIONS(1783), 6, + STATE(3700), 1, + aux_sym_shebang_repeat1, + ACTIONS(6745), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6751), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1785), 26, - sym__newline, - anon_sym_DASH2, + ACTIONS(6755), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6757), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6759), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6763), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6753), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6749), 6, anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5283), 7, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [135492] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6721), 1, + anon_sym_DASH2, + ACTIONS(6735), 1, + anon_sym_PLUS2, + ACTIONS(6739), 1, + anon_sym_bit_DASHand2, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(3674), 1, + sym_comment, + ACTIONS(6719), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6725), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6729), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6731), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6733), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6737), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6727), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6723), 6, + anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(5279), 7, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [135558] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5371), 1, + sym__newline, + ACTIONS(6747), 1, + anon_sym_DASH2, + ACTIONS(6761), 1, + anon_sym_PLUS2, + ACTIONS(6765), 1, + anon_sym_bit_DASHand2, + STATE(3675), 1, + sym_comment, + STATE(3701), 1, + aux_sym_shebang_repeat1, + ACTIONS(6745), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6751), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6755), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6757), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6759), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6763), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6753), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(5283), 6, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(6749), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [135626] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6721), 1, + anon_sym_DASH2, + ACTIONS(6735), 1, + anon_sym_PLUS2, + ACTIONS(6739), 1, + anon_sym_bit_DASHand2, + ACTIONS(6741), 1, + anon_sym_bit_DASHxor2, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(3676), 1, + sym_comment, + ACTIONS(6719), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6725), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6729), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, + ACTIONS(6731), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6733), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6737), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, + ACTIONS(6727), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5279), 6, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHor2, - [135288] = 5, - ACTIONS(3), 1, + ACTIONS(6723), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [135694] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6689), 1, - aux_sym__immediate_decimal_token2, - STATE(3632), 1, + ACTIONS(5371), 1, + sym__newline, + ACTIONS(6747), 1, + anon_sym_DASH2, + ACTIONS(6761), 1, + anon_sym_PLUS2, + ACTIONS(6765), 1, + anon_sym_bit_DASHand2, + ACTIONS(6767), 1, + anon_sym_bit_DASHxor2, + STATE(3677), 1, sym_comment, - ACTIONS(1680), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - anon_sym_COLON2, - ACTIONS(1682), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - 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, - sym_duration_unit, - [135334] = 7, - ACTIONS(251), 1, + STATE(3702), 1, + aux_sym_shebang_repeat1, + ACTIONS(6745), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6751), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6755), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6757), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6759), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6763), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6753), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5283), 5, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(6749), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [135764] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5154), 1, - anon_sym_EQ_GT, - ACTIONS(6691), 1, - anon_sym_DOT_DOT2, - STATE(3633), 1, + ACTIONS(5374), 1, + sym__newline, + ACTIONS(6747), 1, + anon_sym_DASH2, + ACTIONS(6761), 1, + anon_sym_PLUS2, + STATE(3678), 1, sym_comment, - ACTIONS(6693), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5156), 5, + STATE(3703), 1, + aux_sym_shebang_repeat1, + ACTIONS(5261), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6751), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5158), 23, - anon_sym_DASH2, + ACTIONS(6757), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6759), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6763), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5259), 19, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -357718,29 +361920,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [135383] = 4, - ACTIONS(251), 1, + [135824] = 9, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3634), 1, + ACTIONS(5374), 1, + sym__newline, + STATE(3679), 1, sym_comment, - ACTIONS(1783), 6, - anon_sym_GT2, + STATE(3705), 1, + aux_sym_shebang_repeat1, + ACTIONS(6751), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(6757), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6759), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5261), 3, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1785), 26, - sym__newline, + ACTIONS(5259), 22, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -357748,6 +361953,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -357756,111 +361963,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [135426] = 4, - ACTIONS(251), 1, + [135878] = 13, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3635), 1, + ACTIONS(5374), 1, + sym__newline, + ACTIONS(6747), 1, + anon_sym_DASH2, + ACTIONS(6761), 1, + anon_sym_PLUS2, + STATE(3680), 1, sym_comment, - ACTIONS(1835), 6, + STATE(3707), 1, + aux_sym_shebang_repeat1, + ACTIONS(6745), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6751), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1837), 26, - sym__newline, - anon_sym_DASH2, + ACTIONS(6757), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6759), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6763), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6753), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5259), 15, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [135469] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3636), 1, - sym_comment, - ACTIONS(1542), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - anon_sym_COLON2, - ACTIONS(1544), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - 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, - sym_duration_unit, - [135512] = 6, - ACTIONS(251), 1, + [135940] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1814), 1, - anon_sym_LPAREN2, - ACTIONS(1822), 1, - aux_sym_unquoted_token2, - STATE(3637), 1, + ACTIONS(5374), 1, + sym__newline, + STATE(3681), 1, sym_comment, - ACTIONS(2220), 5, + STATE(3710), 1, + aux_sym_shebang_repeat1, + ACTIONS(6757), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5261), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2222), 25, - sym__newline, + ACTIONS(5259), 24, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -357868,6 +362043,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -357876,8 +362053,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -357885,112 +362060,255 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [135559] = 6, - ACTIONS(251), 1, + [135990] = 18, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1814), 1, - anon_sym_LPAREN2, - ACTIONS(1822), 1, - aux_sym_unquoted_token2, - STATE(3638), 1, + ACTIONS(5374), 1, + sym__newline, + ACTIONS(6747), 1, + anon_sym_DASH2, + ACTIONS(6761), 1, + anon_sym_PLUS2, + ACTIONS(6765), 1, + anon_sym_bit_DASHand2, + ACTIONS(6767), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6769), 1, + anon_sym_bit_DASHor2, + STATE(3682), 1, sym_comment, - ACTIONS(1812), 5, + STATE(3712), 1, + aux_sym_shebang_repeat1, + ACTIONS(6745), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6751), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1820), 25, - sym__newline, - anon_sym_DASH2, - anon_sym_in2, + ACTIONS(6755), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6757), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6759), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6763), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5259), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, + ACTIONS(6753), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(6749), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [136062] = 19, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5374), 1, + sym__newline, + ACTIONS(6747), 1, + anon_sym_DASH2, + ACTIONS(6761), 1, + anon_sym_PLUS2, + ACTIONS(6765), 1, + anon_sym_bit_DASHand2, + ACTIONS(6767), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6769), 1, + anon_sym_bit_DASHor2, + ACTIONS(6773), 1, + anon_sym_and2, + STATE(3683), 1, + sym_comment, + STATE(3714), 1, + aux_sym_shebang_repeat1, + ACTIONS(6745), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6751), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6755), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + ACTIONS(6757), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6759), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6763), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, + ACTIONS(5259), 3, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6753), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6749), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [136136] = 20, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(6747), 1, + anon_sym_DASH2, + ACTIONS(6761), 1, + anon_sym_PLUS2, + ACTIONS(6765), 1, anon_sym_bit_DASHand2, + ACTIONS(6767), 1, anon_sym_bit_DASHxor2, + ACTIONS(6769), 1, anon_sym_bit_DASHor2, - [135606] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1540), 1, - aux_sym_unquoted_token2, - ACTIONS(2226), 1, - anon_sym_LPAREN2, - STATE(3639), 1, + ACTIONS(6773), 1, + anon_sym_and2, + ACTIONS(6777), 1, + anon_sym_xor2, + STATE(3684), 1, sym_comment, - ACTIONS(2224), 5, + STATE(3719), 1, + aux_sym_shebang_repeat1, + ACTIONS(5259), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(6745), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6751), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2228), 25, - sym__newline, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, + ACTIONS(6755), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6757), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6759), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6763), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6753), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + ACTIONS(6749), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [136212] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5374), 1, + sym__newline, + ACTIONS(6747), 1, + anon_sym_DASH2, + ACTIONS(6761), 1, + anon_sym_PLUS2, + STATE(3685), 1, + sym_comment, + STATE(3724), 1, + aux_sym_shebang_repeat1, + ACTIONS(6745), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6751), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6757), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6759), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6763), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, + ACTIONS(6753), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6749), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5259), 9, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [135653] = 6, - ACTIONS(251), 1, + [136276] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2174), 1, - anon_sym_LPAREN2, - ACTIONS(2178), 1, - aux_sym_unquoted_token2, - STATE(3640), 1, + ACTIONS(5374), 1, + sym__newline, + ACTIONS(6747), 1, + anon_sym_DASH2, + ACTIONS(6761), 1, + anon_sym_PLUS2, + STATE(3686), 1, sym_comment, - ACTIONS(2172), 5, + STATE(3727), 1, + aux_sym_shebang_repeat1, + ACTIONS(5261), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6751), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2176), 25, - sym__newline, - anon_sym_DASH2, + ACTIONS(6757), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6759), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5259), 21, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -357999,372 +362317,290 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [135700] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3641), 1, - sym_comment, - ACTIONS(1550), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - anon_sym_COLON2, - ACTIONS(1552), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - 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, - sym_duration_unit, - [135743] = 4, - ACTIONS(251), 1, + [136334] = 15, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3642), 1, - sym_comment, - ACTIONS(976), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(978), 29, - anon_sym_EQ, + ACTIONS(5374), 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, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR, + ACTIONS(6747), 1, + anon_sym_DASH2, + ACTIONS(6761), 1, + anon_sym_PLUS2, + STATE(3687), 1, + sym_comment, + STATE(3729), 1, + aux_sym_shebang_repeat1, + ACTIONS(6745), 2, anon_sym_GT2, - anon_sym_DASH_DASH, + anon_sym_LT2, + ACTIONS(6751), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6755), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6757), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6759), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6763), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6753), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6749), 6, anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5259), 7, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - [135786] = 27, - ACTIONS(227), 1, - aux_sym__val_number_token5, - ACTIONS(251), 1, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [136400] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(383), 1, - anon_sym_DASH2, - ACTIONS(3416), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3470), 1, - aux_sym_expr_unary_token1, - ACTIONS(6695), 1, - sym_identifier, - ACTIONS(6697), 1, + ACTIONS(5374), 1, sym__newline, - ACTIONS(6699), 1, - anon_sym_LPAREN, - ACTIONS(6701), 1, - anon_sym_DOLLAR, - ACTIONS(6703), 1, - anon_sym_LBRACE, - ACTIONS(6705), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, - aux_sym__val_number_decimal_token2, - STATE(1667), 1, - sym__val_number, - STATE(1700), 1, - sym__val_number_decimal, - STATE(2143), 1, - sym__expr_unary_minus, - STATE(3643), 1, + ACTIONS(6747), 1, + anon_sym_DASH2, + ACTIONS(6761), 1, + anon_sym_PLUS2, + ACTIONS(6765), 1, + anon_sym_bit_DASHand2, + STATE(3688), 1, sym_comment, - STATE(3872), 1, - sym_expr_parenthesized, - STATE(3952), 1, + STATE(3783), 1, aux_sym_shebang_repeat1, - STATE(4176), 1, - sym_val_number, - STATE(4252), 1, - sym__predicate, - STATE(4471), 1, - sym__binary_predicate_parenthesized, - STATE(4772), 1, - sym_val_closure, - ACTIONS(215), 2, - anon_sym_true, - anon_sym_false, - STATE(4437), 2, - sym_expr_unary, - sym_val_bool, - STATE(5058), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(229), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [135875] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3644), 1, - sym_comment, - ACTIONS(984), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(986), 29, - 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_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR, + ACTIONS(6745), 2, anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_in2, + anon_sym_LT2, + ACTIONS(6751), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6755), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6757), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6759), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6763), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6753), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5259), 6, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - [135918] = 6, - ACTIONS(3), 1, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(6749), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [136468] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2130), 1, - anon_sym_LPAREN2, - ACTIONS(2134), 1, - aux_sym_unquoted_token4, - STATE(3645), 1, - sym_comment, - ACTIONS(2132), 2, + ACTIONS(5374), 1, sym__newline, - anon_sym_LBRACE, - ACTIONS(2128), 28, - anon_sym_GT2, + ACTIONS(6747), 1, anon_sym_DASH2, - anon_sym_in2, + ACTIONS(6761), 1, + anon_sym_PLUS2, + ACTIONS(6765), 1, + anon_sym_bit_DASHand2, + ACTIONS(6767), 1, + anon_sym_bit_DASHxor2, + STATE(3689), 1, + sym_comment, + STATE(3732), 1, + aux_sym_shebang_repeat1, + ACTIONS(6745), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6751), 2, anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6755), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6757), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6759), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6763), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6753), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5259), 5, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(6749), 6, + anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, + [136538] = 19, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5325), 1, + sym__newline, + ACTIONS(6747), 1, + anon_sym_DASH2, + ACTIONS(6761), 1, + anon_sym_PLUS2, + ACTIONS(6765), 1, + anon_sym_bit_DASHand2, + ACTIONS(6767), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6769), 1, + anon_sym_bit_DASHor2, + ACTIONS(6773), 1, + anon_sym_and2, + STATE(3664), 1, + aux_sym_shebang_repeat1, + STATE(3690), 1, + sym_comment, + ACTIONS(6745), 2, + anon_sym_GT2, anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, + ACTIONS(6751), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6755), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + ACTIONS(6757), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, + ACTIONS(6759), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, + ACTIONS(6763), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [135965] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2206), 1, - anon_sym_LPAREN2, - ACTIONS(2208), 1, - aux_sym_unquoted_token4, - STATE(3646), 1, - sym_comment, - ACTIONS(1012), 2, - sym__newline, + ACTIONS(5297), 3, anon_sym_LBRACE, - ACTIONS(1016), 28, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_STAR2, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, + ACTIONS(6753), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + ACTIONS(6749), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [136612] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6721), 1, + anon_sym_DASH2, + ACTIONS(6735), 1, + anon_sym_PLUS2, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(3691), 1, + sym_comment, + ACTIONS(5245), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6725), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6731), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, + ACTIONS(6733), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, + ACTIONS(6737), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [136012] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3647), 1, - sym_comment, - ACTIONS(1680), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - anon_sym_COLON2, - ACTIONS(1682), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - 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, - sym_duration_unit, - [136055] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2138), 1, - anon_sym_LPAREN2, - ACTIONS(2142), 1, - aux_sym_unquoted_token4, - STATE(3648), 1, - sym_comment, - ACTIONS(2140), 2, + ACTIONS(5243), 20, sym__newline, - anon_sym_LBRACE, - ACTIONS(2136), 28, - anon_sym_GT2, - anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [136102] = 6, - ACTIONS(251), 1, + [136670] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym_unquoted_token2, - ACTIONS(1804), 1, - anon_sym_LPAREN2, - STATE(3649), 1, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(3692), 1, sym_comment, - ACTIONS(1802), 5, - anon_sym_GT2, + ACTIONS(6725), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(6731), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6733), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5245), 3, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(1810), 25, + ACTIONS(5243), 23, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -358373,6 +362609,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -358381,150 +362619,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [136149] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6709), 1, - aux_sym__immediate_decimal_token2, - STATE(3650), 1, - sym_comment, - ACTIONS(1680), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - ACTIONS(1682), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - 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, - sym_duration_unit, - [136194] = 4, - ACTIONS(251), 1, + [136722] = 12, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3651), 1, - sym_comment, - ACTIONS(980), 3, + ACTIONS(6721), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(982), 29, - 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_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR, + ACTIONS(6735), 1, + anon_sym_PLUS2, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(3693), 1, + sym_comment, + ACTIONS(6719), 2, anon_sym_GT2, - anon_sym_DASH_DASH, + anon_sym_LT2, + ACTIONS(6725), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6731), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6733), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6737), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6727), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5243), 16, + sym__newline, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - [136237] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1638), 1, - anon_sym_COLON2, - ACTIONS(3042), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(6711), 1, - sym_filesize_unit, - ACTIONS(6713), 1, - sym_duration_unit, - STATE(3652), 1, - sym_comment, - ACTIONS(3040), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3038), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - 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, - [136288] = 4, - ACTIONS(251), 1, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [136782] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3653), 1, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(3694), 1, sym_comment, - ACTIONS(1755), 6, + ACTIONS(6731), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5245), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1757), 26, + ACTIONS(5243), 25, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -358533,6 +362697,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -358541,9 +362707,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -358551,150 +362714,250 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [136331] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3654), 1, - sym_comment, - ACTIONS(1743), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - anon_sym_COLON2, - ACTIONS(1745), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - 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, - sym_duration_unit, - [136374] = 5, - ACTIONS(251), 1, + [136830] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6673), 1, - aux_sym__immediate_decimal_token2, - STATE(3655), 1, + ACTIONS(6721), 1, + anon_sym_DASH2, + ACTIONS(6735), 1, + anon_sym_PLUS2, + ACTIONS(6739), 1, + anon_sym_bit_DASHand2, + ACTIONS(6741), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6743), 1, + anon_sym_bit_DASHor2, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(3695), 1, sym_comment, - ACTIONS(1755), 6, + ACTIONS(6719), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6725), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1757), 25, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, + ACTIONS(6729), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6731), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6733), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6737), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6727), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5243), 5, + sym__newline, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + ACTIONS(6723), 6, + anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, + [136900] = 18, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6721), 1, + anon_sym_DASH2, + ACTIONS(6735), 1, + anon_sym_PLUS2, + ACTIONS(6739), 1, + anon_sym_bit_DASHand2, + ACTIONS(6741), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6743), 1, + anon_sym_bit_DASHor2, + ACTIONS(6771), 1, + anon_sym_and2, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(3696), 1, + sym_comment, + ACTIONS(6719), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6725), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6729), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, + ACTIONS(6731), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6733), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6737), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, + ACTIONS(5243), 4, + sym__newline, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6727), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6723), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [136972] = 19, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6721), 1, + anon_sym_DASH2, + ACTIONS(6735), 1, + anon_sym_PLUS2, + ACTIONS(6739), 1, anon_sym_bit_DASHand2, + ACTIONS(6741), 1, anon_sym_bit_DASHxor2, + ACTIONS(6743), 1, anon_sym_bit_DASHor2, - [136419] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6691), 1, - anon_sym_DOT_DOT2, - STATE(3656), 1, + ACTIONS(6771), 1, + anon_sym_and2, + ACTIONS(6775), 1, + anon_sym_xor2, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(3697), 1, sym_comment, - ACTIONS(6693), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1016), 5, + ACTIONS(6719), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6725), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1012), 24, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, + ACTIONS(6729), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6731), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6733), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6737), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5243), 3, + sym__newline, + anon_sym_LBRACE, anon_sym_or2, + ACTIONS(6727), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6723), 6, + anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + [137046] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6721), 1, + anon_sym_DASH2, + ACTIONS(6735), 1, + anon_sym_PLUS2, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(3698), 1, + sym_comment, + ACTIONS(6719), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6725), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6731), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6733), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6737), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6727), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(6723), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5243), 10, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [136466] = 6, - ACTIONS(251), 1, + [137108] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6715), 1, - anon_sym_DOT_DOT2, - STATE(3657), 1, + ACTIONS(6721), 1, + anon_sym_DASH2, + ACTIONS(6735), 1, + anon_sym_PLUS2, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(3699), 1, sym_comment, - ACTIONS(6717), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1802), 5, + ACTIONS(5245), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6725), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1810), 24, - anon_sym_DASH2, + ACTIONS(6731), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6733), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5243), 22, + sym__newline, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -358703,223 +362966,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [136513] = 6, - ACTIONS(251), 1, + [137164] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6691), 1, - anon_sym_DOT_DOT2, - STATE(3658), 1, + ACTIONS(6721), 1, + anon_sym_DASH2, + ACTIONS(6735), 1, + anon_sym_PLUS2, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(3700), 1, sym_comment, - ACTIONS(6693), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5156), 5, + ACTIONS(6719), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6725), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5158), 24, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, + ACTIONS(6729), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + ACTIONS(6731), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6733), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6737), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, + ACTIONS(6727), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6723), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5243), 8, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [136560] = 6, - ACTIONS(251), 1, + [137228] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6719), 1, - anon_sym_DOT_DOT2, - STATE(3659), 1, + ACTIONS(6721), 1, + anon_sym_DASH2, + ACTIONS(6735), 1, + anon_sym_PLUS2, + ACTIONS(6739), 1, + anon_sym_bit_DASHand2, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(3701), 1, sym_comment, - ACTIONS(6721), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1812), 5, + ACTIONS(6719), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6725), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1820), 24, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, + ACTIONS(6729), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + ACTIONS(6731), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6733), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6737), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, + ACTIONS(6727), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6723), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5243), 7, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [136607] = 5, - ACTIONS(251), 1, + [137294] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6723), 1, - aux_sym__immediate_decimal_token2, - STATE(3660), 1, + ACTIONS(6721), 1, + anon_sym_DASH2, + ACTIONS(6735), 1, + anon_sym_PLUS2, + ACTIONS(6739), 1, + anon_sym_bit_DASHand2, + ACTIONS(6741), 1, + anon_sym_bit_DASHxor2, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(3702), 1, sym_comment, - ACTIONS(1783), 6, + ACTIONS(6719), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6725), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1785), 25, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, + ACTIONS(6729), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, + ACTIONS(6731), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6733), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6737), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, + ACTIONS(6727), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5243), 6, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHor2, - [136652] = 27, - ACTIONS(227), 1, - aux_sym__val_number_token5, - ACTIONS(251), 1, + ACTIONS(6723), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [137362] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(383), 1, + ACTIONS(6721), 1, anon_sym_DASH2, - ACTIONS(3416), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3470), 1, - aux_sym_expr_unary_token1, - ACTIONS(6695), 1, - sym_identifier, - ACTIONS(6697), 1, - sym__newline, - ACTIONS(6699), 1, - anon_sym_LPAREN, - ACTIONS(6701), 1, - anon_sym_DOLLAR, - ACTIONS(6703), 1, - anon_sym_LBRACE, - ACTIONS(6705), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, - aux_sym__val_number_decimal_token2, - STATE(1667), 1, - sym__val_number, - STATE(1700), 1, - sym__val_number_decimal, - STATE(2143), 1, - sym__expr_unary_minus, - STATE(3643), 1, + ACTIONS(6735), 1, + anon_sym_PLUS2, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(3661), 1, - sym_comment, - STATE(3872), 1, - sym_expr_parenthesized, - STATE(4176), 1, - sym_val_number, - STATE(4346), 1, - sym__predicate, - STATE(4460), 1, - sym__binary_predicate_parenthesized, - STATE(4745), 1, - sym_val_closure, - ACTIONS(215), 2, - anon_sym_true, - anon_sym_false, - STATE(4437), 2, - sym_expr_unary, - sym_val_bool, - STATE(5058), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(229), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [136741] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6725), 1, - anon_sym_DOT_DOT2, - STATE(3662), 1, + STATE(3703), 1, sym_comment, - ACTIONS(6727), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2043), 5, + ACTIONS(5293), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6725), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2049), 24, - anon_sym_DASH2, + ACTIONS(6731), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6733), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6737), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5291), 20, + sym__newline, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -358928,39 +363168,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [136788] = 6, - ACTIONS(251), 1, + [137420] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6729), 1, - anon_sym_DOT_DOT2, - STATE(3663), 1, + ACTIONS(5368), 1, + sym__newline, + ACTIONS(6747), 1, + anon_sym_DASH2, + ACTIONS(6761), 1, + anon_sym_PLUS2, + STATE(3704), 1, sym_comment, - ACTIONS(6731), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2019), 5, + STATE(3737), 1, + aux_sym_shebang_repeat1, + ACTIONS(5249), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6751), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2025), 24, - anon_sym_DASH2, + ACTIONS(6757), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6759), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6763), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5247), 19, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -358969,39 +363216,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [136835] = 6, - ACTIONS(251), 1, + [137480] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6733), 1, - anon_sym_DOT_DOT2, - STATE(3664), 1, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(3705), 1, sym_comment, - ACTIONS(6735), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2027), 5, - anon_sym_GT2, + ACTIONS(6725), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(6731), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6733), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5293), 3, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2033), 24, + ACTIONS(5291), 23, + sym__newline, anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -359010,39 +363258,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [136882] = 6, - ACTIONS(251), 1, + [137532] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6737), 1, - anon_sym_DOT_DOT2, - STATE(3665), 1, + ACTIONS(5368), 1, + sym__newline, + STATE(3706), 1, sym_comment, - ACTIONS(6739), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2035), 5, - anon_sym_GT2, + STATE(3740), 1, + aux_sym_shebang_repeat1, + ACTIONS(6751), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(6757), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6759), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5249), 3, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2041), 24, + ACTIONS(5247), 22, anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -359051,70 +363303,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [136929] = 4, - ACTIONS(251), 1, + [137586] = 12, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3666), 1, + ACTIONS(6721), 1, + anon_sym_DASH2, + ACTIONS(6735), 1, + anon_sym_PLUS2, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(3707), 1, sym_comment, - ACTIONS(1711), 6, + ACTIONS(6719), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6725), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1713), 26, + ACTIONS(6731), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6733), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6737), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6727), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5291), 16, sym__newline, - anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [136972] = 5, + [137646] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6681), 1, - aux_sym__immediate_decimal_token2, - STATE(3667), 1, + ACTIONS(2606), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6779), 1, + sym_filesize_unit, + ACTIONS(6781), 1, + sym_duration_unit, + STATE(3708), 1, sym_comment, - ACTIONS(1550), 7, + ACTIONS(2604), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - ACTIONS(1552), 24, + ACTIONS(2602), 25, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -359132,632 +363391,875 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_in, anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - sym_duration_unit, - [137017] = 4, - ACTIONS(251), 1, + [137696] = 13, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3668), 1, - sym_comment, - ACTIONS(972), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(974), 29, - anon_sym_EQ, + ACTIONS(5368), 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, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR, + ACTIONS(6747), 1, + anon_sym_DASH2, + ACTIONS(6761), 1, + anon_sym_PLUS2, + STATE(3709), 1, + sym_comment, + STATE(3742), 1, + aux_sym_shebang_repeat1, + ACTIONS(6745), 2, anon_sym_GT2, - anon_sym_DASH_DASH, + anon_sym_LT2, + ACTIONS(6751), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6757), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6759), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6763), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6753), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5247), 15, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - [137060] = 4, - ACTIONS(3), 1, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [137758] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3669), 1, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(3710), 1, sym_comment, - ACTIONS(2150), 3, - sym__newline, - anon_sym_LBRACE, - anon_sym_LPAREN2, - ACTIONS(2148), 29, + ACTIONS(6731), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5293), 5, anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5291), 25, + sym__newline, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - aux_sym_unquoted_token4, - [137103] = 6, - ACTIONS(3), 1, + [137806] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2138), 1, - anon_sym_LPAREN2, - ACTIONS(2142), 1, - aux_sym_unquoted_token4, - STATE(3670), 1, - sym_comment, - ACTIONS(2146), 2, + ACTIONS(5368), 1, sym__newline, - anon_sym_LBRACE, - ACTIONS(2144), 28, + STATE(3711), 1, + sym_comment, + STATE(3743), 1, + aux_sym_shebang_repeat1, + ACTIONS(6757), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5249), 5, anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5247), 24, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [137150] = 14, - ACTIONS(251), 1, + [137856] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5460), 1, - sym__newline, - ACTIONS(6743), 1, + ACTIONS(6721), 1, anon_sym_DASH2, - ACTIONS(6755), 1, + ACTIONS(6735), 1, anon_sym_PLUS2, - STATE(3671), 1, - sym_comment, - STATE(3739), 1, + ACTIONS(6739), 1, + anon_sym_bit_DASHand2, + ACTIONS(6741), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6743), 1, + anon_sym_bit_DASHor2, + STATE(1615), 1, aux_sym_shebang_repeat1, - ACTIONS(6741), 2, + STATE(3712), 1, + sym_comment, + ACTIONS(6719), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6747), 2, + ACTIONS(6725), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6751), 2, + ACTIONS(6729), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6731), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6753), 2, + ACTIONS(6733), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6757), 2, + ACTIONS(6737), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6745), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6749), 4, + ACTIONS(6727), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5337), 9, + ACTIONS(5291), 5, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [137212] = 15, - ACTIONS(251), 1, + ACTIONS(6723), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [137926] = 18, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5475), 1, + ACTIONS(5368), 1, sym__newline, - ACTIONS(6743), 1, + ACTIONS(6747), 1, anon_sym_DASH2, - ACTIONS(6755), 1, + ACTIONS(6761), 1, anon_sym_PLUS2, - STATE(3672), 1, + ACTIONS(6765), 1, + anon_sym_bit_DASHand2, + ACTIONS(6767), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6769), 1, + anon_sym_bit_DASHor2, + STATE(3713), 1, sym_comment, - STATE(3703), 1, + STATE(3744), 1, aux_sym_shebang_repeat1, - ACTIONS(6741), 2, + ACTIONS(6745), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6747), 2, + ACTIONS(6751), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6751), 2, + ACTIONS(6755), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6757), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6753), 2, + ACTIONS(6759), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6757), 2, + ACTIONS(6763), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6759), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6745), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6749), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5345), 7, + ACTIONS(5247), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [137276] = 15, - ACTIONS(251), 1, + ACTIONS(6753), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6749), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [137998] = 18, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6763), 1, + ACTIONS(6721), 1, anon_sym_DASH2, - ACTIONS(6777), 1, + ACTIONS(6735), 1, anon_sym_PLUS2, - ACTIONS(6781), 1, + ACTIONS(6739), 1, anon_sym_bit_DASHand2, - STATE(1800), 1, + ACTIONS(6741), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6743), 1, + anon_sym_bit_DASHor2, + ACTIONS(6771), 1, + anon_sym_and2, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(3673), 1, + STATE(3714), 1, sym_comment, - ACTIONS(6761), 2, + ACTIONS(6719), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6767), 2, + ACTIONS(6725), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6771), 2, + ACTIONS(6729), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6773), 2, + ACTIONS(6731), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6775), 2, + ACTIONS(6733), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6779), 2, + ACTIONS(6737), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6765), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6769), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5341), 7, + ACTIONS(5291), 4, sym__newline, anon_sym_LBRACE, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [137340] = 16, - ACTIONS(251), 1, + ACTIONS(6727), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6723), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [138070] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5475), 1, + ACTIONS(5325), 1, sym__newline, - ACTIONS(6743), 1, - anon_sym_DASH2, - ACTIONS(6755), 1, - anon_sym_PLUS2, - ACTIONS(6783), 1, - anon_sym_bit_DASHand2, - STATE(3674), 1, + STATE(3715), 1, sym_comment, - STATE(3704), 1, + STATE(3770), 1, aux_sym_shebang_repeat1, - ACTIONS(6741), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6747), 2, + ACTIONS(6751), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6751), 2, + ACTIONS(6757), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6753), 2, + ACTIONS(6759), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6757), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6759), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6745), 4, + ACTIONS(5299), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5297), 22, + anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6749), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5345), 6, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [137406] = 16, - ACTIONS(251), 1, + [138124] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3716), 1, + sym_comment, + ACTIONS(1512), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + ACTIONS(1514), 26, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [138168] = 20, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6763), 1, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(6747), 1, anon_sym_DASH2, - ACTIONS(6777), 1, + ACTIONS(6761), 1, anon_sym_PLUS2, - ACTIONS(6781), 1, + ACTIONS(6765), 1, anon_sym_bit_DASHand2, - ACTIONS(6785), 1, + ACTIONS(6767), 1, anon_sym_bit_DASHxor2, - STATE(1800), 1, + ACTIONS(6769), 1, + anon_sym_bit_DASHor2, + ACTIONS(6773), 1, + anon_sym_and2, + ACTIONS(6777), 1, + anon_sym_xor2, + STATE(3666), 1, aux_sym_shebang_repeat1, - STATE(3675), 1, + STATE(3717), 1, sym_comment, - ACTIONS(6761), 2, + ACTIONS(5297), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(6745), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6767), 2, + ACTIONS(6751), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6771), 2, + ACTIONS(6755), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6773), 2, + ACTIONS(6757), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6775), 2, + ACTIONS(6759), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6779), 2, + ACTIONS(6763), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6765), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6769), 4, + ACTIONS(6753), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5341), 6, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [137472] = 17, - ACTIONS(251), 1, + ACTIONS(6749), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [138244] = 19, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5475), 1, + ACTIONS(5368), 1, sym__newline, - ACTIONS(6743), 1, + ACTIONS(6747), 1, anon_sym_DASH2, - ACTIONS(6755), 1, + ACTIONS(6761), 1, anon_sym_PLUS2, - ACTIONS(6783), 1, + ACTIONS(6765), 1, anon_sym_bit_DASHand2, - ACTIONS(6787), 1, + ACTIONS(6767), 1, anon_sym_bit_DASHxor2, - STATE(3676), 1, + ACTIONS(6769), 1, + anon_sym_bit_DASHor2, + ACTIONS(6773), 1, + anon_sym_and2, + STATE(3718), 1, sym_comment, - STATE(3705), 1, + STATE(3745), 1, aux_sym_shebang_repeat1, - ACTIONS(6741), 2, + ACTIONS(6745), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6747), 2, + ACTIONS(6751), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6751), 2, + ACTIONS(6755), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6757), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6753), 2, + ACTIONS(6759), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6757), 2, + ACTIONS(6763), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6759), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6745), 4, + ACTIONS(5247), 3, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6753), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6749), 6, anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6749), 4, + [138318] = 19, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6721), 1, + anon_sym_DASH2, + ACTIONS(6735), 1, + anon_sym_PLUS2, + ACTIONS(6739), 1, + anon_sym_bit_DASHand2, + ACTIONS(6741), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6743), 1, + anon_sym_bit_DASHor2, + ACTIONS(6771), 1, + anon_sym_and2, + ACTIONS(6775), 1, + anon_sym_xor2, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(3719), 1, + sym_comment, + ACTIONS(6719), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6725), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6729), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6731), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6733), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6737), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5291), 3, + sym__newline, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(6727), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5345), 5, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [137540] = 12, - ACTIONS(251), 1, + ACTIONS(6723), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [138392] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2596), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6783), 1, + sym_filesize_unit, + ACTIONS(6785), 1, + sym_duration_unit, + STATE(3720), 1, + sym_comment, + ACTIONS(2594), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2592), 25, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [138442] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6791), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6793), 1, + sym_filesize_unit, + ACTIONS(6795), 1, + sym_duration_unit, + STATE(3721), 1, + sym_comment, + ACTIONS(6789), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6787), 25, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [138492] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5355), 1, + ACTIONS(5325), 1, sym__newline, - ACTIONS(6743), 1, + ACTIONS(6747), 1, anon_sym_DASH2, - ACTIONS(6755), 1, + ACTIONS(6761), 1, anon_sym_PLUS2, - STATE(3677), 1, + STATE(3722), 1, sym_comment, - STATE(3706), 1, + STATE(3772), 1, aux_sym_shebang_repeat1, - ACTIONS(5315), 2, + ACTIONS(6745), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6747), 2, + ACTIONS(6751), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6751), 2, + ACTIONS(6757), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6753), 2, + ACTIONS(6759), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6757), 2, + ACTIONS(6763), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5313), 17, + ACTIONS(6753), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5297), 15, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [137598] = 9, - ACTIONS(251), 1, + [138554] = 20, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5355), 1, + ACTIONS(3842), 1, sym__newline, - STATE(3678), 1, + ACTIONS(6747), 1, + anon_sym_DASH2, + ACTIONS(6761), 1, + anon_sym_PLUS2, + ACTIONS(6765), 1, + anon_sym_bit_DASHand2, + ACTIONS(6767), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6769), 1, + anon_sym_bit_DASHor2, + ACTIONS(6773), 1, + anon_sym_and2, + ACTIONS(6777), 1, + anon_sym_xor2, + STATE(3723), 1, sym_comment, - STATE(3708), 1, + STATE(3746), 1, aux_sym_shebang_repeat1, - ACTIONS(6747), 2, + ACTIONS(5247), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(6745), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6751), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6751), 2, + ACTIONS(6755), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6757), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6753), 2, + ACTIONS(6759), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5315), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5313), 20, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, + ACTIONS(6763), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6753), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [137650] = 13, - ACTIONS(251), 1, + ACTIONS(6749), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [138630] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5355), 1, - sym__newline, - ACTIONS(6743), 1, + ACTIONS(6721), 1, anon_sym_DASH2, - ACTIONS(6755), 1, + ACTIONS(6735), 1, anon_sym_PLUS2, - STATE(3679), 1, - sym_comment, - STATE(3710), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - ACTIONS(6741), 2, + STATE(3724), 1, + sym_comment, + ACTIONS(6719), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6747), 2, + ACTIONS(6725), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6751), 2, + ACTIONS(6731), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6753), 2, + ACTIONS(6733), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6757), 2, + ACTIONS(6737), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6749), 4, + ACTIONS(6727), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5313), 13, + ACTIONS(6723), 6, anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5291), 10, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [137710] = 7, - ACTIONS(251), 1, + [138692] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5355), 1, + ACTIONS(5368), 1, sym__newline, - STATE(3680), 1, + ACTIONS(6747), 1, + anon_sym_DASH2, + ACTIONS(6761), 1, + anon_sym_PLUS2, + STATE(3725), 1, sym_comment, - STATE(3712), 1, + STATE(3747), 1, aux_sym_shebang_repeat1, - ACTIONS(6751), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5315), 5, + ACTIONS(6745), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6751), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5313), 22, - anon_sym_DASH2, + ACTIONS(6757), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6759), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6763), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6753), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6749), 6, anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5247), 9, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [137758] = 7, - ACTIONS(251), 1, + [138756] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5390), 1, - sym__newline, - STATE(3681), 1, + ACTIONS(1562), 1, + aux_sym_unquoted_token2, + ACTIONS(2170), 1, + anon_sym_LPAREN2, + STATE(3726), 1, sym_comment, - STATE(3774), 1, - aux_sym_shebang_repeat1, - ACTIONS(6751), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5351), 5, + ACTIONS(2168), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5349), 22, + ACTIONS(2172), 26, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -359766,6 +364268,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -359773,457 +364277,459 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [137806] = 18, - ACTIONS(251), 1, + [138804] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5355), 1, - sym__newline, - ACTIONS(6743), 1, + ACTIONS(6721), 1, anon_sym_DASH2, - ACTIONS(6755), 1, + ACTIONS(6735), 1, anon_sym_PLUS2, - ACTIONS(6783), 1, - anon_sym_bit_DASHand2, - ACTIONS(6787), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6789), 1, - anon_sym_bit_DASHor2, - STATE(3682), 1, - sym_comment, - STATE(3714), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - ACTIONS(6741), 2, + STATE(3727), 1, + sym_comment, + ACTIONS(5293), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6747), 2, + ACTIONS(6725), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6751), 2, + ACTIONS(6731), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6753), 2, + ACTIONS(6733), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6757), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6759), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5313), 4, + ACTIONS(5291), 22, + sym__newline, + anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(6745), 4, - anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6749), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [137876] = 19, - ACTIONS(251), 1, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [138860] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5355), 1, + ACTIONS(5368), 1, sym__newline, - ACTIONS(6743), 1, + ACTIONS(6747), 1, anon_sym_DASH2, - ACTIONS(6755), 1, + ACTIONS(6761), 1, anon_sym_PLUS2, - ACTIONS(6783), 1, - anon_sym_bit_DASHand2, - ACTIONS(6787), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6789), 1, - anon_sym_bit_DASHor2, - ACTIONS(6791), 1, - anon_sym_and2, - STATE(3683), 1, + STATE(3728), 1, sym_comment, - STATE(3716), 1, + STATE(3748), 1, aux_sym_shebang_repeat1, - ACTIONS(6741), 2, + ACTIONS(5249), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6747), 2, + ACTIONS(6751), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6751), 2, + ACTIONS(6757), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6753), 2, + ACTIONS(6759), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6757), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6759), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5313), 3, + ACTIONS(5247), 21, + anon_sym_in2, anon_sym_LBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(6745), 4, - anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6749), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [137948] = 20, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(6743), 1, - anon_sym_DASH2, - ACTIONS(6755), 1, - anon_sym_PLUS2, - ACTIONS(6783), 1, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, - ACTIONS(6787), 1, anon_sym_bit_DASHxor2, - ACTIONS(6789), 1, anon_sym_bit_DASHor2, - ACTIONS(6791), 1, - anon_sym_and2, - ACTIONS(6793), 1, - anon_sym_xor2, - STATE(3684), 1, - sym_comment, - STATE(3718), 1, + [138918] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6721), 1, + anon_sym_DASH2, + ACTIONS(6735), 1, + anon_sym_PLUS2, + STATE(1615), 1, aux_sym_shebang_repeat1, - ACTIONS(5313), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(6741), 2, + STATE(3729), 1, + sym_comment, + ACTIONS(6719), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6747), 2, + ACTIONS(6725), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6751), 2, + ACTIONS(6729), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6731), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6753), 2, + ACTIONS(6733), 2, anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6757), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6759), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6745), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6749), 4, + anon_sym_SLASH_SLASH2, + ACTIONS(6737), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6727), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [138022] = 14, - ACTIONS(251), 1, + ACTIONS(6723), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5291), 8, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [138982] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5355), 1, + ACTIONS(5368), 1, sym__newline, - ACTIONS(6743), 1, + ACTIONS(6747), 1, anon_sym_DASH2, - ACTIONS(6755), 1, + ACTIONS(6761), 1, anon_sym_PLUS2, - STATE(3685), 1, + STATE(3730), 1, sym_comment, - STATE(3720), 1, + STATE(3749), 1, aux_sym_shebang_repeat1, - ACTIONS(6741), 2, + ACTIONS(6745), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6747), 2, + ACTIONS(6751), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6751), 2, + ACTIONS(6755), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6757), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6753), 2, + ACTIONS(6759), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6757), 2, + ACTIONS(6763), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6745), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6749), 4, + ACTIONS(6753), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5313), 9, + ACTIONS(6749), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5247), 7, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [138084] = 11, - ACTIONS(251), 1, + [139048] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5355), 1, + ACTIONS(5368), 1, sym__newline, - ACTIONS(6743), 1, + ACTIONS(6747), 1, anon_sym_DASH2, - ACTIONS(6755), 1, + ACTIONS(6761), 1, anon_sym_PLUS2, - STATE(3686), 1, + ACTIONS(6765), 1, + anon_sym_bit_DASHand2, + STATE(3731), 1, sym_comment, - STATE(3722), 1, + STATE(3764), 1, aux_sym_shebang_repeat1, - ACTIONS(5315), 2, + ACTIONS(6745), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6747), 2, + ACTIONS(6751), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6751), 2, + ACTIONS(6755), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6757), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6753), 2, + ACTIONS(6759), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5313), 19, - anon_sym_in2, + ACTIONS(6763), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6753), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5247), 6, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(6749), 6, + anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [138140] = 15, - ACTIONS(251), 1, + [139116] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5355), 1, - sym__newline, - ACTIONS(6743), 1, + ACTIONS(6721), 1, anon_sym_DASH2, - ACTIONS(6755), 1, + ACTIONS(6735), 1, anon_sym_PLUS2, - STATE(3687), 1, - sym_comment, - STATE(3724), 1, + ACTIONS(6739), 1, + anon_sym_bit_DASHand2, + ACTIONS(6741), 1, + anon_sym_bit_DASHxor2, + STATE(1615), 1, aux_sym_shebang_repeat1, - ACTIONS(6741), 2, + STATE(3732), 1, + sym_comment, + ACTIONS(6719), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6747), 2, + ACTIONS(6725), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6751), 2, + ACTIONS(6729), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6731), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6753), 2, + ACTIONS(6733), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6757), 2, + ACTIONS(6737), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6759), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6745), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6749), 4, + ACTIONS(6727), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5313), 7, + ACTIONS(5291), 6, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [138204] = 16, - ACTIONS(251), 1, + ACTIONS(6723), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [139184] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5355), 1, + ACTIONS(5325), 1, sym__newline, - ACTIONS(6743), 1, + ACTIONS(6747), 1, anon_sym_DASH2, - ACTIONS(6755), 1, + ACTIONS(6761), 1, anon_sym_PLUS2, - ACTIONS(6783), 1, - anon_sym_bit_DASHand2, - STATE(3688), 1, - sym_comment, - STATE(3726), 1, + STATE(3668), 1, aux_sym_shebang_repeat1, - ACTIONS(6741), 2, + STATE(3733), 1, + sym_comment, + ACTIONS(6745), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6747), 2, + ACTIONS(6751), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6751), 2, + ACTIONS(6757), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6753), 2, + ACTIONS(6759), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6757), 2, + ACTIONS(6763), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6759), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6745), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6749), 4, + ACTIONS(6753), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5313), 6, + ACTIONS(6749), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5297), 9, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [138270] = 17, - ACTIONS(251), 1, + [139248] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5355), 1, + ACTIONS(5368), 1, sym__newline, - ACTIONS(6743), 1, + ACTIONS(6747), 1, anon_sym_DASH2, - ACTIONS(6755), 1, + ACTIONS(6761), 1, anon_sym_PLUS2, - ACTIONS(6783), 1, + ACTIONS(6765), 1, anon_sym_bit_DASHand2, - ACTIONS(6787), 1, + ACTIONS(6767), 1, anon_sym_bit_DASHxor2, - STATE(3689), 1, + STATE(3734), 1, sym_comment, - STATE(3728), 1, + STATE(3777), 1, aux_sym_shebang_repeat1, - ACTIONS(6741), 2, + ACTIONS(6745), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6747), 2, + ACTIONS(6751), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6751), 2, + ACTIONS(6755), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6757), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6753), 2, + ACTIONS(6759), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6757), 2, + ACTIONS(6763), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6759), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6745), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6749), 4, + ACTIONS(6753), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5313), 5, + ACTIONS(5247), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [138338] = 5, - ACTIONS(3), 1, + ACTIONS(6749), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [139318] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2130), 1, + ACTIONS(2192), 1, anon_sym_LPAREN2, - ACTIONS(2134), 1, - aux_sym_unquoted_token4, - STATE(3690), 1, + ACTIONS(2196), 1, + aux_sym_unquoted_token2, + STATE(3735), 1, sym_comment, - ACTIONS(2128), 29, + ACTIONS(2190), 5, anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2194), 26, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [138382] = 5, + [139366] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2138), 1, + ACTIONS(2061), 1, anon_sym_LPAREN2, - ACTIONS(2142), 1, + ACTIONS(2063), 1, aux_sym_unquoted_token4, - STATE(3691), 1, + STATE(3736), 1, sym_comment, - ACTIONS(2136), 29, + ACTIONS(1002), 31, anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, @@ -360233,6 +364739,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -360253,61 +364761,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [138426] = 5, - ACTIONS(3), 1, + [139412] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2138), 1, - anon_sym_LPAREN2, - ACTIONS(2142), 1, - aux_sym_unquoted_token4, - STATE(3692), 1, + ACTIONS(6721), 1, + anon_sym_DASH2, + ACTIONS(6735), 1, + anon_sym_PLUS2, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(3737), 1, sym_comment, - ACTIONS(2144), 29, + ACTIONS(5303), 2, anon_sym_GT2, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LT2, + ACTIONS(6725), 2, anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6731), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6733), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6737), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5301), 20, + sym__newline, + anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [138470] = 6, - ACTIONS(251), 1, + [139470] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym_unquoted_token2, - ACTIONS(1804), 1, + ACTIONS(1818), 1, anon_sym_LPAREN2, - STATE(3693), 1, + ACTIONS(1826), 1, + aux_sym_unquoted_token2, + STATE(3738), 1, sym_comment, - ACTIONS(1802), 5, + ACTIONS(1816), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1810), 24, + ACTIONS(1824), 26, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -360315,6 +364831,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -360332,40 +364850,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [138516] = 11, - ACTIONS(251), 1, + [139518] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6763), 1, + ACTIONS(5325), 1, + sym__newline, + ACTIONS(6747), 1, anon_sym_DASH2, - ACTIONS(6777), 1, + ACTIONS(6761), 1, anon_sym_PLUS2, - STATE(1800), 1, + STATE(3670), 1, aux_sym_shebang_repeat1, - STATE(3694), 1, + STATE(3739), 1, sym_comment, - ACTIONS(5303), 2, + ACTIONS(5299), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6767), 2, + ACTIONS(6751), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6773), 2, + ACTIONS(6757), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6775), 2, + ACTIONS(6759), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6779), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5301), 18, - sym__newline, + ACTIONS(5297), 21, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -360374,30 +364892,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [138572] = 8, - ACTIONS(251), 1, + [139576] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(3695), 1, + STATE(3740), 1, sym_comment, - ACTIONS(6767), 2, + ACTIONS(6725), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6773), 2, + ACTIONS(6731), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6775), 2, + ACTIONS(6733), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(5303), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5301), 21, + ACTIONS(5301), 23, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -360406,6 +364926,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -360419,38 +364941,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [138622] = 12, - ACTIONS(251), 1, + [139628] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6801), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6803), 1, + sym_filesize_unit, + ACTIONS(6805), 1, + sym_duration_unit, + STATE(3741), 1, + sym_comment, + ACTIONS(6799), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6797), 25, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [139678] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6763), 1, + ACTIONS(6721), 1, anon_sym_DASH2, - ACTIONS(6777), 1, + ACTIONS(6735), 1, anon_sym_PLUS2, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(3696), 1, + STATE(3742), 1, sym_comment, - ACTIONS(6761), 2, + ACTIONS(6719), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6767), 2, + ACTIONS(6725), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6773), 2, + ACTIONS(6731), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6775), 2, + ACTIONS(6733), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6779), 2, + ACTIONS(6737), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6769), 4, + ACTIONS(6727), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5301), 14, + ACTIONS(5301), 16, sym__newline, anon_sym_in2, anon_sym_LBRACE, @@ -360458,6 +365023,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_TILDE2, @@ -360465,14 +365032,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [138680] = 6, - ACTIONS(251), 1, + [139738] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(3697), 1, + STATE(3743), 1, sym_comment, - ACTIONS(6773), 2, + ACTIONS(6731), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, ACTIONS(5303), 5, @@ -360481,7 +365048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5301), 23, + ACTIONS(5301), 25, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -360490,6 +365057,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -360505,47 +365074,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [138726] = 17, - ACTIONS(251), 1, + [139786] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6763), 1, + ACTIONS(6721), 1, anon_sym_DASH2, - ACTIONS(6777), 1, + ACTIONS(6735), 1, anon_sym_PLUS2, - ACTIONS(6781), 1, + ACTIONS(6739), 1, anon_sym_bit_DASHand2, - ACTIONS(6785), 1, + ACTIONS(6741), 1, anon_sym_bit_DASHxor2, - ACTIONS(6795), 1, + ACTIONS(6743), 1, anon_sym_bit_DASHor2, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(3698), 1, + STATE(3744), 1, sym_comment, - ACTIONS(6761), 2, + ACTIONS(6719), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6767), 2, + ACTIONS(6725), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6771), 2, + ACTIONS(6729), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6773), 2, + ACTIONS(6731), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6775), 2, + ACTIONS(6733), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6779), 2, + ACTIONS(6737), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6765), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6769), 4, + ACTIONS(6727), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -360556,41 +365120,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [138794] = 18, - ACTIONS(251), 1, + ACTIONS(6723), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [139856] = 18, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6763), 1, + ACTIONS(6721), 1, anon_sym_DASH2, - ACTIONS(6777), 1, + ACTIONS(6735), 1, anon_sym_PLUS2, - ACTIONS(6781), 1, + ACTIONS(6739), 1, anon_sym_bit_DASHand2, - ACTIONS(6785), 1, + ACTIONS(6741), 1, anon_sym_bit_DASHxor2, - ACTIONS(6795), 1, + ACTIONS(6743), 1, anon_sym_bit_DASHor2, - ACTIONS(6797), 1, + ACTIONS(6771), 1, anon_sym_and2, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(3699), 1, + STATE(3745), 1, sym_comment, - ACTIONS(6761), 2, + ACTIONS(6719), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6767), 2, + ACTIONS(6725), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6771), 2, + ACTIONS(6729), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6773), 2, + ACTIONS(6731), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6775), 2, + ACTIONS(6733), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6779), 2, + ACTIONS(6737), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, ACTIONS(5301), 4, @@ -360598,105 +365169,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(6765), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6769), 4, + ACTIONS(6727), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [138864] = 19, - ACTIONS(251), 1, + ACTIONS(6723), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [139928] = 19, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6763), 1, + ACTIONS(6721), 1, anon_sym_DASH2, - ACTIONS(6777), 1, + ACTIONS(6735), 1, anon_sym_PLUS2, - ACTIONS(6781), 1, + ACTIONS(6739), 1, anon_sym_bit_DASHand2, - ACTIONS(6785), 1, + ACTIONS(6741), 1, anon_sym_bit_DASHxor2, - ACTIONS(6795), 1, + ACTIONS(6743), 1, anon_sym_bit_DASHor2, - ACTIONS(6797), 1, + ACTIONS(6771), 1, anon_sym_and2, - ACTIONS(6799), 1, + ACTIONS(6775), 1, anon_sym_xor2, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(3700), 1, + STATE(3746), 1, sym_comment, - ACTIONS(6761), 2, + ACTIONS(6719), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6767), 2, + ACTIONS(6725), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6771), 2, + ACTIONS(6729), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6773), 2, + ACTIONS(6731), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6775), 2, + ACTIONS(6733), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6779), 2, + ACTIONS(6737), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, ACTIONS(5301), 3, sym__newline, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(6765), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6769), 4, + ACTIONS(6727), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [138936] = 13, - ACTIONS(251), 1, + ACTIONS(6723), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [140002] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6763), 1, + ACTIONS(6721), 1, anon_sym_DASH2, - ACTIONS(6777), 1, + ACTIONS(6735), 1, anon_sym_PLUS2, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(3701), 1, + STATE(3747), 1, sym_comment, - ACTIONS(6761), 2, + ACTIONS(6719), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6767), 2, + ACTIONS(6725), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6773), 2, + ACTIONS(6731), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6775), 2, + ACTIONS(6733), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6779), 2, + ACTIONS(6737), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6765), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6769), 4, + ACTIONS(6727), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(6723), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, ACTIONS(5301), 10, sym__newline, anon_sym_LBRACE, @@ -360708,30 +365285,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [138996] = 10, - ACTIONS(251), 1, + [140064] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6763), 1, + ACTIONS(6721), 1, anon_sym_DASH2, - ACTIONS(6777), 1, + ACTIONS(6735), 1, anon_sym_PLUS2, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(3702), 1, + STATE(3748), 1, sym_comment, ACTIONS(5303), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6767), 2, + ACTIONS(6725), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6773), 2, + ACTIONS(6731), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6775), 2, + ACTIONS(6733), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5301), 20, + ACTIONS(5301), 22, sym__newline, anon_sym_in2, anon_sym_LBRACE, @@ -360739,6 +365316,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -360752,45 +365331,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [139050] = 14, - ACTIONS(251), 1, + [140120] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6763), 1, + ACTIONS(6721), 1, anon_sym_DASH2, - ACTIONS(6777), 1, + ACTIONS(6735), 1, anon_sym_PLUS2, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(3703), 1, + STATE(3749), 1, sym_comment, - ACTIONS(6761), 2, + ACTIONS(6719), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6767), 2, + ACTIONS(6725), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6771), 2, + ACTIONS(6729), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6773), 2, + ACTIONS(6731), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6775), 2, + ACTIONS(6733), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6779), 2, + ACTIONS(6737), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6765), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6769), 4, + ACTIONS(6727), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(6723), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, ACTIONS(5301), 8, sym__newline, anon_sym_LBRACE, @@ -360800,139 +365381,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [139112] = 15, - ACTIONS(251), 1, + [140184] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6763), 1, + ACTIONS(5325), 1, + sym__newline, + ACTIONS(6747), 1, anon_sym_DASH2, - ACTIONS(6777), 1, + ACTIONS(6761), 1, anon_sym_PLUS2, - ACTIONS(6781), 1, - anon_sym_bit_DASHand2, - STATE(1800), 1, + STATE(3672), 1, aux_sym_shebang_repeat1, - STATE(3704), 1, + STATE(3750), 1, sym_comment, - ACTIONS(6761), 2, + ACTIONS(6745), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6767), 2, + ACTIONS(6751), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6771), 2, + ACTIONS(6755), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6773), 2, + ACTIONS(6757), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6775), 2, + ACTIONS(6759), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6779), 2, + ACTIONS(6763), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6765), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6769), 4, + ACTIONS(6753), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5301), 7, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [139176] = 16, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6763), 1, - anon_sym_DASH2, - ACTIONS(6777), 1, - anon_sym_PLUS2, - ACTIONS(6781), 1, - anon_sym_bit_DASHand2, - ACTIONS(6785), 1, - anon_sym_bit_DASHxor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3705), 1, - sym_comment, - ACTIONS(6761), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6767), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6771), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6773), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6775), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6779), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6765), 4, + ACTIONS(6749), 6, anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6769), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5301), 6, - sym__newline, + ACTIONS(5297), 7, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [139242] = 11, - ACTIONS(251), 1, + [140250] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6763), 1, - anon_sym_DASH2, - ACTIONS(6777), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3706), 1, + STATE(3751), 1, sym_comment, - ACTIONS(5325), 2, + ACTIONS(1701), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6767), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6773), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6775), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6779), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5323), 18, - sym__newline, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1703), 27, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -360941,127 +365462,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [139298] = 12, - ACTIONS(251), 1, + [140294] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3752), 1, + sym_comment, + ACTIONS(1689), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + ACTIONS(1691), 26, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [140338] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5460), 1, + ACTIONS(5325), 1, sym__newline, - ACTIONS(6743), 1, + ACTIONS(6747), 1, anon_sym_DASH2, - ACTIONS(6755), 1, + ACTIONS(6761), 1, anon_sym_PLUS2, - STATE(3707), 1, - sym_comment, - STATE(3732), 1, + ACTIONS(6765), 1, + anon_sym_bit_DASHand2, + STATE(3674), 1, aux_sym_shebang_repeat1, - ACTIONS(5339), 2, + STATE(3753), 1, + sym_comment, + ACTIONS(6745), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6747), 2, + ACTIONS(6751), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6751), 2, + ACTIONS(6755), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6757), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6753), 2, + ACTIONS(6759), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6757), 2, + ACTIONS(6763), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5337), 17, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, + ACTIONS(6753), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [139356] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3708), 1, - sym_comment, - ACTIONS(6767), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6773), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6775), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5325), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5323), 21, - sym__newline, - anon_sym_DASH2, - anon_sym_in2, + ACTIONS(5297), 6, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(6749), 6, + anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [139406] = 9, - ACTIONS(251), 1, + [140406] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5460), 1, - sym__newline, - STATE(3709), 1, + ACTIONS(6811), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6813), 1, + sym_filesize_unit, + ACTIONS(6815), 1, + sym_duration_unit, + STATE(3754), 1, sym_comment, - STATE(3733), 1, - aux_sym_shebang_repeat1, - ACTIONS(6747), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6751), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6753), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5339), 3, + ACTIONS(6809), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6807), 25, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [140456] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1818), 1, + anon_sym_LPAREN2, + ACTIONS(1826), 1, + aux_sym_unquoted_token2, + STATE(3755), 1, + sym_comment, + ACTIONS(2164), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5337), 20, + ACTIONS(2166), 26, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -361070,170 +365640,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [139458] = 12, - ACTIONS(251), 1, + [140504] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6763), 1, + ACTIONS(5325), 1, + sym__newline, + ACTIONS(6747), 1, anon_sym_DASH2, - ACTIONS(6777), 1, + ACTIONS(6761), 1, anon_sym_PLUS2, - STATE(1800), 1, + ACTIONS(6765), 1, + anon_sym_bit_DASHand2, + ACTIONS(6767), 1, + anon_sym_bit_DASHxor2, + STATE(3676), 1, aux_sym_shebang_repeat1, - STATE(3710), 1, + STATE(3756), 1, sym_comment, - ACTIONS(6761), 2, + ACTIONS(6745), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6767), 2, + ACTIONS(6751), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6773), 2, + ACTIONS(6755), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6757), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6775), 2, + ACTIONS(6759), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6779), 2, + ACTIONS(6763), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6769), 4, + ACTIONS(6753), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5323), 14, - sym__newline, - anon_sym_in2, + ACTIONS(5297), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(6749), 6, + anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [139516] = 13, - ACTIONS(251), 1, + [140574] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5460), 1, + ACTIONS(5325), 1, sym__newline, - ACTIONS(6743), 1, - anon_sym_DASH2, - ACTIONS(6755), 1, - anon_sym_PLUS2, - STATE(3711), 1, + STATE(3757), 1, sym_comment, - STATE(3734), 1, + STATE(3774), 1, aux_sym_shebang_repeat1, - ACTIONS(6741), 2, + ACTIONS(6757), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5299), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6747), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6751), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6753), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6757), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6749), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5337), 13, + anon_sym_PLUS2, + ACTIONS(5297), 24, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [139576] = 6, - ACTIONS(251), 1, + [140624] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3712), 1, + ACTIONS(2087), 1, + anon_sym_LPAREN2, + STATE(3758), 1, sym_comment, - ACTIONS(6773), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5325), 5, + ACTIONS(2085), 32, anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5323), 23, - sym__newline, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [139622] = 7, - ACTIONS(251), 1, + aux_sym_unquoted_token4, + [140668] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5460), 1, - sym__newline, - STATE(3713), 1, + ACTIONS(6589), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6817), 1, + anon_sym_DOT, + STATE(3759), 1, sym_comment, - STATE(3793), 1, - aux_sym_shebang_repeat1, - ACTIONS(6751), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5339), 5, + ACTIONS(1701), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5337), 22, + ACTIONS(1703), 26, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -361242,6 +365818,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -361249,403 +365827,434 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [139670] = 17, - ACTIONS(251), 1, + [140716] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6763), 1, - anon_sym_DASH2, - ACTIONS(6777), 1, - anon_sym_PLUS2, - ACTIONS(6781), 1, - anon_sym_bit_DASHand2, - ACTIONS(6785), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6795), 1, - anon_sym_bit_DASHor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3714), 1, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + ACTIONS(1808), 1, + anon_sym_LPAREN2, + STATE(3760), 1, sym_comment, - ACTIONS(6761), 2, + ACTIONS(1806), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6767), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6771), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6773), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6775), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6779), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6765), 4, + anon_sym_PLUS2, + ACTIONS(1814), 26, + anon_sym_DASH2, anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6769), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5323), 5, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [139738] = 18, - ACTIONS(251), 1, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [140764] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6823), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6825), 1, + sym_filesize_unit, + ACTIONS(6827), 1, + sym_duration_unit, + STATE(3761), 1, + sym_comment, + ACTIONS(6821), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6819), 25, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [140814] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3762), 1, + sym_comment, + ACTIONS(1618), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + ACTIONS(1620), 26, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [140858] = 18, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5460), 1, + ACTIONS(5325), 1, sym__newline, - ACTIONS(6743), 1, + ACTIONS(6747), 1, anon_sym_DASH2, - ACTIONS(6755), 1, + ACTIONS(6761), 1, anon_sym_PLUS2, - ACTIONS(6783), 1, + ACTIONS(6765), 1, anon_sym_bit_DASHand2, - ACTIONS(6787), 1, + ACTIONS(6767), 1, anon_sym_bit_DASHxor2, - ACTIONS(6789), 1, + ACTIONS(6769), 1, anon_sym_bit_DASHor2, - STATE(3715), 1, - sym_comment, - STATE(3736), 1, + STATE(3662), 1, aux_sym_shebang_repeat1, - ACTIONS(6741), 2, + STATE(3763), 1, + sym_comment, + ACTIONS(6745), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6747), 2, + ACTIONS(6751), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6751), 2, + ACTIONS(6755), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6757), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6753), 2, + ACTIONS(6759), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6757), 2, + ACTIONS(6763), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6759), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5337), 4, + ACTIONS(5297), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(6745), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6749), 4, + ACTIONS(6753), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [139808] = 18, - ACTIONS(251), 1, + ACTIONS(6749), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [140930] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6763), 1, + ACTIONS(6721), 1, anon_sym_DASH2, - ACTIONS(6777), 1, + ACTIONS(6735), 1, anon_sym_PLUS2, - ACTIONS(6781), 1, + ACTIONS(6739), 1, anon_sym_bit_DASHand2, - ACTIONS(6785), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6795), 1, - anon_sym_bit_DASHor2, - ACTIONS(6797), 1, - anon_sym_and2, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(3716), 1, + STATE(3764), 1, sym_comment, - ACTIONS(6761), 2, + ACTIONS(6719), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6767), 2, + ACTIONS(6725), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6771), 2, + ACTIONS(6729), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6773), 2, + ACTIONS(6731), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6775), 2, + ACTIONS(6733), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6779), 2, + ACTIONS(6737), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5323), 4, - sym__newline, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(6765), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6769), 4, + ACTIONS(6727), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [139878] = 19, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5460), 1, + ACTIONS(6723), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5301), 7, sym__newline, - ACTIONS(6743), 1, - anon_sym_DASH2, - ACTIONS(6755), 1, - anon_sym_PLUS2, - ACTIONS(6783), 1, - anon_sym_bit_DASHand2, - ACTIONS(6787), 1, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHxor2, - ACTIONS(6789), 1, anon_sym_bit_DASHor2, - ACTIONS(6791), 1, - anon_sym_and2, - STATE(3717), 1, + [140996] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3765), 1, sym_comment, - STATE(3737), 1, - aux_sym_shebang_repeat1, - ACTIONS(6741), 2, + ACTIONS(1693), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6747), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6751), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6753), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6757), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6759), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5337), 3, - anon_sym_LBRACE, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1695), 27, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(6745), 4, - anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6749), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [139950] = 19, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6763), 1, - anon_sym_DASH2, - ACTIONS(6777), 1, - anon_sym_PLUS2, - ACTIONS(6781), 1, - anon_sym_bit_DASHand2, - ACTIONS(6785), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6795), 1, - anon_sym_bit_DASHor2, - ACTIONS(6797), 1, - anon_sym_and2, - ACTIONS(6799), 1, - anon_sym_xor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3718), 1, - sym_comment, - ACTIONS(6761), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6767), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6771), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6773), 2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6775), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6779), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5323), 3, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [141040] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4706), 1, + aux_sym_unquoted_token2, + STATE(3766), 1, + sym_comment, + ACTIONS(1639), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1651), 27, sym__newline, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - ACTIONS(6765), 4, - anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6769), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [140022] = 20, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(6743), 1, - anon_sym_DASH2, - ACTIONS(6755), 1, - anon_sym_PLUS2, - ACTIONS(6783), 1, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, - ACTIONS(6787), 1, anon_sym_bit_DASHxor2, - ACTIONS(6789), 1, anon_sym_bit_DASHor2, - ACTIONS(6791), 1, - anon_sym_and2, - ACTIONS(6793), 1, - anon_sym_xor2, - STATE(3719), 1, - sym_comment, - STATE(3738), 1, + [141086] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6721), 1, + anon_sym_DASH2, + ACTIONS(6735), 1, + anon_sym_PLUS2, + STATE(1615), 1, aux_sym_shebang_repeat1, - ACTIONS(5337), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(6741), 2, + STATE(3767), 1, + sym_comment, + ACTIONS(5281), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6747), 2, + ACTIONS(6725), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6751), 2, + ACTIONS(6731), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6753), 2, + ACTIONS(6733), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6757), 2, + ACTIONS(6737), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6759), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6745), 4, + ACTIONS(5279), 20, + sym__newline, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6749), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [140096] = 13, - ACTIONS(251), 1, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [141144] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6763), 1, + ACTIONS(5371), 1, + sym__newline, + ACTIONS(6747), 1, anon_sym_DASH2, - ACTIONS(6777), 1, + ACTIONS(6761), 1, anon_sym_PLUS2, - STATE(1800), 1, + STATE(3691), 1, aux_sym_shebang_repeat1, - STATE(3720), 1, + STATE(3768), 1, sym_comment, - ACTIONS(6761), 2, + ACTIONS(5285), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6767), 2, + ACTIONS(6751), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6773), 2, + ACTIONS(6757), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6775), 2, + ACTIONS(6759), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6779), 2, + ACTIONS(6763), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6765), 4, + ACTIONS(5283), 19, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6769), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5323), 10, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140156] = 12, - ACTIONS(251), 1, + [141204] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5390), 1, - sym__newline, - ACTIONS(6743), 1, - anon_sym_DASH2, - ACTIONS(6755), 1, - anon_sym_PLUS2, - STATE(3721), 1, + STATE(3769), 1, sym_comment, - STATE(3766), 1, - aux_sym_shebang_repeat1, - ACTIONS(5351), 2, + ACTIONS(1766), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6747), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6751), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6753), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6757), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5349), 17, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1768), 27, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -361654,40 +366263,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140214] = 10, - ACTIONS(251), 1, + [141248] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6763), 1, - anon_sym_DASH2, - ACTIONS(6777), 1, - anon_sym_PLUS2, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(3722), 1, + STATE(3770), 1, sym_comment, - ACTIONS(5325), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6767), 2, + ACTIONS(6725), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6773), 2, + ACTIONS(6731), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6775), 2, + ACTIONS(6733), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5323), 20, + ACTIONS(5281), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5279), 23, sym__newline, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -361701,38 +366317,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140268] = 11, - ACTIONS(251), 1, + [141300] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5460), 1, + ACTIONS(5371), 1, sym__newline, - ACTIONS(6743), 1, - anon_sym_DASH2, - ACTIONS(6755), 1, - anon_sym_PLUS2, - STATE(3723), 1, - sym_comment, - STATE(3740), 1, + STATE(3692), 1, aux_sym_shebang_repeat1, - ACTIONS(5339), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6747), 2, + STATE(3771), 1, + sym_comment, + ACTIONS(6751), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6751), 2, + ACTIONS(6757), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6753), 2, + ACTIONS(6759), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5337), 19, + ACTIONS(5285), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5283), 22, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -361746,309 +366362,409 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140324] = 14, - ACTIONS(251), 1, + [141354] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6763), 1, + ACTIONS(6721), 1, anon_sym_DASH2, - ACTIONS(6777), 1, + ACTIONS(6735), 1, anon_sym_PLUS2, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(3724), 1, + STATE(3772), 1, sym_comment, - ACTIONS(6761), 2, + ACTIONS(6719), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6767), 2, + ACTIONS(6725), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6771), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6773), 2, + ACTIONS(6731), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6775), 2, + ACTIONS(6733), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6779), 2, + ACTIONS(6737), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6765), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6769), 4, + ACTIONS(6727), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5323), 8, + ACTIONS(5279), 16, sym__newline, + anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140386] = 15, - ACTIONS(251), 1, + [141414] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5460), 1, + ACTIONS(5371), 1, sym__newline, - ACTIONS(6743), 1, + ACTIONS(6747), 1, anon_sym_DASH2, - ACTIONS(6755), 1, + ACTIONS(6761), 1, anon_sym_PLUS2, - STATE(3725), 1, - sym_comment, - STATE(3741), 1, + STATE(3693), 1, aux_sym_shebang_repeat1, - ACTIONS(6741), 2, + STATE(3773), 1, + sym_comment, + ACTIONS(6745), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6747), 2, + ACTIONS(6751), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6751), 2, + ACTIONS(6757), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6753), 2, + ACTIONS(6759), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6757), 2, + ACTIONS(6763), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6759), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6745), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6749), 4, + ACTIONS(6753), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5337), 7, + ACTIONS(5283), 15, + anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140450] = 15, - ACTIONS(251), 1, + [141476] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6763), 1, - anon_sym_DASH2, - ACTIONS(6777), 1, - anon_sym_PLUS2, - ACTIONS(6781), 1, - anon_sym_bit_DASHand2, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(3726), 1, + STATE(3774), 1, sym_comment, - ACTIONS(6761), 2, + ACTIONS(6731), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5281), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6767), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6771), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6773), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6775), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6779), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6765), 4, + anon_sym_PLUS2, + ACTIONS(5279), 25, + sym__newline, + anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6769), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5323), 7, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140514] = 16, - ACTIONS(251), 1, + [141524] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5460), 1, + ACTIONS(5371), 1, sym__newline, - ACTIONS(6743), 1, - anon_sym_DASH2, - ACTIONS(6755), 1, - anon_sym_PLUS2, - ACTIONS(6783), 1, - anon_sym_bit_DASHand2, - STATE(3727), 1, - sym_comment, - STATE(3742), 1, + STATE(3694), 1, aux_sym_shebang_repeat1, - ACTIONS(6741), 2, + STATE(3775), 1, + sym_comment, + ACTIONS(6757), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5285), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6747), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6751), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6753), 2, + anon_sym_PLUS2, + ACTIONS(5283), 24, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6757), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6759), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6745), 4, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [141574] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2067), 1, + anon_sym_LPAREN2, + ACTIONS(2071), 1, + aux_sym_unquoted_token4, + STATE(3776), 1, + sym_comment, + ACTIONS(2065), 31, + anon_sym_GT2, + anon_sym_DASH2, anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6749), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5337), 6, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140580] = 16, - ACTIONS(251), 1, + [141620] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6763), 1, + ACTIONS(6721), 1, anon_sym_DASH2, - ACTIONS(6777), 1, + ACTIONS(6735), 1, anon_sym_PLUS2, - ACTIONS(6781), 1, + ACTIONS(6739), 1, anon_sym_bit_DASHand2, - ACTIONS(6785), 1, + ACTIONS(6741), 1, anon_sym_bit_DASHxor2, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(3728), 1, + STATE(3777), 1, sym_comment, - ACTIONS(6761), 2, + ACTIONS(6719), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6767), 2, + ACTIONS(6725), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6771), 2, + ACTIONS(6729), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6773), 2, + ACTIONS(6731), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6775), 2, + ACTIONS(6733), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6779), 2, + ACTIONS(6737), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6765), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6769), 4, + ACTIONS(6727), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5323), 6, + ACTIONS(5301), 6, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [140646] = 17, - ACTIONS(251), 1, + ACTIONS(6723), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [141688] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5460), 1, - sym__newline, - ACTIONS(6743), 1, + ACTIONS(2075), 1, + anon_sym_LPAREN2, + ACTIONS(2079), 1, + aux_sym_unquoted_token4, + STATE(3778), 1, + sym_comment, + ACTIONS(2073), 31, + anon_sym_GT2, anon_sym_DASH2, - ACTIONS(6755), 1, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_PLUS2, - ACTIONS(6783), 1, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, - ACTIONS(6787), 1, anon_sym_bit_DASHxor2, - STATE(3729), 1, + anon_sym_bit_DASHor2, + [141734] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2075), 1, + anon_sym_LPAREN2, + ACTIONS(2079), 1, + aux_sym_unquoted_token4, + STATE(3779), 1, sym_comment, - STATE(3743), 1, - aux_sym_shebang_repeat1, - ACTIONS(6741), 2, + ACTIONS(2081), 31, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6747), 2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6751), 2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6753), 2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6757), 2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6759), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6745), 4, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [141780] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3780), 1, + sym_comment, + ACTIONS(1792), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1794), 27, + anon_sym_DASH2, anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6749), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5337), 5, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140714] = 4, + [141824] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3730), 1, + STATE(3781), 1, sym_comment, - ACTIONS(1542), 7, + ACTIONS(1504), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -362056,7 +366772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, aux_sym_cmd_identifier_token41, sym_filesize_unit, - ACTIONS(1544), 24, + ACTIONS(1506), 26, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -362074,6 +366790,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_in, anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, anon_sym_EQ_EQ, @@ -362081,473 +366799,511 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [140756] = 18, - ACTIONS(251), 1, + [141868] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5390), 1, + ACTIONS(5325), 1, sym__newline, - ACTIONS(6743), 1, + ACTIONS(6747), 1, anon_sym_DASH2, - ACTIONS(6755), 1, + ACTIONS(6761), 1, anon_sym_PLUS2, - ACTIONS(6783), 1, - anon_sym_bit_DASHand2, - ACTIONS(6787), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6789), 1, - anon_sym_bit_DASHor2, - STATE(3731), 1, - sym_comment, - STATE(3777), 1, + STATE(3767), 1, aux_sym_shebang_repeat1, - ACTIONS(6741), 2, + STATE(3782), 1, + sym_comment, + ACTIONS(5299), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6747), 2, + ACTIONS(6751), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6751), 2, + ACTIONS(6757), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6753), 2, + ACTIONS(6759), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6757), 2, + ACTIONS(6763), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6759), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5349), 4, + ACTIONS(5297), 19, + anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(6745), 4, - anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6749), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [140826] = 11, - ACTIONS(251), 1, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [141928] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6763), 1, + ACTIONS(6721), 1, anon_sym_DASH2, - ACTIONS(6777), 1, + ACTIONS(6735), 1, anon_sym_PLUS2, - STATE(1800), 1, + ACTIONS(6739), 1, + anon_sym_bit_DASHand2, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(3732), 1, + STATE(3783), 1, sym_comment, - ACTIONS(5321), 2, + ACTIONS(6719), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6767), 2, + ACTIONS(6725), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6773), 2, + ACTIONS(6729), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6731), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6775), 2, + ACTIONS(6733), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6779), 2, + ACTIONS(6737), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5319), 18, - sym__newline, + ACTIONS(6727), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6723), 6, anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5291), 7, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140882] = 8, - ACTIONS(251), 1, + [141994] = 20, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3733), 1, - sym_comment, - ACTIONS(6767), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6773), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6775), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5321), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5319), 21, + ACTIONS(3842), 1, sym__newline, + ACTIONS(5328), 1, anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, + ACTIONS(5336), 1, + anon_sym_PLUS2, + ACTIONS(5352), 1, anon_sym_and2, + ACTIONS(5354), 1, anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, + ACTIONS(5362), 1, anon_sym_bit_DASHand2, + ACTIONS(5364), 1, anon_sym_bit_DASHxor2, + ACTIONS(5366), 1, anon_sym_bit_DASHor2, - [140932] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6763), 1, - anon_sym_DASH2, - ACTIONS(6777), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3734), 1, + ACTIONS(6829), 1, + anon_sym_or2, + STATE(3784), 1, sym_comment, - ACTIONS(6761), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6767), 2, + STATE(3787), 1, + aux_sym_shebang_repeat1, + ACTIONS(5330), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6773), 2, + ACTIONS(5332), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6775), 2, + ACTIONS(5334), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6779), 2, + ACTIONS(5348), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5358), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6769), 4, + ACTIONS(5356), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5319), 14, - sym__newline, + ACTIONS(5350), 6, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [140990] = 14, - ACTIONS(251), 1, + [142069] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6763), 1, - anon_sym_DASH2, - ACTIONS(6777), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3735), 1, + STATE(3785), 1, sym_comment, - ACTIONS(6761), 2, + ACTIONS(946), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(948), 29, + 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_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6767), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6771), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6773), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6775), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6779), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6765), 4, + anon_sym_DASH_DASH, anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6769), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5341), 8, - sym__newline, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [141052] = 17, - ACTIONS(251), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [142112] = 20, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6763), 1, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(6747), 1, anon_sym_DASH2, - ACTIONS(6777), 1, + ACTIONS(6761), 1, anon_sym_PLUS2, - ACTIONS(6781), 1, + ACTIONS(6765), 1, anon_sym_bit_DASHand2, - ACTIONS(6785), 1, + ACTIONS(6767), 1, anon_sym_bit_DASHxor2, - ACTIONS(6795), 1, + ACTIONS(6769), 1, anon_sym_bit_DASHor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3736), 1, + ACTIONS(6773), 1, + anon_sym_and2, + ACTIONS(6777), 1, + anon_sym_xor2, + ACTIONS(6831), 1, + anon_sym_or2, + STATE(3786), 1, sym_comment, - ACTIONS(6761), 2, + STATE(3788), 1, + aux_sym_shebang_repeat1, + ACTIONS(6745), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6767), 2, + ACTIONS(6751), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6771), 2, + ACTIONS(6755), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6773), 2, + ACTIONS(6757), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6775), 2, + ACTIONS(6759), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6779), 2, + ACTIONS(6763), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6765), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6769), 4, + ACTIONS(6753), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5319), 5, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [141120] = 18, - ACTIONS(251), 1, + ACTIONS(6749), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [142187] = 20, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6763), 1, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(5307), 1, anon_sym_DASH2, - ACTIONS(6777), 1, + ACTIONS(5321), 1, anon_sym_PLUS2, - ACTIONS(6781), 1, + ACTIONS(5338), 1, + anon_sym_and2, + ACTIONS(5340), 1, + anon_sym_xor2, + ACTIONS(5342), 1, anon_sym_bit_DASHand2, - ACTIONS(6785), 1, + ACTIONS(5344), 1, anon_sym_bit_DASHxor2, - ACTIONS(6795), 1, + ACTIONS(5346), 1, anon_sym_bit_DASHor2, - ACTIONS(6797), 1, - anon_sym_and2, - STATE(1800), 1, + ACTIONS(6833), 1, + anon_sym_or2, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(3737), 1, + STATE(3787), 1, sym_comment, - ACTIONS(6761), 2, + ACTIONS(5305), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6767), 2, + ACTIONS(5311), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6771), 2, + ACTIONS(5315), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6773), 2, + ACTIONS(5317), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6775), 2, + ACTIONS(5319), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6779), 2, + ACTIONS(5323), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5319), 4, - sym__newline, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(6765), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6769), 4, + ACTIONS(5313), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [141190] = 19, - ACTIONS(251), 1, + ACTIONS(5309), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [142262] = 20, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6763), 1, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(6721), 1, anon_sym_DASH2, - ACTIONS(6777), 1, + ACTIONS(6735), 1, anon_sym_PLUS2, - ACTIONS(6781), 1, + ACTIONS(6739), 1, anon_sym_bit_DASHand2, - ACTIONS(6785), 1, + ACTIONS(6741), 1, anon_sym_bit_DASHxor2, - ACTIONS(6795), 1, + ACTIONS(6743), 1, anon_sym_bit_DASHor2, - ACTIONS(6797), 1, + ACTIONS(6771), 1, anon_sym_and2, - ACTIONS(6799), 1, + ACTIONS(6775), 1, anon_sym_xor2, - STATE(1800), 1, + ACTIONS(6835), 1, + anon_sym_or2, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(3738), 1, + STATE(3788), 1, sym_comment, - ACTIONS(6761), 2, + ACTIONS(6719), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6767), 2, + ACTIONS(6725), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6771), 2, + ACTIONS(6729), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6773), 2, + ACTIONS(6731), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6775), 2, + ACTIONS(6733), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6779), 2, + ACTIONS(6737), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5319), 3, - sym__newline, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(6765), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6769), 4, + ACTIONS(6727), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [141262] = 13, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6763), 1, - anon_sym_DASH2, - ACTIONS(6777), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3739), 1, - sym_comment, - ACTIONS(6761), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6767), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6773), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6775), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6779), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6765), 4, + ACTIONS(6723), 6, anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6769), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5319), 10, + [142337] = 27, + ACTIONS(223), 1, + aux_sym__val_number_token5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(377), 1, + anon_sym_DASH2, + ACTIONS(3438), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3440), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3518), 1, + aux_sym_expr_unary_token1, + ACTIONS(6837), 1, + sym_identifier, + ACTIONS(6839), 1, sym__newline, + ACTIONS(6841), 1, + anon_sym_LPAREN, + ACTIONS(6843), 1, + anon_sym_DOLLAR, + ACTIONS(6845), 1, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [141322] = 10, - ACTIONS(251), 1, + ACTIONS(6847), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6849), 1, + aux_sym__val_number_decimal_token2, + STATE(1532), 1, + sym__val_number_decimal, + STATE(1536), 1, + sym__val_number, + STATE(2002), 1, + sym__expr_unary_minus, + STATE(3789), 1, + sym_comment, + STATE(3790), 1, + aux_sym_shebang_repeat1, + STATE(3850), 1, + sym_expr_parenthesized, + STATE(4048), 1, + sym_val_number, + STATE(4310), 1, + sym__predicate, + STATE(4461), 1, + sym__binary_predicate_parenthesized, + STATE(4738), 1, + sym_val_closure, + ACTIONS(211), 2, + anon_sym_true, + anon_sym_false, + STATE(4398), 2, + sym_expr_unary, + sym_val_bool, + STATE(4677), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(225), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [142426] = 27, + ACTIONS(223), 1, + aux_sym__val_number_token5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6763), 1, + ACTIONS(377), 1, anon_sym_DASH2, - ACTIONS(6777), 1, - anon_sym_PLUS2, - STATE(1800), 1, + ACTIONS(3438), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3440), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3518), 1, + aux_sym_expr_unary_token1, + ACTIONS(6837), 1, + sym_identifier, + ACTIONS(6839), 1, + sym__newline, + ACTIONS(6841), 1, + anon_sym_LPAREN, + ACTIONS(6843), 1, + anon_sym_DOLLAR, + ACTIONS(6845), 1, + anon_sym_LBRACE, + ACTIONS(6847), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6849), 1, + aux_sym__val_number_decimal_token2, + STATE(1532), 1, + sym__val_number_decimal, + STATE(1536), 1, + sym__val_number, + STATE(2002), 1, + sym__expr_unary_minus, + STATE(3790), 1, + sym_comment, + STATE(3850), 1, + sym_expr_parenthesized, + STATE(3946), 1, aux_sym_shebang_repeat1, - STATE(3740), 1, + STATE(4048), 1, + sym_val_number, + STATE(4369), 1, + sym__predicate, + STATE(4467), 1, + sym__binary_predicate_parenthesized, + STATE(4958), 1, + sym_val_closure, + ACTIONS(211), 2, + anon_sym_true, + anon_sym_false, + STATE(4398), 2, + sym_expr_unary, + sym_val_bool, + STATE(4677), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(225), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [142515] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4706), 1, + aux_sym_unquoted_token2, + STATE(3791), 1, sym_comment, - ACTIONS(5321), 2, + ACTIONS(1639), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6767), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6773), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6775), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5319), 20, - sym__newline, + anon_sym_PLUS2, + ACTIONS(1651), 26, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -362556,353 +367312,392 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [141376] = 14, - ACTIONS(251), 1, + [142560] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6763), 1, - anon_sym_DASH2, - ACTIONS(6777), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3741), 1, + STATE(3792), 1, sym_comment, - ACTIONS(6761), 2, + ACTIONS(964), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(966), 29, + 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_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6767), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6771), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6773), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6775), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6779), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6765), 4, + anon_sym_DASH_DASH, anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6769), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5319), 8, - sym__newline, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [141438] = 15, - ACTIONS(251), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [142603] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6763), 1, - anon_sym_DASH2, - ACTIONS(6777), 1, - anon_sym_PLUS2, - ACTIONS(6781), 1, - anon_sym_bit_DASHand2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3742), 1, + STATE(3793), 1, sym_comment, - ACTIONS(6761), 2, + ACTIONS(956), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(958), 29, + 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_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6767), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6771), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6773), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6775), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6779), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6765), 4, + anon_sym_DASH_DASH, anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6769), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5319), 7, - sym__newline, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [141502] = 16, - ACTIONS(251), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [142646] = 20, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6763), 1, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(6340), 1, anon_sym_DASH2, - ACTIONS(6777), 1, + ACTIONS(6346), 1, anon_sym_PLUS2, - ACTIONS(6781), 1, + ACTIONS(6358), 1, anon_sym_bit_DASHand2, - ACTIONS(6785), 1, + ACTIONS(6360), 1, anon_sym_bit_DASHxor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3743), 1, + ACTIONS(6362), 1, + anon_sym_bit_DASHor2, + ACTIONS(6364), 1, + anon_sym_and2, + ACTIONS(6366), 1, + anon_sym_xor2, + ACTIONS(6851), 1, + anon_sym_or2, + STATE(3794), 1, sym_comment, - ACTIONS(6761), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6767), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6771), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6773), 2, + STATE(3796), 1, + aux_sym_shebang_repeat1, + ACTIONS(6334), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6775), 2, + ACTIONS(6342), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6344), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6779), 2, + ACTIONS(6348), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6765), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6769), 4, + ACTIONS(6350), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6356), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6352), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5319), 6, + ACTIONS(6354), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [142721] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3795), 1, + sym_comment, + ACTIONS(960), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(962), 29, + 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_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHor2, - [141568] = 5, - ACTIONS(251), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [142764] = 20, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4780), 1, - aux_sym_unquoted_token2, - STATE(3744), 1, - sym_comment, - ACTIONS(1638), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1650), 25, + ACTIONS(3842), 1, sym__newline, + ACTIONS(6368), 1, anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, + ACTIONS(6376), 1, + anon_sym_PLUS2, + ACTIONS(6388), 1, + anon_sym_bit_DASHand2, + ACTIONS(6390), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6392), 1, + anon_sym_bit_DASHor2, + ACTIONS(6394), 1, anon_sym_and2, + ACTIONS(6396), 1, anon_sym_xor2, + ACTIONS(6853), 1, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(3796), 1, + sym_comment, + ACTIONS(6370), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6372), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6374), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6378), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [141612] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1814), 1, - anon_sym_LPAREN2, - ACTIONS(1822), 1, - aux_sym_unquoted_token2, - STATE(3745), 1, - sym_comment, - ACTIONS(2220), 5, + ACTIONS(6380), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2222), 24, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, + ACTIONS(6386), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6382), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [141658] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1814), 1, - anon_sym_LPAREN2, - ACTIONS(1822), 1, - aux_sym_unquoted_token2, - STATE(3746), 1, - sym_comment, - ACTIONS(1812), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1820), 24, - anon_sym_DASH2, + ACTIONS(6384), 6, anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [141704] = 19, - ACTIONS(251), 1, + [142839] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6859), 1, + aux_sym_cmd_identifier_token41, + STATE(3797), 1, + sym_comment, + ACTIONS(6857), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6855), 25, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [142883] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6865), 1, + aux_sym_cmd_identifier_token41, + STATE(3798), 1, + sym_comment, + ACTIONS(6863), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6861), 25, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [142927] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5390), 1, - sym__newline, - ACTIONS(6743), 1, + ACTIONS(6867), 1, anon_sym_DASH2, - ACTIONS(6755), 1, + ACTIONS(6875), 1, anon_sym_PLUS2, - ACTIONS(6783), 1, - anon_sym_bit_DASHand2, - ACTIONS(6787), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6789), 1, - anon_sym_bit_DASHor2, - ACTIONS(6791), 1, - anon_sym_and2, - STATE(3747), 1, + STATE(3799), 1, sym_comment, - STATE(3782), 1, - aux_sym_shebang_repeat1, - ACTIONS(6741), 2, + ACTIONS(5213), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6747), 2, + ACTIONS(6869), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6751), 2, + ACTIONS(6871), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6753), 2, + ACTIONS(6873), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6757), 2, + ACTIONS(6877), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6759), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5349), 3, + ACTIONS(5211), 19, + anon_sym_in2, anon_sym_LBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(6745), 4, - anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6749), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [141776] = 6, - ACTIONS(251), 1, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [142981] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1540), 1, - aux_sym_unquoted_token2, - ACTIONS(2226), 1, - anon_sym_LPAREN2, - STATE(3748), 1, + STATE(3800), 1, sym_comment, - ACTIONS(2224), 5, - anon_sym_GT2, + ACTIONS(6869), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(6871), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6873), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5213), 3, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2228), 24, + ACTIONS(5211), 22, anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -362911,111 +367706,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [141822] = 6, - ACTIONS(251), 1, + [143029] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2174), 1, - anon_sym_LPAREN2, - ACTIONS(2178), 1, - aux_sym_unquoted_token2, - STATE(3749), 1, + ACTIONS(6867), 1, + anon_sym_DASH2, + ACTIONS(6875), 1, + anon_sym_PLUS2, + STATE(3801), 1, sym_comment, - ACTIONS(2172), 5, - anon_sym_GT2, + ACTIONS(6869), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2176), 24, - anon_sym_DASH2, + ACTIONS(6871), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6873), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6877), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6879), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6881), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5211), 15, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [141868] = 4, - ACTIONS(3), 1, + [143085] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2150), 1, - anon_sym_LPAREN2, - STATE(3750), 1, + STATE(3802), 1, sym_comment, - ACTIONS(2148), 30, + ACTIONS(6871), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5213), 5, anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5211), 24, anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_STAR2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - aux_sym_unquoted_token4, - [141910] = 7, + [143129] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6805), 1, + ACTIONS(6887), 1, aux_sym_cmd_identifier_token41, - ACTIONS(6807), 1, - sym_filesize_unit, - ACTIONS(6809), 1, - sym_duration_unit, - STATE(3751), 1, + STATE(3803), 1, sym_comment, - ACTIONS(6803), 5, + ACTIONS(6885), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(6801), 23, + ACTIONS(6883), 25, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -363033,186 +367826,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_in, anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [141958] = 9, - ACTIONS(251), 1, + [143173] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5390), 1, - sym__newline, - STATE(3752), 1, + ACTIONS(6867), 1, + anon_sym_DASH2, + ACTIONS(6875), 1, + anon_sym_PLUS2, + ACTIONS(6893), 1, + anon_sym_bit_DASHand2, + ACTIONS(6895), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6897), 1, + anon_sym_bit_DASHor2, + STATE(3804), 1, sym_comment, - STATE(3768), 1, - aux_sym_shebang_repeat1, - ACTIONS(6747), 2, + ACTIONS(6869), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6751), 2, + ACTIONS(6871), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6753), 2, + ACTIONS(6873), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5351), 3, + ACTIONS(6877), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6879), 2, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5349), 20, - anon_sym_DASH2, - anon_sym_in2, + ACTIONS(6891), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5211), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, + ACTIONS(6881), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, + ACTIONS(6889), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [143239] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6867), 1, + anon_sym_DASH2, + ACTIONS(6875), 1, + anon_sym_PLUS2, + ACTIONS(6893), 1, anon_sym_bit_DASHand2, + ACTIONS(6895), 1, anon_sym_bit_DASHxor2, + ACTIONS(6897), 1, anon_sym_bit_DASHor2, - [142010] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3753), 1, + ACTIONS(6899), 1, + anon_sym_and2, + STATE(3805), 1, sym_comment, - ACTIONS(1743), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - ACTIONS(1745), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - 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, - sym_duration_unit, - [142052] = 20, - ACTIONS(251), 1, + ACTIONS(6869), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6871), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6873), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6877), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6879), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6891), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5211), 3, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6881), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6889), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [143307] = 18, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(6743), 1, + ACTIONS(6867), 1, anon_sym_DASH2, - ACTIONS(6755), 1, + ACTIONS(6875), 1, anon_sym_PLUS2, - ACTIONS(6783), 1, + ACTIONS(6893), 1, anon_sym_bit_DASHand2, - ACTIONS(6787), 1, + ACTIONS(6895), 1, anon_sym_bit_DASHxor2, - ACTIONS(6789), 1, + ACTIONS(6897), 1, anon_sym_bit_DASHor2, - ACTIONS(6791), 1, + ACTIONS(6899), 1, anon_sym_and2, - ACTIONS(6793), 1, + ACTIONS(6901), 1, anon_sym_xor2, - STATE(3754), 1, + STATE(3806), 1, sym_comment, - STATE(3784), 1, - aux_sym_shebang_repeat1, - ACTIONS(5349), 2, + ACTIONS(5211), 2, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(6741), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6747), 2, + ACTIONS(6869), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6751), 2, + ACTIONS(6871), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6753), 2, + ACTIONS(6873), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6757), 2, + ACTIONS(6877), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6759), 2, + ACTIONS(6879), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6891), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6745), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6749), 4, + ACTIONS(6881), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [142126] = 14, - ACTIONS(251), 1, + ACTIONS(6889), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [143377] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5390), 1, - sym__newline, - ACTIONS(6743), 1, + ACTIONS(6867), 1, anon_sym_DASH2, - ACTIONS(6755), 1, + ACTIONS(6875), 1, anon_sym_PLUS2, - STATE(3755), 1, + STATE(3807), 1, sym_comment, - STATE(3786), 1, - aux_sym_shebang_repeat1, - ACTIONS(6741), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6747), 2, + ACTIONS(6869), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6751), 2, + ACTIONS(6871), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6753), 2, + ACTIONS(6873), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6757), 2, + ACTIONS(6877), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6745), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6749), 4, + ACTIONS(6879), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6881), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5349), 9, + ACTIONS(6889), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5211), 9, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -363222,38 +368033,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [142188] = 11, - ACTIONS(251), 1, + [143435] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5390), 1, - sym__newline, - ACTIONS(6743), 1, + ACTIONS(6867), 1, anon_sym_DASH2, - ACTIONS(6755), 1, + ACTIONS(6875), 1, anon_sym_PLUS2, - STATE(3756), 1, + STATE(3808), 1, sym_comment, - STATE(3790), 1, - aux_sym_shebang_repeat1, - ACTIONS(5351), 2, + ACTIONS(5213), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6747), 2, + ACTIONS(6869), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6751), 2, + ACTIONS(6871), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6753), 2, + ACTIONS(6873), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5349), 19, + ACTIONS(5211), 21, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -363267,89 +368076,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [142244] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3072), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(6811), 1, - sym_filesize_unit, - ACTIONS(6813), 1, - sym_duration_unit, - STATE(3757), 1, - sym_comment, - ACTIONS(3070), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3068), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - 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, - [142292] = 15, - ACTIONS(251), 1, + [143487] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5390), 1, - sym__newline, - ACTIONS(6743), 1, + ACTIONS(6867), 1, anon_sym_DASH2, - ACTIONS(6755), 1, + ACTIONS(6875), 1, anon_sym_PLUS2, - STATE(3735), 1, - aux_sym_shebang_repeat1, - STATE(3758), 1, + STATE(3809), 1, sym_comment, - ACTIONS(6741), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6747), 2, + ACTIONS(6869), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6751), 2, + ACTIONS(6871), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6753), 2, + ACTIONS(6873), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6757), 2, + ACTIONS(6877), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6759), 2, + ACTIONS(6879), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6891), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6745), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6749), 4, + ACTIONS(6881), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5349), 7, + ACTIONS(6889), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5211), 7, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -363357,121 +368123,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [142356] = 16, - ACTIONS(251), 1, + [143547] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5390), 1, - sym__newline, - ACTIONS(6743), 1, + ACTIONS(6867), 1, anon_sym_DASH2, - ACTIONS(6755), 1, + ACTIONS(6875), 1, anon_sym_PLUS2, - ACTIONS(6783), 1, + ACTIONS(6893), 1, anon_sym_bit_DASHand2, - STATE(3673), 1, - aux_sym_shebang_repeat1, - STATE(3759), 1, + STATE(3810), 1, sym_comment, - ACTIONS(6741), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6747), 2, + ACTIONS(6869), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6751), 2, + ACTIONS(6871), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6753), 2, + ACTIONS(6873), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6757), 2, + ACTIONS(6877), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6759), 2, + ACTIONS(6879), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6891), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6745), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6749), 4, + ACTIONS(6881), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5349), 6, + ACTIONS(5211), 6, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [142422] = 17, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5390), 1, - sym__newline, - ACTIONS(6743), 1, - anon_sym_DASH2, - ACTIONS(6755), 1, - anon_sym_PLUS2, - ACTIONS(6783), 1, - anon_sym_bit_DASHand2, - ACTIONS(6787), 1, - anon_sym_bit_DASHxor2, - STATE(3675), 1, - aux_sym_shebang_repeat1, - STATE(3760), 1, - sym_comment, - ACTIONS(6741), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6747), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6751), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6753), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6757), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6759), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6745), 4, + ACTIONS(6889), 6, anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6749), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5349), 5, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [142490] = 4, + [143609] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3761), 1, + ACTIONS(6907), 1, + aux_sym_cmd_identifier_token41, + STATE(3811), 1, sym_comment, - ACTIONS(1680), 7, + ACTIONS(6905), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - ACTIONS(1682), 24, + ACTIONS(6903), 25, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -363489,160 +368202,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_in, anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - sym_duration_unit, - [142532] = 13, - ACTIONS(251), 1, + [143653] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5390), 1, - sym__newline, - ACTIONS(6743), 1, + ACTIONS(6867), 1, anon_sym_DASH2, - ACTIONS(6755), 1, + ACTIONS(6875), 1, anon_sym_PLUS2, - STATE(3762), 1, + ACTIONS(6893), 1, + anon_sym_bit_DASHand2, + ACTIONS(6895), 1, + anon_sym_bit_DASHxor2, + STATE(3812), 1, sym_comment, - STATE(3772), 1, - aux_sym_shebang_repeat1, - ACTIONS(6741), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6747), 2, + ACTIONS(6869), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6751), 2, + ACTIONS(6871), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6753), 2, + ACTIONS(6873), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6757), 2, + ACTIONS(6877), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6749), 4, + ACTIONS(6879), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6891), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6881), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5349), 13, - anon_sym_in2, + ACTIONS(5211), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(6889), 6, + anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [142592] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6819), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(6821), 1, - sym_filesize_unit, - ACTIONS(6823), 1, - sym_duration_unit, - STATE(3763), 1, - sym_comment, - ACTIONS(6817), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6815), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - 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, - [142640] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3058), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(6825), 1, - sym_filesize_unit, - ACTIONS(6827), 1, - sym_duration_unit, - STATE(3764), 1, - sym_comment, - ACTIONS(3056), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3054), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - 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, - [142688] = 7, + [143717] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6833), 1, + ACTIONS(3090), 1, aux_sym_cmd_identifier_token41, - ACTIONS(6835), 1, - sym_filesize_unit, - ACTIONS(6837), 1, - sym_duration_unit, - STATE(3765), 1, + STATE(3813), 1, sym_comment, - ACTIONS(6831), 5, + ACTIONS(3088), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(6829), 23, + ACTIONS(3086), 25, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -363660,46 +368290,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_in, anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [142736] = 11, - ACTIONS(251), 1, + [143761] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6763), 1, + ACTIONS(6909), 1, anon_sym_DASH2, - ACTIONS(6777), 1, + ACTIONS(6917), 1, anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3766), 1, + STATE(3814), 1, sym_comment, - ACTIONS(5343), 2, + ACTIONS(5213), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6767), 2, + ACTIONS(6911), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6773), 2, + ACTIONS(6913), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6775), 2, + ACTIONS(6915), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6779), 2, + ACTIONS(6919), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5341), 18, - sym__newline, + ACTIONS(5211), 19, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -363711,41 +368342,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [142792] = 12, - ACTIONS(251), 1, + [143815] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5475), 1, - sym__newline, - ACTIONS(6743), 1, - anon_sym_DASH2, - ACTIONS(6755), 1, - anon_sym_PLUS2, - STATE(3694), 1, - aux_sym_shebang_repeat1, - STATE(3767), 1, + STATE(3815), 1, sym_comment, - ACTIONS(5347), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6747), 2, + ACTIONS(6911), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6751), 2, + ACTIONS(6913), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6753), 2, + ACTIONS(6915), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6757), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5345), 17, + ACTIONS(5213), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5211), 22, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -363754,104 +368378,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [142850] = 8, - ACTIONS(251), 1, + [143863] = 11, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3768), 1, + ACTIONS(6909), 1, + anon_sym_DASH2, + ACTIONS(6917), 1, + anon_sym_PLUS2, + STATE(3816), 1, sym_comment, - ACTIONS(6767), 2, + ACTIONS(6911), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6773), 2, + ACTIONS(6913), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6775), 2, + ACTIONS(6915), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5343), 3, + ACTIONS(6919), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6921), 2, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5341), 21, - sym__newline, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, + ACTIONS(6923), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [142900] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6626), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6839), 1, - anon_sym_DOT, - STATE(3769), 1, - sym_comment, - ACTIONS(1755), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1757), 24, - anon_sym_DASH2, + ACTIONS(5211), 15, anon_sym_in2, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [142946] = 4, - ACTIONS(251), 1, + [143919] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3770), 1, + STATE(3817), 1, sym_comment, - ACTIONS(1755), 6, + ACTIONS(6913), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5213), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1757), 25, + ACTIONS(5211), 24, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -363859,6 +368450,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, @@ -363867,9 +368460,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -363877,756 +368467,406 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [142988] = 9, - ACTIONS(251), 1, + [143963] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5475), 1, - sym__newline, - STATE(3695), 1, - aux_sym_shebang_repeat1, - STATE(3771), 1, - sym_comment, - ACTIONS(6747), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6751), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6753), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5347), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5345), 20, + ACTIONS(6909), 1, anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, + ACTIONS(6917), 1, + anon_sym_PLUS2, + ACTIONS(6929), 1, anon_sym_bit_DASHand2, + ACTIONS(6931), 1, anon_sym_bit_DASHxor2, + ACTIONS(6933), 1, anon_sym_bit_DASHor2, - [143040] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6763), 1, - anon_sym_DASH2, - ACTIONS(6777), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3772), 1, + STATE(3818), 1, sym_comment, - ACTIONS(6761), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6767), 2, + ACTIONS(6911), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6773), 2, + ACTIONS(6913), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6775), 2, + ACTIONS(6915), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6779), 2, + ACTIONS(6919), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6769), 4, + ACTIONS(6921), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6927), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5211), 4, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6923), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5341), 14, - sym__newline, + ACTIONS(6925), 6, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [143098] = 13, - ACTIONS(251), 1, + [144029] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5475), 1, - sym__newline, - ACTIONS(6743), 1, + ACTIONS(6909), 1, anon_sym_DASH2, - ACTIONS(6755), 1, + ACTIONS(6917), 1, anon_sym_PLUS2, - STATE(3696), 1, - aux_sym_shebang_repeat1, - STATE(3773), 1, + ACTIONS(6929), 1, + anon_sym_bit_DASHand2, + ACTIONS(6931), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6933), 1, + anon_sym_bit_DASHor2, + ACTIONS(6935), 1, + anon_sym_and2, + STATE(3819), 1, sym_comment, - ACTIONS(6741), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6747), 2, + ACTIONS(6911), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6751), 2, + ACTIONS(6913), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6753), 2, + ACTIONS(6915), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6757), 2, + ACTIONS(6919), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6749), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5345), 13, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [143158] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3774), 1, - sym_comment, - ACTIONS(6773), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5343), 5, + ACTIONS(6921), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5341), 23, - sym__newline, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, + ACTIONS(6927), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [143204] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5475), 1, - sym__newline, - STATE(3697), 1, - aux_sym_shebang_repeat1, - STATE(3775), 1, - sym_comment, - ACTIONS(6751), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5347), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5345), 22, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, + ACTIONS(5211), 3, + anon_sym_EQ_GT, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, + ACTIONS(6923), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [143252] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3776), 1, - sym_comment, - ACTIONS(1711), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1713), 25, - anon_sym_DASH2, + ACTIONS(6925), 6, anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [143294] = 17, - ACTIONS(251), 1, + [144097] = 18, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6763), 1, + ACTIONS(6909), 1, anon_sym_DASH2, - ACTIONS(6777), 1, + ACTIONS(6917), 1, anon_sym_PLUS2, - ACTIONS(6781), 1, + ACTIONS(6929), 1, anon_sym_bit_DASHand2, - ACTIONS(6785), 1, + ACTIONS(6931), 1, anon_sym_bit_DASHxor2, - ACTIONS(6795), 1, + ACTIONS(6933), 1, anon_sym_bit_DASHor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3777), 1, + ACTIONS(6935), 1, + anon_sym_and2, + ACTIONS(6937), 1, + anon_sym_xor2, + STATE(3820), 1, sym_comment, - ACTIONS(6761), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6767), 2, + ACTIONS(5211), 2, + anon_sym_EQ_GT, + anon_sym_or2, + ACTIONS(6911), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6771), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6773), 2, + ACTIONS(6913), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6775), 2, + ACTIONS(6915), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6779), 2, + ACTIONS(6919), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6765), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6769), 4, + ACTIONS(6921), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6927), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6923), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5341), 5, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [143362] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3778), 1, - sym_comment, - ACTIONS(1783), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1785), 25, - anon_sym_DASH2, + ACTIONS(6925), 6, anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, + [144167] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6909), 1, + anon_sym_DASH2, + ACTIONS(6917), 1, + anon_sym_PLUS2, + STATE(3821), 1, + sym_comment, + ACTIONS(6911), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6913), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6915), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6919), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [143404] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3779), 1, - sym_comment, - ACTIONS(1835), 6, + ACTIONS(6921), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1837), 25, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, + ACTIONS(6923), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [143446] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2206), 1, - anon_sym_LPAREN2, - ACTIONS(2208), 1, - aux_sym_unquoted_token4, - STATE(3780), 1, - sym_comment, - ACTIONS(1016), 29, - anon_sym_GT2, - anon_sym_DASH2, + ACTIONS(6925), 6, anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5211), 9, anon_sym_EQ_GT, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [143490] = 18, - ACTIONS(251), 1, + [144225] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5475), 1, - sym__newline, - ACTIONS(6743), 1, + ACTIONS(6909), 1, anon_sym_DASH2, - ACTIONS(6755), 1, + ACTIONS(6917), 1, anon_sym_PLUS2, - ACTIONS(6783), 1, - anon_sym_bit_DASHand2, - ACTIONS(6787), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6789), 1, - anon_sym_bit_DASHor2, - STATE(3698), 1, - aux_sym_shebang_repeat1, - STATE(3781), 1, + STATE(3822), 1, sym_comment, - ACTIONS(6741), 2, + ACTIONS(5213), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6747), 2, + ACTIONS(6911), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6751), 2, + ACTIONS(6913), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6753), 2, + ACTIONS(6915), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6757), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6759), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5345), 4, - anon_sym_LBRACE, + ACTIONS(5211), 21, + anon_sym_in2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(6745), 4, - anon_sym_in2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6749), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [143560] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6763), 1, - anon_sym_DASH2, - ACTIONS(6777), 1, - anon_sym_PLUS2, - ACTIONS(6781), 1, - anon_sym_bit_DASHand2, - ACTIONS(6785), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6795), 1, - anon_sym_bit_DASHor2, - ACTIONS(6797), 1, - anon_sym_and2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3782), 1, - sym_comment, - ACTIONS(6761), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6767), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6771), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6773), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6775), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6779), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5341), 4, - sym__newline, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(6765), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6769), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [143630] = 19, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5475), 1, - sym__newline, - ACTIONS(6743), 1, - anon_sym_DASH2, - ACTIONS(6755), 1, - anon_sym_PLUS2, - ACTIONS(6783), 1, anon_sym_bit_DASHand2, - ACTIONS(6787), 1, anon_sym_bit_DASHxor2, - ACTIONS(6789), 1, anon_sym_bit_DASHor2, - ACTIONS(6791), 1, - anon_sym_and2, - STATE(3699), 1, - aux_sym_shebang_repeat1, - STATE(3783), 1, - sym_comment, - ACTIONS(6741), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6747), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6751), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6753), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6757), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6759), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5345), 3, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(6745), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6749), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [143702] = 19, - ACTIONS(251), 1, + [144277] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6763), 1, + ACTIONS(6909), 1, anon_sym_DASH2, - ACTIONS(6777), 1, + ACTIONS(6917), 1, anon_sym_PLUS2, - ACTIONS(6781), 1, - anon_sym_bit_DASHand2, - ACTIONS(6785), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6795), 1, - anon_sym_bit_DASHor2, - ACTIONS(6797), 1, - anon_sym_and2, - ACTIONS(6799), 1, - anon_sym_xor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3784), 1, + STATE(3823), 1, sym_comment, - ACTIONS(6761), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6767), 2, + ACTIONS(6911), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6771), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6773), 2, + ACTIONS(6913), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6775), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6779), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5341), 3, - sym__newline, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(6765), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6769), 4, + ACTIONS(6915), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6919), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6921), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6927), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6923), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [143774] = 20, - ACTIONS(251), 1, + ACTIONS(6925), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5211), 7, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [144337] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(6743), 1, + ACTIONS(6909), 1, anon_sym_DASH2, - ACTIONS(6755), 1, + ACTIONS(6917), 1, anon_sym_PLUS2, - ACTIONS(6783), 1, + ACTIONS(6929), 1, anon_sym_bit_DASHand2, - ACTIONS(6787), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6789), 1, - anon_sym_bit_DASHor2, - ACTIONS(6791), 1, - anon_sym_and2, - ACTIONS(6793), 1, - anon_sym_xor2, - STATE(3700), 1, - aux_sym_shebang_repeat1, - STATE(3785), 1, + STATE(3824), 1, sym_comment, - ACTIONS(5345), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(6741), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6747), 2, + ACTIONS(6911), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6751), 2, + ACTIONS(6913), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6753), 2, + ACTIONS(6915), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6757), 2, + ACTIONS(6919), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6759), 2, + ACTIONS(6921), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6927), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6745), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6749), 4, + ACTIONS(6923), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [143848] = 13, - ACTIONS(251), 1, + ACTIONS(5211), 6, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(6925), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [144399] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6763), 1, + ACTIONS(6909), 1, anon_sym_DASH2, - ACTIONS(6777), 1, + ACTIONS(6917), 1, anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3786), 1, + ACTIONS(6929), 1, + anon_sym_bit_DASHand2, + ACTIONS(6931), 1, + anon_sym_bit_DASHxor2, + STATE(3825), 1, sym_comment, - ACTIONS(6761), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6767), 2, + ACTIONS(6911), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6773), 2, + ACTIONS(6913), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6775), 2, + ACTIONS(6915), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6779), 2, + ACTIONS(6919), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6765), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6769), 4, + ACTIONS(6921), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6927), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6923), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5341), 10, - sym__newline, - anon_sym_LBRACE, + ACTIONS(5211), 5, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [143908] = 7, + ACTIONS(6925), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [144463] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6845), 1, + ACTIONS(3096), 1, aux_sym_cmd_identifier_token41, - ACTIONS(6847), 1, - sym_filesize_unit, - ACTIONS(6849), 1, - sym_duration_unit, - STATE(3787), 1, + STATE(3826), 1, sym_comment, - ACTIONS(6843), 5, + ACTIONS(3094), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(6841), 23, + ACTIONS(3092), 25, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -364644,26 +368884,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_in, anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [143956] = 4, + [144507] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3788), 1, + ACTIONS(3102), 1, + aux_sym_cmd_identifier_token41, + STATE(3827), 1, sym_comment, - ACTIONS(1550), 7, + ACTIONS(3100), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - ACTIONS(1552), 24, + ACTIONS(3098), 25, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -364681,168 +368923,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_in, anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - sym_duration_unit, - [143998] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5475), 1, - sym__newline, - ACTIONS(6743), 1, - anon_sym_DASH2, - ACTIONS(6755), 1, - anon_sym_PLUS2, - STATE(3701), 1, - aux_sym_shebang_repeat1, - STATE(3789), 1, - sym_comment, - ACTIONS(6741), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6747), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6751), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6753), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6757), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6745), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6749), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5345), 9, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [144060] = 10, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6763), 1, - anon_sym_DASH2, - ACTIONS(6777), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3790), 1, - sym_comment, - ACTIONS(5343), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6767), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6773), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6775), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5341), 20, - sym__newline, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [144114] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5475), 1, - sym__newline, - ACTIONS(6743), 1, - anon_sym_DASH2, - ACTIONS(6755), 1, - anon_sym_PLUS2, - STATE(3702), 1, - aux_sym_shebang_repeat1, - STATE(3791), 1, - sym_comment, - ACTIONS(5347), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6747), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6751), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6753), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5345), 19, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [144170] = 7, + [144551] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6855), 1, + ACTIONS(6943), 1, aux_sym_cmd_identifier_token41, - ACTIONS(6857), 1, - sym_filesize_unit, - ACTIONS(6859), 1, - sym_duration_unit, - STATE(3792), 1, + STATE(3828), 1, sym_comment, - ACTIONS(6853), 5, + ACTIONS(6941), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(6851), 23, + ACTIONS(6939), 25, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -364860,939 +368962,896 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_in, anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [144218] = 6, - ACTIONS(251), 1, + [144595] = 18, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3793), 1, + ACTIONS(5435), 1, + anon_sym_DASH2, + ACTIONS(5443), 1, + anon_sym_PLUS2, + ACTIONS(5455), 1, + anon_sym_bit_DASHand2, + ACTIONS(5457), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5459), 1, + anon_sym_bit_DASHor2, + ACTIONS(5461), 1, + anon_sym_and2, + ACTIONS(5463), 1, + anon_sym_xor2, + ACTIONS(6945), 1, + anon_sym_or2, + STATE(3829), 1, sym_comment, - ACTIONS(6773), 2, + ACTIONS(5437), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5439), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5321), 5, + ACTIONS(5441), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5445), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5447), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5319), 23, - sym__newline, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, + ACTIONS(5453), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5449), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [144264] = 25, - ACTIONS(227), 1, - aux_sym__val_number_token5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(383), 1, - anon_sym_DASH2, - ACTIONS(3416), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3470), 1, - aux_sym_expr_unary_token1, - ACTIONS(6695), 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, - STATE(1667), 1, - sym__val_number, - STATE(1700), 1, - sym__val_number_decimal, - STATE(2143), 1, - sym__expr_unary_minus, - STATE(3794), 1, - sym_comment, - STATE(3872), 1, - sym_expr_parenthesized, - STATE(3952), 1, - aux_sym_shebang_repeat1, - STATE(4176), 1, - sym_val_number, - STATE(4453), 1, - sym__binary_predicate_parenthesized, - STATE(4455), 1, - sym__predicate, - ACTIONS(215), 2, - anon_sym_true, - anon_sym_false, - STATE(4437), 2, - sym_expr_unary, - sym_val_bool, - STATE(5058), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(229), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [144347] = 20, - ACTIONS(251), 1, + ACTIONS(5451), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [144664] = 18, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(5360), 1, + ACTIONS(5377), 1, anon_sym_DASH2, - ACTIONS(5374), 1, + ACTIONS(5385), 1, anon_sym_PLUS2, - ACTIONS(5378), 1, + ACTIONS(5397), 1, anon_sym_bit_DASHand2, - ACTIONS(5380), 1, + ACTIONS(5399), 1, anon_sym_bit_DASHxor2, - ACTIONS(5393), 1, + ACTIONS(5401), 1, anon_sym_bit_DASHor2, - ACTIONS(5395), 1, + ACTIONS(5403), 1, anon_sym_and2, - ACTIONS(5400), 1, + ACTIONS(5405), 1, anon_sym_xor2, - ACTIONS(6861), 1, + ACTIONS(6947), 1, anon_sym_or2, - STATE(3795), 1, + STATE(3830), 1, sym_comment, - STATE(3806), 1, - aux_sym_shebang_repeat1, - ACTIONS(5358), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5364), 2, + ACTIONS(5379), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5368), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5370), 2, + ACTIONS(5381), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5372), 2, + ACTIONS(5383), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5376), 2, + ACTIONS(5387), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5362), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5366), 4, + ACTIONS(5389), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5395), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5391), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [144420] = 25, - ACTIONS(227), 1, + ACTIONS(5393), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [144733] = 25, + ACTIONS(223), 1, aux_sym__val_number_token5, - ACTIONS(251), 1, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(383), 1, + ACTIONS(377), 1, anon_sym_DASH2, - ACTIONS(3416), 1, + ACTIONS(3438), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, + ACTIONS(3440), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3470), 1, + ACTIONS(3518), 1, aux_sym_expr_unary_token1, - ACTIONS(6695), 1, + ACTIONS(6837), 1, sym_identifier, - ACTIONS(6697), 1, + ACTIONS(6839), 1, sym__newline, - ACTIONS(6699), 1, + ACTIONS(6841), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6843), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6847), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6849), 1, aux_sym__val_number_decimal_token2, - STATE(1667), 1, - sym__val_number, - STATE(1700), 1, + STATE(1532), 1, sym__val_number_decimal, - STATE(2143), 1, + STATE(1536), 1, + sym__val_number, + STATE(2002), 1, sym__expr_unary_minus, - STATE(3796), 1, + STATE(3831), 1, sym_comment, - STATE(3799), 1, - aux_sym_shebang_repeat1, - STATE(3872), 1, + STATE(3850), 1, sym_expr_parenthesized, - STATE(4176), 1, + STATE(3946), 1, + aux_sym_shebang_repeat1, + STATE(4048), 1, sym_val_number, - STATE(4400), 1, + STATE(4452), 1, sym__binary_predicate_parenthesized, - STATE(4415), 1, + STATE(4453), 1, sym__predicate, - ACTIONS(215), 2, + ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4437), 2, + STATE(4398), 2, sym_expr_unary, sym_val_bool, - STATE(5058), 2, + STATE(4677), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(229), 5, + ACTIONS(225), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [144503] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3797), 1, - sym_comment, - STATE(4841), 1, - sym_redirection, - ACTIONS(6865), 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(6867), 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), 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, - [144548] = 25, - ACTIONS(227), 1, + [144816] = 25, + ACTIONS(223), 1, aux_sym__val_number_token5, - ACTIONS(251), 1, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(383), 1, + ACTIONS(377), 1, anon_sym_DASH2, - ACTIONS(3416), 1, + ACTIONS(3438), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, + ACTIONS(3440), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3470), 1, + ACTIONS(3518), 1, aux_sym_expr_unary_token1, - ACTIONS(6695), 1, + ACTIONS(6837), 1, sym_identifier, - ACTIONS(6697), 1, + ACTIONS(6839), 1, sym__newline, - ACTIONS(6699), 1, + ACTIONS(6841), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6843), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6847), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6849), 1, aux_sym__val_number_decimal_token2, - STATE(1667), 1, - sym__val_number, - STATE(1700), 1, + STATE(1532), 1, sym__val_number_decimal, - STATE(2143), 1, + STATE(1536), 1, + sym__val_number, + STATE(2002), 1, sym__expr_unary_minus, - STATE(3798), 1, + STATE(3832), 1, sym_comment, - STATE(3872), 1, + STATE(3850), 1, sym_expr_parenthesized, - STATE(3952), 1, + STATE(3856), 1, aux_sym_shebang_repeat1, - STATE(4176), 1, + STATE(4048), 1, sym_val_number, - STATE(4417), 1, + STATE(4454), 1, sym__binary_predicate_parenthesized, - STATE(4424), 1, + STATE(4455), 1, sym__predicate, - ACTIONS(215), 2, + ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4437), 2, + STATE(4398), 2, sym_expr_unary, sym_val_bool, - STATE(5058), 2, + STATE(4677), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(229), 5, + ACTIONS(225), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [144631] = 25, - ACTIONS(227), 1, + [144899] = 25, + ACTIONS(223), 1, aux_sym__val_number_token5, - ACTIONS(251), 1, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(383), 1, + ACTIONS(377), 1, anon_sym_DASH2, - ACTIONS(3416), 1, + ACTIONS(3438), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, + ACTIONS(3440), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3470), 1, + ACTIONS(3518), 1, aux_sym_expr_unary_token1, - ACTIONS(6695), 1, + ACTIONS(6837), 1, sym_identifier, - ACTIONS(6697), 1, + ACTIONS(6839), 1, sym__newline, - ACTIONS(6699), 1, + ACTIONS(6841), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6843), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6847), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6849), 1, aux_sym__val_number_decimal_token2, - STATE(1667), 1, - sym__val_number, - STATE(1700), 1, + STATE(1532), 1, sym__val_number_decimal, - STATE(2143), 1, + STATE(1536), 1, + sym__val_number, + STATE(2002), 1, sym__expr_unary_minus, - STATE(3799), 1, + STATE(3833), 1, sym_comment, - STATE(3872), 1, + STATE(3850), 1, sym_expr_parenthesized, - STATE(3952), 1, + STATE(3857), 1, aux_sym_shebang_repeat1, - STATE(4176), 1, + STATE(4048), 1, sym_val_number, - STATE(4432), 1, + STATE(4456), 1, sym__binary_predicate_parenthesized, - STATE(4438), 1, + STATE(4457), 1, sym__predicate, - ACTIONS(215), 2, + ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4437), 2, + STATE(4398), 2, sym_expr_unary, sym_val_bool, - STATE(5058), 2, + STATE(4677), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(229), 5, + ACTIONS(225), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [144714] = 25, - ACTIONS(227), 1, + [144982] = 25, + ACTIONS(223), 1, aux_sym__val_number_token5, - ACTIONS(251), 1, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(383), 1, + ACTIONS(377), 1, anon_sym_DASH2, - ACTIONS(3416), 1, + ACTIONS(3438), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, + ACTIONS(3440), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3470), 1, + ACTIONS(3518), 1, aux_sym_expr_unary_token1, - ACTIONS(6695), 1, + ACTIONS(6837), 1, sym_identifier, - ACTIONS(6697), 1, + ACTIONS(6839), 1, sym__newline, - ACTIONS(6699), 1, + ACTIONS(6841), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6843), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6847), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6849), 1, aux_sym__val_number_decimal_token2, - STATE(1667), 1, - sym__val_number, - STATE(1700), 1, + STATE(1532), 1, sym__val_number_decimal, - STATE(2143), 1, + STATE(1536), 1, + sym__val_number, + STATE(2002), 1, sym__expr_unary_minus, - STATE(3800), 1, + STATE(3834), 1, sym_comment, - STATE(3872), 1, + STATE(3850), 1, sym_expr_parenthesized, - STATE(3952), 1, + STATE(3858), 1, aux_sym_shebang_repeat1, - STATE(4176), 1, + STATE(4048), 1, sym_val_number, - STATE(4332), 1, - sym__predicate, - STATE(4378), 1, + STATE(4458), 1, sym__binary_predicate_parenthesized, - ACTIONS(215), 2, + STATE(4459), 1, + sym__predicate, + ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4437), 2, + STATE(4398), 2, sym_expr_unary, sym_val_bool, - STATE(5058), 2, + STATE(4677), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(229), 5, + ACTIONS(225), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [144797] = 25, - ACTIONS(227), 1, + [145065] = 25, + ACTIONS(223), 1, aux_sym__val_number_token5, - ACTIONS(251), 1, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(383), 1, + ACTIONS(377), 1, anon_sym_DASH2, - ACTIONS(3416), 1, + ACTIONS(3438), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, + ACTIONS(3440), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3470), 1, + ACTIONS(3518), 1, aux_sym_expr_unary_token1, - ACTIONS(6695), 1, + ACTIONS(6837), 1, sym_identifier, - ACTIONS(6697), 1, - sym__newline, - ACTIONS(6699), 1, + ACTIONS(6841), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6843), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6845), 1, + anon_sym_LBRACE, + ACTIONS(6847), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6849), 1, aux_sym__val_number_decimal_token2, - STATE(1667), 1, - sym__val_number, - STATE(1700), 1, + STATE(1532), 1, sym__val_number_decimal, - STATE(2143), 1, + STATE(1536), 1, + sym__val_number, + STATE(2002), 1, sym__expr_unary_minus, - STATE(3801), 1, + STATE(3835), 1, sym_comment, - STATE(3872), 1, + STATE(3850), 1, sym_expr_parenthesized, - STATE(3952), 1, - aux_sym_shebang_repeat1, - STATE(4176), 1, + STATE(4048), 1, sym_val_number, - STATE(4406), 1, - sym__binary_predicate_parenthesized, - STATE(4423), 1, + STATE(4389), 1, + sym__binary_predicate, + STATE(4393), 1, sym__predicate, - ACTIONS(215), 2, + STATE(4893), 1, + sym_val_closure, + ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4437), 2, + STATE(4398), 2, sym_expr_unary, sym_val_bool, - STATE(5058), 2, + STATE(4677), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(229), 5, + ACTIONS(225), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [144880] = 25, - ACTIONS(227), 1, + [145148] = 18, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6867), 1, + anon_sym_DASH2, + ACTIONS(6875), 1, + anon_sym_PLUS2, + ACTIONS(6893), 1, + anon_sym_bit_DASHand2, + ACTIONS(6895), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6897), 1, + anon_sym_bit_DASHor2, + ACTIONS(6899), 1, + anon_sym_and2, + ACTIONS(6901), 1, + anon_sym_xor2, + ACTIONS(6949), 1, + anon_sym_or2, + STATE(3836), 1, + sym_comment, + ACTIONS(6869), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6871), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6873), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6877), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6879), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6891), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6881), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6889), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [145217] = 25, + ACTIONS(223), 1, aux_sym__val_number_token5, - ACTIONS(251), 1, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(383), 1, + ACTIONS(377), 1, anon_sym_DASH2, - ACTIONS(3416), 1, + ACTIONS(3438), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, + ACTIONS(3440), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3470), 1, + ACTIONS(3518), 1, aux_sym_expr_unary_token1, - ACTIONS(6695), 1, + ACTIONS(6837), 1, sym_identifier, - ACTIONS(6697), 1, + ACTIONS(6839), 1, sym__newline, - ACTIONS(6699), 1, + ACTIONS(6841), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6843), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6847), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6849), 1, aux_sym__val_number_decimal_token2, - STATE(1667), 1, - sym__val_number, - STATE(1700), 1, + STATE(1532), 1, sym__val_number_decimal, - STATE(2143), 1, + STATE(1536), 1, + sym__val_number, + STATE(2002), 1, sym__expr_unary_minus, - STATE(3802), 1, + STATE(3837), 1, sym_comment, - STATE(3872), 1, + STATE(3850), 1, sym_expr_parenthesized, - STATE(3952), 1, + STATE(3852), 1, aux_sym_shebang_repeat1, - STATE(4176), 1, + STATE(4048), 1, sym_val_number, - STATE(4271), 1, + STATE(4332), 1, sym__binary_predicate_parenthesized, - STATE(4299), 1, + STATE(4333), 1, sym__predicate, - ACTIONS(215), 2, + ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4437), 2, + STATE(4398), 2, sym_expr_unary, sym_val_bool, - STATE(5058), 2, + STATE(4677), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(229), 5, + ACTIONS(225), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [144963] = 25, - ACTIONS(227), 1, + [145300] = 18, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6400), 1, + anon_sym_DASH2, + ACTIONS(6408), 1, + anon_sym_PLUS2, + ACTIONS(6420), 1, + anon_sym_bit_DASHand2, + ACTIONS(6422), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6424), 1, + anon_sym_bit_DASHor2, + ACTIONS(6426), 1, + anon_sym_and2, + ACTIONS(6428), 1, + anon_sym_xor2, + ACTIONS(6951), 1, + anon_sym_or2, + STATE(3838), 1, + sym_comment, + ACTIONS(6402), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6404), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6406), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6410), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6412), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6418), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6414), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6416), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [145369] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3839), 1, + sym_comment, + STATE(4817), 1, + sym_redirection, + ACTIONS(6955), 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(6957), 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(6953), 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, + [145414] = 25, + ACTIONS(223), 1, aux_sym__val_number_token5, - ACTIONS(251), 1, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(383), 1, + ACTIONS(377), 1, anon_sym_DASH2, - ACTIONS(3416), 1, + ACTIONS(3438), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, + ACTIONS(3440), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3470), 1, + ACTIONS(3518), 1, aux_sym_expr_unary_token1, - ACTIONS(6695), 1, + ACTIONS(6837), 1, sym_identifier, - ACTIONS(6697), 1, + ACTIONS(6839), 1, sym__newline, - ACTIONS(6699), 1, + ACTIONS(6841), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6843), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6847), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6849), 1, aux_sym__val_number_decimal_token2, - STATE(1667), 1, - sym__val_number, - STATE(1700), 1, + STATE(1532), 1, sym__val_number_decimal, - STATE(2143), 1, + STATE(1536), 1, + sym__val_number, + STATE(2002), 1, sym__expr_unary_minus, - STATE(3800), 1, - aux_sym_shebang_repeat1, - STATE(3803), 1, + STATE(3840), 1, sym_comment, - STATE(3872), 1, + STATE(3850), 1, sym_expr_parenthesized, - STATE(4176), 1, + STATE(3946), 1, + aux_sym_shebang_repeat1, + STATE(4048), 1, sym_val_number, - STATE(4263), 1, + STATE(4396), 1, sym__binary_predicate_parenthesized, - STATE(4270), 1, + STATE(4400), 1, sym__predicate, - ACTIONS(215), 2, + ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4437), 2, + STATE(4398), 2, sym_expr_unary, sym_val_bool, - STATE(5058), 2, + STATE(4677), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(229), 5, + ACTIONS(225), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [145046] = 25, - ACTIONS(45), 1, - anon_sym_DASH2, - ACTIONS(227), 1, + [145497] = 25, + ACTIONS(223), 1, aux_sym__val_number_token5, - ACTIONS(251), 1, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3416), 1, + ACTIONS(377), 1, + anon_sym_DASH2, + ACTIONS(3438), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, + ACTIONS(3440), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3514), 1, + ACTIONS(3518), 1, aux_sym_expr_unary_token1, - ACTIONS(5873), 1, - anon_sym_LPAREN, - ACTIONS(6695), 1, + ACTIONS(6837), 1, sym_identifier, - ACTIONS(6701), 1, + ACTIONS(6839), 1, + sym__newline, + ACTIONS(6841), 1, + anon_sym_LPAREN, + ACTIONS(6843), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6847), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6849), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6869), 1, - anon_sym_LBRACE, - STATE(1667), 1, - sym__val_number, - STATE(1700), 1, + STATE(1532), 1, sym__val_number_decimal, - STATE(2458), 1, + STATE(1536), 1, + sym__val_number, + STATE(2002), 1, sym__expr_unary_minus, - STATE(3804), 1, + STATE(3841), 1, sym_comment, - STATE(3886), 1, + STATE(3850), 1, sym_expr_parenthesized, - STATE(4176), 1, + STATE(3946), 1, + aux_sym_shebang_repeat1, + STATE(4048), 1, sym_val_number, - STATE(4528), 1, - sym__binary_predicate, - STATE(4529), 1, + STATE(4430), 1, + sym__binary_predicate_parenthesized, + STATE(4431), 1, sym__predicate, - STATE(4966), 1, - sym_val_closure, - ACTIONS(89), 2, + ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4530), 2, + STATE(4398), 2, sym_expr_unary, sym_val_bool, - STATE(5119), 2, + STATE(4677), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(229), 5, + ACTIONS(225), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [145129] = 25, - ACTIONS(227), 1, + [145580] = 25, + ACTIONS(223), 1, aux_sym__val_number_token5, - ACTIONS(251), 1, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(383), 1, + ACTIONS(377), 1, anon_sym_DASH2, - ACTIONS(3416), 1, + ACTIONS(3438), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, + ACTIONS(3440), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3470), 1, + ACTIONS(3518), 1, aux_sym_expr_unary_token1, - ACTIONS(6695), 1, + ACTIONS(6837), 1, sym_identifier, - ACTIONS(6697), 1, + ACTIONS(6839), 1, sym__newline, - ACTIONS(6699), 1, + ACTIONS(6841), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6843), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6847), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6849), 1, aux_sym__val_number_decimal_token2, - STATE(1667), 1, - sym__val_number, - STATE(1700), 1, + STATE(1532), 1, sym__val_number_decimal, - STATE(2143), 1, + STATE(1536), 1, + sym__val_number, + STATE(2002), 1, sym__expr_unary_minus, - STATE(3798), 1, - aux_sym_shebang_repeat1, - STATE(3805), 1, + STATE(3842), 1, sym_comment, - STATE(3872), 1, + STATE(3850), 1, sym_expr_parenthesized, - STATE(4176), 1, + STATE(3853), 1, + aux_sym_shebang_repeat1, + STATE(4048), 1, sym_val_number, - STATE(4254), 1, + STATE(4432), 1, sym__binary_predicate_parenthesized, - STATE(4352), 1, + STATE(4433), 1, sym__predicate, - ACTIONS(215), 2, + ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4437), 2, + STATE(4398), 2, sym_expr_unary, sym_val_bool, - STATE(5058), 2, + STATE(4677), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(229), 5, + ACTIONS(225), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [145212] = 20, - ACTIONS(251), 1, + [145663] = 18, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(5430), 1, + ACTIONS(6909), 1, anon_sym_DASH2, - ACTIONS(5438), 1, + ACTIONS(6917), 1, anon_sym_PLUS2, - ACTIONS(5450), 1, + ACTIONS(6929), 1, anon_sym_bit_DASHand2, - ACTIONS(5452), 1, + ACTIONS(6931), 1, anon_sym_bit_DASHxor2, - ACTIONS(5454), 1, + ACTIONS(6933), 1, anon_sym_bit_DASHor2, - ACTIONS(5456), 1, + ACTIONS(6935), 1, anon_sym_and2, - ACTIONS(5458), 1, + ACTIONS(6937), 1, anon_sym_xor2, - ACTIONS(6871), 1, + ACTIONS(6959), 1, anon_sym_or2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3806), 1, + STATE(3843), 1, sym_comment, - ACTIONS(5432), 2, + ACTIONS(6911), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5434), 2, + ACTIONS(6913), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5436), 2, + ACTIONS(6915), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5440), 2, + ACTIONS(6919), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5442), 2, + ACTIONS(6921), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5448), 2, + ACTIONS(6927), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5444), 4, + ACTIONS(6923), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5446), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - [145285] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4780), 1, - aux_sym_unquoted_token2, - STATE(3807), 1, - sym_comment, - ACTIONS(1638), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1650), 24, - anon_sym_DASH2, + ACTIONS(6925), 6, anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [145328] = 25, - ACTIONS(227), 1, + [145732] = 25, + ACTIONS(223), 1, aux_sym__val_number_token5, - ACTIONS(251), 1, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(383), 1, + ACTIONS(377), 1, anon_sym_DASH2, - ACTIONS(3416), 1, + ACTIONS(3438), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, + ACTIONS(3440), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3470), 1, + ACTIONS(3518), 1, aux_sym_expr_unary_token1, - ACTIONS(6695), 1, + ACTIONS(6837), 1, sym_identifier, - ACTIONS(6697), 1, + ACTIONS(6839), 1, sym__newline, - ACTIONS(6699), 1, + ACTIONS(6841), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6843), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6847), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6849), 1, aux_sym__val_number_decimal_token2, - STATE(1667), 1, - sym__val_number, - STATE(1700), 1, + STATE(1532), 1, sym__val_number_decimal, - STATE(2143), 1, - sym__expr_unary_minus, - STATE(3801), 1, - aux_sym_shebang_repeat1, - STATE(3808), 1, - sym_comment, - STATE(3872), 1, - sym_expr_parenthesized, - STATE(4176), 1, - sym_val_number, - STATE(4381), 1, - sym__binary_predicate_parenthesized, - STATE(4382), 1, - sym__predicate, - ACTIONS(215), 2, - anon_sym_true, - anon_sym_false, - STATE(4437), 2, - sym_expr_unary, - sym_val_bool, - STATE(5058), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(229), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [145411] = 25, - ACTIONS(227), 1, - aux_sym__val_number_token5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(383), 1, - anon_sym_DASH2, - ACTIONS(3416), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3470), 1, - aux_sym_expr_unary_token1, - ACTIONS(6695), 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, - STATE(1667), 1, + STATE(1536), 1, sym__val_number, - STATE(1700), 1, - sym__val_number_decimal, - STATE(2143), 1, + STATE(2002), 1, sym__expr_unary_minus, - STATE(3802), 1, + STATE(3831), 1, aux_sym_shebang_repeat1, - STATE(3809), 1, + STATE(3844), 1, sym_comment, - STATE(3872), 1, + STATE(3850), 1, sym_expr_parenthesized, - STATE(4176), 1, + STATE(4048), 1, sym_val_number, - STATE(4397), 1, + STATE(4334), 1, sym__binary_predicate_parenthesized, - STATE(4402), 1, + STATE(4335), 1, sym__predicate, - ACTIONS(215), 2, + ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4437), 2, + STATE(4398), 2, sym_expr_unary, sym_val_bool, - STATE(5058), 2, + STATE(4677), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(229), 5, + ACTIONS(225), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [145494] = 6, - ACTIONS(251), 1, + [145815] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3810), 1, + STATE(3845), 1, sym_comment, - STATE(4798), 1, + STATE(4739), 1, sym_redirection, - ACTIONS(6865), 8, + ACTIONS(6955), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -365801,7 +369860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(6867), 8, + ACTIONS(6957), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -365810,7 +369869,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(6873), 13, + ACTIONS(6961), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365824,1723 +369883,1072 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [145539] = 25, - ACTIONS(227), 1, + [145860] = 25, + ACTIONS(223), 1, aux_sym__val_number_token5, - ACTIONS(251), 1, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(383), 1, + ACTIONS(377), 1, anon_sym_DASH2, - ACTIONS(3416), 1, + ACTIONS(3438), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, + ACTIONS(3440), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3470), 1, + ACTIONS(3518), 1, aux_sym_expr_unary_token1, - ACTIONS(6695), 1, + ACTIONS(6837), 1, sym_identifier, - ACTIONS(6697), 1, + ACTIONS(6839), 1, sym__newline, - ACTIONS(6699), 1, + ACTIONS(6841), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6843), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6847), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6849), 1, aux_sym__val_number_decimal_token2, - STATE(1667), 1, + STATE(1532), 1, + sym__val_number_decimal, + STATE(1536), 1, sym__val_number, - STATE(1700), 1, + STATE(2002), 1, + sym__expr_unary_minus, + STATE(3846), 1, + sym_comment, + STATE(3850), 1, + sym_expr_parenthesized, + STATE(3854), 1, + aux_sym_shebang_repeat1, + STATE(4048), 1, + sym_val_number, + STATE(4438), 1, + sym__binary_predicate_parenthesized, + STATE(4439), 1, + sym__predicate, + ACTIONS(211), 2, + anon_sym_true, + anon_sym_false, + STATE(4398), 2, + sym_expr_unary, + sym_val_bool, + STATE(4677), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(225), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [145943] = 25, + ACTIONS(223), 1, + aux_sym__val_number_token5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(377), 1, + anon_sym_DASH2, + ACTIONS(3438), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3440), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3518), 1, + aux_sym_expr_unary_token1, + ACTIONS(6837), 1, + sym_identifier, + ACTIONS(6839), 1, + sym__newline, + ACTIONS(6841), 1, + anon_sym_LPAREN, + ACTIONS(6843), 1, + anon_sym_DOLLAR, + ACTIONS(6847), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6849), 1, + aux_sym__val_number_decimal_token2, + STATE(1532), 1, sym__val_number_decimal, - STATE(2143), 1, + STATE(1536), 1, + sym__val_number, + STATE(2002), 1, sym__expr_unary_minus, - STATE(3811), 1, + STATE(3847), 1, sym_comment, - STATE(3824), 1, + STATE(3850), 1, + sym_expr_parenthesized, + STATE(3855), 1, aux_sym_shebang_repeat1, - STATE(3872), 1, + STATE(4048), 1, + sym_val_number, + STATE(4440), 1, + sym__binary_predicate_parenthesized, + STATE(4441), 1, + sym__predicate, + ACTIONS(211), 2, + anon_sym_true, + anon_sym_false, + STATE(4398), 2, + sym_expr_unary, + sym_val_bool, + STATE(4677), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(225), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [146026] = 25, + ACTIONS(223), 1, + aux_sym__val_number_token5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(377), 1, + anon_sym_DASH2, + ACTIONS(3438), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3440), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3518), 1, + aux_sym_expr_unary_token1, + ACTIONS(6837), 1, + sym_identifier, + ACTIONS(6839), 1, + sym__newline, + ACTIONS(6841), 1, + anon_sym_LPAREN, + ACTIONS(6843), 1, + anon_sym_DOLLAR, + ACTIONS(6847), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6849), 1, + aux_sym__val_number_decimal_token2, + STATE(1532), 1, + sym__val_number_decimal, + STATE(1536), 1, + sym__val_number, + STATE(2002), 1, + sym__expr_unary_minus, + STATE(3848), 1, + sym_comment, + STATE(3850), 1, sym_expr_parenthesized, - STATE(4176), 1, + STATE(3946), 1, + aux_sym_shebang_repeat1, + STATE(4048), 1, sym_val_number, - STATE(4431), 1, + STATE(4444), 1, sym__binary_predicate_parenthesized, - STATE(4436), 1, + STATE(4445), 1, sym__predicate, - ACTIONS(215), 2, + ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4437), 2, + STATE(4398), 2, sym_expr_unary, sym_val_bool, - STATE(5058), 2, + STATE(4677), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(229), 5, + ACTIONS(225), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [145622] = 25, - ACTIONS(227), 1, + [146109] = 18, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6460), 1, + anon_sym_DASH2, + ACTIONS(6468), 1, + anon_sym_PLUS2, + ACTIONS(6480), 1, + anon_sym_bit_DASHand2, + ACTIONS(6482), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6484), 1, + anon_sym_bit_DASHor2, + ACTIONS(6486), 1, + anon_sym_and2, + ACTIONS(6488), 1, + anon_sym_xor2, + ACTIONS(6963), 1, + anon_sym_or2, + STATE(3849), 1, + sym_comment, + ACTIONS(6462), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6464), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6466), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6470), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6472), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6478), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6474), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6476), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [146178] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3850), 1, + sym_comment, + ACTIONS(6967), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6973), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6971), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6969), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6965), 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_and2, + anon_sym_xor2, + anon_sym_or2, + [146225] = 25, + ACTIONS(45), 1, + anon_sym_DASH2, + ACTIONS(223), 1, aux_sym__val_number_token5, - ACTIONS(251), 1, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(383), 1, - anon_sym_DASH2, - ACTIONS(3416), 1, + ACTIONS(3438), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, + ACTIONS(3440), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3470), 1, + ACTIONS(3486), 1, aux_sym_expr_unary_token1, - ACTIONS(6695), 1, - sym_identifier, - ACTIONS(6697), 1, - sym__newline, - ACTIONS(6699), 1, + ACTIONS(5870), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6837), 1, + sym_identifier, + ACTIONS(6843), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6847), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6849), 1, aux_sym__val_number_decimal_token2, - STATE(1667), 1, - sym__val_number, - STATE(1700), 1, + ACTIONS(6975), 1, + anon_sym_LBRACE, + STATE(1532), 1, sym__val_number_decimal, - STATE(2143), 1, + STATE(1536), 1, + sym__val_number, + STATE(2502), 1, sym__expr_unary_minus, - STATE(3812), 1, + STATE(3851), 1, sym_comment, - STATE(3827), 1, - aux_sym_shebang_repeat1, - STATE(3872), 1, + STATE(3864), 1, sym_expr_parenthesized, - STATE(4176), 1, + STATE(4048), 1, sym_val_number, - STATE(4249), 1, + STATE(4473), 1, + sym__binary_predicate, + STATE(4515), 1, sym__predicate, - STATE(4454), 1, - sym__binary_predicate_parenthesized, - ACTIONS(215), 2, + STATE(4974), 1, + sym_val_closure, + ACTIONS(87), 2, anon_sym_true, anon_sym_false, - STATE(4437), 2, + STATE(4519), 2, sym_expr_unary, sym_val_bool, - STATE(5058), 2, + STATE(4556), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(229), 5, + ACTIONS(225), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [145705] = 25, - ACTIONS(227), 1, + [146308] = 25, + ACTIONS(223), 1, aux_sym__val_number_token5, - ACTIONS(251), 1, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(383), 1, + ACTIONS(377), 1, anon_sym_DASH2, - ACTIONS(3416), 1, + ACTIONS(3438), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, + ACTIONS(3440), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3470), 1, + ACTIONS(3518), 1, aux_sym_expr_unary_token1, - ACTIONS(6695), 1, + ACTIONS(6837), 1, sym_identifier, - ACTIONS(6697), 1, + ACTIONS(6839), 1, sym__newline, - ACTIONS(6699), 1, + ACTIONS(6841), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6843), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6847), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6849), 1, aux_sym__val_number_decimal_token2, - STATE(1667), 1, - sym__val_number, - STATE(1700), 1, + STATE(1532), 1, sym__val_number_decimal, - STATE(2143), 1, + STATE(1536), 1, + sym__val_number, + STATE(2002), 1, sym__expr_unary_minus, - STATE(3794), 1, - aux_sym_shebang_repeat1, - STATE(3813), 1, - sym_comment, - STATE(3872), 1, + STATE(3850), 1, sym_expr_parenthesized, - STATE(4176), 1, + STATE(3852), 1, + sym_comment, + STATE(3946), 1, + aux_sym_shebang_repeat1, + STATE(4048), 1, sym_val_number, - STATE(4468), 1, + STATE(4448), 1, sym__binary_predicate_parenthesized, - STATE(4470), 1, + STATE(4449), 1, sym__predicate, - ACTIONS(215), 2, + ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4437), 2, + STATE(4398), 2, sym_expr_unary, sym_val_bool, - STATE(5058), 2, + STATE(4677), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(229), 5, + ACTIONS(225), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [145788] = 20, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(6743), 1, - anon_sym_DASH2, - ACTIONS(6755), 1, - anon_sym_PLUS2, - ACTIONS(6783), 1, - anon_sym_bit_DASHand2, - ACTIONS(6787), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6789), 1, - anon_sym_bit_DASHor2, - ACTIONS(6791), 1, - anon_sym_and2, - ACTIONS(6793), 1, - anon_sym_xor2, - ACTIONS(6875), 1, - anon_sym_or2, - STATE(3814), 1, - sym_comment, - STATE(3815), 1, - aux_sym_shebang_repeat1, - ACTIONS(6741), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6747), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6751), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6753), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6757), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6759), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6745), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6749), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [145861] = 20, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(6763), 1, - anon_sym_DASH2, - ACTIONS(6777), 1, - anon_sym_PLUS2, - ACTIONS(6781), 1, - anon_sym_bit_DASHand2, - ACTIONS(6785), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6795), 1, - anon_sym_bit_DASHor2, - ACTIONS(6797), 1, - anon_sym_and2, - ACTIONS(6799), 1, - anon_sym_xor2, - ACTIONS(6877), 1, - anon_sym_or2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3815), 1, - sym_comment, - ACTIONS(6761), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6767), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6771), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6773), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6775), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6779), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6765), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6769), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [145934] = 25, - ACTIONS(227), 1, + [146391] = 25, + ACTIONS(223), 1, aux_sym__val_number_token5, - ACTIONS(251), 1, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(383), 1, + ACTIONS(377), 1, anon_sym_DASH2, - ACTIONS(3416), 1, + ACTIONS(3438), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, + ACTIONS(3440), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3470), 1, + ACTIONS(3518), 1, aux_sym_expr_unary_token1, - ACTIONS(6695), 1, + ACTIONS(6837), 1, sym_identifier, - ACTIONS(6697), 1, + ACTIONS(6839), 1, sym__newline, - ACTIONS(6699), 1, + ACTIONS(6841), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6843), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6847), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6849), 1, aux_sym__val_number_decimal_token2, - STATE(1667), 1, - sym__val_number, - STATE(1700), 1, + STATE(1532), 1, sym__val_number_decimal, - STATE(2143), 1, + STATE(1536), 1, + sym__val_number, + STATE(2002), 1, sym__expr_unary_minus, - STATE(3816), 1, - sym_comment, - STATE(3872), 1, + STATE(3850), 1, sym_expr_parenthesized, - STATE(3952), 1, + STATE(3853), 1, + sym_comment, + STATE(3946), 1, aux_sym_shebang_repeat1, - STATE(4176), 1, + STATE(4048), 1, sym_val_number, - STATE(4456), 1, + STATE(4322), 1, sym__binary_predicate_parenthesized, - STATE(4462), 1, + STATE(4325), 1, sym__predicate, - ACTIONS(215), 2, + ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4437), 2, + STATE(4398), 2, sym_expr_unary, sym_val_bool, - STATE(5058), 2, + STATE(4677), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(229), 5, + ACTIONS(225), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [146017] = 20, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(6364), 1, - anon_sym_DASH2, - ACTIONS(6378), 1, - anon_sym_PLUS2, - ACTIONS(6382), 1, - anon_sym_bit_DASHand2, - ACTIONS(6408), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6418), 1, - anon_sym_and2, - ACTIONS(6420), 1, - anon_sym_bit_DASHor2, - ACTIONS(6424), 1, - anon_sym_xor2, - ACTIONS(6879), 1, - anon_sym_or2, - STATE(3817), 1, - sym_comment, - STATE(3818), 1, - aux_sym_shebang_repeat1, - ACTIONS(6362), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6368), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6372), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6374), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6376), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6380), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6366), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6370), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [146090] = 20, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(6386), 1, - anon_sym_DASH2, - ACTIONS(6400), 1, - anon_sym_PLUS2, - ACTIONS(6404), 1, - anon_sym_bit_DASHand2, - ACTIONS(6406), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6410), 1, - anon_sym_bit_DASHor2, - ACTIONS(6412), 1, - anon_sym_and2, - ACTIONS(6414), 1, - anon_sym_xor2, - ACTIONS(6881), 1, - anon_sym_or2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3818), 1, - sym_comment, - ACTIONS(6384), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6390), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6394), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6396), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6398), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6402), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6388), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6392), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [146163] = 25, - ACTIONS(227), 1, + [146474] = 25, + ACTIONS(223), 1, aux_sym__val_number_token5, - ACTIONS(251), 1, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(383), 1, + ACTIONS(377), 1, anon_sym_DASH2, - ACTIONS(3416), 1, + ACTIONS(3438), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, + ACTIONS(3440), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3470), 1, + ACTIONS(3518), 1, aux_sym_expr_unary_token1, - ACTIONS(6695), 1, + ACTIONS(6837), 1, sym_identifier, - ACTIONS(6697), 1, + ACTIONS(6839), 1, sym__newline, - ACTIONS(6699), 1, + ACTIONS(6841), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6843), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6847), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6849), 1, aux_sym__val_number_decimal_token2, - STATE(1667), 1, - sym__val_number, - STATE(1700), 1, + STATE(1532), 1, sym__val_number_decimal, - STATE(2143), 1, + STATE(1536), 1, + sym__val_number, + STATE(2002), 1, sym__expr_unary_minus, - STATE(3819), 1, + STATE(3850), 1, + sym_expr_parenthesized, + STATE(3854), 1, sym_comment, - STATE(3821), 1, + STATE(3946), 1, aux_sym_shebang_repeat1, - STATE(3872), 1, - sym_expr_parenthesized, - STATE(4176), 1, + STATE(4048), 1, sym_val_number, - STATE(4250), 1, + STATE(4354), 1, sym__binary_predicate_parenthesized, - STATE(4279), 1, + STATE(4355), 1, sym__predicate, - ACTIONS(215), 2, + ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4437), 2, + STATE(4398), 2, sym_expr_unary, sym_val_bool, - STATE(5058), 2, + STATE(4677), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(229), 5, + ACTIONS(225), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [146246] = 25, - ACTIONS(227), 1, + [146557] = 25, + ACTIONS(223), 1, aux_sym__val_number_token5, - ACTIONS(251), 1, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(383), 1, + ACTIONS(377), 1, anon_sym_DASH2, - ACTIONS(3416), 1, + ACTIONS(3438), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, + ACTIONS(3440), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3470), 1, + ACTIONS(3518), 1, aux_sym_expr_unary_token1, - ACTIONS(6695), 1, + ACTIONS(6837), 1, sym_identifier, - ACTIONS(6697), 1, + ACTIONS(6839), 1, sym__newline, - ACTIONS(6699), 1, + ACTIONS(6841), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6843), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6847), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6849), 1, aux_sym__val_number_decimal_token2, - STATE(1667), 1, - sym__val_number, - STATE(1700), 1, + STATE(1532), 1, sym__val_number_decimal, - STATE(2143), 1, + STATE(1536), 1, + sym__val_number, + STATE(2002), 1, sym__expr_unary_minus, - STATE(3820), 1, + STATE(3850), 1, + sym_expr_parenthesized, + STATE(3855), 1, sym_comment, - STATE(3825), 1, + STATE(3946), 1, aux_sym_shebang_repeat1, - STATE(3872), 1, - sym_expr_parenthesized, - STATE(4176), 1, + STATE(4048), 1, sym_val_number, - STATE(4324), 1, + STATE(4362), 1, sym__binary_predicate_parenthesized, - STATE(4325), 1, + STATE(4363), 1, sym__predicate, - ACTIONS(215), 2, + ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4437), 2, + STATE(4398), 2, sym_expr_unary, sym_val_bool, - STATE(5058), 2, + STATE(4677), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(229), 5, + ACTIONS(225), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [146329] = 25, - ACTIONS(227), 1, + [146640] = 25, + ACTIONS(223), 1, aux_sym__val_number_token5, - ACTIONS(251), 1, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(383), 1, + ACTIONS(377), 1, anon_sym_DASH2, - ACTIONS(3416), 1, + ACTIONS(3438), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, + ACTIONS(3440), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3470), 1, + ACTIONS(3518), 1, aux_sym_expr_unary_token1, - ACTIONS(6695), 1, + ACTIONS(6837), 1, sym_identifier, - ACTIONS(6697), 1, + ACTIONS(6839), 1, sym__newline, - ACTIONS(6699), 1, + ACTIONS(6841), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6843), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6847), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6849), 1, aux_sym__val_number_decimal_token2, - STATE(1667), 1, - sym__val_number, - STATE(1700), 1, + STATE(1532), 1, sym__val_number_decimal, - STATE(2143), 1, + STATE(1536), 1, + sym__val_number, + STATE(2002), 1, sym__expr_unary_minus, - STATE(3821), 1, - sym_comment, - STATE(3872), 1, + STATE(3850), 1, sym_expr_parenthesized, - STATE(3952), 1, + STATE(3856), 1, + sym_comment, + STATE(3946), 1, aux_sym_shebang_repeat1, - STATE(4176), 1, + STATE(4048), 1, sym_val_number, - STATE(4311), 1, + STATE(4257), 1, sym__binary_predicate_parenthesized, - STATE(4312), 1, + STATE(4262), 1, sym__predicate, - ACTIONS(215), 2, + ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4437), 2, + STATE(4398), 2, sym_expr_unary, sym_val_bool, - STATE(5058), 2, + STATE(4677), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(229), 5, + ACTIONS(225), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [146412] = 25, - ACTIONS(227), 1, + [146723] = 25, + ACTIONS(223), 1, aux_sym__val_number_token5, - ACTIONS(251), 1, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(383), 1, + ACTIONS(377), 1, anon_sym_DASH2, - ACTIONS(3416), 1, + ACTIONS(3438), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, + ACTIONS(3440), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3470), 1, + ACTIONS(3518), 1, aux_sym_expr_unary_token1, - ACTIONS(6695), 1, + ACTIONS(6837), 1, sym_identifier, - ACTIONS(6697), 1, + ACTIONS(6839), 1, sym__newline, - ACTIONS(6699), 1, + ACTIONS(6841), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6843), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6847), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6849), 1, aux_sym__val_number_decimal_token2, - STATE(1667), 1, - sym__val_number, - STATE(1700), 1, + STATE(1532), 1, sym__val_number_decimal, - STATE(2143), 1, + STATE(1536), 1, + sym__val_number, + STATE(2002), 1, sym__expr_unary_minus, - STATE(3822), 1, + STATE(3850), 1, + sym_expr_parenthesized, + STATE(3857), 1, sym_comment, - STATE(3826), 1, + STATE(3946), 1, aux_sym_shebang_repeat1, - STATE(3872), 1, - sym_expr_parenthesized, - STATE(4176), 1, + STATE(4048), 1, sym_val_number, - STATE(4264), 1, + STATE(4388), 1, sym__binary_predicate_parenthesized, - STATE(4277), 1, + STATE(4427), 1, sym__predicate, - ACTIONS(215), 2, + ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4437), 2, + STATE(4398), 2, sym_expr_unary, sym_val_bool, - STATE(5058), 2, + STATE(4677), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(229), 5, + ACTIONS(225), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [146495] = 25, - ACTIONS(227), 1, + [146806] = 25, + ACTIONS(223), 1, aux_sym__val_number_token5, - ACTIONS(251), 1, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(383), 1, + ACTIONS(377), 1, anon_sym_DASH2, - ACTIONS(3416), 1, + ACTIONS(3438), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, + ACTIONS(3440), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3470), 1, + ACTIONS(3518), 1, aux_sym_expr_unary_token1, - ACTIONS(6695), 1, + ACTIONS(6837), 1, sym_identifier, - ACTIONS(6699), 1, + ACTIONS(6839), 1, + sym__newline, + ACTIONS(6841), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6843), 1, anon_sym_DOLLAR, - ACTIONS(6703), 1, - anon_sym_LBRACE, - ACTIONS(6705), 1, + ACTIONS(6847), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6849), 1, aux_sym__val_number_decimal_token2, - STATE(1667), 1, - sym__val_number, - STATE(1700), 1, + STATE(1532), 1, sym__val_number_decimal, - STATE(2143), 1, + STATE(1536), 1, + sym__val_number, + STATE(2002), 1, sym__expr_unary_minus, - STATE(3823), 1, - sym_comment, - STATE(3872), 1, + STATE(3850), 1, sym_expr_parenthesized, - STATE(4176), 1, + STATE(3858), 1, + sym_comment, + STATE(3946), 1, + aux_sym_shebang_repeat1, + STATE(4048), 1, sym_val_number, - STATE(4389), 1, - sym__binary_predicate, - STATE(4392), 1, + STATE(4254), 1, sym__predicate, - STATE(4795), 1, - sym_val_closure, - ACTIONS(215), 2, + STATE(4460), 1, + sym__binary_predicate_parenthesized, + ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4437), 2, + STATE(4398), 2, sym_expr_unary, sym_val_bool, - STATE(5058), 2, + STATE(4677), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(229), 5, + ACTIONS(225), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [146578] = 25, - ACTIONS(227), 1, + [146889] = 25, + ACTIONS(223), 1, aux_sym__val_number_token5, - ACTIONS(251), 1, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(383), 1, + ACTIONS(377), 1, anon_sym_DASH2, - ACTIONS(3416), 1, + ACTIONS(3438), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, + ACTIONS(3440), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3470), 1, + ACTIONS(3518), 1, aux_sym_expr_unary_token1, - ACTIONS(6695), 1, + ACTIONS(6837), 1, sym_identifier, - ACTIONS(6697), 1, + ACTIONS(6839), 1, sym__newline, - ACTIONS(6699), 1, + ACTIONS(6841), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6843), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6847), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6849), 1, aux_sym__val_number_decimal_token2, - STATE(1667), 1, - sym__val_number, - STATE(1700), 1, + STATE(1532), 1, sym__val_number_decimal, - STATE(2143), 1, + STATE(1536), 1, + sym__val_number, + STATE(2002), 1, sym__expr_unary_minus, - STATE(3824), 1, - sym_comment, - STATE(3872), 1, - sym_expr_parenthesized, - STATE(3952), 1, + STATE(3840), 1, aux_sym_shebang_repeat1, - STATE(4176), 1, + STATE(3850), 1, + sym_expr_parenthesized, + STATE(3859), 1, + sym_comment, + STATE(4048), 1, sym_val_number, - STATE(4315), 1, + STATE(4314), 1, sym__binary_predicate_parenthesized, - STATE(4318), 1, + STATE(4315), 1, sym__predicate, - ACTIONS(215), 2, + ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4437), 2, + STATE(4398), 2, sym_expr_unary, sym_val_bool, - STATE(5058), 2, + STATE(4677), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(229), 5, + ACTIONS(225), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [146661] = 25, - ACTIONS(227), 1, + [146972] = 25, + ACTIONS(223), 1, aux_sym__val_number_token5, - ACTIONS(251), 1, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(383), 1, + ACTIONS(377), 1, anon_sym_DASH2, - ACTIONS(3416), 1, + ACTIONS(3438), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, + ACTIONS(3440), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3470), 1, + ACTIONS(3518), 1, aux_sym_expr_unary_token1, - ACTIONS(6695), 1, + ACTIONS(6837), 1, sym_identifier, - ACTIONS(6697), 1, + ACTIONS(6839), 1, sym__newline, - ACTIONS(6699), 1, + ACTIONS(6841), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6843), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6847), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6849), 1, aux_sym__val_number_decimal_token2, - STATE(1667), 1, - sym__val_number, - STATE(1700), 1, + STATE(1532), 1, sym__val_number_decimal, - STATE(2143), 1, + STATE(1536), 1, + sym__val_number, + STATE(2002), 1, sym__expr_unary_minus, - STATE(3825), 1, - sym_comment, - STATE(3872), 1, + STATE(3850), 1, sym_expr_parenthesized, - STATE(3952), 1, + STATE(3860), 1, + sym_comment, + STATE(3863), 1, aux_sym_shebang_repeat1, - STATE(4176), 1, + STATE(4048), 1, sym_val_number, - STATE(4322), 1, + STATE(4318), 1, sym__binary_predicate_parenthesized, - STATE(4323), 1, + STATE(4319), 1, sym__predicate, - ACTIONS(215), 2, + ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4437), 2, + STATE(4398), 2, sym_expr_unary, sym_val_bool, - STATE(5058), 2, + STATE(4677), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(229), 5, + ACTIONS(225), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [146744] = 25, - ACTIONS(227), 1, + [147055] = 25, + ACTIONS(223), 1, aux_sym__val_number_token5, - ACTIONS(251), 1, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(383), 1, + ACTIONS(377), 1, anon_sym_DASH2, - ACTIONS(3416), 1, + ACTIONS(3438), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, + ACTIONS(3440), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3470), 1, + ACTIONS(3518), 1, aux_sym_expr_unary_token1, - ACTIONS(6695), 1, + ACTIONS(6837), 1, sym_identifier, - ACTIONS(6697), 1, + ACTIONS(6839), 1, sym__newline, - ACTIONS(6699), 1, + ACTIONS(6841), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6843), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6847), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6849), 1, aux_sym__val_number_decimal_token2, - STATE(1667), 1, - sym__val_number, - STATE(1700), 1, + STATE(1532), 1, sym__val_number_decimal, - STATE(2143), 1, + STATE(1536), 1, + sym__val_number, + STATE(2002), 1, sym__expr_unary_minus, - STATE(3826), 1, - sym_comment, - STATE(3872), 1, - sym_expr_parenthesized, - STATE(3952), 1, + STATE(3841), 1, aux_sym_shebang_repeat1, - STATE(4176), 1, + STATE(3850), 1, + sym_expr_parenthesized, + STATE(3861), 1, + sym_comment, + STATE(4048), 1, sym_val_number, - STATE(4331), 1, + STATE(4320), 1, sym__binary_predicate_parenthesized, - STATE(4333), 1, + STATE(4326), 1, sym__predicate, - ACTIONS(215), 2, + ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4437), 2, + STATE(4398), 2, sym_expr_unary, sym_val_bool, - STATE(5058), 2, + STATE(4677), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(229), 5, + ACTIONS(225), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [146827] = 25, - ACTIONS(227), 1, + [147138] = 25, + ACTIONS(223), 1, aux_sym__val_number_token5, - ACTIONS(251), 1, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(383), 1, + ACTIONS(377), 1, anon_sym_DASH2, - ACTIONS(3416), 1, + ACTIONS(3438), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, + ACTIONS(3440), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3470), 1, + ACTIONS(3518), 1, aux_sym_expr_unary_token1, - ACTIONS(6695), 1, + ACTIONS(6837), 1, sym_identifier, - ACTIONS(6697), 1, + ACTIONS(6839), 1, sym__newline, - ACTIONS(6699), 1, + ACTIONS(6841), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6843), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6847), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6849), 1, aux_sym__val_number_decimal_token2, - STATE(1667), 1, - sym__val_number, - STATE(1700), 1, + STATE(1532), 1, sym__val_number_decimal, - STATE(2143), 1, + STATE(1536), 1, + sym__val_number, + STATE(2002), 1, sym__expr_unary_minus, - STATE(3827), 1, - sym_comment, - STATE(3872), 1, - sym_expr_parenthesized, - STATE(3952), 1, + STATE(3848), 1, aux_sym_shebang_repeat1, - STATE(4176), 1, + STATE(3850), 1, + sym_expr_parenthesized, + STATE(3862), 1, + sym_comment, + STATE(4048), 1, sym_val_number, - STATE(4386), 1, + STATE(4330), 1, sym__binary_predicate_parenthesized, - STATE(4398), 1, + STATE(4331), 1, sym__predicate, - ACTIONS(215), 2, + ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4437), 2, + STATE(4398), 2, sym_expr_unary, sym_val_bool, - STATE(5058), 2, + STATE(4677), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(229), 5, + ACTIONS(225), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [146910] = 25, - ACTIONS(227), 1, + [147221] = 25, + ACTIONS(223), 1, aux_sym__val_number_token5, - ACTIONS(251), 1, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(383), 1, + ACTIONS(377), 1, anon_sym_DASH2, - ACTIONS(3416), 1, + ACTIONS(3438), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, + ACTIONS(3440), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3470), 1, + ACTIONS(3518), 1, aux_sym_expr_unary_token1, - ACTIONS(6695), 1, + ACTIONS(6837), 1, sym_identifier, - ACTIONS(6697), 1, + ACTIONS(6839), 1, sym__newline, - ACTIONS(6699), 1, + ACTIONS(6841), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6843), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6847), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6849), 1, aux_sym__val_number_decimal_token2, - STATE(1667), 1, - sym__val_number, - STATE(1700), 1, + STATE(1532), 1, sym__val_number_decimal, - STATE(2143), 1, + STATE(1536), 1, + sym__val_number, + STATE(2002), 1, sym__expr_unary_minus, - STATE(3816), 1, - aux_sym_shebang_repeat1, - STATE(3828), 1, - sym_comment, - STATE(3872), 1, + STATE(3850), 1, sym_expr_parenthesized, - STATE(4176), 1, + STATE(3863), 1, + sym_comment, + STATE(3946), 1, + aux_sym_shebang_repeat1, + STATE(4048), 1, sym_val_number, - STATE(4330), 1, - sym__predicate, - STATE(4413), 1, + STATE(4403), 1, sym__binary_predicate_parenthesized, - ACTIONS(215), 2, + STATE(4404), 1, + sym__predicate, + ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4437), 2, + STATE(4398), 2, sym_expr_unary, sym_val_bool, - STATE(5058), 2, + STATE(4677), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(229), 5, + ACTIONS(225), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [146993] = 13, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6885), 1, - anon_sym_DASH2, - ACTIONS(6899), 1, - anon_sym_PLUS2, - STATE(3829), 1, - sym_comment, - ACTIONS(6883), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6889), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6893), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6895), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6897), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6901), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6887), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6891), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5257), 7, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [147051] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6907), 1, - aux_sym_cmd_identifier_token41, - STATE(3830), 1, - sym_comment, - ACTIONS(6905), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6903), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - 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, - [147093] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3831), 1, - sym_comment, - STATE(4980), 1, - sym_redirection, - ACTIONS(6909), 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(6911), 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(6873), 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, - [147137] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3202), 1, - aux_sym_cmd_identifier_token41, - STATE(3832), 1, - sym_comment, - ACTIONS(3200), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3198), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - 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, - [147179] = 10, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6885), 1, - anon_sym_DASH2, - ACTIONS(6899), 1, - anon_sym_PLUS2, - STATE(3833), 1, - sym_comment, - ACTIONS(5259), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6889), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6895), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6897), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6901), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5257), 17, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [147231] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3834), 1, - sym_comment, - ACTIONS(6889), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6895), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6897), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5259), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5257), 20, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [147277] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6885), 1, - anon_sym_DASH2, - ACTIONS(6899), 1, - anon_sym_PLUS2, - STATE(3835), 1, - sym_comment, - ACTIONS(6883), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6889), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6895), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6897), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6901), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6891), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5257), 13, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [147331] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3836), 1, - sym_comment, - ACTIONS(6895), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5259), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5257), 22, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [147373] = 16, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6885), 1, - anon_sym_DASH2, - ACTIONS(6899), 1, - anon_sym_PLUS2, - ACTIONS(6913), 1, - anon_sym_bit_DASHand2, - ACTIONS(6915), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6917), 1, - anon_sym_bit_DASHor2, - STATE(3837), 1, - sym_comment, - ACTIONS(6883), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6889), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6893), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6895), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6897), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6901), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5257), 4, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(6887), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6891), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [147437] = 17, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6885), 1, - anon_sym_DASH2, - ACTIONS(6899), 1, - anon_sym_PLUS2, - ACTIONS(6913), 1, - anon_sym_bit_DASHand2, - ACTIONS(6915), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6917), 1, - anon_sym_bit_DASHor2, - ACTIONS(6919), 1, - anon_sym_and2, - STATE(3838), 1, - sym_comment, - ACTIONS(6883), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6889), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6893), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6895), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6897), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6901), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5257), 3, - anon_sym_EQ_GT, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(6887), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6891), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [147503] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6885), 1, - anon_sym_DASH2, - ACTIONS(6899), 1, - anon_sym_PLUS2, - ACTIONS(6913), 1, - anon_sym_bit_DASHand2, - ACTIONS(6915), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6917), 1, - anon_sym_bit_DASHor2, - ACTIONS(6919), 1, - anon_sym_and2, - ACTIONS(6921), 1, - anon_sym_xor2, - STATE(3839), 1, - sym_comment, - ACTIONS(5257), 2, - anon_sym_EQ_GT, - anon_sym_or2, - ACTIONS(6883), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6889), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6893), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6895), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6897), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6901), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6887), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6891), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [147571] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6885), 1, - anon_sym_DASH2, - ACTIONS(6899), 1, - anon_sym_PLUS2, - STATE(3840), 1, - sym_comment, - ACTIONS(6883), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6889), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6895), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6897), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6901), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6887), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6891), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5257), 9, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [147627] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6885), 1, - anon_sym_DASH2, - ACTIONS(6899), 1, - anon_sym_PLUS2, - STATE(3841), 1, - sym_comment, - ACTIONS(5259), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6889), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6895), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6897), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5257), 19, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [147677] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6885), 1, - anon_sym_DASH2, - ACTIONS(6899), 1, - anon_sym_PLUS2, - ACTIONS(6913), 1, - anon_sym_bit_DASHand2, - STATE(3842), 1, - sym_comment, - ACTIONS(6883), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6889), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6893), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6895), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6897), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6901), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6887), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6891), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5257), 6, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [147737] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6885), 1, - anon_sym_DASH2, - ACTIONS(6899), 1, - anon_sym_PLUS2, - ACTIONS(6913), 1, - anon_sym_bit_DASHand2, - ACTIONS(6915), 1, - anon_sym_bit_DASHxor2, - STATE(3843), 1, + [147304] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3864), 1, sym_comment, - ACTIONS(6883), 2, + ACTIONS(6977), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6889), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6893), 2, + ACTIONS(6983), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6895), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6897), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6901), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6887), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6891), 4, + ACTIONS(6981), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5257), 5, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [147799] = 10, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6923), 1, - anon_sym_DASH2, - ACTIONS(6931), 1, - anon_sym_PLUS2, - STATE(3844), 1, - sym_comment, - ACTIONS(5259), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6925), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6927), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6929), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6933), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5257), 17, + ACTIONS(6979), 6, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [147851] = 6, - ACTIONS(251), 1, + ACTIONS(6965), 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_and2, + anon_sym_xor2, + anon_sym_or2, + [147350] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3845), 1, + STATE(3865), 1, sym_comment, - STATE(4994), 1, + STATE(5127), 1, sym_redirection, - ACTIONS(6865), 8, + ACTIONS(6955), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -367549,7 +370957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(6867), 8, + ACTIONS(6957), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -367558,7 +370966,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(6935), 12, + ACTIONS(6985), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367571,614 +370979,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [147895] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3846), 1, - sym_comment, - ACTIONS(6925), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6927), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6929), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5259), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5257), 20, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [147941] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3196), 1, - aux_sym_cmd_identifier_token41, - STATE(3847), 1, - sym_comment, - ACTIONS(3194), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3192), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - 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, - [147983] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6923), 1, - anon_sym_DASH2, - ACTIONS(6931), 1, - anon_sym_PLUS2, - STATE(3848), 1, - sym_comment, - ACTIONS(6925), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6927), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6929), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6933), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6937), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6939), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5257), 13, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [148037] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3849), 1, - sym_comment, - ACTIONS(6927), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5259), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5257), 22, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [148079] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3190), 1, - aux_sym_cmd_identifier_token41, - STATE(3850), 1, - sym_comment, - ACTIONS(3188), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3186), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - 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, - [148121] = 16, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6923), 1, - anon_sym_DASH2, - ACTIONS(6931), 1, - anon_sym_PLUS2, - ACTIONS(6945), 1, - anon_sym_bit_DASHand2, - ACTIONS(6947), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6949), 1, - anon_sym_bit_DASHor2, - STATE(3851), 1, - sym_comment, - ACTIONS(6925), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6927), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6929), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6933), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6937), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6943), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5257), 4, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(6939), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6941), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - [148185] = 17, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6923), 1, - anon_sym_DASH2, - ACTIONS(6931), 1, - anon_sym_PLUS2, - ACTIONS(6945), 1, - anon_sym_bit_DASHand2, - ACTIONS(6947), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6949), 1, - anon_sym_bit_DASHor2, - ACTIONS(6951), 1, - anon_sym_and2, - STATE(3852), 1, - sym_comment, - ACTIONS(6925), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6927), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6929), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6933), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6937), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6943), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5257), 3, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(6939), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6941), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - [148251] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6923), 1, - anon_sym_DASH2, - ACTIONS(6931), 1, - anon_sym_PLUS2, - ACTIONS(6945), 1, - anon_sym_bit_DASHand2, - ACTIONS(6947), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6949), 1, - anon_sym_bit_DASHor2, - ACTIONS(6951), 1, - anon_sym_and2, - ACTIONS(6953), 1, - anon_sym_xor2, - STATE(3853), 1, - sym_comment, - ACTIONS(5257), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(6925), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6927), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6929), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6933), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6937), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6943), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6939), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6941), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - [148319] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6959), 1, - aux_sym_cmd_identifier_token41, - STATE(3854), 1, - sym_comment, - ACTIONS(6957), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6955), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - 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, - [148361] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6923), 1, - anon_sym_DASH2, - ACTIONS(6931), 1, - anon_sym_PLUS2, - STATE(3855), 1, - sym_comment, - ACTIONS(6925), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6927), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6929), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6933), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6937), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6939), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6941), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5257), 9, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [148417] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6923), 1, - anon_sym_DASH2, - ACTIONS(6931), 1, - anon_sym_PLUS2, - STATE(3856), 1, - sym_comment, - ACTIONS(5259), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6925), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6927), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6929), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5257), 19, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [148467] = 13, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6923), 1, - anon_sym_DASH2, - ACTIONS(6931), 1, - anon_sym_PLUS2, - STATE(3857), 1, - sym_comment, - ACTIONS(6925), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6927), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6929), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6933), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6937), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6943), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6939), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6941), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5257), 7, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [148525] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6923), 1, - anon_sym_DASH2, - ACTIONS(6931), 1, - anon_sym_PLUS2, - ACTIONS(6945), 1, - anon_sym_bit_DASHand2, - STATE(3858), 1, - sym_comment, - ACTIONS(6925), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6927), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6929), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6933), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6937), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6943), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6939), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6941), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5257), 6, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [148585] = 15, - ACTIONS(251), 1, + [147394] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6923), 1, - anon_sym_DASH2, - ACTIONS(6931), 1, - anon_sym_PLUS2, - ACTIONS(6945), 1, - anon_sym_bit_DASHand2, - ACTIONS(6947), 1, - anon_sym_bit_DASHxor2, - STATE(3859), 1, + STATE(3866), 1, sym_comment, - ACTIONS(6925), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6927), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6929), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6933), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6937), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6943), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6939), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6941), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5257), 5, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [148647] = 6, - ACTIONS(251), 1, + STATE(5009), 1, + sym_redirection, + ACTIONS(6987), 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(6989), 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(6953), 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, + [147438] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3860), 1, + STATE(3867), 1, sym_comment, - STATE(5006), 1, + STATE(5095), 1, sym_redirection, - ACTIONS(6865), 8, + ACTIONS(6955), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -368187,7 +371033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(6867), 8, + ACTIONS(6957), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -368196,7 +371042,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(6961), 12, + ACTIONS(6991), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368209,88 +371055,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [148691] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6967), 1, - aux_sym_cmd_identifier_token41, - STATE(3861), 1, - sym_comment, - ACTIONS(6965), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6963), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - 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, - [148733] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6973), 1, - aux_sym_cmd_identifier_token41, - STATE(3862), 1, - sym_comment, - ACTIONS(6971), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6969), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - 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, - [148775] = 6, - ACTIONS(251), 1, + [147482] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3863), 1, + STATE(3868), 1, sym_comment, - STATE(4992), 1, + STATE(5051), 1, sym_redirection, - ACTIONS(6909), 8, + ACTIONS(6987), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -368299,7 +371071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(6911), 8, + ACTIONS(6989), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -368308,7 +371080,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(6863), 12, + ACTIONS(6961), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -368321,1084 +371093,664 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [148819] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6979), 1, - aux_sym_cmd_identifier_token41, - STATE(3864), 1, - sym_comment, - ACTIONS(6977), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6975), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - 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, - [148861] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6923), 1, - anon_sym_DASH2, - ACTIONS(6931), 1, - anon_sym_PLUS2, - ACTIONS(6945), 1, - anon_sym_bit_DASHand2, - ACTIONS(6947), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6949), 1, - anon_sym_bit_DASHor2, - ACTIONS(6951), 1, - anon_sym_and2, - ACTIONS(6953), 1, - anon_sym_xor2, - ACTIONS(6981), 1, - anon_sym_or2, - STATE(3865), 1, - sym_comment, - ACTIONS(6925), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6927), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6929), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6933), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6937), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6943), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6939), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6941), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - [148928] = 23, - ACTIONS(45), 1, - anon_sym_DASH2, - ACTIONS(227), 1, + [147526] = 23, + ACTIONS(223), 1, aux_sym__val_number_token5, - ACTIONS(251), 1, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3416), 1, + ACTIONS(377), 1, + anon_sym_DASH2, + ACTIONS(3438), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, + ACTIONS(3440), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3514), 1, + ACTIONS(3518), 1, aux_sym_expr_unary_token1, - ACTIONS(5873), 1, - anon_sym_LPAREN, - ACTIONS(6695), 1, + ACTIONS(6837), 1, sym_identifier, - ACTIONS(6701), 1, + ACTIONS(6841), 1, + anon_sym_LPAREN, + ACTIONS(6843), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6847), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6849), 1, aux_sym__val_number_decimal_token2, - STATE(1667), 1, - sym__val_number, - STATE(1700), 1, + STATE(1532), 1, sym__val_number_decimal, - STATE(2458), 1, + STATE(1536), 1, + sym__val_number, + STATE(2002), 1, sym__expr_unary_minus, - STATE(3866), 1, - sym_comment, - STATE(3886), 1, + STATE(3850), 1, sym_expr_parenthesized, - STATE(4176), 1, + STATE(3869), 1, + sym_comment, + STATE(4048), 1, sym_val_number, - STATE(4493), 1, + STATE(4382), 1, sym__binary_predicate, - STATE(4494), 1, + STATE(4383), 1, sym__predicate, - ACTIONS(89), 2, + ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4530), 2, + STATE(4398), 2, sym_expr_unary, sym_val_bool, - STATE(5119), 2, + STATE(4677), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(229), 5, + ACTIONS(225), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [149005] = 23, - ACTIONS(45), 1, - anon_sym_DASH2, - ACTIONS(227), 1, + [147603] = 23, + ACTIONS(223), 1, aux_sym__val_number_token5, - ACTIONS(251), 1, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3416), 1, + ACTIONS(377), 1, + anon_sym_DASH2, + ACTIONS(3438), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, + ACTIONS(3440), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3514), 1, + ACTIONS(3518), 1, aux_sym_expr_unary_token1, - ACTIONS(5873), 1, - anon_sym_LPAREN, - ACTIONS(6695), 1, + ACTIONS(6837), 1, sym_identifier, - ACTIONS(6701), 1, + ACTIONS(6841), 1, + anon_sym_LPAREN, + ACTIONS(6843), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6847), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6849), 1, aux_sym__val_number_decimal_token2, - STATE(1667), 1, - sym__val_number, - STATE(1700), 1, + STATE(1532), 1, sym__val_number_decimal, - STATE(2458), 1, + STATE(1536), 1, + sym__val_number, + STATE(2002), 1, sym__expr_unary_minus, - STATE(3867), 1, - sym_comment, - STATE(3886), 1, + STATE(3850), 1, sym_expr_parenthesized, - STATE(4176), 1, + STATE(3870), 1, + sym_comment, + STATE(4048), 1, sym_val_number, - STATE(4495), 1, + STATE(4375), 1, sym__binary_predicate, - STATE(4496), 1, + STATE(4381), 1, sym__predicate, - ACTIONS(89), 2, + ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4530), 2, + STATE(4398), 2, sym_expr_unary, sym_val_bool, - STATE(5119), 2, + STATE(4677), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(229), 5, + ACTIONS(225), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [149082] = 23, + [147680] = 23, ACTIONS(45), 1, anon_sym_DASH2, - ACTIONS(227), 1, + ACTIONS(223), 1, aux_sym__val_number_token5, - ACTIONS(251), 1, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3416), 1, + ACTIONS(3438), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, + ACTIONS(3440), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3514), 1, + ACTIONS(3486), 1, aux_sym_expr_unary_token1, - ACTIONS(5873), 1, + ACTIONS(5870), 1, anon_sym_LPAREN, - ACTIONS(6695), 1, + ACTIONS(6837), 1, sym_identifier, - ACTIONS(6701), 1, + ACTIONS(6843), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6847), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6849), 1, aux_sym__val_number_decimal_token2, - STATE(1667), 1, - sym__val_number, - STATE(1700), 1, + STATE(1532), 1, sym__val_number_decimal, - STATE(2458), 1, + STATE(1536), 1, + sym__val_number, + STATE(2502), 1, sym__expr_unary_minus, - STATE(3868), 1, - sym_comment, - STATE(3886), 1, + STATE(3864), 1, sym_expr_parenthesized, - STATE(4176), 1, + STATE(3871), 1, + sym_comment, + STATE(4048), 1, sym_val_number, - STATE(4500), 1, + STATE(4516), 1, sym__binary_predicate, - STATE(4501), 1, + STATE(4517), 1, sym__predicate, - ACTIONS(89), 2, + ACTIONS(87), 2, anon_sym_true, anon_sym_false, - STATE(4530), 2, + STATE(4519), 2, sym_expr_unary, sym_val_bool, - STATE(5119), 2, + STATE(4556), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(229), 5, + ACTIONS(225), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [149159] = 23, + [147757] = 23, ACTIONS(45), 1, anon_sym_DASH2, - ACTIONS(227), 1, + ACTIONS(223), 1, aux_sym__val_number_token5, - ACTIONS(251), 1, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3416), 1, + ACTIONS(3438), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, + ACTIONS(3440), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3514), 1, + ACTIONS(3486), 1, aux_sym_expr_unary_token1, - ACTIONS(5873), 1, + ACTIONS(5870), 1, anon_sym_LPAREN, - ACTIONS(6695), 1, + ACTIONS(6837), 1, sym_identifier, - ACTIONS(6701), 1, + ACTIONS(6843), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6847), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6849), 1, aux_sym__val_number_decimal_token2, - STATE(1667), 1, - sym__val_number, - STATE(1700), 1, + STATE(1532), 1, sym__val_number_decimal, - STATE(2458), 1, + STATE(1536), 1, + sym__val_number, + STATE(2502), 1, sym__expr_unary_minus, - STATE(3869), 1, - sym_comment, - STATE(3886), 1, + STATE(3864), 1, sym_expr_parenthesized, - STATE(4176), 1, + STATE(3872), 1, + sym_comment, + STATE(4048), 1, sym_val_number, - STATE(4473), 1, + STATE(4503), 1, sym__binary_predicate, - STATE(4497), 1, + STATE(4507), 1, sym__predicate, - ACTIONS(89), 2, + ACTIONS(87), 2, anon_sym_true, anon_sym_false, - STATE(4530), 2, + STATE(4519), 2, sym_expr_unary, sym_val_bool, - STATE(5119), 2, + STATE(4556), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(229), 5, + ACTIONS(225), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [149236] = 23, - ACTIONS(45), 1, - anon_sym_DASH2, - ACTIONS(227), 1, + [147834] = 23, + ACTIONS(223), 1, aux_sym__val_number_token5, - ACTIONS(251), 1, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3416), 1, + ACTIONS(377), 1, + anon_sym_DASH2, + ACTIONS(3438), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, + ACTIONS(3440), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3514), 1, + ACTIONS(3518), 1, aux_sym_expr_unary_token1, - ACTIONS(5873), 1, - anon_sym_LPAREN, - ACTIONS(6695), 1, + ACTIONS(6837), 1, sym_identifier, - ACTIONS(6701), 1, + ACTIONS(6841), 1, + anon_sym_LPAREN, + ACTIONS(6843), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6847), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6849), 1, aux_sym__val_number_decimal_token2, - STATE(1667), 1, - sym__val_number, - STATE(1700), 1, + STATE(1532), 1, sym__val_number_decimal, - STATE(2458), 1, + STATE(1536), 1, + sym__val_number, + STATE(2002), 1, sym__expr_unary_minus, - STATE(3870), 1, - sym_comment, - STATE(3886), 1, + STATE(3850), 1, sym_expr_parenthesized, - STATE(4176), 1, + STATE(3873), 1, + sym_comment, + STATE(4048), 1, sym_val_number, - STATE(4498), 1, + STATE(4343), 1, sym__binary_predicate, - STATE(4499), 1, + STATE(4344), 1, sym__predicate, - ACTIONS(89), 2, + ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4530), 2, + STATE(4398), 2, sym_expr_unary, sym_val_bool, - STATE(5119), 2, + STATE(4677), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(229), 5, + ACTIONS(225), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [149313] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3871), 1, - sym_comment, - ACTIONS(1000), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1002), 26, - 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_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [149352] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3872), 1, - sym_comment, - ACTIONS(6985), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6991), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6987), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6989), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6983), 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_and2, - anon_sym_xor2, - anon_sym_or2, - [149397] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6885), 1, - anon_sym_DASH2, - ACTIONS(6899), 1, - anon_sym_PLUS2, - ACTIONS(6913), 1, - anon_sym_bit_DASHand2, - ACTIONS(6915), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6917), 1, - anon_sym_bit_DASHor2, - ACTIONS(6919), 1, - anon_sym_and2, - ACTIONS(6921), 1, - anon_sym_xor2, - ACTIONS(6993), 1, - anon_sym_or2, - STATE(3873), 1, - sym_comment, - ACTIONS(6883), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6889), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6893), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6895), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6897), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6901), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6887), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6891), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [149464] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5521), 1, - anon_sym_DASH2, - ACTIONS(5533), 1, - anon_sym_PLUS2, - ACTIONS(5553), 1, - anon_sym_bit_DASHand2, - ACTIONS(5567), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5581), 1, - anon_sym_bit_DASHor2, - ACTIONS(5583), 1, - anon_sym_and2, - ACTIONS(5585), 1, - anon_sym_xor2, - ACTIONS(6995), 1, - anon_sym_or2, - STATE(3874), 1, - sym_comment, - ACTIONS(5519), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5525), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5529), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5531), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5535), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5551), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5523), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5527), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [149531] = 23, - ACTIONS(227), 1, + [147911] = 23, + ACTIONS(223), 1, aux_sym__val_number_token5, - ACTIONS(251), 1, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(383), 1, + ACTIONS(377), 1, anon_sym_DASH2, - ACTIONS(3416), 1, + ACTIONS(3438), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, + ACTIONS(3440), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3470), 1, + ACTIONS(3518), 1, aux_sym_expr_unary_token1, - ACTIONS(6695), 1, + ACTIONS(6837), 1, sym_identifier, - ACTIONS(6699), 1, + ACTIONS(6841), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6843), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6847), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6849), 1, aux_sym__val_number_decimal_token2, - STATE(1667), 1, - sym__val_number, - STATE(1700), 1, + STATE(1532), 1, sym__val_number_decimal, - STATE(2143), 1, + STATE(1536), 1, + sym__val_number, + STATE(2002), 1, sym__expr_unary_minus, - STATE(3872), 1, + STATE(3850), 1, sym_expr_parenthesized, - STATE(3875), 1, + STATE(3874), 1, sym_comment, - STATE(4176), 1, + STATE(4048), 1, sym_val_number, - STATE(4275), 1, - sym__predicate, - STATE(4430), 1, + STATE(4358), 1, sym__binary_predicate, - ACTIONS(215), 2, + STATE(4360), 1, + sym__predicate, + ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4437), 2, + STATE(4398), 2, sym_expr_unary, sym_val_bool, - STATE(5058), 2, + STATE(4677), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(229), 5, + ACTIONS(225), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [149608] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6434), 1, - anon_sym_DASH2, - ACTIONS(6442), 1, - anon_sym_PLUS2, - ACTIONS(6454), 1, - anon_sym_bit_DASHand2, - ACTIONS(6456), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6458), 1, - anon_sym_bit_DASHor2, - ACTIONS(6460), 1, - anon_sym_and2, - ACTIONS(6462), 1, - anon_sym_xor2, - ACTIONS(6997), 1, - anon_sym_or2, - STATE(3876), 1, - sym_comment, - ACTIONS(6436), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6438), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6440), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6444), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6446), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6452), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6448), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6450), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - [149675] = 23, - ACTIONS(227), 1, + [147988] = 23, + ACTIONS(223), 1, aux_sym__val_number_token5, - ACTIONS(251), 1, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(383), 1, + ACTIONS(377), 1, anon_sym_DASH2, - ACTIONS(3416), 1, + ACTIONS(3438), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, + ACTIONS(3440), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3470), 1, + ACTIONS(3518), 1, aux_sym_expr_unary_token1, - ACTIONS(6695), 1, + ACTIONS(6837), 1, sym_identifier, - ACTIONS(6699), 1, + ACTIONS(6841), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6843), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6847), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6849), 1, aux_sym__val_number_decimal_token2, - STATE(1667), 1, - sym__val_number, - STATE(1700), 1, + STATE(1532), 1, sym__val_number_decimal, - STATE(2143), 1, + STATE(1536), 1, + sym__val_number, + STATE(2002), 1, sym__expr_unary_minus, - STATE(3872), 1, + STATE(3850), 1, sym_expr_parenthesized, - STATE(3877), 1, + STATE(3875), 1, sym_comment, - STATE(4176), 1, + STATE(4048), 1, sym_val_number, - STATE(4391), 1, + STATE(4364), 1, sym__binary_predicate, - STATE(4396), 1, + STATE(4365), 1, sym__predicate, - ACTIONS(215), 2, + ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4437), 2, + STATE(4398), 2, sym_expr_unary, sym_val_bool, - STATE(5058), 2, + STATE(4677), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(229), 5, + ACTIONS(225), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [149752] = 23, - ACTIONS(227), 1, + [148065] = 23, + ACTIONS(45), 1, + anon_sym_DASH2, + ACTIONS(223), 1, aux_sym__val_number_token5, - ACTIONS(251), 1, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(383), 1, - anon_sym_DASH2, - ACTIONS(3416), 1, + ACTIONS(3438), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, + ACTIONS(3440), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3470), 1, + ACTIONS(3486), 1, aux_sym_expr_unary_token1, - ACTIONS(6695), 1, - sym_identifier, - ACTIONS(6699), 1, + ACTIONS(5870), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6837), 1, + sym_identifier, + ACTIONS(6843), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6847), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6849), 1, aux_sym__val_number_decimal_token2, - STATE(1667), 1, - sym__val_number, - STATE(1700), 1, + STATE(1532), 1, sym__val_number_decimal, - STATE(2143), 1, + STATE(1536), 1, + sym__val_number, + STATE(2502), 1, sym__expr_unary_minus, - STATE(3872), 1, + STATE(3864), 1, sym_expr_parenthesized, - STATE(3878), 1, + STATE(3876), 1, sym_comment, - STATE(4176), 1, + STATE(4048), 1, sym_val_number, - STATE(4266), 1, + STATE(4518), 1, sym__binary_predicate, - STATE(4272), 1, + STATE(4520), 1, sym__predicate, - ACTIONS(215), 2, + ACTIONS(87), 2, anon_sym_true, anon_sym_false, - STATE(4437), 2, + STATE(4519), 2, sym_expr_unary, sym_val_bool, - STATE(5058), 2, + STATE(4556), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(229), 5, + ACTIONS(225), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [149829] = 23, - ACTIONS(227), 1, + [148142] = 23, + ACTIONS(45), 1, + anon_sym_DASH2, + ACTIONS(223), 1, aux_sym__val_number_token5, - ACTIONS(251), 1, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(383), 1, - anon_sym_DASH2, - ACTIONS(3416), 1, + ACTIONS(3438), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, + ACTIONS(3440), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3470), 1, + ACTIONS(3486), 1, aux_sym_expr_unary_token1, - ACTIONS(6695), 1, - sym_identifier, - ACTIONS(6699), 1, + ACTIONS(5870), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6837), 1, + sym_identifier, + ACTIONS(6843), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6847), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6849), 1, aux_sym__val_number_decimal_token2, - STATE(1667), 1, - sym__val_number, - STATE(1700), 1, + STATE(1532), 1, sym__val_number_decimal, - STATE(2143), 1, + STATE(1536), 1, + sym__val_number, + STATE(2502), 1, sym__expr_unary_minus, - STATE(3872), 1, + STATE(3864), 1, sym_expr_parenthesized, - STATE(3879), 1, + STATE(3877), 1, sym_comment, - STATE(4176), 1, + STATE(4048), 1, sym_val_number, - STATE(4273), 1, + STATE(4532), 1, sym__binary_predicate, - STATE(4274), 1, + STATE(4534), 1, sym__predicate, - ACTIONS(215), 2, + ACTIONS(87), 2, anon_sym_true, anon_sym_false, - STATE(4437), 2, + STATE(4519), 2, sym_expr_unary, sym_val_bool, - STATE(5058), 2, + STATE(4556), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(229), 5, + ACTIONS(225), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [149906] = 23, - ACTIONS(227), 1, + [148219] = 23, + ACTIONS(45), 1, + anon_sym_DASH2, + ACTIONS(223), 1, aux_sym__val_number_token5, - ACTIONS(251), 1, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(383), 1, - anon_sym_DASH2, - ACTIONS(3416), 1, + ACTIONS(3438), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, + ACTIONS(3440), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3470), 1, + ACTIONS(3486), 1, aux_sym_expr_unary_token1, - ACTIONS(6695), 1, - sym_identifier, - ACTIONS(6699), 1, + ACTIONS(5870), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6837), 1, + sym_identifier, + ACTIONS(6843), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6847), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6849), 1, aux_sym__val_number_decimal_token2, - STATE(1667), 1, - sym__val_number, - STATE(1700), 1, + STATE(1532), 1, sym__val_number_decimal, - STATE(2143), 1, + STATE(1536), 1, + sym__val_number, + STATE(2502), 1, sym__expr_unary_minus, - STATE(3872), 1, + STATE(3864), 1, sym_expr_parenthesized, - STATE(3880), 1, + STATE(3878), 1, sym_comment, - STATE(4176), 1, + STATE(4048), 1, sym_val_number, - STATE(4300), 1, + STATE(4508), 1, sym__binary_predicate, - STATE(4385), 1, + STATE(4514), 1, sym__predicate, - ACTIONS(215), 2, + ACTIONS(87), 2, anon_sym_true, anon_sym_false, - STATE(4437), 2, + STATE(4519), 2, sym_expr_unary, sym_val_bool, - STATE(5058), 2, + STATE(4556), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(229), 5, + ACTIONS(225), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [149983] = 23, - ACTIONS(227), 1, + [148296] = 23, + ACTIONS(45), 1, + anon_sym_DASH2, + ACTIONS(223), 1, aux_sym__val_number_token5, - ACTIONS(251), 1, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(383), 1, - anon_sym_DASH2, - ACTIONS(3416), 1, + ACTIONS(3438), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, + ACTIONS(3440), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3470), 1, + ACTIONS(3486), 1, aux_sym_expr_unary_token1, - ACTIONS(6695), 1, - sym_identifier, - ACTIONS(6699), 1, + ACTIONS(5870), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6837), 1, + sym_identifier, + ACTIONS(6843), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6847), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6849), 1, aux_sym__val_number_decimal_token2, - STATE(1667), 1, - sym__val_number, - STATE(1700), 1, + STATE(1532), 1, sym__val_number_decimal, - STATE(2143), 1, + STATE(1536), 1, + sym__val_number, + STATE(2502), 1, sym__expr_unary_minus, - STATE(3872), 1, + STATE(3864), 1, sym_expr_parenthesized, - STATE(3881), 1, + STATE(3879), 1, sym_comment, - STATE(4176), 1, + STATE(4048), 1, sym_val_number, - STATE(4387), 1, + STATE(4535), 1, sym__binary_predicate, - STATE(4459), 1, + STATE(4536), 1, sym__predicate, - ACTIONS(215), 2, + ACTIONS(87), 2, anon_sym_true, anon_sym_false, - STATE(4437), 2, + STATE(4519), 2, sym_expr_unary, sym_val_bool, - STATE(5058), 2, + STATE(4556), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(229), 5, + ACTIONS(225), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [150060] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6513), 1, - anon_sym_DASH2, - ACTIONS(6521), 1, - anon_sym_PLUS2, - ACTIONS(6533), 1, - anon_sym_bit_DASHand2, - ACTIONS(6535), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6537), 1, - anon_sym_bit_DASHor2, - ACTIONS(6539), 1, - anon_sym_and2, - ACTIONS(6541), 1, - anon_sym_xor2, - ACTIONS(6999), 1, - anon_sym_or2, - STATE(3882), 1, - sym_comment, - ACTIONS(6515), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6517), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6519), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6523), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6525), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6531), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6527), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6529), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - [150127] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5478), 1, - anon_sym_DASH2, - ACTIONS(5486), 1, - anon_sym_PLUS2, - ACTIONS(5498), 1, - anon_sym_bit_DASHand2, - ACTIONS(5500), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5502), 1, - anon_sym_bit_DASHor2, - ACTIONS(5504), 1, - anon_sym_and2, - ACTIONS(5506), 1, - anon_sym_xor2, - ACTIONS(7001), 1, - anon_sym_or2, - STATE(3883), 1, - sym_comment, - ACTIONS(5480), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5482), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5484), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5488), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5490), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5496), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5492), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5494), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - [150194] = 23, - ACTIONS(45), 1, - anon_sym_DASH2, - ACTIONS(227), 1, + [148373] = 23, + ACTIONS(223), 1, aux_sym__val_number_token5, - ACTIONS(251), 1, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3416), 1, + ACTIONS(377), 1, + anon_sym_DASH2, + ACTIONS(3438), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3418), 1, + ACTIONS(3440), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3514), 1, + ACTIONS(3518), 1, aux_sym_expr_unary_token1, - ACTIONS(5873), 1, - anon_sym_LPAREN, - ACTIONS(6695), 1, + ACTIONS(6837), 1, sym_identifier, - ACTIONS(6701), 1, + ACTIONS(6841), 1, + anon_sym_LPAREN, + ACTIONS(6843), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6847), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6849), 1, aux_sym__val_number_decimal_token2, - STATE(1667), 1, - sym__val_number, - STATE(1700), 1, + STATE(1532), 1, sym__val_number_decimal, - STATE(2458), 1, + STATE(1536), 1, + sym__val_number, + STATE(2002), 1, sym__expr_unary_minus, - STATE(3884), 1, - sym_comment, - STATE(3886), 1, + STATE(3850), 1, sym_expr_parenthesized, - STATE(4176), 1, + STATE(3880), 1, + sym_comment, + STATE(4048), 1, sym_val_number, - STATE(4491), 1, + STATE(4366), 1, sym__binary_predicate, - STATE(4492), 1, + STATE(4373), 1, sym__predicate, - ACTIONS(89), 2, + ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4530), 2, + STATE(4398), 2, sym_expr_unary, sym_val_bool, - STATE(5119), 2, + STATE(4677), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(229), 5, + ACTIONS(225), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [150271] = 12, - ACTIONS(251), 1, + [148450] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym_unquoted_token2, - ACTIONS(4580), 1, - anon_sym_LPAREN2, - ACTIONS(6551), 1, - anon_sym_DOLLAR, - ACTIONS(7003), 1, - anon_sym_DOT, - ACTIONS(7007), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7009), 1, - aux_sym__immediate_decimal_token5, - STATE(3885), 1, + STATE(3881), 1, sym_comment, - STATE(3989), 1, - sym__immediate_decimal, - ACTIONS(7005), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4043), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1475), 16, + ACTIONS(986), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(988), 26, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369410,34 +371762,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_COLON, + anon_sym_LBRACK, anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [150325] = 7, - ACTIONS(251), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [148489] = 12, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3886), 1, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(6993), 1, + anon_sym_DOLLAR, + ACTIONS(6995), 1, + anon_sym_DOT, + ACTIONS(6999), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7001), 1, + aux_sym__immediate_decimal_token5, + STATE(3882), 1, sym_comment, - ACTIONS(7011), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7017), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7013), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7015), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6983), 15, - ts_builtin_sym_end, + STATE(3983), 1, + sym__immediate_decimal, + ACTIONS(6997), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4078), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1455), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369449,33 +371813,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_and2, anon_sym_xor2, anon_sym_or2, - [150369] = 11, - ACTIONS(251), 1, + [148543] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1540), 1, + ACTIONS(1562), 1, aux_sym_unquoted_token2, - ACTIONS(4580), 1, + ACTIONS(4207), 1, anon_sym_LPAREN2, - ACTIONS(6551), 1, + ACTIONS(6993), 1, anon_sym_DOLLAR, - ACTIONS(7021), 1, + ACTIONS(7005), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7023), 1, + ACTIONS(7007), 1, aux_sym__immediate_decimal_token5, - STATE(3887), 1, + STATE(3883), 1, sym_comment, - STATE(4129), 1, + STATE(4088), 1, sym__immediate_decimal, - ACTIONS(7019), 2, + ACTIONS(7003), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1998), 2, + STATE(1823), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1538), 16, + ACTIONS(1560), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369492,33 +371858,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [150420] = 12, - ACTIONS(251), 1, + [148594] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym_unquoted_token2, - ACTIONS(4680), 1, + ACTIONS(4207), 1, anon_sym_LPAREN2, - ACTIONS(6586), 1, - anon_sym_DOLLAR, - ACTIONS(7025), 1, - anon_sym_DOT, - ACTIONS(7029), 1, + ACTIONS(4213), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7031), 1, + ACTIONS(4215), 1, aux_sym__immediate_decimal_token5, - STATE(3888), 1, + ACTIONS(4447), 1, + anon_sym_DOT, + ACTIONS(6993), 1, + anon_sym_DOLLAR, + STATE(3884), 1, sym_comment, - STATE(4033), 1, + STATE(4077), 1, sym__immediate_decimal, - ACTIONS(7027), 2, + ACTIONS(4211), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4128), 2, + STATE(4076), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1475), 15, - ts_builtin_sym_end, + ACTIONS(1532), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369530,33 +371893,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_and2, anon_sym_xor2, anon_sym_or2, - [150473] = 11, - ACTIONS(251), 1, + [148645] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4580), 1, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + ACTIONS(4207), 1, anon_sym_LPAREN2, - ACTIONS(4586), 1, + ACTIONS(6993), 1, + anon_sym_DOLLAR, + ACTIONS(7005), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4588), 1, + ACTIONS(7007), 1, aux_sym__immediate_decimal_token5, - ACTIONS(4614), 1, - anon_sym_DOT, - ACTIONS(6551), 1, - anon_sym_DOLLAR, - STATE(3889), 1, + STATE(3885), 1, sym_comment, - STATE(4078), 1, + STATE(4112), 1, sym__immediate_decimal, - ACTIONS(4584), 2, + ACTIONS(7003), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4077), 2, + STATE(1780), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1510), 16, + ACTIONS(1455), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369573,30 +371938,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [150524] = 11, - ACTIONS(251), 1, + [148696] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1477), 1, + ACTIONS(1457), 1, aux_sym_unquoted_token2, - ACTIONS(4580), 1, + ACTIONS(4486), 1, anon_sym_LPAREN2, - ACTIONS(6551), 1, + ACTIONS(7009), 1, anon_sym_DOLLAR, - ACTIONS(7021), 1, + ACTIONS(7011), 1, + anon_sym_DOT, + ACTIONS(7015), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7023), 1, + ACTIONS(7017), 1, aux_sym__immediate_decimal_token5, - STATE(3890), 1, + STATE(3886), 1, sym_comment, - STATE(4086), 1, + STATE(4034), 1, sym__immediate_decimal, - ACTIONS(7019), 2, + ACTIONS(7013), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2078), 2, + STATE(4116), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1475), 16, + ACTIONS(1455), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369608,33 +371976,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_and2, anon_sym_xor2, anon_sym_or2, - [150575] = 10, - ACTIONS(251), 1, + [148749] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4580), 1, + ACTIONS(1562), 1, + aux_sym_unquoted_token2, + ACTIONS(4486), 1, anon_sym_LPAREN2, - ACTIONS(4586), 1, + ACTIONS(7009), 1, + anon_sym_DOLLAR, + ACTIONS(7021), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4588), 1, + ACTIONS(7023), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6551), 1, - anon_sym_DOLLAR, - STATE(1997), 1, - sym__immediate_decimal, - STATE(3891), 1, + STATE(3887), 1, sym_comment, - ACTIONS(4638), 2, + STATE(4182), 1, + sym__immediate_decimal, + ACTIONS(7019), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1996), 2, + STATE(2513), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1612), 16, + ACTIONS(1560), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369646,24 +372015,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_and2, anon_sym_xor2, anon_sym_or2, - [150623] = 6, - ACTIONS(251), 1, + [148799] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7033), 1, - anon_sym_DOT, - ACTIONS(7035), 1, - aux_sym__immediate_decimal_token2, - STATE(3892), 1, - sym_comment, - ACTIONS(1550), 2, - anon_sym_DOT_DOT2, + ACTIONS(1457), 1, aux_sym_unquoted_token2, - ACTIONS(1552), 21, + ACTIONS(4486), 1, + anon_sym_LPAREN2, + ACTIONS(7009), 1, + anon_sym_DOLLAR, + ACTIONS(7021), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7023), 1, + aux_sym__immediate_decimal_token5, + STATE(3888), 1, + sym_comment, + STATE(4223), 1, + sym__immediate_decimal, + ACTIONS(7019), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2500), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1455), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369675,32 +372054,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_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [150663] = 8, - ACTIONS(251), 1, + [148849] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(943), 1, - anon_sym_DOT_DOT2, - ACTIONS(7037), 1, - anon_sym_DOT2, - STATE(1532), 1, - sym_path, - STATE(3871), 1, - sym_cell_path, - STATE(3893), 1, + ACTIONS(5058), 1, + anon_sym_DASH2, + STATE(3889), 1, sym_comment, - STATE(3902), 1, - aux_sym_cell_path_repeat1, - ACTIONS(945), 20, + ACTIONS(5056), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369712,40 +372076,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_LBRACK, anon_sym_RPAREN, - anon_sym_in2, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [150707] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1540), 1, - aux_sym_unquoted_token2, - ACTIONS(4680), 1, anon_sym_LPAREN2, - ACTIONS(6586), 1, - anon_sym_DOLLAR, - ACTIONS(7041), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7043), 1, - aux_sym__immediate_decimal_token5, - STATE(3894), 1, - sym_comment, - STATE(4180), 1, - sym__immediate_decimal, - ACTIONS(7039), 2, + [148885] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7025), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2507), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1538), 15, - ts_builtin_sym_end, + ACTIONS(7027), 1, + aux_sym__immediate_decimal_token2, + STATE(3890), 1, + sym_comment, + ACTIONS(1504), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1506), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369757,59 +372113,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_and2, anon_sym_xor2, anon_sym_or2, - [150757] = 14, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [148925] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1475), 1, + ACTIONS(1455), 1, sym__space, - ACTIONS(1477), 1, + ACTIONS(1457), 1, aux_sym_unquoted_token2, - ACTIONS(2074), 1, + ACTIONS(2108), 1, anon_sym_DOLLAR, - ACTIONS(7045), 1, + ACTIONS(7029), 1, anon_sym_LPAREN2, - ACTIONS(7047), 1, + ACTIONS(7031), 1, anon_sym_DOT, - ACTIONS(7049), 1, + ACTIONS(7033), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7051), 1, + ACTIONS(7035), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7053), 1, + ACTIONS(7037), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7055), 1, + ACTIONS(7039), 1, aux_sym__immediate_decimal_token5, - STATE(3895), 1, + STATE(3891), 1, sym_comment, - STATE(4050), 1, + STATE(4047), 1, sym__immediate_decimal, - STATE(4189), 2, + STATE(4187), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1461), 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, - [150813] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4994), 1, - anon_sym_DASH2, - STATE(3896), 1, - sym_comment, - ACTIONS(4992), 24, + ACTIONS(1441), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369821,35 +372163,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_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_as, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [150849] = 8, - ACTIONS(251), 1, + [148981] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1697), 1, + ACTIONS(1666), 1, anon_sym_DOT_DOT2, - ACTIONS(7037), 1, + ACTIONS(7041), 1, anon_sym_DOT2, - STATE(1532), 1, + STATE(1428), 1, sym_path, - STATE(1621), 1, + STATE(1519), 1, sym_cell_path, - STATE(3897), 1, + STATE(3892), 1, sym_comment, - STATE(3902), 1, + STATE(3898), 1, aux_sym_cell_path_repeat1, - ACTIONS(1699), 20, + ACTIONS(1668), 20, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369870,28 +372201,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_COLON2, - [150893] = 10, - ACTIONS(251), 1, + [149025] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4580), 1, + ACTIONS(4486), 1, anon_sym_LPAREN2, - ACTIONS(4586), 1, + ACTIONS(4492), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4588), 1, + ACTIONS(4494), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6551), 1, + ACTIONS(4618), 1, + anon_sym_DOT, + ACTIONS(7009), 1, anon_sym_DOLLAR, - STATE(2076), 1, - sym__immediate_decimal, - STATE(3898), 1, + STATE(3893), 1, sym_comment, - ACTIONS(4638), 2, + STATE(4115), 1, + sym__immediate_decimal, + ACTIONS(4490), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2075), 2, + STATE(4114), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1510), 16, + ACTIONS(1532), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369903,33 +372237,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, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [150941] = 10, - ACTIONS(251), 1, + [149075] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4580), 1, - anon_sym_LPAREN2, - ACTIONS(4586), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4588), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6551), 1, - anon_sym_DOLLAR, - STATE(1986), 1, - sym__immediate_decimal, - STATE(3899), 1, + ACTIONS(929), 1, + anon_sym_DOT_DOT2, + ACTIONS(7041), 1, + anon_sym_DOT2, + STATE(1428), 1, + sym_path, + STATE(3881), 1, + sym_cell_path, + STATE(3894), 1, sym_comment, - ACTIONS(4638), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1984), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1626), 16, + STATE(3898), 1, + aux_sym_cell_path_repeat1, + ACTIONS(931), 20, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369942,32 +372268,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_in2, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [150989] = 10, - ACTIONS(251), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [149119] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4580), 1, - anon_sym_LPAREN2, - ACTIONS(4586), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4588), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6551), 1, - anon_sym_DOLLAR, - STATE(1995), 1, - sym__immediate_decimal, - STATE(3900), 1, + ACTIONS(1676), 1, + anon_sym_DOT_DOT2, + ACTIONS(7041), 1, + anon_sym_DOT2, + STATE(1428), 1, + sym_path, + STATE(1521), 1, + sym_cell_path, + STATE(3895), 1, sym_comment, - ACTIONS(4638), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1994), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1656), 16, + STATE(3898), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1678), 20, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369980,23 +372304,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_LBRACE, anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [151037] = 6, - ACTIONS(251), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [149163] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7057), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7059), 1, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(7045), 1, aux_sym__immediate_decimal_token2, - STATE(3901), 1, + STATE(3896), 1, sym_comment, - ACTIONS(1542), 2, + ACTIONS(1512), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1544), 21, + ACTIONS(1514), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370018,20 +372346,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [151077] = 7, - ACTIONS(251), 1, + [149203] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(949), 1, + ACTIONS(935), 1, anon_sym_DOT_DOT2, - ACTIONS(7037), 1, + ACTIONS(7047), 1, anon_sym_DOT2, - STATE(1532), 1, + STATE(1428), 1, sym_path, - STATE(3902), 1, + STATE(3897), 2, sym_comment, - STATE(3905), 1, aux_sym_cell_path_repeat1, - ACTIONS(951), 21, + ACTIONS(937), 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_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [149243] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(942), 1, + anon_sym_DOT_DOT2, + ACTIONS(7041), 1, + anon_sym_DOT2, + STATE(1428), 1, + sym_path, + STATE(3897), 1, + aux_sym_cell_path_repeat1, + STATE(3898), 1, + sym_comment, + ACTIONS(944), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370053,31 +372415,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_COLON2, - [151119] = 11, - ACTIONS(251), 1, + [149285] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4680), 1, + ACTIONS(4207), 1, anon_sym_LPAREN2, - ACTIONS(4686), 1, + ACTIONS(4213), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4688), 1, + ACTIONS(4215), 1, aux_sym__immediate_decimal_token5, - ACTIONS(4724), 1, - anon_sym_DOT, - ACTIONS(6586), 1, + ACTIONS(6993), 1, anon_sym_DOLLAR, - STATE(3903), 1, - sym_comment, - STATE(4127), 1, + STATE(1778), 1, sym__immediate_decimal, - ACTIONS(4684), 2, + STATE(3899), 1, + sym_comment, + ACTIONS(4482), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4126), 2, + STATE(1777), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1510), 15, - ts_builtin_sym_end, + ACTIONS(1532), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370089,34 +372448,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_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [151169] = 11, - ACTIONS(251), 1, + [149333] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym_unquoted_token2, - ACTIONS(4680), 1, + ACTIONS(4207), 1, anon_sym_LPAREN2, - ACTIONS(6586), 1, - anon_sym_DOLLAR, - ACTIONS(7041), 1, + ACTIONS(4213), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7043), 1, + ACTIONS(4215), 1, aux_sym__immediate_decimal_token5, - STATE(3904), 1, - sym_comment, - STATE(4210), 1, + ACTIONS(6993), 1, + anon_sym_DOLLAR, + STATE(1820), 1, sym__immediate_decimal, - ACTIONS(7039), 2, + STATE(3900), 1, + sym_comment, + ACTIONS(4482), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2452), 2, + STATE(1817), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1475), 15, - ts_builtin_sym_end, + ACTIONS(1586), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370128,22 +372486,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_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [151219] = 6, - ACTIONS(251), 1, + [149381] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(953), 1, - anon_sym_DOT_DOT2, - ACTIONS(7061), 1, - anon_sym_DOT2, - STATE(1532), 1, - sym_path, - STATE(3905), 2, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(4213), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4215), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6993), 1, + anon_sym_DOLLAR, + STATE(1822), 1, + sym__immediate_decimal, + STATE(3901), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(955), 21, + ACTIONS(4482), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1821), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1590), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370156,31 +372525,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_in2, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - [151259] = 8, - ACTIONS(251), 1, + [149429] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1719), 1, - anon_sym_DOT_DOT2, - ACTIONS(7037), 1, - anon_sym_DOT2, - STATE(1532), 1, - sym_path, - STATE(1589), 1, - sym_cell_path, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(4213), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4215), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6993), 1, + anon_sym_DOLLAR, + STATE(1816), 1, + sym__immediate_decimal, STATE(3902), 1, - aux_sym_cell_path_repeat1, - STATE(3906), 1, sym_comment, - ACTIONS(1721), 20, + ACTIONS(4482), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1814), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1582), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370193,22 +372563,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_LBRACE, anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - [151303] = 4, - ACTIONS(251), 1, + [149477] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4962), 1, + ACTIONS(5026), 1, anon_sym_DASH2, - STATE(3907), 1, + STATE(3903), 1, sym_comment, - ACTIONS(4960), 24, + ACTIONS(5024), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370233,17 +372599,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [151339] = 5, - ACTIONS(251), 1, + [149513] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7064), 1, + ACTIONS(7045), 1, aux_sym__immediate_decimal_token2, - STATE(3908), 1, + STATE(3904), 1, sym_comment, - ACTIONS(1680), 2, + ACTIONS(1512), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1682), 21, + ACTIONS(1514), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370265,19 +372631,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [151376] = 6, - ACTIONS(251), 1, + [149550] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7066), 1, + ACTIONS(7050), 1, anon_sym_DOT, - ACTIONS(7068), 1, + ACTIONS(7052), 1, aux_sym__immediate_decimal_token2, - STATE(3909), 1, + STATE(3905), 1, sym_comment, - ACTIONS(1550), 2, + ACTIONS(1512), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1552), 20, + ACTIONS(1514), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -370298,17 +372664,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [151415] = 5, - ACTIONS(251), 1, + [149589] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7035), 1, - aux_sym__immediate_decimal_token2, - STATE(3910), 1, - sym_comment, - ACTIONS(1550), 2, - anon_sym_DOT_DOT2, + ACTIONS(1455), 1, + sym__space, + ACTIONS(1457), 1, aux_sym_unquoted_token2, - ACTIONS(1552), 21, + ACTIONS(2108), 1, + anon_sym_DOLLAR, + ACTIONS(7029), 1, + anon_sym_LPAREN2, + ACTIONS(7054), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7056), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7058), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7060), 1, + aux_sym__immediate_decimal_token5, + STATE(3906), 1, + sym_comment, + STATE(4308), 1, + sym__immediate_decimal, + STATE(4651), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1441), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370322,35 +372704,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [151452] = 10, - ACTIONS(251), 1, + [149642] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - ACTIONS(7070), 1, - anon_sym_DOT_DOT2, - ACTIONS(7074), 1, - sym_filesize_unit, - ACTIONS(7076), 1, - sym_duration_unit, - ACTIONS(7078), 1, + ACTIONS(1560), 1, + sym__space, + ACTIONS(1562), 1, aux_sym_unquoted_token2, - STATE(3911), 1, + ACTIONS(2108), 1, + anon_sym_DOLLAR, + ACTIONS(7029), 1, + anon_sym_LPAREN2, + ACTIONS(7054), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7056), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7058), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7060), 1, + aux_sym__immediate_decimal_token5, + STATE(3907), 1, sym_comment, - STATE(7381), 1, + STATE(4370), 1, + sym__immediate_decimal, + STATE(4719), 2, sym__expr_parenthesized_immediate, - ACTIONS(7072), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1650), 16, + sym_val_variable, + ACTIONS(1558), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370364,32 +372744,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [151499] = 10, - ACTIONS(251), 1, + [149695] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4680), 1, + ACTIONS(4452), 1, anon_sym_LPAREN2, - ACTIONS(4686), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4688), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6586), 1, - anon_sym_DOLLAR, - STATE(2536), 1, - sym__immediate_decimal, - STATE(3912), 1, + ACTIONS(7062), 1, + anon_sym_DOT_DOT2, + ACTIONS(7066), 1, + sym_filesize_unit, + ACTIONS(7068), 1, + sym_duration_unit, + ACTIONS(7070), 1, + aux_sym_unquoted_token2, + STATE(3908), 1, sym_comment, - ACTIONS(4802), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2521), 2, + STATE(7382), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1626), 15, - ts_builtin_sym_end, + ACTIONS(7064), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1651), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370401,31 +372776,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_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [151546] = 10, - ACTIONS(251), 1, + [149742] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4680), 1, + ACTIONS(4486), 1, anon_sym_LPAREN2, - ACTIONS(4686), 1, + ACTIONS(4492), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4688), 1, + ACTIONS(4494), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6586), 1, + ACTIONS(7009), 1, anon_sym_DOLLAR, - STATE(2540), 1, + STATE(2498), 1, sym__immediate_decimal, - STATE(3913), 1, + STATE(3909), 1, sym_comment, - ACTIONS(4802), 2, + ACTIONS(4732), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2537), 2, + STATE(2497), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1656), 15, + ACTIONS(1532), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -370441,20 +372818,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [151593] = 6, - ACTIONS(251), 1, + [149789] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7080), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7082), 1, + ACTIONS(7072), 1, aux_sym__immediate_decimal_token2, - STATE(3914), 1, + STATE(3910), 1, sym_comment, - ACTIONS(1542), 2, + ACTIONS(1618), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1544), 20, - ts_builtin_sym_end, + ACTIONS(1620), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370466,6 +372840,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_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -370474,28 +372850,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [151632] = 10, - ACTIONS(251), 1, + [149826] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4680), 1, - anon_sym_LPAREN2, - ACTIONS(4686), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4688), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6586), 1, - anon_sym_DOLLAR, - STATE(2561), 1, - sym__immediate_decimal, - STATE(3915), 1, - sym_comment, - ACTIONS(4802), 2, + ACTIONS(7074), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2542), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1612), 15, + ACTIONS(7076), 1, + aux_sym__immediate_decimal_token2, + STATE(3911), 1, + sym_comment, + ACTIONS(1504), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1506), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -370511,73 +372878,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [151679] = 13, - ACTIONS(3), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [149865] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1475), 1, - sym__space, - ACTIONS(1477), 1, - aux_sym_unquoted_token2, - ACTIONS(2074), 1, - anon_sym_DOLLAR, - ACTIONS(7045), 1, + ACTIONS(4486), 1, anon_sym_LPAREN2, - ACTIONS(7084), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7086), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7088), 1, + ACTIONS(4492), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7090), 1, + ACTIONS(4494), 1, aux_sym__immediate_decimal_token5, - STATE(3916), 1, - sym_comment, - STATE(4376), 1, - sym__immediate_decimal, - STATE(4708), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1461), 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, - [151732] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1510), 1, - sym__space, - ACTIONS(2074), 1, + ACTIONS(7009), 1, anon_sym_DOLLAR, - ACTIONS(7045), 1, - anon_sym_LPAREN2, - ACTIONS(7049), 1, + STATE(2512), 1, + sym__immediate_decimal, + STATE(3912), 1, + sym_comment, + ACTIONS(4732), 2, aux_sym__immediate_decimal_token1, - ACTIONS(7051), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7053), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7055), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7092), 1, - anon_sym_DOT, - STATE(3917), 1, - sym_comment, - STATE(4183), 1, - sym__immediate_decimal, - STATE(4182), 2, + STATE(2511), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1500), 13, + ACTIONS(1590), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370589,38 +372917,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, - [151785] = 14, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [149912] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1477), 1, + ACTIONS(1457), 1, aux_sym_unquoted_token2, - ACTIONS(2240), 1, + ACTIONS(2236), 1, anon_sym_DOLLAR, - ACTIONS(7094), 1, + ACTIONS(7078), 1, anon_sym_LPAREN2, - ACTIONS(7096), 1, + ACTIONS(7080), 1, anon_sym_DOT, - ACTIONS(7098), 1, + ACTIONS(7082), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7100), 1, + ACTIONS(7084), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7102), 1, + ACTIONS(7086), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7104), 1, + ACTIONS(7088), 1, aux_sym__immediate_decimal_token5, - STATE(3918), 1, + STATE(3913), 1, sym_comment, - STATE(4120), 1, + STATE(4157), 1, sym__immediate_decimal, - ACTIONS(1475), 2, + ACTIONS(1455), 2, ts_builtin_sym_end, sym__space, - STATE(4317), 2, + STATE(4296), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1461), 11, + ACTIONS(1441), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370632,28 +372961,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, - [151840] = 10, - ACTIONS(251), 1, + [149967] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4680), 1, + ACTIONS(4486), 1, anon_sym_LPAREN2, - ACTIONS(4686), 1, + ACTIONS(4492), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4688), 1, + ACTIONS(4494), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6586), 1, + ACTIONS(7009), 1, anon_sym_DOLLAR, - STATE(2503), 1, + STATE(2510), 1, sym__immediate_decimal, - STATE(3919), 1, + STATE(3914), 1, sym_comment, - ACTIONS(4802), 2, + ACTIONS(4732), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2502), 2, + STATE(2509), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1510), 15, + ACTIONS(1586), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -370669,159 +372998,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [151887] = 13, - ACTIONS(3), 1, + [150014] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1538), 1, - sym__space, - ACTIONS(1540), 1, - aux_sym_unquoted_token2, - ACTIONS(2074), 1, - anon_sym_DOLLAR, - ACTIONS(7045), 1, + ACTIONS(4486), 1, anon_sym_LPAREN2, - ACTIONS(7084), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7086), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7088), 1, + ACTIONS(4492), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7090), 1, + ACTIONS(4494), 1, aux_sym__immediate_decimal_token5, - STATE(3920), 1, - sym_comment, - STATE(4321), 1, + ACTIONS(7009), 1, + anon_sym_DOLLAR, + STATE(2508), 1, sym__immediate_decimal, - STATE(4570), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1536), 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, - [151940] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(943), 1, - anon_sym_DOT_DOT2, - ACTIONS(4956), 1, - anon_sym_DOT2, - STATE(1441), 1, - sym_cell_path, - STATE(1692), 1, - aux_sym_cell_path_repeat1, - STATE(1889), 1, - sym_path, - STATE(3921), 1, + STATE(3915), 1, sym_comment, - ACTIONS(945), 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_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [151982] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1510), 1, - sym__space, - ACTIONS(2074), 1, - anon_sym_DOLLAR, - ACTIONS(7045), 1, - anon_sym_LPAREN2, - ACTIONS(7053), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7055), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7106), 1, + ACTIONS(4732), 2, aux_sym__immediate_decimal_token1, - ACTIONS(7108), 1, aux_sym__immediate_decimal_token3, - STATE(3922), 1, - sym_comment, - STATE(4698), 1, - sym__immediate_decimal, - STATE(4697), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1500), 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, - [152032] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3923), 1, - sym_comment, - ACTIONS(1550), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1552), 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [152066] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7068), 1, - aux_sym__immediate_decimal_token2, - STATE(3924), 1, - sym_comment, - ACTIONS(1550), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1552), 20, + STATE(2507), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1582), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -370837,36 +373035,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [152102] = 12, + [150061] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1626), 1, + ACTIONS(1532), 1, sym__space, - ACTIONS(2074), 1, + ACTIONS(2108), 1, anon_sym_DOLLAR, - ACTIONS(7045), 1, + ACTIONS(7029), 1, anon_sym_LPAREN2, - ACTIONS(7053), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7055), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7106), 1, + ACTIONS(7033), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7108), 1, + ACTIONS(7035), 1, aux_sym__immediate_decimal_token3, - STATE(3925), 1, + ACTIONS(7037), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7039), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7090), 1, + anon_sym_DOT, + STATE(3916), 1, sym_comment, - STATE(4565), 1, + STATE(4233), 1, sym__immediate_decimal, - STATE(4564), 2, + STATE(4215), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1624), 13, + ACTIONS(1522), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370880,19 +373075,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [152152] = 6, - ACTIONS(251), 1, + [150114] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7110), 1, + ACTIONS(1582), 1, + sym__space, + ACTIONS(2108), 1, + anon_sym_DOLLAR, + ACTIONS(7029), 1, + anon_sym_LPAREN2, + ACTIONS(7037), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7039), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7092), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7112), 1, - aux_sym__immediate_decimal_token2, - STATE(3926), 1, + ACTIONS(7094), 1, + aux_sym__immediate_decimal_token3, + STATE(3917), 1, sym_comment, - ACTIONS(1711), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1713), 19, + STATE(4672), 1, + sym__immediate_decimal, + STATE(4654), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1580), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370906,40 +373113,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [152190] = 13, + [150164] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2240), 1, + ACTIONS(2236), 1, anon_sym_DOLLAR, - ACTIONS(7094), 1, + ACTIONS(7078), 1, anon_sym_LPAREN2, - ACTIONS(7098), 1, + ACTIONS(7082), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7100), 1, + ACTIONS(7084), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7102), 1, + ACTIONS(7086), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7104), 1, + ACTIONS(7088), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7114), 1, + ACTIONS(7096), 1, anon_sym_DOT, - STATE(3927), 1, + STATE(3918), 1, sym_comment, - STATE(4350), 1, + STATE(4289), 1, sym__immediate_decimal, - ACTIONS(1510), 2, + ACTIONS(1532), 2, ts_builtin_sym_end, sym__space, - STATE(4334), 2, + STATE(4288), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1500), 11, + ACTIONS(1522), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370951,34 +373152,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, - [152242] = 13, - ACTIONS(3), 1, + [150216] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1540), 1, + STATE(3919), 1, + sym_comment, + ACTIONS(1689), 2, + anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(2240), 1, - anon_sym_DOLLAR, - ACTIONS(7094), 1, + ACTIONS(1691), 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_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_LPAREN2, - ACTIONS(7116), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [150250] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7098), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7118), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7120), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7122), 1, - aux_sym__immediate_decimal_token5, - STATE(3928), 1, + ACTIONS(7100), 1, + aux_sym__immediate_decimal_token2, + STATE(3920), 1, sym_comment, - STATE(4475), 1, - sym__immediate_decimal, - ACTIONS(1538), 2, - ts_builtin_sym_end, + ACTIONS(1506), 6, sym__space, - STATE(4947), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1536), 11, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1504), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370990,17 +373210,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, - [152294] = 5, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [150288] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7124), 1, + ACTIONS(7052), 1, aux_sym__immediate_decimal_token2, - STATE(3929), 1, + STATE(3921), 1, sym_comment, - ACTIONS(1680), 2, + ACTIONS(1512), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1682), 20, + ACTIONS(1514), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -371021,15 +373245,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [152330] = 4, - ACTIONS(251), 1, + [150324] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3930), 1, + ACTIONS(7102), 1, + anon_sym_DOT, + ACTIONS(7104), 1, + aux_sym__immediate_decimal_token2, + STATE(3922), 1, sym_comment, - ACTIONS(1542), 2, + ACTIONS(1701), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1544), 21, + ACTIONS(1703), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371049,33 +373277,15 @@ 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, - [152364] = 12, - ACTIONS(3), 1, + [150362] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1656), 1, - sym__space, - ACTIONS(2074), 1, - anon_sym_DOLLAR, - ACTIONS(7045), 1, - anon_sym_LPAREN2, - ACTIONS(7053), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7055), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7106), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7108), 1, - aux_sym__immediate_decimal_token3, - STATE(3931), 1, + STATE(3923), 1, sym_comment, - STATE(4567), 1, - sym__immediate_decimal, - STATE(4566), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1654), 13, + ACTIONS(1504), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1506), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371089,15 +373299,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [152414] = 4, - ACTIONS(251), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [150396] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3932), 1, + ACTIONS(7106), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7108), 1, + aux_sym__immediate_decimal_token2, + STATE(3924), 1, sym_comment, - ACTIONS(1680), 2, + ACTIONS(1693), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1682), 21, + ACTIONS(1695), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371117,25 +373339,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + [150434] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + ACTIONS(7110), 1, + anon_sym_DOT_DOT2, + ACTIONS(7114), 1, sym_filesize_unit, + ACTIONS(7116), 1, sym_duration_unit, - [152448] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7126), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7128), 1, - aux_sym__immediate_decimal_token2, - STATE(3933), 1, + ACTIONS(7118), 1, + aux_sym_unquoted_token2, + STATE(3925), 1, sym_comment, - ACTIONS(1544), 6, - sym__space, - anon_sym_LPAREN2, + STATE(7297), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7112), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1542), 15, + ACTIONS(1651), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371147,19 +373372,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, - [152486] = 4, - ACTIONS(251), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [150480] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3934), 1, + STATE(3926), 1, sym_comment, - ACTIONS(1743), 2, + ACTIONS(1618), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1745), 21, + ACTIONS(1620), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371181,31 +373405,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [152520] = 12, + [150514] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7120), 1, + aux_sym__immediate_decimal_token2, + STATE(3927), 1, + sym_comment, + ACTIONS(1618), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1620), 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [150550] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1612), 1, + ACTIONS(1586), 1, sym__space, - ACTIONS(2074), 1, + ACTIONS(2108), 1, anon_sym_DOLLAR, - ACTIONS(7045), 1, + ACTIONS(7029), 1, anon_sym_LPAREN2, - ACTIONS(7053), 1, + ACTIONS(7037), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7055), 1, + ACTIONS(7039), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7106), 1, + ACTIONS(7092), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7108), 1, + ACTIONS(7094), 1, aux_sym__immediate_decimal_token3, - STATE(3935), 1, + STATE(3928), 1, sym_comment, - STATE(4569), 1, + STATE(4698), 1, sym__immediate_decimal, - STATE(4568), 2, + STATE(4693), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1604), 13, + ACTIONS(1584), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371219,28 +373474,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [152570] = 10, - ACTIONS(251), 1, + [150600] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - ACTIONS(7130), 1, - anon_sym_DOT_DOT2, - ACTIONS(7134), 1, - sym_filesize_unit, - ACTIONS(7136), 1, - sym_duration_unit, - ACTIONS(7138), 1, + ACTIONS(1457), 1, aux_sym_unquoted_token2, - STATE(3936), 1, + ACTIONS(2236), 1, + anon_sym_DOLLAR, + ACTIONS(7078), 1, + anon_sym_LPAREN2, + ACTIONS(7122), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7124), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7126), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7128), 1, + aux_sym__immediate_decimal_token5, + STATE(3929), 1, sym_comment, - STATE(7393), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7132), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1650), 15, + STATE(4552), 1, + sym__immediate_decimal, + ACTIONS(1455), 2, ts_builtin_sym_end, + sym__space, + STATE(4864), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1441), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371252,37 +373513,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_and2, - anon_sym_xor2, - anon_sym_or2, - [152616] = 13, + [150652] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1477), 1, + ACTIONS(1562), 1, aux_sym_unquoted_token2, - ACTIONS(2240), 1, + ACTIONS(2236), 1, anon_sym_DOLLAR, - ACTIONS(7094), 1, + ACTIONS(7078), 1, anon_sym_LPAREN2, - ACTIONS(7116), 1, + ACTIONS(7122), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7118), 1, + ACTIONS(7124), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7120), 1, + ACTIONS(7126), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7122), 1, + ACTIONS(7128), 1, aux_sym__immediate_decimal_token5, - STATE(3937), 1, + STATE(3930), 1, sym_comment, - STATE(4556), 1, + STATE(4506), 1, sym__immediate_decimal, - ACTIONS(1475), 2, + ACTIONS(1560), 2, ts_builtin_sym_end, sym__space, - STATE(4835), 2, + STATE(4805), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1461), 11, + ACTIONS(1558), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371294,23 +373552,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, - [152668] = 6, + [150704] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7140), 1, - anon_sym_DOT, - ACTIONS(7142), 1, - aux_sym__immediate_decimal_token2, - STATE(3938), 1, - sym_comment, - ACTIONS(1552), 6, + ACTIONS(1590), 1, sym__space, + ACTIONS(2108), 1, + anon_sym_DOLLAR, + ACTIONS(7029), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1550), 15, + ACTIONS(7037), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7039), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7092), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7094), 1, + aux_sym__immediate_decimal_token3, + STATE(3931), 1, + sym_comment, + STATE(4714), 1, + sym__immediate_decimal, + STATE(4707), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1588), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371324,21 +373590,31 @@ 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, - [152706] = 6, - ACTIONS(251), 1, + [150754] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7144), 1, - anon_sym_DOT, - ACTIONS(7146), 1, - aux_sym__immediate_decimal_token2, - STATE(3939), 1, + ACTIONS(1532), 1, + sym__space, + ACTIONS(2108), 1, + anon_sym_DOLLAR, + ACTIONS(7029), 1, + anon_sym_LPAREN2, + ACTIONS(7037), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7039), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7092), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7094), 1, + aux_sym__immediate_decimal_token3, + STATE(3932), 1, sym_comment, - ACTIONS(1755), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1757), 19, + STATE(4708), 1, + sym__immediate_decimal, + STATE(4703), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1522), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371352,38 +373628,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [152744] = 12, - ACTIONS(3), 1, + [150804] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2240), 1, - anon_sym_DOLLAR, - ACTIONS(7094), 1, - anon_sym_LPAREN2, - ACTIONS(7102), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7104), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7148), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7150), 1, - aux_sym__immediate_decimal_token3, - STATE(3940), 1, + STATE(3933), 1, sym_comment, - STATE(4833), 1, - sym__immediate_decimal, - ACTIONS(1510), 2, - ts_builtin_sym_end, - sym__space, - STATE(4832), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1500), 11, + ACTIONS(1512), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1514), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371395,21 +373648,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, - [152793] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [150838] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7142), 1, + ACTIONS(7130), 1, + anon_sym_DOT, + ACTIONS(7132), 1, aux_sym__immediate_decimal_token2, - STATE(3941), 1, + STATE(3934), 1, sym_comment, - ACTIONS(1552), 6, + ACTIONS(1514), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1550), 15, + ACTIONS(1512), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371425,15 +373690,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [152828] = 4, - ACTIONS(251), 1, + [150876] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3942), 1, + STATE(3935), 1, sym_comment, - ACTIONS(1680), 2, + ACTIONS(1504), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1682), 20, + ACTIONS(1506), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -371454,20 +373719,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [152861] = 6, - ACTIONS(251), 1, + [150909] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7152), 1, - anon_sym_DOT, - ACTIONS(7154), 1, + ACTIONS(7134), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7136), 1, aux_sym__immediate_decimal_token2, - STATE(3943), 1, + STATE(3936), 1, sym_comment, - ACTIONS(1755), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1757), 18, + ACTIONS(1506), 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(1504), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371479,23 +373748,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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [152898] = 5, - ACTIONS(251), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [150946] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7156), 1, + ACTIONS(7104), 1, aux_sym__immediate_decimal_token2, - STATE(3944), 1, + STATE(3937), 1, sym_comment, - ACTIONS(1783), 2, + ACTIONS(1701), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1785), 19, + ACTIONS(1703), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371515,32 +373780,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [152933] = 12, + [150981] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2240), 1, + ACTIONS(2236), 1, anon_sym_DOLLAR, - ACTIONS(7094), 1, + ACTIONS(7078), 1, anon_sym_LPAREN2, - ACTIONS(7102), 1, + ACTIONS(7086), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7104), 1, + ACTIONS(7088), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7148), 1, + ACTIONS(7138), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7150), 1, + ACTIONS(7140), 1, aux_sym__immediate_decimal_token3, - STATE(3945), 1, + STATE(3938), 1, sym_comment, - STATE(4929), 1, + STATE(4843), 1, sym__immediate_decimal, - ACTIONS(1626), 2, + ACTIONS(1532), 2, ts_builtin_sym_end, sym__space, - STATE(4927), 2, + STATE(4842), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1624), 11, + ACTIONS(1522), 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, + [151030] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7142), 1, + aux_sym__immediate_decimal_token2, + STATE(3939), 1, + sym_comment, + ACTIONS(1766), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1768), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371552,32 +373839,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, - [152982] = 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [151065] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2240), 1, + ACTIONS(2236), 1, anon_sym_DOLLAR, - ACTIONS(7094), 1, + ACTIONS(7078), 1, anon_sym_LPAREN2, - ACTIONS(7102), 1, + ACTIONS(7086), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7104), 1, + ACTIONS(7088), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7148), 1, + ACTIONS(7138), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7150), 1, + ACTIONS(7140), 1, aux_sym__immediate_decimal_token3, - STATE(3946), 1, + STATE(3940), 1, sym_comment, - STATE(4944), 1, + STATE(4770), 1, sym__immediate_decimal, - ACTIONS(1656), 2, + ACTIONS(1586), 2, ts_builtin_sym_end, sym__space, - STATE(4941), 2, + STATE(4767), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1654), 11, + ACTIONS(1584), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371589,32 +373884,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, - [153031] = 12, + [151114] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2240), 1, + ACTIONS(2236), 1, anon_sym_DOLLAR, - ACTIONS(7094), 1, + ACTIONS(7078), 1, anon_sym_LPAREN2, - ACTIONS(7102), 1, + ACTIONS(7086), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7104), 1, + ACTIONS(7088), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7148), 1, + ACTIONS(7138), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7150), 1, + ACTIONS(7140), 1, aux_sym__immediate_decimal_token3, - STATE(3947), 1, + STATE(3941), 1, sym_comment, - STATE(4946), 1, + STATE(4802), 1, sym__immediate_decimal, - ACTIONS(1612), 2, + ACTIONS(1590), 2, ts_builtin_sym_end, sym__space, - STATE(4945), 2, + STATE(4783), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1604), 11, + ACTIONS(1588), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371626,17 +373921,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, - [153080] = 5, - ACTIONS(251), 1, + [151163] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7146), 1, - aux_sym__immediate_decimal_token2, - STATE(3948), 1, - sym_comment, - ACTIONS(1755), 2, + ACTIONS(929), 1, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1757), 19, + ACTIONS(4837), 1, + anon_sym_DOT2, + STATE(1408), 1, + sym_cell_path, + STATE(1640), 1, + aux_sym_cell_path_repeat1, + STATE(1783), 1, + sym_path, + STATE(3942), 1, + sym_comment, + ACTIONS(931), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371648,24 +373949,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_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [153115] = 6, + [151204] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7158), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7160), 1, + ACTIONS(7144), 1, + anon_sym_DOT, + ACTIONS(7146), 1, aux_sym__immediate_decimal_token2, - STATE(3949), 1, + STATE(3943), 1, sym_comment, - ACTIONS(1544), 7, + ACTIONS(1514), 7, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, @@ -371673,7 +373971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1542), 13, + ACTIONS(1512), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371687,46 +373985,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [153152] = 6, - ACTIONS(251), 1, + [151241] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7162), 1, + ACTIONS(1457), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(7148), 1, + anon_sym_DOLLAR, + ACTIONS(7150), 1, + anon_sym_LPAREN2, + ACTIONS(7152), 1, + anon_sym_DOT, + ACTIONS(7154), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7164), 1, - aux_sym__immediate_decimal_token2, - STATE(3950), 1, + ACTIONS(7156), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7158), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7160), 1, + aux_sym__immediate_decimal_token5, + STATE(3944), 1, sym_comment, - ACTIONS(1711), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1713), 18, - ts_builtin_sym_end, + STATE(4195), 1, + sym__immediate_decimal, + ACTIONS(1441), 2, + sym_identifier, + anon_sym_DASH2, + STATE(4485), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1455), 9, + 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [153189] = 4, - ACTIONS(251), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [151294] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3951), 1, + STATE(3945), 1, sym_comment, - ACTIONS(1743), 2, + ACTIONS(1512), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1745), 20, + ACTIONS(1514), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -371747,15 +374053,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [153222] = 5, - ACTIONS(251), 1, + [151327] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7166), 1, + ACTIONS(7162), 1, sym__newline, - STATE(3952), 2, + STATE(3946), 2, sym_comment, aux_sym_shebang_repeat1, - ACTIONS(1296), 10, + ACTIONS(1294), 10, sym_identifier, anon_sym_DASH2, anon_sym_true, @@ -371766,7 +374072,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(1298), 10, + ACTIONS(1296), 10, anon_sym_EQ, anon_sym_COLON, anon_sym_LPAREN, @@ -371777,29 +374083,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token5, - [153257] = 11, - ACTIONS(3), 1, + [151362] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1650), 1, - sym__space, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - ACTIONS(7169), 1, + STATE(3947), 1, + sym_comment, + ACTIONS(1618), 2, anon_sym_DOT_DOT2, - ACTIONS(7173), 1, - sym_filesize_unit, - ACTIONS(7175), 1, - sym_duration_unit, - ACTIONS(7177), 1, aux_sym_unquoted_token2, - STATE(3953), 1, - sym_comment, - STATE(7299), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7171), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1638), 13, + ACTIONS(1620), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371811,17 +374104,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, - [153304] = 4, - ACTIONS(251), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [151395] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3954), 1, + STATE(3948), 1, sym_comment, - ACTIONS(1542), 2, + ACTIONS(1689), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1544), 20, + ACTIONS(1691), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -371842,60 +374141,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [153337] = 14, - ACTIONS(251), 1, + [151428] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(7179), 1, - anon_sym_DOLLAR, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7183), 1, - anon_sym_DOT, - ACTIONS(7185), 1, + ACTIONS(7165), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7187), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7189), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7191), 1, - aux_sym__immediate_decimal_token5, - STATE(3955), 1, + ACTIONS(7167), 1, + aux_sym__immediate_decimal_token2, + STATE(3949), 1, sym_comment, - STATE(4237), 1, - sym__immediate_decimal, - ACTIONS(1461), 2, - sym_identifier, - anon_sym_DASH2, - STATE(4534), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1475), 9, - anon_sym_EQ, + ACTIONS(1693), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1695), 18, + 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_DASH_DASH, - [153390] = 5, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [151465] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7193), 1, + ACTIONS(7132), 1, aux_sym__immediate_decimal_token2, - STATE(3956), 1, + STATE(3950), 1, sym_comment, - ACTIONS(1682), 6, + ACTIONS(1514), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1680), 15, + ACTIONS(1512), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371911,16 +374202,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [153425] = 4, - ACTIONS(251), 1, + [151500] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3957), 1, + ACTIONS(7169), 1, + aux_sym__immediate_decimal_token2, + STATE(3951), 1, sym_comment, - ACTIONS(1550), 2, + ACTIONS(1620), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1618), 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, - ACTIONS(1552), 20, + [151535] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2236), 1, + anon_sym_DOLLAR, + ACTIONS(7078), 1, + anon_sym_LPAREN2, + ACTIONS(7086), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7088), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7138), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7140), 1, + aux_sym__immediate_decimal_token3, + STATE(3952), 1, + sym_comment, + STATE(4754), 1, + sym__immediate_decimal, + ACTIONS(1582), 2, ts_builtin_sym_end, + sym__space, + STATE(4753), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1580), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371932,32 +374269,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + [151584] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1651), 1, + sym__space, + ACTIONS(4452), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(7171), 1, + anon_sym_DOT_DOT2, + ACTIONS(7175), 1, sym_filesize_unit, + ACTIONS(7177), 1, sym_duration_unit, - [153458] = 6, - ACTIONS(3), 1, + ACTIONS(7179), 1, + aux_sym_unquoted_token2, + STATE(3953), 1, + sym_comment, + STATE(7293), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7173), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1639), 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, + [151631] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7195), 1, + ACTIONS(7181), 1, anon_sym_DOT, - ACTIONS(7197), 1, + ACTIONS(7183), 1, aux_sym__immediate_decimal_token2, - STATE(3958), 1, + STATE(3954), 1, sym_comment, - ACTIONS(1552), 7, + ACTIONS(1701), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1703), 18, ts_builtin_sym_end, - sym__space, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1550), 13, + [151668] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7185), 1, + anon_sym_DOT2, + STATE(1428), 1, + sym_path, + STATE(1809), 1, + sym_cell_path, + STATE(3898), 1, + aux_sym_cell_path_repeat1, + STATE(3955), 1, + sym_comment, + ACTIONS(1933), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371969,26 +374361,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_DOT_DOT2, - aux_sym_unquoted_token2, - [153495] = 8, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [151706] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7199), 1, - anon_sym_DOT2, - STATE(3959), 1, + ACTIONS(7187), 1, + aux_sym__immediate_decimal_token2, + STATE(3956), 1, sym_comment, - STATE(4025), 1, - aux_sym_cell_path_repeat1, - STATE(4149), 1, - sym_path, - STATE(4245), 1, - sym_cell_path, - ACTIONS(945), 3, + ACTIONS(1620), 7, + ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(943), 14, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1618), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372000,23 +374394,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_DOT_DOT2, - [153535] = 7, - ACTIONS(251), 1, + aux_sym_unquoted_token2, + [151740] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7201), 1, + ACTIONS(7185), 1, anon_sym_DOT2, - STATE(1532), 1, + STATE(1428), 1, sym_path, - STATE(1999), 1, + STATE(2111), 1, sym_cell_path, - STATE(3902), 1, + STATE(3898), 1, aux_sym_cell_path_repeat1, - STATE(3960), 1, + STATE(3957), 1, sym_comment, - ACTIONS(1911), 17, + ACTIONS(1919), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372034,21 +374427,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [153573] = 6, + [151778] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7148), 1, + anon_sym_DOLLAR, + ACTIONS(7150), 1, + anon_sym_LPAREN2, + ACTIONS(7154), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7156), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7158), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7160), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7189), 1, + anon_sym_DOT, + STATE(3958), 1, + sym_comment, + STATE(4484), 1, + sym__immediate_decimal, + ACTIONS(1522), 2, + sym_identifier, + anon_sym_DASH2, + STATE(4483), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1532), 9, + anon_sym_EQ, + 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, + [151828] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7203), 1, + ACTIONS(7191), 1, anon_sym_DOT, - ACTIONS(7205), 1, + ACTIONS(7193), 1, aux_sym__immediate_decimal_token2, - STATE(3961), 1, + STATE(3959), 1, sym_comment, - ACTIONS(1757), 4, + ACTIONS(1703), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1755), 15, + ACTIONS(1701), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372064,20 +374494,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [153609] = 7, - ACTIONS(251), 1, + [151864] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7201), 1, - anon_sym_DOT2, - STATE(1532), 1, - sym_path, - STATE(2009), 1, - sym_cell_path, - STATE(3902), 1, - aux_sym_cell_path_repeat1, - STATE(3962), 1, + ACTIONS(7195), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7197), 1, + aux_sym__immediate_decimal_token2, + STATE(3960), 1, sym_comment, - ACTIONS(1927), 17, + ACTIONS(1695), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1693), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372090,25 +374521,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_LBRACE, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [153647] = 7, - ACTIONS(251), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [151900] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7201), 1, + ACTIONS(7185), 1, anon_sym_DOT2, - STATE(1532), 1, + STATE(1428), 1, sym_path, - STATE(2013), 1, + STATE(1986), 1, sym_cell_path, - STATE(3902), 1, + STATE(3898), 1, aux_sym_cell_path_repeat1, - STATE(3963), 1, + STATE(3961), 1, sym_comment, - ACTIONS(1931), 17, + ACTIONS(1947), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372126,20 +374555,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [153685] = 7, - ACTIONS(251), 1, + [151938] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7201), 1, - anon_sym_DOT2, - STATE(1532), 1, - sym_path, - STATE(2023), 1, - sym_cell_path, - STATE(3902), 1, - aux_sym_cell_path_repeat1, - STATE(3964), 1, + ACTIONS(7183), 1, + aux_sym__immediate_decimal_token2, + STATE(3962), 1, sym_comment, - ACTIONS(1955), 17, + ACTIONS(1701), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1703), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372151,26 +374578,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_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [153723] = 7, - ACTIONS(251), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [151972] = 6, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(7199), 1, + aux_sym__immediate_decimal_token1, ACTIONS(7201), 1, + aux_sym__immediate_decimal_token2, + STATE(3963), 1, + sym_comment, + ACTIONS(1504), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_record_token2, + ACTIONS(1506), 13, + anon_sym_EQ, + 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, + [152008] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1562), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(7148), 1, + anon_sym_DOLLAR, + ACTIONS(7150), 1, + anon_sym_LPAREN2, + ACTIONS(7203), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7205), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7207), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7209), 1, + aux_sym__immediate_decimal_token5, + STATE(3964), 1, + sym_comment, + STATE(4586), 1, + sym__immediate_decimal, + ACTIONS(1558), 2, + sym_identifier, + anon_sym_DASH2, + STATE(4996), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1560), 9, + anon_sym_EQ, + 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, + [152058] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7185), 1, anon_sym_DOT2, - STATE(1532), 1, + STATE(1428), 1, sym_path, - STATE(2024), 1, + STATE(1837), 1, sym_cell_path, - STATE(3902), 1, + STATE(3898), 1, aux_sym_cell_path_repeat1, STATE(3965), 1, sym_comment, - ACTIONS(1959), 17, + ACTIONS(1841), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372188,20 +374682,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [153761] = 7, - ACTIONS(251), 1, + [152096] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7201), 1, + ACTIONS(7185), 1, anon_sym_DOT2, - STATE(1532), 1, + STATE(1428), 1, sym_path, - STATE(2026), 1, + STATE(1845), 1, sym_cell_path, - STATE(3902), 1, + STATE(3898), 1, aux_sym_cell_path_repeat1, STATE(3966), 1, sym_comment, - ACTIONS(1963), 17, + ACTIONS(1849), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372219,30 +374713,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [153799] = 11, - ACTIONS(3), 1, + [152134] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - ACTIONS(7207), 1, - anon_sym_DOT_DOT2, - ACTIONS(7211), 1, - sym_filesize_unit, - ACTIONS(7213), 1, - sym_duration_unit, - ACTIONS(7215), 1, - aux_sym_unquoted_token2, + ACTIONS(7185), 1, + anon_sym_DOT2, + STATE(1428), 1, + sym_path, + STATE(1847), 1, + sym_cell_path, + STATE(3898), 1, + aux_sym_cell_path_repeat1, STATE(3967), 1, sym_comment, - STATE(7447), 1, - sym__expr_parenthesized_immediate, - ACTIONS(1650), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7209), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1638), 11, + ACTIONS(1855), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372254,19 +374738,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, - [153845] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [152172] = 7, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(7185), 1, + anon_sym_DOT2, + STATE(1428), 1, + sym_path, + STATE(1848), 1, + sym_cell_path, + STATE(3898), 1, + aux_sym_cell_path_repeat1, STATE(3968), 1, sym_comment, - ACTIONS(1544), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1542), 15, + ACTIONS(1871), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372279,17 +374770,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_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [153877] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [152210] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7217), 1, + ACTIONS(7146), 1, aux_sym__immediate_decimal_token2, STATE(3969), 1, sym_comment, - ACTIONS(1682), 7, + ACTIONS(1514), 7, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, @@ -372297,7 +374790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1680), 13, + ACTIONS(1512), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372311,15 +374804,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [153911] = 4, - ACTIONS(251), 1, + [152244] = 7, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(7185), 1, + anon_sym_DOT2, + STATE(1428), 1, + sym_path, + STATE(1826), 1, + sym_cell_path, + STATE(3898), 1, + aux_sym_cell_path_repeat1, STATE(3970), 1, sym_comment, - ACTIONS(1711), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1713), 19, + ACTIONS(1911), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372332,58 +374830,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_LBRACE, anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [153943] = 7, - ACTIONS(251), 1, + [152282] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7201), 1, - anon_sym_DOT2, - STATE(1532), 1, - sym_path, - STATE(2028), 1, - sym_cell_path, - STATE(3902), 1, - aux_sym_cell_path_repeat1, + ACTIONS(7211), 1, + anon_sym_QMARK2, STATE(3971), 1, sym_comment, - ACTIONS(1967), 17, + ACTIONS(950), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(952), 17, + 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_LBRACK, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [153981] = 7, - ACTIONS(251), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [152316] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7201), 1, - anon_sym_DOT2, - STATE(1532), 1, - sym_path, - STATE(2000), 1, - sym_cell_path, - STATE(3902), 1, - aux_sym_cell_path_repeat1, STATE(3972), 1, sym_comment, - ACTIONS(1915), 17, + ACTIONS(1701), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1703), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372396,62 +374885,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_LBRACE, anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [154019] = 13, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7179), 1, - anon_sym_DOLLAR, - ACTIONS(7181), 1, anon_sym_LPAREN2, - ACTIONS(7185), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7187), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7189), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7191), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7219), 1, - anon_sym_DOT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [152348] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7213), 1, + anon_sym_QMARK2, STATE(3973), 1, sym_comment, - STATE(4533), 1, - sym__immediate_decimal, - ACTIONS(1500), 2, - sym_identifier, + ACTIONS(968), 3, anon_sym_DASH2, - STATE(4532), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1510), 9, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(970), 17, anon_sym_EQ, + sym_identifier, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [154069] = 7, - ACTIONS(251), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [152382] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7201), 1, + ACTIONS(7185), 1, anon_sym_DOT2, - STATE(1532), 1, + STATE(1428), 1, sym_path, - STATE(2029), 1, + STATE(1850), 1, sym_cell_path, - STATE(3902), 1, + STATE(3898), 1, aux_sym_cell_path_repeat1, STATE(3974), 1, sym_comment, - ACTIONS(1971), 17, + ACTIONS(1879), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372469,20 +374952,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [154107] = 7, - ACTIONS(251), 1, + [152420] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7201), 1, + ACTIONS(7185), 1, anon_sym_DOT2, - STATE(1532), 1, + STATE(1428), 1, sym_path, - STATE(2030), 1, + STATE(1851), 1, sym_cell_path, - STATE(3902), 1, + STATE(3898), 1, aux_sym_cell_path_repeat1, STATE(3975), 1, sym_comment, - ACTIONS(1981), 17, + ACTIONS(1971), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372500,15 +374983,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [154145] = 4, - ACTIONS(251), 1, + [152458] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(3976), 1, sym_comment, - ACTIONS(1835), 2, + ACTIONS(1620), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1618), 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, + [152490] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3977), 1, + sym_comment, + ACTIONS(1693), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1837), 19, + ACTIONS(1695), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372528,20 +375039,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [154177] = 7, - ACTIONS(251), 1, + [152522] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7201), 1, + ACTIONS(7185), 1, anon_sym_DOT2, - STATE(1532), 1, + STATE(1428), 1, sym_path, - STATE(2031), 1, + STATE(1852), 1, sym_cell_path, - STATE(3902), 1, + STATE(3898), 1, aux_sym_cell_path_repeat1, - STATE(3977), 1, + STATE(3978), 1, sym_comment, - ACTIONS(1907), 17, + ACTIONS(1835), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372559,20 +375070,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [154215] = 7, - ACTIONS(251), 1, + [152560] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7201), 1, + ACTIONS(7185), 1, anon_sym_DOT2, - STATE(1532), 1, + STATE(1428), 1, sym_path, - STATE(2032), 1, + STATE(1855), 1, sym_cell_path, - STATE(3902), 1, + STATE(3898), 1, aux_sym_cell_path_repeat1, - STATE(3978), 1, + STATE(3979), 1, sym_comment, - ACTIONS(1985), 17, + ACTIONS(1863), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372590,19 +375101,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [154253] = 4, - ACTIONS(3), 1, + [152598] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3979), 1, + STATE(3980), 1, sym_comment, - ACTIONS(1552), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1550), 15, + ACTIONS(1792), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1794), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372616,21 +375123,25 @@ 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, - [154285] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [152630] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3980), 1, + STATE(3981), 1, sym_comment, - ACTIONS(1745), 6, + 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(1743), 15, + ACTIONS(1504), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372646,18 +375157,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [154317] = 5, - ACTIONS(251), 1, + [152662] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7221), 1, - aux_sym__immediate_decimal_token2, - STATE(3981), 1, + ACTIONS(7185), 1, + anon_sym_DOT2, + STATE(1428), 1, + sym_path, + STATE(1857), 1, + sym_cell_path, + STATE(3898), 1, + aux_sym_cell_path_repeat1, + STATE(3982), 1, sym_comment, - ACTIONS(1783), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1785), 18, - ts_builtin_sym_end, + ACTIONS(1875), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372669,28 +375182,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_LBRACE, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [154351] = 5, - ACTIONS(3), 1, + [152700] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7197), 1, - aux_sym__immediate_decimal_token2, - STATE(3982), 1, - sym_comment, - ACTIONS(1552), 7, - ts_builtin_sym_end, - sym__space, + ACTIONS(1818), 1, anon_sym_LPAREN2, + ACTIONS(1826), 1, + aux_sym_unquoted_token2, + ACTIONS(7215), 1, + anon_sym_DOT_DOT2, + STATE(3983), 1, + sym_comment, + ACTIONS(7217), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1550), 13, + ACTIONS(1824), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372702,26 +375214,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, - aux_sym_unquoted_token2, - [154385] = 8, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [152738] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7199), 1, - anon_sym_DOT2, - STATE(3983), 1, + ACTIONS(7219), 1, + aux_sym__immediate_decimal_token2, + STATE(3984), 1, sym_comment, - STATE(4025), 1, - aux_sym_cell_path_repeat1, - STATE(4149), 1, - sym_path, - STATE(4218), 1, - sym_cell_path, - ACTIONS(1721), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1719), 14, + ACTIONS(1766), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1768), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372733,23 +375242,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_DOT_DOT2, - [154425] = 7, - ACTIONS(251), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [152772] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7201), 1, + ACTIONS(7185), 1, anon_sym_DOT2, - STATE(1532), 1, + STATE(1428), 1, sym_path, - STATE(2138), 1, + STATE(1859), 1, sym_cell_path, - STATE(3902), 1, + STATE(3898), 1, aux_sym_cell_path_repeat1, - STATE(3984), 1, + STATE(3985), 1, sym_comment, - ACTIONS(1857), 17, + ACTIONS(1883), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372767,50 +375279,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [154463] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7223), 1, - anon_sym_DOT, - ACTIONS(7225), 1, - aux_sym__immediate_decimal_token2, - STATE(3985), 1, - sym_comment, - ACTIONS(1550), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_record_token2, - ACTIONS(1552), 13, - anon_sym_EQ, - 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, - [154499] = 7, - ACTIONS(251), 1, + [152810] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7201), 1, + ACTIONS(7185), 1, anon_sym_DOT2, - STATE(1532), 1, + STATE(1428), 1, sym_path, - STATE(2136), 1, + STATE(1863), 1, sym_cell_path, - STATE(3902), 1, + STATE(3898), 1, aux_sym_cell_path_repeat1, STATE(3986), 1, sym_comment, - ACTIONS(1923), 17, + ACTIONS(1887), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372828,21 +375310,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [154537] = 7, - ACTIONS(251), 1, + [152848] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym_unquoted_token2, - ACTIONS(1804), 1, - anon_sym_LPAREN2, - ACTIONS(7227), 1, - anon_sym_DOT_DOT2, + ACTIONS(7185), 1, + anon_sym_DOT2, + STATE(1428), 1, + sym_path, + STATE(1864), 1, + sym_cell_path, + STATE(3898), 1, + aux_sym_cell_path_repeat1, STATE(3987), 1, sym_comment, - ACTIONS(7229), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1810), 16, + ACTIONS(1891), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372855,19 +375336,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_LBRACE, anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [154575] = 4, - ACTIONS(251), 1, + [152886] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4962), 1, - anon_sym_DASH2, + ACTIONS(7185), 1, + anon_sym_DOT2, + STATE(1428), 1, + sym_path, + STATE(1866), 1, + sym_cell_path, + STATE(3898), 1, + aux_sym_cell_path_repeat1, STATE(3988), 1, sym_comment, - ACTIONS(4960), 20, - ts_builtin_sym_end, + ACTIONS(1899), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372879,29 +375366,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_DASH_DASH, + anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_as, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [154607] = 7, - ACTIONS(251), 1, + [152924] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1814), 1, - anon_sym_LPAREN2, - ACTIONS(1822), 1, - aux_sym_unquoted_token2, - ACTIONS(7231), 1, - anon_sym_DOT_DOT2, + ACTIONS(7185), 1, + anon_sym_DOT2, + STATE(1428), 1, + sym_path, + STATE(1867), 1, + sym_cell_path, + STATE(3898), 1, + aux_sym_cell_path_repeat1, STATE(3989), 1, sym_comment, - ACTIONS(7233), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1820), 16, + ACTIONS(1903), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372914,56 +375398,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_LBRACE, anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [154645] = 13, - ACTIONS(251), 1, + [152962] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1540), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(7179), 1, - anon_sym_DOLLAR, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7235), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7237), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7239), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7241), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(7221), 1, + anon_sym_DOT2, STATE(3990), 1, sym_comment, - STATE(4600), 1, - sym__immediate_decimal, - ACTIONS(1536), 2, - sym_identifier, - anon_sym_DASH2, - STATE(4978), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1538), 9, - anon_sym_EQ, + STATE(4032), 1, + aux_sym_cell_path_repeat1, + STATE(4150), 1, + sym_path, + STATE(4226), 1, + sym_cell_path, + ACTIONS(1678), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1676), 14, 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, - [154695] = 4, - ACTIONS(251), 1, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [153002] = 7, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(7185), 1, + anon_sym_DOT2, + STATE(1428), 1, + sym_path, + STATE(1869), 1, + sym_cell_path, + STATE(3898), 1, + aux_sym_cell_path_repeat1, STATE(3991), 1, sym_comment, - ACTIONS(1783), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1785), 19, + ACTIONS(1907), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372976,27 +375461,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_LBRACE, anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [154727] = 7, - ACTIONS(251), 1, + [153040] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7201), 1, - anon_sym_DOT2, - STATE(1532), 1, - sym_path, - STATE(2020), 1, - sym_cell_path, - STATE(3902), 1, - aux_sym_cell_path_repeat1, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + ACTIONS(1808), 1, + anon_sym_LPAREN2, + ACTIONS(7223), 1, + anon_sym_DOT_DOT2, STATE(3992), 1, sym_comment, - ACTIONS(1939), 17, + ACTIONS(7225), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1814), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373009,75 +375493,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [154765] = 5, - ACTIONS(251), 1, + [153078] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7243), 1, - anon_sym_QMARK2, + ACTIONS(7227), 1, + anon_sym_DOT, + ACTIONS(7229), 1, + aux_sym__immediate_decimal_token2, STATE(3993), 1, sym_comment, - ACTIONS(966), 3, + ACTIONS(1512), 6, + sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(968), 17, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_record_token2, + ACTIONS(1514), 13, anon_sym_EQ, - sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [154799] = 5, - ACTIONS(251), 1, + [153114] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7245), 1, - anon_sym_QMARK2, + ACTIONS(7185), 1, + anon_sym_DOT2, + STATE(1428), 1, + sym_path, + STATE(2019), 1, + sym_cell_path, + STATE(3898), 1, + aux_sym_cell_path_repeat1, STATE(3994), 1, sym_comment, - ACTIONS(960), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(962), 17, - anon_sym_EQ, - sym_identifier, + ACTIONS(1895), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - 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_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [154833] = 4, - ACTIONS(251), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [153152] = 4, + ACTIONS(247), 1, anon_sym_POUND, STATE(3995), 1, sym_comment, - ACTIONS(1311), 10, + ACTIONS(1290), 10, sym_identifier, anon_sym_DASH2, anon_sym_true, @@ -373088,7 +375574,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(1309), 11, + ACTIONS(1288), 11, anon_sym_EQ, sym__newline, anon_sym_COLON, @@ -373100,18 +375586,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token5, - [154865] = 5, - ACTIONS(251), 1, + [153184] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7154), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(7221), 1, + anon_sym_DOT2, STATE(3996), 1, sym_comment, - ACTIONS(1755), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1757), 18, - ts_builtin_sym_end, + STATE(4032), 1, + aux_sym_cell_path_repeat1, + STATE(4150), 1, + sym_path, + STATE(4197), 1, + sym_cell_path, + ACTIONS(931), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(929), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373123,26 +375615,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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [154899] = 7, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [153224] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7201), 1, + ACTIONS(7221), 1, anon_sym_DOT2, - STATE(1532), 1, - sym_path, - STATE(2021), 1, - sym_cell_path, - STATE(3902), 1, - aux_sym_cell_path_repeat1, STATE(3997), 1, sym_comment, - ACTIONS(1947), 17, + STATE(4032), 1, + aux_sym_cell_path_repeat1, + STATE(4150), 1, + sym_path, + STATE(4216), 1, + sym_cell_path, + ACTIONS(1668), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1666), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373155,24 +375648,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_LBRACE, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [154937] = 4, + anon_sym_DOT_DOT2, + [153264] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3998), 1, sym_comment, - ACTIONS(1682), 6, + ACTIONS(1691), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1680), 15, + ACTIONS(1689), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373188,78 +375678,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [154969] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7247), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7249), 1, - aux_sym__immediate_decimal_token2, - STATE(3999), 1, - sym_comment, - ACTIONS(1542), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_record_token2, - ACTIONS(1544), 13, - anon_sym_EQ, - 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, - [155005] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4994), 1, - anon_sym_DASH2, - STATE(4000), 1, - sym_comment, - ACTIONS(4992), 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_DASH_DASH, - anon_sym_LBRACE, - anon_sym_as, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [155037] = 7, - ACTIONS(251), 1, + [153296] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7201), 1, + ACTIONS(7185), 1, anon_sym_DOT2, - STATE(1532), 1, + STATE(1428), 1, sym_path, - STATE(2008), 1, + STATE(1824), 1, sym_cell_path, - STATE(3902), 1, + STATE(3898), 1, aux_sym_cell_path_repeat1, - STATE(4001), 1, + STATE(3999), 1, sym_comment, - ACTIONS(1919), 17, + ACTIONS(1941), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373277,34 +375709,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [155075] = 13, - ACTIONS(251), 1, + [153334] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1477), 1, + ACTIONS(1457), 1, aux_sym__unquoted_in_record_token2, - ACTIONS(7179), 1, + ACTIONS(7148), 1, anon_sym_DOLLAR, - ACTIONS(7181), 1, + ACTIONS(7150), 1, anon_sym_LPAREN2, - ACTIONS(7235), 1, + ACTIONS(7203), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7237), 1, + ACTIONS(7205), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7239), 1, + ACTIONS(7207), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7241), 1, + ACTIONS(7209), 1, aux_sym__immediate_decimal_token5, - STATE(4002), 1, + STATE(4000), 1, sym_comment, - STATE(4716), 1, + STATE(4579), 1, sym__immediate_decimal, - ACTIONS(1461), 2, + ACTIONS(1441), 2, sym_identifier, anon_sym_DASH2, - STATE(5138), 2, + STATE(4980), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1475), 9, + ACTIONS(1455), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -373314,20 +375746,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [155125] = 7, - ACTIONS(251), 1, + [153384] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7201), 1, + ACTIONS(7185), 1, anon_sym_DOT2, - STATE(1532), 1, + STATE(1428), 1, sym_path, - STATE(2113), 1, + STATE(2084), 1, sym_cell_path, - STATE(3902), 1, + STATE(3898), 1, aux_sym_cell_path_repeat1, - STATE(4003), 1, + STATE(4001), 1, sym_comment, - ACTIONS(1897), 17, + ACTIONS(1963), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373345,78 +375777,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [155163] = 4, - ACTIONS(251), 1, + [153422] = 11, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4004), 1, - sym_comment, - ACTIONS(1755), 2, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + ACTIONS(7231), 1, anon_sym_DOT_DOT2, + ACTIONS(7235), 1, + sym_filesize_unit, + ACTIONS(7237), 1, + sym_duration_unit, + ACTIONS(7239), 1, aux_sym_unquoted_token2, - ACTIONS(1757), 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [155195] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7251), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7253), 1, - aux_sym__immediate_decimal_token2, - STATE(4005), 1, + STATE(4002), 1, sym_comment, - ACTIONS(1713), 4, + STATE(7349), 1, + sym__expr_parenthesized_immediate, + ACTIONS(1651), 2, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, + ACTIONS(7233), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1711), 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, - [155231] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7201), 1, - anon_sym_DOT2, - STATE(1532), 1, - sym_path, - STATE(2103), 1, - sym_cell_path, - STATE(3902), 1, - aux_sym_cell_path_repeat1, - STATE(4006), 1, - sym_comment, - ACTIONS(1943), 17, + ACTIONS(1639), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373428,30 +375812,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_LBRACE, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [155269] = 8, + [153468] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7199), 1, - anon_sym_DOT2, - STATE(4007), 1, + STATE(4003), 1, sym_comment, - STATE(4025), 1, - aux_sym_cell_path_repeat1, - STATE(4149), 1, - sym_path, - STATE(4166), 1, - sym_cell_path, - ACTIONS(1699), 3, + ACTIONS(1514), 6, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1697), 14, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1512), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373466,82 +375839,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [155309] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7201), 1, - anon_sym_DOT2, - STATE(1532), 1, - sym_path, - STATE(2014), 1, - sym_cell_path, - STATE(3902), 1, - aux_sym_cell_path_repeat1, - STATE(4008), 1, - sym_comment, - ACTIONS(1935), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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_LBRACE, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [155347] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7201), 1, - anon_sym_DOT2, - STATE(1532), 1, - sym_path, - STATE(1979), 1, - sym_cell_path, - STATE(3902), 1, - aux_sym_cell_path_repeat1, - STATE(4009), 1, - sym_comment, - ACTIONS(1893), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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_LBRACE, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [155385] = 7, - ACTIONS(251), 1, + aux_sym_unquoted_token2, + [153500] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7201), 1, - anon_sym_DOT2, - STATE(1532), 1, - sym_path, - STATE(2022), 1, - sym_cell_path, - STATE(3902), 1, - aux_sym_cell_path_repeat1, - STATE(4010), 1, + STATE(4004), 1, sym_comment, - ACTIONS(1951), 17, + ACTIONS(1766), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1768), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373554,135 +375861,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_LBRACE, anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [155423] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4011), 1, - sym_comment, - ACTIONS(996), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(998), 17, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [155454] = 6, - ACTIONS(3), 1, + [153532] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7255), 1, - anon_sym_DOT, - ACTIONS(7257), 1, - aux_sym__immediate_decimal_token2, - STATE(4012), 1, - sym_comment, - ACTIONS(1757), 5, - ts_builtin_sym_end, - sym__space, + ACTIONS(1641), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1755), 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, + ACTIONS(7241), 1, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [155489] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4013), 1, + ACTIONS(7245), 1, + sym_filesize_unit, + ACTIONS(7247), 1, + sym_duration_unit, + ACTIONS(7249), 1, + aux_sym__unquoted_in_record_token2, + STATE(4005), 1, sym_comment, - ACTIONS(992), 3, + STATE(7427), 1, + sym__expr_parenthesized_immediate, + ACTIONS(1639), 2, + sym_identifier, anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(994), 17, + ACTIONS(7243), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1651), 10, anon_sym_EQ, - sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [155520] = 4, - ACTIONS(251), 1, + [153577] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4014), 1, + ACTIONS(7251), 1, + aux_sym__immediate_decimal_token2, + STATE(4006), 1, sym_comment, - ACTIONS(988), 3, + ACTIONS(1618), 6, + sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(990), 17, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_record_token2, + ACTIONS(1620), 13, anon_sym_EQ, - sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [155551] = 4, + [153610] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4015), 1, + ACTIONS(7253), 1, + anon_sym_DOT2, + STATE(4007), 1, sym_comment, - ACTIONS(1745), 7, + STATE(4042), 1, + aux_sym_cell_path_repeat1, + STATE(4244), 1, + sym_path, + STATE(4312), 1, + sym_cell_path, + ACTIONS(931), 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(1743), 13, + ACTIONS(929), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373695,50 +375961,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [155582] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7225), 1, - aux_sym__immediate_decimal_token2, - STATE(4016), 1, - sym_comment, - ACTIONS(1550), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_record_token2, - ACTIONS(1552), 13, - anon_sym_EQ, - 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, - [155615] = 6, + [153649] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7259), 1, + ACTIONS(7255), 1, anon_sym_DOT2, - STATE(4149), 1, + STATE(4150), 1, sym_path, - STATE(4017), 2, + STATE(4008), 2, sym_comment, aux_sym_cell_path_repeat1, - ACTIONS(955), 3, + ACTIONS(937), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(953), 14, + ACTIONS(935), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373753,15 +375990,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [155650] = 4, - ACTIONS(251), 1, + [153684] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4018), 1, + STATE(4009), 1, + sym_comment, + ACTIONS(1766), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1768), 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [153715] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4010), 1, sym_comment, - ACTIONS(1755), 2, + ACTIONS(1792), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1757), 18, + ACTIONS(1794), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -373780,19 +376044,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [155681] = 5, + [153746] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7205), 1, + ACTIONS(7258), 1, + anon_sym_DOT, + ACTIONS(7260), 1, aux_sym__immediate_decimal_token2, - STATE(4019), 1, + STATE(4011), 1, sym_comment, - ACTIONS(1757), 4, + ACTIONS(1703), 5, + ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1755), 15, + ACTIONS(1701), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373804,106 +376071,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_DOT_DOT2, aux_sym_unquoted_token2, - [155714] = 12, - ACTIONS(251), 1, + [153781] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7179), 1, - anon_sym_DOLLAR, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7189), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7191), 1, - aux_sym__immediate_decimal_token5, ACTIONS(7262), 1, aux_sym__immediate_decimal_token1, ACTIONS(7264), 1, - aux_sym__immediate_decimal_token3, - STATE(4020), 1, + aux_sym__immediate_decimal_token2, + STATE(4012), 1, sym_comment, - STATE(4973), 1, - sym__immediate_decimal, - ACTIONS(1624), 2, - sym_identifier, - anon_sym_DASH2, - STATE(4972), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1626), 9, - anon_sym_EQ, - 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, - [155761] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7179), 1, - anon_sym_DOLLAR, - ACTIONS(7181), 1, + ACTIONS(1695), 5, + ts_builtin_sym_end, + sym__space, anon_sym_LPAREN2, - ACTIONS(7189), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7191), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7262), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7264), 1, - aux_sym__immediate_decimal_token3, - STATE(4021), 1, - sym_comment, - STATE(4975), 1, - sym__immediate_decimal, - ACTIONS(1654), 2, - sym_identifier, - anon_sym_DASH2, - STATE(4974), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1656), 9, - anon_sym_EQ, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1693), 13, 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_DASH_DASH, - [155808] = 12, - ACTIONS(251), 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_DOT_DOT2, + aux_sym_unquoted_token2, + [153816] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7179), 1, + ACTIONS(7148), 1, anon_sym_DOLLAR, - ACTIONS(7181), 1, + ACTIONS(7150), 1, anon_sym_LPAREN2, - ACTIONS(7189), 1, + ACTIONS(7158), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7191), 1, + ACTIONS(7160), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7262), 1, + ACTIONS(7266), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7264), 1, + ACTIONS(7268), 1, aux_sym__immediate_decimal_token3, - STATE(4022), 1, + STATE(4013), 1, sym_comment, - STATE(4977), 1, + STATE(4995), 1, sym__immediate_decimal, - ACTIONS(1604), 2, + ACTIONS(1588), 2, sym_identifier, anon_sym_DASH2, - STATE(4976), 2, + STATE(4994), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1612), 9, + ACTIONS(1590), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -373913,55 +376137,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [155855] = 11, - ACTIONS(251), 1, + [153863] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1640), 1, - anon_sym_LPAREN2, - ACTIONS(7266), 1, - anon_sym_DOT_DOT2, - ACTIONS(7270), 1, - sym_filesize_unit, - ACTIONS(7272), 1, - sym_duration_unit, - ACTIONS(7274), 1, - aux_sym__unquoted_in_record_token2, - STATE(4023), 1, + STATE(4014), 1, sym_comment, - STATE(7327), 1, - sym__expr_parenthesized_immediate, - ACTIONS(1638), 2, - sym_identifier, + ACTIONS(974), 3, anon_sym_DASH2, - ACTIONS(7268), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1650), 10, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(976), 17, anon_sym_EQ, + sym_identifier, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [155900] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym_unquoted_token2, - ACTIONS(1804), 1, - anon_sym_LPAREN2, - ACTIONS(7276), 1, - anon_sym_DOT_DOT2, - STATE(4024), 1, - sym_comment, - ACTIONS(7278), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1810), 15, + [153894] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4015), 1, + sym_comment, + ACTIONS(1693), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1695), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -373977,22 +376188,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [155937] = 7, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [153925] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7199), 1, - anon_sym_DOT2, - STATE(4017), 1, - aux_sym_cell_path_repeat1, - STATE(4025), 1, + STATE(4016), 1, sym_comment, - STATE(4149), 1, - sym_path, - ACTIONS(951), 3, + ACTIONS(1506), 7, + ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(949), 14, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1504), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374004,22 +376216,56 @@ static const uint16_t 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, - [155974] = 5, + aux_sym_unquoted_token2, + [153956] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7148), 1, + anon_sym_DOLLAR, + ACTIONS(7150), 1, + anon_sym_LPAREN2, + ACTIONS(7158), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7160), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7266), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7268), 1, + aux_sym__immediate_decimal_token3, + STATE(4017), 1, + sym_comment, + STATE(4991), 1, + sym__immediate_decimal, + ACTIONS(1580), 2, + sym_identifier, + anon_sym_DASH2, + STATE(4990), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1582), 9, + anon_sym_EQ, + 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, + [154003] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7280), 1, + ACTIONS(7193), 1, aux_sym__immediate_decimal_token2, - STATE(4026), 1, + STATE(4018), 1, sym_comment, - ACTIONS(1785), 4, + ACTIONS(1703), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1783), 15, + ACTIONS(1701), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374035,16 +376281,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [156007] = 4, - ACTIONS(251), 1, + [154036] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4027), 1, + ACTIONS(7253), 1, + anon_sym_DOT2, + STATE(4019), 1, sym_comment, - ACTIONS(1835), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1837), 18, + STATE(4042), 1, + aux_sym_cell_path_repeat1, + STATE(4244), 1, + sym_path, + STATE(4284), 1, + sym_cell_path, + ACTIONS(1668), 4, ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1666), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374056,24 +376311,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_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_DOT_DOT2, + [154075] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7229), 1, + aux_sym__immediate_decimal_token2, + STATE(4020), 1, + sym_comment, + ACTIONS(1512), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_record_token2, + ACTIONS(1514), 13, + anon_sym_EQ, + 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, - [156038] = 6, - ACTIONS(251), 1, + [154108] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1711), 1, + ACTIONS(1457), 1, aux_sym_unquoted_token2, - ACTIONS(7282), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7284), 1, - aux_sym__immediate_decimal_token2, - STATE(4028), 1, + ACTIONS(1808), 1, + anon_sym_LPAREN2, + ACTIONS(7270), 1, + anon_sym_DOT_DOT2, + STATE(4021), 1, sym_comment, - ACTIONS(1713), 17, + ACTIONS(7272), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1814), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374085,24 +376367,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_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [156073] = 6, - ACTIONS(251), 1, + [154145] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1755), 1, + ACTIONS(1651), 1, + sym__space, + ACTIONS(4608), 1, + anon_sym_DOT_DOT2, + ACTIONS(7175), 1, + sym_filesize_unit, + ACTIONS(7177), 1, + sym_duration_unit, + ACTIONS(7179), 1, aux_sym_unquoted_token2, - ACTIONS(7286), 1, - anon_sym_DOT, - ACTIONS(7288), 1, - aux_sym__immediate_decimal_token2, - STATE(4029), 1, + STATE(4022), 1, sym_comment, - ACTIONS(1757), 17, + ACTIONS(4610), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1639), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374116,19 +376402,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [156108] = 4, - ACTIONS(251), 1, + [154186] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4030), 1, + ACTIONS(5026), 1, + anon_sym_DASH2, + STATE(4023), 1, sym_comment, - ACTIONS(1783), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1785), 18, + ACTIONS(5024), 19, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -374141,28 +376422,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_LBRACK, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [156139] = 6, + [154217] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7290), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7292), 1, - aux_sym__immediate_decimal_token2, - STATE(4031), 1, + ACTIONS(7253), 1, + anon_sym_DOT2, + STATE(4024), 1, sym_comment, - ACTIONS(1713), 5, + STATE(4042), 1, + aux_sym_cell_path_repeat1, + STATE(4244), 1, + sym_path, + STATE(4311), 1, + sym_cell_path, + ACTIONS(1678), 4, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1711), 13, + ACTIONS(1676), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374175,50 +376460,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [156174] = 5, - ACTIONS(251), 1, + [154256] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7294), 1, - aux_sym__immediate_decimal_token2, - STATE(4032), 1, + STATE(4025), 1, sym_comment, - ACTIONS(1680), 6, - sym_identifier, + ACTIONS(982), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_record_token2, - ACTIONS(1682), 13, + anon_sym_DOT2, + ACTIONS(984), 17, anon_sym_EQ, + sym_identifier, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, 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_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [156207] = 7, - ACTIONS(251), 1, + [154287] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1814), 1, - anon_sym_LPAREN2, - ACTIONS(1822), 1, - aux_sym_unquoted_token2, - ACTIONS(7296), 1, - anon_sym_DOT_DOT2, - STATE(4033), 1, + STATE(4026), 1, sym_comment, - ACTIONS(7298), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1820), 15, + ACTIONS(1701), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1703), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -374234,25 +376511,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [156244] = 9, - ACTIONS(3), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [154318] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1650), 1, - sym__space, - ACTIONS(4622), 1, - anon_sym_DOT_DOT2, - ACTIONS(7173), 1, - sym_filesize_unit, - ACTIONS(7175), 1, - sym_duration_unit, - ACTIONS(7177), 1, + ACTIONS(7148), 1, + anon_sym_DOLLAR, + ACTIONS(7150), 1, + anon_sym_LPAREN2, + ACTIONS(7158), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7160), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7266), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7268), 1, + aux_sym__immediate_decimal_token3, + STATE(4027), 1, + sym_comment, + STATE(4993), 1, + sym__immediate_decimal, + ACTIONS(1584), 2, + sym_identifier, + anon_sym_DASH2, + STATE(4992), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1586), 9, + anon_sym_EQ, + 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, + [154365] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1701), 1, aux_sym_unquoted_token2, - STATE(4034), 1, + ACTIONS(7274), 1, + anon_sym_DOT, + ACTIONS(7276), 1, + aux_sym__immediate_decimal_token2, + STATE(4028), 1, sym_comment, - ACTIONS(4624), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1638), 13, + ACTIONS(1703), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374266,12 +376574,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [156285] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [154400] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4029), 1, + sym_comment, + ACTIONS(978), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(980), 17, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [154431] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7148), 1, + anon_sym_DOLLAR, + ACTIONS(7150), 1, + anon_sym_LPAREN2, + ACTIONS(7158), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7160), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7266), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7268), 1, + aux_sym__immediate_decimal_token3, + STATE(4030), 1, + sym_comment, + STATE(4979), 1, + sym__immediate_decimal, + ACTIONS(1522), 2, + sym_identifier, + anon_sym_DASH2, + STATE(4978), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1532), 9, + anon_sym_EQ, + 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, + [154478] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4035), 1, + STATE(4031), 1, sym_comment, - ACTIONS(1544), 7, + ACTIONS(1514), 7, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, @@ -374279,7 +376653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1542), 13, + ACTIONS(1512), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374293,25 +376667,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [156316] = 8, + [154509] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7300), 1, + ACTIONS(7221), 1, anon_sym_DOT2, - STATE(4036), 1, - sym_comment, - STATE(4060), 1, + STATE(4008), 1, aux_sym_cell_path_repeat1, - STATE(4222), 1, + STATE(4032), 1, + sym_comment, + STATE(4150), 1, sym_path, - STATE(4463), 1, - sym_cell_path, - ACTIONS(1721), 4, - ts_builtin_sym_end, + ACTIONS(944), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1719), 12, + ACTIONS(942), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374323,21 +376694,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, - [156355] = 4, - ACTIONS(3), 1, + [154546] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4037), 1, + ACTIONS(5058), 1, + anon_sym_DASH2, + STATE(4033), 1, sym_comment, - ACTIONS(1682), 7, + ACTIONS(5056), 19, 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(1680), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374349,27 +376717,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, - aux_sym_unquoted_token2, - [156386] = 8, - ACTIONS(3), 1, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [154577] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7300), 1, - anon_sym_DOT2, - STATE(4038), 1, + ACTIONS(1818), 1, + anon_sym_LPAREN2, + ACTIONS(1826), 1, + aux_sym_unquoted_token2, + ACTIONS(7278), 1, + anon_sym_DOT_DOT2, + STATE(4034), 1, sym_comment, - STATE(4060), 1, - aux_sym_cell_path_repeat1, - STATE(4222), 1, - sym_path, - STATE(4344), 1, - sym_cell_path, - ACTIONS(945), 4, - ts_builtin_sym_end, - sym__space, + ACTIONS(7280), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(943), 12, + ACTIONS(1824), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374381,26 +376751,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, - [156425] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [154614] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7300), 1, - anon_sym_DOT2, - STATE(4039), 1, + STATE(4035), 1, sym_comment, - STATE(4060), 1, - aux_sym_cell_path_repeat1, - STATE(4222), 1, - sym_path, - STATE(4419), 1, - sym_cell_path, - ACTIONS(1699), 4, + ACTIONS(1620), 7, ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1697), 12, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1618), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374413,55 +376780,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, - [156464] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7179), 1, - anon_sym_DOLLAR, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7189), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7191), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7262), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7264), 1, - aux_sym__immediate_decimal_token3, - STATE(4040), 1, - sym_comment, - STATE(5134), 1, - sym__immediate_decimal, - ACTIONS(1500), 2, - sym_identifier, - anon_sym_DASH2, - STATE(5132), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1510), 9, - anon_sym_EQ, - 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, - [156511] = 4, + aux_sym_unquoted_token2, + [154645] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4041), 1, + ACTIONS(7282), 1, + aux_sym__immediate_decimal_token2, + STATE(4036), 1, sym_comment, - ACTIONS(1552), 7, - ts_builtin_sym_end, + ACTIONS(1768), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1550), 13, + ACTIONS(1766), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374473,18 +376805,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_DOT_DOT2, aux_sym_unquoted_token2, - [156542] = 4, - ACTIONS(251), 1, + [154678] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4042), 1, - sym_comment, - ACTIONS(1711), 2, - anon_sym_DOT_DOT2, + ACTIONS(1693), 1, aux_sym_unquoted_token2, - ACTIONS(1713), 18, - ts_builtin_sym_end, + ACTIONS(7284), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7286), 1, + aux_sym__immediate_decimal_token2, + STATE(4037), 1, + sym_comment, + ACTIONS(1695), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374496,23 +376832,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_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, + [154713] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4038), 1, + sym_comment, + ACTIONS(1691), 7, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [156573] = 5, - ACTIONS(251), 1, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1689), 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, + [154744] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7302), 1, + ACTIONS(7288), 1, anon_sym_DOT_DOT2, - STATE(4043), 1, + STATE(4039), 1, sym_comment, - ACTIONS(7304), 2, + ACTIONS(7290), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2041), 16, + ACTIONS(2049), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374529,25 +376892,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [156605] = 8, - ACTIONS(251), 1, + [154776] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7306), 1, + ACTIONS(4770), 1, anon_sym_DOT2, - STATE(4011), 1, + ACTIONS(7296), 1, + anon_sym_QMARK2, + STATE(1338), 1, + aux_sym_cell_path_repeat1, + STATE(1428), 1, sym_path, - STATE(4044), 1, + STATE(4040), 1, sym_comment, - STATE(4123), 1, - aux_sym_cell_path_repeat1, - STATE(4552), 1, + STATE(4639), 1, sym_cell_path, - ACTIONS(1719), 2, + ACTIONS(7292), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7294), 12, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [154816] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4041), 1, + sym_comment, + ACTIONS(1618), 6, + sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(1721), 13, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_record_token2, + ACTIONS(1620), 13, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -374557,18 +376946,26 @@ 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, - [156643] = 4, + [154846] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(4045), 1, + ACTIONS(7253), 1, + anon_sym_DOT2, + STATE(4042), 1, sym_comment, - ACTIONS(978), 3, + STATE(4058), 1, + aux_sym_cell_path_repeat1, + STATE(4244), 1, + sym_path, + ACTIONS(944), 4, + ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(976), 16, + ACTIONS(942), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374580,24 +376977,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_QMARK2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - [156673] = 4, - ACTIONS(251), 1, + [154882] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4046), 1, + STATE(4043), 1, sym_comment, - ACTIONS(1680), 6, + ACTIONS(1689), 6, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym__unquoted_in_record_token2, - ACTIONS(1682), 13, + ACTIONS(1691), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -374611,49 +377004,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [156703] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7308), 1, - aux_sym__immediate_decimal_token2, - STATE(4047), 1, - sym_comment, - ACTIONS(1785), 5, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1783), 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, - [156735] = 6, - ACTIONS(251), 1, + [154912] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7310), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7312), 1, - aux_sym__immediate_decimal_token2, - STATE(4048), 1, + ACTIONS(7298), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4044), 1, sym_comment, - ACTIONS(1711), 4, - sym_identifier, + STATE(4097), 1, + aux_sym_cell_path_repeat1, + STATE(4478), 1, + sym_cell_path, + ACTIONS(1676), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1713), 13, + ACTIONS(1678), 13, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -374663,19 +377032,47 @@ 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, - [156769] = 4, - ACTIONS(3), 1, + [154950] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4049), 1, + ACTIONS(1693), 1, + aux_sym_unquoted_token2, + ACTIONS(7300), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7302), 1, + aux_sym__immediate_decimal_token2, + STATE(4045), 1, sym_comment, - ACTIONS(986), 3, - sym__space, + ACTIONS(1695), 16, + 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [154984] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7306), 1, + anon_sym_DOT_DOT2, + STATE(4046), 1, + sym_comment, + ACTIONS(7308), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(984), 16, + ACTIONS(7304), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374689,26 +377086,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_DOT2, - [156799] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [155016] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1814), 1, + ACTIONS(1818), 1, anon_sym_LPAREN2, - ACTIONS(1820), 1, + ACTIONS(1824), 1, sym__space, - ACTIONS(1822), 1, + ACTIONS(1826), 1, aux_sym_unquoted_token2, - ACTIONS(7314), 1, + ACTIONS(7310), 1, anon_sym_DOT_DOT2, - STATE(4050), 1, + STATE(4047), 1, sym_comment, - ACTIONS(7316), 2, + ACTIONS(7312), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1812), 13, + ACTIONS(1816), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374722,17 +377119,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [156837] = 4, + [155054] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4770), 1, + anon_sym_DOT2, + ACTIONS(7318), 1, + anon_sym_QMARK2, + STATE(1338), 1, + aux_sym_cell_path_repeat1, + STATE(1428), 1, + sym_path, + STATE(4048), 1, + sym_comment, + STATE(4660), 1, + sym_cell_path, + ACTIONS(7314), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7316), 12, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [155094] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4051), 1, + STATE(4049), 1, sym_comment, - ACTIONS(1757), 4, + ACTIONS(1794), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1755), 15, + ACTIONS(1792), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374748,43 +377176,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [156867] = 4, - ACTIONS(251), 1, + [155124] = 9, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4052), 1, - sym_comment, - ACTIONS(1542), 6, - sym_identifier, - anon_sym_DASH2, + ACTIONS(4608), 1, anon_sym_DOT_DOT2, + ACTIONS(7235), 1, sym_filesize_unit, + ACTIONS(7237), 1, sym_duration_unit, - aux_sym__unquoted_in_record_token2, - ACTIONS(1544), 13, - anon_sym_EQ, - 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, + ACTIONS(7239), 1, + aux_sym_unquoted_token2, + STATE(4050), 1, + sym_comment, + ACTIONS(1651), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4610), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [156897] = 4, + ACTIONS(1639), 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, + [155164] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4053), 1, + ACTIONS(7320), 1, + aux_sym__immediate_decimal_token2, + STATE(4051), 1, sym_comment, - ACTIONS(1837), 4, + ACTIONS(1768), 5, + ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1835), 15, + ACTIONS(1766), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374796,49 +377232,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_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [156927] = 4, - ACTIONS(251), 1, + [155196] = 14, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4054), 1, - sym_comment, - ACTIONS(1743), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_record_token2, - ACTIONS(1745), 13, + ACTIONS(2632), 1, + anon_sym_COMMA, + ACTIONS(7324), 1, anon_sym_EQ, + ACTIONS(7326), 1, sym__newline, - anon_sym_PIPE, + ACTIONS(7328), 1, anon_sym_COLON, + ACTIONS(7330), 1, + anon_sym_LPAREN, + ACTIONS(7332), 1, + anon_sym_DASH2, + STATE(4052), 1, + sym_comment, + STATE(4241), 1, + sym_flag_capsule, + STATE(4242), 1, + aux_sym_parameter_repeat1, + STATE(5147), 1, + aux_sym_parameter_repeat2, + STATE(6163), 1, + aux_sym_shebang_repeat1, + STATE(4971), 2, + sym_param_type, + sym_param_value, + ACTIONS(7322), 7, + sym_identifier, + 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, - [156957] = 4, - ACTIONS(251), 1, + [155246] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4055), 1, + ACTIONS(7334), 1, + anon_sym_DOT, + ACTIONS(7336), 1, + aux_sym__immediate_decimal_token2, + STATE(4053), 1, sym_comment, - ACTIONS(1550), 6, + ACTIONS(1701), 4, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, aux_sym__unquoted_in_record_token2, - ACTIONS(1552), 13, + ACTIONS(1703), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -374852,17 +377298,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [156987] = 4, + [155280] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4056), 1, - sym_comment, - ACTIONS(1713), 4, - sym__space, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + ACTIONS(1808), 1, anon_sym_LPAREN2, + ACTIONS(1814), 1, + sym__space, + ACTIONS(7338), 1, + anon_sym_DOT_DOT2, + STATE(4054), 1, + sym_comment, + ACTIONS(7340), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1711), 15, + ACTIONS(1806), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374876,21 +377328,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, - aux_sym_unquoted_token2, - [157017] = 6, - ACTIONS(251), 1, + [155318] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1711), 1, - aux_sym_unquoted_token2, - ACTIONS(7318), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7320), 1, + ACTIONS(7260), 1, aux_sym__immediate_decimal_token2, - STATE(4057), 1, + STATE(4055), 1, sym_comment, - ACTIONS(1713), 16, + ACTIONS(1703), 5, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1701), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374902,20 +377353,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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [157051] = 4, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [155350] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4058), 1, + STATE(4056), 1, sym_comment, - ACTIONS(974), 3, + ACTIONS(966), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(972), 16, + ACTIONS(964), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374932,23 +377381,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_DOT_DOT2, anon_sym_DOT2, - [157081] = 8, - ACTIONS(3), 1, + [155380] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym_unquoted_token2, - ACTIONS(1804), 1, - anon_sym_LPAREN2, - ACTIONS(1810), 1, - sym__space, - ACTIONS(7322), 1, + ACTIONS(7306), 1, anon_sym_DOT_DOT2, - STATE(4059), 1, + STATE(4057), 1, sym_comment, - ACTIONS(7324), 2, + ACTIONS(7308), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1802), 13, + ACTIONS(7304), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374962,23 +377405,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [157119] = 7, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [155412] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7300), 1, + ACTIONS(7342), 1, anon_sym_DOT2, - STATE(4060), 1, + STATE(4244), 1, + sym_path, + STATE(4058), 2, sym_comment, - STATE(4071), 1, aux_sym_cell_path_repeat1, - STATE(4222), 1, - sym_path, - ACTIONS(951), 4, + ACTIONS(937), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(949), 12, + ACTIONS(935), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374991,46 +377436,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - [157155] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7306), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4061), 1, - sym_comment, - STATE(4123), 1, - aux_sym_cell_path_repeat1, - STATE(4551), 1, - sym_cell_path, - ACTIONS(1697), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1699), 13, - 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, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [157193] = 4, + [155446] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4062), 1, + STATE(4059), 1, sym_comment, - ACTIONS(982), 3, + ACTIONS(958), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(980), 16, + ACTIONS(956), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375047,18 +377462,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_DOT_DOT2, anon_sym_DOT2, - [157223] = 6, - ACTIONS(251), 1, + [155476] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7345), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7347), 1, + aux_sym__immediate_decimal_token2, + STATE(4060), 1, + sym_comment, + ACTIONS(1693), 4, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1695), 13, + anon_sym_EQ, + 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, + [155510] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1755), 1, + ACTIONS(1701), 1, aux_sym_unquoted_token2, - ACTIONS(7326), 1, + ACTIONS(7349), 1, anon_sym_DOT, - ACTIONS(7328), 1, + ACTIONS(7351), 1, aux_sym__immediate_decimal_token2, - STATE(4063), 1, + STATE(4061), 1, sym_comment, - ACTIONS(1757), 16, + ACTIONS(1703), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -375075,18 +377518,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [157257] = 5, - ACTIONS(3), 1, + [155544] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7330), 1, - anon_sym_QMARK2, - STATE(4064), 1, + ACTIONS(1701), 1, + aux_sym_unquoted_token2, + ACTIONS(7276), 1, + aux_sym__immediate_decimal_token2, + STATE(4062), 1, sym_comment, - ACTIONS(968), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(966), 15, + ACTIONS(1703), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375100,22 +377541,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_DOT2, - [157289] = 5, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [155576] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7257), 1, + ACTIONS(1766), 1, + aux_sym_unquoted_token2, + ACTIONS(7353), 1, aux_sym__immediate_decimal_token2, - STATE(4065), 1, + STATE(4063), 1, sym_comment, - ACTIONS(1757), 5, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1755), 13, + ACTIONS(1768), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375127,20 +377566,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, - aux_sym_unquoted_token2, - [157321] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [155608] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7332), 1, - anon_sym_QMARK2, - STATE(4066), 1, + ACTIONS(7306), 1, + anon_sym_DOT_DOT2, + STATE(4064), 1, sym_comment, - ACTIONS(962), 3, - sym__space, + ACTIONS(7308), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(960), 15, + ACTIONS(7304), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375154,25 +377596,26 @@ 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_DOT2, - [157353] = 8, - ACTIONS(251), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [155640] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7306), 1, + ACTIONS(7298), 1, anon_sym_DOT2, - STATE(4011), 1, + STATE(4025), 1, sym_path, - STATE(4067), 1, + STATE(4065), 1, sym_comment, - STATE(4123), 1, + STATE(4097), 1, aux_sym_cell_path_repeat1, - STATE(4502), 1, + STATE(4471), 1, sym_cell_path, - ACTIONS(943), 2, + ACTIONS(929), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(945), 13, + ACTIONS(931), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -375186,79 +377629,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [157391] = 5, - ACTIONS(251), 1, + [155678] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1755), 1, - aux_sym_unquoted_token2, - ACTIONS(7288), 1, - aux_sym__immediate_decimal_token2, - STATE(4068), 1, + STATE(4066), 1, sym_comment, - ACTIONS(1757), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [157423] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2558), 1, - anon_sym_COMMA, - ACTIONS(7336), 1, + ACTIONS(1512), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_record_token2, + ACTIONS(1514), 13, anon_sym_EQ, - ACTIONS(7338), 1, sym__newline, - ACTIONS(7340), 1, - anon_sym_COLON, - ACTIONS(7342), 1, - anon_sym_LPAREN, - ACTIONS(7344), 1, - anon_sym_DASH2, - STATE(4069), 1, - sym_comment, - STATE(4225), 1, - sym_flag_capsule, - STATE(4227), 1, - aux_sym_parameter_repeat1, - STATE(5149), 1, - aux_sym_parameter_repeat2, - STATE(6546), 1, - aux_sym_shebang_repeat1, - STATE(5101), 2, - sym_param_type, - sym_param_value, - ACTIONS(7334), 7, - sym_identifier, 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, - [157473] = 5, - ACTIONS(251), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [155708] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1783), 1, - aux_sym_unquoted_token2, - ACTIONS(7346), 1, - aux_sym__immediate_decimal_token2, - STATE(4070), 1, + STATE(4067), 1, sym_comment, - ACTIONS(1785), 17, + ACTIONS(1695), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1693), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375272,26 +377679,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [157505] = 6, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [155738] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7348), 1, - anon_sym_DOT2, - STATE(4222), 1, - sym_path, - STATE(4071), 2, + ACTIONS(7355), 1, + anon_sym_QMARK2, + STATE(4068), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(955), 4, - ts_builtin_sym_end, + ACTIONS(952), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(953), 12, + ACTIONS(950), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375303,23 +377704,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_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - [157539] = 6, - ACTIONS(251), 1, + anon_sym_DOT2, + [155770] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7351), 1, - anon_sym_DOT, - ACTIONS(7353), 1, - aux_sym__immediate_decimal_token2, - STATE(4072), 1, + ACTIONS(7298), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4069), 1, sym_comment, - ACTIONS(1755), 4, - sym_identifier, + STATE(4097), 1, + aux_sym_cell_path_repeat1, + STATE(4547), 1, + sym_cell_path, + ACTIONS(1666), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1757), 13, + ACTIONS(1668), 13, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -375329,20 +377736,20 @@ 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, - [157573] = 4, + [155808] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4073), 1, + ACTIONS(7357), 1, + anon_sym_QMARK2, + STATE(4070), 1, sym_comment, - ACTIONS(1785), 4, + ACTIONS(970), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1783), 15, + ACTIONS(968), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375357,18 +377764,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [157603] = 5, - ACTIONS(251), 1, + anon_sym_DOT2, + [155840] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7357), 1, - anon_sym_DOT_DOT2, - STATE(4074), 1, + STATE(4071), 1, sym_comment, - ACTIONS(7359), 2, + ACTIONS(948), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7355), 16, + ACTIONS(946), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375382,20 +377788,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [157635] = 5, - ACTIONS(251), 1, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [155870] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7357), 1, + STATE(4072), 1, + sym_comment, + ACTIONS(962), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(960), 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_QMARK2, anon_sym_DOT_DOT2, - STATE(4075), 1, + anon_sym_DOT2, + [155900] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4073), 1, sym_comment, - ACTIONS(7359), 2, + ACTIONS(1768), 4, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1012), 16, + ACTIONS(1766), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375409,20 +377841,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [157667] = 5, - ACTIONS(251), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [155930] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4074), 1, + sym_comment, + ACTIONS(1504), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_record_token2, + ACTIONS(1506), 13, + anon_sym_EQ, + 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, + [155960] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7361), 1, + ACTIONS(7306), 1, anon_sym_DOT_DOT2, - STATE(4076), 1, + STATE(4075), 1, sym_comment, - ACTIONS(7363), 2, + ACTIONS(7308), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2049), 16, + ACTIONS(998), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375439,17 +377896,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [157699] = 5, - ACTIONS(251), 1, + [155992] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7365), 1, + ACTIONS(7359), 1, anon_sym_DOT_DOT2, - STATE(4077), 1, + STATE(4076), 1, sym_comment, - ACTIONS(7367), 2, + ACTIONS(7361), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2025), 16, + ACTIONS(2036), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375466,17 +377923,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [157731] = 5, - ACTIONS(251), 1, + [156024] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7369), 1, + ACTIONS(7363), 1, anon_sym_DOT_DOT2, - STATE(4078), 1, + STATE(4077), 1, sym_comment, - ACTIONS(7371), 2, + ACTIONS(7365), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2033), 16, + ACTIONS(1983), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375493,17 +377950,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [157763] = 5, - ACTIONS(251), 1, + [156056] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7357), 1, + ACTIONS(7367), 1, anon_sym_DOT_DOT2, - STATE(4079), 1, + STATE(4078), 1, sym_comment, - ACTIONS(7359), 2, + ACTIONS(7369), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7355), 16, + ACTIONS(1991), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375520,26 +377977,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [157795] = 9, + [156088] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4622), 1, - anon_sym_DOT_DOT2, - ACTIONS(7211), 1, - sym_filesize_unit, - ACTIONS(7213), 1, - sym_duration_unit, - ACTIONS(7215), 1, - aux_sym_unquoted_token2, - STATE(4080), 1, + STATE(4079), 1, sym_comment, - ACTIONS(1650), 2, - ts_builtin_sym_end, + ACTIONS(1703), 4, sym__space, - ACTIONS(4624), 2, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1638), 11, + ACTIONS(1701), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375551,17 +377999,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, - [157835] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7357), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - STATE(4081), 1, + aux_sym_unquoted_token2, + [156118] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7371), 1, + anon_sym_DOT, + ACTIONS(7373), 1, + aux_sym__immediate_decimal_token2, + STATE(4080), 1, sym_comment, - ACTIONS(7359), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7355), 16, + ACTIONS(1703), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1701), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375575,25 +378029,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [157867] = 8, + aux_sym_unquoted_token2, + [156151] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1857), 1, + ACTIONS(1933), 1, sym__space, - ACTIONS(7199), 1, + ACTIONS(7221), 1, anon_sym_DOT2, - STATE(4025), 1, + STATE(4032), 1, aux_sym_cell_path_repeat1, - STATE(4082), 1, + STATE(4081), 1, sym_comment, - STATE(4149), 1, + STATE(4150), 1, sym_path, - STATE(4666), 1, + STATE(4694), 1, sym_cell_path, - ACTIONS(1855), 13, + ACTIONS(1931), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375607,24 +378059,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [157904] = 8, - ACTIONS(3), 1, + [156188] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5689), 1, + anon_sym_DASH2, + STATE(4082), 1, + sym_comment, + ACTIONS(5691), 17, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [156217] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1477), 1, + ACTIONS(1562), 1, aux_sym_unquoted_token2, - ACTIONS(1804), 1, + ACTIONS(2170), 1, anon_sym_LPAREN2, - ACTIONS(7373), 1, - anon_sym_DOT_DOT2, STATE(4083), 1, sym_comment, - ACTIONS(1810), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7375), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1802), 11, + ACTIONS(2172), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375636,18 +378105,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, - [157941] = 5, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [156248] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7377), 1, - anon_sym_DOT_DOT2, + ACTIONS(4452), 1, + anon_sym_LPAREN2, STATE(4084), 1, sym_comment, - ACTIONS(7379), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7355), 15, - ts_builtin_sym_end, + STATE(7383), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7375), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375659,21 +378131,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_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [157972] = 4, + [156279] = 8, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1903), 1, + sym__space, + ACTIONS(7221), 1, + anon_sym_DOT2, + STATE(4032), 1, + aux_sym_cell_path_repeat1, STATE(4085), 1, sym_comment, - ACTIONS(1837), 5, + STATE(4150), 1, + sym_path, + STATE(4656), 1, + sym_cell_path, + ACTIONS(1901), 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, + [156316] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5651), 1, + anon_sym_DASH2, + STATE(4086), 1, + sym_comment, + ACTIONS(5653), 17, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [156345] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4087), 1, + sym_comment, + ACTIONS(1703), 5, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1835), 13, + ACTIONS(1701), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375687,16 +378215,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [158001] = 5, - ACTIONS(251), 1, + [156374] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1814), 1, + ACTIONS(2192), 1, anon_sym_LPAREN2, - ACTIONS(1822), 1, + ACTIONS(2196), 1, aux_sym_unquoted_token2, - STATE(4086), 1, + STATE(4088), 1, sym_comment, - ACTIONS(1820), 16, + ACTIONS(2194), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375713,22 +378241,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [158032] = 8, - ACTIONS(3), 1, + [156405] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1951), 1, - sym__space, - ACTIONS(7199), 1, + ACTIONS(5675), 1, + anon_sym_DASH2, + STATE(4089), 1, + sym_comment, + ACTIONS(5677), 17, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [156434] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4770), 1, anon_sym_DOT2, - STATE(4025), 1, + STATE(1338), 1, aux_sym_cell_path_repeat1, - STATE(4087), 1, - sym_comment, - STATE(4149), 1, + STATE(1428), 1, sym_path, - STATE(4611), 1, + STATE(4090), 1, + sym_comment, + STATE(4664), 1, sym_cell_path, - ACTIONS(1949), 13, + ACTIONS(7377), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7379), 12, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [156471] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4091), 1, + sym_comment, + ACTIONS(1695), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1693), 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, + [156500] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7381), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7383), 1, + aux_sym__immediate_decimal_token2, + STATE(4092), 1, + sym_comment, + ACTIONS(1695), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1693), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375742,20 +378346,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [158069] = 6, + aux_sym_unquoted_token2, + [156533] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2206), 1, + ACTIONS(2067), 1, anon_sym_LPAREN2, - ACTIONS(2208), 1, + ACTIONS(2071), 1, aux_sym_unquoted_token4, - STATE(4088), 1, + STATE(4093), 1, sym_comment, - ACTIONS(1016), 3, + ACTIONS(2065), 3, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(1012), 13, + ACTIONS(2069), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375769,22 +378374,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [158102] = 8, - ACTIONS(3), 1, + [156566] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1847), 1, - sym__space, - ACTIONS(7199), 1, - anon_sym_DOT2, - STATE(4025), 1, - aux_sym_cell_path_repeat1, - STATE(4089), 1, + ACTIONS(7385), 1, + anon_sym_DOT_DOT2, + STATE(4094), 1, sym_comment, - STATE(4149), 1, - sym_path, - STATE(4706), 1, - sym_cell_path, - ACTIONS(1845), 13, + ACTIONS(7387), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7304), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375796,21 +378397,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, - [158139] = 5, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [156597] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7381), 1, - anon_sym_QMARK2, - STATE(4090), 1, + ACTIONS(1701), 1, + aux_sym_unquoted_token2, + ACTIONS(7351), 1, + aux_sym__immediate_decimal_token2, + STATE(4095), 1, sym_comment, - ACTIONS(968), 4, + ACTIONS(1703), 16, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(966), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375822,24 +378422,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_DOT_DOT2, - anon_sym_DOT2, - [158170] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [156628] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1955), 1, + ACTIONS(1841), 1, sym__space, - ACTIONS(7199), 1, + ACTIONS(7221), 1, anon_sym_DOT2, - STATE(4025), 1, + STATE(4032), 1, aux_sym_cell_path_repeat1, - STATE(4091), 1, + STATE(4096), 1, sym_comment, - STATE(4149), 1, + STATE(4150), 1, sym_path, - STATE(4612), 1, + STATE(4580), 1, sym_cell_path, - ACTIONS(1953), 13, + ACTIONS(1839), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375853,19 +378455,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [158207] = 5, - ACTIONS(3), 1, + [156665] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7383), 1, - anon_sym_QMARK2, - STATE(4092), 1, + ACTIONS(7298), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4097), 1, sym_comment, - ACTIONS(962), 4, - ts_builtin_sym_end, - sym__space, + STATE(4156), 1, + aux_sym_cell_path_repeat1, + ACTIONS(942), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(944), 13, + 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, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(960), 13, + [156700] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(4098), 1, + sym_comment, + STATE(7383), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7375), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375877,24 +378504,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_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [156731] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7385), 1, anon_sym_DOT_DOT2, - anon_sym_DOT2, - [158238] = 8, + STATE(4099), 1, + sym_comment, + ACTIONS(7387), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(998), 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_and2, + anon_sym_xor2, + anon_sym_or2, + [156762] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1959), 1, + ACTIONS(1895), 1, sym__space, - ACTIONS(7199), 1, + ACTIONS(7221), 1, anon_sym_DOT2, - STATE(4025), 1, + STATE(4032), 1, aux_sym_cell_path_repeat1, - STATE(4093), 1, + STATE(4100), 1, sym_comment, - STATE(4149), 1, + STATE(4150), 1, sym_path, - STATE(4613), 1, + STATE(4629), 1, sym_cell_path, - ACTIONS(1957), 13, + ACTIONS(1893), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375908,20 +378564,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [158275] = 6, + [156799] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4770), 1, + anon_sym_DOT2, + STATE(1338), 1, + aux_sym_cell_path_repeat1, + STATE(1428), 1, + sym_path, + STATE(4101), 1, + sym_comment, + STATE(4689), 1, + sym_cell_path, + ACTIONS(7389), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7391), 12, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [156836] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2130), 1, + ACTIONS(2061), 1, anon_sym_LPAREN2, - ACTIONS(2134), 1, + ACTIONS(2063), 1, aux_sym_unquoted_token4, - STATE(4094), 1, + STATE(4102), 1, sym_comment, - ACTIONS(2128), 3, + ACTIONS(1002), 3, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(2132), 13, + ACTIONS(998), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375935,22 +378620,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [158308] = 8, + [156869] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1963), 1, + ACTIONS(1891), 1, sym__space, - ACTIONS(7199), 1, + ACTIONS(7221), 1, anon_sym_DOT2, - STATE(4025), 1, + STATE(4032), 1, aux_sym_cell_path_repeat1, - STATE(4095), 1, + STATE(4103), 1, sym_comment, - STATE(4149), 1, + STATE(4150), 1, sym_path, - STATE(4614), 1, + STATE(4682), 1, sym_cell_path, - ACTIONS(1961), 13, + ACTIONS(1889), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375964,47 +378649,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [158345] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5679), 1, - anon_sym_DASH2, - STATE(4096), 1, - sym_comment, - ACTIONS(5681), 17, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [158374] = 8, + [156906] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1967), 1, + ACTIONS(1849), 1, sym__space, - ACTIONS(7199), 1, + ACTIONS(7221), 1, anon_sym_DOT2, - STATE(4025), 1, + STATE(4032), 1, aux_sym_cell_path_repeat1, - STATE(4097), 1, + STATE(4104), 1, sym_comment, - STATE(4149), 1, + STATE(4150), 1, sym_path, - STATE(4615), 1, + STATE(4593), 1, sym_cell_path, - ACTIONS(1965), 13, + ACTIONS(1847), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376018,17 +378678,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [158411] = 4, + [156943] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4098), 1, + STATE(4105), 1, sym_comment, - ACTIONS(2148), 4, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - aux_sym_unquoted_token4, - ACTIONS(2150), 14, + ACTIONS(1794), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1792), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376040,25 +378701,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_LPAREN2, - [158440] = 8, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [156972] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1971), 1, - sym__space, - ACTIONS(7199), 1, - anon_sym_DOT2, - STATE(4025), 1, - aux_sym_cell_path_repeat1, - STATE(4099), 1, + ACTIONS(1818), 1, + anon_sym_LPAREN2, + ACTIONS(1826), 1, + aux_sym_unquoted_token2, + STATE(4106), 1, sym_comment, - STATE(4149), 1, - sym_path, - STATE(4616), 1, - sym_cell_path, - ACTIONS(1969), 13, + ACTIONS(2166), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376072,22 +378726,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [158477] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [157003] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4770), 1, + anon_sym_DOT2, + STATE(1338), 1, + aux_sym_cell_path_repeat1, + STATE(1358), 1, + sym_cell_path, + STATE(1428), 1, + sym_path, + STATE(4107), 1, + sym_comment, + ACTIONS(929), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(931), 12, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [157040] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1981), 1, + ACTIONS(1963), 1, sym__space, - ACTIONS(7199), 1, + ACTIONS(7221), 1, anon_sym_DOT2, - STATE(4025), 1, + STATE(4032), 1, aux_sym_cell_path_repeat1, - STATE(4100), 1, + STATE(4108), 1, sym_comment, - STATE(4149), 1, + STATE(4150), 1, sym_path, - STATE(4617), 1, + STATE(4587), 1, sym_cell_path, - ACTIONS(1979), 13, + ACTIONS(1961), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376101,22 +378787,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [158514] = 8, + [157077] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7385), 1, + anon_sym_DOT_DOT2, + STATE(4109), 1, + sym_comment, + ACTIONS(7387), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7304), 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_and2, + anon_sym_xor2, + anon_sym_or2, + [157108] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1907), 1, + ACTIONS(1855), 1, sym__space, - ACTIONS(7199), 1, + ACTIONS(7221), 1, anon_sym_DOT2, - STATE(4025), 1, + STATE(4032), 1, aux_sym_cell_path_repeat1, - STATE(4101), 1, + STATE(4110), 1, sym_comment, - STATE(4149), 1, + STATE(4150), 1, sym_path, - STATE(4618), 1, + STATE(4610), 1, sym_cell_path, - ACTIONS(1905), 13, + ACTIONS(1853), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376130,17 +378842,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [158551] = 4, - ACTIONS(3), 1, + [157145] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4102), 1, + ACTIONS(7393), 1, + anon_sym_DOT_DOT2, + STATE(4111), 1, sym_comment, - ACTIONS(978), 4, - ts_builtin_sym_end, - sym__space, + ACTIONS(7395), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(976), 14, + ACTIONS(2049), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376152,25 +378865,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_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [158580] = 8, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [157176] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7199), 1, - anon_sym_DOT2, - ACTIONS(7387), 1, - sym__space, - STATE(4025), 1, - aux_sym_cell_path_repeat1, - STATE(4103), 1, + ACTIONS(1818), 1, + anon_sym_LPAREN2, + ACTIONS(1826), 1, + aux_sym_unquoted_token2, + STATE(4112), 1, sym_comment, - STATE(4149), 1, - sym_path, - STATE(4707), 1, - sym_cell_path, - ACTIONS(7385), 13, + ACTIONS(1824), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376184,45 +378891,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [158617] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5687), 1, - anon_sym_DASH2, - STATE(4104), 1, - sym_comment, - ACTIONS(5689), 17, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [158646] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2138), 1, - anon_sym_LPAREN2, - ACTIONS(2142), 1, - aux_sym_unquoted_token4, - STATE(4105), 1, - sym_comment, - ACTIONS(2136), 3, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(2140), 13, + [157207] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1907), 1, + sym__space, + ACTIONS(7221), 1, + anon_sym_DOT2, + STATE(4032), 1, + aux_sym_cell_path_repeat1, + STATE(4113), 1, + sym_comment, + STATE(4150), 1, + sym_path, + STATE(4658), 1, + sym_cell_path, + ACTIONS(1905), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376236,17 +378923,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [158679] = 5, - ACTIONS(251), 1, + [157244] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7377), 1, + ACTIONS(7397), 1, anon_sym_DOT_DOT2, - STATE(4106), 1, + STATE(4114), 1, sym_comment, - ACTIONS(7379), 2, + ACTIONS(7399), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7355), 15, + ACTIONS(2036), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -376262,45 +378949,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [158710] = 4, - ACTIONS(251), 1, + [157275] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5691), 1, - anon_sym_DASH2, - STATE(4107), 1, + ACTIONS(7401), 1, + anon_sym_DOT_DOT2, + STATE(4115), 1, sym_comment, - ACTIONS(5693), 17, - anon_sym_EQ, - sym_identifier, + ACTIONS(7403), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1983), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [158739] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2138), 1, - anon_sym_LPAREN2, - ACTIONS(2142), 1, - aux_sym_unquoted_token4, - STATE(4108), 1, - sym_comment, - ACTIONS(2144), 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, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(2146), 13, + [157306] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7405), 1, + anon_sym_DOT_DOT2, + STATE(4116), 1, + sym_comment, + ACTIONS(7407), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1991), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376312,24 +378998,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, - [158772] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [157337] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1919), 1, + ACTIONS(1941), 1, sym__space, - ACTIONS(7199), 1, + ACTIONS(7221), 1, anon_sym_DOT2, - STATE(4025), 1, + STATE(4032), 1, aux_sym_cell_path_repeat1, - STATE(4109), 1, + STATE(4117), 1, sym_comment, - STATE(4149), 1, + STATE(4150), 1, sym_path, - STATE(4605), 1, + STATE(4558), 1, sym_cell_path, - ACTIONS(1917), 13, + ACTIONS(1939), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376343,17 +379030,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [158809] = 4, + [157374] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4110), 1, - sym_comment, - ACTIONS(986), 4, - ts_builtin_sym_end, + ACTIONS(1871), 1, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(984), 14, + ACTIONS(7221), 1, + anon_sym_DOT2, + STATE(4032), 1, + aux_sym_cell_path_repeat1, + STATE(4118), 1, + sym_comment, + STATE(4150), 1, + sym_path, + STATE(4633), 1, + sym_cell_path, + ACTIONS(1869), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376365,25 +379057,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_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [158838] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + [157411] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1927), 1, + ACTIONS(1911), 1, sym__space, - ACTIONS(7199), 1, + ACTIONS(7221), 1, anon_sym_DOT2, - STATE(4025), 1, + STATE(4032), 1, aux_sym_cell_path_repeat1, - STATE(4111), 1, + STATE(4119), 1, sym_comment, - STATE(4149), 1, + STATE(4150), 1, sym_path, - STATE(4606), 1, + STATE(4577), 1, sym_cell_path, - ACTIONS(1925), 13, + ACTIONS(1909), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376397,22 +379088,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [158875] = 8, + [157448] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1877), 1, - sym__space, - ACTIONS(7199), 1, - anon_sym_DOT2, - STATE(4025), 1, - aux_sym_cell_path_repeat1, - STATE(4112), 1, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + ACTIONS(1808), 1, + anon_sym_LPAREN2, + ACTIONS(7409), 1, + anon_sym_DOT_DOT2, + STATE(4120), 1, sym_comment, - STATE(4149), 1, - sym_path, - STATE(4674), 1, - sym_cell_path, - ACTIONS(1875), 13, + ACTIONS(1814), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7411), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1806), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376424,18 +379117,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, - [158912] = 5, - ACTIONS(251), 1, + [157485] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(4113), 1, + STATE(4121), 1, sym_comment, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7389), 16, + ACTIONS(966), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(964), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376447,27 +379139,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, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [158943] = 8, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [157514] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1897), 1, + ACTIONS(1879), 1, sym__space, - ACTIONS(7199), 1, + ACTIONS(7221), 1, anon_sym_DOT2, - STATE(4025), 1, + STATE(4032), 1, aux_sym_cell_path_repeat1, - STATE(4114), 1, + STATE(4122), 1, sym_comment, - STATE(4149), 1, + STATE(4150), 1, sym_path, - STATE(4648), 1, + STATE(4665), 1, sym_cell_path, - ACTIONS(1895), 13, + ACTIONS(1877), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376481,18 +379171,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [158980] = 5, - ACTIONS(251), 1, + [157551] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7377), 1, - anon_sym_DOT_DOT2, - STATE(4115), 1, + ACTIONS(7413), 1, + anon_sym_QMARK2, + STATE(4123), 1, sym_comment, - ACTIONS(7379), 2, + ACTIONS(952), 4, + ts_builtin_sym_end, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1012), 15, - ts_builtin_sym_end, + ACTIONS(950), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376504,25 +379195,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_and2, - anon_sym_xor2, - anon_sym_or2, - [159011] = 8, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [157582] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1931), 1, + ACTIONS(1899), 1, sym__space, - ACTIONS(7199), 1, + ACTIONS(7221), 1, anon_sym_DOT2, - STATE(4025), 1, + STATE(4032), 1, aux_sym_cell_path_repeat1, - STATE(4116), 1, + STATE(4124), 1, sym_comment, - STATE(4149), 1, + STATE(4150), 1, sym_path, - STATE(4607), 1, + STATE(4715), 1, sym_cell_path, - ACTIONS(1929), 13, + ACTIONS(1897), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376536,22 +379226,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [159048] = 8, + [157619] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7336), 1, + aux_sym__immediate_decimal_token2, + STATE(4125), 1, + sym_comment, + ACTIONS(1701), 4, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1703), 13, + anon_sym_EQ, + 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, + [157650] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1985), 1, + ACTIONS(1971), 1, sym__space, - ACTIONS(7199), 1, + ACTIONS(7221), 1, anon_sym_DOT2, - STATE(4025), 1, + STATE(4032), 1, aux_sym_cell_path_repeat1, - STATE(4117), 1, + STATE(4126), 1, sym_comment, - STATE(4149), 1, + STATE(4150), 1, sym_path, - STATE(4619), 1, + STATE(4667), 1, sym_cell_path, - ACTIONS(1983), 13, + ACTIONS(1969), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376565,16 +379281,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [159085] = 5, - ACTIONS(251), 1, + [157687] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1540), 1, + ACTIONS(1693), 1, aux_sym_unquoted_token2, - ACTIONS(2226), 1, - anon_sym_LPAREN2, - STATE(4118), 1, + STATE(4127), 1, sym_comment, - ACTIONS(2228), 16, + ACTIONS(1695), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376591,53 +379305,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [159116] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1943), 1, - sym__space, - ACTIONS(7199), 1, - anon_sym_DOT2, - STATE(4025), 1, - aux_sym_cell_path_repeat1, - STATE(4119), 1, - sym_comment, - STATE(4149), 1, - sym_path, - STATE(4598), 1, - sym_cell_path, - ACTIONS(1941), 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, - [159153] = 8, + anon_sym_LPAREN2, + [157716] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1814), 1, - anon_sym_LPAREN2, - ACTIONS(1822), 1, - aux_sym_unquoted_token2, - ACTIONS(7391), 1, - anon_sym_DOT_DOT2, - STATE(4120), 1, + ACTIONS(7415), 1, + anon_sym_QMARK2, + STATE(4128), 1, sym_comment, - ACTIONS(1820), 2, + ACTIONS(970), 4, ts_builtin_sym_end, sym__space, - ACTIONS(7393), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1812), 11, + ACTIONS(968), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376649,47 +379330,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, - [159190] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5695), 1, - anon_sym_DASH2, - STATE(4121), 1, - sym_comment, - ACTIONS(5697), 17, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [159219] = 8, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [157747] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1935), 1, + ACTIONS(1835), 1, sym__space, - ACTIONS(7199), 1, + ACTIONS(7221), 1, anon_sym_DOT2, - STATE(4025), 1, + STATE(4032), 1, aux_sym_cell_path_repeat1, - STATE(4122), 1, + STATE(4129), 1, sym_comment, - STATE(4149), 1, + STATE(4150), 1, sym_path, - STATE(4608), 1, + STATE(4671), 1, sym_cell_path, - ACTIONS(1933), 13, + ACTIONS(1833), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376703,23 +379361,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [159256] = 7, - ACTIONS(251), 1, + [157784] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7306), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4123), 1, + ACTIONS(7417), 1, + aux_sym__immediate_decimal_token2, + STATE(4130), 1, sym_comment, - STATE(4139), 1, - aux_sym_cell_path_repeat1, - ACTIONS(949), 2, + ACTIONS(1766), 4, + sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(951), 13, + aux_sym__unquoted_in_record_token2, + ACTIONS(1768), 13, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -376729,20 +379384,20 @@ 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, - [159291] = 4, - ACTIONS(3), 1, + [157815] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4124), 1, + ACTIONS(1766), 1, + aux_sym_unquoted_token2, + ACTIONS(7419), 1, + aux_sym__immediate_decimal_token2, + STATE(4131), 1, sym_comment, - ACTIONS(1713), 5, + ACTIONS(1768), 16, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1711), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376754,20 +379409,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_DOT_DOT2, - aux_sym_unquoted_token2, - [159320] = 5, - ACTIONS(251), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [157846] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7395), 1, - anon_sym_DOT_DOT2, - STATE(4125), 1, + ACTIONS(1766), 1, + aux_sym_unquoted_token2, + STATE(4132), 1, sym_comment, - ACTIONS(7397), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2049), 15, - ts_builtin_sym_end, + ACTIONS(1768), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376779,21 +379432,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_and2, anon_sym_xor2, anon_sym_or2, - [159351] = 5, - ACTIONS(251), 1, + anon_sym_LPAREN2, + [157875] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7399), 1, - anon_sym_DOT_DOT2, - STATE(4126), 1, + STATE(4133), 1, sym_comment, - ACTIONS(7401), 2, + ACTIONS(948), 4, + ts_builtin_sym_end, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2025), 15, - ts_builtin_sym_end, + ACTIONS(946), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376805,21 +379460,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_and2, - anon_sym_xor2, - anon_sym_or2, - [159382] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7403), 1, + anon_sym_QMARK2, anon_sym_DOT_DOT2, - STATE(4127), 1, + anon_sym_DOT2, + [157904] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1792), 1, + aux_sym_unquoted_token2, + STATE(4134), 1, sym_comment, - ACTIONS(7405), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2033), 15, - ts_builtin_sym_end, + ACTIONS(1794), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376831,21 +379482,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_and2, anon_sym_xor2, anon_sym_or2, - [159413] = 5, - ACTIONS(251), 1, + anon_sym_LPAREN2, + [157933] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7407), 1, - anon_sym_DOT_DOT2, - STATE(4128), 1, + ACTIONS(7221), 1, + anon_sym_DOT2, + ACTIONS(7423), 1, + sym__space, + STATE(4032), 1, + aux_sym_cell_path_repeat1, + STATE(4135), 1, sym_comment, - ACTIONS(7409), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2041), 15, - ts_builtin_sym_end, + STATE(4150), 1, + sym_path, + STATE(4702), 1, + sym_cell_path, + ACTIONS(7421), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376857,19 +379515,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_and2, - anon_sym_xor2, - anon_sym_or2, - [159444] = 5, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [157970] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2174), 1, - anon_sym_LPAREN2, - ACTIONS(2178), 1, - aux_sym_unquoted_token2, - STATE(4129), 1, + ACTIONS(5815), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7425), 1, + anon_sym_DOT, + STATE(4136), 1, + sym_comment, + ACTIONS(1512), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_DOT2, + ACTIONS(1514), 13, + anon_sym_in2, + anon_sym_QMARK2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [158003] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5661), 1, + anon_sym_DASH2, + STATE(4137), 1, + sym_comment, + ACTIONS(5663), 17, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [158032] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1863), 1, + sym__space, + ACTIONS(7221), 1, + anon_sym_DOT2, + STATE(4032), 1, + aux_sym_cell_path_repeat1, + STATE(4138), 1, sym_comment, - ACTIONS(2176), 16, + STATE(4150), 1, + sym_path, + STATE(4674), 1, + sym_cell_path, + ACTIONS(1861), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376883,19 +379598,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [159475] = 5, - ACTIONS(251), 1, + [158069] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + ACTIONS(1808), 1, anon_sym_LPAREN2, - STATE(4130), 1, + STATE(4139), 1, sym_comment, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7389), 16, + ACTIONS(1814), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376912,22 +379624,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [159506] = 8, + [158100] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1939), 1, + ACTIONS(1919), 1, sym__space, - ACTIONS(7199), 1, + ACTIONS(7221), 1, anon_sym_DOT2, - STATE(4025), 1, + STATE(4032), 1, aux_sym_cell_path_repeat1, - STATE(4131), 1, + STATE(4140), 1, sym_comment, - STATE(4149), 1, + STATE(4150), 1, sym_path, - STATE(4609), 1, + STATE(4570), 1, sym_cell_path, - ACTIONS(1937), 13, + ACTIONS(1917), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376941,42 +379653,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [159543] = 4, - ACTIONS(251), 1, + [158137] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5699), 1, - anon_sym_DASH2, - STATE(4132), 1, + ACTIONS(2075), 1, + anon_sym_LPAREN2, + ACTIONS(2079), 1, + aux_sym_unquoted_token4, + STATE(4141), 1, sym_comment, - ACTIONS(5701), 17, - anon_sym_EQ, - sym_identifier, + ACTIONS(2081), 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(2083), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_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_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_RBRACE, - [159572] = 4, - ACTIONS(3), 1, + [158170] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4133), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(4142), 1, sym_comment, - ACTIONS(982), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(980), 14, + STATE(7383), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7375), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376988,22 +379701,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_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [159601] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [158201] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7411), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7413), 1, - aux_sym__immediate_decimal_token2, - STATE(4134), 1, + STATE(4143), 1, sym_comment, - ACTIONS(1713), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1711), 14, + ACTIONS(2085), 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + aux_sym_unquoted_token4, + ACTIONS(2087), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377017,18 +379730,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_unquoted_token2, - [159634] = 5, - ACTIONS(251), 1, + anon_sym_LPAREN2, + [158230] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1783), 1, - aux_sym_unquoted_token2, - ACTIONS(7415), 1, - aux_sym__immediate_decimal_token2, - STATE(4135), 1, + ACTIONS(1875), 1, + sym__space, + ACTIONS(7221), 1, + anon_sym_DOT2, + STATE(4032), 1, + aux_sym_cell_path_repeat1, + STATE(4144), 1, sym_comment, - ACTIONS(1785), 16, - ts_builtin_sym_end, + STATE(4150), 1, + sym_path, + STATE(4675), 1, + sym_cell_path, + ACTIONS(1873), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377040,22 +379758,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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [159665] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [158267] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4136), 1, + ACTIONS(7385), 1, + anon_sym_DOT_DOT2, + STATE(4145), 1, sym_comment, - ACTIONS(1757), 5, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, + ACTIONS(7387), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1755), 13, + ACTIONS(7304), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377067,16 +379783,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_DOT_DOT2, - aux_sym_unquoted_token2, - [159694] = 4, - ACTIONS(251), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [158298] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1755), 1, - aux_sym_unquoted_token2, - STATE(4137), 1, + ACTIONS(1951), 1, + sym__space, + ACTIONS(7221), 1, + anon_sym_DOT2, + STATE(4032), 1, + aux_sym_cell_path_repeat1, + STATE(4146), 1, sym_comment, - ACTIONS(1757), 17, + STATE(4150), 1, + sym_path, + STATE(4678), 1, + sym_cell_path, + ACTIONS(1949), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377090,26 +379815,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [159723] = 8, + [158335] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1861), 1, + ACTIONS(1883), 1, sym__space, - ACTIONS(7199), 1, + ACTIONS(7221), 1, anon_sym_DOT2, - STATE(4025), 1, + STATE(4032), 1, aux_sym_cell_path_repeat1, - STATE(4138), 1, + STATE(4147), 1, sym_comment, - STATE(4149), 1, + STATE(4150), 1, sym_path, - STATE(4705), 1, + STATE(4691), 1, sym_cell_path, - ACTIONS(1859), 13, + ACTIONS(1881), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377123,67 +379844,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [159760] = 6, - ACTIONS(251), 1, + [158372] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7417), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - ACTIONS(953), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - STATE(4139), 2, + STATE(4148), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(955), 13, - 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, + ACTIONS(962), 4, + ts_builtin_sym_end, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [159793] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7353), 1, - aux_sym__immediate_decimal_token2, - STATE(4140), 1, - sym_comment, - ACTIONS(1755), 4, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1757), 13, - anon_sym_EQ, + ACTIONS(960), 14, 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, - [159824] = 4, - ACTIONS(251), 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_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [158401] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1711), 1, - aux_sym_unquoted_token2, - STATE(4141), 1, + ACTIONS(1959), 1, + sym__space, + ACTIONS(7221), 1, + anon_sym_DOT2, + STATE(4032), 1, + aux_sym_cell_path_repeat1, + STATE(4149), 1, sym_comment, - ACTIONS(1713), 17, + STATE(4150), 1, + sym_path, + STATE(4686), 1, + sym_cell_path, + ACTIONS(1957), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377197,20 +379898,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [159853] = 5, - ACTIONS(251), 1, + [158438] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1814), 1, - anon_sym_LPAREN2, - ACTIONS(1822), 1, - aux_sym_unquoted_token2, - STATE(4142), 1, + STATE(4150), 1, sym_comment, - ACTIONS(2222), 16, + ACTIONS(984), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(982), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377224,17 +379921,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [159884] = 4, - ACTIONS(251), 1, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [158467] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1783), 1, - aux_sym_unquoted_token2, - STATE(4143), 1, + ACTIONS(1955), 1, + sym__space, + ACTIONS(7221), 1, + anon_sym_DOT2, + STATE(4032), 1, + aux_sym_cell_path_repeat1, + STATE(4150), 1, + sym_path, + STATE(4151), 1, sym_comment, - ACTIONS(1785), 17, + STATE(4699), 1, + sym_cell_path, + ACTIONS(1953), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377248,26 +379952,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [159913] = 8, + [158504] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1893), 1, + ACTIONS(1887), 1, sym__space, - ACTIONS(7199), 1, + ACTIONS(7221), 1, anon_sym_DOT2, - STATE(4025), 1, + STATE(4032), 1, aux_sym_cell_path_repeat1, - STATE(4144), 1, - sym_comment, - STATE(4149), 1, + STATE(4150), 1, sym_path, - STATE(4601), 1, + STATE(4152), 1, + sym_comment, + STATE(4669), 1, sym_cell_path, - ACTIONS(1891), 13, + ACTIONS(1885), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377281,14 +379981,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [159950] = 4, - ACTIONS(251), 1, + [158541] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1835), 1, - aux_sym_unquoted_token2, - STATE(4145), 1, + STATE(4153), 1, sym_comment, - ACTIONS(1837), 17, + ACTIONS(958), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(956), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377300,20 +380003,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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [159979] = 4, - ACTIONS(251), 1, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [158570] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5683), 1, + ACTIONS(5669), 1, anon_sym_DASH2, - STATE(4146), 1, + STATE(4154), 1, sym_comment, - ACTIONS(5685), 17, + ACTIONS(5671), 17, anon_sym_EQ, sym_identifier, sym__newline, @@ -377331,17 +380031,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [160008] = 5, - ACTIONS(251), 1, + [158599] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1755), 1, - aux_sym_unquoted_token2, - ACTIONS(7328), 1, - aux_sym__immediate_decimal_token2, - STATE(4147), 1, + ACTIONS(1947), 1, + sym__space, + ACTIONS(7221), 1, + anon_sym_DOT2, + STATE(4032), 1, + aux_sym_cell_path_repeat1, + STATE(4150), 1, + sym_path, + STATE(4155), 1, sym_comment, - ACTIONS(1757), 16, - ts_builtin_sym_end, + STATE(4673), 1, + sym_cell_path, + ACTIONS(1945), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377353,46 +380058,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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [160039] = 5, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [158636] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(4148), 1, + ACTIONS(7427), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + ACTIONS(935), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + STATE(4156), 2, sym_comment, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7389), 16, + aux_sym_cell_path_repeat1, + ACTIONS(937), 13, + 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, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [160070] = 4, + 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, + [158669] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4149), 1, + ACTIONS(1818), 1, + anon_sym_LPAREN2, + ACTIONS(1826), 1, + aux_sym_unquoted_token2, + ACTIONS(7430), 1, + anon_sym_DOT_DOT2, + STATE(4157), 1, sym_comment, - ACTIONS(998), 3, + ACTIONS(1824), 2, + ts_builtin_sym_end, sym__space, + ACTIONS(7432), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(996), 15, + ACTIONS(1816), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377404,18 +380116,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, + [158706] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5665), 1, + anon_sym_DASH2, + STATE(4158), 1, + sym_comment, + ACTIONS(5667), 17, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [160099] = 4, - ACTIONS(251), 1, + [158735] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5675), 1, + ACTIONS(5647), 1, anon_sym_DASH2, - STATE(4150), 1, + STATE(4159), 1, sym_comment, - ACTIONS(5677), 17, + ACTIONS(5649), 17, anon_sym_EQ, sym_identifier, sym__newline, @@ -377433,19 +380166,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [160128] = 6, + [158764] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7420), 1, - anon_sym_DOT, - ACTIONS(7422), 1, - aux_sym__immediate_decimal_token2, - STATE(4151), 1, - sym_comment, - ACTIONS(1757), 2, - sym__space, + ACTIONS(2075), 1, anon_sym_LPAREN2, - ACTIONS(1755), 14, + ACTIONS(2079), 1, + aux_sym_unquoted_token4, + STATE(4160), 1, + sym_comment, + ACTIONS(2073), 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(2077), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377459,19 +380193,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_unquoted_token2, - [160161] = 4, + [158797] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4152), 1, - sym_comment, - ACTIONS(1785), 5, - ts_builtin_sym_end, + ACTIONS(7221), 1, + anon_sym_DOT2, + ACTIONS(7436), 1, sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1783), 13, + STATE(4032), 1, + aux_sym_cell_path_repeat1, + STATE(4150), 1, + sym_path, + STATE(4161), 1, + sym_comment, + STATE(4687), 1, + sym_cell_path, + ACTIONS(7434), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377483,19 +380220,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_DOT_DOT2, - aux_sym_unquoted_token2, - [160190] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [158834] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4153), 1, + STATE(4162), 1, sym_comment, - ACTIONS(974), 4, - ts_builtin_sym_end, + ACTIONS(980), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(972), 14, + ACTIONS(978), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377507,47 +380243,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_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT2, - [160219] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7424), 1, - aux_sym__immediate_decimal_token2, - STATE(4154), 1, - sym_comment, - ACTIONS(1783), 4, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1785), 13, - anon_sym_EQ, - 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, - [160250] = 5, - ACTIONS(251), 1, + [158863] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7377), 1, - anon_sym_DOT_DOT2, - STATE(4155), 1, + STATE(4163), 1, sym_comment, - ACTIONS(7379), 2, + ACTIONS(976), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7355), 15, - ts_builtin_sym_end, + ACTIONS(974), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377559,19 +380268,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_and2, - anon_sym_xor2, - anon_sym_or2, - [160281] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [158892] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4156), 1, + STATE(4164), 1, sym_comment, - ACTIONS(994), 3, + ACTIONS(1768), 5, + ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(992), 15, + ACTIONS(1766), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377583,26 +380295,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, anon_sym_DOT_DOT2, - anon_sym_DOT2, - [160310] = 8, - ACTIONS(3), 1, + aux_sym_unquoted_token2, + [158921] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1923), 1, - sym__space, - ACTIONS(7199), 1, - anon_sym_DOT2, - STATE(4025), 1, - aux_sym_cell_path_repeat1, - STATE(4149), 1, - sym_path, - STATE(4157), 1, + ACTIONS(1701), 1, + aux_sym_unquoted_token2, + STATE(4165), 1, sym_comment, - STATE(4593), 1, - sym_cell_path, - ACTIONS(1921), 13, + ACTIONS(1703), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377616,16 +380318,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [160347] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [158950] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4158), 1, + ACTIONS(7253), 1, + anon_sym_DOT2, + STATE(4042), 1, + aux_sym_cell_path_repeat1, + STATE(4166), 1, sym_comment, - ACTIONS(990), 3, + STATE(4244), 1, + sym_path, + STATE(4950), 1, + sym_cell_path, + ACTIONS(7423), 2, + ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(988), 15, + ACTIONS(7421), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377637,20 +380350,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_DOT_DOT2, - anon_sym_DOT2, - [160376] = 5, - ACTIONS(251), 1, + [158986] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1477), 1, + ACTIONS(1701), 1, aux_sym_unquoted_token2, - ACTIONS(1804), 1, - anon_sym_LPAREN2, - STATE(4159), 1, + STATE(4167), 1, sym_comment, - ACTIONS(1810), 16, + ACTIONS(1703), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377662,27 +380370,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, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [160407] = 8, + anon_sym_LPAREN2, + [159014] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7199), 1, - anon_sym_DOT2, - ACTIONS(7428), 1, - sym__space, - STATE(4025), 1, - aux_sym_cell_path_repeat1, - STATE(4149), 1, - sym_path, - STATE(4160), 1, + ACTIONS(2075), 1, + anon_sym_LPAREN2, + ACTIONS(2079), 1, + aux_sym_unquoted_token4, + STATE(4168), 1, sym_comment, - STATE(4620), 1, - sym_cell_path, - ACTIONS(7426), 13, + ACTIONS(2073), 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(2077), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377694,24 +380400,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, - [160444] = 8, + [159046] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1911), 1, - sym__space, - ACTIONS(7199), 1, - anon_sym_DOT2, - STATE(4025), 1, - aux_sym_cell_path_repeat1, - STATE(4149), 1, - sym_path, - STATE(4161), 1, + ACTIONS(2075), 1, + anon_sym_LPAREN2, + ACTIONS(2079), 1, + aux_sym_unquoted_token4, + STATE(4169), 1, sym_comment, - STATE(4603), 1, - sym_cell_path, - ACTIONS(1909), 13, + ACTIONS(2081), 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(2083), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377723,24 +380426,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, - [160481] = 8, + [159078] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1915), 1, - sym__space, - ACTIONS(7199), 1, + ACTIONS(7253), 1, anon_sym_DOT2, - STATE(4025), 1, + STATE(4042), 1, aux_sym_cell_path_repeat1, - STATE(4149), 1, - sym_path, - STATE(4162), 1, + STATE(4170), 1, sym_comment, - STATE(4604), 1, + STATE(4244), 1, + sym_path, + STATE(4729), 1, sym_cell_path, - ACTIONS(1913), 13, + ACTIONS(1895), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1893), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377752,54 +380454,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, - [160518] = 8, - ACTIONS(3), 1, + [159114] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1947), 1, - sym__space, - ACTIONS(7199), 1, - anon_sym_DOT2, - STATE(4025), 1, - aux_sym_cell_path_repeat1, - STATE(4149), 1, - sym_path, - STATE(4163), 1, + STATE(4171), 1, sym_comment, - STATE(4610), 1, - sym_cell_path, - ACTIONS(1945), 13, + ACTIONS(964), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(966), 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_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [160555] = 8, + 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, + [159142] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7300), 1, + ACTIONS(7253), 1, anon_sym_DOT2, - STATE(4060), 1, + STATE(4042), 1, aux_sym_cell_path_repeat1, - STATE(4164), 1, + STATE(4172), 1, sym_comment, - STATE(4222), 1, + STATE(4244), 1, sym_path, - STATE(4727), 1, + STATE(4756), 1, sym_cell_path, - ACTIONS(1971), 2, + ACTIONS(1879), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1969), 11, + ACTIONS(1877), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377811,23 +380506,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, - [160591] = 8, + [159178] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7300), 1, + ACTIONS(7253), 1, anon_sym_DOT2, - STATE(4060), 1, + STATE(4042), 1, aux_sym_cell_path_repeat1, - STATE(4165), 1, + STATE(4173), 1, sym_comment, - STATE(4222), 1, + STATE(4244), 1, sym_path, - STATE(4952), 1, + STATE(4762), 1, sym_cell_path, - ACTIONS(1919), 2, + ACTIONS(1971), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1917), 11, + ACTIONS(1969), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377839,16 +380534,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, - [160627] = 4, + [159214] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4166), 1, - sym_comment, - ACTIONS(1721), 3, + ACTIONS(7440), 1, sym__space, + ACTIONS(7442), 1, + anon_sym_DOT_DOT2, + STATE(4174), 1, + sym_comment, + ACTIONS(7444), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1719), 14, + ACTIONS(7438), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377862,74 +380560,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [160655] = 14, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(113), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(115), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(123), 1, - sym_raw_string_begin, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3510), 1, - anon_sym_DOLLAR, - ACTIONS(5873), 1, - anon_sym_LPAREN, - ACTIONS(7430), 1, - sym__unquoted_naive, - STATE(2527), 1, - sym__inter_single_quotes, - STATE(2528), 1, - sym__inter_double_quotes, - STATE(4167), 1, - sym_comment, - ACTIONS(111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1732), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(5114), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [160703] = 5, - ACTIONS(3), 1, + [159246] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7422), 1, - aux_sym__immediate_decimal_token2, - STATE(4168), 1, - sym_comment, - ACTIONS(1757), 2, - sym__space, + ACTIONS(4452), 1, anon_sym_LPAREN2, - ACTIONS(1755), 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, - aux_sym_unquoted_token2, - [160733] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7078), 1, - aux_sym_unquoted_token2, - STATE(4169), 1, + STATE(4175), 1, sym_comment, - ACTIONS(1650), 16, + STATE(7298), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7375), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377941,25 +380582,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_and2, anon_sym_xor2, anon_sym_or2, - [160761] = 6, + [159276] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7432), 1, - anon_sym_DOT, - ACTIONS(7434), 1, - aux_sym__immediate_decimal_token2, - STATE(4170), 1, + ACTIONS(7253), 1, + anon_sym_DOT2, + STATE(4042), 1, + aux_sym_cell_path_repeat1, + STATE(4176), 1, sym_comment, - ACTIONS(1757), 3, + STATE(4244), 1, + sym_path, + STATE(4766), 1, + sym_cell_path, + ACTIONS(1835), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1755), 12, + ACTIONS(1833), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377971,52 +380613,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, - [160793] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2074), 1, - anon_sym_DOLLAR, - ACTIONS(2126), 1, - sym_raw_string_begin, - ACTIONS(4371), 1, - anon_sym_DQUOTE, - ACTIONS(4375), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4377), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5025), 1, - anon_sym_LPAREN, - ACTIONS(7436), 1, - sym__unquoted_naive, - STATE(4171), 1, - sym_comment, - STATE(4587), 1, - sym__inter_single_quotes, - STATE(4588), 1, - sym__inter_double_quotes, - ACTIONS(4373), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4058), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4672), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [160841] = 5, - ACTIONS(251), 1, + [159312] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym_unquoted_token2, - ACTIONS(1804), 1, - anon_sym_LPAREN2, - STATE(4172), 1, + ACTIONS(7253), 1, + anon_sym_DOT2, + STATE(4042), 1, + aux_sym_cell_path_repeat1, + STATE(4177), 1, sym_comment, - ACTIONS(1810), 15, + STATE(4244), 1, + sym_path, + STATE(4769), 1, + sym_cell_path, + ACTIONS(1863), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1861), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378028,19 +380641,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_and2, - anon_sym_xor2, - anon_sym_or2, - [160871] = 4, - ACTIONS(251), 1, + [159348] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4173), 1, + STATE(4178), 1, sym_comment, - ACTIONS(976), 3, + ACTIONS(946), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(978), 14, + ACTIONS(948), 14, anon_sym_EQ, sym_identifier, sym__newline, @@ -378055,57 +380665,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [160899] = 14, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1272), 1, - anon_sym_LPAREN, - ACTIONS(1286), 1, - anon_sym_DQUOTE, - ACTIONS(1290), 1, - sym_raw_string_begin, - ACTIONS(3464), 1, - anon_sym_DOLLAR, - ACTIONS(7438), 1, - sym__unquoted_naive, - STATE(2034), 1, - sym__inter_single_quotes, - STATE(2035), 1, - sym__inter_double_quotes, - STATE(4174), 1, - sym_comment, - ACTIONS(1288), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3668), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4885), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [160947] = 8, + [159376] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7300), 1, + ACTIONS(7253), 1, anon_sym_DOT2, - STATE(4060), 1, + STATE(4042), 1, aux_sym_cell_path_repeat1, - STATE(4175), 1, + STATE(4179), 1, sym_comment, - STATE(4222), 1, + STATE(4244), 1, sym_path, - STATE(4888), 1, + STATE(4772), 1, sym_cell_path, - ACTIONS(1877), 2, + ACTIONS(1875), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1875), 11, + ACTIONS(1873), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378117,46 +380693,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, - [160983] = 9, - ACTIONS(251), 1, + [159412] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4912), 1, + ACTIONS(7253), 1, anon_sym_DOT2, - ACTIONS(7444), 1, - anon_sym_QMARK2, - STATE(1386), 1, + STATE(4042), 1, aux_sym_cell_path_repeat1, - STATE(1532), 1, - sym_path, - STATE(4176), 1, + STATE(4180), 1, sym_comment, - STATE(5085), 1, + STATE(4244), 1, + sym_path, + STATE(4724), 1, sym_cell_path, - ACTIONS(7440), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7442), 10, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - [161021] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(4177), 1, - sym_comment, - STATE(7398), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7389), 15, + ACTIONS(1933), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1931), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378168,26 +380721,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_and2, - anon_sym_xor2, - anon_sym_or2, - [161051] = 8, + [159448] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7300), 1, + ACTIONS(7253), 1, anon_sym_DOT2, - STATE(4060), 1, + STATE(4042), 1, aux_sym_cell_path_repeat1, - STATE(4178), 1, + STATE(4181), 1, sym_comment, - STATE(4222), 1, + STATE(4244), 1, sym_path, - STATE(4889), 1, + STATE(4782), 1, sym_cell_path, - ACTIONS(7428), 2, + ACTIONS(1883), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7426), 11, + ACTIONS(1881), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378199,20 +380749,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, - [161087] = 6, - ACTIONS(3), 1, + [159484] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2138), 1, + ACTIONS(2192), 1, anon_sym_LPAREN2, - ACTIONS(2142), 1, - aux_sym_unquoted_token4, - STATE(4179), 1, + ACTIONS(2196), 1, + aux_sym_unquoted_token2, + STATE(4182), 1, sym_comment, - ACTIONS(2136), 3, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(2140), 12, + ACTIONS(2194), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -378225,16 +380771,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, - [161119] = 5, - ACTIONS(251), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [159514] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2174), 1, - anon_sym_LPAREN2, - ACTIONS(2178), 1, + ACTIONS(1693), 1, aux_sym_unquoted_token2, - STATE(4180), 1, + STATE(4183), 1, sym_comment, - ACTIONS(2176), 15, + ACTIONS(1695), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -378250,16 +380797,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [161149] = 4, - ACTIONS(251), 1, + anon_sym_LPAREN2, + [159542] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4181), 1, + STATE(4184), 1, sym_comment, - ACTIONS(1755), 3, + ACTIONS(1693), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym__unquoted_in_record_token2, - ACTIONS(1757), 14, + ACTIONS(1695), 14, anon_sym_EQ, sym_identifier, sym__newline, @@ -378274,45 +380822,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [161177] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2025), 1, - sym__space, - ACTIONS(7446), 1, - anon_sym_DOT_DOT2, - STATE(4182), 1, - sym_comment, - ACTIONS(7448), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2019), 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, - [161209] = 6, + [159570] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2033), 1, + ACTIONS(998), 1, sym__space, - ACTIONS(7450), 1, + ACTIONS(7442), 1, anon_sym_DOT_DOT2, - STATE(4183), 1, + STATE(4185), 1, sym_comment, - ACTIONS(7452), 2, + ACTIONS(7444), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2027), 13, + ACTIONS(1002), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378326,72 +380848,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [161241] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4184), 1, - sym_comment, - ACTIONS(984), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(986), 14, - 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, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [161269] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7300), 1, - anon_sym_DOT2, - STATE(4060), 1, - aux_sym_cell_path_repeat1, - STATE(4185), 1, - sym_comment, - STATE(4222), 1, - sym_path, - STATE(4953), 1, - sym_cell_path, - ACTIONS(1927), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1925), 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, - [161305] = 6, + [159602] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2138), 1, + ACTIONS(2061), 1, anon_sym_LPAREN2, - ACTIONS(2142), 1, + ACTIONS(2063), 1, aux_sym_unquoted_token4, STATE(4186), 1, sym_comment, - ACTIONS(2144), 3, + ACTIONS(1002), 3, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(2146), 12, + ACTIONS(998), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -378404,23 +380874,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, - [161337] = 8, + [159634] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7300), 1, - anon_sym_DOT2, - STATE(4060), 1, - aux_sym_cell_path_repeat1, + ACTIONS(1991), 1, + sym__space, + ACTIONS(7446), 1, + anon_sym_DOT_DOT2, STATE(4187), 1, sym_comment, - STATE(4222), 1, - sym_path, - STATE(4955), 1, - sym_cell_path, - ACTIONS(1931), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1929), 11, + ACTIONS(7448), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1985), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378432,16 +380898,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, - [161373] = 5, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [159666] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + ACTIONS(1808), 1, anon_sym_LPAREN2, STATE(4188), 1, sym_comment, - STATE(7398), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7389), 15, + ACTIONS(1814), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -378457,49 +380925,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [161403] = 6, + [159696] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2041), 1, - sym__space, - ACTIONS(7454), 1, - anon_sym_DOT_DOT2, + ACTIONS(7450), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7452), 1, + aux_sym__immediate_decimal_token2, STATE(4189), 1, sym_comment, - ACTIONS(7456), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2035), 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, - [161435] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7300), 1, - anon_sym_DOT2, - STATE(4060), 1, - aux_sym_cell_path_repeat1, - STATE(4190), 1, - sym_comment, - STATE(4222), 1, - sym_path, - STATE(4957), 1, - sym_cell_path, - ACTIONS(1935), 2, + ACTIONS(1695), 3, ts_builtin_sym_end, sym__space, - ACTIONS(1933), 11, + anon_sym_LPAREN2, + ACTIONS(1693), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378511,14 +380950,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, - [161471] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1755), 1, aux_sym_unquoted_token2, - STATE(4191), 1, + [159728] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(4190), 1, sym_comment, - ACTIONS(1757), 16, + STATE(7298), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7375), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -378534,18 +380976,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [161499] = 5, - ACTIONS(251), 1, + [159758] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2632), 1, + anon_sym_COMMA, + ACTIONS(7324), 1, + anon_sym_EQ, + ACTIONS(7326), 1, + sym__newline, + ACTIONS(7328), 1, + anon_sym_COLON, + ACTIONS(7456), 1, + anon_sym_DASH2, + STATE(4191), 1, + sym_comment, + STATE(4384), 1, + aux_sym_parameter_repeat1, + STATE(5141), 1, + aux_sym_parameter_repeat2, + STATE(6163), 1, + aux_sym_shebang_repeat1, + STATE(4971), 2, + sym_param_type, + sym_param_value, + ACTIONS(7454), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [159802] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1814), 1, - anon_sym_LPAREN2, - ACTIONS(1822), 1, - aux_sym_unquoted_token2, + ACTIONS(2049), 1, + sym__space, + ACTIONS(7458), 1, + anon_sym_DOT_DOT2, STATE(4192), 1, sym_comment, - ACTIONS(2222), 15, - ts_builtin_sym_end, + ACTIONS(7460), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2043), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378557,50 +381032,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_and2, - anon_sym_xor2, - anon_sym_or2, - [161529] = 4, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [159834] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1711), 1, - aux_sym_unquoted_token2, STATE(4193), 1, sym_comment, - ACTIONS(1713), 16, - ts_builtin_sym_end, + ACTIONS(960), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(962), 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [161557] = 8, + 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, + [159862] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7300), 1, + ACTIONS(7253), 1, anon_sym_DOT2, - STATE(4060), 1, + STATE(4042), 1, aux_sym_cell_path_repeat1, STATE(4194), 1, sym_comment, - STATE(4222), 1, + STATE(4244), 1, sym_path, - STATE(4958), 1, + STATE(4784), 1, sym_cell_path, - ACTIONS(1939), 2, + ACTIONS(1887), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1937), 11, + ACTIONS(1885), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378612,23 +381086,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, - [161593] = 8, + [159898] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1816), 1, + anon_sym_DASH2, + ACTIONS(1818), 1, + anon_sym_LPAREN2, + ACTIONS(1826), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(7462), 1, + anon_sym_DOT_DOT2, + STATE(4195), 1, + sym_comment, + ACTIONS(7464), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1824), 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, + [159934] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7300), 1, + ACTIONS(7253), 1, anon_sym_DOT2, - STATE(4060), 1, + STATE(4042), 1, aux_sym_cell_path_repeat1, - STATE(4195), 1, + STATE(4196), 1, sym_comment, - STATE(4222), 1, + STATE(4244), 1, sym_path, - STATE(4959), 1, + STATE(4944), 1, sym_cell_path, - ACTIONS(1947), 2, + ACTIONS(1959), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1945), 11, + ACTIONS(1957), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378640,23 +381142,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, - [161629] = 8, + [159970] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7300), 1, - anon_sym_DOT2, - STATE(4060), 1, - aux_sym_cell_path_repeat1, - STATE(4196), 1, + STATE(4197), 1, sym_comment, - STATE(4222), 1, - sym_path, - STATE(4839), 1, - sym_cell_path, - ACTIONS(1951), 2, - ts_builtin_sym_end, + ACTIONS(988), 3, sym__space, - ACTIONS(1949), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(986), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378668,23 +381163,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, - [161665] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [159998] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7300), 1, - anon_sym_DOT2, - STATE(4060), 1, - aux_sym_cell_path_repeat1, - STATE(4197), 1, + ACTIONS(7466), 1, + anon_sym_DOT, + ACTIONS(7468), 1, + aux_sym__immediate_decimal_token2, + STATE(4198), 1, sym_comment, - STATE(4222), 1, - sym_path, - STATE(4849), 1, - sym_cell_path, - ACTIONS(1955), 2, + ACTIONS(1703), 3, ts_builtin_sym_end, sym__space, - ACTIONS(1953), 11, + anon_sym_LPAREN2, + ACTIONS(1701), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378696,23 +381191,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, - [161701] = 8, + aux_sym_unquoted_token2, + [160030] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7300), 1, + ACTIONS(7253), 1, anon_sym_DOT2, - STATE(4060), 1, + STATE(4042), 1, aux_sym_cell_path_repeat1, - STATE(4198), 1, + STATE(4199), 1, sym_comment, - STATE(4222), 1, + STATE(4244), 1, sym_path, - STATE(4920), 1, + STATE(4846), 1, sym_cell_path, - ACTIONS(1893), 2, + ACTIONS(1841), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1891), 11, + ACTIONS(1839), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378724,49 +381220,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, - [161737] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2240), 1, - anon_sym_DOLLAR, - ACTIONS(2290), 1, - sym_raw_string_begin, - ACTIONS(4335), 1, - anon_sym_DQUOTE, - ACTIONS(4339), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4341), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5089), 1, - anon_sym_LPAREN, - ACTIONS(7458), 1, - sym__unquoted_naive, - STATE(4199), 1, - sym_comment, - STATE(4791), 1, - sym__inter_single_quotes, - STATE(4792), 1, - sym__inter_double_quotes, - ACTIONS(4337), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4153), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4956), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [161785] = 4, - ACTIONS(251), 1, + [160066] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1783), 1, + ACTIONS(7070), 1, aux_sym_unquoted_token2, STATE(4200), 1, sym_comment, - ACTIONS(1785), 16, - ts_builtin_sym_end, + ACTIONS(1651), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378778,27 +381239,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_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [161813] = 8, + [160094] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7300), 1, + ACTIONS(7253), 1, anon_sym_DOT2, - STATE(4060), 1, + STATE(4042), 1, aux_sym_cell_path_repeat1, STATE(4201), 1, sym_comment, - STATE(4222), 1, + STATE(4244), 1, sym_path, - STATE(4847), 1, + STATE(4813), 1, sym_cell_path, - ACTIONS(1847), 2, + ACTIONS(1891), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1845), 11, + ACTIONS(1889), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378810,23 +381272,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, - [161849] = 8, + [160130] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7300), 1, + ACTIONS(7253), 1, anon_sym_DOT2, - STATE(4060), 1, + STATE(4042), 1, aux_sym_cell_path_repeat1, STATE(4202), 1, sym_comment, - STATE(4222), 1, + STATE(4244), 1, sym_path, - STATE(4722), 1, + STATE(4885), 1, sym_cell_path, - ACTIONS(1959), 2, + ACTIONS(1899), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1957), 11, + ACTIONS(1897), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378838,23 +381300,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, - [161885] = 8, + [160166] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7300), 1, + ACTIONS(7253), 1, anon_sym_DOT2, - STATE(4060), 1, + STATE(4042), 1, aux_sym_cell_path_repeat1, STATE(4203), 1, sym_comment, - STATE(4222), 1, + STATE(4244), 1, sym_path, - STATE(4723), 1, + STATE(4890), 1, sym_cell_path, - ACTIONS(1963), 2, + ACTIONS(1903), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1961), 11, + ACTIONS(1901), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378866,26 +381328,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, - [161921] = 8, - ACTIONS(251), 1, + [160202] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(1802), 1, - anon_sym_DASH2, - ACTIONS(1804), 1, - anon_sym_LPAREN2, - ACTIONS(7460), 1, - anon_sym_DOT_DOT2, + ACTIONS(7470), 1, + anon_sym_LBRACK2, STATE(4204), 1, sym_comment, - ACTIONS(7462), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1810), 11, + ACTIONS(2292), 2, + anon_sym_LBRACK, + anon_sym_DASH2, + ACTIONS(2296), 14, anon_sym_EQ, sym_identifier, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_COLON, anon_sym_RBRACK, @@ -378894,23 +381351,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [161957] = 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + [160232] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7300), 1, + ACTIONS(7253), 1, anon_sym_DOT2, - STATE(4060), 1, + STATE(4042), 1, aux_sym_cell_path_repeat1, STATE(4205), 1, sym_comment, - STATE(4222), 1, + STATE(4244), 1, sym_path, - STATE(4726), 1, + STATE(4849), 1, sym_cell_path, - ACTIONS(1967), 2, + ACTIONS(1849), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1965), 11, + ACTIONS(1847), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378922,16 +381381,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, - [161993] = 4, - ACTIONS(251), 1, + [160268] = 4, + ACTIONS(247), 1, anon_sym_POUND, STATE(4206), 1, sym_comment, - ACTIONS(980), 3, + ACTIONS(956), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(982), 14, + ACTIONS(958), 14, anon_sym_EQ, sym_identifier, sym__newline, @@ -378946,16 +381405,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [162021] = 4, - ACTIONS(251), 1, + [160296] = 8, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7253), 1, + anon_sym_DOT2, + STATE(4042), 1, + aux_sym_cell_path_repeat1, STATE(4207), 1, sym_comment, - ACTIONS(1835), 3, + STATE(4244), 1, + sym_path, + STATE(4904), 1, + sym_cell_path, + ACTIONS(1855), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1853), 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, + [160332] = 14, + ACTIONS(107), 1, + anon_sym_DQUOTE, + ACTIONS(111), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(113), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(121), 1, + sym_raw_string_begin, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3482), 1, + anon_sym_DOLLAR, + ACTIONS(5870), 1, + anon_sym_LPAREN, + ACTIONS(7472), 1, + sym__unquoted_naive, + STATE(2421), 1, + sym__inter_double_quotes, + STATE(2426), 1, + sym__inter_single_quotes, + STATE(4208), 1, + sym_comment, + ACTIONS(109), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1605), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4999), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [160380] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4209), 1, + sym_comment, + ACTIONS(1766), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym__unquoted_in_record_token2, - ACTIONS(1837), 14, + ACTIONS(1768), 14, anon_sym_EQ, sym_identifier, sym__newline, @@ -378970,47 +381491,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [162049] = 4, - ACTIONS(251), 1, + [160408] = 12, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4208), 1, - sym_comment, - ACTIONS(972), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(974), 14, + ACTIONS(2632), 1, + anon_sym_COMMA, + ACTIONS(7324), 1, anon_sym_EQ, - sym_identifier, + ACTIONS(7326), 1, sym__newline, - anon_sym_PIPE, + ACTIONS(7328), 1, anon_sym_COLON, + ACTIONS(7476), 1, + anon_sym_DASH2, + STATE(4210), 1, + sym_comment, + STATE(4229), 1, + aux_sym_parameter_repeat1, + STATE(5146), 1, + aux_sym_parameter_repeat2, + STATE(6163), 1, + aux_sym_shebang_repeat1, + STATE(4971), 2, + sym_param_type, + sym_param_value, + ACTIONS(7474), 7, + sym_identifier, + 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_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [162077] = 8, + [160452] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7300), 1, + ACTIONS(7253), 1, anon_sym_DOT2, - STATE(4060), 1, + STATE(4042), 1, aux_sym_cell_path_repeat1, - STATE(4209), 1, + STATE(4211), 1, sym_comment, - STATE(4222), 1, + STATE(4244), 1, sym_path, - STATE(4880), 1, + STATE(4892), 1, sym_cell_path, - ACTIONS(1943), 2, + ACTIONS(1907), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1941), 11, + ACTIONS(1905), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379022,17 +381551,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, - [162113] = 5, - ACTIONS(251), 1, + [160488] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1814), 1, - anon_sym_LPAREN2, - ACTIONS(1822), 1, - aux_sym_unquoted_token2, - STATE(4210), 1, + ACTIONS(7253), 1, + anon_sym_DOT2, + STATE(4042), 1, + aux_sym_cell_path_repeat1, + STATE(4212), 1, sym_comment, - ACTIONS(1820), 15, + STATE(4244), 1, + sym_path, + STATE(4917), 1, + sym_cell_path, + ACTIONS(7436), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(7434), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379044,19 +381579,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_and2, - anon_sym_xor2, - anon_sym_or2, - [162143] = 4, + [160524] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4211), 1, + ACTIONS(7253), 1, + anon_sym_DOT2, + STATE(4042), 1, + aux_sym_cell_path_repeat1, + STATE(4213), 1, sym_comment, - ACTIONS(1999), 3, + STATE(4244), 1, + sym_path, + STATE(4736), 1, + sym_cell_path, + ACTIONS(1919), 2, + ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1997), 14, + ACTIONS(1917), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379068,23 +381607,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_DOT_DOT2, - [162171] = 6, + [160560] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2206), 1, - anon_sym_LPAREN2, - ACTIONS(2208), 1, - aux_sym_unquoted_token4, - STATE(4212), 1, + STATE(4214), 1, sym_comment, - ACTIONS(1016), 3, + ACTIONS(2085), 4, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(1012), 12, + aux_sym_unquoted_token4, + ACTIONS(2087), 13, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -379097,23 +381630,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, - [162203] = 8, + anon_sym_LPAREN2, + [160588] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7300), 1, - anon_sym_DOT2, - STATE(4060), 1, - aux_sym_cell_path_repeat1, - STATE(4213), 1, - sym_comment, - STATE(4222), 1, - sym_path, - STATE(4729), 1, - sym_cell_path, - ACTIONS(1907), 2, - ts_builtin_sym_end, + ACTIONS(2036), 1, sym__space, - ACTIONS(1905), 11, + ACTIONS(7478), 1, + anon_sym_DOT_DOT2, + STATE(4215), 1, + sym_comment, + ACTIONS(7480), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2030), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379125,55 +381655,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, - [162239] = 12, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [160620] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2558), 1, - anon_sym_COMMA, - ACTIONS(7336), 1, - anon_sym_EQ, - ACTIONS(7338), 1, - sym__newline, - ACTIONS(7340), 1, - anon_sym_COLON, - ACTIONS(7466), 1, - anon_sym_DASH2, - STATE(4214), 1, + STATE(4216), 1, sym_comment, - STATE(4457), 1, - aux_sym_parameter_repeat1, - STATE(5179), 1, - aux_sym_parameter_repeat2, - STATE(6546), 1, - aux_sym_shebang_repeat1, - STATE(5101), 2, - sym_param_type, - sym_param_value, - ACTIONS(7464), 7, - sym_identifier, + ACTIONS(1678), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1676), 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_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [162283] = 8, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [160648] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7300), 1, + ACTIONS(7253), 1, anon_sym_DOT2, - STATE(4060), 1, + STATE(4042), 1, aux_sym_cell_path_repeat1, - STATE(4215), 1, + STATE(4217), 1, sym_comment, - STATE(4222), 1, + STATE(4244), 1, sym_path, - STATE(4730), 1, + STATE(4924), 1, sym_cell_path, - ACTIONS(1985), 2, + ACTIONS(1951), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1983), 11, + ACTIONS(1949), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379185,18 +381709,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, - [162319] = 4, + [160684] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4216), 1, + STATE(4218), 1, sym_comment, - ACTIONS(2148), 4, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - aux_sym_unquoted_token4, - ACTIONS(2150), 13, + ACTIONS(980), 4, ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(978), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379208,24 +381731,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_LPAREN2, - [162347] = 8, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [160712] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7300), 1, + ACTIONS(7253), 1, anon_sym_DOT2, - STATE(4060), 1, + STATE(4042), 1, aux_sym_cell_path_repeat1, - STATE(4217), 1, + STATE(4219), 1, sym_comment, - STATE(4222), 1, + STATE(4244), 1, sym_path, - STATE(4771), 1, + STATE(4956), 1, sym_cell_path, - ACTIONS(1897), 2, + ACTIONS(1871), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1895), 11, + ACTIONS(1869), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379237,16 +381761,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, - [162383] = 4, - ACTIONS(3), 1, + [160748] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4218), 1, + ACTIONS(1766), 1, + aux_sym_unquoted_token2, + STATE(4220), 1, sym_comment, - ACTIONS(2017), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2015), 14, + ACTIONS(1768), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379258,48 +381781,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, - [162411] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4912), 1, - anon_sym_DOT2, - ACTIONS(7472), 1, - anon_sym_QMARK2, - STATE(1386), 1, - aux_sym_cell_path_repeat1, - STATE(1532), 1, - sym_path, - STATE(4219), 1, - sym_comment, - STATE(5070), 1, - sym_cell_path, - ACTIONS(7468), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7470), 10, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - [162449] = 5, - ACTIONS(251), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [160776] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, + ACTIONS(1818), 1, anon_sym_LPAREN2, - STATE(4220), 1, + ACTIONS(1826), 1, + aux_sym_unquoted_token2, + STATE(4221), 1, sym_comment, - STATE(7398), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7389), 15, + ACTIONS(2166), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -379315,20 +381810,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [162479] = 6, - ACTIONS(3), 1, + [160806] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2130), 1, - anon_sym_LPAREN2, - ACTIONS(2134), 1, - aux_sym_unquoted_token4, - STATE(4221), 1, + ACTIONS(1792), 1, + aux_sym_unquoted_token2, + STATE(4222), 1, sym_comment, - ACTIONS(2128), 3, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(2132), 12, + ACTIONS(1794), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -379341,17 +381830,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, - [162511] = 4, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [160834] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4222), 1, + ACTIONS(1818), 1, + anon_sym_LPAREN2, + ACTIONS(1826), 1, + aux_sym_unquoted_token2, + STATE(4223), 1, sym_comment, - ACTIONS(998), 4, + ACTIONS(1824), 15, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(996), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379363,57 +381856,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, - anon_sym_DOT2, - [162539] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2558), 1, - anon_sym_COMMA, - ACTIONS(7336), 1, - anon_sym_EQ, - ACTIONS(7338), 1, - sym__newline, - ACTIONS(7340), 1, - anon_sym_COLON, - ACTIONS(7476), 1, - anon_sym_DASH2, - STATE(4223), 1, - sym_comment, - STATE(4457), 1, - aux_sym_parameter_repeat1, - STATE(5168), 1, - aux_sym_parameter_repeat2, - STATE(6546), 1, - aux_sym_shebang_repeat1, - STATE(5101), 2, - sym_param_type, - sym_param_value, - ACTIONS(7474), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [162583] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [160864] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7300), 1, - anon_sym_DOT2, - STATE(4060), 1, - aux_sym_cell_path_repeat1, - STATE(4222), 1, - sym_path, STATE(4224), 1, sym_comment, - STATE(4848), 1, - sym_cell_path, - ACTIONS(7387), 2, + ACTIONS(976), 4, ts_builtin_sym_end, sym__space, - ACTIONS(7385), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(974), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379425,49 +381881,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, - [162619] = 12, - ACTIONS(251), 1, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [160892] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2558), 1, - anon_sym_COMMA, - ACTIONS(7336), 1, - anon_sym_EQ, - ACTIONS(7338), 1, - sym__newline, - ACTIONS(7340), 1, - anon_sym_COLON, - ACTIONS(7480), 1, + ACTIONS(1457), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(1806), 1, anon_sym_DASH2, - STATE(4223), 1, - aux_sym_parameter_repeat1, + ACTIONS(1808), 1, + anon_sym_LPAREN2, + ACTIONS(7482), 1, + anon_sym_DOT_DOT2, STATE(4225), 1, sym_comment, - STATE(5180), 1, - aux_sym_parameter_repeat2, - STATE(6546), 1, - aux_sym_shebang_repeat1, - STATE(5101), 2, - sym_param_type, - sym_param_value, - ACTIONS(7478), 7, + ACTIONS(7484), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1814), 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, - [162663] = 5, + [160928] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7482), 1, - aux_sym__immediate_decimal_token2, STATE(4226), 1, sym_comment, - ACTIONS(1785), 2, + ACTIONS(2012), 3, sym__space, - anon_sym_LPAREN2, - ACTIONS(1783), 14, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2010), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379481,52 +381934,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_unquoted_token2, - [162693] = 12, - ACTIONS(251), 1, + anon_sym_DOT_DOT2, + [160956] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2558), 1, - anon_sym_COMMA, - ACTIONS(7336), 1, - anon_sym_EQ, - ACTIONS(7338), 1, - sym__newline, - ACTIONS(7340), 1, - anon_sym_COLON, - ACTIONS(7486), 1, - anon_sym_DASH2, + ACTIONS(4452), 1, + anon_sym_LPAREN2, STATE(4227), 1, sym_comment, - STATE(4457), 1, - aux_sym_parameter_repeat1, - STATE(5181), 1, - aux_sym_parameter_repeat2, - STATE(6546), 1, - aux_sym_shebang_repeat1, - STATE(5101), 2, - sym_param_type, - sym_param_value, - ACTIONS(7484), 7, - sym_identifier, + STATE(7298), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7375), 15, + ts_builtin_sym_end, + 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, - [162737] = 6, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [160986] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7490), 1, - sym__space, - ACTIONS(7492), 1, - anon_sym_DOT_DOT2, + ACTIONS(7253), 1, + anon_sym_DOT2, + STATE(4042), 1, + aux_sym_cell_path_repeat1, STATE(4228), 1, sym_comment, - ACTIONS(7494), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7488), 13, + STATE(4244), 1, + sym_path, + STATE(4946), 1, + sym_cell_path, + ACTIONS(1955), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1953), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379538,47 +381988,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, - [162769] = 4, - ACTIONS(251), 1, + [161022] = 12, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(2632), 1, + anon_sym_COMMA, + ACTIONS(7324), 1, + anon_sym_EQ, + ACTIONS(7326), 1, + sym__newline, + ACTIONS(7328), 1, + anon_sym_COLON, + ACTIONS(7488), 1, + anon_sym_DASH2, STATE(4229), 1, sym_comment, - ACTIONS(1711), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1713), 14, - anon_sym_EQ, + STATE(4384), 1, + aux_sym_parameter_repeat1, + STATE(5161), 1, + aux_sym_parameter_repeat2, + STATE(6163), 1, + aux_sym_shebang_repeat1, + STATE(4971), 2, + sym_param_type, + sym_param_value, + ACTIONS(7486), 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_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [162797] = 5, - ACTIONS(251), 1, + [161066] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7496), 1, - anon_sym_LBRACK2, STATE(4230), 1, sym_comment, - ACTIONS(2230), 2, - anon_sym_LBRACK, + ACTIONS(1701), 3, anon_sym_DASH2, - ACTIONS(2234), 14, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1703), 14, anon_sym_EQ, sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, anon_sym_COLON, anon_sym_RBRACK, @@ -379587,50 +382041,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [162827] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2558), 1, - anon_sym_COMMA, - ACTIONS(7336), 1, - anon_sym_EQ, - ACTIONS(7338), 1, - sym__newline, - ACTIONS(7340), 1, - anon_sym_COLON, - ACTIONS(7500), 1, - anon_sym_DASH2, - STATE(4214), 1, - aux_sym_parameter_repeat1, - STATE(4231), 1, - sym_comment, - STATE(5148), 1, - aux_sym_parameter_repeat2, - STATE(6546), 1, - aux_sym_shebang_repeat1, - STATE(5101), 2, - sym_param_type, - sym_param_value, - ACTIONS(7498), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [162871] = 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [161094] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4232), 1, + STATE(4231), 1, sym_comment, - ACTIONS(1995), 3, + ACTIONS(2028), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1993), 14, + ACTIONS(2026), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379645,23 +382068,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [162899] = 8, + [161122] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7300), 1, - anon_sym_DOT2, - STATE(4060), 1, - aux_sym_cell_path_repeat1, - STATE(4222), 1, - sym_path, - STATE(4233), 1, + STATE(4232), 1, sym_comment, - STATE(4778), 1, - sym_cell_path, - ACTIONS(1857), 2, - ts_builtin_sym_end, + ACTIONS(2024), 3, sym__space, - ACTIONS(1855), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2022), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379673,15 +382089,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, - [162935] = 4, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [161150] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1835), 1, - aux_sym_unquoted_token2, - STATE(4234), 1, + ACTIONS(1983), 1, + sym__space, + ACTIONS(7490), 1, + anon_sym_DOT_DOT2, + STATE(4233), 1, sym_comment, - ACTIONS(1837), 16, - ts_builtin_sym_end, + ACTIONS(7492), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1977), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379693,27 +382116,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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [162963] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + [161182] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7300), 1, - anon_sym_DOT2, - STATE(4060), 1, - aux_sym_cell_path_repeat1, - STATE(4222), 1, - sym_path, - STATE(4235), 1, + ACTIONS(2067), 1, + anon_sym_LPAREN2, + ACTIONS(2071), 1, + aux_sym_unquoted_token4, + STATE(4234), 1, sym_comment, - STATE(4949), 1, - sym_cell_path, - ACTIONS(1911), 2, + ACTIONS(2065), 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(2069), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(1909), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379725,17 +382144,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, - [162999] = 5, - ACTIONS(251), 1, + [161214] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1540), 1, - aux_sym_unquoted_token2, - ACTIONS(2226), 1, - anon_sym_LPAREN2, - STATE(4236), 1, + ACTIONS(7494), 1, + aux_sym__immediate_decimal_token2, + STATE(4235), 1, sym_comment, - ACTIONS(2228), 15, - ts_builtin_sym_end, + ACTIONS(1768), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1766), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379747,54 +382166,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_and2, - anon_sym_xor2, - anon_sym_or2, - [163029] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1812), 1, - anon_sym_DASH2, - ACTIONS(1814), 1, - anon_sym_LPAREN2, - ACTIONS(1822), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(7502), 1, - anon_sym_DOT_DOT2, - STATE(4237), 1, - sym_comment, - ACTIONS(7504), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1820), 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, - [163065] = 8, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [161244] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7300), 1, + ACTIONS(7253), 1, anon_sym_DOT2, - STATE(4060), 1, + STATE(4042), 1, aux_sym_cell_path_repeat1, - STATE(4222), 1, - sym_path, - STATE(4238), 1, + STATE(4236), 1, sym_comment, - STATE(4951), 1, + STATE(4244), 1, + sym_path, + STATE(4815), 1, sym_cell_path, - ACTIONS(1915), 2, + ACTIONS(1941), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1913), 11, + ACTIONS(1939), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379806,23 +382197,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, - [163101] = 8, + [161280] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7300), 1, + ACTIONS(7253), 1, anon_sym_DOT2, - STATE(4060), 1, + STATE(4042), 1, aux_sym_cell_path_repeat1, - STATE(4222), 1, - sym_path, - STATE(4239), 1, + STATE(4237), 1, sym_comment, - STATE(4846), 1, + STATE(4244), 1, + sym_path, + STATE(4832), 1, sym_cell_path, - ACTIONS(1861), 2, + ACTIONS(1911), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1859), 11, + ACTIONS(1909), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379834,67 +382225,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, - [163137] = 4, - ACTIONS(251), 1, + [161316] = 14, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4240), 1, - sym_comment, - ACTIONS(1783), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1785), 14, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1258), 1, + anon_sym_LPAREN, + ACTIONS(1272), 1, + anon_sym_DQUOTE, + ACTIONS(1276), 1, + sym_raw_string_begin, + ACTIONS(3512), 1, 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, - [163165] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2049), 1, - sym__space, - ACTIONS(7506), 1, - anon_sym_DOT_DOT2, - STATE(4241), 1, + ACTIONS(7496), 1, + sym__unquoted_naive, + STATE(1875), 1, + sym__inter_single_quotes, + STATE(1877), 1, + sym__inter_double_quotes, + STATE(4238), 1, sym_comment, - ACTIONS(7508), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2043), 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, - [163197] = 4, + ACTIONS(1274), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3793), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4918), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [161364] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4242), 1, + ACTIONS(7253), 1, + anon_sym_DOT2, + STATE(4042), 1, + aux_sym_cell_path_repeat1, + STATE(4239), 1, sym_comment, - ACTIONS(994), 4, + STATE(4244), 1, + sym_path, + STATE(4941), 1, + sym_cell_path, + ACTIONS(1947), 2, ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(992), 13, + ACTIONS(1945), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379906,25 +382287,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_DOT2, - [163225] = 8, + [161400] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7300), 1, + ACTIONS(7253), 1, anon_sym_DOT2, - STATE(4060), 1, + STATE(4042), 1, aux_sym_cell_path_repeat1, - STATE(4222), 1, - sym_path, - STATE(4243), 1, + STATE(4240), 1, sym_comment, - STATE(4825), 1, + STATE(4244), 1, + sym_path, + STATE(4862), 1, sym_cell_path, - ACTIONS(1923), 2, + ACTIONS(1963), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1921), 11, + ACTIONS(1961), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379936,70 +382315,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, - [163261] = 6, - ACTIONS(3), 1, + [161436] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1012), 1, - sym__space, - ACTIONS(7492), 1, - anon_sym_DOT_DOT2, - STATE(4244), 1, - sym_comment, - ACTIONS(7494), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1016), 13, + ACTIONS(2632), 1, + anon_sym_COMMA, + ACTIONS(7324), 1, + anon_sym_EQ, + ACTIONS(7326), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(7328), 1, + anon_sym_COLON, + ACTIONS(7500), 1, + anon_sym_DASH2, + STATE(4191), 1, + aux_sym_parameter_repeat1, + STATE(4241), 1, + sym_comment, + STATE(5162), 1, + aux_sym_parameter_repeat2, + STATE(6163), 1, + aux_sym_shebang_repeat1, + STATE(4971), 2, + sym_param_type, + sym_param_value, + ACTIONS(7498), 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, - anon_sym_RBRACE, - [163293] = 4, - ACTIONS(3), 1, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [161480] = 12, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4245), 1, - sym_comment, - ACTIONS(1002), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1000), 14, + ACTIONS(2632), 1, + anon_sym_COMMA, + ACTIONS(7324), 1, + anon_sym_EQ, + ACTIONS(7326), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(7328), 1, + anon_sym_COLON, + ACTIONS(7504), 1, + anon_sym_DASH2, + STATE(4242), 1, + sym_comment, + STATE(4384), 1, + aux_sym_parameter_repeat1, + STATE(5163), 1, + aux_sym_parameter_repeat2, + STATE(6163), 1, + aux_sym_shebang_repeat1, + STATE(4971), 2, + sym_param_type, + sym_param_value, + ACTIONS(7502), 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, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [163321] = 6, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [161524] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7510), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7512), 1, + ACTIONS(7373), 1, aux_sym__immediate_decimal_token2, - STATE(4246), 1, + STATE(4243), 1, sym_comment, - ACTIONS(1713), 3, - ts_builtin_sym_end, + ACTIONS(1703), 2, sym__space, anon_sym_LPAREN2, - ACTIONS(1711), 12, + ACTIONS(1701), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380011,18 +382401,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, aux_sym_unquoted_token2, - [163353] = 4, + [161554] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4247), 1, + STATE(4244), 1, sym_comment, - ACTIONS(990), 4, + ACTIONS(984), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(988), 13, + ACTIONS(982), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380036,23 +382428,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, anon_sym_DOT2, - [163381] = 8, - ACTIONS(3), 1, + [161582] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7300), 1, - anon_sym_DOT2, - STATE(4060), 1, - aux_sym_cell_path_repeat1, - STATE(4222), 1, - sym_path, - STATE(4248), 1, + ACTIONS(2108), 1, + anon_sym_DOLLAR, + ACTIONS(2160), 1, + sym_raw_string_begin, + ACTIONS(4337), 1, + anon_sym_DQUOTE, + ACTIONS(4341), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4343), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5096), 1, + anon_sym_LPAREN, + ACTIONS(7506), 1, + sym__unquoted_naive, + STATE(4245), 1, sym_comment, - STATE(4728), 1, - sym_cell_path, - ACTIONS(1981), 2, + STATE(4555), 1, + sym__inter_single_quotes, + STATE(4607), 1, + sym__inter_double_quotes, + ACTIONS(4339), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4059), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4722), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [161630] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1562), 1, + aux_sym_unquoted_token2, + ACTIONS(2170), 1, + anon_sym_LPAREN2, + STATE(4246), 1, + sym_comment, + ACTIONS(2172), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(1979), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380064,39 +382484,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [163417] = 6, - ACTIONS(251), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [161660] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2236), 1, + anon_sym_DOLLAR, + ACTIONS(2286), 1, + sym_raw_string_begin, + ACTIONS(4297), 1, + anon_sym_DQUOTE, + ACTIONS(4301), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4303), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5195), 1, + anon_sym_LPAREN, + ACTIONS(7508), 1, + sym__unquoted_naive, + STATE(4247), 1, + sym_comment, + STATE(4830), 1, + sym__inter_single_quotes, + STATE(4848), 1, + sym__inter_double_quotes, + ACTIONS(4299), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4153), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4852), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [161708] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7514), 1, + STATE(4248), 1, + sym_comment, + ACTIONS(1792), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1794), 14, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(7519), 1, - anon_sym_and2, + 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, + [161736] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1885), 1, + anon_sym_DASH2, + ACTIONS(7298), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4097), 1, + aux_sym_cell_path_repeat1, STATE(4249), 1, sym_comment, - STATE(4379), 1, - aux_sym_shebang_repeat1, - ACTIONS(7517), 13, - anon_sym_SEMI, + STATE(4269), 1, + sym_cell_path, + ACTIONS(1887), 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, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [163448] = 4, - ACTIONS(251), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [161771] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7510), 1, + anon_sym_DOT_DOT2, STATE(4250), 1, sym_comment, - STATE(4304), 1, - aux_sym_shebang_repeat1, - ACTIONS(7521), 15, + ACTIONS(998), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7512), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1002), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380108,18 +382597,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_and2, - anon_sym_xor2, - anon_sym_or2, - [163475] = 4, - ACTIONS(251), 1, + [161802] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2489), 1, + ACTIONS(2407), 1, anon_sym_DASH2, STATE(4251), 1, sym_comment, - ACTIONS(2491), 15, + ACTIONS(2409), 15, anon_sym_EQ, sym_identifier, sym__newline, @@ -380135,68 +382620,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [163502] = 8, - ACTIONS(251), 1, + [161829] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(7519), 1, - anon_sym_and2, - ACTIONS(7525), 1, - anon_sym_xor2, - ACTIONS(7527), 1, - anon_sym_or2, + ACTIONS(1877), 1, + anon_sym_DASH2, STATE(4252), 1, sym_comment, - STATE(4290), 1, - aux_sym_shebang_repeat1, - ACTIONS(7523), 11, + ACTIONS(1879), 15, + 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_LBRACK, + anon_sym_RBRACK, anon_sym_RPAREN, - [163537] = 8, - ACTIONS(251), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [161856] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4912), 1, - anon_sym_DOT2, - STATE(1386), 1, - aux_sym_cell_path_repeat1, - STATE(1532), 1, - sym_path, + STATE(1615), 1, + aux_sym_shebang_repeat1, STATE(4253), 1, sym_comment, - STATE(5135), 1, - sym_cell_path, - ACTIONS(7529), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7531), 10, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - [163572] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4254), 1, - sym_comment, - STATE(4410), 1, - aux_sym_shebang_repeat1, - ACTIONS(7521), 15, + ACTIONS(7514), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380212,13 +382666,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [163599] = 3, - ACTIONS(251), 1, + [161883] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4255), 1, - sym_comment, - ACTIONS(7355), 16, + ACTIONS(3842), 1, sym__newline, + ACTIONS(7518), 1, + anon_sym_and2, + ACTIONS(7520), 1, + anon_sym_xor2, + STATE(4254), 1, + sym_comment, + STATE(4387), 1, + aux_sym_shebang_repeat1, + ACTIONS(7516), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380230,41 +382691,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_RBRACE, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - [163624] = 4, - ACTIONS(3), 1, + [161916] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4256), 1, + ACTIONS(1833), 1, + anon_sym_DASH2, + STATE(4255), 1, sym_comment, - ACTIONS(1837), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1835), 14, + ACTIONS(1835), 15, + 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_LBRACK, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - aux_sym_unquoted_token2, - [163651] = 4, - ACTIONS(251), 1, + [161943] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2328), 1, + ACTIONS(1861), 1, anon_sym_DASH2, - STATE(4257), 1, + STATE(4256), 1, sym_comment, - ACTIONS(2330), 15, + ACTIONS(1863), 15, anon_sym_EQ, sym_identifier, sym__newline, @@ -380280,18 +382738,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [163678] = 6, - ACTIONS(3), 1, + [161970] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4860), 1, - sym__space, - ACTIONS(7533), 1, - sym_long_flag_identifier, - ACTIONS(7535), 1, - anon_sym_EQ2, - STATE(4258), 1, + STATE(4257), 1, sym_comment, - ACTIONS(4862), 13, + STATE(4346), 1, + aux_sym_shebang_repeat1, + ACTIONS(7516), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380304,15 +382758,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, - [163709] = 4, - ACTIONS(251), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [161997] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1941), 1, + ACTIONS(2310), 1, anon_sym_DASH2, - STATE(4259), 1, + STATE(4258), 1, sym_comment, - ACTIONS(1943), 15, + ACTIONS(2312), 15, anon_sym_EQ, sym_identifier, sym__newline, @@ -380328,14 +382784,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [163736] = 4, - ACTIONS(251), 1, + [162024] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2332), 1, + ACTIONS(1961), 1, anon_sym_DASH2, - STATE(4260), 1, + STATE(4259), 1, sym_comment, - ACTIONS(2334), 15, + ACTIONS(1963), 15, anon_sym_EQ, sym_identifier, sym__newline, @@ -380351,14 +382807,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [163763] = 4, - ACTIONS(251), 1, + [162051] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1937), 1, + ACTIONS(1703), 1, + sym__space, + ACTIONS(7193), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7522), 1, + anon_sym_DOT, + STATE(4260), 1, + sym_comment, + ACTIONS(1701), 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, + [162082] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1885), 1, anon_sym_DASH2, STATE(4261), 1, sym_comment, - ACTIONS(1939), 15, + ACTIONS(1887), 15, anon_sym_EQ, sym_identifier, sym__newline, @@ -380374,16 +382855,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [163790] = 5, - ACTIONS(251), 1, + [162109] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7539), 1, - anon_sym_and2, - STATE(1800), 1, - aux_sym_shebang_repeat1, STATE(4262), 1, sym_comment, - ACTIONS(7537), 14, + STATE(4367), 1, + aux_sym_shebang_repeat1, + ACTIONS(7516), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380396,22 +382875,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_and2, anon_sym_xor2, anon_sym_or2, - [163819] = 7, - ACTIONS(251), 1, + [162136] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(7541), 1, + ACTIONS(7524), 1, anon_sym_and2, - ACTIONS(7543), 1, - anon_sym_xor2, + STATE(1615), 1, + aux_sym_shebang_repeat1, STATE(4263), 1, sym_comment, - STATE(4439), 1, - aux_sym_shebang_repeat1, - ACTIONS(7521), 12, + ACTIONS(7514), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380423,92 +382900,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor2, anon_sym_or2, - [163852] = 7, - ACTIONS(251), 1, + [162165] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(7541), 1, - anon_sym_and2, - ACTIONS(7543), 1, - anon_sym_xor2, + ACTIONS(2314), 1, + anon_sym_DASH2, STATE(4264), 1, sym_comment, - STATE(4327), 1, - aux_sym_shebang_repeat1, - ACTIONS(7521), 12, + ACTIONS(2316), 15, + 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_LBRACK, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_or2, - [163885] = 8, - ACTIONS(251), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [162192] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4912), 1, - anon_sym_DOT2, - STATE(1386), 1, - aux_sym_cell_path_repeat1, - STATE(1399), 1, - sym_cell_path, - STATE(1532), 1, - sym_path, + ACTIONS(2330), 1, + anon_sym_DASH2, STATE(4265), 1, sym_comment, - ACTIONS(943), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(945), 10, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - [163920] = 5, - ACTIONS(251), 1, + ACTIONS(2332), 15, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [162219] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7547), 1, - anon_sym_and2, - ACTIONS(7549), 1, - anon_sym_xor2, + ACTIONS(1889), 1, + anon_sym_DASH2, STATE(4266), 1, sym_comment, - ACTIONS(7545), 14, + ACTIONS(1891), 15, + 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_LBRACK, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_or2, - [163949] = 4, - ACTIONS(251), 1, + [162246] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2446), 1, + ACTIONS(1901), 1, anon_sym_DASH2, STATE(4267), 1, sym_comment, - ACTIONS(2448), 15, + ACTIONS(1903), 15, anon_sym_EQ, sym_identifier, sym__newline, @@ -380524,155 +382994,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [163976] = 4, - ACTIONS(3), 1, + [162273] = 4, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(1639), 1, + anon_sym_DASH2, STATE(4268), 1, sym_comment, - ACTIONS(1713), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1711), 14, + ACTIONS(1651), 15, + 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_LBRACK, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - aux_sym_unquoted_token2, - [164003] = 4, - ACTIONS(3), 1, + [162300] = 4, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(2389), 1, + anon_sym_DASH2, STATE(4269), 1, sym_comment, - ACTIONS(1757), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1755), 14, + ACTIONS(2391), 15, + 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_LBRACK, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - aux_sym_unquoted_token2, - [164030] = 7, - ACTIONS(251), 1, + [162327] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(7519), 1, - anon_sym_and2, - ACTIONS(7525), 1, - anon_sym_xor2, + ACTIONS(2393), 1, + anon_sym_DASH2, STATE(4270), 1, sym_comment, - STATE(4369), 1, - aux_sym_shebang_repeat1, - ACTIONS(7521), 12, + ACTIONS(2395), 15, + 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_LBRACK, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_or2, - [164063] = 6, - ACTIONS(251), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [162354] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7541), 1, - anon_sym_and2, - ACTIONS(7551), 1, - sym__newline, + ACTIONS(1905), 1, + anon_sym_DASH2, STATE(4271), 1, sym_comment, - STATE(4283), 1, - aux_sym_shebang_repeat1, - ACTIONS(7554), 13, + ACTIONS(1907), 15, + 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_LBRACK, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [164094] = 5, - ACTIONS(251), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [162381] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7556), 1, - anon_sym_and2, - ACTIONS(7558), 1, - anon_sym_xor2, + ACTIONS(2421), 1, + anon_sym_DASH2, STATE(4272), 1, sym_comment, - ACTIONS(7545), 14, + ACTIONS(2423), 15, + 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_LBRACK, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_or2, - [164123] = 3, - ACTIONS(251), 1, + [162408] = 4, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(2437), 1, + anon_sym_DASH2, STATE(4273), 1, sym_comment, - ACTIONS(7545), 16, + ACTIONS(2439), 15, + 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_LBRACK, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [164148] = 3, - ACTIONS(251), 1, + [162435] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(4274), 1, sym_comment, - ACTIONS(7545), 16, + ACTIONS(2087), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2085), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380686,68 +383154,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [164173] = 3, - ACTIONS(251), 1, + aux_sym_unquoted_token4, + [162462] = 4, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(1002), 1, + anon_sym_DASH2, STATE(4275), 1, sym_comment, - ACTIONS(7545), 16, + ACTIONS(998), 15, + 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_LBRACK, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [164198] = 4, - ACTIONS(3), 1, + [162489] = 4, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(2429), 1, + anon_sym_DASH2, STATE(4276), 1, sym_comment, - ACTIONS(1995), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1993), 12, + ACTIONS(2431), 15, + 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_DOT_DOT2, - [164225] = 7, - ACTIONS(251), 1, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [162516] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(7519), 1, + ACTIONS(7526), 1, anon_sym_and2, - ACTIONS(7525), 1, - anon_sym_xor2, + STATE(1615), 1, + aux_sym_shebang_repeat1, STATE(4277), 1, sym_comment, - STATE(4328), 1, - aux_sym_shebang_repeat1, - ACTIONS(7521), 12, + ACTIONS(7514), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380759,15 +383223,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_xor2, anon_sym_or2, - [164258] = 4, - ACTIONS(251), 1, + [162545] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + ACTIONS(1808), 1, + anon_sym_LPAREN2, + ACTIONS(1814), 1, + sym__space, STATE(4278), 1, sym_comment, - ACTIONS(7560), 15, + ACTIONS(1806), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380780,17 +383249,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_and2, - anon_sym_xor2, - anon_sym_or2, - [164285] = 4, - ACTIONS(251), 1, + anon_sym_RBRACE, + [162576] = 4, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(2413), 1, + anon_sym_DASH2, STATE(4279), 1, sym_comment, - STATE(4305), 1, - aux_sym_shebang_repeat1, - ACTIONS(7521), 15, + ACTIONS(2415), 15, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [162603] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4938), 1, + sym__space, + ACTIONS(7528), 1, + sym_long_flag_identifier, + ACTIONS(7530), 1, + anon_sym_EQ2, + STATE(4280), 1, + sym_comment, + ACTIONS(4940), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380803,21 +383297,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_and2, - anon_sym_xor2, - anon_sym_or2, - [164312] = 6, + anon_sym_RBRACE, + [162634] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1814), 1, - anon_sym_LPAREN2, - ACTIONS(1822), 1, - aux_sym_unquoted_token2, - ACTIONS(2222), 1, - sym__space, - STATE(4280), 1, + ACTIONS(7510), 1, + anon_sym_DOT_DOT2, + STATE(4281), 1, sym_comment, - ACTIONS(2220), 13, + ACTIONS(7440), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7512), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7438), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380829,20 +383323,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, - [164343] = 5, + [162665] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7434), 1, + ACTIONS(7532), 1, aux_sym__immediate_decimal_token2, - STATE(4281), 1, + STATE(4282), 1, sym_comment, - ACTIONS(1757), 3, + ACTIONS(1768), 3, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, - ACTIONS(1755), 12, + ACTIONS(1766), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380855,14 +383347,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, aux_sym_unquoted_token2, - [164372] = 4, - ACTIONS(251), 1, + [162694] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4282), 1, + ACTIONS(7534), 1, + anon_sym_DOT_DOT2, + STATE(4283), 1, sym_comment, - ACTIONS(7560), 15, + ACTIONS(2049), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7536), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2043), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380874,20 +383372,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_and2, - anon_sym_xor2, - anon_sym_or2, - [164399] = 5, - ACTIONS(251), 1, + [162725] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7562), 1, - anon_sym_and2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4283), 1, + STATE(4284), 1, sym_comment, - ACTIONS(7560), 14, + ACTIONS(1678), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1676), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380899,17 +383394,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_xor2, - anon_sym_or2, - [164428] = 4, - ACTIONS(251), 1, + anon_sym_DOT_DOT2, + [162752] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2501), 1, + ACTIONS(2318), 1, anon_sym_DASH2, - STATE(4284), 1, + STATE(4285), 1, sym_comment, - ACTIONS(2503), 15, + ACTIONS(2320), 15, anon_sym_EQ, sym_identifier, sym__newline, @@ -380925,18 +383418,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [164455] = 6, - ACTIONS(3), 1, + [162779] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2138), 1, - anon_sym_LPAREN2, - ACTIONS(2140), 1, - sym__space, - ACTIONS(2142), 1, - aux_sym_unquoted_token4, - STATE(4285), 1, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(4286), 1, sym_comment, - ACTIONS(2136), 13, + ACTIONS(7538), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380949,43 +383438,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_RBRACE, - [164486] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7539), 1, anon_sym_and2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4286), 1, + anon_sym_xor2, + anon_sym_or2, + [162806] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7540), 1, + anon_sym_DOT, + ACTIONS(7542), 1, + aux_sym__immediate_decimal_token2, + STATE(4287), 1, sym_comment, - ACTIONS(7560), 14, + ACTIONS(1701), 3, + sym_identifier, + anon_sym_DASH2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1703), 11, + 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_RBRACK, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [164515] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [162837] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4839), 1, - sym__space, - ACTIONS(7564), 1, - anon_sym_EQ2, - ACTIONS(7566), 1, - sym_short_flag_identifier, - STATE(4287), 1, + ACTIONS(7544), 1, + anon_sym_DOT_DOT2, + STATE(4288), 1, sym_comment, - ACTIONS(4841), 13, + ACTIONS(2036), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7546), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2030), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380997,45 +383491,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, - [164546] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2414), 1, - anon_sym_DASH2, - STATE(4288), 1, - sym_comment, - ACTIONS(2416), 15, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [164573] = 7, - ACTIONS(251), 1, + [162868] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7562), 1, - anon_sym_and2, - ACTIONS(7570), 1, - anon_sym_xor2, - ACTIONS(7572), 1, - anon_sym_or2, - STATE(1800), 1, - aux_sym_shebang_repeat1, + ACTIONS(7548), 1, + anon_sym_DOT_DOT2, STATE(4289), 1, sym_comment, - ACTIONS(7568), 12, + ACTIONS(1983), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7550), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1977), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381047,21 +383516,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, - [164606] = 7, - ACTIONS(251), 1, + [162899] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7539), 1, - anon_sym_and2, - ACTIONS(7574), 1, - anon_sym_xor2, - ACTIONS(7576), 1, - anon_sym_or2, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, STATE(4290), 1, sym_comment, - ACTIONS(7568), 12, + ACTIONS(7552), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381074,14 +383536,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [164639] = 4, - ACTIONS(251), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [162926] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, STATE(4291), 1, sym_comment, - ACTIONS(7578), 15, + ACTIONS(7552), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381097,14 +383562,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [164666] = 4, - ACTIONS(251), 1, + [162953] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, + ACTIONS(7524), 1, + anon_sym_and2, + STATE(1615), 1, aux_sym_shebang_repeat1, STATE(4292), 1, sym_comment, - ACTIONS(7537), 15, + ACTIONS(7552), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381117,21 +383584,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_and2, anon_sym_xor2, anon_sym_or2, - [164693] = 6, - ACTIONS(3), 1, + [162982] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - ACTIONS(4882), 1, - sym__space, + ACTIONS(7526), 1, + anon_sym_and2, + STATE(1615), 1, + aux_sym_shebang_repeat1, STATE(4293), 1, sym_comment, - STATE(7580), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4884), 13, + ACTIONS(7552), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381144,19 +383608,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, - [164724] = 6, - ACTIONS(3), 1, + anon_sym_xor2, + anon_sym_or2, + [163011] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2138), 1, - anon_sym_LPAREN2, - ACTIONS(2142), 1, - aux_sym_unquoted_token4, - ACTIONS(2146), 1, - sym__space, STATE(4294), 1, sym_comment, - ACTIONS(2144), 13, + ACTIONS(7304), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381170,18 +383629,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [164755] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7562), 1, anon_sym_and2, - ACTIONS(7570), 1, anon_sym_xor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, + anon_sym_or2, + [163036] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4861), 1, + sym__space, + ACTIONS(7554), 1, + anon_sym_EQ2, + ACTIONS(7556), 1, + sym_short_flag_identifier, STATE(4295), 1, sym_comment, - ACTIONS(7560), 13, + ACTIONS(4863), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381194,19 +383656,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_or2, - [164786] = 6, - ACTIONS(251), 1, + anon_sym_RBRACE, + [163067] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7562), 1, - anon_sym_and2, - ACTIONS(7570), 1, - anon_sym_xor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, + ACTIONS(7558), 1, + anon_sym_DOT_DOT2, STATE(4296), 1, sym_comment, - ACTIONS(7537), 13, + ACTIONS(1991), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7560), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1985), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381218,16 +383682,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_or2, - [164817] = 4, - ACTIONS(251), 1, + [163098] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, STATE(4297), 1, sym_comment, - ACTIONS(7578), 15, + ACTIONS(1703), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1701), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381240,21 +383703,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_and2, - anon_sym_xor2, - anon_sym_or2, - [164844] = 6, - ACTIONS(251), 1, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [163125] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7539), 1, + ACTIONS(7524), 1, anon_sym_and2, - ACTIONS(7574), 1, + ACTIONS(7562), 1, anon_sym_xor2, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, STATE(4298), 1, sym_comment, - ACTIONS(7537), 13, + ACTIONS(7552), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381268,18 +383730,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [164875] = 6, - ACTIONS(251), 1, + [163156] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7519), 1, + ACTIONS(7524), 1, anon_sym_and2, - ACTIONS(7551), 1, - sym__newline, - STATE(4286), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, STATE(4299), 1, sym_comment, - ACTIONS(7554), 13, + ACTIONS(7552), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -381293,14 +383754,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [164906] = 4, - ACTIONS(251), 1, + [163185] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7547), 1, - anon_sym_and2, + STATE(1615), 1, + aux_sym_shebang_repeat1, STATE(4300), 1, sym_comment, - ACTIONS(7545), 15, + ACTIONS(7538), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381313,23 +383774,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_and2, anon_sym_xor2, anon_sym_or2, - [164933] = 6, - ACTIONS(3), 1, + [163212] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7580), 1, - anon_sym_DOT_DOT2, + ACTIONS(7526), 1, + anon_sym_and2, + ACTIONS(7564), 1, + anon_sym_xor2, + STATE(1615), 1, + aux_sym_shebang_repeat1, STATE(4301), 1, sym_comment, - ACTIONS(7490), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7582), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7488), 11, + ACTIONS(7552), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381341,41 +383800,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, - [164964] = 4, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_or2, + [163243] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1855), 1, - anon_sym_DASH2, + STATE(1615), 1, + aux_sym_shebang_repeat1, STATE(4302), 1, sym_comment, - ACTIONS(1857), 15, - anon_sym_EQ, - sym_identifier, + ACTIONS(7514), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - 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_LBRACE, - anon_sym_RBRACE, - [164991] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7539), 1, anon_sym_and2, - ACTIONS(7574), 1, anon_sym_xor2, - STATE(1800), 1, + anon_sym_or2, + [163270] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1615), 1, aux_sym_shebang_repeat1, STATE(4303), 1, sym_comment, - ACTIONS(7560), 13, + ACTIONS(7514), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381388,15 +383845,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_and2, + anon_sym_xor2, anon_sym_or2, - [165022] = 4, - ACTIONS(251), 1, + [163297] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, STATE(4304), 1, sym_comment, - ACTIONS(7584), 15, + ACTIONS(7375), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381409,17 +383866,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_and2, anon_sym_xor2, anon_sym_or2, - [165049] = 4, - ACTIONS(251), 1, + [163322] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, + ACTIONS(1818), 1, + anon_sym_LPAREN2, + ACTIONS(1826), 1, + aux_sym_unquoted_token2, + ACTIONS(2166), 1, + sym__space, STATE(4305), 1, sym_comment, - ACTIONS(7584), 15, + ACTIONS(2164), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381432,15 +383894,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_and2, - anon_sym_xor2, - anon_sym_or2, - [165076] = 3, - ACTIONS(251), 1, + anon_sym_RBRACE, + [163353] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(4306), 1, sym_comment, - ACTIONS(7355), 16, + ACTIONS(7304), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381457,22 +383917,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [165101] = 8, - ACTIONS(3), 1, + [163378] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7586), 1, + ACTIONS(1961), 1, + anon_sym_DASH2, + ACTIONS(7298), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4097), 1, + aux_sym_cell_path_repeat1, + STATE(4279), 1, + sym_cell_path, + STATE(4307), 1, + sym_comment, + ACTIONS(1963), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(7588), 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, + [163413] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1818), 1, + anon_sym_LPAREN2, + ACTIONS(1824), 1, sym__space, - ACTIONS(7592), 1, - anon_sym_COLON2, - STATE(4307), 1, + ACTIONS(1826), 1, + aux_sym_unquoted_token2, + STATE(4308), 1, sym_comment, - STATE(4634), 1, - aux_sym_command_repeat1, - STATE(6184), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - ACTIONS(7590), 11, + ACTIONS(1816), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -381483,19 +383967,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, - [165136] = 6, - ACTIONS(3), 1, + [163444] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - ACTIONS(4886), 1, - sym__space, - STATE(4308), 1, + ACTIONS(7526), 1, + anon_sym_and2, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(4309), 1, sym_comment, - STATE(7580), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4888), 13, + ACTIONS(7552), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381508,63 +383991,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, - [165167] = 6, - ACTIONS(251), 1, + anon_sym_xor2, + anon_sym_or2, + [163473] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7594), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7596), 1, - aux_sym__immediate_decimal_token2, - STATE(4309), 1, - sym_comment, - ACTIONS(1711), 3, - sym_identifier, - anon_sym_DASH2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1713), 11, - anon_sym_EQ, + ACTIONS(3842), 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_LPAREN2, - [165198] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1949), 1, - anon_sym_DASH2, + ACTIONS(7518), 1, + anon_sym_and2, + ACTIONS(7520), 1, + anon_sym_xor2, + ACTIONS(7568), 1, + anon_sym_or2, STATE(4310), 1, sym_comment, - ACTIONS(1951), 15, - anon_sym_EQ, - sym_identifier, - sym__newline, + STATE(4466), 1, + aux_sym_shebang_repeat1, + ACTIONS(7566), 11, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - 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_LBRACE, - anon_sym_RBRACE, - [165225] = 4, - ACTIONS(251), 1, + [163508] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(4311), 1, sym_comment, - STATE(4414), 1, - aux_sym_shebang_repeat1, - ACTIONS(7598), 15, + ACTIONS(2012), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2010), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381576,18 +384042,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_and2, - anon_sym_xor2, - anon_sym_or2, - [165252] = 4, - ACTIONS(251), 1, + anon_sym_DOT_DOT2, + [163535] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(4312), 1, sym_comment, - STATE(4418), 1, - aux_sym_shebang_repeat1, - ACTIONS(7598), 15, + ACTIONS(988), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(986), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381599,26 +384065,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_and2, - anon_sym_xor2, - anon_sym_or2, - [165279] = 8, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + [163562] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7586), 1, - sym__newline, - ACTIONS(7588), 1, - sym__space, - ACTIONS(7600), 1, - anon_sym_COLON2, STATE(4313), 1, sym_comment, - STATE(4634), 1, - aux_sym_command_repeat1, - STATE(6176), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - ACTIONS(7590), 11, + ACTIONS(7375), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -381629,17 +384083,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, - [165314] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7562), 1, anon_sym_and2, - STATE(1800), 1, - aux_sym_shebang_repeat1, + anon_sym_xor2, + anon_sym_or2, + [163587] = 4, + ACTIONS(247), 1, + anon_sym_POUND, STATE(4314), 1, sym_comment, - ACTIONS(7584), 14, + STATE(4390), 1, + aux_sym_shebang_repeat1, + ACTIONS(7570), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381652,16 +384108,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_and2, anon_sym_xor2, anon_sym_or2, - [165343] = 4, - ACTIONS(251), 1, + [163614] = 4, + ACTIONS(247), 1, anon_sym_POUND, STATE(4315), 1, sym_comment, - STATE(4336), 1, + STATE(4391), 1, aux_sym_shebang_repeat1, - ACTIONS(7554), 15, + ACTIONS(7570), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381677,16 +384134,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [165370] = 5, - ACTIONS(251), 1, + [163641] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7539), 1, - anon_sym_and2, - STATE(1800), 1, - aux_sym_shebang_repeat1, STATE(4316), 1, sym_comment, - ACTIONS(7584), 14, + ACTIONS(7304), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381699,22 +384152,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_and2, anon_sym_xor2, anon_sym_or2, - [165399] = 6, + [163666] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7602), 1, - anon_sym_DOT_DOT2, STATE(4317), 1, sym_comment, - ACTIONS(2041), 2, - ts_builtin_sym_end, + ACTIONS(1695), 2, sym__space, - ACTIONS(7604), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2035), 11, + anon_sym_LPAREN2, + ACTIONS(1693), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381726,15 +384176,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, - [165430] = 4, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [163693] = 6, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(7572), 1, + sym__newline, + ACTIONS(7575), 1, + anon_sym_and2, STATE(4318), 1, sym_comment, - STATE(4337), 1, + STATE(4401), 1, aux_sym_shebang_repeat1, - ACTIONS(7554), 15, - sym__newline, + ACTIONS(7570), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -381746,16 +384202,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_and2, anon_sym_xor2, anon_sym_or2, - [165457] = 3, - ACTIONS(251), 1, + [163724] = 6, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(7518), 1, + anon_sym_and2, + ACTIONS(7572), 1, + sym__newline, STATE(4319), 1, sym_comment, - ACTIONS(7355), 16, - sym__newline, + STATE(4402), 1, + aux_sym_shebang_repeat1, + ACTIONS(7570), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -381767,45 +384227,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, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [165482] = 4, - ACTIONS(251), 1, + [163755] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1953), 1, - anon_sym_DASH2, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(7575), 1, + anon_sym_and2, + ACTIONS(7577), 1, + anon_sym_xor2, STATE(4320), 1, sym_comment, - ACTIONS(1955), 15, - anon_sym_EQ, - sym_identifier, - sym__newline, + STATE(4428), 1, + aux_sym_shebang_repeat1, + ACTIONS(7570), 12, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - 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_LBRACE, - anon_sym_RBRACE, - [165509] = 6, + anon_sym_or2, + [163788] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2174), 1, + ACTIONS(4452), 1, anon_sym_LPAREN2, - ACTIONS(2176), 1, + ACTIONS(4887), 1, sym__space, - ACTIONS(2178), 1, - aux_sym_unquoted_token2, STATE(4321), 1, sym_comment, - ACTIONS(2172), 13, + STATE(7477), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4889), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381819,18 +384280,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [165540] = 6, - ACTIONS(251), 1, + [163819] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7541), 1, - anon_sym_and2, - ACTIONS(7606), 1, - sym__newline, + STATE(4286), 1, + aux_sym_shebang_repeat1, STATE(4322), 1, sym_comment, - STATE(4422), 1, - aux_sym_shebang_repeat1, - ACTIONS(7598), 13, + ACTIONS(7516), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -381842,20 +384300,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_and2, anon_sym_xor2, anon_sym_or2, - [165571] = 6, - ACTIONS(251), 1, + [163846] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7519), 1, + ACTIONS(7524), 1, anon_sym_and2, - ACTIONS(7606), 1, - sym__newline, + ACTIONS(7562), 1, + anon_sym_xor2, + STATE(1615), 1, + aux_sym_shebang_repeat1, STATE(4323), 1, sym_comment, - STATE(4434), 1, - aux_sym_shebang_repeat1, - ACTIONS(7598), 13, + ACTIONS(7552), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -381867,20 +384327,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_xor2, anon_sym_or2, - [165602] = 6, - ACTIONS(251), 1, + [163877] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7541), 1, - anon_sym_and2, - ACTIONS(7609), 1, - sym__newline, - STATE(4314), 1, - aux_sym_shebang_repeat1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + ACTIONS(4891), 1, + sym__space, STATE(4324), 1, sym_comment, - ACTIONS(7521), 13, + STATE(7477), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4893), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -381892,20 +384352,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_xor2, - anon_sym_or2, - [165633] = 6, - ACTIONS(251), 1, + anon_sym_RBRACE, + [163908] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7519), 1, - anon_sym_and2, - ACTIONS(7609), 1, - sym__newline, - STATE(4316), 1, + STATE(4300), 1, aux_sym_shebang_repeat1, STATE(4325), 1, sym_comment, - ACTIONS(7521), 13, + ACTIONS(7516), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -381917,19 +384373,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_and2, anon_sym_xor2, anon_sym_or2, - [165664] = 5, - ACTIONS(251), 1, + [163935] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7562), 1, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(7518), 1, anon_sym_and2, - STATE(1800), 1, - aux_sym_shebang_repeat1, + ACTIONS(7520), 1, + anon_sym_xor2, STATE(4326), 1, sym_comment, - ACTIONS(7578), 14, - sym__newline, + STATE(4429), 1, + aux_sym_shebang_repeat1, + ACTIONS(7570), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -381941,20 +384401,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_xor2, anon_sym_or2, - [165693] = 6, - ACTIONS(251), 1, + [163968] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7562), 1, + ACTIONS(7524), 1, anon_sym_and2, - ACTIONS(7570), 1, - anon_sym_xor2, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, STATE(4327), 1, sym_comment, - ACTIONS(7584), 13, + ACTIONS(7538), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381967,19 +384424,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_xor2, anon_sym_or2, - [165724] = 6, - ACTIONS(251), 1, + [163997] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7539), 1, - anon_sym_and2, - ACTIONS(7574), 1, - anon_sym_xor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, + ACTIONS(2075), 1, + anon_sym_LPAREN2, + ACTIONS(2079), 1, + aux_sym_unquoted_token4, + ACTIONS(2083), 1, + sym__space, STATE(4328), 1, sym_comment, - ACTIONS(7584), 13, + ACTIONS(2081), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381992,19 +384450,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_or2, - [165755] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [164028] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1540), 1, - aux_sym_unquoted_token2, - ACTIONS(2226), 1, - anon_sym_LPAREN2, - ACTIONS(2228), 1, - sym__space, + ACTIONS(7526), 1, + anon_sym_and2, + STATE(1615), 1, + aux_sym_shebang_repeat1, STATE(4329), 1, sym_comment, - ACTIONS(2224), 13, + ACTIONS(7538), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382017,21 +384473,40 @@ static 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, - [165786] = 7, - ACTIONS(251), 1, + anon_sym_xor2, + anon_sym_or2, + [164057] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + STATE(4330), 1, + sym_comment, + STATE(4442), 1, + aux_sym_shebang_repeat1, + ACTIONS(7570), 15, sym__newline, - ACTIONS(7519), 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_and2, - ACTIONS(7525), 1, anon_sym_xor2, - STATE(4330), 1, + anon_sym_or2, + [164084] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4331), 1, sym_comment, - STATE(4450), 1, + STATE(4443), 1, aux_sym_shebang_repeat1, - ACTIONS(7517), 12, + ACTIONS(7570), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -382043,21 +384518,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_and2, + anon_sym_xor2, anon_sym_or2, - [165819] = 7, - ACTIONS(251), 1, + [164111] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(7572), 1, sym__newline, - ACTIONS(7541), 1, + ACTIONS(7575), 1, anon_sym_and2, - ACTIONS(7543), 1, + STATE(4332), 1, + sym_comment, + STATE(4446), 1, + aux_sym_shebang_repeat1, + ACTIONS(7570), 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, anon_sym_xor2, - STATE(4331), 1, + anon_sym_or2, + [164142] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7518), 1, + anon_sym_and2, + ACTIONS(7572), 1, + sym__newline, + STATE(4333), 1, sym_comment, - STATE(4464), 1, + STATE(4447), 1, aux_sym_shebang_repeat1, - ACTIONS(7598), 12, + ACTIONS(7570), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -382069,21 +384569,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_xor2, anon_sym_or2, - [165852] = 7, - ACTIONS(251), 1, + [164173] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(7519), 1, + ACTIONS(7575), 1, anon_sym_and2, - ACTIONS(7525), 1, + ACTIONS(7577), 1, anon_sym_xor2, - STATE(4298), 1, - aux_sym_shebang_repeat1, - STATE(4332), 1, + STATE(4334), 1, sym_comment, - ACTIONS(7598), 12, + STATE(4450), 1, + aux_sym_shebang_repeat1, + ACTIONS(7570), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -382096,20 +384597,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [165885] = 7, - ACTIONS(251), 1, + [164206] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(7519), 1, + ACTIONS(7518), 1, anon_sym_and2, - ACTIONS(7525), 1, + ACTIONS(7520), 1, anon_sym_xor2, - STATE(4333), 1, + STATE(4335), 1, sym_comment, - STATE(4465), 1, + STATE(4451), 1, aux_sym_shebang_repeat1, - ACTIONS(7598), 12, + ACTIONS(7570), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -382122,20 +384623,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [165918] = 6, - ACTIONS(3), 1, + [164239] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7612), 1, - anon_sym_DOT_DOT2, - STATE(4334), 1, + STATE(4336), 1, sym_comment, - ACTIONS(2025), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7614), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2019), 11, + ACTIONS(7375), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382147,14 +384640,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, - [165949] = 4, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [164264] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2336), 1, + ACTIONS(1917), 1, anon_sym_DASH2, - STATE(4335), 1, + STATE(4337), 1, sym_comment, - ACTIONS(2338), 15, + ACTIONS(1919), 15, anon_sym_EQ, sym_identifier, sym__newline, @@ -382170,37 +384668,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [165976] = 4, - ACTIONS(251), 1, + [164291] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4336), 1, + ACTIONS(2385), 1, + anon_sym_DASH2, + STATE(4338), 1, sym_comment, - ACTIONS(7560), 15, + ACTIONS(2387), 15, + 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_LBRACK, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [164318] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7524), 1, anon_sym_and2, + ACTIONS(7562), 1, anon_sym_xor2, + ACTIONS(7581), 1, anon_sym_or2, - [166003] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(4337), 1, + STATE(4339), 1, sym_comment, - ACTIONS(7560), 15, + ACTIONS(7579), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382213,18 +384717,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + [164351] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7526), 1, anon_sym_and2, + ACTIONS(7564), 1, anon_sym_xor2, + ACTIONS(7583), 1, anon_sym_or2, - [166030] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7138), 1, - aux_sym_unquoted_token2, - STATE(4338), 1, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(4340), 1, sym_comment, - ACTIONS(1650), 15, - ts_builtin_sym_end, + ACTIONS(7579), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382236,23 +384742,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_and2, - anon_sym_xor2, - anon_sym_or2, - [166057] = 6, + anon_sym_RPAREN, + [164384] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7580), 1, - anon_sym_DOT_DOT2, - STATE(4339), 1, + STATE(4341), 1, sym_comment, - ACTIONS(1012), 2, + ACTIONS(2024), 4, ts_builtin_sym_end, sym__space, - ACTIONS(7582), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1016), 11, + ACTIONS(2022), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382264,39 +384765,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, - [166088] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1965), 1, - anon_sym_DASH2, - STATE(4340), 1, - sym_comment, - ACTIONS(1967), 15, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [166115] = 5, - ACTIONS(251), 1, + anon_sym_DOT_DOT2, + [164411] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7562), 1, + ACTIONS(7524), 1, anon_sym_and2, - STATE(1800), 1, + ACTIONS(7562), 1, + anon_sym_xor2, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(4341), 1, + STATE(4342), 1, sym_comment, - ACTIONS(7560), 14, + ACTIONS(7538), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382309,69 +384790,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_xor2, anon_sym_or2, - [166144] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4912), 1, - anon_sym_DOT2, - STATE(1386), 1, - aux_sym_cell_path_repeat1, - STATE(1532), 1, - sym_path, - STATE(4342), 1, - sym_comment, - STATE(4961), 1, - sym_cell_path, - ACTIONS(7616), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7618), 10, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - [166179] = 4, - ACTIONS(251), 1, + [164442] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2456), 1, - anon_sym_DASH2, STATE(4343), 1, sym_comment, - ACTIONS(2458), 15, - anon_sym_EQ, - sym_identifier, + ACTIONS(7585), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - 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_LBRACE, anon_sym_RBRACE, - [166206] = 4, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [164467] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(4344), 1, sym_comment, - ACTIONS(1002), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1000), 12, + ACTIONS(7585), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382383,18 +384830,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, - [166233] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [164492] = 6, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(7526), 1, + anon_sym_and2, + ACTIONS(7564), 1, + anon_sym_xor2, + STATE(1615), 1, + aux_sym_shebang_repeat1, STATE(4345), 1, sym_comment, - ACTIONS(1999), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1997), 12, + ACTIONS(7538), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382406,23 +384858,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, - [166260] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(7519), 1, - anon_sym_and2, - ACTIONS(7525), 1, - anon_sym_xor2, - ACTIONS(7527), 1, + anon_sym_RPAREN, anon_sym_or2, + [164523] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1615), 1, + aux_sym_shebang_repeat1, STATE(4346), 1, sym_comment, - STATE(4467), 1, - aux_sym_shebang_repeat1, - ACTIONS(7620), 11, + ACTIONS(7538), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -382434,89 +384880,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [166295] = 4, - ACTIONS(251), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [164550] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2342), 1, - anon_sym_DASH2, + ACTIONS(7524), 1, + anon_sym_and2, + STATE(1615), 1, + aux_sym_shebang_repeat1, STATE(4347), 1, sym_comment, - ACTIONS(2344), 15, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [166322] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1638), 1, - anon_sym_DASH2, - STATE(4348), 1, - sym_comment, - ACTIONS(1650), 15, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [166349] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2346), 1, - anon_sym_DASH2, - STATE(4349), 1, - sym_comment, - ACTIONS(2348), 15, - anon_sym_EQ, - sym_identifier, + ACTIONS(7514), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - 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_LBRACE, - anon_sym_RBRACE, - [166376] = 6, + anon_sym_xor2, + anon_sym_or2, + [164579] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7622), 1, - anon_sym_DOT_DOT2, - STATE(4350), 1, + STATE(4348), 1, sym_comment, - ACTIONS(2033), 2, - ts_builtin_sym_end, + ACTIONS(1768), 2, sym__space, - ACTIONS(7624), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2027), 11, + anon_sym_LPAREN2, + ACTIONS(1766), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382528,37 +384927,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, - [166407] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1969), 1, - anon_sym_DASH2, - STATE(4351), 1, - sym_comment, - ACTIONS(1971), 15, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_RBRACE, - [166434] = 4, - ACTIONS(251), 1, + aux_sym_unquoted_token2, + [164606] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4352), 1, - sym_comment, - STATE(4411), 1, + ACTIONS(7526), 1, + anon_sym_and2, + STATE(1615), 1, aux_sym_shebang_repeat1, - ACTIONS(7521), 15, + STATE(4349), 1, + sym_comment, + ACTIONS(7514), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382571,17 +384952,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_and2, anon_sym_xor2, anon_sym_or2, - [166461] = 4, - ACTIONS(251), 1, + [164635] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1016), 1, + ACTIONS(2322), 1, anon_sym_DASH2, - STATE(4353), 1, + STATE(4350), 1, sym_comment, - ACTIONS(1012), 15, + ACTIONS(2324), 15, anon_sym_EQ, sym_identifier, sym__newline, @@ -382597,14 +384977,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [166488] = 4, - ACTIONS(251), 1, + [164662] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1905), 1, + ACTIONS(2334), 1, anon_sym_DASH2, - STATE(4354), 1, + STATE(4351), 1, sym_comment, - ACTIONS(1907), 15, + ACTIONS(2336), 15, anon_sym_EQ, sym_identifier, sym__newline, @@ -382620,396 +385000,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [166515] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1921), 1, - anon_sym_DASH2, - ACTIONS(7306), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4123), 1, - aux_sym_cell_path_repeat1, - STATE(4259), 1, - sym_cell_path, - STATE(4355), 1, - sym_comment, - ACTIONS(1923), 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, - [166550] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1941), 1, - anon_sym_DASH2, - ACTIONS(7306), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4123), 1, - aux_sym_cell_path_repeat1, - STATE(4343), 1, - sym_cell_path, - STATE(4356), 1, - sym_comment, - ACTIONS(1943), 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, - [166585] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1891), 1, - anon_sym_DASH2, - ACTIONS(7306), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4123), 1, - aux_sym_cell_path_repeat1, - STATE(4357), 1, - sym_comment, - STATE(4421), 1, - sym_cell_path, - ACTIONS(1893), 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, - [166620] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1909), 1, - anon_sym_DASH2, - ACTIONS(7306), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4123), 1, - aux_sym_cell_path_repeat1, - STATE(4358), 1, - sym_comment, - STATE(4466), 1, - sym_cell_path, - ACTIONS(1911), 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, - [166655] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1913), 1, - anon_sym_DASH2, - ACTIONS(7306), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4123), 1, - aux_sym_cell_path_repeat1, - STATE(4257), 1, - sym_cell_path, - STATE(4359), 1, - sym_comment, - ACTIONS(1915), 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, - [166690] = 8, - ACTIONS(251), 1, + [164689] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1917), 1, + ACTIONS(2445), 1, anon_sym_DASH2, - ACTIONS(7306), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4123), 1, - aux_sym_cell_path_repeat1, - STATE(4260), 1, - sym_cell_path, - STATE(4360), 1, + STATE(4352), 1, sym_comment, - ACTIONS(1919), 11, + ACTIONS(2447), 15, anon_sym_EQ, sym_identifier, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [166725] = 8, - ACTIONS(251), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + [164716] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1925), 1, - anon_sym_DASH2, - ACTIONS(7306), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4123), 1, - aux_sym_cell_path_repeat1, - STATE(4261), 1, - sym_cell_path, - STATE(4361), 1, + ACTIONS(2075), 1, + anon_sym_LPAREN2, + ACTIONS(2077), 1, + sym__space, + ACTIONS(2079), 1, + aux_sym_unquoted_token4, + STATE(4353), 1, sym_comment, - ACTIONS(1927), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(2073), 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, - [166760] = 8, - ACTIONS(251), 1, + anon_sym_RBRACE, + [164747] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1929), 1, - anon_sym_DASH2, - ACTIONS(7306), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4123), 1, - aux_sym_cell_path_repeat1, - STATE(4310), 1, - sym_cell_path, - STATE(4362), 1, - sym_comment, - ACTIONS(1931), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(7575), 1, + anon_sym_and2, + ACTIONS(7587), 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, - [166795] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1933), 1, - anon_sym_DASH2, - ACTIONS(7306), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4123), 1, - aux_sym_cell_path_repeat1, - STATE(4320), 1, - sym_cell_path, - STATE(4363), 1, + STATE(4327), 1, + aux_sym_shebang_repeat1, + STATE(4354), 1, sym_comment, - ACTIONS(1935), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, + ACTIONS(7516), 13, + 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, - [166830] = 8, - ACTIONS(251), 1, + anon_sym_xor2, + anon_sym_or2, + [164778] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1937), 1, - anon_sym_DASH2, - ACTIONS(7306), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4123), 1, - aux_sym_cell_path_repeat1, - STATE(4335), 1, - sym_cell_path, - STATE(4364), 1, - sym_comment, - ACTIONS(1939), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(7518), 1, + anon_sym_and2, + ACTIONS(7587), 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, - [166865] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1945), 1, - anon_sym_DASH2, - ACTIONS(7306), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4123), 1, - aux_sym_cell_path_repeat1, - STATE(4340), 1, - sym_cell_path, - STATE(4365), 1, + STATE(4329), 1, + aux_sym_shebang_repeat1, + STATE(4355), 1, sym_comment, - ACTIONS(1947), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, + ACTIONS(7516), 13, + 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, - [166900] = 8, - ACTIONS(251), 1, + anon_sym_xor2, + anon_sym_or2, + [164809] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1949), 1, - anon_sym_DASH2, - ACTIONS(7306), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4123), 1, - aux_sym_cell_path_repeat1, - STATE(4347), 1, - sym_cell_path, - STATE(4366), 1, + ACTIONS(1562), 1, + aux_sym_unquoted_token2, + ACTIONS(2170), 1, + anon_sym_LPAREN2, + ACTIONS(2172), 1, + sym__space, + STATE(4356), 1, sym_comment, - ACTIONS(1951), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(2168), 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, - [166935] = 8, - ACTIONS(251), 1, + anon_sym_RBRACE, + [164840] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1953), 1, - anon_sym_DASH2, - ACTIONS(7306), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4123), 1, - aux_sym_cell_path_repeat1, - STATE(4349), 1, - sym_cell_path, - STATE(4367), 1, + STATE(4357), 1, sym_comment, - ACTIONS(1955), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(1794), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1792), 14, 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, - [166970] = 8, - ACTIONS(251), 1, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [164867] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1957), 1, - anon_sym_DASH2, - ACTIONS(7306), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4123), 1, - aux_sym_cell_path_repeat1, - STATE(4351), 1, - sym_cell_path, - STATE(4368), 1, + ACTIONS(7590), 1, + anon_sym_and2, + STATE(4358), 1, sym_comment, - ACTIONS(1959), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(7585), 15, 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, - [167005] = 6, - ACTIONS(251), 1, + anon_sym_RBRACE, + anon_sym_xor2, + anon_sym_or2, + [164894] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7539), 1, + ACTIONS(7524), 1, anon_sym_and2, - ACTIONS(7574), 1, + ACTIONS(7562), 1, anon_sym_xor2, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(4369), 1, + STATE(4359), 1, sym_comment, - ACTIONS(7584), 13, + ACTIONS(7514), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383023,180 +385194,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [167036] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1965), 1, - anon_sym_DASH2, - ACTIONS(7306), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4123), 1, - aux_sym_cell_path_repeat1, - STATE(4370), 1, - sym_comment, - STATE(4377), 1, - sym_cell_path, - ACTIONS(1967), 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, - [167071] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1969), 1, - anon_sym_DASH2, - ACTIONS(7306), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4123), 1, - aux_sym_cell_path_repeat1, - STATE(4371), 1, - sym_comment, - STATE(4440), 1, - sym_cell_path, - ACTIONS(1971), 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, - [167106] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1979), 1, - anon_sym_DASH2, - ACTIONS(7306), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4123), 1, - aux_sym_cell_path_repeat1, - STATE(4372), 1, - sym_comment, - STATE(4442), 1, - sym_cell_path, - ACTIONS(1981), 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, - [167141] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1905), 1, - anon_sym_DASH2, - ACTIONS(7306), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4123), 1, - aux_sym_cell_path_repeat1, - STATE(4373), 1, - sym_comment, - STATE(4444), 1, - sym_cell_path, - ACTIONS(1907), 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, - [167176] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1983), 1, - anon_sym_DASH2, - ACTIONS(7306), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4123), 1, - aux_sym_cell_path_repeat1, - STATE(4374), 1, - sym_comment, - STATE(4445), 1, - sym_cell_path, - ACTIONS(1985), 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, - [167211] = 8, - ACTIONS(251), 1, + [164925] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1895), 1, - anon_sym_DASH2, - ACTIONS(7306), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4123), 1, - aux_sym_cell_path_repeat1, - STATE(4302), 1, - sym_cell_path, - STATE(4375), 1, + ACTIONS(7592), 1, + anon_sym_and2, + STATE(4360), 1, sym_comment, - ACTIONS(1897), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(7585), 15, 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, - [167246] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + anon_sym_xor2, + anon_sym_or2, + [164952] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1814), 1, - anon_sym_LPAREN2, - ACTIONS(1820), 1, - sym__space, - ACTIONS(1822), 1, - aux_sym_unquoted_token2, - STATE(4376), 1, + ACTIONS(7526), 1, + anon_sym_and2, + ACTIONS(7564), 1, + anon_sym_xor2, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(4361), 1, sym_comment, - ACTIONS(1812), 13, + ACTIONS(7514), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383209,44 +385241,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_RBRACE, - [167277] = 4, - ACTIONS(251), 1, + anon_sym_or2, + [164983] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2350), 1, - anon_sym_DASH2, - STATE(4377), 1, - sym_comment, - ACTIONS(2352), 15, - anon_sym_EQ, - sym_identifier, + ACTIONS(3842), 1, sym__newline, + ACTIONS(7575), 1, + anon_sym_and2, + ACTIONS(7577), 1, + anon_sym_xor2, + STATE(4342), 1, + aux_sym_shebang_repeat1, + STATE(4362), 1, + sym_comment, + ACTIONS(7516), 12, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - 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_LBRACE, - anon_sym_RBRACE, - [167304] = 7, - ACTIONS(251), 1, + anon_sym_or2, + [165016] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(7541), 1, + ACTIONS(7518), 1, anon_sym_and2, - ACTIONS(7543), 1, + ACTIONS(7520), 1, anon_sym_xor2, - STATE(4296), 1, + STATE(4345), 1, aux_sym_shebang_repeat1, - STATE(4378), 1, + STATE(4363), 1, sym_comment, - ACTIONS(7598), 12, + ACTIONS(7516), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -383259,16 +385294,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [167337] = 5, - ACTIONS(251), 1, + [165049] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7539), 1, + ACTIONS(7590), 1, anon_sym_and2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4379), 1, + ACTIONS(7594), 1, + anon_sym_xor2, + STATE(4364), 1, sym_comment, - ACTIONS(7578), 14, + ACTIONS(7585), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383281,20 +385316,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_xor2, + anon_sym_RBRACE, anon_sym_or2, - [167366] = 6, - ACTIONS(3), 1, + [165078] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - ACTIONS(7628), 1, - sym__space, - STATE(4380), 1, + ACTIONS(7592), 1, + anon_sym_and2, + ACTIONS(7596), 1, + anon_sym_xor2, + STATE(4365), 1, sym_comment, - STATE(7300), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7626), 13, + ACTIONS(7585), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383308,14 +385341,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [167397] = 4, - ACTIONS(251), 1, + anon_sym_or2, + [165107] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4381), 1, + STATE(4366), 1, sym_comment, - STATE(4390), 1, - aux_sym_shebang_repeat1, - ACTIONS(7517), 15, + ACTIONS(7585), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383328,17 +385360,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, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [167424] = 4, - ACTIONS(251), 1, + [165132] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4382), 1, - sym_comment, - STATE(4393), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - ACTIONS(7517), 15, + STATE(4367), 1, + sym_comment, + ACTIONS(7538), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383354,20 +385387,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [167451] = 6, + [165159] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7630), 1, - anon_sym_DOT_DOT2, - STATE(4383), 1, - sym_comment, - ACTIONS(2049), 2, - ts_builtin_sym_end, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + ACTIONS(4895), 1, sym__space, - ACTIONS(7632), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2043), 11, + STATE(4368), 1, + sym_comment, + STATE(7477), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4897), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383379,15 +385410,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, - [167482] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [165190] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4384), 1, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(7518), 1, + anon_sym_and2, + ACTIONS(7520), 1, + anon_sym_xor2, + ACTIONS(7568), 1, + anon_sym_or2, + STATE(4340), 1, + aux_sym_shebang_repeat1, + STATE(4369), 1, sym_comment, - ACTIONS(1785), 2, - sym__space, + ACTIONS(7598), 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, + [165225] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2192), 1, anon_sym_LPAREN2, - ACTIONS(1783), 14, + ACTIONS(2194), 1, + sym__space, + ACTIONS(2196), 1, + aux_sym_unquoted_token2, + STATE(4370), 1, + sym_comment, + ACTIONS(2190), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383401,15 +385464,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_unquoted_token2, - [167509] = 4, - ACTIONS(251), 1, + [165256] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7556), 1, - anon_sym_and2, - STATE(4385), 1, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(4371), 1, sym_comment, - ACTIONS(7545), 15, + ACTIONS(7552), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383422,21 +385484,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_and2, anon_sym_xor2, anon_sym_or2, - [167536] = 6, - ACTIONS(251), 1, + [165283] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7541), 1, - anon_sym_and2, - ACTIONS(7551), 1, - sym__newline, - STATE(4341), 1, - aux_sym_shebang_repeat1, - STATE(4386), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + ACTIONS(4899), 1, + sym__space, + STATE(4372), 1, sym_comment, - ACTIONS(7554), 13, + STATE(7477), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4901), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -383448,18 +385511,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_xor2, - anon_sym_or2, - [167567] = 5, - ACTIONS(251), 1, + anon_sym_RBRACE, + [165314] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7547), 1, - anon_sym_and2, - ACTIONS(7549), 1, - anon_sym_xor2, - STATE(4387), 1, + STATE(4373), 1, sym_comment, - ACTIONS(7545), 14, + ACTIONS(7585), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383473,15 +385531,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [167596] = 4, - ACTIONS(251), 1, + [165339] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2320), 1, + ACTIONS(2364), 1, anon_sym_DASH2, - STATE(4388), 1, + STATE(4374), 1, sym_comment, - ACTIONS(2322), 15, + ACTIONS(2366), 15, anon_sym_EQ, sym_identifier, sym__newline, @@ -383497,18 +385557,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [167623] = 6, - ACTIONS(251), 1, + [165366] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7547), 1, + ACTIONS(7590), 1, anon_sym_and2, - ACTIONS(7549), 1, - anon_sym_xor2, - ACTIONS(7636), 1, - anon_sym_or2, - STATE(4389), 1, + STATE(4375), 1, sym_comment, - ACTIONS(7634), 13, + ACTIONS(7585), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383522,14 +385578,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [167654] = 4, - ACTIONS(251), 1, + anon_sym_xor2, + anon_sym_or2, + [165393] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, + ACTIONS(7524), 1, + anon_sym_and2, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(4390), 1, + STATE(4376), 1, sym_comment, - ACTIONS(7578), 15, + ACTIONS(7538), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383542,17 +385602,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_and2, anon_sym_xor2, anon_sym_or2, - [167681] = 4, - ACTIONS(251), 1, + [165422] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7547), 1, + ACTIONS(7526), 1, anon_sym_and2, - STATE(4391), 1, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(4377), 1, sym_comment, - ACTIONS(7545), 15, + ACTIONS(7538), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383565,42 +385626,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_RBRACE, anon_sym_xor2, anon_sym_or2, - [167708] = 6, - ACTIONS(251), 1, + [165451] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7556), 1, - anon_sym_and2, - ACTIONS(7558), 1, - anon_sym_xor2, - ACTIONS(7638), 1, - anon_sym_or2, - STATE(4392), 1, + ACTIONS(2326), 1, + anon_sym_DASH2, + STATE(4378), 1, sym_comment, - ACTIONS(7634), 13, + ACTIONS(2328), 15, + 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_LBRACK, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - [167739] = 4, - ACTIONS(251), 1, + [165478] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, + ACTIONS(7524), 1, + anon_sym_and2, + ACTIONS(7562), 1, + anon_sym_xor2, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(4393), 1, + STATE(4379), 1, sym_comment, - ACTIONS(7578), 15, + ACTIONS(7538), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383613,21 +385675,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_and2, - anon_sym_xor2, anon_sym_or2, - [167766] = 6, + [165509] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1757), 1, - sym__space, - ACTIONS(7205), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7640), 1, - anon_sym_DOT, - STATE(4394), 1, + STATE(4380), 1, sym_comment, - ACTIONS(1755), 13, + ACTIONS(2028), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2026), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383639,18 +385698,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, - [167797] = 5, - ACTIONS(251), 1, + anon_sym_DOT_DOT2, + [165536] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7539), 1, + ACTIONS(7592), 1, anon_sym_and2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4395), 1, + STATE(4381), 1, sym_comment, - ACTIONS(7560), 14, + ACTIONS(7585), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383663,16 +385719,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_xor2, anon_sym_or2, - [167826] = 4, - ACTIONS(251), 1, + [165563] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7556), 1, + ACTIONS(7590), 1, anon_sym_and2, - STATE(4396), 1, + ACTIONS(7594), 1, + anon_sym_xor2, + STATE(4382), 1, sym_comment, - ACTIONS(7545), 15, + ACTIONS(7585), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383686,20 +385745,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_xor2, anon_sym_or2, - [167853] = 6, - ACTIONS(251), 1, + [165592] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7514), 1, - sym__newline, - ACTIONS(7541), 1, + ACTIONS(7592), 1, anon_sym_and2, - STATE(4397), 1, + ACTIONS(7596), 1, + anon_sym_xor2, + STATE(4383), 1, sym_comment, - STATE(4425), 1, - aux_sym_shebang_repeat1, - ACTIONS(7517), 13, + ACTIONS(7585), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -383711,20 +385768,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_xor2, + anon_sym_RBRACE, anon_sym_or2, - [167884] = 6, - ACTIONS(251), 1, + [165621] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7519), 1, - anon_sym_and2, - ACTIONS(7551), 1, + ACTIONS(7602), 1, + anon_sym_EQ, + ACTIONS(7605), 1, sym__newline, - STATE(4395), 1, + ACTIONS(7608), 1, + anon_sym_COLON, + ACTIONS(7611), 1, + anon_sym_DASH2, + STATE(6163), 1, aux_sym_shebang_repeat1, - STATE(4398), 1, + STATE(4384), 2, + sym_comment, + aux_sym_parameter_repeat1, + STATE(4971), 2, + sym_param_type, + sym_param_value, + ACTIONS(7600), 8, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [165658] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7613), 1, + sym__newline, + ACTIONS(7615), 1, + sym__space, + ACTIONS(7619), 1, + anon_sym_COLON2, + STATE(4385), 1, sym_comment, - ACTIONS(7554), 13, + STATE(4594), 1, + aux_sym_command_repeat1, + STATE(6199), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + ACTIONS(7617), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -383735,21 +385824,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_RBRACE, + [165693] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2457), 1, + anon_sym_DASH2, + STATE(4386), 1, + sym_comment, + ACTIONS(2459), 15, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [167915] = 6, - ACTIONS(251), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [165720] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7562), 1, + ACTIONS(7526), 1, anon_sym_and2, - ACTIONS(7570), 1, + ACTIONS(7564), 1, anon_sym_xor2, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(4399), 1, + STATE(4387), 1, sym_comment, - ACTIONS(7578), 13, + ACTIONS(7538), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383763,18 +385873,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [167946] = 6, - ACTIONS(251), 1, + [165751] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7541), 1, + ACTIONS(7575), 1, anon_sym_and2, - ACTIONS(7609), 1, + ACTIONS(7587), 1, sym__newline, - STATE(4400), 1, - sym_comment, - STATE(4426), 1, + STATE(4376), 1, aux_sym_shebang_repeat1, - ACTIONS(7521), 13, + STATE(4388), 1, + sym_comment, + ACTIONS(7516), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -383788,18 +385898,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [167977] = 6, - ACTIONS(251), 1, + [165782] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7562), 1, + ACTIONS(7590), 1, anon_sym_and2, - ACTIONS(7570), 1, + ACTIONS(7594), 1, anon_sym_xor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4401), 1, + ACTIONS(7623), 1, + anon_sym_or2, + STATE(4389), 1, sym_comment, - ACTIONS(7560), 13, + ACTIONS(7621), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383812,19 +385922,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_or2, - [168008] = 6, - ACTIONS(251), 1, + anon_sym_RBRACE, + [165813] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7514), 1, - sym__newline, - ACTIONS(7519), 1, - anon_sym_and2, - STATE(4402), 1, - sym_comment, - STATE(4404), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - ACTIONS(7517), 13, + STATE(4390), 1, + sym_comment, + ACTIONS(7625), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -383836,41 +385943,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_and2, anon_sym_xor2, anon_sym_or2, - [168039] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2452), 1, - anon_sym_DASH2, - STATE(4403), 1, - sym_comment, - ACTIONS(2454), 15, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [168066] = 5, - ACTIONS(251), 1, + [165840] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7539), 1, - anon_sym_and2, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(4404), 1, + STATE(4391), 1, sym_comment, - ACTIONS(7578), 14, + ACTIONS(7625), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383883,43 +385966,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_and2, anon_sym_xor2, anon_sym_or2, - [168095] = 8, - ACTIONS(251), 1, + [165867] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1855), 1, + ACTIONS(2306), 1, anon_sym_DASH2, - ACTIONS(7306), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4123), 1, - aux_sym_cell_path_repeat1, - STATE(4405), 1, + STATE(4392), 1, sym_comment, - STATE(4408), 1, - sym_cell_path, - ACTIONS(1857), 11, + ACTIONS(2308), 15, anon_sym_EQ, sym_identifier, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [168130] = 4, - ACTIONS(251), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + [165894] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4278), 1, - aux_sym_shebang_repeat1, - STATE(4406), 1, + ACTIONS(7592), 1, + anon_sym_and2, + ACTIONS(7596), 1, + anon_sym_xor2, + ACTIONS(7627), 1, + anon_sym_or2, + STATE(4393), 1, sym_comment, - ACTIONS(7554), 15, + ACTIONS(7621), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383932,67 +386016,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [168157] = 4, - ACTIONS(251), 1, + anon_sym_RBRACE, + [165925] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2460), 1, - anon_sym_DASH2, - STATE(4407), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + ACTIONS(7631), 1, + sym__space, + STATE(4394), 1, sym_comment, - ACTIONS(2462), 15, - anon_sym_EQ, - sym_identifier, + STATE(7294), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7629), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - 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_LBRACE, anon_sym_RBRACE, - [168184] = 4, - ACTIONS(251), 1, + [165956] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2478), 1, - anon_sym_DASH2, - STATE(4408), 1, + ACTIONS(2067), 1, + anon_sym_LPAREN2, + ACTIONS(2069), 1, + sym__space, + ACTIONS(2071), 1, + aux_sym_unquoted_token4, + STATE(4395), 1, sym_comment, - ACTIONS(2480), 15, - anon_sym_EQ, - sym_identifier, + ACTIONS(2065), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - 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_LBRACE, anon_sym_RBRACE, - [168211] = 6, - ACTIONS(251), 1, + [165987] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7539), 1, - anon_sym_and2, - ACTIONS(7574), 1, - anon_sym_xor2, - STATE(1800), 1, + STATE(4290), 1, aux_sym_shebang_repeat1, - STATE(4409), 1, + STATE(4396), 1, sym_comment, - ACTIONS(7560), 13, + ACTIONS(7633), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384005,15 +386087,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_and2, + anon_sym_xor2, anon_sym_or2, - [168242] = 4, - ACTIONS(251), 1, + [166014] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4410), 1, + ACTIONS(998), 1, + sym__space, + ACTIONS(2061), 1, + anon_sym_LPAREN2, + ACTIONS(2063), 1, + aux_sym_unquoted_token4, + STATE(4397), 1, sym_comment, - ACTIONS(7584), 15, + ACTIONS(1002), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384026,17 +386114,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_and2, - anon_sym_xor2, - anon_sym_or2, - [168269] = 4, - ACTIONS(251), 1, + anon_sym_RBRACE, + [166045] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4411), 1, + STATE(4398), 1, sym_comment, - ACTIONS(7584), 15, + ACTIONS(6965), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384049,22 +386133,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_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [168296] = 5, + [166070] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7642), 1, - aux_sym__immediate_decimal_token2, - STATE(4412), 1, - sym_comment, - ACTIONS(1785), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1783), 12, + ACTIONS(7613), 1, sym__newline, + ACTIONS(7615), 1, + sym__space, + ACTIONS(7635), 1, + anon_sym_COLON2, + STATE(4399), 1, + sym_comment, + STATE(4594), 1, + aux_sym_command_repeat1, + STATE(6169), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + ACTIONS(7617), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384075,21 +386163,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, - aux_sym_unquoted_token2, - [168325] = 7, - ACTIONS(251), 1, + anon_sym_RBRACE, + [166105] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(7541), 1, - anon_sym_and2, - ACTIONS(7543), 1, - anon_sym_xor2, - STATE(4413), 1, - sym_comment, - STATE(4429), 1, + STATE(4291), 1, aux_sym_shebang_repeat1, - ACTIONS(7517), 12, + STATE(4400), 1, + sym_comment, + ACTIONS(7633), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384101,15 +386184,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_and2, + anon_sym_xor2, anon_sym_or2, - [168358] = 4, - ACTIONS(251), 1, + [166132] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, + ACTIONS(7524), 1, + anon_sym_and2, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(4414), 1, + STATE(4401), 1, sym_comment, - ACTIONS(7537), 15, + ACTIONS(7625), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384122,21 +386209,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_and2, anon_sym_xor2, anon_sym_or2, - [168385] = 6, - ACTIONS(251), 1, + [166161] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7519), 1, + ACTIONS(7526), 1, anon_sym_and2, - ACTIONS(7609), 1, - sym__newline, - STATE(4415), 1, - sym_comment, - STATE(4428), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - ACTIONS(7521), 13, + STATE(4402), 1, + sym_comment, + ACTIONS(7625), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384150,19 +386235,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [168416] = 6, - ACTIONS(3), 1, + [166190] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - ACTIONS(4874), 1, - sym__space, - STATE(4416), 1, - sym_comment, - STATE(7580), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4876), 13, + ACTIONS(7575), 1, + anon_sym_and2, + ACTIONS(7637), 1, sym__newline, + STATE(4292), 1, + aux_sym_shebang_repeat1, + STATE(4403), 1, + sym_comment, + ACTIONS(7633), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384174,16 +386258,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, - [168447] = 4, - ACTIONS(251), 1, + anon_sym_xor2, + anon_sym_or2, + [166221] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4417), 1, - sym_comment, - STATE(4469), 1, - aux_sym_shebang_repeat1, - ACTIONS(7598), 15, + ACTIONS(7518), 1, + anon_sym_and2, + ACTIONS(7637), 1, sym__newline, + STATE(4293), 1, + aux_sym_shebang_repeat1, + STATE(4404), 1, + sym_comment, + ACTIONS(7633), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384195,17 +386283,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_and2, anon_sym_xor2, anon_sym_or2, - [168474] = 4, - ACTIONS(251), 1, + [166252] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, + ACTIONS(7526), 1, + anon_sym_and2, + ACTIONS(7564), 1, + anon_sym_xor2, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(4418), 1, + STATE(4405), 1, sym_comment, - ACTIONS(7537), 15, + ACTIONS(7552), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384218,20 +386309,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_and2, - anon_sym_xor2, anon_sym_or2, - [168501] = 4, - ACTIONS(3), 1, + [166283] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4419), 1, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(4406), 1, sym_comment, - ACTIONS(1721), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1719), 12, + ACTIONS(7514), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384243,22 +386329,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_DOT_DOT2, - [168528] = 6, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [166310] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7644), 1, - anon_sym_DOT, - ACTIONS(7646), 1, - aux_sym__immediate_decimal_token2, - STATE(4420), 1, + ACTIONS(1893), 1, + anon_sym_DASH2, + ACTIONS(7298), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4097), 1, + aux_sym_cell_path_repeat1, + STATE(4337), 1, + sym_cell_path, + STATE(4407), 1, sym_comment, - ACTIONS(1755), 3, + ACTIONS(1895), 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, + [166345] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1917), 1, anon_sym_DASH2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1757), 11, + ACTIONS(7298), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4097), 1, + aux_sym_cell_path_repeat1, + STATE(4378), 1, + sym_cell_path, + STATE(4408), 1, + sym_comment, + ACTIONS(1919), 11, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -384268,161 +386387,504 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [168559] = 4, - ACTIONS(251), 1, + [166380] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2324), 1, + ACTIONS(1931), 1, + anon_sym_DASH2, + ACTIONS(7298), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4097), 1, + aux_sym_cell_path_repeat1, + STATE(4392), 1, + sym_cell_path, + STATE(4409), 1, + sym_comment, + ACTIONS(1933), 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, + [166415] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1939), 1, + anon_sym_DASH2, + ACTIONS(7298), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4097), 1, + aux_sym_cell_path_repeat1, + STATE(4410), 1, + sym_comment, + STATE(4434), 1, + sym_cell_path, + ACTIONS(1941), 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, + [166450] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1909), 1, + anon_sym_DASH2, + ACTIONS(7298), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4097), 1, + aux_sym_cell_path_repeat1, + STATE(4411), 1, + sym_comment, + STATE(4437), 1, + sym_cell_path, + ACTIONS(1911), 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, + [166485] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1839), 1, + anon_sym_DASH2, + ACTIONS(7298), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4097), 1, + aux_sym_cell_path_repeat1, + STATE(4251), 1, + sym_cell_path, + STATE(4412), 1, + sym_comment, + ACTIONS(1841), 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, + [166520] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1847), 1, + anon_sym_DASH2, + ACTIONS(7298), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4097), 1, + aux_sym_cell_path_repeat1, + STATE(4252), 1, + sym_cell_path, + STATE(4413), 1, + sym_comment, + ACTIONS(1849), 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, + [166555] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1853), 1, + anon_sym_DASH2, + ACTIONS(7298), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4097), 1, + aux_sym_cell_path_repeat1, + STATE(4255), 1, + sym_cell_path, + STATE(4414), 1, + sym_comment, + ACTIONS(1855), 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, + [166590] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1869), 1, + anon_sym_DASH2, + ACTIONS(7298), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4097), 1, + aux_sym_cell_path_repeat1, + STATE(4256), 1, + sym_cell_path, + STATE(4415), 1, + sym_comment, + ACTIONS(1871), 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, + [166625] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1877), 1, + anon_sym_DASH2, + ACTIONS(7298), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4097), 1, + aux_sym_cell_path_repeat1, + STATE(4258), 1, + sym_cell_path, + STATE(4416), 1, + sym_comment, + ACTIONS(1879), 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, + [166660] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1969), 1, + anon_sym_DASH2, + ACTIONS(7298), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4097), 1, + aux_sym_cell_path_repeat1, + STATE(4261), 1, + sym_cell_path, + STATE(4417), 1, + sym_comment, + ACTIONS(1971), 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, + [166695] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1833), 1, + anon_sym_DASH2, + ACTIONS(7298), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4097), 1, + aux_sym_cell_path_repeat1, + STATE(4264), 1, + sym_cell_path, + STATE(4418), 1, + sym_comment, + ACTIONS(1835), 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, + [166730] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1861), 1, + anon_sym_DASH2, + ACTIONS(7298), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4097), 1, + aux_sym_cell_path_repeat1, + STATE(4265), 1, + sym_cell_path, + STATE(4419), 1, + sym_comment, + ACTIONS(1863), 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, + [166765] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1873), 1, + anon_sym_DASH2, + ACTIONS(7298), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4097), 1, + aux_sym_cell_path_repeat1, + STATE(4266), 1, + sym_cell_path, + STATE(4420), 1, + sym_comment, + ACTIONS(1875), 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, + [166800] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1881), 1, anon_sym_DASH2, + ACTIONS(7298), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4097), 1, + aux_sym_cell_path_repeat1, + STATE(4267), 1, + sym_cell_path, STATE(4421), 1, sym_comment, - ACTIONS(2326), 15, + ACTIONS(1883), 11, anon_sym_EQ, sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [168586] = 5, - ACTIONS(251), 1, + [166835] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7562), 1, - anon_sym_and2, - STATE(1800), 1, - aux_sym_shebang_repeat1, + ACTIONS(1889), 1, + anon_sym_DASH2, + ACTIONS(7298), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4097), 1, + aux_sym_cell_path_repeat1, + STATE(4270), 1, + sym_cell_path, STATE(4422), 1, sym_comment, - ACTIONS(7537), 14, + ACTIONS(1891), 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, - anon_sym_xor2, - anon_sym_or2, - [168615] = 4, - ACTIONS(251), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [166870] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4282), 1, - aux_sym_shebang_repeat1, + ACTIONS(1897), 1, + anon_sym_DASH2, + ACTIONS(7298), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4097), 1, + aux_sym_cell_path_repeat1, + STATE(4271), 1, + sym_cell_path, STATE(4423), 1, sym_comment, - ACTIONS(7554), 15, + ACTIONS(1899), 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, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [168642] = 4, - ACTIONS(251), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [166905] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4292), 1, - aux_sym_shebang_repeat1, + ACTIONS(1901), 1, + anon_sym_DASH2, + ACTIONS(7298), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4097), 1, + aux_sym_cell_path_repeat1, + STATE(4272), 1, + sym_cell_path, STATE(4424), 1, sym_comment, - ACTIONS(7598), 15, + ACTIONS(1903), 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, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [168669] = 5, - ACTIONS(251), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [166940] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7562), 1, - anon_sym_and2, - STATE(1800), 1, - aux_sym_shebang_repeat1, + ACTIONS(1905), 1, + anon_sym_DASH2, + ACTIONS(7298), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4097), 1, + aux_sym_cell_path_repeat1, + STATE(4273), 1, + sym_cell_path, STATE(4425), 1, sym_comment, - ACTIONS(7578), 14, + ACTIONS(1907), 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, - anon_sym_xor2, - anon_sym_or2, - [168698] = 5, - ACTIONS(251), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [166975] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7562), 1, - anon_sym_and2, - STATE(1800), 1, - aux_sym_shebang_repeat1, + ACTIONS(1945), 1, + anon_sym_DASH2, + ACTIONS(7298), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4097), 1, + aux_sym_cell_path_repeat1, + STATE(4259), 1, + sym_cell_path, STATE(4426), 1, sym_comment, - ACTIONS(7584), 14, + ACTIONS(1947), 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, - anon_sym_xor2, - anon_sym_or2, - [168727] = 6, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [167010] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - ACTIONS(4878), 1, - sym__space, + ACTIONS(7518), 1, + anon_sym_and2, + ACTIONS(7587), 1, + sym__newline, + STATE(4377), 1, + aux_sym_shebang_repeat1, STATE(4427), 1, sym_comment, - STATE(7580), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4880), 13, - sym__newline, + ACTIONS(7516), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384434,17 +386896,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, - [168758] = 5, - ACTIONS(251), 1, + anon_sym_xor2, + anon_sym_or2, + [167041] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7539), 1, + ACTIONS(7524), 1, anon_sym_and2, - STATE(1800), 1, + ACTIONS(7562), 1, + anon_sym_xor2, + STATE(1615), 1, aux_sym_shebang_repeat1, STATE(4428), 1, sym_comment, - ACTIONS(7584), 14, + ACTIONS(7625), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384457,20 +386922,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_xor2, anon_sym_or2, - [168787] = 6, - ACTIONS(251), 1, + [167072] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7562), 1, + ACTIONS(7526), 1, anon_sym_and2, - ACTIONS(7570), 1, + ACTIONS(7564), 1, anon_sym_xor2, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, STATE(4429), 1, sym_comment, - ACTIONS(7578), 13, + ACTIONS(7625), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384484,13 +386948,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [168818] = 3, - ACTIONS(251), 1, + [167103] = 7, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(7575), 1, + anon_sym_and2, + ACTIONS(7577), 1, + anon_sym_xor2, + STATE(4298), 1, + aux_sym_shebang_repeat1, STATE(4430), 1, sym_comment, - ACTIONS(7545), 16, - sym__newline, + ACTIONS(7633), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384502,19 +386973,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_and2, - anon_sym_xor2, anon_sym_or2, - [168843] = 4, - ACTIONS(251), 1, + [167136] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4291), 1, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(7518), 1, + anon_sym_and2, + ACTIONS(7520), 1, + anon_sym_xor2, + STATE(4301), 1, aux_sym_shebang_repeat1, STATE(4431), 1, sym_comment, - ACTIONS(7517), 15, - sym__newline, + ACTIONS(7633), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384526,21 +386999,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_and2, - anon_sym_xor2, anon_sym_or2, - [168870] = 6, - ACTIONS(251), 1, + [167169] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7541), 1, - anon_sym_and2, - ACTIONS(7606), 1, - sym__newline, + STATE(4302), 1, + aux_sym_shebang_repeat1, STATE(4432), 1, sym_comment, - STATE(4449), 1, - aux_sym_shebang_repeat1, - ACTIONS(7598), 13, + ACTIONS(7640), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384552,14 +387020,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_and2, anon_sym_xor2, anon_sym_or2, - [168901] = 3, - ACTIONS(251), 1, + [167196] = 4, + ACTIONS(247), 1, anon_sym_POUND, + STATE(4303), 1, + aux_sym_shebang_repeat1, STATE(4433), 1, sym_comment, - ACTIONS(7389), 16, + ACTIONS(7640), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384572,40 +387043,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_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [168926] = 5, - ACTIONS(251), 1, + [167223] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7539), 1, - anon_sym_and2, - STATE(1800), 1, - aux_sym_shebang_repeat1, + ACTIONS(1839), 1, + anon_sym_DASH2, STATE(4434), 1, sym_comment, - ACTIONS(7537), 14, + ACTIONS(1841), 15, + 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_LBRACK, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [168955] = 3, - ACTIONS(251), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [167250] = 6, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(7524), 1, + anon_sym_and2, + ACTIONS(7562), 1, + anon_sym_xor2, + STATE(1615), 1, + aux_sym_shebang_repeat1, STATE(4435), 1, sym_comment, - ACTIONS(7389), 16, + ACTIONS(7514), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384618,18 +387093,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_and2, - anon_sym_xor2, anon_sym_or2, - [168980] = 4, - ACTIONS(251), 1, + [167281] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4297), 1, + ACTIONS(7526), 1, + anon_sym_and2, + ACTIONS(7564), 1, + anon_sym_xor2, + STATE(1615), 1, aux_sym_shebang_repeat1, STATE(4436), 1, sym_comment, - ACTIONS(7517), 15, + ACTIONS(7514), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384642,16 +387118,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_and2, - anon_sym_xor2, anon_sym_or2, - [169007] = 3, - ACTIONS(251), 1, + [167312] = 4, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(2489), 1, + anon_sym_DASH2, STATE(4437), 1, sym_comment, - ACTIONS(6983), 16, + ACTIONS(2491), 15, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [167339] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7575), 1, + anon_sym_and2, + ACTIONS(7642), 1, sym__newline, + STATE(4347), 1, + aux_sym_shebang_repeat1, + STATE(4438), 1, + sym_comment, + ACTIONS(7640), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384663,22 +387165,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_and2, anon_sym_xor2, anon_sym_or2, - [169032] = 6, - ACTIONS(251), 1, + [167370] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7519), 1, + ACTIONS(7518), 1, anon_sym_and2, - ACTIONS(7606), 1, + ACTIONS(7642), 1, sym__newline, - STATE(4262), 1, + STATE(4349), 1, aux_sym_shebang_repeat1, - STATE(4438), 1, + STATE(4439), 1, sym_comment, - ACTIONS(7598), 13, + ACTIONS(7640), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384692,19 +387192,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [169063] = 6, - ACTIONS(251), 1, + [167401] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7562), 1, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(7575), 1, anon_sym_and2, - ACTIONS(7570), 1, + ACTIONS(7577), 1, anon_sym_xor2, - STATE(1800), 1, + STATE(4359), 1, aux_sym_shebang_repeat1, - STATE(4439), 1, + STATE(4440), 1, sym_comment, - ACTIONS(7584), 13, - sym__newline, + ACTIONS(7640), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384717,87 +387218,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [169094] = 4, - ACTIONS(251), 1, + [167434] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2354), 1, - anon_sym_DASH2, - STATE(4440), 1, - sym_comment, - ACTIONS(2356), 15, - anon_sym_EQ, - sym_identifier, + ACTIONS(3842), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [169121] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2468), 1, - anon_sym_DASH2, + ACTIONS(7518), 1, + anon_sym_and2, + ACTIONS(7520), 1, + anon_sym_xor2, + STATE(4361), 1, + aux_sym_shebang_repeat1, STATE(4441), 1, sym_comment, - ACTIONS(2470), 15, - anon_sym_EQ, - sym_identifier, - sym__newline, + ACTIONS(7640), 12, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - 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_LBRACE, - anon_sym_RBRACE, - [169148] = 4, - ACTIONS(251), 1, + anon_sym_or2, + [167467] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1983), 1, - anon_sym_DASH2, + STATE(1615), 1, + aux_sym_shebang_repeat1, STATE(4442), 1, sym_comment, - ACTIONS(1985), 15, - anon_sym_EQ, - sym_identifier, + ACTIONS(7625), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - 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_LBRACE, - anon_sym_RBRACE, - [169175] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7539), 1, anon_sym_and2, - ACTIONS(7574), 1, anon_sym_xor2, - STATE(1800), 1, + anon_sym_or2, + [167494] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1615), 1, aux_sym_shebang_repeat1, STATE(4443), 1, sym_comment, - ACTIONS(7578), 13, + ACTIONS(7625), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384810,62 +387287,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [169206] = 4, - ACTIONS(251), 1, + [167521] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2358), 1, - anon_sym_DASH2, + STATE(4371), 1, + aux_sym_shebang_repeat1, STATE(4444), 1, sym_comment, - ACTIONS(2360), 15, - anon_sym_EQ, - sym_identifier, + ACTIONS(7633), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - 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_LBRACE, - anon_sym_RBRACE, - [169233] = 4, - ACTIONS(251), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [167548] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2362), 1, - anon_sym_DASH2, STATE(4445), 1, sym_comment, - ACTIONS(2364), 15, - anon_sym_EQ, - sym_identifier, + STATE(4464), 1, + aux_sym_shebang_repeat1, + ACTIONS(7633), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - 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_LBRACE, - anon_sym_RBRACE, - [169260] = 4, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [167575] = 5, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(7524), 1, + anon_sym_and2, + STATE(1615), 1, + aux_sym_shebang_repeat1, STATE(4446), 1, sym_comment, - ACTIONS(2150), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2148), 14, + ACTIONS(7625), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384878,46 +387358,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_RBRACE, - aux_sym_unquoted_token4, - [169287] = 6, - ACTIONS(251), 1, + anon_sym_xor2, + anon_sym_or2, + [167604] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5948), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7648), 1, - anon_sym_DOT, + ACTIONS(7526), 1, + anon_sym_and2, + STATE(1615), 1, + aux_sym_shebang_repeat1, STATE(4447), 1, sym_comment, - ACTIONS(1550), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_DOT2, - ACTIONS(1552), 11, - anon_sym_in2, - anon_sym_QMARK2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - [169318] = 6, - ACTIONS(3), 1, + ACTIONS(7625), 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_xor2, + anon_sym_or2, + [167633] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym_unquoted_token2, - ACTIONS(1804), 1, - anon_sym_LPAREN2, - ACTIONS(1810), 1, - sym__space, + ACTIONS(7575), 1, + anon_sym_and2, + ACTIONS(7637), 1, + sym__newline, + STATE(4299), 1, + aux_sym_shebang_repeat1, STATE(4448), 1, sym_comment, - ACTIONS(1802), 13, - sym__newline, + ACTIONS(7633), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384929,18 +387407,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, - [169349] = 5, - ACTIONS(251), 1, + anon_sym_xor2, + anon_sym_or2, + [167664] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7562), 1, + ACTIONS(7518), 1, anon_sym_and2, - STATE(1800), 1, + ACTIONS(7637), 1, + sym__newline, + STATE(4309), 1, aux_sym_shebang_repeat1, STATE(4449), 1, sym_comment, - ACTIONS(7537), 14, - sym__newline, + ACTIONS(7633), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384954,18 +387434,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [169378] = 6, - ACTIONS(251), 1, + [167695] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7539), 1, + ACTIONS(7524), 1, anon_sym_and2, - ACTIONS(7574), 1, + ACTIONS(7562), 1, anon_sym_xor2, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, STATE(4450), 1, sym_comment, - ACTIONS(7578), 13, + ACTIONS(7625), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384979,18 +387459,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [169409] = 6, - ACTIONS(3), 1, + [167726] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2130), 1, - anon_sym_LPAREN2, - ACTIONS(2132), 1, - sym__space, - ACTIONS(2134), 1, - aux_sym_unquoted_token4, + ACTIONS(7526), 1, + anon_sym_and2, + ACTIONS(7564), 1, + anon_sym_xor2, + STATE(1615), 1, + aux_sym_shebang_repeat1, STATE(4451), 1, sym_comment, - ACTIONS(2128), 13, + ACTIONS(7625), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385003,20 +387483,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, - [169440] = 6, - ACTIONS(3), 1, + anon_sym_or2, + [167757] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1012), 1, - sym__space, - ACTIONS(2206), 1, - anon_sym_LPAREN2, - ACTIONS(2208), 1, - aux_sym_unquoted_token4, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(7575), 1, + anon_sym_and2, + ACTIONS(7577), 1, + anon_sym_xor2, + STATE(4323), 1, + aux_sym_shebang_repeat1, STATE(4452), 1, sym_comment, - ACTIONS(1016), 13, - sym__newline, + ACTIONS(7633), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385028,21 +387509,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, - [169471] = 7, - ACTIONS(251), 1, + anon_sym_or2, + [167790] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(7541), 1, + ACTIONS(7518), 1, anon_sym_and2, - ACTIONS(7543), 1, + ACTIONS(7520), 1, anon_sym_xor2, - STATE(4401), 1, + STATE(4405), 1, aux_sym_shebang_repeat1, STATE(4453), 1, sym_comment, - ACTIONS(7554), 12, + ACTIONS(7633), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385055,18 +387536,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [169504] = 6, - ACTIONS(251), 1, + [167823] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7514), 1, - sym__newline, - ACTIONS(7541), 1, - anon_sym_and2, - STATE(4326), 1, + STATE(4406), 1, aux_sym_shebang_repeat1, STATE(4454), 1, sym_comment, - ACTIONS(7517), 13, + ACTIONS(7640), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385078,22 +387556,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_and2, anon_sym_xor2, anon_sym_or2, - [169535] = 7, - ACTIONS(251), 1, + [167850] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(7519), 1, - anon_sym_and2, - ACTIONS(7525), 1, - anon_sym_xor2, - STATE(4409), 1, + STATE(4253), 1, aux_sym_shebang_repeat1, STATE(4455), 1, sym_comment, - ACTIONS(7554), 12, + ACTIONS(7640), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385105,21 +387579,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_and2, + anon_sym_xor2, anon_sym_or2, - [169568] = 7, - ACTIONS(251), 1, + [167877] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(7541), 1, + ACTIONS(7575), 1, anon_sym_and2, - ACTIONS(7543), 1, - anon_sym_xor2, - STATE(4295), 1, + ACTIONS(7642), 1, + sym__newline, + STATE(4263), 1, aux_sym_shebang_repeat1, STATE(4456), 1, sym_comment, - ACTIONS(7554), 12, + ACTIONS(7640), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385131,42 +387605,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_xor2, anon_sym_or2, - [169601] = 9, - ACTIONS(251), 1, + [167908] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7652), 1, - anon_sym_EQ, - ACTIONS(7655), 1, + ACTIONS(7518), 1, + anon_sym_and2, + ACTIONS(7642), 1, sym__newline, - ACTIONS(7658), 1, - anon_sym_COLON, - ACTIONS(7661), 1, - anon_sym_DASH2, - STATE(6546), 1, + STATE(4277), 1, aux_sym_shebang_repeat1, - STATE(4457), 2, - sym_comment, - aux_sym_parameter_repeat1, - STATE(5101), 2, - sym_param_type, - sym_param_value, - ACTIONS(7650), 8, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [169638] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4458), 1, + STATE(4457), 1, sym_comment, - ACTIONS(7389), 16, - sym__newline, + ACTIONS(7640), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385178,21 +387630,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_and2, anon_sym_xor2, anon_sym_or2, - [169663] = 5, - ACTIONS(251), 1, + [167939] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7556), 1, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(7575), 1, anon_sym_and2, - ACTIONS(7558), 1, + ACTIONS(7577), 1, anon_sym_xor2, - STATE(4459), 1, + STATE(4435), 1, + aux_sym_shebang_repeat1, + STATE(4458), 1, sym_comment, - ACTIONS(7545), 14, - sym__newline, + ACTIONS(7640), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385204,24 +387657,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_or2, - [169692] = 8, - ACTIONS(251), 1, + [167972] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(7541), 1, + ACTIONS(7518), 1, anon_sym_and2, - ACTIONS(7543), 1, + ACTIONS(7520), 1, anon_sym_xor2, - ACTIONS(7663), 1, - anon_sym_or2, - STATE(4460), 1, - sym_comment, - STATE(4461), 1, + STATE(4436), 1, aux_sym_shebang_repeat1, - ACTIONS(7620), 11, + STATE(4459), 1, + sym_comment, + ACTIONS(7640), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385233,21 +387683,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [169727] = 7, - ACTIONS(251), 1, + anon_sym_or2, + [168005] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7562), 1, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(7575), 1, anon_sym_and2, - ACTIONS(7570), 1, + ACTIONS(7577), 1, anon_sym_xor2, - ACTIONS(7572), 1, - anon_sym_or2, - STATE(1800), 1, + STATE(4379), 1, aux_sym_shebang_repeat1, - STATE(4461), 1, + STATE(4460), 1, sym_comment, - ACTIONS(7665), 12, - sym__newline, + ACTIONS(7516), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385259,20 +387709,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [169760] = 7, - ACTIONS(251), 1, + anon_sym_or2, + [168038] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(7519), 1, + ACTIONS(7575), 1, anon_sym_and2, - ACTIONS(7525), 1, + ACTIONS(7577), 1, anon_sym_xor2, - STATE(4303), 1, - aux_sym_shebang_repeat1, - STATE(4462), 1, + ACTIONS(7645), 1, + anon_sym_or2, + STATE(4461), 1, sym_comment, - ACTIONS(7554), 12, + STATE(4465), 1, + aux_sym_shebang_repeat1, + ACTIONS(7566), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385284,18 +387737,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_or2, - [169793] = 4, + [168073] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4463), 1, + ACTIONS(7468), 1, + aux_sym__immediate_decimal_token2, + STATE(4462), 1, sym_comment, - ACTIONS(2017), 4, + ACTIONS(1703), 3, ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2015), 12, + anon_sym_LPAREN2, + ACTIONS(1701), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385307,19 +387760,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_DOT_DOT2, - [169820] = 6, - ACTIONS(251), 1, + aux_sym_unquoted_token2, + [168102] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7562), 1, - anon_sym_and2, - ACTIONS(7570), 1, - anon_sym_xor2, - STATE(1800), 1, + ACTIONS(7647), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7649), 1, + aux_sym__immediate_decimal_token2, + STATE(4463), 1, + sym_comment, + ACTIONS(1693), 3, + sym_identifier, + anon_sym_DASH2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1695), 11, + anon_sym_EQ, + 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, + [168133] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1615), 1, aux_sym_shebang_repeat1, STATE(4464), 1, sym_comment, - ACTIONS(7537), 13, + ACTIONS(7552), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385332,19 +387806,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_and2, + anon_sym_xor2, anon_sym_or2, - [169851] = 6, - ACTIONS(251), 1, + [168160] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7539), 1, + ACTIONS(7524), 1, anon_sym_and2, - ACTIONS(7574), 1, + ACTIONS(7562), 1, anon_sym_xor2, - STATE(1800), 1, + ACTIONS(7581), 1, + anon_sym_or2, + STATE(1615), 1, aux_sym_shebang_repeat1, STATE(4465), 1, sym_comment, - ACTIONS(7537), 13, + ACTIONS(7651), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385357,44 +387835,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_or2, - [169882] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1917), 1, - anon_sym_DASH2, - STATE(4466), 1, - sym_comment, - ACTIONS(1919), 15, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [169909] = 7, - ACTIONS(251), 1, + [168193] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7539), 1, + ACTIONS(7526), 1, anon_sym_and2, - ACTIONS(7574), 1, + ACTIONS(7564), 1, anon_sym_xor2, - ACTIONS(7576), 1, + ACTIONS(7583), 1, anon_sym_or2, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(4467), 1, + STATE(4466), 1, sym_comment, - ACTIONS(7665), 12, + ACTIONS(7651), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385407,20 +387861,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [169942] = 7, - ACTIONS(251), 1, + [168226] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(7541), 1, + ACTIONS(7575), 1, anon_sym_and2, - ACTIONS(7543), 1, + ACTIONS(7577), 1, anon_sym_xor2, - STATE(4399), 1, + ACTIONS(7645), 1, + anon_sym_or2, + STATE(4339), 1, aux_sym_shebang_repeat1, - STATE(4468), 1, + STATE(4467), 1, sym_comment, - ACTIONS(7517), 12, + ACTIONS(7598), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385432,15 +387888,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_or2, - [169975] = 4, - ACTIONS(251), 1, + [168261] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4469), 1, + ACTIONS(7118), 1, + aux_sym_unquoted_token2, + STATE(4468), 1, sym_comment, - ACTIONS(7537), 15, + ACTIONS(1651), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385452,24 +387908,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_and2, anon_sym_xor2, anon_sym_or2, - [170002] = 7, - ACTIONS(251), 1, + [168288] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(7519), 1, - anon_sym_and2, - ACTIONS(7525), 1, - anon_sym_xor2, - STATE(4443), 1, - aux_sym_shebang_repeat1, - STATE(4470), 1, + STATE(4469), 1, sym_comment, - ACTIONS(7517), 12, + ACTIONS(7304), 15, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385480,24 +387929,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_or2, - [170035] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(7541), 1, anon_sym_and2, - ACTIONS(7543), 1, anon_sym_xor2, - ACTIONS(7663), 1, anon_sym_or2, - STATE(4289), 1, - aux_sym_shebang_repeat1, - STATE(4471), 1, + [168312] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4470), 1, sym_comment, - ACTIONS(7523), 11, + ACTIONS(5056), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(5058), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385509,22 +387953,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [170070] = 8, - ACTIONS(251), 1, + anon_sym_RBRACE, + [168338] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1961), 1, - anon_sym_DASH2, - ACTIONS(7306), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4123), 1, - aux_sym_cell_path_repeat1, - STATE(4354), 1, - sym_cell_path, - STATE(4472), 1, + STATE(4471), 1, sym_comment, - ACTIONS(1963), 11, + ACTIONS(986), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(988), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -385536,13 +387974,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [170105] = 3, - ACTIONS(251), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [168364] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4473), 1, + ACTIONS(7655), 1, + sym__space, + STATE(4472), 1, sym_comment, - ACTIONS(7545), 15, - ts_builtin_sym_end, + STATE(4529), 1, + aux_sym_command_repeat1, + ACTIONS(7653), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385554,22 +387997,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, + anon_sym_RPAREN, + anon_sym_RBRACE, + [168392] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7657), 1, anon_sym_and2, + ACTIONS(7659), 1, anon_sym_xor2, + ACTIONS(7661), 1, anon_sym_or2, - [170129] = 6, + STATE(4473), 1, + sym_comment, + ACTIONS(7621), 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, + [168422] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1540), 1, - aux_sym_unquoted_token2, - ACTIONS(2226), 1, - anon_sym_LPAREN2, STATE(4474), 1, sym_comment, - ACTIONS(2228), 2, - ts_builtin_sym_end, + ACTIONS(5024), 2, sym__space, - ACTIONS(2224), 11, + anon_sym_LPAREN2, + ACTIONS(5026), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385581,19 +388043,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, - [170159] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [168448] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2174), 1, - anon_sym_LPAREN2, - ACTIONS(2178), 1, - aux_sym_unquoted_token2, + ACTIONS(7663), 1, + anon_sym_EQ2, + ACTIONS(7665), 1, + sym_short_flag_identifier, STATE(4475), 1, sym_comment, - ACTIONS(2176), 2, + ACTIONS(4861), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2172), 11, + ACTIONS(4863), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385605,37 +388069,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, - [170189] = 4, - ACTIONS(251), 1, + [168478] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(4476), 1, sym_comment, - ACTIONS(1993), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1995), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(7375), 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, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [170215] = 4, - ACTIONS(251), 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_and2, + anon_sym_xor2, + anon_sym_or2, + [168502] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1651), 1, + sym__space, + ACTIONS(7179), 1, + aux_sym_unquoted_token2, STATE(4477), 1, sym_comment, - ACTIONS(1997), 2, + ACTIONS(1639), 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, + [168530] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4478), 1, + sym_comment, + ACTIONS(2010), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(1999), 13, + ACTIONS(2012), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -385649,19 +388135,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [170241] = 6, - ACTIONS(3), 1, + [168556] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2130), 1, - anon_sym_LPAREN2, - ACTIONS(2134), 1, - aux_sym_unquoted_token4, - STATE(4478), 1, + STATE(4479), 1, sym_comment, - ACTIONS(2132), 2, + ACTIONS(7304), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(2128), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385673,67 +388153,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, - [170271] = 6, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [168580] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2206), 1, - anon_sym_LPAREN2, - ACTIONS(2208), 1, - aux_sym_unquoted_token4, - STATE(4479), 1, + ACTIONS(1002), 1, + anon_sym_DASH2, + ACTIONS(7667), 1, + anon_sym_DOT_DOT2, + STATE(4480), 1, sym_comment, - ACTIONS(1012), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1016), 11, + ACTIONS(7669), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(998), 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, - [170301] = 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, + [168610] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2138), 1, - anon_sym_LPAREN2, - ACTIONS(2142), 1, - aux_sym_unquoted_token4, - STATE(4480), 1, + ACTIONS(2043), 1, + anon_sym_DASH2, + ACTIONS(7671), 1, + anon_sym_DOT_DOT2, + STATE(4481), 1, sym_comment, - ACTIONS(2140), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2136), 11, + ACTIONS(7673), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2049), 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, - [170331] = 6, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [168640] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2138), 1, - anon_sym_LPAREN2, - ACTIONS(2142), 1, - aux_sym_unquoted_token4, - STATE(4481), 1, + STATE(4482), 1, sym_comment, - ACTIONS(2146), 2, + ACTIONS(1768), 3, ts_builtin_sym_end, sym__space, - ACTIONS(2144), 11, + anon_sym_LPAREN2, + ACTIONS(1766), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385745,19 +388225,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, - [170361] = 6, - ACTIONS(251), 1, + aux_sym_unquoted_token2, + [168666] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7669), 1, + ACTIONS(2030), 1, anon_sym_DASH2, - ACTIONS(7671), 1, + ACTIONS(7675), 1, anon_sym_DOT_DOT2, - STATE(4482), 1, + STATE(4483), 1, sym_comment, - ACTIONS(7673), 2, + ACTIONS(7677), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7667), 11, + ACTIONS(2036), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -385769,80 +388250,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [170391] = 14, - ACTIONS(251), 1, + [168696] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7675), 1, + ACTIONS(1977), 1, + anon_sym_DASH2, + ACTIONS(7679), 1, + anon_sym_DOT_DOT2, + STATE(4484), 1, + sym_comment, + ACTIONS(7681), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1983), 11, + anon_sym_EQ, sym_identifier, - ACTIONS(7680), 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, + [168726] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1985), 1, + anon_sym_DASH2, ACTIONS(7683), 1, + anon_sym_DOT_DOT2, + STATE(4485), 1, + sym_comment, + ACTIONS(7685), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1991), 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, - ACTIONS(7686), 1, anon_sym_DASH_DASH, + [168756] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7687), 1, + sym_identifier, ACTIONS(7689), 1, + sym__newline, + ACTIONS(7691), 1, + anon_sym_RBRACK, + ACTIONS(7693), 1, + anon_sym_DOLLAR, + ACTIONS(7695), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7697), 1, + anon_sym_DASH_DASH, + ACTIONS(7699), 1, anon_sym_DASH2, - STATE(4069), 1, + STATE(4052), 1, sym_param_long_flag, - STATE(4231), 1, + STATE(4210), 1, sym__param_name, - STATE(5004), 1, + STATE(4486), 1, + sym_comment, + STATE(4524), 1, + aux_sym_shebang_repeat1, + STATE(4749), 1, + aux_sym_parameter_parens_repeat1, + STATE(5133), 1, sym_param_rest, - STATE(5017), 1, + STATE(5134), 1, sym_param_opt, - STATE(5019), 1, + STATE(5135), 1, sym_param_short_flag, - STATE(5595), 1, + STATE(5589), 1, sym_parameter, - STATE(4483), 2, + [168808] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7701), 1, + sym__newline, + STATE(764), 1, + aux_sym__pipe_separator, + STATE(4487), 1, sym_comment, - aux_sym_parameter_parens_repeat1, - ACTIONS(7678), 3, - anon_sym_PIPE, - anon_sym_RBRACK, + STATE(5142), 1, + aux_sym_shebang_repeat1, + ACTIONS(7704), 3, + anon_sym_SEMI, anon_sym_RPAREN, - [170437] = 17, - ACTIONS(251), 1, + anon_sym_RBRACE, + ACTIONS(2546), 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, + [168840] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7692), 1, + ACTIONS(7706), 1, sym_identifier, - ACTIONS(7694), 1, - sym__newline, - ACTIONS(7696), 1, - anon_sym_PIPE, - ACTIONS(7698), 1, + ACTIONS(7711), 1, anon_sym_DOLLAR, - ACTIONS(7700), 1, + ACTIONS(7714), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7702), 1, + ACTIONS(7717), 1, anon_sym_DASH_DASH, - ACTIONS(7704), 1, + ACTIONS(7720), 1, anon_sym_DASH2, - STATE(4069), 1, + STATE(4052), 1, sym_param_long_flag, - STATE(4231), 1, + STATE(4210), 1, sym__param_name, - STATE(4484), 1, - sym_comment, - STATE(4518), 1, - aux_sym_shebang_repeat1, - STATE(4721), 1, - aux_sym_parameter_parens_repeat1, - STATE(5004), 1, + STATE(5133), 1, sym_param_rest, - STATE(5017), 1, + STATE(5134), 1, sym_param_opt, - STATE(5019), 1, + STATE(5135), 1, sym_param_short_flag, - STATE(5595), 1, + STATE(5589), 1, sym_parameter, - [170489] = 3, - ACTIONS(251), 1, + STATE(4488), 2, + sym_comment, + aux_sym_parameter_parens_repeat1, + ACTIONS(7709), 3, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + [168886] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4485), 1, + ACTIONS(2075), 1, + anon_sym_LPAREN2, + ACTIONS(2079), 1, + aux_sym_unquoted_token4, + STATE(4489), 1, sym_comment, - ACTIONS(7355), 15, + ACTIONS(2077), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2073), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385854,16 +388414,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_and2, - anon_sym_xor2, - anon_sym_or2, - [170513] = 3, - ACTIONS(251), 1, + [168916] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4486), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(4490), 1, sym_comment, - ACTIONS(7389), 15, + STATE(7355), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7631), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(7629), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385875,16 +388438,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_and2, - anon_sym_xor2, - anon_sym_or2, - [170537] = 3, - ACTIONS(251), 1, + [168946] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4487), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(4491), 1, sym_comment, - ACTIONS(7355), 15, + STATE(7477), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4895), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(4897), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385896,18 +388462,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_and2, - anon_sym_xor2, - anon_sym_or2, - [170561] = 3, - ACTIONS(251), 1, + [168976] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4488), 1, - sym_comment, - ACTIONS(7389), 15, - ts_builtin_sym_end, + ACTIONS(7723), 1, sym__newline, + STATE(764), 1, + aux_sym__pipe_separator, + STATE(4492), 1, + sym_comment, + STATE(5142), 1, + aux_sym_shebang_repeat1, + ACTIONS(7726), 3, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2546), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -385917,16 +388487,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_and2, - anon_sym_xor2, - anon_sym_or2, - [170585] = 3, - ACTIONS(251), 1, + [169008] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4489), 1, + ACTIONS(2075), 1, + anon_sym_LPAREN2, + ACTIONS(2079), 1, + aux_sym_unquoted_token4, + STATE(4493), 1, sym_comment, - ACTIONS(7355), 15, + ACTIONS(2083), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2081), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385938,16 +388511,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_and2, - anon_sym_xor2, - anon_sym_or2, - [170609] = 3, - ACTIONS(251), 1, + [169038] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4490), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(4494), 1, sym_comment, - ACTIONS(7389), 15, + STATE(7477), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4899), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(4901), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385959,16 +388535,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_and2, - anon_sym_xor2, - anon_sym_or2, - [170633] = 3, - ACTIONS(251), 1, + [169068] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4491), 1, + STATE(4495), 1, sym_comment, - ACTIONS(7545), 15, - ts_builtin_sym_end, + ACTIONS(5166), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385980,16 +388552,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_and2, - anon_sym_xor2, - anon_sym_or2, - [170657] = 3, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_else, + anon_sym_RBRACE, + anon_sym_catch, + [169092] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4492), 1, + STATE(4496), 1, sym_comment, - ACTIONS(7545), 15, + ACTIONS(1794), 3, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1792), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386001,17 +388577,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_and2, - anon_sym_xor2, - anon_sym_or2, - [170681] = 4, - ACTIONS(251), 1, + aux_sym_unquoted_token2, + [169118] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7706), 1, - anon_sym_and2, - STATE(4493), 1, + ACTIONS(7687), 1, + sym_identifier, + ACTIONS(7689), 1, + sym__newline, + ACTIONS(7693), 1, + anon_sym_DOLLAR, + ACTIONS(7695), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7697), 1, + anon_sym_DASH_DASH, + ACTIONS(7699), 1, + anon_sym_DASH2, + ACTIONS(7728), 1, + anon_sym_RPAREN, + STATE(4052), 1, + sym_param_long_flag, + STATE(4210), 1, + sym__param_name, + STATE(4497), 1, + sym_comment, + STATE(4527), 1, + aux_sym_shebang_repeat1, + STATE(4768), 1, + aux_sym_parameter_parens_repeat1, + STATE(5133), 1, + sym_param_rest, + STATE(5134), 1, + sym_param_opt, + STATE(5135), 1, + sym_param_short_flag, + STATE(5589), 1, + sym_parameter, + [169170] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4498), 1, sym_comment, - ACTIONS(7545), 14, + ACTIONS(7375), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -386024,17 +388631,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_and2, anon_sym_xor2, anon_sym_or2, - [170707] = 4, - ACTIONS(251), 1, + [169194] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7708), 1, - anon_sym_and2, - STATE(4494), 1, + STATE(4499), 1, sym_comment, - ACTIONS(7545), 14, + ACTIONS(1695), 3, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1693), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386046,19 +388655,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_xor2, - anon_sym_or2, - [170733] = 5, - ACTIONS(251), 1, + aux_sym_unquoted_token2, + [169220] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7706), 1, - anon_sym_and2, - ACTIONS(7710), 1, - anon_sym_xor2, - STATE(4495), 1, + ACTIONS(7655), 1, + sym__space, + STATE(4500), 1, sym_comment, - ACTIONS(7545), 13, - ts_builtin_sym_end, + STATE(4529), 1, + aux_sym_command_repeat1, + ACTIONS(7730), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386070,18 +388677,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_or2, - [170761] = 5, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [169248] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7708), 1, - anon_sym_and2, - ACTIONS(7712), 1, - anon_sym_xor2, - STATE(4496), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(4501), 1, sym_comment, - ACTIONS(7545), 13, + STATE(7477), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4887), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(4889), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386093,13 +388703,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_or2, - [170789] = 3, - ACTIONS(251), 1, + [169278] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4497), 1, + STATE(4502), 1, sym_comment, - ACTIONS(7545), 15, + ACTIONS(7375), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -386115,14 +388724,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [170813] = 4, - ACTIONS(251), 1, + [169302] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7706), 1, - anon_sym_and2, - STATE(4498), 1, + STATE(4503), 1, sym_comment, - ACTIONS(7545), 14, + ACTIONS(7585), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -386135,17 +388742,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [170839] = 4, - ACTIONS(251), 1, + [169326] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7708), 1, - anon_sym_and2, - STATE(4499), 1, + ACTIONS(7687), 1, + sym_identifier, + ACTIONS(7689), 1, + sym__newline, + ACTIONS(7693), 1, + anon_sym_DOLLAR, + ACTIONS(7695), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7697), 1, + anon_sym_DASH_DASH, + ACTIONS(7699), 1, + anon_sym_DASH2, + ACTIONS(7732), 1, + anon_sym_RBRACK, + STATE(4052), 1, + sym_param_long_flag, + STATE(4210), 1, + sym__param_name, + STATE(4504), 1, + sym_comment, + STATE(4512), 1, + aux_sym_shebang_repeat1, + STATE(4912), 1, + aux_sym_parameter_parens_repeat1, + STATE(5133), 1, + sym_param_rest, + STATE(5134), 1, + sym_param_opt, + STATE(5135), 1, + sym_param_short_flag, + STATE(5589), 1, + sym_parameter, + [169378] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7687), 1, + sym_identifier, + ACTIONS(7689), 1, + sym__newline, + ACTIONS(7693), 1, + anon_sym_DOLLAR, + ACTIONS(7695), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7697), 1, + anon_sym_DASH_DASH, + ACTIONS(7699), 1, + anon_sym_DASH2, + ACTIONS(7734), 1, + anon_sym_RPAREN, + STATE(4052), 1, + sym_param_long_flag, + STATE(4210), 1, + sym__param_name, + STATE(4505), 1, + sym_comment, + STATE(4554), 1, + aux_sym_shebang_repeat1, + STATE(4915), 1, + aux_sym_parameter_parens_repeat1, + STATE(5133), 1, + sym_param_rest, + STATE(5134), 1, + sym_param_opt, + STATE(5135), 1, + sym_param_short_flag, + STATE(5589), 1, + sym_parameter, + [169430] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2192), 1, + anon_sym_LPAREN2, + ACTIONS(2196), 1, + aux_sym_unquoted_token2, + STATE(4506), 1, sym_comment, - ACTIONS(7545), 14, + ACTIONS(2194), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2190), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386157,18 +388839,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_xor2, - anon_sym_or2, - [170865] = 5, - ACTIONS(251), 1, + [169460] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7706), 1, - anon_sym_and2, - ACTIONS(7710), 1, - anon_sym_xor2, - STATE(4500), 1, + STATE(4507), 1, sym_comment, - ACTIONS(7545), 13, + ACTIONS(7585), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -386181,17 +388857,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_and2, + anon_sym_xor2, anon_sym_or2, - [170893] = 5, - ACTIONS(251), 1, + [169484] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7708), 1, + ACTIONS(7657), 1, anon_sym_and2, - ACTIONS(7712), 1, - anon_sym_xor2, - STATE(4501), 1, + STATE(4508), 1, sym_comment, - ACTIONS(7545), 13, + ACTIONS(7585), 14, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -386204,16 +388880,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_xor2, anon_sym_or2, - [170921] = 4, - ACTIONS(251), 1, + [169510] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4502), 1, - sym_comment, - ACTIONS(1000), 2, - anon_sym_DASH2, + ACTIONS(7667), 1, anon_sym_DOT_DOT2, - ACTIONS(1002), 13, + ACTIONS(7738), 1, + anon_sym_DASH2, + STATE(4509), 1, + sym_comment, + ACTIONS(7669), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7736), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -386225,21 +388906,40 @@ 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, - [170947] = 6, - ACTIONS(251), 1, + [169540] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7671), 1, + STATE(4510), 1, + sym_comment, + ACTIONS(7740), 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_else, + anon_sym_RBRACE, + anon_sym_catch, + [169564] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7667), 1, anon_sym_DOT_DOT2, - ACTIONS(7716), 1, + ACTIONS(7744), 1, anon_sym_DASH2, - STATE(4503), 1, + STATE(4511), 1, sym_comment, - ACTIONS(7673), 2, + ACTIONS(7669), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7714), 11, + ACTIONS(7742), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -386251,16 +388951,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [170977] = 4, + [169594] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7687), 1, + sym_identifier, + ACTIONS(7689), 1, + sym__newline, + ACTIONS(7693), 1, + anon_sym_DOLLAR, + ACTIONS(7695), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7697), 1, + anon_sym_DASH_DASH, + ACTIONS(7699), 1, + anon_sym_DASH2, + ACTIONS(7746), 1, + anon_sym_RBRACK, + STATE(4052), 1, + sym_param_long_flag, + STATE(4210), 1, + sym__param_name, + STATE(4512), 1, + sym_comment, + STATE(4808), 1, + aux_sym_parameter_parens_repeat1, + STATE(5133), 1, + sym_param_rest, + STATE(5134), 1, + sym_param_opt, + STATE(5135), 1, + sym_param_short_flag, + STATE(5276), 1, + aux_sym_shebang_repeat1, + STATE(5589), 1, + sym_parameter, + [169646] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4504), 1, + ACTIONS(2061), 1, + anon_sym_LPAREN2, + ACTIONS(2063), 1, + aux_sym_unquoted_token4, + STATE(4513), 1, sym_comment, - ACTIONS(2150), 3, + ACTIONS(998), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(2148), 12, + ACTIONS(1002), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386272,20 +389010,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, - aux_sym_unquoted_token4, - [171003] = 6, - ACTIONS(3), 1, + [169676] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7718), 1, - anon_sym_EQ2, - ACTIONS(7720), 1, - sym_short_flag_identifier, - STATE(4505), 1, + ACTIONS(7748), 1, + anon_sym_and2, + STATE(4514), 1, sym_comment, - ACTIONS(4839), 2, + ACTIONS(7585), 14, ts_builtin_sym_end, - sym__space, - ACTIONS(4841), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386297,16 +389030,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, - [171033] = 5, - ACTIONS(3), 1, + anon_sym_xor2, + anon_sym_or2, + [169702] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1650), 1, - sym__space, - ACTIONS(7177), 1, - aux_sym_unquoted_token2, - STATE(4506), 1, + ACTIONS(7748), 1, + anon_sym_and2, + ACTIONS(7750), 1, + anon_sym_xor2, + ACTIONS(7752), 1, + anon_sym_or2, + STATE(4515), 1, sym_comment, - ACTIONS(1638), 13, + ACTIONS(7621), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386318,21 +389056,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, - [171061] = 6, - ACTIONS(3), 1, + [169732] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7257), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7722), 1, - anon_sym_DOT, - STATE(4507), 1, + ACTIONS(7657), 1, + anon_sym_and2, + ACTIONS(7659), 1, + anon_sym_xor2, + STATE(4516), 1, sym_comment, - ACTIONS(1757), 2, + ACTIONS(7585), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(1755), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386344,110 +389078,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, - [171091] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7646), 1, - aux_sym__immediate_decimal_token2, - STATE(4508), 1, - sym_comment, - ACTIONS(1755), 3, - sym_identifier, - anon_sym_DASH2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1757), 11, - anon_sym_EQ, - 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, - [171119] = 6, - ACTIONS(251), 1, + anon_sym_or2, + [169760] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7724), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7726), 1, - aux_sym__immediate_decimal_token2, - STATE(4509), 1, + ACTIONS(7748), 1, + anon_sym_and2, + ACTIONS(7750), 1, + anon_sym_xor2, + STATE(4517), 1, sym_comment, - ACTIONS(1542), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1544), 10, + ACTIONS(7585), 13, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [171149] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7728), 1, - aux_sym__immediate_decimal_token2, - STATE(4510), 1, - sym_comment, - ACTIONS(1783), 3, - sym_identifier, - anon_sym_DASH2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1785), 11, - anon_sym_EQ, - 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, - [171177] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7730), 1, - anon_sym_DOT, - ACTIONS(7732), 1, - aux_sym__immediate_decimal_token2, - STATE(4511), 1, - sym_comment, - ACTIONS(1550), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1552), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [171207] = 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, + anon_sym_or2, + [169788] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2234), 1, - sym__space, - ACTIONS(7734), 1, - anon_sym_LBRACK2, - STATE(4512), 1, + STATE(4518), 1, sym_comment, - ACTIONS(2230), 13, + ACTIONS(7585), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386459,21 +389120,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, - [171235] = 6, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [169812] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7736), 1, - sym_long_flag_identifier, - ACTIONS(7738), 1, - anon_sym_EQ2, - STATE(4513), 1, + STATE(4519), 1, sym_comment, - ACTIONS(4860), 2, + ACTIONS(6965), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(4862), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386485,16 +389141,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, - [171265] = 5, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [169836] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7740), 1, - sym__space, - STATE(4514), 1, + STATE(4520), 1, sym_comment, - STATE(4521), 1, - aux_sym_command_repeat1, - ACTIONS(7590), 13, + ACTIONS(7585), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386506,24 +389162,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, - [171293] = 7, - ACTIONS(251), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [169860] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7742), 1, - sym__newline, - STATE(756), 1, - aux_sym__pipe_separator, - STATE(4515), 1, + ACTIONS(7260), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7754), 1, + anon_sym_DOT, + STATE(4521), 1, sym_comment, - STATE(5156), 1, - aux_sym_shebang_repeat1, - ACTIONS(7745), 3, + ACTIONS(1703), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1701), 11, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2536), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -386533,15 +389189,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, - [171325] = 4, + [169890] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4516), 1, - sym_comment, - ACTIONS(4992), 2, + ACTIONS(2296), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(4994), 13, + ACTIONS(7756), 1, + anon_sym_LBRACK2, + STATE(4522), 1, + sym_comment, + ACTIONS(2292), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386555,74 +389212,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [171351] = 6, - ACTIONS(251), 1, + [169918] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1016), 1, + ACTIONS(7758), 1, + anon_sym_DOT, + ACTIONS(7760), 1, + aux_sym__immediate_decimal_token2, + STATE(4523), 1, + sym_comment, + ACTIONS(1512), 3, anon_sym_DASH2, - ACTIONS(7671), 1, anon_sym_DOT_DOT2, - STATE(4517), 1, - sym_comment, - ACTIONS(7673), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1012), 11, - anon_sym_EQ, - sym_identifier, + aux_sym_unquoted_token2, + ACTIONS(1514), 10, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [171381] = 17, - ACTIONS(251), 1, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [169948] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7692), 1, + ACTIONS(7687), 1, sym_identifier, - ACTIONS(7694), 1, + ACTIONS(7689), 1, sym__newline, - ACTIONS(7698), 1, + ACTIONS(7693), 1, anon_sym_DOLLAR, - ACTIONS(7700), 1, + ACTIONS(7695), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7702), 1, + ACTIONS(7697), 1, anon_sym_DASH_DASH, - ACTIONS(7704), 1, + ACTIONS(7699), 1, anon_sym_DASH2, - ACTIONS(7747), 1, - anon_sym_PIPE, - STATE(4069), 1, + ACTIONS(7762), 1, + anon_sym_RBRACK, + STATE(4052), 1, sym_param_long_flag, - STATE(4231), 1, + STATE(4210), 1, sym__param_name, - STATE(4518), 1, + STATE(4524), 1, sym_comment, - STATE(4816), 1, + STATE(4793), 1, aux_sym_parameter_parens_repeat1, - STATE(5004), 1, + STATE(5133), 1, sym_param_rest, - STATE(5017), 1, + STATE(5134), 1, sym_param_opt, - STATE(5019), 1, + STATE(5135), 1, sym_param_short_flag, - STATE(5197), 1, + STATE(5276), 1, aux_sym_shebang_repeat1, - STATE(5595), 1, + STATE(5589), 1, sym_parameter, - [171433] = 4, + [170000] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4519), 1, + ACTIONS(7764), 1, + sym_long_flag_identifier, + ACTIONS(7766), 1, + anon_sym_EQ2, + STATE(4525), 1, sym_comment, - ACTIONS(4960), 2, + ACTIONS(4938), 2, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(4962), 13, + ACTIONS(4940), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386634,41 +389295,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, - [171459] = 5, + [170030] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7740), 1, - sym__space, - STATE(4520), 1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(4526), 1, sym_comment, - STATE(4531), 1, - aux_sym_command_repeat1, - ACTIONS(7749), 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, - [171487] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7740), 1, + STATE(7477), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4891), 2, + ts_builtin_sym_end, sym__space, - STATE(4521), 1, - sym_comment, - STATE(4535), 1, - aux_sym_command_repeat1, - ACTIONS(7751), 13, + ACTIONS(4893), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386680,94 +389319,87 @@ static const uint16_t 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, - [171515] = 17, - ACTIONS(251), 1, + [170060] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7692), 1, + ACTIONS(7687), 1, sym_identifier, - ACTIONS(7694), 1, + ACTIONS(7689), 1, sym__newline, - ACTIONS(7698), 1, + ACTIONS(7693), 1, anon_sym_DOLLAR, - ACTIONS(7700), 1, + ACTIONS(7695), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7702), 1, + ACTIONS(7697), 1, anon_sym_DASH_DASH, - ACTIONS(7704), 1, + ACTIONS(7699), 1, anon_sym_DASH2, - ACTIONS(7753), 1, - anon_sym_RBRACK, - STATE(4069), 1, + ACTIONS(7768), 1, + anon_sym_RPAREN, + STATE(4052), 1, sym_param_long_flag, - STATE(4231), 1, + STATE(4210), 1, sym__param_name, - STATE(4522), 1, + STATE(4527), 1, sym_comment, - STATE(4525), 1, - aux_sym_shebang_repeat1, - STATE(4806), 1, + STATE(4927), 1, aux_sym_parameter_parens_repeat1, - STATE(5004), 1, + STATE(5133), 1, sym_param_rest, - STATE(5017), 1, + STATE(5134), 1, sym_param_opt, - STATE(5019), 1, + STATE(5135), 1, sym_param_short_flag, - STATE(5595), 1, + STATE(5276), 1, + aux_sym_shebang_repeat1, + STATE(5589), 1, sym_parameter, - [171567] = 17, - ACTIONS(251), 1, + [170112] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7692), 1, + ACTIONS(7687), 1, sym_identifier, - ACTIONS(7694), 1, + ACTIONS(7689), 1, sym__newline, - ACTIONS(7698), 1, + ACTIONS(7693), 1, anon_sym_DOLLAR, - ACTIONS(7700), 1, + ACTIONS(7695), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7702), 1, + ACTIONS(7697), 1, anon_sym_DASH_DASH, - ACTIONS(7704), 1, + ACTIONS(7699), 1, anon_sym_DASH2, - ACTIONS(7755), 1, - anon_sym_RPAREN, - STATE(4069), 1, + ACTIONS(7770), 1, + anon_sym_PIPE, + STATE(4052), 1, sym_param_long_flag, - STATE(4231), 1, + STATE(4210), 1, sym__param_name, - STATE(4523), 1, + STATE(4528), 1, sym_comment, - STATE(4526), 1, + STATE(4533), 1, aux_sym_shebang_repeat1, - STATE(4808), 1, + STATE(4880), 1, aux_sym_parameter_parens_repeat1, - STATE(5004), 1, + STATE(5133), 1, sym_param_rest, - STATE(5017), 1, + STATE(5134), 1, sym_param_opt, - STATE(5019), 1, + STATE(5135), 1, sym_param_short_flag, - STATE(5595), 1, + STATE(5589), 1, sym_parameter, - [171619] = 7, - ACTIONS(251), 1, + [170164] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7757), 1, - sym__newline, - STATE(756), 1, - aux_sym__pipe_separator, - STATE(4524), 1, + ACTIONS(7774), 1, + sym__space, + STATE(4529), 2, sym_comment, - STATE(5156), 1, - aux_sym_shebang_repeat1, - ACTIONS(7760), 3, + aux_sym_command_repeat1, + ACTIONS(7772), 13, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2536), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -386777,89 +389409,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [171651] = 17, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [170190] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7692), 1, + ACTIONS(7667), 1, + anon_sym_DOT_DOT2, + ACTIONS(7779), 1, + anon_sym_DASH2, + STATE(4530), 1, + sym_comment, + ACTIONS(7669), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7777), 11, + anon_sym_EQ, sym_identifier, - ACTIONS(7694), 1, sym__newline, - ACTIONS(7698), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7700), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7702), 1, anon_sym_DASH_DASH, - ACTIONS(7704), 1, + [170220] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4531), 1, + sym_comment, + ACTIONS(2022), 2, anon_sym_DASH2, - ACTIONS(7762), 1, + anon_sym_DOT_DOT2, + ACTIONS(2024), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, - STATE(4069), 1, - sym_param_long_flag, - STATE(4231), 1, - sym__param_name, - STATE(4525), 1, + 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, + [170246] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7657), 1, + anon_sym_and2, + STATE(4532), 1, sym_comment, - STATE(4814), 1, - aux_sym_parameter_parens_repeat1, - STATE(5004), 1, - sym_param_rest, - STATE(5017), 1, - sym_param_opt, - STATE(5019), 1, - sym_param_short_flag, - STATE(5197), 1, - aux_sym_shebang_repeat1, - STATE(5595), 1, - sym_parameter, - [171703] = 17, - ACTIONS(251), 1, + ACTIONS(7585), 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_xor2, + anon_sym_or2, + [170272] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7692), 1, + ACTIONS(7687), 1, sym_identifier, - ACTIONS(7694), 1, + ACTIONS(7689), 1, sym__newline, - ACTIONS(7698), 1, + ACTIONS(7693), 1, anon_sym_DOLLAR, - ACTIONS(7700), 1, + ACTIONS(7695), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7702), 1, + ACTIONS(7697), 1, anon_sym_DASH_DASH, - ACTIONS(7704), 1, + ACTIONS(7699), 1, anon_sym_DASH2, - ACTIONS(7764), 1, - anon_sym_RPAREN, - STATE(4069), 1, + ACTIONS(7781), 1, + anon_sym_PIPE, + STATE(4052), 1, sym_param_long_flag, - STATE(4231), 1, + STATE(4210), 1, sym__param_name, - STATE(4526), 1, + STATE(4533), 1, sym_comment, - STATE(4815), 1, + STATE(4787), 1, aux_sym_parameter_parens_repeat1, - STATE(5004), 1, + STATE(5133), 1, sym_param_rest, - STATE(5017), 1, + STATE(5134), 1, sym_param_opt, - STATE(5019), 1, + STATE(5135), 1, sym_param_short_flag, - STATE(5197), 1, + STATE(5276), 1, aux_sym_shebang_repeat1, - STATE(5595), 1, + STATE(5589), 1, sym_parameter, - [171755] = 6, - ACTIONS(3), 1, + [170324] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(4527), 1, + ACTIONS(7748), 1, + anon_sym_and2, + STATE(4534), 1, sym_comment, - STATE(7450), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7628), 2, + ACTIONS(7585), 14, ts_builtin_sym_end, - sym__space, - ACTIONS(7626), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386871,18 +389534,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, - [171785] = 6, - ACTIONS(251), 1, + anon_sym_xor2, + anon_sym_or2, + [170350] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7706), 1, + ACTIONS(7657), 1, anon_sym_and2, - ACTIONS(7710), 1, + ACTIONS(7659), 1, anon_sym_xor2, - ACTIONS(7766), 1, - anon_sym_or2, - STATE(4528), 1, + STATE(4535), 1, sym_comment, - ACTIONS(7634), 12, + ACTIONS(7585), 13, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -386895,18 +389558,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, - [171815] = 6, - ACTIONS(251), 1, + anon_sym_or2, + [170378] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7708), 1, + ACTIONS(7748), 1, anon_sym_and2, - ACTIONS(7712), 1, + ACTIONS(7750), 1, anon_sym_xor2, - ACTIONS(7768), 1, - anon_sym_or2, - STATE(4529), 1, + STATE(4536), 1, sym_comment, - ACTIONS(7634), 12, + ACTIONS(7585), 13, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -386919,13 +389581,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, - [171845] = 3, - ACTIONS(251), 1, + anon_sym_or2, + [170406] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4530), 1, + ACTIONS(5060), 1, + sym__space, + ACTIONS(7783), 1, + anon_sym_EQ2, + STATE(4537), 1, sym_comment, - ACTIONS(6983), 15, - ts_builtin_sym_end, + ACTIONS(5062), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386937,19 +389603,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_and2, - anon_sym_xor2, - anon_sym_or2, - [171869] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [170434] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7740), 1, + ACTIONS(5050), 1, sym__space, - STATE(4531), 1, + ACTIONS(7785), 1, + anon_sym_EQ2, + STATE(4538), 1, sym_comment, - STATE(4535), 1, - aux_sym_command_repeat1, - ACTIONS(7770), 13, + ACTIONS(5052), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386963,43 +389628,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [171897] = 6, - ACTIONS(251), 1, + [170462] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2019), 1, - anon_sym_DASH2, - ACTIONS(7772), 1, - anon_sym_DOT_DOT2, - STATE(4532), 1, + ACTIONS(7655), 1, + sym__space, + STATE(4472), 1, + aux_sym_command_repeat1, + STATE(4539), 1, sym_comment, - ACTIONS(7774), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2025), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(7617), 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, - [171927] = 6, - ACTIONS(251), 1, + anon_sym_RBRACE, + [170490] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2027), 1, + STATE(4540), 1, + sym_comment, + ACTIONS(2026), 2, anon_sym_DASH2, - ACTIONS(7776), 1, anon_sym_DOT_DOT2, - STATE(4533), 1, - sym_comment, - ACTIONS(7778), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2033), 11, + ACTIONS(2028), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -387011,39 +389671,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [171957] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2035), 1, - anon_sym_DASH2, - ACTIONS(7780), 1, - anon_sym_DOT_DOT2, - STATE(4534), 1, - sym_comment, - ACTIONS(7782), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2041), 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, - [171987] = 4, + [170516] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7786), 1, - sym__space, - STATE(4535), 2, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + ACTIONS(1808), 1, + anon_sym_LPAREN2, + STATE(4541), 1, sym_comment, - aux_sym_command_repeat1, - ACTIONS(7784), 13, + ACTIONS(1814), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1806), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387055,18 +389697,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, - [172013] = 4, + [170546] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4536), 1, + ACTIONS(1562), 1, + aux_sym_unquoted_token2, + ACTIONS(2170), 1, + anon_sym_LPAREN2, + STATE(4542), 1, sym_comment, - ACTIONS(1757), 3, + ACTIONS(2172), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1755), 12, + ACTIONS(2168), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387078,37 +389721,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, - aux_sym_unquoted_token2, - [172039] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2043), 1, - anon_sym_DASH2, - ACTIONS(7789), 1, - anon_sym_DOT_DOT2, - STATE(4537), 1, - sym_comment, - ACTIONS(7791), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2049), 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, - [172069] = 3, - ACTIONS(251), 1, + [170576] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4538), 1, + STATE(4543), 1, sym_comment, - ACTIONS(7793), 15, + ACTIONS(7304), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387120,20 +389739,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_else, - anon_sym_RBRACE, - anon_sym_catch, - [172093] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [170600] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4539), 1, - sym_comment, - ACTIONS(1713), 3, - ts_builtin_sym_end, + ACTIONS(7655), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(1711), 12, + STATE(4500), 1, + aux_sym_command_repeat1, + STATE(4544), 1, + sym_comment, + ACTIONS(7787), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387145,17 +389763,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, - [172119] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [170628] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4540), 1, + ACTIONS(2067), 1, + anon_sym_LPAREN2, + ACTIONS(2071), 1, + aux_sym_unquoted_token4, + STATE(4545), 1, sym_comment, - ACTIONS(1785), 3, + ACTIONS(2069), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1783), 12, + ACTIONS(2065), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387167,17 +389789,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, - aux_sym_unquoted_token2, - [172145] = 4, + [170658] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4541), 1, + STATE(4546), 1, sym_comment, - ACTIONS(1837), 3, + ACTIONS(2087), 3, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, - ACTIONS(1835), 12, + ACTIONS(2085), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387189,55 +389810,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, - aux_sym_unquoted_token2, - [172171] = 17, - ACTIONS(251), 1, + aux_sym_unquoted_token4, + [170684] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7692), 1, - sym_identifier, - ACTIONS(7694), 1, - sym__newline, - ACTIONS(7698), 1, - anon_sym_DOLLAR, - ACTIONS(7700), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7702), 1, - anon_sym_DASH_DASH, - ACTIONS(7704), 1, - anon_sym_DASH2, - ACTIONS(7795), 1, - anon_sym_RBRACK, - STATE(4069), 1, - sym_param_long_flag, - STATE(4231), 1, - sym__param_name, - STATE(4542), 1, + STATE(4547), 1, sym_comment, - STATE(4746), 1, - aux_sym_parameter_parens_repeat1, - STATE(5004), 1, - sym_param_rest, - STATE(5017), 1, - sym_param_opt, - STATE(5019), 1, - sym_param_short_flag, - STATE(5197), 1, - aux_sym_shebang_repeat1, - STATE(5595), 1, - sym_parameter, - [172223] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7671), 1, - anon_sym_DOT_DOT2, - ACTIONS(7799), 1, + ACTIONS(1676), 2, anon_sym_DASH2, - STATE(4543), 1, - sym_comment, - ACTIONS(7673), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7797), 11, + anon_sym_DOT_DOT2, + ACTIONS(1678), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -387249,102 +389831,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [172253] = 17, - ACTIONS(251), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [170710] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7692), 1, + ACTIONS(7542), 1, + aux_sym__immediate_decimal_token2, + STATE(4548), 1, + sym_comment, + ACTIONS(1701), 3, sym_identifier, - ACTIONS(7694), 1, + anon_sym_DASH2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1703), 11, + anon_sym_EQ, sym__newline, - ACTIONS(7698), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7700), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7702), 1, anon_sym_DASH_DASH, - ACTIONS(7704), 1, - anon_sym_DASH2, - ACTIONS(7801), 1, - anon_sym_RPAREN, - STATE(4069), 1, - sym_param_long_flag, - STATE(4231), 1, - sym__param_name, - STATE(4544), 1, - sym_comment, - STATE(4747), 1, - aux_sym_parameter_parens_repeat1, - STATE(5004), 1, - sym_param_rest, - STATE(5017), 1, - sym_param_opt, - STATE(5019), 1, - sym_param_short_flag, - STATE(5197), 1, - aux_sym_shebang_repeat1, - STATE(5595), 1, - sym_parameter, - [172305] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4181), 1, anon_sym_LPAREN2, - STATE(4545), 1, - sym_comment, - STATE(7580), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4874), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4876), 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, - [172335] = 6, - ACTIONS(3), 1, + [170738] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(4546), 1, + ACTIONS(7789), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7791), 1, + aux_sym__immediate_decimal_token2, + STATE(4549), 1, sym_comment, - STATE(7580), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4878), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4880), 11, + ACTIONS(1504), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1506), 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, - [172365] = 6, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [170768] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(4547), 1, + STATE(4550), 1, sym_comment, - STATE(7580), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4882), 2, + ACTIONS(1703), 3, ts_builtin_sym_end, sym__space, - ACTIONS(4884), 11, + anon_sym_LPAREN2, + ACTIONS(1701), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387356,36 +389901,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, - [172395] = 6, + aux_sym_unquoted_token2, + [170794] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4181), 1, + ACTIONS(1818), 1, anon_sym_LPAREN2, - STATE(4548), 1, + ACTIONS(1826), 1, + aux_sym_unquoted_token2, + STATE(4551), 1, sym_comment, - STATE(7580), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4886), 2, + ACTIONS(2166), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4888), 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, - [172425] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4549), 1, - sym_comment, - ACTIONS(5112), 15, + ACTIONS(2164), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387397,23 +389926,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_else, - anon_sym_RBRACE, - anon_sym_catch, - [172449] = 6, + [170824] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym_unquoted_token2, - ACTIONS(1804), 1, + ACTIONS(1818), 1, anon_sym_LPAREN2, - STATE(4550), 1, + ACTIONS(1826), 1, + aux_sym_unquoted_token2, + STATE(4552), 1, sym_comment, - ACTIONS(1810), 2, + ACTIONS(1824), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1802), 11, + ACTIONS(1816), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387425,17 +389950,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, - [172479] = 4, - ACTIONS(251), 1, + [170854] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4551), 1, + ACTIONS(7793), 1, + aux_sym__immediate_decimal_token2, + STATE(4553), 1, sym_comment, - ACTIONS(1719), 2, + ACTIONS(1766), 3, + sym_identifier, anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1721), 13, + aux_sym__unquoted_in_record_token2, + ACTIONS(1768), 11, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -387445,40 +389972,50 @@ 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, - [172505] = 4, - ACTIONS(251), 1, + anon_sym_LPAREN2, + [170882] = 17, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4552), 1, - sym_comment, - ACTIONS(2015), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(2017), 13, - anon_sym_EQ, + ACTIONS(7687), 1, sym_identifier, + ACTIONS(7689), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(7693), 1, anon_sym_DOLLAR, + ACTIONS(7695), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7697), 1, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [172531] = 5, + ACTIONS(7699), 1, + anon_sym_DASH2, + ACTIONS(7795), 1, + anon_sym_RPAREN, + STATE(4052), 1, + sym_param_long_flag, + STATE(4210), 1, + sym__param_name, + STATE(4554), 1, + sym_comment, + STATE(4809), 1, + aux_sym_parameter_parens_repeat1, + STATE(5133), 1, + sym_param_rest, + STATE(5134), 1, + sym_param_opt, + STATE(5135), 1, + sym_param_short_flag, + STATE(5276), 1, + aux_sym_shebang_repeat1, + STATE(5589), 1, + sym_parameter, + [170934] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4970), 1, + ACTIONS(2443), 1, sym__space, - ACTIONS(7803), 1, - anon_sym_EQ2, - STATE(4553), 1, + STATE(4555), 1, sym_comment, - ACTIONS(4972), 13, + ACTIONS(2441), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387492,16 +390029,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [172559] = 5, + [170959] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4556), 1, + sym_comment, + ACTIONS(6977), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6983), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6981), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6979), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [170988] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4984), 1, + ACTIONS(2049), 1, sym__space, - ACTIONS(7805), 1, - anon_sym_EQ2, - STATE(4554), 1, + STATE(4557), 1, sym_comment, - ACTIONS(4986), 13, + ACTIONS(2043), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387515,19 +390073,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [172587] = 6, + [171013] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1814), 1, - anon_sym_LPAREN2, - ACTIONS(1822), 1, - aux_sym_unquoted_token2, - STATE(4555), 1, - sym_comment, - ACTIONS(2222), 2, - ts_builtin_sym_end, + ACTIONS(1841), 1, sym__space, - ACTIONS(2220), 11, + STATE(4558), 1, + sym_comment, + ACTIONS(1839), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387539,19 +390092,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, - [172617] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [171038] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1814), 1, - anon_sym_LPAREN2, - ACTIONS(1822), 1, - aux_sym_unquoted_token2, - STATE(4556), 1, - sym_comment, - ACTIONS(1820), 2, - ts_builtin_sym_end, + ACTIONS(7799), 1, sym__space, - ACTIONS(1812), 11, + STATE(4559), 1, + sym_comment, + ACTIONS(7797), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387563,88 +390113,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, - [172647] = 17, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7692), 1, - sym_identifier, - ACTIONS(7694), 1, - sym__newline, - ACTIONS(7698), 1, - anon_sym_DOLLAR, - ACTIONS(7700), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7702), 1, - anon_sym_DASH_DASH, - ACTIONS(7704), 1, - anon_sym_DASH2, - ACTIONS(7807), 1, - anon_sym_RBRACK, - STATE(4069), 1, - sym_param_long_flag, - STATE(4231), 1, - sym__param_name, - STATE(4542), 1, - aux_sym_shebang_repeat1, - STATE(4557), 1, - sym_comment, - STATE(4882), 1, - aux_sym_parameter_parens_repeat1, - STATE(5004), 1, - sym_param_rest, - STATE(5017), 1, - sym_param_opt, - STATE(5019), 1, - sym_param_short_flag, - STATE(5595), 1, - sym_parameter, - [172699] = 17, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7692), 1, - sym_identifier, - ACTIONS(7694), 1, - sym__newline, - ACTIONS(7698), 1, - anon_sym_DOLLAR, - ACTIONS(7700), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7702), 1, - anon_sym_DASH_DASH, - ACTIONS(7704), 1, - anon_sym_DASH2, - ACTIONS(7809), 1, anon_sym_RPAREN, - STATE(4069), 1, - sym_param_long_flag, - STATE(4231), 1, - sym__param_name, - STATE(4544), 1, - aux_sym_shebang_repeat1, - STATE(4558), 1, - sym_comment, - STATE(4887), 1, - aux_sym_parameter_parens_repeat1, - STATE(5004), 1, - sym_param_rest, - STATE(5017), 1, - sym_param_opt, - STATE(5019), 1, - sym_param_short_flag, - STATE(5595), 1, - sym_parameter, - [172751] = 6, - ACTIONS(251), 1, + anon_sym_RBRACE, + [171063] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7813), 1, - anon_sym_AT, - ACTIONS(7815), 1, + ACTIONS(1457), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(1806), 1, anon_sym_DASH2, - STATE(4559), 1, + ACTIONS(1808), 1, + anon_sym_LPAREN2, + STATE(4560), 1, sym_comment, - STATE(5073), 1, - sym_param_cmd, - ACTIONS(7811), 11, + ACTIONS(1814), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -387656,14 +390138,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [172780] = 4, + [171092] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2400), 1, + ACTIONS(7440), 1, sym__space, - STATE(4560), 1, + STATE(4561), 1, sym_comment, - ACTIONS(2398), 13, + ACTIONS(7438), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387677,36 +390159,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [172805] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7817), 1, - anon_sym_LBRACK2, - STATE(4561), 1, - sym_comment, - ACTIONS(2234), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2230), 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, - [172832] = 4, + [171117] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5035), 1, + ACTIONS(5122), 1, sym__space, STATE(4562), 1, sym_comment, - ACTIONS(5037), 13, + ACTIONS(5124), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387720,14 +390180,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [172857] = 4, + [171142] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5039), 1, + ACTIONS(7803), 1, sym__space, STATE(4563), 1, sym_comment, - ACTIONS(5041), 13, + ACTIONS(7801), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387741,14 +390201,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [172882] = 4, + [171167] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2408), 1, + ACTIONS(7807), 1, sym__space, STATE(4564), 1, sym_comment, - ACTIONS(2406), 13, + ACTIONS(7805), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387762,14 +390222,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [172907] = 4, + [171192] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2412), 1, + ACTIONS(7811), 1, sym__space, STATE(4565), 1, sym_comment, - ACTIONS(2410), 13, + ACTIONS(7809), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387783,14 +390243,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [172932] = 4, + [171217] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2507), 1, + ACTIONS(7815), 1, sym__space, STATE(4566), 1, sym_comment, - ACTIONS(2505), 13, + ACTIONS(7813), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387804,14 +390264,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [172957] = 4, + [171242] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2420), 1, + ACTIONS(2324), 1, sym__space, STATE(4567), 1, sym_comment, - ACTIONS(2418), 13, + ACTIONS(2322), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387825,14 +390285,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [172982] = 4, + [171267] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2424), 1, + ACTIONS(2336), 1, sym__space, STATE(4568), 1, sym_comment, - ACTIONS(2422), 13, + ACTIONS(2334), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387846,125 +390306,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [173007] = 4, + [171292] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2428), 1, + ACTIONS(5138), 1, sym__space, STATE(4569), 1, sym_comment, - ACTIONS(2426), 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, - [173032] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2432), 1, - sym__space, - STATE(4570), 1, - sym_comment, - ACTIONS(2430), 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, - [173057] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7819), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7821), 1, - aux_sym__immediate_decimal_token2, - STATE(4571), 1, - sym_comment, - ACTIONS(1542), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1544), 9, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [173086] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7823), 1, - anon_sym_DOT, - ACTIONS(7825), 1, - aux_sym__immediate_decimal_token2, - STATE(4572), 1, - sym_comment, - ACTIONS(1550), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1552), 9, - ts_builtin_sym_end, + ACTIONS(5140), 13, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [173115] = 5, - ACTIONS(251), 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, + anon_sym_RBRACE, + [171317] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7732), 1, - aux_sym__immediate_decimal_token2, - STATE(4573), 1, + ACTIONS(2328), 1, + sym__space, + STATE(4570), 1, sym_comment, - ACTIONS(1550), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1552), 10, + ACTIONS(2326), 13, sym__newline, 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_DASH_DASH, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [173142] = 4, - ACTIONS(251), 1, + [171342] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4574), 1, - sym_comment, - ACTIONS(1755), 2, + ACTIONS(1641), 1, + anon_sym_LPAREN2, + ACTIONS(7738), 1, anon_sym_DASH2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1757), 12, + STATE(4571), 1, + sym_comment, + STATE(7428), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7736), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -387976,40 +390371,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [173167] = 4, - ACTIONS(3), 1, + [171371] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4575), 1, + ACTIONS(1641), 1, + anon_sym_LPAREN2, + ACTIONS(2174), 1, + anon_sym_DASH2, + STATE(4572), 1, sym_comment, - ACTIONS(2148), 7, + STATE(7668), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2176), 11, anon_sym_EQ, sym_identifier, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DASH2, - aux_sym__unquoted_in_record_token4, - ACTIONS(2150), 7, sym__newline, anon_sym_PIPE, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_LPAREN2, - [173192] = 6, - ACTIONS(251), 1, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171400] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5107), 1, - sym__newline, - ACTIONS(7827), 1, - anon_sym_else, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4576), 1, + ACTIONS(5142), 1, + sym__space, + STATE(4573), 1, sym_comment, - ACTIONS(1298), 11, + ACTIONS(5144), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -388021,15 +390414,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [173221] = 4, - ACTIONS(251), 1, + anon_sym_RBRACE, + [171425] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4577), 1, - sym_comment, - ACTIONS(1711), 2, + ACTIONS(1641), 1, + anon_sym_LPAREN2, + ACTIONS(7744), 1, anon_sym_DASH2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1713), 12, + STATE(4574), 1, + sym_comment, + STATE(7428), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7742), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -388041,41 +390438,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [173246] = 5, - ACTIONS(251), 1, + [171454] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7830), 1, - aux_sym__immediate_decimal_token2, - STATE(4578), 1, - sym_comment, - ACTIONS(1680), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1682), 10, + ACTIONS(7817), 1, sym__newline, + ACTIONS(7822), 1, + anon_sym_else, + STATE(4575), 1, + sym_comment, + STATE(4612), 1, + aux_sym_shebang_repeat1, + ACTIONS(7820), 11, 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_DASH_DASH, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [173273] = 6, - ACTIONS(251), 1, + [171483] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5107), 1, + ACTIONS(7824), 1, sym__newline, - ACTIONS(7832), 1, + ACTIONS(7829), 1, anon_sym_else, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4579), 1, + STATE(4576), 1, sym_comment, - ACTIONS(1298), 11, + STATE(4614), 1, + aux_sym_shebang_repeat1, + ACTIONS(7827), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -388087,15 +390484,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [173302] = 4, - ACTIONS(251), 1, + [171512] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4580), 1, + ACTIONS(2491), 1, + sym__space, + STATE(4577), 1, sym_comment, - ACTIONS(1783), 2, - anon_sym_DASH2, + ACTIONS(2489), 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, + [171537] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1818), 1, + anon_sym_LPAREN2, + ACTIONS(1826), 1, aux_sym__unquoted_in_record_token2, - ACTIONS(1785), 12, + ACTIONS(2164), 1, + anon_sym_DASH2, + STATE(4578), 1, + sym_comment, + ACTIONS(2166), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -388107,16 +390528,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [173327] = 4, - ACTIONS(251), 1, + [171566] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4581), 1, - sym_comment, - ACTIONS(1835), 2, + ACTIONS(1816), 1, anon_sym_DASH2, + ACTIONS(1818), 1, + anon_sym_LPAREN2, + ACTIONS(1826), 1, aux_sym__unquoted_in_record_token2, - ACTIONS(1837), 12, + STATE(4579), 1, + sym_comment, + ACTIONS(1824), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -388128,15 +390551,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [173352] = 4, + [171595] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5079), 1, + ACTIONS(2409), 1, sym__space, - STATE(4582), 1, + STATE(4580), 1, sym_comment, - ACTIONS(5081), 13, + ACTIONS(2407), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388150,14 +390572,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [173377] = 4, + [171620] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1650), 1, + ACTIONS(7831), 1, + ts_builtin_sym_end, + ACTIONS(7833), 1, sym__space, - STATE(4583), 1, + STATE(4581), 2, sym_comment, - ACTIONS(1638), 13, + aux_sym_command_repeat1, + ACTIONS(7772), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388169,20 +390594,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, - [173402] = 6, - ACTIONS(251), 1, + [171647] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7835), 1, - sym__newline, - ACTIONS(7840), 1, - anon_sym_else, - STATE(4584), 1, + ACTIONS(7836), 1, + ts_builtin_sym_end, + ACTIONS(7838), 1, + sym__space, + STATE(4582), 1, sym_comment, - STATE(4695), 1, - aux_sym_shebang_repeat1, - ACTIONS(7838), 11, + STATE(4683), 1, + aux_sym_command_repeat1, + ACTIONS(7617), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -388193,57 +390617,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + [171676] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2075), 1, + anon_sym_LPAREN2, + ACTIONS(2079), 1, + aux_sym__unquoted_in_record_token4, + STATE(4583), 1, + sym_comment, + ACTIONS(2073), 6, + anon_sym_EQ, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DASH2, + ACTIONS(2077), 6, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + [171705] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1562), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(2168), 1, + anon_sym_DASH2, + ACTIONS(2170), 1, + anon_sym_LPAREN2, + STATE(4584), 1, + sym_comment, + ACTIONS(2172), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [173431] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171734] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1012), 1, - sym__space, + ACTIONS(2075), 1, + anon_sym_LPAREN2, + ACTIONS(2079), 1, + aux_sym__unquoted_in_record_token4, STATE(4585), 1, sym_comment, - ACTIONS(1016), 13, + ACTIONS(2081), 6, + anon_sym_EQ, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DASH2, + ACTIONS(2083), 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, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [173456] = 4, - ACTIONS(3), 1, + anon_sym_COMMA, + [171763] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2491), 1, - sym__space, + ACTIONS(2190), 1, + anon_sym_DASH2, + ACTIONS(2192), 1, + anon_sym_LPAREN2, + ACTIONS(2196), 1, + aux_sym__unquoted_in_record_token2, STATE(4586), 1, sym_comment, - ACTIONS(2489), 13, + ACTIONS(2194), 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, - anon_sym_RBRACE, - [173481] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171792] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2368), 1, + ACTIONS(2415), 1, sym__space, STATE(4587), 1, sym_comment, - ACTIONS(2366), 13, + ACTIONS(2413), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388257,14 +390730,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [173506] = 4, + [171817] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2368), 1, + ACTIONS(5663), 1, sym__space, STATE(4588), 1, sym_comment, - ACTIONS(2366), 13, + ACTIONS(5661), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388278,14 +390751,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [173531] = 3, - ACTIONS(3), 1, + [171842] = 4, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(7842), 1, + anon_sym_catch, STATE(4589), 1, sym_comment, - ACTIONS(5679), 14, + ACTIONS(7840), 13, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -388296,17 +390770,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, - anon_sym_COLON2, - [173554] = 4, + [171867] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2503), 1, - sym__space, STATE(4590), 1, sym_comment, - ACTIONS(2501), 13, + ACTIONS(5689), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -388317,18 +390790,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, - [173579] = 4, - ACTIONS(3), 1, + anon_sym_COLON2, + [171890] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2372), 1, - sym__space, + ACTIONS(7844), 1, + sym__newline, + STATE(768), 1, + aux_sym__pipe_separator, STATE(4591), 1, sym_comment, - ACTIONS(2370), 13, - sym__newline, + STATE(5142), 1, + aux_sym_shebang_repeat1, + ACTIONS(7847), 2, anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(2546), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -388338,37 +390816,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_RBRACE, - [173604] = 4, - ACTIONS(3), 1, + [171921] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2376), 1, - sym__space, + ACTIONS(7851), 1, + anon_sym_LT, + ACTIONS(7853), 1, + anon_sym_DASH2, STATE(4592), 1, sym_comment, - ACTIONS(2374), 13, + ACTIONS(7849), 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, - [173629] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171948] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1943), 1, + ACTIONS(1879), 1, sym__space, STATE(4593), 1, sym_comment, - ACTIONS(1941), 13, + ACTIONS(1877), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388382,14 +390859,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [173654] = 4, + [171973] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2448), 1, + ACTIONS(7655), 1, sym__space, + STATE(4529), 1, + aux_sym_command_repeat1, STATE(4594), 1, sym_comment, - ACTIONS(2446), 13, + ACTIONS(7653), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388401,37 +390880,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_RBRACE, - [173679] = 4, - ACTIONS(3), 1, + [172000] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2416), 1, - sym__space, + ACTIONS(7853), 1, + anon_sym_DASH2, + ACTIONS(7855), 1, + anon_sym_LT, STATE(4595), 1, sym_comment, - ACTIONS(2414), 13, + ACTIONS(7849), 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, - [173704] = 4, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [172027] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2380), 1, - sym__space, STATE(4596), 1, sym_comment, - ACTIONS(2378), 13, + ACTIONS(5166), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388443,17 +390921,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, - [173729] = 4, - ACTIONS(3), 1, + anon_sym_else, + anon_sym_catch, + [172050] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2384), 1, - sym__space, + ACTIONS(1641), 1, + anon_sym_LPAREN2, + ACTIONS(2178), 1, + anon_sym_DASH2, STATE(4597), 1, sym_comment, - ACTIONS(2382), 13, + STATE(7668), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2180), 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, + [172079] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7857), 1, sym__newline, + ACTIONS(7862), 1, + anon_sym_else, + STATE(4598), 1, + sym_comment, + STATE(4615), 1, + aux_sym_shebang_repeat1, + ACTIONS(7860), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -388465,15 +390969,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, - [173754] = 4, + [172108] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2458), 1, + ACTIONS(5649), 1, sym__space, - STATE(4598), 1, + STATE(4599), 1, sym_comment, - ACTIONS(2456), 13, + ACTIONS(5647), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388487,14 +390990,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [173779] = 4, + [172133] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2322), 1, + ACTIONS(1651), 1, sym__space, - STATE(4599), 1, + STATE(4600), 1, sym_comment, - ACTIONS(2320), 13, + ACTIONS(1639), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388508,38 +391011,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [173804] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2172), 1, - anon_sym_DASH2, - ACTIONS(2174), 1, - anon_sym_LPAREN2, - ACTIONS(2178), 1, - aux_sym__unquoted_in_record_token2, - STATE(4600), 1, - sym_comment, - ACTIONS(2176), 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, - [173833] = 4, + [172158] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2326), 1, + ACTIONS(7864), 1, + sym__newline, + ACTIONS(7866), 1, sym__space, STATE(4601), 1, sym_comment, - ACTIONS(2324), 13, - sym__newline, + STATE(4648), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(7868), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -388551,22 +391034,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, - [173858] = 7, - ACTIONS(251), 1, + [172187] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7842), 1, - sym__newline, - STATE(755), 1, - aux_sym__pipe_separator, + ACTIONS(998), 1, + sym__space, STATE(4602), 1, sym_comment, - STATE(5156), 1, - aux_sym_shebang_repeat1, - ACTIONS(7845), 2, + ACTIONS(1002), 13, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(2536), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -388576,14 +391053,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, - [173889] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [172212] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1919), 1, + ACTIONS(7838), 1, sym__space, + ACTIONS(7870), 1, + ts_builtin_sym_end, + STATE(4581), 1, + aux_sym_command_repeat1, STATE(4603), 1, sym_comment, - ACTIONS(1917), 13, + ACTIONS(7730), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388595,16 +391078,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, - [173914] = 4, + [172241] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2330), 1, + ACTIONS(2431), 1, sym__space, STATE(4604), 1, sym_comment, - ACTIONS(2328), 13, + ACTIONS(2429), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388618,14 +391099,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [173939] = 4, + [172266] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2334), 1, + ACTIONS(5653), 1, sym__space, STATE(4605), 1, sym_comment, - ACTIONS(2332), 13, + ACTIONS(5651), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388639,14 +391120,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [173964] = 4, + [172291] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1939), 1, + ACTIONS(5667), 1, sym__space, STATE(4606), 1, sym_comment, - ACTIONS(1937), 13, + ACTIONS(5665), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388660,14 +391141,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [173989] = 4, + [172316] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1951), 1, + ACTIONS(2443), 1, sym__space, STATE(4607), 1, sym_comment, - ACTIONS(1949), 13, + ACTIONS(2441), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388681,14 +391162,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [174014] = 4, + [172341] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1955), 1, + ACTIONS(2346), 1, sym__space, STATE(4608), 1, sym_comment, - ACTIONS(1953), 13, + ACTIONS(2344), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388702,35 +391183,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [174039] = 4, - ACTIONS(3), 1, + [172366] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2338), 1, - sym__space, + ACTIONS(1641), 1, + anon_sym_LPAREN2, + ACTIONS(2182), 1, + anon_sym_DASH2, STATE(4609), 1, sym_comment, - ACTIONS(2336), 13, + STATE(7668), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2184), 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, - anon_sym_RBRACE, - [174064] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [172395] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1967), 1, + ACTIONS(1835), 1, sym__space, STATE(4610), 1, sym_comment, - ACTIONS(1965), 13, + ACTIONS(1833), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388744,14 +391227,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [174089] = 4, + [172420] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2344), 1, + ACTIONS(2358), 1, sym__space, STATE(4611), 1, sym_comment, - ACTIONS(2342), 13, + ACTIONS(2356), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388765,15 +391248,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [174114] = 4, - ACTIONS(3), 1, + [172445] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2348), 1, - sym__space, + ACTIONS(4884), 1, + sym__newline, + ACTIONS(7872), 1, + anon_sym_else, + STATE(1615), 1, + aux_sym_shebang_repeat1, STATE(4612), 1, sym_comment, - ACTIONS(2346), 13, - sym__newline, + ACTIONS(1296), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -388785,17 +391271,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, - [174139] = 4, - ACTIONS(3), 1, + [172474] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1971), 1, - sym__space, + ACTIONS(7723), 1, + sym__newline, + STATE(764), 1, + aux_sym__pipe_separator, STATE(4613), 1, sym_comment, - ACTIONS(1969), 13, - sym__newline, + STATE(5142), 1, + aux_sym_shebang_repeat1, + ACTIONS(7726), 2, + ts_builtin_sym_end, anon_sym_SEMI, + ACTIONS(2546), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -388805,17 +391295,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, - [174164] = 4, - ACTIONS(3), 1, + [172505] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1907), 1, - sym__space, + ACTIONS(7875), 1, + sym__newline, + ACTIONS(7880), 1, + anon_sym_else, STATE(4614), 1, sym_comment, - ACTIONS(1905), 13, - sym__newline, + STATE(4695), 1, + aux_sym_shebang_repeat1, + ACTIONS(7878), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -388827,16 +391318,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, - [174189] = 4, - ACTIONS(3), 1, + [172534] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2352), 1, - sym__space, + ACTIONS(7882), 1, + sym__newline, + ACTIONS(7887), 1, + anon_sym_else, STATE(4615), 1, sym_comment, - ACTIONS(2350), 13, - sym__newline, + STATE(4652), 1, + aux_sym_shebang_repeat1, + ACTIONS(7885), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -388848,16 +391341,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, - [174214] = 4, - ACTIONS(3), 1, + [172563] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2356), 1, - sym__space, + ACTIONS(7889), 1, + sym__newline, + ACTIONS(7894), 1, + anon_sym_else, STATE(4616), 1, sym_comment, - ACTIONS(2354), 13, - sym__newline, + STATE(4653), 1, + aux_sym_shebang_repeat1, + ACTIONS(7892), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -388869,16 +391364,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, - [174239] = 4, - ACTIONS(3), 1, + [172592] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1985), 1, - sym__space, + ACTIONS(4884), 1, + sym__newline, + ACTIONS(7896), 1, + anon_sym_catch, + STATE(1615), 1, + aux_sym_shebang_repeat1, STATE(4617), 1, sym_comment, - ACTIONS(1983), 13, - sym__newline, + ACTIONS(1296), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -388890,15 +391387,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, - [174264] = 4, + [172621] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2360), 1, + ACTIONS(2362), 1, sym__space, STATE(4618), 1, sym_comment, - ACTIONS(2358), 13, + ACTIONS(2360), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388912,16 +391408,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [174289] = 4, - ACTIONS(3), 1, + [172646] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2364), 1, - sym__space, + ACTIONS(7899), 1, + sym__newline, + STATE(768), 1, + aux_sym__pipe_separator, STATE(4619), 1, sym_comment, - ACTIONS(2362), 13, - sym__newline, + STATE(5142), 1, + aux_sym_shebang_repeat1, + ACTIONS(7902), 2, anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(2546), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -388931,16 +391432,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, - [174314] = 4, + [172677] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7849), 1, + ACTIONS(2372), 1, sym__space, STATE(4620), 1, sym_comment, - ACTIONS(7847), 13, + ACTIONS(2370), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388954,14 +391453,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [174339] = 3, - ACTIONS(3), 1, + [172702] = 6, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(4884), 1, + sym__newline, + ACTIONS(7904), 1, + anon_sym_else, + STATE(1615), 1, + aux_sym_shebang_repeat1, STATE(4621), 1, sym_comment, - ACTIONS(5687), 14, - sym__newline, - sym__space, + ACTIONS(1296), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -388972,16 +391475,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, - anon_sym_COLON2, - [174362] = 3, + anon_sym_RPAREN, + [172731] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7631), 1, + sym__space, STATE(4622), 1, sym_comment, - ACTIONS(5691), 14, + ACTIONS(7629), 13, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -388992,62 +391495,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_COLON2, - [174385] = 6, - ACTIONS(251), 1, + [172756] = 14, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1540), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(2224), 1, + ACTIONS(3985), 1, + anon_sym_DOLLAR, + ACTIONS(7907), 1, + sym__newline, + ACTIONS(7909), 1, + sym__space, + ACTIONS(7911), 1, + anon_sym_DASH_DASH, + ACTIONS(7913), 1, anon_sym_DASH2, - ACTIONS(2226), 1, - anon_sym_LPAREN2, + ACTIONS(7915), 1, + anon_sym_LBRACE, + STATE(1759), 1, + sym_block, + STATE(1762), 1, + sym_val_closure, STATE(4623), 1, sym_comment, - ACTIONS(2228), 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, - [174414] = 6, - ACTIONS(251), 1, + STATE(5627), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(7286), 1, + sym__flag, + STATE(815), 2, + sym__blosure, + sym_val_variable, + STATE(4680), 2, + sym_short_flag, + sym_long_flag, + [172801] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7351), 1, - anon_sym_DOT, - ACTIONS(7353), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(2320), 1, + sym__space, STATE(4624), 1, sym_comment, - ACTIONS(1755), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(1757), 10, - anon_sym_EQ, - 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, - [174443] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7853), 1, - anon_sym_catch, - STATE(4625), 1, - sym_comment, - ACTIONS(7851), 13, + ACTIONS(2318), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389061,15 +391549,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [174468] = 4, - ACTIONS(3), 1, + [172826] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5677), 1, - sym__space, - STATE(4626), 1, - sym_comment, - ACTIONS(5675), 13, + ACTIONS(4884), 1, sym__newline, + ACTIONS(7917), 1, + anon_sym_catch, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(4625), 1, + sym_comment, + ACTIONS(1296), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -389081,19 +391572,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, - [174493] = 6, - ACTIONS(251), 1, + [172855] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7855), 1, + ACTIONS(1641), 1, + anon_sym_LPAREN2, + ACTIONS(2186), 1, + anon_sym_DASH2, + STATE(4626), 1, + sym_comment, + STATE(7668), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2188), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(7860), 1, - anon_sym_else, + 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, + [172884] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7920), 1, + sym__newline, + ACTIONS(7925), 1, + anon_sym_catch, STATE(4627), 1, sym_comment, - STATE(4699), 1, + STATE(4711), 1, aux_sym_shebang_repeat1, - ACTIONS(7858), 11, + ACTIONS(7923), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -389105,18 +391618,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [174522] = 6, - ACTIONS(251), 1, + [172913] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7862), 1, - sym__newline, - ACTIONS(7867), 1, - anon_sym_else, + ACTIONS(7927), 1, + anon_sym_EQ2, STATE(4628), 1, sym_comment, - STATE(4702), 1, - aux_sym_shebang_repeat1, - ACTIONS(7865), 11, + ACTIONS(5060), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5062), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -389127,19 +391640,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, - [174551] = 6, - ACTIONS(251), 1, + [172940] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7869), 1, - sym__newline, - ACTIONS(7874), 1, - anon_sym_else, + ACTIONS(1919), 1, + sym__space, STATE(4629), 1, sym_comment, - STATE(4703), 1, - aux_sym_shebang_repeat1, - ACTIONS(7872), 11, + ACTIONS(1917), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -389151,18 +391660,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [174580] = 6, - ACTIONS(251), 1, + anon_sym_RBRACE, + [172965] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5107), 1, - sym__newline, - ACTIONS(7876), 1, - anon_sym_catch, - STATE(1800), 1, - aux_sym_shebang_repeat1, + ACTIONS(2366), 1, + sym__space, STATE(4630), 1, sym_comment, - ACTIONS(1298), 11, + ACTIONS(2364), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -389174,18 +391681,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [174609] = 6, - ACTIONS(251), 1, + anon_sym_RBRACE, + [172990] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7879), 1, - sym__newline, - ACTIONS(7884), 1, - anon_sym_catch, + ACTIONS(7929), 1, + anon_sym_EQ2, STATE(4631), 1, sym_comment, - STATE(4710), 1, - aux_sym_shebang_repeat1, - ACTIONS(7882), 11, + ACTIONS(5050), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5052), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -389196,50 +391704,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, - [174638] = 14, + [173017] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4022), 1, - anon_sym_DOLLAR, - ACTIONS(7886), 1, - sym__newline, - ACTIONS(7888), 1, - sym__space, - ACTIONS(7890), 1, - anon_sym_DASH_DASH, - ACTIONS(7892), 1, - anon_sym_DASH2, - ACTIONS(7894), 1, - anon_sym_LBRACE, - STATE(1770), 1, - sym_block, - STATE(1787), 1, - sym_val_closure, STATE(4632), 1, sym_comment, - STATE(5691), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(7460), 1, - sym__flag, - STATE(761), 2, - sym__blosure, - sym_val_variable, - STATE(4582), 2, - sym_short_flag, - sym_long_flag, - [174683] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7896), 1, + ACTIONS(5024), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(5026), 11, sym__newline, - ACTIONS(7901), 1, - anon_sym_catch, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [173042] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1863), 1, + sym__space, STATE(4633), 1, sym_comment, - STATE(4717), 1, - aux_sym_shebang_repeat1, - ACTIONS(7899), 11, + ACTIONS(1861), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -389251,17 +391745,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [174712] = 5, + anon_sym_RBRACE, + [173067] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7740), 1, - sym__space, - STATE(4535), 1, - aux_sym_command_repeat1, STATE(4634), 1, sym_comment, - ACTIONS(7751), 12, + ACTIONS(5647), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -389273,14 +391765,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RBRACE, - [174739] = 4, - ACTIONS(3), 1, + anon_sym_COLON2, + [173090] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2454), 1, - sym__space, + ACTIONS(7933), 1, + anon_sym_AT, + ACTIONS(7935), 1, + anon_sym_DASH2, STATE(4635), 1, sym_comment, - ACTIONS(2452), 13, + STATE(5008), 1, + sym_param_cmd, + ACTIONS(7931), 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, + [173119] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7933), 1, + anon_sym_AT, + ACTIONS(7939), 1, + anon_sym_DASH2, + STATE(4636), 1, + sym_comment, + STATE(5104), 1, + sym_param_cmd, + ACTIONS(7937), 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, + [173148] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7933), 1, + anon_sym_AT, + ACTIONS(7939), 1, + anon_sym_DASH2, + STATE(4637), 1, + sym_comment, + STATE(5105), 1, + sym_param_cmd, + ACTIONS(7937), 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, + [173177] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4638), 1, + sym_comment, + ACTIONS(7740), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389292,16 +391853,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_RBRACE, - [174764] = 4, + anon_sym_else, + anon_sym_catch, + [173200] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4639), 1, + sym_comment, + ACTIONS(7389), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7391), 12, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [173225] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2462), 1, + ACTIONS(5146), 1, sym__space, - STATE(4636), 1, + STATE(4640), 1, sym_comment, - ACTIONS(2460), 13, + ACTIONS(5148), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389315,14 +391897,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [174789] = 4, + [173250] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5053), 1, + ACTIONS(2447), 1, sym__space, - STATE(4637), 1, + STATE(4641), 1, sym_comment, - ACTIONS(5055), 13, + ACTIONS(2445), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389336,14 +391918,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [174814] = 4, + [173275] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5057), 1, + ACTIONS(5150), 1, sym__space, - STATE(4638), 1, + STATE(4642), 1, sym_comment, - ACTIONS(5059), 13, + ACTIONS(5152), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389357,21 +391939,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [174839] = 7, - ACTIONS(251), 1, + [173300] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7903), 1, - sym__newline, - STATE(755), 1, - aux_sym__pipe_separator, - STATE(4639), 1, + ACTIONS(2067), 1, + anon_sym_LPAREN2, + ACTIONS(2071), 1, + aux_sym__unquoted_in_record_token4, + STATE(4643), 1, sym_comment, - STATE(5156), 1, + ACTIONS(2065), 6, + anon_sym_EQ, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DASH2, + ACTIONS(2069), 6, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + [173329] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7941), 1, + sym__newline, + ACTIONS(7946), 1, + anon_sym_catch, + STATE(4617), 1, aux_sym_shebang_repeat1, - ACTIONS(7906), 2, + STATE(4644), 1, + sym_comment, + ACTIONS(7944), 11, anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(2536), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -389381,14 +391984,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, - [174870] = 4, + anon_sym_RPAREN, + [173358] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2470), 1, + ACTIONS(5130), 1, sym__space, - STATE(4640), 1, + STATE(4645), 1, sym_comment, - ACTIONS(2468), 13, + ACTIONS(5132), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389402,13 +392006,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [174895] = 3, - ACTIONS(251), 1, + [173383] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4641), 1, + ACTIONS(7948), 1, + anon_sym_LBRACK2, + STATE(4646), 1, sym_comment, - ACTIONS(5112), 14, + ACTIONS(2296), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2292), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389420,20 +392028,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, - anon_sym_else, - anon_sym_catch, - [174918] = 6, + [173410] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2061), 1, + anon_sym_LPAREN2, + ACTIONS(2063), 1, + aux_sym__unquoted_in_record_token4, + STATE(4647), 1, + sym_comment, + ACTIONS(998), 6, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1002), 6, + anon_sym_EQ, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [173439] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7908), 1, + ACTIONS(7864), 1, sym__newline, - ACTIONS(7910), 1, + ACTIONS(7866), 1, sym__space, - STATE(4642), 1, + STATE(4648), 1, sym_comment, - STATE(4653), 1, + STATE(4721), 1, aux_sym__command_parenthesized_repeat1, - ACTIONS(7912), 11, + ACTIONS(7950), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -389445,18 +392074,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [174947] = 6, + [173468] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7914), 1, - ts_builtin_sym_end, - ACTIONS(7916), 1, + ACTIONS(5134), 1, sym__space, - STATE(4643), 1, + STATE(4649), 1, sym_comment, - STATE(4669), 1, - aux_sym_command_repeat1, - ACTIONS(7590), 11, + ACTIONS(5136), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389468,18 +392093,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, - [174976] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [173493] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7916), 1, + ACTIONS(5126), 1, sym__space, - ACTIONS(7918), 1, - ts_builtin_sym_end, - STATE(4644), 1, - sym_comment, STATE(4650), 1, - aux_sym_command_repeat1, - ACTIONS(7770), 11, + sym_comment, + ACTIONS(5128), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389491,43 +392114,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, - [175005] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym_unquoted_token2, - ACTIONS(3630), 1, - anon_sym_DOLLAR, - ACTIONS(4580), 1, - anon_sym_LPAREN2, - ACTIONS(7920), 1, - anon_sym_DOT, - ACTIONS(7924), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7926), 1, - aux_sym__immediate_decimal_token5, - STATE(4645), 1, - sym_comment, - STATE(5625), 1, - sym__immediate_decimal, - ACTIONS(7922), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5835), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1475), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [175046] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [173518] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2392), 1, + ACTIONS(1991), 1, sym__space, - STATE(4646), 1, + STATE(4651), 1, sym_comment, - ACTIONS(2390), 13, + ACTIONS(1985), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389541,15 +392137,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175071] = 4, - ACTIONS(3), 1, + [173543] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2396), 1, - sym__space, - STATE(4647), 1, - sym_comment, - ACTIONS(2394), 13, + ACTIONS(4884), 1, sym__newline, + ACTIONS(7952), 1, + anon_sym_else, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(4652), 1, + sym_comment, + ACTIONS(1296), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -389561,16 +392160,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, - [175096] = 4, - ACTIONS(3), 1, + [173572] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1857), 1, - sym__space, - STATE(4648), 1, - sym_comment, - ACTIONS(1855), 13, + ACTIONS(7955), 1, sym__newline, + ACTIONS(7960), 1, + anon_sym_else, + STATE(4621), 1, + aux_sym_shebang_repeat1, + STATE(4653), 1, + sym_comment, + ACTIONS(7958), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -389582,15 +392183,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, - [175121] = 3, + [173601] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4649), 1, + ACTIONS(2455), 1, + sym__space, + STATE(4654), 1, sym_comment, - ACTIONS(5699), 14, + ACTIONS(2453), 13, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -389601,19 +392202,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_COLON2, - [175144] = 5, + [173626] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7928), 1, + STATE(4655), 1, + sym_comment, + ACTIONS(5056), 3, ts_builtin_sym_end, - ACTIONS(7930), 1, sym__space, - STATE(4650), 2, - sym_comment, - aux_sym_command_repeat1, - ACTIONS(7784), 11, + anon_sym_LPAREN2, + ACTIONS(5058), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389625,18 +392225,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, - [175171] = 6, + [173651] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7908), 1, - sym__newline, - ACTIONS(7910), 1, + ACTIONS(2423), 1, sym__space, - STATE(4651), 1, + STATE(4656), 1, sym_comment, - STATE(4654), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(7933), 11, + ACTIONS(2421), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -389648,14 +392245,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [175200] = 4, + anon_sym_RBRACE, + [173676] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5681), 1, + ACTIONS(5691), 1, sym__space, - STATE(4652), 1, + STATE(4657), 1, sym_comment, - ACTIONS(5679), 13, + ACTIONS(5689), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389669,18 +392267,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175225] = 6, + [173701] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7908), 1, - sym__newline, - ACTIONS(7910), 1, + ACTIONS(2439), 1, sym__space, - STATE(4653), 1, + STATE(4658), 1, sym_comment, - STATE(4654), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(7935), 11, + ACTIONS(2437), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -389692,17 +392287,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [175254] = 5, + anon_sym_RBRACE, + [173726] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7937), 1, + STATE(4659), 1, + sym_comment, + ACTIONS(5651), 14, sym__newline, - ACTIONS(7940), 1, sym__space, - STATE(4654), 2, - sym_comment, - aux_sym__command_parenthesized_repeat1, - ACTIONS(7943), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -389713,16 +392306,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, - [175281] = 4, + anon_sym_RBRACE, + anon_sym_COLON2, + [173749] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4660), 1, + sym_comment, + ACTIONS(7377), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7379), 12, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [173774] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7947), 1, - sym__space, - STATE(4655), 1, + STATE(4661), 1, sym_comment, - ACTIONS(7945), 13, + ACTIONS(5661), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -389733,16 +392347,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_RPAREN, anon_sym_RBRACE, - [175306] = 4, + anon_sym_COLON2, + [173797] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7701), 1, + sym__newline, + STATE(764), 1, + aux_sym__pipe_separator, + STATE(4662), 1, + sym_comment, + STATE(5142), 1, + aux_sym_shebang_repeat1, + ACTIONS(7704), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(2546), 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, + [173828] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7490), 1, + ACTIONS(2459), 1, sym__space, - STATE(4656), 1, + STATE(4663), 1, sym_comment, - ACTIONS(7488), 13, + ACTIONS(2457), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389756,17 +392394,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175331] = 5, + [173853] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4664), 1, + sym_comment, + ACTIONS(7962), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7964), 12, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [173878] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7949), 1, - anon_sym_EQ2, - STATE(4657), 1, - sym_comment, - ACTIONS(4970), 2, - ts_builtin_sym_end, + ACTIONS(2312), 1, sym__space, - ACTIONS(4972), 11, + STATE(4665), 1, + sym_comment, + ACTIONS(2310), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389778,15 +392434,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, - [175358] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [173903] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5689), 1, - sym__space, - STATE(4658), 1, + STATE(4666), 1, sym_comment, - ACTIONS(5687), 13, + ACTIONS(5665), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -389797,16 +392454,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, - [175383] = 4, + anon_sym_COLON2, + [173926] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5067), 1, + ACTIONS(1887), 1, sym__space, - STATE(4659), 1, + STATE(4667), 1, sym_comment, - ACTIONS(5069), 13, + ACTIONS(1885), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389820,14 +392477,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175408] = 4, + [173951] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7966), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7968), 1, + aux_sym__immediate_decimal_token2, + STATE(4668), 1, + sym_comment, + ACTIONS(1504), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1506), 9, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [173980] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7953), 1, + ACTIONS(2391), 1, sym__space, - STATE(4660), 1, + STATE(4669), 1, sym_comment, - ACTIONS(7951), 13, + ACTIONS(2389), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389841,14 +392521,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175433] = 4, + [174005] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7957), 1, + ACTIONS(2387), 1, sym__space, - STATE(4661), 1, + STATE(4670), 1, sym_comment, - ACTIONS(7955), 13, + ACTIONS(2385), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389862,14 +392542,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175458] = 4, + [174030] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7961), 1, + ACTIONS(2316), 1, sym__space, - STATE(4662), 1, + STATE(4671), 1, sym_comment, - ACTIONS(7959), 13, + ACTIONS(2314), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389883,14 +392563,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175483] = 4, + [174055] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7965), 1, + ACTIONS(2427), 1, sym__space, - STATE(4663), 1, + STATE(4672), 1, sym_comment, - ACTIONS(7963), 13, + ACTIONS(2425), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389904,14 +392584,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175508] = 4, + [174080] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7628), 1, + ACTIONS(1963), 1, sym__space, - STATE(4664), 1, + STATE(4673), 1, sym_comment, - ACTIONS(7626), 13, + ACTIONS(1961), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389925,14 +392605,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175533] = 4, + [174105] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5075), 1, + ACTIONS(2332), 1, sym__space, - STATE(4665), 1, + STATE(4674), 1, sym_comment, - ACTIONS(5077), 13, + ACTIONS(2330), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389946,14 +392626,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175558] = 4, + [174130] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2480), 1, + ACTIONS(1891), 1, sym__space, - STATE(4666), 1, + STATE(4675), 1, sym_comment, - ACTIONS(2478), 13, + ACTIONS(1889), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389967,41 +392647,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175583] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7813), 1, - anon_sym_AT, - ACTIONS(7969), 1, - anon_sym_DASH2, - STATE(4667), 1, - sym_comment, - STATE(5003), 1, - sym_param_cmd, - ACTIONS(7967), 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, - [175612] = 6, + [174155] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7916), 1, + ACTIONS(7838), 1, sym__space, - ACTIONS(7971), 1, + ACTIONS(7970), 1, ts_builtin_sym_end, - STATE(4644), 1, + STATE(4603), 1, aux_sym_command_repeat1, - STATE(4668), 1, + STATE(4676), 1, sym_comment, - ACTIONS(7749), 11, + ACTIONS(7787), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390013,18 +392670,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, - [175641] = 6, + [174184] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4677), 1, + sym_comment, + ACTIONS(6967), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6973), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6971), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6969), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [174213] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7916), 1, + ACTIONS(1959), 1, sym__space, - ACTIONS(7973), 1, - ts_builtin_sym_end, - STATE(4650), 1, - aux_sym_command_repeat1, - STATE(4669), 1, + STATE(4678), 1, sym_comment, - ACTIONS(7751), 11, + ACTIONS(1957), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390036,14 +392712,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, - [175670] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [174238] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5693), 1, + ACTIONS(2463), 1, sym__space, - STATE(4670), 1, + STATE(4679), 1, sym_comment, - ACTIONS(5691), 13, + ACTIONS(2461), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390057,37 +392735,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175695] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2206), 1, - anon_sym_LPAREN2, - ACTIONS(2208), 1, - aux_sym__unquoted_in_record_token4, - STATE(4671), 1, - sym_comment, - ACTIONS(1012), 6, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1016), 6, - anon_sym_EQ, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [175724] = 4, + [174263] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7977), 1, + ACTIONS(5118), 1, sym__space, - STATE(4672), 1, + STATE(4680), 1, sym_comment, - ACTIONS(7975), 13, + ACTIONS(5120), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390101,14 +392756,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175749] = 4, + [174288] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7972), 1, + anon_sym_DOT, + ACTIONS(7974), 1, + aux_sym__immediate_decimal_token2, + STATE(4681), 1, + sym_comment, + ACTIONS(1512), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1514), 9, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [174317] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5701), 1, + ACTIONS(2395), 1, sym__space, - STATE(4673), 1, + STATE(4682), 1, sym_comment, - ACTIONS(5699), 13, + ACTIONS(2393), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390122,14 +392800,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175774] = 4, + [174342] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2466), 1, + ACTIONS(7838), 1, sym__space, - STATE(4674), 1, + ACTIONS(7976), 1, + ts_builtin_sym_end, + STATE(4581), 1, + aux_sym_command_repeat1, + STATE(4683), 1, sym_comment, - ACTIONS(2464), 13, + ACTIONS(7653), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390141,46 +392823,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, - [175799] = 6, - ACTIONS(251), 1, + [174371] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1640), 1, - anon_sym_LPAREN2, - ACTIONS(7669), 1, - anon_sym_DASH2, - STATE(4675), 1, + ACTIONS(2340), 1, + sym__space, + STATE(4684), 1, sym_comment, - STATE(7328), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7667), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(2338), 13, 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, - [175828] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7757), 1, - sym__newline, - STATE(756), 1, - aux_sym__pipe_separator, - STATE(4676), 1, - sym_comment, - STATE(5156), 1, - aux_sym_shebang_repeat1, - ACTIONS(7760), 2, - ts_builtin_sym_end, anon_sym_SEMI, - ACTIONS(2536), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -390190,66 +392842,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, - [175859] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2130), 1, - anon_sym_LPAREN2, - ACTIONS(2134), 1, - aux_sym__unquoted_in_record_token4, - STATE(4677), 1, - sym_comment, - ACTIONS(2128), 6, - anon_sym_EQ, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DASH2, - ACTIONS(2132), 6, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - [175888] = 6, - ACTIONS(251), 1, + anon_sym_RBRACE, + [174396] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1640), 1, - anon_sym_LPAREN2, - ACTIONS(7716), 1, - anon_sym_DASH2, - STATE(4678), 1, + ACTIONS(7334), 1, + anon_sym_DOT, + ACTIONS(7336), 1, + aux_sym__immediate_decimal_token2, + STATE(4685), 1, sym_comment, - STATE(7328), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7714), 11, - anon_sym_EQ, + ACTIONS(1701), 2, 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, - [175917] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1640), 1, - anon_sym_LPAREN2, - ACTIONS(7799), 1, anon_sym_DASH2, - STATE(4679), 1, - sym_comment, - STATE(7328), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7797), 11, + ACTIONS(1703), 10, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -390259,39 +392867,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [175946] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2138), 1, - anon_sym_LPAREN2, - ACTIONS(2142), 1, - aux_sym__unquoted_in_record_token4, - STATE(4680), 1, - sym_comment, - ACTIONS(2136), 6, - anon_sym_EQ, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DASH2, - ACTIONS(2140), 6, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - [175975] = 4, + [174425] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4681), 1, - sym_comment, - ACTIONS(4992), 3, - ts_builtin_sym_end, + ACTIONS(2475), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(4994), 11, + STATE(4686), 1, + sym_comment, + ACTIONS(2473), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390303,37 +392886,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, - [176000] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2138), 1, - anon_sym_LPAREN2, - ACTIONS(2142), 1, - aux_sym__unquoted_in_record_token4, - STATE(4682), 1, - sym_comment, - ACTIONS(2144), 6, - anon_sym_EQ, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DASH2, - ACTIONS(2146), 6, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - [176029] = 3, + anon_sym_RBRACE, + [174450] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4683), 1, + ACTIONS(7980), 1, + sym__space, + STATE(4687), 1, sym_comment, - ACTIONS(5675), 14, + ACTIONS(7978), 13, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -390344,16 +392907,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, - anon_sym_COLON2, - [176052] = 4, + [174475] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2049), 1, + ACTIONS(2376), 1, sym__space, - STATE(4684), 1, + STATE(4688), 1, sym_comment, - ACTIONS(2043), 13, + ACTIONS(2374), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390367,83 +392930,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [176077] = 7, - ACTIONS(251), 1, + [174500] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7742), 1, - sym__newline, - STATE(756), 1, - aux_sym__pipe_separator, - STATE(4685), 1, + STATE(4689), 1, sym_comment, - STATE(5156), 1, - aux_sym_shebang_repeat1, - ACTIONS(7745), 2, - ts_builtin_sym_end, - anon_sym_SEMI, - ACTIONS(2536), 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, - [176108] = 6, - ACTIONS(251), 1, + ACTIONS(7982), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7984), 12, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [174525] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1640), 1, - anon_sym_LPAREN2, - ACTIONS(2184), 1, - anon_sym_DASH2, - STATE(4686), 1, + STATE(4690), 1, sym_comment, - STATE(7495), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2186), 11, + ACTIONS(2085), 7, 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, - [176137] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1640), 1, - anon_sym_LPAREN2, - ACTIONS(2192), 1, anon_sym_DASH2, - STATE(4687), 1, - sym_comment, - STATE(7495), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2194), 11, - anon_sym_EQ, - sym_identifier, + aux_sym__unquoted_in_record_token4, + ACTIONS(2087), 7, 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, - [176166] = 3, - ACTIONS(251), 1, + anon_sym_LPAREN2, + [174550] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4688), 1, + ACTIONS(1903), 1, + sym__space, + STATE(4691), 1, sym_comment, - ACTIONS(7793), 14, - ts_builtin_sym_end, + ACTIONS(1901), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390455,87 +392991,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_else, - anon_sym_catch, - [176189] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1640), 1, - anon_sym_LPAREN2, - ACTIONS(2196), 1, - anon_sym_DASH2, - STATE(4689), 1, - sym_comment, - STATE(7495), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2198), 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, - [176218] = 6, - ACTIONS(251), 1, + anon_sym_RBRACE, + [174575] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1640), 1, - anon_sym_LPAREN2, - ACTIONS(2200), 1, - anon_sym_DASH2, - STATE(4690), 1, + ACTIONS(7760), 1, + aux_sym__immediate_decimal_token2, + STATE(4692), 1, sym_comment, - STATE(7495), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2202), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(1512), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1514), 10, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [176247] = 5, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [174602] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7215), 1, - aux_sym_unquoted_token2, - STATE(4691), 1, - sym_comment, - ACTIONS(1650), 2, - ts_builtin_sym_end, + ACTIONS(2435), 1, sym__space, - ACTIONS(1638), 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, - [176274] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7979), 1, - anon_sym_EQ2, - STATE(4692), 1, + STATE(4693), 1, sym_comment, - ACTIONS(4984), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4986), 11, + ACTIONS(2433), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390547,16 +393034,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, - [176301] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [174627] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4693), 1, - sym_comment, - ACTIONS(4960), 3, - ts_builtin_sym_end, + ACTIONS(2308), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(4962), 11, + STATE(4694), 1, + sym_comment, + ACTIONS(2306), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390568,41 +393055,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, - [176326] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7813), 1, - anon_sym_AT, - ACTIONS(7983), 1, - anon_sym_DASH2, - STATE(4694), 1, - sym_comment, - STATE(5046), 1, - sym_param_cmd, - ACTIONS(7981), 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, - [176355] = 6, - ACTIONS(251), 1, + anon_sym_RBRACE, + [174652] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5107), 1, + ACTIONS(4884), 1, sym__newline, - ACTIONS(7985), 1, + ACTIONS(7986), 1, anon_sym_else, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, STATE(4695), 1, sym_comment, - ACTIONS(1298), 11, + ACTIONS(1296), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -390614,14 +393080,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [176384] = 4, + [174681] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2388), 1, + ACTIONS(2479), 1, sym__space, STATE(4696), 1, sym_comment, - ACTIONS(2386), 13, + ACTIONS(2477), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390635,35 +393101,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [176409] = 4, - ACTIONS(3), 1, + [174706] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2025), 1, - sym__space, STATE(4697), 1, sym_comment, - ACTIONS(2019), 13, + ACTIONS(1701), 2, + anon_sym_DASH2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1703), 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, - [176434] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [174731] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2033), 1, + ACTIONS(2451), 1, sym__space, STATE(4698), 1, sym_comment, - ACTIONS(2027), 13, + ACTIONS(2449), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390677,18 +393143,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [176459] = 6, - ACTIONS(251), 1, + [174756] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5107), 1, - sym__newline, - ACTIONS(7988), 1, - anon_sym_else, - STATE(1800), 1, - aux_sym_shebang_repeat1, + ACTIONS(2471), 1, + sym__space, STATE(4699), 1, sym_comment, - ACTIONS(1298), 11, + ACTIONS(2469), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -390700,38 +393163,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [176488] = 5, - ACTIONS(251), 1, + anon_sym_RBRACE, + [174781] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7993), 1, - anon_sym_LT, - ACTIONS(7995), 1, + ACTIONS(1641), 1, + anon_sym_LPAREN2, + ACTIONS(7779), 1, anon_sym_DASH2, STATE(4700), 1, sym_comment, - ACTIONS(7991), 12, - 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, - [176515] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7995), 1, - anon_sym_DASH2, - ACTIONS(7997), 1, - anon_sym_LT, - STATE(4701), 1, - sym_comment, - ACTIONS(7991), 12, + STATE(7428), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7777), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -390741,21 +393185,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [176542] = 6, - ACTIONS(251), 1, + [174810] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7999), 1, + ACTIONS(7864), 1, sym__newline, - ACTIONS(8004), 1, - anon_sym_else, - STATE(4576), 1, - aux_sym_shebang_repeat1, - STATE(4702), 1, + ACTIONS(7866), 1, + sym__space, + STATE(4701), 1, sym_comment, - ACTIONS(8002), 11, + STATE(4720), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(7989), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -390767,18 +393210,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [176571] = 6, - ACTIONS(251), 1, + [174839] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8006), 1, - sym__newline, - ACTIONS(8011), 1, - anon_sym_else, - STATE(4579), 1, - aux_sym_shebang_repeat1, - STATE(4703), 1, + ACTIONS(7436), 1, + sym__space, + STATE(4702), 1, sym_comment, - ACTIONS(8009), 11, + ACTIONS(7434), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -390790,18 +393230,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [176600] = 6, - ACTIONS(251), 1, + anon_sym_RBRACE, + [174864] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8013), 1, - sym__newline, - ACTIONS(8018), 1, - anon_sym_else, - STATE(4584), 1, - aux_sym_shebang_repeat1, - STATE(4704), 1, + ACTIONS(2036), 1, + sym__space, + STATE(4703), 1, sym_comment, - ACTIONS(8016), 11, + ACTIONS(2030), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -390813,56 +393251,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [176629] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [174889] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + ACTIONS(3618), 1, + anon_sym_DOLLAR, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(7991), 1, + anon_sym_DOT, + ACTIONS(7995), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7997), 1, + aux_sym__immediate_decimal_token5, + STATE(4704), 1, + sym_comment, + STATE(5660), 1, + sym__immediate_decimal, + ACTIONS(7993), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(5872), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1455), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [174930] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1877), 1, - sym__space, STATE(4705), 1, sym_comment, - ACTIONS(1875), 13, + ACTIONS(1693), 2, + anon_sym_DASH2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1695), 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, - [176654] = 4, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [174955] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2444), 1, - sym__space, + ACTIONS(7999), 1, + aux_sym__immediate_decimal_token2, STATE(4706), 1, sym_comment, - ACTIONS(2442), 13, + ACTIONS(1618), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1620), 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_RPAREN, + anon_sym_DASH_DASH, anon_sym_RBRACE, - [176679] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [174982] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7428), 1, + ACTIONS(2467), 1, sym__space, STATE(4707), 1, sym_comment, - ACTIONS(7426), 13, + ACTIONS(2465), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390876,14 +393345,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [176704] = 4, + [175007] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2041), 1, + ACTIONS(1983), 1, sym__space, STATE(4708), 1, sym_comment, - ACTIONS(2035), 13, + ACTIONS(1977), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390897,15 +393366,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [176729] = 4, + [175032] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5095), 1, + ACTIONS(3985), 1, + anon_sym_DOLLAR, + ACTIONS(7907), 1, + sym__newline, + ACTIONS(7909), 1, sym__space, + ACTIONS(7911), 1, + anon_sym_DASH_DASH, + ACTIONS(7913), 1, + anon_sym_DASH2, + ACTIONS(7915), 1, + anon_sym_LBRACE, + STATE(1759), 1, + sym_block, + STATE(1762), 1, + sym_val_closure, STATE(4709), 1, sym_comment, - ACTIONS(5097), 13, + STATE(5627), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(7286), 1, + sym__flag, + STATE(811), 2, + sym__blosure, + sym_val_variable, + STATE(4680), 2, + sym_short_flag, + sym_long_flag, + [175077] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8001), 1, sym__newline, + ACTIONS(8006), 1, + anon_sym_else, + STATE(4575), 1, + aux_sym_shebang_repeat1, + STATE(4710), 1, + sym_comment, + ACTIONS(8004), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -390917,19 +393420,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, - [176754] = 6, - ACTIONS(251), 1, + [175106] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5107), 1, + ACTIONS(8008), 1, sym__newline, - ACTIONS(8020), 1, + ACTIONS(8013), 1, anon_sym_catch, - STATE(1800), 1, + STATE(4625), 1, aux_sym_shebang_repeat1, - STATE(4710), 1, + STATE(4711), 1, sym_comment, - ACTIONS(1298), 11, + ACTIONS(8011), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -390941,18 +393443,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [176783] = 6, - ACTIONS(3), 1, + [175135] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7908), 1, + ACTIONS(8015), 1, sym__newline, - ACTIONS(7910), 1, - sym__space, - STATE(4651), 1, - aux_sym__command_parenthesized_repeat1, - STATE(4711), 1, + ACTIONS(8020), 1, + anon_sym_catch, + STATE(4644), 1, + aux_sym_shebang_repeat1, + STATE(4712), 1, sym_comment, - ACTIONS(8023), 11, + ACTIONS(8018), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -390964,18 +393466,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [176812] = 6, - ACTIONS(251), 1, + [175164] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(1802), 1, + ACTIONS(7933), 1, + anon_sym_AT, + ACTIONS(8024), 1, anon_sym_DASH2, - ACTIONS(1804), 1, - anon_sym_LPAREN2, - STATE(4712), 1, + STATE(4713), 1, sym_comment, - ACTIONS(1810), 11, + STATE(5005), 1, + sym_param_cmd, + ACTIONS(8022), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -390987,49 +393489,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [176841] = 14, + [175193] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4022), 1, - anon_sym_DOLLAR, - ACTIONS(7886), 1, - sym__newline, - ACTIONS(7888), 1, + ACTIONS(2483), 1, sym__space, - ACTIONS(7890), 1, - anon_sym_DASH_DASH, - ACTIONS(7892), 1, - anon_sym_DASH2, - ACTIONS(7894), 1, - anon_sym_LBRACE, - STATE(1770), 1, - sym_block, - STATE(1787), 1, - sym_val_closure, - STATE(4713), 1, - sym_comment, - STATE(5691), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(7460), 1, - sym__flag, - STATE(765), 2, - sym__blosure, - sym_val_variable, - STATE(4582), 2, - sym_short_flag, - sym_long_flag, - [176886] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8025), 1, - sym__newline, - ACTIONS(8030), 1, - anon_sym_else, - STATE(4627), 1, - aux_sym_shebang_repeat1, STATE(4714), 1, sym_comment, - ACTIONS(8028), 11, + ACTIONS(2481), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -391041,18 +393509,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [176915] = 6, - ACTIONS(251), 1, + anon_sym_RBRACE, + [175218] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1814), 1, - anon_sym_LPAREN2, - ACTIONS(1822), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(2220), 1, - anon_sym_DASH2, + ACTIONS(1907), 1, + sym__space, STATE(4715), 1, sym_comment, - ACTIONS(2222), 11, + ACTIONS(1905), 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, + [175243] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4716), 1, + sym_comment, + ACTIONS(1766), 2, + anon_sym_DASH2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1768), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -391064,18 +393551,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [176944] = 6, - ACTIONS(251), 1, + anon_sym_LPAREN2, + [175268] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1812), 1, + STATE(4717), 1, + sym_comment, + ACTIONS(1792), 2, anon_sym_DASH2, - ACTIONS(1814), 1, - anon_sym_LPAREN2, - ACTIONS(1822), 1, aux_sym__unquoted_in_record_token2, - STATE(4716), 1, - sym_comment, - ACTIONS(1820), 11, + ACTIONS(1794), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -391087,18 +393572,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [176973] = 6, - ACTIONS(251), 1, + anon_sym_LPAREN2, + [175293] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8032), 1, - sym__newline, - ACTIONS(8037), 1, - anon_sym_catch, - STATE(4630), 1, - aux_sym_shebang_repeat1, - STATE(4717), 1, + ACTIONS(7239), 1, + aux_sym_unquoted_token2, + STATE(4718), 1, sym_comment, - ACTIONS(8035), 11, + ACTIONS(1651), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1639), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -391109,19 +393595,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, - [177002] = 6, - ACTIONS(251), 1, + [175320] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8039), 1, - sym__newline, - ACTIONS(8044), 1, - anon_sym_catch, - STATE(4631), 1, - aux_sym_shebang_repeat1, - STATE(4718), 1, + ACTIONS(2487), 1, + sym__space, + STATE(4719), 1, sym_comment, - ACTIONS(8042), 11, + ACTIONS(2485), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -391133,15 +393615,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [177031] = 4, + anon_sym_RBRACE, + [175345] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5099), 1, + ACTIONS(7864), 1, + sym__newline, + ACTIONS(7866), 1, sym__space, - STATE(4719), 1, + STATE(4720), 1, sym_comment, - ACTIONS(5101), 13, - sym__newline, + STATE(4721), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(8026), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -391153,71 +393639,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, - [177056] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7813), 1, - anon_sym_AT, - ACTIONS(7815), 1, - anon_sym_DASH2, - STATE(4720), 1, - sym_comment, - STATE(5075), 1, - sym_param_cmd, - ACTIONS(7811), 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, - [177085] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7692), 1, - sym_identifier, - ACTIONS(7698), 1, - anon_sym_DOLLAR, - ACTIONS(7700), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7702), 1, - anon_sym_DASH_DASH, - ACTIONS(7704), 1, - anon_sym_DASH2, - ACTIONS(7747), 1, - anon_sym_PIPE, - STATE(4069), 1, - sym_param_long_flag, - STATE(4231), 1, - sym__param_name, - STATE(4483), 1, - aux_sym_parameter_parens_repeat1, - STATE(4721), 1, - sym_comment, - STATE(5004), 1, - sym_param_rest, - STATE(5017), 1, - sym_param_opt, - STATE(5019), 1, - sym_param_short_flag, - STATE(5595), 1, - sym_parameter, - [177131] = 4, + [175374] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4722), 1, - sym_comment, - ACTIONS(1971), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1969), 11, + ACTIONS(8028), 1, sym__newline, + ACTIONS(8031), 1, + sym__space, + STATE(4721), 2, + sym_comment, + aux_sym__command_parenthesized_repeat1, + ACTIONS(8034), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -391228,15 +393660,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, - [177155] = 4, + anon_sym_RPAREN, + [175401] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4723), 1, - sym_comment, - ACTIONS(1907), 2, - ts_builtin_sym_end, + ACTIONS(8038), 1, sym__space, - ACTIONS(1905), 11, + STATE(4722), 1, + sym_comment, + ACTIONS(8036), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391248,55 +393680,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, - [177179] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8048), 1, - anon_sym_DASH2, - STATE(4724), 1, - sym_comment, - ACTIONS(8046), 12, - 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, - [177203] = 4, - ACTIONS(251), 1, + anon_sym_RBRACE, + [175426] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8052), 1, + ACTIONS(1901), 1, anon_sym_DASH2, - STATE(4725), 1, + ACTIONS(8040), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4272), 1, + sym_cell_path, + STATE(4723), 1, sym_comment, - ACTIONS(8050), 12, - anon_sym_EQ, - sym_identifier, + STATE(5096), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1903), 8, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [177227] = 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + [175458] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4726), 1, + STATE(4724), 1, sym_comment, - ACTIONS(2352), 2, + ACTIONS(2308), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2350), 11, + ACTIONS(2306), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391308,15 +393726,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, - [177251] = 4, + [175482] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4727), 1, + STATE(4725), 1, sym_comment, - ACTIONS(2356), 2, + ACTIONS(5134), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2354), 11, + ACTIONS(5136), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391328,35 +393746,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, - [177275] = 4, - ACTIONS(3), 1, + [175506] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4728), 1, + ACTIONS(8044), 1, + anon_sym_DASH2, + STATE(4726), 1, sym_comment, - ACTIONS(1985), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1983), 11, + ACTIONS(8042), 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, - [177299] = 4, - ACTIONS(3), 1, + 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, + [175530] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4729), 1, + STATE(4727), 1, sym_comment, - ACTIONS(2360), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2358), 11, + ACTIONS(8046), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391368,15 +393783,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, - [177323] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [175552] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8050), 1, + anon_sym_DASH2, + STATE(4728), 1, + sym_comment, + ACTIONS(8048), 12, + 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, + [175576] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4730), 1, + STATE(4729), 1, sym_comment, - ACTIONS(2364), 2, + ACTIONS(1919), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2362), 11, + ACTIONS(1917), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391388,14 +393825,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, - [177347] = 4, - ACTIONS(251), 1, + [175600] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8056), 1, + ACTIONS(8054), 1, anon_sym_DASH2, - STATE(4731), 1, + STATE(4730), 1, sym_comment, - ACTIONS(8054), 12, + ACTIONS(8052), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -391408,14 +393845,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [177371] = 4, - ACTIONS(251), 1, + [175624] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8060), 1, + ACTIONS(8058), 1, anon_sym_DASH2, - STATE(4732), 1, + STATE(4731), 1, sym_comment, - ACTIONS(8058), 12, + ACTIONS(8056), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -391428,14 +393865,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [177395] = 4, - ACTIONS(251), 1, + [175648] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3420), 1, - anon_sym_COLON2, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + ACTIONS(3618), 1, + anon_sym_DOLLAR, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(8060), 1, + anon_sym_DOT, + ACTIONS(8064), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8066), 1, + aux_sym__immediate_decimal_token5, + STATE(4732), 1, + sym_comment, + STATE(5866), 1, + sym__immediate_decimal, + ACTIONS(1455), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(8062), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(5872), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [175688] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1889), 1, + anon_sym_DASH2, + ACTIONS(8040), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4270), 1, + sym_cell_path, STATE(4733), 1, sym_comment, - ACTIONS(8062), 12, + STATE(5096), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1891), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [175720] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4734), 1, + sym_comment, + ACTIONS(5130), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5132), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391447,15 +393937,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_RBRACE, - [177419] = 4, - ACTIONS(251), 1, + [175744] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8066), 1, + ACTIONS(8070), 1, anon_sym_DASH2, - STATE(4734), 1, + STATE(4735), 1, sym_comment, - ACTIONS(8064), 12, + ACTIONS(8068), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -391468,32 +393957,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [177443] = 4, - ACTIONS(251), 1, + [175768] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8070), 1, - anon_sym_DASH2, - STATE(4735), 1, + STATE(4736), 1, sym_comment, - ACTIONS(8068), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2328), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2326), 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_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [177467] = 4, - ACTIONS(251), 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, + [175792] = 4, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(8074), 1, anon_sym_DASH2, - STATE(4736), 1, + STATE(4737), 1, sym_comment, ACTIONS(8072), 12, anon_sym_EQ, @@ -391508,35 +393997,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [177491] = 4, - ACTIONS(251), 1, + [175816] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8078), 1, - anon_sym_DASH2, - STATE(4737), 1, + STATE(4738), 1, sym_comment, + STATE(4955), 1, + aux_sym_shebang_repeat1, ACTIONS(8076), 12, - anon_sym_EQ, - sym_identifier, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [175840] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4739), 1, + sym_comment, + ACTIONS(8078), 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, + [175862] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1897), 1, + anon_sym_DASH2, + ACTIONS(8040), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4271), 1, + sym_cell_path, + STATE(4740), 1, + sym_comment, + STATE(5096), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1899), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [177515] = 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + [175894] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4738), 1, + STATE(4741), 1, sym_comment, - ACTIONS(5701), 2, + ACTIONS(2366), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5699), 11, + ACTIONS(2364), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391548,12 +394080,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, - [177539] = 4, - ACTIONS(251), 1, + [175918] = 4, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(8082), 1, anon_sym_DASH2, - STATE(4739), 1, + STATE(4742), 1, sym_comment, ACTIONS(8080), 12, anon_sym_EQ, @@ -391568,12 +394100,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [177563] = 4, - ACTIONS(3), 1, + [175942] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8086), 1, - sym__space, - STATE(4740), 1, + ACTIONS(3442), 1, + anon_sym_COLON2, + STATE(4743), 1, sym_comment, ACTIONS(8084), 12, sym__newline, @@ -391587,45 +394119,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_RPAREN, - [177587] = 13, - ACTIONS(251), 1, + anon_sym_RBRACE, + [175966] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3420), 1, - anon_sym_COLON2, ACTIONS(8088), 1, - anon_sym_DOLLAR, - ACTIONS(8090), 1, - anon_sym_DASH_DASH, - ACTIONS(8092), 1, anon_sym_DASH2, - ACTIONS(8094), 1, - anon_sym_LBRACE, - STATE(1770), 1, - sym_block, - STATE(1787), 1, - sym_val_closure, - STATE(4741), 1, + STATE(4744), 1, sym_comment, - STATE(5140), 1, - aux_sym_ctrl_do_repeat1, - STATE(5334), 1, - sym__flag, - STATE(769), 2, - sym__blosure, - sym_val_variable, - STATE(5247), 2, - sym_short_flag, - sym_long_flag, - [177629] = 4, - ACTIONS(251), 1, + ACTIONS(8086), 12, + 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, + [175990] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8098), 1, - anon_sym_else, - STATE(4742), 1, + STATE(4745), 1, sym_comment, - ACTIONS(8096), 12, - ts_builtin_sym_end, + ACTIONS(8084), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391637,14 +394157,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, - [177653] = 4, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [176012] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4743), 1, + STATE(4746), 1, sym_comment, - ACTIONS(8100), 12, + ACTIONS(5649), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5647), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391656,16 +394179,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, - [177677] = 4, - ACTIONS(3), 1, + [176036] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4744), 1, + STATE(4747), 1, sym_comment, - ACTIONS(5677), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5675), 11, + ACTIONS(8090), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391677,14 +394196,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, - [177701] = 4, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [176058] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4743), 1, - aux_sym_shebang_repeat1, - STATE(4745), 1, + STATE(4748), 1, sym_comment, - ACTIONS(8102), 12, + ACTIONS(8092), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391697,116 +394216,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [177725] = 15, - ACTIONS(251), 1, + anon_sym_RBRACE, + [176080] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7692), 1, + ACTIONS(7687), 1, sym_identifier, - ACTIONS(7698), 1, + ACTIONS(7693), 1, anon_sym_DOLLAR, - ACTIONS(7700), 1, + ACTIONS(7695), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7702), 1, + ACTIONS(7697), 1, anon_sym_DASH_DASH, - ACTIONS(7704), 1, + ACTIONS(7699), 1, anon_sym_DASH2, - ACTIONS(8104), 1, + ACTIONS(7762), 1, anon_sym_RBRACK, - STATE(4069), 1, - sym_param_long_flag, - STATE(4231), 1, - sym__param_name, - STATE(4483), 1, - aux_sym_parameter_parens_repeat1, - STATE(4746), 1, - sym_comment, - STATE(5004), 1, - sym_param_rest, - STATE(5017), 1, - sym_param_opt, - STATE(5019), 1, - sym_param_short_flag, - STATE(5595), 1, - sym_parameter, - [177771] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7692), 1, - sym_identifier, - ACTIONS(7698), 1, - anon_sym_DOLLAR, - ACTIONS(7700), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7702), 1, - anon_sym_DASH_DASH, - ACTIONS(7704), 1, - anon_sym_DASH2, - ACTIONS(8106), 1, - anon_sym_RPAREN, - STATE(4069), 1, + STATE(4052), 1, sym_param_long_flag, - STATE(4231), 1, + STATE(4210), 1, sym__param_name, - STATE(4483), 1, + STATE(4488), 1, aux_sym_parameter_parens_repeat1, - STATE(4747), 1, + STATE(4749), 1, sym_comment, - STATE(5004), 1, + STATE(5133), 1, sym_param_rest, - STATE(5017), 1, + STATE(5134), 1, sym_param_opt, - STATE(5019), 1, + STATE(5135), 1, sym_param_short_flag, - STATE(5595), 1, + STATE(5589), 1, sym_parameter, - [177817] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4748), 1, - sym_comment, - ACTIONS(2454), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2452), 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, - [177841] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4749), 1, - sym_comment, - ACTIONS(2462), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2460), 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, - [177865] = 4, - ACTIONS(251), 1, + [176126] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8110), 1, + ACTIONS(1639), 1, anon_sym_DASH2, + ACTIONS(7249), 1, + aux_sym__unquoted_in_record_token2, STATE(4750), 1, sym_comment, - ACTIONS(8108), 12, + ACTIONS(1651), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -391816,35 +394267,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [177889] = 4, - ACTIONS(251), 1, + [176152] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8114), 1, - anon_sym_DASH2, + ACTIONS(3618), 1, + anon_sym_DOLLAR, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(4447), 1, + anon_sym_DOT, + ACTIONS(7995), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7997), 1, + aux_sym__immediate_decimal_token5, STATE(4751), 1, sym_comment, - ACTIONS(8112), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, + STATE(5871), 1, + sym__immediate_decimal, + ACTIONS(7993), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(5870), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1532), 3, 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, - [177913] = 3, - ACTIONS(251), 1, + anon_sym_if, + anon_sym_EQ_GT, + [176190] = 4, + ACTIONS(247), 1, anon_sym_POUND, + STATE(1615), 1, + aux_sym_shebang_repeat1, STATE(4752), 1, sym_comment, - ACTIONS(5083), 13, + ACTIONS(8094), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391857,13 +394316,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, - [177935] = 3, - ACTIONS(251), 1, + [176214] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(4753), 1, sym_comment, - ACTIONS(5091), 13, + ACTIONS(2455), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2453), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391875,17 +394336,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, - [177957] = 4, + [176238] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4754), 1, sym_comment, - ACTIONS(5079), 2, + ACTIONS(2427), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5081), 11, + ACTIONS(2425), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391897,15 +394356,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, - [177981] = 4, - ACTIONS(3), 1, + [176262] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(4755), 1, sym_comment, - ACTIONS(2470), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2468), 11, + ACTIONS(8096), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391917,56 +394373,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, - [178005] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8118), 1, - anon_sym_QMARK, - ACTIONS(8120), 1, - anon_sym_DASH2, - STATE(4756), 1, - sym_comment, - ACTIONS(8116), 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, - [178031] = 5, - ACTIONS(251), 1, + anon_sym_RBRACE, + [176284] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7825), 1, - aux_sym__immediate_decimal_token2, - STATE(4757), 1, + STATE(4756), 1, sym_comment, - ACTIONS(1550), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1552), 9, + ACTIONS(2312), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2310), 11, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [178057] = 4, - ACTIONS(251), 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, + [176308] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8124), 1, + ACTIONS(8100), 1, anon_sym_DASH2, - STATE(4758), 1, + STATE(4757), 1, sym_comment, - ACTIONS(8122), 12, + ACTIONS(8098), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -391979,35 +394415,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [178081] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8126), 1, - aux_sym__immediate_decimal_token2, - STATE(4759), 1, - sym_comment, - ACTIONS(1680), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1682), 9, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [178107] = 4, - ACTIONS(251), 1, + [176332] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8130), 1, + ACTIONS(8104), 1, anon_sym_DASH2, - STATE(4760), 1, + STATE(4758), 1, sym_comment, - ACTIONS(8128), 12, + ACTIONS(8102), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -392020,34 +394435,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [178131] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4761), 1, - sym_comment, - ACTIONS(1550), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1552), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [178155] = 4, - ACTIONS(251), 1, + [176356] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8134), 1, + ACTIONS(8108), 1, anon_sym_DASH2, - STATE(4762), 1, + STATE(4759), 1, sym_comment, - ACTIONS(8132), 12, + ACTIONS(8106), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -392060,173 +394455,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [178179] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym_unquoted_token2, - ACTIONS(3630), 1, - anon_sym_DOLLAR, - ACTIONS(4580), 1, - anon_sym_LPAREN2, - ACTIONS(8136), 1, - anon_sym_DOT, - ACTIONS(8140), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8142), 1, - aux_sym__immediate_decimal_token5, - STATE(4763), 1, - sym_comment, - STATE(5839), 1, - sym__immediate_decimal, - ACTIONS(1475), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(8138), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5835), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [178219] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4764), 1, - sym_comment, - ACTIONS(1542), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1544), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [178243] = 4, - ACTIONS(251), 1, + [176380] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4765), 1, - sym_comment, - ACTIONS(1680), 3, + ACTIONS(1905), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1682), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [178267] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4766), 1, + ACTIONS(8040), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4273), 1, + sym_cell_path, + STATE(4760), 1, sym_comment, - ACTIONS(1743), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1745), 10, + STATE(5096), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1907), 8, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [178291] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8146), 1, - anon_sym_DASH2, - STATE(4767), 1, - sym_comment, - ACTIONS(8144), 12, - 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, - [178315] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1461), 1, - anon_sym_RBRACK, - ACTIONS(1475), 1, - sym__entry_separator, - ACTIONS(1477), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(3102), 1, - anon_sym_DOLLAR, - ACTIONS(8148), 1, - anon_sym_LPAREN2, - ACTIONS(8150), 1, - anon_sym_DOT, - ACTIONS(8152), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8154), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8156), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8158), 1, - aux_sym__immediate_decimal_token5, - STATE(4768), 1, - sym_comment, - STATE(5670), 1, - sym__immediate_decimal, - STATE(5736), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [178359] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4769), 1, - sym_comment, - ACTIONS(5053), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5055), 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, - [178383] = 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + [176412] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4770), 1, + STATE(4761), 1, sym_comment, - ACTIONS(5057), 2, + ACTIONS(7811), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5059), 11, + ACTIONS(7809), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392238,15 +394499,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, - [178407] = 4, + [176436] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4771), 1, + STATE(4762), 1, sym_comment, - ACTIONS(1857), 2, + ACTIONS(1887), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1855), 11, + ACTIONS(1885), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392258,14 +394519,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, - [178431] = 4, - ACTIONS(251), 1, + [176460] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4772), 1, + STATE(4763), 1, sym_comment, - STATE(4804), 1, - aux_sym_shebang_repeat1, - ACTIONS(8160), 12, + ACTIONS(8110), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392278,54 +394537,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [178455] = 4, - ACTIONS(251), 1, + anon_sym_RBRACE, + [176482] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8164), 1, - anon_sym_DASH2, - STATE(4773), 1, - sym_comment, - ACTIONS(8162), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + ACTIONS(3618), 1, anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [178479] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8168), 1, - anon_sym_DASH2, - STATE(4774), 1, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(8114), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8116), 1, + aux_sym__immediate_decimal_token5, + STATE(4764), 1, sym_comment, - ACTIONS(8166), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, + STATE(6638), 1, + sym__immediate_decimal, + ACTIONS(8112), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1780), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1455), 3, 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, - [178503] = 4, - ACTIONS(251), 1, + anon_sym_if, + anon_sym_EQ_GT, + [176520] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8172), 1, + ACTIONS(8120), 1, anon_sym_DASH2, - STATE(4775), 1, + STATE(4765), 1, sym_comment, - ACTIONS(8170), 12, + ACTIONS(8118), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -392338,12 +394585,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [178527] = 3, - ACTIONS(251), 1, + [176544] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4776), 1, + STATE(4766), 1, sym_comment, - ACTIONS(8174), 13, + ACTIONS(2316), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2314), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392355,14 +394605,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, - [178549] = 3, - ACTIONS(251), 1, + [176568] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4777), 1, + STATE(4767), 1, sym_comment, - ACTIONS(8062), 13, + ACTIONS(2435), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2433), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392374,17 +394625,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, + [176592] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7687), 1, + sym_identifier, + ACTIONS(7693), 1, + anon_sym_DOLLAR, + ACTIONS(7695), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7697), 1, + anon_sym_DASH_DASH, + ACTIONS(7699), 1, + anon_sym_DASH2, + ACTIONS(7768), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - [178571] = 4, + STATE(4052), 1, + sym_param_long_flag, + STATE(4210), 1, + sym__param_name, + STATE(4488), 1, + aux_sym_parameter_parens_repeat1, + STATE(4768), 1, + sym_comment, + STATE(5133), 1, + sym_param_rest, + STATE(5134), 1, + sym_param_opt, + STATE(5135), 1, + sym_param_short_flag, + STATE(5589), 1, + sym_parameter, + [176638] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4778), 1, + STATE(4769), 1, sym_comment, - ACTIONS(2480), 2, + ACTIONS(2332), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2478), 11, + ACTIONS(2330), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392396,15 +394676,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, - [178595] = 4, + [176662] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4779), 1, + STATE(4770), 1, sym_comment, - ACTIONS(5067), 2, + ACTIONS(2451), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5069), 11, + ACTIONS(2449), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392416,15 +394696,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, - [178619] = 4, - ACTIONS(3), 1, + [176686] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4780), 1, + STATE(4771), 1, sym_comment, - ACTIONS(5075), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5077), 11, + ACTIONS(8122), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392436,12 +394713,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, - [178643] = 3, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [176708] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4781), 1, + STATE(4772), 1, sym_comment, - ACTIONS(8176), 13, + ACTIONS(1891), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1889), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392453,14 +394735,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, - [178665] = 3, - ACTIONS(251), 1, + [176732] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4782), 1, + STATE(4773), 1, sym_comment, - ACTIONS(8178), 13, + ACTIONS(8124), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392474,12 +394754,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [178687] = 3, - ACTIONS(251), 1, + [176754] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4783), 1, + STATE(4774), 1, sym_comment, - ACTIONS(6873), 13, + ACTIONS(2358), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2356), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392491,76 +394774,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, - [178709] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8182), 1, - anon_sym_DASH2, - STATE(4784), 1, - sym_comment, - ACTIONS(8180), 12, - 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, - [178733] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8186), 1, - anon_sym_DASH2, - STATE(4785), 1, - sym_comment, - ACTIONS(8184), 12, - 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, - [178757] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8190), 1, - anon_sym_DASH2, - STATE(4786), 1, - sym_comment, - ACTIONS(8188), 12, - 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, - [178781] = 4, - ACTIONS(251), 1, + [176778] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8194), 1, + ACTIONS(8128), 1, anon_sym_DASH2, - STATE(4787), 1, + STATE(4775), 1, sym_comment, - ACTIONS(8192), 12, + ACTIONS(8126), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -392573,15 +394794,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [178805] = 4, + [176802] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4788), 1, + STATE(4776), 1, sym_comment, - ACTIONS(1650), 2, + ACTIONS(2362), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1638), 11, + ACTIONS(2360), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392593,15 +394814,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, - [178829] = 4, + [176826] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4789), 1, + STATE(4777), 1, sym_comment, - ACTIONS(1012), 2, + ACTIONS(2387), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1016), 11, + ACTIONS(2385), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392613,15 +394834,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, - [178853] = 4, - ACTIONS(3), 1, + [176850] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4790), 1, + ACTIONS(3444), 1, + anon_sym_COLON2, + STATE(4778), 1, sym_comment, - ACTIONS(2491), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2489), 11, + ACTIONS(8084), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392633,15 +394853,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, - [178877] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [176874] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4791), 1, + ACTIONS(3444), 1, + anon_sym_COLON2, + STATE(4779), 1, sym_comment, - ACTIONS(2368), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2366), 11, + ACTIONS(8124), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392653,15 +394873,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, - [178901] = 4, + anon_sym_RBRACE, + [176898] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8132), 1, + anon_sym_DASH2, + STATE(4780), 1, + sym_comment, + ACTIONS(8130), 12, + 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, + [176922] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3444), 1, + anon_sym_COLON2, + ACTIONS(8134), 1, + anon_sym_DOLLAR, + ACTIONS(8136), 1, + anon_sym_DASH_DASH, + ACTIONS(8138), 1, + anon_sym_DASH2, + ACTIONS(8140), 1, + anon_sym_LBRACE, + STATE(1759), 1, + sym_block, + STATE(1762), 1, + sym_val_closure, + STATE(4781), 1, + sym_comment, + STATE(5024), 1, + aux_sym_ctrl_do_repeat1, + STATE(5395), 1, + sym__flag, + STATE(814), 2, + sym__blosure, + sym_val_variable, + STATE(5200), 2, + sym_short_flag, + sym_long_flag, + [176964] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4792), 1, + STATE(4782), 1, sym_comment, - ACTIONS(2368), 2, + ACTIONS(1903), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2366), 11, + ACTIONS(1901), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392673,12 +394943,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, - [178925] = 3, - ACTIONS(251), 1, + [176988] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4793), 1, + STATE(4783), 1, sym_comment, - ACTIONS(8196), 13, + ACTIONS(2467), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2465), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392690,44 +394963,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, - [178947] = 14, + [177012] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1461), 1, - anon_sym_RBRACE, - ACTIONS(1475), 1, - sym__entry_separator, - ACTIONS(1477), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(3102), 1, - anon_sym_DOLLAR, - ACTIONS(8148), 1, - anon_sym_LPAREN2, - ACTIONS(8198), 1, - anon_sym_DOT, - ACTIONS(8200), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8202), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8204), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8206), 1, - aux_sym__immediate_decimal_token5, - STATE(4794), 1, - sym_comment, - STATE(5695), 1, - sym__immediate_decimal, - STATE(5736), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [178991] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4795), 1, + STATE(4784), 1, sym_comment, - ACTIONS(8208), 13, + ACTIONS(2391), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2389), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392739,17 +394983,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, - [179013] = 4, + [177036] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4796), 1, + STATE(4785), 1, sym_comment, - ACTIONS(2503), 2, + ACTIONS(2372), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2501), 11, + ACTIONS(2370), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392761,32 +395003,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, - [179037] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8212), 1, - anon_sym_DASH2, - STATE(4797), 1, - sym_comment, - ACTIONS(8210), 12, - 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, - [179061] = 3, - ACTIONS(251), 1, + [177060] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4798), 1, + STATE(4786), 1, sym_comment, - ACTIONS(6863), 13, + ACTIONS(8142), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392800,34 +395022,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [179083] = 4, - ACTIONS(251), 1, + [177082] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8216), 1, - anon_sym_DASH2, - STATE(4799), 1, - sym_comment, - ACTIONS(8214), 12, - anon_sym_EQ, + ACTIONS(7687), 1, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(7693), 1, anon_sym_DOLLAR, + ACTIONS(7695), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7697), 1, anon_sym_DASH_DASH, - [179107] = 4, - ACTIONS(251), 1, + ACTIONS(7699), 1, + anon_sym_DASH2, + ACTIONS(8144), 1, + anon_sym_PIPE, + STATE(4052), 1, + sym_param_long_flag, + STATE(4210), 1, + sym__param_name, + STATE(4488), 1, + aux_sym_parameter_parens_repeat1, + STATE(4787), 1, + sym_comment, + STATE(5133), 1, + sym_param_rest, + STATE(5134), 1, + sym_param_opt, + STATE(5135), 1, + sym_param_short_flag, + STATE(5589), 1, + sym_parameter, + [177128] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8220), 1, + ACTIONS(8148), 1, anon_sym_DASH2, - STATE(4800), 1, + STATE(4788), 1, sym_comment, - ACTIONS(8218), 12, + ACTIONS(8146), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -392840,43 +395073,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [179131] = 13, - ACTIONS(3), 1, + [177152] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1510), 1, - sym__entry_separator, - ACTIONS(3102), 1, - anon_sym_DOLLAR, - ACTIONS(8148), 1, - anon_sym_LPAREN2, ACTIONS(8152), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8154), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8156), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8158), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8222), 1, - anon_sym_DOT, - STATE(4801), 1, - sym_comment, - STATE(5720), 1, - sym__immediate_decimal, - ACTIONS(1500), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(5711), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [179173] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8226), 1, anon_sym_DASH2, - STATE(4802), 1, + STATE(4789), 1, sym_comment, - ACTIONS(8224), 12, + ACTIONS(8150), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -392889,15 +395093,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [179197] = 4, + [177176] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4803), 1, + STATE(4790), 1, sym_comment, - ACTIONS(2049), 2, + ACTIONS(2463), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2043), 11, + ACTIONS(2461), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392909,14 +395113,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, - [179221] = 4, - ACTIONS(251), 1, + [177200] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4804), 1, + STATE(4791), 1, sym_comment, - ACTIONS(8228), 12, + ACTIONS(2447), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2445), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392928,16 +395133,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, - [179245] = 4, - ACTIONS(3), 1, + [177224] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4805), 1, + STATE(4792), 1, sym_comment, - ACTIONS(2372), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2370), 11, + ACTIONS(8154), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392949,46 +395150,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [179269] = 15, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [177246] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7692), 1, + ACTIONS(7687), 1, sym_identifier, - ACTIONS(7698), 1, + ACTIONS(7693), 1, anon_sym_DOLLAR, - ACTIONS(7700), 1, + ACTIONS(7695), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7702), 1, + ACTIONS(7697), 1, anon_sym_DASH_DASH, - ACTIONS(7704), 1, + ACTIONS(7699), 1, anon_sym_DASH2, - ACTIONS(7762), 1, + ACTIONS(8156), 1, anon_sym_RBRACK, - STATE(4069), 1, + STATE(4052), 1, sym_param_long_flag, - STATE(4231), 1, + STATE(4210), 1, sym__param_name, - STATE(4483), 1, + STATE(4488), 1, aux_sym_parameter_parens_repeat1, - STATE(4806), 1, + STATE(4793), 1, sym_comment, - STATE(5004), 1, + STATE(5133), 1, sym_param_rest, - STATE(5017), 1, + STATE(5134), 1, sym_param_opt, - STATE(5019), 1, + STATE(5135), 1, sym_param_short_flag, - STATE(5595), 1, + STATE(5589), 1, sym_parameter, - [179315] = 4, - ACTIONS(3), 1, + [177292] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4807), 1, + ACTIONS(8160), 1, + anon_sym_DASH2, + STATE(4794), 1, sym_comment, - ACTIONS(2376), 2, + ACTIONS(8158), 12, + 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, + [177316] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8164), 1, + anon_sym_DASH2, + STATE(4795), 1, + sym_comment, + ACTIONS(8162), 12, + 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, + [177340] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4796), 1, + sym_comment, + ACTIONS(8166), 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, + [177362] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8170), 1, + anon_sym_else, + STATE(4797), 1, + sym_comment, + ACTIONS(8168), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(2374), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393000,46 +395262,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [179339] = 15, - ACTIONS(251), 1, + [177386] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7692), 1, + ACTIONS(8174), 1, + anon_sym_DASH2, + STATE(4798), 1, + sym_comment, + ACTIONS(8172), 12, + anon_sym_EQ, sym_identifier, - ACTIONS(7698), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7700), 1, + anon_sym_AT, anon_sym_DOT_DOT_DOT, - ACTIONS(7702), 1, anon_sym_DASH_DASH, - ACTIONS(7704), 1, + [177410] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4799), 1, + sym_comment, + ACTIONS(2459), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2457), 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, + [177434] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1945), 1, anon_sym_DASH2, - ACTIONS(7764), 1, - anon_sym_RPAREN, - STATE(4069), 1, - sym_param_long_flag, - STATE(4231), 1, - sym__param_name, - STATE(4483), 1, - aux_sym_parameter_parens_repeat1, - STATE(4808), 1, + ACTIONS(8040), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4259), 1, + sym_cell_path, + STATE(4800), 1, sym_comment, - STATE(5004), 1, - sym_param_rest, - STATE(5017), 1, - sym_param_opt, - STATE(5019), 1, - sym_param_short_flag, - STATE(5595), 1, - sym_parameter, - [179385] = 4, - ACTIONS(251), 1, + STATE(5096), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1947), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [177466] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8230), 1, - anon_sym_catch, - STATE(4809), 1, + STATE(4801), 1, sym_comment, - ACTIONS(7851), 12, + ACTIONS(7815), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(7813), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393051,14 +395346,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, - [179409] = 4, - ACTIONS(251), 1, + [177490] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8232), 1, - anon_sym_else, - STATE(4810), 1, + STATE(4802), 1, sym_comment, - ACTIONS(8096), 12, + ACTIONS(2483), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2481), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393070,15 +395366,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_RBRACE, - [179433] = 4, - ACTIONS(251), 1, + [177514] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8236), 1, + ACTIONS(8178), 1, anon_sym_DASH2, - STATE(4811), 1, + STATE(4803), 1, sym_comment, - ACTIONS(8234), 12, + ACTIONS(8176), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -393091,42 +395386,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [179457] = 11, - ACTIONS(251), 1, + [177538] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym_unquoted_token2, - ACTIONS(3630), 1, - anon_sym_DOLLAR, - ACTIONS(4580), 1, - anon_sym_LPAREN2, - ACTIONS(8240), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8242), 1, - aux_sym__immediate_decimal_token5, - STATE(4812), 1, + ACTIONS(8182), 1, + anon_sym_DASH2, + STATE(4804), 1, sym_comment, - STATE(6707), 1, - sym__immediate_decimal, - ACTIONS(8238), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2078), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1475), 3, + ACTIONS(8180), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [179495] = 4, + 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, + [177562] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4813), 1, + STATE(4805), 1, sym_comment, - ACTIONS(7947), 2, + ACTIONS(2487), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7945), 11, + ACTIONS(2485), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393138,108 +395426,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [179519] = 15, - ACTIONS(251), 1, + [177586] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8186), 1, + anon_sym_DASH2, + STATE(4806), 1, + sym_comment, + ACTIONS(8184), 12, + 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, + [177610] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8190), 1, + anon_sym_DASH2, + STATE(4807), 1, + sym_comment, + ACTIONS(8188), 12, + 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, + [177634] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7692), 1, + ACTIONS(7687), 1, sym_identifier, - ACTIONS(7698), 1, + ACTIONS(7693), 1, anon_sym_DOLLAR, - ACTIONS(7700), 1, + ACTIONS(7695), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7702), 1, + ACTIONS(7697), 1, anon_sym_DASH_DASH, - ACTIONS(7704), 1, + ACTIONS(7699), 1, anon_sym_DASH2, - ACTIONS(8244), 1, + ACTIONS(8192), 1, anon_sym_RBRACK, - STATE(4069), 1, + STATE(4052), 1, sym_param_long_flag, - STATE(4231), 1, + STATE(4210), 1, sym__param_name, - STATE(4483), 1, + STATE(4488), 1, aux_sym_parameter_parens_repeat1, - STATE(4814), 1, + STATE(4808), 1, sym_comment, - STATE(5004), 1, + STATE(5133), 1, sym_param_rest, - STATE(5017), 1, + STATE(5134), 1, sym_param_opt, - STATE(5019), 1, + STATE(5135), 1, sym_param_short_flag, - STATE(5595), 1, + STATE(5589), 1, sym_parameter, - [179565] = 15, - ACTIONS(251), 1, + [177680] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7692), 1, + ACTIONS(7687), 1, sym_identifier, - ACTIONS(7698), 1, + ACTIONS(7693), 1, anon_sym_DOLLAR, - ACTIONS(7700), 1, + ACTIONS(7695), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7702), 1, + ACTIONS(7697), 1, anon_sym_DASH_DASH, - ACTIONS(7704), 1, + ACTIONS(7699), 1, anon_sym_DASH2, - ACTIONS(8246), 1, + ACTIONS(8194), 1, anon_sym_RPAREN, - STATE(4069), 1, + STATE(4052), 1, sym_param_long_flag, - STATE(4231), 1, + STATE(4210), 1, sym__param_name, - STATE(4483), 1, + STATE(4488), 1, aux_sym_parameter_parens_repeat1, - STATE(4815), 1, + STATE(4809), 1, sym_comment, - STATE(5004), 1, + STATE(5133), 1, sym_param_rest, - STATE(5017), 1, + STATE(5134), 1, sym_param_opt, - STATE(5019), 1, + STATE(5135), 1, sym_param_short_flag, - STATE(5595), 1, + STATE(5589), 1, sym_parameter, - [179611] = 15, - ACTIONS(251), 1, + [177726] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7692), 1, + ACTIONS(8198), 1, + anon_sym_DASH2, + STATE(4810), 1, + sym_comment, + ACTIONS(8196), 12, + anon_sym_EQ, sym_identifier, - ACTIONS(7698), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7700), 1, + anon_sym_AT, anon_sym_DOT_DOT_DOT, - ACTIONS(7702), 1, anon_sym_DASH_DASH, - ACTIONS(7704), 1, + [177750] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8202), 1, anon_sym_DASH2, - ACTIONS(8248), 1, + STATE(4811), 1, + sym_comment, + ACTIONS(8200), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, anon_sym_PIPE, - STATE(4069), 1, - sym_param_long_flag, - STATE(4231), 1, - sym__param_name, - STATE(4483), 1, - aux_sym_parameter_parens_repeat1, - STATE(4816), 1, + 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, + [177774] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8206), 1, + anon_sym_DASH2, + STATE(4812), 1, sym_comment, - STATE(5004), 1, - sym_param_rest, - STATE(5017), 1, - sym_param_opt, - STATE(5019), 1, - sym_param_short_flag, - STATE(5595), 1, - sym_parameter, - [179657] = 4, + ACTIONS(8204), 12, + 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, + [177798] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4817), 1, + STATE(4813), 1, sym_comment, - ACTIONS(7490), 2, + ACTIONS(2395), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7488), 11, + ACTIONS(2393), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393251,35 +395608,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, - [179681] = 4, - ACTIONS(3), 1, + [177822] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4818), 1, + ACTIONS(1893), 1, + anon_sym_DASH2, + ACTIONS(8040), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4337), 1, + sym_cell_path, + STATE(4814), 1, sym_comment, - ACTIONS(7953), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7951), 11, + STATE(5096), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1895), 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, - [179705] = 4, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [177854] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4819), 1, + STATE(4815), 1, sym_comment, - ACTIONS(7957), 2, + ACTIONS(1841), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7955), 11, + ACTIONS(1839), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393291,15 +395652,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, - [179729] = 4, - ACTIONS(3), 1, + [177878] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4820), 1, + ACTIONS(2298), 1, + anon_sym_DASH2, + STATE(4816), 1, sym_comment, - ACTIONS(7961), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7959), 11, + ACTIONS(2300), 12, + 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, + anon_sym_LPAREN2, + [177902] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4817), 1, + sym_comment, + ACTIONS(6961), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393311,15 +395689,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, - [179753] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [177924] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(929), 1, + anon_sym_DASH2, + ACTIONS(8040), 1, + anon_sym_DOT2, + STATE(3881), 1, + sym_cell_path, + STATE(4025), 1, + sym_path, + STATE(4818), 1, + sym_comment, + STATE(5096), 1, + aux_sym_cell_path_repeat1, + ACTIONS(931), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [177956] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4821), 1, + STATE(4819), 1, sym_comment, - ACTIONS(7965), 2, + ACTIONS(1651), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7963), 11, + ACTIONS(1639), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393331,14 +395735,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, - [179777] = 4, - ACTIONS(251), 1, + [177980] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8252), 1, + ACTIONS(8210), 1, anon_sym_DASH2, - STATE(4822), 1, + STATE(4820), 1, sym_comment, - ACTIONS(8250), 12, + ACTIONS(8208), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -393351,15 +395755,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [179801] = 4, + [178004] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4823), 1, + STATE(4821), 1, sym_comment, - ACTIONS(7628), 2, + ACTIONS(7631), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7626), 11, + ACTIONS(7629), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393371,35 +395775,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, - [179825] = 4, - ACTIONS(251), 1, + [178028] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8256), 1, + ACTIONS(1961), 1, anon_sym_DASH2, - STATE(4824), 1, + ACTIONS(8040), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4279), 1, + sym_cell_path, + STATE(4822), 1, sym_comment, - ACTIONS(8254), 12, - anon_sym_EQ, - sym_identifier, + STATE(5096), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1963), 8, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [179849] = 4, - ACTIONS(3), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + [178060] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4825), 1, + ACTIONS(8212), 1, + anon_sym_else, + STATE(4823), 1, sym_comment, - ACTIONS(1943), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1941), 11, + ACTIONS(8168), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393411,15 +395818,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, - [179873] = 4, + anon_sym_RPAREN, + [178084] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4826), 1, + STATE(4824), 1, sym_comment, - ACTIONS(2448), 2, + ACTIONS(998), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2446), 11, + ACTIONS(1002), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393431,55 +395839,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, - [179897] = 4, - ACTIONS(251), 1, + [178108] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8260), 1, + ACTIONS(1917), 1, anon_sym_DASH2, - STATE(4827), 1, + ACTIONS(8040), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4378), 1, + sym_cell_path, + STATE(4825), 1, sym_comment, - ACTIONS(8258), 12, - anon_sym_EQ, - sym_identifier, + STATE(5096), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1919), 8, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [179921] = 4, - ACTIONS(3), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + [178140] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4828), 1, + ACTIONS(1931), 1, + anon_sym_DASH2, + ACTIONS(8040), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4392), 1, + sym_cell_path, + STATE(4826), 1, sym_comment, - ACTIONS(2416), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2414), 11, + STATE(5096), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1933), 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, - [179945] = 4, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [178172] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4829), 1, + STATE(4827), 1, sym_comment, - ACTIONS(2380), 2, + ACTIONS(5653), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2378), 11, + ACTIONS(5651), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393491,15 +395907,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, - [179969] = 4, + [178196] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4830), 1, + STATE(4828), 1, sym_comment, - ACTIONS(2384), 2, + ACTIONS(2340), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2382), 11, + ACTIONS(2338), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393511,15 +395927,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, - [179993] = 4, + [178220] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4831), 1, + STATE(4829), 1, sym_comment, - ACTIONS(2388), 2, + ACTIONS(2431), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2386), 11, + ACTIONS(2429), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393531,15 +395947,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, - [180017] = 4, + [178244] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4832), 1, + STATE(4830), 1, sym_comment, - ACTIONS(2025), 2, + ACTIONS(2443), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2019), 11, + ACTIONS(2441), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393551,15 +395967,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, - [180041] = 4, + [178268] = 14, ACTIONS(3), 1, anon_sym_POUND, - STATE(4833), 1, + ACTIONS(1441), 1, + anon_sym_RBRACE, + ACTIONS(1455), 1, + sym__entry_separator, + ACTIONS(1457), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(3110), 1, + anon_sym_DOLLAR, + ACTIONS(8214), 1, + anon_sym_LPAREN2, + ACTIONS(8216), 1, + anon_sym_DOT, + ACTIONS(8218), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8220), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8222), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8224), 1, + aux_sym__immediate_decimal_token5, + STATE(4831), 1, + sym_comment, + STATE(5597), 1, + sym__immediate_decimal, + STATE(5839), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [178312] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4832), 1, sym_comment, - ACTIONS(2033), 2, + ACTIONS(2491), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2027), 11, + ACTIONS(2489), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393571,14 +396017,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, - [180065] = 4, - ACTIONS(251), 1, + [178336] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8264), 1, + ACTIONS(8228), 1, anon_sym_DASH2, - STATE(4834), 1, + STATE(4833), 1, sym_comment, - ACTIONS(8262), 12, + ACTIONS(8226), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -393591,15 +396037,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [180089] = 4, + [178360] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4835), 1, + STATE(4834), 1, sym_comment, - ACTIONS(2041), 2, + ACTIONS(2346), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2035), 11, + ACTIONS(2344), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393611,35 +396057,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, - [180113] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8268), 1, - anon_sym_DASH2, - STATE(4836), 1, - sym_comment, - ACTIONS(8266), 12, - 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, - [180137] = 4, + [178384] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4837), 1, + STATE(4835), 1, sym_comment, - ACTIONS(5095), 2, + ACTIONS(2376), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5097), 11, + ACTIONS(2374), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393651,15 +396077,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, - [180161] = 4, + [178408] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4838), 1, + STATE(4836), 1, sym_comment, - ACTIONS(5099), 2, + ACTIONS(2324), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5101), 11, + ACTIONS(2322), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393671,35 +396097,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, - [180185] = 4, + [178432] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8232), 1, + anon_sym_DASH2, + STATE(4837), 1, + sym_comment, + ACTIONS(8230), 12, + 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, + [178456] = 14, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1441), 1, + anon_sym_RBRACK, + ACTIONS(1455), 1, + sym__entry_separator, + ACTIONS(1457), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(3110), 1, + anon_sym_DOLLAR, + ACTIONS(8214), 1, + anon_sym_LPAREN2, + ACTIONS(8234), 1, + anon_sym_DOT, + ACTIONS(8236), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8238), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8240), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8242), 1, + aux_sym__immediate_decimal_token5, + STATE(4838), 1, + sym_comment, + STATE(5615), 1, + sym__immediate_decimal, + STATE(5839), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [178500] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8246), 1, + anon_sym_DASH2, STATE(4839), 1, sym_comment, - ACTIONS(2344), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2342), 11, + ACTIONS(8244), 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, - [180209] = 4, + 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, + [178524] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4840), 1, sym_comment, - ACTIONS(5689), 2, + ACTIONS(2336), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5687), 11, + ACTIONS(2334), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393711,34 +396187,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, - [180233] = 3, - ACTIONS(251), 1, + [178548] = 8, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(1939), 1, + anon_sym_DASH2, + ACTIONS(8040), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4434), 1, + sym_cell_path, STATE(4841), 1, sym_comment, - ACTIONS(8270), 13, + STATE(5096), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1941), 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_LBRACK, anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - [180255] = 4, + [178580] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4842), 1, sym_comment, - ACTIONS(5693), 2, + ACTIONS(2036), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5691), 11, + ACTIONS(2030), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393750,35 +396231,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, - [180279] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8274), 1, - anon_sym_DASH2, - STATE(4843), 1, - sym_comment, - ACTIONS(8272), 12, - 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, - [180303] = 4, + [178604] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4844), 1, + STATE(4843), 1, sym_comment, - ACTIONS(5681), 2, + ACTIONS(1983), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5679), 11, + ACTIONS(1977), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393790,14 +396251,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, - [180327] = 4, - ACTIONS(251), 1, + [178628] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1909), 1, + anon_sym_DASH2, + ACTIONS(8040), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4437), 1, + sym_cell_path, + STATE(4844), 1, + sym_comment, + STATE(5096), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1911), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [178660] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8278), 1, + ACTIONS(2302), 1, anon_sym_DASH2, STATE(4845), 1, sym_comment, - ACTIONS(8276), 12, + ACTIONS(2304), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -393807,18 +396292,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [180351] = 4, + anon_sym_LPAREN2, + [178684] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4846), 1, sym_comment, - ACTIONS(1877), 2, + ACTIONS(2409), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1875), 11, + ACTIONS(2407), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393830,35 +396315,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, - [180375] = 4, - ACTIONS(3), 1, + [178708] = 8, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(1839), 1, + anon_sym_DASH2, + ACTIONS(8040), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4251), 1, + sym_cell_path, STATE(4847), 1, sym_comment, - ACTIONS(2444), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2442), 11, + STATE(5096), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1841), 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, - [180399] = 4, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [178740] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4848), 1, sym_comment, - ACTIONS(7428), 2, + ACTIONS(2443), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7426), 11, + ACTIONS(2441), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393870,15 +396359,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, - [180423] = 4, + [178764] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4849), 1, sym_comment, - ACTIONS(2348), 2, + ACTIONS(1879), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2346), 11, + ACTIONS(1877), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393890,49 +396379,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, - [180447] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3630), 1, - anon_sym_DOLLAR, - ACTIONS(4580), 1, - anon_sym_LPAREN2, - ACTIONS(4614), 1, - anon_sym_DOT, - ACTIONS(7924), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7926), 1, - aux_sym__immediate_decimal_token5, - STATE(4850), 1, - sym_comment, - STATE(5834), 1, - sym__immediate_decimal, - ACTIONS(7922), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5833), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1510), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [180485] = 8, - ACTIONS(251), 1, + [178788] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1895), 1, + ACTIONS(1847), 1, anon_sym_DASH2, - ACTIONS(8280), 1, + ACTIONS(8040), 1, anon_sym_DOT2, - STATE(4011), 1, + STATE(4025), 1, sym_path, - STATE(4302), 1, + STATE(4252), 1, sym_cell_path, - STATE(4851), 1, + STATE(4850), 1, sym_comment, - STATE(5061), 1, + STATE(5096), 1, aux_sym_cell_path_repeat1, - ACTIONS(1897), 8, + ACTIONS(1849), 8, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, @@ -393941,334 +396403,302 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [180517] = 8, - ACTIONS(251), 1, + [178820] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4851), 1, + sym_comment, + ACTIONS(7807), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7805), 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, + [178844] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1921), 1, - anon_sym_DASH2, - ACTIONS(8280), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4259), 1, - sym_cell_path, STATE(4852), 1, sym_comment, - STATE(5061), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1923), 8, + ACTIONS(8038), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(8036), 11, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [180549] = 8, - ACTIONS(251), 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, + [178868] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1855), 1, + ACTIONS(8250), 1, anon_sym_DASH2, - ACTIONS(8280), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4408), 1, - sym_cell_path, STATE(4853), 1, sym_comment, - STATE(5061), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1857), 8, + ACTIONS(8248), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, + 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, - anon_sym_LBRACE, - anon_sym_RBRACE, - [180581] = 8, - ACTIONS(251), 1, + [178892] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1941), 1, - anon_sym_DASH2, - ACTIONS(8280), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4343), 1, - sym_cell_path, STATE(4854), 1, sym_comment, - STATE(5061), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1943), 8, + ACTIONS(5122), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5124), 11, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [180613] = 8, - ACTIONS(251), 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, + [178916] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1891), 1, + ACTIONS(8254), 1, anon_sym_DASH2, - ACTIONS(8280), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4421), 1, - sym_cell_path, STATE(4855), 1, sym_comment, - STATE(5061), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1893), 8, + ACTIONS(8252), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, + 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, - anon_sym_LBRACE, - anon_sym_RBRACE, - [180645] = 8, - ACTIONS(251), 1, + [178940] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1909), 1, - anon_sym_DASH2, - ACTIONS(8280), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4466), 1, - sym_cell_path, STATE(4856), 1, sym_comment, - STATE(5061), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1911), 8, + ACTIONS(5102), 13, sym__newline, 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_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_RBRACE, - [180677] = 8, - ACTIONS(251), 1, + [178962] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1913), 1, + ACTIONS(8258), 1, anon_sym_DASH2, - ACTIONS(8280), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4257), 1, - sym_cell_path, STATE(4857), 1, sym_comment, - STATE(5061), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1915), 8, + ACTIONS(8256), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, + 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, - anon_sym_LBRACE, - anon_sym_RBRACE, - [180709] = 8, - ACTIONS(251), 1, + [178986] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1917), 1, + ACTIONS(8262), 1, anon_sym_DASH2, - ACTIONS(8280), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4260), 1, - sym_cell_path, STATE(4858), 1, sym_comment, - STATE(5061), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1919), 8, + ACTIONS(8260), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, + 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, - anon_sym_LBRACE, - anon_sym_RBRACE, - [180741] = 8, - ACTIONS(251), 1, + [179010] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1925), 1, - anon_sym_DASH2, - ACTIONS(8280), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4261), 1, - sym_cell_path, + ACTIONS(7974), 1, + aux_sym__immediate_decimal_token2, STATE(4859), 1, sym_comment, - STATE(5061), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1927), 8, + ACTIONS(1512), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1514), 9, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [180773] = 8, - ACTIONS(251), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [179036] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1929), 1, + ACTIONS(8266), 1, anon_sym_DASH2, - ACTIONS(8280), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4310), 1, - sym_cell_path, STATE(4860), 1, sym_comment, - STATE(5061), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1931), 8, + ACTIONS(8264), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, + 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, - anon_sym_LBRACE, - anon_sym_RBRACE, - [180805] = 8, - ACTIONS(251), 1, + [179060] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1933), 1, - anon_sym_DASH2, - ACTIONS(8280), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4320), 1, - sym_cell_path, STATE(4861), 1, sym_comment, - STATE(5061), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1935), 8, + ACTIONS(2320), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2318), 11, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [180837] = 8, - ACTIONS(251), 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, + [179084] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1937), 1, - anon_sym_DASH2, - ACTIONS(8280), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4335), 1, - sym_cell_path, STATE(4862), 1, sym_comment, - STATE(5061), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1939), 8, + ACTIONS(2415), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2413), 11, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [180869] = 8, - ACTIONS(251), 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, + [179108] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1945), 1, - anon_sym_DASH2, - ACTIONS(8280), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4340), 1, - sym_cell_path, STATE(4863), 1, sym_comment, - STATE(5061), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1947), 8, + ACTIONS(5146), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5148), 11, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [180901] = 8, - ACTIONS(251), 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, + [179132] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1949), 1, - anon_sym_DASH2, - ACTIONS(8280), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4347), 1, - sym_cell_path, STATE(4864), 1, sym_comment, - STATE(5061), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1951), 8, + ACTIONS(1991), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1985), 11, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [180933] = 8, - ACTIONS(251), 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, + [179156] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1953), 1, + ACTIONS(1853), 1, anon_sym_DASH2, - ACTIONS(8280), 1, + ACTIONS(8040), 1, anon_sym_DOT2, - STATE(4011), 1, + STATE(4025), 1, sym_path, - STATE(4349), 1, + STATE(4255), 1, sym_cell_path, STATE(4865), 1, sym_comment, - STATE(5061), 1, + STATE(5096), 1, aux_sym_cell_path_repeat1, - ACTIONS(1955), 8, + ACTIONS(1855), 8, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, @@ -394277,181 +396707,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [180965] = 8, - ACTIONS(251), 1, + [179188] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1957), 1, - anon_sym_DASH2, - ACTIONS(8280), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4351), 1, - sym_cell_path, + ACTIONS(8001), 1, + sym__newline, + ACTIONS(8268), 1, + anon_sym_else, STATE(4866), 1, sym_comment, - STATE(5061), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1959), 8, - sym__newline, + STATE(4867), 1, + aux_sym_shebang_repeat1, + ACTIONS(8004), 10, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [180997] = 8, - ACTIONS(251), 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, + [179216] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1961), 1, - anon_sym_DASH2, - ACTIONS(8280), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4354), 1, - sym_cell_path, + ACTIONS(7817), 1, + sym__newline, + ACTIONS(8270), 1, + anon_sym_else, STATE(4867), 1, sym_comment, - STATE(5061), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1963), 8, - sym__newline, + STATE(4870), 1, + aux_sym_shebang_repeat1, + ACTIONS(7820), 10, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [181029] = 8, - ACTIONS(251), 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, + [179244] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1965), 1, - anon_sym_DASH2, - ACTIONS(8280), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4377), 1, - sym_cell_path, + ACTIONS(7824), 1, + sym__newline, + ACTIONS(8272), 1, + anon_sym_else, STATE(4868), 1, sym_comment, - STATE(5061), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1967), 8, - sym__newline, + STATE(4871), 1, + aux_sym_shebang_repeat1, + ACTIONS(7827), 10, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [181061] = 8, - ACTIONS(251), 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, + [179272] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1969), 1, - anon_sym_DASH2, - ACTIONS(8280), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4440), 1, - sym_cell_path, + ACTIONS(7857), 1, + sym__newline, + ACTIONS(8274), 1, + anon_sym_else, STATE(4869), 1, sym_comment, - STATE(5061), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1971), 8, - sym__newline, + STATE(4872), 1, + aux_sym_shebang_repeat1, + ACTIONS(7860), 10, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [181093] = 8, - ACTIONS(251), 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, + [179300] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1979), 1, - anon_sym_DASH2, - ACTIONS(8280), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4442), 1, - sym_cell_path, + ACTIONS(4884), 1, + sym__newline, + ACTIONS(8276), 1, + anon_sym_else, + STATE(1615), 1, + aux_sym_shebang_repeat1, STATE(4870), 1, sym_comment, - STATE(5061), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1981), 8, - sym__newline, + ACTIONS(1296), 10, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [181125] = 8, - ACTIONS(251), 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, + [179328] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1905), 1, - anon_sym_DASH2, - ACTIONS(8280), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4444), 1, - sym_cell_path, + ACTIONS(7875), 1, + sym__newline, + ACTIONS(8279), 1, + anon_sym_else, STATE(4871), 1, sym_comment, - STATE(5061), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1907), 8, - sym__newline, + STATE(4876), 1, + aux_sym_shebang_repeat1, + ACTIONS(7878), 10, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [181157] = 8, - ACTIONS(251), 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, + [179356] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1983), 1, - anon_sym_DASH2, - ACTIONS(8280), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4445), 1, - sym_cell_path, + ACTIONS(7882), 1, + sym__newline, + ACTIONS(8281), 1, + anon_sym_else, STATE(4872), 1, sym_comment, - STATE(5061), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1985), 8, - sym__newline, + STATE(4877), 1, + aux_sym_shebang_repeat1, + ACTIONS(7885), 10, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [181189] = 3, - ACTIONS(251), 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, + [179384] = 6, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(7889), 1, + sym__newline, + ACTIONS(8283), 1, + anon_sym_else, STATE(4873), 1, sym_comment, - ACTIONS(8282), 13, - sym__newline, + STATE(4878), 1, + aux_sym_shebang_repeat1, + ACTIONS(7892), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -394462,14 +396883,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, - [181211] = 3, - ACTIONS(251), 1, + [179412] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(4874), 1, sym_comment, - ACTIONS(8284), 13, + ACTIONS(5138), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5140), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394481,96 +396903,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, - [181233] = 5, - ACTIONS(251), 1, + [179436] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1638), 1, - anon_sym_DASH2, - ACTIONS(7274), 1, - aux_sym__unquoted_in_record_token2, STATE(4875), 1, sym_comment, - ACTIONS(1650), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(5126), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5128), 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, - [181259] = 4, - ACTIONS(251), 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, + [179460] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8288), 1, - anon_sym_DASH2, - STATE(4876), 1, - sym_comment, - ACTIONS(8286), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(4884), 1, 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, - [181283] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2292), 1, - anon_sym_DASH2, - STATE(4877), 1, + ACTIONS(8285), 1, + anon_sym_else, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(4876), 1, sym_comment, - ACTIONS(2294), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, + ACTIONS(1296), 10, + 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, - [181307] = 4, - ACTIONS(251), 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, + [179488] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8292), 1, - anon_sym_DASH2, - STATE(4878), 1, - sym_comment, - ACTIONS(8290), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(4884), 1, 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, - [181331] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4879), 1, + ACTIONS(8288), 1, + anon_sym_else, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(4877), 1, sym_comment, - ACTIONS(8294), 13, - sym__newline, + ACTIONS(1296), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -394581,18 +396967,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, - [181353] = 4, - ACTIONS(3), 1, + [179516] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4880), 1, - sym_comment, - ACTIONS(2458), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2456), 11, + ACTIONS(7955), 1, sym__newline, + ACTIONS(8291), 1, + anon_sym_else, + STATE(4878), 1, + sym_comment, + STATE(4883), 1, + aux_sym_shebang_repeat1, + ACTIONS(7958), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -394603,66 +396989,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, - [181377] = 4, - ACTIONS(251), 1, + [179544] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8298), 1, + ACTIONS(1869), 1, anon_sym_DASH2, - STATE(4881), 1, + ACTIONS(8040), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4256), 1, + sym_cell_path, + STATE(4879), 1, sym_comment, - ACTIONS(8296), 12, - anon_sym_EQ, - sym_identifier, + STATE(5096), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1871), 8, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [181401] = 15, - ACTIONS(251), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + [179576] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7692), 1, + ACTIONS(7687), 1, sym_identifier, - ACTIONS(7698), 1, + ACTIONS(7693), 1, anon_sym_DOLLAR, - ACTIONS(7700), 1, + ACTIONS(7695), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7702), 1, + ACTIONS(7697), 1, anon_sym_DASH_DASH, - ACTIONS(7704), 1, + ACTIONS(7699), 1, anon_sym_DASH2, - ACTIONS(7795), 1, - anon_sym_RBRACK, - STATE(4069), 1, + ACTIONS(7781), 1, + anon_sym_PIPE, + STATE(4052), 1, sym_param_long_flag, - STATE(4231), 1, + STATE(4210), 1, sym__param_name, - STATE(4483), 1, + STATE(4488), 1, aux_sym_parameter_parens_repeat1, - STATE(4882), 1, + STATE(4880), 1, sym_comment, - STATE(5004), 1, + STATE(5133), 1, sym_param_rest, - STATE(5017), 1, + STATE(5134), 1, sym_param_opt, - STATE(5019), 1, + STATE(5135), 1, sym_param_short_flag, - STATE(5595), 1, + STATE(5589), 1, sym_parameter, - [181447] = 4, + [179622] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4883), 1, + STATE(4881), 1, sym_comment, - ACTIONS(2392), 2, + ACTIONS(5150), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2390), 11, + ACTIONS(5152), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394674,15 +397064,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, - [181471] = 4, - ACTIONS(3), 1, + [179646] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4884), 1, + STATE(4882), 1, sym_comment, - ACTIONS(2396), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2394), 11, + ACTIONS(8293), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394694,13 +397081,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, - [181495] = 3, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179668] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4885), 1, - sym_comment, - ACTIONS(7977), 13, + ACTIONS(4884), 1, sym__newline, + ACTIONS(8295), 1, + anon_sym_else, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(4883), 1, + sym_comment, + ACTIONS(1296), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -394711,17 +397105,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, + [179696] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8300), 1, + anon_sym_DASH2, + STATE(4884), 1, + sym_comment, + ACTIONS(8298), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [181517] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [179720] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4886), 1, + STATE(4885), 1, sym_comment, - ACTIONS(2400), 2, + ACTIONS(1907), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2398), 11, + ACTIONS(1905), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394733,66 +397145,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [181541] = 15, - ACTIONS(251), 1, + [179744] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7692), 1, - sym_identifier, - ACTIONS(7698), 1, + ACTIONS(3442), 1, + anon_sym_COLON2, + ACTIONS(8134), 1, anon_sym_DOLLAR, - ACTIONS(7700), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7702), 1, + ACTIONS(8136), 1, anon_sym_DASH_DASH, - ACTIONS(7704), 1, + ACTIONS(8138), 1, anon_sym_DASH2, - ACTIONS(7801), 1, - anon_sym_RPAREN, - STATE(4069), 1, - sym_param_long_flag, - STATE(4231), 1, - sym__param_name, - STATE(4483), 1, - aux_sym_parameter_parens_repeat1, - STATE(4887), 1, + ACTIONS(8140), 1, + anon_sym_LBRACE, + STATE(1759), 1, + sym_block, + STATE(1762), 1, + sym_val_closure, + STATE(4886), 1, sym_comment, - STATE(5004), 1, - sym_param_rest, - STATE(5017), 1, - sym_param_opt, - STATE(5019), 1, - sym_param_short_flag, - STATE(5595), 1, - sym_parameter, - [181587] = 4, - ACTIONS(3), 1, + STATE(5024), 1, + aux_sym_ctrl_do_repeat1, + STATE(5395), 1, + sym__flag, + STATE(814), 2, + sym__blosure, + sym_val_variable, + STATE(5200), 2, + sym_short_flag, + sym_long_flag, + [179786] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4888), 1, + ACTIONS(8302), 1, + aux_sym__immediate_decimal_token2, + STATE(4887), 1, sym_comment, - ACTIONS(2466), 2, + ACTIONS(1618), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1620), 9, ts_builtin_sym_end, - sym__space, - ACTIONS(2464), 11, sym__newline, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [179812] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8306), 1, + anon_sym_DASH2, + STATE(4888), 1, + sym_comment, + ACTIONS(8304), 12, + 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, - [181611] = 4, - ACTIONS(3), 1, + 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, + [179836] = 8, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(1877), 1, + anon_sym_DASH2, + ACTIONS(8040), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4258), 1, + sym_cell_path, STATE(4889), 1, sym_comment, - ACTIONS(7849), 2, + STATE(5096), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1879), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [179868] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4890), 1, + sym_comment, + ACTIONS(2423), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7847), 11, + ACTIONS(2421), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394804,35 +397259,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, - [181635] = 4, - ACTIONS(251), 1, + [179892] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8302), 1, + ACTIONS(1969), 1, anon_sym_DASH2, - STATE(4890), 1, + ACTIONS(8040), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4261), 1, + sym_cell_path, + STATE(4891), 1, sym_comment, - ACTIONS(8300), 12, - anon_sym_EQ, - sym_identifier, + STATE(5096), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1971), 8, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [181659] = 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + [179924] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4891), 1, + STATE(4892), 1, sym_comment, - ACTIONS(2322), 2, + ACTIONS(2439), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2320), 11, + ACTIONS(2437), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394844,12 +397303,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, - [181683] = 3, - ACTIONS(251), 1, + [179948] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4892), 1, + STATE(4893), 1, sym_comment, - ACTIONS(8304), 13, + ACTIONS(8308), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394863,12 +397322,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [181705] = 3, - ACTIONS(251), 1, + [179970] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4893), 1, + STATE(4894), 1, sym_comment, - ACTIONS(8306), 13, + ACTIONS(8310), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394882,12 +397341,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [181727] = 3, - ACTIONS(251), 1, + [179992] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4894), 1, + STATE(4895), 1, sym_comment, - ACTIONS(8308), 13, + ACTIONS(5142), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5144), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394899,41 +397361,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, - [181749] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1540), 1, - aux_sym_unquoted_token2, - ACTIONS(3630), 1, - anon_sym_DOLLAR, - ACTIONS(4580), 1, - anon_sym_LPAREN2, - ACTIONS(8240), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8242), 1, - aux_sym__immediate_decimal_token5, - STATE(4895), 1, - sym_comment, - STATE(6259), 1, - sym__immediate_decimal, - ACTIONS(8238), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1998), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1538), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [181787] = 3, - ACTIONS(251), 1, + [180016] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(4896), 1, sym_comment, - ACTIONS(8310), 13, + ACTIONS(8312), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394947,34 +397380,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [181809] = 4, - ACTIONS(251), 1, + [180038] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2308), 1, + ACTIONS(1833), 1, anon_sym_DASH2, + ACTIONS(8040), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4264), 1, + sym_cell_path, STATE(4897), 1, sym_comment, - ACTIONS(2310), 12, - anon_sym_EQ, - sym_identifier, + STATE(5096), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1835), 8, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [181833] = 4, - ACTIONS(251), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + [180070] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3420), 1, - anon_sym_COLON2, STATE(4898), 1, sym_comment, - ACTIONS(8174), 12, + ACTIONS(2479), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2477), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394986,35 +397424,78 @@ static const uint16_t 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, - [181857] = 4, - ACTIONS(251), 1, + [180094] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8314), 1, - anon_sym_DASH2, STATE(4899), 1, sym_comment, - ACTIONS(8312), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2049), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2043), 11, 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, + [180118] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1861), 1, + anon_sym_DASH2, + ACTIONS(8040), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4265), 1, + sym_cell_path, + STATE(4900), 1, + sym_comment, + STATE(5096), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1863), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [181881] = 4, - ACTIONS(251), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + [180150] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4901), 1, + sym_comment, + ACTIONS(7799), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7797), 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, + [180174] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8318), 1, + ACTIONS(8316), 1, anon_sym_DASH2, - STATE(4900), 1, + STATE(4902), 1, sym_comment, - ACTIONS(8316), 12, + ACTIONS(8314), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -395027,12 +397508,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [181905] = 3, - ACTIONS(251), 1, + [180198] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4901), 1, + STATE(4903), 1, sym_comment, - ACTIONS(8320), 13, + ACTIONS(8318), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395046,12 +397527,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [181927] = 3, - ACTIONS(251), 1, + [180220] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4902), 1, + STATE(4904), 1, sym_comment, - ACTIONS(8322), 13, + ACTIONS(1835), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1833), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395063,17 +397547,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_RBRACE, - [181949] = 4, - ACTIONS(3), 1, + [180244] = 11, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4903), 1, + ACTIONS(1562), 1, + aux_sym_unquoted_token2, + ACTIONS(3618), 1, + anon_sym_DOLLAR, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(8114), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8116), 1, + aux_sym__immediate_decimal_token5, + STATE(4905), 1, + sym_comment, + STATE(6201), 1, + sym__immediate_decimal, + ACTIONS(8112), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1823), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1560), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [180282] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8320), 1, + anon_sym_catch, + STATE(4906), 1, sym_comment, - ACTIONS(5035), 2, + ACTIONS(7840), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(5037), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395085,15 +397594,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, - [181973] = 4, - ACTIONS(3), 1, + [180306] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4904), 1, + STATE(4907), 1, sym_comment, - ACTIONS(5039), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5041), 11, + ACTIONS(5114), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395105,14 +397611,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, - [181997] = 4, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [180328] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8326), 1, + ACTIONS(8324), 1, anon_sym_DASH2, - STATE(4905), 1, + STATE(4908), 1, sym_comment, - ACTIONS(8324), 12, + ACTIONS(8322), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -395125,12 +397633,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [182021] = 3, - ACTIONS(251), 1, + [180352] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4906), 1, + STATE(4909), 1, sym_comment, - ACTIONS(8328), 13, + ACTIONS(5118), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5120), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395142,12 +397653,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, + [180376] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8328), 1, + anon_sym_DASH2, + STATE(4910), 1, + sym_comment, + ACTIONS(8326), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [182043] = 3, - ACTIONS(251), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [180400] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4907), 1, + STATE(4911), 1, sym_comment, ACTIONS(8330), 13, sym__newline, @@ -395163,34 +397692,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [182065] = 4, - ACTIONS(251), 1, + [180422] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8334), 1, - anon_sym_DASH2, - STATE(4908), 1, - sym_comment, - ACTIONS(8332), 12, - anon_sym_EQ, + ACTIONS(7687), 1, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(7693), 1, anon_sym_DOLLAR, - anon_sym_AT, + ACTIONS(7695), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7697), 1, anon_sym_DASH_DASH, - [182089] = 4, - ACTIONS(251), 1, + ACTIONS(7699), 1, + anon_sym_DASH2, + ACTIONS(7746), 1, + anon_sym_RBRACK, + STATE(4052), 1, + sym_param_long_flag, + STATE(4210), 1, + sym__param_name, + STATE(4488), 1, + aux_sym_parameter_parens_repeat1, + STATE(4912), 1, + sym_comment, + STATE(5133), 1, + sym_param_rest, + STATE(5134), 1, + sym_param_opt, + STATE(5135), 1, + sym_param_short_flag, + STATE(5589), 1, + sym_parameter, + [180468] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8338), 1, + ACTIONS(8334), 1, anon_sym_DASH2, - STATE(4909), 1, + STATE(4913), 1, sym_comment, - ACTIONS(8336), 12, + ACTIONS(8332), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -395203,22 +397743,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [182113] = 8, - ACTIONS(251), 1, + [180492] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(943), 1, + ACTIONS(1873), 1, anon_sym_DASH2, - ACTIONS(8280), 1, + ACTIONS(8040), 1, anon_sym_DOT2, - STATE(3871), 1, - sym_cell_path, - STATE(4011), 1, + STATE(4025), 1, sym_path, - STATE(4910), 1, + STATE(4266), 1, + sym_cell_path, + STATE(4914), 1, sym_comment, - STATE(5061), 1, + STATE(5096), 1, aux_sym_cell_path_repeat1, - ACTIONS(945), 8, + ACTIONS(1875), 8, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, @@ -395227,12 +397767,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [182145] = 3, - ACTIONS(251), 1, + [180524] = 15, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4911), 1, + ACTIONS(7687), 1, + sym_identifier, + ACTIONS(7693), 1, + anon_sym_DOLLAR, + ACTIONS(7695), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7697), 1, + anon_sym_DASH_DASH, + ACTIONS(7699), 1, + anon_sym_DASH2, + ACTIONS(7795), 1, + anon_sym_RPAREN, + STATE(4052), 1, + sym_param_long_flag, + STATE(4210), 1, + sym__param_name, + STATE(4488), 1, + aux_sym_parameter_parens_repeat1, + STATE(4915), 1, + sym_comment, + STATE(5133), 1, + sym_param_rest, + STATE(5134), 1, + sym_param_opt, + STATE(5135), 1, + sym_param_short_flag, + STATE(5589), 1, + sym_parameter, + [180570] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4916), 1, + sym_comment, + ACTIONS(1512), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1514), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [180594] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4917), 1, sym_comment, - ACTIONS(8340), 13, + ACTIONS(7980), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7978), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395244,14 +397838,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, - [182167] = 3, - ACTIONS(251), 1, + [180618] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4912), 1, + STATE(4918), 1, sym_comment, - ACTIONS(8342), 13, + ACTIONS(8038), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395265,39 +397857,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [182189] = 9, - ACTIONS(251), 1, + [180640] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1638), 1, - anon_sym_DASH2, - ACTIONS(4622), 1, - anon_sym_DOT_DOT2, - ACTIONS(7078), 1, - aux_sym_unquoted_token2, - ACTIONS(8344), 1, - sym_filesize_unit, - ACTIONS(8346), 1, - sym_duration_unit, - STATE(4913), 1, + ACTIONS(1532), 1, + sym__entry_separator, + ACTIONS(3110), 1, + anon_sym_DOLLAR, + ACTIONS(8214), 1, + anon_sym_LPAREN2, + ACTIONS(8236), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8238), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8240), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8242), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8336), 1, + anon_sym_DOT, + STATE(4919), 1, sym_comment, - ACTIONS(4624), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1650), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + STATE(5826), 1, + sym__immediate_decimal, + ACTIONS(1522), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - [182223] = 4, - ACTIONS(251), 1, + STATE(5821), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [180682] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8350), 1, + ACTIONS(8340), 1, anon_sym_DASH2, - STATE(4914), 1, + STATE(4920), 1, sym_comment, - ACTIONS(8348), 12, + ACTIONS(8338), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -395307,17 +397903,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT2, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [182247] = 4, - ACTIONS(251), 1, + [180706] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8354), 1, + ACTIONS(8344), 1, anon_sym_DASH2, - STATE(4915), 1, + STATE(4921), 1, sym_comment, - ACTIONS(8352), 12, + ACTIONS(8342), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -395330,83 +397926,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [182271] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3442), 1, - anon_sym_COLON2, - STATE(4916), 1, - sym_comment, - ACTIONS(8174), 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_RBRACE, - [182295] = 4, - ACTIONS(251), 1, + [180730] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3442), 1, - anon_sym_COLON2, - STATE(4917), 1, + ACTIONS(8348), 1, + anon_sym_DASH2, + STATE(4922), 1, sym_comment, - ACTIONS(8062), 12, + ACTIONS(8346), 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_RBRACE, - [182319] = 13, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3442), 1, - anon_sym_COLON2, - ACTIONS(8088), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(8090), 1, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - ACTIONS(8092), 1, - anon_sym_DASH2, - ACTIONS(8094), 1, - anon_sym_LBRACE, - STATE(1770), 1, - sym_block, - STATE(1787), 1, - sym_val_closure, - STATE(4918), 1, - sym_comment, - STATE(5140), 1, - aux_sym_ctrl_do_repeat1, - STATE(5334), 1, - sym__flag, - STATE(769), 2, - sym__blosure, - sym_val_variable, - STATE(5247), 2, - sym_short_flag, - sym_long_flag, - [182361] = 4, - ACTIONS(251), 1, + [180754] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8358), 1, + ACTIONS(8352), 1, anon_sym_DASH2, - STATE(4919), 1, + STATE(4923), 1, sym_comment, - ACTIONS(8356), 12, + ACTIONS(8350), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -395419,15 +397966,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [182385] = 4, + [180778] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4920), 1, + STATE(4924), 1, sym_comment, - ACTIONS(2326), 2, + ACTIONS(1959), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2324), 11, + ACTIONS(1957), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395439,14 +397986,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, - [182409] = 4, - ACTIONS(251), 1, + [180802] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8362), 1, + ACTIONS(8356), 1, anon_sym_DASH2, - STATE(4921), 1, + STATE(4925), 1, sym_comment, - ACTIONS(8360), 12, + ACTIONS(8354), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -395459,34 +398006,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [182433] = 4, - ACTIONS(251), 1, + [180826] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8366), 1, + ACTIONS(1881), 1, anon_sym_DASH2, - STATE(4922), 1, + ACTIONS(8040), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4267), 1, + sym_cell_path, + STATE(4926), 1, sym_comment, - ACTIONS(8364), 12, - anon_sym_EQ, - sym_identifier, + STATE(5096), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1883), 8, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [180858] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7687), 1, + sym_identifier, + ACTIONS(7693), 1, + anon_sym_DOLLAR, + ACTIONS(7695), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7697), 1, anon_sym_DASH_DASH, - [182457] = 4, - ACTIONS(251), 1, + ACTIONS(7699), 1, + anon_sym_DASH2, + ACTIONS(8358), 1, + anon_sym_RPAREN, + STATE(4052), 1, + sym_param_long_flag, + STATE(4210), 1, + sym__param_name, + STATE(4488), 1, + aux_sym_parameter_parens_repeat1, + STATE(4927), 1, + sym_comment, + STATE(5133), 1, + sym_param_rest, + STATE(5134), 1, + sym_param_opt, + STATE(5135), 1, + sym_param_short_flag, + STATE(5589), 1, + sym_parameter, + [180904] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8368), 1, - anon_sym_else, - STATE(4923), 1, + ACTIONS(3442), 1, + anon_sym_COLON2, + STATE(4928), 1, sym_comment, - ACTIONS(8096), 12, + ACTIONS(8124), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395498,15 +398080,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_RBRACE, + [180928] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8362), 1, + anon_sym_DASH2, + STATE(4929), 1, + sym_comment, + ACTIONS(8360), 12, + 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, + [180952] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4930), 1, + sym_comment, + ACTIONS(1504), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1506), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RPAREN, - [182481] = 4, - ACTIONS(251), 1, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [180976] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8372), 1, + ACTIONS(7853), 1, anon_sym_DASH2, - STATE(4924), 1, + STATE(4931), 1, sym_comment, - ACTIONS(8370), 12, + ACTIONS(7849), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -395519,14 +398141,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [182505] = 4, - ACTIONS(251), 1, + [181000] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8376), 1, + ACTIONS(8366), 1, anon_sym_DASH2, - STATE(4925), 1, + STATE(4932), 1, sym_comment, - ACTIONS(8374), 12, + ACTIONS(8364), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -395539,14 +398161,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [182529] = 4, - ACTIONS(251), 1, + [181024] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8380), 1, + ACTIONS(8370), 1, anon_sym_DASH2, - STATE(4926), 1, + STATE(4933), 1, sym_comment, - ACTIONS(8378), 12, + ACTIONS(8368), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -395559,15 +398181,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [182553] = 4, - ACTIONS(3), 1, + [181048] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4927), 1, + STATE(4934), 1, sym_comment, - ACTIONS(2408), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2406), 11, + ACTIONS(8372), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395579,14 +398198,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, - [182577] = 4, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [181070] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7995), 1, + ACTIONS(8376), 1, anon_sym_DASH2, - STATE(4928), 1, + STATE(4935), 1, + sym_comment, + ACTIONS(8374), 12, + 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, + [181094] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8380), 1, + anon_sym_DASH2, + STATE(4936), 1, sym_comment, - ACTIONS(7991), 12, + ACTIONS(8378), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -395599,15 +398240,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [182601] = 4, + [181118] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4929), 1, + STATE(4937), 1, sym_comment, - ACTIONS(2412), 2, + ACTIONS(7440), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2410), 11, + ACTIONS(7438), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395619,84 +398260,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, - [182625] = 6, - ACTIONS(251), 1, + [181142] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8025), 1, - sym__newline, + ACTIONS(1639), 1, + anon_sym_DASH2, + ACTIONS(4608), 1, + anon_sym_DOT_DOT2, + ACTIONS(7070), 1, + aux_sym_unquoted_token2, ACTIONS(8382), 1, - anon_sym_else, - STATE(4930), 1, + sym_filesize_unit, + ACTIONS(8384), 1, + sym_duration_unit, + STATE(4938), 1, sym_comment, - STATE(4931), 1, - aux_sym_shebang_repeat1, - ACTIONS(8028), 10, + ACTIONS(4610), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1651), 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, - [182653] = 6, - ACTIONS(251), 1, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + [181176] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7855), 1, - sym__newline, - ACTIONS(8384), 1, - anon_sym_else, - STATE(4931), 1, + ACTIONS(8388), 1, + anon_sym_DASH2, + STATE(4939), 1, sym_comment, - STATE(4934), 1, - aux_sym_shebang_repeat1, - ACTIONS(7858), 10, - anon_sym_SEMI, + ACTIONS(8386), 12, + 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, - [182681] = 6, - ACTIONS(251), 1, + 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, + [181200] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7862), 1, - sym__newline, - ACTIONS(8386), 1, - anon_sym_else, - STATE(4932), 1, + ACTIONS(8392), 1, + anon_sym_DASH2, + STATE(4940), 1, sym_comment, - STATE(4935), 1, - aux_sym_shebang_repeat1, - ACTIONS(7865), 10, - anon_sym_SEMI, + ACTIONS(8390), 12, + 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, - [182709] = 6, - ACTIONS(251), 1, + 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, + [181224] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7869), 1, - sym__newline, - ACTIONS(8388), 1, - anon_sym_else, - STATE(4933), 1, + STATE(4941), 1, sym_comment, - STATE(4936), 1, - aux_sym_shebang_repeat1, - ACTIONS(7872), 10, + ACTIONS(1963), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1961), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -395707,62 +398345,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [182737] = 6, - ACTIONS(251), 1, + [181248] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5107), 1, - sym__newline, - ACTIONS(8390), 1, - anon_sym_else, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4934), 1, + ACTIONS(8396), 1, + anon_sym_DASH2, + STATE(4942), 1, sym_comment, - ACTIONS(1298), 10, - anon_sym_SEMI, + ACTIONS(8394), 12, + 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, - [182765] = 6, - ACTIONS(251), 1, + 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, + [181272] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7999), 1, - sym__newline, - ACTIONS(8393), 1, - anon_sym_else, - STATE(4935), 1, + STATE(4943), 1, sym_comment, - STATE(4938), 1, - aux_sym_shebang_repeat1, - ACTIONS(8002), 10, + ACTIONS(1618), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1620), 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, - [182793] = 6, - ACTIONS(251), 1, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [181296] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8006), 1, - sym__newline, - ACTIONS(8395), 1, - anon_sym_else, - STATE(4936), 1, - sym_comment, - STATE(4939), 1, - aux_sym_shebang_repeat1, - ACTIONS(8009), 10, + STATE(4944), 1, + sym_comment, + ACTIONS(2475), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2473), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -395773,18 +398405,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, - [182821] = 6, - ACTIONS(251), 1, + [181320] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8013), 1, - sym__newline, - ACTIONS(8397), 1, - anon_sym_else, - STATE(4937), 1, + STATE(4945), 1, sym_comment, - STATE(4940), 1, - aux_sym_shebang_repeat1, - ACTIONS(8016), 10, + ACTIONS(6953), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -395795,18 +398422,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, - [182849] = 6, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [181342] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5107), 1, - sym__newline, - ACTIONS(8399), 1, - anon_sym_else, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4938), 1, + STATE(4946), 1, sym_comment, - ACTIONS(1298), 10, + ACTIONS(2471), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2469), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -395817,18 +398444,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, - [182877] = 6, - ACTIONS(251), 1, + [181366] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5107), 1, + ACTIONS(1885), 1, + anon_sym_DASH2, + ACTIONS(8040), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4269), 1, + sym_cell_path, + STATE(4947), 1, + sym_comment, + STATE(5096), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1887), 8, sym__newline, - ACTIONS(8402), 1, - anon_sym_else, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4939), 1, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [181398] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4948), 1, sym_comment, - ACTIONS(1298), 10, + ACTIONS(5691), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5689), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -395839,18 +398488,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, - [182905] = 6, - ACTIONS(251), 1, + [181422] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7835), 1, - sym__newline, - ACTIONS(8405), 1, - anon_sym_else, - STATE(4940), 1, + STATE(4949), 1, sym_comment, - STATE(4942), 1, - aux_sym_shebang_repeat1, - ACTIONS(7838), 10, + ACTIONS(5663), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5661), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -395861,15 +398508,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, - [182933] = 4, + [181446] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4941), 1, + STATE(4950), 1, sym_comment, - ACTIONS(2507), 2, + ACTIONS(7436), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2505), 11, + ACTIONS(7434), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395881,18 +398528,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, - [182957] = 6, - ACTIONS(251), 1, + [181470] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5107), 1, - sym__newline, - ACTIONS(8407), 1, + ACTIONS(8398), 1, anon_sym_else, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4942), 1, + STATE(4951), 1, sym_comment, - ACTIONS(1298), 10, + ACTIONS(8168), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -395903,35 +398547,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, - [182985] = 4, - ACTIONS(251), 1, + anon_sym_RBRACE, + [181494] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8412), 1, - anon_sym_DASH2, - STATE(4943), 1, + STATE(4952), 1, sym_comment, - ACTIONS(8410), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(1689), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1691), 10, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [183009] = 4, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [181518] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4944), 1, + STATE(4953), 1, sym_comment, - ACTIONS(2420), 2, + ACTIONS(7803), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2418), 11, + ACTIONS(7801), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395943,15 +398588,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, - [183033] = 4, - ACTIONS(3), 1, + [181542] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4945), 1, + STATE(4954), 1, sym_comment, - ACTIONS(2424), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2422), 11, + ACTIONS(8400), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395963,15 +398605,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, - [183057] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [181564] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4946), 1, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(4955), 1, sym_comment, - ACTIONS(2428), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2426), 11, + ACTIONS(8402), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395983,15 +398626,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, - [183081] = 4, + anon_sym_RPAREN, + [181588] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4947), 1, + STATE(4956), 1, sym_comment, - ACTIONS(2432), 2, + ACTIONS(1863), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2430), 11, + ACTIONS(1861), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396003,14 +398647,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, - [183105] = 4, - ACTIONS(251), 1, + [181612] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8416), 1, + ACTIONS(8406), 1, anon_sym_DASH2, - STATE(4948), 1, + STATE(4957), 1, sym_comment, - ACTIONS(8414), 12, + ACTIONS(8404), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -396023,15 +398667,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [183129] = 4, - ACTIONS(3), 1, + [181636] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4949), 1, + STATE(4752), 1, + aux_sym_shebang_repeat1, + STATE(4958), 1, sym_comment, - ACTIONS(1919), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1917), 11, + ACTIONS(8408), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396043,14 +398686,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, - [183153] = 4, - ACTIONS(251), 1, + anon_sym_RPAREN, + [181660] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8420), 1, + ACTIONS(8412), 1, anon_sym_DASH2, - STATE(4950), 1, + STATE(4959), 1, sym_comment, - ACTIONS(8418), 12, + ACTIONS(8410), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -396060,38 +398704,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, + anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [183177] = 4, + [181684] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4951), 1, - sym_comment, - ACTIONS(2330), 2, - ts_builtin_sym_end, + ACTIONS(8416), 1, sym__space, - ACTIONS(2328), 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, - [183201] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4952), 1, + STATE(4960), 1, sym_comment, - ACTIONS(2334), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2332), 11, + ACTIONS(8414), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396103,15 +398726,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, - [183225] = 4, + anon_sym_RPAREN, + [181708] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4953), 1, + STATE(4961), 1, sym_comment, - ACTIONS(1939), 2, + ACTIONS(5667), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1937), 11, + ACTIONS(5665), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396123,14 +398747,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, - [183249] = 4, - ACTIONS(251), 1, + [181732] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8424), 1, + ACTIONS(8420), 1, + anon_sym_QMARK, + ACTIONS(8422), 1, anon_sym_DASH2, - STATE(4954), 1, + STATE(4962), 1, sym_comment, - ACTIONS(8422), 12, + ACTIONS(8418), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -396140,18 +398766,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [183273] = 4, - ACTIONS(3), 1, + [181758] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4955), 1, + STATE(4963), 1, sym_comment, - ACTIONS(1951), 2, + ACTIONS(8372), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(1949), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396163,15 +398786,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, - [183297] = 4, - ACTIONS(3), 1, + [181779] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4956), 1, + STATE(4964), 1, sym_comment, - ACTIONS(7977), 2, + ACTIONS(8096), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(7975), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396183,15 +398804,207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [183321] = 4, + [181800] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8426), 1, + anon_sym_DASH2, + STATE(4965), 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, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [181823] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8430), 1, + anon_sym_DASH2, + STATE(4966), 1, + sym_comment, + ACTIONS(8428), 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, + [181846] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8434), 1, + anon_sym_DASH2, + STATE(4967), 1, + sym_comment, + ACTIONS(8432), 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, + [181869] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8438), 1, + anon_sym_DASH2, + STATE(4968), 1, + sym_comment, + ACTIONS(8436), 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, + [181892] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8442), 1, + anon_sym_LBRACK, + ACTIONS(8444), 1, + anon_sym_DASH_DASH, + ACTIONS(8446), 1, + anon_sym_DASH2, + STATE(4969), 1, + sym_comment, + STATE(5006), 1, + aux_sym_overlay_hide_repeat1, + STATE(5200), 2, + sym_short_flag, + sym_long_flag, + STATE(5611), 2, + sym_val_list, + sym__flag, + ACTIONS(8440), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [181925] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(4957), 1, + ACTIONS(1441), 1, + anon_sym_RBRACE, + ACTIONS(1455), 1, + sym__entry_separator, + ACTIONS(1457), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(3110), 1, + anon_sym_DOLLAR, + ACTIONS(8214), 1, + anon_sym_LPAREN2, + ACTIONS(8448), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8450), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8452), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8454), 1, + aux_sym__immediate_decimal_token5, + STATE(4970), 1, sym_comment, - ACTIONS(1955), 2, + STATE(6216), 1, + sym__immediate_decimal, + STATE(7006), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [181966] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8458), 1, + anon_sym_DASH2, + STATE(4971), 1, + sym_comment, + ACTIONS(8456), 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, + [181989] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1558), 1, + anon_sym_RBRACE, + ACTIONS(1560), 1, + sym__entry_separator, + ACTIONS(1562), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(3110), 1, + anon_sym_DOLLAR, + ACTIONS(8214), 1, + anon_sym_LPAREN2, + ACTIONS(8448), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8450), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8452), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8454), 1, + aux_sym__immediate_decimal_token5, + STATE(4972), 1, + sym_comment, + STATE(6361), 1, + sym__immediate_decimal, + STATE(6931), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [182030] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2043), 1, + anon_sym_DASH2, + STATE(4973), 1, + sym_comment, + ACTIONS(2049), 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, + [182053] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4974), 1, + sym_comment, + ACTIONS(8308), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(1953), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396203,15 +399016,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, - [183345] = 4, - ACTIONS(3), 1, + [182074] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4958), 1, + STATE(4975), 1, sym_comment, - ACTIONS(2338), 2, + ACTIONS(8310), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(2336), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396223,15 +399034,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, - [183369] = 4, - ACTIONS(3), 1, + [182095] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4959), 1, + STATE(4976), 1, sym_comment, - ACTIONS(1967), 2, + ACTIONS(8166), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(1965), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396243,14 +399052,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, - [183393] = 4, - ACTIONS(251), 1, + [182116] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8428), 1, + ACTIONS(2374), 1, anon_sym_DASH2, - STATE(4960), 1, + STATE(4977), 1, sym_comment, - ACTIONS(8426), 12, + ACTIONS(2376), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -396260,70 +399069,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [183417] = 4, - ACTIONS(251), 1, + [182139] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4961), 1, + ACTIONS(2030), 1, + anon_sym_DASH2, + STATE(4978), 1, sym_comment, - ACTIONS(8430), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(8432), 10, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - [183440] = 3, - ACTIONS(251), 1, + ACTIONS(2036), 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, + [182162] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4962), 1, + ACTIONS(1977), 1, + anon_sym_DASH2, + STATE(4979), 1, sym_comment, - ACTIONS(8062), 12, - ts_builtin_sym_end, + ACTIONS(1983), 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, - [183461] = 3, - ACTIONS(251), 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, + [182185] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4963), 1, + ACTIONS(1985), 1, + anon_sym_DASH2, + STATE(4980), 1, sym_comment, - ACTIONS(8434), 12, + ACTIONS(1991), 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, - [183482] = 3, - ACTIONS(251), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [182208] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4964), 1, + STATE(4981), 1, sym_comment, - ACTIONS(8436), 12, + ACTIONS(5102), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396335,31 +399146,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, - [183503] = 3, - ACTIONS(251), 1, + [182229] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4965), 1, + STATE(4982), 1, sym_comment, - ACTIONS(8438), 12, + ACTIONS(1512), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1514), 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, - [183524] = 3, - ACTIONS(251), 1, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [182252] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4966), 1, + STATE(4983), 1, sym_comment, - ACTIONS(8208), 12, + ACTIONS(5114), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -396372,32 +399183,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, - [183545] = 3, - ACTIONS(251), 1, + [182273] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4967), 1, + STATE(4984), 1, sym_comment, - ACTIONS(8294), 12, + ACTIONS(1504), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1506), 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, - [183566] = 4, - ACTIONS(251), 1, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [182296] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2390), 1, + ACTIONS(2356), 1, anon_sym_DASH2, - STATE(4968), 1, + STATE(4985), 1, sym_comment, - ACTIONS(2392), 11, + ACTIONS(2358), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -396409,42 +399221,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [183589] = 13, - ACTIONS(3), 1, + [182319] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5404), 1, - anon_sym_LPAREN2, - ACTIONS(5408), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5410), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5734), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8440), 1, - anon_sym_RBRACK, - ACTIONS(8442), 1, - anon_sym_DOLLAR, - ACTIONS(8444), 1, - anon_sym_DOLLAR2, - ACTIONS(8446), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8448), 1, - aux_sym__immediate_decimal_token5, - STATE(2857), 1, - sym__immediate_decimal, - STATE(4969), 1, + STATE(4986), 1, sym_comment, - STATE(2878), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [183630] = 4, - ACTIONS(251), 1, + ACTIONS(1618), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1620), 9, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [182342] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2394), 1, + ACTIONS(2360), 1, anon_sym_DASH2, - STATE(4970), 1, + STATE(4987), 1, sym_comment, - ACTIONS(2396), 11, + ACTIONS(2362), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -396456,14 +399259,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [183653] = 4, - ACTIONS(251), 1, + [182365] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2398), 1, + ACTIONS(2370), 1, anon_sym_DASH2, - STATE(4971), 1, + STATE(4988), 1, sym_comment, - ACTIONS(2400), 11, + ACTIONS(2372), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -396475,14 +399278,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [183676] = 4, - ACTIONS(251), 1, + [182388] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2406), 1, + STATE(4989), 1, + sym_comment, + ACTIONS(1689), 3, anon_sym_DASH2, - STATE(4972), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1691), 9, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [182411] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2453), 1, + anon_sym_DASH2, + STATE(4990), 1, sym_comment, - ACTIONS(2408), 11, + ACTIONS(2455), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -396494,14 +399316,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [183699] = 4, - ACTIONS(251), 1, + [182434] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2410), 1, + ACTIONS(2425), 1, anon_sym_DASH2, - STATE(4973), 1, + STATE(4991), 1, sym_comment, - ACTIONS(2412), 11, + ACTIONS(2427), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -396513,14 +399335,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [183722] = 4, - ACTIONS(251), 1, + [182457] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2505), 1, + ACTIONS(2433), 1, anon_sym_DASH2, - STATE(4974), 1, + STATE(4992), 1, sym_comment, - ACTIONS(2507), 11, + ACTIONS(2435), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -396532,14 +399354,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [183745] = 4, - ACTIONS(251), 1, + [182480] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2418), 1, + ACTIONS(2449), 1, anon_sym_DASH2, - STATE(4975), 1, + STATE(4993), 1, sym_comment, - ACTIONS(2420), 11, + ACTIONS(2451), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -396551,14 +399373,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [183768] = 4, - ACTIONS(251), 1, + [182503] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2422), 1, + ACTIONS(2465), 1, anon_sym_DASH2, - STATE(4976), 1, + STATE(4994), 1, sym_comment, - ACTIONS(2424), 11, + ACTIONS(2467), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -396570,14 +399392,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [183791] = 4, - ACTIONS(251), 1, + [182526] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2426), 1, + ACTIONS(2481), 1, anon_sym_DASH2, - STATE(4977), 1, + STATE(4995), 1, sym_comment, - ACTIONS(2428), 11, + ACTIONS(2483), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -396589,14 +399411,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [183814] = 4, - ACTIONS(251), 1, + [182549] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2430), 1, + ACTIONS(2485), 1, anon_sym_DASH2, - STATE(4978), 1, + STATE(4996), 1, sym_comment, - ACTIONS(2432), 11, + ACTIONS(2487), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -396608,30 +399430,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [183837] = 3, - ACTIONS(251), 1, + [182572] = 13, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4979), 1, + ACTIONS(1441), 1, + anon_sym_RBRACE, + ACTIONS(1455), 1, + sym__entry_separator, + ACTIONS(3110), 1, + anon_sym_DOLLAR, + ACTIONS(8214), 1, + anon_sym_LPAREN2, + ACTIONS(8236), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8238), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8240), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8242), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8460), 1, + anon_sym_DOT, + STATE(4997), 1, sym_comment, - ACTIONS(8450), 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, - [183858] = 3, - ACTIONS(251), 1, + STATE(5923), 1, + sym__immediate_decimal, + STATE(5839), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [182613] = 13, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4980), 1, + ACTIONS(2634), 1, + anon_sym_DOLLAR, + ACTIONS(5465), 1, + anon_sym_LPAREN2, + ACTIONS(5469), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5471), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5473), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(5575), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8462), 1, + anon_sym_RBRACK, + ACTIONS(8464), 1, + anon_sym_DOLLAR2, + ACTIONS(8466), 1, + aux_sym__immediate_decimal_token1, + STATE(2704), 1, + sym__immediate_decimal, + STATE(4998), 1, + sym_comment, + STATE(2873), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [182654] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4999), 1, sym_comment, - ACTIONS(6863), 12, + ACTIONS(8038), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -396644,40 +399504,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, - [183879] = 13, + [182675] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5404), 1, + ACTIONS(5514), 1, anon_sym_LPAREN2, - ACTIONS(5408), 1, + ACTIONS(5518), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5410), 1, + ACTIONS(5520), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5734), 1, + ACTIONS(5752), 1, aux_sym__unquoted_in_list_token3, - ACTIONS(8442), 1, - anon_sym_DOLLAR, - ACTIONS(8444), 1, + ACTIONS(8464), 1, anon_sym_DOLLAR2, - ACTIONS(8446), 1, + ACTIONS(8468), 1, + anon_sym_RBRACK, + ACTIONS(8470), 1, + anon_sym_DOLLAR, + ACTIONS(8472), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8448), 1, + ACTIONS(8474), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8452), 1, - anon_sym_RBRACK, - STATE(2857), 1, + STATE(2888), 1, sym__immediate_decimal, - STATE(4981), 1, + STATE(5000), 1, sym_comment, - STATE(2878), 2, + STATE(2944), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [183920] = 3, - ACTIONS(251), 1, + [182716] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4982), 1, + STATE(5001), 1, + sym_comment, + ACTIONS(8293), 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, + [182737] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5002), 1, sym_comment, - ACTIONS(8454), 12, + ACTIONS(8312), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396689,15 +399568,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, + [182758] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7779), 1, + anon_sym_DASH2, + STATE(5003), 1, + sym_comment, + ACTIONS(7777), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [183941] = 4, - ACTIONS(251), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [182781] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7669), 1, + ACTIONS(8478), 1, anon_sym_DASH2, - STATE(4983), 1, + STATE(5004), 1, sym_comment, - ACTIONS(7667), 11, + ACTIONS(8476), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -396709,75 +399606,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [183964] = 3, - ACTIONS(251), 1, + [182804] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4984), 1, + ACTIONS(8482), 1, + anon_sym_DASH2, + STATE(5005), 1, sym_comment, - ACTIONS(8456), 12, + ACTIONS(8480), 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, - [183985] = 3, - ACTIONS(251), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [182827] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4985), 1, + ACTIONS(8484), 1, + anon_sym_LBRACK, + ACTIONS(8487), 1, + anon_sym_DASH_DASH, + ACTIONS(8490), 1, + anon_sym_DASH2, + STATE(5006), 2, sym_comment, - ACTIONS(8458), 12, + aux_sym_overlay_hide_repeat1, + STATE(5200), 2, + sym_short_flag, + sym_long_flag, + STATE(5611), 2, + sym_val_list, + sym__flag, + ACTIONS(6259), 4, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [184006] = 12, - ACTIONS(251), 1, + anon_sym_RBRACE, + [182858] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3132), 1, + ACTIONS(3140), 1, anon_sym_DQUOTE, - ACTIONS(3138), 1, + ACTIONS(3146), 1, sym_raw_string_begin, - ACTIONS(8460), 1, + ACTIONS(8493), 1, sym_identifier, - ACTIONS(8462), 1, + ACTIONS(8495), 1, sym__newline, - ACTIONS(8464), 1, + ACTIONS(8497), 1, anon_sym_GT2, - STATE(4986), 1, + STATE(5007), 1, sym_comment, - STATE(5187), 1, + STATE(5167), 1, aux_sym_shebang_repeat1, - STATE(5388), 1, + STATE(5401), 1, aux_sym_collection_type_repeat1, - STATE(6423), 1, + STATE(6348), 1, sym_val_string, - ACTIONS(3134), 2, + ACTIONS(3142), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(5195), 2, + STATE(5291), 2, sym__raw_str, sym__str_double_quotes, - [184045] = 3, - ACTIONS(251), 1, + [182897] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4987), 1, + ACTIONS(8501), 1, + anon_sym_DASH2, + STATE(5008), 1, + sym_comment, + ACTIONS(8499), 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, + [182920] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5009), 1, sym_comment, - ACTIONS(8174), 12, + ACTIONS(6961), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -396790,39 +399712,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, - [184066] = 6, - ACTIONS(3), 1, + [182941] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8466), 1, - anon_sym_DOT, - ACTIONS(8468), 1, - aux_sym__immediate_decimal_token2, - STATE(4988), 1, + STATE(5010), 1, sym_comment, - ACTIONS(1550), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1552), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [184093] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(8046), 12, + ts_builtin_sym_end, sym__newline, - STATE(756), 1, - aux_sym__pipe_separator, - STATE(4989), 1, - sym_comment, - STATE(5156), 1, - aux_sym_shebang_repeat1, - ACTIONS(2536), 9, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -396832,12 +399730,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, - [184120] = 3, - ACTIONS(251), 1, + [182962] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4990), 1, + STATE(5011), 1, sym_comment, - ACTIONS(8470), 12, + ACTIONS(8503), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396850,34 +399748,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [184141] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8472), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8474), 1, - aux_sym__immediate_decimal_token2, - STATE(4991), 1, - sym_comment, - ACTIONS(1542), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1544), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [184168] = 3, - ACTIONS(251), 1, + [182983] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4992), 1, + STATE(5012), 1, sym_comment, - ACTIONS(8270), 12, - ts_builtin_sym_end, + ACTIONS(8505), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396889,13 +399765,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, - [184189] = 3, - ACTIONS(251), 1, + anon_sym_RPAREN, + [183004] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4993), 1, + STATE(5013), 1, sym_comment, - ACTIONS(8176), 12, - ts_builtin_sym_end, + ACTIONS(8507), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396907,12 +399783,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, - [184210] = 3, - ACTIONS(251), 1, + anon_sym_RPAREN, + [183025] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4994), 1, + STATE(5014), 1, sym_comment, - ACTIONS(6961), 12, + ACTIONS(8509), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396925,191 +399802,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [184231] = 4, - ACTIONS(251), 1, + [183046] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8478), 1, - anon_sym_DASH2, - STATE(4995), 1, + STATE(5015), 1, sym_comment, - ACTIONS(8476), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8511), 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, - [184254] = 10, - ACTIONS(251), 1, + [183067] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3630), 1, - anon_sym_DOLLAR, - ACTIONS(4580), 1, - anon_sym_LPAREN2, - ACTIONS(7924), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7926), 1, - aux_sym__immediate_decimal_token5, - STATE(2076), 1, - sym__immediate_decimal, - STATE(4996), 1, + STATE(5016), 1, sym_comment, - ACTIONS(8480), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2075), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1510), 3, + ACTIONS(8513), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [184289] = 10, - ACTIONS(251), 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, + [183088] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3630), 1, - anon_sym_DOLLAR, - ACTIONS(4580), 1, - anon_sym_LPAREN2, - ACTIONS(7924), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7926), 1, - aux_sym__immediate_decimal_token5, - STATE(1986), 1, - sym__immediate_decimal, - STATE(4997), 1, + STATE(5017), 1, sym_comment, - ACTIONS(8480), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1984), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1626), 3, + ACTIONS(8515), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [184324] = 10, - ACTIONS(251), 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, + [183109] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3630), 1, - anon_sym_DOLLAR, - ACTIONS(4580), 1, - anon_sym_LPAREN2, - ACTIONS(7924), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7926), 1, - aux_sym__immediate_decimal_token5, - STATE(1995), 1, - sym__immediate_decimal, - STATE(4998), 1, + STATE(5018), 1, sym_comment, - ACTIONS(8480), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1994), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1656), 3, + ACTIONS(8517), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [184359] = 10, - ACTIONS(251), 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, + [183130] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3630), 1, - anon_sym_DOLLAR, - ACTIONS(4580), 1, - anon_sym_LPAREN2, - ACTIONS(7924), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7926), 1, - aux_sym__immediate_decimal_token5, - STATE(1997), 1, - sym__immediate_decimal, - STATE(4999), 1, + STATE(5019), 1, sym_comment, - ACTIONS(8480), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1996), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1612), 3, + ACTIONS(8519), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [184394] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1536), 1, - anon_sym_RBRACK, - ACTIONS(1538), 1, - sym__entry_separator, - ACTIONS(1540), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(3102), 1, - anon_sym_DOLLAR, - ACTIONS(8148), 1, - anon_sym_LPAREN2, - ACTIONS(8482), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8484), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8486), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8488), 1, - aux_sym__immediate_decimal_token5, - STATE(5000), 1, - sym_comment, - STATE(6613), 1, - sym__immediate_decimal, - STATE(6752), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [184435] = 11, - ACTIONS(251), 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, + [183151] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1540), 1, - aux_sym_unquoted_token2, - ACTIONS(3630), 1, - anon_sym_DOLLAR, - ACTIONS(4580), 1, - anon_sym_LPAREN2, - ACTIONS(8492), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8494), 1, - aux_sym__immediate_decimal_token5, - STATE(5001), 1, + STATE(5020), 1, sym_comment, - STATE(7291), 1, - sym__immediate_decimal, - ACTIONS(1538), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(8490), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1998), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [184472] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(8521), 12, sym__newline, - STATE(755), 1, - aux_sym__pipe_separator, - STATE(5002), 1, - sym_comment, - STATE(5156), 1, - aux_sym_shebang_repeat1, - ACTIONS(2536), 9, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -397119,68 +399909,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, - [184499] = 4, - ACTIONS(251), 1, + anon_sym_RPAREN, + [183172] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8498), 1, - anon_sym_DASH2, - STATE(5003), 1, + STATE(5021), 1, sym_comment, - ACTIONS(8496), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6953), 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_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [183193] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8134), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + ACTIONS(8136), 1, anon_sym_DASH_DASH, - [184522] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8502), 1, + ACTIONS(8138), 1, anon_sym_DASH2, - STATE(5004), 1, + ACTIONS(8140), 1, + anon_sym_LBRACE, + STATE(1759), 1, + sym_block, + STATE(1762), 1, + sym_val_closure, + STATE(5022), 1, sym_comment, - ACTIONS(8500), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, + STATE(5024), 1, + aux_sym_ctrl_do_repeat1, + STATE(5395), 1, + sym__flag, + STATE(814), 2, + sym__blosure, + sym_val_variable, + STATE(5200), 2, + sym_short_flag, + sym_long_flag, + [183232] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1558), 1, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1560), 1, + sym__entry_separator, + ACTIONS(1562), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(3110), 1, + anon_sym_DOLLAR, + ACTIONS(8214), 1, + anon_sym_LPAREN2, + ACTIONS(8523), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8525), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8527), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8529), 1, + aux_sym__immediate_decimal_token5, + STATE(5023), 1, + sym_comment, + STATE(6491), 1, + sym__immediate_decimal, + STATE(6931), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [183273] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8134), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + ACTIONS(8136), 1, anon_sym_DASH_DASH, - [184545] = 3, - ACTIONS(251), 1, + ACTIONS(8138), 1, + anon_sym_DASH2, + ACTIONS(8140), 1, + anon_sym_LBRACE, + STATE(1759), 1, + sym_block, + STATE(1762), 1, + sym_val_closure, + STATE(5024), 1, + sym_comment, + STATE(5395), 1, + sym__flag, + STATE(5572), 1, + aux_sym_ctrl_do_repeat1, + STATE(817), 2, + sym__blosure, + sym_val_variable, + STATE(5200), 2, + sym_short_flag, + sym_long_flag, + [183312] = 9, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5005), 1, + ACTIONS(1639), 1, + anon_sym_DASH2, + ACTIONS(4608), 1, + anon_sym_DOT_DOT2, + ACTIONS(7118), 1, + aux_sym_unquoted_token2, + ACTIONS(8531), 1, + sym_filesize_unit, + ACTIONS(8533), 1, + sym_duration_unit, + STATE(5025), 1, sym_comment, - ACTIONS(8284), 12, + ACTIONS(4610), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1651), 5, 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, - [184566] = 3, - ACTIONS(251), 1, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + [183345] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5006), 1, + STATE(5026), 1, sym_comment, - ACTIONS(8504), 12, + ACTIONS(8535), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397193,33 +400052,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [184587] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8506), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8508), 1, - aux_sym__immediate_decimal_token2, - STATE(5007), 1, - sym_comment, - ACTIONS(1544), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1542), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [184614] = 3, - ACTIONS(251), 1, + [183366] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5008), 1, + STATE(5027), 1, sym_comment, - ACTIONS(8510), 12, + ACTIONS(8537), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397232,12 +400070,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [184635] = 3, - ACTIONS(251), 1, + [183387] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5009), 1, + STATE(5028), 1, sym_comment, - ACTIONS(8512), 12, + ACTIONS(6991), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397250,12 +400088,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [184656] = 3, - ACTIONS(251), 1, + [183408] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5010), 1, + STATE(5029), 1, sym_comment, - ACTIONS(8514), 12, + ACTIONS(8539), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397268,12 +400106,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [184677] = 3, - ACTIONS(251), 1, + [183429] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5011), 1, + STATE(5030), 1, sym_comment, - ACTIONS(8516), 12, + ACTIONS(8090), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397285,13 +400124,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, - [184698] = 3, - ACTIONS(251), 1, + [183450] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5012), 1, + STATE(5031), 1, sym_comment, - ACTIONS(8518), 12, + ACTIONS(8092), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397303,13 +400142,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, - [184719] = 3, - ACTIONS(251), 1, + [183471] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5013), 1, + STATE(5032), 1, sym_comment, - ACTIONS(8520), 12, + ACTIONS(8541), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397322,33 +400160,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [184740] = 6, - ACTIONS(251), 1, + [183492] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5796), 1, - sym__newline, - ACTIONS(8522), 1, + ACTIONS(7738), 1, anon_sym_DASH2, - STATE(5014), 1, + STATE(5033), 1, sym_comment, - ACTIONS(1309), 2, + ACTIONS(7736), 11, anon_sym_EQ, - anon_sym_COLON, - ACTIONS(5799), 8, 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, - [184767] = 3, - ACTIONS(251), 1, + [183515] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5015), 1, + ACTIONS(8543), 1, + anon_sym_DOT, + ACTIONS(8545), 1, + aux_sym__immediate_decimal_token2, + STATE(5034), 1, sym_comment, - ACTIONS(8304), 12, + ACTIONS(1512), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1514), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [183542] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8547), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8549), 1, + aux_sym__immediate_decimal_token2, + STATE(5035), 1, + sym_comment, + ACTIONS(1504), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + 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, + [183569] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5036), 1, + sym_comment, + ACTIONS(8084), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -397361,12 +400239,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, - [184788] = 3, - ACTIONS(251), 1, + [183590] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5016), 1, + STATE(5037), 1, sym_comment, - ACTIONS(8306), 12, + ACTIONS(8124), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -397379,31 +400257,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, - [184809] = 4, - ACTIONS(251), 1, + [183611] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8526), 1, - anon_sym_DASH2, - STATE(5017), 1, - sym_comment, - ACTIONS(8524), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(3140), 1, + anon_sym_DQUOTE, + ACTIONS(3146), 1, + sym_raw_string_begin, + ACTIONS(8495), 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, - [184832] = 3, - ACTIONS(251), 1, + ACTIONS(8551), 1, + sym_identifier, + ACTIONS(8553), 1, + anon_sym_GT2, + STATE(5038), 1, + sym_comment, + STATE(5173), 1, + aux_sym_shebang_repeat1, + STATE(5366), 1, + aux_sym_collection_type_repeat1, + STATE(6393), 1, + sym_val_string, + ACTIONS(3142), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5291), 2, + sym__raw_str, + sym__str_double_quotes, + [183650] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5018), 1, + STATE(5039), 1, sym_comment, - ACTIONS(8528), 12, + ACTIONS(8555), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397416,31 +400302,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [184853] = 4, - ACTIONS(251), 1, + [183671] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8532), 1, - anon_sym_DASH2, - STATE(5019), 1, + STATE(5040), 1, sym_comment, - ACTIONS(8530), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8557), 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, - [184876] = 3, - ACTIONS(251), 1, + [183692] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5020), 1, + STATE(5041), 1, sym_comment, - ACTIONS(8534), 12, + ACTIONS(8559), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397453,127 +400338,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [184897] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5404), 1, - anon_sym_LPAREN2, - ACTIONS(5408), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5410), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5734), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8442), 1, - anon_sym_DOLLAR, - ACTIONS(8444), 1, - anon_sym_DOLLAR2, - ACTIONS(8446), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8448), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8536), 1, - anon_sym_RBRACK, - STATE(2857), 1, - sym__immediate_decimal, - STATE(5021), 1, - sym_comment, - STATE(2878), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [184938] = 4, - ACTIONS(251), 1, + [183713] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8540), 1, - anon_sym_DASH2, - STATE(5022), 1, + STATE(5042), 1, sym_comment, - ACTIONS(8538), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8561), 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, - [184961] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5023), 1, - sym_comment, - ACTIONS(1550), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1552), 9, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [184984] = 9, - ACTIONS(251), 1, + [183734] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8544), 1, - anon_sym_LBRACK, - ACTIONS(8546), 1, - anon_sym_DASH_DASH, - ACTIONS(8548), 1, - anon_sym_DASH2, - STATE(5024), 1, + STATE(5043), 1, sym_comment, - STATE(5133), 1, - aux_sym_overlay_hide_repeat1, - STATE(5247), 2, - sym_short_flag, - sym_long_flag, - STATE(5667), 2, - sym_val_list, - sym__flag, - ACTIONS(8542), 4, + ACTIONS(8563), 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, - [185017] = 9, - ACTIONS(251), 1, + [183755] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8544), 1, - anon_sym_LBRACK, - ACTIONS(8546), 1, - anon_sym_DASH_DASH, - ACTIONS(8548), 1, - anon_sym_DASH2, - STATE(5025), 1, + STATE(5044), 1, sym_comment, - STATE(5053), 1, - aux_sym_overlay_hide_repeat1, - STATE(5247), 2, - sym_short_flag, - sym_long_flag, - STATE(5667), 2, - sym_val_list, - sym__flag, - ACTIONS(8550), 4, + ACTIONS(8565), 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, - [185050] = 3, - ACTIONS(251), 1, + [183776] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5026), 1, + STATE(5045), 1, sym_comment, - ACTIONS(8308), 12, - ts_builtin_sym_end, + ACTIONS(8567), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397585,58 +400409,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, - [185071] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7716), 1, - anon_sym_DASH2, - STATE(5027), 1, - sym_comment, - ACTIONS(7714), 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, - [185094] = 12, - ACTIONS(251), 1, + [183797] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3132), 1, - anon_sym_DQUOTE, - ACTIONS(3138), 1, - sym_raw_string_begin, - ACTIONS(8462), 1, - sym__newline, - ACTIONS(8552), 1, - sym_identifier, - ACTIONS(8554), 1, - anon_sym_GT2, - STATE(5028), 1, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + ACTIONS(3618), 1, + anon_sym_DOLLAR, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(8571), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8573), 1, + aux_sym__immediate_decimal_token5, + STATE(5046), 1, sym_comment, - STATE(5152), 1, - aux_sym_shebang_repeat1, - STATE(5414), 1, - aux_sym_collection_type_repeat1, - STATE(6210), 1, - sym_val_string, - ACTIONS(3134), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5195), 2, - sym__raw_str, - sym__str_double_quotes, - [185133] = 3, - ACTIONS(251), 1, + STATE(6831), 1, + sym__immediate_decimal, + ACTIONS(1455), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(8569), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1780), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [183834] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5029), 1, + STATE(5047), 1, sym_comment, - ACTIONS(8556), 12, + ACTIONS(8575), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397649,13 +400454,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [185154] = 3, - ACTIONS(251), 1, + [183855] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5030), 1, + STATE(5048), 1, sym_comment, - ACTIONS(8310), 12, - ts_builtin_sym_end, + ACTIONS(8577), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397667,12 +400471,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, - [185175] = 3, - ACTIONS(251), 1, + anon_sym_RPAREN, + [183876] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5031), 1, + STATE(5049), 1, sym_comment, - ACTIONS(8558), 12, + ACTIONS(8579), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397685,31 +400490,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [185196] = 4, - ACTIONS(251), 1, + [183897] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8562), 1, - anon_sym_DASH2, - STATE(5032), 1, - sym_comment, - ACTIONS(8560), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(3842), 1, sym__newline, + STATE(764), 1, + aux_sym__pipe_separator, + STATE(5050), 1, + sym_comment, + STATE(5142), 1, + aux_sym_shebang_repeat1, + ACTIONS(2546), 9, 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, - [185219] = 3, - ACTIONS(251), 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, + [183924] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5033), 1, + STATE(5051), 1, sym_comment, - ACTIONS(8564), 12, + ACTIONS(8078), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397721,32 +400529,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, - [185240] = 4, - ACTIONS(251), 1, + [183945] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7799), 1, - anon_sym_DASH2, - STATE(5034), 1, + STATE(5052), 1, sym_comment, - ACTIONS(7797), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8142), 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, - [185263] = 3, - ACTIONS(251), 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, + [183966] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5035), 1, + STATE(5053), 1, sym_comment, - ACTIONS(8566), 12, + ACTIONS(8154), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397758,115 +400565,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, - anon_sym_RPAREN, - [185284] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8568), 1, - anon_sym_DOT, - ACTIONS(8570), 1, - aux_sym__immediate_decimal_token2, - STATE(5036), 1, - sym_comment, - ACTIONS(1552), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1550), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [185311] = 12, + [183987] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1626), 1, - sym__entry_separator, - ACTIONS(3102), 1, - anon_sym_DOLLAR, - ACTIONS(8148), 1, + ACTIONS(5514), 1, anon_sym_LPAREN2, - ACTIONS(8156), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8158), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8572), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8574), 1, + ACTIONS(5518), 1, aux_sym__immediate_decimal_token3, - STATE(5037), 1, - sym_comment, - STATE(6729), 1, - sym__immediate_decimal, - ACTIONS(1624), 2, + ACTIONS(5520), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5752), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8462), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(6728), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [185350] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1656), 1, - sym__entry_separator, - ACTIONS(3102), 1, + ACTIONS(8464), 1, + anon_sym_DOLLAR2, + ACTIONS(8470), 1, anon_sym_DOLLAR, - ACTIONS(8148), 1, - anon_sym_LPAREN2, - ACTIONS(8156), 1, + ACTIONS(8472), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8158), 1, + ACTIONS(8474), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8572), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8574), 1, - aux_sym__immediate_decimal_token3, - STATE(5038), 1, - sym_comment, - STATE(6748), 1, + STATE(2888), 1, sym__immediate_decimal, - ACTIONS(1654), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(6730), 2, + STATE(5054), 1, + sym_comment, + STATE(2944), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [185389] = 12, + [184028] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1612), 1, + ACTIONS(1590), 1, sym__entry_separator, - ACTIONS(3102), 1, + ACTIONS(3110), 1, anon_sym_DOLLAR, - ACTIONS(8148), 1, + ACTIONS(8214), 1, anon_sym_LPAREN2, - ACTIONS(8156), 1, + ACTIONS(8240), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8158), 1, + ACTIONS(8242), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8572), 1, + ACTIONS(8581), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8574), 1, + ACTIONS(8583), 1, aux_sym__immediate_decimal_token3, - STATE(5039), 1, + STATE(5055), 1, sym_comment, - STATE(6751), 1, + STATE(6904), 1, sym__immediate_decimal, - ACTIONS(1604), 2, + ACTIONS(1588), 2, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(6749), 2, + STATE(6880), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [185428] = 3, - ACTIONS(251), 1, + [184067] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5040), 1, + STATE(5056), 1, sym_comment, - ACTIONS(8576), 12, + ACTIONS(8585), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397879,12 +400638,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [185449] = 3, - ACTIONS(251), 1, + [184088] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5041), 1, + STATE(5057), 1, sym_comment, - ACTIONS(8578), 12, + ACTIONS(8587), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397897,60 +400656,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [185470] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1461), 1, - anon_sym_RBRACE, - ACTIONS(1475), 1, - sym__entry_separator, - ACTIONS(1477), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(3102), 1, - anon_sym_DOLLAR, - ACTIONS(8148), 1, - anon_sym_LPAREN2, - ACTIONS(8580), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8582), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8584), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8586), 1, - aux_sym__immediate_decimal_token5, - STATE(5042), 1, - sym_comment, - STATE(6219), 1, - sym__immediate_decimal, - STATE(7037), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [185511] = 4, - ACTIONS(251), 1, + [184109] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8590), 1, - anon_sym_DASH2, - STATE(5043), 1, + STATE(5058), 1, sym_comment, - ACTIONS(8588), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8589), 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, - [185534] = 3, - ACTIONS(251), 1, + [184130] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5044), 1, + STATE(5059), 1, sym_comment, - ACTIONS(8178), 12, - ts_builtin_sym_end, + ACTIONS(8591), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397962,12 +400691,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, - [185555] = 3, - ACTIONS(251), 1, + anon_sym_RPAREN, + [184151] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5045), 1, + STATE(5060), 1, sym_comment, - ACTIONS(8592), 12, + ACTIONS(8593), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397980,14 +400710,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [185576] = 4, - ACTIONS(251), 1, + [184172] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8596), 1, + ACTIONS(2441), 1, anon_sym_DASH2, - STATE(5046), 1, + STATE(5061), 1, sym_comment, - ACTIONS(8594), 11, + ACTIONS(2443), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -397999,12 +400729,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [185599] = 3, - ACTIONS(251), 1, + [184195] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5047), 1, + ACTIONS(2441), 1, + anon_sym_DASH2, + STATE(5062), 1, + sym_comment, + ACTIONS(2443), 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, + [184218] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1562), 1, + aux_sym_unquoted_token2, + ACTIONS(3618), 1, + anon_sym_DOLLAR, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(8571), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8573), 1, + aux_sym__immediate_decimal_token5, + STATE(5063), 1, + sym_comment, + STATE(7027), 1, + sym__immediate_decimal, + ACTIONS(1560), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(8569), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1823), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [184255] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5064), 1, sym_comment, - ACTIONS(8598), 12, + ACTIONS(8595), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398017,63 +400792,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [185620] = 12, - ACTIONS(251), 1, + [184276] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8088), 1, + ACTIONS(5514), 1, + anon_sym_LPAREN2, + ACTIONS(5518), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5520), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5752), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8464), 1, + anon_sym_DOLLAR2, + ACTIONS(8470), 1, anon_sym_DOLLAR, - ACTIONS(8090), 1, - anon_sym_DASH_DASH, - ACTIONS(8092), 1, - anon_sym_DASH2, - ACTIONS(8094), 1, - anon_sym_LBRACE, - STATE(1770), 1, - sym_block, - STATE(1787), 1, - sym_val_closure, - STATE(5048), 1, + ACTIONS(8472), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8474), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8597), 1, + anon_sym_RBRACK, + STATE(2888), 1, + sym__immediate_decimal, + STATE(5065), 1, sym_comment, - STATE(5140), 1, - aux_sym_ctrl_do_repeat1, - STATE(5334), 1, - sym__flag, - STATE(769), 2, - sym__blosure, + STATE(2944), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - STATE(5247), 2, - sym_short_flag, - sym_long_flag, - [185659] = 9, - ACTIONS(251), 1, + [184317] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1638), 1, - anon_sym_DASH2, - ACTIONS(4622), 1, - anon_sym_DOT_DOT2, - ACTIONS(7138), 1, - aux_sym_unquoted_token2, - ACTIONS(8600), 1, - sym_filesize_unit, - ACTIONS(8602), 1, - sym_duration_unit, - STATE(5049), 1, + STATE(5066), 1, sym_comment, - ACTIONS(4624), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1650), 5, - ts_builtin_sym_end, + ACTIONS(8599), 12, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [185692] = 3, - ACTIONS(251), 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, + [184338] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5050), 1, + STATE(5067), 1, sym_comment, - ACTIONS(8604), 12, + ACTIONS(8601), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398086,41 +400856,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [185713] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8090), 1, - anon_sym_DASH_DASH, - ACTIONS(8092), 1, - anon_sym_DASH2, - ACTIONS(8606), 1, - anon_sym_DOLLAR, - ACTIONS(8608), 1, - anon_sym_LBRACE, - STATE(1854), 1, - sym_block, - STATE(1860), 1, - sym_val_closure, - STATE(5051), 1, - sym_comment, - STATE(5103), 1, - aux_sym_ctrl_do_repeat1, - STATE(5334), 1, - sym__flag, - STATE(787), 2, - sym__blosure, - sym_val_variable, - STATE(5247), 2, - sym_short_flag, - sym_long_flag, - [185752] = 4, - ACTIONS(251), 1, + [184359] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8612), 1, + ACTIONS(2461), 1, anon_sym_DASH2, - STATE(5052), 1, + STATE(5068), 1, sym_comment, - ACTIONS(8610), 11, + ACTIONS(2463), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -398132,55 +400875,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [185775] = 9, - ACTIONS(251), 1, + [184382] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8544), 1, - anon_sym_LBRACK, - ACTIONS(8546), 1, - anon_sym_DASH_DASH, - ACTIONS(8548), 1, + ACTIONS(2477), 1, anon_sym_DASH2, - STATE(5053), 1, + STATE(5069), 1, sym_comment, - STATE(5133), 1, - aux_sym_overlay_hide_repeat1, - STATE(5247), 2, - sym_short_flag, - sym_long_flag, - STATE(5667), 2, - sym_val_list, - sym__flag, - ACTIONS(8614), 4, + ACTIONS(2479), 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_RBRACE, - [185808] = 4, - ACTIONS(251), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [184405] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5054), 1, + STATE(5070), 1, sym_comment, - ACTIONS(1542), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1544), 9, - ts_builtin_sym_end, + ACTIONS(8603), 12, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [185831] = 3, - ACTIONS(251), 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, + [184426] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5055), 1, + STATE(5071), 1, sym_comment, - ACTIONS(8616), 12, + ACTIONS(8605), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398193,12 +400930,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [185852] = 3, - ACTIONS(251), 1, + [184447] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5056), 1, + STATE(5072), 1, sym_comment, - ACTIONS(8618), 12, + ACTIONS(8607), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398211,13 +400948,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [185873] = 3, - ACTIONS(251), 1, + [184468] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5057), 1, + STATE(5073), 1, sym_comment, - ACTIONS(8322), 12, - ts_builtin_sym_end, + ACTIONS(8609), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398229,33 +400965,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, - [185894] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5058), 1, - sym_comment, - ACTIONS(6985), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6991), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6987), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6989), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [185921] = 3, - ACTIONS(251), 1, + anon_sym_RPAREN, + [184489] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5059), 1, + STATE(5074), 1, sym_comment, - ACTIONS(8620), 12, + ACTIONS(8611), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398268,101 +400984,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [185942] = 4, - ACTIONS(251), 1, + [184510] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5060), 1, + STATE(5075), 1, sym_comment, - ACTIONS(1680), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1682), 9, - ts_builtin_sym_end, + ACTIONS(8613), 12, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [185965] = 7, - ACTIONS(251), 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, + [184531] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(949), 1, + ACTIONS(2338), 1, anon_sym_DASH2, - ACTIONS(8280), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(5061), 1, + STATE(5076), 1, sym_comment, - STATE(5062), 1, - aux_sym_cell_path_repeat1, - ACTIONS(951), 8, + ACTIONS(2340), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, + 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_LBRACE, - anon_sym_RBRACE, - [185994] = 6, - ACTIONS(251), 1, + [184554] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(953), 1, + ACTIONS(2344), 1, anon_sym_DASH2, - ACTIONS(8622), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(5062), 2, + STATE(5077), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(955), 8, + ACTIONS(2346), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, + 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_LBRACE, - anon_sym_RBRACE, - [186021] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1510), 1, - sym__entry_separator, - ACTIONS(3102), 1, - anon_sym_DOLLAR, - ACTIONS(8148), 1, - anon_sym_LPAREN2, - ACTIONS(8156), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8158), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8572), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8574), 1, - aux_sym__immediate_decimal_token3, - STATE(5063), 1, - sym_comment, - STATE(6998), 1, - sym__immediate_decimal, - ACTIONS(1500), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(6995), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [186060] = 3, - ACTIONS(251), 1, + [184577] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5064), 1, + STATE(5078), 1, sym_comment, - ACTIONS(8625), 12, + ACTIONS(8615), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398375,12 +401058,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [186081] = 3, - ACTIONS(251), 1, + [184598] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5065), 1, + STATE(5079), 1, sym_comment, - ACTIONS(8627), 12, + ACTIONS(8617), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398393,59 +401076,243 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [186102] = 4, - ACTIONS(251), 1, + [184619] = 10, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5066), 1, + ACTIONS(3618), 1, + anon_sym_DOLLAR, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(7995), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7997), 1, + aux_sym__immediate_decimal_token5, + STATE(1778), 1, + sym__immediate_decimal, + STATE(5080), 1, + sym_comment, + ACTIONS(8619), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1777), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1532), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [184654] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3618), 1, + anon_sym_DOLLAR, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(7995), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7997), 1, + aux_sym__immediate_decimal_token5, + STATE(1816), 1, + sym__immediate_decimal, + STATE(5081), 1, + sym_comment, + ACTIONS(8619), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1814), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1582), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [184689] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3618), 1, + anon_sym_DOLLAR, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(7995), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7997), 1, + aux_sym__immediate_decimal_token5, + STATE(1820), 1, + sym__immediate_decimal, + STATE(5082), 1, + sym_comment, + ACTIONS(8619), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1817), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1586), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [184724] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3618), 1, + anon_sym_DOLLAR, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(7995), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7997), 1, + aux_sym__immediate_decimal_token5, + STATE(1822), 1, + sym__immediate_decimal, + STATE(5083), 1, + sym_comment, + ACTIONS(8619), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1821), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1590), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [184759] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1441), 1, + anon_sym_RBRACK, + ACTIONS(1455), 1, + sym__entry_separator, + ACTIONS(1457), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(3110), 1, + anon_sym_DOLLAR, + ACTIONS(8214), 1, + anon_sym_LPAREN2, + ACTIONS(8523), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8525), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8527), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8529), 1, + aux_sym__immediate_decimal_token5, + STATE(5084), 1, sym_comment, - ACTIONS(1743), 3, + STATE(6198), 1, + sym__immediate_decimal, + STATE(7006), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [184800] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8136), 1, + anon_sym_DASH_DASH, + ACTIONS(8138), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1745), 9, - ts_builtin_sym_end, + ACTIONS(8621), 1, + anon_sym_DOLLAR, + ACTIONS(8623), 1, + anon_sym_LBRACE, + STATE(1992), 1, + sym_block, + STATE(2018), 1, + sym_val_closure, + STATE(5085), 1, + sym_comment, + STATE(5395), 1, + sym__flag, + STATE(5572), 1, + aux_sym_ctrl_do_repeat1, + STATE(827), 2, + sym__blosure, + sym_val_variable, + STATE(5200), 2, + sym_short_flag, + sym_long_flag, + [184839] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3140), 1, + anon_sym_DQUOTE, + ACTIONS(3146), 1, + sym_raw_string_begin, + ACTIONS(8495), 1, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(8625), 1, + sym_identifier, + ACTIONS(8627), 1, + anon_sym_GT2, + STATE(5086), 1, + sym_comment, + STATE(5180), 1, + aux_sym_shebang_repeat1, + STATE(5392), 1, + aux_sym_collection_type_repeat1, + STATE(6203), 1, + sym_val_string, + ACTIONS(3142), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5291), 2, + sym__raw_str, + sym__str_double_quotes, + [184878] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5732), 1, + sym__newline, + ACTIONS(8629), 1, + anon_sym_DASH2, + STATE(5087), 1, + sym_comment, + ACTIONS(1288), 2, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5735), 8, + sym_identifier, + 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_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [186125] = 13, + [184905] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1536), 1, - anon_sym_RBRACE, - ACTIONS(1538), 1, + ACTIONS(1532), 1, sym__entry_separator, - ACTIONS(1540), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(3102), 1, + ACTIONS(3110), 1, anon_sym_DOLLAR, - ACTIONS(8148), 1, + ACTIONS(8214), 1, anon_sym_LPAREN2, - ACTIONS(8580), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8582), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8584), 1, + ACTIONS(8240), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8586), 1, + ACTIONS(8242), 1, aux_sym__immediate_decimal_token5, - STATE(5067), 1, + ACTIONS(8581), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8583), 1, + aux_sym__immediate_decimal_token3, + STATE(5088), 1, sym_comment, - STATE(6256), 1, + STATE(6961), 1, sym__immediate_decimal, - STATE(6752), 2, + ACTIONS(1522), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(6946), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [186166] = 3, - ACTIONS(251), 1, + [184944] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5068), 1, + STATE(5089), 1, sym_comment, - ACTIONS(8629), 12, + ACTIONS(8110), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398457,13 +401324,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, - [186187] = 3, - ACTIONS(251), 1, + [184965] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5069), 1, + STATE(5090), 1, sym_comment, - ACTIONS(8631), 12, + ACTIONS(8122), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398475,32 +401342,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, - [186208] = 4, - ACTIONS(251), 1, + [184986] = 13, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5070), 1, + ACTIONS(5514), 1, + anon_sym_LPAREN2, + ACTIONS(5518), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5520), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5752), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8464), 1, + anon_sym_DOLLAR2, + ACTIONS(8470), 1, + anon_sym_DOLLAR, + ACTIONS(8472), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8474), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8631), 1, + anon_sym_RBRACK, + STATE(2888), 1, + sym__immediate_decimal, + STATE(5091), 1, sym_comment, - ACTIONS(7616), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7618), 10, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - [186231] = 3, - ACTIONS(251), 1, + STATE(2944), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [185027] = 12, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5071), 1, + ACTIONS(1582), 1, + sym__entry_separator, + ACTIONS(3110), 1, + anon_sym_DOLLAR, + ACTIONS(8214), 1, + anon_sym_LPAREN2, + ACTIONS(8240), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8242), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8581), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8583), 1, + aux_sym__immediate_decimal_token3, + STATE(5092), 1, + sym_comment, + STATE(6787), 1, + sym__immediate_decimal, + ACTIONS(1580), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(6786), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [185066] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8136), 1, + anon_sym_DASH_DASH, + ACTIONS(8138), 1, + anon_sym_DASH2, + ACTIONS(8621), 1, + anon_sym_DOLLAR, + ACTIONS(8623), 1, + anon_sym_LBRACE, + STATE(1992), 1, + sym_block, + STATE(2018), 1, + sym_val_closure, + STATE(5085), 1, + aux_sym_ctrl_do_repeat1, + STATE(5093), 1, sym_comment, - ACTIONS(5083), 12, + STATE(5395), 1, + sym__flag, + STATE(828), 2, + sym__blosure, + sym_val_variable, + STATE(5200), 2, + sym_short_flag, + sym_long_flag, + [185105] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5094), 1, + sym_comment, + ACTIONS(8318), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -398513,13 +401442,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, - [186252] = 3, - ACTIONS(251), 1, + [185126] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5072), 1, + STATE(5095), 1, sym_comment, - ACTIONS(5091), 12, - ts_builtin_sym_end, + ACTIONS(6985), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398531,31 +401459,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, - [186273] = 4, - ACTIONS(251), 1, + anon_sym_RPAREN, + [185147] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(942), 1, + anon_sym_DASH2, + ACTIONS(8040), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(5096), 1, + sym_comment, + STATE(5097), 1, + aux_sym_cell_path_repeat1, + ACTIONS(944), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [185176] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8635), 1, + ACTIONS(935), 1, anon_sym_DASH2, - STATE(5073), 1, + ACTIONS(8633), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(5097), 2, sym_comment, - ACTIONS(8633), 11, - anon_sym_EQ, - sym_identifier, + aux_sym_cell_path_repeat1, + ACTIONS(937), 8, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [186296] = 3, - ACTIONS(251), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + [185203] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5074), 1, + STATE(5098), 1, sym_comment, - ACTIONS(6935), 12, + ACTIONS(8330), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398567,15 +401521,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, - [186317] = 4, - ACTIONS(251), 1, + [185224] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8635), 1, + ACTIONS(8638), 1, anon_sym_DASH2, - STATE(5075), 1, + STATE(5099), 1, sym_comment, - ACTIONS(8633), 11, + ACTIONS(8636), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -398587,14 +401540,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [186340] = 4, - ACTIONS(251), 1, + [185247] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2366), 1, + ACTIONS(7744), 1, anon_sym_DASH2, - STATE(5076), 1, + STATE(5100), 1, sym_comment, - ACTIONS(2368), 11, + ACTIONS(7742), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -398606,77 +401559,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [186363] = 4, - ACTIONS(251), 1, + [185270] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2366), 1, + ACTIONS(8442), 1, + anon_sym_LBRACK, + ACTIONS(8444), 1, + anon_sym_DASH_DASH, + ACTIONS(8446), 1, anon_sym_DASH2, - STATE(5077), 1, + STATE(5101), 1, sym_comment, - ACTIONS(2368), 11, - anon_sym_EQ, - sym_identifier, + STATE(5130), 1, + aux_sym_overlay_hide_repeat1, + STATE(5200), 2, + sym_short_flag, + sym_long_flag, + STATE(5611), 2, + sym_val_list, + sym__flag, + ACTIONS(8640), 4, 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, - [186386] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1461), 1, anon_sym_RBRACE, - ACTIONS(1475), 1, - sym__entry_separator, - ACTIONS(3102), 1, - anon_sym_DOLLAR, - ACTIONS(8148), 1, - anon_sym_LPAREN2, - ACTIONS(8152), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8154), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8156), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8158), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8637), 1, - anon_sym_DOT, - STATE(5078), 1, - sym_comment, - STATE(6042), 1, - sym__immediate_decimal, - STATE(5736), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [186427] = 3, - ACTIONS(251), 1, + [185303] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5079), 1, + ACTIONS(8642), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8644), 1, + aux_sym__immediate_decimal_token2, + STATE(5102), 1, sym_comment, - ACTIONS(8639), 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, - [186448] = 3, - ACTIONS(251), 1, + ACTIONS(1504), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1506), 7, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [185330] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5080), 1, + STATE(5103), 1, sym_comment, - ACTIONS(8641), 12, + ACTIONS(8646), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398689,14 +401622,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [186469] = 4, - ACTIONS(251), 1, + [185351] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2370), 1, + ACTIONS(8650), 1, anon_sym_DASH2, - STATE(5081), 1, + STATE(5104), 1, sym_comment, - ACTIONS(2372), 11, + ACTIONS(8648), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -398708,14 +401641,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [186492] = 4, - ACTIONS(251), 1, + [185374] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2374), 1, + ACTIONS(8650), 1, anon_sym_DASH2, - STATE(5082), 1, + STATE(5105), 1, sym_comment, - ACTIONS(2376), 11, + ACTIONS(8648), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -398727,100 +401660,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [186515] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym_unquoted_token2, - ACTIONS(3630), 1, - anon_sym_DOLLAR, - ACTIONS(4580), 1, - anon_sym_LPAREN2, - ACTIONS(8492), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8494), 1, - aux_sym__immediate_decimal_token5, - STATE(5083), 1, - sym_comment, - STATE(6986), 1, - sym__immediate_decimal, - ACTIONS(1475), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(8490), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2078), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [186552] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5084), 1, - sym_comment, - ACTIONS(8196), 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, - [186573] = 4, - ACTIONS(251), 1, + [185397] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5085), 1, + ACTIONS(8652), 1, + anon_sym_DOT, + ACTIONS(8654), 1, + aux_sym__immediate_decimal_token2, + STATE(5106), 1, sym_comment, - ACTIONS(7529), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7531), 10, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - [186596] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8645), 1, + ACTIONS(1512), 3, anon_sym_DASH2, - STATE(5086), 1, - sym_comment, - ACTIONS(8643), 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_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1514), 7, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [186619] = 6, - ACTIONS(251), 1, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [185424] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8025), 1, + ACTIONS(8001), 1, sym__newline, - ACTIONS(8647), 1, + ACTIONS(8656), 1, anon_sym_else, - STATE(5087), 1, + STATE(5107), 1, sym_comment, - STATE(5088), 1, + STATE(5108), 1, aux_sym_shebang_repeat1, - ACTIONS(8028), 9, + ACTIONS(8004), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -398830,18 +401702,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, - [186646] = 6, - ACTIONS(251), 1, + [185451] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7855), 1, + ACTIONS(7817), 1, sym__newline, - ACTIONS(8649), 1, + ACTIONS(8658), 1, anon_sym_else, - STATE(5088), 1, + STATE(5108), 1, sym_comment, - STATE(5091), 1, + STATE(5111), 1, aux_sym_shebang_repeat1, - ACTIONS(7858), 9, + ACTIONS(7820), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -398851,18 +401723,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, - [186673] = 6, - ACTIONS(251), 1, + [185478] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7862), 1, + ACTIONS(7824), 1, sym__newline, - ACTIONS(8651), 1, + ACTIONS(8660), 1, anon_sym_else, - STATE(5089), 1, + STATE(5109), 1, sym_comment, - STATE(5092), 1, + STATE(5112), 1, aux_sym_shebang_repeat1, - ACTIONS(7865), 9, + ACTIONS(7827), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -398872,18 +401744,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, - [186700] = 6, - ACTIONS(251), 1, + [185505] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7869), 1, + ACTIONS(7857), 1, sym__newline, - ACTIONS(8653), 1, + ACTIONS(8662), 1, anon_sym_else, - STATE(5090), 1, + STATE(5110), 1, sym_comment, - STATE(5093), 1, + STATE(5113), 1, aux_sym_shebang_repeat1, - ACTIONS(7872), 9, + ACTIONS(7860), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -398893,18 +401765,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, - [186727] = 6, - ACTIONS(251), 1, + [185532] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5107), 1, + ACTIONS(4884), 1, sym__newline, - ACTIONS(8655), 1, + ACTIONS(8664), 1, anon_sym_else, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(5091), 1, + STATE(5111), 1, sym_comment, - ACTIONS(1298), 9, + ACTIONS(1296), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -398914,18 +401786,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, - [186754] = 6, - ACTIONS(251), 1, + [185559] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7999), 1, + ACTIONS(7875), 1, sym__newline, - ACTIONS(8658), 1, + ACTIONS(8667), 1, anon_sym_else, - STATE(5092), 1, + STATE(5112), 1, sym_comment, - STATE(5095), 1, + STATE(5115), 1, aux_sym_shebang_repeat1, - ACTIONS(8002), 9, + ACTIONS(7878), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -398935,18 +401807,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, - [186781] = 6, - ACTIONS(251), 1, + [185586] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8006), 1, + ACTIONS(7882), 1, sym__newline, - ACTIONS(8660), 1, + ACTIONS(8669), 1, anon_sym_else, - STATE(5093), 1, + STATE(5113), 1, sym_comment, - STATE(5096), 1, + STATE(5116), 1, aux_sym_shebang_repeat1, - ACTIONS(8009), 9, + ACTIONS(7885), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -398956,18 +401828,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, - [186808] = 6, - ACTIONS(251), 1, + [185613] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8013), 1, + ACTIONS(7889), 1, sym__newline, - ACTIONS(8662), 1, + ACTIONS(8671), 1, anon_sym_else, - STATE(5094), 1, + STATE(5114), 1, sym_comment, - STATE(5097), 1, + STATE(5117), 1, aux_sym_shebang_repeat1, - ACTIONS(8016), 9, + ACTIONS(7892), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -398977,18 +401849,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, - [186835] = 6, - ACTIONS(251), 1, + [185640] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5107), 1, + ACTIONS(4884), 1, sym__newline, - ACTIONS(8664), 1, + ACTIONS(8673), 1, anon_sym_else, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(5095), 1, + STATE(5115), 1, sym_comment, - ACTIONS(1298), 9, + ACTIONS(1296), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -398998,18 +401870,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, - [186862] = 6, - ACTIONS(251), 1, + [185667] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5107), 1, + ACTIONS(4884), 1, sym__newline, - ACTIONS(8667), 1, + ACTIONS(8676), 1, anon_sym_else, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(5096), 1, + STATE(5116), 1, sym_comment, - ACTIONS(1298), 9, + ACTIONS(1296), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -399019,18 +401891,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, - [186889] = 6, - ACTIONS(251), 1, + [185694] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7835), 1, + ACTIONS(7955), 1, sym__newline, - ACTIONS(8670), 1, + ACTIONS(8679), 1, anon_sym_else, - STATE(5097), 1, + STATE(5117), 1, sym_comment, - STATE(5100), 1, + STATE(5118), 1, aux_sym_shebang_repeat1, - ACTIONS(7838), 9, + ACTIONS(7958), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -399040,147 +401912,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, - [186916] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2378), 1, - anon_sym_DASH2, - STATE(5098), 1, - sym_comment, - ACTIONS(2380), 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, - [186939] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2382), 1, - anon_sym_DASH2, - STATE(5099), 1, - sym_comment, - ACTIONS(2384), 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, - [186962] = 6, - ACTIONS(251), 1, + [185721] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5107), 1, + ACTIONS(4884), 1, sym__newline, - ACTIONS(8672), 1, + ACTIONS(8681), 1, anon_sym_else, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(5100), 1, - sym_comment, - ACTIONS(1298), 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, - [186989] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8677), 1, - anon_sym_DASH2, - STATE(5101), 1, - sym_comment, - ACTIONS(8675), 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, - [187012] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1475), 1, - anon_sym_LBRACE, - ACTIONS(1477), 1, - aux_sym_unquoted_token2, - ACTIONS(4580), 1, - anon_sym_LPAREN2, - ACTIONS(6551), 1, - anon_sym_DOLLAR, - ACTIONS(8679), 1, - anon_sym_DOT, - ACTIONS(8683), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8685), 1, - aux_sym__immediate_decimal_token5, - STATE(5102), 1, - sym_comment, - STATE(5942), 1, - sym__immediate_decimal, - ACTIONS(8681), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6675), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [187051] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8090), 1, - anon_sym_DASH_DASH, - ACTIONS(8092), 1, - anon_sym_DASH2, - ACTIONS(8606), 1, - anon_sym_DOLLAR, - ACTIONS(8608), 1, - anon_sym_LBRACE, - STATE(1854), 1, - sym_block, - STATE(1860), 1, - sym_val_closure, - STATE(5103), 1, - sym_comment, - STATE(5334), 1, - sym__flag, - STATE(5450), 1, - aux_sym_ctrl_do_repeat1, - STATE(777), 2, - sym__blosure, - sym_val_variable, - STATE(5247), 2, - sym_short_flag, - sym_long_flag, - [187090] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5104), 1, + STATE(5118), 1, sym_comment, - ACTIONS(8282), 12, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + ACTIONS(1296), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -399190,12 +401933,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, - [187111] = 3, - ACTIONS(251), 1, + [185748] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5105), 1, + STATE(5119), 1, sym_comment, - ACTIONS(8687), 12, + ACTIONS(8684), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399208,12 +401951,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [187132] = 3, - ACTIONS(251), 1, + [185769] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5106), 1, + STATE(5120), 1, sym_comment, - ACTIONS(8689), 12, + ACTIONS(8686), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399226,13 +401969,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [187153] = 3, - ACTIONS(251), 1, + [185790] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5107), 1, + STATE(5121), 1, sym_comment, - ACTIONS(6873), 12, - ts_builtin_sym_end, + ACTIONS(8688), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399244,79 +401986,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, - [187174] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2043), 1, - anon_sym_DASH2, - STATE(5108), 1, - sym_comment, - ACTIONS(2049), 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, - [187197] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3132), 1, - anon_sym_DQUOTE, - ACTIONS(3138), 1, - sym_raw_string_begin, - ACTIONS(8462), 1, - sym__newline, - ACTIONS(8691), 1, - sym_identifier, - ACTIONS(8693), 1, - anon_sym_GT2, - STATE(5109), 1, - sym_comment, - STATE(5174), 1, - aux_sym_shebang_repeat1, - STATE(5408), 1, - aux_sym_collection_type_repeat1, - STATE(6464), 1, - sym_val_string, - ACTIONS(3134), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5195), 2, - sym__raw_str, - sym__str_double_quotes, - [187236] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8695), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8697), 1, - aux_sym__immediate_decimal_token2, - STATE(5110), 1, - sym_comment, - ACTIONS(1542), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1544), 7, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [187263] = 3, - ACTIONS(251), 1, + [185811] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5111), 1, + STATE(5122), 1, sym_comment, - ACTIONS(8699), 12, + ACTIONS(8690), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399329,149 +402005,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [187284] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8544), 1, - anon_sym_LBRACK, - ACTIONS(8546), 1, - anon_sym_DASH_DASH, - ACTIONS(8548), 1, - anon_sym_DASH2, - STATE(5024), 1, - aux_sym_overlay_hide_repeat1, - STATE(5112), 1, - sym_comment, - STATE(5247), 2, - sym_short_flag, - sym_long_flag, - STATE(5667), 2, - sym_val_list, - sym__flag, - ACTIONS(8701), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [187317] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2560), 1, - anon_sym_DOLLAR, - ACTIONS(5327), 1, - anon_sym_LPAREN2, - ACTIONS(5331), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5333), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5335), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(5565), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8440), 1, - anon_sym_RBRACK, - ACTIONS(8444), 1, - anon_sym_DOLLAR2, - ACTIONS(8703), 1, - aux_sym__immediate_decimal_token1, - STATE(2721), 1, - sym__immediate_decimal, - STATE(5113), 1, - sym_comment, - STATE(2839), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [187358] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5114), 1, - sym_comment, - ACTIONS(7977), 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, - [187379] = 13, - ACTIONS(3), 1, + [185832] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5404), 1, + ACTIONS(1455), 1, + anon_sym_LBRACE, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + ACTIONS(4207), 1, anon_sym_LPAREN2, - ACTIONS(5408), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5410), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5734), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8442), 1, + ACTIONS(6993), 1, anon_sym_DOLLAR, - ACTIONS(8444), 1, - anon_sym_DOLLAR2, - ACTIONS(8446), 1, + ACTIONS(8692), 1, + anon_sym_DOT, + ACTIONS(8696), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8448), 1, + ACTIONS(8698), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8705), 1, - anon_sym_RBRACK, - STATE(2857), 1, - sym__immediate_decimal, - STATE(5115), 1, + STATE(5123), 1, sym_comment, - STATE(2878), 2, + STATE(5979), 1, + sym__immediate_decimal, + ACTIONS(8694), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6653), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [187420] = 6, - ACTIONS(251), 1, + [185871] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8707), 1, - anon_sym_DOT, - ACTIONS(8709), 1, + ACTIONS(8700), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8702), 1, aux_sym__immediate_decimal_token2, - STATE(5116), 1, + STATE(5124), 1, sym_comment, - ACTIONS(1550), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1552), 7, + ACTIONS(1506), 4, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(1504), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - [187447] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5117), 1, - sym_comment, - ACTIONS(8340), 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, - [187468] = 3, - ACTIONS(251), 1, + aux_sym_unquoted_token2, + [185898] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5118), 1, + STATE(5125), 1, sym_comment, - ACTIONS(8342), 12, + ACTIONS(8400), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -399484,154 +402071,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, - [187489] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5119), 1, - sym_comment, - ACTIONS(7011), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7017), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7013), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7015), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [187516] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1461), 1, - anon_sym_RBRACK, - ACTIONS(1475), 1, - sym__entry_separator, - ACTIONS(1477), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(3102), 1, - anon_sym_DOLLAR, - ACTIONS(8148), 1, - anon_sym_LPAREN2, - ACTIONS(8482), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8484), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8486), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8488), 1, - aux_sym__immediate_decimal_token5, - STATE(5120), 1, - sym_comment, - STATE(6641), 1, - sym__immediate_decimal, - STATE(7037), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [187557] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8711), 1, - anon_sym_else, - STATE(5121), 1, - sym_comment, - ACTIONS(8096), 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, - [187580] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5122), 1, - sym_comment, - ACTIONS(8713), 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, - [187601] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5123), 1, - sym_comment, - ACTIONS(8715), 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, - [187622] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5124), 1, - sym_comment, - ACTIONS(8717), 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, - [187643] = 3, - ACTIONS(251), 1, + [185919] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5125), 1, - sym_comment, - ACTIONS(8719), 12, + ACTIONS(3842), 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, - [187664] = 3, - ACTIONS(251), 1, - anon_sym_POUND, + STATE(768), 1, + aux_sym__pipe_separator, STATE(5126), 1, sym_comment, - ACTIONS(8721), 12, - sym__newline, - anon_sym_SEMI, + STATE(5142), 1, + aux_sym_shebang_repeat1, + ACTIONS(2546), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -399641,13 +402092,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, - [187685] = 3, - ACTIONS(251), 1, + [185946] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(5127), 1, sym_comment, - ACTIONS(8723), 12, + ACTIONS(8704), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399660,31 +402110,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [187706] = 4, - ACTIONS(251), 1, + [185967] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2386), 1, - anon_sym_DASH2, + ACTIONS(8706), 1, + anon_sym_DOT, + ACTIONS(8708), 1, + aux_sym__immediate_decimal_token2, STATE(5128), 1, sym_comment, - ACTIONS(2388), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1514), 4, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [187729] = 3, - ACTIONS(251), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1512), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [185994] = 4, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(8710), 1, + anon_sym_else, STATE(5129), 1, sym_comment, - ACTIONS(8725), 12, + ACTIONS(8168), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399696,51 +402150,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, - anon_sym_RPAREN, - [187750] = 3, - ACTIONS(251), 1, + [186017] = 9, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(8442), 1, + anon_sym_LBRACK, + ACTIONS(8444), 1, + anon_sym_DASH_DASH, + ACTIONS(8446), 1, + anon_sym_DASH2, + STATE(5006), 1, + aux_sym_overlay_hide_repeat1, STATE(5130), 1, sym_comment, - ACTIONS(8328), 12, - ts_builtin_sym_end, + STATE(5200), 2, + sym_short_flag, + sym_long_flag, + STATE(5611), 2, + sym_val_list, + sym__flag, + ACTIONS(8712), 4, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [187771] = 3, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [186050] = 9, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(8442), 1, + anon_sym_LBRACK, + ACTIONS(8444), 1, + anon_sym_DASH_DASH, + ACTIONS(8446), 1, + anon_sym_DASH2, + STATE(4969), 1, + aux_sym_overlay_hide_repeat1, STATE(5131), 1, sym_comment, - ACTIONS(8727), 12, + STATE(5200), 2, + sym_short_flag, + sym_long_flag, + STATE(5611), 2, + sym_val_list, + sym__flag, + ACTIONS(8714), 4, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [187792] = 4, - ACTIONS(251), 1, + anon_sym_RBRACE, + [186083] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2019), 1, - anon_sym_DASH2, + ACTIONS(1586), 1, + sym__entry_separator, + ACTIONS(3110), 1, + anon_sym_DOLLAR, + ACTIONS(8214), 1, + anon_sym_LPAREN2, + ACTIONS(8240), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8242), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8581), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8583), 1, + aux_sym__immediate_decimal_token3, STATE(5132), 1, sym_comment, - ACTIONS(2025), 11, + STATE(6862), 1, + sym__immediate_decimal, + ACTIONS(1584), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(6789), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [186122] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8718), 1, + anon_sym_DASH2, + STATE(5133), 1, + sym_comment, + ACTIONS(8716), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -399752,37 +402244,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [187815] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8729), 1, - anon_sym_LBRACK, - ACTIONS(8732), 1, - anon_sym_DASH_DASH, - ACTIONS(8735), 1, - anon_sym_DASH2, - STATE(5133), 2, - sym_comment, - aux_sym_overlay_hide_repeat1, - STATE(5247), 2, - sym_short_flag, - sym_long_flag, - STATE(5667), 2, - sym_val_list, - sym__flag, - ACTIONS(6240), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [187846] = 4, - ACTIONS(251), 1, + [186145] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2027), 1, + ACTIONS(8722), 1, anon_sym_DASH2, STATE(5134), 1, sym_comment, - ACTIONS(2033), 11, + ACTIONS(8720), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -399794,69 +402263,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [187869] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5135), 1, - sym_comment, - ACTIONS(8738), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(8740), 10, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - [187892] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5136), 1, - sym_comment, - ACTIONS(8742), 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, - [187913] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5137), 1, - sym_comment, - ACTIONS(8330), 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, - [187934] = 4, - ACTIONS(251), 1, + [186168] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2035), 1, + ACTIONS(8726), 1, anon_sym_DASH2, - STATE(5138), 1, + STATE(5135), 1, sym_comment, - ACTIONS(2041), 11, + ACTIONS(8724), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -399868,13 +402282,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [187957] = 3, - ACTIONS(251), 1, + [186191] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5139), 1, + STATE(5136), 1, sym_comment, - ACTIONS(8320), 12, - ts_builtin_sym_end, + ACTIONS(8728), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399886,388 +402299,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [187978] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8088), 1, - anon_sym_DOLLAR, - ACTIONS(8090), 1, - anon_sym_DASH_DASH, - ACTIONS(8092), 1, - anon_sym_DASH2, - ACTIONS(8094), 1, - anon_sym_LBRACE, - STATE(1770), 1, - sym_block, - STATE(1787), 1, - sym_val_closure, - STATE(5140), 1, - sym_comment, - STATE(5334), 1, - sym__flag, - STATE(5450), 1, - aux_sym_ctrl_do_repeat1, - STATE(770), 2, - sym__blosure, - sym_val_variable, - STATE(5247), 2, - sym_short_flag, - sym_long_flag, - [188017] = 12, - ACTIONS(251), 1, + anon_sym_RPAREN, + [186212] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3442), 1, - anon_sym_COLON2, - ACTIONS(6551), 1, - anon_sym_DOLLAR, - ACTIONS(8744), 1, - sym_identifier, - ACTIONS(8746), 1, + ACTIONS(8730), 1, + anon_sym_LBRACK, + ACTIONS(8733), 1, anon_sym_DASH_DASH, - ACTIONS(8748), 1, + ACTIONS(8736), 1, anon_sym_DASH2, - STATE(5141), 1, + STATE(5137), 2, sym_comment, - STATE(5199), 1, - aux_sym_ctrl_do_repeat1, - STATE(5334), 1, + aux_sym_overlay_hide_repeat1, + STATE(5730), 2, + sym_val_list, sym__flag, - STATE(5696), 1, - sym_val_variable, - STATE(6169), 1, - sym__variable_name, - STATE(5247), 2, + STATE(5853), 2, sym_short_flag, sym_long_flag, - [188055] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1697), 1, - anon_sym_DASH2, - ACTIONS(8750), 1, - anon_sym_DOT2, - STATE(5142), 1, - sym_comment, - STATE(5248), 1, - aux_sym_cell_path_repeat1, - STATE(5515), 1, - sym_cell_path, - STATE(5521), 1, - sym_path, - ACTIONS(1699), 6, + ACTIONS(6259), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [188085] = 8, - ACTIONS(251), 1, + [186242] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1719), 1, + ACTIONS(1666), 1, anon_sym_DASH2, - ACTIONS(8750), 1, + ACTIONS(8739), 1, anon_sym_DOT2, - STATE(5143), 1, + STATE(5138), 1, sym_comment, - STATE(5248), 1, + STATE(5226), 1, aux_sym_cell_path_repeat1, - STATE(5458), 1, - sym_cell_path, - STATE(5521), 1, + STATE(5479), 1, sym_path, - ACTIONS(1721), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [188115] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1272), 1, - anon_sym_LPAREN, - ACTIONS(3470), 1, - aux_sym_expr_unary_token1, - ACTIONS(6551), 1, - anon_sym_DOLLAR, - ACTIONS(8752), 1, - anon_sym_DASH2, - STATE(2143), 1, - sym__expr_unary_minus, - STATE(5144), 1, - sym_comment, - ACTIONS(3410), 2, - anon_sym_true, - anon_sym_false, - STATE(2127), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [188147] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1538), 1, - anon_sym_LBRACE, - ACTIONS(1540), 1, - aux_sym_unquoted_token2, - ACTIONS(4580), 1, - anon_sym_LPAREN2, - ACTIONS(6551), 1, - anon_sym_DOLLAR, - ACTIONS(8756), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8758), 1, - aux_sym__immediate_decimal_token5, - STATE(5145), 1, - sym_comment, - STATE(7390), 1, - sym__immediate_decimal, - ACTIONS(8754), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1998), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [188183] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8760), 1, - anon_sym_LBRACK, - ACTIONS(8762), 1, - anon_sym_DASH_DASH, - ACTIONS(8764), 1, - anon_sym_DASH2, - STATE(5146), 1, - sym_comment, - STATE(5162), 1, - aux_sym_overlay_hide_repeat1, - STATE(5788), 2, - sym_short_flag, - sym_long_flag, - STATE(5828), 2, - sym_val_list, - sym__flag, - ACTIONS(8550), 3, + STATE(5646), 1, + sym_cell_path, + ACTIONS(1668), 6, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [188215] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3420), 1, - anon_sym_COLON2, - ACTIONS(6551), 1, - anon_sym_DOLLAR, - ACTIONS(8744), 1, - sym_identifier, - ACTIONS(8746), 1, - anon_sym_DASH_DASH, - ACTIONS(8748), 1, - anon_sym_DASH2, - STATE(5147), 1, - sym_comment, - STATE(5199), 1, - aux_sym_ctrl_do_repeat1, - STATE(5334), 1, - sym__flag, - STATE(5696), 1, - sym_val_variable, - STATE(6169), 1, - sym__variable_name, - STATE(5247), 2, - sym_short_flag, - sym_long_flag, - [188253] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7466), 1, - anon_sym_DASH2, - STATE(5148), 1, - sym_comment, - STATE(5183), 1, - aux_sym_parameter_repeat2, - ACTIONS(2558), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(7464), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [188279] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7486), 1, - anon_sym_DASH2, - STATE(5149), 1, - sym_comment, - STATE(5183), 1, - aux_sym_parameter_repeat2, - ACTIONS(2558), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(7484), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_DASH_DASH, - [188305] = 9, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3630), 1, - anon_sym_DOLLAR, - ACTIONS(6699), 1, - anon_sym_LPAREN, - ACTIONS(8752), 1, - anon_sym_DASH2, - STATE(2143), 1, - sym__expr_unary_minus, - STATE(5150), 1, - sym_comment, - ACTIONS(3410), 2, - anon_sym_true, - anon_sym_false, - STATE(2127), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [188337] = 5, + anon_sym_as, + [186272] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8766), 1, + ACTIONS(8741), 1, aux_sym__immediate_decimal_token2, - STATE(5151), 1, + STATE(5139), 1, sym_comment, - ACTIONS(1680), 4, + ACTIONS(1618), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_list_token2, - ACTIONS(1682), 6, + ACTIONS(1620), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [188361] = 11, - ACTIONS(251), 1, + [186296] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3132), 1, - anon_sym_DQUOTE, - ACTIONS(3138), 1, - sym_raw_string_begin, - ACTIONS(8462), 1, - sym__newline, - ACTIONS(8768), 1, - sym_identifier, - STATE(5152), 1, - sym_comment, - STATE(5416), 1, - aux_sym_collection_type_repeat1, - STATE(5689), 1, - aux_sym_shebang_repeat1, - STATE(6225), 1, - sym_val_string, - ACTIONS(3134), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5195), 2, - sym__raw_str, - sym__str_double_quotes, - [188397] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8546), 1, - anon_sym_DASH_DASH, - ACTIONS(8548), 1, - anon_sym_DASH2, - ACTIONS(8772), 1, - anon_sym_as, - STATE(5153), 1, - sym_comment, - STATE(5258), 1, - aux_sym_ctrl_do_repeat1, - STATE(5334), 1, - sym__flag, - STATE(5247), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8770), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [188429] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1719), 1, + ACTIONS(1676), 1, anon_sym_DASH2, - ACTIONS(8774), 1, + ACTIONS(8739), 1, anon_sym_DOT2, - STATE(5154), 1, + STATE(5140), 1, sym_comment, - STATE(5229), 1, + STATE(5226), 1, aux_sym_cell_path_repeat1, - STATE(5585), 1, + STATE(5479), 1, sym_path, - STATE(5610), 1, + STATE(5612), 1, sym_cell_path, - ACTIONS(1721), 6, + ACTIONS(1678), 6, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, anon_sym_as, - [188459] = 12, - ACTIONS(3), 1, + [186326] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1461), 1, - anon_sym_RBRACE, - ACTIONS(1475), 1, - sym__entry_separator, - ACTIONS(3102), 1, - anon_sym_DOLLAR, - ACTIONS(8148), 1, - anon_sym_LPAREN2, - ACTIONS(8156), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8158), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8572), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8574), 1, - aux_sym__immediate_decimal_token3, - STATE(5155), 1, - sym_comment, - STATE(7373), 1, - sym__immediate_decimal, - STATE(7037), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [188497] = 5, - ACTIONS(251), 1, + ACTIONS(8745), 1, + anon_sym_DASH2, + STATE(5141), 1, + sym_comment, + STATE(5153), 1, + aux_sym_parameter_repeat2, + ACTIONS(2632), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(8743), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [186352] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(5156), 1, + STATE(5142), 1, sym_comment, - ACTIONS(2548), 9, + ACTIONS(2690), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -400277,249 +402424,242 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [188521] = 11, - ACTIONS(251), 1, + [186376] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1475), 1, - anon_sym_LBRACE, - ACTIONS(1477), 1, - aux_sym_unquoted_token2, - ACTIONS(4580), 1, - anon_sym_LPAREN2, - ACTIONS(6551), 1, + ACTIONS(1558), 1, + anon_sym_RBRACE, + ACTIONS(1560), 1, + sym__entry_separator, + ACTIONS(3110), 1, anon_sym_DOLLAR, - ACTIONS(8756), 1, + ACTIONS(8214), 1, + anon_sym_LPAREN2, + ACTIONS(8240), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8758), 1, + ACTIONS(8242), 1, aux_sym__immediate_decimal_token5, - STATE(5157), 1, - sym_comment, - STATE(7326), 1, - sym__immediate_decimal, - ACTIONS(8754), 2, + ACTIONS(8581), 1, aux_sym__immediate_decimal_token1, + ACTIONS(8583), 1, aux_sym__immediate_decimal_token3, - STATE(2078), 2, + STATE(5143), 1, + sym_comment, + STATE(7398), 1, + sym__immediate_decimal, + STATE(6931), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [188557] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8776), 1, - aux_sym__immediate_decimal_token2, - STATE(5158), 1, - sym_comment, - ACTIONS(1680), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1682), 7, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [188581] = 5, - ACTIONS(251), 1, + [186414] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8709), 1, - aux_sym__immediate_decimal_token2, - STATE(5159), 1, - sym_comment, - ACTIONS(1550), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1552), 7, - anon_sym_DOLLAR, + ACTIONS(8747), 1, + anon_sym_LBRACK, + ACTIONS(8749), 1, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [188605] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3514), 1, - aux_sym_expr_unary_token1, - ACTIONS(5873), 1, - anon_sym_LPAREN, - ACTIONS(6586), 1, - anon_sym_DOLLAR, - ACTIONS(8778), 1, + ACTIONS(8751), 1, anon_sym_DASH2, - STATE(2458), 1, - sym__expr_unary_minus, - STATE(5160), 1, - sym_comment, - ACTIONS(3454), 2, - anon_sym_true, - anon_sym_false, - STATE(2489), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [188637] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8780), 1, - anon_sym_DOT, - ACTIONS(8782), 1, - aux_sym__immediate_decimal_token2, - STATE(5161), 1, + STATE(5137), 1, + aux_sym_overlay_hide_repeat1, + STATE(5144), 1, sym_comment, - ACTIONS(1550), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1552), 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, - [188663] = 9, - ACTIONS(251), 1, + STATE(5730), 2, + sym_val_list, + sym__flag, + STATE(5853), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8712), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [186446] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8760), 1, + ACTIONS(8747), 1, anon_sym_LBRACK, - ACTIONS(8762), 1, + ACTIONS(8749), 1, anon_sym_DASH_DASH, - ACTIONS(8764), 1, + ACTIONS(8751), 1, anon_sym_DASH2, - STATE(5162), 1, + STATE(5145), 1, sym_comment, - STATE(5184), 1, + STATE(5166), 1, aux_sym_overlay_hide_repeat1, - STATE(5788), 2, - sym_short_flag, - sym_long_flag, - STATE(5828), 2, + STATE(5730), 2, sym_val_list, sym__flag, - ACTIONS(8614), 3, + STATE(5853), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8714), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [188695] = 4, - ACTIONS(251), 1, + [186478] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8784), 1, - anon_sym_else, - STATE(5163), 1, + ACTIONS(7488), 1, + anon_sym_DASH2, + STATE(5146), 1, sym_comment, - ACTIONS(8096), 10, + STATE(5153), 1, + aux_sym_parameter_repeat2, + ACTIONS(2632), 2, sym__newline, + anon_sym_COMMA, + ACTIONS(7486), 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, - [188717] = 5, - ACTIONS(251), 1, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [186504] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8786), 1, - aux_sym__immediate_decimal_token2, - STATE(5164), 1, + ACTIONS(7504), 1, + anon_sym_DASH2, + STATE(5147), 1, sym_comment, - ACTIONS(1682), 4, + STATE(5153), 1, + aux_sym_parameter_repeat2, + ACTIONS(2632), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(7502), 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_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1680), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [188741] = 8, - ACTIONS(251), 1, + [186530] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(943), 1, + ACTIONS(1666), 1, anon_sym_DASH2, - ACTIONS(8750), 1, + ACTIONS(8753), 1, anon_sym_DOT2, - STATE(3871), 1, + STATE(5148), 1, + sym_comment, + STATE(5194), 1, + aux_sym_cell_path_repeat1, + STATE(5523), 1, + sym_path, + STATE(5565), 1, sym_cell_path, - STATE(5165), 1, + ACTIONS(1668), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [186560] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1676), 1, + anon_sym_DASH2, + ACTIONS(8753), 1, + anon_sym_DOT2, + STATE(5149), 1, sym_comment, - STATE(5248), 1, + STATE(5194), 1, aux_sym_cell_path_repeat1, - STATE(5521), 1, + STATE(5523), 1, sym_path, - ACTIONS(945), 6, + STATE(5591), 1, + sym_cell_path, + ACTIONS(1678), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [188771] = 9, - ACTIONS(83), 1, + [186590] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3486), 1, + aux_sym_expr_unary_token1, + ACTIONS(5870), 1, + anon_sym_LPAREN, + ACTIONS(7009), 1, + anon_sym_DOLLAR, + ACTIONS(8755), 1, + anon_sym_DASH2, + STATE(2502), 1, + sym__expr_unary_minus, + STATE(5150), 1, + sym_comment, + ACTIONS(3466), 2, + anon_sym_true, + anon_sym_false, + STATE(2459), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [186622] = 9, + ACTIONS(201), 1, aux_sym_expr_unary_token1, - ACTIONS(251), 1, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4678), 1, + ACTIONS(3618), 1, anon_sym_DOLLAR, - ACTIONS(5873), 1, + ACTIONS(6841), 1, anon_sym_LPAREN, - ACTIONS(8778), 1, + ACTIONS(8757), 1, anon_sym_DASH2, - STATE(2458), 1, + STATE(2002), 1, sym__expr_unary_minus, - STATE(5166), 1, + STATE(5151), 1, sym_comment, - ACTIONS(3454), 2, + ACTIONS(3432), 2, anon_sym_true, anon_sym_false, - STATE(2489), 4, + STATE(2123), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [188803] = 5, - ACTIONS(251), 1, + [186654] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8570), 1, - aux_sym__immediate_decimal_token2, - STATE(5167), 1, + ACTIONS(929), 1, + anon_sym_DASH2, + ACTIONS(8739), 1, + anon_sym_DOT2, + STATE(5152), 1, sym_comment, - ACTIONS(1552), 4, - anon_sym_DOLLAR, + STATE(5226), 1, + aux_sym_cell_path_repeat1, + STATE(5479), 1, + sym_path, + STATE(5681), 1, + sym_cell_path, + ACTIONS(931), 6, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1550), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [188827] = 6, - ACTIONS(251), 1, + anon_sym_as, + [186684] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8790), 1, + ACTIONS(8764), 1, anon_sym_DASH2, - STATE(5168), 1, - sym_comment, - STATE(5183), 1, - aux_sym_parameter_repeat2, - ACTIONS(2558), 2, + ACTIONS(8761), 2, sym__newline, anon_sym_COMMA, - ACTIONS(8788), 7, + STATE(5153), 2, + sym_comment, + aux_sym_parameter_repeat2, + ACTIONS(8759), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -400527,237 +402667,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [188853] = 8, - ACTIONS(251), 1, + [186708] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(943), 1, + ACTIONS(929), 1, anon_sym_DASH2, - ACTIONS(8774), 1, + ACTIONS(8753), 1, anon_sym_DOT2, - STATE(5169), 1, + STATE(3881), 1, + sym_cell_path, + STATE(5154), 1, sym_comment, - STATE(5229), 1, + STATE(5194), 1, aux_sym_cell_path_repeat1, - STATE(5585), 1, + STATE(5523), 1, sym_path, - STATE(5690), 1, - sym_cell_path, - ACTIONS(945), 6, - ts_builtin_sym_end, + ACTIONS(931), 6, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_as, - [188883] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8468), 1, - aux_sym__immediate_decimal_token2, - STATE(5170), 1, - sym_comment, - ACTIONS(1550), 4, - anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1552), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [188907] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8792), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8794), 1, - aux_sym__immediate_decimal_token2, - STATE(5171), 1, - sym_comment, - ACTIONS(1542), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1544), 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, - [188933] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8760), 1, - anon_sym_LBRACK, - ACTIONS(8762), 1, - anon_sym_DASH_DASH, - ACTIONS(8764), 1, - anon_sym_DASH2, - STATE(5172), 1, - sym_comment, - STATE(5184), 1, - aux_sym_overlay_hide_repeat1, - STATE(5788), 2, - sym_short_flag, - sym_long_flag, - STATE(5828), 2, - sym_val_list, - sym__flag, - ACTIONS(8542), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [188965] = 8, - ACTIONS(251), 1, + anon_sym_as, + [186738] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1697), 1, + ACTIONS(1666), 1, anon_sym_DASH2, - ACTIONS(8280), 1, + ACTIONS(8040), 1, anon_sym_DOT2, - STATE(4011), 1, + STATE(4025), 1, sym_path, - STATE(5061), 1, + STATE(5096), 1, aux_sym_cell_path_repeat1, - STATE(5173), 1, + STATE(5155), 1, sym_comment, - STATE(5515), 1, + STATE(5565), 1, sym_cell_path, - ACTIONS(1699), 6, + ACTIONS(1668), 6, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, - [188995] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3132), 1, - anon_sym_DQUOTE, - ACTIONS(3138), 1, - sym_raw_string_begin, - ACTIONS(8462), 1, - sym__newline, - ACTIONS(8796), 1, - sym_identifier, - STATE(5174), 1, - sym_comment, - STATE(5409), 1, - aux_sym_collection_type_repeat1, - STATE(5689), 1, - aux_sym_shebang_repeat1, - STATE(6594), 1, - sym_val_string, - ACTIONS(3134), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5195), 2, - sym__raw_str, - sym__str_double_quotes, - [189031] = 8, - ACTIONS(251), 1, + [186768] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1719), 1, + ACTIONS(1676), 1, anon_sym_DASH2, - ACTIONS(8280), 1, + ACTIONS(8040), 1, anon_sym_DOT2, - STATE(4011), 1, + STATE(4025), 1, sym_path, - STATE(5061), 1, + STATE(5096), 1, aux_sym_cell_path_repeat1, - STATE(5175), 1, + STATE(5156), 1, sym_comment, - STATE(5458), 1, + STATE(5591), 1, sym_cell_path, - ACTIONS(1721), 6, + ACTIONS(1678), 6, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, - [189061] = 8, - ACTIONS(251), 1, + [186798] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1697), 1, + ACTIONS(8444), 1, + anon_sym_DASH_DASH, + ACTIONS(8446), 1, anon_sym_DASH2, - ACTIONS(8774), 1, - anon_sym_DOT2, - STATE(5176), 1, + ACTIONS(8768), 1, + anon_sym_as, + STATE(5157), 1, sym_comment, - STATE(5229), 1, - aux_sym_cell_path_repeat1, - STATE(5585), 1, - sym_path, - STATE(5672), 1, - sym_cell_path, - ACTIONS(1699), 6, - ts_builtin_sym_end, + STATE(5224), 1, + aux_sym_ctrl_do_repeat1, + STATE(5395), 1, + sym__flag, + STATE(5200), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8766), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_as, - [189091] = 9, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [186830] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1560), 1, + anon_sym_LBRACE, + ACTIONS(1562), 1, + aux_sym_unquoted_token2, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(6993), 1, + anon_sym_DOLLAR, + ACTIONS(8772), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8774), 1, + aux_sym__immediate_decimal_token5, + STATE(5158), 1, + sym_comment, + STATE(7399), 1, + sym__immediate_decimal, + ACTIONS(8770), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1823), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [186866] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8546), 1, + ACTIONS(8444), 1, anon_sym_DASH_DASH, - ACTIONS(8548), 1, + ACTIONS(8446), 1, anon_sym_DASH2, - ACTIONS(8800), 1, + ACTIONS(8778), 1, anon_sym_as, - STATE(5177), 1, + STATE(5159), 1, sym_comment, - STATE(5277), 1, + STATE(5313), 1, aux_sym_ctrl_do_repeat1, - STATE(5334), 1, + STATE(5395), 1, sym__flag, - STATE(5247), 2, + STATE(5200), 2, sym_short_flag, sym_long_flag, - ACTIONS(8798), 4, + ACTIONS(8776), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [189123] = 6, - ACTIONS(3), 1, + [186898] = 9, + ACTIONS(81), 1, + aux_sym_expr_unary_token1, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8802), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8804), 1, - aux_sym__immediate_decimal_token2, - STATE(5178), 1, + ACTIONS(4484), 1, + anon_sym_DOLLAR, + ACTIONS(5870), 1, + anon_sym_LPAREN, + ACTIONS(8755), 1, + anon_sym_DASH2, + STATE(2502), 1, + sym__expr_unary_minus, + STATE(5160), 1, sym_comment, - ACTIONS(1542), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1544), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [189149] = 6, - ACTIONS(251), 1, + ACTIONS(3466), 2, + anon_sym_true, + anon_sym_false, + STATE(2459), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [186930] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8808), 1, + ACTIONS(8782), 1, anon_sym_DASH2, - STATE(5179), 1, - sym_comment, - STATE(5183), 1, + STATE(5153), 1, aux_sym_parameter_repeat2, - ACTIONS(2558), 2, + STATE(5161), 1, + sym_comment, + ACTIONS(2632), 2, sym__newline, anon_sym_COMMA, - ACTIONS(8806), 7, + ACTIONS(8780), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -400765,19 +402847,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [189175] = 6, - ACTIONS(251), 1, + [186956] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7476), 1, + ACTIONS(7456), 1, anon_sym_DASH2, - STATE(5180), 1, - sym_comment, - STATE(5183), 1, + STATE(5153), 1, aux_sym_parameter_repeat2, - ACTIONS(2558), 2, + STATE(5162), 1, + sym_comment, + ACTIONS(2632), 2, sym__newline, anon_sym_COMMA, - ACTIONS(7474), 7, + ACTIONS(7454), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -400785,19 +402867,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [189201] = 6, - ACTIONS(251), 1, + [186982] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8812), 1, + ACTIONS(8786), 1, anon_sym_DASH2, - STATE(5181), 1, - sym_comment, - STATE(5183), 1, + STATE(5153), 1, aux_sym_parameter_repeat2, - ACTIONS(2558), 2, + STATE(5163), 1, + sym_comment, + ACTIONS(2632), 2, sym__newline, anon_sym_COMMA, - ACTIONS(8810), 7, + ACTIONS(8784), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -400805,302 +402887,546 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [189227] = 6, - ACTIONS(3), 1, + [187008] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8814), 1, - anon_sym_DOT, - ACTIONS(8816), 1, + ACTIONS(3442), 1, + anon_sym_COLON2, + ACTIONS(6993), 1, + anon_sym_DOLLAR, + ACTIONS(8788), 1, + sym_identifier, + ACTIONS(8790), 1, + anon_sym_DASH_DASH, + ACTIONS(8792), 1, + anon_sym_DASH2, + STATE(5164), 1, + sym_comment, + STATE(5225), 1, + aux_sym_ctrl_do_repeat1, + STATE(5395), 1, + sym__flag, + STATE(5653), 1, + sym_val_variable, + STATE(6211), 1, + sym__variable_name, + STATE(5200), 2, + sym_short_flag, + sym_long_flag, + [187046] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8654), 1, aux_sym__immediate_decimal_token2, - STATE(5182), 1, + STATE(5165), 1, sym_comment, - ACTIONS(1550), 3, - anon_sym_RBRACE, + ACTIONS(1512), 3, + anon_sym_DASH2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1552), 6, - anon_sym_LPAREN2, + aux_sym_unquoted_token2, + ACTIONS(1514), 7, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [189253] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8823), 1, - anon_sym_DASH2, - ACTIONS(8820), 2, - sym__newline, - anon_sym_COMMA, - STATE(5183), 2, - sym_comment, - aux_sym_parameter_repeat2, - ACTIONS(8818), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [189277] = 8, - ACTIONS(251), 1, + [187070] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8825), 1, + ACTIONS(8747), 1, anon_sym_LBRACK, - ACTIONS(8828), 1, + ACTIONS(8749), 1, anon_sym_DASH_DASH, - ACTIONS(8831), 1, + ACTIONS(8751), 1, anon_sym_DASH2, - STATE(5184), 2, - sym_comment, + STATE(5137), 1, aux_sym_overlay_hide_repeat1, - STATE(5788), 2, - sym_short_flag, - sym_long_flag, - STATE(5828), 2, + STATE(5166), 1, + sym_comment, + STATE(5730), 2, sym_val_list, sym__flag, - ACTIONS(6240), 3, + STATE(5853), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8440), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [189307] = 9, - ACTIONS(251), 1, + [187102] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8760), 1, - anon_sym_LBRACK, - ACTIONS(8762), 1, + ACTIONS(3140), 1, + anon_sym_DQUOTE, + ACTIONS(3146), 1, + sym_raw_string_begin, + ACTIONS(8495), 1, + sym__newline, + ACTIONS(8794), 1, + sym_identifier, + STATE(5167), 1, + sym_comment, + STATE(5352), 1, + aux_sym_collection_type_repeat1, + STATE(5625), 1, + aux_sym_shebang_repeat1, + STATE(6594), 1, + sym_val_string, + ACTIONS(3142), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5291), 2, + sym__raw_str, + sym__str_double_quotes, + [187138] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8796), 1, + aux_sym__immediate_decimal_token2, + STATE(5168), 1, + sym_comment, + ACTIONS(1618), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1620), 7, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - ACTIONS(8764), 1, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [187162] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8798), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8800), 1, + aux_sym__immediate_decimal_token2, + STATE(5169), 1, + sym_comment, + ACTIONS(1504), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + 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, + [187188] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8802), 1, + anon_sym_DOT, + ACTIONS(8804), 1, + aux_sym__immediate_decimal_token2, + STATE(5170), 1, + sym_comment, + ACTIONS(1512), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1514), 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, + [187214] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3444), 1, + anon_sym_COLON2, + ACTIONS(6993), 1, + anon_sym_DOLLAR, + ACTIONS(8788), 1, + sym_identifier, + ACTIONS(8790), 1, + anon_sym_DASH_DASH, + ACTIONS(8792), 1, anon_sym_DASH2, - STATE(5172), 1, - aux_sym_overlay_hide_repeat1, - STATE(5185), 1, + STATE(5171), 1, sym_comment, - STATE(5788), 2, + STATE(5225), 1, + aux_sym_ctrl_do_repeat1, + STATE(5395), 1, + sym__flag, + STATE(5653), 1, + sym_val_variable, + STATE(6211), 1, + sym__variable_name, + STATE(5200), 2, sym_short_flag, sym_long_flag, - STATE(5828), 2, - sym_val_list, - sym__flag, - ACTIONS(8701), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [189339] = 12, + [187252] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1536), 1, - anon_sym_RBRACE, - ACTIONS(1538), 1, - sym__entry_separator, - ACTIONS(3102), 1, - anon_sym_DOLLAR, - ACTIONS(8148), 1, - anon_sym_LPAREN2, - ACTIONS(8156), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8158), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8572), 1, + ACTIONS(8806), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8574), 1, - aux_sym__immediate_decimal_token3, - STATE(5186), 1, + ACTIONS(8808), 1, + aux_sym__immediate_decimal_token2, + STATE(5172), 1, sym_comment, - STATE(7388), 1, - sym__immediate_decimal, - STATE(6752), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [189377] = 11, - ACTIONS(251), 1, + ACTIONS(1504), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + 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, + [187278] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3132), 1, + ACTIONS(3140), 1, anon_sym_DQUOTE, - ACTIONS(3138), 1, + ACTIONS(3146), 1, sym_raw_string_begin, - ACTIONS(8462), 1, + ACTIONS(8495), 1, sym__newline, - ACTIONS(8834), 1, + ACTIONS(8810), 1, sym_identifier, - STATE(5187), 1, + STATE(5173), 1, sym_comment, - STATE(5356), 1, + STATE(5371), 1, aux_sym_collection_type_repeat1, - STATE(5689), 1, + STATE(5625), 1, aux_sym_shebang_repeat1, - STATE(6682), 1, + STATE(6496), 1, sym_val_string, - ACTIONS(3134), 2, + ACTIONS(3142), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(5195), 2, + STATE(5291), 2, sym__raw_str, sym__str_double_quotes, - [189413] = 11, - ACTIONS(251), 1, + [187314] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8545), 1, + aux_sym__immediate_decimal_token2, + STATE(5174), 1, + sym_comment, + ACTIONS(1512), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1514), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [187338] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1510), 1, + ACTIONS(8812), 1, + anon_sym_DOT, + ACTIONS(8814), 1, + aux_sym__immediate_decimal_token2, + STATE(5175), 1, + sym_comment, + ACTIONS(1512), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1514), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [187364] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1258), 1, + anon_sym_LPAREN, + ACTIONS(3518), 1, + aux_sym_expr_unary_token1, + ACTIONS(6993), 1, + anon_sym_DOLLAR, + ACTIONS(8757), 1, + anon_sym_DASH2, + STATE(2002), 1, + sym__expr_unary_minus, + STATE(5176), 1, + sym_comment, + ACTIONS(3432), 2, + anon_sym_true, + anon_sym_false, + STATE(2123), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [187396] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8708), 1, + aux_sym__immediate_decimal_token2, + STATE(5177), 1, + sym_comment, + ACTIONS(1514), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1512), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [187420] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1532), 1, anon_sym_LBRACE, - ACTIONS(4580), 1, + ACTIONS(4207), 1, anon_sym_LPAREN2, - ACTIONS(4614), 1, + ACTIONS(4447), 1, anon_sym_DOT, - ACTIONS(6551), 1, + ACTIONS(6993), 1, anon_sym_DOLLAR, - ACTIONS(8683), 1, + ACTIONS(8696), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8685), 1, + ACTIONS(8698), 1, aux_sym__immediate_decimal_token5, - STATE(5188), 1, + STATE(5178), 1, sym_comment, - STATE(6674), 1, + STATE(6652), 1, sym__immediate_decimal, - ACTIONS(8681), 2, + ACTIONS(8694), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(6673), 2, + STATE(6651), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [189449] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5189), 1, - sym_comment, - ACTIONS(982), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(980), 7, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [189470] = 10, - ACTIONS(251), 1, + [187456] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1656), 1, + ACTIONS(1455), 1, anon_sym_LBRACE, - ACTIONS(4580), 1, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + ACTIONS(4207), 1, anon_sym_LPAREN2, - ACTIONS(6551), 1, + ACTIONS(6993), 1, anon_sym_DOLLAR, - ACTIONS(8683), 1, + ACTIONS(8772), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8685), 1, + ACTIONS(8774), 1, aux_sym__immediate_decimal_token5, - STATE(1995), 1, - sym__immediate_decimal, - STATE(5190), 1, + STATE(5179), 1, sym_comment, - ACTIONS(8836), 2, + STATE(7379), 1, + sym__immediate_decimal, + ACTIONS(8770), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1994), 2, + STATE(1780), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [189503] = 4, - ACTIONS(3), 1, + [187492] = 11, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5191), 1, + ACTIONS(3140), 1, + anon_sym_DQUOTE, + ACTIONS(3146), 1, + sym_raw_string_begin, + ACTIONS(8495), 1, + sym__newline, + ACTIONS(8816), 1, + sym_identifier, + STATE(5180), 1, sym_comment, - ACTIONS(1550), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1552), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [189524] = 11, + STATE(5396), 1, + aux_sym_collection_type_repeat1, + STATE(5625), 1, + aux_sym_shebang_repeat1, + STATE(6222), 1, + sym_val_string, + ACTIONS(3142), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5291), 2, + sym__raw_str, + sym__str_double_quotes, + [187528] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3464), 1, + ACTIONS(1441), 1, + anon_sym_RBRACE, + ACTIONS(1455), 1, + sym__entry_separator, + ACTIONS(3110), 1, anon_sym_DOLLAR, - ACTIONS(4580), 1, + ACTIONS(8214), 1, anon_sym_LPAREN2, - ACTIONS(7078), 1, - aux_sym_unquoted_token3, - ACTIONS(8754), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8838), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8840), 1, + ACTIONS(8240), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8842), 1, + ACTIONS(8242), 1, aux_sym__immediate_decimal_token5, - STATE(5192), 1, + ACTIONS(8581), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8583), 1, + aux_sym__immediate_decimal_token3, + STATE(5181), 1, sym_comment, - STATE(7397), 1, + STATE(7334), 1, sym__immediate_decimal, - STATE(2051), 2, + STATE(7006), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [189559] = 11, + [187566] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8818), 1, + aux_sym__immediate_decimal_token2, + STATE(5182), 1, + sym_comment, + ACTIONS(1620), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1618), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [187590] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8820), 1, + anon_sym_else, + STATE(5183), 1, + sym_comment, + ACTIONS(8168), 10, + 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, + [187612] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8747), 1, + anon_sym_LBRACK, + ACTIONS(8749), 1, + anon_sym_DASH_DASH, + ACTIONS(8751), 1, + anon_sym_DASH2, + STATE(5144), 1, + aux_sym_overlay_hide_repeat1, + STATE(5184), 1, + sym_comment, + STATE(5730), 2, + sym_val_list, + sym__flag, + STATE(5853), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8640), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [187644] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2877), 1, + ACTIONS(3482), 1, anon_sym_DOLLAR, - ACTIONS(3994), 1, + ACTIONS(4486), 1, anon_sym_LPAREN2, - ACTIONS(3998), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(4000), 1, + ACTIONS(7013), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4487), 1, + ACTIONS(7118), 1, aux_sym_unquoted_token3, - ACTIONS(8844), 1, + ACTIONS(8822), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8824), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8846), 1, + ACTIONS(8826), 1, aux_sym__immediate_decimal_token5, - STATE(1463), 1, + STATE(4021), 1, sym__immediate_decimal, - STATE(5193), 1, + STATE(5185), 1, sym_comment, - STATE(1597), 2, + STATE(4111), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [189594] = 8, - ACTIONS(251), 1, + [187679] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(7009), 1, + anon_sym_DOLLAR, + ACTIONS(8790), 1, + anon_sym_DASH_DASH, + ACTIONS(8792), 1, anon_sym_DASH2, - ACTIONS(8774), 1, - anon_sym_DOT2, - STATE(5194), 1, + ACTIONS(8828), 1, + sym_identifier, + STATE(5186), 1, sym_comment, - STATE(5229), 1, - aux_sym_cell_path_repeat1, - STATE(5585), 1, - sym_path, - STATE(5876), 1, - sym_cell_path, - ACTIONS(1959), 5, - ts_builtin_sym_end, + STATE(5395), 1, + sym__flag, + STATE(5516), 1, + aux_sym_ctrl_do_repeat1, + STATE(6814), 1, + sym_val_variable, + STATE(6842), 1, + sym__variable_name, + STATE(5200), 2, + sym_short_flag, + sym_long_flag, + [187714] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2477), 1, + anon_sym_DASH2, + STATE(5187), 1, + sym_comment, + ACTIONS(2479), 9, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - [189623] = 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + [187735] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5195), 1, + STATE(5188), 1, sym_comment, - ACTIONS(974), 3, + ACTIONS(948), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(972), 7, + ACTIONS(946), 7, anon_sym_COLON, anon_sym_RBRACK, anon_sym_GT2, @@ -401108,925 +403434,879 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_DOT_DOT2, anon_sym_DOT2, - [189644] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8816), 1, - aux_sym__immediate_decimal_token2, - STATE(5196), 1, - sym_comment, - ACTIONS(1550), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1552), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [189667] = 5, - ACTIONS(251), 1, + [187756] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1296), 1, + ACTIONS(8749), 1, + anon_sym_DASH_DASH, + ACTIONS(8751), 1, anon_sym_DASH2, - ACTIONS(8848), 1, - sym__newline, - STATE(5197), 2, + ACTIONS(8830), 1, + anon_sym_as, + STATE(5189), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1298), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [189690] = 11, + STATE(5368), 1, + aux_sym_ctrl_do_repeat1, + STATE(6074), 1, + sym__flag, + STATE(5853), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8776), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [187787] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5404), 1, + ACTIONS(3110), 1, + anon_sym_DOLLAR, + ACTIONS(8214), 1, anon_sym_LPAREN2, - ACTIONS(5408), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5410), 1, + ACTIONS(8523), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5734), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8442), 1, - anon_sym_DOLLAR, - ACTIONS(8446), 1, + ACTIONS(8525), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8527), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8448), 1, + ACTIONS(8529), 1, aux_sym__immediate_decimal_token5, - STATE(2857), 1, - sym__immediate_decimal, - STATE(5198), 1, + ACTIONS(8832), 1, + aux_sym__unquoted_in_list_token3, + STATE(5190), 1, sym_comment, - STATE(2878), 2, + STATE(6689), 1, + sym__immediate_decimal, + STATE(6751), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [189725] = 11, - ACTIONS(251), 1, + [187822] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6551), 1, - anon_sym_DOLLAR, - ACTIONS(8744), 1, - sym_identifier, - ACTIONS(8746), 1, + ACTIONS(8444), 1, anon_sym_DASH_DASH, - ACTIONS(8748), 1, + ACTIONS(8446), 1, anon_sym_DASH2, - STATE(5199), 1, + STATE(5191), 1, sym_comment, - STATE(5334), 1, - sym__flag, - STATE(5523), 1, + STATE(5283), 1, aux_sym_ctrl_do_repeat1, - STATE(5696), 1, - sym_val_variable, - STATE(6394), 1, - sym__variable_name, - STATE(5247), 2, + STATE(5395), 1, + sym__flag, + STATE(5200), 2, sym_short_flag, sym_long_flag, - [189760] = 5, + ACTIONS(8834), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [187851] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8851), 1, + ACTIONS(8836), 1, + anon_sym_DOT, + ACTIONS(8838), 1, aux_sym__immediate_decimal_token2, - STATE(5200), 1, + STATE(5192), 1, sym_comment, - ACTIONS(1680), 3, + ACTIONS(1701), 4, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1682), 6, + aux_sym__unquoted_in_list_token2, + ACTIONS(1703), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - [189783] = 11, + [187876] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4120), 1, + ACTIONS(3110), 1, anon_sym_DOLLAR, - ACTIONS(4122), 1, + ACTIONS(8214), 1, anon_sym_LPAREN2, - ACTIONS(4124), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(4126), 1, + ACTIONS(8448), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4487), 1, - aux_sym_unquoted_token3, - ACTIONS(8853), 1, + ACTIONS(8450), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8452), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8855), 1, + ACTIONS(8454), 1, aux_sym__immediate_decimal_token5, - STATE(1634), 1, - sym__immediate_decimal, - STATE(5201), 1, + ACTIONS(8840), 1, + aux_sym__unquoted_in_record_token3, + STATE(5193), 1, sym_comment, - STATE(1907), 2, + STATE(6566), 1, + sym__immediate_decimal, + STATE(6751), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [189818] = 11, - ACTIONS(251), 1, + [187911] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6551), 1, - anon_sym_DOLLAR, - ACTIONS(8744), 1, - sym_identifier, - ACTIONS(8746), 1, - anon_sym_DASH_DASH, - ACTIONS(8748), 1, + ACTIONS(942), 1, anon_sym_DASH2, - STATE(5199), 1, - aux_sym_ctrl_do_repeat1, - STATE(5202), 1, + ACTIONS(8753), 1, + anon_sym_DOT2, + STATE(5194), 1, sym_comment, - STATE(5334), 1, - sym__flag, - STATE(5696), 1, - sym_val_variable, - STATE(6169), 1, - sym__variable_name, - STATE(5247), 2, - sym_short_flag, - sym_long_flag, - [189853] = 11, - ACTIONS(3), 1, + STATE(5195), 1, + aux_sym_cell_path_repeat1, + STATE(5523), 1, + sym_path, + ACTIONS(944), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [187938] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5420), 1, - anon_sym_DOLLAR, - ACTIONS(5422), 1, - anon_sym_LPAREN2, - ACTIONS(5424), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5426), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5428), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(5565), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8857), 1, - aux_sym__immediate_decimal_token1, - STATE(2890), 1, - sym__immediate_decimal, - STATE(5203), 1, + ACTIONS(935), 1, + anon_sym_DASH2, + ACTIONS(8842), 1, + anon_sym_DOT2, + STATE(5523), 1, + sym_path, + STATE(5195), 2, sym_comment, - STATE(3100), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [189888] = 11, + aux_sym_cell_path_repeat1, + ACTIONS(937), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [187963] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1030), 1, + ACTIONS(1016), 1, anon_sym_DOLLAR, - ACTIONS(4580), 1, + ACTIONS(4207), 1, anon_sym_LPAREN2, - ACTIONS(7078), 1, + ACTIONS(7070), 1, aux_sym_unquoted_token3, - ACTIONS(7922), 1, + ACTIONS(8062), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8859), 1, + ACTIONS(8845), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8861), 1, + ACTIONS(8847), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8863), 1, + ACTIONS(8849), 1, aux_sym__immediate_decimal_token5, - STATE(5204), 1, + STATE(5196), 1, sym_comment, - STATE(5642), 1, + STATE(5851), 1, sym__immediate_decimal, - STATE(5832), 2, + STATE(5867), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [189923] = 11, + [187998] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1030), 1, + ACTIONS(1016), 1, anon_sym_DOLLAR, - ACTIONS(4580), 1, + ACTIONS(4207), 1, anon_sym_LPAREN2, - ACTIONS(7078), 1, + ACTIONS(7070), 1, aux_sym_unquoted_token3, - ACTIONS(8238), 1, + ACTIONS(8569), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8865), 1, + ACTIONS(8851), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8867), 1, + ACTIONS(8853), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8869), 1, + ACTIONS(8855), 1, aux_sym__immediate_decimal_token5, - STATE(5205), 1, + STATE(5197), 1, sym_comment, - STATE(6323), 1, + STATE(6741), 1, sym__immediate_decimal, - STATE(2051), 2, + STATE(1766), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [189958] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8762), 1, - anon_sym_DASH_DASH, - ACTIONS(8764), 1, - anon_sym_DASH2, - ACTIONS(8871), 1, - anon_sym_as, - STATE(5206), 1, - sym_comment, - STATE(5393), 1, - aux_sym_ctrl_do_repeat1, - STATE(6075), 1, - sym__flag, - STATE(5788), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8770), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [189989] = 11, + [188033] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2240), 1, + ACTIONS(2108), 1, anon_sym_DOLLAR, - ACTIONS(7094), 1, + ACTIONS(7029), 1, anon_sym_LPAREN2, - ACTIONS(7098), 1, + ACTIONS(7033), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7100), 1, + ACTIONS(7035), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7102), 1, + ACTIONS(7037), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7104), 1, + ACTIONS(7039), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7215), 1, + ACTIONS(7179), 1, aux_sym_unquoted_token3, - STATE(4083), 1, + STATE(4054), 1, sym__immediate_decimal, - STATE(5207), 1, + STATE(5198), 1, sym_comment, - STATE(4383), 2, + STATE(4192), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [190024] = 11, + [188068] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2240), 1, + ACTIONS(1018), 1, anon_sym_DOLLAR, - ACTIONS(7094), 1, + ACTIONS(4486), 1, anon_sym_LPAREN2, - ACTIONS(7116), 1, + ACTIONS(4626), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7118), 1, + ACTIONS(4758), 1, + aux_sym_unquoted_token3, + ACTIONS(8857), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7120), 1, + ACTIONS(8859), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7122), 1, + ACTIONS(8861), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7215), 1, - aux_sym_unquoted_token3, - STATE(4550), 1, + STATE(2174), 1, sym__immediate_decimal, - STATE(5208), 1, + STATE(5199), 1, sym_comment, - STATE(4803), 2, + STATE(2417), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [190059] = 8, - ACTIONS(3), 1, + [188103] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8873), 1, - anon_sym_DOT2, - STATE(5209), 1, + ACTIONS(5120), 1, + anon_sym_DASH2, + STATE(5200), 1, sym_comment, - STATE(5406), 1, - aux_sym_cell_path_repeat1, - STATE(5657), 1, - sym_path, - STATE(5701), 1, - sym_cell_path, - ACTIONS(943), 3, - anon_sym_RBRACK, + ACTIONS(5118), 9, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(945), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [190088] = 11, - ACTIONS(251), 1, + [188124] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6586), 1, + ACTIONS(6993), 1, anon_sym_DOLLAR, - ACTIONS(8746), 1, + ACTIONS(8788), 1, + sym_identifier, + ACTIONS(8790), 1, anon_sym_DASH_DASH, - ACTIONS(8748), 1, + ACTIONS(8792), 1, anon_sym_DASH2, - ACTIONS(8875), 1, - sym_identifier, - STATE(5210), 1, + STATE(5201), 1, sym_comment, - STATE(5334), 1, - sym__flag, - STATE(5523), 1, + STATE(5225), 1, aux_sym_ctrl_do_repeat1, - STATE(6816), 1, - sym__variable_name, - STATE(7139), 1, + STATE(5395), 1, + sym__flag, + STATE(5653), 1, sym_val_variable, - STATE(5247), 2, + STATE(6211), 1, + sym__variable_name, + STATE(5200), 2, sym_short_flag, sym_long_flag, - [190123] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1044), 1, - anon_sym_DOLLAR, - ACTIONS(4680), 1, - anon_sym_LPAREN2, - ACTIONS(4684), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4904), 1, - aux_sym_unquoted_token3, - ACTIONS(8877), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8879), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8881), 1, - aux_sym__immediate_decimal_token5, - STATE(1913), 1, - sym__immediate_decimal, - STATE(5211), 1, - sym_comment, - STATE(2132), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [190158] = 11, - ACTIONS(3), 1, + [188159] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3102), 1, - anon_sym_DOLLAR, - ACTIONS(8148), 1, - anon_sym_LPAREN2, - ACTIONS(8200), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8202), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8204), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8206), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8883), 1, - aux_sym__unquoted_in_record_token3, - STATE(5212), 1, + ACTIONS(1931), 1, + anon_sym_DASH2, + ACTIONS(8739), 1, + anon_sym_DOT2, + STATE(5202), 1, sym_comment, - STATE(5607), 1, - sym__immediate_decimal, - STATE(5831), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [190193] = 11, + STATE(5226), 1, + aux_sym_cell_path_repeat1, + STATE(5479), 1, + sym_path, + STATE(5808), 1, + sym_cell_path, + ACTIONS(1933), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + [188188] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3580), 1, + ACTIONS(1534), 1, anon_sym_DOLLAR, - ACTIONS(7181), 1, + ACTIONS(1536), 1, anon_sym_LPAREN2, - ACTIONS(7185), 1, + ACTIONS(1540), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7187), 1, + ACTIONS(1542), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7274), 1, + ACTIONS(1753), 1, aux_sym__unquoted_in_record_token3, - ACTIONS(8885), 1, + ACTIONS(8863), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8887), 1, + ACTIONS(8865), 1, aux_sym__immediate_decimal_token5, - STATE(4204), 1, + STATE(416), 1, sym__immediate_decimal, - STATE(5213), 1, + STATE(5203), 1, sym_comment, - STATE(4537), 2, + STATE(548), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [190228] = 11, + [188223] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3580), 1, + ACTIONS(1365), 1, anon_sym_DOLLAR, - ACTIONS(7181), 1, + ACTIONS(1592), 1, anon_sym_LPAREN2, - ACTIONS(7235), 1, + ACTIONS(1594), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7237), 1, + ACTIONS(1596), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7274), 1, + ACTIONS(1753), 1, aux_sym__unquoted_in_record_token3, - ACTIONS(8889), 1, + ACTIONS(8867), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8891), 1, + ACTIONS(8869), 1, aux_sym__immediate_decimal_token5, - STATE(4712), 1, + STATE(564), 1, sym__immediate_decimal, - STATE(5214), 1, + STATE(5204), 1, sym_comment, - STATE(5108), 2, + STATE(731), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [190263] = 11, - ACTIONS(3), 1, + [188258] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3102), 1, - anon_sym_DOLLAR, - ACTIONS(8148), 1, - anon_sym_LPAREN2, - ACTIONS(8580), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8582), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8584), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8586), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8883), 1, - aux_sym__unquoted_in_record_token3, - STATE(5215), 1, + ACTIONS(8444), 1, + anon_sym_DASH_DASH, + ACTIONS(8446), 1, + anon_sym_DASH2, + STATE(5191), 1, + aux_sym_ctrl_do_repeat1, + STATE(5205), 1, sym_comment, - STATE(6708), 1, - sym__immediate_decimal, - STATE(7048), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [190298] = 4, - ACTIONS(251), 1, + STATE(5395), 1, + sym__flag, + STATE(5200), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8871), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [188287] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5216), 1, + ACTIONS(1939), 1, + anon_sym_DASH2, + ACTIONS(8739), 1, + anon_sym_DOT2, + STATE(5206), 1, sym_comment, - ACTIONS(1552), 4, - anon_sym_DOLLAR, + STATE(5226), 1, + aux_sym_cell_path_repeat1, + STATE(5479), 1, + sym_path, + STATE(5819), 1, + sym_cell_path, + ACTIONS(1941), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1550), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [190319] = 6, - ACTIONS(3), 1, + [188316] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8893), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8895), 1, - aux_sym__immediate_decimal_token2, - STATE(5217), 1, + ACTIONS(1909), 1, + anon_sym_DASH2, + ACTIONS(8739), 1, + anon_sym_DOT2, + STATE(5207), 1, sym_comment, - ACTIONS(1542), 3, + STATE(5226), 1, + aux_sym_cell_path_repeat1, + STATE(5479), 1, + sym_path, + STATE(5838), 1, + sym_cell_path, + ACTIONS(1911), 5, + ts_builtin_sym_end, sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1544), 5, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [190344] = 11, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + [188345] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1638), 1, - anon_sym_RBRACE, - ACTIONS(1640), 1, - anon_sym_LPAREN2, - ACTIONS(1650), 1, - sym__entry_separator, - ACTIONS(8883), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(8897), 1, - anon_sym_DOT_DOT2, - ACTIONS(8901), 1, - sym_filesize_unit, - ACTIONS(8903), 1, - sym_duration_unit, - STATE(5218), 1, + ACTIONS(1839), 1, + anon_sym_DASH2, + ACTIONS(8739), 1, + anon_sym_DOT2, + STATE(5208), 1, sym_comment, - STATE(7370), 1, - sym__expr_parenthesized_immediate, - ACTIONS(8899), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [190379] = 6, - ACTIONS(3), 1, + STATE(5226), 1, + aux_sym_cell_path_repeat1, + STATE(5479), 1, + sym_path, + STATE(5864), 1, + sym_cell_path, + ACTIONS(1841), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + [188374] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8905), 1, - anon_sym_DOT, - ACTIONS(8907), 1, - aux_sym__immediate_decimal_token2, - STATE(5219), 1, + ACTIONS(1847), 1, + anon_sym_DASH2, + ACTIONS(8739), 1, + anon_sym_DOT2, + STATE(5209), 1, sym_comment, - ACTIONS(1550), 3, + STATE(5226), 1, + aux_sym_cell_path_repeat1, + STATE(5479), 1, + sym_path, + STATE(5873), 1, + sym_cell_path, + ACTIONS(1849), 5, + ts_builtin_sym_end, sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1552), 5, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [190404] = 4, - ACTIONS(251), 1, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + [188403] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5220), 1, + ACTIONS(1853), 1, + anon_sym_DASH2, + ACTIONS(8739), 1, + anon_sym_DOT2, + STATE(5210), 1, sym_comment, - ACTIONS(1544), 4, - anon_sym_DOLLAR, + STATE(5226), 1, + aux_sym_cell_path_repeat1, + STATE(5479), 1, + sym_path, + STATE(5887), 1, + sym_cell_path, + ACTIONS(1855), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1542), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [190425] = 8, - ACTIONS(251), 1, + [188432] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1961), 1, + ACTIONS(1869), 1, anon_sym_DASH2, - ACTIONS(8774), 1, + ACTIONS(8739), 1, anon_sym_DOT2, - STATE(5221), 1, + STATE(5211), 1, sym_comment, - STATE(5229), 1, + STATE(5226), 1, aux_sym_cell_path_repeat1, - STATE(5585), 1, + STATE(5479), 1, sym_path, - STATE(5879), 1, + STATE(5889), 1, sym_cell_path, - ACTIONS(1963), 5, + ACTIONS(1871), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [190454] = 4, - ACTIONS(3), 1, + [188461] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5222), 1, + ACTIONS(1877), 1, + anon_sym_DASH2, + ACTIONS(8739), 1, + anon_sym_DOT2, + STATE(5212), 1, sym_comment, - ACTIONS(1542), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1544), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [190475] = 4, - ACTIONS(251), 1, + STATE(5226), 1, + aux_sym_cell_path_repeat1, + STATE(5479), 1, + sym_path, + STATE(5896), 1, + sym_cell_path, + ACTIONS(1879), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + [188490] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8522), 1, + ACTIONS(1969), 1, anon_sym_DASH2, - STATE(5223), 1, + ACTIONS(8739), 1, + anon_sym_DOT2, + STATE(5213), 1, sym_comment, - ACTIONS(5799), 9, - sym_identifier, + STATE(5226), 1, + aux_sym_cell_path_repeat1, + STATE(5479), 1, + sym_path, + STATE(5898), 1, + sym_cell_path, + ACTIONS(1971), 5, + ts_builtin_sym_end, sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DASH_DASH, - [190496] = 4, - ACTIONS(3), 1, + [188519] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5224), 1, - sym_comment, - ACTIONS(978), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(976), 7, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, + ACTIONS(1833), 1, + anon_sym_DASH2, + ACTIONS(8739), 1, anon_sym_DOT2, - [190517] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3102), 1, - anon_sym_DOLLAR, - ACTIONS(8148), 1, - anon_sym_LPAREN2, - ACTIONS(8152), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8154), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8156), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8158), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8909), 1, - aux_sym__unquoted_in_list_token3, - STATE(5225), 1, + STATE(5214), 1, sym_comment, - STATE(5613), 1, - sym__immediate_decimal, - STATE(5831), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [190552] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3102), 1, - anon_sym_DOLLAR, - ACTIONS(8148), 1, - anon_sym_LPAREN2, - ACTIONS(8482), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8484), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8486), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8488), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8909), 1, - aux_sym__unquoted_in_list_token3, STATE(5226), 1, - sym_comment, - STATE(6679), 1, - sym__immediate_decimal, - STATE(7048), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [190587] = 4, - ACTIONS(251), 1, + aux_sym_cell_path_repeat1, + STATE(5479), 1, + sym_path, + STATE(5907), 1, + sym_cell_path, + ACTIONS(1835), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + [188548] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5227), 1, + ACTIONS(1861), 1, + anon_sym_DASH2, + ACTIONS(8739), 1, + anon_sym_DOT2, + STATE(5215), 1, sym_comment, - ACTIONS(1682), 4, - anon_sym_DOLLAR, + STATE(5226), 1, + aux_sym_cell_path_repeat1, + STATE(5479), 1, + sym_path, + STATE(5910), 1, + sym_cell_path, + ACTIONS(1863), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1680), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [190608] = 8, - ACTIONS(251), 1, + [188577] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1929), 1, + ACTIONS(1873), 1, anon_sym_DASH2, - ACTIONS(8774), 1, + ACTIONS(8739), 1, anon_sym_DOT2, - STATE(5228), 1, + STATE(5216), 1, sym_comment, - STATE(5229), 1, + STATE(5226), 1, aux_sym_cell_path_repeat1, - STATE(5585), 1, + STATE(5479), 1, sym_path, - STATE(5857), 1, + STATE(5911), 1, sym_cell_path, - ACTIONS(1931), 5, + ACTIONS(1875), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [190637] = 7, - ACTIONS(251), 1, + [188606] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(949), 1, + ACTIONS(1881), 1, anon_sym_DASH2, - ACTIONS(8774), 1, + ACTIONS(8739), 1, anon_sym_DOT2, - STATE(5229), 1, + STATE(5217), 1, sym_comment, - STATE(5275), 1, + STATE(5226), 1, aux_sym_cell_path_repeat1, - STATE(5585), 1, + STATE(5479), 1, sym_path, - ACTIONS(951), 6, + STATE(5912), 1, + sym_cell_path, + ACTIONS(1883), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - anon_sym_as, - [190664] = 10, - ACTIONS(251), 1, + [188635] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1510), 1, - anon_sym_LBRACE, - ACTIONS(4580), 1, - anon_sym_LPAREN2, - ACTIONS(6551), 1, - anon_sym_DOLLAR, - ACTIONS(8683), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8685), 1, - aux_sym__immediate_decimal_token5, - STATE(2076), 1, - sym__immediate_decimal, - STATE(5230), 1, + ACTIONS(1885), 1, + anon_sym_DASH2, + ACTIONS(8739), 1, + anon_sym_DOT2, + STATE(5218), 1, sym_comment, - ACTIONS(8836), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2075), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [190697] = 8, - ACTIONS(251), 1, + STATE(5226), 1, + aux_sym_cell_path_repeat1, + STATE(5479), 1, + sym_path, + STATE(5919), 1, + sym_cell_path, + ACTIONS(1887), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + [188664] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1965), 1, + ACTIONS(1889), 1, anon_sym_DASH2, - ACTIONS(8774), 1, + ACTIONS(8739), 1, anon_sym_DOT2, - STATE(5229), 1, - aux_sym_cell_path_repeat1, - STATE(5231), 1, + STATE(5219), 1, sym_comment, - STATE(5585), 1, + STATE(5226), 1, + aux_sym_cell_path_repeat1, + STATE(5479), 1, sym_path, - STATE(5882), 1, + STATE(5818), 1, sym_cell_path, - ACTIONS(1967), 5, + ACTIONS(1891), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [190726] = 4, - ACTIONS(251), 1, + [188693] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5232), 1, + ACTIONS(1897), 1, + anon_sym_DASH2, + ACTIONS(8739), 1, + anon_sym_DOT2, + STATE(5220), 1, sym_comment, - ACTIONS(1745), 4, - anon_sym_DOLLAR, + STATE(5226), 1, + aux_sym_cell_path_repeat1, + STATE(5479), 1, + sym_path, + STATE(5695), 1, + sym_cell_path, + ACTIONS(1899), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1743), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [190747] = 11, - ACTIONS(3), 1, + [188722] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1638), 1, - anon_sym_RBRACK, - ACTIONS(1650), 1, - sym__entry_separator, - ACTIONS(5555), 1, - anon_sym_LPAREN2, - ACTIONS(8909), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(8911), 1, - anon_sym_DOT_DOT2, - ACTIONS(8915), 1, - sym_filesize_unit, - ACTIONS(8917), 1, - sym_duration_unit, - STATE(5233), 1, + ACTIONS(1901), 1, + anon_sym_DASH2, + ACTIONS(8739), 1, + anon_sym_DOT2, + STATE(5221), 1, sym_comment, - STATE(7428), 1, - sym__expr_parenthesized_immediate, - ACTIONS(8913), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [190782] = 8, - ACTIONS(251), 1, + STATE(5226), 1, + aux_sym_cell_path_repeat1, + STATE(5479), 1, + sym_path, + STATE(5696), 1, + sym_cell_path, + ACTIONS(1903), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + [188751] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1913), 1, + ACTIONS(1905), 1, anon_sym_DASH2, - ACTIONS(8774), 1, + ACTIONS(8739), 1, anon_sym_DOT2, - STATE(5229), 1, - aux_sym_cell_path_repeat1, - STATE(5234), 1, + STATE(5222), 1, sym_comment, - STATE(5585), 1, + STATE(5226), 1, + aux_sym_cell_path_repeat1, + STATE(5479), 1, sym_path, - STATE(5850), 1, + STATE(5700), 1, sym_cell_path, - ACTIONS(1915), 5, + ACTIONS(1907), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [190811] = 4, + [188780] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(5235), 1, + ACTIONS(3512), 1, + anon_sym_DOLLAR, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(7070), 1, + aux_sym_unquoted_token3, + ACTIONS(8694), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8873), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8875), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8877), 1, + aux_sym__immediate_decimal_token5, + STATE(5223), 1, sym_comment, - ACTIONS(986), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(984), 7, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [190832] = 4, - ACTIONS(251), 1, + STATE(6033), 1, + sym__immediate_decimal, + STATE(6291), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [188815] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5097), 1, + ACTIONS(8444), 1, + anon_sym_DASH_DASH, + ACTIONS(8446), 1, anon_sym_DASH2, - STATE(5236), 1, + STATE(5224), 1, sym_comment, - ACTIONS(5095), 9, - sym_identifier, + STATE(5283), 1, + aux_sym_ctrl_do_repeat1, + STATE(5395), 1, + sym__flag, + STATE(5200), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8879), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_RPAREN, + anon_sym_RBRACE, + [188844] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6993), 1, anon_sym_DOLLAR, + ACTIONS(8788), 1, + sym_identifier, + ACTIONS(8790), 1, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [190853] = 9, - ACTIONS(251), 1, + ACTIONS(8792), 1, + anon_sym_DASH2, + STATE(5225), 1, + sym_comment, + STATE(5395), 1, + sym__flag, + STATE(5516), 1, + aux_sym_ctrl_do_repeat1, + STATE(5653), 1, + sym_val_variable, + STATE(6294), 1, + sym__variable_name, + STATE(5200), 2, + sym_short_flag, + sym_long_flag, + [188879] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1638), 1, + ACTIONS(942), 1, anon_sym_DASH2, - ACTIONS(4622), 1, - anon_sym_DOT_DOT2, - ACTIONS(7078), 1, - aux_sym_unquoted_token2, - ACTIONS(8919), 1, - sym_filesize_unit, - ACTIONS(8921), 1, - sym_duration_unit, - STATE(5237), 1, + ACTIONS(8739), 1, + anon_sym_DOT2, + STATE(5226), 1, sym_comment, - ACTIONS(4624), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1650), 3, - anon_sym_DOLLAR, + STATE(5228), 1, + aux_sym_cell_path_repeat1, + STATE(5479), 1, + sym_path, + ACTIONS(944), 6, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [190884] = 4, - ACTIONS(251), 1, + anon_sym_as, + [188906] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3512), 1, + anon_sym_DOLLAR, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(7070), 1, + aux_sym_unquoted_token3, + ACTIONS(8770), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8881), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8883), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8885), 1, + aux_sym__immediate_decimal_token5, + STATE(5227), 1, + sym_comment, + STATE(7346), 1, + sym__immediate_decimal, + STATE(1766), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [188941] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5101), 1, + ACTIONS(935), 1, anon_sym_DASH2, - STATE(5238), 1, + ACTIONS(8887), 1, + anon_sym_DOT2, + STATE(5479), 1, + sym_path, + STATE(5228), 2, sym_comment, - ACTIONS(5099), 9, - sym_identifier, + aux_sym_cell_path_repeat1, + ACTIONS(937), 6, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [190905] = 4, - ACTIONS(251), 1, + anon_sym_as, + [188966] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5055), 1, + ACTIONS(2338), 1, anon_sym_DASH2, - STATE(5239), 1, + STATE(5229), 1, sym_comment, - ACTIONS(5053), 9, - sym_identifier, + ACTIONS(2340), 9, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, @@ -402035,33 +404315,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [190926] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8923), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8925), 1, - aux_sym__immediate_decimal_token2, - STATE(5240), 1, - sym_comment, - ACTIONS(1542), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1544), 6, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [190951] = 4, - ACTIONS(251), 1, + anon_sym_as, + [188987] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5059), 1, + ACTIONS(5132), 1, anon_sym_DASH2, - STATE(5241), 1, + STATE(5230), 1, sym_comment, - ACTIONS(5057), 9, + ACTIONS(5130), 9, sym_identifier, sym__newline, anon_sym_SEMI, @@ -402071,14 +404333,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [190972] = 4, - ACTIONS(251), 1, + [189008] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5069), 1, + ACTIONS(5136), 1, anon_sym_DASH2, - STATE(5242), 1, + STATE(5231), 1, sym_comment, - ACTIONS(5067), 9, + ACTIONS(5134), 9, sym_identifier, sym__newline, anon_sym_SEMI, @@ -402088,15 +404350,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [190993] = 4, - ACTIONS(251), 1, + [189029] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5077), 1, + ACTIONS(2344), 1, anon_sym_DASH2, - STATE(5243), 1, + STATE(5232), 1, sym_comment, - ACTIONS(5075), 9, - sym_identifier, + ACTIONS(2346), 9, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, @@ -402105,75 +404366,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [191014] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8927), 1, - anon_sym_DOT, - ACTIONS(8929), 1, - aux_sym__immediate_decimal_token2, - STATE(5244), 1, - sym_comment, - ACTIONS(1550), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1552), 6, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [191039] = 8, - ACTIONS(251), 1, + anon_sym_as, + [189050] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1933), 1, + ACTIONS(8444), 1, + anon_sym_DASH_DASH, + ACTIONS(8446), 1, anon_sym_DASH2, - ACTIONS(8774), 1, - anon_sym_DOT2, - STATE(5229), 1, - aux_sym_cell_path_repeat1, - STATE(5245), 1, + STATE(5233), 1, sym_comment, - STATE(5585), 1, - sym_path, - STATE(5858), 1, - sym_cell_path, - ACTIONS(1935), 5, - ts_builtin_sym_end, + STATE(5239), 1, + aux_sym_ctrl_do_repeat1, + STATE(5395), 1, + sym__flag, + STATE(5200), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8890), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [191068] = 8, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [189079] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1909), 1, - anon_sym_DASH2, - ACTIONS(8774), 1, - anon_sym_DOT2, - STATE(5229), 1, - aux_sym_cell_path_repeat1, - STATE(5246), 1, + ACTIONS(5488), 1, + anon_sym_DOLLAR, + ACTIONS(5490), 1, + anon_sym_LPAREN2, + ACTIONS(5492), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5494), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5496), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(5575), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8892), 1, + aux_sym__immediate_decimal_token1, + STATE(2924), 1, + sym__immediate_decimal, + STATE(5234), 1, sym_comment, - STATE(5585), 1, - sym_path, - STATE(5848), 1, - sym_cell_path, - ACTIONS(1911), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [191097] = 4, - ACTIONS(251), 1, + STATE(3144), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [189114] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5555), 1, + anon_sym_LPAREN2, + ACTIONS(5557), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5559), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5752), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8894), 1, + anon_sym_DOLLAR, + ACTIONS(8896), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8898), 1, + aux_sym__immediate_decimal_token5, + STATE(3141), 1, + sym__immediate_decimal, + STATE(5235), 1, + sym_comment, + STATE(3211), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [189149] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5081), 1, + ACTIONS(5148), 1, anon_sym_DASH2, - STATE(5247), 1, + STATE(5236), 1, sym_comment, - ACTIONS(5079), 9, + ACTIONS(5146), 9, sym_identifier, sym__newline, anon_sym_SEMI, @@ -402183,215 +404453,466 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [191118] = 7, - ACTIONS(251), 1, + [189170] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1016), 1, + anon_sym_DOLLAR, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(7070), 1, + aux_sym_unquoted_token3, + ACTIONS(7993), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8900), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8902), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8904), 1, + aux_sym__immediate_decimal_token5, + STATE(5237), 1, + sym_comment, + STATE(5629), 1, + sym__immediate_decimal, + STATE(5867), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [189205] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1016), 1, + anon_sym_DOLLAR, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(7070), 1, + aux_sym_unquoted_token3, + ACTIONS(8112), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8906), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8908), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8910), 1, + aux_sym__immediate_decimal_token5, + STATE(5238), 1, + sym_comment, + STATE(6287), 1, + sym__immediate_decimal, + STATE(1766), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [189240] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(949), 1, + ACTIONS(8444), 1, + anon_sym_DASH_DASH, + ACTIONS(8446), 1, anon_sym_DASH2, - ACTIONS(8750), 1, - anon_sym_DOT2, - STATE(5248), 1, + STATE(5239), 1, sym_comment, - STATE(5249), 1, - aux_sym_cell_path_repeat1, - STATE(5521), 1, - sym_path, - ACTIONS(951), 6, + STATE(5283), 1, + aux_sym_ctrl_do_repeat1, + STATE(5395), 1, + sym__flag, + STATE(5200), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8912), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_as, - [191145] = 6, - ACTIONS(251), 1, + [189269] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(953), 1, - anon_sym_DASH2, - ACTIONS(8931), 1, - anon_sym_DOT2, - STATE(5521), 1, - sym_path, - STATE(5249), 2, + STATE(5240), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(955), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + ACTIONS(1689), 4, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_as, - [191170] = 8, - ACTIONS(251), 1, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1691), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [189290] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1582), 1, + anon_sym_LBRACE, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(6993), 1, + anon_sym_DOLLAR, + ACTIONS(8696), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8698), 1, + aux_sym__immediate_decimal_token5, + STATE(1816), 1, + sym__immediate_decimal, + STATE(5241), 1, + sym_comment, + ACTIONS(8914), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1814), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [189323] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1586), 1, + anon_sym_LBRACE, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(6993), 1, + anon_sym_DOLLAR, + ACTIONS(8696), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8698), 1, + aux_sym__immediate_decimal_token5, + STATE(1820), 1, + sym__immediate_decimal, + STATE(5242), 1, + sym_comment, + ACTIONS(8914), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1817), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [189356] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1590), 1, + anon_sym_LBRACE, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(6993), 1, + anon_sym_DOLLAR, + ACTIONS(8696), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8698), 1, + aux_sym__immediate_decimal_token5, + STATE(1822), 1, + sym__immediate_decimal, + STATE(5243), 1, + sym_comment, + ACTIONS(8914), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1821), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [189389] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1018), 1, + anon_sym_DOLLAR, + ACTIONS(4486), 1, + anon_sym_LPAREN2, + ACTIONS(4490), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4758), 1, + aux_sym_unquoted_token3, + ACTIONS(8916), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8918), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8920), 1, + aux_sym__immediate_decimal_token5, + STATE(1676), 1, + sym__immediate_decimal, + STATE(5244), 1, + sym_comment, + STATE(2031), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [189424] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1016), 1, + anon_sym_DOLLAR, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(4211), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4706), 1, + aux_sym_unquoted_token3, + ACTIONS(8922), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8924), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8926), 1, + aux_sym__immediate_decimal_token5, + STATE(1608), 1, + sym__immediate_decimal, + STATE(5245), 1, + sym_comment, + STATE(1738), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [189459] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2108), 1, + anon_sym_DOLLAR, + ACTIONS(7029), 1, + anon_sym_LPAREN2, + ACTIONS(7054), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7056), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7058), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7060), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7179), 1, + aux_sym_unquoted_token3, + STATE(4278), 1, + sym__immediate_decimal, + STATE(5246), 1, + sym_comment, + STATE(4557), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [189494] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1443), 1, + anon_sym_DOLLAR, + ACTIONS(1445), 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(1653), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(8928), 1, + aux_sym__immediate_decimal_token1, + STATE(381), 1, + sym__immediate_decimal, + STATE(5247), 1, + sym_comment, + STATE(490), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [189529] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1548), 1, + anon_sym_DOLLAR, + ACTIONS(1550), 1, + anon_sym_LPAREN2, + ACTIONS(1552), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(1554), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(1556), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(1653), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(8930), 1, + aux_sym__immediate_decimal_token1, + STATE(532), 1, + sym__immediate_decimal, + STATE(5248), 1, + sym_comment, + STATE(671), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [189564] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1969), 1, + ACTIONS(7009), 1, + anon_sym_DOLLAR, + ACTIONS(8790), 1, + anon_sym_DASH_DASH, + ACTIONS(8792), 1, anon_sym_DASH2, - ACTIONS(8774), 1, - anon_sym_DOT2, - STATE(5229), 1, - aux_sym_cell_path_repeat1, - STATE(5250), 1, + ACTIONS(8828), 1, + sym_identifier, + STATE(5186), 1, + aux_sym_ctrl_do_repeat1, + STATE(5249), 1, sym_comment, - STATE(5585), 1, - sym_path, - STATE(5883), 1, - sym_cell_path, - ACTIONS(1971), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [191199] = 6, + STATE(5395), 1, + sym__flag, + STATE(6814), 1, + sym_val_variable, + STATE(7267), 1, + sym__variable_name, + STATE(5200), 2, + sym_short_flag, + sym_long_flag, + [189599] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8932), 1, + aux_sym__immediate_decimal_token1, ACTIONS(8934), 1, - anon_sym_DOT, - ACTIONS(8936), 1, aux_sym__immediate_decimal_token2, - STATE(5251), 1, + STATE(5250), 1, sym_comment, - ACTIONS(1755), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(1504), 3, + sym__newline, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1757), 4, - anon_sym_LPAREN2, + aux_sym_unquoted_token2, + ACTIONS(1506), 5, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [191224] = 11, + sym_filesize_unit, + sym_duration_unit, + [189624] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1030), 1, + ACTIONS(1016), 1, anon_sym_DOLLAR, - ACTIONS(4580), 1, + ACTIONS(4207), 1, anon_sym_LPAREN2, - ACTIONS(7078), 1, + ACTIONS(4706), 1, aux_sym_unquoted_token3, - ACTIONS(8138), 1, + ACTIONS(6436), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8938), 1, + ACTIONS(8936), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8940), 1, + ACTIONS(8938), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8942), 1, + ACTIONS(8940), 1, aux_sym__immediate_decimal_token5, - STATE(5252), 1, - sym_comment, - STATE(5726), 1, + STATE(3595), 1, sym__immediate_decimal, - STATE(5832), 2, + STATE(5251), 1, + sym_comment, + STATE(1738), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [191259] = 11, + [189659] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1030), 1, + ACTIONS(1016), 1, anon_sym_DOLLAR, - ACTIONS(4580), 1, + ACTIONS(4207), 1, anon_sym_LPAREN2, - ACTIONS(7078), 1, - aux_sym_unquoted_token3, - ACTIONS(8490), 1, + ACTIONS(4502), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8944), 1, + ACTIONS(4706), 1, + aux_sym_unquoted_token3, + ACTIONS(8942), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8946), 1, + ACTIONS(8944), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8948), 1, + ACTIONS(8946), 1, aux_sym__immediate_decimal_token5, - STATE(5253), 1, - sym_comment, - STATE(7014), 1, + STATE(1984), 1, sym__immediate_decimal, - STATE(2051), 2, + STATE(5252), 1, + sym_comment, + STATE(1766), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [191294] = 11, + [189694] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5253), 1, + sym_comment, + ACTIONS(1512), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1514), 7, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [189715] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5539), 1, - anon_sym_LPAREN2, - ACTIONS(5541), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5543), 1, + ACTIONS(8948), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5734), 1, - aux_sym__unquoted_in_list_token3, ACTIONS(8950), 1, - anon_sym_DOLLAR, - ACTIONS(8952), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8954), 1, - aux_sym__immediate_decimal_token5, - STATE(3127), 1, - sym__immediate_decimal, + aux_sym__immediate_decimal_token2, STATE(5254), 1, sym_comment, - STATE(3179), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [191329] = 11, + ACTIONS(1693), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1695), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [189740] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2074), 1, + ACTIONS(2788), 1, anon_sym_DOLLAR, - ACTIONS(7045), 1, + ACTIONS(3966), 1, anon_sym_LPAREN2, - ACTIONS(7049), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7051), 1, + ACTIONS(3970), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7053), 1, + ACTIONS(3972), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4462), 1, + aux_sym_unquoted_token3, + ACTIONS(8952), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7055), 1, + ACTIONS(8954), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7177), 1, - aux_sym_unquoted_token3, - STATE(4059), 1, + STATE(1445), 1, sym__immediate_decimal, STATE(5255), 1, sym_comment, - STATE(4241), 2, + STATE(1556), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [191364] = 11, + [189775] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1044), 1, + ACTIONS(1016), 1, anon_sym_DOLLAR, - ACTIONS(4680), 1, + ACTIONS(4207), 1, anon_sym_LPAREN2, - ACTIONS(4734), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4904), 1, + ACTIONS(4706), 1, aux_sym_unquoted_token3, + ACTIONS(6450), 1, + aux_sym__immediate_decimal_token1, ACTIONS(8956), 1, aux_sym__immediate_decimal_token3, ACTIONS(8958), 1, aux_sym__immediate_decimal_token4, ACTIONS(8960), 1, aux_sym__immediate_decimal_token5, - STATE(2250), 1, + STATE(3652), 1, sym__immediate_decimal, STATE(5256), 1, sym_comment, - STATE(2495), 2, + STATE(1766), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [191399] = 4, - ACTIONS(251), 1, + [189810] = 4, + ACTIONS(247), 1, anon_sym_POUND, STATE(5257), 1, sym_comment, - ACTIONS(1550), 3, + ACTIONS(1504), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1552), 7, + ACTIONS(1506), 7, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, @@ -402399,182 +404920,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [191420] = 8, - ACTIONS(251), 1, + [189831] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8546), 1, - anon_sym_DASH_DASH, - ACTIONS(8548), 1, - anon_sym_DASH2, + ACTIONS(2236), 1, + anon_sym_DOLLAR, + ACTIONS(7078), 1, + anon_sym_LPAREN2, + ACTIONS(7082), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7084), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7086), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7088), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7239), 1, + aux_sym_unquoted_token3, + STATE(4120), 1, + sym__immediate_decimal, STATE(5258), 1, sym_comment, - STATE(5310), 1, - aux_sym_ctrl_do_repeat1, - STATE(5334), 1, - sym__flag, - STATE(5247), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8962), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [191449] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1979), 1, - anon_sym_DASH2, - ACTIONS(8774), 1, - anon_sym_DOT2, - STATE(5229), 1, - aux_sym_cell_path_repeat1, - STATE(5259), 1, - sym_comment, - STATE(5585), 1, - sym_path, - STATE(5884), 1, - sym_cell_path, - ACTIONS(1981), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [191478] = 11, + STATE(4283), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [189866] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1512), 1, + ACTIONS(3985), 1, anon_sym_DOLLAR, - ACTIONS(1514), 1, + ACTIONS(3987), 1, anon_sym_LPAREN2, - ACTIONS(1518), 1, + ACTIONS(3989), 1, aux_sym__immediate_decimal_token3, - ACTIONS(1520), 1, + ACTIONS(3991), 1, aux_sym__immediate_decimal_token1, - ACTIONS(1779), 1, - aux_sym__unquoted_in_record_token3, - ACTIONS(8964), 1, + ACTIONS(4462), 1, + aux_sym_unquoted_token3, + ACTIONS(8962), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8966), 1, + ACTIONS(8964), 1, aux_sym__immediate_decimal_token5, - STATE(398), 1, + STATE(1657), 1, sym__immediate_decimal, - STATE(5260), 1, + STATE(5259), 1, sym_comment, - STATE(515), 2, + STATE(1781), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [191513] = 11, + [189901] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8966), 1, + anon_sym_DOT, + ACTIONS(8968), 1, + aux_sym__immediate_decimal_token2, + STATE(5260), 1, + sym_comment, + ACTIONS(1512), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1514), 6, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [189926] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1317), 1, + ACTIONS(1018), 1, anon_sym_DOLLAR, - ACTIONS(1628), 1, + ACTIONS(4486), 1, anon_sym_LPAREN2, - ACTIONS(1630), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(1632), 1, + ACTIONS(4758), 1, + aux_sym_unquoted_token3, + ACTIONS(5872), 1, aux_sym__immediate_decimal_token1, - ACTIONS(1779), 1, - aux_sym__unquoted_in_record_token3, - ACTIONS(8968), 1, - aux_sym__immediate_decimal_token4, ACTIONS(8970), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8972), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8974), 1, aux_sym__immediate_decimal_token5, - STATE(553), 1, + STATE(3290), 1, sym__immediate_decimal, STATE(5261), 1, sym_comment, - STATE(684), 2, + STATE(2417), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [191548] = 8, - ACTIONS(251), 1, + [189961] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1937), 1, + ACTIONS(8749), 1, + anon_sym_DASH_DASH, + ACTIONS(8751), 1, anon_sym_DASH2, - ACTIONS(8774), 1, - anon_sym_DOT2, - STATE(5229), 1, - aux_sym_cell_path_repeat1, + ACTIONS(8976), 1, + anon_sym_as, STATE(5262), 1, sym_comment, - STATE(5585), 1, - sym_path, - STATE(5868), 1, - sym_cell_path, - ACTIONS(1939), 5, + STATE(5369), 1, + aux_sym_ctrl_do_repeat1, + STATE(6074), 1, + sym__flag, + STATE(5853), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8766), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [191577] = 8, - ACTIONS(251), 1, + [189992] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1905), 1, + ACTIONS(1945), 1, anon_sym_DASH2, - ACTIONS(8774), 1, + ACTIONS(8739), 1, anon_sym_DOT2, - STATE(5229), 1, + STATE(5226), 1, aux_sym_cell_path_repeat1, STATE(5263), 1, sym_comment, - STATE(5585), 1, + STATE(5479), 1, sym_path, - STATE(5886), 1, + STATE(5800), 1, sym_cell_path, - ACTIONS(1907), 5, + ACTIONS(1947), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [191606] = 4, - ACTIONS(251), 1, + [190021] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2366), 1, - anon_sym_DASH2, STATE(5264), 1, sym_comment, - ACTIONS(2368), 9, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - [191627] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2366), 1, - anon_sym_DASH2, - STATE(5265), 1, - sym_comment, - ACTIONS(2368), 9, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - [191648] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5266), 1, - sym_comment, - ACTIONS(1542), 3, + ACTIONS(1618), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1544), 7, + ACTIONS(1620), 7, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, @@ -402582,1768 +405071,1909 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [191669] = 6, + [190042] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8972), 1, + ACTIONS(1016), 1, + anon_sym_DOLLAR, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(4706), 1, + aux_sym_unquoted_token3, + ACTIONS(5695), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8974), 1, - aux_sym__immediate_decimal_token2, - STATE(5267), 1, + ACTIONS(8978), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8980), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8982), 1, + aux_sym__immediate_decimal_token5, + STATE(3122), 1, + sym__immediate_decimal, + STATE(5265), 1, sym_comment, - ACTIONS(1711), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1713), 4, + STATE(1738), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [190077] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3482), 1, + anon_sym_DOLLAR, + ACTIONS(4486), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [191694] = 4, - ACTIONS(251), 1, + ACTIONS(7019), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7118), 1, + aux_sym_unquoted_token3, + ACTIONS(8984), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8986), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8988), 1, + aux_sym__immediate_decimal_token5, + STATE(4188), 1, + sym__immediate_decimal, + STATE(5266), 1, + sym_comment, + STATE(2417), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [190112] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2370), 1, - anon_sym_DASH2, - STATE(5268), 1, + ACTIONS(2236), 1, + anon_sym_DOLLAR, + ACTIONS(7078), 1, + anon_sym_LPAREN2, + ACTIONS(7122), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7124), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7126), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7128), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7239), 1, + aux_sym_unquoted_token3, + STATE(4541), 1, + sym__immediate_decimal, + STATE(5267), 1, sym_comment, - ACTIONS(2372), 9, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, + STATE(4899), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [190147] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5514), 1, + anon_sym_LPAREN2, + ACTIONS(5518), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5520), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5752), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8470), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - [191715] = 4, - ACTIONS(251), 1, + ACTIONS(8472), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8474), 1, + aux_sym__immediate_decimal_token5, + STATE(2888), 1, + sym__immediate_decimal, + STATE(5268), 1, + sym_comment, + STATE(2944), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [190182] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2374), 1, - anon_sym_DASH2, STATE(5269), 1, sym_comment, - ACTIONS(2376), 9, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, + ACTIONS(1689), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1691), 7, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - [191736] = 4, - ACTIONS(251), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [190203] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5037), 1, - anon_sym_DASH2, + ACTIONS(3512), 1, + anon_sym_DOLLAR, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(6997), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7070), 1, + aux_sym_unquoted_token3, + ACTIONS(8990), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8992), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8994), 1, + aux_sym__immediate_decimal_token5, + STATE(3992), 1, + sym__immediate_decimal, STATE(5270), 1, sym_comment, - ACTIONS(5035), 9, - sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [191757] = 4, - ACTIONS(251), 1, + STATE(4039), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [190238] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5041), 1, - anon_sym_DASH2, + ACTIONS(1016), 1, + anon_sym_DOLLAR, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(4706), 1, + aux_sym_unquoted_token3, + ACTIONS(5799), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8996), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8998), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9000), 1, + aux_sym__immediate_decimal_token5, + STATE(3250), 1, + sym__immediate_decimal, STATE(5271), 1, sym_comment, - ACTIONS(5039), 9, - sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [191778] = 4, - ACTIONS(251), 1, + STATE(1766), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [190273] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2378), 1, - anon_sym_DASH2, + ACTIONS(1016), 1, + anon_sym_DOLLAR, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(4706), 1, + aux_sym_unquoted_token3, + ACTIONS(6444), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9002), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(9004), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9006), 1, + aux_sym__immediate_decimal_token5, + STATE(3611), 1, + sym__immediate_decimal, STATE(5272), 1, sym_comment, - ACTIONS(2380), 9, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - [191799] = 4, - ACTIONS(251), 1, + STATE(3657), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [190308] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2382), 1, - anon_sym_DASH2, + ACTIONS(3512), 1, + anon_sym_DOLLAR, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(7003), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7070), 1, + aux_sym_unquoted_token3, + ACTIONS(9008), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(9010), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9012), 1, + aux_sym__immediate_decimal_token5, + STATE(4139), 1, + sym__immediate_decimal, STATE(5273), 1, sym_comment, - ACTIONS(2384), 9, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - [191820] = 4, - ACTIONS(3), 1, + STATE(1766), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [190343] = 5, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(8804), 1, + aux_sym__immediate_decimal_token2, STATE(5274), 1, sym_comment, - ACTIONS(1680), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(1512), 2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1682), 6, - anon_sym_LPAREN2, + aux_sym_unquoted_token2, + ACTIONS(1514), 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, - sym__entry_separator, - [191841] = 6, - ACTIONS(251), 1, + [190366] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(953), 1, - anon_sym_DASH2, - ACTIONS(8976), 1, - anon_sym_DOT2, - STATE(5585), 1, - sym_path, - STATE(5275), 2, + ACTIONS(1016), 1, + anon_sym_DOLLAR, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(4706), 1, + aux_sym_unquoted_token3, + ACTIONS(6508), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9014), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(9016), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9018), 1, + aux_sym__immediate_decimal_token5, + STATE(3760), 1, + sym__immediate_decimal, + STATE(5275), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(955), 6, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_as, - [191866] = 8, - ACTIONS(251), 1, + STATE(1766), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [190401] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8546), 1, - anon_sym_DASH_DASH, - ACTIONS(8548), 1, + ACTIONS(1294), 1, anon_sym_DASH2, - STATE(5276), 1, - sym_comment, - STATE(5279), 1, - aux_sym_ctrl_do_repeat1, - STATE(5334), 1, - sym__flag, - STATE(5247), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8979), 4, + ACTIONS(9020), 1, sym__newline, - anon_sym_SEMI, + STATE(5276), 2, + sym_comment, + aux_sym_shebang_repeat1, + ACTIONS(1296), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [191895] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8546), 1, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - ACTIONS(8548), 1, - anon_sym_DASH2, + [190424] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9023), 1, + aux_sym__immediate_decimal_token2, STATE(5277), 1, sym_comment, - STATE(5310), 1, - aux_sym_ctrl_do_repeat1, - STATE(5334), 1, - sym__flag, - STATE(5247), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8981), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [191924] = 8, - ACTIONS(251), 1, + ACTIONS(1618), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1620), 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, + [190447] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1983), 1, - anon_sym_DASH2, - ACTIONS(8774), 1, - anon_sym_DOT2, - STATE(5229), 1, - aux_sym_cell_path_repeat1, + ACTIONS(1639), 1, + anon_sym_RBRACE, + ACTIONS(1641), 1, + anon_sym_LPAREN2, + ACTIONS(1651), 1, + sym__entry_separator, + ACTIONS(8840), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(9025), 1, + anon_sym_DOT_DOT2, + ACTIONS(9029), 1, + sym_filesize_unit, + ACTIONS(9031), 1, + sym_duration_unit, STATE(5278), 1, sym_comment, - STATE(5585), 1, - sym_path, - STATE(5887), 1, - sym_cell_path, - ACTIONS(1985), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [191953] = 8, - ACTIONS(251), 1, + STATE(7315), 1, + sym__expr_parenthesized_immediate, + ACTIONS(9027), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [190482] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8546), 1, - anon_sym_DASH_DASH, - ACTIONS(8548), 1, - anon_sym_DASH2, + ACTIONS(8814), 1, + aux_sym__immediate_decimal_token2, STATE(5279), 1, sym_comment, - STATE(5310), 1, - aux_sym_ctrl_do_repeat1, - STATE(5334), 1, - sym__flag, - STATE(5247), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8983), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1512), 3, anon_sym_RBRACE, - [191982] = 8, - ACTIONS(251), 1, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1514), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [190505] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8546), 1, - anon_sym_DASH_DASH, - ACTIONS(8548), 1, - anon_sym_DASH2, + ACTIONS(2965), 1, + anon_sym_DOLLAR, + ACTIONS(4017), 1, + anon_sym_LPAREN2, + ACTIONS(4021), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(4023), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4472), 1, + aux_sym_unquoted_token3, + ACTIONS(9033), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9035), 1, + aux_sym__immediate_decimal_token5, + STATE(1455), 1, + sym__immediate_decimal, STATE(5280), 1, sym_comment, - STATE(5285), 1, - aux_sym_ctrl_do_repeat1, - STATE(5334), 1, - sym__flag, - STATE(5247), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8985), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [192011] = 8, - ACTIONS(251), 1, + STATE(1637), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [190540] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1945), 1, + ACTIONS(5140), 1, anon_sym_DASH2, - ACTIONS(8774), 1, - anon_sym_DOT2, - STATE(5229), 1, - aux_sym_cell_path_repeat1, STATE(5281), 1, sym_comment, - STATE(5585), 1, - sym_path, - STATE(5869), 1, - sym_cell_path, - ACTIONS(1947), 5, - ts_builtin_sym_end, + ACTIONS(5138), 9, + sym_identifier, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - [192040] = 4, - ACTIONS(251), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + [190561] = 9, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5282), 1, - sym_comment, - ACTIONS(1680), 3, + ACTIONS(1639), 1, anon_sym_DASH2, + ACTIONS(4608), 1, anon_sym_DOT_DOT2, + ACTIONS(7070), 1, aux_sym_unquoted_token2, - ACTIONS(1682), 7, + ACTIONS(9037), 1, + sym_filesize_unit, + ACTIONS(9039), 1, + sym_duration_unit, + STATE(5282), 1, + sym_comment, + ACTIONS(4610), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1651), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [192061] = 8, - ACTIONS(251), 1, + [190592] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1917), 1, + ACTIONS(9041), 1, + anon_sym_DASH_DASH, + ACTIONS(9044), 1, anon_sym_DASH2, - ACTIONS(8774), 1, - anon_sym_DOT2, - STATE(5229), 1, - aux_sym_cell_path_repeat1, - STATE(5283), 1, + STATE(5395), 1, + sym__flag, + STATE(5200), 2, + sym_short_flag, + sym_long_flag, + STATE(5283), 2, sym_comment, - STATE(5585), 1, - sym_path, - STATE(5855), 1, - sym_cell_path, - ACTIONS(1919), 5, - ts_builtin_sym_end, + aux_sym_ctrl_do_repeat1, + ACTIONS(6293), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [192090] = 8, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [190619] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1921), 1, + ACTIONS(5152), 1, anon_sym_DASH2, - ACTIONS(8774), 1, - anon_sym_DOT2, - STATE(5229), 1, - aux_sym_cell_path_repeat1, STATE(5284), 1, sym_comment, - STATE(5585), 1, - sym_path, - STATE(5796), 1, - sym_cell_path, - ACTIONS(1923), 5, - ts_builtin_sym_end, + ACTIONS(5150), 9, + sym_identifier, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - [192119] = 8, - ACTIONS(251), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + [190640] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8546), 1, - anon_sym_DASH_DASH, - ACTIONS(8548), 1, + ACTIONS(5144), 1, anon_sym_DASH2, STATE(5285), 1, sym_comment, - STATE(5310), 1, - aux_sym_ctrl_do_repeat1, - STATE(5334), 1, - sym__flag, - STATE(5247), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8987), 4, + ACTIONS(5142), 9, + sym_identifier, sym__newline, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - [192148] = 11, + [190661] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1030), 1, - anon_sym_DOLLAR, - ACTIONS(4580), 1, - anon_sym_LPAREN2, - ACTIONS(4584), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4780), 1, - aux_sym_unquoted_token3, - ACTIONS(8989), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8991), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8993), 1, - aux_sym__immediate_decimal_token5, - STATE(1741), 1, - sym__immediate_decimal, + ACTIONS(9047), 1, + anon_sym_DOT, + ACTIONS(9049), 1, + aux_sym__immediate_decimal_token2, STATE(5286), 1, sym_comment, - STATE(1865), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [192183] = 11, + ACTIONS(1512), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1514), 5, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [190686] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2074), 1, - anon_sym_DOLLAR, - ACTIONS(7045), 1, - anon_sym_LPAREN2, - ACTIONS(7084), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7086), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7088), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7090), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7177), 1, - aux_sym_unquoted_token3, - STATE(4448), 1, - sym__immediate_decimal, + ACTIONS(9051), 1, + aux_sym__immediate_decimal_token2, STATE(5287), 1, sym_comment, - STATE(4684), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [192218] = 11, + ACTIONS(1618), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1620), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [190709] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1463), 1, - anon_sym_DOLLAR, - ACTIONS(1465), 1, - anon_sym_LPAREN2, - ACTIONS(1469), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(1471), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(1473), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(1652), 1, - aux_sym__unquoted_in_record_token3, - ACTIONS(8995), 1, - aux_sym__immediate_decimal_token1, - STATE(369), 1, - sym__immediate_decimal, + ACTIONS(9053), 1, + anon_sym_DOT2, STATE(5288), 1, sym_comment, - STATE(481), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [192253] = 11, + STATE(5380), 1, + aux_sym_cell_path_repeat1, + STATE(5652), 1, + sym_path, + STATE(5790), 1, + sym_cell_path, + ACTIONS(1666), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(1668), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [190738] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1526), 1, + ACTIONS(3110), 1, anon_sym_DOLLAR, - ACTIONS(1528), 1, + ACTIONS(8214), 1, anon_sym_LPAREN2, - ACTIONS(1530), 1, + ACTIONS(8218), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8220), 1, aux_sym__immediate_decimal_token3, - ACTIONS(1532), 1, + ACTIONS(8222), 1, aux_sym__immediate_decimal_token4, - ACTIONS(1534), 1, + ACTIONS(8224), 1, aux_sym__immediate_decimal_token5, - ACTIONS(1652), 1, + ACTIONS(8840), 1, aux_sym__unquoted_in_record_token3, - ACTIONS(8997), 1, - aux_sym__immediate_decimal_token1, - STATE(536), 1, - sym__immediate_decimal, STATE(5289), 1, sym_comment, - STATE(620), 2, + STATE(5676), 1, + sym__immediate_decimal, + STATE(5854), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [192288] = 4, - ACTIONS(251), 1, + [190773] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(5290), 1, sym_comment, - ACTIONS(1743), 3, - anon_sym_DASH2, + ACTIONS(1512), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1745), 7, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + aux_sym__unquoted_in_list_token2, + ACTIONS(1514), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [192309] = 8, - ACTIONS(251), 1, + sym__entry_separator, + [190794] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1941), 1, + STATE(5291), 1, + sym_comment, + ACTIONS(958), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(956), 7, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [190815] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9053), 1, + anon_sym_DOT2, + STATE(5292), 1, + sym_comment, + STATE(5380), 1, + aux_sym_cell_path_repeat1, + STATE(5652), 1, + sym_path, + STATE(5850), 1, + sym_cell_path, + ACTIONS(929), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(931), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [190844] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1893), 1, anon_sym_DASH2, - ACTIONS(8774), 1, + ACTIONS(8739), 1, anon_sym_DOT2, - STATE(5229), 1, + STATE(5226), 1, aux_sym_cell_path_repeat1, - STATE(5291), 1, + STATE(5293), 1, sym_comment, - STATE(5585), 1, + STATE(5479), 1, sym_path, - STATE(5821), 1, + STATE(5862), 1, sym_cell_path, - ACTIONS(1943), 5, + ACTIONS(1895), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [192338] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1030), 1, - anon_sym_DOLLAR, - ACTIONS(4580), 1, - anon_sym_LPAREN2, - ACTIONS(4780), 1, - aux_sym_unquoted_token3, - ACTIONS(6428), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8999), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9001), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9003), 1, - aux_sym__immediate_decimal_token5, - STATE(3613), 1, - sym__immediate_decimal, - STATE(5292), 1, - sym_comment, - STATE(1865), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [192373] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1030), 1, - anon_sym_DOLLAR, - ACTIONS(4580), 1, - anon_sym_LPAREN2, - ACTIONS(4656), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4780), 1, - aux_sym_unquoted_token3, - ACTIONS(9005), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9007), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9009), 1, - aux_sym__immediate_decimal_token5, - STATE(2097), 1, - sym__immediate_decimal, - STATE(5293), 1, - sym_comment, - STATE(2051), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [192408] = 11, + [190873] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2622), 1, + ACTIONS(4157), 1, anon_sym_DOLLAR, - ACTIONS(3978), 1, + ACTIONS(4159), 1, anon_sym_LPAREN2, - ACTIONS(3982), 1, + ACTIONS(4161), 1, aux_sym__immediate_decimal_token3, - ACTIONS(3984), 1, + ACTIONS(4163), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4191), 1, + ACTIONS(4472), 1, aux_sym_unquoted_token3, - ACTIONS(9011), 1, + ACTIONS(9055), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9013), 1, + ACTIONS(9057), 1, aux_sym__immediate_decimal_token5, - STATE(1397), 1, + STATE(1674), 1, sym__immediate_decimal, STATE(5294), 1, sym_comment, - STATE(1480), 2, + STATE(2005), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [192443] = 11, - ACTIONS(3), 1, + [190908] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1030), 1, - anon_sym_DOLLAR, - ACTIONS(4580), 1, - anon_sym_LPAREN2, - ACTIONS(4780), 1, - aux_sym_unquoted_token3, - ACTIONS(6499), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9015), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9017), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9019), 1, - aux_sym__immediate_decimal_token5, - STATE(3649), 1, - sym__immediate_decimal, + ACTIONS(1961), 1, + anon_sym_DASH2, + ACTIONS(8739), 1, + anon_sym_DOT2, + STATE(5226), 1, + aux_sym_cell_path_repeat1, STATE(5295), 1, sym_comment, - STATE(2051), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [192478] = 11, + STATE(5479), 1, + sym_path, + STATE(5857), 1, + sym_cell_path, + ACTIONS(1963), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + [190937] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1044), 1, - anon_sym_DOLLAR, - ACTIONS(4680), 1, - anon_sym_LPAREN2, - ACTIONS(4904), 1, - aux_sym_unquoted_token3, - ACTIONS(5970), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9021), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9023), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9025), 1, - aux_sym__immediate_decimal_token5, - STATE(3256), 1, - sym__immediate_decimal, STATE(5296), 1, sym_comment, - STATE(2132), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [192513] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4022), 1, - anon_sym_DOLLAR, - ACTIONS(4024), 1, + ACTIONS(1504), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1506), 6, anon_sym_LPAREN2, - ACTIONS(4026), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(4028), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4191), 1, - aux_sym_unquoted_token3, - ACTIONS(9027), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9029), 1, - aux_sym__immediate_decimal_token5, - STATE(1550), 1, - sym__immediate_decimal, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [190958] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2441), 1, + anon_sym_DASH2, STATE(5297), 1, sym_comment, - STATE(1752), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [192548] = 11, + ACTIONS(2443), 9, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + [190979] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3510), 1, - anon_sym_DOLLAR, - ACTIONS(4680), 1, - anon_sym_LPAREN2, - ACTIONS(7027), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7138), 1, - aux_sym_unquoted_token3, - ACTIONS(9031), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9033), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9035), 1, - aux_sym__immediate_decimal_token5, - STATE(4024), 1, - sym__immediate_decimal, STATE(5298), 1, sym_comment, - STATE(4125), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [192583] = 11, + ACTIONS(962), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(960), 7, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [191000] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5299), 1, + sym_comment, + ACTIONS(1514), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1512), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [191021] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2441), 1, + anon_sym_DASH2, + STATE(5300), 1, + sym_comment, + ACTIONS(2443), 9, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + [191042] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1044), 1, + STATE(5301), 1, + sym_comment, + ACTIONS(1618), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1620), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [191063] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4608), 1, + anon_sym_DOT_DOT2, + ACTIONS(9059), 1, + sym_filesize_unit, + ACTIONS(9061), 1, + sym_duration_unit, + ACTIONS(9063), 1, + aux_sym_unquoted_token2, + STATE(5302), 1, + sym_comment, + ACTIONS(1639), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(1651), 2, anon_sym_DOLLAR, - ACTIONS(4680), 1, + anon_sym_DASH_DASH, + ACTIONS(4610), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [191094] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1532), 1, + anon_sym_LBRACE, + ACTIONS(4207), 1, anon_sym_LPAREN2, - ACTIONS(4904), 1, - aux_sym_unquoted_token3, - ACTIONS(6059), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9037), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9039), 1, + ACTIONS(6993), 1, + anon_sym_DOLLAR, + ACTIONS(8696), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9041), 1, + ACTIONS(8698), 1, aux_sym__immediate_decimal_token5, - STATE(3330), 1, + STATE(1778), 1, sym__immediate_decimal, - STATE(5299), 1, + STATE(5303), 1, sym_comment, - STATE(2495), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [192618] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1030), 1, - anon_sym_DOLLAR, - ACTIONS(4580), 1, - anon_sym_LPAREN2, - ACTIONS(4780), 1, - aux_sym_unquoted_token3, - ACTIONS(5834), 1, + ACTIONS(8914), 2, aux_sym__immediate_decimal_token1, - ACTIONS(9043), 1, aux_sym__immediate_decimal_token3, - ACTIONS(9045), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9047), 1, - aux_sym__immediate_decimal_token5, - STATE(3219), 1, - sym__immediate_decimal, - STATE(5300), 1, - sym_comment, - STATE(1865), 2, + STATE(1777), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [192653] = 11, - ACTIONS(3), 1, + [191127] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3510), 1, + STATE(5304), 1, + sym_comment, + ACTIONS(1506), 4, anon_sym_DOLLAR, - ACTIONS(4680), 1, - anon_sym_LPAREN2, - ACTIONS(7039), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7138), 1, - aux_sym_unquoted_token3, - ACTIONS(9049), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9051), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9053), 1, - aux_sym__immediate_decimal_token5, - STATE(4172), 1, - sym__immediate_decimal, - STATE(5301), 1, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1504), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [191148] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8629), 1, + anon_sym_DASH2, + STATE(5305), 1, sym_comment, - STATE(2495), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [192688] = 11, + ACTIONS(5735), 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, + [191169] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3464), 1, + ACTIONS(3110), 1, anon_sym_DOLLAR, - ACTIONS(4580), 1, + ACTIONS(8214), 1, anon_sym_LPAREN2, - ACTIONS(7005), 1, + ACTIONS(8236), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7078), 1, - aux_sym_unquoted_token3, - ACTIONS(9055), 1, + ACTIONS(8238), 1, aux_sym__immediate_decimal_token3, - ACTIONS(9057), 1, + ACTIONS(8240), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9059), 1, + ACTIONS(8242), 1, aux_sym__immediate_decimal_token5, - STATE(3987), 1, - sym__immediate_decimal, - STATE(5302), 1, + ACTIONS(8832), 1, + aux_sym__unquoted_in_list_token3, + STATE(5306), 1, sym_comment, - STATE(4076), 2, + STATE(5691), 1, + sym__immediate_decimal, + STATE(5854), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [192723] = 11, - ACTIONS(3), 1, + [191204] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1030), 1, - anon_sym_DOLLAR, - ACTIONS(4580), 1, - anon_sym_LPAREN2, - ACTIONS(4780), 1, - aux_sym_unquoted_token3, - ACTIONS(5910), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9061), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9063), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9065), 1, - aux_sym__immediate_decimal_token5, - STATE(3280), 1, - sym__immediate_decimal, - STATE(5303), 1, + STATE(5307), 1, sym_comment, - STATE(2051), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [192758] = 8, + ACTIONS(1620), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1618), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [191225] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8873), 1, - anon_sym_DOT2, - STATE(5304), 1, + STATE(5308), 1, sym_comment, - STATE(5406), 1, - aux_sym_cell_path_repeat1, - STATE(5657), 1, - sym_path, - STATE(5818), 1, - sym_cell_path, - ACTIONS(1697), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(1699), 3, + ACTIONS(966), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [192787] = 11, - ACTIONS(3), 1, + ACTIONS(964), 7, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [191246] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1030), 1, + ACTIONS(2461), 1, + anon_sym_DASH2, + STATE(5309), 1, + sym_comment, + ACTIONS(2463), 9, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, - ACTIONS(4580), 1, - anon_sym_LPAREN2, - ACTIONS(4780), 1, - aux_sym_unquoted_token3, - ACTIONS(6507), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9067), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9069), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9071), 1, - aux_sym__immediate_decimal_token5, - STATE(3622), 1, - sym__immediate_decimal, - STATE(5305), 1, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + [191267] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5310), 1, sym_comment, - STATE(3662), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [192822] = 11, + ACTIONS(1691), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1689), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [191288] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3464), 1, + ACTIONS(3656), 1, anon_sym_DOLLAR, - ACTIONS(4580), 1, + ACTIONS(7150), 1, anon_sym_LPAREN2, - ACTIONS(7019), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7078), 1, - aux_sym_unquoted_token3, - ACTIONS(9073), 1, + ACTIONS(7154), 1, aux_sym__immediate_decimal_token3, - ACTIONS(9075), 1, + ACTIONS(7156), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7249), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(9065), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9077), 1, + ACTIONS(9067), 1, aux_sym__immediate_decimal_token5, - STATE(4159), 1, + STATE(4225), 1, sym__immediate_decimal, - STATE(5306), 1, + STATE(5311), 1, sym_comment, - STATE(2051), 2, + STATE(4481), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [192857] = 11, + [191323] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1030), 1, + ACTIONS(3656), 1, anon_sym_DOLLAR, - ACTIONS(4580), 1, + ACTIONS(7150), 1, anon_sym_LPAREN2, - ACTIONS(4780), 1, - aux_sym_unquoted_token3, - ACTIONS(6553), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9079), 1, + ACTIONS(7203), 1, aux_sym__immediate_decimal_token3, - ACTIONS(9081), 1, + ACTIONS(7205), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7249), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(9069), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9083), 1, + ACTIONS(9071), 1, aux_sym__immediate_decimal_token5, - STATE(3693), 1, + STATE(4560), 1, sym__immediate_decimal, - STATE(5307), 1, + STATE(5312), 1, sym_comment, - STATE(2051), 2, + STATE(4973), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [192892] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1895), 1, - anon_sym_DASH2, - ACTIONS(8774), 1, - anon_sym_DOT2, - STATE(5229), 1, - aux_sym_cell_path_repeat1, - STATE(5308), 1, - sym_comment, - STATE(5585), 1, - sym_path, - STATE(5764), 1, - sym_cell_path, - ACTIONS(1897), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [192921] = 9, - ACTIONS(251), 1, + [191358] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8762), 1, + ACTIONS(8444), 1, anon_sym_DASH_DASH, - ACTIONS(8764), 1, + ACTIONS(8446), 1, anon_sym_DASH2, - ACTIONS(9085), 1, - anon_sym_as, - STATE(5309), 1, - sym_comment, - STATE(5358), 1, + STATE(5283), 1, aux_sym_ctrl_do_repeat1, - STATE(6075), 1, - sym__flag, - STATE(5788), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8798), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [192952] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9087), 1, - anon_sym_DASH_DASH, - ACTIONS(9090), 1, - anon_sym_DASH2, - STATE(5334), 1, + STATE(5313), 1, + sym_comment, + STATE(5395), 1, sym__flag, - STATE(5247), 2, + STATE(5200), 2, sym_short_flag, sym_long_flag, - STATE(5310), 2, - sym_comment, - aux_sym_ctrl_do_repeat1, - ACTIONS(6314), 4, + ACTIONS(9073), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [192979] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1855), 1, - anon_sym_DASH2, - ACTIONS(8774), 1, - anon_sym_DOT2, - STATE(5229), 1, - aux_sym_cell_path_repeat1, - STATE(5311), 1, - sym_comment, - STATE(5585), 1, - sym_path, - STATE(5830), 1, - sym_cell_path, - ACTIONS(1857), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [193008] = 8, + [191387] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8873), 1, - anon_sym_DOT2, - STATE(5312), 1, - sym_comment, - STATE(5406), 1, - aux_sym_cell_path_repeat1, - STATE(5657), 1, - sym_path, - STATE(5900), 1, - sym_cell_path, - ACTIONS(1719), 3, + ACTIONS(1639), 1, anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(1651), 1, + sym__entry_separator, + ACTIONS(5565), 1, + anon_sym_LPAREN2, + ACTIONS(8832), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(9075), 1, anon_sym_DOT_DOT2, - ACTIONS(1721), 3, + ACTIONS(9079), 1, + sym_filesize_unit, + ACTIONS(9081), 1, + sym_duration_unit, + STATE(5314), 1, + sym_comment, + STATE(7434), 1, + sym__expr_parenthesized_immediate, + ACTIONS(9077), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [193037] = 5, - ACTIONS(251), 1, + [191422] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8782), 1, + ACTIONS(9083), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9085), 1, aux_sym__immediate_decimal_token2, - STATE(5313), 1, + STATE(5315), 1, sym_comment, - ACTIONS(1550), 2, + ACTIONS(1504), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1552), 7, + ACTIONS(1506), 6, 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, - [193060] = 8, - ACTIONS(251), 1, + [191447] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1949), 1, - anon_sym_DASH2, - ACTIONS(8774), 1, + ACTIONS(9053), 1, anon_sym_DOT2, - STATE(5229), 1, - aux_sym_cell_path_repeat1, - STATE(5314), 1, + STATE(5316), 1, sym_comment, - STATE(5585), 1, + STATE(5380), 1, + aux_sym_cell_path_repeat1, + STATE(5652), 1, sym_path, - STATE(5874), 1, + STATE(5886), 1, sym_cell_path, - ACTIONS(1951), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [193089] = 8, - ACTIONS(251), 1, + ACTIONS(1676), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(1678), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [191476] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1925), 1, + ACTIONS(5124), 1, anon_sym_DASH2, - ACTIONS(8774), 1, - anon_sym_DOT2, - STATE(5229), 1, - aux_sym_cell_path_repeat1, - STATE(5315), 1, + STATE(5317), 1, sym_comment, - STATE(5585), 1, - sym_path, - STATE(5856), 1, - sym_cell_path, - ACTIONS(1927), 5, - ts_builtin_sym_end, + ACTIONS(5122), 9, + sym_identifier, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - [193118] = 9, - ACTIONS(251), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + [191497] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4622), 1, - anon_sym_DOT_DOT2, - ACTIONS(9093), 1, - sym_filesize_unit, - ACTIONS(9095), 1, - sym_duration_unit, - ACTIONS(9097), 1, - aux_sym_unquoted_token2, - STATE(5316), 1, + ACTIONS(5128), 1, + anon_sym_DASH2, + STATE(5318), 1, sym_comment, - ACTIONS(1638), 2, + ACTIONS(5126), 9, sym_identifier, - anon_sym_DASH2, - ACTIONS(1650), 2, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, - ACTIONS(4624), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [193149] = 10, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1612), 1, anon_sym_LBRACE, - ACTIONS(4580), 1, - anon_sym_LPAREN2, - ACTIONS(6551), 1, - anon_sym_DOLLAR, - ACTIONS(8683), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8685), 1, - aux_sym__immediate_decimal_token5, - STATE(1997), 1, - sym__immediate_decimal, - STATE(5317), 1, - sym_comment, - ACTIONS(8836), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1996), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [193182] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5318), 1, - sym_comment, - ACTIONS(1743), 4, - anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1745), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [193203] = 8, - ACTIONS(251), 1, + [191518] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1953), 1, + ACTIONS(1917), 1, anon_sym_DASH2, - ACTIONS(8774), 1, + ACTIONS(8739), 1, anon_sym_DOT2, - STATE(5229), 1, + STATE(5226), 1, aux_sym_cell_path_repeat1, STATE(5319), 1, sym_comment, - STATE(5585), 1, + STATE(5479), 1, sym_path, - STATE(5875), 1, + STATE(5722), 1, sym_cell_path, - ACTIONS(1955), 5, + ACTIONS(1919), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [193232] = 5, - ACTIONS(251), 1, + [191547] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9099), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(1018), 1, + anon_sym_DOLLAR, + ACTIONS(4486), 1, + anon_sym_LPAREN2, + ACTIONS(4758), 1, + aux_sym_unquoted_token3, + ACTIONS(5726), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9087), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(9089), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9091), 1, + aux_sym__immediate_decimal_token5, + STATE(3215), 1, + sym__immediate_decimal, STATE(5320), 1, sym_comment, - ACTIONS(1680), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1682), 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, - [193255] = 8, - ACTIONS(251), 1, + STATE(2031), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [191582] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1891), 1, - anon_sym_DASH2, - ACTIONS(8774), 1, - anon_sym_DOT2, - STATE(5229), 1, - aux_sym_cell_path_repeat1, + ACTIONS(4159), 1, + anon_sym_LPAREN2, + ACTIONS(4478), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4480), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8621), 1, + anon_sym_DOLLAR, + STATE(2050), 1, + sym__immediate_decimal, STATE(5321), 1, sym_comment, - STATE(5585), 1, - sym_path, - STATE(5846), 1, - sym_cell_path, - ACTIONS(1893), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [193284] = 11, - ACTIONS(251), 1, + ACTIONS(4476), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2047), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [191612] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6586), 1, + ACTIONS(4484), 1, anon_sym_DOLLAR, - ACTIONS(8746), 1, - anon_sym_DASH_DASH, - ACTIONS(8748), 1, - anon_sym_DASH2, - ACTIONS(8875), 1, - sym_identifier, - STATE(5210), 1, - aux_sym_ctrl_do_repeat1, + ACTIONS(4486), 1, + anon_sym_LPAREN2, + ACTIONS(5874), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5876), 1, + aux_sym__immediate_decimal_token5, + STATE(3287), 1, + sym__immediate_decimal, STATE(5322), 1, sym_comment, - STATE(5334), 1, - sym__flag, - STATE(6991), 1, - sym__variable_name, - STATE(7139), 1, + ACTIONS(5872), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2435), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - STATE(5247), 2, - sym_short_flag, - sym_long_flag, - [193319] = 10, - ACTIONS(251), 1, + [191642] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1626), 1, - anon_sym_LBRACE, - ACTIONS(4580), 1, + ACTIONS(5490), 1, anon_sym_LPAREN2, - ACTIONS(6551), 1, + ACTIONS(9093), 1, anon_sym_DOLLAR, - ACTIONS(8683), 1, + ACTIONS(9097), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8685), 1, + ACTIONS(9099), 1, aux_sym__immediate_decimal_token5, - STATE(1986), 1, + STATE(3059), 1, sym__immediate_decimal, STATE(5323), 1, sym_comment, - ACTIONS(8836), 2, + ACTIONS(9095), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1984), 2, + STATE(3137), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193352] = 11, + [191672] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3464), 1, - anon_sym_DOLLAR, - ACTIONS(4580), 1, - anon_sym_LPAREN2, - ACTIONS(7078), 1, - aux_sym_unquoted_token3, - ACTIONS(8681), 1, - aux_sym__immediate_decimal_token1, ACTIONS(9101), 1, - aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token2, + STATE(5324), 1, + sym_comment, + ACTIONS(1618), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1620), 5, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [191694] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8214), 1, + anon_sym_LPAREN2, ACTIONS(9103), 1, - aux_sym__immediate_decimal_token4, + anon_sym_DOLLAR, ACTIONS(9105), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9107), 1, aux_sym__immediate_decimal_token5, - STATE(5324), 1, + STATE(5325), 1, sym_comment, - STATE(5952), 1, + STATE(6168), 1, sym__immediate_decimal, - STATE(6208), 2, + ACTIONS(8523), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7195), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193387] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8762), 1, - anon_sym_DASH_DASH, - ACTIONS(8764), 1, - anon_sym_DASH2, - STATE(5325), 1, - sym_comment, - STATE(5377), 1, - aux_sym_ctrl_do_repeat1, - STATE(6075), 1, - sym__flag, - STATE(5788), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8985), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [193415] = 4, - ACTIONS(251), 1, + [191724] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(984), 1, - anon_sym_DASH2, + ACTIONS(3618), 1, + anon_sym_DOLLAR, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(4213), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4215), 1, + aux_sym__immediate_decimal_token5, + STATE(2130), 1, + sym__immediate_decimal, STATE(5326), 1, sym_comment, - ACTIONS(986), 8, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_QMARK2, - anon_sym_DOT2, - [193435] = 5, - ACTIONS(251), 1, + ACTIONS(4482), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1766), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [191754] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8929), 1, - aux_sym__immediate_decimal_token2, STATE(5327), 1, sym_comment, - ACTIONS(1550), 2, + ACTIONS(1512), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1552), 6, + ACTIONS(1514), 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, - [193457] = 9, - ACTIONS(251), 1, + [191774] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3630), 1, - anon_sym_DOLLAR, - ACTIONS(4580), 1, + ACTIONS(4486), 1, anon_sym_LPAREN2, - ACTIONS(4586), 1, + ACTIONS(7009), 1, + anon_sym_DOLLAR, + ACTIONS(7021), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4588), 1, + ACTIONS(7023), 1, aux_sym__immediate_decimal_token5, - STATE(1968), 1, + STATE(4246), 1, sym__immediate_decimal, STATE(5328), 1, sym_comment, - ACTIONS(4638), 2, + ACTIONS(7019), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1967), 2, + STATE(2435), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193487] = 9, - ACTIONS(251), 1, + [191804] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3630), 1, + ACTIONS(3618), 1, anon_sym_DOLLAR, - ACTIONS(4580), 1, + ACTIONS(4207), 1, anon_sym_LPAREN2, - ACTIONS(6509), 1, + ACTIONS(6446), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6511), 1, + ACTIONS(6448), 1, aux_sym__immediate_decimal_token5, - STATE(2153), 1, + STATE(1791), 1, sym__immediate_decimal, STATE(5329), 1, sym_comment, - ACTIONS(6559), 2, + ACTIONS(6542), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1969), 2, + STATE(1790), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193517] = 9, - ACTIONS(251), 1, + [191834] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4122), 1, + ACTIONS(3618), 1, + anon_sym_DOLLAR, + ACTIONS(4207), 1, anon_sym_LPAREN2, - ACTIONS(4128), 1, + ACTIONS(4213), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4130), 1, + ACTIONS(4215), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8606), 1, - anon_sym_DOLLAR, - STATE(1662), 1, + STATE(1692), 1, sym__immediate_decimal, STATE(5330), 1, sym_comment, - ACTIONS(4126), 2, + ACTIONS(4211), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1931), 2, + STATE(1738), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193547] = 4, - ACTIONS(251), 1, + [191864] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(980), 1, + ACTIONS(950), 1, anon_sym_DASH2, + ACTIONS(9109), 1, + anon_sym_QMARK2, STATE(5331), 1, sym_comment, - ACTIONS(982), 8, + ACTIONS(952), 7, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, anon_sym_as, - anon_sym_QMARK2, anon_sym_DOT2, - [193567] = 5, - ACTIONS(251), 1, + [191886] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9107), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(3618), 1, + anon_sym_DOLLAR, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(5801), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5803), 1, + aux_sym__immediate_decimal_token5, + STATE(3266), 1, + sym__immediate_decimal, STATE(5332), 1, sym_comment, - ACTIONS(1680), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1682), 6, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [193589] = 9, - ACTIONS(251), 1, + ACTIONS(5799), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1797), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [191916] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4678), 1, - anon_sym_DOLLAR, - ACTIONS(4680), 1, + ACTIONS(1592), 1, anon_sym_LPAREN2, - ACTIONS(4686), 1, + ACTIONS(1662), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4688), 1, + ACTIONS(1664), 1, aux_sym__immediate_decimal_token5, - STATE(2499), 1, + ACTIONS(9111), 1, + anon_sym_DOLLAR, + STATE(738), 1, sym__immediate_decimal, STATE(5333), 1, sym_comment, - ACTIONS(4802), 2, + ACTIONS(1660), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2495), 2, + STATE(737), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193619] = 4, - ACTIONS(251), 1, + [191946] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6470), 1, - anon_sym_DASH2, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(6993), 1, + anon_sym_DOLLAR, + ACTIONS(7005), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7007), 1, + aux_sym__immediate_decimal_token5, + STATE(4083), 1, + sym__immediate_decimal, STATE(5334), 1, sym_comment, - ACTIONS(6468), 8, - sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(7003), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1797), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [191976] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1550), 1, + anon_sym_LPAREN2, + ACTIONS(9113), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [193639] = 6, - ACTIONS(251), 1, + ACTIONS(9117), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9119), 1, + aux_sym__immediate_decimal_token5, + STATE(611), 1, + sym__immediate_decimal, + STATE(5335), 1, + sym_comment, + ACTIONS(9115), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(610), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [192006] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9109), 1, + ACTIONS(7078), 1, + anon_sym_LPAREN2, + ACTIONS(9121), 1, + anon_sym_DOLLAR, + ACTIONS(9123), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9125), 1, + aux_sym__immediate_decimal_token5, + STATE(4776), 1, + sym__immediate_decimal, + STATE(5336), 1, + sym_comment, + ACTIONS(7138), 2, aux_sym__immediate_decimal_token1, - ACTIONS(9111), 1, - aux_sym__immediate_decimal_token2, - STATE(5335), 1, + aux_sym__immediate_decimal_token3, + STATE(4774), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [192036] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5337), 1, sym_comment, - ACTIONS(1711), 2, + ACTIONS(1504), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1713), 5, + ACTIONS(1506), 7, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [193663] = 9, - ACTIONS(251), 1, + sym_filesize_unit, + sym_duration_unit, + [192056] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4580), 1, - anon_sym_LPAREN2, - ACTIONS(6551), 1, + ACTIONS(7148), 1, anon_sym_DOLLAR, - ACTIONS(8756), 1, + ACTIONS(7150), 1, + anon_sym_LPAREN2, + ACTIONS(7207), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8758), 1, + ACTIONS(7209), 1, aux_sym__immediate_decimal_token5, - STATE(5336), 1, - sym_comment, - STATE(7456), 1, + STATE(4584), 1, sym__immediate_decimal, - ACTIONS(8754), 2, + STATE(5338), 1, + sym_comment, + ACTIONS(7205), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1969), 2, + STATE(4988), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193693] = 9, - ACTIONS(251), 1, + [192086] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3630), 1, - anon_sym_DOLLAR, - ACTIONS(4580), 1, + ACTIONS(5490), 1, anon_sym_LPAREN2, - ACTIONS(8240), 1, + ACTIONS(9093), 1, + anon_sym_DOLLAR, + ACTIONS(9127), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8242), 1, + ACTIONS(9129), 1, aux_sym__immediate_decimal_token5, - STATE(5337), 1, - sym_comment, - STATE(6220), 1, + STATE(2960), 1, sym__immediate_decimal, - ACTIONS(8238), 2, + STATE(5339), 1, + sym_comment, + ACTIONS(8892), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1969), 2, + STATE(3060), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193723] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8762), 1, - anon_sym_DASH_DASH, - ACTIONS(8764), 1, - anon_sym_DASH2, - STATE(5338), 1, - sym_comment, - STATE(5345), 1, - aux_sym_ctrl_do_repeat1, - STATE(6075), 1, - sym__flag, - STATE(5788), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8983), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [193751] = 9, - ACTIONS(251), 1, + [192116] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3630), 1, - anon_sym_DOLLAR, - ACTIONS(4580), 1, + ACTIONS(1592), 1, anon_sym_LPAREN2, - ACTIONS(6509), 1, + ACTIONS(1598), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6511), 1, + ACTIONS(1600), 1, aux_sym__immediate_decimal_token5, - STATE(3657), 1, + ACTIONS(9111), 1, + anon_sym_DOLLAR, + STATE(571), 1, sym__immediate_decimal, - STATE(5339), 1, + STATE(5340), 1, sym_comment, - ACTIONS(6507), 2, + ACTIONS(1596), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3662), 2, + STATE(739), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193781] = 4, - ACTIONS(3), 1, + [192146] = 9, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5340), 1, - sym_comment, - ACTIONS(1680), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1682), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [193801] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3630), 1, + ACTIONS(3618), 1, anon_sym_DOLLAR, - ACTIONS(4580), 1, + ACTIONS(4207), 1, anon_sym_LPAREN2, - ACTIONS(6509), 1, + ACTIONS(6510), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6511), 1, + ACTIONS(6512), 1, aux_sym__immediate_decimal_token5, - STATE(2126), 1, + STATE(3726), 1, sym__immediate_decimal, STATE(5341), 1, sym_comment, - ACTIONS(6559), 2, + ACTIONS(6508), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2051), 2, + STATE(1797), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193831] = 9, - ACTIONS(251), 1, + [192176] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8148), 1, + ACTIONS(1550), 1, anon_sym_LPAREN2, ACTIONS(9113), 1, anon_sym_DOLLAR, - ACTIONS(9115), 1, + ACTIONS(9131), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9117), 1, + ACTIONS(9133), 1, aux_sym__immediate_decimal_token5, + STATE(539), 1, + sym__immediate_decimal, STATE(5342), 1, sym_comment, - STATE(7095), 1, - sym__immediate_decimal, - ACTIONS(8572), 2, + ACTIONS(8930), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7093), 2, + STATE(617), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193861] = 9, - ACTIONS(251), 1, + [192206] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3630), 1, - anon_sym_DOLLAR, - ACTIONS(4580), 1, + ACTIONS(8214), 1, anon_sym_LPAREN2, - ACTIONS(4586), 1, + ACTIONS(9103), 1, + anon_sym_DOLLAR, + ACTIONS(9135), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4588), 1, + ACTIONS(9137), 1, aux_sym__immediate_decimal_token5, - STATE(2153), 1, - sym__immediate_decimal, STATE(5343), 1, sym_comment, - ACTIONS(4638), 2, + STATE(7185), 1, + sym__immediate_decimal, + ACTIONS(8581), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1969), 2, + STATE(7183), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193891] = 9, - ACTIONS(251), 1, + [192236] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5344), 1, + sym_comment, + ACTIONS(1618), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1620), 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, + [192256] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9139), 1, + anon_sym_EQ2, + ACTIONS(9141), 1, + sym_short_flag_identifier, + STATE(5345), 1, + sym_comment, + ACTIONS(4863), 2, + anon_sym_DASH_DASH, + anon_sym_DASH2, + ACTIONS(4861), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + [192280] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5346), 1, + sym_comment, + ACTIONS(1689), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1691), 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, + [192300] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3630), 1, + ACTIONS(3618), 1, anon_sym_DOLLAR, - ACTIONS(4580), 1, + ACTIONS(4207), 1, anon_sym_LPAREN2, - ACTIONS(4586), 1, + ACTIONS(4213), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4588), 1, + ACTIONS(4215), 1, aux_sym__immediate_decimal_token5, - STATE(1843), 1, + STATE(1985), 1, sym__immediate_decimal, - STATE(5344), 1, + STATE(5347), 1, sym_comment, - ACTIONS(4584), 2, + ACTIONS(4482), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1865), 2, + STATE(1797), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193921] = 7, - ACTIONS(251), 1, + [192330] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9119), 1, + ACTIONS(9143), 1, anon_sym_DASH_DASH, - ACTIONS(9122), 1, + ACTIONS(9146), 1, anon_sym_DASH2, - STATE(6075), 1, + STATE(6074), 1, sym__flag, - STATE(5345), 2, + STATE(5348), 2, sym_comment, aux_sym_ctrl_do_repeat1, - STATE(5788), 2, + STATE(5853), 2, sym_short_flag, sym_long_flag, - ACTIONS(6314), 3, + ACTIONS(6293), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [193947] = 9, - ACTIONS(251), 1, + [192356] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7094), 1, + STATE(5349), 1, + sym_comment, + ACTIONS(1512), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1514), 6, anon_sym_LPAREN2, - ACTIONS(9125), 1, - anon_sym_DOLLAR, - ACTIONS(9127), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9129), 1, - aux_sym__immediate_decimal_token5, - STATE(4474), 1, - sym__immediate_decimal, - STATE(5346), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [192376] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8749), 1, + anon_sym_DASH_DASH, + ACTIONS(8751), 1, + anon_sym_DASH2, + STATE(5348), 1, + aux_sym_ctrl_do_repeat1, + STATE(5350), 1, sym_comment, - ACTIONS(7116), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4886), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [193977] = 5, + STATE(6074), 1, + sym__flag, + STATE(5853), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8834), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [192404] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8749), 1, + anon_sym_DASH_DASH, + ACTIONS(8751), 1, + anon_sym_DASH2, + STATE(5351), 1, + sym_comment, + STATE(5367), 1, + aux_sym_ctrl_do_repeat1, + STATE(6074), 1, + sym__flag, + STATE(5853), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8890), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [192432] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3140), 1, + anon_sym_DQUOTE, + ACTIONS(3146), 1, + sym_raw_string_begin, + ACTIONS(9149), 1, + sym_identifier, + STATE(5352), 1, + sym_comment, + STATE(5353), 1, + aux_sym_collection_type_repeat1, + STATE(6275), 1, + sym_val_string, + ACTIONS(3142), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5291), 2, + sym__raw_str, + sym__str_double_quotes, + [192462] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9151), 1, + sym_identifier, + ACTIONS(9154), 1, + anon_sym_DQUOTE, + ACTIONS(9160), 1, + sym_raw_string_begin, + STATE(7035), 1, + sym_val_string, + ACTIONS(9157), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5291), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(5353), 2, + sym_comment, + aux_sym_collection_type_repeat1, + [192490] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8907), 1, + ACTIONS(9163), 1, + anon_sym_DOT, + ACTIONS(9165), 1, aux_sym__immediate_decimal_token2, - STATE(5347), 1, + STATE(5354), 1, + sym_comment, + ACTIONS(1701), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1703), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [192514] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(968), 1, + anon_sym_DASH2, + ACTIONS(9167), 1, + anon_sym_QMARK2, + STATE(5355), 1, sym_comment, - ACTIONS(1550), 3, + ACTIONS(970), 7, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT2, + [192536] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5356), 1, + sym_comment, + ACTIONS(1504), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1552), 5, - sym__space, + aux_sym__unquoted_in_record_token2, + ACTIONS(1506), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [193999] = 4, - ACTIONS(251), 1, + sym__entry_separator, + [192556] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1311), 1, - anon_sym_DASH2, - STATE(5348), 1, + ACTIONS(9169), 1, + aux_sym__immediate_decimal_token2, + STATE(5357), 1, sym_comment, - ACTIONS(1309), 8, - sym_identifier, - sym__newline, - anon_sym_PIPE, + ACTIONS(1766), 4, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [194019] = 9, - ACTIONS(251), 1, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1768), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [192578] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - anon_sym_DOLLAR, - ACTIONS(5539), 1, + ACTIONS(4486), 1, anon_sym_LPAREN2, - ACTIONS(5545), 1, + ACTIONS(4492), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5547), 1, + ACTIONS(4494), 1, aux_sym__immediate_decimal_token5, - STATE(3075), 1, + ACTIONS(7009), 1, + anon_sym_DOLLAR, + STATE(2434), 1, sym__immediate_decimal, - STATE(5349), 1, + STATE(5358), 1, sym_comment, - ACTIONS(5543), 2, + ACTIONS(4732), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3140), 2, + STATE(2433), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194049] = 6, - ACTIONS(251), 1, + [192608] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9131), 1, - anon_sym_DOT, - ACTIONS(9133), 1, + ACTIONS(9171), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9173), 1, aux_sym__immediate_decimal_token2, - STATE(5350), 1, + STATE(5359), 1, sym_comment, - ACTIONS(1755), 2, + ACTIONS(1693), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1757), 5, + ACTIONS(1695), 5, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [194073] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9135), 1, - aux_sym__immediate_decimal_token2, - STATE(5351), 1, - sym_comment, - ACTIONS(1680), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1682), 5, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [194095] = 5, - ACTIONS(251), 1, + [192632] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(966), 1, + ACTIONS(950), 1, anon_sym_DASH2, - ACTIONS(9137), 1, + ACTIONS(9175), 1, anon_sym_QMARK2, - STATE(5352), 1, + STATE(5360), 1, sym_comment, - ACTIONS(968), 7, + ACTIONS(952), 7, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -404351,16 +406981,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_as, anon_sym_DOT2, - [194117] = 5, - ACTIONS(251), 1, + [192654] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(960), 1, + ACTIONS(968), 1, anon_sym_DASH2, - ACTIONS(9139), 1, + ACTIONS(9177), 1, anon_sym_QMARK2, - STATE(5353), 1, + STATE(5361), 1, sym_comment, - ACTIONS(962), 7, + ACTIONS(970), 7, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -404368,3139 +406998,3133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_as, anon_sym_DOT2, - [194139] = 9, - ACTIONS(251), 1, + [192676] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3630), 1, + ACTIONS(7029), 1, + anon_sym_LPAREN2, + ACTIONS(9179), 1, anon_sym_DOLLAR, - ACTIONS(4580), 1, + ACTIONS(9181), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9183), 1, + aux_sym__immediate_decimal_token5, + STATE(4356), 1, + sym__immediate_decimal, + STATE(5362), 1, + sym_comment, + ACTIONS(7054), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4620), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [192706] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7029), 1, anon_sym_LPAREN2, - ACTIONS(4586), 1, + ACTIONS(9179), 1, + anon_sym_DOLLAR, + ACTIONS(9185), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4588), 1, + ACTIONS(9187), 1, aux_sym__immediate_decimal_token5, - STATE(2126), 1, + STATE(4618), 1, sym__immediate_decimal, - STATE(5354), 1, + STATE(5363), 1, sym_comment, - ACTIONS(4638), 2, + ACTIONS(7092), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2051), 2, + STATE(4611), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194169] = 5, + [192736] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8936), 1, - aux_sym__immediate_decimal_token2, - STATE(5355), 1, + STATE(5364), 1, sym_comment, - ACTIONS(1755), 4, - anon_sym_RBRACK, + ACTIONS(1618), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1757), 4, + aux_sym__unquoted_in_record_token2, + ACTIONS(1620), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, sym__entry_separator, - [194191] = 9, - ACTIONS(251), 1, + [192756] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8749), 1, + anon_sym_DASH_DASH, + ACTIONS(8751), 1, + anon_sym_DASH2, + STATE(5350), 1, + aux_sym_ctrl_do_repeat1, + STATE(5365), 1, + sym_comment, + STATE(6074), 1, + sym__flag, + STATE(5853), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8871), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [192784] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3132), 1, + ACTIONS(3140), 1, anon_sym_DQUOTE, - ACTIONS(3138), 1, + ACTIONS(3146), 1, sym_raw_string_begin, - ACTIONS(9141), 1, + ACTIONS(9189), 1, sym_identifier, - STATE(5356), 1, - sym_comment, - STATE(5370), 1, + STATE(5353), 1, aux_sym_collection_type_repeat1, - STATE(6408), 1, + STATE(5366), 1, + sym_comment, + STATE(6502), 1, sym_val_string, - ACTIONS(3134), 2, + ACTIONS(3142), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(5195), 2, + STATE(5291), 2, sym__raw_str, sym__str_double_quotes, - [194221] = 8, - ACTIONS(251), 1, + [192814] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8749), 1, + anon_sym_DASH_DASH, + ACTIONS(8751), 1, + anon_sym_DASH2, + STATE(5348), 1, + aux_sym_ctrl_do_repeat1, + STATE(5367), 1, + sym_comment, + STATE(6074), 1, + sym__flag, + STATE(5853), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8912), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [192842] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8762), 1, + ACTIONS(8749), 1, anon_sym_DASH_DASH, - ACTIONS(8764), 1, + ACTIONS(8751), 1, anon_sym_DASH2, - STATE(5338), 1, + STATE(5348), 1, aux_sym_ctrl_do_repeat1, - STATE(5357), 1, + STATE(5368), 1, sym_comment, - STATE(6075), 1, + STATE(6074), 1, sym__flag, - STATE(5788), 2, + STATE(5853), 2, sym_short_flag, sym_long_flag, - ACTIONS(8979), 3, + ACTIONS(9073), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [194249] = 8, - ACTIONS(251), 1, + [192870] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8762), 1, + ACTIONS(8749), 1, anon_sym_DASH_DASH, - ACTIONS(8764), 1, + ACTIONS(8751), 1, anon_sym_DASH2, - STATE(5345), 1, + STATE(5348), 1, aux_sym_ctrl_do_repeat1, - STATE(5358), 1, + STATE(5369), 1, sym_comment, - STATE(6075), 1, + STATE(6074), 1, sym__flag, - STATE(5788), 2, + STATE(5853), 2, sym_short_flag, sym_long_flag, - ACTIONS(8981), 3, + ACTIONS(8879), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [194277] = 6, - ACTIONS(3), 1, + [192898] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9143), 1, + ACTIONS(4484), 1, + anon_sym_DOLLAR, + ACTIONS(4486), 1, + anon_sym_LPAREN2, + ACTIONS(4492), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4494), 1, + aux_sym__immediate_decimal_token5, + STATE(2038), 1, + sym__immediate_decimal, + STATE(5370), 1, + sym_comment, + ACTIONS(4490), 2, aux_sym__immediate_decimal_token1, - ACTIONS(9145), 1, - aux_sym__immediate_decimal_token2, - STATE(5359), 1, + aux_sym__immediate_decimal_token3, + STATE(2031), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [192928] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3140), 1, + anon_sym_DQUOTE, + ACTIONS(3146), 1, + sym_raw_string_begin, + ACTIONS(9191), 1, + sym_identifier, + STATE(5353), 1, + aux_sym_collection_type_repeat1, + STATE(5371), 1, sym_comment, - ACTIONS(1711), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1713), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [194301] = 9, - ACTIONS(251), 1, + STATE(6577), 1, + sym_val_string, + ACTIONS(3142), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5291), 2, + sym__raw_str, + sym__str_double_quotes, + [192958] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4122), 1, + ACTIONS(3618), 1, + anon_sym_DOLLAR, + ACTIONS(4207), 1, anon_sym_LPAREN2, - ACTIONS(4475), 1, + ACTIONS(6446), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4477), 1, + ACTIONS(6448), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8606), 1, - anon_sym_DOLLAR, - STATE(1930), 1, + STATE(1985), 1, sym__immediate_decimal, - STATE(5360), 1, + STATE(5372), 1, sym_comment, - ACTIONS(4473), 2, + ACTIONS(6542), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1929), 2, + STATE(1797), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194331] = 9, - ACTIONS(251), 1, + [192988] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8148), 1, + ACTIONS(3618), 1, + anon_sym_DOLLAR, + ACTIONS(4207), 1, anon_sym_LPAREN2, - ACTIONS(9113), 1, + ACTIONS(8571), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8573), 1, + aux_sym__immediate_decimal_token5, + STATE(5373), 1, + sym_comment, + STATE(6933), 1, + sym__immediate_decimal, + ACTIONS(8569), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1797), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [193018] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9193), 1, + anon_sym_DOT, + ACTIONS(9195), 1, + aux_sym__immediate_decimal_token2, + STATE(5374), 1, + sym_comment, + ACTIONS(1512), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1514), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [193042] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8214), 1, + anon_sym_LPAREN2, + ACTIONS(9103), 1, anon_sym_DOLLAR, - ACTIONS(9115), 1, + ACTIONS(9135), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9117), 1, + ACTIONS(9137), 1, aux_sym__immediate_decimal_token5, - STATE(5361), 1, + STATE(5375), 1, sym_comment, - STATE(7462), 1, + STATE(7338), 1, sym__immediate_decimal, - ACTIONS(8572), 2, + ACTIONS(8581), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7118), 2, + STATE(7195), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194361] = 4, + [193072] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5362), 1, + STATE(5376), 1, sym_comment, - ACTIONS(1743), 3, + ACTIONS(1689), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_record_token2, - ACTIONS(1745), 6, + ACTIONS(1691), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [194381] = 8, - ACTIONS(251), 1, + [193092] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7078), 1, + ACTIONS(7070), 1, aux_sym_unquoted_token2, - ACTIONS(9147), 1, + ACTIONS(9197), 1, anon_sym_DOT_DOT2, - ACTIONS(9151), 1, + ACTIONS(9201), 1, sym_filesize_unit, - ACTIONS(9153), 1, + ACTIONS(9203), 1, sym_duration_unit, - STATE(5363), 1, + STATE(5377), 1, sym_comment, - ACTIONS(9149), 2, + ACTIONS(9199), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1650), 3, + ACTIONS(1651), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [194409] = 9, - ACTIONS(251), 1, + [193120] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4940), 1, + anon_sym_DASH2, + ACTIONS(9205), 1, + sym_long_flag_identifier, + ACTIONS(9207), 1, + anon_sym_EQ2, + STATE(5378), 1, + sym_comment, + ACTIONS(4938), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + [193144] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4678), 1, + ACTIONS(1290), 1, + anon_sym_DASH2, + STATE(5379), 1, + sym_comment, + ACTIONS(1288), 8, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, - ACTIONS(4680), 1, - anon_sym_LPAREN2, - ACTIONS(4686), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4688), 1, - aux_sym__immediate_decimal_token5, - STATE(2083), 1, - sym__immediate_decimal, - STATE(5364), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [193164] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9053), 1, + anon_sym_DOT2, + STATE(5380), 1, sym_comment, - ACTIONS(4684), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2132), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [194439] = 4, + STATE(5403), 1, + aux_sym_cell_path_repeat1, + STATE(5652), 1, + sym_path, + ACTIONS(942), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(944), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [193190] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5365), 1, + ACTIONS(8838), 1, + aux_sym__immediate_decimal_token2, + STATE(5381), 1, sym_comment, - ACTIONS(1542), 3, + ACTIONS(1701), 4, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1544), 6, + aux_sym__unquoted_in_list_token2, + ACTIONS(1703), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [193212] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8968), 1, + aux_sym__immediate_decimal_token2, + STATE(5382), 1, + sym_comment, + ACTIONS(1512), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1514), 6, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [194459] = 9, - ACTIONS(251), 1, + [193234] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8148), 1, - anon_sym_LPAREN2, - ACTIONS(9113), 1, + ACTIONS(3618), 1, anon_sym_DOLLAR, - ACTIONS(9115), 1, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(4504), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9117), 1, + ACTIONS(4506), 1, aux_sym__immediate_decimal_token5, - STATE(5366), 1, - sym_comment, - STATE(6160), 1, + STATE(2017), 1, sym__immediate_decimal, - ACTIONS(8152), 2, + STATE(5383), 1, + sym_comment, + ACTIONS(4502), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(5831), 2, + STATE(1797), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194489] = 9, - ACTIONS(251), 1, + [193264] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8148), 1, - anon_sym_LPAREN2, - ACTIONS(9113), 1, + ACTIONS(3618), 1, anon_sym_DOLLAR, - ACTIONS(9115), 1, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(7995), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9117), 1, + ACTIONS(7997), 1, aux_sym__immediate_decimal_token5, - STATE(5367), 1, - sym_comment, - STATE(7436), 1, + STATE(1791), 1, sym__immediate_decimal, - ACTIONS(8572), 2, + STATE(5384), 1, + sym_comment, + ACTIONS(8619), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7048), 2, + STATE(1790), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194519] = 9, - ACTIONS(251), 1, + [193294] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4678), 1, - anon_sym_DOLLAR, - ACTIONS(4680), 1, + ACTIONS(4207), 1, anon_sym_LPAREN2, - ACTIONS(4736), 1, + ACTIONS(4213), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4738), 1, + ACTIONS(4215), 1, aux_sym__immediate_decimal_token5, - STATE(2293), 1, + ACTIONS(6993), 1, + anon_sym_DOLLAR, + STATE(1791), 1, sym__immediate_decimal, - STATE(5368), 1, + STATE(5385), 1, sym_comment, - ACTIONS(4734), 2, + ACTIONS(4482), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2533), 2, + STATE(1790), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194549] = 9, - ACTIONS(251), 1, + [193324] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3630), 1, + ACTIONS(4484), 1, anon_sym_DOLLAR, - ACTIONS(4580), 1, + ACTIONS(4486), 1, anon_sym_LPAREN2, - ACTIONS(8492), 1, + ACTIONS(4492), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8494), 1, + ACTIONS(4494), 1, aux_sym__immediate_decimal_token5, - STATE(5369), 1, - sym_comment, - STATE(6982), 1, + STATE(2482), 1, sym__immediate_decimal, - ACTIONS(8490), 2, + STATE(5386), 1, + sym_comment, + ACTIONS(4732), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1969), 2, + STATE(2417), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194579] = 8, - ACTIONS(251), 1, + [193354] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9155), 1, - sym_identifier, - ACTIONS(9158), 1, - anon_sym_DQUOTE, - ACTIONS(9164), 1, - sym_raw_string_begin, - STATE(6820), 1, - sym_val_string, - ACTIONS(9161), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5195), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(5370), 2, + ACTIONS(960), 1, + anon_sym_DASH2, + STATE(5387), 1, sym_comment, - aux_sym_collection_type_repeat1, - [194607] = 9, - ACTIONS(251), 1, + ACTIONS(962), 8, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_DOT2, + [193374] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4678), 1, + ACTIONS(4484), 1, anon_sym_DOLLAR, - ACTIONS(4680), 1, + ACTIONS(4486), 1, anon_sym_LPAREN2, - ACTIONS(4686), 1, + ACTIONS(4492), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4688), 1, + ACTIONS(4494), 1, aux_sym__immediate_decimal_token5, - STATE(2532), 1, + STATE(2436), 1, sym__immediate_decimal, - STATE(5371), 1, + STATE(5388), 1, sym_comment, - ACTIONS(4802), 2, + ACTIONS(4732), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2530), 2, + STATE(2435), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194637] = 9, - ACTIONS(251), 1, + [193404] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7094), 1, + ACTIONS(4207), 1, anon_sym_LPAREN2, - ACTIONS(9125), 1, + ACTIONS(6993), 1, anon_sym_DOLLAR, - ACTIONS(9167), 1, + ACTIONS(8696), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9169), 1, + ACTIONS(8698), 1, aux_sym__immediate_decimal_token5, - STATE(4884), 1, + STATE(1791), 1, sym__immediate_decimal, - STATE(5372), 1, + STATE(5389), 1, sym_comment, - ACTIONS(7148), 2, + ACTIONS(8914), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4883), 2, + STATE(1790), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194667] = 9, - ACTIONS(251), 1, + [193434] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4678), 1, + ACTIONS(4484), 1, anon_sym_DOLLAR, - ACTIONS(4680), 1, + ACTIONS(4486), 1, anon_sym_LPAREN2, - ACTIONS(4686), 1, + ACTIONS(4492), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4688), 1, + ACTIONS(4494), 1, aux_sym__immediate_decimal_token5, - STATE(2534), 1, + STATE(2434), 1, sym__immediate_decimal, - STATE(5373), 1, + STATE(5390), 1, sym_comment, - ACTIONS(4802), 2, + ACTIONS(4732), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2533), 2, + STATE(2433), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194697] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5374), 1, - sym_comment, - ACTIONS(1743), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1745), 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, - [194717] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5375), 1, - sym_comment, - ACTIONS(1550), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1552), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [194737] = 9, - ACTIONS(251), 1, + [193464] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7045), 1, - anon_sym_LPAREN2, - ACTIONS(9171), 1, + ACTIONS(5553), 1, anon_sym_DOLLAR, - ACTIONS(9173), 1, + ACTIONS(5555), 1, + anon_sym_LPAREN2, + ACTIONS(5561), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9175), 1, + ACTIONS(5563), 1, aux_sym__immediate_decimal_token5, - STATE(4329), 1, + STATE(3117), 1, sym__immediate_decimal, - STATE(5376), 1, + STATE(5391), 1, sym_comment, - ACTIONS(7084), 2, + ACTIONS(5559), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4560), 2, + STATE(3192), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194767] = 8, - ACTIONS(251), 1, + [193494] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8762), 1, - anon_sym_DASH_DASH, - ACTIONS(8764), 1, - anon_sym_DASH2, - STATE(5345), 1, - aux_sym_ctrl_do_repeat1, - STATE(5377), 1, + ACTIONS(3140), 1, + anon_sym_DQUOTE, + ACTIONS(3146), 1, + sym_raw_string_begin, + ACTIONS(9209), 1, + sym_identifier, + STATE(5353), 1, + aux_sym_collection_type_repeat1, + STATE(5392), 1, sym_comment, - STATE(6075), 1, - sym__flag, - STATE(5788), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8987), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [194795] = 9, - ACTIONS(251), 1, + STATE(6224), 1, + sym_val_string, + ACTIONS(3142), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5291), 2, + sym__raw_str, + sym__str_double_quotes, + [193524] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3630), 1, + ACTIONS(3618), 1, anon_sym_DOLLAR, - ACTIONS(4580), 1, + ACTIONS(4207), 1, anon_sym_LPAREN2, - ACTIONS(4658), 1, + ACTIONS(6452), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4660), 1, + ACTIONS(6454), 1, aux_sym__immediate_decimal_token5, - STATE(2148), 1, + STATE(3653), 1, sym__immediate_decimal, - STATE(5378), 1, + STATE(5393), 1, sym_comment, - ACTIONS(4656), 2, + ACTIONS(6450), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1969), 2, + STATE(1797), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194825] = 9, - ACTIONS(251), 1, + [193554] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3630), 1, - anon_sym_DOLLAR, - ACTIONS(4580), 1, + ACTIONS(3987), 1, anon_sym_LPAREN2, - ACTIONS(7924), 1, + ACTIONS(4033), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7926), 1, + ACTIONS(4035), 1, aux_sym__immediate_decimal_token5, - STATE(1968), 1, + ACTIONS(8134), 1, + anon_sym_DOLLAR, + STATE(1793), 1, sym__immediate_decimal, - STATE(5379), 1, + STATE(5394), 1, sym_comment, - ACTIONS(8480), 2, + ACTIONS(4031), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1967), 2, + STATE(1792), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194855] = 4, - ACTIONS(251), 1, + [193584] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(972), 1, + ACTIONS(6506), 1, anon_sym_DASH2, - STATE(5380), 1, + STATE(5395), 1, sym_comment, - ACTIONS(974), 8, - ts_builtin_sym_end, + ACTIONS(6504), 8, + sym_identifier, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_QMARK2, - anon_sym_DOT2, - [194875] = 9, - ACTIONS(251), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + [193604] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3630), 1, - anon_sym_DOLLAR, - ACTIONS(4580), 1, - anon_sym_LPAREN2, - ACTIONS(6501), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6503), 1, - aux_sym__immediate_decimal_token5, - STATE(3639), 1, - sym__immediate_decimal, - STATE(5381), 1, + ACTIONS(3140), 1, + anon_sym_DQUOTE, + ACTIONS(3146), 1, + sym_raw_string_begin, + ACTIONS(9211), 1, + sym_identifier, + STATE(5353), 1, + aux_sym_collection_type_repeat1, + STATE(5396), 1, sym_comment, - ACTIONS(6499), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1969), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [194905] = 9, - ACTIONS(251), 1, + STATE(6236), 1, + sym_val_string, + ACTIONS(3142), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5291), 2, + sym__raw_str, + sym__str_double_quotes, + [193634] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4024), 1, - anon_sym_LPAREN2, - ACTIONS(4197), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4199), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8088), 1, - anon_sym_DOLLAR, - STATE(1804), 1, - sym__immediate_decimal, - STATE(5382), 1, - sym_comment, - ACTIONS(4195), 2, + ACTIONS(9213), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1803), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [194935] = 6, - ACTIONS(251), 1, + ACTIONS(9215), 1, + aux_sym__immediate_decimal_token2, + STATE(5397), 1, + sym_comment, + ACTIONS(1693), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1695), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [193658] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9177), 1, - anon_sym_DOT, - ACTIONS(9179), 1, + ACTIONS(9217), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9219), 1, aux_sym__immediate_decimal_token2, - STATE(5383), 1, + STATE(5398), 1, sym_comment, - ACTIONS(1550), 2, + ACTIONS(1504), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1552), 5, + ACTIONS(1506), 5, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [194959] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8148), 1, - anon_sym_LPAREN2, - ACTIONS(9113), 1, - anon_sym_DOLLAR, - ACTIONS(9181), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9183), 1, - aux_sym__immediate_decimal_token5, - STATE(5384), 1, - sym_comment, - STATE(6249), 1, - sym__immediate_decimal, - ACTIONS(8580), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7118), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [194989] = 9, - ACTIONS(251), 1, + [193682] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - anon_sym_DOLLAR, - ACTIONS(5539), 1, - anon_sym_LPAREN2, - ACTIONS(5595), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5597), 1, - aux_sym__immediate_decimal_token5, - STATE(3139), 1, - sym__immediate_decimal, - STATE(5385), 1, + ACTIONS(964), 1, + anon_sym_DASH2, + STATE(5399), 1, sym_comment, - ACTIONS(5593), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3138), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [195019] = 9, - ACTIONS(251), 1, + ACTIONS(966), 8, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_DOT2, + [193702] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4024), 1, + ACTIONS(8214), 1, anon_sym_LPAREN2, - ACTIONS(4030), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4032), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8088), 1, - anon_sym_DOLLAR, - STATE(1557), 1, - sym__immediate_decimal, - STATE(5386), 1, - sym_comment, - ACTIONS(4028), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1738), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [195049] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7179), 1, + ACTIONS(9103), 1, anon_sym_DOLLAR, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7189), 1, + ACTIONS(9221), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7191), 1, + ACTIONS(9223), 1, aux_sym__immediate_decimal_token5, - STATE(4970), 1, - sym__immediate_decimal, - STATE(5387), 1, + STATE(5400), 1, sym_comment, - ACTIONS(7264), 2, + STATE(6273), 1, + sym__immediate_decimal, + ACTIONS(8448), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4968), 2, + STATE(7195), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [195079] = 9, - ACTIONS(251), 1, + [193732] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3132), 1, + ACTIONS(3140), 1, anon_sym_DQUOTE, - ACTIONS(3138), 1, + ACTIONS(3146), 1, sym_raw_string_begin, - ACTIONS(9185), 1, + ACTIONS(9225), 1, sym_identifier, - STATE(5370), 1, + STATE(5353), 1, aux_sym_collection_type_repeat1, - STATE(5388), 1, + STATE(5401), 1, sym_comment, - STATE(6691), 1, + STATE(6596), 1, sym_val_string, - ACTIONS(3134), 2, + ACTIONS(3142), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(5195), 2, + STATE(5291), 2, sym__raw_str, sym__str_double_quotes, - [195109] = 9, - ACTIONS(251), 1, + [193762] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4678), 1, + ACTIONS(5553), 1, anon_sym_DOLLAR, - ACTIONS(4680), 1, + ACTIONS(5555), 1, anon_sym_LPAREN2, - ACTIONS(6061), 1, + ACTIONS(5581), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6063), 1, + ACTIONS(5583), 1, aux_sym__immediate_decimal_token5, - STATE(3361), 1, + STATE(3151), 1, sym__immediate_decimal, - STATE(5389), 1, + STATE(5402), 1, sym_comment, - ACTIONS(6059), 2, + ACTIONS(5579), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2533), 2, + STATE(3160), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [195139] = 9, - ACTIONS(251), 1, + [193792] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5422), 1, - anon_sym_LPAREN2, - ACTIONS(9187), 1, + ACTIONS(9227), 1, + anon_sym_DOT2, + STATE(5652), 1, + sym_path, + STATE(5403), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(935), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(937), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [193816] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3618), 1, anon_sym_DOLLAR, - ACTIONS(9191), 1, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(8114), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9193), 1, + ACTIONS(8116), 1, aux_sym__immediate_decimal_token5, - STATE(3119), 1, - sym__immediate_decimal, - STATE(5390), 1, + STATE(5404), 1, sym_comment, - ACTIONS(9189), 2, + STATE(6215), 1, + sym__immediate_decimal, + ACTIONS(8112), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3118), 2, + STATE(1797), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [195169] = 9, - ACTIONS(251), 1, + [193846] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4680), 1, + ACTIONS(8214), 1, anon_sym_LPAREN2, - ACTIONS(6586), 1, + ACTIONS(9103), 1, anon_sym_DOLLAR, - ACTIONS(7041), 1, + ACTIONS(9135), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7043), 1, + ACTIONS(9137), 1, aux_sym__immediate_decimal_token5, - STATE(4236), 1, - sym__immediate_decimal, - STATE(5391), 1, + STATE(5405), 1, sym_comment, - ACTIONS(7039), 2, + STATE(6148), 1, + sym__immediate_decimal, + ACTIONS(8236), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2533), 2, + STATE(5854), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [195199] = 9, - ACTIONS(251), 1, + [193876] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3630), 1, - anon_sym_DOLLAR, - ACTIONS(4580), 1, + ACTIONS(8214), 1, anon_sym_LPAREN2, - ACTIONS(6509), 1, + ACTIONS(9103), 1, + anon_sym_DOLLAR, + ACTIONS(9135), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6511), 1, + ACTIONS(9137), 1, aux_sym__immediate_decimal_token5, - STATE(1968), 1, - sym__immediate_decimal, - STATE(5392), 1, + STATE(5406), 1, sym_comment, - ACTIONS(6559), 2, + STATE(7389), 1, + sym__immediate_decimal, + ACTIONS(8581), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1967), 2, + STATE(6751), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [195229] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8762), 1, - anon_sym_DASH_DASH, - ACTIONS(8764), 1, - anon_sym_DASH2, - STATE(5345), 1, - aux_sym_ctrl_do_repeat1, - STATE(5393), 1, - sym_comment, - STATE(6075), 1, - sym__flag, - STATE(5788), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8962), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [195257] = 9, - ACTIONS(251), 1, + [193906] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3630), 1, + ACTIONS(3618), 1, anon_sym_DOLLAR, - ACTIONS(4580), 1, + ACTIONS(4207), 1, anon_sym_LPAREN2, - ACTIONS(5912), 1, + ACTIONS(6446), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5914), 1, + ACTIONS(6448), 1, aux_sym__immediate_decimal_token5, - STATE(3296), 1, + STATE(3649), 1, sym__immediate_decimal, - STATE(5394), 1, + STATE(5407), 1, sym_comment, - ACTIONS(5910), 2, + ACTIONS(6444), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1969), 2, + STATE(3657), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [195287] = 9, - ACTIONS(251), 1, + [193936] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1628), 1, - anon_sym_LPAREN2, - ACTIONS(1751), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(1753), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(9195), 1, + ACTIONS(3618), 1, anon_sym_DOLLAR, - STATE(691), 1, - sym__immediate_decimal, - STATE(5395), 1, - sym_comment, - ACTIONS(1749), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(690), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [195317] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4580), 1, + ACTIONS(4207), 1, anon_sym_LPAREN2, - ACTIONS(6551), 1, - anon_sym_DOLLAR, - ACTIONS(7021), 1, + ACTIONS(4213), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7023), 1, + ACTIONS(4215), 1, aux_sym__immediate_decimal_token5, - STATE(4118), 1, + STATE(1791), 1, sym__immediate_decimal, - STATE(5396), 1, + STATE(5408), 1, sym_comment, - ACTIONS(7019), 2, + ACTIONS(4482), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1969), 2, + STATE(1790), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [195347] = 9, - ACTIONS(251), 1, + [193966] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1528), 1, - anon_sym_LPAREN2, - ACTIONS(9197), 1, - anon_sym_DOLLAR, - ACTIONS(9201), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9203), 1, - aux_sym__immediate_decimal_token5, - STATE(626), 1, - sym__immediate_decimal, - STATE(5397), 1, + ACTIONS(946), 1, + anon_sym_DASH2, + STATE(5409), 1, sym_comment, - ACTIONS(9199), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(625), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [195377] = 9, - ACTIONS(251), 1, + ACTIONS(948), 8, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_DOT2, + [193986] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7179), 1, - anon_sym_DOLLAR, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7239), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7241), 1, - aux_sym__immediate_decimal_token5, - STATE(4623), 1, - sym__immediate_decimal, - STATE(5398), 1, + ACTIONS(9049), 1, + aux_sym__immediate_decimal_token2, + STATE(5410), 1, sym_comment, - ACTIONS(7237), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4971), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [195407] = 9, - ACTIONS(251), 1, + ACTIONS(1512), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1514), 5, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [194008] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5422), 1, + ACTIONS(3987), 1, anon_sym_LPAREN2, - ACTIONS(9187), 1, - anon_sym_DOLLAR, - ACTIONS(9205), 1, + ACTIONS(3993), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9207), 1, + ACTIONS(3995), 1, aux_sym__immediate_decimal_token5, - STATE(2935), 1, + ACTIONS(8134), 1, + anon_sym_DOLLAR, + STATE(1600), 1, sym__immediate_decimal, - STATE(5399), 1, + STATE(5411), 1, sym_comment, - ACTIONS(8857), 2, + ACTIONS(3991), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3120), 2, + STATE(1794), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [195437] = 9, - ACTIONS(251), 1, + [194038] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1628), 1, + ACTIONS(7078), 1, anon_sym_LPAREN2, - ACTIONS(1634), 1, + ACTIONS(9121), 1, + anon_sym_DOLLAR, + ACTIONS(9230), 1, aux_sym__immediate_decimal_token4, - ACTIONS(1636), 1, + ACTIONS(9232), 1, aux_sym__immediate_decimal_token5, - ACTIONS(9195), 1, - anon_sym_DOLLAR, - STATE(585), 1, + STATE(4542), 1, sym__immediate_decimal, - STATE(5400), 1, + STATE(5412), 1, sym_comment, - ACTIONS(1632), 2, + ACTIONS(7122), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(693), 2, + STATE(4785), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [195467] = 9, - ACTIONS(251), 1, + [194068] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3630), 1, + ACTIONS(7148), 1, anon_sym_DOLLAR, - ACTIONS(4580), 1, + ACTIONS(7150), 1, anon_sym_LPAREN2, - ACTIONS(6555), 1, + ACTIONS(7158), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6557), 1, + ACTIONS(7160), 1, aux_sym__immediate_decimal_token5, - STATE(3748), 1, + STATE(4987), 1, sym__immediate_decimal, - STATE(5401), 1, + STATE(5413), 1, sym_comment, - ACTIONS(6553), 2, + ACTIONS(7268), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1969), 2, + STATE(4985), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [195497] = 9, - ACTIONS(251), 1, + [194098] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1528), 1, - anon_sym_LPAREN2, - ACTIONS(9197), 1, + ACTIONS(3618), 1, anon_sym_DOLLAR, - ACTIONS(9209), 1, + ACTIONS(4207), 1, + anon_sym_LPAREN2, + ACTIONS(6446), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9211), 1, + ACTIONS(6448), 1, aux_sym__immediate_decimal_token5, - STATE(544), 1, + STATE(2130), 1, sym__immediate_decimal, - STATE(5402), 1, + STATE(5414), 1, sym_comment, - ACTIONS(8997), 2, + ACTIONS(6542), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(627), 2, + STATE(1766), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [195527] = 6, - ACTIONS(251), 1, + [194128] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9213), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9215), 1, + ACTIONS(9234), 1, + anon_sym_DOT, + ACTIONS(9236), 1, aux_sym__immediate_decimal_token2, - STATE(5403), 1, + STATE(5415), 1, sym_comment, - ACTIONS(1542), 2, + ACTIONS(1701), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1544), 5, - anon_sym_LBRACE, + ACTIONS(1703), 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, - [195551] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9217), 1, - anon_sym_EQ2, - ACTIONS(9219), 1, - sym_short_flag_identifier, - STATE(5404), 1, - sym_comment, - ACTIONS(4841), 2, - anon_sym_DASH_DASH, - anon_sym_DASH2, - ACTIONS(4839), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - [195575] = 4, - ACTIONS(251), 1, + [194152] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5405), 1, + ACTIONS(9238), 1, + aux_sym__immediate_decimal_token2, + STATE(5416), 1, sym_comment, - ACTIONS(1550), 2, + ACTIONS(1618), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1552), 7, + ACTIONS(1620), 6, 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, - [195595] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8873), 1, - anon_sym_DOT2, - STATE(5406), 1, - sym_comment, - STATE(5415), 1, - aux_sym_cell_path_repeat1, - STATE(5657), 1, - sym_path, - ACTIONS(949), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(951), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [195621] = 9, - ACTIONS(251), 1, + [194174] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8148), 1, - anon_sym_LPAREN2, - ACTIONS(9113), 1, + ACTIONS(4484), 1, anon_sym_DOLLAR, - ACTIONS(9221), 1, + ACTIONS(4486), 1, + anon_sym_LPAREN2, + ACTIONS(4628), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9223), 1, + ACTIONS(4630), 1, aux_sym__immediate_decimal_token5, - STATE(5407), 1, - sym_comment, - STATE(6602), 1, + STATE(2244), 1, sym__immediate_decimal, - ACTIONS(8482), 2, + STATE(5417), 1, + sym_comment, + ACTIONS(4626), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7118), 2, + STATE(2435), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [195651] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3132), 1, - anon_sym_DQUOTE, - ACTIONS(3138), 1, - sym_raw_string_begin, - ACTIONS(9225), 1, - sym_identifier, - STATE(5370), 1, - aux_sym_collection_type_repeat1, - STATE(5408), 1, - sym_comment, - STATE(6597), 1, - sym_val_string, - ACTIONS(3134), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5195), 2, - sym__raw_str, - sym__str_double_quotes, - [195681] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3132), 1, - anon_sym_DQUOTE, - ACTIONS(3138), 1, - sym_raw_string_begin, - ACTIONS(9227), 1, - sym_identifier, - STATE(5370), 1, - aux_sym_collection_type_repeat1, - STATE(5409), 1, - sym_comment, - STATE(6624), 1, - sym_val_string, - ACTIONS(3134), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5195), 2, - sym__raw_str, - sym__str_double_quotes, - [195711] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4862), 1, - anon_sym_DASH2, - ACTIONS(9229), 1, - sym_long_flag_identifier, - ACTIONS(9231), 1, - anon_sym_EQ2, - STATE(5410), 1, - sym_comment, - ACTIONS(4860), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - [195735] = 9, - ACTIONS(251), 1, + [194204] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4580), 1, + ACTIONS(4207), 1, anon_sym_LPAREN2, - ACTIONS(6551), 1, + ACTIONS(6993), 1, anon_sym_DOLLAR, - ACTIONS(8683), 1, + ACTIONS(8772), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8685), 1, + ACTIONS(8774), 1, aux_sym__immediate_decimal_token5, - STATE(1968), 1, - sym__immediate_decimal, - STATE(5411), 1, + STATE(5418), 1, sym_comment, - ACTIONS(8836), 2, + STATE(7305), 1, + sym__immediate_decimal, + ACTIONS(8770), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1967), 2, + STATE(1797), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [195765] = 6, - ACTIONS(3), 1, + [194234] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9233), 1, - anon_sym_DOT, - ACTIONS(9235), 1, - aux_sym__immediate_decimal_token2, - STATE(5412), 1, + ACTIONS(956), 1, + anon_sym_DASH2, + STATE(5419), 1, sym_comment, - ACTIONS(1755), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1757), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [195789] = 9, - ACTIONS(251), 1, + ACTIONS(958), 8, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_DOT2, + [194254] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4580), 1, + ACTIONS(4159), 1, anon_sym_LPAREN2, - ACTIONS(4586), 1, + ACTIONS(4165), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4588), 1, + ACTIONS(4167), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6551), 1, + ACTIONS(8621), 1, anon_sym_DOLLAR, - STATE(1968), 1, + STATE(1728), 1, sym__immediate_decimal, - STATE(5413), 1, + STATE(5420), 1, sym_comment, - ACTIONS(4638), 2, + ACTIONS(4163), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1967), 2, + STATE(2051), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [195819] = 9, - ACTIONS(251), 1, + [194284] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3132), 1, - anon_sym_DQUOTE, - ACTIONS(3138), 1, + ACTIONS(9242), 1, + anon_sym_GT2, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(9246), 1, sym_raw_string_begin, - ACTIONS(9237), 1, - sym_identifier, - STATE(5370), 1, - aux_sym_collection_type_repeat1, - STATE(5414), 1, + STATE(5421), 1, sym_comment, - STATE(6227), 1, - sym_val_string, - ACTIONS(3134), 2, + STATE(5520), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9240), 4, + sym_identifier, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - STATE(5195), 2, - sym__raw_str, - sym__str_double_quotes, - [195849] = 6, + [194309] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9239), 1, - anon_sym_DOT2, - STATE(5657), 1, - sym_path, - STATE(5415), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(953), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(955), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(9244), 1, sym__entry_separator, - [195873] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3132), 1, - anon_sym_DQUOTE, - ACTIONS(3138), 1, + ACTIONS(9250), 1, + anon_sym_GT2, + ACTIONS(9252), 1, sym_raw_string_begin, - ACTIONS(9242), 1, - sym_identifier, - STATE(5370), 1, - aux_sym_collection_type_repeat1, - STATE(5416), 1, + STATE(5422), 1, sym_comment, - STATE(6243), 1, - sym_val_string, - ACTIONS(3134), 2, + STATE(5520), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9248), 4, + sym_identifier, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - STATE(5195), 2, - sym__raw_str, - sym__str_double_quotes, - [195903] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5417), 1, - sym_comment, - ACTIONS(1542), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1544), 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, - [195923] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(976), 1, - anon_sym_DASH2, - STATE(5418), 1, - sym_comment, - ACTIONS(978), 8, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_QMARK2, - anon_sym_DOT2, - [195943] = 5, + [194334] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9244), 1, - aux_sym__immediate_decimal_token2, - STATE(5419), 1, - sym_comment, - ACTIONS(1783), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1785), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, sym__entry_separator, - [195965] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(966), 1, - anon_sym_DASH2, ACTIONS(9246), 1, - anon_sym_QMARK2, - STATE(5420), 1, + sym_raw_string_begin, + ACTIONS(9254), 1, + anon_sym_GT2, + STATE(5423), 1, sym_comment, - ACTIONS(968), 7, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT2, - [195987] = 5, - ACTIONS(251), 1, + STATE(5520), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9240), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [194359] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(960), 1, - anon_sym_DASH2, - ACTIONS(9248), 1, - anon_sym_QMARK2, - STATE(5421), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(9258), 1, + anon_sym_GT2, + ACTIONS(9260), 1, + sym_raw_string_begin, + STATE(5424), 1, sym_comment, - ACTIONS(962), 7, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT2, - [196009] = 4, - ACTIONS(251), 1, + STATE(5520), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9256), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [194384] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5422), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(9264), 1, + anon_sym_GT2, + ACTIONS(9266), 1, + sym_raw_string_begin, + STATE(5425), 1, sym_comment, - ACTIONS(1680), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1682), 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, - [196029] = 9, - ACTIONS(251), 1, + STATE(5520), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9262), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [194409] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4680), 1, - anon_sym_LPAREN2, - ACTIONS(4686), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4688), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6586), 1, - anon_sym_DOLLAR, - STATE(2532), 1, - sym__immediate_decimal, - STATE(5423), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(9270), 1, + anon_sym_GT2, + ACTIONS(9272), 1, + sym_raw_string_begin, + STATE(5426), 1, sym_comment, - ACTIONS(4802), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2530), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [196059] = 9, - ACTIONS(251), 1, + STATE(5520), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9268), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [194434] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7045), 1, - anon_sym_LPAREN2, - ACTIONS(9171), 1, - anon_sym_DOLLAR, - ACTIONS(9250), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9252), 1, - aux_sym__immediate_decimal_token5, - STATE(4647), 1, - sym__immediate_decimal, - STATE(5424), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(9276), 1, + anon_sym_GT2, + ACTIONS(9278), 1, + sym_raw_string_begin, + STATE(5427), 1, sym_comment, - ACTIONS(7106), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4646), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [196089] = 7, + STATE(5520), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9274), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [194459] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9256), 1, - anon_sym_GT2, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9260), 1, + ACTIONS(9272), 1, sym_raw_string_begin, - STATE(5425), 1, + ACTIONS(9280), 1, + anon_sym_GT2, + STATE(5428), 1, sym_comment, - STATE(5467), 1, + STATE(5520), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9254), 4, + ACTIONS(9268), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [196114] = 7, + [194484] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9264), 1, - anon_sym_GT2, - ACTIONS(9266), 1, + ACTIONS(9278), 1, sym_raw_string_begin, - STATE(5426), 1, + ACTIONS(9282), 1, + anon_sym_GT2, + STATE(5429), 1, sym_comment, - STATE(5467), 1, + STATE(5520), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9262), 4, + ACTIONS(9274), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [196139] = 7, + [194509] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9270), 1, - anon_sym_GT2, - ACTIONS(9272), 1, + ACTIONS(9260), 1, sym_raw_string_begin, - STATE(5427), 1, + ACTIONS(9284), 1, + anon_sym_GT2, + STATE(5430), 1, sym_comment, - STATE(5467), 1, + STATE(5520), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9268), 4, + ACTIONS(9256), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [196164] = 7, + [194534] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9276), 1, - anon_sym_GT2, ACTIONS(9278), 1, sym_raw_string_begin, - STATE(5428), 1, + ACTIONS(9286), 1, + anon_sym_GT2, + STATE(5431), 1, sym_comment, - STATE(5467), 1, + STATE(5520), 1, aux_sym__multiple_types_repeat1, ACTIONS(9274), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [196189] = 7, + [194559] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9282), 1, - anon_sym_GT2, - ACTIONS(9284), 1, + ACTIONS(9260), 1, sym_raw_string_begin, - STATE(5429), 1, + ACTIONS(9288), 1, + anon_sym_GT2, + STATE(5432), 1, sym_comment, - STATE(5467), 1, + STATE(5520), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9280), 4, + ACTIONS(9256), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [196214] = 7, + [194584] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, ACTIONS(9266), 1, sym_raw_string_begin, - ACTIONS(9286), 1, + ACTIONS(9290), 1, anon_sym_GT2, - STATE(5430), 1, + STATE(5433), 1, sym_comment, - STATE(5467), 1, + STATE(5520), 1, aux_sym__multiple_types_repeat1, ACTIONS(9262), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [196239] = 7, + [194609] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, ACTIONS(9272), 1, sym_raw_string_begin, - ACTIONS(9288), 1, + ACTIONS(9292), 1, anon_sym_GT2, - STATE(5431), 1, + STATE(5434), 1, sym_comment, - STATE(5467), 1, + STATE(5520), 1, aux_sym__multiple_types_repeat1, ACTIONS(9268), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [196264] = 7, + [194634] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9292), 1, - anon_sym_GT2, - ACTIONS(9294), 1, + ACTIONS(9278), 1, sym_raw_string_begin, - STATE(5432), 1, + ACTIONS(9294), 1, + anon_sym_GT2, + STATE(5435), 1, sym_comment, - STATE(5467), 1, + STATE(5520), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9290), 4, + ACTIONS(9274), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [196289] = 7, + [194659] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9260), 1, + ACTIONS(9266), 1, sym_raw_string_begin, ACTIONS(9296), 1, anon_sym_GT2, - STATE(5433), 1, + STATE(5436), 1, sym_comment, - STATE(5467), 1, + STATE(5520), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9254), 4, + ACTIONS(9262), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [196314] = 7, + [194684] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9278), 1, + ACTIONS(9252), 1, sym_raw_string_begin, ACTIONS(9298), 1, anon_sym_GT2, - STATE(5434), 1, + STATE(5437), 1, sym_comment, - STATE(5467), 1, + STATE(5520), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9274), 4, + ACTIONS(9248), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [196339] = 7, + [194709] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9284), 1, + ACTIONS(9246), 1, sym_raw_string_begin, ACTIONS(9300), 1, anon_sym_GT2, - STATE(5435), 1, + STATE(5438), 1, sym_comment, - STATE(5467), 1, + STATE(5520), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9280), 4, + ACTIONS(9240), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [196364] = 7, + [194734] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9278), 1, + ACTIONS(9260), 1, sym_raw_string_begin, ACTIONS(9302), 1, anon_sym_GT2, - STATE(5436), 1, + STATE(5439), 1, sym_comment, - STATE(5467), 1, + STATE(5520), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9274), 4, + ACTIONS(9256), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [196389] = 7, + [194759] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9284), 1, + ACTIONS(9266), 1, sym_raw_string_begin, ACTIONS(9304), 1, anon_sym_GT2, - STATE(5437), 1, + STATE(5440), 1, sym_comment, - STATE(5467), 1, + STATE(5520), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9280), 4, + ACTIONS(9262), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [196414] = 7, + [194784] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9294), 1, + ACTIONS(9260), 1, sym_raw_string_begin, ACTIONS(9306), 1, anon_sym_GT2, - STATE(5438), 1, + STATE(5441), 1, sym_comment, - STATE(5467), 1, + STATE(5520), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9290), 4, + ACTIONS(9256), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [196439] = 7, + [194809] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9260), 1, + ACTIONS(9266), 1, sym_raw_string_begin, ACTIONS(9308), 1, anon_sym_GT2, - STATE(5439), 1, + STATE(5442), 1, sym_comment, - STATE(5467), 1, + STATE(5520), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9254), 4, + ACTIONS(9262), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [196464] = 7, + [194834] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9278), 1, + ACTIONS(9252), 1, sym_raw_string_begin, ACTIONS(9310), 1, anon_sym_GT2, - STATE(5440), 1, + STATE(5443), 1, sym_comment, - STATE(5467), 1, + STATE(5520), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9274), 4, + ACTIONS(9248), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [196489] = 7, + [194859] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9284), 1, + ACTIONS(9246), 1, sym_raw_string_begin, ACTIONS(9312), 1, anon_sym_GT2, - STATE(5441), 1, + STATE(5444), 1, sym_comment, - STATE(5467), 1, + STATE(5520), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9280), 4, + ACTIONS(9240), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [196514] = 7, + [194884] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9294), 1, + ACTIONS(9260), 1, sym_raw_string_begin, ACTIONS(9314), 1, anon_sym_GT2, - STATE(5442), 1, + STATE(5445), 1, sym_comment, - STATE(5467), 1, + STATE(5520), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9290), 4, + ACTIONS(9256), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [196539] = 7, + [194909] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9260), 1, + ACTIONS(9266), 1, sym_raw_string_begin, ACTIONS(9316), 1, anon_sym_GT2, - STATE(5443), 1, + STATE(5446), 1, sym_comment, - STATE(5467), 1, + STATE(5520), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9254), 4, + ACTIONS(9262), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [196564] = 7, + [194934] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9294), 1, + ACTIONS(9252), 1, sym_raw_string_begin, ACTIONS(9318), 1, anon_sym_GT2, - STATE(5444), 1, + STATE(5447), 1, sym_comment, - STATE(5467), 1, + STATE(5520), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9290), 4, + ACTIONS(9248), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [196589] = 7, + [194959] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9260), 1, + ACTIONS(9246), 1, sym_raw_string_begin, ACTIONS(9320), 1, anon_sym_GT2, - STATE(5445), 1, + STATE(5448), 1, sym_comment, - STATE(5467), 1, + STATE(5520), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9254), 4, + ACTIONS(9240), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [196614] = 7, + [194984] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9266), 1, + ACTIONS(9252), 1, sym_raw_string_begin, ACTIONS(9322), 1, anon_sym_GT2, - STATE(5446), 1, + STATE(5449), 1, sym_comment, - STATE(5467), 1, + STATE(5520), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9262), 4, + ACTIONS(9248), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [196639] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9324), 1, - aux_sym__immediate_decimal_token2, - STATE(5447), 1, - sym_comment, - ACTIONS(1783), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1785), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [196660] = 7, + [195009] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9278), 1, + ACTIONS(9246), 1, sym_raw_string_begin, - ACTIONS(9326), 1, + ACTIONS(9324), 1, anon_sym_GT2, - STATE(5448), 1, + STATE(5450), 1, sym_comment, - STATE(5467), 1, + STATE(5520), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9274), 4, + ACTIONS(9240), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [196685] = 4, - ACTIONS(251), 1, + [195034] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5449), 1, + STATE(5451), 1, sym_comment, - ACTIONS(1550), 2, + ACTIONS(1689), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1552), 6, + ACTIONS(1691), 6, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [196704] = 7, - ACTIONS(251), 1, + [195053] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9328), 1, - anon_sym_DASH_DASH, - ACTIONS(9331), 1, + ACTIONS(1939), 1, anon_sym_DASH2, - STATE(5334), 1, - sym__flag, - ACTIONS(6314), 2, - anon_sym_DOLLAR, - anon_sym_LBRACE, - STATE(5247), 2, - sym_short_flag, - sym_long_flag, - STATE(5450), 2, - sym_comment, - aux_sym_ctrl_do_repeat1, - [196729] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3610), 1, - anon_sym_DQUOTE, - ACTIONS(3624), 1, - sym_raw_string_begin, - ACTIONS(9334), 1, - aux_sym_path_token1, - STATE(3994), 1, - sym_val_string, - STATE(5451), 1, - sym_comment, - ACTIONS(3612), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4208), 2, - sym__raw_str, - sym__str_double_quotes, - [196756] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(9266), 1, - sym_raw_string_begin, - ACTIONS(9336), 1, - anon_sym_GT2, + ACTIONS(9326), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4434), 1, + sym_cell_path, STATE(5452), 1, sym_comment, - STATE(5467), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9262), 4, + STATE(5650), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1941), 3, sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [196781] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1638), 1, - anon_sym_DASH2, - ACTIONS(7078), 1, - aux_sym_unquoted_token2, - STATE(5453), 1, - sym_comment, - ACTIONS(1650), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_RBRACE, - [196802] = 8, - ACTIONS(251), 1, + [195080] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1895), 1, + ACTIONS(1909), 1, anon_sym_DASH2, - ACTIONS(9338), 1, + ACTIONS(9326), 1, anon_sym_DOT2, - STATE(4011), 1, + STATE(4025), 1, sym_path, - STATE(4302), 1, + STATE(4437), 1, sym_cell_path, - STATE(5454), 1, + STATE(5453), 1, sym_comment, - STATE(5665), 1, + STATE(5650), 1, aux_sym_cell_path_repeat1, - ACTIONS(1897), 3, + ACTIONS(1911), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [196829] = 8, - ACTIONS(251), 1, + [195107] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1286), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(9252), 1, + sym_raw_string_begin, + ACTIONS(9328), 1, + anon_sym_GT2, + STATE(5454), 1, + sym_comment, + STATE(5520), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9248), 4, + sym_identifier, anon_sym_DQUOTE, - ACTIONS(1290), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [195132] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(9246), 1, sym_raw_string_begin, - ACTIONS(9334), 1, - aux_sym_path_token1, - STATE(3994), 1, - sym_val_string, + ACTIONS(9330), 1, + anon_sym_GT2, STATE(5455), 1, sym_comment, - ACTIONS(1288), 2, + STATE(5520), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9240), 4, + sym_identifier, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - STATE(3668), 2, - sym__raw_str, - sym__str_double_quotes, - [196856] = 7, + [195157] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9278), 1, + ACTIONS(9260), 1, sym_raw_string_begin, - ACTIONS(9340), 1, + ACTIONS(9332), 1, anon_sym_GT2, STATE(5456), 1, sym_comment, - STATE(5467), 1, + STATE(5520), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9274), 4, + ACTIONS(9256), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [196881] = 8, - ACTIONS(251), 1, + [195182] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1891), 1, - anon_sym_DASH2, - ACTIONS(9338), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4421), 1, - sym_cell_path, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(9266), 1, + sym_raw_string_begin, + ACTIONS(9334), 1, + anon_sym_GT2, STATE(5457), 1, sym_comment, - STATE(5665), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1893), 3, + STATE(5520), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9262), 4, sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [196908] = 4, - ACTIONS(251), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [195207] = 8, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2015), 1, - anon_sym_DASH2, + ACTIONS(249), 1, + sym_raw_string_begin, + ACTIONS(9336), 1, + aux_sym_path_token1, + STATE(1388), 1, + sym_val_string, STATE(5458), 1, sym_comment, - ACTIONS(2017), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [196927] = 7, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1392), 2, + sym__raw_str, + sym__str_double_quotes, + [195234] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9284), 1, + ACTIONS(9252), 1, sym_raw_string_begin, - ACTIONS(9342), 1, + ACTIONS(9338), 1, anon_sym_GT2, STATE(5459), 1, sym_comment, - STATE(5467), 1, + STATE(5520), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9280), 4, + ACTIONS(9248), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [196952] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9344), 1, - anon_sym_DOT, - ACTIONS(9346), 1, - aux_sym__immediate_decimal_token2, - STATE(5460), 1, - sym_comment, - ACTIONS(1755), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1757), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [196975] = 7, + [195259] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9272), 1, + ACTIONS(9246), 1, sym_raw_string_begin, - ACTIONS(9348), 1, + ACTIONS(9340), 1, anon_sym_GT2, - STATE(5461), 1, + STATE(5460), 1, sym_comment, - STATE(5467), 1, + STATE(5520), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9268), 4, + ACTIONS(9240), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [197000] = 8, - ACTIONS(251), 1, + [195284] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1839), 1, + anon_sym_DASH2, + ACTIONS(9326), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4251), 1, + sym_cell_path, + STATE(5461), 1, + sym_comment, + STATE(5650), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1841), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [195311] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1286), 1, + ACTIONS(1272), 1, anon_sym_DQUOTE, - ACTIONS(1290), 1, + ACTIONS(1276), 1, sym_raw_string_begin, - ACTIONS(9350), 1, + ACTIONS(9342), 1, aux_sym_path_token1, - STATE(5353), 1, + STATE(5361), 1, sym_val_string, STATE(5462), 1, sym_comment, - ACTIONS(1288), 2, + ACTIONS(1274), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3668), 2, + STATE(3793), 2, sym__raw_str, sym__str_double_quotes, - [197027] = 9, - ACTIONS(3), 1, + [195338] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1638), 1, - sym__newline, - ACTIONS(1650), 1, - sym__space, - ACTIONS(4622), 1, - anon_sym_DOT_DOT2, - ACTIONS(7177), 1, - aux_sym_unquoted_token2, - ACTIONS(9352), 1, - sym_filesize_unit, - ACTIONS(9354), 1, - sym_duration_unit, + ACTIONS(1847), 1, + anon_sym_DASH2, + ACTIONS(9326), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4252), 1, + sym_cell_path, STATE(5463), 1, sym_comment, - ACTIONS(4624), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [197056] = 4, - ACTIONS(251), 1, + STATE(5650), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1849), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [195365] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(992), 1, + ACTIONS(1853), 1, anon_sym_DASH2, + ACTIONS(9326), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4255), 1, + sym_cell_path, STATE(5464), 1, sym_comment, - ACTIONS(994), 7, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, + STATE(5650), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1855), 3, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT2, - [197075] = 5, - ACTIONS(3), 1, + [195392] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2142), 1, - aux_sym_unquoted_token4, + ACTIONS(1869), 1, + anon_sym_DASH2, + ACTIONS(9326), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4256), 1, + sym_cell_path, STATE(5465), 1, sym_comment, - ACTIONS(2136), 2, + STATE(5650), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1871), 3, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH2, - ACTIONS(2140), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - [197096] = 5, + [195419] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2142), 1, - aux_sym_unquoted_token4, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(9252), 1, + sym_raw_string_begin, + ACTIONS(9344), 1, + anon_sym_GT2, STATE(5466), 1, sym_comment, - ACTIONS(2144), 2, - anon_sym_DASH_DASH, - anon_sym_DASH2, - ACTIONS(2146), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - [197117] = 5, + STATE(5520), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9248), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [195444] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2487), 1, - sym_raw_string_begin, - ACTIONS(9356), 1, + ACTIONS(9244), 1, sym__entry_separator, - STATE(5467), 2, + ACTIONS(9246), 1, + sym_raw_string_begin, + ACTIONS(9346), 1, + anon_sym_GT2, + STATE(5467), 1, sym_comment, + STATE(5520), 1, aux_sym__multiple_types_repeat1, - ACTIONS(2482), 5, + ACTIONS(9240), 4, sym_identifier, - anon_sym_GT2, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [197138] = 9, - ACTIONS(3), 1, + [195469] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7886), 1, - sym__newline, - ACTIONS(7888), 1, - sym__space, - ACTIONS(7890), 1, - anon_sym_DASH_DASH, - ACTIONS(7892), 1, + ACTIONS(1877), 1, anon_sym_DASH2, + ACTIONS(9326), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4258), 1, + sym_cell_path, STATE(5468), 1, sym_comment, - STATE(5691), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(7460), 1, - sym__flag, - STATE(4582), 2, - sym_short_flag, - sym_long_flag, - [197167] = 8, - ACTIONS(251), 1, + STATE(5650), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1879), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [195496] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1909), 1, + ACTIONS(1969), 1, anon_sym_DASH2, - ACTIONS(9338), 1, + ACTIONS(9326), 1, anon_sym_DOT2, - STATE(4011), 1, + STATE(4025), 1, sym_path, - STATE(4466), 1, + STATE(4261), 1, sym_cell_path, STATE(5469), 1, sym_comment, - STATE(5665), 1, + STATE(5650), 1, aux_sym_cell_path_repeat1, - ACTIONS(1911), 3, + ACTIONS(1971), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [197194] = 8, - ACTIONS(251), 1, + [195523] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1913), 1, + ACTIONS(1833), 1, anon_sym_DASH2, - ACTIONS(9338), 1, + ACTIONS(9326), 1, anon_sym_DOT2, - STATE(4011), 1, + STATE(4025), 1, sym_path, - STATE(4257), 1, + STATE(4264), 1, sym_cell_path, STATE(5470), 1, sym_comment, - STATE(5665), 1, + STATE(5650), 1, aux_sym_cell_path_repeat1, - ACTIONS(1915), 3, + ACTIONS(1835), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [197221] = 8, - ACTIONS(251), 1, + [195550] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1855), 1, + ACTIONS(9195), 1, + aux_sym__immediate_decimal_token2, + STATE(5471), 1, + sym_comment, + ACTIONS(1512), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1514), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [195571] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1861), 1, anon_sym_DASH2, - ACTIONS(9338), 1, + ACTIONS(9326), 1, anon_sym_DOT2, - STATE(4011), 1, + STATE(4025), 1, sym_path, - STATE(4408), 1, + STATE(4265), 1, sym_cell_path, - STATE(5471), 1, + STATE(5472), 1, sym_comment, - STATE(5665), 1, + STATE(5650), 1, aux_sym_cell_path_repeat1, - ACTIONS(1857), 3, + ACTIONS(1863), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [197248] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9359), 1, - anon_sym_DQUOTE, - ACTIONS(9363), 1, - aux_sym_path_token1, - ACTIONS(9365), 1, - sym_raw_string_begin, - STATE(2572), 1, - sym_val_string, - STATE(5472), 1, - sym_comment, - ACTIONS(9361), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2596), 2, - sym__raw_str, - sym__str_double_quotes, - [197275] = 4, - ACTIONS(251), 1, + [195598] = 8, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(1873), 1, + anon_sym_DASH2, + ACTIONS(9326), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4266), 1, + sym_cell_path, STATE(5473), 1, sym_comment, - ACTIONS(1680), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1682), 6, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [197294] = 5, - ACTIONS(3), 1, + STATE(5650), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1875), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [195625] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9367), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(1881), 1, + anon_sym_DASH2, + ACTIONS(9326), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4267), 1, + sym_cell_path, STATE(5474), 1, sym_comment, - ACTIONS(1783), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1785), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [197315] = 4, - ACTIONS(251), 1, + STATE(5650), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1883), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [195652] = 8, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(1885), 1, + anon_sym_DASH2, + ACTIONS(9326), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4269), 1, + sym_cell_path, STATE(5475), 1, sym_comment, - ACTIONS(1743), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1745), 6, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [197334] = 4, - ACTIONS(3), 1, + STATE(5650), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1887), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [195679] = 8, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(1889), 1, + anon_sym_DASH2, + ACTIONS(9326), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4270), 1, + sym_cell_path, STATE(5476), 1, sym_comment, - ACTIONS(1550), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1552), 5, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [197353] = 7, - ACTIONS(3), 1, + STATE(5650), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1891), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [195706] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(9272), 1, - sym_raw_string_begin, - ACTIONS(9369), 1, - anon_sym_GT2, - STATE(5467), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(1897), 1, + anon_sym_DASH2, + ACTIONS(9326), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4271), 1, + sym_cell_path, STATE(5477), 1, sym_comment, - ACTIONS(9268), 4, + STATE(5650), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1899), 3, sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [197378] = 8, - ACTIONS(251), 1, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [195733] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1917), 1, + ACTIONS(1901), 1, anon_sym_DASH2, - ACTIONS(9338), 1, + ACTIONS(9326), 1, anon_sym_DOT2, - STATE(4011), 1, + STATE(4025), 1, sym_path, - STATE(4260), 1, + STATE(4272), 1, sym_cell_path, STATE(5478), 1, sym_comment, - STATE(5665), 1, + STATE(5650), 1, aux_sym_cell_path_repeat1, - ACTIONS(1919), 3, + ACTIONS(1903), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [197405] = 8, - ACTIONS(251), 1, + [195760] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9371), 1, - anon_sym_DQUOTE, - ACTIONS(9375), 1, - aux_sym_path_token1, - ACTIONS(9377), 1, - sym_raw_string_begin, + ACTIONS(982), 1, + anon_sym_DASH2, STATE(5479), 1, sym_comment, - STATE(6041), 1, - sym_val_string, - ACTIONS(9373), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(6066), 2, - sym__raw_str, - sym__str_double_quotes, - [197432] = 8, - ACTIONS(251), 1, + ACTIONS(984), 7, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT2, + [195779] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1925), 1, + ACTIONS(1905), 1, anon_sym_DASH2, - ACTIONS(9338), 1, + ACTIONS(9326), 1, anon_sym_DOT2, - STATE(4011), 1, + STATE(4025), 1, sym_path, - STATE(4261), 1, + STATE(4273), 1, sym_cell_path, STATE(5480), 1, sym_comment, - STATE(5665), 1, + STATE(5650), 1, aux_sym_cell_path_repeat1, - ACTIONS(1927), 3, + ACTIONS(1907), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [197459] = 7, + [195806] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(9266), 1, - sym_raw_string_begin, - ACTIONS(9379), 1, - anon_sym_GT2, - STATE(5467), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(1639), 1, + sym__newline, + ACTIONS(1651), 1, + sym__space, + ACTIONS(4608), 1, + anon_sym_DOT_DOT2, + ACTIONS(7179), 1, + aux_sym_unquoted_token2, + ACTIONS(9348), 1, + sym_filesize_unit, + ACTIONS(9350), 1, + sym_duration_unit, STATE(5481), 1, sym_comment, - ACTIONS(9262), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [197484] = 7, - ACTIONS(3), 1, + ACTIONS(4610), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [195835] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(9272), 1, - sym_raw_string_begin, - ACTIONS(9381), 1, - anon_sym_GT2, - STATE(5467), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(9352), 1, + anon_sym_DOT, + ACTIONS(9354), 1, + aux_sym__immediate_decimal_token2, STATE(5482), 1, sym_comment, - ACTIONS(9268), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [197509] = 8, - ACTIONS(251), 1, + ACTIONS(1701), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1703), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [195858] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1929), 1, + ACTIONS(978), 1, anon_sym_DASH2, - ACTIONS(9338), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4310), 1, - sym_cell_path, STATE(5483), 1, sym_comment, - STATE(5665), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1931), 3, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(980), 7, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DASH_DASH, - [197536] = 8, - ACTIONS(251), 1, + anon_sym_as, + anon_sym_DOT2, + [195877] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3132), 1, - anon_sym_DQUOTE, - ACTIONS(3138), 1, - sym_raw_string_begin, - ACTIONS(9383), 1, - aux_sym_path_token1, + ACTIONS(974), 1, + anon_sym_DASH2, STATE(5484), 1, sym_comment, - STATE(5575), 1, - sym_val_string, - ACTIONS(3134), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5195), 2, - sym__raw_str, - sym__str_double_quotes, - [197563] = 8, - ACTIONS(251), 1, + ACTIONS(976), 7, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT2, + [195896] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1933), 1, + ACTIONS(4940), 1, anon_sym_DASH2, - ACTIONS(9338), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4320), 1, - sym_cell_path, + ACTIONS(9356), 1, + sym_long_flag_identifier, + ACTIONS(9358), 1, + anon_sym_EQ2, STATE(5485), 1, sym_comment, - STATE(5665), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1935), 3, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(4938), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DASH_DASH, - [197590] = 8, - ACTIONS(251), 1, + [195919] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1937), 1, - anon_sym_DASH2, - ACTIONS(9338), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4335), 1, - sym_cell_path, + ACTIONS(2079), 1, + aux_sym_unquoted_token4, STATE(5486), 1, sym_comment, - STATE(5665), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1939), 3, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(2073), 2, anon_sym_DASH_DASH, - [197617] = 7, + anon_sym_DASH2, + ACTIONS(2077), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + [195940] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(9266), 1, - sym_raw_string_begin, - ACTIONS(9385), 1, - anon_sym_GT2, - STATE(5467), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(2079), 1, + aux_sym_unquoted_token4, STATE(5487), 1, sym_comment, - ACTIONS(9262), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [197642] = 8, - ACTIONS(251), 1, + ACTIONS(2081), 2, + anon_sym_DASH_DASH, + anon_sym_DASH2, + ACTIONS(2083), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + [195961] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1945), 1, + ACTIONS(929), 1, anon_sym_DASH2, - ACTIONS(9338), 1, + ACTIONS(9326), 1, anon_sym_DOT2, - STATE(4011), 1, + STATE(4025), 1, sym_path, - STATE(4340), 1, + STATE(4471), 1, sym_cell_path, STATE(5488), 1, sym_comment, - STATE(5665), 1, + STATE(5650), 1, aux_sym_cell_path_repeat1, - ACTIONS(1947), 3, + ACTIONS(931), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [197669] = 8, - ACTIONS(251), 1, + [195988] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9387), 1, - anon_sym_DQUOTE, - ACTIONS(9391), 1, - aux_sym_path_token1, - ACTIONS(9393), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(9272), 1, sym_raw_string_begin, - STATE(1328), 1, - sym_val_string, + ACTIONS(9360), 1, + anon_sym_GT2, STATE(5489), 1, sym_comment, - ACTIONS(9389), 2, + STATE(5520), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9268), 4, + sym_identifier, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - STATE(1332), 2, - sym__raw_str, - sym__str_double_quotes, - [197696] = 8, - ACTIONS(251), 1, + [196013] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1949), 1, - anon_sym_DASH2, - ACTIONS(9338), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4347), 1, - sym_cell_path, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(9278), 1, + sym_raw_string_begin, + ACTIONS(9362), 1, + anon_sym_GT2, STATE(5490), 1, sym_comment, - STATE(5665), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1951), 3, + STATE(5520), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9274), 4, sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [197723] = 8, - ACTIONS(251), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [196038] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1953), 1, - anon_sym_DASH2, - ACTIONS(9338), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4349), 1, - sym_cell_path, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(9272), 1, + sym_raw_string_begin, + ACTIONS(9364), 1, + anon_sym_GT2, STATE(5491), 1, sym_comment, - STATE(5665), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1955), 3, + STATE(5520), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9268), 4, sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [197750] = 7, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [196063] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9272), 1, + ACTIONS(9278), 1, sym_raw_string_begin, - ACTIONS(9395), 1, + ACTIONS(9366), 1, anon_sym_GT2, - STATE(5467), 1, - aux_sym__multiple_types_repeat1, STATE(5492), 1, sym_comment, - ACTIONS(9268), 4, + STATE(5520), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9274), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [197775] = 7, + [196088] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9266), 1, + ACTIONS(9272), 1, sym_raw_string_begin, - ACTIONS(9397), 1, + ACTIONS(9368), 1, anon_sym_GT2, - STATE(5467), 1, - aux_sym__multiple_types_repeat1, STATE(5493), 1, sym_comment, - ACTIONS(9262), 4, + STATE(5520), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9268), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [197800] = 8, - ACTIONS(251), 1, + [196113] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, - anon_sym_DASH2, - ACTIONS(9338), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4351), 1, - sym_cell_path, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(9278), 1, + sym_raw_string_begin, + ACTIONS(9370), 1, + anon_sym_GT2, STATE(5494), 1, sym_comment, - STATE(5665), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1959), 3, + STATE(5520), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9274), 4, sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [197827] = 5, - ACTIONS(251), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [196138] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9179), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(9260), 1, + sym_raw_string_begin, + ACTIONS(9372), 1, + anon_sym_GT2, STATE(5495), 1, sym_comment, - ACTIONS(1550), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1552), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [197848] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9399), 1, + STATE(5520), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9256), 4, + sym_identifier, anon_sym_DQUOTE, - ACTIONS(9403), 1, - aux_sym_path_token1, - ACTIONS(9405), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [196163] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(9266), 1, sym_raw_string_begin, - STATE(1674), 1, - sym_val_string, + ACTIONS(9374), 1, + anon_sym_GT2, STATE(5496), 1, sym_comment, - ACTIONS(9401), 2, + STATE(5520), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9262), 4, + sym_identifier, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - STATE(1653), 2, - sym__raw_str, - sym__str_double_quotes, - [197875] = 8, - ACTIONS(251), 1, + [196188] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1961), 1, - anon_sym_DASH2, - ACTIONS(9338), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4354), 1, - sym_cell_path, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(9272), 1, + sym_raw_string_begin, + ACTIONS(9376), 1, + anon_sym_GT2, STATE(5497), 1, sym_comment, - STATE(5665), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1963), 3, + STATE(5520), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9268), 4, sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [197902] = 7, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [196213] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9272), 1, + ACTIONS(9278), 1, sym_raw_string_begin, - ACTIONS(9407), 1, + ACTIONS(9378), 1, anon_sym_GT2, - STATE(5467), 1, - aux_sym__multiple_types_repeat1, STATE(5498), 1, sym_comment, - ACTIONS(9268), 4, + STATE(5520), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9274), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [197927] = 6, - ACTIONS(251), 1, + [196238] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9409), 1, - anon_sym_EQ2, - ACTIONS(9411), 1, - sym_short_flag_identifier, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(9252), 1, + sym_raw_string_begin, + ACTIONS(9380), 1, + anon_sym_GT2, STATE(5499), 1, sym_comment, - ACTIONS(4841), 2, - anon_sym_DASH_DASH, - anon_sym_DASH2, - ACTIONS(4839), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - [197950] = 8, - ACTIONS(251), 1, + STATE(5520), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9248), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [196263] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1965), 1, - anon_sym_DASH2, - ACTIONS(9338), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4377), 1, - sym_cell_path, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(9246), 1, + sym_raw_string_begin, + ACTIONS(9382), 1, + anon_sym_GT2, STATE(5500), 1, sym_comment, - STATE(5665), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1967), 3, + STATE(5520), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9240), 4, sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [197977] = 8, - ACTIONS(251), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [196288] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2290), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(9260), 1, sym_raw_string_begin, - ACTIONS(4335), 1, - anon_sym_DQUOTE, - ACTIONS(9413), 1, - aux_sym_path_token1, - STATE(4092), 1, - sym_val_string, + ACTIONS(9384), 1, + anon_sym_GT2, STATE(5501), 1, sym_comment, - ACTIONS(4337), 2, + STATE(5520), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9256), 4, + sym_identifier, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - STATE(4153), 2, - sym__raw_str, - sym__str_double_quotes, - [198004] = 7, + [196313] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9284), 1, + ACTIONS(9266), 1, sym_raw_string_begin, - ACTIONS(9415), 1, + ACTIONS(9386), 1, anon_sym_GT2, - STATE(5467), 1, - aux_sym__multiple_types_repeat1, STATE(5502), 1, sym_comment, - ACTIONS(9280), 4, + STATE(5520), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9262), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [198029] = 8, - ACTIONS(251), 1, + [196338] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1969), 1, - anon_sym_DASH2, - ACTIONS(9338), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4440), 1, - sym_cell_path, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(9260), 1, + sym_raw_string_begin, + ACTIONS(9388), 1, + anon_sym_GT2, STATE(5503), 1, sym_comment, - STATE(5665), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1971), 3, + STATE(5520), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9256), 4, sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [198056] = 7, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [196363] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9278), 1, + ACTIONS(9266), 1, sym_raw_string_begin, - ACTIONS(9417), 1, + ACTIONS(9390), 1, anon_sym_GT2, - STATE(5467), 1, - aux_sym__multiple_types_repeat1, STATE(5504), 1, sym_comment, - ACTIONS(9274), 4, + STATE(5520), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9262), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [198081] = 7, + [196388] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9284), 1, + ACTIONS(9252), 1, sym_raw_string_begin, - ACTIONS(9419), 1, + ACTIONS(9392), 1, anon_sym_GT2, - STATE(5467), 1, - aux_sym__multiple_types_repeat1, STATE(5505), 1, sym_comment, - ACTIONS(9280), 4, + STATE(5520), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9248), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [198106] = 8, - ACTIONS(251), 1, + [196413] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1979), 1, - anon_sym_DASH2, - ACTIONS(9338), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4442), 1, - sym_cell_path, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(9260), 1, + sym_raw_string_begin, + ACTIONS(9394), 1, + anon_sym_GT2, STATE(5506), 1, sym_comment, - STATE(5665), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1981), 3, + STATE(5520), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9256), 4, sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [198133] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9421), 1, anon_sym_DQUOTE, - ACTIONS(9425), 1, - aux_sym_path_token1, - ACTIONS(9427), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [196438] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(9266), 1, sym_raw_string_begin, - STATE(2559), 1, - sym_val_string, + ACTIONS(9396), 1, + anon_sym_GT2, STATE(5507), 1, sym_comment, - ACTIONS(9423), 2, + STATE(5520), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9262), 4, + sym_identifier, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - STATE(2549), 2, - sym__raw_str, - sym__str_double_quotes, - [198160] = 8, - ACTIONS(251), 1, + [196463] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1905), 1, - anon_sym_DASH2, - ACTIONS(9338), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4444), 1, - sym_cell_path, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(9252), 1, + sym_raw_string_begin, + ACTIONS(9398), 1, + anon_sym_GT2, STATE(5508), 1, sym_comment, - STATE(5665), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1907), 3, + STATE(5520), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9248), 4, sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [198187] = 7, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [196488] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9266), 1, + ACTIONS(9246), 1, sym_raw_string_begin, - ACTIONS(9429), 1, + ACTIONS(9400), 1, anon_sym_GT2, - STATE(5467), 1, - aux_sym__multiple_types_repeat1, STATE(5509), 1, sym_comment, - ACTIONS(9262), 4, + STATE(5520), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9240), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [198212] = 7, + [196513] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9272), 1, + ACTIONS(9252), 1, sym_raw_string_begin, - ACTIONS(9431), 1, + ACTIONS(9402), 1, anon_sym_GT2, - STATE(5467), 1, - aux_sym__multiple_types_repeat1, STATE(5510), 1, sym_comment, - ACTIONS(9268), 4, + STATE(5520), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9248), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [198237] = 8, - ACTIONS(251), 1, + [196538] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1921), 1, - anon_sym_DASH2, - ACTIONS(9338), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4259), 1, - sym_cell_path, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(9246), 1, + sym_raw_string_begin, + ACTIONS(9404), 1, + anon_sym_GT2, STATE(5511), 1, sym_comment, - STATE(5665), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1923), 3, + STATE(5520), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9240), 4, sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [198264] = 5, - ACTIONS(3), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [196563] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2208), 1, - aux_sym_unquoted_token4, + ACTIONS(9406), 1, + anon_sym_DQUOTE, + ACTIONS(9410), 1, + aux_sym_path_token1, + ACTIONS(9412), 1, + sym_raw_string_begin, + STATE(1366), 1, + sym_val_string, STATE(5512), 1, sym_comment, - ACTIONS(1016), 2, - anon_sym_DASH_DASH, - anon_sym_DASH2, - ACTIONS(1012), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - [198285] = 8, - ACTIONS(251), 1, + ACTIONS(9408), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1360), 2, + sym__raw_str, + sym__str_double_quotes, + [196590] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2126), 1, - sym_raw_string_begin, - ACTIONS(4371), 1, + ACTIONS(3686), 1, anon_sym_DQUOTE, - ACTIONS(9433), 1, + ACTIONS(3700), 1, + sym_raw_string_begin, + ACTIONS(9414), 1, aux_sym_path_token1, - STATE(4066), 1, + STATE(3973), 1, sym_val_string, STATE(5513), 1, sym_comment, - ACTIONS(4373), 2, + ACTIONS(3688), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4058), 2, + STATE(4206), 2, sym__raw_str, sym__str_double_quotes, - [198312] = 8, - ACTIONS(251), 1, + [196617] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1983), 1, - anon_sym_DASH2, - ACTIONS(9338), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(4445), 1, - sym_cell_path, + ACTIONS(7070), 1, + aux_sym_unquoted_token2, + ACTIONS(9416), 1, + anon_sym_DOT_DOT2, + ACTIONS(9420), 1, + sym_filesize_unit, + ACTIONS(9422), 1, + sym_duration_unit, STATE(5514), 1, sym_comment, - STATE(5665), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1985), 3, + ACTIONS(1651), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(9418), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [196644] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1272), 1, + anon_sym_DQUOTE, + ACTIONS(1276), 1, + sym_raw_string_begin, + ACTIONS(9414), 1, + aux_sym_path_token1, + STATE(3973), 1, + sym_val_string, + STATE(5515), 1, + sym_comment, + ACTIONS(1274), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3793), 2, + sym__raw_str, + sym__str_double_quotes, + [196671] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9424), 1, + anon_sym_DASH_DASH, + ACTIONS(9427), 1, + anon_sym_DASH2, + STATE(5395), 1, + sym__flag, + ACTIONS(6293), 2, sym_identifier, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [198339] = 4, - ACTIONS(251), 1, + STATE(5200), 2, + sym_short_flag, + sym_long_flag, + STATE(5516), 2, + sym_comment, + aux_sym_ctrl_do_repeat1, + [196696] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1719), 1, + ACTIONS(7907), 1, + sym__newline, + ACTIONS(7909), 1, + sym__space, + ACTIONS(7911), 1, + anon_sym_DASH_DASH, + ACTIONS(7913), 1, anon_sym_DASH2, - STATE(5515), 1, + STATE(5517), 1, + sym_comment, + STATE(5627), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(7286), 1, + sym__flag, + STATE(4680), 2, + sym_short_flag, + sym_long_flag, + [196725] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9430), 1, + anon_sym_DQUOTE, + ACTIONS(9434), 1, + aux_sym_path_token1, + ACTIONS(9436), 1, + sym_raw_string_begin, + STATE(2598), 1, + sym_val_string, + STATE(5518), 1, + sym_comment, + ACTIONS(9432), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2575), 2, + sym__raw_str, + sym__str_double_quotes, + [196752] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5519), 1, sym_comment, - ACTIONS(1721), 7, + ACTIONS(1512), 3, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [198358] = 7, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1514), 5, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [196771] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(9294), 1, + ACTIONS(2383), 1, sym_raw_string_begin, - ACTIONS(9435), 1, - anon_sym_GT2, - STATE(5467), 1, - aux_sym__multiple_types_repeat1, - STATE(5516), 1, + ACTIONS(9438), 1, + sym__entry_separator, + STATE(5520), 2, sym_comment, - ACTIONS(9290), 4, + aux_sym__multiple_types_repeat1, + ACTIONS(2378), 5, sym_identifier, + anon_sym_GT2, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [198383] = 7, + [196792] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9272), 1, + ACTIONS(9278), 1, sym_raw_string_begin, - ACTIONS(9437), 1, + ACTIONS(9441), 1, anon_sym_GT2, - STATE(5467), 1, + STATE(5520), 1, aux_sym__multiple_types_repeat1, - STATE(5517), 1, + STATE(5521), 1, sym_comment, - ACTIONS(9268), 4, + ACTIONS(9274), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [198408] = 8, - ACTIONS(251), 1, + [196817] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9439), 1, - anon_sym_DQUOTE, ACTIONS(9443), 1, + anon_sym_DQUOTE, + ACTIONS(9447), 1, aux_sym_path_token1, - ACTIONS(9445), 1, + ACTIONS(9449), 1, sym_raw_string_begin, - STATE(1428), 1, - sym_val_string, - STATE(5518), 1, + STATE(5522), 1, sym_comment, - ACTIONS(9441), 2, + STATE(5931), 1, + sym_val_string, + ACTIONS(9445), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1424), 2, + STATE(5952), 2, sym__raw_str, sym__str_double_quotes, - [198435] = 4, + [196844] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(982), 1, + anon_sym_DASH2, + STATE(5523), 1, + sym_comment, + ACTIONS(984), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT2, + [196863] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5519), 1, + STATE(5524), 1, sym_comment, - ACTIONS(1542), 3, + ACTIONS(1618), 3, sym__newline, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1544), 5, + ACTIONS(1620), 5, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [198454] = 8, - ACTIONS(251), 1, + [196882] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7078), 1, - aux_sym_unquoted_token2, - ACTIONS(9447), 1, + STATE(5525), 1, + sym_comment, + ACTIONS(1689), 3, + sym__newline, anon_sym_DOT_DOT2, - ACTIONS(9451), 1, + aux_sym_unquoted_token2, + ACTIONS(1691), 5, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym_filesize_unit, - ACTIONS(9453), 1, sym_duration_unit, + [196901] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3140), 1, + anon_sym_DQUOTE, + ACTIONS(3146), 1, + sym_raw_string_begin, + ACTIONS(9451), 1, + aux_sym_path_token1, + STATE(5526), 1, + sym_comment, + STATE(5580), 1, + sym_val_string, + ACTIONS(3142), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5291), 2, + sym__raw_str, + sym__str_double_quotes, + [196928] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1272), 1, + anon_sym_DQUOTE, + ACTIONS(1276), 1, + sym_raw_string_begin, + ACTIONS(9336), 1, + aux_sym_path_token1, + STATE(1388), 1, + sym_val_string, + STATE(5527), 1, + sym_comment, + ACTIONS(1274), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3793), 2, + sym__raw_str, + sym__str_double_quotes, + [196955] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9453), 1, + anon_sym_DQUOTE, + ACTIONS(9457), 1, + aux_sym_path_token1, + ACTIONS(9459), 1, + sym_raw_string_begin, + STATE(1255), 1, + sym_val_string, + STATE(5528), 1, + sym_comment, + ACTIONS(9455), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1249), 2, + sym__raw_str, + sym__str_double_quotes, + [196982] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(9272), 1, + sym_raw_string_begin, + ACTIONS(9461), 1, + anon_sym_GT2, STATE(5520), 1, + aux_sym__multiple_types_repeat1, + STATE(5529), 1, sym_comment, - ACTIONS(1650), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(9449), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [198481] = 4, - ACTIONS(251), 1, + ACTIONS(9268), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [197007] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(996), 1, + ACTIONS(978), 1, anon_sym_DASH2, - STATE(5521), 1, + STATE(5530), 1, sym_comment, - ACTIONS(998), 7, + ACTIONS(980), 7, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -407508,281 +410132,311 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_as, anon_sym_DOT2, - [198500] = 8, - ACTIONS(251), 1, + [197026] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9455), 1, + ACTIONS(9463), 1, anon_sym_DQUOTE, - ACTIONS(9459), 1, + ACTIONS(9467), 1, aux_sym_path_token1, - ACTIONS(9461), 1, + ACTIONS(9469), 1, sym_raw_string_begin, - STATE(1591), 1, + STATE(1736), 1, sym_val_string, - STATE(5522), 1, + STATE(5531), 1, sym_comment, - ACTIONS(9457), 2, + ACTIONS(9465), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1571), 2, + STATE(1740), 2, sym__raw_str, sym__str_double_quotes, - [198527] = 7, - ACTIONS(251), 1, + [197053] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9463), 1, - anon_sym_DASH_DASH, - ACTIONS(9466), 1, - anon_sym_DASH2, - STATE(5334), 1, - sym__flag, - ACTIONS(6314), 2, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(9278), 1, + sym_raw_string_begin, + ACTIONS(9471), 1, + anon_sym_GT2, + STATE(5520), 1, + aux_sym__multiple_types_repeat1, + STATE(5532), 1, + sym_comment, + ACTIONS(9274), 4, sym_identifier, - anon_sym_DOLLAR, - STATE(5247), 2, - sym_short_flag, - sym_long_flag, - STATE(5523), 2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [197078] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(9272), 1, + sym_raw_string_begin, + ACTIONS(9473), 1, + anon_sym_GT2, + STATE(5520), 1, + aux_sym__multiple_types_repeat1, + STATE(5533), 1, sym_comment, - aux_sym_ctrl_do_repeat1, - [198552] = 8, - ACTIONS(251), 1, + ACTIONS(9268), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [197103] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(9278), 1, + sym_raw_string_begin, + ACTIONS(9475), 1, + anon_sym_GT2, + STATE(5520), 1, + aux_sym__multiple_types_repeat1, + STATE(5534), 1, + sym_comment, + ACTIONS(9274), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [197128] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(943), 1, + ACTIONS(1945), 1, anon_sym_DASH2, - ACTIONS(9338), 1, + ACTIONS(9326), 1, anon_sym_DOT2, - STATE(4011), 1, + STATE(4025), 1, sym_path, - STATE(4502), 1, + STATE(4259), 1, sym_cell_path, - STATE(5524), 1, + STATE(5535), 1, sym_comment, - STATE(5665), 1, + STATE(5650), 1, aux_sym_cell_path_repeat1, - ACTIONS(945), 3, + ACTIONS(1947), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [198579] = 8, - ACTIONS(251), 1, + [197155] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4427), 1, - anon_sym_DQUOTE, - ACTIONS(4435), 1, + ACTIONS(2286), 1, sym_raw_string_begin, - ACTIONS(9469), 1, + ACTIONS(4297), 1, + anon_sym_DQUOTE, + ACTIONS(9477), 1, aux_sym_path_token1, - STATE(5421), 1, + STATE(4128), 1, sym_val_string, - STATE(5525), 1, + STATE(5536), 1, sym_comment, - ACTIONS(4429), 2, + ACTIONS(4299), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(5380), 2, + STATE(4153), 2, sym__raw_str, sym__str_double_quotes, - [198606] = 4, - ACTIONS(3), 1, + [197182] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5526), 1, + ACTIONS(974), 1, + anon_sym_DASH2, + STATE(5537), 1, sym_comment, - ACTIONS(1680), 3, + ACTIONS(976), 7, sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT2, + [197201] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5538), 1, + sym_comment, + ACTIONS(1701), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1682), 5, - sym__space, + aux_sym__unquoted_in_list_token2, + ACTIONS(1703), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [198625] = 8, - ACTIONS(251), 1, + sym__entry_separator, + [197220] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9471), 1, + ACTIONS(9479), 1, anon_sym_DQUOTE, - ACTIONS(9475), 1, + ACTIONS(9483), 1, aux_sym_path_token1, - ACTIONS(9477), 1, + ACTIONS(9485), 1, sym_raw_string_begin, - STATE(3264), 1, + STATE(2556), 1, sym_val_string, - STATE(5527), 1, + STATE(5539), 1, sym_comment, - ACTIONS(9473), 2, + ACTIONS(9481), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3265), 2, + STATE(2548), 2, sym__raw_str, sym__str_double_quotes, - [198652] = 5, + [197247] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2134), 1, - aux_sym_unquoted_token4, - STATE(5528), 1, + STATE(5540), 1, sym_comment, - ACTIONS(2128), 2, + ACTIONS(2085), 3, anon_sym_DASH_DASH, anon_sym_DASH2, - ACTIONS(2132), 5, + aux_sym_unquoted_token4, + ACTIONS(2087), 5, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RPAREN, anon_sym_RBRACE, - [198673] = 8, - ACTIONS(251), 1, + [197266] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9479), 1, + ACTIONS(2160), 1, + sym_raw_string_begin, + ACTIONS(4337), 1, anon_sym_DQUOTE, - ACTIONS(9483), 1, + ACTIONS(9487), 1, aux_sym_path_token1, - ACTIONS(9485), 1, - sym_raw_string_begin, - STATE(2861), 1, + STATE(4070), 1, sym_val_string, - STATE(5529), 1, + STATE(5541), 1, sym_comment, - ACTIONS(9481), 2, + ACTIONS(4339), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2863), 2, + STATE(4059), 2, sym__raw_str, sym__str_double_quotes, - [198700] = 6, - ACTIONS(251), 1, + [197293] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4862), 1, - anon_sym_DASH2, - ACTIONS(9487), 1, - sym_long_flag_identifier, ACTIONS(9489), 1, - anon_sym_EQ2, - STATE(5530), 1, - sym_comment, - ACTIONS(4860), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [198723] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9491), 1, anon_sym_DQUOTE, - ACTIONS(9495), 1, + ACTIONS(9493), 1, aux_sym_path_token1, - ACTIONS(9497), 1, + ACTIONS(9495), 1, sym_raw_string_begin, - STATE(1412), 1, + STATE(1464), 1, sym_val_string, - STATE(5531), 1, + STATE(5542), 1, sym_comment, - ACTIONS(9493), 2, + ACTIONS(9491), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1378), 2, + STATE(1504), 2, sym__raw_str, sym__str_double_quotes, - [198750] = 7, - ACTIONS(3), 1, + [197320] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(9266), 1, - sym_raw_string_begin, - ACTIONS(9499), 1, - anon_sym_GT2, - STATE(5467), 1, - aux_sym__multiple_types_repeat1, - STATE(5532), 1, + ACTIONS(1961), 1, + anon_sym_DASH2, + ACTIONS(9326), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4279), 1, + sym_cell_path, + STATE(5543), 1, sym_comment, - ACTIONS(9262), 4, + STATE(5650), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1963), 3, sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [198775] = 8, - ACTIONS(251), 1, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [197347] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4088), 1, + ACTIONS(9497), 1, anon_sym_DQUOTE, - ACTIONS(4094), 1, - sym_raw_string_begin, - ACTIONS(9334), 1, + ACTIONS(9501), 1, aux_sym_path_token1, - STATE(3994), 1, + ACTIONS(9503), 1, + sym_raw_string_begin, + STATE(1651), 1, sym_val_string, - STATE(5533), 1, + STATE(5544), 1, sym_comment, - ACTIONS(4090), 2, + ACTIONS(9499), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(5611), 2, + STATE(1643), 2, sym__raw_str, sym__str_double_quotes, - [198802] = 8, - ACTIONS(251), 1, + [197374] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9505), 1, + aux_sym__immediate_decimal_token2, + STATE(5545), 1, + sym_comment, + ACTIONS(1618), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1620), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [197395] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4088), 1, + ACTIONS(4417), 1, anon_sym_DQUOTE, - ACTIONS(4094), 1, + ACTIONS(4425), 1, sym_raw_string_begin, - ACTIONS(9501), 1, + ACTIONS(9507), 1, aux_sym_path_token1, - STATE(5534), 1, - sym_comment, - STATE(6823), 1, + STATE(5355), 1, sym_val_string, - ACTIONS(4090), 2, + STATE(5546), 1, + sym_comment, + ACTIONS(4419), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(5611), 2, + STATE(5419), 2, sym__raw_str, sym__str_double_quotes, - [198829] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(9272), 1, - sym_raw_string_begin, - ACTIONS(9503), 1, - anon_sym_GT2, - STATE(5467), 1, - aux_sym__multiple_types_repeat1, - STATE(5535), 1, - sym_comment, - ACTIONS(9268), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [198854] = 8, - ACTIONS(251), 1, + [197422] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9505), 1, - anon_sym_DQUOTE, ACTIONS(9509), 1, - aux_sym_path_token1, + anon_sym_EQ2, ACTIONS(9511), 1, - sym_raw_string_begin, - STATE(2788), 1, - sym_val_string, - STATE(5536), 1, + sym_short_flag_identifier, + STATE(5547), 1, sym_comment, - ACTIONS(9507), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2753), 2, - sym__raw_str, - sym__str_double_quotes, - [198881] = 8, - ACTIONS(251), 1, + ACTIONS(4863), 2, + anon_sym_DASH_DASH, + anon_sym_DASH2, + ACTIONS(4861), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + [197445] = 8, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(9513), 1, anon_sym_DQUOTE, @@ -407790,18 +410444,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_path_token1, ACTIONS(9519), 1, sym_raw_string_begin, - STATE(2995), 1, + STATE(3309), 1, sym_val_string, - STATE(5537), 1, + STATE(5548), 1, sym_comment, ACTIONS(9515), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3026), 2, + STATE(3291), 2, sym__raw_str, sym__str_double_quotes, - [198908] = 8, - ACTIONS(251), 1, + [197472] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1893), 1, + anon_sym_DASH2, + ACTIONS(9326), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4337), 1, + sym_cell_path, + STATE(5549), 1, + sym_comment, + STATE(5650), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1895), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [197499] = 8, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(9521), 1, anon_sym_DQUOTE, @@ -407809,18 +410482,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_path_token1, ACTIONS(9527), 1, sym_raw_string_begin, - STATE(532), 1, + STATE(2880), 1, sym_val_string, - STATE(5538), 1, + STATE(5550), 1, sym_comment, ACTIONS(9523), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(496), 2, + STATE(2834), 2, sym__raw_str, sym__str_double_quotes, - [198935] = 8, - ACTIONS(251), 1, + [197526] = 8, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(9529), 1, anon_sym_DQUOTE, @@ -407828,4186 +410501,4611 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_path_token1, ACTIONS(9535), 1, sym_raw_string_begin, - STATE(2727), 1, + STATE(1433), 1, sym_val_string, - STATE(5539), 1, + STATE(5551), 1, sym_comment, ACTIONS(9531), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2698), 2, + STATE(1410), 2, sym__raw_str, sym__str_double_quotes, - [198962] = 8, - ACTIONS(251), 1, + [197553] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9537), 1, + ACTIONS(4135), 1, anon_sym_DQUOTE, - ACTIONS(9541), 1, - aux_sym_path_token1, - ACTIONS(9543), 1, + ACTIONS(4141), 1, sym_raw_string_begin, - STATE(2906), 1, + ACTIONS(9414), 1, + aux_sym_path_token1, + STATE(3973), 1, sym_val_string, - STATE(5540), 1, + STATE(5552), 1, sym_comment, - ACTIONS(9539), 2, + ACTIONS(4137), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2879), 2, + STATE(5689), 2, sym__raw_str, sym__str_double_quotes, - [198989] = 8, - ACTIONS(251), 1, + [197580] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9545), 1, + ACTIONS(4135), 1, anon_sym_DQUOTE, - ACTIONS(9549), 1, - aux_sym_path_token1, - ACTIONS(9551), 1, + ACTIONS(4141), 1, sym_raw_string_begin, - STATE(144), 1, - sym_val_string, - STATE(5541), 1, + ACTIONS(9537), 1, + aux_sym_path_token1, + STATE(5553), 1, sym_comment, - ACTIONS(9547), 2, + STATE(6732), 1, + sym_val_string, + ACTIONS(4137), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(146), 2, + STATE(5689), 2, sym__raw_str, sym__str_double_quotes, - [199016] = 8, - ACTIONS(251), 1, + [197607] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9553), 1, + ACTIONS(9539), 1, anon_sym_DQUOTE, - ACTIONS(9557), 1, + ACTIONS(9543), 1, aux_sym_path_token1, - ACTIONS(9559), 1, + ACTIONS(9545), 1, sym_raw_string_begin, - STATE(510), 1, + STATE(2784), 1, sym_val_string, - STATE(5542), 1, + STATE(5554), 1, sym_comment, - ACTIONS(9555), 2, + ACTIONS(9541), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(505), 2, + STATE(2777), 2, sym__raw_str, sym__str_double_quotes, - [199043] = 8, - ACTIONS(251), 1, + [197634] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9561), 1, + ACTIONS(9547), 1, anon_sym_DQUOTE, - ACTIONS(9565), 1, + ACTIONS(9551), 1, aux_sym_path_token1, - ACTIONS(9567), 1, + ACTIONS(9553), 1, sym_raw_string_begin, - STATE(401), 1, + STATE(3010), 1, sym_val_string, - STATE(5543), 1, + STATE(5555), 1, sym_comment, - ACTIONS(9563), 2, + ACTIONS(9549), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(389), 2, + STATE(2988), 2, sym__raw_str, sym__str_double_quotes, - [199070] = 8, - ACTIONS(251), 1, + [197661] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9569), 1, + ACTIONS(9555), 1, anon_sym_DQUOTE, - ACTIONS(9573), 1, + ACTIONS(9559), 1, aux_sym_path_token1, - ACTIONS(9575), 1, + ACTIONS(9561), 1, sym_raw_string_begin, - STATE(377), 1, + STATE(549), 1, sym_val_string, - STATE(5544), 1, + STATE(5556), 1, sym_comment, - ACTIONS(9571), 2, + ACTIONS(9557), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(379), 2, + STATE(500), 2, sym__raw_str, sym__str_double_quotes, - [199097] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(9294), 1, - sym_raw_string_begin, - ACTIONS(9577), 1, - anon_sym_GT2, - STATE(5467), 1, - aux_sym__multiple_types_repeat1, - STATE(5545), 1, - sym_comment, - ACTIONS(9290), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [199122] = 7, - ACTIONS(3), 1, + [197688] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(9260), 1, - sym_raw_string_begin, - ACTIONS(9579), 1, - anon_sym_GT2, - STATE(5467), 1, - aux_sym__multiple_types_repeat1, - STATE(5546), 1, - sym_comment, - ACTIONS(9254), 4, - sym_identifier, + ACTIONS(9563), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [199147] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(9294), 1, + ACTIONS(9567), 1, + aux_sym_path_token1, + ACTIONS(9569), 1, sym_raw_string_begin, - ACTIONS(9581), 1, - anon_sym_GT2, - STATE(5467), 1, - aux_sym__multiple_types_repeat1, - STATE(5547), 1, + STATE(2730), 1, + sym_val_string, + STATE(5557), 1, sym_comment, - ACTIONS(9290), 4, - sym_identifier, - anon_sym_DQUOTE, + ACTIONS(9565), 2, sym__str_single_quotes, sym__str_back_ticks, - [199172] = 7, - ACTIONS(3), 1, + STATE(2715), 2, + sym__raw_str, + sym__str_double_quotes, + [197715] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(9278), 1, - sym_raw_string_begin, - ACTIONS(9583), 1, - anon_sym_GT2, - STATE(5467), 1, - aux_sym__multiple_types_repeat1, - STATE(5548), 1, - sym_comment, - ACTIONS(9274), 4, - sym_identifier, + ACTIONS(9571), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [199197] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(9260), 1, + ACTIONS(9575), 1, + aux_sym_path_token1, + ACTIONS(9577), 1, sym_raw_string_begin, - ACTIONS(9585), 1, - anon_sym_GT2, - STATE(5467), 1, - aux_sym__multiple_types_repeat1, - STATE(5549), 1, + STATE(2959), 1, + sym_val_string, + STATE(5558), 1, sym_comment, - ACTIONS(9254), 4, - sym_identifier, - anon_sym_DQUOTE, + ACTIONS(9573), 2, sym__str_single_quotes, sym__str_back_ticks, - [199222] = 7, - ACTIONS(3), 1, + STATE(2943), 2, + sym__raw_str, + sym__str_double_quotes, + [197742] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(9278), 1, - sym_raw_string_begin, - ACTIONS(9587), 1, - anon_sym_GT2, - STATE(5467), 1, - aux_sym__multiple_types_repeat1, - STATE(5550), 1, - sym_comment, - ACTIONS(9274), 4, - sym_identifier, + ACTIONS(9579), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [199247] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(9284), 1, + ACTIONS(9583), 1, + aux_sym_path_token1, + ACTIONS(9585), 1, sym_raw_string_begin, - ACTIONS(9589), 1, - anon_sym_GT2, - STATE(5467), 1, - aux_sym__multiple_types_repeat1, - STATE(5551), 1, + STATE(149), 1, + sym_val_string, + STATE(5559), 1, sym_comment, - ACTIONS(9280), 4, - sym_identifier, - anon_sym_DQUOTE, + ACTIONS(9581), 2, sym__str_single_quotes, sym__str_back_ticks, - [199272] = 8, - ACTIONS(251), 1, + STATE(146), 2, + sym__raw_str, + sym__str_double_quotes, + [197769] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1286), 1, + ACTIONS(9587), 1, anon_sym_DQUOTE, - ACTIONS(1290), 1, - sym_raw_string_begin, ACTIONS(9591), 1, aux_sym_path_token1, - STATE(1419), 1, + ACTIONS(9593), 1, + sym_raw_string_begin, + STATE(498), 1, sym_val_string, - STATE(5552), 1, + STATE(5560), 1, sym_comment, - ACTIONS(1288), 2, + ACTIONS(9589), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3668), 2, + STATE(508), 2, sym__raw_str, sym__str_double_quotes, - [199299] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5553), 1, - sym_comment, - ACTIONS(1711), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1713), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [199318] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(9284), 1, - sym_raw_string_begin, - ACTIONS(9593), 1, - anon_sym_GT2, - STATE(5467), 1, - aux_sym__multiple_types_repeat1, - STATE(5554), 1, - sym_comment, - ACTIONS(9280), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [199343] = 7, - ACTIONS(3), 1, + [197796] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(9278), 1, - sym_raw_string_begin, ACTIONS(9595), 1, - anon_sym_GT2, - STATE(5467), 1, - aux_sym__multiple_types_repeat1, - STATE(5555), 1, - sym_comment, - ACTIONS(9274), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [199368] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5556), 1, - sym_comment, - ACTIONS(1743), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1745), 5, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [199387] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(992), 1, - anon_sym_DASH2, - STATE(5557), 1, - sym_comment, - ACTIONS(994), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT2, - [199406] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(9294), 1, - sym_raw_string_begin, - ACTIONS(9597), 1, - anon_sym_GT2, - STATE(5467), 1, - aux_sym__multiple_types_repeat1, - STATE(5558), 1, - sym_comment, - ACTIONS(9290), 4, - sym_identifier, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [199431] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(9284), 1, - sym_raw_string_begin, ACTIONS(9599), 1, - anon_sym_GT2, - STATE(5467), 1, - aux_sym__multiple_types_repeat1, - STATE(5559), 1, + aux_sym_path_token1, + ACTIONS(9601), 1, + sym_raw_string_begin, + STATE(428), 1, + sym_val_string, + STATE(5561), 1, sym_comment, - ACTIONS(9280), 4, - sym_identifier, - anon_sym_DQUOTE, + ACTIONS(9597), 2, sym__str_single_quotes, sym__str_back_ticks, - [199456] = 7, - ACTIONS(3), 1, + STATE(388), 2, + sym__raw_str, + sym__str_double_quotes, + [197823] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(9260), 1, + ACTIONS(9603), 1, + anon_sym_DQUOTE, + ACTIONS(9607), 1, + aux_sym_path_token1, + ACTIONS(9609), 1, sym_raw_string_begin, - ACTIONS(9601), 1, - anon_sym_GT2, - STATE(5467), 1, - aux_sym__multiple_types_repeat1, - STATE(5560), 1, + STATE(376), 1, + sym_val_string, + STATE(5562), 1, sym_comment, - ACTIONS(9254), 4, - sym_identifier, - anon_sym_DQUOTE, + ACTIONS(9605), 2, sym__str_single_quotes, sym__str_back_ticks, - [199481] = 4, - ACTIONS(251), 1, + STATE(379), 2, + sym__raw_str, + sym__str_double_quotes, + [197850] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(988), 1, - anon_sym_DASH2, - STATE(5561), 1, + ACTIONS(9236), 1, + aux_sym__immediate_decimal_token2, + STATE(5563), 1, sym_comment, - ACTIONS(990), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT2, - [199500] = 4, + ACTIONS(1701), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1703), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [197871] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5562), 1, + STATE(5564), 1, sym_comment, - ACTIONS(2148), 3, - anon_sym_DASH_DASH, + ACTIONS(1693), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1695), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [197890] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1676), 1, anon_sym_DASH2, - aux_sym_unquoted_token4, - ACTIONS(2150), 5, + STATE(5565), 1, + sym_comment, + ACTIONS(1678), 7, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_RBRACE, - [199519] = 4, - ACTIONS(3), 1, + anon_sym_as, + [197909] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5563), 1, + STATE(5566), 1, sym_comment, - ACTIONS(1835), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(1512), 2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1837), 4, - anon_sym_LPAREN2, + aux_sym_unquoted_token2, + ACTIONS(1514), 6, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [199538] = 7, + sym_filesize_unit, + sym_duration_unit, + [197928] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1917), 1, + anon_sym_DASH2, + ACTIONS(9326), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(4378), 1, + sym_cell_path, + STATE(5567), 1, + sym_comment, + STATE(5650), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1919), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [197955] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9294), 1, + ACTIONS(9260), 1, sym_raw_string_begin, - ACTIONS(9603), 1, + ACTIONS(9611), 1, anon_sym_GT2, - STATE(5467), 1, + STATE(5520), 1, aux_sym__multiple_types_repeat1, - STATE(5564), 1, + STATE(5568), 1, sym_comment, - ACTIONS(9290), 4, + ACTIONS(9256), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [199563] = 7, + [197980] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9260), 1, + ACTIONS(9266), 1, sym_raw_string_begin, - ACTIONS(9605), 1, + ACTIONS(9613), 1, anon_sym_GT2, - STATE(5467), 1, + STATE(5520), 1, aux_sym__multiple_types_repeat1, - STATE(5565), 1, + STATE(5569), 1, sym_comment, - ACTIONS(9254), 4, + ACTIONS(9262), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [199588] = 7, + [198005] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9615), 1, + aux_sym__immediate_decimal_token2, + STATE(5570), 1, + sym_comment, + ACTIONS(1766), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1768), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [198026] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9294), 1, + ACTIONS(9272), 1, sym_raw_string_begin, - ACTIONS(9607), 1, + ACTIONS(9617), 1, anon_sym_GT2, - STATE(5467), 1, + STATE(5520), 1, aux_sym__multiple_types_repeat1, - STATE(5566), 1, + STATE(5571), 1, sym_comment, - ACTIONS(9290), 4, + ACTIONS(9268), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [199613] = 7, + [198051] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9619), 1, + anon_sym_DASH_DASH, + ACTIONS(9622), 1, + anon_sym_DASH2, + STATE(5395), 1, + sym__flag, + ACTIONS(6293), 2, + anon_sym_DOLLAR, + anon_sym_LBRACE, + STATE(5200), 2, + sym_short_flag, + sym_long_flag, + STATE(5572), 2, + sym_comment, + aux_sym_ctrl_do_repeat1, + [198076] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9272), 1, + ACTIONS(9278), 1, sym_raw_string_begin, - ACTIONS(9609), 1, + ACTIONS(9625), 1, anon_sym_GT2, - STATE(5467), 1, + STATE(5520), 1, aux_sym__multiple_types_repeat1, - STATE(5567), 1, + STATE(5573), 1, sym_comment, - ACTIONS(9268), 4, + ACTIONS(9274), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [199638] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9611), 1, - aux_sym__immediate_decimal_token2, - STATE(5568), 1, - sym_comment, - ACTIONS(1680), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1682), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [199659] = 5, + [198101] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9235), 1, - aux_sym__immediate_decimal_token2, - STATE(5569), 1, + STATE(5574), 1, sym_comment, - ACTIONS(1755), 3, + ACTIONS(1766), 4, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1757), 4, + aux_sym__unquoted_in_list_token2, + ACTIONS(1768), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [199680] = 8, - ACTIONS(237), 1, - anon_sym_DQUOTE, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(253), 1, - sym_raw_string_begin, - ACTIONS(9591), 1, - aux_sym_path_token1, - STATE(1419), 1, - sym_val_string, - STATE(5570), 1, - sym_comment, - ACTIONS(239), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1418), 2, - sym__raw_str, - sym__str_double_quotes, - [199707] = 5, - ACTIONS(251), 1, + [198120] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4972), 1, + ACTIONS(5062), 1, anon_sym_DASH2, - ACTIONS(9613), 1, + ACTIONS(9627), 1, anon_sym_EQ2, - STATE(5571), 1, + STATE(5575), 1, sym_comment, - ACTIONS(4970), 6, + ACTIONS(5060), 6, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, - [199728] = 7, + [198141] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9165), 1, + aux_sym__immediate_decimal_token2, + STATE(5576), 1, + sym_comment, + ACTIONS(1701), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1703), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(9260), 1, - sym_raw_string_begin, - ACTIONS(9615), 1, - anon_sym_GT2, - STATE(5467), 1, - aux_sym__multiple_types_repeat1, - STATE(5572), 1, + [198162] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5577), 1, sym_comment, - ACTIONS(9254), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [199753] = 4, - ACTIONS(251), 1, + ACTIONS(1504), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1506), 6, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [198181] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(988), 1, + ACTIONS(5052), 1, anon_sym_DASH2, - STATE(5573), 1, + ACTIONS(9629), 1, + anon_sym_EQ2, + STATE(5578), 1, sym_comment, - ACTIONS(990), 7, - ts_builtin_sym_end, + ACTIONS(5050), 6, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT2, - [199772] = 5, + anon_sym_RBRACE, + [198202] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9617), 1, + ACTIONS(9631), 1, anon_sym_QMARK2, - STATE(5574), 1, + STATE(5579), 1, sym_comment, - ACTIONS(968), 3, + ACTIONS(952), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(966), 4, + ACTIONS(950), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT2, - [199793] = 5, + [198223] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9619), 1, + ACTIONS(9633), 1, anon_sym_QMARK2, - STATE(5575), 1, + STATE(5580), 1, sym_comment, - ACTIONS(962), 3, + ACTIONS(970), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(960), 4, + ACTIONS(968), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT2, - [199814] = 4, + [198244] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5576), 1, + ACTIONS(9635), 1, + aux_sym__immediate_decimal_token2, + STATE(5581), 1, sym_comment, - ACTIONS(1755), 4, - anon_sym_RBRACK, + ACTIONS(1766), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1757), 4, + aux_sym__unquoted_in_record_token2, + ACTIONS(1768), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [199833] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(9278), 1, - sym_raw_string_begin, - ACTIONS(9621), 1, - anon_sym_GT2, - STATE(5467), 1, - aux_sym__multiple_types_repeat1, - STATE(5577), 1, - sym_comment, - ACTIONS(9274), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [199858] = 7, + [198265] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(9284), 1, - sym_raw_string_begin, - ACTIONS(9623), 1, - anon_sym_GT2, - STATE(5467), 1, - aux_sym__multiple_types_repeat1, - STATE(5578), 1, + ACTIONS(2071), 1, + aux_sym_unquoted_token4, + STATE(5582), 1, sym_comment, - ACTIONS(9280), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [199883] = 4, - ACTIONS(251), 1, + ACTIONS(2065), 2, + anon_sym_DASH_DASH, + anon_sym_DASH2, + ACTIONS(2069), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + [198286] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5579), 1, + ACTIONS(9637), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9639), 1, + aux_sym__immediate_decimal_token2, + STATE(5583), 1, sym_comment, - ACTIONS(1542), 2, + ACTIONS(1693), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1544), 6, + ACTIONS(1695), 4, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [199902] = 5, - ACTIONS(251), 1, + [198309] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4986), 1, + ACTIONS(1639), 1, anon_sym_DASH2, - ACTIONS(9625), 1, - anon_sym_EQ2, - STATE(5580), 1, + ACTIONS(7070), 1, + aux_sym_unquoted_token2, + STATE(5584), 1, sym_comment, - ACTIONS(4984), 6, + ACTIONS(1651), 6, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, - [199923] = 7, + [198330] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9278), 1, + ACTIONS(9272), 1, sym_raw_string_begin, - ACTIONS(9627), 1, + ACTIONS(9641), 1, anon_sym_GT2, - STATE(5467), 1, + STATE(5520), 1, aux_sym__multiple_types_repeat1, - STATE(5581), 1, + STATE(5585), 1, sym_comment, - ACTIONS(9274), 4, + ACTIONS(9268), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [199948] = 6, - ACTIONS(251), 1, + [198355] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9629), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9631), 1, - aux_sym__immediate_decimal_token2, - STATE(5582), 1, + STATE(5586), 1, sym_comment, - ACTIONS(1711), 2, + ACTIONS(1618), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1713), 4, + ACTIONS(1620), 6, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [199971] = 8, - ACTIONS(251), 1, + sym_filesize_unit, + sym_duration_unit, + [198374] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1941), 1, + ACTIONS(1931), 1, anon_sym_DASH2, - ACTIONS(9338), 1, + ACTIONS(9326), 1, anon_sym_DOT2, - STATE(4011), 1, + STATE(4025), 1, sym_path, - STATE(4343), 1, + STATE(4392), 1, sym_cell_path, - STATE(5583), 1, + STATE(5587), 1, sym_comment, - STATE(5665), 1, + STATE(5650), 1, aux_sym_cell_path_repeat1, - ACTIONS(1943), 3, + ACTIONS(1933), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [199998] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(9284), 1, + [198401] = 8, + ACTIONS(107), 1, + anon_sym_DQUOTE, + ACTIONS(121), 1, sym_raw_string_begin, - ACTIONS(9633), 1, - anon_sym_GT2, - STATE(5467), 1, - aux_sym__multiple_types_repeat1, - STATE(5584), 1, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9643), 1, + aux_sym_path_token1, + STATE(1727), 1, + sym_val_string, + STATE(5588), 1, sym_comment, - ACTIONS(9280), 4, - sym_identifier, - anon_sym_DQUOTE, + ACTIONS(109), 2, sym__str_single_quotes, sym__str_back_ticks, - [200023] = 4, - ACTIONS(251), 1, + STATE(1605), 2, + sym__raw_str, + sym__str_double_quotes, + [198428] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(996), 1, + ACTIONS(9647), 1, anon_sym_DASH2, - STATE(5585), 1, + STATE(5589), 1, sym_comment, - ACTIONS(998), 7, - ts_builtin_sym_end, + ACTIONS(9645), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [198447] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2063), 1, + aux_sym_unquoted_token4, + STATE(5590), 1, + sym_comment, + ACTIONS(1002), 2, + anon_sym_DASH_DASH, + anon_sym_DASH2, + ACTIONS(998), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + [198468] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2010), 1, + anon_sym_DASH2, + STATE(5591), 1, + sym_comment, + ACTIONS(2012), 7, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_as, - anon_sym_DOT2, - [200042] = 4, + [198487] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5586), 1, + STATE(5592), 1, sym_comment, - ACTIONS(1783), 4, + ACTIONS(1792), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_list_token2, - ACTIONS(1785), 4, + ACTIONS(1794), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [200061] = 7, + [198506] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9294), 1, + ACTIONS(9272), 1, sym_raw_string_begin, - ACTIONS(9635), 1, + ACTIONS(9649), 1, anon_sym_GT2, - STATE(5467), 1, + STATE(5520), 1, aux_sym__multiple_types_repeat1, - STATE(5587), 1, + STATE(5593), 1, sym_comment, - ACTIONS(9290), 4, + ACTIONS(9268), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [200086] = 7, + [198531] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(9260), 1, - sym_raw_string_begin, - ACTIONS(9637), 1, - anon_sym_GT2, - STATE(5467), 1, - aux_sym__multiple_types_repeat1, - STATE(5588), 1, + STATE(5594), 1, + sym_comment, + ACTIONS(1504), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1506), 5, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [198550] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1651), 1, + anon_sym_LBRACE, + ACTIONS(7070), 1, + aux_sym_unquoted_token2, + ACTIONS(9651), 1, + anon_sym_DOT_DOT2, + ACTIONS(9655), 1, + sym_filesize_unit, + ACTIONS(9657), 1, + sym_duration_unit, + STATE(5595), 1, + sym_comment, + ACTIONS(9653), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [198576] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(960), 1, + anon_sym_DASH2, + STATE(5596), 1, sym_comment, - ACTIONS(9254), 4, + ACTIONS(962), 6, sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [200111] = 7, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + sym__table_head_separator, + anon_sym_DOT2, + [198594] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(1816), 1, + anon_sym_RBRACE, + ACTIONS(1818), 1, + anon_sym_LPAREN2, + ACTIONS(1824), 1, sym__entry_separator, - ACTIONS(9294), 1, - sym_raw_string_begin, - ACTIONS(9639), 1, - anon_sym_GT2, - STATE(5467), 1, - aux_sym__multiple_types_repeat1, - STATE(5589), 1, + ACTIONS(1826), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(9659), 1, + anon_sym_DOT_DOT2, + STATE(5597), 1, + sym_comment, + ACTIONS(9661), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [198620] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(964), 1, + anon_sym_DASH2, + STATE(5598), 1, sym_comment, - ACTIONS(9290), 4, + ACTIONS(966), 6, sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [200136] = 7, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + sym__table_head_separator, + anon_sym_DOT2, + [198638] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(1899), 1, sym__entry_separator, - ACTIONS(9266), 1, - sym_raw_string_begin, - ACTIONS(9641), 1, - anon_sym_GT2, - STATE(5467), 1, - aux_sym__multiple_types_repeat1, - STATE(5590), 1, + ACTIONS(9053), 1, + anon_sym_DOT2, + STATE(5380), 1, + aux_sym_cell_path_repeat1, + STATE(5599), 1, sym_comment, - ACTIONS(9262), 4, + STATE(5652), 1, + sym_path, + STATE(7062), 1, + sym_cell_path, + ACTIONS(1897), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [198664] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(946), 1, + anon_sym_DASH2, + STATE(5600), 1, + sym_comment, + ACTIONS(948), 6, sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [200161] = 7, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + sym__table_head_separator, + anon_sym_DOT2, + [198682] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(5822), 1, + anon_sym_DOT2, + STATE(5601), 1, + sym_comment, + STATE(5708), 1, + aux_sym_cell_path_repeat1, + STATE(6267), 1, + sym_path, + STATE(6945), 1, + sym_cell_path, + ACTIONS(1945), 3, + anon_sym_RBRACK, sym__entry_separator, - ACTIONS(9272), 1, - sym_raw_string_begin, - ACTIONS(9643), 1, - anon_sym_GT2, - STATE(5467), 1, - aux_sym__multiple_types_repeat1, - STATE(5591), 1, + sym__table_head_separator, + [198706] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9663), 1, + anon_sym_DASH_DASH, + ACTIONS(9665), 1, + anon_sym_DASH2, + ACTIONS(9667), 1, + anon_sym_LBRACE, + STATE(5602), 1, sym_comment, - ACTIONS(9268), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [200186] = 7, + STATE(6808), 1, + sym_val_record, + STATE(7400), 1, + sym__flag, + STATE(5200), 2, + sym_short_flag, + sym_long_flag, + [198732] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(1855), 1, sym__entry_separator, - ACTIONS(9266), 1, - sym_raw_string_begin, - ACTIONS(9645), 1, - anon_sym_GT2, - STATE(5467), 1, - aux_sym__multiple_types_repeat1, - STATE(5592), 1, + ACTIONS(9053), 1, + anon_sym_DOT2, + STATE(5380), 1, + aux_sym_cell_path_repeat1, + STATE(5603), 1, sym_comment, - ACTIONS(9262), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [200211] = 7, + STATE(5652), 1, + sym_path, + STATE(6990), 1, + sym_cell_path, + ACTIONS(1853), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [198758] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(2071), 1, + aux_sym_unquoted_token4, + STATE(5604), 1, + sym_comment, + ACTIONS(2065), 2, + anon_sym_DASH_DASH, + anon_sym_DASH2, + ACTIONS(2069), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + [198778] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1903), 1, sym__entry_separator, - ACTIONS(9260), 1, - sym_raw_string_begin, - ACTIONS(9647), 1, - anon_sym_GT2, - STATE(5467), 1, - aux_sym__multiple_types_repeat1, - STATE(5593), 1, + ACTIONS(9053), 1, + anon_sym_DOT2, + STATE(5380), 1, + aux_sym_cell_path_repeat1, + STATE(5605), 1, sym_comment, - ACTIONS(9254), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [200236] = 8, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(123), 1, - sym_raw_string_begin, - ACTIONS(251), 1, + STATE(5652), 1, + sym_path, + STATE(7071), 1, + sym_cell_path, + ACTIONS(1901), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [198804] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9649), 1, - aux_sym_path_token1, - STATE(1763), 1, - sym_val_string, - STATE(5594), 1, + ACTIONS(1959), 1, + sym__entry_separator, + ACTIONS(9053), 1, + anon_sym_DOT2, + STATE(5380), 1, + aux_sym_cell_path_repeat1, + STATE(5606), 1, sym_comment, - ACTIONS(111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1732), 2, - sym__raw_str, - sym__str_double_quotes, - [200263] = 4, - ACTIONS(251), 1, + STATE(5652), 1, + sym_path, + STATE(7017), 1, + sym_cell_path, + ACTIONS(1957), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [198830] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1907), 1, + sym__entry_separator, + ACTIONS(9053), 1, + anon_sym_DOT2, + STATE(5380), 1, + aux_sym_cell_path_repeat1, + STATE(5607), 1, + sym_comment, + STATE(5652), 1, + sym_path, + STATE(7093), 1, + sym_cell_path, + ACTIONS(1905), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [198856] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1879), 1, + sym__entry_separator, + ACTIONS(9053), 1, + anon_sym_DOT2, + STATE(5380), 1, + aux_sym_cell_path_repeat1, + STATE(5608), 1, + sym_comment, + STATE(5652), 1, + sym_path, + STATE(6886), 1, + sym_cell_path, + ACTIONS(1877), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [198882] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1971), 1, + sym__entry_separator, + ACTIONS(9053), 1, + anon_sym_DOT2, + STATE(5380), 1, + aux_sym_cell_path_repeat1, + STATE(5609), 1, + sym_comment, + STATE(5652), 1, + sym_path, + STATE(6903), 1, + sym_cell_path, + ACTIONS(1969), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [198908] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9653), 1, + ACTIONS(2441), 1, anon_sym_DASH2, - STATE(5595), 1, + STATE(5610), 1, sym_comment, - ACTIONS(9651), 7, - sym_identifier, + ACTIONS(2443), 6, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_as, + [198926] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6458), 1, + anon_sym_DASH2, + STATE(5611), 1, + sym_comment, + ACTIONS(6456), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + [198944] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2010), 1, + anon_sym_DASH2, + STATE(5612), 1, + sym_comment, + ACTIONS(2012), 6, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_as, + [198962] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9669), 1, + anon_sym_DOT2, + STATE(3881), 1, + sym_cell_path, + STATE(4025), 1, + sym_path, + STATE(4097), 1, + aux_sym_cell_path_repeat1, + STATE(5613), 1, + sym_comment, + ACTIONS(931), 3, + anon_sym_EQ, + sym__newline, + anon_sym_COLON, + [198986] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5052), 1, + anon_sym_DASH2, + ACTIONS(9671), 1, + anon_sym_EQ2, + STATE(5614), 1, + sym_comment, + ACTIONS(5050), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + [199006] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1816), 1, + anon_sym_RBRACK, + ACTIONS(1818), 1, + anon_sym_LPAREN2, + ACTIONS(1824), 1, + sym__entry_separator, + ACTIONS(1826), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(9673), 1, + anon_sym_DOT_DOT2, + STATE(5615), 1, + sym_comment, + ACTIONS(9675), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [199032] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4770), 1, + anon_sym_DOT2, + STATE(1338), 1, + aux_sym_cell_path_repeat1, + STATE(1428), 1, + sym_path, + STATE(5616), 1, + sym_comment, + STATE(6805), 1, + sym_cell_path, + ACTIONS(5893), 3, anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [199056] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1863), 1, + sym__entry_separator, + ACTIONS(9053), 1, + anon_sym_DOT2, + STATE(5380), 1, + aux_sym_cell_path_repeat1, + STATE(5617), 1, + sym_comment, + STATE(5652), 1, + sym_path, + STATE(6929), 1, + sym_cell_path, + ACTIONS(1861), 2, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_RBRACE, + [199082] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5822), 1, + anon_sym_DOT2, + STATE(5618), 1, + sym_comment, + STATE(5708), 1, + aux_sym_cell_path_repeat1, + STATE(6267), 1, + sym_path, + STATE(7081), 1, + sym_cell_path, + ACTIONS(1961), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [199106] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5619), 1, + sym_comment, + ACTIONS(1618), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1620), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [199124] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1895), 1, + sym__entry_separator, + ACTIONS(9053), 1, + anon_sym_DOT2, + STATE(5380), 1, + aux_sym_cell_path_repeat1, + STATE(5620), 1, + sym_comment, + STATE(5652), 1, + sym_path, + STATE(7040), 1, + sym_cell_path, + ACTIONS(1893), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [199150] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1875), 1, + sym__entry_separator, + ACTIONS(9053), 1, + anon_sym_DOT2, + STATE(5380), 1, + aux_sym_cell_path_repeat1, + STATE(5621), 1, + sym_comment, + STATE(5652), 1, + sym_path, + STATE(6989), 1, + sym_cell_path, + ACTIONS(1873), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [199176] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9663), 1, anon_sym_DASH_DASH, - [200282] = 7, + ACTIONS(9665), 1, + anon_sym_DASH2, + ACTIONS(9677), 1, + anon_sym_LBRACE, + STATE(5622), 1, + sym_comment, + STATE(6266), 1, + sym_val_record, + STATE(7437), 1, + sym__flag, + STATE(5200), 2, + sym_short_flag, + sym_long_flag, + [199202] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9679), 1, + anon_sym_DOT, + ACTIONS(9681), 1, + aux_sym__immediate_decimal_token2, + STATE(5623), 1, + sym_comment, + ACTIONS(1701), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1703), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [199224] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(1883), 1, sym__entry_separator, - ACTIONS(9266), 1, - sym_raw_string_begin, - ACTIONS(9655), 1, - anon_sym_GT2, - STATE(5467), 1, - aux_sym__multiple_types_repeat1, - STATE(5596), 1, + ACTIONS(9053), 1, + anon_sym_DOT2, + STATE(5380), 1, + aux_sym_cell_path_repeat1, + STATE(5624), 1, sym_comment, - ACTIONS(9262), 4, + STATE(5652), 1, + sym_path, + STATE(7014), 1, + sym_cell_path, + ACTIONS(1881), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [199250] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9683), 1, + sym__newline, + STATE(5625), 2, + sym_comment, + aux_sym_shebang_repeat1, + ACTIONS(1296), 5, + sym_raw_string_begin, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [200307] = 8, - ACTIONS(251), 1, + [199268] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9657), 1, - anon_sym_DQUOTE, - ACTIONS(9661), 1, - aux_sym_path_token1, - ACTIONS(9663), 1, - sym_raw_string_begin, - STATE(1379), 1, - sym_val_string, - STATE(5597), 1, + STATE(5626), 1, sym_comment, - ACTIONS(9659), 2, + ACTIONS(2497), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2495), 5, + sym_identifier, + anon_sym_GT2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - STATE(1392), 2, - sym__raw_str, - sym__str_double_quotes, - [200334] = 5, - ACTIONS(251), 1, + [199286] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9133), 1, - aux_sym__immediate_decimal_token2, - STATE(5598), 1, + ACTIONS(9686), 1, + sym__newline, + ACTIONS(9689), 1, + sym__space, + STATE(5627), 2, sym_comment, - ACTIONS(1755), 2, + aux_sym_ctrl_do_parenthesized_repeat2, + ACTIONS(3550), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_LBRACE, + [199306] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1639), 1, + anon_sym_RBRACE, + ACTIONS(1651), 1, + sym__entry_separator, + ACTIONS(9692), 1, anon_sym_DOT_DOT2, + ACTIONS(9696), 1, + sym_filesize_unit, + ACTIONS(9698), 1, + sym_duration_unit, + STATE(5628), 1, + sym_comment, + ACTIONS(9694), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [199332] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1457), 1, aux_sym_unquoted_token2, - ACTIONS(1757), 5, + ACTIONS(9700), 1, + anon_sym_DOT_DOT2, + STATE(5629), 1, + sym_comment, + ACTIONS(9702), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1814), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [200355] = 6, - ACTIONS(251), 1, + [199354] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(953), 1, + STATE(5630), 1, + sym_comment, + ACTIONS(2085), 3, + anon_sym_DASH_DASH, anon_sym_DASH2, - ACTIONS(9665), 1, + aux_sym_unquoted_token4, + ACTIONS(2087), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + [199372] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4770), 1, anon_sym_DOT2, - STATE(4011), 1, + STATE(1338), 1, + aux_sym_cell_path_repeat1, + STATE(1428), 1, sym_path, - STATE(5599), 2, + STATE(5631), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(955), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [200377] = 8, - ACTIONS(251), 1, + STATE(6899), 1, + sym_cell_path, + ACTIONS(5939), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [199396] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9668), 1, - anon_sym_DASH_DASH, - ACTIONS(9670), 1, + ACTIONS(2441), 1, anon_sym_DASH2, - ACTIONS(9672), 1, - anon_sym_LBRACE, - STATE(5600), 1, + STATE(5632), 1, sym_comment, - STATE(7199), 1, - sym_val_record, - STATE(7435), 1, - sym__flag, - STATE(5247), 2, - sym_short_flag, - sym_long_flag, - [200403] = 8, + ACTIONS(2443), 6, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_as, + [199414] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3444), 1, + anon_sym_COLON2, + ACTIONS(9704), 1, + anon_sym_alias, + ACTIONS(9706), 1, + anon_sym_const, + ACTIONS(9708), 1, + anon_sym_def, + ACTIONS(9710), 1, + anon_sym_extern, + ACTIONS(9712), 1, + anon_sym_module, + ACTIONS(9714), 1, + anon_sym_use, + STATE(5633), 1, + sym_comment, + [199442] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5634), 1, + sym_comment, + ACTIONS(1701), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1703), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [199460] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1939), 1, + ACTIONS(1919), 1, sym__entry_separator, - ACTIONS(8873), 1, + ACTIONS(9053), 1, anon_sym_DOT2, - STATE(5406), 1, + STATE(5380), 1, aux_sym_cell_path_repeat1, - STATE(5601), 1, + STATE(5635), 1, sym_comment, - STATE(5657), 1, + STATE(5652), 1, sym_path, - STATE(7008), 1, + STATE(7147), 1, sym_cell_path, - ACTIONS(1937), 2, + ACTIONS(1917), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [200429] = 8, + [199486] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9716), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9718), 1, + aux_sym__immediate_decimal_token2, + STATE(5636), 1, + sym_comment, + ACTIONS(1693), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1695), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [199508] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5637), 1, + sym_comment, + ACTIONS(1693), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1695), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [199526] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1947), 1, + ACTIONS(1871), 1, sym__entry_separator, - ACTIONS(8873), 1, + ACTIONS(9053), 1, anon_sym_DOT2, - STATE(5406), 1, + STATE(5380), 1, aux_sym_cell_path_repeat1, - STATE(5602), 1, + STATE(5638), 1, sym_comment, - STATE(5657), 1, + STATE(5652), 1, sym_path, - STATE(7009), 1, + STATE(7047), 1, sym_cell_path, - ACTIONS(1945), 2, + ACTIONS(1869), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [200455] = 8, + [199552] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1951), 1, + ACTIONS(1955), 1, sym__entry_separator, - ACTIONS(8873), 1, + ACTIONS(9053), 1, anon_sym_DOT2, - STATE(5406), 1, + STATE(5380), 1, aux_sym_cell_path_repeat1, - STATE(5603), 1, + STATE(5639), 1, sym_comment, - STATE(5657), 1, + STATE(5652), 1, sym_path, - STATE(7011), 1, + STATE(6987), 1, sym_cell_path, - ACTIONS(1949), 2, + ACTIONS(1953), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [200481] = 8, + [199578] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + ACTIONS(8696), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8698), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(9720), 1, + anon_sym_DOT, + STATE(5640), 1, + sym_comment, + STATE(6179), 1, + sym__immediate_decimal, + ACTIONS(8694), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [199604] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1651), 1, + anon_sym_LBRACE, + ACTIONS(4608), 1, + anon_sym_DOT_DOT2, + ACTIONS(7070), 1, + aux_sym_unquoted_token2, + ACTIONS(9655), 1, + sym_filesize_unit, + ACTIONS(9657), 1, + sym_duration_unit, + STATE(5641), 1, + sym_comment, + ACTIONS(4610), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [199630] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5642), 1, + sym_comment, + ACTIONS(1689), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1691), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [199648] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1955), 1, - sym__entry_separator, - ACTIONS(8873), 1, - anon_sym_DOT2, - STATE(5406), 1, - aux_sym_cell_path_repeat1, - STATE(5604), 1, + ACTIONS(2079), 1, + aux_sym_unquoted_token4, + STATE(5643), 1, sym_comment, - STATE(5657), 1, - sym_path, - STATE(7013), 1, - sym_cell_path, - ACTIONS(1953), 2, - anon_sym_RBRACK, + ACTIONS(2073), 2, + anon_sym_DASH_DASH, + anon_sym_DASH2, + ACTIONS(2077), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + [199668] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5644), 1, + sym_comment, + ACTIONS(1504), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1506), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [199686] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5645), 1, + sym_comment, + ACTIONS(9722), 7, + anon_sym_EQ, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_in2, anon_sym_RBRACE, - [200507] = 8, + [199702] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1676), 1, + anon_sym_DASH2, + STATE(5646), 1, + sym_comment, + ACTIONS(1678), 6, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_as, + [199720] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1959), 1, + ACTIONS(1911), 1, sym__entry_separator, - ACTIONS(8873), 1, + ACTIONS(9053), 1, anon_sym_DOT2, - STATE(5406), 1, + STATE(5380), 1, aux_sym_cell_path_repeat1, - STATE(5605), 1, + STATE(5647), 1, sym_comment, - STATE(5657), 1, + STATE(5652), 1, sym_path, - STATE(7017), 1, + STATE(7266), 1, sym_cell_path, - ACTIONS(1957), 2, + ACTIONS(1909), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [200533] = 8, + [199746] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5648), 1, + sym_comment, + ACTIONS(1792), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1794), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [199764] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1963), 1, + ACTIONS(1933), 1, sym__entry_separator, - ACTIONS(8873), 1, + ACTIONS(9053), 1, anon_sym_DOT2, - STATE(5406), 1, + STATE(5380), 1, aux_sym_cell_path_repeat1, - STATE(5606), 1, + STATE(5649), 1, sym_comment, - STATE(5657), 1, + STATE(5652), 1, sym_path, - STATE(7022), 1, + STATE(7272), 1, sym_cell_path, - ACTIONS(1961), 2, + ACTIONS(1931), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [200559] = 8, - ACTIONS(3), 1, + [199790] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(1802), 1, - anon_sym_RBRACE, - ACTIONS(1804), 1, - anon_sym_LPAREN2, - ACTIONS(1810), 1, - sym__entry_separator, - ACTIONS(9674), 1, - anon_sym_DOT_DOT2, - STATE(5607), 1, + ACTIONS(942), 1, + anon_sym_DASH2, + ACTIONS(9326), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(5650), 1, sym_comment, - ACTIONS(9676), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [200585] = 4, - ACTIONS(3), 1, + STATE(5651), 1, + aux_sym_cell_path_repeat1, + ACTIONS(944), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [199814] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5608), 1, + ACTIONS(935), 1, + anon_sym_DASH2, + ACTIONS(9724), 1, + anon_sym_DOT2, + STATE(4025), 1, + sym_path, + STATE(5651), 2, sym_comment, - ACTIONS(2514), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2512), 5, + aux_sym_cell_path_repeat1, + ACTIONS(937), 3, sym_identifier, - anon_sym_GT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [200603] = 8, - ACTIONS(251), 1, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [199836] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1650), 1, - anon_sym_LBRACE, - ACTIONS(4622), 1, - anon_sym_DOT_DOT2, - ACTIONS(7078), 1, - aux_sym_unquoted_token2, - ACTIONS(9678), 1, - sym_filesize_unit, - ACTIONS(9680), 1, - sym_duration_unit, - STATE(5609), 1, + STATE(5652), 1, sym_comment, - ACTIONS(4624), 2, + ACTIONS(984), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [200629] = 4, - ACTIONS(251), 1, + sym__entry_separator, + ACTIONS(982), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [199854] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2015), 1, - anon_sym_DASH2, - STATE(5610), 1, + STATE(5653), 1, + sym_comment, + ACTIONS(9727), 7, + anon_sym_EQ, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_in2, + anon_sym_RBRACE, + [199870] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2079), 1, + aux_sym_unquoted_token4, + STATE(5654), 1, sym_comment, - ACTIONS(2017), 6, + ACTIONS(2081), 2, + anon_sym_DASH_DASH, + anon_sym_DASH2, + ACTIONS(2083), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_as, - [200647] = 4, - ACTIONS(251), 1, + [199890] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(972), 1, + ACTIONS(5062), 1, anon_sym_DASH2, - STATE(5611), 1, + ACTIONS(9729), 1, + anon_sym_EQ2, + STATE(5655), 1, sym_comment, - ACTIONS(974), 6, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(5060), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DASH_DASH, - anon_sym_QMARK2, - sym__table_head_separator, - anon_sym_DOT2, - [200665] = 4, - ACTIONS(251), 1, + [199910] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3442), 1, + anon_sym_COLON2, + ACTIONS(9704), 1, + anon_sym_alias, + ACTIONS(9706), 1, + anon_sym_const, + ACTIONS(9708), 1, + anon_sym_def, + ACTIONS(9710), 1, + anon_sym_extern, + ACTIONS(9712), 1, + anon_sym_module, + ACTIONS(9714), 1, + anon_sym_use, + STATE(5656), 1, + sym_comment, + [199938] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(976), 1, + ACTIONS(2461), 1, anon_sym_DASH2, - STATE(5612), 1, + STATE(5657), 1, sym_comment, - ACTIONS(978), 6, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(2463), 6, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DASH_DASH, - anon_sym_QMARK2, - sym__table_head_separator, - anon_sym_DOT2, - [200683] = 8, + anon_sym_as, + [199956] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1802), 1, + ACTIONS(1835), 1, + sym__entry_separator, + ACTIONS(9053), 1, + anon_sym_DOT2, + STATE(5380), 1, + aux_sym_cell_path_repeat1, + STATE(5652), 1, + sym_path, + STATE(5658), 1, + sym_comment, + STATE(6905), 1, + sym_cell_path, + ACTIONS(1833), 2, anon_sym_RBRACK, - ACTIONS(1804), 1, - anon_sym_LPAREN2, - ACTIONS(1810), 1, + anon_sym_RBRACE, + [199982] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9682), 1, + ACTIONS(9260), 1, + sym_raw_string_begin, + STATE(5520), 1, + aux_sym__multiple_types_repeat1, + STATE(5659), 1, + sym_comment, + ACTIONS(9256), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [200004] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1826), 1, + aux_sym_unquoted_token2, + ACTIONS(9731), 1, anon_sym_DOT_DOT2, - STATE(5613), 1, + STATE(5660), 1, sym_comment, - ACTIONS(9684), 2, + ACTIONS(9733), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [200709] = 5, - ACTIONS(3), 1, + ACTIONS(1824), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [200026] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2134), 1, - aux_sym_unquoted_token4, - STATE(5614), 1, - sym_comment, - ACTIONS(2128), 2, - anon_sym_DASH_DASH, + ACTIONS(1639), 1, anon_sym_DASH2, - ACTIONS(2132), 4, + ACTIONS(7118), 1, + aux_sym_unquoted_token2, + STATE(5661), 1, + sym_comment, + ACTIONS(1651), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - [200729] = 4, + anon_sym_DASH_DASH, + [200046] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5615), 1, + STATE(5662), 1, sym_comment, - ACTIONS(1711), 3, + ACTIONS(1701), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_record_token2, - ACTIONS(1713), 4, + ACTIONS(1703), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [200747] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5616), 1, - sym_comment, - ACTIONS(1755), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1757), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [200765] = 4, - ACTIONS(251), 1, + [200064] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(984), 1, - anon_sym_DASH2, - STATE(5617), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(9272), 1, + sym_raw_string_begin, + STATE(5520), 1, + aux_sym__multiple_types_repeat1, + STATE(5663), 1, sym_comment, - ACTIONS(986), 6, + ACTIONS(9268), 4, sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - sym__table_head_separator, - anon_sym_DOT2, - [200783] = 8, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [200086] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1967), 1, + ACTIONS(1887), 1, sym__entry_separator, - ACTIONS(8873), 1, + ACTIONS(9053), 1, anon_sym_DOT2, - STATE(5406), 1, + STATE(5380), 1, aux_sym_cell_path_repeat1, - STATE(5618), 1, - sym_comment, - STATE(5657), 1, + STATE(5652), 1, sym_path, - STATE(7051), 1, + STATE(5664), 1, + sym_comment, + STATE(7056), 1, sym_cell_path, - ACTIONS(1965), 2, + ACTIONS(1885), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [200809] = 8, + [200112] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1971), 1, + ACTIONS(1963), 1, sym__entry_separator, - ACTIONS(8873), 1, + ACTIONS(9053), 1, anon_sym_DOT2, - STATE(5406), 1, + STATE(5380), 1, aux_sym_cell_path_repeat1, - STATE(5619), 1, - sym_comment, - STATE(5657), 1, + STATE(5652), 1, sym_path, - STATE(7052), 1, + STATE(5665), 1, + sym_comment, + STATE(6809), 1, sym_cell_path, - ACTIONS(1969), 2, + ACTIONS(1961), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [200835] = 8, + [200138] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1981), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(8873), 1, - anon_sym_DOT2, - STATE(5406), 1, - aux_sym_cell_path_repeat1, - STATE(5620), 1, + ACTIONS(9278), 1, + sym_raw_string_begin, + STATE(5520), 1, + aux_sym__multiple_types_repeat1, + STATE(5666), 1, sym_comment, - STATE(5657), 1, - sym_path, - STATE(7053), 1, - sym_cell_path, - ACTIONS(1979), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [200861] = 8, + ACTIONS(9274), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [200160] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1907), 1, - sym__entry_separator, - ACTIONS(8873), 1, - anon_sym_DOT2, - STATE(5406), 1, - aux_sym_cell_path_repeat1, - STATE(5621), 1, + STATE(5667), 1, sym_comment, - STATE(5657), 1, - sym_path, - STATE(7055), 1, - sym_cell_path, - ACTIONS(1905), 2, - anon_sym_RBRACK, + ACTIONS(1693), 3, anon_sym_RBRACE, - [200887] = 4, - ACTIONS(251), 1, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1695), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [200178] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5622), 1, + ACTIONS(9354), 1, + aux_sym__immediate_decimal_token2, + STATE(5668), 1, sym_comment, - ACTIONS(1711), 2, + ACTIONS(1701), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1713), 5, + ACTIONS(1703), 4, anon_sym_PIPE, - anon_sym_if, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [200905] = 8, + [200198] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1985), 1, + ACTIONS(1841), 1, sym__entry_separator, - ACTIONS(8873), 1, + ACTIONS(9053), 1, anon_sym_DOT2, - STATE(5406), 1, + STATE(5380), 1, aux_sym_cell_path_repeat1, - STATE(5623), 1, - sym_comment, - STATE(5657), 1, + STATE(5652), 1, sym_path, - STATE(7216), 1, + STATE(5669), 1, + sym_comment, + STATE(6959), 1, sym_cell_path, - ACTIONS(1983), 2, + ACTIONS(1839), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [200931] = 7, - ACTIONS(251), 1, + [200224] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2477), 1, + anon_sym_DASH2, + STATE(5670), 1, + sym_comment, + ACTIONS(2479), 6, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_as, + [200242] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4912), 1, + ACTIONS(1849), 1, + sym__entry_separator, + ACTIONS(9053), 1, anon_sym_DOT2, - STATE(1386), 1, + STATE(5380), 1, aux_sym_cell_path_repeat1, - STATE(1532), 1, + STATE(5652), 1, sym_path, - STATE(5624), 1, + STATE(5671), 1, sym_comment, - STATE(6936), 1, + STATE(6976), 1, sym_cell_path, - ACTIONS(5960), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [200955] = 6, - ACTIONS(251), 1, + ACTIONS(1847), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [200268] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1822), 1, - aux_sym_unquoted_token2, - ACTIONS(9686), 1, - anon_sym_DOT_DOT2, - STATE(5625), 1, + ACTIONS(1891), 1, + sym__entry_separator, + ACTIONS(9053), 1, + anon_sym_DOT2, + STATE(5380), 1, + aux_sym_cell_path_repeat1, + STATE(5652), 1, + sym_path, + STATE(5672), 1, sym_comment, - ACTIONS(9688), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1820), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [200977] = 6, + STATE(7059), 1, + sym_cell_path, + ACTIONS(1889), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [200294] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, ACTIONS(9266), 1, sym_raw_string_begin, - STATE(5467), 1, + STATE(5520), 1, aux_sym__multiple_types_repeat1, - STATE(5626), 1, + STATE(5673), 1, sym_comment, ACTIONS(9262), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [200999] = 6, + [200316] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + STATE(5674), 1, + sym_comment, + ACTIONS(1766), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1768), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(9272), 1, + [200334] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(9252), 1, sym_raw_string_begin, - STATE(5467), 1, + STATE(5520), 1, aux_sym__multiple_types_repeat1, - STATE(5627), 1, + STATE(5675), 1, sym_comment, - ACTIONS(9268), 4, + ACTIONS(9248), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [201021] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4912), 1, - anon_sym_DOT2, - STATE(1386), 1, - aux_sym_cell_path_repeat1, - STATE(1532), 1, - sym_path, - STATE(5628), 1, - sym_comment, - STATE(7281), 1, - sym_cell_path, - ACTIONS(5817), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [201045] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9690), 1, - anon_sym_DOT2, - STATE(3871), 1, - sym_cell_path, - STATE(4011), 1, - sym_path, - STATE(4123), 1, - aux_sym_cell_path_repeat1, - STATE(5629), 1, - sym_comment, - ACTIONS(945), 3, - anon_sym_EQ, - sym__newline, - anon_sym_COLON, - [201069] = 4, - ACTIONS(251), 1, + [200356] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5630), 1, - sym_comment, - ACTIONS(1550), 2, + ACTIONS(1457), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(1806), 1, + anon_sym_RBRACE, + ACTIONS(1808), 1, + anon_sym_LPAREN2, + ACTIONS(1814), 1, + sym__entry_separator, + ACTIONS(9735), 1, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1552), 5, - anon_sym_LBRACE, + STATE(5676), 1, + sym_comment, + ACTIONS(9737), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [201087] = 4, + [200382] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5631), 1, + STATE(5677), 1, sym_comment, - ACTIONS(1783), 3, + ACTIONS(1792), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_record_token2, - ACTIONS(1785), 4, + ACTIONS(1794), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [201105] = 4, - ACTIONS(251), 1, + [200400] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(980), 1, - anon_sym_DASH2, - STATE(5632), 1, + ACTIONS(9739), 1, + anon_sym_LBRACK2, + STATE(5678), 1, sym_comment, - ACTIONS(982), 6, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(2292), 2, + anon_sym_LBRACK, + anon_sym_DASH2, + ACTIONS(2296), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_DASH_DASH, - anon_sym_QMARK2, - sym__table_head_separator, - anon_sym_DOT2, - [201123] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5806), 1, - anon_sym_DOT2, - STATE(5633), 1, - sym_comment, - STATE(5922), 1, - aux_sym_cell_path_repeat1, - STATE(6614), 1, - sym_path, - STATE(7141), 1, - sym_cell_path, - ACTIONS(1855), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [201147] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1638), 1, - anon_sym_RBRACE, - ACTIONS(1650), 1, - sym__entry_separator, - ACTIONS(9692), 1, - anon_sym_DOT_DOT2, - ACTIONS(9696), 1, - sym_filesize_unit, - ACTIONS(9698), 1, - sym_duration_unit, - STATE(5634), 1, - sym_comment, - ACTIONS(9694), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [201173] = 5, + [200420] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2142), 1, + ACTIONS(2063), 1, aux_sym_unquoted_token4, - STATE(5635), 1, + STATE(5679), 1, sym_comment, - ACTIONS(2136), 2, + ACTIONS(1002), 2, anon_sym_DASH_DASH, anon_sym_DASH2, - ACTIONS(2140), 4, + ACTIONS(998), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - [201193] = 4, - ACTIONS(251), 1, + [200440] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2366), 1, - anon_sym_DASH2, - STATE(5636), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(9246), 1, + sym_raw_string_begin, + STATE(5520), 1, + aux_sym__multiple_types_repeat1, + STATE(5680), 1, sym_comment, - ACTIONS(2368), 6, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_as, - [201211] = 4, - ACTIONS(251), 1, + ACTIONS(9240), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [200462] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2366), 1, + ACTIONS(986), 1, anon_sym_DASH2, - STATE(5637), 1, + STATE(5681), 1, sym_comment, - ACTIONS(2368), 6, + ACTIONS(988), 6, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, anon_sym_as, - [201229] = 6, - ACTIONS(251), 1, + [200480] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9700), 1, - anon_sym_DOT, - ACTIONS(9702), 1, - aux_sym__immediate_decimal_token2, - STATE(5638), 1, + STATE(5682), 1, sym_comment, - ACTIONS(1755), 2, + ACTIONS(1512), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1757), 3, + ACTIONS(1514), 5, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [201251] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2142), 1, - aux_sym_unquoted_token4, - STATE(5639), 1, - sym_comment, - ACTIONS(2144), 2, - anon_sym_DASH_DASH, - anon_sym_DASH2, - ACTIONS(2146), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - [201271] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1650), 1, - anon_sym_LBRACE, - ACTIONS(7078), 1, - aux_sym_unquoted_token2, - ACTIONS(9678), 1, sym_filesize_unit, - ACTIONS(9680), 1, sym_duration_unit, - ACTIONS(9704), 1, - anon_sym_DOT_DOT2, - STATE(5640), 1, - sym_comment, - ACTIONS(9706), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [201297] = 9, - ACTIONS(251), 1, + [200498] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3420), 1, - anon_sym_COLON2, - ACTIONS(9708), 1, - anon_sym_alias, - ACTIONS(9710), 1, - anon_sym_const, - ACTIONS(9712), 1, - anon_sym_def, - ACTIONS(9714), 1, - anon_sym_extern, - ACTIONS(9716), 1, - anon_sym_module, - ACTIONS(9718), 1, - anon_sym_use, - STATE(5641), 1, + ACTIONS(9741), 1, + aux_sym__immediate_decimal_token2, + STATE(5683), 1, sym_comment, - [201325] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym_unquoted_token2, - ACTIONS(9720), 1, + ACTIONS(1766), 2, anon_sym_DOT_DOT2, - STATE(5642), 1, - sym_comment, - ACTIONS(9722), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1810), 3, + aux_sym_unquoted_token2, + ACTIONS(1768), 4, anon_sym_PIPE, - anon_sym_if, anon_sym_EQ_GT, - [201347] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [200518] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(5643), 1, + ACTIONS(1947), 1, + sym__entry_separator, + ACTIONS(9053), 1, + anon_sym_DOT2, + STATE(5380), 1, + aux_sym_cell_path_repeat1, + STATE(5652), 1, + sym_path, + STATE(5684), 1, sym_comment, - ACTIONS(1835), 3, + STATE(7204), 1, + sym_cell_path, + ACTIONS(1945), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1837), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [201365] = 8, + [200544] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1897), 1, + ACTIONS(1941), 1, sym__entry_separator, - ACTIONS(8873), 1, + ACTIONS(9053), 1, anon_sym_DOT2, - STATE(5406), 1, + STATE(5380), 1, aux_sym_cell_path_repeat1, - STATE(5644), 1, - sym_comment, - STATE(5657), 1, + STATE(5652), 1, sym_path, - STATE(6732), 1, + STATE(5685), 1, + sym_comment, + STATE(7196), 1, sym_cell_path, - ACTIONS(1895), 2, + ACTIONS(1939), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [201391] = 5, - ACTIONS(251), 1, + [200570] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9724), 1, - anon_sym_LBRACK2, - STATE(5645), 1, - sym_comment, - ACTIONS(2230), 2, - anon_sym_LBRACK, + ACTIONS(2338), 1, anon_sym_DASH2, - ACTIONS(2234), 4, + STATE(5686), 1, + sym_comment, + ACTIONS(2340), 6, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DASH_DASH, - [201411] = 8, + anon_sym_as, + [200588] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1943), 1, - sym__entry_separator, - ACTIONS(8873), 1, - anon_sym_DOT2, - STATE(5406), 1, - aux_sym_cell_path_repeat1, - STATE(5646), 1, + STATE(5687), 1, sym_comment, - STATE(5657), 1, - sym_path, - STATE(6893), 1, - sym_cell_path, - ACTIONS(1941), 2, + ACTIONS(980), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(978), 4, anon_sym_RBRACK, anon_sym_RBRACE, - [201437] = 8, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [200606] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1923), 1, - sym__entry_separator, - ACTIONS(8873), 1, - anon_sym_DOT2, - STATE(5406), 1, - aux_sym_cell_path_repeat1, - STATE(5647), 1, + STATE(5688), 1, sym_comment, - STATE(5657), 1, - sym_path, - STATE(7123), 1, - sym_cell_path, - ACTIONS(1921), 2, + ACTIONS(976), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(974), 4, anon_sym_RBRACK, anon_sym_RBRACE, - [201463] = 4, - ACTIONS(251), 1, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [200624] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5648), 1, + ACTIONS(956), 1, + anon_sym_DASH2, + STATE(5689), 1, + sym_comment, + ACTIONS(958), 6, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + sym__table_head_separator, + anon_sym_DOT2, + [200642] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2344), 1, + anon_sym_DASH2, + STATE(5690), 1, sym_comment, - ACTIONS(1542), 2, + ACTIONS(2346), 6, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_as, + [200660] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1457), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1806), 1, + anon_sym_RBRACK, + ACTIONS(1808), 1, + anon_sym_LPAREN2, + ACTIONS(1814), 1, + sym__entry_separator, + ACTIONS(9743), 1, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1544), 5, - anon_sym_LBRACE, + STATE(5691), 1, + sym_comment, + ACTIONS(9745), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [201481] = 8, + [200686] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1857), 1, + ACTIONS(1951), 1, sym__entry_separator, - ACTIONS(8873), 1, + ACTIONS(9053), 1, anon_sym_DOT2, - STATE(5406), 1, + STATE(5380), 1, aux_sym_cell_path_repeat1, - STATE(5649), 1, - sym_comment, - STATE(5657), 1, + STATE(5652), 1, sym_path, - STATE(6838), 1, + STATE(5692), 1, + sym_comment, + STATE(6953), 1, sym_cell_path, - ACTIONS(1855), 2, + ACTIONS(1949), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [201507] = 6, - ACTIONS(251), 1, + [200712] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9726), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9728), 1, - aux_sym__immediate_decimal_token2, - STATE(5650), 1, + STATE(5693), 1, sym_comment, - ACTIONS(1711), 2, + ACTIONS(1766), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1713), 3, - anon_sym_LBRACE, + ACTIONS(1768), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [201529] = 4, + [200730] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(5651), 1, + ACTIONS(9747), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9749), 1, + aux_sym__immediate_decimal_token2, + STATE(5694), 1, sym_comment, - ACTIONS(1755), 3, + ACTIONS(1693), 2, anon_sym_RBRACE, - anon_sym_DOT_DOT2, aux_sym__unquoted_in_record_token2, - ACTIONS(1757), 4, + ACTIONS(1695), 2, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, sym__entry_separator, - [201547] = 4, - ACTIONS(251), 1, + [200751] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2374), 1, + ACTIONS(1905), 1, anon_sym_DASH2, - STATE(5652), 1, + STATE(5695), 1, sym_comment, - ACTIONS(2376), 6, + ACTIONS(1907), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - anon_sym_as, - [201565] = 9, - ACTIONS(251), 1, + [200768] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2421), 1, + anon_sym_DASH2, + STATE(5696), 1, + sym_comment, + ACTIONS(2423), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + [200785] = 8, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(3442), 1, anon_sym_COLON2, - ACTIONS(9708), 1, + ACTIONS(8788), 1, + sym_identifier, + ACTIONS(9751), 1, + anon_sym_DOLLAR, + STATE(5653), 1, + sym_val_variable, + STATE(5697), 1, + sym_comment, + STATE(6018), 1, + sym__variable_name, + STATE(6183), 1, + sym__assignment_pattern, + [200810] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6313), 1, + anon_sym_LBRACE, + STATE(5698), 1, + sym_comment, + STATE(6589), 1, + sym_block, + ACTIONS(9753), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [200829] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6313), 1, + anon_sym_LBRACE, + STATE(5699), 1, + sym_comment, + STATE(6590), 1, + sym_block, + ACTIONS(9753), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [200848] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2437), 1, + anon_sym_DASH2, + STATE(5700), 1, + sym_comment, + ACTIONS(2439), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + [200865] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9755), 1, + anon_sym_DOT, + ACTIONS(9757), 1, + aux_sym__immediate_decimal_token2, + STATE(5701), 1, + sym_comment, + ACTIONS(1701), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1703), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [200886] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2445), 1, + anon_sym_DASH2, + STATE(5702), 1, + sym_comment, + ACTIONS(2447), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + [200903] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9759), 1, anon_sym_alias, - ACTIONS(9710), 1, + ACTIONS(9761), 1, anon_sym_const, - ACTIONS(9712), 1, + ACTIONS(9763), 1, anon_sym_def, - ACTIONS(9714), 1, + ACTIONS(9765), 1, anon_sym_extern, - ACTIONS(9716), 1, + ACTIONS(9767), 1, anon_sym_module, - ACTIONS(9718), 1, + ACTIONS(9769), 1, anon_sym_use, - STATE(5653), 1, + STATE(5703), 1, sym_comment, - [201593] = 8, + [200928] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1911), 1, - sym__entry_separator, + ACTIONS(7118), 1, + aux_sym_unquoted_token3, + ACTIONS(8694), 1, + aux_sym__immediate_decimal_token1, ACTIONS(8873), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8875), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8877), 1, + aux_sym__immediate_decimal_token5, + STATE(5704), 1, + sym_comment, + STATE(6333), 1, + sym__immediate_decimal, + [200953] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7118), 1, + aux_sym_unquoted_token3, + ACTIONS(8770), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8881), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8883), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8885), 1, + aux_sym__immediate_decimal_token5, + STATE(5705), 1, + sym_comment, + STATE(7855), 1, + sym__immediate_decimal, + [200978] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4608), 1, + anon_sym_DOT_DOT2, + ACTIONS(7118), 1, + aux_sym_unquoted_token2, + STATE(5706), 1, + sym_comment, + ACTIONS(4610), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(9771), 2, + sym_filesize_unit, + sym_duration_unit, + [200999] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5647), 1, + anon_sym_DASH2, + STATE(5707), 1, + sym_comment, + ACTIONS(5649), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [201016] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5822), 1, anon_sym_DOT2, - STATE(5406), 1, - aux_sym_cell_path_repeat1, - STATE(5654), 1, + STATE(5708), 1, sym_comment, - STATE(5657), 1, + STATE(5731), 1, + aux_sym_cell_path_repeat1, + STATE(6267), 1, sym_path, - STATE(6805), 1, - sym_cell_path, - ACTIONS(1909), 2, + ACTIONS(942), 3, anon_sym_RBRACK, - anon_sym_RBRACE, - [201619] = 8, + sym__entry_separator, + sym__table_head_separator, + [201037] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1915), 1, - sym__entry_separator, + ACTIONS(9773), 1, + anon_sym_LPAREN, + ACTIONS(9777), 1, + anon_sym_DQUOTE2, + STATE(5709), 1, + sym_comment, + STATE(5715), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6292), 1, + sym_expr_interpolated, + ACTIONS(9775), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [201060] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9773), 1, + anon_sym_LPAREN, + ACTIONS(9779), 1, + anon_sym_DQUOTE2, + STATE(5710), 1, + sym_comment, + STATE(5734), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6292), 1, + sym_expr_interpolated, + ACTIONS(9775), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [201083] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7070), 1, + aux_sym_unquoted_token3, + ACTIONS(8694), 1, + aux_sym__immediate_decimal_token1, ACTIONS(8873), 1, - anon_sym_DOT2, - STATE(5406), 1, - aux_sym_cell_path_repeat1, - STATE(5655), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8875), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8877), 1, + aux_sym__immediate_decimal_token5, + STATE(5711), 1, + sym_comment, + STATE(6333), 1, + sym__immediate_decimal, + [201108] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7070), 1, + aux_sym_unquoted_token3, + ACTIONS(8770), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8881), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8883), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8885), 1, + aux_sym__immediate_decimal_token5, + STATE(5712), 1, sym_comment, - STATE(5657), 1, - sym_path, - STATE(6829), 1, - sym_cell_path, - ACTIONS(1913), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [201645] = 4, - ACTIONS(251), 1, + STATE(7855), 1, + sym__immediate_decimal, + [201133] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5656), 1, - sym_comment, - ACTIONS(1783), 2, + ACTIONS(4608), 1, anon_sym_DOT_DOT2, + ACTIONS(7070), 1, + aux_sym_unquoted_token2, + STATE(5713), 1, + sym_comment, + ACTIONS(4610), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(9771), 2, + sym_filesize_unit, + sym_duration_unit, + [201154] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1701), 1, aux_sym_unquoted_token2, - ACTIONS(1785), 5, + ACTIONS(9781), 1, + anon_sym_DOT, + ACTIONS(9783), 1, + aux_sym__immediate_decimal_token2, + STATE(5714), 1, + sym_comment, + ACTIONS(1703), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [201663] = 4, + [201175] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(5657), 1, + ACTIONS(9773), 1, + anon_sym_LPAREN, + ACTIONS(9785), 1, + anon_sym_DQUOTE2, + STATE(5715), 1, sym_comment, - ACTIONS(998), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(996), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [201681] = 5, - ACTIONS(251), 1, + STATE(5807), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6292), 1, + sym_expr_interpolated, + ACTIONS(9775), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [201198] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4986), 1, - anon_sym_DASH2, - ACTIONS(9730), 1, - anon_sym_EQ2, - STATE(5658), 1, - sym_comment, - ACTIONS(4984), 5, - ts_builtin_sym_end, + ACTIONS(3842), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(9787), 1, anon_sym_LBRACK, - anon_sym_DASH_DASH, - [201701] = 8, + ACTIONS(9789), 1, + anon_sym_RBRACK, + STATE(5716), 1, + sym_comment, + STATE(6090), 1, + aux_sym_shebang_repeat1, + STATE(7002), 1, + sym_val_list, + STATE(7142), 1, + aux_sym_val_table_repeat1, + [201223] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1847), 1, - sym__entry_separator, - ACTIONS(8873), 1, - anon_sym_DOT2, - STATE(5406), 1, - aux_sym_cell_path_repeat1, - STATE(5657), 1, - sym_path, - STATE(5659), 1, + ACTIONS(9773), 1, + anon_sym_LPAREN, + ACTIONS(9791), 1, + anon_sym_DQUOTE2, + STATE(5717), 1, sym_comment, - STATE(7073), 1, - sym_cell_path, - ACTIONS(1845), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [201727] = 6, + STATE(5761), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6292), 1, + sym_expr_interpolated, + ACTIONS(9775), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [201246] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(9278), 1, - sym_raw_string_begin, - STATE(5467), 1, - aux_sym__multiple_types_repeat1, - STATE(5660), 1, + ACTIONS(9773), 1, + anon_sym_LPAREN, + ACTIONS(9793), 1, + anon_sym_DQUOTE2, + STATE(5718), 1, sym_comment, - ACTIONS(9274), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [201749] = 6, - ACTIONS(3), 1, + STATE(5807), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6292), 1, + sym_expr_interpolated, + ACTIONS(9775), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [201269] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(9284), 1, - sym_raw_string_begin, - STATE(5467), 1, - aux_sym__multiple_types_repeat1, - STATE(5661), 1, + ACTIONS(597), 1, + anon_sym_RPAREN, + ACTIONS(9795), 1, + sym__newline, + ACTIONS(9797), 1, + anon_sym_SEMI, + STATE(304), 1, + aux_sym__parenthesized_body_repeat1, + STATE(5719), 1, sym_comment, - ACTIONS(9280), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [201771] = 5, - ACTIONS(251), 1, + STATE(6265), 1, + aux_sym__block_body_repeat1, + STATE(6958), 1, + aux_sym_shebang_repeat1, + [201294] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(9787), 1, + anon_sym_LBRACK, + ACTIONS(9799), 1, + anon_sym_RBRACK, + STATE(5720), 1, + sym_comment, + STATE(6091), 1, + aux_sym_shebang_repeat1, + STATE(7012), 1, + sym_val_list, + STATE(7144), 1, + aux_sym_val_table_repeat1, + [201319] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4972), 1, + ACTIONS(2322), 1, anon_sym_DASH2, - ACTIONS(9732), 1, - anon_sym_EQ2, - STATE(5662), 1, + STATE(5721), 1, sym_comment, - ACTIONS(4970), 5, + ACTIONS(2324), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [201791] = 4, - ACTIONS(3), 1, + [201336] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5663), 1, - sym_comment, - ACTIONS(2148), 3, - anon_sym_DASH_DASH, + ACTIONS(2326), 1, anon_sym_DASH2, - aux_sym_unquoted_token4, - ACTIONS(2150), 4, + STATE(5722), 1, + sym_comment, + ACTIONS(2328), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - [201809] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1877), 1, - sym__entry_separator, - ACTIONS(8873), 1, - anon_sym_DOT2, - STATE(5406), 1, - aux_sym_cell_path_repeat1, - STATE(5657), 1, - sym_path, - STATE(5664), 1, - sym_comment, - STATE(7061), 1, - sym_cell_path, - ACTIONS(1875), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [201835] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(949), 1, - anon_sym_DASH2, - ACTIONS(9338), 1, - anon_sym_DOT2, - STATE(4011), 1, - sym_path, - STATE(5599), 1, - aux_sym_cell_path_repeat1, - STATE(5665), 1, - sym_comment, - ACTIONS(951), 3, - sym_identifier, - anon_sym_DOLLAR, anon_sym_DASH_DASH, - [201859] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5666), 1, - sym_comment, - ACTIONS(9734), 7, - anon_sym_EQ, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_in2, - anon_sym_RBRACE, - [201875] = 4, - ACTIONS(251), 1, + [201353] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6360), 1, + ACTIONS(2334), 1, anon_sym_DASH2, - STATE(5667), 1, + STATE(5723), 1, sym_comment, - ACTIONS(6358), 6, + ACTIONS(2336), 5, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_RBRACE, - [201893] = 8, - ACTIONS(251), 1, + [201370] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9668), 1, - anon_sym_DASH_DASH, - ACTIONS(9670), 1, - anon_sym_DASH2, - ACTIONS(9736), 1, - anon_sym_LBRACE, - STATE(5668), 1, + ACTIONS(8694), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8873), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8875), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8877), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(9801), 1, + aux_sym_unquoted_token3, + STATE(5724), 1, sym_comment, - STATE(6292), 1, - sym_val_record, - STATE(7301), 1, - sym__flag, - STATE(5247), 2, - sym_short_flag, - sym_long_flag, - [201919] = 4, - ACTIONS(251), 1, + STATE(6333), 1, + sym__immediate_decimal, + [201395] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5669), 1, + ACTIONS(8770), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8881), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8883), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8885), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(9801), 1, + aux_sym_unquoted_token3, + STATE(5725), 1, sym_comment, - ACTIONS(1680), 2, + STATE(7855), 1, + sym__immediate_decimal, + [201420] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4608), 1, anon_sym_DOT_DOT2, + ACTIONS(9801), 1, aux_sym_unquoted_token2, - ACTIONS(1682), 5, - anon_sym_LBRACE, + STATE(5726), 1, + sym_comment, + ACTIONS(4610), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(9771), 2, sym_filesize_unit, sym_duration_unit, - [201937] = 8, + [201441] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1812), 1, + STATE(5727), 1, + sym_comment, + ACTIONS(2022), 3, anon_sym_RBRACK, - ACTIONS(1814), 1, - anon_sym_LPAREN2, - ACTIONS(1820), 1, - sym__entry_separator, - ACTIONS(1822), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(9738), 1, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - STATE(5670), 1, - sym_comment, - ACTIONS(9740), 2, + ACTIONS(2024), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [201963] = 4, - ACTIONS(251), 1, + sym__entry_separator, + [201458] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5671), 1, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(9787), 1, + anon_sym_LBRACK, + ACTIONS(9803), 1, + anon_sym_RBRACK, + STATE(5728), 1, sym_comment, - ACTIONS(1835), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1837), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [201981] = 4, - ACTIONS(251), 1, + STATE(5987), 1, + aux_sym_shebang_repeat1, + STATE(6988), 1, + sym_val_list, + STATE(7044), 1, + aux_sym_val_table_repeat1, + [201483] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7421), 1, + anon_sym_RBRACK, + ACTIONS(7423), 1, + sym__entry_separator, + ACTIONS(9053), 1, + anon_sym_DOT2, + STATE(5380), 1, + aux_sym_cell_path_repeat1, + STATE(5652), 1, + sym_path, + STATE(5729), 1, + sym_comment, + STATE(7374), 1, + sym_cell_path, + [201508] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1719), 1, + ACTIONS(6458), 1, anon_sym_DASH2, - STATE(5672), 1, + STATE(5730), 1, sym_comment, - ACTIONS(1721), 6, + ACTIONS(6456), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - anon_sym_as, - [201999] = 8, + [201525] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1919), 1, - sym__entry_separator, - ACTIONS(8873), 1, + ACTIONS(9805), 1, anon_sym_DOT2, - STATE(5406), 1, - aux_sym_cell_path_repeat1, - STATE(5657), 1, + STATE(6267), 1, sym_path, - STATE(5673), 1, + STATE(5731), 2, sym_comment, - STATE(6906), 1, - sym_cell_path, - ACTIONS(1917), 2, + aux_sym_cell_path_repeat1, + ACTIONS(935), 3, anon_sym_RBRACK, - anon_sym_RBRACE, - [202025] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9258), 1, sym__entry_separator, - ACTIONS(9294), 1, - sym_raw_string_begin, - STATE(5467), 1, - aux_sym__multiple_types_repeat1, - STATE(5674), 1, - sym_comment, - ACTIONS(9290), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [202047] = 6, - ACTIONS(3), 1, + sym__table_head_separator, + [201544] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(9260), 1, - sym_raw_string_begin, - STATE(5467), 1, - aux_sym__multiple_types_repeat1, - STATE(5675), 1, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(9808), 1, + anon_sym_LBRACE, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(4856), 1, + sym_block, + STATE(4907), 1, + sym_val_closure, + STATE(5121), 1, + sym__blosure, + STATE(5732), 1, sym_comment, - ACTIONS(9254), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [202069] = 8, + [201569] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1927), 1, - sym__entry_separator, - ACTIONS(8873), 1, - anon_sym_DOT2, - STATE(5406), 1, - aux_sym_cell_path_repeat1, - STATE(5657), 1, - sym_path, - STATE(5676), 1, + ACTIONS(9773), 1, + anon_sym_LPAREN, + ACTIONS(9810), 1, + anon_sym_DQUOTE2, + STATE(5733), 1, sym_comment, - STATE(6908), 1, - sym_cell_path, - ACTIONS(1925), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [202095] = 5, + STATE(5740), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6292), 1, + sym_expr_interpolated, + ACTIONS(9775), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [201592] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2208), 1, - aux_sym_unquoted_token4, - STATE(5677), 1, + ACTIONS(9773), 1, + anon_sym_LPAREN, + ACTIONS(9812), 1, + anon_sym_DQUOTE2, + STATE(5734), 1, sym_comment, - ACTIONS(1016), 2, - anon_sym_DASH_DASH, + STATE(5807), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6292), 1, + sym_expr_interpolated, + ACTIONS(9775), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [201615] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2364), 1, anon_sym_DASH2, - ACTIONS(1012), 4, + STATE(5735), 1, + sym_comment, + ACTIONS(2366), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - [202115] = 8, + anon_sym_DASH_DASH, + [201632] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1931), 1, - sym__entry_separator, + ACTIONS(5615), 1, + aux_sym_unquoted_token3, + ACTIONS(8694), 1, + aux_sym__immediate_decimal_token1, ACTIONS(8873), 1, - anon_sym_DOT2, - STATE(5406), 1, - aux_sym_cell_path_repeat1, - STATE(5657), 1, - sym_path, - STATE(5678), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8875), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8877), 1, + aux_sym__immediate_decimal_token5, + STATE(5736), 1, sym_comment, - STATE(6914), 1, - sym_cell_path, - ACTIONS(1929), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [202141] = 8, + STATE(6333), 1, + sym__immediate_decimal, + [201657] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1935), 1, - sym__entry_separator, - ACTIONS(8873), 1, - anon_sym_DOT2, - STATE(5406), 1, - aux_sym_cell_path_repeat1, - STATE(5657), 1, - sym_path, - STATE(5679), 1, + ACTIONS(5615), 1, + aux_sym_unquoted_token3, + ACTIONS(8770), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8881), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8883), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8885), 1, + aux_sym__immediate_decimal_token5, + STATE(5737), 1, sym_comment, - STATE(6921), 1, - sym_cell_path, - ACTIONS(1933), 2, + STATE(7855), 1, + sym__immediate_decimal, + [201682] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(9808), 1, + anon_sym_LBRACE, + STATE(4856), 1, + sym_block, + STATE(4907), 1, + sym_val_closure, + STATE(5121), 1, + sym__blosure, + STATE(5738), 1, + sym_comment, + STATE(5876), 1, + aux_sym_shebang_repeat1, + [201707] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(9787), 1, + anon_sym_LBRACK, + ACTIONS(9814), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [202167] = 8, + STATE(5739), 1, + sym_comment, + STATE(6056), 1, + aux_sym_shebang_repeat1, + STATE(7033), 1, + sym_val_list, + STATE(7114), 1, + aux_sym_val_table_repeat1, + [201732] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1861), 1, - sym__entry_separator, - ACTIONS(8873), 1, - anon_sym_DOT2, - STATE(5406), 1, - aux_sym_cell_path_repeat1, - STATE(5657), 1, - sym_path, - STATE(5680), 1, + ACTIONS(9773), 1, + anon_sym_LPAREN, + ACTIONS(9816), 1, + anon_sym_DQUOTE2, + STATE(5740), 1, sym_comment, - STATE(7068), 1, - sym_cell_path, - ACTIONS(1859), 2, + STATE(5807), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6292), 1, + sym_expr_interpolated, + ACTIONS(9775), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [201755] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(9787), 1, + anon_sym_LBRACK, + ACTIONS(9818), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [202193] = 8, - ACTIONS(251), 1, + STATE(5741), 1, + sym_comment, + STATE(6093), 1, + aux_sym_shebang_repeat1, + STATE(7133), 1, + sym_val_list, + STATE(7152), 1, + aux_sym_val_table_repeat1, + [201780] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym_unquoted_token2, - ACTIONS(8683), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8685), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(9742), 1, - anon_sym_DOT, - STATE(5681), 1, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(9808), 1, + anon_sym_LBRACE, + STATE(4856), 1, + sym_block, + STATE(4907), 1, + sym_val_closure, + STATE(5122), 1, + sym__blosure, + STATE(5742), 1, sym_comment, - STATE(6606), 1, - sym__immediate_decimal, - ACTIONS(8681), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [202219] = 5, - ACTIONS(251), 1, + STATE(5883), 1, + aux_sym_shebang_repeat1, + [201805] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9346), 1, - aux_sym__immediate_decimal_token2, - STATE(5682), 1, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(9787), 1, + anon_sym_LBRACK, + ACTIONS(9820), 1, + anon_sym_RBRACK, + STATE(5743), 1, sym_comment, - ACTIONS(1755), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1757), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [202239] = 5, - ACTIONS(251), 1, + STATE(6094), 1, + aux_sym_shebang_repeat1, + STATE(7141), 1, + sym_val_list, + STATE(7154), 1, + aux_sym_val_table_repeat1, + [201830] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9773), 1, + anon_sym_LPAREN, + ACTIONS(9822), 1, + anon_sym_DQUOTE2, + STATE(5744), 1, + sym_comment, + STATE(5748), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6292), 1, + sym_expr_interpolated, + ACTIONS(9775), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [201853] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1638), 1, + ACTIONS(5140), 1, anon_sym_DASH2, - ACTIONS(7138), 1, - aux_sym_unquoted_token2, - STATE(5683), 1, + STATE(5745), 1, sym_comment, - ACTIONS(1650), 5, + ACTIONS(5138), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [202259] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9744), 1, - aux_sym__immediate_decimal_token2, - STATE(5684), 1, - sym_comment, - ACTIONS(1783), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1785), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [202279] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5806), 1, - anon_sym_DOT2, - STATE(5685), 1, - sym_comment, - STATE(5922), 1, - aux_sym_cell_path_repeat1, - STATE(6614), 1, - sym_path, - STATE(6923), 1, - sym_cell_path, - ACTIONS(1895), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [202303] = 4, + [201870] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(5686), 1, + ACTIONS(8694), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8873), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8875), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8877), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(9063), 1, + aux_sym_unquoted_token3, + STATE(5746), 1, sym_comment, - ACTIONS(994), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(992), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [202321] = 4, + STATE(6333), 1, + sym__immediate_decimal, + [201895] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(5687), 1, + ACTIONS(8770), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8881), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8883), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8885), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(9063), 1, + aux_sym_unquoted_token3, + STATE(5747), 1, sym_comment, - ACTIONS(990), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(988), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [202339] = 8, + STATE(7855), 1, + sym__immediate_decimal, + [201920] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1893), 1, - sym__entry_separator, - ACTIONS(8873), 1, - anon_sym_DOT2, - STATE(5406), 1, - aux_sym_cell_path_repeat1, - STATE(5657), 1, - sym_path, - STATE(5688), 1, + ACTIONS(9773), 1, + anon_sym_LPAREN, + ACTIONS(9824), 1, + anon_sym_DQUOTE2, + STATE(5748), 1, sym_comment, - STATE(7160), 1, - sym_cell_path, - ACTIONS(1891), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [202365] = 4, - ACTIONS(251), 1, + STATE(5807), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6292), 1, + sym_expr_interpolated, + ACTIONS(9775), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [201943] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9746), 1, + ACTIONS(3842), 1, sym__newline, - STATE(5689), 2, + ACTIONS(9787), 1, + anon_sym_LBRACK, + ACTIONS(9826), 1, + anon_sym_RBRACK, + STATE(5749), 1, sym_comment, + STATE(6098), 1, aux_sym_shebang_repeat1, - ACTIONS(1298), 5, - sym_raw_string_begin, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [202383] = 4, - ACTIONS(251), 1, + STATE(6705), 1, + sym_val_list, + STATE(7159), 1, + aux_sym_val_table_repeat1, + [201968] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1000), 1, + ACTIONS(5651), 1, anon_sym_DASH2, - STATE(5690), 1, + STATE(5750), 1, sym_comment, - ACTIONS(1002), 6, + ACTIONS(5653), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DASH_DASH, - anon_sym_as, - [202401] = 5, - ACTIONS(3), 1, + anon_sym_LBRACE, + [201985] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9749), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9752), 1, - sym__space, - STATE(5691), 2, + ACTIONS(9787), 1, + anon_sym_LBRACK, + ACTIONS(9828), 1, + anon_sym_RBRACK, + STATE(5751), 1, sym_comment, - aux_sym_ctrl_do_parenthesized_repeat2, - ACTIONS(3500), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_LBRACE, - [202421] = 4, - ACTIONS(251), 1, + STATE(6058), 1, + aux_sym_shebang_repeat1, + STATE(6921), 1, + sym_val_list, + STATE(7117), 1, + aux_sym_val_table_repeat1, + [202010] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2378), 1, - anon_sym_DASH2, - STATE(5692), 1, - sym_comment, - ACTIONS(2380), 6, - ts_builtin_sym_end, + ACTIONS(3842), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(9787), 1, anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_as, - [202439] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5693), 1, + ACTIONS(9830), 1, + anon_sym_RBRACK, + STATE(5752), 1, sym_comment, - ACTIONS(1743), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1745), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [202457] = 4, - ACTIONS(251), 1, + STATE(6099), 1, + aux_sym_shebang_repeat1, + STATE(6710), 1, + sym_val_list, + STATE(7162), 1, + aux_sym_val_table_repeat1, + [202035] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2382), 1, - anon_sym_DASH2, - STATE(5694), 1, + ACTIONS(9708), 1, + anon_sym_def, + ACTIONS(9710), 1, + anon_sym_extern, + ACTIONS(9712), 1, + anon_sym_module, + ACTIONS(9714), 1, + anon_sym_use, + ACTIONS(9832), 1, + anon_sym_alias, + ACTIONS(9834), 1, + anon_sym_const, + STATE(5753), 1, sym_comment, - ACTIONS(2384), 6, - ts_builtin_sym_end, + [202060] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9795), 1, sym__newline, + ACTIONS(9797), 1, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_as, - [202475] = 8, + ACTIONS(9836), 1, + anon_sym_RPAREN, + STATE(304), 1, + aux_sym__parenthesized_body_repeat1, + STATE(5754), 1, + sym_comment, + STATE(6644), 1, + aux_sym__block_body_repeat1, + STATE(6958), 1, + aux_sym_shebang_repeat1, + [202085] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1812), 1, - anon_sym_RBRACE, - ACTIONS(1814), 1, - anon_sym_LPAREN2, - ACTIONS(1820), 1, - sym__entry_separator, - ACTIONS(1822), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(9755), 1, - anon_sym_DOT_DOT2, - STATE(5695), 1, + ACTIONS(9773), 1, + anon_sym_LPAREN, + ACTIONS(9838), 1, + anon_sym_DQUOTE2, + STATE(5755), 1, sym_comment, - ACTIONS(9757), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [202501] = 3, - ACTIONS(251), 1, + STATE(5758), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6292), 1, + sym_expr_interpolated, + ACTIONS(9775), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [202108] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5696), 1, + ACTIONS(4712), 1, + aux_sym_unquoted_token3, + ACTIONS(8694), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8873), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8875), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8877), 1, + aux_sym__immediate_decimal_token5, + STATE(5756), 1, sym_comment, - ACTIONS(9759), 7, - anon_sym_EQ, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_in2, - anon_sym_RBRACE, - [202517] = 4, - ACTIONS(251), 1, + STATE(6333), 1, + sym__immediate_decimal, + [202133] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2370), 1, - anon_sym_DASH2, - STATE(5697), 1, + ACTIONS(4712), 1, + aux_sym_unquoted_token3, + ACTIONS(8770), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8881), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8883), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8885), 1, + aux_sym__immediate_decimal_token5, + STATE(5757), 1, sym_comment, - ACTIONS(2372), 6, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_as, - [202535] = 7, + STATE(7855), 1, + sym__immediate_decimal, + [202158] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9761), 1, + ACTIONS(9773), 1, anon_sym_LPAREN, - ACTIONS(9765), 1, + ACTIONS(9840), 1, anon_sym_DQUOTE2, - STATE(5698), 1, + STATE(5758), 1, sym_comment, - STATE(5912), 1, + STATE(5807), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6484), 1, + STATE(6292), 1, sym_expr_interpolated, - ACTIONS(9763), 2, + ACTIONS(9775), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [202558] = 4, + [202181] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(5699), 1, + ACTIONS(998), 1, + sym__entry_separator, + ACTIONS(9842), 1, + anon_sym_DOT_DOT2, + STATE(5759), 1, sym_comment, - ACTIONS(1997), 3, + ACTIONS(1002), 2, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(1999), 3, + ACTIONS(9844), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [202575] = 5, - ACTIONS(251), 1, + [202202] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9767), 1, - aux_sym__immediate_decimal_token2, - STATE(5700), 1, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(9787), 1, + anon_sym_LBRACK, + ACTIONS(9846), 1, + anon_sym_RBRACK, + STATE(5760), 1, sym_comment, - ACTIONS(1783), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1785), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [202594] = 4, + STATE(6102), 1, + aux_sym_shebang_repeat1, + STATE(6740), 1, + sym_val_list, + STATE(7168), 1, + aux_sym_val_table_repeat1, + [202227] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(5701), 1, + ACTIONS(9773), 1, + anon_sym_LPAREN, + ACTIONS(9848), 1, + anon_sym_DQUOTE2, + STATE(5761), 1, sym_comment, - ACTIONS(1000), 3, + STATE(5807), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6292), 1, + sym_expr_interpolated, + ACTIONS(9775), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [202250] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(9787), 1, + anon_sym_LBRACK, + ACTIONS(9850), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(1002), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + STATE(5762), 1, + sym_comment, + STATE(6103), 1, + aux_sym_shebang_repeat1, + STATE(6745), 1, + sym_val_list, + STATE(7170), 1, + aux_sym_val_table_repeat1, + [202275] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9852), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9854), 1, + aux_sym__immediate_decimal_token2, + STATE(5763), 1, + sym_comment, + ACTIONS(1693), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1695), 2, + anon_sym_LPAREN2, sym__entry_separator, - [202611] = 7, + [202296] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9761), 1, + ACTIONS(9773), 1, anon_sym_LPAREN, - ACTIONS(9769), 1, + ACTIONS(9856), 1, anon_sym_DQUOTE2, - STATE(5702), 1, + STATE(5764), 1, sym_comment, - STATE(5705), 1, + STATE(5767), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6484), 1, + STATE(6292), 1, sym_expr_interpolated, - ACTIONS(9763), 2, + ACTIONS(9775), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [202634] = 8, + [202319] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7215), 1, + ACTIONS(6206), 1, aux_sym_unquoted_token3, - ACTIONS(8681), 1, + ACTIONS(8694), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9101), 1, + ACTIONS(8873), 1, aux_sym__immediate_decimal_token3, - ACTIONS(9103), 1, + ACTIONS(8875), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9105), 1, + ACTIONS(8877), 1, aux_sym__immediate_decimal_token5, - STATE(5703), 1, + STATE(5765), 1, sym_comment, - STATE(6439), 1, + STATE(6333), 1, sym__immediate_decimal, - [202659] = 8, + [202344] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7215), 1, + ACTIONS(6206), 1, aux_sym_unquoted_token3, - ACTIONS(8754), 1, + ACTIONS(8770), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8838), 1, + ACTIONS(8881), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8840), 1, + ACTIONS(8883), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8842), 1, + ACTIONS(8885), 1, aux_sym__immediate_decimal_token5, - STATE(5704), 1, + STATE(5766), 1, sym_comment, - STATE(7582), 1, + STATE(7855), 1, sym__immediate_decimal, - [202684] = 7, + [202369] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9761), 1, + ACTIONS(9773), 1, anon_sym_LPAREN, - ACTIONS(9771), 1, + ACTIONS(9858), 1, anon_sym_DQUOTE2, - STATE(5705), 1, + STATE(5767), 1, sym_comment, - STATE(5748), 1, + STATE(5807), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6484), 1, + STATE(6292), 1, sym_expr_interpolated, - ACTIONS(9763), 2, + ACTIONS(9775), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [202707] = 8, - ACTIONS(251), 1, + [202392] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - ACTIONS(9775), 1, + ACTIONS(9860), 1, anon_sym_RBRACK, - STATE(5706), 1, + STATE(5768), 1, sym_comment, - STATE(6116), 1, + STATE(6107), 1, aux_sym_shebang_repeat1, - STATE(6796), 1, + STATE(6767), 1, sym_val_list, - STATE(7200), 1, + STATE(7178), 1, + aux_sym_val_table_repeat1, + [202417] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9862), 1, + sym_long_flag_identifier, + ACTIONS(9864), 1, + anon_sym_EQ2, + STATE(5769), 1, + sym_comment, + ACTIONS(4938), 2, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + ACTIONS(4940), 2, + sym_identifier, + anon_sym_DASH2, + [202438] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(9787), 1, + anon_sym_LBRACK, + ACTIONS(9866), 1, + anon_sym_RBRACK, + STATE(5770), 1, + sym_comment, + STATE(5991), 1, + aux_sym_shebang_repeat1, + STATE(6727), 1, + sym_val_list, + STATE(7050), 1, + aux_sym_val_table_repeat1, + [202463] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(9787), 1, + anon_sym_LBRACK, + ACTIONS(9868), 1, + anon_sym_RBRACK, + STATE(5771), 1, + sym_comment, + STATE(6108), 1, + aux_sym_shebang_repeat1, + STATE(6772), 1, + sym_val_list, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [202488] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2087), 1, + anon_sym_LBRACE, + STATE(5772), 1, + sym_comment, + ACTIONS(2085), 5, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + aux_sym_unquoted_token4, + [202505] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(9787), 1, + anon_sym_LBRACK, + ACTIONS(9870), 1, + anon_sym_RBRACK, + STATE(5773), 1, + sym_comment, + STATE(5956), 1, + aux_sym_shebang_repeat1, + STATE(7054), 1, + sym_val_list, + STATE(7082), 1, aux_sym_val_table_repeat1, - [202732] = 8, - ACTIONS(251), 1, + [202530] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9773), 1, + anon_sym_LPAREN, + ACTIONS(9872), 1, + anon_sym_DQUOTE2, + STATE(5774), 1, + sym_comment, + STATE(5777), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6292), 1, + sym_expr_interpolated, + ACTIONS(9775), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [202553] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7239), 1, + aux_sym_unquoted_token3, + ACTIONS(8694), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8873), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8875), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8877), 1, + aux_sym__immediate_decimal_token5, + STATE(5775), 1, + sym_comment, + STATE(6333), 1, + sym__immediate_decimal, + [202578] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7239), 1, + aux_sym_unquoted_token3, + ACTIONS(8770), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8881), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8883), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8885), 1, + aux_sym__immediate_decimal_token5, + STATE(5776), 1, + sym_comment, + STATE(7855), 1, + sym__immediate_decimal, + [202603] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9773), 1, + anon_sym_LPAREN, + ACTIONS(9874), 1, + anon_sym_DQUOTE2, + STATE(5777), 1, + sym_comment, + STATE(5807), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6292), 1, + sym_expr_interpolated, + ACTIONS(9775), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [202626] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - ACTIONS(9777), 1, + ACTIONS(9876), 1, anon_sym_RBRACK, - STATE(5707), 1, + STATE(5778), 1, sym_comment, - STATE(5986), 1, + STATE(6109), 1, aux_sym_shebang_repeat1, - STATE(6765), 1, + STATE(6791), 1, sym_val_list, - STATE(7062), 1, + STATE(7186), 1, aux_sym_val_table_repeat1, - [202757] = 6, - ACTIONS(3), 1, + [202651] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1012), 1, - sym__entry_separator, - ACTIONS(9779), 1, - anon_sym_DOT_DOT2, - STATE(5708), 1, + ACTIONS(5669), 1, + anon_sym_DASH2, + STATE(5779), 1, sym_comment, - ACTIONS(1016), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(9781), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [202778] = 6, - ACTIONS(251), 1, + ACTIONS(5671), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [202668] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4839), 1, - anon_sym_DOLLAR, - ACTIONS(9783), 1, - anon_sym_EQ2, - ACTIONS(9785), 1, - sym_short_flag_identifier, - STATE(5709), 1, + ACTIONS(1002), 1, + anon_sym_DASH2, + STATE(5780), 1, sym_comment, - ACTIONS(4841), 3, - sym_identifier, + ACTIONS(998), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DASH_DASH, - anon_sym_DASH2, - [202799] = 8, - ACTIONS(251), 1, + [202685] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, - anon_sym_LBRACK, ACTIONS(9787), 1, + anon_sym_LBRACK, + ACTIONS(9878), 1, anon_sym_RBRACK, - STATE(5710), 1, + STATE(5781), 1, sym_comment, - STATE(6117), 1, + STATE(6110), 1, aux_sym_shebang_repeat1, - STATE(6801), 1, + STATE(6795), 1, sym_val_list, - STATE(7203), 1, + STATE(7189), 1, aux_sym_val_table_repeat1, - [202824] = 6, - ACTIONS(3), 1, + [202710] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2025), 1, - sym__entry_separator, - ACTIONS(9789), 1, - anon_sym_DOT_DOT2, - STATE(5711), 1, + ACTIONS(5675), 1, + anon_sym_DASH2, + STATE(5782), 1, sym_comment, - ACTIONS(2019), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(9791), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [202845] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(5677), 5, + ts_builtin_sym_end, sym__newline, - ACTIONS(9793), 1, + anon_sym_SEMI, + anon_sym_DASH_DASH, anon_sym_LBRACE, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4752), 1, - sym_block, - STATE(4753), 1, - sym_val_closure, - STATE(5009), 1, - sym__blosure, - STATE(5712), 1, - sym_comment, - [202870] = 6, - ACTIONS(251), 1, + [202727] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9795), 1, + ACTIONS(4940), 1, + anon_sym_DASH2, + ACTIONS(9880), 1, sym_long_flag_identifier, - ACTIONS(9797), 1, + ACTIONS(9882), 1, anon_sym_EQ2, - STATE(5713), 1, + STATE(5783), 1, sym_comment, - ACTIONS(4860), 2, + ACTIONS(4938), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, - ACTIONS(4862), 2, - sym_identifier, - anon_sym_DASH2, - [202891] = 7, + anon_sym_LBRACE, + [202748] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9761), 1, + ACTIONS(9773), 1, anon_sym_LPAREN, - ACTIONS(9799), 1, + ACTIONS(9884), 1, anon_sym_DQUOTE2, - STATE(5714), 1, + STATE(5784), 1, sym_comment, - STATE(5717), 1, + STATE(5787), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6484), 1, + STATE(6292), 1, sym_expr_interpolated, - ACTIONS(9763), 2, + ACTIONS(9775), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [202914] = 8, + [202771] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7177), 1, + ACTIONS(7179), 1, aux_sym_unquoted_token3, - ACTIONS(8681), 1, + ACTIONS(8694), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9101), 1, + ACTIONS(8873), 1, aux_sym__immediate_decimal_token3, - ACTIONS(9103), 1, + ACTIONS(8875), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9105), 1, + ACTIONS(8877), 1, aux_sym__immediate_decimal_token5, - STATE(5715), 1, + STATE(5785), 1, sym_comment, - STATE(6439), 1, + STATE(6333), 1, sym__immediate_decimal, - [202939] = 8, + [202796] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7177), 1, + ACTIONS(7179), 1, aux_sym_unquoted_token3, - ACTIONS(8754), 1, + ACTIONS(8770), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8838), 1, + ACTIONS(8881), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8840), 1, + ACTIONS(8883), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8842), 1, + ACTIONS(8885), 1, aux_sym__immediate_decimal_token5, - STATE(5716), 1, + STATE(5786), 1, sym_comment, - STATE(7582), 1, + STATE(7855), 1, sym__immediate_decimal, - [202964] = 7, + [202821] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9761), 1, + ACTIONS(9773), 1, anon_sym_LPAREN, - ACTIONS(9801), 1, + ACTIONS(9886), 1, anon_sym_DQUOTE2, - STATE(5717), 1, + STATE(5787), 1, sym_comment, - STATE(5748), 1, + STATE(5807), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6484), 1, + STATE(6292), 1, sym_expr_interpolated, - ACTIONS(9763), 2, + ACTIONS(9775), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [202987] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2150), 1, - anon_sym_LBRACE, - STATE(5718), 1, - sym_comment, - ACTIONS(2148), 5, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH2, - aux_sym_unquoted_token4, - [203004] = 8, - ACTIONS(251), 1, + [202844] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - ACTIONS(9803), 1, + ACTIONS(9888), 1, anon_sym_RBRACK, - STATE(5719), 1, + STATE(5788), 1, sym_comment, - STATE(6118), 1, + STATE(6111), 1, aux_sym_shebang_repeat1, - STATE(6824), 1, + STATE(6819), 1, sym_val_list, - STATE(7211), 1, + STATE(7197), 1, aux_sym_val_table_repeat1, - [203029] = 6, + [202869] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2457), 1, + anon_sym_DASH2, + STATE(5789), 1, + sym_comment, + ACTIONS(2459), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + [202886] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2033), 1, - sym__entry_separator, - ACTIONS(9805), 1, - anon_sym_DOT_DOT2, - STATE(5720), 1, + STATE(5790), 1, sym_comment, - ACTIONS(2027), 2, + ACTIONS(1676), 3, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(9807), 2, + anon_sym_DOT_DOT2, + ACTIONS(1678), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [203050] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(9793), 1, - anon_sym_LBRACE, - STATE(4752), 1, - sym_block, - STATE(4753), 1, - sym_val_closure, - STATE(5009), 1, - sym__blosure, - STATE(5721), 1, - sym_comment, - STATE(5888), 1, - aux_sym_shebang_repeat1, - [203075] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(9773), 1, - anon_sym_LBRACK, - ACTIONS(9809), 1, - anon_sym_RBRACK, - STATE(5722), 1, - sym_comment, - STATE(6088), 1, - aux_sym_shebang_repeat1, - STATE(7140), 1, - sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - [203100] = 5, - ACTIONS(251), 1, + sym__entry_separator, + [202903] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6284), 1, + ACTIONS(6313), 1, anon_sym_LBRACE, - STATE(5723), 1, + STATE(5791), 1, sym_comment, - STATE(6616), 1, + STATE(6252), 1, sym_block, - ACTIONS(9811), 4, + ACTIONS(9890), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [203119] = 8, - ACTIONS(251), 1, + [202922] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - ACTIONS(9813), 1, + ACTIONS(9892), 1, anon_sym_RBRACK, - STATE(5724), 1, + STATE(5792), 1, sym_comment, - STATE(6119), 1, + STATE(6112), 1, aux_sym_shebang_repeat1, - STATE(6828), 1, + STATE(6824), 1, sym_val_list, - STATE(7213), 1, + STATE(7200), 1, aux_sym_val_table_repeat1, - [203144] = 6, - ACTIONS(251), 1, + [202947] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1711), 1, - aux_sym_unquoted_token2, - ACTIONS(9815), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9817), 1, - aux_sym__immediate_decimal_token2, - STATE(5725), 1, - sym_comment, - ACTIONS(1713), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [203165] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym_unquoted_token2, - ACTIONS(9819), 1, - anon_sym_DOT_DOT2, - STATE(5726), 1, + ACTIONS(5144), 1, + anon_sym_DASH2, + STATE(5793), 1, sym_comment, - ACTIONS(1810), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(9821), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [203186] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(5142), 5, + ts_builtin_sym_end, sym__newline, - ACTIONS(9793), 1, - anon_sym_LBRACE, - STATE(4752), 1, - sym_block, - STATE(4753), 1, - sym_val_closure, - STATE(5127), 1, - sym__blosure, - STATE(5727), 1, - sym_comment, - STATE(5898), 1, - aux_sym_shebang_repeat1, - [203211] = 7, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + [202964] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9761), 1, + ACTIONS(9773), 1, anon_sym_LPAREN, - ACTIONS(9823), 1, + ACTIONS(9894), 1, anon_sym_DQUOTE2, - STATE(5728), 1, + STATE(5794), 1, sym_comment, - STATE(5732), 1, + STATE(5797), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6484), 1, + STATE(6292), 1, sym_expr_interpolated, - ACTIONS(9763), 2, + ACTIONS(9775), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [203234] = 8, + [202987] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4630), 1, + ACTIONS(4616), 1, aux_sym_unquoted_token3, - ACTIONS(8681), 1, + ACTIONS(8694), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9101), 1, + ACTIONS(8873), 1, aux_sym__immediate_decimal_token3, - ACTIONS(9103), 1, + ACTIONS(8875), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9105), 1, + ACTIONS(8877), 1, aux_sym__immediate_decimal_token5, - STATE(5729), 1, + STATE(5795), 1, sym_comment, - STATE(6439), 1, + STATE(6333), 1, sym__immediate_decimal, - [203259] = 8, + [203012] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4630), 1, + ACTIONS(4616), 1, aux_sym_unquoted_token3, - ACTIONS(8754), 1, + ACTIONS(8770), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8838), 1, + ACTIONS(8881), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8840), 1, + ACTIONS(8883), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8842), 1, + ACTIONS(8885), 1, aux_sym__immediate_decimal_token5, - STATE(5730), 1, + STATE(5796), 1, sym_comment, - STATE(7582), 1, + STATE(7855), 1, sym__immediate_decimal, - [203284] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9825), 1, - anon_sym_DOT_DOT2, - STATE(5731), 1, - sym_comment, - ACTIONS(9827), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5935), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [203303] = 7, + [203037] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9761), 1, + ACTIONS(9773), 1, anon_sym_LPAREN, - ACTIONS(9829), 1, + ACTIONS(9896), 1, anon_sym_DQUOTE2, - STATE(5732), 1, + STATE(5797), 1, sym_comment, - STATE(5748), 1, + STATE(5807), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6484), 1, + STATE(6292), 1, sym_expr_interpolated, - ACTIONS(9763), 2, + ACTIONS(9775), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [203326] = 8, - ACTIONS(251), 1, + [203060] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - ACTIONS(9831), 1, + ACTIONS(9898), 1, anon_sym_RBRACK, - STATE(5733), 1, + STATE(5798), 1, sym_comment, - STATE(6092), 1, + STATE(6114), 1, aux_sym_shebang_repeat1, - STATE(7001), 1, + STATE(6840), 1, sym_val_list, - STATE(7157), 1, + STATE(7208), 1, aux_sym_val_table_repeat1, - [203351] = 8, - ACTIONS(251), 1, + [203085] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - ACTIONS(9833), 1, + ACTIONS(9900), 1, anon_sym_RBRACK, - STATE(5734), 1, + STATE(5799), 1, sym_comment, - STATE(6121), 1, + STATE(6115), 1, aux_sym_shebang_repeat1, - STATE(6847), 1, + STATE(6845), 1, sym_val_list, - STATE(7219), 1, + STATE(7211), 1, aux_sym_val_table_repeat1, - [203376] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9835), 1, - sym__newline, - ACTIONS(9837), 1, - anon_sym_SEMI, - ACTIONS(9839), 1, - anon_sym_RPAREN, - STATE(301), 1, - aux_sym__parenthesized_body_repeat1, - STATE(5735), 1, - sym_comment, - STATE(6670), 1, - aux_sym__block_body_repeat1, - STATE(7296), 1, - aux_sym_shebang_repeat1, - [203401] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2041), 1, - sym__entry_separator, - ACTIONS(9841), 1, - anon_sym_DOT_DOT2, - STATE(5736), 1, - sym_comment, - ACTIONS(2035), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(9843), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [203422] = 5, - ACTIONS(251), 1, + [203110] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6284), 1, - anon_sym_LBRACE, - STATE(5737), 1, + ACTIONS(1961), 1, + anon_sym_DASH2, + STATE(5800), 1, sym_comment, - STATE(6196), 1, - sym_block, - ACTIONS(9845), 4, + ACTIONS(1963), 5, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [203441] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(9773), 1, anon_sym_LBRACK, - ACTIONS(9847), 1, - anon_sym_RBRACK, - STATE(5738), 1, - sym_comment, - STATE(6122), 1, - aux_sym_shebang_repeat1, - STATE(6851), 1, - sym_val_list, - STATE(7222), 1, - aux_sym_val_table_repeat1, - [203466] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6284), 1, - anon_sym_LBRACE, - STATE(5739), 1, - sym_comment, - STATE(6197), 1, - sym_block, - ACTIONS(9845), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [203485] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym_unquoted_token2, - ACTIONS(8756), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8758), 1, - aux_sym__immediate_decimal_token5, - STATE(5740), 1, - sym_comment, - STATE(7591), 1, - sym__immediate_decimal, - ACTIONS(8754), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [203508] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7385), 1, - anon_sym_RBRACK, - ACTIONS(7387), 1, - sym__entry_separator, - ACTIONS(8873), 1, - anon_sym_DOT2, - STATE(5406), 1, - aux_sym_cell_path_repeat1, - STATE(5657), 1, - sym_path, - STATE(5741), 1, - sym_comment, - STATE(7355), 1, - sym_cell_path, - [203533] = 7, + anon_sym_DASH_DASH, + [203127] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9761), 1, + ACTIONS(9773), 1, anon_sym_LPAREN, - ACTIONS(9849), 1, + ACTIONS(9902), 1, anon_sym_DQUOTE2, - STATE(5742), 1, + STATE(5801), 1, sym_comment, - STATE(5743), 1, + STATE(5802), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6484), 1, + STATE(6292), 1, sym_expr_interpolated, - ACTIONS(9763), 2, + ACTIONS(9775), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [203556] = 7, + [203150] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9761), 1, + ACTIONS(9773), 1, anon_sym_LPAREN, - ACTIONS(9851), 1, + ACTIONS(9904), 1, anon_sym_DQUOTE2, - STATE(5743), 1, + STATE(5802), 1, sym_comment, - STATE(5748), 1, + STATE(5807), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6484), 1, + STATE(6292), 1, sym_expr_interpolated, - ACTIONS(9763), 2, + ACTIONS(9775), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [203579] = 8, - ACTIONS(251), 1, + [203173] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - ACTIONS(9853), 1, + ACTIONS(9906), 1, anon_sym_RBRACK, - STATE(5744), 1, + STATE(5803), 1, sym_comment, - STATE(6125), 1, + STATE(6118), 1, aux_sym_shebang_repeat1, - STATE(6867), 1, + STATE(6864), 1, sym_val_list, - STATE(7229), 1, + STATE(7217), 1, aux_sym_val_table_repeat1, - [203604] = 7, + [203198] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9761), 1, - anon_sym_LPAREN, - ACTIONS(9855), 1, - anon_sym_DQUOTE2, - STATE(5745), 1, + ACTIONS(2069), 1, + anon_sym_LBRACE, + ACTIONS(2071), 1, + aux_sym_unquoted_token4, + STATE(5804), 1, sym_comment, - STATE(5824), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6484), 1, - sym_expr_interpolated, - ACTIONS(9763), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [203627] = 8, + ACTIONS(2065), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [203217] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8681), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9101), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9103), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9105), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(9857), 1, - aux_sym_unquoted_token3, - STATE(5746), 1, + ACTIONS(998), 1, + anon_sym_LBRACE, + ACTIONS(2063), 1, + aux_sym_unquoted_token4, + STATE(5805), 1, sym_comment, - STATE(6439), 1, - sym__immediate_decimal, - [203652] = 8, - ACTIONS(251), 1, + ACTIONS(1002), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [203236] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - ACTIONS(9859), 1, + ACTIONS(9908), 1, anon_sym_RBRACK, - STATE(5747), 1, + STATE(5806), 1, sym_comment, - STATE(6126), 1, + STATE(6119), 1, aux_sym_shebang_repeat1, - STATE(6870), 1, + STATE(6868), 1, sym_val_list, - STATE(7231), 1, + STATE(7219), 1, aux_sym_val_table_repeat1, - [203677] = 6, + [203261] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9861), 1, + ACTIONS(9910), 1, anon_sym_LPAREN, - ACTIONS(9867), 1, + ACTIONS(9916), 1, anon_sym_DQUOTE2, - STATE(6484), 1, + STATE(6292), 1, sym_expr_interpolated, - ACTIONS(9864), 2, + ACTIONS(9913), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - STATE(5748), 2, + STATE(5807), 2, sym_comment, aux_sym__inter_double_quotes_repeat1, - [203698] = 5, - ACTIONS(3), 1, + [203282] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2132), 1, - anon_sym_LBRACE, - ACTIONS(2134), 1, - aux_sym_unquoted_token4, - STATE(5749), 1, - sym_comment, - ACTIONS(2128), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(2306), 1, anon_sym_DASH2, - [203717] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1012), 1, - anon_sym_LBRACE, - ACTIONS(2208), 1, - aux_sym_unquoted_token4, - STATE(5750), 1, + STATE(5808), 1, sym_comment, - ACTIONS(1016), 4, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(2308), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DASH_DASH, - anon_sym_DASH2, - [203736] = 7, + [203299] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9761), 1, + ACTIONS(9773), 1, anon_sym_LPAREN, - ACTIONS(9869), 1, + ACTIONS(9918), 1, anon_sym_DQUOTE2, - STATE(5751), 1, + STATE(5809), 1, sym_comment, - STATE(5752), 1, + STATE(5810), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6484), 1, + STATE(6292), 1, sym_expr_interpolated, - ACTIONS(9763), 2, + ACTIONS(9775), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [203759] = 7, + [203322] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9761), 1, + ACTIONS(9773), 1, anon_sym_LPAREN, - ACTIONS(9871), 1, + ACTIONS(9920), 1, anon_sym_DQUOTE2, - STATE(5748), 1, + STATE(5807), 1, aux_sym__inter_double_quotes_repeat1, - STATE(5752), 1, + STATE(5810), 1, sym_comment, - STATE(6484), 1, + STATE(6292), 1, sym_expr_interpolated, - ACTIONS(9763), 2, + ACTIONS(9775), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [203782] = 8, - ACTIONS(251), 1, + [203345] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - ACTIONS(9873), 1, + ACTIONS(9922), 1, anon_sym_RBRACK, - STATE(5753), 1, + STATE(5811), 1, sym_comment, - STATE(6129), 1, + STATE(6125), 1, aux_sym_shebang_repeat1, - STATE(6892), 1, + STATE(6887), 1, sym_val_list, - STATE(7244), 1, + STATE(7233), 1, aux_sym_val_table_repeat1, - [203807] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9875), 1, - anon_sym_DOT2, - STATE(6614), 1, - sym_path, - STATE(5754), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(953), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [203826] = 8, - ACTIONS(251), 1, + [203370] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - ACTIONS(9878), 1, + ACTIONS(9924), 1, anon_sym_RBRACK, - STATE(5755), 1, + STATE(5812), 1, sym_comment, - STATE(6130), 1, + STATE(6126), 1, aux_sym_shebang_repeat1, - STATE(6896), 1, + STATE(6891), 1, sym_val_list, - STATE(7246), 1, + STATE(7235), 1, aux_sym_val_table_repeat1, - [203851] = 6, + [203395] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9880), 1, - anon_sym_DOT, - ACTIONS(9882), 1, - aux_sym__immediate_decimal_token2, - STATE(5756), 1, - sym_comment, - ACTIONS(1755), 2, + ACTIONS(1935), 1, anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1757), 2, - anon_sym_LPAREN2, + ACTIONS(1937), 1, sym__entry_separator, - [203872] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8754), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8838), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8840), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8842), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(9857), 1, - aux_sym_unquoted_token3, - STATE(5757), 1, + ACTIONS(9053), 1, + anon_sym_DOT2, + STATE(5380), 1, + aux_sym_cell_path_repeat1, + STATE(5652), 1, + sym_path, + STATE(5813), 1, sym_comment, - STATE(7582), 1, - sym__immediate_decimal, - [203897] = 3, - ACTIONS(251), 1, + STATE(7360), 1, + sym_cell_path, + [203420] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5758), 1, - sym_comment, - ACTIONS(1309), 6, - sym_raw_string_begin, - sym_identifier, + ACTIONS(3842), 1, sym__newline, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [203912] = 7, + ACTIONS(9808), 1, + anon_sym_LBRACE, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(4856), 1, + sym_block, + STATE(4907), 1, + sym_val_closure, + STATE(5048), 1, + sym__blosure, + STATE(5814), 1, + sym_comment, + [203445] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9761), 1, + ACTIONS(9773), 1, anon_sym_LPAREN, - ACTIONS(9884), 1, + ACTIONS(9926), 1, anon_sym_DQUOTE2, - STATE(5759), 1, + STATE(5815), 1, sym_comment, - STATE(5760), 1, + STATE(5816), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6484), 1, + STATE(6292), 1, sym_expr_interpolated, - ACTIONS(9763), 2, + ACTIONS(9775), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [203935] = 7, + [203468] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9761), 1, + ACTIONS(9773), 1, anon_sym_LPAREN, - ACTIONS(9886), 1, + ACTIONS(9928), 1, anon_sym_DQUOTE2, - STATE(5748), 1, + STATE(5807), 1, aux_sym__inter_double_quotes_repeat1, - STATE(5760), 1, + STATE(5816), 1, sym_comment, - STATE(6484), 1, + STATE(6292), 1, sym_expr_interpolated, - ACTIONS(9763), 2, + ACTIONS(9775), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [203958] = 8, - ACTIONS(251), 1, + [203491] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - ACTIONS(9888), 1, + ACTIONS(9930), 1, anon_sym_RBRACK, - STATE(5761), 1, + STATE(5817), 1, sym_comment, - STATE(6131), 1, + STATE(6127), 1, aux_sym_shebang_repeat1, - STATE(6915), 1, + STATE(6910), 1, sym_val_list, - STATE(7251), 1, + STATE(7239), 1, aux_sym_val_table_repeat1, - [203983] = 8, - ACTIONS(251), 1, + [203516] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9890), 1, - anon_sym_alias, - ACTIONS(9892), 1, - anon_sym_const, - ACTIONS(9894), 1, - anon_sym_def, - ACTIONS(9896), 1, - anon_sym_extern, - ACTIONS(9898), 1, - anon_sym_module, - ACTIONS(9900), 1, - anon_sym_use, - STATE(5762), 1, + ACTIONS(2393), 1, + anon_sym_DASH2, + STATE(5818), 1, sym_comment, - [204008] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(2395), 5, + ts_builtin_sym_end, sym__newline, - ACTIONS(9773), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(9902), 1, - anon_sym_RBRACK, - STATE(5763), 1, - sym_comment, - STATE(6132), 1, - aux_sym_shebang_repeat1, - STATE(6920), 1, - sym_val_list, - STATE(7253), 1, - aux_sym_val_table_repeat1, - [204033] = 4, - ACTIONS(251), 1, + anon_sym_DASH_DASH, + [203533] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1855), 1, + ACTIONS(1839), 1, anon_sym_DASH2, - STATE(5764), 1, + STATE(5819), 1, sym_comment, - ACTIONS(1857), 5, + ACTIONS(1841), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [204050] = 7, + [203550] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9761), 1, + ACTIONS(9773), 1, anon_sym_LPAREN, - ACTIONS(9904), 1, + ACTIONS(9932), 1, anon_sym_DQUOTE2, - STATE(5765), 1, + STATE(5820), 1, sym_comment, - STATE(5766), 1, + STATE(5822), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6484), 1, + STATE(6292), 1, sym_expr_interpolated, - ACTIONS(9763), 2, + ACTIONS(9775), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [204073] = 7, + [203573] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9761), 1, + ACTIONS(2036), 1, + sym__entry_separator, + ACTIONS(9934), 1, + anon_sym_DOT_DOT2, + STATE(5821), 1, + sym_comment, + ACTIONS(2030), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(9936), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [203594] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9773), 1, anon_sym_LPAREN, - ACTIONS(9906), 1, + ACTIONS(9938), 1, anon_sym_DQUOTE2, - STATE(5748), 1, + STATE(5807), 1, aux_sym__inter_double_quotes_repeat1, - STATE(5766), 1, + STATE(5822), 1, sym_comment, - STATE(6484), 1, + STATE(6292), 1, sym_expr_interpolated, - ACTIONS(9763), 2, + ACTIONS(9775), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [204096] = 8, - ACTIONS(251), 1, + [203617] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - ACTIONS(9908), 1, + ACTIONS(9940), 1, anon_sym_RBRACK, - STATE(5767), 1, + STATE(5823), 1, sym_comment, - STATE(6133), 1, + STATE(6129), 1, aux_sym_shebang_repeat1, - STATE(6939), 1, + STATE(6932), 1, sym_val_list, - STATE(7257), 1, + STATE(7246), 1, aux_sym_val_table_repeat1, - [204121] = 8, + [203642] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1975), 1, + ACTIONS(9942), 1, + anon_sym_DOT, + ACTIONS(9944), 1, + aux_sym__immediate_decimal_token2, + STATE(5824), 1, + sym_comment, + ACTIONS(1701), 2, anon_sym_RBRACE, - ACTIONS(1977), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(1703), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(8873), 1, - anon_sym_DOT2, - STATE(5406), 1, - aux_sym_cell_path_repeat1, - STATE(5657), 1, - sym_path, - STATE(5768), 1, - sym_comment, - STATE(7356), 1, - sym_cell_path, - [204146] = 8, - ACTIONS(251), 1, + [203663] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - ACTIONS(9910), 1, + ACTIONS(9946), 1, anon_sym_RBRACK, - STATE(5769), 1, + STATE(5825), 1, sym_comment, - STATE(6134), 1, + STATE(6130), 1, aux_sym_shebang_repeat1, - STATE(6944), 1, + STATE(6936), 1, sym_val_list, - STATE(7260), 1, + STATE(7248), 1, aux_sym_val_table_repeat1, - [204171] = 6, + [203688] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9912), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9914), 1, - aux_sym__immediate_decimal_token2, - STATE(5770), 1, + ACTIONS(1983), 1, + sym__entry_separator, + ACTIONS(9948), 1, + anon_sym_DOT_DOT2, + STATE(5826), 1, sym_comment, - ACTIONS(1711), 2, + ACTIONS(1977), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1713), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [204192] = 7, + ACTIONS(9950), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [203709] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9761), 1, + ACTIONS(9773), 1, anon_sym_LPAREN, - ACTIONS(9916), 1, + ACTIONS(9952), 1, anon_sym_DQUOTE2, - STATE(5771), 1, + STATE(5827), 1, sym_comment, - STATE(5772), 1, + STATE(5828), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6484), 1, + STATE(6292), 1, sym_expr_interpolated, - ACTIONS(9763), 2, + ACTIONS(9775), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [204215] = 7, + [203732] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9761), 1, + ACTIONS(9773), 1, anon_sym_LPAREN, - ACTIONS(9918), 1, + ACTIONS(9954), 1, anon_sym_DQUOTE2, - STATE(5748), 1, + STATE(5807), 1, aux_sym__inter_double_quotes_repeat1, - STATE(5772), 1, + STATE(5828), 1, sym_comment, - STATE(6484), 1, + STATE(6292), 1, sym_expr_interpolated, - ACTIONS(9763), 2, + ACTIONS(9775), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [204238] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(9773), 1, - anon_sym_LBRACK, - ACTIONS(9920), 1, - anon_sym_RBRACK, - STATE(5773), 1, - sym_comment, - STATE(6135), 1, - aux_sym_shebang_repeat1, - STATE(6955), 1, - sym_val_list, - STATE(7265), 1, - aux_sym_val_table_repeat1, - [204263] = 4, - ACTIONS(251), 1, + [203755] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1016), 1, - anon_sym_DASH2, - STATE(5774), 1, - sym_comment, - ACTIONS(1012), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [204280] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - ACTIONS(9922), 1, + ACTIONS(9956), 1, anon_sym_RBRACK, - STATE(5775), 1, + STATE(5829), 1, sym_comment, - STATE(6136), 1, + STATE(6131), 1, aux_sym_shebang_repeat1, - STATE(6959), 1, + STATE(6948), 1, sym_val_list, - STATE(7267), 1, + STATE(7253), 1, aux_sym_val_table_repeat1, - [204305] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4622), 1, - anon_sym_DOT_DOT2, - ACTIONS(9857), 1, - aux_sym_unquoted_token2, - STATE(5776), 1, - sym_comment, - ACTIONS(4624), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(9924), 2, - sym_filesize_unit, - sym_duration_unit, - [204326] = 8, - ACTIONS(251), 1, + [203780] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, - anon_sym_LBRACK, - ACTIONS(9926), 1, - anon_sym_RBRACK, - STATE(5777), 1, - sym_comment, - STATE(6137), 1, + ACTIONS(9808), 1, + anon_sym_LBRACE, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(6970), 1, - sym_val_list, - STATE(7271), 1, - aux_sym_val_table_repeat1, - [204351] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4862), 1, - anon_sym_DASH2, - ACTIONS(9928), 1, - sym_long_flag_identifier, - ACTIONS(9930), 1, - anon_sym_EQ2, - STATE(5778), 1, + STATE(4856), 1, + sym_block, + STATE(4907), 1, + sym_val_closure, + STATE(5049), 1, + sym__blosure, + STATE(5830), 1, sym_comment, - ACTIONS(4860), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [204372] = 8, - ACTIONS(251), 1, + [203805] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - ACTIONS(9932), 1, + ACTIONS(9958), 1, anon_sym_RBRACK, - STATE(5779), 1, + STATE(5831), 1, sym_comment, - STATE(6138), 1, + STATE(6132), 1, aux_sym_shebang_repeat1, - STATE(6974), 1, + STATE(6950), 1, sym_val_list, - STATE(7274), 1, + STATE(7255), 1, aux_sym_val_table_repeat1, - [204397] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9761), 1, - anon_sym_LPAREN, - ACTIONS(9934), 1, - anon_sym_DQUOTE2, - STATE(5780), 1, - sym_comment, - STATE(5881), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6484), 1, - sym_expr_interpolated, - ACTIONS(9763), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [204420] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1638), 1, - anon_sym_DASH2, - STATE(5781), 1, - sym_comment, - ACTIONS(1650), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [204437] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5683), 1, - anon_sym_DASH2, - STATE(5782), 1, - sym_comment, - ACTIONS(5685), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [204454] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8681), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9101), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9103), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9105), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(9936), 1, - aux_sym_unquoted_token3, - STATE(5783), 1, - sym_comment, - STATE(6439), 1, - sym__immediate_decimal, - [204479] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8754), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8838), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8840), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8842), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(9936), 1, - aux_sym_unquoted_token3, - STATE(5784), 1, - sym_comment, - STATE(7582), 1, - sym__immediate_decimal, - [204504] = 8, + [203830] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1851), 1, - anon_sym_RBRACE, - ACTIONS(1853), 1, + ACTIONS(6219), 1, sym__entry_separator, - ACTIONS(8873), 1, + ACTIONS(9053), 1, anon_sym_DOT2, - STATE(5406), 1, + ACTIONS(9960), 1, + anon_sym_RBRACE, + STATE(5380), 1, aux_sym_cell_path_repeat1, - STATE(5657), 1, + STATE(5652), 1, sym_path, - STATE(5785), 1, + STATE(5832), 1, sym_comment, - STATE(7418), 1, + STATE(7040), 1, sym_cell_path, - [204529] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4622), 1, - anon_sym_DOT_DOT2, - ACTIONS(9936), 1, - aux_sym_unquoted_token2, - STATE(5786), 1, - sym_comment, - ACTIONS(4624), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(9924), 2, - sym_filesize_unit, - sym_duration_unit, - [204550] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9825), 1, - anon_sym_DOT_DOT2, - STATE(5787), 1, - sym_comment, - ACTIONS(9827), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5928), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [204569] = 4, - ACTIONS(251), 1, + [203855] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5081), 1, - anon_sym_DASH2, - STATE(5788), 1, - sym_comment, - ACTIONS(5079), 5, - ts_builtin_sym_end, + ACTIONS(3842), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(9787), 1, anon_sym_LBRACK, - anon_sym_DASH_DASH, - [204586] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3420), 1, - anon_sym_COLON2, - ACTIONS(8744), 1, - sym_identifier, - ACTIONS(9938), 1, - anon_sym_DOLLAR, - STATE(5696), 1, - sym_val_variable, - STATE(5789), 1, + ACTIONS(9963), 1, + anon_sym_RBRACK, + STATE(5833), 1, sym_comment, - STATE(5980), 1, - sym__variable_name, - STATE(6664), 1, - sym__assignment_pattern, - [204611] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(9793), 1, - anon_sym_LBRACE, - STATE(1800), 1, + STATE(6133), 1, aux_sym_shebang_repeat1, - STATE(4752), 1, - sym_block, - STATE(4753), 1, - sym_val_closure, - STATE(5123), 1, - sym__blosure, - STATE(5790), 1, - sym_comment, - [204636] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5695), 1, - anon_sym_DASH2, - STATE(5791), 1, - sym_comment, - ACTIONS(5697), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [204653] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5792), 1, - sym_comment, - ACTIONS(1993), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(1995), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [204670] = 8, - ACTIONS(251), 1, + STATE(6964), 1, + sym_val_list, + STATE(7260), 1, + aux_sym_val_table_repeat1, + [203880] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - ACTIONS(9940), 1, + ACTIONS(9965), 1, anon_sym_RBRACK, - STATE(5793), 1, + STATE(5834), 1, sym_comment, - STATE(5982), 1, + STATE(6134), 1, aux_sym_shebang_repeat1, - STATE(6960), 1, + STATE(6969), 1, sym_val_list, - STATE(7056), 1, + STATE(7263), 1, aux_sym_val_table_repeat1, - [204695] = 7, + [203905] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9761), 1, - anon_sym_LPAREN, - ACTIONS(9942), 1, - anon_sym_DQUOTE2, - STATE(5794), 1, + ACTIONS(7434), 1, + anon_sym_RBRACK, + ACTIONS(7436), 1, + sym__entry_separator, + ACTIONS(9053), 1, + anon_sym_DOT2, + STATE(5380), 1, + aux_sym_cell_path_repeat1, + STATE(5652), 1, + sym_path, + STATE(5835), 1, sym_comment, - STATE(5808), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6484), 1, - sym_expr_interpolated, - ACTIONS(9763), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [204718] = 8, - ACTIONS(3), 1, + STATE(7314), 1, + sym_cell_path, + [203930] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5619), 1, - aux_sym_unquoted_token3, - ACTIONS(8681), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9101), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9103), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9105), 1, - aux_sym__immediate_decimal_token5, - STATE(5795), 1, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(9808), 1, + anon_sym_LBRACE, + STATE(4856), 1, + sym_block, + STATE(4907), 1, + sym_val_closure, + STATE(5049), 1, + sym__blosure, + STATE(5836), 1, sym_comment, - STATE(6439), 1, - sym__immediate_decimal, - [204743] = 4, - ACTIONS(251), 1, + STATE(5860), 1, + aux_sym_shebang_repeat1, + [203955] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1941), 1, + ACTIONS(5689), 1, anon_sym_DASH2, - STATE(5796), 1, + STATE(5837), 1, sym_comment, - ACTIONS(1943), 5, + ACTIONS(5691), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DASH_DASH, - [204760] = 4, - ACTIONS(251), 1, + anon_sym_LBRACE, + [203972] = 4, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(2489), 1, anon_sym_DASH2, - STATE(5797), 1, + STATE(5838), 1, sym_comment, ACTIONS(2491), 5, ts_builtin_sym_end, @@ -412015,34313 +415113,33441 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [204777] = 4, - ACTIONS(251), 1, + [203989] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2446), 1, - anon_sym_DASH2, - STATE(5798), 1, + ACTIONS(1991), 1, + sym__entry_separator, + ACTIONS(9967), 1, + anon_sym_DOT_DOT2, + STATE(5839), 1, sym_comment, - ACTIONS(2448), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(1985), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(9969), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [204010] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4861), 1, + anon_sym_DOLLAR, + ACTIONS(9971), 1, + anon_sym_EQ2, + ACTIONS(9973), 1, + sym_short_flag_identifier, + STATE(5840), 1, + sym_comment, + ACTIONS(4863), 3, + sym_identifier, anon_sym_DASH_DASH, - [204794] = 8, - ACTIONS(251), 1, + anon_sym_DASH2, + [204031] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9835), 1, - sym__newline, - ACTIONS(9837), 1, - anon_sym_SEMI, - ACTIONS(9944), 1, - anon_sym_RPAREN, - STATE(301), 1, - aux_sym__parenthesized_body_repeat1, - STATE(5799), 1, + ACTIONS(1562), 1, + aux_sym_unquoted_token2, + ACTIONS(8772), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8774), 1, + aux_sym__immediate_decimal_token5, + STATE(5841), 1, sym_comment, - STATE(6290), 1, - aux_sym__block_body_repeat1, - STATE(7296), 1, - aux_sym_shebang_repeat1, - [204819] = 4, - ACTIONS(251), 1, + STATE(7611), 1, + sym__immediate_decimal, + ACTIONS(8770), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [204054] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2501), 1, - anon_sym_DASH2, - STATE(5800), 1, + ACTIONS(9704), 1, + anon_sym_alias, + ACTIONS(9706), 1, + anon_sym_const, + ACTIONS(9708), 1, + anon_sym_def, + ACTIONS(9710), 1, + anon_sym_extern, + ACTIONS(9712), 1, + anon_sym_module, + ACTIONS(9714), 1, + anon_sym_use, + STATE(5842), 1, sym_comment, - ACTIONS(2503), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [204836] = 8, - ACTIONS(251), 1, + [204079] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3420), 1, - anon_sym_COLON2, - ACTIONS(8744), 1, - sym_identifier, - ACTIONS(9938), 1, + ACTIONS(9975), 1, + anon_sym_EQ2, + ACTIONS(9977), 1, + sym_short_flag_identifier, + STATE(5843), 1, + sym_comment, + ACTIONS(4861), 2, anon_sym_DOLLAR, - STATE(5696), 1, - sym_val_variable, - STATE(5801), 1, + anon_sym_LBRACE, + ACTIONS(4863), 2, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [204100] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6313), 1, + anon_sym_LBRACE, + STATE(5844), 1, sym_comment, - STATE(5980), 1, - sym__variable_name, - STATE(6665), 1, - sym__assignment_pattern, - [204861] = 8, - ACTIONS(3), 1, + STATE(6188), 1, + sym_block, + ACTIONS(9979), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [204119] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5619), 1, - aux_sym_unquoted_token3, - ACTIONS(8754), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8838), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8840), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8842), 1, - aux_sym__immediate_decimal_token5, - STATE(5802), 1, + ACTIONS(9681), 1, + aux_sym__immediate_decimal_token2, + STATE(5845), 1, sym_comment, - STATE(7582), 1, - sym__immediate_decimal, - [204886] = 8, - ACTIONS(251), 1, + ACTIONS(1701), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1703), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [204138] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3442), 1, - anon_sym_COLON2, - ACTIONS(8744), 1, - sym_identifier, - ACTIONS(9938), 1, - anon_sym_DOLLAR, - STATE(5696), 1, - sym_val_variable, - STATE(5803), 1, + ACTIONS(6313), 1, + anon_sym_LBRACE, + STATE(5846), 1, sym_comment, - STATE(5980), 1, - sym__variable_name, - STATE(6664), 1, - sym__assignment_pattern, - [204911] = 8, - ACTIONS(251), 1, + STATE(6192), 1, + sym_block, + ACTIONS(9979), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [204157] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3442), 1, + ACTIONS(3444), 1, anon_sym_COLON2, - ACTIONS(8744), 1, + ACTIONS(8788), 1, sym_identifier, - ACTIONS(9938), 1, + ACTIONS(9751), 1, anon_sym_DOLLAR, - STATE(5696), 1, + STATE(5653), 1, sym_val_variable, - STATE(5804), 1, + STATE(5847), 1, sym_comment, - STATE(5980), 1, + STATE(6018), 1, sym__variable_name, - STATE(6665), 1, + STATE(6181), 1, sym__assignment_pattern, - [204936] = 8, - ACTIONS(251), 1, + [204182] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3442), 1, + ACTIONS(3444), 1, anon_sym_COLON2, - ACTIONS(8744), 1, + ACTIONS(8788), 1, sym_identifier, - ACTIONS(9938), 1, + ACTIONS(9751), 1, anon_sym_DOLLAR, - STATE(5696), 1, + STATE(5653), 1, sym_val_variable, - STATE(5805), 1, + STATE(5848), 1, sym_comment, - STATE(5980), 1, + STATE(6018), 1, sym__variable_name, - STATE(6666), 1, + STATE(6182), 1, sym__assignment_pattern, - [204961] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5679), 1, - anon_sym_DASH2, - STATE(5806), 1, - sym_comment, - ACTIONS(5681), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [204978] = 8, - ACTIONS(251), 1, + [204207] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3420), 1, + ACTIONS(3444), 1, anon_sym_COLON2, - ACTIONS(8744), 1, + ACTIONS(8788), 1, sym_identifier, - ACTIONS(9938), 1, + ACTIONS(9751), 1, anon_sym_DOLLAR, - STATE(5696), 1, + STATE(5653), 1, sym_val_variable, - STATE(5807), 1, + STATE(5849), 1, sym_comment, - STATE(5980), 1, + STATE(6018), 1, sym__variable_name, - STATE(6666), 1, + STATE(6183), 1, sym__assignment_pattern, - [205003] = 7, + [204232] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9761), 1, - anon_sym_LPAREN, - ACTIONS(9946), 1, - anon_sym_DQUOTE2, - STATE(5748), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(5808), 1, + STATE(5850), 1, sym_comment, - STATE(6484), 1, - sym_expr_interpolated, - ACTIONS(9763), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [205026] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(9773), 1, - anon_sym_LBRACK, - ACTIONS(9948), 1, + ACTIONS(986), 3, anon_sym_RBRACK, - STATE(5809), 1, - sym_comment, - STATE(6098), 1, - aux_sym_shebang_repeat1, - STATE(7125), 1, - sym_val_list, - STATE(7166), 1, - aux_sym_val_table_repeat1, - [205051] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7078), 1, - aux_sym_unquoted_token3, - ACTIONS(8681), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9101), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9103), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9105), 1, - aux_sym__immediate_decimal_token5, - STATE(5810), 1, - sym_comment, - STATE(6439), 1, - sym__immediate_decimal, - [205076] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7138), 1, - aux_sym_unquoted_token3, - ACTIONS(8681), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9101), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9103), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9105), 1, - aux_sym__immediate_decimal_token5, - STATE(5811), 1, - sym_comment, - STATE(6439), 1, - sym__immediate_decimal, - [205101] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7138), 1, - aux_sym_unquoted_token3, - ACTIONS(8754), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8838), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8840), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8842), 1, - aux_sym__immediate_decimal_token5, - STATE(5812), 1, - sym_comment, - STATE(7582), 1, - sym__immediate_decimal, - [205126] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4622), 1, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - ACTIONS(7138), 1, - aux_sym_unquoted_token2, - STATE(5813), 1, - sym_comment, - ACTIONS(4624), 2, + ACTIONS(988), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(9924), 2, - sym_filesize_unit, - sym_duration_unit, - [205147] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9950), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9952), 1, - aux_sym__immediate_decimal_token2, - STATE(5814), 1, - sym_comment, - ACTIONS(1711), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1713), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [205168] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7078), 1, - aux_sym_unquoted_token3, - ACTIONS(8754), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8838), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8840), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8842), 1, - aux_sym__immediate_decimal_token5, - STATE(5815), 1, - sym_comment, - STATE(7582), 1, - sym__immediate_decimal, - [205193] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9954), 1, - anon_sym_DOT, - ACTIONS(9956), 1, - aux_sym__immediate_decimal_token2, - STATE(5816), 1, - sym_comment, - ACTIONS(1755), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1757), 2, - anon_sym_LPAREN2, sym__entry_separator, - [205214] = 7, - ACTIONS(3), 1, + [204249] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9761), 1, - anon_sym_LPAREN, - ACTIONS(9958), 1, - anon_sym_DQUOTE2, - STATE(5748), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(5817), 1, - sym_comment, - STATE(6484), 1, - sym_expr_interpolated, - ACTIONS(9763), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [205237] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5818), 1, - sym_comment, - ACTIONS(1719), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + ACTIONS(9981), 1, anon_sym_DOT_DOT2, - ACTIONS(1721), 3, + STATE(5851), 1, + sym_comment, + ACTIONS(1814), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(9983), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [205254] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6284), 1, - anon_sym_LBRACE, - STATE(5819), 1, - sym_comment, - STATE(6659), 1, - sym_block, - ACTIONS(9960), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [205273] = 4, - ACTIONS(251), 1, + [204270] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2452), 1, + ACTIONS(5661), 1, anon_sym_DASH2, - STATE(5820), 1, + STATE(5852), 1, sym_comment, - ACTIONS(2454), 5, + ACTIONS(5663), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DASH_DASH, - [205290] = 4, - ACTIONS(251), 1, + anon_sym_LBRACE, + [204287] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2456), 1, + ACTIONS(5120), 1, anon_sym_DASH2, - STATE(5821), 1, + STATE(5853), 1, sym_comment, - ACTIONS(2458), 5, + ACTIONS(5118), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [205307] = 8, - ACTIONS(251), 1, + [204304] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2049), 1, + sym__entry_separator, + ACTIONS(9985), 1, + anon_sym_DOT_DOT2, + STATE(5854), 1, + sym_comment, + ACTIONS(2043), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(9987), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [204325] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - ACTIONS(9962), 1, + ACTIONS(9989), 1, anon_sym_RBRACK, - STATE(5822), 1, + STATE(5855), 1, sym_comment, - STATE(6113), 1, + STATE(5949), 1, aux_sym_shebang_repeat1, - STATE(6772), 1, + STATE(7046), 1, sym_val_list, - STATE(7193), 1, + STATE(7137), 1, aux_sym_val_table_repeat1, - [205332] = 8, - ACTIONS(251), 1, + [204350] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(5665), 1, + anon_sym_DASH2, + STATE(5856), 1, + sym_comment, + ACTIONS(5667), 5, + ts_builtin_sym_end, sym__newline, - ACTIONS(9773), 1, - anon_sym_LBRACK, - ACTIONS(9964), 1, - anon_sym_RBRACK, - STATE(5823), 1, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [204367] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2413), 1, + anon_sym_DASH2, + STATE(5857), 1, sym_comment, - STATE(6099), 1, - aux_sym_shebang_repeat1, - STATE(7148), 1, - sym_val_list, - STATE(7168), 1, - aux_sym_val_table_repeat1, - [205357] = 7, + ACTIONS(2415), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + [204384] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9761), 1, - anon_sym_LPAREN, - ACTIONS(9966), 1, - anon_sym_DQUOTE2, - STATE(5748), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(5824), 1, + ACTIONS(2077), 1, + anon_sym_LBRACE, + ACTIONS(2079), 1, + aux_sym_unquoted_token4, + STATE(5858), 1, sym_comment, - STATE(6484), 1, - sym_expr_interpolated, - ACTIONS(9763), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [205380] = 6, - ACTIONS(251), 1, + ACTIONS(2073), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [204403] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4622), 1, - anon_sym_DOT_DOT2, - ACTIONS(7078), 1, - aux_sym_unquoted_token2, - STATE(5825), 1, + ACTIONS(2079), 1, + aux_sym_unquoted_token4, + ACTIONS(2083), 1, + anon_sym_LBRACE, + STATE(5859), 1, sym_comment, - ACTIONS(4624), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(9924), 2, - sym_filesize_unit, - sym_duration_unit, - [205401] = 5, - ACTIONS(251), 1, + ACTIONS(2081), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [204422] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9702), 1, - aux_sym__immediate_decimal_token2, - STATE(5826), 1, - sym_comment, - ACTIONS(1755), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1757), 3, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(9808), 1, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [205420] = 7, - ACTIONS(3), 1, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(4856), 1, + sym_block, + STATE(4907), 1, + sym_val_closure, + STATE(5067), 1, + sym__blosure, + STATE(5860), 1, + sym_comment, + [204447] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9761), 1, - anon_sym_LPAREN, - ACTIONS(9968), 1, - anon_sym_DQUOTE2, - STATE(5827), 1, + STATE(5861), 1, sym_comment, - STATE(5842), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6484), 1, - sym_expr_interpolated, - ACTIONS(9763), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [205443] = 4, - ACTIONS(251), 1, + ACTIONS(1288), 6, + sym_raw_string_begin, + sym_identifier, + sym__newline, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [204462] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6360), 1, + ACTIONS(1917), 1, anon_sym_DASH2, - STATE(5828), 1, + STATE(5862), 1, sym_comment, - ACTIONS(6358), 5, + ACTIONS(1919), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [205460] = 4, - ACTIONS(251), 1, + [204479] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2414), 1, + ACTIONS(2385), 1, anon_sym_DASH2, - STATE(5829), 1, + STATE(5863), 1, sym_comment, - ACTIONS(2416), 5, + ACTIONS(2387), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [205477] = 4, - ACTIONS(251), 1, + [204496] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2478), 1, + ACTIONS(2407), 1, anon_sym_DASH2, - STATE(5830), 1, + STATE(5864), 1, sym_comment, - ACTIONS(2480), 5, + ACTIONS(2409), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [205494] = 6, - ACTIONS(3), 1, + [204513] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2049), 1, - sym__entry_separator, - ACTIONS(9970), 1, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(9808), 1, + anon_sym_LBRACE, + STATE(4856), 1, + sym_block, + STATE(4907), 1, + sym_val_closure, + STATE(5029), 1, + sym__blosure, + STATE(5732), 1, + aux_sym_shebang_repeat1, + STATE(5865), 1, + sym_comment, + [204538] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1826), 1, + aux_sym_unquoted_token2, + ACTIONS(9991), 1, anon_sym_DOT_DOT2, - STATE(5831), 1, + STATE(5866), 1, sym_comment, - ACTIONS(2043), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(9972), 2, + ACTIONS(1824), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(9993), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [205515] = 5, - ACTIONS(251), 1, + [204559] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9974), 1, + ACTIONS(9995), 1, anon_sym_DOT_DOT2, - STATE(5832), 1, + STATE(5867), 1, sym_comment, - ACTIONS(9976), 2, + ACTIONS(9997), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(2049), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [205534] = 5, - ACTIONS(251), 1, + [204578] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8694), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8873), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8875), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8877), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(9999), 1, + aux_sym_unquoted_token3, + STATE(5868), 1, + sym_comment, + STATE(6333), 1, + sym__immediate_decimal, + [204603] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8770), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8881), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8883), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8885), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(9999), 1, + aux_sym_unquoted_token3, + STATE(5869), 1, + sym_comment, + STATE(7855), 1, + sym__immediate_decimal, + [204628] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9978), 1, + ACTIONS(10001), 1, anon_sym_DOT_DOT2, - STATE(5833), 1, + STATE(5870), 1, sym_comment, - ACTIONS(9980), 2, + ACTIONS(10003), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2025), 3, + ACTIONS(2036), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [205553] = 5, - ACTIONS(251), 1, + [204647] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9982), 1, + ACTIONS(10005), 1, anon_sym_DOT_DOT2, - STATE(5834), 1, + STATE(5871), 1, sym_comment, - ACTIONS(9984), 2, + ACTIONS(10007), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2033), 3, + ACTIONS(1983), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [205572] = 5, - ACTIONS(251), 1, + [204666] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9986), 1, + ACTIONS(10009), 1, anon_sym_DOT_DOT2, - STATE(5835), 1, + STATE(5872), 1, sym_comment, - ACTIONS(9988), 2, + ACTIONS(10011), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2041), 3, + ACTIONS(1991), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [205591] = 8, - ACTIONS(3), 1, + [204685] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8681), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9097), 1, - aux_sym_unquoted_token3, - ACTIONS(9101), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9103), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9105), 1, - aux_sym__immediate_decimal_token5, - STATE(5836), 1, + ACTIONS(1877), 1, + anon_sym_DASH2, + STATE(5873), 1, sym_comment, - STATE(6439), 1, - sym__immediate_decimal, - [205616] = 4, + ACTIONS(1879), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + [204702] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3536), 1, + ACTIONS(3609), 1, sym__space, - STATE(5837), 1, + STATE(5874), 1, sym_comment, - ACTIONS(2120), 5, + ACTIONS(2154), 5, sym__newline, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH2, anon_sym_LBRACE, - [205633] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8754), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8838), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8840), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8842), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(9097), 1, - aux_sym_unquoted_token3, - STATE(5838), 1, - sym_comment, - STATE(7582), 1, - sym__immediate_decimal, - [205658] = 6, - ACTIONS(251), 1, + [204719] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1822), 1, + ACTIONS(1693), 1, aux_sym_unquoted_token2, - ACTIONS(9990), 1, - anon_sym_DOT_DOT2, - STATE(5839), 1, + ACTIONS(10013), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(10015), 1, + aux_sym__immediate_decimal_token2, + STATE(5875), 1, sym_comment, - ACTIONS(1820), 2, + ACTIONS(1695), 3, anon_sym_PIPE, + anon_sym_if, anon_sym_EQ_GT, - ACTIONS(9992), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [205679] = 4, - ACTIONS(251), 1, + [204740] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2468), 1, - anon_sym_DASH2, - STATE(5840), 1, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(9808), 1, + anon_sym_LBRACE, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(4856), 1, + sym_block, + STATE(4907), 1, + sym_val_closure, + STATE(5017), 1, + sym__blosure, + STATE(5876), 1, sym_comment, - ACTIONS(2470), 5, - ts_builtin_sym_end, + [204765] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3842), 1, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [205696] = 4, - ACTIONS(251), 1, + ACTIONS(9808), 1, + anon_sym_LBRACE, + STATE(4856), 1, + sym_block, + STATE(4907), 1, + sym_val_closure, + STATE(5017), 1, + sym__blosure, + STATE(5814), 1, + aux_sym_shebang_repeat1, + STATE(5877), 1, + sym_comment, + [204790] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2320), 1, + ACTIONS(5148), 1, anon_sym_DASH2, - STATE(5841), 1, + STATE(5878), 1, sym_comment, - ACTIONS(2322), 5, + ACTIONS(5146), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [205713] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9761), 1, - anon_sym_LPAREN, - ACTIONS(9994), 1, - anon_sym_DQUOTE2, - STATE(5748), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(5842), 1, - sym_comment, - STATE(6484), 1, - sym_expr_interpolated, - ACTIONS(9763), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [205736] = 8, - ACTIONS(251), 1, + [204807] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - ACTIONS(9996), 1, + ACTIONS(10017), 1, anon_sym_RBRACK, - STATE(5843), 1, + STATE(5879), 1, sym_comment, - STATE(6102), 1, + STATE(6123), 1, aux_sym_shebang_repeat1, - STATE(6717), 1, + STATE(7095), 1, sym_val_list, - STATE(7174), 1, + STATE(7226), 1, aux_sym_val_table_repeat1, - [205761] = 8, - ACTIONS(251), 1, + [204832] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - ACTIONS(9998), 1, + ACTIONS(10019), 1, anon_sym_RBRACK, - STATE(5844), 1, + STATE(5880), 1, sym_comment, - STATE(6050), 1, + STATE(6124), 1, aux_sym_shebang_repeat1, - STATE(7047), 1, + STATE(7098), 1, sym_val_list, - STATE(7122), 1, + STATE(7228), 1, aux_sym_val_table_repeat1, - [205786] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7426), 1, - anon_sym_RBRACK, - ACTIONS(7428), 1, - sym__entry_separator, - ACTIONS(8873), 1, - anon_sym_DOT2, - STATE(5406), 1, - aux_sym_cell_path_repeat1, - STATE(5657), 1, - sym_path, - STATE(5845), 1, - sym_comment, - STATE(7343), 1, - sym_cell_path, - [205811] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2324), 1, - anon_sym_DASH2, - STATE(5846), 1, - sym_comment, - ACTIONS(2326), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [205828] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5037), 1, - anon_sym_DASH2, - STATE(5847), 1, - sym_comment, - ACTIONS(5035), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [205845] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1917), 1, - anon_sym_DASH2, - STATE(5848), 1, - sym_comment, - ACTIONS(1919), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [205862] = 4, - ACTIONS(251), 1, + [204857] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5687), 1, - anon_sym_DASH2, - STATE(5849), 1, + ACTIONS(10021), 1, + anon_sym_DOT_DOT2, + STATE(5881), 1, sym_comment, - ACTIONS(5689), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [205879] = 4, - ACTIONS(251), 1, + ACTIONS(10023), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(6004), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [204876] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2328), 1, + ACTIONS(5152), 1, anon_sym_DASH2, - STATE(5850), 1, + STATE(5882), 1, sym_comment, - ACTIONS(2330), 5, + ACTIONS(5150), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [205896] = 8, - ACTIONS(251), 1, + [204893] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9793), 1, + ACTIONS(9808), 1, anon_sym_LBRACE, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(4752), 1, + STATE(4856), 1, sym_block, - STATE(4753), 1, + STATE(4907), 1, sym_val_closure, - STATE(4990), 1, + STATE(5018), 1, sym__blosure, - STATE(5851), 1, + STATE(5883), 1, sym_comment, - [205921] = 5, - ACTIONS(251), 1, + [204918] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6284), 1, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(9808), 1, anon_sym_LBRACE, - STATE(5852), 1, - sym_comment, - STATE(6260), 1, + STATE(4856), 1, sym_block, - ACTIONS(10000), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [205940] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(9773), 1, - anon_sym_LBRACK, - ACTIONS(10002), 1, - anon_sym_RBRACK, - STATE(5853), 1, - sym_comment, - STATE(6127), 1, + STATE(4907), 1, + sym_val_closure, + STATE(5018), 1, + sym__blosure, + STATE(5830), 1, aux_sym_shebang_repeat1, - STATE(7099), 1, - sym_val_list, - STATE(7237), 1, - aux_sym_val_table_repeat1, - [205965] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(9773), 1, - anon_sym_LBRACK, - ACTIONS(10004), 1, - anon_sym_RBRACK, - STATE(5854), 1, + STATE(5884), 1, sym_comment, - STATE(6128), 1, - aux_sym_shebang_repeat1, - STATE(7104), 1, - sym_val_list, - STATE(7239), 1, - aux_sym_val_table_repeat1, - [205990] = 4, - ACTIONS(251), 1, + [204943] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2332), 1, - anon_sym_DASH2, - STATE(5855), 1, + ACTIONS(1927), 1, + anon_sym_RBRACE, + ACTIONS(1929), 1, + sym__entry_separator, + ACTIONS(9053), 1, + anon_sym_DOT2, + STATE(5380), 1, + aux_sym_cell_path_repeat1, + STATE(5652), 1, + sym_path, + STATE(5885), 1, sym_comment, - ACTIONS(2334), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [206007] = 4, - ACTIONS(251), 1, + STATE(7291), 1, + sym_cell_path, + [204968] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1937), 1, - anon_sym_DASH2, - STATE(5856), 1, + STATE(5886), 1, sym_comment, - ACTIONS(1939), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [206024] = 4, - ACTIONS(251), 1, + ACTIONS(2010), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(2012), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [204985] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1949), 1, + ACTIONS(1833), 1, anon_sym_DASH2, - STATE(5857), 1, + STATE(5887), 1, sym_comment, - ACTIONS(1951), 5, + ACTIONS(1835), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [206041] = 4, - ACTIONS(251), 1, + [205002] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1953), 1, - anon_sym_DASH2, - STATE(5858), 1, + STATE(5888), 1, sym_comment, - ACTIONS(1955), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [206058] = 4, - ACTIONS(251), 1, + ACTIONS(1701), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1703), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [205019] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5691), 1, + ACTIONS(1861), 1, anon_sym_DASH2, - STATE(5859), 1, + STATE(5889), 1, sym_comment, - ACTIONS(5693), 5, + ACTIONS(1863), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [206075] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(9773), 1, anon_sym_LBRACK, - ACTIONS(10006), 1, - anon_sym_RBRACK, - STATE(5860), 1, - sym_comment, - STATE(6103), 1, - aux_sym_shebang_repeat1, - STATE(6721), 1, - sym_val_list, - STATE(7176), 1, - aux_sym_val_table_repeat1, - [206100] = 6, - ACTIONS(251), 1, + anon_sym_DASH_DASH, + [205036] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10008), 1, - anon_sym_EQ2, - ACTIONS(10010), 1, - sym_short_flag_identifier, - STATE(5861), 1, + ACTIONS(4608), 1, + anon_sym_DOT_DOT2, + ACTIONS(9999), 1, + aux_sym_unquoted_token2, + STATE(5890), 1, sym_comment, - ACTIONS(4839), 2, - anon_sym_DOLLAR, - anon_sym_LBRACE, - ACTIONS(4841), 2, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [206121] = 4, - ACTIONS(251), 1, + ACTIONS(4610), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(9771), 2, + sym_filesize_unit, + sym_duration_unit, + [205057] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10012), 1, + ACTIONS(10025), 1, anon_sym_LT, - STATE(5862), 1, + STATE(5891), 1, sym_comment, - ACTIONS(7991), 5, + ACTIONS(7849), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [206138] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9761), 1, - anon_sym_LPAREN, - ACTIONS(10014), 1, - anon_sym_DQUOTE2, - STATE(5863), 1, - sym_comment, - STATE(5871), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6484), 1, - sym_expr_interpolated, - ACTIONS(9763), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [206161] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4644), 1, - aux_sym_unquoted_token3, - ACTIONS(8681), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9101), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9103), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9105), 1, - aux_sym__immediate_decimal_token5, - STATE(5864), 1, - sym_comment, - STATE(6439), 1, - sym__immediate_decimal, - [206186] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4644), 1, - aux_sym_unquoted_token3, - ACTIONS(8754), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8838), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8840), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8842), 1, - aux_sym__immediate_decimal_token5, - STATE(5865), 1, - sym_comment, - STATE(7582), 1, - sym__immediate_decimal, - [206211] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2140), 1, - anon_sym_LBRACE, - ACTIONS(2142), 1, - aux_sym_unquoted_token4, - STATE(5866), 1, - sym_comment, - ACTIONS(2136), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [206230] = 5, - ACTIONS(3), 1, + [205074] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2142), 1, - aux_sym_unquoted_token4, - ACTIONS(2146), 1, - anon_sym_LBRACE, - STATE(5867), 1, - sym_comment, - ACTIONS(2144), 4, + ACTIONS(3442), 1, + anon_sym_COLON2, + ACTIONS(8788), 1, sym_identifier, + ACTIONS(9751), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [206249] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2336), 1, - anon_sym_DASH2, - STATE(5868), 1, - sym_comment, - ACTIONS(2338), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [206266] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1965), 1, - anon_sym_DASH2, - STATE(5869), 1, - sym_comment, - ACTIONS(1967), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [206283] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9712), 1, - anon_sym_def, - ACTIONS(9714), 1, - anon_sym_extern, - ACTIONS(9716), 1, - anon_sym_module, - ACTIONS(9718), 1, - anon_sym_use, - ACTIONS(10016), 1, - anon_sym_alias, - ACTIONS(10018), 1, - anon_sym_const, - STATE(5870), 1, - sym_comment, - [206308] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9761), 1, - anon_sym_LPAREN, - ACTIONS(10020), 1, - anon_sym_DQUOTE2, - STATE(5748), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(5871), 1, + STATE(5653), 1, + sym_val_variable, + STATE(5892), 1, sym_comment, - STATE(6484), 1, - sym_expr_interpolated, - ACTIONS(9763), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [206331] = 8, - ACTIONS(251), 1, + STATE(6018), 1, + sym__variable_name, + STATE(6181), 1, + sym__assignment_pattern, + [205099] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(9773), 1, - anon_sym_LBRACK, - ACTIONS(10022), 1, - anon_sym_RBRACK, - STATE(5872), 1, + ACTIONS(10027), 1, + anon_sym_LT, + STATE(5893), 1, sym_comment, - STATE(5929), 1, - aux_sym_shebang_repeat1, - STATE(6738), 1, - sym_val_list, - STATE(7182), 1, - aux_sym_val_table_repeat1, - [206356] = 7, - ACTIONS(251), 1, + ACTIONS(7849), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [205116] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1540), 1, + ACTIONS(1457), 1, aux_sym_unquoted_token2, - ACTIONS(8756), 1, + ACTIONS(8772), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8758), 1, + ACTIONS(8774), 1, aux_sym__immediate_decimal_token5, - STATE(5873), 1, + STATE(5894), 1, sym_comment, - STATE(7676), 1, + STATE(7704), 1, sym__immediate_decimal, - ACTIONS(8754), 2, + ACTIONS(8770), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - [206379] = 4, - ACTIONS(251), 1, + [205139] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2342), 1, - anon_sym_DASH2, - STATE(5874), 1, + ACTIONS(3442), 1, + anon_sym_COLON2, + ACTIONS(8788), 1, + sym_identifier, + ACTIONS(9751), 1, + anon_sym_DOLLAR, + STATE(5653), 1, + sym_val_variable, + STATE(5895), 1, sym_comment, - ACTIONS(2344), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [206396] = 4, - ACTIONS(251), 1, + STATE(6018), 1, + sym__variable_name, + STATE(6182), 1, + sym__assignment_pattern, + [205164] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2346), 1, + ACTIONS(2310), 1, anon_sym_DASH2, - STATE(5875), 1, + STATE(5896), 1, sym_comment, - ACTIONS(2348), 5, + ACTIONS(2312), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [206413] = 4, - ACTIONS(251), 1, + [205181] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1969), 1, - anon_sym_DASH2, - STATE(5876), 1, - sym_comment, - ACTIONS(1971), 5, - ts_builtin_sym_end, + ACTIONS(9795), 1, sym__newline, + ACTIONS(9797), 1, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [206430] = 4, - ACTIONS(251), 1, + ACTIONS(10029), 1, + anon_sym_RPAREN, + STATE(304), 1, + aux_sym__parenthesized_body_repeat1, + STATE(5897), 1, + sym_comment, + STATE(6231), 1, + aux_sym__block_body_repeat1, + STATE(6958), 1, + aux_sym_shebang_repeat1, + [205206] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5055), 1, + ACTIONS(1885), 1, anon_sym_DASH2, - STATE(5877), 1, + STATE(5898), 1, sym_comment, - ACTIONS(5053), 5, + ACTIONS(1887), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [206447] = 4, - ACTIONS(251), 1, + [205223] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5059), 1, - anon_sym_DASH2, - STATE(5878), 1, + STATE(5899), 1, sym_comment, - ACTIONS(5057), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [206464] = 4, - ACTIONS(251), 1, + ACTIONS(1693), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1695), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [205240] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1905), 1, + ACTIONS(1639), 1, anon_sym_DASH2, - STATE(5879), 1, + STATE(5900), 1, sym_comment, - ACTIONS(1907), 5, + ACTIONS(1651), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [206481] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(10024), 1, - anon_sym_LT, - STATE(5880), 1, - sym_comment, - ACTIONS(7991), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [206498] = 7, + [205257] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9761), 1, - anon_sym_LPAREN, - ACTIONS(10026), 1, - anon_sym_DQUOTE2, - STATE(5748), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(5881), 1, + STATE(5901), 1, sym_comment, - STATE(6484), 1, - sym_expr_interpolated, - ACTIONS(9763), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [206521] = 4, - ACTIONS(251), 1, + ACTIONS(2026), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(2028), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [205274] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2350), 1, - anon_sym_DASH2, - STATE(5882), 1, + ACTIONS(6313), 1, + anon_sym_LBRACE, + STATE(5902), 1, sym_comment, - ACTIONS(2352), 5, - ts_builtin_sym_end, + STATE(6562), 1, + sym_block, + ACTIONS(10031), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [206538] = 4, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [205293] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2354), 1, + ACTIONS(5124), 1, anon_sym_DASH2, - STATE(5883), 1, + STATE(5903), 1, sym_comment, - ACTIONS(2356), 5, + ACTIONS(5122), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [206555] = 4, - ACTIONS(251), 1, + [205310] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1983), 1, + ACTIONS(5128), 1, anon_sym_DASH2, - STATE(5884), 1, + STATE(5904), 1, sym_comment, - ACTIONS(1985), 5, + ACTIONS(5126), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [206572] = 4, - ACTIONS(251), 1, + [205327] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5885), 1, + ACTIONS(10033), 1, + aux_sym__immediate_decimal_token2, + STATE(5905), 1, sym_comment, - ACTIONS(1755), 2, + ACTIONS(1766), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1757), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(1768), 3, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [206589] = 4, - ACTIONS(251), 1, + [205346] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2358), 1, + ACTIONS(2429), 1, anon_sym_DASH2, - STATE(5886), 1, + STATE(5906), 1, sym_comment, - ACTIONS(2360), 5, + ACTIONS(2431), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [206606] = 4, - ACTIONS(251), 1, + [205363] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2362), 1, + ACTIONS(2314), 1, anon_sym_DASH2, - STATE(5887), 1, + STATE(5907), 1, sym_comment, - ACTIONS(2364), 5, + ACTIONS(2316), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [206623] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(9793), 1, - anon_sym_LBRACE, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4752), 1, - sym_block, - STATE(4753), 1, - sym_val_closure, - STATE(5064), 1, - sym__blosure, - STATE(5888), 1, - sym_comment, - [206648] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(9773), 1, - anon_sym_LBRACK, - ACTIONS(10028), 1, - anon_sym_RBRACK, - STATE(5889), 1, - sym_comment, - STATE(6108), 1, - aux_sym_shebang_repeat1, - STATE(6742), 1, - sym_val_list, - STATE(7184), 1, - aux_sym_val_table_repeat1, - [206673] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5890), 1, - sym_comment, - ACTIONS(1711), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1713), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [206690] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6284), 1, - anon_sym_LBRACE, - STATE(5891), 1, - sym_comment, - STATE(6660), 1, - sym_block, - ACTIONS(9960), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [206709] = 4, - ACTIONS(251), 1, + [205380] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5892), 1, + STATE(5908), 1, sym_comment, - ACTIONS(1783), 2, + ACTIONS(1766), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1785), 4, + ACTIONS(1768), 4, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [206726] = 4, - ACTIONS(251), 1, + [205397] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5893), 1, + STATE(5909), 1, sym_comment, - ACTIONS(1835), 2, + ACTIONS(1792), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1837), 4, + ACTIONS(1794), 4, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [206743] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(9793), 1, - anon_sym_LBRACE, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4752), 1, - sym_block, - STATE(4753), 1, - sym_val_closure, - STATE(5065), 1, - sym__blosure, - STATE(5894), 1, - sym_comment, - [206768] = 4, - ACTIONS(251), 1, + [205414] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5097), 1, + ACTIONS(2330), 1, anon_sym_DASH2, - STATE(5895), 1, + STATE(5910), 1, sym_comment, - ACTIONS(5095), 5, + ACTIONS(2332), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [206785] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(9793), 1, - anon_sym_LBRACE, - STATE(4752), 1, - sym_block, - STATE(4753), 1, - sym_val_closure, - STATE(5065), 1, - sym__blosure, - STATE(5851), 1, - aux_sym_shebang_repeat1, - STATE(5896), 1, - sym_comment, - [206810] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9761), 1, - anon_sym_LPAREN, - ACTIONS(10030), 1, - anon_sym_DQUOTE2, - STATE(5817), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(5897), 1, - sym_comment, - STATE(6484), 1, - sym_expr_interpolated, - ACTIONS(9763), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [206833] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(9793), 1, - anon_sym_LBRACE, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4752), 1, - sym_block, - STATE(4753), 1, - sym_val_closure, - STATE(5069), 1, - sym__blosure, - STATE(5898), 1, - sym_comment, - [206858] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(9793), 1, - anon_sym_LBRACE, - STATE(4752), 1, - sym_block, - STATE(4753), 1, - sym_val_closure, - STATE(5069), 1, - sym__blosure, - STATE(5712), 1, - aux_sym_shebang_repeat1, - STATE(5899), 1, - sym_comment, - [206883] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5900), 1, - sym_comment, - ACTIONS(2015), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(2017), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [206900] = 4, - ACTIONS(251), 1, + [205431] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5675), 1, + ACTIONS(1889), 1, anon_sym_DASH2, - STATE(5901), 1, + STATE(5911), 1, sym_comment, - ACTIONS(5677), 5, + ACTIONS(1891), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [206917] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9761), 1, - anon_sym_LPAREN, - ACTIONS(10032), 1, - anon_sym_DQUOTE2, - STATE(5902), 1, - sym_comment, - STATE(5908), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6484), 1, - sym_expr_interpolated, - ACTIONS(9763), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [206940] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(9773), 1, anon_sym_LBRACK, - ACTIONS(10034), 1, - anon_sym_RBRACK, - STATE(5903), 1, - sym_comment, - STATE(5984), 1, - aux_sym_shebang_repeat1, - STATE(7162), 1, - sym_val_list, - STATE(7171), 1, - aux_sym_val_table_repeat1, - [206965] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(591), 1, - anon_sym_RPAREN, - ACTIONS(9835), 1, - sym__newline, - ACTIONS(9837), 1, - anon_sym_SEMI, - STATE(301), 1, - aux_sym__parenthesized_body_repeat1, - STATE(5904), 1, - sym_comment, - STATE(6171), 1, - aux_sym__block_body_repeat1, - STATE(7296), 1, - aux_sym_shebang_repeat1, - [206990] = 4, - ACTIONS(251), 1, + anon_sym_DASH_DASH, + [205448] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5101), 1, + ACTIONS(1901), 1, anon_sym_DASH2, - STATE(5905), 1, + STATE(5912), 1, sym_comment, - ACTIONS(5099), 5, + ACTIONS(1903), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [207007] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6171), 1, - aux_sym_unquoted_token3, - ACTIONS(8681), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9101), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9103), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9105), 1, - aux_sym__immediate_decimal_token5, - STATE(5906), 1, - sym_comment, - STATE(6439), 1, - sym__immediate_decimal, - [207032] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6171), 1, - aux_sym_unquoted_token3, - ACTIONS(8754), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8838), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8840), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8842), 1, - aux_sym__immediate_decimal_token5, - STATE(5907), 1, - sym_comment, - STATE(7582), 1, - sym__immediate_decimal, - [207057] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9761), 1, - anon_sym_LPAREN, - ACTIONS(10036), 1, - anon_sym_DQUOTE2, - STATE(5748), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(5908), 1, - sym_comment, - STATE(6484), 1, - sym_expr_interpolated, - ACTIONS(9763), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [207080] = 8, - ACTIONS(251), 1, + [205465] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9712), 1, + ACTIONS(9708), 1, anon_sym_def, - ACTIONS(9714), 1, + ACTIONS(9710), 1, anon_sym_extern, - ACTIONS(9716), 1, - anon_sym_module, - ACTIONS(9718), 1, - anon_sym_use, - ACTIONS(10038), 1, - anon_sym_alias, - ACTIONS(10040), 1, - anon_sym_const, - STATE(5909), 1, - sym_comment, - [207105] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(9773), 1, - anon_sym_LBRACK, - ACTIONS(10042), 1, - anon_sym_RBRACK, - STATE(5910), 1, - sym_comment, - STATE(6112), 1, - aux_sym_shebang_repeat1, - STATE(6769), 1, - sym_val_list, - STATE(7191), 1, - aux_sym_val_table_repeat1, - [207130] = 8, - ACTIONS(251), 1, - anon_sym_POUND, ACTIONS(9712), 1, - anon_sym_def, - ACTIONS(9714), 1, - anon_sym_extern, - ACTIONS(9716), 1, anon_sym_module, - ACTIONS(9718), 1, + ACTIONS(9714), 1, anon_sym_use, - ACTIONS(10044), 1, + ACTIONS(10035), 1, anon_sym_alias, - ACTIONS(10046), 1, + ACTIONS(10037), 1, anon_sym_const, - STATE(5911), 1, + STATE(5913), 1, sym_comment, - [207155] = 7, + [205490] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9761), 1, + ACTIONS(9773), 1, anon_sym_LPAREN, - ACTIONS(10048), 1, + ACTIONS(10039), 1, anon_sym_DQUOTE2, - STATE(5748), 1, + STATE(5718), 1, aux_sym__inter_double_quotes_repeat1, - STATE(5912), 1, + STATE(5914), 1, sym_comment, - STATE(6484), 1, + STATE(6292), 1, sym_expr_interpolated, - ACTIONS(9763), 2, + ACTIONS(9775), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [207178] = 8, - ACTIONS(251), 1, + [205513] = 8, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(9708), 1, - anon_sym_alias, - ACTIONS(9710), 1, - anon_sym_const, - ACTIONS(9712), 1, anon_sym_def, - ACTIONS(9714), 1, + ACTIONS(9710), 1, anon_sym_extern, - ACTIONS(9716), 1, + ACTIONS(9712), 1, anon_sym_module, - ACTIONS(9718), 1, + ACTIONS(9714), 1, anon_sym_use, - STATE(5913), 1, - sym_comment, - [207203] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(9773), 1, - anon_sym_LBRACK, - ACTIONS(10050), 1, - anon_sym_RBRACK, - STATE(5914), 1, - sym_comment, - STATE(6091), 1, - aux_sym_shebang_repeat1, - STATE(6992), 1, - sym_val_list, - STATE(7155), 1, - aux_sym_val_table_repeat1, - [207228] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(9793), 1, - anon_sym_LBRACE, - STATE(4752), 1, - sym_block, - STATE(4753), 1, - sym_val_closure, - STATE(5123), 1, - sym__blosure, - STATE(5894), 1, - aux_sym_shebang_repeat1, + ACTIONS(10041), 1, + anon_sym_alias, + ACTIONS(10043), 1, + anon_sym_const, STATE(5915), 1, sym_comment, - [207253] = 4, - ACTIONS(251), 1, + [205538] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5041), 1, + ACTIONS(5132), 1, anon_sym_DASH2, STATE(5916), 1, sym_comment, - ACTIONS(5039), 5, + ACTIONS(5130), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [207270] = 4, - ACTIONS(251), 1, + [205555] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5069), 1, + ACTIONS(5136), 1, anon_sym_DASH2, STATE(5917), 1, sym_comment, - ACTIONS(5067), 5, + ACTIONS(5134), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [207287] = 4, - ACTIONS(251), 1, + [205572] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5077), 1, + ACTIONS(2318), 1, anon_sym_DASH2, STATE(5918), 1, sym_comment, - ACTIONS(5075), 5, + ACTIONS(2320), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [207304] = 8, - ACTIONS(251), 1, + [205589] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(9793), 1, - anon_sym_LBRACE, - STATE(4752), 1, - sym_block, - STATE(4753), 1, - sym_val_closure, - STATE(5045), 1, - sym__blosure, - STATE(5790), 1, - aux_sym_shebang_repeat1, + ACTIONS(2389), 1, + anon_sym_DASH2, STATE(5919), 1, sym_comment, - [207329] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9736), 1, - anon_sym_LBRACE, - STATE(5920), 1, - sym_comment, - STATE(6374), 1, - sym_val_record, - ACTIONS(10052), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [207348] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9736), 1, - anon_sym_LBRACE, - STATE(5921), 1, - sym_comment, - STATE(6389), 1, - sym_val_record, - ACTIONS(10054), 4, + ACTIONS(2391), 5, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [207367] = 6, - ACTIONS(3), 1, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + [205606] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5806), 1, - anon_sym_DOT2, - STATE(5754), 1, - aux_sym_cell_path_repeat1, - STATE(5922), 1, + ACTIONS(9708), 1, + anon_sym_def, + ACTIONS(9710), 1, + anon_sym_extern, + ACTIONS(9712), 1, + anon_sym_module, + ACTIONS(9714), 1, + anon_sym_use, + ACTIONS(10045), 1, + anon_sym_alias, + ACTIONS(10047), 1, + anon_sym_const, + STATE(5920), 1, sym_comment, - STATE(6614), 1, - sym_path, - ACTIONS(949), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [207388] = 6, - ACTIONS(251), 1, + [205631] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1755), 1, - aux_sym_unquoted_token2, - ACTIONS(10056), 1, - anon_sym_DOT, - ACTIONS(10058), 1, - aux_sym__immediate_decimal_token2, - STATE(5923), 1, + ACTIONS(10021), 1, + anon_sym_DOT_DOT2, + STATE(5921), 1, sym_comment, - ACTIONS(1757), 3, + ACTIONS(10023), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5982), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [207409] = 8, - ACTIONS(251), 1, + [205650] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - ACTIONS(10060), 1, + ACTIONS(10049), 1, anon_sym_RBRACK, - STATE(5924), 1, + STATE(5922), 1, sym_comment, - STATE(6052), 1, + STATE(6128), 1, aux_sym_shebang_repeat1, - STATE(6887), 1, + STATE(6915), 1, sym_val_list, - STATE(7126), 1, + STATE(7242), 1, aux_sym_val_table_repeat1, - [207434] = 8, - ACTIONS(251), 1, + [205675] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1816), 1, + anon_sym_RBRACE, + ACTIONS(1824), 1, + sym__entry_separator, + ACTIONS(10051), 1, + anon_sym_DOT_DOT2, + STATE(5923), 1, + sym_comment, + ACTIONS(10053), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [205695] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(10055), 1, + anon_sym_EQ, + ACTIONS(10057), 1, + anon_sym_COLON, + STATE(5924), 1, + sym_comment, + STATE(6996), 1, + aux_sym_shebang_repeat1, + STATE(7599), 1, + sym_param_type, + [205717] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9712), 1, - anon_sym_def, - ACTIONS(9714), 1, - anon_sym_extern, - ACTIONS(9716), 1, - anon_sym_module, - ACTIONS(9718), 1, - anon_sym_use, - ACTIONS(10062), 1, - anon_sym_alias, - ACTIONS(10064), 1, - anon_sym_const, STATE(5925), 1, sym_comment, - [207459] = 4, - ACTIONS(251), 1, + ACTIONS(8106), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [205731] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5699), 1, - anon_sym_DASH2, STATE(5926), 1, sym_comment, - ACTIONS(5701), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, + ACTIONS(8176), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, anon_sym_LBRACE, - [207476] = 8, + [205745] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6307), 1, - sym__entry_separator, - ACTIONS(8873), 1, - anon_sym_DOT2, - ACTIONS(10066), 1, - anon_sym_RBRACE, - STATE(5406), 1, - aux_sym_cell_path_repeat1, - STATE(5657), 1, - sym_path, + ACTIONS(10059), 1, + anon_sym_LPAREN, + ACTIONS(10061), 1, + sym_unescaped_interpolated_content, + ACTIONS(10063), 1, + anon_sym_SQUOTE, STATE(5927), 1, sym_comment, - STATE(7123), 1, - sym_cell_path, - [207501] = 4, - ACTIONS(251), 1, + STATE(5934), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7036), 1, + sym_expr_interpolated, + [205767] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2460), 1, - anon_sym_DASH2, STATE(5928), 1, sym_comment, - ACTIONS(2462), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [207518] = 7, - ACTIONS(251), 1, + ACTIONS(8048), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [205781] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(9773), 1, - anon_sym_LBRACK, - STATE(1800), 1, - aux_sym_shebang_repeat1, + ACTIONS(10065), 1, + anon_sym_QMARK2, STATE(5929), 1, sym_comment, - STATE(6740), 1, - sym_val_list, - STATE(7183), 1, - aux_sym_val_table_repeat1, - [207540] = 7, + ACTIONS(950), 4, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [205797] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10069), 1, + ACTIONS(10059), 1, anon_sym_LPAREN, - ACTIONS(10071), 1, + ACTIONS(10061), 1, sym_unescaped_interpolated_content, - ACTIONS(10073), 1, + ACTIONS(10067), 1, anon_sym_SQUOTE, STATE(5930), 1, sym_comment, - STATE(5954), 1, + STATE(5932), 1, aux_sym__inter_single_quotes_repeat1, - STATE(6910), 1, + STATE(7036), 1, sym_expr_interpolated, - [207562] = 7, + [205819] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(10069), 1, + anon_sym_QMARK2, + STATE(5931), 1, + sym_comment, + ACTIONS(968), 4, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [205835] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10059), 1, anon_sym_LPAREN, - ACTIONS(10071), 1, + ACTIONS(10061), 1, sym_unescaped_interpolated_content, - ACTIONS(10075), 1, + ACTIONS(10071), 1, anon_sym_SQUOTE, - STATE(5931), 1, + STATE(5932), 1, sym_comment, - STATE(5954), 1, + STATE(5966), 1, aux_sym__inter_single_quotes_repeat1, - STATE(6910), 1, + STATE(7036), 1, sym_expr_interpolated, - [207584] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8744), 1, - sym_identifier, - ACTIONS(9938), 1, - anon_sym_DOLLAR, - STATE(5696), 1, - sym_val_variable, - STATE(5932), 1, - sym_comment, - STATE(5959), 1, - sym__variable_name, - STATE(7276), 1, - sym__assignment_pattern_parenthesized, - [207606] = 5, - ACTIONS(251), 1, + [205857] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9672), 1, - anon_sym_LBRACE, STATE(5933), 1, sym_comment, - STATE(6762), 1, - sym_val_record, - ACTIONS(10052), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [207624] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5934), 1, - sym_comment, - ACTIONS(8290), 5, + ACTIONS(8390), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [207638] = 3, - ACTIONS(251), 1, + [205871] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10059), 1, + anon_sym_LPAREN, + ACTIONS(10061), 1, + sym_unescaped_interpolated_content, + ACTIONS(10073), 1, + anon_sym_SQUOTE, + STATE(5934), 1, + sym_comment, + STATE(5966), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7036), 1, + sym_expr_interpolated, + [205893] = 7, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(10059), 1, + anon_sym_LPAREN, + ACTIONS(10061), 1, + sym_unescaped_interpolated_content, + ACTIONS(10075), 1, + anon_sym_SQUOTE, STATE(5935), 1, sym_comment, - ACTIONS(8144), 5, + STATE(5966), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7036), 1, + sym_expr_interpolated, + [205915] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5936), 1, + sym_comment, + ACTIONS(8080), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [207652] = 7, - ACTIONS(251), 1, + [205929] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3420), 1, - anon_sym_COLON2, - ACTIONS(6551), 1, - anon_sym_DOLLAR, - ACTIONS(8744), 1, - sym_identifier, - STATE(5696), 1, - sym_val_variable, - STATE(5936), 1, - sym_comment, - STATE(7824), 1, - sym__variable_name, - [207674] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9672), 1, - anon_sym_LBRACE, + ACTIONS(1947), 1, + sym__table_head_separator, + ACTIONS(10077), 1, + anon_sym_DOT2, STATE(5937), 1, sym_comment, - STATE(6778), 1, - sym_val_record, - ACTIONS(10054), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [207692] = 5, - ACTIONS(3), 1, + STATE(6422), 1, + aux_sym_cell_path_repeat1, + STATE(7324), 1, + sym_path, + STATE(7671), 1, + sym_cell_path, + [205951] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9956), 1, - aux_sym__immediate_decimal_token2, STATE(5938), 1, sym_comment, - ACTIONS(1755), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1757), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [207710] = 4, - ACTIONS(251), 1, + ACTIONS(8180), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [205965] = 5, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(6315), 1, + anon_sym_LBRACE, STATE(5939), 1, sym_comment, - ACTIONS(1835), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1837), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [207726] = 7, - ACTIONS(3), 1, + STATE(6719), 1, + sym_block, + ACTIONS(9753), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [205983] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10069), 1, - anon_sym_LPAREN, - ACTIONS(10071), 1, - sym_unescaped_interpolated_content, - ACTIONS(10077), 1, - anon_sym_SQUOTE, + ACTIONS(8772), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8774), 1, + aux_sym__immediate_decimal_token5, STATE(5940), 1, sym_comment, - STATE(5945), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6910), 1, - sym_expr_interpolated, - [207748] = 7, + STATE(7727), 1, + sym__immediate_decimal, + ACTIONS(8770), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [206003] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10069), 1, + ACTIONS(10059), 1, anon_sym_LPAREN, - ACTIONS(10071), 1, + ACTIONS(10061), 1, sym_unescaped_interpolated_content, ACTIONS(10079), 1, anon_sym_SQUOTE, STATE(5941), 1, sym_comment, - STATE(5954), 1, + STATE(5970), 1, aux_sym__inter_single_quotes_repeat1, - STATE(6910), 1, + STATE(7036), 1, sym_expr_interpolated, - [207770] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1820), 1, - anon_sym_LBRACE, - ACTIONS(1822), 1, - aux_sym_unquoted_token2, - ACTIONS(10081), 1, - anon_sym_DOT_DOT2, - STATE(5942), 1, - sym_comment, - ACTIONS(10083), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [207790] = 7, + [206025] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(10085), 1, + ACTIONS(10081), 1, anon_sym_GT2, - ACTIONS(10087), 1, + ACTIONS(10083), 1, anon_sym_AT, - STATE(5550), 1, + STATE(5456), 1, aux_sym__multiple_types_repeat1, - STATE(5943), 1, + STATE(5942), 1, sym_comment, - STATE(6784), 1, + STATE(7104), 1, sym_param_cmd, - [207812] = 5, - ACTIONS(251), 1, + [206047] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6290), 1, - anon_sym_LBRACE, - STATE(5944), 1, - sym_comment, - STATE(7063), 1, - sym_block, - ACTIONS(10000), 3, - ts_builtin_sym_end, + ACTIONS(3842), 1, sym__newline, - anon_sym_SEMI, - [207830] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10069), 1, - anon_sym_LPAREN, - ACTIONS(10071), 1, - sym_unescaped_interpolated_content, - ACTIONS(10089), 1, - anon_sym_SQUOTE, - STATE(5945), 1, + ACTIONS(10057), 1, + anon_sym_COLON, + ACTIONS(10085), 1, + anon_sym_EQ, + STATE(5943), 1, sym_comment, - STATE(5954), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6910), 1, - sym_expr_interpolated, - [207852] = 7, - ACTIONS(3), 1, + STATE(6996), 1, + aux_sym_shebang_repeat1, + STATE(7636), 1, + sym_param_type, + [206069] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7886), 1, - sym__newline, - ACTIONS(7888), 1, - sym__space, - STATE(4713), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(5946), 1, + STATE(5944), 1, sym_comment, - STATE(6144), 1, - aux_sym_ctrl_do_parenthesized_repeat1, - STATE(7422), 1, - sym__flags_parenthesized, - [207874] = 3, - ACTIONS(251), 1, + ACTIONS(8118), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [206083] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5947), 1, + STATE(5945), 1, sym_comment, - ACTIONS(8180), 5, + ACTIONS(8188), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [207888] = 5, + [206097] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10091), 1, - aux_sym__immediate_decimal_token2, - STATE(5948), 1, - sym_comment, - ACTIONS(1783), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1785), 2, - anon_sym_LPAREN2, + ACTIONS(5974), 1, + anon_sym_RBRACK, + ACTIONS(5980), 1, sym__entry_separator, - [207906] = 7, + ACTIONS(9842), 1, + anon_sym_DOT_DOT2, + STATE(5946), 1, + sym_comment, + ACTIONS(9844), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [206117] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, ACTIONS(10087), 1, - anon_sym_AT, - ACTIONS(10093), 1, - anon_sym_GT2, - STATE(5428), 1, - aux_sym__multiple_types_repeat1, - STATE(5949), 1, + aux_sym__immediate_decimal_token2, + STATE(5947), 1, sym_comment, - STATE(6809), 1, - sym_param_cmd, - [207928] = 7, + ACTIONS(1766), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1768), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [206135] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(10087), 1, - anon_sym_AT, - ACTIONS(10095), 1, - anon_sym_GT2, - STATE(5429), 1, - aux_sym__multiple_types_repeat1, - STATE(5950), 1, + ACTIONS(7907), 1, + sym__newline, + ACTIONS(7909), 1, + sym__space, + STATE(4623), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(5948), 1, sym_comment, - STATE(6813), 1, - sym_param_cmd, - [207950] = 7, - ACTIONS(251), 1, + STATE(6031), 1, + aux_sym_ctrl_do_parenthesized_repeat1, + STATE(7378), 1, + sym__flags_parenthesized, + [206157] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8744), 1, - sym_identifier, - ACTIONS(9938), 1, - anon_sym_DOLLAR, - STATE(5696), 1, - sym_val_variable, - STATE(5951), 1, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(9787), 1, + anon_sym_LBRACK, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(5949), 1, sym_comment, - STATE(5980), 1, - sym__variable_name, - STATE(6251), 1, - sym__assignment_pattern, - [207972] = 6, - ACTIONS(251), 1, + STATE(7061), 1, + sym_val_list, + STATE(7064), 1, + aux_sym_val_table_repeat1, + [206179] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym_unquoted_token2, - ACTIONS(1810), 1, - anon_sym_LBRACE, - ACTIONS(10097), 1, - anon_sym_DOT_DOT2, - STATE(5952), 1, + STATE(5950), 1, sym_comment, - ACTIONS(10099), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [207992] = 3, - ACTIONS(251), 1, + ACTIONS(8068), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [206193] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5953), 1, + STATE(5951), 1, sym_comment, - ACTIONS(8352), 5, + ACTIONS(8184), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [208006] = 6, + [206207] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10101), 1, - anon_sym_LPAREN, - ACTIONS(10104), 1, - sym_unescaped_interpolated_content, - ACTIONS(10107), 1, - anon_sym_SQUOTE, - STATE(6910), 1, - sym_expr_interpolated, - STATE(5954), 2, + STATE(5952), 1, sym_comment, - aux_sym__inter_single_quotes_repeat1, - [208026] = 7, + ACTIONS(956), 5, + anon_sym_RBRACK, + anon_sym_QMARK2, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [206221] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10069), 1, + ACTIONS(10059), 1, anon_sym_LPAREN, - ACTIONS(10071), 1, + ACTIONS(10061), 1, sym_unescaped_interpolated_content, - ACTIONS(10109), 1, + ACTIONS(10089), 1, anon_sym_SQUOTE, - STATE(5955), 1, + STATE(5953), 1, sym_comment, - STATE(5960), 1, + STATE(5966), 1, aux_sym__inter_single_quotes_repeat1, - STATE(6910), 1, + STATE(7036), 1, sym_expr_interpolated, - [208048] = 5, - ACTIONS(251), 1, + [206243] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5954), 1, + sym_comment, + ACTIONS(8326), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [206257] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1638), 1, + ACTIONS(5062), 1, anon_sym_DASH2, - ACTIONS(9097), 1, - aux_sym_unquoted_token2, - STATE(5956), 1, + ACTIONS(10091), 1, + anon_sym_EQ2, + STATE(5955), 1, sym_comment, - ACTIONS(1650), 3, - sym_identifier, + ACTIONS(5060), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [208066] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8744), 1, - sym_identifier, - ACTIONS(9938), 1, - anon_sym_DOLLAR, - STATE(5696), 1, - sym_val_variable, - STATE(5957), 1, - sym_comment, - STATE(5998), 1, - sym__variable_name, - STATE(7021), 1, - sym__assignment_pattern, - [208088] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5920), 1, - anon_sym_RBRACK, - ACTIONS(5926), 1, - sym__entry_separator, - ACTIONS(9779), 1, - anon_sym_DOT_DOT2, - STATE(5958), 1, - sym_comment, - ACTIONS(9781), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [208108] = 7, - ACTIONS(251), 1, + anon_sym_LBRACE, + [206275] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(10111), 1, - anon_sym_EQ, - ACTIONS(10113), 1, - anon_sym_COLON, - STATE(5959), 1, - sym_comment, - STATE(7284), 1, + ACTIONS(9787), 1, + anon_sym_LBRACK, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(7825), 1, - sym_param_type, - [208130] = 7, + STATE(5956), 1, + sym_comment, + STATE(6978), 1, + sym_val_list, + STATE(6979), 1, + aux_sym_val_table_repeat1, + [206297] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10069), 1, + ACTIONS(10059), 1, anon_sym_LPAREN, - ACTIONS(10071), 1, + ACTIONS(10061), 1, sym_unescaped_interpolated_content, - ACTIONS(10115), 1, + ACTIONS(10093), 1, anon_sym_SQUOTE, - STATE(5954), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(5960), 1, + STATE(5957), 1, sym_comment, - STATE(6910), 1, + STATE(5964), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7036), 1, sym_expr_interpolated, - [208152] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1755), 1, - aux_sym_unquoted_token2, - ACTIONS(10058), 1, - aux_sym__immediate_decimal_token2, - STATE(5961), 1, - sym_comment, - ACTIONS(1757), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [208170] = 5, - ACTIONS(251), 1, + [206319] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(214), 1, + STATE(270), 1, aux_sym__block_body_repeat1, - STATE(5962), 1, + STATE(5958), 1, sym_comment, - ACTIONS(141), 2, + ACTIONS(139), 2, sym__newline, anon_sym_SEMI, - ACTIONS(1479), 2, + ACTIONS(1502), 2, anon_sym_RPAREN, anon_sym_RBRACE, - [208188] = 7, - ACTIONS(3), 1, + [206337] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(10087), 1, - anon_sym_AT, - ACTIONS(10117), 1, + STATE(5959), 1, + sym_comment, + ACTIONS(8394), 5, + anon_sym_EQ, + anon_sym_DASH_GT, anon_sym_GT2, - STATE(5434), 1, - aux_sym__multiple_types_repeat1, - STATE(5963), 1, + anon_sym_AT, + anon_sym_LBRACE, + [206351] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5960), 1, sym_comment, - STATE(6836), 1, - sym_param_cmd, - [208210] = 7, - ACTIONS(251), 1, + ACTIONS(1701), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1703), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [206367] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8744), 1, - sym_identifier, - ACTIONS(9938), 1, - anon_sym_DOLLAR, - STATE(5696), 1, - sym_val_variable, - STATE(5964), 1, + STATE(5961), 1, sym_comment, - STATE(5998), 1, - sym__variable_name, - STATE(7007), 1, - sym__assignment_pattern, - [208232] = 3, - ACTIONS(251), 1, + ACTIONS(8196), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [206381] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5965), 1, + STATE(5962), 1, sym_comment, - ACTIONS(8356), 5, + ACTIONS(8056), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [208246] = 7, + [206395] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(10087), 1, - anon_sym_AT, - ACTIONS(10119), 1, - anon_sym_GT2, - STATE(5435), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10059), 1, + anon_sym_LPAREN, + ACTIONS(10061), 1, + sym_unescaped_interpolated_content, + ACTIONS(10095), 1, + anon_sym_SQUOTE, + STATE(5963), 1, + sym_comment, STATE(5966), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7036), 1, + sym_expr_interpolated, + [206417] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10059), 1, + anon_sym_LPAREN, + ACTIONS(10061), 1, + sym_unescaped_interpolated_content, + ACTIONS(10097), 1, + anon_sym_SQUOTE, + STATE(5964), 1, sym_comment, - STATE(6837), 1, - sym_param_cmd, - [208268] = 7, - ACTIONS(251), 1, + STATE(5966), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7036), 1, + sym_expr_interpolated, + [206439] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3442), 1, + ACTIONS(10059), 1, + anon_sym_LPAREN, + ACTIONS(10061), 1, + sym_unescaped_interpolated_content, + ACTIONS(10099), 1, + anon_sym_SQUOTE, + STATE(5965), 1, + sym_comment, + STATE(6087), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7036), 1, + sym_expr_interpolated, + [206461] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10101), 1, + anon_sym_LPAREN, + ACTIONS(10104), 1, + sym_unescaped_interpolated_content, + ACTIONS(10107), 1, + anon_sym_SQUOTE, + STATE(7036), 1, + sym_expr_interpolated, + STATE(5966), 2, + sym_comment, + aux_sym__inter_single_quotes_repeat1, + [206481] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3444), 1, anon_sym_COLON2, - ACTIONS(6551), 1, + ACTIONS(6993), 1, anon_sym_DOLLAR, - ACTIONS(8744), 1, + ACTIONS(8788), 1, sym_identifier, - STATE(5696), 1, + STATE(5653), 1, sym_val_variable, STATE(5967), 1, sym_comment, - STATE(7824), 1, + STATE(7812), 1, sym__variable_name, - [208290] = 3, - ACTIONS(251), 1, + [206503] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(10109), 1, + anon_sym_LT, STATE(5968), 1, sym_comment, - ACTIONS(8360), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, + ACTIONS(7849), 2, anon_sym_AT, - anon_sym_LBRACE, - [208304] = 3, - ACTIONS(251), 1, + sym__entry_separator, + ACTIONS(7853), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [206521] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(10111), 1, + anon_sym_LT, STATE(5969), 1, sym_comment, - ACTIONS(8364), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, + ACTIONS(7849), 2, anon_sym_AT, - anon_sym_LBRACE, - [208318] = 3, - ACTIONS(251), 1, + sym__entry_separator, + ACTIONS(7853), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [206539] = 7, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(10059), 1, + anon_sym_LPAREN, + ACTIONS(10061), 1, + sym_unescaped_interpolated_content, + ACTIONS(10113), 1, + anon_sym_SQUOTE, + STATE(5966), 1, + aux_sym__inter_single_quotes_repeat1, STATE(5970), 1, sym_comment, - ACTIONS(8210), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [208332] = 3, - ACTIONS(251), 1, + STATE(7036), 1, + sym_expr_interpolated, + [206561] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(9842), 1, + anon_sym_DOT_DOT2, + ACTIONS(10115), 1, + anon_sym_RBRACE, + ACTIONS(10117), 1, + sym__entry_separator, STATE(5971), 1, sym_comment, - ACTIONS(8370), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [208346] = 7, - ACTIONS(251), 1, + ACTIONS(9844), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [206581] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3442), 1, + ACTIONS(3444), 1, anon_sym_COLON2, - ACTIONS(10121), 1, + ACTIONS(10119), 1, anon_sym_use, - ACTIONS(10123), 1, + ACTIONS(10121), 1, anon_sym_list, - ACTIONS(10125), 1, + ACTIONS(10123), 1, anon_sym_hide, - ACTIONS(10127), 1, + ACTIONS(10125), 1, anon_sym_new, STATE(5972), 1, sym_comment, - [208368] = 3, - ACTIONS(3), 1, + [206603] = 7, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(8788), 1, + sym_identifier, + ACTIONS(9751), 1, + anon_sym_DOLLAR, + STATE(5653), 1, + sym_val_variable, + STATE(5943), 1, + sym__variable_name, STATE(5973), 1, sym_comment, - ACTIONS(976), 5, - anon_sym_RBRACK, - anon_sym_QMARK2, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [208382] = 7, - ACTIONS(3), 1, + STATE(7076), 1, + sym__assignment_pattern, + [206625] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(10087), 1, - anon_sym_AT, - ACTIONS(10129), 1, - anon_sym_GT2, - STATE(5436), 1, - aux_sym__multiple_types_repeat1, STATE(5974), 1, sym_comment, - STATE(6840), 1, - sym_param_cmd, - [208404] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(10113), 1, - anon_sym_COLON, - ACTIONS(10131), 1, + ACTIONS(8130), 5, anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [206639] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1639), 1, + anon_sym_DASH2, + ACTIONS(9063), 1, + aux_sym_unquoted_token2, STATE(5975), 1, sym_comment, - STATE(7284), 1, - aux_sym_shebang_repeat1, - STATE(7731), 1, - sym_param_type, - [208426] = 5, - ACTIONS(251), 1, + ACTIONS(1651), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [206657] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4972), 1, + ACTIONS(1639), 1, anon_sym_DASH2, - ACTIONS(10133), 1, - anon_sym_EQ2, + ACTIONS(7070), 1, + aux_sym_unquoted_token2, STATE(5976), 1, sym_comment, - ACTIONS(4970), 3, - sym_identifier, + ACTIONS(1651), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [208444] = 7, + anon_sym_LBRACE, + [206675] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(1703), 1, sym__entry_separator, - ACTIONS(10087), 1, - anon_sym_AT, - ACTIONS(10135), 1, - anon_sym_GT2, - STATE(5437), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(8838), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(10127), 1, + anon_sym_DOT, STATE(5977), 1, sym_comment, - STATE(6842), 1, - sym_param_cmd, - [208466] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5978), 1, - sym_comment, - ACTIONS(8128), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [208480] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10069), 1, - anon_sym_LPAREN, - ACTIONS(10071), 1, - sym_unescaped_interpolated_content, - ACTIONS(10137), 1, - anon_sym_SQUOTE, - STATE(5979), 1, - sym_comment, - STATE(5985), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6910), 1, - sym_expr_interpolated, - [208502] = 7, - ACTIONS(251), 1, + ACTIONS(1701), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [206695] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(10113), 1, + ACTIONS(10057), 1, anon_sym_COLON, - ACTIONS(10139), 1, + ACTIONS(10129), 1, anon_sym_EQ, - STATE(5980), 1, + STATE(5978), 1, sym_comment, - STATE(7284), 1, + STATE(6996), 1, aux_sym_shebang_repeat1, - STATE(7584), 1, + STATE(7733), 1, sym_param_type, - [208524] = 3, - ACTIONS(251), 1, + [206717] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5981), 1, + ACTIONS(1824), 1, + anon_sym_LBRACE, + ACTIONS(1826), 1, + aux_sym_unquoted_token2, + ACTIONS(10131), 1, + anon_sym_DOT_DOT2, + STATE(5979), 1, + sym_comment, + ACTIONS(10133), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [206737] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5980), 1, sym_comment, - ACTIONS(8296), 5, + ACTIONS(8256), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [208538] = 7, - ACTIONS(251), 1, + [206751] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(9773), 1, - anon_sym_LBRACK, - STATE(1800), 1, - aux_sym_shebang_repeat1, + ACTIONS(5062), 1, + anon_sym_DASH2, + ACTIONS(10135), 1, + anon_sym_EQ2, + STATE(5981), 1, + sym_comment, + ACTIONS(5060), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [206769] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8788), 1, + sym_identifier, + ACTIONS(9751), 1, + anon_sym_DOLLAR, + STATE(5653), 1, + sym_val_variable, STATE(5982), 1, sym_comment, - STATE(6763), 1, - sym_val_list, - STATE(7060), 1, - aux_sym_val_table_repeat1, - [208560] = 3, - ACTIONS(251), 1, + STATE(6018), 1, + sym__variable_name, + STATE(6181), 1, + sym__assignment_pattern, + [206791] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2018), 1, + anon_sym_RBRACE, + ACTIONS(2020), 1, + sym__entry_separator, + ACTIONS(9842), 1, + anon_sym_DOT_DOT2, STATE(5983), 1, sym_comment, - ACTIONS(8374), 5, + ACTIONS(9844), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [206811] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9236), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(10137), 1, + anon_sym_DOT, + STATE(5984), 1, + sym_comment, + ACTIONS(1703), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [206829] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5985), 1, + sym_comment, + ACTIONS(8346), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [208574] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(9773), 1, - anon_sym_LBRACK, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(5984), 1, - sym_comment, - STATE(7074), 1, - sym_val_list, - STATE(7076), 1, - aux_sym_val_table_repeat1, - [208596] = 7, - ACTIONS(3), 1, + [206843] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10069), 1, - anon_sym_LPAREN, - ACTIONS(10071), 1, - sym_unescaped_interpolated_content, - ACTIONS(10141), 1, - anon_sym_SQUOTE, - STATE(5954), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(5985), 1, + ACTIONS(8788), 1, + sym_identifier, + ACTIONS(9751), 1, + anon_sym_DOLLAR, + STATE(5653), 1, + sym_val_variable, + STATE(5943), 1, + sym__variable_name, + STATE(5986), 1, sym_comment, - STATE(6910), 1, - sym_expr_interpolated, - [208618] = 7, - ACTIONS(251), 1, + STATE(7222), 1, + sym__assignment_pattern, + [206865] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(5986), 1, + STATE(5987), 1, sym_comment, - STATE(6904), 1, + STATE(6722), 1, sym_val_list, - STATE(7066), 1, + STATE(7049), 1, aux_sym_val_table_repeat1, - [208640] = 7, + [206887] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10069), 1, - anon_sym_LPAREN, - ACTIONS(10071), 1, - sym_unescaped_interpolated_content, - ACTIONS(10143), 1, - anon_sym_SQUOTE, - STATE(5954), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(5987), 1, - sym_comment, - STATE(6910), 1, - sym_expr_interpolated, - [208662] = 3, - ACTIONS(251), 1, - anon_sym_POUND, + ACTIONS(9842), 1, + anon_sym_DOT_DOT2, + ACTIONS(10139), 1, + anon_sym_RBRACE, + ACTIONS(10141), 1, + sym__entry_separator, STATE(5988), 1, sym_comment, - ACTIONS(8378), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [208676] = 3, - ACTIONS(251), 1, + ACTIONS(9844), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [206907] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(5989), 1, sym_comment, - ACTIONS(8414), 5, + ACTIONS(8368), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [208690] = 4, - ACTIONS(251), 1, + [206921] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(5990), 1, sym_comment, - ACTIONS(1783), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1785), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [208706] = 3, - ACTIONS(251), 1, + ACTIONS(960), 5, + anon_sym_RBRACK, + anon_sym_QMARK2, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [206935] = 7, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(9787), 1, + anon_sym_LBRACK, + STATE(1615), 1, + aux_sym_shebang_repeat1, STATE(5991), 1, sym_comment, - ACTIONS(8122), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [208720] = 7, - ACTIONS(3), 1, + STATE(6860), 1, + sym_val_list, + STATE(7057), 1, + aux_sym_val_table_repeat1, + [206957] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(10087), 1, - anon_sym_AT, - ACTIONS(10145), 1, - anon_sym_GT2, - STATE(5440), 1, - aux_sym__multiple_types_repeat1, STATE(5992), 1, sym_comment, - STATE(6853), 1, - sym_param_cmd, - [208742] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5993), 1, - sym_comment, - ACTIONS(8418), 5, + ACTIONS(8260), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [208756] = 7, + [206971] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(10087), 1, - anon_sym_AT, - ACTIONS(10147), 1, - anon_sym_GT2, - STATE(5441), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10059), 1, + anon_sym_LPAREN, + ACTIONS(10061), 1, + sym_unescaped_interpolated_content, + ACTIONS(10143), 1, + anon_sym_SQUOTE, + STATE(5993), 1, + sym_comment, + STATE(6005), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7036), 1, + sym_expr_interpolated, + [206993] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8788), 1, + sym_identifier, + ACTIONS(9751), 1, + anon_sym_DOLLAR, + STATE(5653), 1, + sym_val_variable, STATE(5994), 1, sym_comment, - STATE(6856), 1, - sym_param_cmd, - [208778] = 5, - ACTIONS(251), 1, + STATE(6018), 1, + sym__variable_name, + STATE(6182), 1, + sym__assignment_pattern, + [207015] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(210), 1, - aux_sym__block_body_repeat1, + ACTIONS(931), 1, + anon_sym_COLON2, + ACTIONS(7185), 1, + anon_sym_DOT2, + STATE(1358), 1, + sym_cell_path, + STATE(1428), 1, + sym_path, + STATE(3898), 1, + aux_sym_cell_path_repeat1, STATE(5995), 1, sym_comment, - ACTIONS(141), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(1488), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [208796] = 4, + [207037] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10149), 1, - anon_sym_QMARK2, STATE(5996), 1, sym_comment, - ACTIONS(966), 4, + ACTIONS(964), 5, anon_sym_RBRACK, + anon_sym_QMARK2, sym__entry_separator, sym__table_head_separator, anon_sym_DOT2, - [208812] = 7, - ACTIONS(3), 1, + [207051] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(10087), 1, - anon_sym_AT, - ACTIONS(10151), 1, - anon_sym_GT2, - STATE(5551), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(8788), 1, + sym_identifier, + ACTIONS(9751), 1, + anon_sym_DOLLAR, + STATE(5653), 1, + sym_val_variable, STATE(5997), 1, sym_comment, - STATE(6789), 1, - sym_param_cmd, - [208834] = 7, - ACTIONS(251), 1, + STATE(6018), 1, + sym__variable_name, + STATE(6183), 1, + sym__assignment_pattern, + [207073] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(10113), 1, - anon_sym_COLON, - ACTIONS(10153), 1, - anon_sym_EQ, + ACTIONS(6315), 1, + anon_sym_LBRACE, STATE(5998), 1, sym_comment, - STATE(7284), 1, - aux_sym_shebang_repeat1, - STATE(7820), 1, - sym_param_type, - [208856] = 7, - ACTIONS(251), 1, + STATE(7084), 1, + sym_block, + ACTIONS(9979), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [207091] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8744), 1, - sym_identifier, - ACTIONS(9938), 1, - anon_sym_DOLLAR, - STATE(5696), 1, - sym_val_variable, - STATE(5959), 1, - sym__variable_name, + ACTIONS(6315), 1, + anon_sym_LBRACE, STATE(5999), 1, sym_comment, - STATE(7028), 1, - sym__assignment_pattern_parenthesized, - [208878] = 7, - ACTIONS(251), 1, + STATE(7092), 1, + sym_block, + ACTIONS(9979), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [207109] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8744), 1, - sym_identifier, - ACTIONS(9938), 1, + ACTIONS(3442), 1, + anon_sym_COLON2, + ACTIONS(6993), 1, anon_sym_DOLLAR, - STATE(5696), 1, + ACTIONS(8788), 1, + sym_identifier, + STATE(5653), 1, sym_val_variable, - STATE(5998), 1, - sym__variable_name, STATE(6000), 1, sym_comment, - STATE(6715), 1, - sym__assignment_pattern, - [208900] = 5, - ACTIONS(251), 1, + STATE(7812), 1, + sym__variable_name, + [207131] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1638), 1, - anon_sym_DASH2, - ACTIONS(7078), 1, - aux_sym_unquoted_token2, + STATE(249), 1, + aux_sym__block_body_repeat1, STATE(6001), 1, sym_comment, - ACTIONS(1650), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [208918] = 7, - ACTIONS(251), 1, + ACTIONS(139), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(583), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [207149] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8744), 1, - sym_identifier, - ACTIONS(9938), 1, - anon_sym_DOLLAR, - STATE(5696), 1, - sym_val_variable, - STATE(5998), 1, - sym__variable_name, STATE(6002), 1, sym_comment, - STATE(6843), 1, - sym__assignment_pattern, - [208940] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6003), 1, - sym_comment, - ACTIONS(8422), 5, + ACTIONS(8264), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [208954] = 3, - ACTIONS(251), 1, + [207163] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10145), 1, + sym__newline, + ACTIONS(10148), 1, + sym__space, + STATE(5517), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(7378), 1, + sym__flags_parenthesized, + STATE(6003), 2, + sym_comment, + aux_sym_ctrl_do_parenthesized_repeat1, + [207183] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6004), 1, sym_comment, - ACTIONS(8046), 5, + ACTIONS(8208), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [208968] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8756), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8758), 1, - aux_sym__immediate_decimal_token5, - STATE(6005), 1, - sym_comment, - STATE(7588), 1, - sym__immediate_decimal, - ACTIONS(8754), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [208988] = 7, + [207197] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10069), 1, + ACTIONS(10059), 1, anon_sym_LPAREN, - ACTIONS(10071), 1, + ACTIONS(10061), 1, sym_unescaped_interpolated_content, - ACTIONS(10155), 1, + ACTIONS(10151), 1, anon_sym_SQUOTE, - STATE(6006), 1, - sym_comment, - STATE(6013), 1, + STATE(5966), 1, aux_sym__inter_single_quotes_repeat1, - STATE(6910), 1, + STATE(6005), 1, + sym_comment, + STATE(7036), 1, sym_expr_interpolated, - [209010] = 5, - ACTIONS(251), 1, + [207219] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4986), 1, - anon_sym_DASH2, - ACTIONS(10157), 1, - anon_sym_EQ2, - STATE(6007), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(10083), 1, + anon_sym_AT, + ACTIONS(10153), 1, + anon_sym_GT2, + STATE(5424), 1, + aux_sym__multiple_types_repeat1, + STATE(6006), 1, sym_comment, - ACTIONS(4984), 3, + STATE(7021), 1, + sym_param_cmd, + [207241] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8788), 1, sym_identifier, + ACTIONS(9751), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [209028] = 3, - ACTIONS(251), 1, + STATE(5653), 1, + sym_val_variable, + STATE(6007), 1, + sym_comment, + STATE(6024), 1, + sym__variable_name, + STATE(6747), 1, + sym__assignment_pattern_parenthesized, + [207263] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6008), 1, sym_comment, - ACTIONS(8050), 5, + ACTIONS(8364), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [209042] = 3, - ACTIONS(251), 1, + [207277] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(6009), 1, sym_comment, - ACTIONS(8184), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [209056] = 5, - ACTIONS(251), 1, + ACTIONS(946), 5, + anon_sym_RBRACK, + anon_sym_QMARK2, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [207291] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9133), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(10159), 1, - anon_sym_DOT, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(10083), 1, + anon_sym_AT, + ACTIONS(10155), 1, + anon_sym_GT2, + STATE(5425), 1, + aux_sym__multiple_types_repeat1, STATE(6010), 1, sym_comment, - ACTIONS(1757), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [209074] = 5, - ACTIONS(3), 1, + STATE(7025), 1, + sym_param_cmd, + [207313] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10161), 1, - anon_sym_LT, STATE(6011), 1, sym_comment, - ACTIONS(7991), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(7995), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [209092] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6290), 1, + ACTIONS(1792), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1794), 3, anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [207329] = 3, + ACTIONS(247), 1, + anon_sym_POUND, STATE(6012), 1, sym_comment, - STATE(7114), 1, - sym_block, - ACTIONS(9845), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [209110] = 7, - ACTIONS(3), 1, + ACTIONS(8042), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [207343] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10069), 1, - anon_sym_LPAREN, - ACTIONS(10071), 1, - sym_unescaped_interpolated_content, - ACTIONS(10163), 1, - anon_sym_SQUOTE, - STATE(5954), 1, - aux_sym__inter_single_quotes_repeat1, STATE(6013), 1, sym_comment, - STATE(6910), 1, - sym_expr_interpolated, - [209132] = 5, - ACTIONS(251), 1, + ACTIONS(8086), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [207357] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6290), 1, + ACTIONS(6315), 1, anon_sym_LBRACE, STATE(6014), 1, sym_comment, - STATE(7116), 1, + STATE(6730), 1, sym_block, - ACTIONS(9845), 3, + ACTIONS(9890), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [209150] = 5, - ACTIONS(3), 1, + [207375] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10165), 1, - anon_sym_LT, + ACTIONS(5052), 1, + anon_sym_DASH2, + ACTIONS(10157), 1, + anon_sym_EQ2, STATE(6015), 1, sym_comment, - ACTIONS(7991), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(7995), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [209168] = 7, - ACTIONS(3), 1, + ACTIONS(5050), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [207393] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(10087), 1, - anon_sym_AT, - ACTIONS(10167), 1, - anon_sym_GT2, - STATE(5504), 1, - aux_sym__multiple_types_repeat1, STATE(6016), 1, sym_comment, - STATE(7070), 1, - sym_param_cmd, - [209190] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6017), 1, - sym_comment, - ACTIONS(8300), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [209204] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6018), 1, - sym_comment, - ACTIONS(8312), 5, + ACTIONS(8102), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [209218] = 7, + [207407] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(10087), 1, - anon_sym_AT, - ACTIONS(10169), 1, - anon_sym_GT2, - STATE(5505), 1, - aux_sym__multiple_types_repeat1, - STATE(6019), 1, + ACTIONS(10059), 1, + anon_sym_LPAREN, + ACTIONS(10061), 1, + sym_unescaped_interpolated_content, + ACTIONS(10159), 1, + anon_sym_SQUOTE, + STATE(6017), 1, sym_comment, - STATE(7072), 1, - sym_param_cmd, - [209240] = 7, - ACTIONS(251), 1, + STATE(6036), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7036), 1, + sym_expr_interpolated, + [207429] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10171), 1, - anon_sym_PIPE, - ACTIONS(10173), 1, - anon_sym_if, - ACTIONS(10175), 1, - anon_sym_EQ_GT, - STATE(6020), 1, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(10057), 1, + anon_sym_COLON, + ACTIONS(10161), 1, + anon_sym_EQ, + STATE(6018), 1, sym_comment, - STATE(6797), 1, - aux_sym_match_pattern_repeat1, - STATE(7724), 1, - sym_match_guard, - [209262] = 7, - ACTIONS(251), 1, + STATE(6996), 1, + aux_sym_shebang_repeat1, + STATE(7598), 1, + sym_param_type, + [207451] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8744), 1, + ACTIONS(8788), 1, sym_identifier, - ACTIONS(9938), 1, + ACTIONS(9751), 1, anon_sym_DOLLAR, - STATE(5696), 1, + STATE(5653), 1, sym_val_variable, - STATE(5959), 1, + STATE(5943), 1, sym__variable_name, - STATE(6021), 1, + STATE(6019), 1, sym_comment, - STATE(7045), 1, - sym__assignment_pattern_parenthesized, - [209284] = 6, + STATE(7215), 1, + sym__assignment_pattern, + [207473] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1757), 1, - sym__entry_separator, - ACTIONS(8936), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(10177), 1, - anon_sym_DOT, - STATE(6022), 1, - sym_comment, - ACTIONS(1755), 2, - anon_sym_RBRACK, + ACTIONS(2000), 1, anon_sym_RBRACE, - [209304] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10069), 1, - anon_sym_LPAREN, - ACTIONS(10071), 1, - sym_unescaped_interpolated_content, - ACTIONS(10179), 1, - anon_sym_SQUOTE, - STATE(6023), 1, + ACTIONS(2006), 1, + sym__entry_separator, + ACTIONS(9842), 1, + anon_sym_DOT_DOT2, + STATE(6020), 1, sym_comment, - STATE(6030), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6910), 1, - sym_expr_interpolated, - [209326] = 3, - ACTIONS(251), 1, + ACTIONS(9844), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [207493] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6024), 1, + STATE(6021), 1, sym_comment, - ACTIONS(8316), 5, + ACTIONS(8126), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [209340] = 3, - ACTIONS(251), 1, + [207507] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6025), 1, + STATE(6022), 1, sym_comment, - ACTIONS(8108), 5, + ACTIONS(8146), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [209354] = 3, - ACTIONS(251), 1, + [207521] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6026), 1, + STATE(6023), 1, sym_comment, - ACTIONS(8054), 5, + ACTIONS(8162), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [209368] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1897), 1, - sym__table_head_separator, - ACTIONS(10181), 1, - anon_sym_DOT2, - STATE(6027), 1, - sym_comment, - STATE(6497), 1, - aux_sym_cell_path_repeat1, - STATE(7405), 1, - sym_path, - STATE(7585), 1, - sym_cell_path, - [209390] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10069), 1, - anon_sym_LPAREN, - ACTIONS(10071), 1, - sym_unescaped_interpolated_content, - ACTIONS(10183), 1, - anon_sym_SQUOTE, - STATE(5931), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6028), 1, - sym_comment, - STATE(6910), 1, - sym_expr_interpolated, - [209412] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4986), 1, - anon_sym_DASH2, - ACTIONS(10185), 1, - anon_sym_EQ2, - STATE(6029), 1, - sym_comment, - ACTIONS(4984), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [209430] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10069), 1, - anon_sym_LPAREN, - ACTIONS(10071), 1, - sym_unescaped_interpolated_content, - ACTIONS(10187), 1, - anon_sym_SQUOTE, - STATE(5954), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6030), 1, - sym_comment, - STATE(6910), 1, - sym_expr_interpolated, - [209452] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8744), 1, - sym_identifier, - ACTIONS(9938), 1, - anon_sym_DOLLAR, - STATE(5696), 1, - sym_val_variable, - STATE(6031), 1, - sym_comment, - STATE(6158), 1, - sym__variable_name, - STATE(6664), 1, - sym__assignment_pattern, - [209474] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8744), 1, - sym_identifier, - ACTIONS(9938), 1, - anon_sym_DOLLAR, - STATE(5696), 1, - sym_val_variable, - STATE(6032), 1, - sym_comment, - STATE(6158), 1, - sym__variable_name, - STATE(6665), 1, - sym__assignment_pattern, - [209496] = 7, - ACTIONS(251), 1, + [207535] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8744), 1, - sym_identifier, - ACTIONS(9938), 1, - anon_sym_DOLLAR, - STATE(5696), 1, - sym_val_variable, - STATE(6033), 1, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(10057), 1, + anon_sym_COLON, + ACTIONS(10163), 1, + anon_sym_EQ, + STATE(6024), 1, sym_comment, - STATE(6158), 1, - sym__variable_name, - STATE(6666), 1, - sym__assignment_pattern, - [209518] = 7, - ACTIONS(251), 1, + STATE(6996), 1, + aux_sym_shebang_repeat1, + STATE(7528), 1, + sym_param_type, + [207557] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8744), 1, + ACTIONS(8788), 1, sym_identifier, - ACTIONS(9938), 1, + ACTIONS(9751), 1, anon_sym_DOLLAR, - STATE(5696), 1, + STATE(5653), 1, sym_val_variable, - STATE(5959), 1, + STATE(6024), 1, sym__variable_name, - STATE(6034), 1, + STATE(6025), 1, sym_comment, - STATE(6971), 1, + STATE(6776), 1, sym__assignment_pattern_parenthesized, - [209540] = 7, - ACTIONS(251), 1, + [207579] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8744), 1, - sym_identifier, - ACTIONS(9938), 1, - anon_sym_DOLLAR, - STATE(5696), 1, - sym_val_variable, - STATE(6035), 1, + ACTIONS(1701), 1, + aux_sym_unquoted_token2, + ACTIONS(9783), 1, + aux_sym__immediate_decimal_token2, + STATE(6026), 1, sym_comment, - STATE(6158), 1, - sym__variable_name, - STATE(6251), 1, - sym__assignment_pattern, - [209562] = 3, - ACTIONS(251), 1, + ACTIONS(1703), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [207597] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6036), 1, + STATE(6027), 1, sym_comment, - ACTIONS(8188), 5, + ACTIONS(8374), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [209576] = 5, - ACTIONS(251), 1, + [207611] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6290), 1, - anon_sym_LBRACE, - STATE(6037), 1, + STATE(6028), 1, sym_comment, - STATE(7149), 1, - sym_block, - ACTIONS(9811), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [209594] = 6, - ACTIONS(251), 1, + ACTIONS(8158), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [207625] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1755), 1, - aux_sym_unquoted_token2, - ACTIONS(10189), 1, - anon_sym_DOT, - ACTIONS(10191), 1, - aux_sym__immediate_decimal_token2, - STATE(6038), 1, + ACTIONS(10059), 1, + anon_sym_LPAREN, + ACTIONS(10061), 1, + sym_unescaped_interpolated_content, + ACTIONS(10165), 1, + anon_sym_SQUOTE, + STATE(6029), 1, sym_comment, - ACTIONS(1757), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [209614] = 3, - ACTIONS(251), 1, + STATE(6044), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7036), 1, + sym_expr_interpolated, + [207647] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6039), 1, + STATE(6030), 1, sym_comment, - ACTIONS(8218), 5, + ACTIONS(8172), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [209628] = 7, - ACTIONS(251), 1, + [207661] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3420), 1, - anon_sym_COLON2, - ACTIONS(10121), 1, - anon_sym_use, - ACTIONS(10123), 1, - anon_sym_list, - ACTIONS(10125), 1, - anon_sym_hide, - ACTIONS(10127), 1, - anon_sym_new, - STATE(6040), 1, + ACTIONS(7907), 1, + sym__newline, + ACTIONS(7909), 1, + sym__space, + STATE(4709), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(6003), 1, + aux_sym_ctrl_do_parenthesized_repeat1, + STATE(6031), 1, sym_comment, - [209650] = 4, - ACTIONS(3), 1, + STATE(7378), 1, + sym__flags_parenthesized, + [207683] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10193), 1, - anon_sym_QMARK2, - STATE(6041), 1, + STATE(6032), 1, sym_comment, - ACTIONS(960), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [209666] = 6, - ACTIONS(3), 1, + ACTIONS(8404), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [207697] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1812), 1, - anon_sym_RBRACE, - ACTIONS(1820), 1, - sym__entry_separator, - ACTIONS(10195), 1, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + ACTIONS(1814), 1, + anon_sym_LBRACE, + ACTIONS(10167), 1, anon_sym_DOT_DOT2, - STATE(6042), 1, + STATE(6033), 1, sym_comment, - ACTIONS(10197), 2, + ACTIONS(10169), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [209686] = 3, - ACTIONS(251), 1, + [207717] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6043), 1, + STATE(6034), 1, sym_comment, - ACTIONS(8058), 5, + ACTIONS(8052), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [209700] = 3, - ACTIONS(251), 1, + [207731] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6044), 1, + ACTIONS(1693), 1, + aux_sym_unquoted_token2, + ACTIONS(10171), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(10173), 1, + aux_sym__immediate_decimal_token2, + STATE(6035), 1, + sym_comment, + ACTIONS(1695), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [207751] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10059), 1, + anon_sym_LPAREN, + ACTIONS(10061), 1, + sym_unescaped_interpolated_content, + ACTIONS(10175), 1, + anon_sym_SQUOTE, + STATE(5966), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6036), 1, + sym_comment, + STATE(7036), 1, + sym_expr_interpolated, + [207773] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6037), 1, sym_comment, - ACTIONS(8112), 5, + ACTIONS(8314), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [209714] = 5, - ACTIONS(3), 1, + [207787] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9882), 1, + ACTIONS(1766), 1, + aux_sym_unquoted_token2, + ACTIONS(10177), 1, aux_sym__immediate_decimal_token2, - STATE(6045), 1, + STATE(6038), 1, sym_comment, - ACTIONS(1755), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1757), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [209732] = 7, - ACTIONS(251), 1, + ACTIONS(1768), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [207805] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8744), 1, + ACTIONS(8788), 1, sym_identifier, - ACTIONS(9938), 1, + ACTIONS(9751), 1, anon_sym_DOLLAR, - STATE(5696), 1, + STATE(5653), 1, + sym_val_variable, + STATE(6039), 1, + sym_comment, + STATE(6062), 1, + sym__variable_name, + STATE(6181), 1, + sym__assignment_pattern, + [207827] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8788), 1, + sym_identifier, + ACTIONS(9751), 1, + anon_sym_DOLLAR, + STATE(5653), 1, + sym_val_variable, + STATE(6040), 1, + sym_comment, + STATE(6062), 1, + sym__variable_name, + STATE(6182), 1, + sym__assignment_pattern, + [207849] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8788), 1, + sym_identifier, + ACTIONS(9751), 1, + anon_sym_DOLLAR, + STATE(5653), 1, sym_val_variable, - STATE(5980), 1, - sym__variable_name, - STATE(6046), 1, + STATE(6041), 1, sym_comment, - STATE(6664), 1, + STATE(6062), 1, + sym__variable_name, + STATE(6183), 1, sym__assignment_pattern, - [209754] = 7, - ACTIONS(251), 1, + [207871] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(10083), 1, + anon_sym_AT, + ACTIONS(10179), 1, + anon_sym_GT2, + STATE(5430), 1, + aux_sym__multiple_types_repeat1, + STATE(6042), 1, + sym_comment, + STATE(7045), 1, + sym_param_cmd, + [207893] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8744), 1, + ACTIONS(8788), 1, sym_identifier, - ACTIONS(9938), 1, + ACTIONS(9751), 1, anon_sym_DOLLAR, - STATE(5696), 1, + STATE(5653), 1, sym_val_variable, - STATE(5980), 1, - sym__variable_name, - STATE(6047), 1, + STATE(6043), 1, sym_comment, - STATE(6665), 1, + STATE(6062), 1, + sym__variable_name, + STATE(6245), 1, sym__assignment_pattern, - [209776] = 3, + [207915] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(6048), 1, + ACTIONS(10059), 1, + anon_sym_LPAREN, + ACTIONS(10061), 1, + sym_unescaped_interpolated_content, + ACTIONS(10181), 1, + anon_sym_SQUOTE, + STATE(5966), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6044), 1, sym_comment, - ACTIONS(984), 5, - anon_sym_RBRACK, - anon_sym_QMARK2, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [209790] = 3, - ACTIONS(251), 1, + STATE(7036), 1, + sym_expr_interpolated, + [207937] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6049), 1, + STATE(6045), 1, sym_comment, - ACTIONS(8064), 5, + ACTIONS(8204), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [209804] = 7, - ACTIONS(251), 1, + [207951] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(9773), 1, - anon_sym_LBRACK, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(6050), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(10083), 1, + anon_sym_AT, + ACTIONS(10183), 1, + anon_sym_GT2, + STATE(5445), 1, + aux_sym__multiple_types_repeat1, + STATE(6046), 1, sym_comment, - STATE(6882), 1, - sym_val_list, - STATE(7124), 1, - aux_sym_val_table_repeat1, - [209826] = 3, - ACTIONS(251), 1, + STATE(7077), 1, + sym_param_cmd, + [207973] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6051), 1, + ACTIONS(6315), 1, + anon_sym_LBRACE, + STATE(6047), 1, sym_comment, - ACTIONS(8068), 5, + STATE(6788), 1, + sym_block, + ACTIONS(10031), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [207991] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6048), 1, + sym_comment, + ACTIONS(8230), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [209840] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(9773), 1, - anon_sym_LBRACK, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(6052), 1, - sym_comment, - STATE(7107), 1, - sym_val_list, - STATE(7128), 1, - aux_sym_val_table_repeat1, - [209862] = 3, - ACTIONS(251), 1, + [208005] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6053), 1, + STATE(6049), 1, sym_comment, - ACTIONS(8072), 5, + ACTIONS(8350), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [209876] = 7, - ACTIONS(3), 1, + [208019] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(10087), 1, - anon_sym_AT, - ACTIONS(10199), 1, - anon_sym_GT2, - STATE(5577), 1, - aux_sym__multiple_types_repeat1, - STATE(6054), 1, + ACTIONS(1701), 1, + aux_sym_unquoted_token2, + ACTIONS(10185), 1, + anon_sym_DOT, + ACTIONS(10187), 1, + aux_sym__immediate_decimal_token2, + STATE(6050), 1, sym_comment, - STATE(6956), 1, - sym_param_cmd, - [209898] = 7, + ACTIONS(1703), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [208039] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10069), 1, + ACTIONS(10059), 1, anon_sym_LPAREN, - ACTIONS(10071), 1, + ACTIONS(10061), 1, sym_unescaped_interpolated_content, - ACTIONS(10201), 1, + ACTIONS(10189), 1, anon_sym_SQUOTE, - STATE(6055), 1, - sym_comment, - STATE(6062), 1, + STATE(5966), 1, aux_sym__inter_single_quotes_repeat1, - STATE(6910), 1, - sym_expr_interpolated, - [209920] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6056), 1, + STATE(6051), 1, sym_comment, - ACTIONS(8076), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [209934] = 6, + STATE(7036), 1, + sym_expr_interpolated, + [208061] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2061), 1, - anon_sym_RBRACE, - ACTIONS(2063), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9779), 1, - anon_sym_DOT_DOT2, - STATE(6057), 1, + ACTIONS(10083), 1, + anon_sym_AT, + ACTIONS(10191), 1, + anon_sym_GT2, + STATE(5436), 1, + aux_sym__multiple_types_repeat1, + STATE(6052), 1, sym_comment, - ACTIONS(9781), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [209954] = 3, - ACTIONS(251), 1, + STATE(7060), 1, + sym_param_cmd, + [208083] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6058), 1, + STATE(6053), 1, sym_comment, - ACTIONS(8080), 5, + ACTIONS(8252), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [209968] = 3, - ACTIONS(251), 1, + [208097] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6059), 1, + STATE(6054), 1, sym_comment, - ACTIONS(8224), 5, + ACTIONS(8332), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [209982] = 7, - ACTIONS(251), 1, + [208111] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(10083), 1, + anon_sym_AT, + ACTIONS(10193), 1, + anon_sym_GT2, + STATE(5446), 1, + aux_sym__multiple_types_repeat1, + STATE(6055), 1, + sym_comment, + STATE(7080), 1, + sym_param_cmd, + [208133] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(9787), 1, + anon_sym_LBRACK, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(6056), 1, + sym_comment, + STATE(6917), 1, + sym_val_list, + STATE(7115), 1, + aux_sym_val_table_repeat1, + [208155] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8744), 1, + ACTIONS(8788), 1, sym_identifier, - ACTIONS(9938), 1, + ACTIONS(9751), 1, anon_sym_DOLLAR, - STATE(5696), 1, + STATE(5653), 1, sym_val_variable, - STATE(5980), 1, + STATE(5943), 1, sym__variable_name, - STATE(6060), 1, + STATE(6057), 1, sym_comment, - STATE(6666), 1, + STATE(6869), 1, sym__assignment_pattern, - [210004] = 7, + [208177] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(9787), 1, + anon_sym_LBRACK, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(6058), 1, + sym_comment, + STATE(7123), 1, + aux_sym_val_table_repeat1, + STATE(7281), 1, + sym_val_list, + [208199] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(10087), 1, + ACTIONS(10083), 1, anon_sym_AT, - ACTIONS(10203), 1, + ACTIONS(10195), 1, anon_sym_GT2, - STATE(5578), 1, + STATE(5495), 1, aux_sym__multiple_types_repeat1, - STATE(6061), 1, + STATE(6059), 1, sym_comment, - STATE(6968), 1, + STATE(6856), 1, sym_param_cmd, - [210026] = 7, + [208221] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10069), 1, - anon_sym_LPAREN, - ACTIONS(10071), 1, - sym_unescaped_interpolated_content, - ACTIONS(10205), 1, - anon_sym_SQUOTE, - STATE(5954), 1, - aux_sym__inter_single_quotes_repeat1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(10083), 1, + anon_sym_AT, + ACTIONS(10197), 1, + anon_sym_GT2, + STATE(5496), 1, + aux_sym__multiple_types_repeat1, + STATE(6060), 1, + sym_comment, + STATE(6857), 1, + sym_param_cmd, + [208243] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6061), 1, + sym_comment, + ACTIONS(8200), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [208257] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(10057), 1, + anon_sym_COLON, + ACTIONS(10199), 1, + anon_sym_EQ, STATE(6062), 1, sym_comment, - STATE(6910), 1, - sym_expr_interpolated, - [210048] = 3, - ACTIONS(251), 1, + STATE(6996), 1, + aux_sym_shebang_repeat1, + STATE(7581), 1, + sym_param_type, + [208279] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6063), 1, sym_comment, - ACTIONS(8234), 5, + ACTIONS(8098), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [210062] = 7, - ACTIONS(3), 1, + [208293] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(10087), 1, - anon_sym_AT, - ACTIONS(10207), 1, - anon_sym_GT2, - STATE(5548), 1, - aux_sym__multiple_types_repeat1, STATE(6064), 1, sym_comment, - STATE(7083), 1, - sym_param_cmd, - [210084] = 7, + ACTIONS(8354), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [208307] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(10087), 1, + ACTIONS(10083), 1, anon_sym_AT, - ACTIONS(10209), 1, + ACTIONS(10201), 1, anon_sym_GT2, - STATE(5554), 1, + STATE(5432), 1, aux_sym__multiple_types_repeat1, STATE(6065), 1, sym_comment, - STATE(7084), 1, + STATE(7051), 1, sym_param_cmd, - [210106] = 3, - ACTIONS(3), 1, + [208329] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6066), 1, sym_comment, - ACTIONS(972), 5, - anon_sym_RBRACK, - anon_sym_QMARK2, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [210120] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6067), 1, - sym_comment, - ACTIONS(8250), 5, + ACTIONS(7849), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [210134] = 5, - ACTIONS(251), 1, + [208343] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4972), 1, - anon_sym_DASH2, - ACTIONS(10211), 1, - anon_sym_EQ2, + ACTIONS(8788), 1, + sym_identifier, + ACTIONS(9751), 1, + anon_sym_DOLLAR, + STATE(5653), 1, + sym_val_variable, + STATE(6024), 1, + sym__variable_name, + STATE(6067), 1, + sym_comment, + STATE(6799), 1, + sym__assignment_pattern_parenthesized, + [208365] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10059), 1, + anon_sym_LPAREN, + ACTIONS(10061), 1, + sym_unescaped_interpolated_content, + ACTIONS(10203), 1, + anon_sym_SQUOTE, STATE(6068), 1, sym_comment, - ACTIONS(4970), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [210152] = 3, - ACTIONS(251), 1, + STATE(6070), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7036), 1, + sym_expr_interpolated, + [208387] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6069), 1, sym_comment, - ACTIONS(8132), 5, + ACTIONS(8248), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [210166] = 3, - ACTIONS(251), 1, + [208401] = 7, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(10059), 1, + anon_sym_LPAREN, + ACTIONS(10061), 1, + sym_unescaped_interpolated_content, + ACTIONS(10205), 1, + anon_sym_SQUOTE, + STATE(5966), 1, + aux_sym__inter_single_quotes_repeat1, STATE(6070), 1, sym_comment, - ACTIONS(8254), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [210180] = 7, + STATE(7036), 1, + sym_expr_interpolated, + [208423] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10069), 1, + ACTIONS(10059), 1, anon_sym_LPAREN, - ACTIONS(10071), 1, + ACTIONS(10061), 1, sym_unescaped_interpolated_content, - ACTIONS(10213), 1, + ACTIONS(10207), 1, anon_sym_SQUOTE, + STATE(5935), 1, + aux_sym__inter_single_quotes_repeat1, STATE(6071), 1, sym_comment, - STATE(6093), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6910), 1, + STATE(7036), 1, sym_expr_interpolated, - [210202] = 5, - ACTIONS(251), 1, + [208445] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6290), 1, - anon_sym_LBRACE, + ACTIONS(3442), 1, + anon_sym_COLON2, + ACTIONS(10119), 1, + anon_sym_use, + ACTIONS(10121), 1, + anon_sym_list, + ACTIONS(10123), 1, + anon_sym_hide, + ACTIONS(10125), 1, + anon_sym_new, STATE(6072), 1, sym_comment, - STATE(6931), 1, - sym_block, - ACTIONS(9960), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [210220] = 6, - ACTIONS(3), 1, + [208467] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9779), 1, - anon_sym_DOT_DOT2, - ACTIONS(10215), 1, - anon_sym_RBRACE, - ACTIONS(10217), 1, - sym__entry_separator, + STATE(263), 1, + aux_sym__block_body_repeat1, STATE(6073), 1, sym_comment, - ACTIONS(9781), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [210240] = 3, - ACTIONS(251), 1, + ACTIONS(139), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(1493), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [208485] = 4, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(6506), 1, + anon_sym_DASH2, STATE(6074), 1, sym_comment, - ACTIONS(8266), 5, + ACTIONS(6504), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + [208501] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6075), 1, + sym_comment, + ACTIONS(8386), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [210254] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6470), 1, - anon_sym_DASH2, - STATE(6075), 1, - sym_comment, - ACTIONS(6468), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - [210270] = 6, - ACTIONS(3), 1, + [208515] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9779), 1, - anon_sym_DOT_DOT2, - ACTIONS(10219), 1, - anon_sym_RBRACE, - ACTIONS(10221), 1, - sym__entry_separator, STATE(6076), 1, sym_comment, - ACTIONS(9781), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [210290] = 7, + ACTIONS(8226), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [208529] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10069), 1, - anon_sym_LPAREN, - ACTIONS(10071), 1, - sym_unescaped_interpolated_content, - ACTIONS(10223), 1, - anon_sym_SQUOTE, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(10083), 1, + anon_sym_AT, + ACTIONS(10209), 1, + anon_sym_GT2, + STATE(5439), 1, + aux_sym__multiple_types_repeat1, STATE(6077), 1, sym_comment, - STATE(6080), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6910), 1, - sym_expr_interpolated, - [210312] = 7, - ACTIONS(251), 1, + STATE(7067), 1, + sym_param_cmd, + [208551] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(10113), 1, - anon_sym_COLON, - ACTIONS(10225), 1, - anon_sym_EQ, STATE(6078), 1, sym_comment, - STATE(7284), 1, - aux_sym_shebang_repeat1, - STATE(7779), 1, - sym_param_type, - [210334] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6079), 1, - sym_comment, - ACTIONS(8324), 5, + ACTIONS(8298), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [210348] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10069), 1, - anon_sym_LPAREN, - ACTIONS(10071), 1, - sym_unescaped_interpolated_content, - ACTIONS(10227), 1, - anon_sym_SQUOTE, - STATE(5954), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6080), 1, - sym_comment, - STATE(6910), 1, - sym_expr_interpolated, - [210370] = 7, - ACTIONS(251), 1, + [208565] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8744), 1, + ACTIONS(8788), 1, sym_identifier, - ACTIONS(9938), 1, + ACTIONS(9751), 1, anon_sym_DOLLAR, - STATE(5696), 1, + STATE(5653), 1, sym_val_variable, - STATE(6078), 1, + STATE(5924), 1, sym__variable_name, - STATE(6081), 1, + STATE(6079), 1, sym_comment, - STATE(6664), 1, + STATE(6181), 1, sym__assignment_pattern, - [210392] = 7, - ACTIONS(251), 1, + [208587] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8744), 1, + ACTIONS(8788), 1, sym_identifier, - ACTIONS(9938), 1, + ACTIONS(9751), 1, anon_sym_DOLLAR, - STATE(5696), 1, + STATE(5653), 1, sym_val_variable, - STATE(6078), 1, + STATE(5924), 1, sym__variable_name, - STATE(6082), 1, + STATE(6080), 1, sym_comment, - STATE(6665), 1, + STATE(6182), 1, sym__assignment_pattern, - [210414] = 7, - ACTIONS(251), 1, + [208609] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8744), 1, + ACTIONS(8788), 1, sym_identifier, - ACTIONS(9938), 1, + ACTIONS(9751), 1, anon_sym_DOLLAR, - STATE(5696), 1, + STATE(5653), 1, sym_val_variable, - STATE(6078), 1, + STATE(5924), 1, sym__variable_name, - STATE(6083), 1, + STATE(6081), 1, sym_comment, - STATE(6666), 1, + STATE(6183), 1, sym__assignment_pattern, - [210436] = 7, - ACTIONS(251), 1, + [208631] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8744), 1, + ACTIONS(8788), 1, sym_identifier, - ACTIONS(9938), 1, + ACTIONS(9751), 1, anon_sym_DOLLAR, - STATE(5696), 1, + STATE(5653), 1, sym_val_variable, - STATE(6078), 1, + STATE(5924), 1, sym__variable_name, - STATE(6084), 1, + STATE(6082), 1, sym_comment, - STATE(6251), 1, + STATE(6245), 1, sym__assignment_pattern, - [210458] = 7, + [208653] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(10087), 1, + ACTIONS(10083), 1, anon_sym_AT, - ACTIONS(10229), 1, + ACTIONS(10211), 1, anon_sym_GT2, - STATE(5456), 1, + STATE(5501), 1, aux_sym__multiple_types_repeat1, - STATE(6085), 1, + STATE(6083), 1, sym_comment, - STATE(7264), 1, + STATE(6883), 1, sym_param_cmd, - [210480] = 7, + [208675] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(10087), 1, + ACTIONS(10083), 1, anon_sym_AT, - ACTIONS(10231), 1, + ACTIONS(10213), 1, anon_sym_GT2, - STATE(5448), 1, + STATE(5502), 1, aux_sym__multiple_types_repeat1, - STATE(6086), 1, + STATE(6084), 1, sym_comment, - STATE(7023), 1, + STATE(6888), 1, sym_param_cmd, - [210502] = 3, - ACTIONS(251), 1, + [208697] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2014), 1, + anon_sym_RBRACE, + ACTIONS(2016), 1, + sym__entry_separator, + ACTIONS(9842), 1, + anon_sym_DOT_DOT2, + STATE(6085), 1, + sym_comment, + ACTIONS(9844), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [208717] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10059), 1, + anon_sym_LPAREN, + ACTIONS(10061), 1, + sym_unescaped_interpolated_content, + ACTIONS(10215), 1, + anon_sym_SQUOTE, + STATE(5953), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6086), 1, + sym_comment, + STATE(7036), 1, + sym_expr_interpolated, + [208739] = 7, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(10059), 1, + anon_sym_LPAREN, + ACTIONS(10061), 1, + sym_unescaped_interpolated_content, + ACTIONS(10217), 1, + anon_sym_SQUOTE, + STATE(5966), 1, + aux_sym__inter_single_quotes_repeat1, STATE(6087), 1, sym_comment, - ACTIONS(8258), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, + STATE(7036), 1, + sym_expr_interpolated, + [208761] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5052), 1, + anon_sym_DASH2, + ACTIONS(10219), 1, + anon_sym_EQ2, + STATE(6088), 1, + sym_comment, + ACTIONS(5050), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - [210516] = 7, - ACTIONS(251), 1, + [208779] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10059), 1, + anon_sym_LPAREN, + ACTIONS(10061), 1, + sym_unescaped_interpolated_content, + ACTIONS(10221), 1, + anon_sym_SQUOTE, + STATE(6089), 1, + sym_comment, + STATE(6097), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7036), 1, + sym_expr_interpolated, + [208801] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(6088), 1, + STATE(6090), 1, sym_comment, - STATE(7100), 1, + STATE(7008), 1, sym_val_list, - STATE(7113), 1, + STATE(7143), 1, + aux_sym_val_table_repeat1, + [208823] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(9787), 1, + anon_sym_LBRACK, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(6091), 1, + sym_comment, + STATE(7018), 1, + sym_val_list, + STATE(7145), 1, aux_sym_val_table_repeat1, - [210538] = 7, + [208845] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(10087), 1, + ACTIONS(10083), 1, anon_sym_AT, - ACTIONS(10233), 1, + ACTIONS(10223), 1, anon_sym_GT2, - STATE(5459), 1, + STATE(5503), 1, aux_sym__multiple_types_repeat1, - STATE(6089), 1, + STATE(6092), 1, sym_comment, - STATE(7088), 1, + STATE(6898), 1, sym_param_cmd, - [210560] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6090), 1, - sym_comment, - ACTIONS(8272), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [210574] = 7, - ACTIONS(251), 1, + [208867] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(6091), 1, + STATE(6093), 1, sym_comment, - STATE(6999), 1, + STATE(7139), 1, sym_val_list, - STATE(7156), 1, + STATE(7153), 1, aux_sym_val_table_repeat1, - [210596] = 7, - ACTIONS(251), 1, + [208889] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(6092), 1, + STATE(6094), 1, sym_comment, - STATE(7003), 1, - sym_val_list, - STATE(7158), 1, + STATE(7155), 1, aux_sym_val_table_repeat1, - [210618] = 7, + STATE(7161), 1, + sym_val_list, + [208911] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10069), 1, - anon_sym_LPAREN, - ACTIONS(10071), 1, - sym_unescaped_interpolated_content, - ACTIONS(10235), 1, - anon_sym_SQUOTE, - STATE(5954), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6093), 1, - sym_comment, - STATE(6910), 1, - sym_expr_interpolated, - [210640] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6094), 1, - sym_comment, - ACTIONS(8262), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(10083), 1, anon_sym_AT, - anon_sym_LBRACE, - [210654] = 3, - ACTIONS(251), 1, - anon_sym_POUND, + ACTIONS(10225), 1, + anon_sym_GT2, + STATE(5504), 1, + aux_sym__multiple_types_repeat1, STATE(6095), 1, sym_comment, - ACTIONS(8332), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [210668] = 7, + STATE(6901), 1, + sym_param_cmd, + [208933] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(10087), 1, - anon_sym_AT, - ACTIONS(10237), 1, - anon_sym_GT2, - STATE(5555), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10059), 1, + anon_sym_LPAREN, + ACTIONS(10061), 1, + sym_unescaped_interpolated_content, + ACTIONS(10227), 1, + anon_sym_SQUOTE, STATE(6096), 1, sym_comment, - STATE(7090), 1, - sym_param_cmd, - [210690] = 5, + STATE(6135), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7036), 1, + sym_expr_interpolated, + [208955] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10239), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(10059), 1, + anon_sym_LPAREN, + ACTIONS(10061), 1, + sym_unescaped_interpolated_content, + ACTIONS(10229), 1, + anon_sym_SQUOTE, + STATE(5966), 1, + aux_sym__inter_single_quotes_repeat1, STATE(6097), 1, sym_comment, - ACTIONS(1783), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1785), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [210708] = 7, - ACTIONS(251), 1, + STATE(7036), 1, + sym_expr_interpolated, + [208977] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, STATE(6098), 1, sym_comment, - STATE(7143), 1, + STATE(6708), 1, sym_val_list, - STATE(7167), 1, + STATE(7160), 1, aux_sym_val_table_repeat1, - [210730] = 7, - ACTIONS(251), 1, + [208999] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, STATE(6099), 1, sym_comment, - STATE(7164), 1, + STATE(6714), 1, sym_val_list, - STATE(7169), 1, + STATE(7163), 1, aux_sym_val_table_repeat1, - [210752] = 3, - ACTIONS(251), 1, + [209021] = 7, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(10083), 1, + anon_sym_AT, + ACTIONS(10231), 1, + anon_sym_GT2, + STATE(5441), 1, + aux_sym__multiple_types_repeat1, STATE(6100), 1, sym_comment, - ACTIONS(8336), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [210766] = 7, + STATE(7072), 1, + sym_param_cmd, + [209043] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10069), 1, - anon_sym_LPAREN, - ACTIONS(10071), 1, - sym_unescaped_interpolated_content, - ACTIONS(10241), 1, - anon_sym_SQUOTE, + ACTIONS(9944), 1, + aux_sym__immediate_decimal_token2, STATE(6101), 1, sym_comment, - STATE(6107), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6910), 1, - sym_expr_interpolated, - [210788] = 7, - ACTIONS(251), 1, + ACTIONS(1701), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1703), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [209061] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, STATE(6102), 1, sym_comment, - STATE(6719), 1, + STATE(6743), 1, sym_val_list, - STATE(7175), 1, + STATE(7169), 1, aux_sym_val_table_repeat1, - [210810] = 7, - ACTIONS(251), 1, + [209083] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, STATE(6103), 1, sym_comment, - STATE(6723), 1, + STATE(6749), 1, sym_val_list, - STATE(7177), 1, + STATE(7171), 1, aux_sym_val_table_repeat1, - [210832] = 6, - ACTIONS(3), 1, + [209105] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2007), 1, - anon_sym_RBRACE, - ACTIONS(2013), 1, - sym__entry_separator, - ACTIONS(9779), 1, - anon_sym_DOT_DOT2, STATE(6104), 1, sym_comment, - ACTIONS(9781), 2, + ACTIONS(1693), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1695), 3, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [210852] = 5, - ACTIONS(251), 1, + [209121] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(212), 1, - aux_sym__block_body_repeat1, STATE(6105), 1, sym_comment, - ACTIONS(141), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(605), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [210870] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1711), 1, - aux_sym_unquoted_token2, - ACTIONS(10243), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10245), 1, - aux_sym__immediate_decimal_token2, - STATE(6106), 1, - sym_comment, - ACTIONS(1713), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [210890] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10069), 1, - anon_sym_LPAREN, - ACTIONS(10071), 1, - sym_unescaped_interpolated_content, - ACTIONS(10247), 1, - anon_sym_SQUOTE, - STATE(5954), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6107), 1, - sym_comment, - STATE(6910), 1, - sym_expr_interpolated, - [210912] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(9773), 1, - anon_sym_LBRACK, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(6108), 1, - sym_comment, - STATE(6746), 1, - sym_val_list, - STATE(7185), 1, - aux_sym_val_table_repeat1, - [210934] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(10087), 1, - anon_sym_AT, - ACTIONS(10249), 1, + ACTIONS(8378), 5, + anon_sym_EQ, + anon_sym_DASH_GT, anon_sym_GT2, - STATE(5559), 1, - aux_sym__multiple_types_repeat1, - STATE(6109), 1, - sym_comment, - STATE(7092), 1, - sym_param_cmd, - [210956] = 4, - ACTIONS(251), 1, + anon_sym_AT, + anon_sym_LBRACE, + [209135] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6110), 1, + STATE(6106), 1, sym_comment, - ACTIONS(1711), 2, + ACTIONS(1766), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1713), 3, + ACTIONS(1768), 3, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [210972] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(945), 1, - anon_sym_COLON2, - ACTIONS(7201), 1, - anon_sym_DOT2, - STATE(1399), 1, - sym_cell_path, - STATE(1532), 1, - sym_path, - STATE(3902), 1, - aux_sym_cell_path_repeat1, - STATE(6111), 1, - sym_comment, - [210994] = 7, - ACTIONS(251), 1, + [209151] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(6112), 1, + STATE(6107), 1, sym_comment, STATE(6770), 1, sym_val_list, - STATE(7192), 1, + STATE(7179), 1, aux_sym_val_table_repeat1, - [211016] = 7, - ACTIONS(251), 1, + [209173] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(6113), 1, + STATE(6108), 1, sym_comment, - STATE(6775), 1, + STATE(6774), 1, sym_val_list, - STATE(7194), 1, + STATE(7181), 1, aux_sym_val_table_repeat1, - [211038] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6114), 1, - sym_comment, - ACTIONS(8162), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [211052] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6115), 1, - sym_comment, - ACTIONS(8276), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [211066] = 7, - ACTIONS(251), 1, + [209195] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(6116), 1, + STATE(6109), 1, sym_comment, - STATE(6799), 1, + STATE(6793), 1, sym_val_list, - STATE(7201), 1, + STATE(7187), 1, aux_sym_val_table_repeat1, - [211088] = 7, - ACTIONS(251), 1, + [209217] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(6117), 1, + STATE(6110), 1, sym_comment, - STATE(6806), 1, + STATE(6800), 1, sym_val_list, - STATE(7204), 1, + STATE(7190), 1, aux_sym_val_table_repeat1, - [211110] = 7, - ACTIONS(251), 1, + [209239] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(6118), 1, + STATE(6111), 1, sym_comment, - STATE(6826), 1, + STATE(6822), 1, sym_val_list, - STATE(7212), 1, + STATE(7198), 1, aux_sym_val_table_repeat1, - [211132] = 7, - ACTIONS(251), 1, + [209261] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(6119), 1, + STATE(6112), 1, sym_comment, - STATE(6833), 1, + STATE(6827), 1, sym_val_list, - STATE(7214), 1, + STATE(7201), 1, aux_sym_val_table_repeat1, - [211154] = 7, + [209283] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(10087), 1, - anon_sym_AT, - ACTIONS(10251), 1, - anon_sym_GT2, - STATE(5502), 1, - aux_sym__multiple_types_repeat1, - STATE(6120), 1, + ACTIONS(10059), 1, + anon_sym_LPAREN, + ACTIONS(10061), 1, + sym_unescaped_interpolated_content, + ACTIONS(10233), 1, + anon_sym_SQUOTE, + STATE(5963), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6113), 1, sym_comment, - STATE(7290), 1, - sym_param_cmd, - [211176] = 7, - ACTIONS(251), 1, + STATE(7036), 1, + sym_expr_interpolated, + [209305] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(6121), 1, + STATE(6114), 1, sym_comment, - STATE(6849), 1, + STATE(6843), 1, sym_val_list, - STATE(7220), 1, + STATE(7209), 1, aux_sym_val_table_repeat1, - [211198] = 7, - ACTIONS(251), 1, + [209327] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(6122), 1, + STATE(6115), 1, sym_comment, - STATE(6854), 1, + STATE(6847), 1, sym_val_list, - STATE(7223), 1, + STATE(7212), 1, aux_sym_val_table_repeat1, - [211220] = 3, - ACTIONS(251), 1, + [209349] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6123), 1, + STATE(6116), 1, sym_comment, - ACTIONS(8166), 5, + ACTIONS(8304), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [211234] = 7, - ACTIONS(3), 1, + [209363] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7886), 1, - sym__newline, - ACTIONS(7888), 1, - sym__space, - STATE(4632), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(5946), 1, - aux_sym_ctrl_do_parenthesized_repeat1, - STATE(6124), 1, + STATE(6117), 1, sym_comment, - STATE(7422), 1, - sym__flags_parenthesized, - [211256] = 7, - ACTIONS(251), 1, + ACTIONS(8338), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [209377] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(6125), 1, + STATE(6118), 1, sym_comment, - STATE(6868), 1, + STATE(6866), 1, sym_val_list, - STATE(7230), 1, + STATE(7218), 1, aux_sym_val_table_repeat1, - [211278] = 7, - ACTIONS(251), 1, + [209399] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(6126), 1, + STATE(6119), 1, sym_comment, - STATE(6874), 1, + STATE(6872), 1, sym_val_list, - STATE(7232), 1, + STATE(7220), 1, aux_sym_val_table_repeat1, - [211300] = 7, - ACTIONS(251), 1, + [209421] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(8788), 1, + sym_identifier, + ACTIONS(9751), 1, + anon_sym_DOLLAR, + STATE(5653), 1, + sym_val_variable, + STATE(6024), 1, + sym__variable_name, + STATE(6120), 1, + sym_comment, + STATE(6802), 1, + sym__assignment_pattern_parenthesized, + [209443] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(10083), 1, + anon_sym_AT, + ACTIONS(10235), 1, + anon_sym_GT2, + STATE(5433), 1, + aux_sym__multiple_types_repeat1, + STATE(6121), 1, + sym_comment, + STATE(7053), 1, + sym_param_cmd, + [209465] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10237), 1, + aux_sym__immediate_decimal_token2, + STATE(6122), 1, + sym_comment, + ACTIONS(1766), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1768), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [209483] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(6127), 1, + STATE(6123), 1, sym_comment, - STATE(7102), 1, + STATE(7096), 1, sym_val_list, - STATE(7238), 1, + STATE(7227), 1, aux_sym_val_table_repeat1, - [211322] = 7, - ACTIONS(251), 1, + [209505] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(6128), 1, + STATE(6124), 1, sym_comment, - STATE(7108), 1, + STATE(7100), 1, sym_val_list, - STATE(7240), 1, + STATE(7229), 1, aux_sym_val_table_repeat1, - [211344] = 7, - ACTIONS(251), 1, + [209527] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(6129), 1, + STATE(6125), 1, sym_comment, - STATE(6894), 1, + STATE(6889), 1, sym_val_list, - STATE(7245), 1, + STATE(7234), 1, aux_sym_val_table_repeat1, - [211366] = 7, - ACTIONS(251), 1, + [209549] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(6130), 1, + STATE(6126), 1, sym_comment, - STATE(6900), 1, + STATE(6896), 1, sym_val_list, - STATE(7247), 1, + STATE(7236), 1, aux_sym_val_table_repeat1, - [211388] = 7, - ACTIONS(251), 1, + [209571] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(6131), 1, + STATE(6127), 1, sym_comment, - STATE(6918), 1, + STATE(6913), 1, sym_val_list, - STATE(7252), 1, + STATE(7240), 1, aux_sym_val_table_repeat1, - [211410] = 7, - ACTIONS(251), 1, + [209593] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(6132), 1, + STATE(6128), 1, sym_comment, - STATE(6925), 1, + STATE(6918), 1, sym_val_list, - STATE(7254), 1, + STATE(7243), 1, aux_sym_val_table_repeat1, - [211432] = 7, - ACTIONS(251), 1, + [209615] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(6133), 1, + STATE(6129), 1, sym_comment, - STATE(6942), 1, + STATE(6934), 1, sym_val_list, - STATE(7258), 1, + STATE(7247), 1, aux_sym_val_table_repeat1, - [211454] = 7, - ACTIONS(251), 1, + [209637] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(6134), 1, + STATE(6130), 1, sym_comment, - STATE(6946), 1, + STATE(6938), 1, sym_val_list, - STATE(7261), 1, + STATE(7249), 1, aux_sym_val_table_repeat1, - [211476] = 7, - ACTIONS(251), 1, + [209659] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(6135), 1, + STATE(6131), 1, sym_comment, - STATE(6957), 1, + STATE(6949), 1, sym_val_list, - STATE(7266), 1, + STATE(7254), 1, aux_sym_val_table_repeat1, - [211498] = 7, - ACTIONS(251), 1, + [209681] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(6136), 1, + STATE(6132), 1, sym_comment, - STATE(6963), 1, + STATE(6954), 1, sym_val_list, - STATE(7268), 1, + STATE(7256), 1, aux_sym_val_table_repeat1, - [211520] = 7, - ACTIONS(251), 1, + [209703] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(6137), 1, + STATE(6133), 1, sym_comment, - STATE(6972), 1, + STATE(6967), 1, sym_val_list, - STATE(7272), 1, + STATE(7261), 1, aux_sym_val_table_repeat1, - [211542] = 7, - ACTIONS(251), 1, + [209725] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(6138), 1, + STATE(6134), 1, sym_comment, - STATE(6976), 1, + STATE(6971), 1, sym_val_list, - STATE(7275), 1, + STATE(7264), 1, aux_sym_val_table_repeat1, - [211564] = 7, + [209747] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10069), 1, + ACTIONS(10059), 1, anon_sym_LPAREN, - ACTIONS(10071), 1, + ACTIONS(10061), 1, sym_unescaped_interpolated_content, - ACTIONS(10253), 1, + ACTIONS(10239), 1, anon_sym_SQUOTE, - STATE(6139), 1, + STATE(5966), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6135), 1, sym_comment, - STATE(6146), 1, + STATE(7036), 1, + sym_expr_interpolated, + [209769] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10059), 1, + anon_sym_LPAREN, + ACTIONS(10061), 1, + sym_unescaped_interpolated_content, + ACTIONS(10241), 1, + anon_sym_SQUOTE, + STATE(6136), 1, + sym_comment, + STATE(6147), 1, aux_sym__inter_single_quotes_repeat1, - STATE(6910), 1, + STATE(7036), 1, sym_expr_interpolated, - [211586] = 7, - ACTIONS(251), 1, + [209791] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1857), 1, - sym__table_head_separator, - ACTIONS(10181), 1, - anon_sym_DOT2, - STATE(6140), 1, + STATE(6137), 1, sym_comment, - STATE(6497), 1, - aux_sym_cell_path_repeat1, - STATE(7405), 1, - sym_path, - STATE(7468), 1, - sym_cell_path, - [211608] = 7, - ACTIONS(251), 1, + ACTIONS(8342), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [209805] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8744), 1, + ACTIONS(8788), 1, sym_identifier, - ACTIONS(9938), 1, + ACTIONS(9751), 1, anon_sym_DOLLAR, - STATE(5696), 1, + STATE(5653), 1, sym_val_variable, - STATE(5975), 1, + STATE(5978), 1, sym__variable_name, - STATE(6141), 1, + STATE(6138), 1, sym_comment, - STATE(7028), 1, + STATE(6776), 1, sym__assignment_pattern_parenthesized, - [211630] = 7, - ACTIONS(251), 1, + [209827] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8744), 1, + ACTIONS(8788), 1, sym_identifier, - ACTIONS(9938), 1, + ACTIONS(9751), 1, anon_sym_DOLLAR, - STATE(5696), 1, + STATE(5653), 1, sym_val_variable, - STATE(5975), 1, + STATE(5978), 1, sym__variable_name, - STATE(6142), 1, + STATE(6139), 1, sym_comment, - STATE(7045), 1, + STATE(6799), 1, sym__assignment_pattern_parenthesized, - [211652] = 7, - ACTIONS(251), 1, + [209849] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8744), 1, + ACTIONS(8788), 1, sym_identifier, - ACTIONS(9938), 1, + ACTIONS(9751), 1, anon_sym_DOLLAR, - STATE(5696), 1, + STATE(5653), 1, sym_val_variable, - STATE(5975), 1, + STATE(5978), 1, sym__variable_name, - STATE(6143), 1, + STATE(6140), 1, sym_comment, - STATE(6971), 1, + STATE(6802), 1, sym__assignment_pattern_parenthesized, - [211674] = 6, + [209871] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10255), 1, - sym__newline, - ACTIONS(10258), 1, - sym__space, - STATE(5468), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(7422), 1, - sym__flags_parenthesized, - STATE(6144), 2, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(10083), 1, + anon_sym_AT, + ACTIONS(10243), 1, + anon_sym_GT2, + STATE(5506), 1, + aux_sym__multiple_types_repeat1, + STATE(6141), 1, sym_comment, - aux_sym_ctrl_do_parenthesized_repeat1, - [211694] = 7, - ACTIONS(251), 1, + STATE(6908), 1, + sym_param_cmd, + [209893] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(10083), 1, + anon_sym_AT, + ACTIONS(10245), 1, + anon_sym_GT2, + STATE(5507), 1, + aux_sym__multiple_types_repeat1, + STATE(6142), 1, + sym_comment, + STATE(6912), 1, + sym_param_cmd, + [209915] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8744), 1, + ACTIONS(8788), 1, sym_identifier, - ACTIONS(9938), 1, + ACTIONS(9751), 1, anon_sym_DOLLAR, - STATE(5696), 1, + STATE(5653), 1, sym_val_variable, - STATE(5975), 1, + STATE(5978), 1, sym__variable_name, - STATE(6145), 1, + STATE(6143), 1, sym_comment, - STATE(7276), 1, + STATE(6747), 1, sym__assignment_pattern_parenthesized, - [211716] = 7, + [209937] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10069), 1, - anon_sym_LPAREN, - ACTIONS(10071), 1, - sym_unescaped_interpolated_content, - ACTIONS(10261), 1, - anon_sym_SQUOTE, - STATE(5954), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6146), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(10083), 1, + anon_sym_AT, + ACTIONS(10247), 1, + anon_sym_GT2, + STATE(5440), 1, + aux_sym__multiple_types_repeat1, + STATE(6144), 1, sym_comment, - STATE(6910), 1, - sym_expr_interpolated, - [211738] = 3, - ACTIONS(251), 1, + STATE(7069), 1, + sym_param_cmd, + [209959] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6147), 1, + ACTIONS(6315), 1, + anon_sym_LBRACE, + STATE(6145), 1, + sym_comment, + STATE(6711), 1, + sym_block, + ACTIONS(9753), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [209977] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6146), 1, sym_comment, - ACTIONS(8426), 5, + ACTIONS(8360), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [211752] = 3, - ACTIONS(251), 1, + [209991] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10059), 1, + anon_sym_LPAREN, + ACTIONS(10061), 1, + sym_unescaped_interpolated_content, + ACTIONS(10249), 1, + anon_sym_SQUOTE, + STATE(5966), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6147), 1, + sym_comment, + STATE(7036), 1, + sym_expr_interpolated, + [210013] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1806), 1, + anon_sym_RBRACE, + ACTIONS(1814), 1, + sym__entry_separator, + ACTIONS(10251), 1, + anon_sym_DOT_DOT2, STATE(6148), 1, sym_comment, - ACTIONS(8170), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [211766] = 5, - ACTIONS(251), 1, + ACTIONS(10253), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [210033] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1783), 1, - aux_sym_unquoted_token2, - ACTIONS(10263), 1, + ACTIONS(9757), 1, aux_sym__immediate_decimal_token2, STATE(6149), 1, sym_comment, - ACTIONS(1785), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [211784] = 7, + ACTIONS(1701), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1703), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [210051] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(10087), 1, + ACTIONS(10083), 1, anon_sym_AT, - ACTIONS(10265), 1, + ACTIONS(10255), 1, anon_sym_GT2, - STATE(5581), 1, + STATE(5568), 1, aux_sym__multiple_types_repeat1, STATE(6150), 1, sym_comment, - STATE(7094), 1, + STATE(6792), 1, sym_param_cmd, - [211806] = 7, + [210073] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(10087), 1, + ACTIONS(10083), 1, anon_sym_AT, - ACTIONS(10267), 1, + ACTIONS(10257), 1, anon_sym_GT2, - STATE(5584), 1, + STATE(5457), 1, aux_sym__multiple_types_repeat1, STATE(6151), 1, sym_comment, - STATE(7096), 1, + STATE(7109), 1, sym_param_cmd, - [211828] = 7, + [210095] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10069), 1, - anon_sym_LPAREN, - ACTIONS(10071), 1, - sym_unescaped_interpolated_content, - ACTIONS(10269), 1, - anon_sym_SQUOTE, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(10083), 1, + anon_sym_AT, + ACTIONS(10259), 1, + anon_sym_GT2, + STATE(5442), 1, + aux_sym__multiple_types_repeat1, STATE(6152), 1, sym_comment, - STATE(6154), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6910), 1, - sym_expr_interpolated, - [211850] = 4, - ACTIONS(251), 1, + STATE(7073), 1, + sym_param_cmd, + [210117] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6153), 1, sym_comment, - ACTIONS(1755), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1757), 3, + ACTIONS(8150), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [211866] = 7, - ACTIONS(3), 1, + [210131] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10069), 1, - anon_sym_LPAREN, - ACTIONS(10071), 1, - sym_unescaped_interpolated_content, - ACTIONS(10271), 1, - anon_sym_SQUOTE, - STATE(5954), 1, - aux_sym__inter_single_quotes_repeat1, + ACTIONS(8788), 1, + sym_identifier, + ACTIONS(9751), 1, + anon_sym_DOLLAR, + STATE(5653), 1, + sym_val_variable, + STATE(6018), 1, + sym__variable_name, STATE(6154), 1, sym_comment, - STATE(6910), 1, - sym_expr_interpolated, - [211888] = 7, + STATE(6245), 1, + sym__assignment_pattern, + [210153] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10069), 1, + ACTIONS(10059), 1, anon_sym_LPAREN, - ACTIONS(10071), 1, + ACTIONS(10061), 1, sym_unescaped_interpolated_content, - ACTIONS(10273), 1, + ACTIONS(10261), 1, anon_sym_SQUOTE, - STATE(5941), 1, + STATE(6051), 1, aux_sym__inter_single_quotes_repeat1, STATE(6155), 1, sym_comment, - STATE(6910), 1, + STATE(7036), 1, sym_expr_interpolated, - [211910] = 3, - ACTIONS(251), 1, + [210175] = 7, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(10263), 1, + anon_sym_PIPE, + ACTIONS(10265), 1, + anon_sym_if, + ACTIONS(10267), 1, + anon_sym_EQ_GT, STATE(6156), 1, sym_comment, - ACTIONS(8192), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [211924] = 3, - ACTIONS(251), 1, + STATE(6977), 1, + aux_sym_match_pattern_repeat1, + STATE(7742), 1, + sym_match_guard, + [210197] = 7, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(10083), 1, + anon_sym_AT, + ACTIONS(10269), 1, + anon_sym_GT2, + STATE(5569), 1, + aux_sym__multiple_types_repeat1, STATE(6157), 1, sym_comment, - ACTIONS(7991), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [211938] = 7, - ACTIONS(251), 1, + STATE(6806), 1, + sym_param_cmd, + [210219] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(10113), 1, - anon_sym_COLON, - ACTIONS(10275), 1, - anon_sym_EQ, + ACTIONS(1963), 1, + sym__table_head_separator, + ACTIONS(10077), 1, + anon_sym_DOT2, STATE(6158), 1, sym_comment, - STATE(7284), 1, - aux_sym_shebang_repeat1, - STATE(7634), 1, - sym_param_type, - [211960] = 6, - ACTIONS(3), 1, + STATE(6422), 1, + aux_sym_cell_path_repeat1, + STATE(7324), 1, + sym_path, + STATE(7569), 1, + sym_cell_path, + [210241] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2057), 1, - anon_sym_RBRACE, - ACTIONS(2059), 1, - sym__entry_separator, - ACTIONS(9779), 1, - anon_sym_DOT_DOT2, STATE(6159), 1, sym_comment, - ACTIONS(9781), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [211980] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1802), 1, - anon_sym_RBRACE, - ACTIONS(1810), 1, - sym__entry_separator, - ACTIONS(10277), 1, - anon_sym_DOT_DOT2, - STATE(6160), 1, - sym_comment, - ACTIONS(10279), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [212000] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10069), 1, - anon_sym_LPAREN, - ACTIONS(10071), 1, - sym_unescaped_interpolated_content, - ACTIONS(10281), 1, - anon_sym_SQUOTE, - STATE(6161), 1, - sym_comment, - STATE(6163), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6910), 1, - sym_expr_interpolated, - [212022] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6162), 1, - sym_comment, - ACTIONS(8286), 5, + ACTIONS(8322), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [212036] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10069), 1, - anon_sym_LPAREN, - ACTIONS(10071), 1, - sym_unescaped_interpolated_content, - ACTIONS(10283), 1, - anon_sym_SQUOTE, - STATE(5954), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6163), 1, - sym_comment, - STATE(6910), 1, - sym_expr_interpolated, - [212058] = 7, + [210255] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10069), 1, - anon_sym_LPAREN, - ACTIONS(10071), 1, - sym_unescaped_interpolated_content, - ACTIONS(10285), 1, - anon_sym_SQUOTE, - STATE(5930), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6164), 1, - sym_comment, - STATE(6910), 1, - sym_expr_interpolated, - [212080] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6290), 1, - anon_sym_LBRACE, - STATE(6165), 1, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(10271), 1, + anon_sym_LBRACK, + ACTIONS(10273), 1, + anon_sym_RBRACK, + STATE(3560), 1, + aux_sym__multiple_types_repeat1, + STATE(6160), 1, sym_comment, - STATE(6933), 1, - sym_block, - ACTIONS(9960), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [212098] = 7, - ACTIONS(3), 1, + [210274] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10069), 1, - anon_sym_LPAREN, - ACTIONS(10071), 1, - sym_unescaped_interpolated_content, - ACTIONS(10287), 1, - anon_sym_SQUOTE, - STATE(5987), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6166), 1, + STATE(6161), 1, sym_comment, - STATE(6910), 1, - sym_expr_interpolated, - [212120] = 3, + ACTIONS(10275), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [210287] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6167), 1, + ACTIONS(2296), 1, + sym__entry_separator, + ACTIONS(10277), 1, + anon_sym_LBRACK2, + STATE(6162), 1, sym_comment, - ACTIONS(980), 5, + ACTIONS(2292), 2, anon_sym_RBRACK, - anon_sym_QMARK2, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [212134] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [210304] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6168), 1, + ACTIONS(6839), 1, + sym__newline, + ACTIONS(10279), 1, + anon_sym_EQ, + ACTIONS(10281), 1, + anon_sym_COLON, + STATE(3946), 1, + aux_sym_shebang_repeat1, + STATE(6163), 1, sym_comment, - ACTIONS(8184), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8186), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [212149] = 3, - ACTIONS(251), 1, + [210323] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6169), 1, + STATE(6164), 1, sym_comment, - ACTIONS(10289), 4, + ACTIONS(10283), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [212162] = 3, - ACTIONS(251), 1, + [210336] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6170), 1, + STATE(6165), 1, sym_comment, - ACTIONS(10291), 4, + ACTIONS(10285), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [212175] = 5, - ACTIONS(251), 1, + [210349] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9944), 1, - anon_sym_RPAREN, - STATE(6171), 1, + STATE(6166), 1, sym_comment, - STATE(6603), 1, - aux_sym__block_body_repeat1, - ACTIONS(10293), 2, + ACTIONS(10287), 4, sym__newline, anon_sym_SEMI, - [212192] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1755), 1, - aux_sym_unquoted_token2, - ACTIONS(1757), 1, - anon_sym_LBRACE, - ACTIONS(10295), 1, - anon_sym_DOT, - ACTIONS(10297), 1, - aux_sym__immediate_decimal_token2, - STATE(6172), 1, - sym_comment, - [212211] = 6, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [210362] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(6284), 1, - anon_sym_LBRACE, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4704), 1, - sym_block, - STATE(6173), 1, + STATE(6167), 1, sym_comment, - [212230] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(10289), 4, sym__newline, - ACTIONS(10299), 1, - anon_sym_LBRACK, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(6174), 1, - sym_comment, - STATE(7542), 1, - sym_val_list, - [212249] = 4, - ACTIONS(251), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [210375] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1755), 1, - aux_sym_unquoted_token2, - STATE(6175), 1, + ACTIONS(1562), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2168), 1, + anon_sym_RBRACK, + ACTIONS(2170), 1, + anon_sym_LPAREN2, + ACTIONS(2172), 1, + sym__entry_separator, + STATE(6168), 1, sym_comment, - ACTIONS(1757), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [212264] = 5, + [210394] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10301), 1, + ACTIONS(10291), 1, anon_sym_COLON2, - STATE(6176), 1, + STATE(6169), 1, sym_comment, - STATE(6684), 1, + STATE(6488), 1, aux_sym_ctrl_do_parenthesized_repeat2, - ACTIONS(7586), 2, + ACTIONS(7613), 2, sym__newline, sym__space, - [212281] = 3, - ACTIONS(3), 1, + [210411] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6177), 1, + ACTIONS(5026), 1, + anon_sym_DASH2, + STATE(6170), 1, sym_comment, - ACTIONS(992), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [212294] = 3, - ACTIONS(3), 1, + ACTIONS(5024), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [210426] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6178), 1, + STATE(6171), 1, sym_comment, - ACTIONS(988), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [212307] = 3, - ACTIONS(251), 1, + ACTIONS(10293), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [210439] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6179), 1, + STATE(6172), 1, sym_comment, - ACTIONS(10303), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [212320] = 3, - ACTIONS(251), 1, + ACTIONS(10295), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [210452] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6180), 1, + STATE(6173), 1, sym_comment, - ACTIONS(8410), 4, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_AT, - anon_sym_LBRACE, - [212333] = 6, - ACTIONS(251), 1, + ACTIONS(10297), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [210465] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10121), 1, + ACTIONS(10119), 1, anon_sym_use, - ACTIONS(10123), 1, + ACTIONS(10121), 1, anon_sym_list, - ACTIONS(10125), 1, + ACTIONS(10123), 1, anon_sym_hide, - ACTIONS(10127), 1, + ACTIONS(10125), 1, anon_sym_new, - STATE(6181), 1, + STATE(6174), 1, sym_comment, - [212352] = 4, + [210484] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6182), 1, + STATE(6175), 1, sym_comment, - ACTIONS(1783), 2, + ACTIONS(1693), 2, anon_sym_RBRACK, aux_sym__unquoted_in_list_token2, - ACTIONS(1785), 2, + ACTIONS(1695), 2, anon_sym_LPAREN2, sym__entry_separator, - [212367] = 5, + [210499] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10305), 1, + ACTIONS(10299), 1, anon_sym_DQUOTE, - STATE(6183), 1, + STATE(6176), 1, sym_comment, - STATE(6214), 1, + STATE(6200), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [212384] = 5, + [210516] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10309), 1, - anon_sym_COLON2, - STATE(6184), 1, - sym_comment, - STATE(6684), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - ACTIONS(7586), 2, - sym__newline, - sym__space, - [212401] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1711), 1, - aux_sym_unquoted_token2, - STATE(6185), 1, - sym_comment, - ACTIONS(1713), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [212416] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(10311), 1, - anon_sym_LBRACK, - ACTIONS(10313), 1, - anon_sym_LPAREN, - STATE(5819), 1, - sym_parameter_parens, - STATE(5891), 1, - sym_parameter_bracks, - STATE(6186), 1, - sym_comment, - [212435] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1479), 1, - ts_builtin_sym_end, - STATE(222), 1, - aux_sym__block_body_repeat1, - STATE(6187), 1, + ACTIONS(2073), 1, + anon_sym_RBRACK, + ACTIONS(2075), 1, + anon_sym_LPAREN2, + ACTIONS(2077), 1, + sym__entry_separator, + ACTIONS(2079), 1, + aux_sym__unquoted_in_list_token4, + STATE(6177), 1, sym_comment, - ACTIONS(25), 2, - sym__newline, - anon_sym_SEMI, - [212452] = 6, + [210535] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(10315), 1, - anon_sym_LBRACK, - ACTIONS(10317), 1, + ACTIONS(2075), 1, + anon_sym_LPAREN2, + ACTIONS(2079), 1, + aux_sym__unquoted_in_list_token4, + ACTIONS(2081), 1, anon_sym_RBRACK, - STATE(3570), 1, - aux_sym__multiple_types_repeat1, - STATE(6188), 1, + ACTIONS(2083), 1, + sym__entry_separator, + STATE(6178), 1, sym_comment, - [212471] = 5, - ACTIONS(251), 1, + [210554] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10319), 1, - anon_sym_LBRACE, - ACTIONS(10321), 1, + ACTIONS(1826), 1, + aux_sym_unquoted_token2, + ACTIONS(10303), 1, anon_sym_DOT_DOT2, - STATE(6189), 1, + STATE(6179), 1, sym_comment, - ACTIONS(10323), 2, + ACTIONS(10305), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [212488] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2132), 1, - anon_sym_PIPE, - ACTIONS(2134), 1, - aux_sym_unquoted_token4, - STATE(6190), 1, - sym_comment, - ACTIONS(2128), 2, - anon_sym_if, - anon_sym_EQ_GT, - [212505] = 6, + [210571] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1012), 1, - sym__entry_separator, - ACTIONS(1016), 1, - anon_sym_RBRACE, - ACTIONS(2206), 1, + ACTIONS(5565), 1, anon_sym_LPAREN2, - ACTIONS(2208), 1, - aux_sym__unquoted_in_record_token4, - STATE(6191), 1, - sym_comment, - [212524] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10325), 1, - anon_sym_LPAREN, - STATE(6192), 1, + ACTIONS(10307), 1, + anon_sym_RBRACK, + ACTIONS(10309), 1, + sym__entry_separator, + STATE(6180), 1, sym_comment, - ACTIONS(10327), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [212539] = 3, - ACTIONS(251), 1, + STATE(7838), 1, + sym__expr_parenthesized_immediate, + [210590] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6193), 1, + STATE(6181), 1, sym_comment, - ACTIONS(10329), 4, + ACTIONS(10311), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [212552] = 3, - ACTIONS(251), 1, + [210603] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6194), 1, + STATE(6182), 1, sym_comment, - ACTIONS(10331), 4, + ACTIONS(10313), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [212565] = 3, - ACTIONS(251), 1, + [210616] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6195), 1, + STATE(6183), 1, sym_comment, - ACTIONS(10331), 4, + ACTIONS(10315), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [212578] = 3, - ACTIONS(251), 1, + [210629] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6196), 1, + STATE(6184), 1, sym_comment, - ACTIONS(10333), 4, + ACTIONS(10317), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [212591] = 3, - ACTIONS(251), 1, + [210642] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6197), 1, + STATE(6185), 1, sym_comment, - ACTIONS(10333), 4, + ACTIONS(10319), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [212604] = 3, - ACTIONS(251), 1, + [210655] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6198), 1, + ACTIONS(10321), 1, + anon_sym_LBRACK, + ACTIONS(10323), 1, + anon_sym_LPAREN, + STATE(5698), 1, + sym_parameter_parens, + STATE(5699), 1, + sym_parameter_bracks, + STATE(6186), 1, + sym_comment, + [210674] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6187), 1, sym_comment, - ACTIONS(10335), 4, + ACTIONS(10325), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [212617] = 3, - ACTIONS(251), 1, + [210687] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6199), 1, + STATE(6188), 1, sym_comment, - ACTIONS(6482), 4, - ts_builtin_sym_end, + ACTIONS(10327), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [212630] = 3, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [210700] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6200), 1, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(10271), 1, + anon_sym_LBRACK, + ACTIONS(10329), 1, + anon_sym_RBRACK, + STATE(3560), 1, + aux_sym__multiple_types_repeat1, + STATE(6189), 1, sym_comment, - ACTIONS(6472), 4, - ts_builtin_sym_end, + [210719] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(10271), 1, + anon_sym_LBRACK, + ACTIONS(10331), 1, + anon_sym_RBRACK, + STATE(3560), 1, + aux_sym__multiple_types_repeat1, + STATE(6190), 1, + sym_comment, + [210738] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4938), 1, + sym__space, + ACTIONS(4940), 1, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [212643] = 3, - ACTIONS(251), 1, + ACTIONS(10333), 1, + sym_long_flag_identifier, + ACTIONS(10335), 1, + anon_sym_EQ2, + STATE(6191), 1, + sym_comment, + [210757] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6201), 1, + STATE(6192), 1, sym_comment, - ACTIONS(10337), 4, + ACTIONS(10327), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [212656] = 3, - ACTIONS(251), 1, + [210770] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6202), 1, + STATE(6193), 1, sym_comment, ACTIONS(10337), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [212669] = 3, - ACTIONS(251), 1, + [210783] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6203), 1, + ACTIONS(5565), 1, + anon_sym_LPAREN2, + ACTIONS(10339), 1, + anon_sym_RBRACK, + ACTIONS(10341), 1, + sym__entry_separator, + STATE(6194), 1, sym_comment, - ACTIONS(10331), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [212682] = 5, + STATE(7838), 1, + sym__expr_parenthesized_immediate, + [210802] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2140), 1, - anon_sym_PIPE, - ACTIONS(2142), 1, - aux_sym_unquoted_token4, - STATE(6204), 1, + STATE(6195), 1, sym_comment, - ACTIONS(2136), 2, - anon_sym_if, - anon_sym_EQ_GT, - [212699] = 5, + ACTIONS(1766), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1768), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [210817] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2142), 1, - aux_sym_unquoted_token4, - ACTIONS(2146), 1, - anon_sym_PIPE, - STATE(6205), 1, + ACTIONS(5565), 1, + anon_sym_LPAREN2, + ACTIONS(10343), 1, + anon_sym_RBRACK, + ACTIONS(10345), 1, + sym__entry_separator, + STATE(6196), 1, sym_comment, - ACTIONS(2144), 2, - anon_sym_if, - anon_sym_EQ_GT, - [212716] = 3, - ACTIONS(251), 1, + STATE(7838), 1, + sym__expr_parenthesized_immediate, + [210836] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6206), 1, + ACTIONS(1818), 1, + anon_sym_LPAREN2, + ACTIONS(1826), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2164), 1, + anon_sym_RBRACK, + ACTIONS(2166), 1, + sym__entry_separator, + STATE(6197), 1, sym_comment, - ACTIONS(10331), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [212729] = 3, - ACTIONS(251), 1, + [210855] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6207), 1, + ACTIONS(1816), 1, + anon_sym_RBRACK, + ACTIONS(1818), 1, + anon_sym_LPAREN2, + ACTIONS(1824), 1, + sym__entry_separator, + ACTIONS(1826), 1, + aux_sym__unquoted_in_list_token2, + STATE(6198), 1, + sym_comment, + [210874] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10347), 1, + anon_sym_COLON2, + STATE(6199), 1, sym_comment, - ACTIONS(10339), 4, + STATE(6488), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + ACTIONS(7613), 2, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [212742] = 5, - ACTIONS(251), 1, + sym__space, + [210891] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2049), 1, - anon_sym_LBRACE, - ACTIONS(10341), 1, - anon_sym_DOT_DOT2, - STATE(6208), 1, + ACTIONS(10349), 1, + anon_sym_DQUOTE, + STATE(6200), 1, sym_comment, - ACTIONS(10343), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [212759] = 6, + STATE(6345), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10301), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210908] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2196), 1, + aux_sym_unquoted_token2, + STATE(6201), 1, + sym_comment, + ACTIONS(2194), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [210923] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(10345), 1, + ACTIONS(10351), 1, anon_sym_COLON, - ACTIONS(10347), 1, + ACTIONS(10353), 1, anon_sym_GT2, - STATE(5590), 1, + STATE(5489), 1, aux_sym__multiple_types_repeat1, - STATE(6209), 1, + STATE(6202), 1, sym_comment, - [212778] = 6, + [210942] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(10349), 1, + ACTIONS(10355), 1, anon_sym_COLON, - ACTIONS(10351), 1, + ACTIONS(10357), 1, anon_sym_GT2, - STATE(5591), 1, + STATE(5490), 1, aux_sym__multiple_types_repeat1, - STATE(6210), 1, + STATE(6203), 1, sym_comment, - [212797] = 6, + [210961] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10353), 1, + ACTIONS(10359), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6211), 1, + STATE(6204), 1, sym_comment, - [212816] = 6, + [210980] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10355), 1, + ACTIONS(10361), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6212), 1, + STATE(6205), 1, sym_comment, - [212835] = 6, + [210999] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10357), 1, + ACTIONS(10363), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6213), 1, + STATE(6206), 1, sym_comment, - [212854] = 5, + [211018] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10359), 1, - anon_sym_DQUOTE, - STATE(6214), 1, + ACTIONS(5565), 1, + anon_sym_LPAREN2, + ACTIONS(10365), 1, + anon_sym_RBRACK, + ACTIONS(10367), 1, + sym__entry_separator, + STATE(6207), 1, sym_comment, - STATE(6302), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10307), 2, - sym__escaped_str_content, - sym_escape_sequence, - [212871] = 4, - ACTIONS(251), 1, + STATE(7838), 1, + sym__expr_parenthesized_immediate, + [211037] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1783), 1, - aux_sym_unquoted_token2, - STATE(6215), 1, + STATE(6208), 1, sym_comment, - ACTIONS(1785), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [212886] = 6, - ACTIONS(3), 1, + ACTIONS(10369), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [211050] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(10315), 1, - anon_sym_LBRACK, - ACTIONS(10361), 1, - anon_sym_RBRACK, - STATE(3570), 1, - aux_sym__multiple_types_repeat1, - STATE(6216), 1, + STATE(6209), 1, sym_comment, - [212905] = 6, - ACTIONS(3), 1, + ACTIONS(10371), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [211063] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1814), 1, - anon_sym_LPAREN2, - ACTIONS(1822), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(2220), 1, + STATE(6210), 1, + sym_comment, + ACTIONS(10373), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(2222), 1, - sym__entry_separator, - STATE(6217), 1, + [211076] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6211), 1, sym_comment, - [212924] = 3, - ACTIONS(251), 1, + ACTIONS(10375), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [211089] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6218), 1, + STATE(6212), 1, sym_comment, - ACTIONS(10363), 4, + ACTIONS(10377), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [212937] = 6, + [211102] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1812), 1, - anon_sym_RBRACE, - ACTIONS(1814), 1, + ACTIONS(1818), 1, anon_sym_LPAREN2, - ACTIONS(1820), 1, - sym__entry_separator, - ACTIONS(1822), 1, + ACTIONS(1826), 1, aux_sym__unquoted_in_record_token2, - STATE(6219), 1, + ACTIONS(2164), 1, + anon_sym_RBRACE, + ACTIONS(2166), 1, + sym__entry_separator, + STATE(6213), 1, sym_comment, - [212956] = 4, - ACTIONS(251), 1, + [211121] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1540), 1, - aux_sym_unquoted_token2, - STATE(6220), 1, + STATE(6214), 1, sym_comment, - ACTIONS(2228), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [212971] = 4, - ACTIONS(251), 1, + ACTIONS(1792), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1794), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [211136] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1835), 1, + ACTIONS(1562), 1, aux_sym_unquoted_token2, - STATE(6221), 1, + STATE(6215), 1, sym_comment, - ACTIONS(1837), 3, + ACTIONS(2172), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [212986] = 6, + [211151] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1640), 1, - anon_sym_LPAREN2, - ACTIONS(2057), 1, + ACTIONS(1816), 1, anon_sym_RBRACE, - ACTIONS(2059), 1, + ACTIONS(1818), 1, + anon_sym_LPAREN2, + ACTIONS(1824), 1, sym__entry_separator, - STATE(6222), 1, + ACTIONS(1826), 1, + aux_sym__unquoted_in_record_token2, + STATE(6216), 1, sym_comment, - STATE(7371), 1, - sym__expr_parenthesized_immediate, - [213005] = 6, - ACTIONS(251), 1, + [211170] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10379), 1, + anon_sym_LBRACE, + ACTIONS(10381), 1, + anon_sym_DOT_DOT2, + STATE(6217), 1, + sym_comment, + ACTIONS(10383), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [211187] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(6313), 1, + anon_sym_LBRACE, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(4576), 1, + sym_block, + STATE(6218), 1, + sym_comment, + [211206] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(6313), 1, + anon_sym_LBRACE, + STATE(4598), 1, + sym_block, + STATE(6219), 1, + sym_comment, + STATE(6234), 1, + aux_sym_shebang_repeat1, + [211225] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10311), 1, + ACTIONS(10321), 1, anon_sym_LBRACK, - ACTIONS(10313), 1, + ACTIONS(10323), 1, anon_sym_LPAREN, - STATE(5737), 1, + STATE(5844), 1, sym_parameter_parens, - STATE(5739), 1, + STATE(5846), 1, sym_parameter_bracks, - STATE(6223), 1, + STATE(6220), 1, sym_comment, - [213024] = 6, + [211244] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(10365), 1, + ACTIONS(10385), 1, anon_sym_COLON, - ACTIONS(10367), 1, + ACTIONS(10387), 1, anon_sym_GT2, - STATE(5596), 1, + STATE(5491), 1, aux_sym__multiple_types_repeat1, - STATE(6224), 1, + STATE(6221), 1, sym_comment, - [213043] = 6, + [211263] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(10369), 1, + ACTIONS(10389), 1, anon_sym_COLON, - ACTIONS(10371), 1, + ACTIONS(10391), 1, anon_sym_GT2, - STATE(5517), 1, + STATE(5492), 1, aux_sym__multiple_types_repeat1, - STATE(6225), 1, + STATE(6222), 1, sym_comment, - [213062] = 6, + [211282] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(10373), 1, + ACTIONS(10393), 1, anon_sym_COLON, - ACTIONS(10375), 1, + ACTIONS(10395), 1, anon_sym_GT2, - STATE(5426), 1, + STATE(5493), 1, aux_sym__multiple_types_repeat1, - STATE(6226), 1, + STATE(6223), 1, sym_comment, - [213081] = 6, + [211301] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(10377), 1, + ACTIONS(10397), 1, anon_sym_COLON, - ACTIONS(10379), 1, + ACTIONS(10399), 1, anon_sym_GT2, - STATE(5427), 1, + STATE(5494), 1, aux_sym__multiple_types_repeat1, - STATE(6227), 1, + STATE(6224), 1, sym_comment, - [213100] = 6, + [211320] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10381), 1, + ACTIONS(10401), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6228), 1, + STATE(6225), 1, sym_comment, - [213119] = 6, + [211339] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10383), 1, + ACTIONS(10403), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6229), 1, + STATE(6226), 1, sym_comment, - [213138] = 6, + [211358] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10385), 1, + ACTIONS(10405), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6230), 1, + STATE(6227), 1, sym_comment, - [213157] = 6, - ACTIONS(251), 1, + [211377] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10387), 1, + ACTIONS(10407), 1, anon_sym_LBRACE, - STATE(4967), 1, + STATE(4976), 1, sym__blosure, - STATE(5071), 1, + STATE(4981), 1, sym_block, - STATE(5072), 1, + STATE(4983), 1, sym_val_closure, - STATE(6231), 1, + STATE(6228), 1, sym_comment, - [213176] = 3, - ACTIONS(251), 1, + [211396] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6232), 1, - sym_comment, - ACTIONS(10389), 4, + ACTIONS(3842), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [213189] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6233), 1, + ACTIONS(6313), 1, + anon_sym_LBRACE, + STATE(4710), 1, + sym_block, + STATE(6218), 1, + aux_sym_shebang_repeat1, + STATE(6229), 1, sym_comment, - ACTIONS(10389), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [213202] = 3, - ACTIONS(251), 1, + [211415] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6234), 1, + ACTIONS(1493), 1, + ts_builtin_sym_end, + STATE(307), 1, + aux_sym__block_body_repeat1, + STATE(6230), 1, sym_comment, - ACTIONS(10391), 4, + ACTIONS(25), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [213215] = 3, - ACTIONS(251), 1, + [211432] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6235), 1, + ACTIONS(10411), 1, + anon_sym_RPAREN, + STATE(6231), 1, sym_comment, - ACTIONS(10391), 4, + STATE(6277), 1, + aux_sym__block_body_repeat1, + ACTIONS(10409), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [213228] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6236), 1, - sym_comment, - ACTIONS(8108), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8110), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [213243] = 4, - ACTIONS(3), 1, + [211449] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6237), 1, + ACTIONS(10413), 1, + anon_sym_use, + ACTIONS(10415), 1, + anon_sym_list, + ACTIONS(10417), 1, + anon_sym_hide, + ACTIONS(10419), 1, + anon_sym_new, + STATE(6232), 1, sym_comment, - ACTIONS(8112), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8114), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [213258] = 3, - ACTIONS(251), 1, + [211468] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6238), 1, - sym_comment, - ACTIONS(6476), 4, - ts_builtin_sym_end, + ACTIONS(3842), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6313), 1, anon_sym_LBRACE, - [213271] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6239), 1, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(4712), 1, + sym_block, + STATE(6233), 1, sym_comment, - ACTIONS(6480), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [213284] = 3, - ACTIONS(251), 1, + [211487] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6240), 1, - sym_comment, - ACTIONS(10389), 4, + ACTIONS(3842), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [213297] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6241), 1, + ACTIONS(6313), 1, + anon_sym_LBRACE, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(4616), 1, + sym_block, + STATE(6234), 1, sym_comment, - ACTIONS(10389), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [213310] = 6, + [211506] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(10393), 1, + ACTIONS(10421), 1, anon_sym_COLON, - ACTIONS(10395), 1, + ACTIONS(10423), 1, anon_sym_GT2, - STATE(5430), 1, + STATE(5497), 1, aux_sym__multiple_types_repeat1, - STATE(6242), 1, + STATE(6235), 1, sym_comment, - [213329] = 6, + [211525] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(10397), 1, + ACTIONS(10425), 1, anon_sym_COLON, - ACTIONS(10399), 1, + ACTIONS(10427), 1, anon_sym_GT2, - STATE(5431), 1, + STATE(5498), 1, aux_sym__multiple_types_repeat1, - STATE(6243), 1, + STATE(6236), 1, + sym_comment, + [211544] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1641), 1, + anon_sym_LPAREN2, + ACTIONS(2000), 1, + anon_sym_RBRACE, + ACTIONS(2006), 1, + sym__entry_separator, + STATE(6237), 1, sym_comment, - [213348] = 6, + STATE(7316), 1, + sym__expr_parenthesized_immediate, + [211563] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10401), 1, + ACTIONS(10429), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6244), 1, - sym_comment, - [213367] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6245), 1, + STATE(6238), 1, sym_comment, - ACTIONS(10403), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [213380] = 3, - ACTIONS(251), 1, + [211582] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6246), 1, + STATE(6239), 1, sym_comment, - ACTIONS(10405), 4, + ACTIONS(10431), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [213393] = 3, - ACTIONS(251), 1, + [211595] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6247), 1, + STATE(6240), 1, sym_comment, - ACTIONS(10407), 4, + ACTIONS(10431), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [213406] = 4, + [211608] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6248), 1, + STATE(6241), 1, sym_comment, - ACTIONS(1835), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1837), 2, - anon_sym_LPAREN2, + ACTIONS(8360), 2, + anon_sym_AT, sym__entry_separator, - [213421] = 6, + ACTIONS(8362), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [211623] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1540), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(2224), 1, - anon_sym_RBRACE, - ACTIONS(2226), 1, - anon_sym_LPAREN2, - ACTIONS(2228), 1, + STATE(6242), 1, + sym_comment, + ACTIONS(8378), 2, + anon_sym_AT, sym__entry_separator, - STATE(6249), 1, + ACTIONS(8380), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [211638] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10321), 1, + anon_sym_LBRACK, + ACTIONS(10323), 1, + anon_sym_LPAREN, + STATE(3281), 1, + sym_parameter_parens, + STATE(3282), 1, + sym_parameter_bracks, + STATE(6243), 1, sym_comment, - [213440] = 6, + [211657] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + STATE(6244), 1, + sym_comment, + ACTIONS(8390), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(10315), 1, - anon_sym_LBRACK, - ACTIONS(10409), 1, + ACTIONS(8392), 2, anon_sym_RBRACK, - STATE(3570), 1, - aux_sym__multiple_types_repeat1, - STATE(6250), 1, - sym_comment, - [213459] = 3, - ACTIONS(251), 1, + anon_sym_GT2, + [211672] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6251), 1, + STATE(6245), 1, sym_comment, - ACTIONS(10411), 4, + ACTIONS(10433), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [213472] = 6, + [211685] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + STATE(6246), 1, + sym_comment, + ACTIONS(8394), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(10315), 1, - anon_sym_LBRACK, - ACTIONS(10413), 1, + ACTIONS(8396), 2, anon_sym_RBRACK, - STATE(3570), 1, - aux_sym__multiple_types_repeat1, - STATE(6252), 1, - sym_comment, - [213491] = 5, + anon_sym_GT2, + [211700] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10415), 1, + ACTIONS(10435), 1, anon_sym_COLON2, - STATE(6253), 1, + STATE(6247), 1, sym_comment, - STATE(6254), 1, + STATE(6248), 1, aux_sym_ctrl_do_parenthesized_repeat2, - ACTIONS(7586), 2, + ACTIONS(7613), 2, sym__newline, sym__space, - [213508] = 5, + [211717] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10417), 1, + ACTIONS(10437), 1, anon_sym_COLON2, - STATE(6254), 1, + STATE(6248), 1, sym_comment, - STATE(6684), 1, + STATE(6488), 1, aux_sym_ctrl_do_parenthesized_repeat2, - ACTIONS(7586), 2, + ACTIONS(7613), 2, sym__newline, sym__space, - [213525] = 6, - ACTIONS(251), 1, + [211734] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9793), 1, - anon_sym_LBRACE, - STATE(4752), 1, - sym_block, - STATE(4753), 1, - sym_val_closure, - STATE(4879), 1, - sym__blosure, - STATE(6255), 1, + STATE(6249), 1, sym_comment, - [213544] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2172), 1, + ACTIONS(10439), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(2174), 1, - anon_sym_LPAREN2, - ACTIONS(2176), 1, - sym__entry_separator, - ACTIONS(2178), 1, - aux_sym__unquoted_in_record_token2, - STATE(6256), 1, - sym_comment, - [213563] = 6, - ACTIONS(251), 1, + [211747] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(6284), 1, + ACTIONS(9808), 1, anon_sym_LBRACE, - STATE(4633), 1, + STATE(4796), 1, + sym__blosure, + STATE(4856), 1, sym_block, - STATE(6257), 1, + STATE(4907), 1, + sym_val_closure, + STATE(6250), 1, sym_comment, - STATE(6511), 1, - aux_sym_shebang_repeat1, - [213582] = 6, - ACTIONS(251), 1, + [211766] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10311), 1, + ACTIONS(10441), 1, anon_sym_LBRACK, - ACTIONS(10313), 1, + ACTIONS(10443), 1, anon_sym_LPAREN, - STATE(3257), 1, - sym_parameter_bracks, - STATE(3258), 1, + STATE(5998), 1, sym_parameter_parens, - STATE(6258), 1, - sym_comment, - [213601] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2178), 1, - aux_sym_unquoted_token2, - STATE(6259), 1, + STATE(5999), 1, + sym_parameter_bracks, + STATE(6251), 1, sym_comment, - ACTIONS(2176), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [213616] = 3, - ACTIONS(251), 1, + [211785] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6260), 1, + STATE(6252), 1, sym_comment, - ACTIONS(10419), 4, + ACTIONS(10445), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [213629] = 3, - ACTIONS(251), 1, + [211798] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6261), 1, + STATE(6253), 1, sym_comment, - ACTIONS(10421), 4, + ACTIONS(10447), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [213642] = 3, - ACTIONS(251), 1, + [211811] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6262), 1, + STATE(6254), 1, sym_comment, - ACTIONS(10421), 4, + ACTIONS(10449), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [213655] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6263), 1, - sym_comment, - ACTIONS(8122), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8124), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [213670] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6264), 1, - sym_comment, - ACTIONS(8128), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8130), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [213685] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6265), 1, - sym_comment, - ACTIONS(8132), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8134), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [213700] = 3, - ACTIONS(251), 1, + [211824] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6266), 1, + STATE(6255), 1, sym_comment, - ACTIONS(10423), 4, + ACTIONS(10451), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [213713] = 3, - ACTIONS(251), 1, + [211837] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6267), 1, + STATE(6256), 1, sym_comment, - ACTIONS(10425), 4, + ACTIONS(10453), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [213726] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6268), 1, - sym_comment, - ACTIONS(8144), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8146), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [213741] = 3, - ACTIONS(251), 1, + [211850] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6269), 1, + STATE(6257), 1, sym_comment, - ACTIONS(10427), 4, + ACTIONS(10455), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [213754] = 3, - ACTIONS(251), 1, + [211863] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6270), 1, + ACTIONS(1641), 1, + anon_sym_LPAREN2, + ACTIONS(2182), 1, + anon_sym_RBRACE, + ACTIONS(2184), 1, + sym__entry_separator, + STATE(6258), 1, sym_comment, - ACTIONS(10429), 4, + STATE(7668), 1, + sym__expr_parenthesized_immediate, + [211882] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3842), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(10457), 1, + anon_sym_LBRACK, + STATE(1615), 1, + aux_sym_shebang_repeat1, + STATE(6259), 1, + sym_comment, + STATE(7691), 1, + sym_val_list, + [211901] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1641), 1, + anon_sym_LPAREN2, + ACTIONS(2186), 1, anon_sym_RBRACE, - [213767] = 3, - ACTIONS(251), 1, + ACTIONS(2188), 1, + sym__entry_separator, + STATE(6260), 1, + sym_comment, + STATE(7668), 1, + sym__expr_parenthesized_immediate, + [211920] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6271), 1, + STATE(6261), 1, sym_comment, - ACTIONS(10431), 4, + ACTIONS(10459), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [213780] = 3, - ACTIONS(251), 1, + [211933] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6272), 1, + STATE(6262), 1, sym_comment, - ACTIONS(10433), 4, + ACTIONS(10461), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [213793] = 3, - ACTIONS(251), 1, + [211946] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6273), 1, + STATE(6263), 1, + sym_comment, + ACTIONS(10463), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [211959] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10465), 1, + anon_sym_DQUOTE, + STATE(6264), 1, + sym_comment, + STATE(6276), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10301), 2, + sym__escaped_str_content, + sym_escape_sequence, + [211976] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9836), 1, + anon_sym_RPAREN, + STATE(6265), 1, sym_comment, - ACTIONS(10435), 4, + STATE(6277), 1, + aux_sym__block_body_repeat1, + ACTIONS(10409), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [213806] = 3, - ACTIONS(251), 1, + [211993] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6274), 1, + STATE(6266), 1, sym_comment, - ACTIONS(10437), 4, + ACTIONS(10467), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [213819] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1640), 1, - anon_sym_LPAREN2, - ACTIONS(2061), 1, - anon_sym_RBRACE, - ACTIONS(2063), 1, - sym__entry_separator, - STATE(6275), 1, - sym_comment, - STATE(7371), 1, - sym__expr_parenthesized_immediate, - [213838] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2128), 1, - anon_sym_RBRACE, - ACTIONS(2130), 1, - anon_sym_LPAREN2, - ACTIONS(2132), 1, - sym__entry_separator, - ACTIONS(2134), 1, - aux_sym__unquoted_in_record_token4, - STATE(6276), 1, - sym_comment, - [213857] = 6, + [212006] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2136), 1, - anon_sym_RBRACK, - ACTIONS(2138), 1, - anon_sym_LPAREN2, - ACTIONS(2140), 1, - sym__entry_separator, - ACTIONS(2142), 1, - aux_sym__unquoted_in_list_token4, - STATE(6277), 1, + STATE(6267), 1, sym_comment, - [213876] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2138), 1, - anon_sym_LPAREN2, - ACTIONS(2142), 1, - aux_sym__unquoted_in_list_token4, - ACTIONS(2144), 1, + ACTIONS(982), 4, anon_sym_RBRACK, - ACTIONS(2146), 1, sym__entry_separator, - STATE(6278), 1, - sym_comment, - [213895] = 3, - ACTIONS(251), 1, + sym__table_head_separator, + anon_sym_DOT2, + [212019] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6279), 1, + STATE(6268), 1, sym_comment, - ACTIONS(10439), 4, + ACTIONS(10469), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [213908] = 6, - ACTIONS(251), 1, + [212032] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10441), 1, - anon_sym_LBRACK, - ACTIONS(10443), 1, - anon_sym_LPAREN, - STATE(6072), 1, - sym_parameter_parens, - STATE(6165), 1, - sym_parameter_bracks, - STATE(6280), 1, + STATE(6269), 1, sym_comment, - [213927] = 5, + ACTIONS(10471), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [212045] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10445), 1, + ACTIONS(10473), 1, anon_sym_DQUOTE, - STATE(6281), 1, + STATE(6270), 1, sym_comment, - STATE(6285), 1, + STATE(6272), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [213944] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(10311), 1, - anon_sym_LBRACK, - ACTIONS(10313), 1, - anon_sym_LPAREN, - STATE(3260), 1, - sym_parameter_parens, - STATE(3262), 1, - sym_parameter_bracks, - STATE(6282), 1, - sym_comment, - [213963] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6283), 1, - sym_comment, - ACTIONS(8162), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8164), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [213978] = 4, - ACTIONS(3), 1, + [212062] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6284), 1, + STATE(6271), 1, sym_comment, - ACTIONS(8166), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8168), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [213993] = 5, + ACTIONS(6526), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [212075] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10447), 1, + ACTIONS(10475), 1, anon_sym_DQUOTE, - STATE(6285), 1, + STATE(6272), 1, sym_comment, - STATE(6302), 1, + STATE(6345), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [214010] = 4, + [212092] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6286), 1, - sym_comment, - ACTIONS(8170), 2, - anon_sym_AT, + ACTIONS(1562), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(2168), 1, + anon_sym_RBRACE, + ACTIONS(2170), 1, + anon_sym_LPAREN2, + ACTIONS(2172), 1, sym__entry_separator, - ACTIONS(8172), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [214025] = 4, + STATE(6273), 1, + sym_comment, + [212111] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6287), 1, - sym_comment, - ACTIONS(8180), 2, - anon_sym_AT, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(8182), 2, - anon_sym_RBRACK, + ACTIONS(10477), 1, + anon_sym_COLON, + ACTIONS(10479), 1, anon_sym_GT2, - [214040] = 4, + STATE(5571), 1, + aux_sym__multiple_types_repeat1, + STATE(6274), 1, + sym_comment, + [212130] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6288), 1, - sym_comment, - ACTIONS(8188), 2, - anon_sym_AT, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(8190), 2, - anon_sym_RBRACK, + ACTIONS(10481), 1, + anon_sym_COLON, + ACTIONS(10483), 1, anon_sym_GT2, - [214055] = 4, + STATE(5573), 1, + aux_sym__multiple_types_repeat1, + STATE(6275), 1, + sym_comment, + [212149] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6289), 1, + ACTIONS(10485), 1, + anon_sym_DQUOTE, + STATE(6276), 1, sym_comment, - ACTIONS(8192), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8194), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [214070] = 5, - ACTIONS(251), 1, + STATE(6345), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10301), 2, + sym__escaped_str_content, + sym_escape_sequence, + [212166] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9839), 1, + ACTIONS(1497), 1, anon_sym_RPAREN, - STATE(6290), 1, - sym_comment, - STATE(6603), 1, - aux_sym__block_body_repeat1, - ACTIONS(10293), 2, + ACTIONS(10487), 2, sym__newline, anon_sym_SEMI, - [214087] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6291), 1, + STATE(6277), 2, sym_comment, - ACTIONS(10449), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214100] = 3, - ACTIONS(251), 1, + aux_sym__block_body_repeat1, + [212181] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6292), 1, - sym_comment, - ACTIONS(10451), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2065), 1, anon_sym_RBRACE, - [214113] = 6, + ACTIONS(2067), 1, + anon_sym_LPAREN2, + ACTIONS(2069), 1, + sym__entry_separator, + ACTIONS(2071), 1, + aux_sym__unquoted_in_record_token4, + STATE(6278), 1, + sym_comment, + [212200] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10453), 1, + ACTIONS(10490), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6293), 1, + STATE(6279), 1, sym_comment, - [214132] = 6, + [212219] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10455), 1, + ACTIONS(10492), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6294), 1, + STATE(6280), 1, sym_comment, - [214151] = 6, + [212238] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10457), 1, + ACTIONS(10494), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6295), 1, + STATE(6281), 1, sym_comment, - [214170] = 6, + [212257] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10459), 1, + ACTIONS(10496), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6296), 1, + STATE(6282), 1, sym_comment, - [214189] = 6, + [212276] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10461), 1, + ACTIONS(10498), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6297), 1, + STATE(6283), 1, sym_comment, - [214208] = 6, + [212295] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10463), 1, + ACTIONS(10500), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6298), 1, + STATE(6284), 1, sym_comment, - [214227] = 6, + [212314] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10465), 1, + ACTIONS(10502), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6299), 1, + STATE(6285), 1, sym_comment, - [214246] = 6, + [212333] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10467), 1, + ACTIONS(10504), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6300), 1, - sym_comment, - [214265] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6301), 1, - sym_comment, - ACTIONS(10469), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214278] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10471), 1, - anon_sym_DQUOTE, - ACTIONS(10473), 2, - sym__escaped_str_content, - sym_escape_sequence, - STATE(6302), 2, - sym_comment, - aux_sym__str_double_quotes_repeat1, - [214293] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2136), 1, - anon_sym_RBRACE, - ACTIONS(2138), 1, - anon_sym_LPAREN2, - ACTIONS(2140), 1, - sym__entry_separator, - ACTIONS(2142), 1, - aux_sym__unquoted_in_record_token4, - STATE(6303), 1, - sym_comment, - [214312] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2138), 1, - anon_sym_LPAREN2, - ACTIONS(2142), 1, - aux_sym__unquoted_in_record_token4, - ACTIONS(2144), 1, - anon_sym_RBRACE, - ACTIONS(2146), 1, - sym__entry_separator, - STATE(6304), 1, + STATE(6286), 1, sym_comment, - [214331] = 6, - ACTIONS(3), 1, + [212352] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1640), 1, - anon_sym_LPAREN2, - ACTIONS(2196), 1, - anon_sym_RBRACE, - ACTIONS(2198), 1, - sym__entry_separator, - STATE(6305), 1, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + STATE(6287), 1, sym_comment, - STATE(7495), 1, - sym__expr_parenthesized_immediate, - [214350] = 4, - ACTIONS(3), 1, + ACTIONS(1814), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [212367] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6306), 1, + ACTIONS(1701), 1, + aux_sym_unquoted_token2, + ACTIONS(1703), 1, + anon_sym_LBRACE, + ACTIONS(10506), 1, + anon_sym_DOT, + ACTIONS(10508), 1, + aux_sym__immediate_decimal_token2, + STATE(6288), 1, sym_comment, - ACTIONS(8210), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8212), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [214365] = 4, - ACTIONS(3), 1, + [212386] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6307), 1, + STATE(6289), 1, sym_comment, - ACTIONS(8218), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8220), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [214380] = 4, + ACTIONS(6490), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [212399] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6308), 1, + ACTIONS(10510), 1, + anon_sym_LPAREN, + STATE(6290), 1, sym_comment, - ACTIONS(8224), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8226), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [214395] = 4, - ACTIONS(3), 1, + ACTIONS(10512), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [212414] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6309), 1, + ACTIONS(2049), 1, + anon_sym_LBRACE, + ACTIONS(10514), 1, + anon_sym_DOT_DOT2, + STATE(6291), 1, sym_comment, - ACTIONS(8234), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8236), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [214410] = 4, + ACTIONS(10516), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [212431] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6310), 1, + ACTIONS(10518), 1, + anon_sym_LPAREN, + STATE(6292), 1, sym_comment, - ACTIONS(8250), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8252), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [214425] = 4, - ACTIONS(3), 1, + ACTIONS(10520), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [212446] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6311), 1, + STATE(6293), 1, sym_comment, - ACTIONS(8254), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8256), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [214440] = 4, - ACTIONS(3), 1, + ACTIONS(10522), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [212459] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6312), 1, + STATE(6294), 1, sym_comment, - ACTIONS(8258), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8260), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [214455] = 4, - ACTIONS(3), 1, + ACTIONS(10524), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [212472] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6313), 1, + STATE(6295), 1, sym_comment, - ACTIONS(8262), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8264), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [214470] = 3, - ACTIONS(251), 1, + ACTIONS(10526), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [212485] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6314), 1, + STATE(6296), 1, sym_comment, - ACTIONS(10476), 4, + ACTIONS(10528), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [214483] = 5, + [212498] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10478), 1, + ACTIONS(10530), 1, anon_sym_DQUOTE, - STATE(6315), 1, + STATE(6297), 1, sym_comment, - STATE(6322), 1, + STATE(6298), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [214500] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6316), 1, - sym_comment, - ACTIONS(8266), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8268), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [214515] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6317), 1, - sym_comment, - ACTIONS(8272), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8274), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [214530] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6318), 1, - sym_comment, - ACTIONS(8276), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8278), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [214545] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1640), 1, - anon_sym_LPAREN2, - ACTIONS(2200), 1, - anon_sym_RBRACE, - ACTIONS(2202), 1, - sym__entry_separator, - STATE(6319), 1, - sym_comment, - STATE(7495), 1, - sym__expr_parenthesized_immediate, - [214564] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6320), 1, - sym_comment, - ACTIONS(8426), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8428), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [214579] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6321), 1, - sym_comment, - ACTIONS(8286), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8288), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [214594] = 5, + [212515] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10480), 1, + ACTIONS(10532), 1, anon_sym_DQUOTE, - STATE(6302), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6322), 1, + STATE(6298), 1, sym_comment, - ACTIONS(10307), 2, + STATE(6345), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [214611] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym_unquoted_token2, - STATE(6323), 1, - sym_comment, - ACTIONS(1810), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [214626] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6324), 1, - sym_comment, - ACTIONS(8290), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8292), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [214641] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6325), 1, - sym_comment, - ACTIONS(8296), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8298), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [214656] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(10087), 1, - anon_sym_AT, - STATE(5660), 1, - aux_sym__multiple_types_repeat1, - STATE(6326), 1, - sym_comment, - STATE(7417), 1, - sym_param_cmd, - [214675] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(10087), 1, - anon_sym_AT, - STATE(5661), 1, - aux_sym__multiple_types_repeat1, - STATE(6327), 1, - sym_comment, - STATE(7421), 1, - sym_param_cmd, - [214694] = 4, - ACTIONS(3), 1, + [212532] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6328), 1, + ACTIONS(10321), 1, + anon_sym_LBRACK, + ACTIONS(10323), 1, + anon_sym_LPAREN, + STATE(3284), 1, + sym_parameter_parens, + STATE(3285), 1, + sym_parameter_bracks, + STATE(6299), 1, sym_comment, - ACTIONS(8300), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8302), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [214709] = 4, + [212551] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6329), 1, - sym_comment, - ACTIONS(8312), 2, - anon_sym_AT, + ACTIONS(1641), 1, + anon_sym_LPAREN2, + ACTIONS(2018), 1, + anon_sym_RBRACE, + ACTIONS(2020), 1, sym__entry_separator, - ACTIONS(8314), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [214724] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6330), 1, + STATE(6300), 1, sym_comment, - ACTIONS(8316), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8318), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [214739] = 6, + STATE(7316), 1, + sym__expr_parenthesized_immediate, + [212570] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10482), 1, + ACTIONS(10534), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6331), 1, + STATE(6301), 1, sym_comment, - [214758] = 6, + [212589] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10484), 1, + ACTIONS(10536), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6332), 1, + STATE(6302), 1, sym_comment, - [214777] = 6, + [212608] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10486), 1, + ACTIONS(10538), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6333), 1, + STATE(6303), 1, sym_comment, - [214796] = 6, + [212627] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10488), 1, + ACTIONS(10540), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6334), 1, + STATE(6304), 1, sym_comment, - [214815] = 6, + [212646] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10490), 1, + ACTIONS(10542), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6335), 1, + STATE(6305), 1, sym_comment, - [214834] = 6, + [212665] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10492), 1, + ACTIONS(10544), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6336), 1, + STATE(6306), 1, sym_comment, - [214853] = 6, + [212684] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10494), 1, + ACTIONS(10546), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6337), 1, + STATE(6307), 1, sym_comment, - [214872] = 6, + [212703] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10496), 1, + ACTIONS(10548), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6338), 1, - sym_comment, - [214891] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6339), 1, + STATE(6308), 1, sym_comment, - ACTIONS(8324), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8326), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [214906] = 3, - ACTIONS(251), 1, + [212722] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6340), 1, + STATE(6309), 1, sym_comment, - ACTIONS(10498), 4, + ACTIONS(10550), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [214919] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6341), 1, - sym_comment, - ACTIONS(8332), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8334), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [214934] = 5, + [212735] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10500), 1, + ACTIONS(10552), 1, anon_sym_DQUOTE, - STATE(6342), 1, + STATE(6310), 1, sym_comment, - STATE(6346), 1, + STATE(6313), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [214951] = 4, + [212752] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6343), 1, - sym_comment, - ACTIONS(8336), 2, - anon_sym_AT, + ACTIONS(2073), 1, + anon_sym_RBRACE, + ACTIONS(2075), 1, + anon_sym_LPAREN2, + ACTIONS(2077), 1, sym__entry_separator, - ACTIONS(8338), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [214966] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1602), 1, - anon_sym_SEMI, - ACTIONS(3826), 1, - sym__newline, - STATE(301), 1, - aux_sym__parenthesized_body_repeat1, - STATE(6344), 1, + ACTIONS(2079), 1, + aux_sym__unquoted_in_record_token4, + STATE(6311), 1, sym_comment, - STATE(7296), 1, - aux_sym_shebang_repeat1, - [214985] = 4, + [212771] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6345), 1, - sym_comment, - ACTIONS(8352), 2, - anon_sym_AT, + ACTIONS(2075), 1, + anon_sym_LPAREN2, + ACTIONS(2079), 1, + aux_sym__unquoted_in_record_token4, + ACTIONS(2081), 1, + anon_sym_RBRACE, + ACTIONS(2083), 1, sym__entry_separator, - ACTIONS(8354), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [215000] = 5, + STATE(6312), 1, + sym_comment, + [212790] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10502), 1, + ACTIONS(10554), 1, anon_sym_DQUOTE, - STATE(6302), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6346), 1, + STATE(6313), 1, sym_comment, - ACTIONS(10307), 2, + STATE(6345), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [215017] = 4, + [212807] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6347), 1, - sym_comment, - ACTIONS(8356), 2, - anon_sym_AT, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(8358), 2, + ACTIONS(10271), 1, + anon_sym_LBRACK, + ACTIONS(10556), 1, anon_sym_RBRACK, - anon_sym_GT2, - [215032] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6348), 1, + STATE(3560), 1, + aux_sym__multiple_types_repeat1, + STATE(6314), 1, sym_comment, - ACTIONS(8360), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8362), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [215047] = 4, + [212826] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6349), 1, - sym_comment, - ACTIONS(8364), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8366), 2, + ACTIONS(2065), 1, anon_sym_RBRACK, - anon_sym_GT2, - [215062] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6350), 1, - sym_comment, - ACTIONS(8370), 2, - anon_sym_AT, + ACTIONS(2067), 1, + anon_sym_LPAREN2, + ACTIONS(2069), 1, sym__entry_separator, - ACTIONS(8372), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [215077] = 4, - ACTIONS(3), 1, + ACTIONS(2071), 1, + aux_sym__unquoted_in_list_token4, + STATE(6315), 1, + sym_comment, + [212845] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6351), 1, + STATE(6316), 1, sym_comment, - ACTIONS(8374), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8376), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [215092] = 6, + ACTIONS(10558), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [212858] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10504), 1, + ACTIONS(10560), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6352), 1, + STATE(6317), 1, sym_comment, - [215111] = 6, + [212877] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10506), 1, + ACTIONS(10562), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6353), 1, + STATE(6318), 1, sym_comment, - [215130] = 6, + [212896] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10508), 1, + ACTIONS(10564), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6354), 1, + STATE(6319), 1, sym_comment, - [215149] = 6, + [212915] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10510), 1, + ACTIONS(10566), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6355), 1, + STATE(6320), 1, sym_comment, - [215168] = 6, + [212934] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10512), 1, + ACTIONS(10568), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6356), 1, + STATE(6321), 1, sym_comment, - [215187] = 6, + [212953] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10514), 1, + ACTIONS(10570), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6357), 1, + STATE(6322), 1, sym_comment, - [215206] = 6, + [212972] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10516), 1, + ACTIONS(10572), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6358), 1, + STATE(6323), 1, sym_comment, - [215225] = 6, + [212991] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10518), 1, + ACTIONS(10574), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6359), 1, - sym_comment, - [215244] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4839), 1, - sym__space, - ACTIONS(4841), 1, - sym__newline, - ACTIONS(10520), 1, - anon_sym_EQ2, - ACTIONS(10522), 1, - sym_short_flag_identifier, - STATE(6360), 1, + STATE(6324), 1, sym_comment, - [215263] = 4, + [213010] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6361), 1, - sym_comment, - ACTIONS(8378), 2, - anon_sym_AT, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(8380), 2, + ACTIONS(10271), 1, + anon_sym_LBRACK, + ACTIONS(10576), 1, anon_sym_RBRACK, - anon_sym_GT2, - [215278] = 4, - ACTIONS(3), 1, + STATE(3560), 1, + aux_sym__multiple_types_repeat1, + STATE(6325), 1, + sym_comment, + [213029] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6362), 1, + ACTIONS(10321), 1, + anon_sym_LBRACK, + ACTIONS(10323), 1, + anon_sym_LPAREN, + STATE(3264), 1, + sym_parameter_parens, + STATE(3265), 1, + sym_parameter_bracks, + STATE(6326), 1, sym_comment, - ACTIONS(8414), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8416), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [215293] = 3, - ACTIONS(251), 1, + [213048] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6363), 1, + STATE(6327), 1, sym_comment, - ACTIONS(10524), 4, + ACTIONS(10578), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [215306] = 4, + [213061] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(6364), 1, + STATE(6328), 1, sym_comment, - ACTIONS(8418), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8420), 2, + ACTIONS(978), 4, anon_sym_RBRACK, - anon_sym_GT2, - [215321] = 5, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [213074] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10526), 1, + ACTIONS(10580), 1, anon_sym_DQUOTE, - STATE(6365), 1, + STATE(6329), 1, sym_comment, - STATE(6369), 1, + STATE(6331), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [215338] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6366), 1, - sym_comment, - ACTIONS(8422), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8424), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [215353] = 4, + [213091] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(6367), 1, + STATE(6330), 1, sym_comment, - ACTIONS(8046), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8048), 2, + ACTIONS(974), 4, anon_sym_RBRACK, - anon_sym_GT2, - [215368] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6368), 1, - sym_comment, - ACTIONS(8050), 2, - anon_sym_AT, sym__entry_separator, - ACTIONS(8052), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [215383] = 5, + sym__table_head_separator, + anon_sym_DOT2, + [213104] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10528), 1, + ACTIONS(10582), 1, anon_sym_DQUOTE, - STATE(6302), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6369), 1, + STATE(6331), 1, sym_comment, - ACTIONS(10307), 2, + STATE(6345), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [215400] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6370), 1, - sym_comment, - ACTIONS(8054), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8056), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [215415] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6371), 1, - sym_comment, - ACTIONS(8058), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8060), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [215430] = 4, + [213121] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6372), 1, - sym_comment, - ACTIONS(1755), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1757), 2, + ACTIONS(1641), 1, anon_sym_LPAREN2, + ACTIONS(2014), 1, + anon_sym_RBRACE, + ACTIONS(2016), 1, sym__entry_separator, - [215445] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6373), 1, + STATE(6332), 1, sym_comment, - ACTIONS(8064), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8066), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [215460] = 3, - ACTIONS(251), 1, + STATE(7316), 1, + sym__expr_parenthesized_immediate, + [213140] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6374), 1, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + ACTIONS(10584), 1, + anon_sym_DOT_DOT2, + STATE(6333), 1, sym_comment, - ACTIONS(10530), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [215473] = 4, + ACTIONS(10586), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [213157] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6375), 1, - sym_comment, - ACTIONS(8068), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8070), 2, + ACTIONS(5565), 1, + anon_sym_LPAREN2, + ACTIONS(5974), 1, anon_sym_RBRACK, - anon_sym_GT2, - [215488] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6376), 1, - sym_comment, - ACTIONS(8072), 2, - anon_sym_AT, + ACTIONS(5980), 1, sym__entry_separator, - ACTIONS(8074), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [215503] = 6, + STATE(6334), 1, + sym_comment, + STATE(7357), 1, + sym__expr_parenthesized_immediate, + [213176] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10532), 1, + ACTIONS(10588), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6377), 1, + STATE(6335), 1, sym_comment, - [215522] = 6, + [213195] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10534), 1, + ACTIONS(10590), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6378), 1, + STATE(6336), 1, sym_comment, - [215541] = 6, + [213214] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10536), 1, + ACTIONS(10592), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6379), 1, + STATE(6337), 1, sym_comment, - [215560] = 6, + [213233] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10538), 1, + ACTIONS(10594), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6380), 1, + STATE(6338), 1, sym_comment, - [215579] = 6, + [213252] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10540), 1, + ACTIONS(10596), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6381), 1, + STATE(6339), 1, sym_comment, - [215598] = 6, + [213271] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10542), 1, + ACTIONS(10598), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6382), 1, + STATE(6340), 1, sym_comment, - [215617] = 6, + [213290] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10544), 1, + ACTIONS(10600), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6383), 1, + STATE(6341), 1, sym_comment, - [215636] = 6, + [213309] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10546), 1, + ACTIONS(10602), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6384), 1, - sym_comment, - [215655] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6385), 1, - sym_comment, - ACTIONS(8076), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8078), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [215670] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6386), 1, + STATE(6342), 1, sym_comment, - ACTIONS(8080), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8082), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [215685] = 3, - ACTIONS(251), 1, + [213328] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6387), 1, + STATE(6343), 1, sym_comment, - ACTIONS(10548), 4, + ACTIONS(10604), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [215698] = 5, + [213341] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10550), 1, + ACTIONS(10606), 1, anon_sym_DQUOTE, - STATE(6388), 1, + STATE(6344), 1, sym_comment, - STATE(6390), 1, + STATE(6346), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [215715] = 3, - ACTIONS(251), 1, + [213358] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6389), 1, + ACTIONS(10608), 1, + anon_sym_DQUOTE, + ACTIONS(10610), 2, + sym__escaped_str_content, + sym_escape_sequence, + STATE(6345), 2, sym_comment, - ACTIONS(10552), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [215728] = 5, + aux_sym__str_double_quotes_repeat1, + [213373] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10554), 1, + ACTIONS(10613), 1, anon_sym_DQUOTE, - STATE(6302), 1, + STATE(6345), 1, aux_sym__str_double_quotes_repeat1, - STATE(6390), 1, + STATE(6346), 1, sym_comment, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [215745] = 6, + [213390] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(10315), 1, - anon_sym_LBRACK, - ACTIONS(10556), 1, - anon_sym_RBRACK, - STATE(3570), 1, + ACTIONS(10615), 1, + anon_sym_COLON, + ACTIONS(10617), 1, + anon_sym_GT2, + STATE(5585), 1, aux_sym__multiple_types_repeat1, - STATE(6391), 1, + STATE(6347), 1, sym_comment, - [215764] = 4, + [213409] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6392), 1, - sym_comment, - ACTIONS(2148), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token4, - ACTIONS(2150), 2, - anon_sym_LPAREN2, + ACTIONS(9244), 1, sym__entry_separator, - [215779] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6393), 1, + ACTIONS(10619), 1, + anon_sym_COLON, + ACTIONS(10621), 1, + anon_sym_GT2, + STATE(5431), 1, + aux_sym__multiple_types_repeat1, + STATE(6348), 1, sym_comment, - ACTIONS(10558), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [215792] = 3, - ACTIONS(251), 1, + [213428] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6394), 1, + ACTIONS(1693), 1, + aux_sym_unquoted_token2, + ACTIONS(1695), 1, + anon_sym_LBRACE, + ACTIONS(10623), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(10625), 1, + aux_sym__immediate_decimal_token2, + STATE(6349), 1, sym_comment, - ACTIONS(10560), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [215805] = 6, + [213447] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10562), 1, + ACTIONS(10627), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6395), 1, + STATE(6350), 1, sym_comment, - [215824] = 6, + [213466] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10564), 1, + ACTIONS(10629), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6396), 1, + STATE(6351), 1, sym_comment, - [215843] = 6, + [213485] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10566), 1, + ACTIONS(10631), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6397), 1, + STATE(6352), 1, sym_comment, - [215862] = 6, + [213504] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10568), 1, + ACTIONS(10633), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6398), 1, + STATE(6353), 1, sym_comment, - [215881] = 6, + [213523] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10570), 1, + ACTIONS(10635), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6399), 1, + STATE(6354), 1, sym_comment, - [215900] = 6, + [213542] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10572), 1, + ACTIONS(10637), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6400), 1, + STATE(6355), 1, sym_comment, - [215919] = 6, + [213561] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10574), 1, + ACTIONS(10639), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6401), 1, + STATE(6356), 1, sym_comment, - [215938] = 6, + [213580] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10576), 1, + ACTIONS(10641), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6402), 1, + STATE(6357), 1, sym_comment, - [215957] = 3, - ACTIONS(251), 1, + [213599] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6403), 1, + ACTIONS(1502), 1, + ts_builtin_sym_end, + STATE(293), 1, + aux_sym__block_body_repeat1, + STATE(6358), 1, sym_comment, - ACTIONS(10578), 4, + ACTIONS(25), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [215970] = 3, - ACTIONS(251), 1, + [213616] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6404), 1, + STATE(6359), 1, sym_comment, - ACTIONS(10580), 4, + ACTIONS(10643), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [215983] = 5, + [213629] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10582), 1, + ACTIONS(10645), 1, anon_sym_DQUOTE, - STATE(6405), 1, + STATE(6360), 1, sym_comment, - STATE(6407), 1, + STATE(6363), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [216000] = 6, + [213646] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(2190), 1, + anon_sym_RBRACE, + ACTIONS(2192), 1, + anon_sym_LPAREN2, + ACTIONS(2194), 1, sym__entry_separator, - ACTIONS(10584), 1, - anon_sym_COLON, - ACTIONS(10586), 1, - anon_sym_GT2, - STATE(5532), 1, - aux_sym__multiple_types_repeat1, - STATE(6406), 1, + ACTIONS(2196), 1, + aux_sym__unquoted_in_record_token2, + STATE(6361), 1, + sym_comment, + [213665] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10321), 1, + anon_sym_LBRACK, + ACTIONS(10323), 1, + anon_sym_LPAREN, + STATE(3277), 1, + sym_parameter_parens, + STATE(3278), 1, + sym_parameter_bracks, + STATE(6362), 1, sym_comment, - [216019] = 5, + [213684] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10588), 1, + ACTIONS(10647), 1, anon_sym_DQUOTE, - STATE(6302), 1, + STATE(6345), 1, aux_sym__str_double_quotes_repeat1, - STATE(6407), 1, + STATE(6363), 1, sym_comment, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [216036] = 6, + [213701] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + STATE(6364), 1, + sym_comment, + ACTIONS(8150), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(10590), 1, - anon_sym_COLON, - ACTIONS(10592), 1, + ACTIONS(8152), 2, + anon_sym_RBRACK, anon_sym_GT2, - STATE(5535), 1, - aux_sym__multiple_types_repeat1, - STATE(6408), 1, + [213716] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7070), 1, + aux_sym_unquoted_token2, + STATE(6365), 1, sym_comment, - [216055] = 4, + ACTIONS(1651), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [213731] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6409), 1, + STATE(6366), 1, sym_comment, - ACTIONS(1711), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1713), 2, - anon_sym_LPAREN2, + ACTIONS(8176), 2, + anon_sym_AT, sym__entry_separator, - [216070] = 6, + ACTIONS(8178), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [213746] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10594), 1, + ACTIONS(10649), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6410), 1, + STATE(6367), 1, sym_comment, - [216089] = 6, + [213765] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10596), 1, + ACTIONS(10651), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6411), 1, + STATE(6368), 1, sym_comment, - [216108] = 6, + [213784] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10598), 1, + ACTIONS(10653), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6412), 1, + STATE(6369), 1, sym_comment, - [216127] = 6, + [213803] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10600), 1, + ACTIONS(10655), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6413), 1, + STATE(6370), 1, sym_comment, - [216146] = 6, + [213822] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10602), 1, + ACTIONS(10657), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6414), 1, + STATE(6371), 1, sym_comment, - [216165] = 6, + [213841] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10604), 1, + ACTIONS(10659), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6415), 1, + STATE(6372), 1, sym_comment, - [216184] = 6, + [213860] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10606), 1, + ACTIONS(10661), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6416), 1, + STATE(6373), 1, sym_comment, - [216203] = 6, + [213879] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10608), 1, + ACTIONS(10663), 1, anon_sym_RBRACK, - STATE(3570), 1, - aux_sym__multiple_types_repeat1, - STATE(6417), 1, - sym_comment, - [216222] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(10610), 1, - anon_sym_COLON, - ACTIONS(10612), 1, - anon_sym_GT2, - STATE(5452), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6418), 1, + STATE(6374), 1, sym_comment, - [216241] = 3, - ACTIONS(251), 1, + [213898] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6419), 1, + STATE(6375), 1, sym_comment, - ACTIONS(10614), 4, + ACTIONS(10665), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [216254] = 5, + [213911] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10616), 1, + ACTIONS(10667), 1, anon_sym_DQUOTE, - STATE(6420), 1, + STATE(6376), 1, sym_comment, - STATE(6424), 1, + STATE(6377), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [216271] = 6, + [213928] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1640), 1, - anon_sym_LPAREN2, - ACTIONS(2184), 1, - anon_sym_RBRACE, - ACTIONS(2186), 1, - sym__entry_separator, - STATE(6421), 1, + ACTIONS(10669), 1, + anon_sym_DQUOTE, + STATE(6345), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6377), 1, sym_comment, - STATE(7495), 1, - sym__expr_parenthesized_immediate, - [216290] = 6, + ACTIONS(10301), 2, + sym__escaped_str_content, + sym_escape_sequence, + [213945] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1640), 1, - anon_sym_LPAREN2, - ACTIONS(2192), 1, - anon_sym_RBRACE, - ACTIONS(2194), 1, - sym__entry_separator, - STATE(6422), 1, + STATE(6378), 1, sym_comment, - STATE(7495), 1, - sym__expr_parenthesized_immediate, - [216309] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(8180), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(10618), 1, - anon_sym_COLON, - ACTIONS(10620), 1, + ACTIONS(8182), 2, + anon_sym_RBRACK, anon_sym_GT2, - STATE(5567), 1, - aux_sym__multiple_types_repeat1, - STATE(6423), 1, - sym_comment, - [216328] = 5, + [213960] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10622), 1, - anon_sym_DQUOTE, - STATE(6302), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6424), 1, + STATE(6379), 1, sym_comment, - ACTIONS(10307), 2, - sym__escaped_str_content, - sym_escape_sequence, - [216345] = 4, + ACTIONS(8188), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8190), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [213975] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6425), 1, + STATE(6380), 1, sym_comment, - ACTIONS(1755), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1757), 2, - anon_sym_LPAREN2, + ACTIONS(8196), 2, + anon_sym_AT, sym__entry_separator, - [216360] = 6, + ACTIONS(8198), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [213990] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10624), 1, + ACTIONS(10671), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6426), 1, + STATE(6381), 1, sym_comment, - [216379] = 6, + [214009] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10626), 1, + ACTIONS(10673), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6427), 1, + STATE(6382), 1, sym_comment, - [216398] = 6, + [214028] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10628), 1, + ACTIONS(10675), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6428), 1, + STATE(6383), 1, sym_comment, - [216417] = 6, + [214047] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10630), 1, + ACTIONS(10677), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6429), 1, + STATE(6384), 1, sym_comment, - [216436] = 6, + [214066] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10632), 1, + ACTIONS(10679), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6430), 1, + STATE(6385), 1, sym_comment, - [216455] = 6, + [214085] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10634), 1, + ACTIONS(10681), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6431), 1, + STATE(6386), 1, sym_comment, - [216474] = 6, + [214104] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10636), 1, + ACTIONS(10683), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6432), 1, + STATE(6387), 1, sym_comment, - [216493] = 6, + [214123] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10638), 1, + ACTIONS(10685), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6433), 1, - sym_comment, - [216512] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6434), 1, + STATE(6388), 1, sym_comment, - ACTIONS(1783), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1785), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [216527] = 3, - ACTIONS(251), 1, + [214142] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6435), 1, + STATE(6389), 1, sym_comment, - ACTIONS(10640), 4, + ACTIONS(10687), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [216540] = 5, + [214155] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10642), 1, + ACTIONS(10689), 1, anon_sym_DQUOTE, - STATE(6436), 1, + STATE(6390), 1, sym_comment, - STATE(6438), 1, + STATE(6391), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [216557] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6437), 1, - sym_comment, - ACTIONS(10644), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [216570] = 5, + [214172] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10646), 1, + ACTIONS(10691), 1, anon_sym_DQUOTE, - STATE(6302), 1, + STATE(6345), 1, aux_sym__str_double_quotes_repeat1, - STATE(6438), 1, + STATE(6391), 1, sym_comment, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [216587] = 5, - ACTIONS(251), 1, + [214189] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym_unquoted_token2, - ACTIONS(10648), 1, - anon_sym_DOT_DOT2, - STATE(6439), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(10693), 1, + anon_sym_COLON, + ACTIONS(10695), 1, + anon_sym_GT2, + STATE(5593), 1, + aux_sym__multiple_types_repeat1, + STATE(6392), 1, sym_comment, - ACTIONS(10650), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [216604] = 4, + [214208] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6440), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(10697), 1, + anon_sym_COLON, + ACTIONS(10699), 1, + anon_sym_GT2, + STATE(5521), 1, + aux_sym__multiple_types_repeat1, + STATE(6393), 1, sym_comment, - ACTIONS(1835), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1837), 2, - anon_sym_LPAREN2, + [214227] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6394), 1, + sym_comment, + ACTIONS(8256), 2, + anon_sym_AT, sym__entry_separator, - [216619] = 5, - ACTIONS(251), 1, + ACTIONS(8258), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [214242] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(605), 1, - ts_builtin_sym_end, - STATE(223), 1, - aux_sym__block_body_repeat1, - STATE(6441), 1, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(10271), 1, + anon_sym_LBRACK, + ACTIONS(10701), 1, + anon_sym_RBRACK, + STATE(3560), 1, + aux_sym__multiple_types_repeat1, + STATE(6395), 1, sym_comment, - ACTIONS(25), 2, - sym__newline, - anon_sym_SEMI, - [216636] = 6, + [214261] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10652), 1, + ACTIONS(10703), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6442), 1, + STATE(6396), 1, sym_comment, - [216655] = 6, + [214280] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10654), 1, + ACTIONS(10705), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6443), 1, + STATE(6397), 1, sym_comment, - [216674] = 6, + [214299] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10656), 1, + ACTIONS(10707), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6444), 1, + STATE(6398), 1, sym_comment, - [216693] = 6, + [214318] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10658), 1, + ACTIONS(10709), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6445), 1, + STATE(6399), 1, sym_comment, - [216712] = 6, + [214337] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10660), 1, + ACTIONS(10711), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6446), 1, + STATE(6400), 1, sym_comment, - [216731] = 6, + [214356] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10662), 1, + ACTIONS(10713), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6447), 1, + STATE(6401), 1, sym_comment, - [216750] = 6, + [214375] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10664), 1, + ACTIONS(10715), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6448), 1, + STATE(6402), 1, sym_comment, - [216769] = 6, + [214394] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10666), 1, + ACTIONS(10717), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6449), 1, + STATE(6403), 1, sym_comment, - [216788] = 3, - ACTIONS(251), 1, + [214413] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6450), 1, + STATE(6404), 1, sym_comment, - ACTIONS(10668), 4, + ACTIONS(10719), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [216801] = 5, + [214426] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10670), 1, + ACTIONS(10721), 1, anon_sym_DQUOTE, - STATE(6451), 1, + STATE(6405), 1, sym_comment, - STATE(6453), 1, + STATE(6408), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [216818] = 6, - ACTIONS(251), 1, + [214443] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(6284), 1, - anon_sym_LBRACE, - STATE(4714), 1, - sym_block, - STATE(6452), 1, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(10271), 1, + anon_sym_LBRACK, + ACTIONS(10723), 1, + anon_sym_RBRACK, + STATE(3560), 1, + aux_sym__multiple_types_repeat1, + STATE(6406), 1, sym_comment, - STATE(6704), 1, - aux_sym_shebang_repeat1, - [216837] = 5, + [214462] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10672), 1, - anon_sym_DQUOTE, - STATE(6302), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6453), 1, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(10271), 1, + anon_sym_LBRACK, + ACTIONS(10725), 1, + anon_sym_RBRACK, + STATE(3560), 1, + aux_sym__multiple_types_repeat1, + STATE(6407), 1, sym_comment, - ACTIONS(10307), 2, - sym__escaped_str_content, - sym_escape_sequence, - [216854] = 5, + [214481] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10674), 1, + ACTIONS(10727), 1, anon_sym_DQUOTE, - STATE(6302), 1, + STATE(6345), 1, aux_sym__str_double_quotes_repeat1, - STATE(6454), 1, + STATE(6408), 1, sym_comment, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [216871] = 6, + [214498] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10676), 1, + ACTIONS(10729), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6455), 1, + STATE(6409), 1, sym_comment, - [216890] = 6, + [214517] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10678), 1, + ACTIONS(10731), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6456), 1, + STATE(6410), 1, sym_comment, - [216909] = 6, + [214536] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10680), 1, + ACTIONS(10733), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6457), 1, + STATE(6411), 1, sym_comment, - [216928] = 6, + [214555] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10682), 1, + ACTIONS(10735), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6458), 1, + STATE(6412), 1, sym_comment, - [216947] = 6, + [214574] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10684), 1, + ACTIONS(10737), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6459), 1, + STATE(6413), 1, sym_comment, - [216966] = 6, + [214593] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10686), 1, + ACTIONS(10739), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6460), 1, + STATE(6414), 1, sym_comment, - [216985] = 6, + [214612] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10688), 1, + ACTIONS(10741), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6461), 1, + STATE(6415), 1, sym_comment, - [217004] = 6, + [214631] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10690), 1, + ACTIONS(10743), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6462), 1, + STATE(6416), 1, sym_comment, - [217023] = 6, + [214650] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(10692), 1, - anon_sym_COLON, - ACTIONS(10694), 1, - anon_sym_GT2, - STATE(5481), 1, - aux_sym__multiple_types_repeat1, - STATE(6463), 1, + STATE(6417), 1, sym_comment, - [217042] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(8260), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(10696), 1, - anon_sym_COLON, - ACTIONS(10698), 1, + ACTIONS(8262), 2, + anon_sym_RBRACK, anon_sym_GT2, - STATE(5482), 1, - aux_sym__multiple_types_repeat1, - STATE(6464), 1, + [214665] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6418), 1, sym_comment, - [217061] = 3, - ACTIONS(251), 1, + ACTIONS(10745), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [214678] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6465), 1, + STATE(6419), 1, sym_comment, - ACTIONS(10700), 4, + ACTIONS(10747), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [217074] = 5, + [214691] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10702), 1, + ACTIONS(10749), 1, anon_sym_DQUOTE, - STATE(6466), 1, + STATE(6420), 1, sym_comment, - STATE(6468), 1, + STATE(6421), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [217091] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(10704), 1, - anon_sym_use, - ACTIONS(10706), 1, - anon_sym_list, - ACTIONS(10708), 1, - anon_sym_hide, - ACTIONS(10710), 1, - anon_sym_new, - STATE(6467), 1, - sym_comment, - [217110] = 5, + [214708] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10712), 1, + ACTIONS(10751), 1, anon_sym_DQUOTE, - STATE(6302), 1, + STATE(6345), 1, aux_sym__str_double_quotes_repeat1, - STATE(6468), 1, + STATE(6421), 1, sym_comment, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [217127] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(10315), 1, - anon_sym_LBRACK, - ACTIONS(10714), 1, - anon_sym_RBRACK, - STATE(3570), 1, - aux_sym__multiple_types_repeat1, - STATE(6469), 1, - sym_comment, - [217146] = 6, - ACTIONS(3), 1, + [214725] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(10315), 1, - anon_sym_LBRACK, - ACTIONS(10716), 1, - anon_sym_RBRACK, - STATE(3570), 1, - aux_sym__multiple_types_repeat1, - STATE(6470), 1, + ACTIONS(944), 1, + sym__table_head_separator, + ACTIONS(10077), 1, + anon_sym_DOT2, + STATE(6422), 1, sym_comment, - [217165] = 6, + STATE(6469), 1, + aux_sym_cell_path_repeat1, + STATE(7324), 1, + sym_path, + [214744] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10718), 1, + ACTIONS(10753), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6471), 1, - sym_comment, - [217184] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10720), 1, - anon_sym_DQUOTE, - STATE(6302), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6472), 1, + STATE(6423), 1, sym_comment, - ACTIONS(10307), 2, - sym__escaped_str_content, - sym_escape_sequence, - [217201] = 6, + [214763] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10722), 1, + ACTIONS(10755), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6473), 1, + STATE(6424), 1, sym_comment, - [217220] = 6, + [214782] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10724), 1, + ACTIONS(10757), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6474), 1, + STATE(6425), 1, sym_comment, - [217239] = 6, + [214801] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10726), 1, + ACTIONS(10759), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6475), 1, + STATE(6426), 1, sym_comment, - [217258] = 6, + [214820] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10728), 1, + ACTIONS(10761), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6476), 1, + STATE(6427), 1, sym_comment, - [217277] = 6, + [214839] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10730), 1, + ACTIONS(10763), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6477), 1, + STATE(6428), 1, sym_comment, - [217296] = 6, + [214858] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10732), 1, + ACTIONS(10765), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6478), 1, + STATE(6429), 1, sym_comment, - [217315] = 6, + [214877] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10734), 1, + ACTIONS(10767), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6479), 1, + STATE(6430), 1, sym_comment, - [217334] = 3, - ACTIONS(251), 1, + [214896] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6480), 1, + STATE(6431), 1, sym_comment, - ACTIONS(10736), 4, + ACTIONS(10769), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [217347] = 5, + [214909] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10738), 1, + ACTIONS(10771), 1, anon_sym_DQUOTE, - STATE(6481), 1, + STATE(6432), 1, sym_comment, - STATE(6482), 1, + STATE(6433), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [217364] = 5, + [214926] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10740), 1, + ACTIONS(10773), 1, anon_sym_DQUOTE, - STATE(6302), 1, + STATE(6345), 1, aux_sym__str_double_quotes_repeat1, - STATE(6482), 1, + STATE(6433), 1, sym_comment, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [217381] = 4, - ACTIONS(3), 1, + [214943] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10742), 1, - anon_sym_LPAREN, - STATE(6483), 1, + STATE(6434), 1, sym_comment, - ACTIONS(10744), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [217396] = 4, - ACTIONS(3), 1, + ACTIONS(8072), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_AT, + anon_sym_LBRACE, + [214956] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10746), 1, - anon_sym_LPAREN, - STATE(6484), 1, + STATE(6435), 1, sym_comment, - ACTIONS(10748), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [217411] = 6, + ACTIONS(10558), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [214969] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10750), 1, + ACTIONS(10775), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6485), 1, + STATE(6436), 1, sym_comment, - [217430] = 6, + [214988] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10752), 1, + ACTIONS(10777), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6486), 1, + STATE(6437), 1, sym_comment, - [217449] = 6, + [215007] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10754), 1, + ACTIONS(10779), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6487), 1, + STATE(6438), 1, sym_comment, - [217468] = 6, + [215026] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10756), 1, + ACTIONS(10781), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6488), 1, + STATE(6439), 1, sym_comment, - [217487] = 6, + [215045] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10758), 1, + ACTIONS(10783), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6489), 1, + STATE(6440), 1, sym_comment, - [217506] = 6, + [215064] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10760), 1, + ACTIONS(10785), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6490), 1, + STATE(6441), 1, sym_comment, - [217525] = 6, + [215083] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10762), 1, + ACTIONS(10787), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6491), 1, + STATE(6442), 1, sym_comment, - [217544] = 6, + [215102] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10764), 1, + ACTIONS(10789), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6492), 1, + STATE(6443), 1, sym_comment, - [217563] = 3, - ACTIONS(251), 1, + [215121] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6493), 1, + STATE(6444), 1, sym_comment, - ACTIONS(10766), 4, + ACTIONS(10791), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [217576] = 5, + [215134] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10768), 1, + ACTIONS(10793), 1, anon_sym_DQUOTE, - STATE(6494), 1, + STATE(6445), 1, sym_comment, - STATE(6496), 1, + STATE(6447), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [217593] = 4, + [215151] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2150), 1, + ACTIONS(2087), 1, anon_sym_PIPE, - STATE(6495), 1, + STATE(6446), 1, sym_comment, - ACTIONS(2148), 3, + ACTIONS(2085), 3, anon_sym_if, anon_sym_EQ_GT, aux_sym_unquoted_token4, - [217608] = 5, + [215166] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10770), 1, + ACTIONS(10795), 1, anon_sym_DQUOTE, - STATE(6302), 1, + STATE(6345), 1, aux_sym__str_double_quotes_repeat1, - STATE(6496), 1, + STATE(6447), 1, sym_comment, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [217625] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(951), 1, - sym__table_head_separator, - ACTIONS(10181), 1, - anon_sym_DOT2, - STATE(6497), 1, - sym_comment, - STATE(6605), 1, - aux_sym_cell_path_repeat1, - STATE(7405), 1, - sym_path, - [217644] = 6, + [215183] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10772), 1, + ACTIONS(10797), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6498), 1, + STATE(6448), 1, sym_comment, - [217663] = 6, + [215202] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10774), 1, + ACTIONS(10799), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6499), 1, + STATE(6449), 1, sym_comment, - [217682] = 6, + [215221] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10776), 1, + ACTIONS(10801), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6500), 1, + STATE(6450), 1, sym_comment, - [217701] = 6, + [215240] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10778), 1, + ACTIONS(10803), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6501), 1, + STATE(6451), 1, sym_comment, - [217720] = 6, + [215259] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10780), 1, + ACTIONS(10805), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6502), 1, + STATE(6452), 1, sym_comment, - [217739] = 6, + [215278] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10782), 1, + ACTIONS(10807), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6503), 1, + STATE(6453), 1, sym_comment, - [217758] = 6, + [215297] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10784), 1, + ACTIONS(10809), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6504), 1, + STATE(6454), 1, sym_comment, - [217777] = 6, + [215316] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10786), 1, + ACTIONS(10811), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6505), 1, - sym_comment, - [217796] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2128), 1, - anon_sym_RBRACK, - ACTIONS(2130), 1, - anon_sym_LPAREN2, - ACTIONS(2132), 1, - sym__entry_separator, - ACTIONS(2134), 1, - aux_sym__unquoted_in_list_token4, - STATE(6506), 1, + STATE(6455), 1, sym_comment, - [217815] = 3, - ACTIONS(251), 1, + [215335] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6507), 1, + STATE(6456), 1, sym_comment, - ACTIONS(10788), 4, + ACTIONS(10813), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [217828] = 5, + [215348] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10790), 1, + ACTIONS(10815), 1, anon_sym_DQUOTE, - STATE(6508), 1, + STATE(6457), 1, sym_comment, - STATE(6509), 1, + STATE(6459), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [217845] = 5, + [215365] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1641), 1, + anon_sym_LPAREN2, + ACTIONS(2174), 1, + anon_sym_RBRACE, + ACTIONS(2176), 1, + sym__entry_separator, + STATE(6458), 1, + sym_comment, + STATE(7668), 1, + sym__expr_parenthesized_immediate, + [215384] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10792), 1, + ACTIONS(10817), 1, anon_sym_DQUOTE, - STATE(6302), 1, + STATE(6345), 1, aux_sym__str_double_quotes_repeat1, - STATE(6509), 1, + STATE(6459), 1, sym_comment, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [217862] = 6, + [215401] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1012), 1, - sym__entry_separator, - ACTIONS(1016), 1, - anon_sym_RBRACK, - ACTIONS(2206), 1, + ACTIONS(1641), 1, anon_sym_LPAREN2, - ACTIONS(2208), 1, - aux_sym__unquoted_in_list_token4, - STATE(6510), 1, - sym_comment, - [217881] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(6284), 1, - anon_sym_LBRACE, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4718), 1, - sym_block, - STATE(6511), 1, + ACTIONS(2178), 1, + anon_sym_RBRACE, + ACTIONS(2180), 1, + sym__entry_separator, + STATE(6460), 1, sym_comment, - [217900] = 6, + STATE(7668), 1, + sym__expr_parenthesized_immediate, + [215420] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10794), 1, + ACTIONS(10819), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6512), 1, + STATE(6461), 1, sym_comment, - [217919] = 6, + [215439] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10796), 1, + ACTIONS(10821), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6513), 1, + STATE(6462), 1, sym_comment, - [217938] = 6, + [215458] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10798), 1, + ACTIONS(10823), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6514), 1, + STATE(6463), 1, sym_comment, - [217957] = 6, + [215477] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(10315), 1, - anon_sym_LBRACK, - ACTIONS(10800), 1, - anon_sym_RBRACK, - STATE(3570), 1, - aux_sym__multiple_types_repeat1, - STATE(6515), 1, + ACTIONS(10825), 1, + anon_sym_LPAREN, + STATE(6464), 1, sym_comment, - [217976] = 6, + ACTIONS(10827), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [215492] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10802), 1, + ACTIONS(10829), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6516), 1, + STATE(6465), 1, sym_comment, - [217995] = 6, + [215511] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10804), 1, + ACTIONS(10831), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6517), 1, + STATE(6466), 1, sym_comment, - [218014] = 6, + [215530] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10806), 1, + ACTIONS(10833), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6518), 1, + STATE(6467), 1, sym_comment, - [218033] = 6, + [215549] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10808), 1, + ACTIONS(10835), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6519), 1, + STATE(6468), 1, sym_comment, - [218052] = 3, - ACTIONS(251), 1, + [215568] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6520), 1, + ACTIONS(937), 1, + sym__table_head_separator, + ACTIONS(10837), 1, + anon_sym_DOT2, + STATE(7324), 1, + sym_path, + STATE(6469), 2, + sym_comment, + aux_sym_cell_path_repeat1, + [215585] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6470), 1, sym_comment, - ACTIONS(10810), 4, + ACTIONS(10840), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [218065] = 5, + [215598] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10812), 1, + ACTIONS(10842), 1, anon_sym_DQUOTE, - STATE(6521), 1, + STATE(6471), 1, sym_comment, - STATE(6522), 1, + STATE(6472), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [218082] = 5, + [215615] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10814), 1, + ACTIONS(10844), 1, anon_sym_DQUOTE, - STATE(6302), 1, + STATE(6345), 1, aux_sym__str_double_quotes_repeat1, - STATE(6522), 1, + STATE(6472), 1, sym_comment, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [218099] = 6, + [215632] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10816), 1, + ACTIONS(10846), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6523), 1, + STATE(6473), 1, sym_comment, - [218118] = 6, + [215651] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10818), 1, + ACTIONS(10848), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6524), 1, + STATE(6474), 1, sym_comment, - [218137] = 6, + [215670] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10820), 1, + ACTIONS(10850), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6525), 1, + STATE(6475), 1, sym_comment, - [218156] = 6, + [215689] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10822), 1, + ACTIONS(10852), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6526), 1, + STATE(6476), 1, sym_comment, - [218175] = 6, + [215708] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10824), 1, + ACTIONS(10854), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6527), 1, + STATE(6477), 1, sym_comment, - [218194] = 6, + [215727] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10826), 1, + ACTIONS(10856), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6528), 1, + STATE(6478), 1, sym_comment, - [218213] = 6, + [215746] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10828), 1, + ACTIONS(10858), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6529), 1, + STATE(6479), 1, sym_comment, - [218232] = 6, + [215765] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(10830), 1, + ACTIONS(10860), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6530), 1, + STATE(6480), 1, sym_comment, - [218251] = 3, - ACTIONS(251), 1, + [215784] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6531), 1, + STATE(6481), 1, sym_comment, - ACTIONS(10832), 4, + ACTIONS(10862), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [218264] = 5, + [215797] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10834), 1, + ACTIONS(10864), 1, anon_sym_DQUOTE, - STATE(6532), 1, + STATE(6482), 1, sym_comment, - STATE(6533), 1, + STATE(6484), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [218281] = 5, + [215814] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6483), 1, + sym_comment, + ACTIONS(10866), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [215827] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10836), 1, + ACTIONS(10868), 1, anon_sym_DQUOTE, - STATE(6302), 1, + STATE(6345), 1, aux_sym__str_double_quotes_repeat1, - STATE(6533), 1, + STATE(6484), 1, sym_comment, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [218298] = 3, - ACTIONS(251), 1, + [215844] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6534), 1, + STATE(6485), 1, sym_comment, - ACTIONS(10838), 4, + ACTIONS(10870), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [218311] = 5, + [215857] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10840), 1, + ACTIONS(10872), 1, anon_sym_DQUOTE, - STATE(6535), 1, + STATE(6486), 1, sym_comment, - STATE(6536), 1, + STATE(6487), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [218328] = 5, + [215874] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10842), 1, + ACTIONS(10874), 1, anon_sym_DQUOTE, - STATE(6302), 1, + STATE(6345), 1, aux_sym__str_double_quotes_repeat1, - STATE(6536), 1, + STATE(6487), 1, sym_comment, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [218345] = 3, - ACTIONS(251), 1, + [215891] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6537), 1, + ACTIONS(3550), 1, + anon_sym_COLON2, + ACTIONS(10876), 2, + sym__newline, + sym__space, + STATE(6488), 2, + sym_comment, + aux_sym_ctrl_do_parenthesized_repeat2, + [215906] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6489), 1, sym_comment, - ACTIONS(10844), 4, + ACTIONS(10879), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [218358] = 5, + [215919] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10846), 1, + ACTIONS(10881), 1, anon_sym_DQUOTE, - STATE(6538), 1, + STATE(6490), 1, sym_comment, - STATE(6539), 1, + STATE(6492), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [218375] = 5, + [215936] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10848), 1, + ACTIONS(2190), 1, + anon_sym_RBRACK, + ACTIONS(2192), 1, + anon_sym_LPAREN2, + ACTIONS(2194), 1, + sym__entry_separator, + ACTIONS(2196), 1, + aux_sym__unquoted_in_list_token2, + STATE(6491), 1, + sym_comment, + [215955] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10883), 1, anon_sym_DQUOTE, - STATE(6302), 1, + STATE(6345), 1, aux_sym__str_double_quotes_repeat1, - STATE(6539), 1, + STATE(6492), 1, sym_comment, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [218392] = 3, - ACTIONS(251), 1, + [215972] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6540), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(10885), 1, + anon_sym_COLON, + ACTIONS(10887), 1, + anon_sym_GT2, + STATE(5426), 1, + aux_sym__multiple_types_repeat1, + STATE(6493), 1, + sym_comment, + [215991] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6494), 1, sym_comment, - ACTIONS(10850), 4, + ACTIONS(10889), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [218405] = 5, + [216004] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10852), 1, + ACTIONS(10891), 1, anon_sym_DQUOTE, - STATE(6541), 1, + STATE(6495), 1, sym_comment, - STATE(6542), 1, + STATE(6497), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [218422] = 5, + [216021] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10854), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(10893), 1, + anon_sym_COLON, + ACTIONS(10895), 1, + anon_sym_GT2, + STATE(5427), 1, + aux_sym__multiple_types_repeat1, + STATE(6496), 1, + sym_comment, + [216040] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10897), 1, anon_sym_DQUOTE, - STATE(6302), 1, + STATE(6345), 1, aux_sym__str_double_quotes_repeat1, - STATE(6542), 1, + STATE(6497), 1, sym_comment, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [218439] = 3, - ACTIONS(251), 1, + [216057] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6543), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(10899), 1, + anon_sym_COLON, + ACTIONS(10901), 1, + anon_sym_GT2, + STATE(5428), 1, + aux_sym__multiple_types_repeat1, + STATE(6498), 1, + sym_comment, + [216076] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6499), 1, sym_comment, - ACTIONS(10856), 4, + ACTIONS(10903), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [218452] = 5, + [216089] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10858), 1, + ACTIONS(10905), 1, anon_sym_DQUOTE, - STATE(6544), 1, + STATE(6500), 1, sym_comment, - STATE(6545), 1, + STATE(6501), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [218469] = 5, + [216106] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10860), 1, + ACTIONS(10907), 1, anon_sym_DQUOTE, - STATE(6302), 1, + STATE(6345), 1, aux_sym__str_double_quotes_repeat1, - STATE(6545), 1, + STATE(6501), 1, sym_comment, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [218486] = 6, - ACTIONS(251), 1, + [216123] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6697), 1, - sym__newline, - ACTIONS(10862), 1, - anon_sym_EQ, - ACTIONS(10864), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(10909), 1, anon_sym_COLON, - STATE(3952), 1, - aux_sym_shebang_repeat1, - STATE(6546), 1, + ACTIONS(10911), 1, + anon_sym_GT2, + STATE(5429), 1, + aux_sym__multiple_types_repeat1, + STATE(6502), 1, sym_comment, - [218505] = 3, - ACTIONS(251), 1, + [216142] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6547), 1, + STATE(6503), 1, sym_comment, - ACTIONS(10866), 4, + ACTIONS(10913), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [218518] = 5, + [216155] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10868), 1, + ACTIONS(10915), 1, anon_sym_DQUOTE, - STATE(6548), 1, + STATE(6504), 1, sym_comment, - STATE(6549), 1, + STATE(6505), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [218535] = 5, + [216172] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10870), 1, + ACTIONS(10917), 1, anon_sym_DQUOTE, - STATE(6302), 1, + STATE(6345), 1, aux_sym__str_double_quotes_repeat1, - STATE(6549), 1, + STATE(6505), 1, sym_comment, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [218552] = 3, - ACTIONS(251), 1, + [216189] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6550), 1, + STATE(6506), 1, sym_comment, - ACTIONS(10872), 4, + ACTIONS(10919), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [218565] = 5, + [216202] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10874), 1, + ACTIONS(10921), 1, anon_sym_DQUOTE, - STATE(6551), 1, + STATE(6507), 1, sym_comment, - STATE(6552), 1, + STATE(6508), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [218582] = 5, + [216219] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10876), 1, + ACTIONS(10923), 1, anon_sym_DQUOTE, - STATE(6302), 1, + STATE(6345), 1, aux_sym__str_double_quotes_repeat1, - STATE(6552), 1, + STATE(6508), 1, sym_comment, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [218599] = 3, - ACTIONS(251), 1, + [216236] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6553), 1, + STATE(6509), 1, sym_comment, - ACTIONS(10878), 4, + ACTIONS(10925), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [218612] = 5, + [216249] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10880), 1, + ACTIONS(10927), 1, anon_sym_DQUOTE, - STATE(6554), 1, + STATE(6510), 1, sym_comment, - STATE(6555), 1, + STATE(6511), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [218629] = 5, + [216266] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10882), 1, + ACTIONS(10929), 1, anon_sym_DQUOTE, - STATE(6302), 1, + STATE(6345), 1, aux_sym__str_double_quotes_repeat1, - STATE(6555), 1, + STATE(6511), 1, sym_comment, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [218646] = 3, - ACTIONS(251), 1, + [216283] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6556), 1, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(10271), 1, + anon_sym_LBRACK, + ACTIONS(10931), 1, + anon_sym_RBRACK, + STATE(3560), 1, + aux_sym__multiple_types_repeat1, + STATE(6512), 1, + sym_comment, + [216302] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6513), 1, sym_comment, - ACTIONS(10884), 4, + ACTIONS(10933), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [218659] = 5, + [216315] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10886), 1, + ACTIONS(10935), 1, anon_sym_DQUOTE, - STATE(6557), 1, + STATE(6514), 1, sym_comment, - STATE(6558), 1, + STATE(6515), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [218676] = 5, + [216332] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10888), 1, + ACTIONS(10937), 1, anon_sym_DQUOTE, - STATE(6302), 1, + STATE(6345), 1, aux_sym__str_double_quotes_repeat1, - STATE(6558), 1, + STATE(6515), 1, sym_comment, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [218693] = 3, - ACTIONS(251), 1, + [216349] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6559), 1, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(10271), 1, + anon_sym_LBRACK, + ACTIONS(10939), 1, + anon_sym_RBRACK, + STATE(3560), 1, + aux_sym__multiple_types_repeat1, + STATE(6516), 1, sym_comment, - ACTIONS(10890), 4, + [216368] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6517), 1, + sym_comment, + ACTIONS(10941), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [218706] = 5, + [216381] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10892), 1, + ACTIONS(10943), 1, anon_sym_DQUOTE, - STATE(6560), 1, + STATE(6518), 1, sym_comment, - STATE(6561), 1, + STATE(6519), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [218723] = 5, + [216398] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10894), 1, + ACTIONS(10945), 1, anon_sym_DQUOTE, - STATE(6302), 1, + STATE(6345), 1, aux_sym__str_double_quotes_repeat1, - STATE(6561), 1, + STATE(6519), 1, sym_comment, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [218740] = 3, - ACTIONS(251), 1, + [216415] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6562), 1, + STATE(6520), 1, sym_comment, - ACTIONS(10896), 4, + ACTIONS(10947), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [218753] = 5, + [216428] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10898), 1, + ACTIONS(10949), 1, anon_sym_DQUOTE, - STATE(6563), 1, + STATE(6521), 1, sym_comment, - STATE(6564), 1, + STATE(6522), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [218770] = 5, + [216445] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10900), 1, + ACTIONS(10951), 1, anon_sym_DQUOTE, - STATE(6302), 1, + STATE(6345), 1, aux_sym__str_double_quotes_repeat1, - STATE(6564), 1, + STATE(6522), 1, sym_comment, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [218787] = 3, - ACTIONS(251), 1, + [216462] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6565), 1, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(10271), 1, + anon_sym_LBRACK, + ACTIONS(10953), 1, + anon_sym_RBRACK, + STATE(3560), 1, + aux_sym__multiple_types_repeat1, + STATE(6523), 1, + sym_comment, + [216481] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6524), 1, sym_comment, - ACTIONS(10902), 4, + ACTIONS(10955), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [218800] = 5, + [216494] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10904), 1, + ACTIONS(10957), 1, anon_sym_DQUOTE, - STATE(6566), 1, + STATE(6525), 1, sym_comment, - STATE(6567), 1, + STATE(6526), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [218817] = 5, + [216511] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10906), 1, + ACTIONS(10959), 1, anon_sym_DQUOTE, - STATE(6302), 1, + STATE(6345), 1, aux_sym__str_double_quotes_repeat1, - STATE(6567), 1, + STATE(6526), 1, sym_comment, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [218834] = 3, - ACTIONS(251), 1, + [216528] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6568), 1, + STATE(6527), 1, sym_comment, - ACTIONS(10908), 4, + ACTIONS(10961), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [218847] = 5, + [216541] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10910), 1, + ACTIONS(10963), 1, anon_sym_DQUOTE, - STATE(6569), 1, + STATE(6528), 1, sym_comment, - STATE(6570), 1, + STATE(6529), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [218864] = 5, + [216558] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10912), 1, + ACTIONS(10965), 1, anon_sym_DQUOTE, - STATE(6302), 1, + STATE(6345), 1, aux_sym__str_double_quotes_repeat1, - STATE(6570), 1, + STATE(6529), 1, sym_comment, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [218881] = 3, - ACTIONS(251), 1, + [216575] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6571), 1, + STATE(6530), 1, sym_comment, - ACTIONS(10914), 4, + ACTIONS(10967), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [218894] = 5, + [216588] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10916), 1, + ACTIONS(10969), 1, anon_sym_DQUOTE, - STATE(6572), 1, + STATE(6531), 1, sym_comment, - STATE(6573), 1, + STATE(6532), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [218911] = 5, + [216605] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10918), 1, + ACTIONS(10971), 1, anon_sym_DQUOTE, - STATE(6302), 1, + STATE(6345), 1, aux_sym__str_double_quotes_repeat1, - STATE(6573), 1, + STATE(6532), 1, sym_comment, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [218928] = 3, - ACTIONS(251), 1, + [216622] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6574), 1, + STATE(6533), 1, sym_comment, - ACTIONS(10920), 4, + ACTIONS(10973), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [218941] = 5, + [216635] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10922), 1, + ACTIONS(10975), 1, anon_sym_DQUOTE, - STATE(6575), 1, + STATE(6534), 1, sym_comment, - STATE(6576), 1, + STATE(6535), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [218958] = 5, + [216652] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10924), 1, + ACTIONS(10977), 1, anon_sym_DQUOTE, - STATE(6302), 1, + STATE(6345), 1, aux_sym__str_double_quotes_repeat1, - STATE(6576), 1, + STATE(6535), 1, sym_comment, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [218975] = 5, + [216669] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10926), 1, + ACTIONS(10979), 1, anon_sym_DQUOTE, - STATE(6577), 1, + STATE(6536), 1, sym_comment, - STATE(6578), 1, + STATE(6537), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [218992] = 5, + [216686] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10928), 1, + ACTIONS(10981), 1, anon_sym_DQUOTE, - STATE(6302), 1, + STATE(6345), 1, aux_sym__str_double_quotes_repeat1, - STATE(6578), 1, + STATE(6537), 1, sym_comment, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [219009] = 5, + [216703] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10930), 1, + ACTIONS(10983), 1, anon_sym_DQUOTE, - STATE(6579), 1, + STATE(6538), 1, sym_comment, - STATE(6580), 1, + STATE(6539), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [219026] = 5, + [216720] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10932), 1, + ACTIONS(10985), 1, anon_sym_DQUOTE, - STATE(6302), 1, + STATE(6345), 1, aux_sym__str_double_quotes_repeat1, - STATE(6580), 1, + STATE(6539), 1, sym_comment, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [219043] = 5, + [216737] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10934), 1, + ACTIONS(10987), 1, anon_sym_DQUOTE, - STATE(6581), 1, + STATE(6540), 1, sym_comment, - STATE(6582), 1, + STATE(6541), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [219060] = 5, + [216754] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10936), 1, + ACTIONS(10989), 1, anon_sym_DQUOTE, - STATE(6302), 1, + STATE(6345), 1, aux_sym__str_double_quotes_repeat1, - STATE(6582), 1, + STATE(6541), 1, sym_comment, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [219077] = 5, + [216771] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10938), 1, + ACTIONS(10991), 1, anon_sym_DQUOTE, - STATE(6583), 1, + STATE(6542), 1, sym_comment, - STATE(6584), 1, + STATE(6543), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [219094] = 5, + [216788] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10940), 1, + ACTIONS(10993), 1, anon_sym_DQUOTE, - STATE(6302), 1, + STATE(6345), 1, aux_sym__str_double_quotes_repeat1, - STATE(6584), 1, + STATE(6543), 1, + sym_comment, + ACTIONS(10301), 2, + sym__escaped_str_content, + sym_escape_sequence, + [216805] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10995), 1, + anon_sym_DQUOTE, + STATE(6544), 1, + sym_comment, + STATE(6545), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10301), 2, + sym__escaped_str_content, + sym_escape_sequence, + [216822] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10997), 1, + anon_sym_DQUOTE, + STATE(6345), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6545), 1, + sym_comment, + ACTIONS(10301), 2, + sym__escaped_str_content, + sym_escape_sequence, + [216839] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10999), 1, + anon_sym_DQUOTE, + STATE(6546), 1, + sym_comment, + STATE(6547), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10301), 2, + sym__escaped_str_content, + sym_escape_sequence, + [216856] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11001), 1, + anon_sym_DQUOTE, + STATE(6345), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6547), 1, + sym_comment, + ACTIONS(10301), 2, + sym__escaped_str_content, + sym_escape_sequence, + [216873] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11003), 1, + anon_sym_DQUOTE, + STATE(6548), 1, + sym_comment, + STATE(6549), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10301), 2, + sym__escaped_str_content, + sym_escape_sequence, + [216890] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11005), 1, + anon_sym_DQUOTE, + STATE(6345), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6549), 1, sym_comment, - ACTIONS(10307), 2, + ACTIONS(10301), 2, sym__escaped_str_content, sym_escape_sequence, - [219111] = 5, + [216907] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10441), 1, + anon_sym_LBRACK, + ACTIONS(10443), 1, + anon_sym_LPAREN, + STATE(5939), 1, + sym_parameter_bracks, + STATE(6145), 1, + sym_parameter_parens, + STATE(6550), 1, + sym_comment, + [216926] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6551), 1, + sym_comment, + ACTIONS(11007), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [216939] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6552), 1, + sym_comment, + ACTIONS(11009), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [216952] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(10271), 1, + anon_sym_LBRACK, + ACTIONS(11011), 1, + anon_sym_RBRACK, + STATE(3560), 1, + aux_sym__multiple_types_repeat1, + STATE(6553), 1, + sym_comment, + [216971] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10321), 1, + anon_sym_LBRACK, + ACTIONS(10323), 1, + anon_sym_LPAREN, + STATE(3254), 1, + sym_parameter_parens, + STATE(3255), 1, + sym_parameter_bracks, + STATE(6554), 1, + sym_comment, + [216990] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6555), 1, + sym_comment, + ACTIONS(11009), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [217003] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6556), 1, + sym_comment, + ACTIONS(10317), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [217016] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6557), 1, + sym_comment, + ACTIONS(11013), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [217029] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10381), 1, + anon_sym_DOT_DOT2, + ACTIONS(11015), 1, + anon_sym_LBRACE, + STATE(6558), 1, + sym_comment, + ACTIONS(10383), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [217046] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6559), 1, + sym_comment, + ACTIONS(11013), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [217059] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6560), 1, + sym_comment, + ACTIONS(10317), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [217072] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6561), 1, + sym_comment, + ACTIONS(11017), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [217085] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6562), 1, + sym_comment, + ACTIONS(11019), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [217098] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6563), 1, + sym_comment, + ACTIONS(11021), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [217111] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6564), 1, + sym_comment, + ACTIONS(11023), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [217124] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6565), 1, + sym_comment, + ACTIONS(11025), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [217137] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1457), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(1806), 1, + anon_sym_RBRACE, + ACTIONS(1808), 1, + anon_sym_LPAREN2, + ACTIONS(1814), 1, + sym__entry_separator, + STATE(6566), 1, + sym_comment, + [217156] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6567), 1, + sym_comment, + ACTIONS(7849), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(7853), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [217171] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(10271), 1, + anon_sym_LBRACK, + ACTIONS(11027), 1, + anon_sym_RBRACK, + STATE(3560), 1, + aux_sym__multiple_types_repeat1, + STATE(6568), 1, + sym_comment, + [217190] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6569), 1, + sym_comment, + ACTIONS(8264), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8266), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [217205] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6570), 1, + sym_comment, + ACTIONS(8208), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8210), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [217220] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10942), 1, - anon_sym_DQUOTE, + ACTIONS(4861), 1, + sym__space, + ACTIONS(4863), 1, + sym__newline, + ACTIONS(11029), 1, + anon_sym_EQ2, + ACTIONS(11031), 1, + sym_short_flag_identifier, + STATE(6571), 1, + sym_comment, + [217239] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10321), 1, + anon_sym_LBRACK, + ACTIONS(10323), 1, + anon_sym_LPAREN, + STATE(3256), 1, + sym_parameter_parens, + STATE(3257), 1, + sym_parameter_bracks, + STATE(6572), 1, + sym_comment, + [217258] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10321), 1, + anon_sym_LBRACK, + ACTIONS(10323), 1, + anon_sym_LPAREN, + STATE(3258), 1, + sym_parameter_parens, + STATE(3259), 1, + sym_parameter_bracks, + STATE(6573), 1, + sym_comment, + [217277] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1701), 1, + aux_sym_unquoted_token2, + ACTIONS(10187), 1, + aux_sym__immediate_decimal_token2, + STATE(6574), 1, + sym_comment, + ACTIONS(1703), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [217294] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6575), 1, + sym_comment, + ACTIONS(8364), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8366), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [217309] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(11033), 1, + anon_sym_COLON, + ACTIONS(11035), 1, + anon_sym_GT2, + STATE(5434), 1, + aux_sym__multiple_types_repeat1, + STATE(6576), 1, + sym_comment, + [217328] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(11037), 1, + anon_sym_COLON, + ACTIONS(11039), 1, + anon_sym_GT2, + STATE(5435), 1, + aux_sym__multiple_types_repeat1, + STATE(6577), 1, + sym_comment, + [217347] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6578), 1, + sym_comment, + ACTIONS(8042), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8044), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [217362] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6579), 1, + sym_comment, + ACTIONS(8158), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8160), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [217377] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(10271), 1, + anon_sym_LBRACK, + ACTIONS(11041), 1, + anon_sym_RBRACK, + STATE(3560), 1, + aux_sym__multiple_types_repeat1, + STATE(6580), 1, + sym_comment, + [217396] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6581), 1, + sym_comment, + ACTIONS(8172), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8174), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [217411] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6582), 1, + sym_comment, + ACTIONS(6522), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [217424] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10321), 1, + anon_sym_LBRACK, + ACTIONS(10323), 1, + anon_sym_LPAREN, + STATE(3260), 1, + sym_parameter_parens, + STATE(3261), 1, + sym_parameter_bracks, + STATE(6583), 1, + sym_comment, + [217443] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6584), 1, + sym_comment, + ACTIONS(6524), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [217456] = 3, + ACTIONS(247), 1, + anon_sym_POUND, STATE(6585), 1, sym_comment, - STATE(6586), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10307), 2, - sym__escaped_str_content, - sym_escape_sequence, - [219128] = 5, - ACTIONS(3), 1, + ACTIONS(11043), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [217469] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10944), 1, - anon_sym_DQUOTE, - STATE(6302), 1, - aux_sym__str_double_quotes_repeat1, STATE(6586), 1, sym_comment, - ACTIONS(10307), 2, - sym__escaped_str_content, - sym_escape_sequence, - [219145] = 5, + ACTIONS(11043), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [217482] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10946), 1, - anon_sym_DQUOTE, STATE(6587), 1, sym_comment, - STATE(6588), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10307), 2, - sym__escaped_str_content, - sym_escape_sequence, - [219162] = 5, + ACTIONS(8322), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8324), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [217497] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10948), 1, - anon_sym_DQUOTE, - STATE(6302), 1, - aux_sym__str_double_quotes_repeat1, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(10271), 1, + anon_sym_LBRACK, + ACTIONS(11045), 1, + anon_sym_RBRACK, + STATE(3560), 1, + aux_sym__multiple_types_repeat1, STATE(6588), 1, sym_comment, - ACTIONS(10307), 2, - sym__escaped_str_content, - sym_escape_sequence, - [219179] = 5, - ACTIONS(3), 1, + [217516] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10950), 1, - anon_sym_DQUOTE, STATE(6589), 1, sym_comment, - STATE(6590), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10307), 2, - sym__escaped_str_content, - sym_escape_sequence, - [219196] = 5, - ACTIONS(3), 1, + ACTIONS(11047), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [217529] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10952), 1, - anon_sym_DQUOTE, - STATE(6302), 1, - aux_sym__str_double_quotes_repeat1, STATE(6590), 1, sym_comment, - ACTIONS(10307), 2, - sym__escaped_str_content, - sym_escape_sequence, - [219213] = 3, - ACTIONS(251), 1, + ACTIONS(11047), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [217542] = 5, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(1766), 1, + aux_sym_unquoted_token2, + ACTIONS(11049), 1, + aux_sym__immediate_decimal_token2, STATE(6591), 1, sym_comment, - ACTIONS(10954), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [219226] = 6, - ACTIONS(251), 1, + ACTIONS(1768), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [217559] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10311), 1, - anon_sym_LBRACK, - ACTIONS(10313), 1, - anon_sym_LPAREN, - STATE(3235), 1, - sym_parameter_bracks, - STATE(3263), 1, - sym_parameter_parens, STATE(6592), 1, sym_comment, - [219245] = 6, + ACTIONS(8252), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8254), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [217574] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(10956), 1, + ACTIONS(11051), 1, anon_sym_COLON, - ACTIONS(10958), 1, + ACTIONS(11053), 1, anon_sym_GT2, - STATE(5487), 1, + STATE(5529), 1, aux_sym__multiple_types_repeat1, STATE(6593), 1, sym_comment, - [219264] = 6, + [217593] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(10960), 1, + ACTIONS(11055), 1, anon_sym_COLON, - ACTIONS(10962), 1, + ACTIONS(11057), 1, anon_sym_GT2, - STATE(5492), 1, + STATE(5532), 1, aux_sym__multiple_types_repeat1, STATE(6594), 1, sym_comment, - [219283] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(10321), 1, - anon_sym_DOT_DOT2, - ACTIONS(10964), 1, - anon_sym_LBRACE, - STATE(6595), 1, - sym_comment, - ACTIONS(10323), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [219300] = 6, + [217612] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(10966), 1, + ACTIONS(11059), 1, anon_sym_COLON, - ACTIONS(10968), 1, + ACTIONS(11061), 1, anon_sym_GT2, - STATE(5493), 1, + STATE(5533), 1, aux_sym__multiple_types_repeat1, - STATE(6596), 1, + STATE(6595), 1, sym_comment, - [219319] = 6, + [217631] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(10970), 1, + ACTIONS(11063), 1, anon_sym_COLON, - ACTIONS(10972), 1, + ACTIONS(11065), 1, anon_sym_GT2, - STATE(5498), 1, + STATE(5534), 1, aux_sym__multiple_types_repeat1, - STATE(6597), 1, + STATE(6596), 1, sym_comment, - [219338] = 3, - ACTIONS(251), 1, + [217650] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6598), 1, + STATE(6597), 1, sym_comment, - ACTIONS(10974), 4, + ACTIONS(11067), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [219351] = 6, + [217663] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(10315), 1, - anon_sym_LBRACK, - ACTIONS(10976), 1, - anon_sym_RBRACK, - STATE(3570), 1, + ACTIONS(10083), 1, + anon_sym_AT, + STATE(5659), 1, aux_sym__multiple_types_repeat1, - STATE(6599), 1, + STATE(6598), 1, sym_comment, - [219370] = 6, + STATE(7369), 1, + sym_param_cmd, + [217682] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(10315), 1, - anon_sym_LBRACK, - ACTIONS(10978), 1, - anon_sym_RBRACK, - STATE(3570), 1, + ACTIONS(10083), 1, + anon_sym_AT, + STATE(5673), 1, aux_sym__multiple_types_repeat1, - STATE(6600), 1, + STATE(6599), 1, sym_comment, - [219389] = 6, + STATE(7372), 1, + sym_param_cmd, + [217701] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + STATE(6600), 1, + sym_comment, + ACTIONS(8080), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(10315), 1, - anon_sym_LBRACK, - ACTIONS(10980), 1, + ACTIONS(8082), 2, anon_sym_RBRACK, - STATE(3570), 1, - aux_sym__multiple_types_repeat1, + anon_sym_GT2, + [217716] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(583), 1, + ts_builtin_sym_end, + STATE(306), 1, + aux_sym__block_body_repeat1, STATE(6601), 1, sym_comment, - [219408] = 6, + ACTIONS(25), 2, + sym__newline, + anon_sym_SEMI, + [217733] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1540), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2224), 1, - anon_sym_RBRACK, - ACTIONS(2226), 1, - anon_sym_LPAREN2, - ACTIONS(2228), 1, - sym__entry_separator, STATE(6602), 1, sym_comment, - [219427] = 4, - ACTIONS(251), 1, + ACTIONS(8102), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8104), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [217748] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1483), 1, - anon_sym_RPAREN, - ACTIONS(10982), 2, - sym__newline, - anon_sym_SEMI, - STATE(6603), 2, + ACTIONS(6993), 1, + anon_sym_DOLLAR, + ACTIONS(8788), 1, + sym_identifier, + STATE(5653), 1, + sym_val_variable, + STATE(6603), 1, sym_comment, - aux_sym__block_body_repeat1, - [219442] = 6, + STATE(7495), 1, + sym__variable_name, + [217767] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5555), 1, - anon_sym_LPAREN2, - ACTIONS(5920), 1, - anon_sym_RBRACK, - ACTIONS(5926), 1, - sym__entry_separator, STATE(6604), 1, sym_comment, - STATE(7359), 1, - sym__expr_parenthesized_immediate, - [219461] = 5, - ACTIONS(251), 1, + ACTIONS(8106), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8108), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [217782] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(955), 1, - sym__table_head_separator, - ACTIONS(10985), 1, - anon_sym_DOT2, - STATE(7405), 1, - sym_path, - STATE(6605), 2, + STATE(6605), 1, sym_comment, - aux_sym_cell_path_repeat1, - [219478] = 5, - ACTIONS(251), 1, + ACTIONS(8130), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8132), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [217797] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1822), 1, - aux_sym_unquoted_token2, - ACTIONS(10988), 1, - anon_sym_DOT_DOT2, STATE(6606), 1, sym_comment, - ACTIONS(10990), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [219495] = 6, - ACTIONS(251), 1, + ACTIONS(8162), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8164), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [217812] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10311), 1, - anon_sym_LBRACK, - ACTIONS(10313), 1, - anon_sym_LPAREN, - STATE(3246), 1, - sym_parameter_parens, - STATE(3247), 1, - sym_parameter_bracks, + ACTIONS(1701), 1, + aux_sym_unquoted_token2, STATE(6607), 1, sym_comment, - [219514] = 6, - ACTIONS(251), 1, + ACTIONS(1703), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [217827] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10311), 1, - anon_sym_LBRACK, - ACTIONS(10313), 1, - anon_sym_LPAREN, - STATE(3243), 1, - sym_parameter_parens, - STATE(3252), 1, - sym_parameter_bracks, STATE(6608), 1, sym_comment, - [219533] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(8374), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(10315), 1, - anon_sym_LBRACK, - ACTIONS(10992), 1, + ACTIONS(8376), 2, anon_sym_RBRACK, - STATE(3570), 1, - aux_sym__multiple_types_repeat1, + anon_sym_GT2, + [217842] = 4, + ACTIONS(3), 1, + anon_sym_POUND, STATE(6609), 1, sym_comment, - [219552] = 6, - ACTIONS(251), 1, + ACTIONS(8200), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8202), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [217857] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10311), 1, - anon_sym_LBRACK, - ACTIONS(10313), 1, - anon_sym_LPAREN, - STATE(3237), 1, - sym_parameter_parens, - STATE(3238), 1, - sym_parameter_bracks, STATE(6610), 1, sym_comment, - [219571] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(10994), 1, - anon_sym_RBRACK, - STATE(5183), 1, - aux_sym_parameter_repeat2, - STATE(6611), 1, - sym_comment, - ACTIONS(2558), 2, + ACTIONS(11069), 4, sym__newline, - anon_sym_COMMA, - [219588] = 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [217870] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2234), 1, + STATE(6611), 1, + sym_comment, + ACTIONS(8404), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(10996), 1, - anon_sym_LBRACK2, + ACTIONS(8406), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [217885] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1693), 1, + aux_sym_unquoted_token2, STATE(6612), 1, sym_comment, - ACTIONS(2230), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [219605] = 6, - ACTIONS(3), 1, + ACTIONS(1695), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [217900] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2172), 1, - anon_sym_RBRACK, - ACTIONS(2174), 1, - anon_sym_LPAREN2, - ACTIONS(2176), 1, - sym__entry_separator, - ACTIONS(2178), 1, - aux_sym__unquoted_in_list_token2, + ACTIONS(998), 1, + anon_sym_LBRACE, + ACTIONS(10381), 1, + anon_sym_DOT_DOT2, STATE(6613), 1, sym_comment, - [219624] = 3, + ACTIONS(10383), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [217917] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(6614), 1, sym_comment, - ACTIONS(996), 4, - anon_sym_RBRACK, + ACTIONS(8048), 2, + anon_sym_AT, sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [219637] = 6, - ACTIONS(251), 1, + ACTIONS(8050), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [217932] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10311), 1, - anon_sym_LBRACK, - ACTIONS(10313), 1, - anon_sym_LPAREN, - STATE(3245), 1, - sym_parameter_parens, - STATE(3251), 1, - sym_parameter_bracks, STATE(6615), 1, sym_comment, - [219656] = 3, - ACTIONS(251), 1, + ACTIONS(8068), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8070), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [217947] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(6616), 1, sym_comment, - ACTIONS(10998), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [219669] = 3, - ACTIONS(251), 1, + ACTIONS(8184), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8186), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [217962] = 4, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(1766), 1, + aux_sym_unquoted_token2, STATE(6617), 1, sym_comment, - ACTIONS(11000), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [219682] = 3, - ACTIONS(251), 1, + ACTIONS(1768), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [217977] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(6618), 1, sym_comment, - ACTIONS(11002), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [219695] = 3, - ACTIONS(251), 1, + ACTIONS(8052), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8054), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [217992] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(6619), 1, sym_comment, - ACTIONS(11004), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [219708] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(10441), 1, - anon_sym_LBRACK, - ACTIONS(10443), 1, - anon_sym_LPAREN, - STATE(6012), 1, - sym_parameter_parens, - STATE(6014), 1, - sym_parameter_bracks, - STATE(6620), 1, - sym_comment, - [219727] = 4, + ACTIONS(8126), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8128), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [218007] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6621), 1, + STATE(6620), 1, sym_comment, - ACTIONS(7991), 2, + ACTIONS(8146), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(7995), 2, + ACTIONS(8148), 2, anon_sym_RBRACK, anon_sym_GT2, - [219742] = 6, + [218022] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(11006), 1, + ACTIONS(11071), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6622), 1, + STATE(6621), 1, sym_comment, - [219761] = 6, + [218041] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11008), 1, - anon_sym_COLON, - ACTIONS(11010), 1, - anon_sym_GT2, - STATE(5509), 1, + ACTIONS(10271), 1, + anon_sym_LBRACK, + ACTIONS(11073), 1, + anon_sym_RBRACK, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6623), 1, + STATE(6622), 1, sym_comment, - [219780] = 6, + [218060] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + STATE(6623), 1, + sym_comment, + ACTIONS(8248), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(11012), 1, - anon_sym_COLON, - ACTIONS(11014), 1, + ACTIONS(8250), 2, + anon_sym_RBRACK, anon_sym_GT2, - STATE(5510), 1, + [218075] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(10271), 1, + anon_sym_LBRACK, + ACTIONS(11075), 1, + anon_sym_RBRACK, + STATE(3560), 1, aux_sym__multiple_types_repeat1, STATE(6624), 1, sym_comment, - [219799] = 6, + [218094] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(11016), 1, + ACTIONS(11077), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, STATE(6625), 1, sym_comment, - [219818] = 5, - ACTIONS(251), 1, + [218113] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1755), 1, - aux_sym_unquoted_token2, - ACTIONS(10191), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(10271), 1, + anon_sym_LBRACK, + ACTIONS(11079), 1, + anon_sym_RBRACK, + STATE(3560), 1, + aux_sym__multiple_types_repeat1, STATE(6626), 1, sym_comment, - ACTIONS(1757), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [219835] = 3, - ACTIONS(251), 1, + [218132] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(10271), 1, + anon_sym_LBRACK, + ACTIONS(11081), 1, + anon_sym_RBRACK, + STATE(3560), 1, + aux_sym__multiple_types_repeat1, STATE(6627), 1, sym_comment, - ACTIONS(11018), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [219848] = 3, - ACTIONS(251), 1, + [218151] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(10271), 1, + anon_sym_LBRACK, + ACTIONS(11083), 1, + anon_sym_RBRACK, + STATE(3560), 1, + aux_sym__multiple_types_repeat1, STATE(6628), 1, sym_comment, - ACTIONS(11020), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [219861] = 3, - ACTIONS(251), 1, + [218170] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(6629), 1, sym_comment, - ACTIONS(11022), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [219874] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(8338), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(10315), 1, - anon_sym_LBRACK, - ACTIONS(11024), 1, + ACTIONS(8340), 2, anon_sym_RBRACK, - STATE(3570), 1, - aux_sym__multiple_types_repeat1, + anon_sym_GT2, + [218185] = 3, + ACTIONS(247), 1, + anon_sym_POUND, STATE(6630), 1, sym_comment, - [219893] = 3, - ACTIONS(251), 1, + ACTIONS(11085), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [218198] = 4, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(1792), 1, + aux_sym_unquoted_token2, STATE(6631), 1, sym_comment, - ACTIONS(11026), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [219906] = 6, + ACTIONS(1794), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [218213] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(10315), 1, - anon_sym_LBRACK, - ACTIONS(11028), 1, - anon_sym_RBRACK, - STATE(3570), 1, - aux_sym__multiple_types_repeat1, STATE(6632), 1, sym_comment, - [219925] = 5, - ACTIONS(251), 1, + ACTIONS(8342), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8344), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [218228] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1783), 1, - aux_sym_unquoted_token2, - ACTIONS(11030), 1, - aux_sym__immediate_decimal_token2, STATE(6633), 1, sym_comment, - ACTIONS(1785), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [219942] = 4, - ACTIONS(251), 1, + ACTIONS(8368), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8370), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [218243] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7078), 1, - aux_sym_unquoted_token2, STATE(6634), 1, sym_comment, - ACTIONS(1650), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [219957] = 3, - ACTIONS(251), 1, + ACTIONS(8086), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8088), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [218258] = 4, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(1826), 1, + aux_sym_unquoted_token2, STATE(6635), 1, sym_comment, - ACTIONS(11032), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [219970] = 6, - ACTIONS(251), 1, + ACTIONS(2166), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [218273] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1711), 1, - aux_sym_unquoted_token2, - ACTIONS(1713), 1, - anon_sym_LBRACE, - ACTIONS(11034), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11036), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(10271), 1, + anon_sym_LBRACK, + ACTIONS(11087), 1, + anon_sym_RBRACK, + STATE(3560), 1, + aux_sym__multiple_types_repeat1, STATE(6636), 1, sym_comment, - [219989] = 3, - ACTIONS(251), 1, + [218292] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(6637), 1, sym_comment, - ACTIONS(11038), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [220002] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5555), 1, - anon_sym_LPAREN2, - ACTIONS(11040), 1, - anon_sym_RBRACK, - ACTIONS(11042), 1, + ACTIONS(8204), 2, + anon_sym_AT, sym__entry_separator, + ACTIONS(8206), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [218307] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1826), 1, + aux_sym_unquoted_token2, STATE(6638), 1, sym_comment, - STATE(7514), 1, - sym__expr_parenthesized_immediate, - [220021] = 3, - ACTIONS(251), 1, + ACTIONS(1824), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [218322] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(6639), 1, sym_comment, - ACTIONS(11044), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [220034] = 6, + ACTIONS(8226), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8228), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [218337] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1814), 1, - anon_sym_LPAREN2, - ACTIONS(1822), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2220), 1, - anon_sym_RBRACK, - ACTIONS(2222), 1, - sym__entry_separator, STATE(6640), 1, sym_comment, - [220053] = 6, - ACTIONS(3), 1, + ACTIONS(8230), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8232), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [218352] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1812), 1, + ACTIONS(11089), 1, anon_sym_RBRACK, - ACTIONS(1814), 1, - anon_sym_LPAREN2, - ACTIONS(1820), 1, - sym__entry_separator, - ACTIONS(1822), 1, - aux_sym__unquoted_in_list_token2, + STATE(5153), 1, + aux_sym_parameter_repeat2, STATE(6641), 1, sym_comment, - [220072] = 6, + ACTIONS(2632), 2, + sym__newline, + anon_sym_COMMA, + [218369] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5555), 1, - anon_sym_LPAREN2, - ACTIONS(11046), 1, - anon_sym_RBRACK, - ACTIONS(11048), 1, - sym__entry_separator, STATE(6642), 1, sym_comment, - STATE(7514), 1, - sym__expr_parenthesized_immediate, - [220091] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1640), 1, - anon_sym_LPAREN2, - ACTIONS(2007), 1, - anon_sym_RBRACE, - ACTIONS(2013), 1, + ACTIONS(8350), 2, + anon_sym_AT, sym__entry_separator, - STATE(6643), 1, - sym_comment, - STATE(7371), 1, - sym__expr_parenthesized_immediate, - [220110] = 6, + ACTIONS(8352), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [218384] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(11050), 1, + ACTIONS(11091), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, + STATE(6643), 1, + sym_comment, + [218403] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10029), 1, + anon_sym_RPAREN, + STATE(6277), 1, + aux_sym__block_body_repeat1, STATE(6644), 1, sym_comment, - [220129] = 6, + ACTIONS(10409), 2, + sym__newline, + anon_sym_SEMI, + [218420] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(10315), 1, - anon_sym_LBRACK, - ACTIONS(11052), 1, - anon_sym_RBRACK, - STATE(3570), 1, - aux_sym__multiple_types_repeat1, STATE(6645), 1, sym_comment, - [220148] = 6, + ACTIONS(8098), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8100), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [218435] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(11054), 1, + ACTIONS(11093), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, STATE(6646), 1, sym_comment, - [220167] = 6, - ACTIONS(3), 1, + [218454] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(10315), 1, - anon_sym_LBRACK, - ACTIONS(11056), 1, - anon_sym_RBRACK, - STATE(3570), 1, - aux_sym__multiple_types_repeat1, STATE(6647), 1, sym_comment, - [220186] = 6, - ACTIONS(3), 1, + ACTIONS(6514), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [218467] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(10315), 1, - anon_sym_LBRACK, - ACTIONS(11058), 1, - anon_sym_RBRACK, - STATE(3570), 1, - aux_sym__multiple_types_repeat1, STATE(6648), 1, sym_comment, - [220205] = 6, + ACTIONS(11095), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [218480] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(10315), 1, - anon_sym_LBRACK, - ACTIONS(11060), 1, - anon_sym_RBRACK, - STATE(3570), 1, - aux_sym__multiple_types_repeat1, STATE(6649), 1, sym_comment, - [220224] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(8118), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(10315), 1, - anon_sym_LBRACK, - ACTIONS(11062), 1, + ACTIONS(8120), 2, anon_sym_RBRACK, - STATE(3570), 1, - aux_sym__multiple_types_repeat1, - STATE(6650), 1, - sym_comment, - [220243] = 6, + anon_sym_GT2, + [218495] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + STATE(6650), 1, + sym_comment, + ACTIONS(8326), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(10315), 1, - anon_sym_LBRACK, - ACTIONS(11064), 1, + ACTIONS(8328), 2, anon_sym_RBRACK, - STATE(3570), 1, - aux_sym__multiple_types_repeat1, + anon_sym_GT2, + [218510] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2036), 1, + anon_sym_LBRACE, + ACTIONS(11097), 1, + anon_sym_DOT_DOT2, STATE(6651), 1, sym_comment, - [220262] = 6, - ACTIONS(3), 1, + ACTIONS(11099), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [218527] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(10315), 1, - anon_sym_LBRACK, - ACTIONS(11066), 1, - anon_sym_RBRACK, - STATE(3570), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(1983), 1, + anon_sym_LBRACE, + ACTIONS(11101), 1, + anon_sym_DOT_DOT2, STATE(6652), 1, sym_comment, - [220281] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6653), 1, - sym_comment, - ACTIONS(11068), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [220294] = 5, - ACTIONS(251), 1, + ACTIONS(11103), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [218544] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1012), 1, + ACTIONS(1991), 1, anon_sym_LBRACE, - ACTIONS(10321), 1, + ACTIONS(11105), 1, anon_sym_DOT_DOT2, - STATE(6654), 1, + STATE(6653), 1, sym_comment, - ACTIONS(10323), 2, + ACTIONS(11107), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [220311] = 3, - ACTIONS(251), 1, + [218561] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6654), 1, + sym_comment, + ACTIONS(8332), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8334), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [218576] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6655), 1, sym_comment, - ACTIONS(6422), 4, + ACTIONS(6516), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACE, - [220324] = 3, - ACTIONS(251), 1, + [218589] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6656), 1, sym_comment, - ACTIONS(6416), 4, - ts_builtin_sym_end, + ACTIONS(11009), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [220337] = 3, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [218602] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6657), 1, sym_comment, - ACTIONS(11070), 4, + ACTIONS(11009), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [220350] = 3, - ACTIONS(251), 1, + [218615] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(6658), 1, sym_comment, - ACTIONS(11070), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [220363] = 3, - ACTIONS(251), 1, + ACTIONS(8354), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8356), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [218630] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(6659), 1, sym_comment, - ACTIONS(11072), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [220376] = 3, - ACTIONS(251), 1, + ACTIONS(8386), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8388), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [218645] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2069), 1, + anon_sym_PIPE, + ACTIONS(2071), 1, + aux_sym_unquoted_token4, STATE(6660), 1, sym_comment, - ACTIONS(11072), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [220389] = 3, - ACTIONS(251), 1, + ACTIONS(2065), 2, + anon_sym_if, + anon_sym_EQ_GT, + [218662] = 6, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(1616), 1, + anon_sym_SEMI, + ACTIONS(3842), 1, + sym__newline, + STATE(304), 1, + aux_sym__parenthesized_body_repeat1, STATE(6661), 1, sym_comment, - ACTIONS(11074), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [220402] = 6, + STATE(6958), 1, + aux_sym_shebang_repeat1, + [218681] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5555), 1, - anon_sym_LPAREN2, - ACTIONS(11076), 1, - anon_sym_RBRACK, - ACTIONS(11078), 1, + ACTIONS(998), 1, sym__entry_separator, + ACTIONS(1002), 1, + anon_sym_RBRACE, + ACTIONS(2061), 1, + anon_sym_LPAREN2, + ACTIONS(2063), 1, + aux_sym__unquoted_in_record_token4, STATE(6662), 1, sym_comment, - STATE(7514), 1, - sym__expr_parenthesized_immediate, - [220421] = 5, - ACTIONS(251), 1, + [218700] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1488), 1, - ts_builtin_sym_end, - STATE(250), 1, - aux_sym__block_body_repeat1, STATE(6663), 1, sym_comment, - ACTIONS(25), 2, - sym__newline, - anon_sym_SEMI, - [220438] = 3, - ACTIONS(251), 1, + ACTIONS(8298), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8300), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [218715] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6664), 1, sym_comment, - ACTIONS(11080), 4, + ACTIONS(11109), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [220451] = 3, - ACTIONS(251), 1, + [218728] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6665), 1, sym_comment, - ACTIONS(11082), 4, + ACTIONS(11111), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [220464] = 3, - ACTIONS(251), 1, + [218741] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(6666), 1, sym_comment, - ACTIONS(11084), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1701), 2, anon_sym_RBRACE, - [220477] = 6, - ACTIONS(251), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(1703), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [218756] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10311), 1, - anon_sym_LBRACK, - ACTIONS(10313), 1, - anon_sym_LPAREN, - STATE(3255), 1, - sym_parameter_parens, - STATE(3259), 1, - sym_parameter_bracks, STATE(6667), 1, sym_comment, - [220496] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6668), 1, - sym_comment, - ACTIONS(11086), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [220509] = 4, + ACTIONS(8304), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8306), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [218771] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6669), 1, + STATE(6668), 1, sym_comment, - ACTIONS(1711), 2, + ACTIONS(1701), 2, anon_sym_RBRACK, aux_sym__unquoted_in_list_token2, - ACTIONS(1713), 2, + ACTIONS(1703), 2, anon_sym_LPAREN2, sym__entry_separator, - [220524] = 5, - ACTIONS(251), 1, + [218786] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11088), 1, - anon_sym_RPAREN, - STATE(6603), 1, - aux_sym__block_body_repeat1, - STATE(6670), 1, + STATE(6669), 1, sym_comment, - ACTIONS(10293), 2, - sym__newline, - anon_sym_SEMI, - [220541] = 4, + ACTIONS(8314), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8316), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [218801] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6671), 1, + STATE(6670), 1, sym_comment, - ACTIONS(2148), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token4, - ACTIONS(2150), 2, - anon_sym_LPAREN2, + ACTIONS(8346), 2, + anon_sym_AT, sym__entry_separator, - [220556] = 3, - ACTIONS(251), 1, + ACTIONS(8348), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [218816] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6672), 1, + STATE(6671), 1, sym_comment, - ACTIONS(11090), 4, + ACTIONS(11113), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [220569] = 5, - ACTIONS(251), 1, + [218829] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6672), 1, + sym_comment, + ACTIONS(8056), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8058), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [218844] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2025), 1, - anon_sym_LBRACE, - ACTIONS(11092), 1, - anon_sym_DOT_DOT2, STATE(6673), 1, sym_comment, - ACTIONS(11094), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [220586] = 5, - ACTIONS(251), 1, + ACTIONS(1693), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1695), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [218859] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2033), 1, - anon_sym_LBRACE, - ACTIONS(11096), 1, - anon_sym_DOT_DOT2, STATE(6674), 1, sym_comment, - ACTIONS(11098), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [220603] = 5, - ACTIONS(251), 1, + ACTIONS(2085), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token4, + ACTIONS(2087), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [218874] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2041), 1, - anon_sym_LBRACE, - ACTIONS(11100), 1, - anon_sym_DOT_DOT2, STATE(6675), 1, sym_comment, - ACTIONS(11102), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [220620] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6551), 1, - anon_sym_DOLLAR, - ACTIONS(8744), 1, + ACTIONS(11115), 4, sym_identifier, - STATE(5696), 1, - sym_val_variable, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [218887] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11117), 1, + anon_sym_DQUOTE, STATE(6676), 1, sym_comment, - STATE(7501), 1, - sym__variable_name, - [220639] = 5, + STATE(6696), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10301), 2, + sym__escaped_str_content, + sym_escape_sequence, + [218904] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2208), 1, - aux_sym_unquoted_token4, - ACTIONS(5935), 1, + ACTIONS(2077), 1, anon_sym_PIPE, + ACTIONS(2079), 1, + aux_sym_unquoted_token4, STATE(6677), 1, sym_comment, - ACTIONS(5930), 2, + ACTIONS(2073), 2, anon_sym_if, anon_sym_EQ_GT, - [220656] = 4, - ACTIONS(251), 1, + [218921] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4994), 1, - anon_sym_DASH2, + ACTIONS(2079), 1, + aux_sym_unquoted_token4, + ACTIONS(2083), 1, + anon_sym_PIPE, STATE(6678), 1, sym_comment, - ACTIONS(4992), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [220671] = 6, + ACTIONS(2081), 2, + anon_sym_if, + anon_sym_EQ_GT, + [218938] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1802), 1, + STATE(6679), 1, + sym_comment, + ACTIONS(2085), 2, anon_sym_RBRACK, - ACTIONS(1804), 1, + aux_sym__unquoted_in_list_token4, + ACTIONS(2087), 2, anon_sym_LPAREN2, - ACTIONS(1810), 1, sym__entry_separator, - STATE(6679), 1, - sym_comment, - [220690] = 6, + [218953] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4860), 1, - sym__space, - ACTIONS(4862), 1, - sym__newline, - ACTIONS(11104), 1, - sym_long_flag_identifier, - ACTIONS(11106), 1, - anon_sym_EQ2, STATE(6680), 1, sym_comment, - [220709] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(11108), 1, - anon_sym_COLON, - ACTIONS(11110), 1, - anon_sym_GT2, - STATE(5446), 1, - aux_sym__multiple_types_repeat1, - STATE(6681), 1, - sym_comment, - [220728] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(11112), 1, - anon_sym_COLON, - ACTIONS(11114), 1, - anon_sym_GT2, - STATE(5477), 1, - aux_sym__multiple_types_repeat1, - STATE(6682), 1, - sym_comment, - [220747] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6683), 1, - sym_comment, - ACTIONS(11116), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1766), 2, anon_sym_RBRACE, - [220760] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3500), 1, - anon_sym_COLON2, - ACTIONS(11118), 2, - sym__newline, - sym__space, - STATE(6684), 2, - sym_comment, - aux_sym_ctrl_do_parenthesized_repeat2, - [220775] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5555), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(1768), 2, anon_sym_LPAREN2, - ACTIONS(11121), 1, - anon_sym_RBRACK, - ACTIONS(11123), 1, sym__entry_separator, - STATE(6685), 1, - sym_comment, - STATE(7514), 1, - sym__expr_parenthesized_immediate, - [220794] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11125), 1, - anon_sym_DQUOTE, - STATE(6454), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6686), 1, - sym_comment, - ACTIONS(10307), 2, - sym__escaped_str_content, - sym_escape_sequence, - [220811] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4962), 1, - anon_sym_DASH2, - STATE(6687), 1, - sym_comment, - ACTIONS(4960), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [220826] = 5, + [218968] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7592), 1, + ACTIONS(7619), 1, anon_sym_COLON2, - STATE(6184), 1, + STATE(6199), 1, aux_sym_ctrl_do_parenthesized_repeat2, - STATE(6688), 1, + STATE(6681), 1, sym_comment, - ACTIONS(7586), 2, + ACTIONS(7613), 2, sym__newline, sym__space, - [220843] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6689), 1, - sym_comment, - ACTIONS(11127), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [220856] = 6, + [218985] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(11129), 1, - anon_sym_COLON, - ACTIONS(11131), 1, - anon_sym_GT2, - STATE(5592), 1, - aux_sym__multiple_types_repeat1, - STATE(6690), 1, + STATE(6682), 1, sym_comment, - [220875] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(1792), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1794), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(11133), 1, - anon_sym_COLON, - ACTIONS(11135), 1, - anon_sym_GT2, - STATE(5461), 1, - aux_sym__multiple_types_repeat1, - STATE(6691), 1, - sym_comment, - [220894] = 5, - ACTIONS(3), 1, + [219000] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11137), 1, - anon_sym_DQUOTE, - STATE(6472), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6692), 1, + STATE(6683), 1, sym_comment, - ACTIONS(10307), 2, - sym__escaped_str_content, - sym_escape_sequence, - [220911] = 6, - ACTIONS(251), 1, + ACTIONS(10317), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [219013] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(6284), 1, + ACTIONS(6313), 1, anon_sym_LBRACE, - STATE(5087), 1, + STATE(5107), 1, sym_block, - STATE(6693), 1, + STATE(6684), 1, sym_comment, - STATE(6694), 1, + STATE(6685), 1, aux_sym_shebang_repeat1, - [220930] = 6, - ACTIONS(251), 1, + [219032] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(6284), 1, + ACTIONS(6313), 1, anon_sym_LBRACE, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(5089), 1, + STATE(5109), 1, sym_block, - STATE(6694), 1, + STATE(6685), 1, sym_comment, - [220949] = 6, - ACTIONS(251), 1, + [219051] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(6284), 1, + ACTIONS(6313), 1, anon_sym_LBRACE, - STATE(5090), 1, + STATE(5110), 1, sym_block, - STATE(6695), 1, + STATE(6686), 1, sym_comment, - STATE(6696), 1, + STATE(6687), 1, aux_sym_shebang_repeat1, - [220968] = 6, - ACTIONS(251), 1, + [219070] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(6284), 1, + ACTIONS(6313), 1, anon_sym_LBRACE, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(5094), 1, + STATE(5114), 1, sym_block, - STATE(6696), 1, + STATE(6687), 1, sym_comment, - [220987] = 6, - ACTIONS(251), 1, + [219089] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(10299), 1, + ACTIONS(10457), 1, anon_sym_LBRACK, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(6697), 1, + STATE(6688), 1, sym_comment, - STATE(7835), 1, + STATE(7837), 1, sym_val_list, - [221006] = 3, - ACTIONS(251), 1, + [219108] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6698), 1, + ACTIONS(1457), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1806), 1, + anon_sym_RBRACK, + ACTIONS(1808), 1, + anon_sym_LPAREN2, + ACTIONS(1814), 1, + sym__entry_separator, + STATE(6689), 1, sym_comment, - ACTIONS(11139), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [221019] = 3, - ACTIONS(251), 1, + [219127] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6699), 1, + ACTIONS(5058), 1, + anon_sym_DASH2, + STATE(6690), 1, + sym_comment, + ACTIONS(5056), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [219142] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(998), 1, + sym__entry_separator, + ACTIONS(1002), 1, + anon_sym_RBRACK, + ACTIONS(2061), 1, + anon_sym_LPAREN2, + ACTIONS(2063), 1, + aux_sym__unquoted_in_list_token4, + STATE(6691), 1, sym_comment, - ACTIONS(11141), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [221032] = 6, - ACTIONS(251), 1, + [219161] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(6284), 1, + ACTIONS(6313), 1, anon_sym_LBRACE, - STATE(4930), 1, + STATE(4866), 1, sym_block, - STATE(6700), 1, + STATE(6692), 1, sym_comment, - STATE(6701), 1, + STATE(6693), 1, aux_sym_shebang_repeat1, - [221051] = 6, - ACTIONS(251), 1, + [219180] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(6284), 1, + ACTIONS(6313), 1, anon_sym_LBRACE, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(4932), 1, + STATE(4868), 1, sym_block, - STATE(6701), 1, + STATE(6693), 1, sym_comment, - [221070] = 6, - ACTIONS(251), 1, + [219199] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(6284), 1, + ACTIONS(6313), 1, anon_sym_LBRACE, - STATE(4933), 1, + STATE(4869), 1, sym_block, - STATE(6702), 1, + STATE(6694), 1, sym_comment, - STATE(6703), 1, + STATE(6695), 1, aux_sym_shebang_repeat1, - [221089] = 6, - ACTIONS(251), 1, + [219218] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(6284), 1, + ACTIONS(6313), 1, anon_sym_LBRACE, - STATE(1800), 1, + STATE(1615), 1, aux_sym_shebang_repeat1, - STATE(4937), 1, + STATE(4873), 1, sym_block, - STATE(6703), 1, + STATE(6695), 1, sym_comment, - [221108] = 6, - ACTIONS(251), 1, + [219237] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(6284), 1, - anon_sym_LBRACE, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4628), 1, - sym_block, - STATE(6704), 1, + ACTIONS(11119), 1, + anon_sym_DQUOTE, + STATE(6345), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6696), 1, sym_comment, - [221127] = 4, - ACTIONS(251), 1, + ACTIONS(10301), 2, + sym__escaped_str_content, + sym_escape_sequence, + [219254] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1822), 1, - aux_sym_unquoted_token2, - STATE(6705), 1, - sym_comment, - ACTIONS(2222), 3, + ACTIONS(2063), 1, + aux_sym_unquoted_token4, + ACTIONS(6004), 1, anon_sym_PIPE, + STATE(6697), 1, + sym_comment, + ACTIONS(5999), 2, anon_sym_if, anon_sym_EQ_GT, - [221142] = 6, - ACTIONS(251), 1, + [219271] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3842), 1, sym__newline, - ACTIONS(6284), 1, + ACTIONS(6313), 1, anon_sym_LBRACE, - STATE(4629), 1, + STATE(4627), 1, sym_block, - STATE(6173), 1, + STATE(6233), 1, aux_sym_shebang_repeat1, - STATE(6706), 1, - sym_comment, - [221161] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1822), 1, - aux_sym_unquoted_token2, - STATE(6707), 1, - sym_comment, - ACTIONS(1820), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [221176] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(1802), 1, - anon_sym_RBRACE, - ACTIONS(1804), 1, - anon_sym_LPAREN2, - ACTIONS(1810), 1, - sym__entry_separator, - STATE(6708), 1, + STATE(6698), 1, sym_comment, - [221195] = 6, - ACTIONS(251), 1, + [219290] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6551), 1, + ACTIONS(6993), 1, anon_sym_DOLLAR, - ACTIONS(8744), 1, + ACTIONS(8788), 1, sym_identifier, - STATE(5696), 1, + STATE(5653), 1, sym_val_variable, - STATE(6709), 1, + STATE(6699), 1, sym_comment, - STATE(7824), 1, + STATE(7812), 1, sym__variable_name, - [221214] = 6, + [219309] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, + ACTIONS(10271), 1, anon_sym_LBRACK, - ACTIONS(11143), 1, + ACTIONS(11121), 1, anon_sym_RBRACK, - STATE(3570), 1, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(6710), 1, + STATE(6700), 1, sym_comment, - [221233] = 5, + [219328] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11145), 1, + ACTIONS(11123), 1, anon_sym_RBRACK, - STATE(6601), 1, + STATE(6463), 1, aux_sym__multiple_types_repeat1, - STATE(6711), 1, + STATE(6701), 1, sym_comment, - [221249] = 5, + [219344] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6085), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(6121), 1, - anon_sym_RBRACE, - STATE(2994), 1, + ACTIONS(11125), 1, + anon_sym_RBRACK, + STATE(6227), 1, aux_sym__multiple_types_repeat1, - STATE(6712), 1, + STATE(6702), 1, sym_comment, - [221265] = 5, + [219360] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4181), 1, + ACTIONS(4452), 1, anon_sym_LPAREN2, - ACTIONS(4191), 1, + ACTIONS(4462), 1, aux_sym_unquoted_token4, - STATE(6713), 1, + STATE(6703), 1, sym_comment, - STATE(7378), 1, + STATE(7413), 1, sym__expr_parenthesized_immediate, - [221281] = 5, - ACTIONS(251), 1, + [219376] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11147), 1, - anon_sym_RBRACK, - ACTIONS(11149), 1, - sym_hex_digit, - STATE(6714), 1, + ACTIONS(11127), 1, + anon_sym_QMARK2, + STATE(6704), 1, sym_comment, - STATE(6793), 1, - aux_sym_val_binary_repeat1, - [221297] = 3, - ACTIONS(251), 1, + ACTIONS(952), 2, + sym__table_head_separator, + anon_sym_DOT2, + [219390] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6715), 1, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(11129), 1, + anon_sym_RBRACK, + STATE(6317), 1, + aux_sym__multiple_types_repeat1, + STATE(6705), 1, sym_comment, - ACTIONS(11082), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [221309] = 5, + [219406] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1640), 1, - anon_sym_LPAREN2, - ACTIONS(7274), 1, - aux_sym__unquoted_in_record_token4, - STATE(6716), 1, + ACTIONS(5903), 1, + sym__entry_separator, + ACTIONS(11131), 1, + anon_sym_RBRACK, + STATE(2815), 1, + aux_sym__multiple_types_repeat1, + STATE(6706), 1, sym_comment, - STATE(7327), 1, - sym__expr_parenthesized_immediate, - [221325] = 5, + [219422] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4861), 1, + anon_sym_LBRACE, + ACTIONS(11133), 1, + anon_sym_EQ2, + ACTIONS(11135), 1, + sym_short_flag_identifier, + STATE(6707), 1, + sym_comment, + [219438] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11151), 1, + ACTIONS(11137), 1, anon_sym_RBRACK, - STATE(6352), 1, + STATE(6318), 1, aux_sym__multiple_types_repeat1, - STATE(6717), 1, + STATE(6708), 1, sym_comment, - [221341] = 5, + [219454] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(10315), 1, - anon_sym_LBRACK, - STATE(3570), 1, + ACTIONS(11139), 1, + anon_sym_RBRACK, + STATE(6319), 1, aux_sym__multiple_types_repeat1, - STATE(6718), 1, + STATE(6709), 1, sym_comment, - [221357] = 5, + [219470] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11153), 1, + ACTIONS(11141), 1, anon_sym_RBRACK, - STATE(6353), 1, + STATE(6320), 1, aux_sym__multiple_types_repeat1, - STATE(6719), 1, + STATE(6710), 1, sym_comment, - [221373] = 5, + [219486] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6711), 1, + sym_comment, + ACTIONS(11047), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [219498] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11155), 1, + ACTIONS(11143), 1, anon_sym_RBRACK, - STATE(6354), 1, + STATE(6321), 1, aux_sym__multiple_types_repeat1, - STATE(6720), 1, + STATE(6712), 1, sym_comment, - [221389] = 5, + [219514] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(2443), 1, sym__entry_separator, - ACTIONS(11157), 1, + STATE(6713), 1, + sym_comment, + ACTIONS(2441), 2, anon_sym_RBRACK, - STATE(6355), 1, + anon_sym_RBRACE, + [219528] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(11145), 1, + anon_sym_RBRACK, + STATE(6322), 1, aux_sym__multiple_types_repeat1, - STATE(6721), 1, + STATE(6714), 1, sym_comment, - [221405] = 5, + [219544] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11159), 1, + ACTIONS(11147), 1, anon_sym_RBRACK, - STATE(6356), 1, + STATE(6323), 1, aux_sym__multiple_types_repeat1, - STATE(6722), 1, + STATE(6715), 1, + sym_comment, + [219560] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2087), 1, + anon_sym_PIPE, + STATE(6716), 1, sym_comment, - [221421] = 5, + ACTIONS(2085), 2, + anon_sym_EQ_GT, + aux_sym_unquoted_token4, + [219574] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(2230), 1, sym__entry_separator, - ACTIONS(11161), 1, - anon_sym_RBRACK, - STATE(6357), 1, + ACTIONS(11149), 1, + anon_sym_RBRACE, + STATE(630), 1, aux_sym__multiple_types_repeat1, - STATE(6723), 1, + STATE(6717), 1, sym_comment, - [221437] = 5, + [219590] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11163), 1, + ACTIONS(11151), 1, anon_sym_RBRACK, - STATE(6358), 1, + STATE(6324), 1, aux_sym__multiple_types_repeat1, - STATE(6724), 1, + STATE(6718), 1, + sym_comment, + [219606] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6719), 1, + sym_comment, + ACTIONS(11047), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [219618] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6720), 1, sym_comment, - [221453] = 5, + ACTIONS(11153), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [219630] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(5903), 1, sym__entry_separator, - ACTIONS(11165), 1, + ACTIONS(11155), 1, anon_sym_RBRACK, - STATE(6359), 1, + STATE(2833), 1, aux_sym__multiple_types_repeat1, - STATE(6725), 1, + STATE(6721), 1, sym_comment, - [221469] = 4, + [219646] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2470), 1, + ACTIONS(6604), 1, sym__entry_separator, - STATE(6726), 1, - sym_comment, - ACTIONS(2468), 2, + ACTIONS(11157), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [221483] = 5, - ACTIONS(3), 1, + STATE(6403), 1, + aux_sym__multiple_types_repeat1, + STATE(6722), 1, + sym_comment, + [219662] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2128), 1, - sym__newline, - ACTIONS(2132), 1, - sym__space, - ACTIONS(2134), 1, - aux_sym_unquoted_token4, - STATE(6727), 1, + STATE(6723), 1, sym_comment, - [221499] = 4, + ACTIONS(11067), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [219674] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2408), 1, + ACTIONS(2431), 1, sym__entry_separator, - STATE(6728), 1, + STATE(6724), 1, sym_comment, - ACTIONS(2406), 2, + ACTIONS(2429), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [221513] = 4, + [219688] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2412), 1, + ACTIONS(5903), 1, sym__entry_separator, - STATE(6729), 1, + ACTIONS(11159), 1, + anon_sym_RBRACK, + STATE(2848), 1, + aux_sym__multiple_types_repeat1, + STATE(6725), 1, sym_comment, - ACTIONS(2410), 2, + [219704] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(11161), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [221527] = 4, + STATE(6406), 1, + aux_sym__multiple_types_repeat1, + STATE(6726), 1, + sym_comment, + [219720] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2507), 1, + ACTIONS(6604), 1, sym__entry_separator, - STATE(6730), 1, + ACTIONS(11163), 1, + anon_sym_RBRACK, + STATE(6407), 1, + aux_sym__multiple_types_repeat1, + STATE(6727), 1, sym_comment, - ACTIONS(2505), 2, + [219736] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5791), 1, + sym__entry_separator, + ACTIONS(11165), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [221541] = 5, - ACTIONS(251), 1, + STATE(2712), 1, + aux_sym__multiple_types_repeat1, + STATE(6728), 1, + sym_comment, + [219752] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11149), 1, - sym_hex_digit, ACTIONS(11167), 1, anon_sym_RBRACK, + ACTIONS(11169), 1, + sym_hex_digit, + STATE(6729), 2, + sym_comment, + aux_sym_val_binary_repeat1, + [219766] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6730), 1, + sym_comment, + ACTIONS(10445), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [219778] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(11172), 1, + anon_sym_RBRACK, + ACTIONS(11174), 1, + sym_hex_digit, STATE(6731), 1, sym_comment, - STATE(6736), 1, + STATE(6738), 1, aux_sym_val_binary_repeat1, - [221557] = 4, - ACTIONS(3), 1, + [219794] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1857), 1, - sym__entry_separator, + ACTIONS(11176), 1, + anon_sym_QMARK2, STATE(6732), 1, sym_comment, - ACTIONS(1855), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [221571] = 5, + ACTIONS(970), 2, + sym__table_head_separator, + anon_sym_DOT2, + [219808] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11169), 1, - anon_sym_POUND_BANG, - ACTIONS(11171), 1, - sym__newline, + ACTIONS(10825), 1, + anon_sym_LPAREN, STATE(6733), 1, sym_comment, - STATE(6761), 1, - aux_sym_shebang_repeat1, - [221587] = 3, - ACTIONS(251), 1, + ACTIONS(10827), 2, + sym_unescaped_interpolated_content, + anon_sym_SQUOTE, + [219822] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5791), 1, + sym__entry_separator, + ACTIONS(11178), 1, + anon_sym_RBRACK, + STATE(2717), 1, + aux_sym__multiple_types_repeat1, STATE(6734), 1, sym_comment, - ACTIONS(5935), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [221599] = 5, - ACTIONS(3), 1, + [219838] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - ACTIONS(7138), 1, - aux_sym_unquoted_token4, STATE(6735), 1, sym_comment, - STATE(7393), 1, - sym__expr_parenthesized_immediate, - [221615] = 5, - ACTIONS(251), 1, + ACTIONS(11180), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [219850] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11149), 1, + ACTIONS(11174), 1, sym_hex_digit, - ACTIONS(11173), 1, + ACTIONS(11182), 1, anon_sym_RBRACK, + STATE(6729), 1, + aux_sym_val_binary_repeat1, STATE(6736), 1, sym_comment, - STATE(6793), 1, - aux_sym_val_binary_repeat1, - [221631] = 3, - ACTIONS(251), 1, + [219866] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + ACTIONS(7118), 1, + aux_sym_unquoted_token4, STATE(6737), 1, sym_comment, - ACTIONS(6213), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [221643] = 5, - ACTIONS(3), 1, + STATE(7297), 1, + sym__expr_parenthesized_immediate, + [219882] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(11175), 1, + ACTIONS(11174), 1, + sym_hex_digit, + ACTIONS(11184), 1, anon_sym_RBRACK, - STATE(6377), 1, - aux_sym__multiple_types_repeat1, + STATE(6729), 1, + aux_sym_val_binary_repeat1, STATE(6738), 1, sym_comment, - [221659] = 3, - ACTIONS(251), 1, + [219898] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6739), 1, sym_comment, - ACTIONS(10435), 3, - ts_builtin_sym_end, + ACTIONS(11186), 3, sym__newline, anon_sym_SEMI, - [221671] = 5, + anon_sym_RPAREN, + [219910] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11177), 1, + ACTIONS(11188), 1, anon_sym_RBRACK, - STATE(6378), 1, + STATE(6335), 1, aux_sym__multiple_types_repeat1, STATE(6740), 1, sym_comment, - [221687] = 5, - ACTIONS(3), 1, + [219926] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(11179), 1, - anon_sym_RBRACK, - STATE(6379), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, STATE(6741), 1, sym_comment, - [221703] = 5, - ACTIONS(3), 1, + ACTIONS(1814), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [219940] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(11181), 1, - anon_sym_RBRACK, - STATE(6380), 1, - aux_sym__multiple_types_repeat1, STATE(6742), 1, sym_comment, - [221719] = 5, + ACTIONS(11009), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [219952] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11183), 1, + ACTIONS(11190), 1, anon_sym_RBRACK, - STATE(6381), 1, + STATE(6336), 1, aux_sym__multiple_types_repeat1, STATE(6743), 1, sym_comment, - [221735] = 5, + [219968] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11185), 1, + ACTIONS(11192), 1, anon_sym_RBRACK, - STATE(6244), 1, + STATE(6337), 1, aux_sym__multiple_types_repeat1, STATE(6744), 1, sym_comment, - [221751] = 5, + [219984] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11187), 1, + ACTIONS(11194), 1, anon_sym_RBRACK, - STATE(3581), 1, + STATE(6338), 1, aux_sym__multiple_types_repeat1, STATE(6745), 1, sym_comment, - [221767] = 5, + [220000] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11189), 1, + ACTIONS(11196), 1, anon_sym_RBRACK, - STATE(6382), 1, + STATE(6339), 1, aux_sym__multiple_types_repeat1, STATE(6746), 1, sym_comment, - [221783] = 5, - ACTIONS(3), 1, + [220016] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(11191), 1, - anon_sym_RBRACK, - STATE(6383), 1, - aux_sym__multiple_types_repeat1, STATE(6747), 1, sym_comment, - [221799] = 4, - ACTIONS(3), 1, + ACTIONS(11198), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [220028] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2420), 1, - sym__entry_separator, STATE(6748), 1, sym_comment, - ACTIONS(2418), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [221813] = 4, + ACTIONS(11200), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [220040] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2424), 1, + ACTIONS(6604), 1, sym__entry_separator, + ACTIONS(11202), 1, + anon_sym_RBRACK, + STATE(6340), 1, + aux_sym__multiple_types_repeat1, STATE(6749), 1, sym_comment, - ACTIONS(2422), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [221827] = 5, + [220056] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11193), 1, + ACTIONS(11204), 1, anon_sym_RBRACK, - STATE(6384), 1, + STATE(6341), 1, aux_sym__multiple_types_repeat1, STATE(6750), 1, sym_comment, - [221843] = 4, + [220072] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2428), 1, + ACTIONS(2049), 1, sym__entry_separator, STATE(6751), 1, sym_comment, - ACTIONS(2426), 2, + ACTIONS(2043), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [221857] = 4, + [220086] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2432), 1, + ACTIONS(5791), 1, sym__entry_separator, + ACTIONS(11206), 1, + anon_sym_RBRACK, + STATE(2714), 1, + aux_sym__multiple_types_repeat1, STATE(6752), 1, sym_comment, - ACTIONS(2430), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [221871] = 3, - ACTIONS(251), 1, + [220102] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(11208), 1, + anon_sym_RBRACK, + STATE(6342), 1, + aux_sym__multiple_types_repeat1, STATE(6753), 1, sym_comment, - ACTIONS(10437), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [221883] = 3, - ACTIONS(251), 1, + [220118] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6754), 1, sym_comment, - ACTIONS(10427), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [221895] = 3, - ACTIONS(251), 1, + ACTIONS(6252), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [220130] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6755), 1, sym_comment, - ACTIONS(10429), 3, + ACTIONS(11009), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [221907] = 4, - ACTIONS(251), 1, + [220142] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1313), 1, - anon_sym_RPAREN, STATE(6756), 1, sym_comment, - ACTIONS(1306), 2, + ACTIONS(11013), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [221921] = 5, - ACTIONS(3), 1, + [220154] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5890), 1, - sym__entry_separator, - ACTIONS(11195), 1, - anon_sym_RBRACK, - STATE(2805), 1, - aux_sym__multiple_types_repeat1, STATE(6757), 1, sym_comment, - [221937] = 5, - ACTIONS(3), 1, + ACTIONS(10447), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [220166] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5890), 1, - sym__entry_separator, - ACTIONS(11197), 1, - anon_sym_RBRACK, - STATE(2806), 1, - aux_sym__multiple_types_repeat1, STATE(6758), 1, sym_comment, - [221953] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6759), 1, - sym_comment, - ACTIONS(1313), 3, + ACTIONS(11013), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [221965] = 5, - ACTIONS(251), 1, + [220178] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11149), 1, + ACTIONS(11174), 1, sym_hex_digit, - ACTIONS(11199), 1, + ACTIONS(11210), 1, anon_sym_RBRACK, - STATE(6760), 1, + STATE(6759), 1, sym_comment, - STATE(6768), 1, + STATE(6765), 1, aux_sym_val_binary_repeat1, - [221981] = 4, - ACTIONS(3), 1, + [220194] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1298), 1, - anon_sym_POUND_BANG, - ACTIONS(11201), 1, - sym__newline, - STATE(6761), 2, + STATE(6760), 1, sym_comment, - aux_sym_shebang_repeat1, - [221995] = 3, - ACTIONS(251), 1, + ACTIONS(11212), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [220206] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6762), 1, + STATE(6761), 1, sym_comment, - ACTIONS(10530), 3, - ts_builtin_sym_end, + ACTIONS(11214), 3, sym__newline, anon_sym_SEMI, - [222007] = 5, + anon_sym_RPAREN, + [220218] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6762), 1, + sym_comment, + ACTIONS(6269), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [220230] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(11204), 1, + ACTIONS(1639), 1, anon_sym_RBRACK, - STATE(6469), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(1651), 1, + sym__entry_separator, + ACTIONS(8832), 1, + aux_sym__unquoted_in_list_token2, STATE(6763), 1, sym_comment, - [222023] = 5, + [220246] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(11206), 1, - anon_sym_RBRACK, - STATE(6470), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + ACTIONS(7070), 1, + aux_sym_unquoted_token4, STATE(6764), 1, sym_comment, - [222039] = 5, - ACTIONS(3), 1, + STATE(7382), 1, + sym__expr_parenthesized_immediate, + [220262] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(11208), 1, + ACTIONS(11174), 1, + sym_hex_digit, + ACTIONS(11216), 1, anon_sym_RBRACK, - STATE(6479), 1, - aux_sym__multiple_types_repeat1, + STATE(6729), 1, + aux_sym_val_binary_repeat1, STATE(6765), 1, sym_comment, - [222055] = 4, + [220278] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11210), 1, - anon_sym_GT2, + ACTIONS(6132), 1, + anon_sym_RBRACK, STATE(6766), 1, sym_comment, - ACTIONS(11212), 2, - anon_sym_AT, + ACTIONS(6134), 2, + anon_sym_LPAREN2, sym__entry_separator, - [222069] = 5, + [220292] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - ACTIONS(7078), 1, - aux_sym_unquoted_token4, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(11218), 1, + anon_sym_RBRACK, + STATE(6350), 1, + aux_sym__multiple_types_repeat1, STATE(6767), 1, sym_comment, - STATE(7381), 1, - sym__expr_parenthesized_immediate, - [222085] = 5, - ACTIONS(251), 1, + [220308] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11149), 1, - sym_hex_digit, - ACTIONS(11214), 1, - anon_sym_RBRACK, STATE(6768), 1, sym_comment, - STATE(6793), 1, - aux_sym_val_binary_repeat1, - [222101] = 5, - ACTIONS(3), 1, + ACTIONS(10287), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [220320] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(11216), 1, - anon_sym_RBRACK, - STATE(6395), 1, - aux_sym__multiple_types_repeat1, STATE(6769), 1, sym_comment, - [222117] = 5, + ACTIONS(10449), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [220332] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11218), 1, + ACTIONS(11220), 1, anon_sym_RBRACK, - STATE(6396), 1, + STATE(6351), 1, aux_sym__multiple_types_repeat1, STATE(6770), 1, sym_comment, - [222133] = 5, + [220348] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11220), 1, + ACTIONS(11222), 1, anon_sym_RBRACK, - STATE(6397), 1, + STATE(6352), 1, aux_sym__multiple_types_repeat1, STATE(6771), 1, sym_comment, - [222149] = 5, + [220364] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11222), 1, + ACTIONS(11224), 1, anon_sym_RBRACK, - STATE(6398), 1, + STATE(6353), 1, aux_sym__multiple_types_repeat1, STATE(6772), 1, sym_comment, - [222165] = 3, - ACTIONS(251), 1, + [220380] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(11226), 1, + anon_sym_RBRACK, + STATE(6354), 1, + aux_sym__multiple_types_repeat1, STATE(6773), 1, sym_comment, - ACTIONS(6229), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [222177] = 5, + [220396] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11224), 1, + ACTIONS(11228), 1, anon_sym_RBRACK, - STATE(6399), 1, + STATE(6355), 1, aux_sym__multiple_types_repeat1, STATE(6774), 1, sym_comment, - [222193] = 5, + [220412] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11226), 1, + ACTIONS(11230), 1, anon_sym_RBRACK, - STATE(6400), 1, + STATE(6356), 1, aux_sym__multiple_types_repeat1, STATE(6775), 1, sym_comment, - [222209] = 5, - ACTIONS(3), 1, + [220428] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(11228), 1, - anon_sym_RBRACK, - STATE(6401), 1, - aux_sym__multiple_types_repeat1, STATE(6776), 1, sym_comment, - [222225] = 5, + ACTIONS(11232), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [220440] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11230), 1, + ACTIONS(11234), 1, anon_sym_RBRACK, - STATE(6402), 1, + STATE(6357), 1, aux_sym__multiple_types_repeat1, STATE(6777), 1, sym_comment, - [222241] = 3, - ACTIONS(251), 1, + [220456] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6778), 1, sym_comment, - ACTIONS(10552), 3, + ACTIONS(10451), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [222253] = 5, - ACTIONS(3), 1, + [220468] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2136), 1, - sym__newline, - ACTIONS(2140), 1, - sym__space, - ACTIONS(2142), 1, - aux_sym_unquoted_token4, + ACTIONS(6494), 1, + anon_sym_AT, + ACTIONS(11236), 1, + anon_sym_GT2, STATE(6779), 1, sym_comment, - [222269] = 5, - ACTIONS(3), 1, + STATE(7455), 1, + sym_param_cmd, + [220484] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2142), 1, - aux_sym_unquoted_token4, - ACTIONS(2144), 1, - sym__newline, - ACTIONS(2146), 1, - sym__space, + STATE(320), 1, + aux_sym__block_body_repeat1, STATE(6780), 1, sym_comment, - [222285] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6781), 1, - sym_comment, - ACTIONS(10389), 3, - ts_builtin_sym_end, + ACTIONS(139), 2, sym__newline, anon_sym_SEMI, - [222297] = 4, + [220498] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2454), 1, - sym__entry_separator, - STATE(6782), 1, + ACTIONS(1296), 1, + anon_sym_POUND_BANG, + ACTIONS(11238), 1, + sym__newline, + STATE(6781), 2, sym_comment, - ACTIONS(2452), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [222311] = 3, - ACTIONS(251), 1, + aux_sym_shebang_repeat1, + [220512] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6783), 1, + STATE(6782), 1, sym_comment, - ACTIONS(10389), 3, + ACTIONS(10453), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [222323] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(11232), 1, - anon_sym_GT2, - STATE(5566), 1, - aux_sym__multiple_types_repeat1, - STATE(6784), 1, - sym_comment, - [222339] = 3, - ACTIONS(251), 1, + [220524] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6785), 1, + STATE(6783), 1, sym_comment, - ACTIONS(10331), 3, + ACTIONS(10455), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [222351] = 3, - ACTIONS(251), 1, + [220536] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6786), 1, + ACTIONS(1651), 1, + sym__entry_separator, + STATE(6784), 1, sym_comment, - ACTIONS(10391), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [222363] = 5, - ACTIONS(251), 1, + ACTIONS(1639), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [220550] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11149), 1, + ACTIONS(11174), 1, sym_hex_digit, - ACTIONS(11234), 1, + ACTIONS(11241), 1, anon_sym_RBRACK, - STATE(6787), 1, + STATE(6785), 1, sym_comment, - STATE(6794), 1, + STATE(6790), 1, aux_sym_val_binary_repeat1, - [222379] = 4, + [220566] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5701), 1, + ACTIONS(2455), 1, sym__entry_separator, - STATE(6788), 1, + STATE(6786), 1, sym_comment, - ACTIONS(5699), 2, + ACTIONS(2453), 2, anon_sym_RBRACK, - anon_sym_GT2, - [222393] = 5, + anon_sym_RBRACE, + [220580] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(2427), 1, sym__entry_separator, - ACTIONS(11236), 1, - anon_sym_GT2, - STATE(5572), 1, - aux_sym__multiple_types_repeat1, - STATE(6789), 1, - sym_comment, - [222409] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4984), 1, - sym__space, - ACTIONS(4986), 1, - sym__newline, - ACTIONS(11238), 1, - anon_sym_EQ2, - STATE(6790), 1, + STATE(6787), 1, sym_comment, - [222425] = 3, - ACTIONS(251), 1, + ACTIONS(2425), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [220594] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6791), 1, + STATE(6788), 1, sym_comment, - ACTIONS(11032), 3, + ACTIONS(11019), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [222437] = 4, + [220606] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2368), 1, + ACTIONS(2435), 1, sym__entry_separator, - STATE(6792), 1, + STATE(6789), 1, sym_comment, - ACTIONS(2366), 2, + ACTIONS(2433), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [222451] = 4, - ACTIONS(251), 1, + [220620] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11240), 1, - anon_sym_RBRACK, - ACTIONS(11242), 1, - sym_hex_digit, - STATE(6793), 2, - sym_comment, - aux_sym_val_binary_repeat1, - [222465] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(11149), 1, + ACTIONS(11174), 1, sym_hex_digit, - ACTIONS(11245), 1, + ACTIONS(11243), 1, anon_sym_RBRACK, - STATE(6793), 1, + STATE(6729), 1, aux_sym_val_binary_repeat1, - STATE(6794), 1, + STATE(6790), 1, sym_comment, - [222481] = 4, + [220636] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2368), 1, + ACTIONS(6604), 1, sym__entry_separator, - STATE(6795), 1, - sym_comment, - ACTIONS(2366), 2, + ACTIONS(11245), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [222495] = 5, + STATE(6367), 1, + aux_sym__multiple_types_repeat1, + STATE(6791), 1, + sym_comment, + [220652] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(9244), 1, sym__entry_separator, ACTIONS(11247), 1, - anon_sym_RBRACK, - STATE(6410), 1, + anon_sym_GT2, + STATE(5422), 1, aux_sym__multiple_types_repeat1, - STATE(6796), 1, + STATE(6792), 1, sym_comment, - [222511] = 5, - ACTIONS(251), 1, + [220668] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10171), 1, - anon_sym_PIPE, + ACTIONS(6604), 1, + sym__entry_separator, ACTIONS(11249), 1, - anon_sym_EQ_GT, - STATE(6797), 1, - sym_comment, - STATE(7101), 1, - aux_sym_match_pattern_repeat1, - [222527] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6798), 1, + anon_sym_RBRACK, + STATE(6368), 1, + aux_sym__multiple_types_repeat1, + STATE(6793), 1, sym_comment, - ACTIONS(10391), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [222539] = 5, + [220684] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, ACTIONS(11251), 1, anon_sym_RBRACK, - STATE(6411), 1, + STATE(6369), 1, aux_sym__multiple_types_repeat1, - STATE(6799), 1, + STATE(6794), 1, sym_comment, - [222555] = 5, + [220700] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, ACTIONS(11253), 1, anon_sym_RBRACK, - STATE(6412), 1, + STATE(6370), 1, aux_sym__multiple_types_repeat1, - STATE(6800), 1, + STATE(6795), 1, sym_comment, - [222571] = 5, + [220716] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, ACTIONS(11255), 1, anon_sym_RBRACK, - STATE(6413), 1, - aux_sym__multiple_types_repeat1, - STATE(6801), 1, - sym_comment, - [222587] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6085), 1, - sym__entry_separator, - ACTIONS(6097), 1, - anon_sym_RBRACE, - STATE(2993), 1, + STATE(6238), 1, aux_sym__multiple_types_repeat1, - STATE(6802), 1, + STATE(6796), 1, sym_comment, - [222603] = 5, + [220732] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, ACTIONS(11257), 1, anon_sym_RBRACK, - STATE(6414), 1, + STATE(6371), 1, aux_sym__multiple_types_repeat1, - STATE(6803), 1, + STATE(6797), 1, sym_comment, - [222619] = 3, - ACTIONS(251), 1, + [220748] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6804), 1, + STATE(6798), 1, sym_comment, - ACTIONS(11070), 3, + ACTIONS(9722), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [222631] = 4, + [220760] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6799), 1, + sym_comment, + ACTIONS(11259), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [220772] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1919), 1, + ACTIONS(6604), 1, sym__entry_separator, - STATE(6805), 1, - sym_comment, - ACTIONS(1917), 2, + ACTIONS(11261), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [222645] = 5, + STATE(6372), 1, + aux_sym__multiple_types_repeat1, + STATE(6800), 1, + sym_comment, + [220788] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11259), 1, + ACTIONS(11263), 1, anon_sym_RBRACK, - STATE(6415), 1, + STATE(6373), 1, aux_sym__multiple_types_repeat1, - STATE(6806), 1, + STATE(6801), 1, + sym_comment, + [220804] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6802), 1, sym_comment, - [222661] = 5, + ACTIONS(11265), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [220816] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11261), 1, + ACTIONS(11267), 1, anon_sym_RBRACK, - STATE(6416), 1, + STATE(6374), 1, aux_sym__multiple_types_repeat1, - STATE(6807), 1, + STATE(6803), 1, sym_comment, - [222677] = 5, + [220832] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(2230), 1, sym__entry_separator, - ACTIONS(11263), 1, - anon_sym_RBRACK, - STATE(6417), 1, + ACTIONS(11269), 1, + anon_sym_RBRACE, + STATE(672), 1, aux_sym__multiple_types_repeat1, - STATE(6808), 1, + STATE(6804), 1, + sym_comment, + [220848] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6805), 1, sym_comment, - [222693] = 5, + ACTIONS(6190), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [220860] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(11265), 1, + ACTIONS(11271), 1, anon_sym_GT2, - STATE(5432), 1, + STATE(5423), 1, aux_sym__multiple_types_repeat1, - STATE(6809), 1, + STATE(6806), 1, sym_comment, - [222709] = 3, - ACTIONS(251), 1, + [220876] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6810), 1, + ACTIONS(6494), 1, + anon_sym_AT, + ACTIONS(8022), 1, + anon_sym_EQ, + STATE(5005), 1, + sym_param_cmd, + STATE(6807), 1, sym_comment, - ACTIONS(10558), 3, + [220892] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6808), 1, + sym_comment, + ACTIONS(10467), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [222721] = 4, + [220904] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2416), 1, + ACTIONS(2415), 1, sym__entry_separator, - STATE(6811), 1, + STATE(6809), 1, sym_comment, - ACTIONS(2414), 2, + ACTIONS(2413), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [222735] = 5, + [220918] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6085), 1, + ACTIONS(2340), 1, sym__entry_separator, - ACTIONS(6127), 1, + STATE(6810), 1, + sym_comment, + ACTIONS(2338), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - STATE(2947), 1, - aux_sym__multiple_types_repeat1, + [220932] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2346), 1, + sym__entry_separator, + STATE(6811), 1, + sym_comment, + ACTIONS(2344), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [220946] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(11174), 1, + sym_hex_digit, + ACTIONS(11273), 1, + anon_sym_RBRACK, STATE(6812), 1, sym_comment, - [222751] = 5, + STATE(6817), 1, + aux_sym_val_binary_repeat1, + [220962] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(11267), 1, - anon_sym_GT2, - STATE(5433), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(5565), 1, + anon_sym_LPAREN2, + ACTIONS(8832), 1, + aux_sym__unquoted_in_list_token4, STATE(6813), 1, sym_comment, - [222767] = 4, - ACTIONS(3), 1, + STATE(7434), 1, + sym__expr_parenthesized_immediate, + [220978] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10325), 1, - anon_sym_LPAREN, STATE(6814), 1, sym_comment, - ACTIONS(10327), 2, - sym_unescaped_interpolated_content, - anon_sym_SQUOTE, - [222781] = 5, + ACTIONS(9727), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [220990] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6085), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11269), 1, - anon_sym_RBRACE, - STATE(2960), 1, + ACTIONS(11275), 1, + anon_sym_RBRACK, + STATE(3601), 1, aux_sym__multiple_types_repeat1, STATE(6815), 1, sym_comment, - [222797] = 3, - ACTIONS(251), 1, + [221006] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + ACTIONS(4758), 1, + aux_sym_unquoted_token4, STATE(6816), 1, sym_comment, - ACTIONS(10560), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [222809] = 5, - ACTIONS(251), 1, + STATE(7297), 1, + sym__expr_parenthesized_immediate, + [221022] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11149), 1, + ACTIONS(11174), 1, sym_hex_digit, - ACTIONS(11271), 1, + ACTIONS(11277), 1, anon_sym_RBRACK, + STATE(6729), 1, + aux_sym_val_binary_repeat1, STATE(6817), 1, sym_comment, - STATE(6821), 1, - aux_sym_val_binary_repeat1, - [222825] = 5, - ACTIONS(3), 1, + [221038] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(11273), 1, - anon_sym_RBRACK, - STATE(6609), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(1826), 1, + aux_sym_unquoted_token2, STATE(6818), 1, sym_comment, - [222841] = 5, + ACTIONS(2166), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [221052] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11275), 1, - anon_sym_COLON, - STATE(5626), 1, + ACTIONS(11279), 1, + anon_sym_RBRACK, + STATE(6381), 1, aux_sym__multiple_types_repeat1, STATE(6819), 1, sym_comment, - [222857] = 5, + [221068] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11277), 1, - anon_sym_COLON, - STATE(5627), 1, + ACTIONS(11281), 1, + anon_sym_RBRACK, + STATE(3600), 1, aux_sym__multiple_types_repeat1, STATE(6820), 1, sym_comment, - [222873] = 5, - ACTIONS(251), 1, + [221084] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11149), 1, - sym_hex_digit, - ACTIONS(11279), 1, - anon_sym_RBRACK, - STATE(6793), 1, - aux_sym_val_binary_repeat1, STATE(6821), 1, sym_comment, - [222889] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(11281), 1, - anon_sym_QMARK2, - STATE(6822), 1, - sym_comment, - ACTIONS(968), 2, - sym__table_head_separator, - anon_sym_DOT2, - [222903] = 4, - ACTIONS(251), 1, + ACTIONS(11043), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [221096] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6604), 1, + sym__entry_separator, ACTIONS(11283), 1, - anon_sym_QMARK2, - STATE(6823), 1, + anon_sym_RBRACK, + STATE(6382), 1, + aux_sym__multiple_types_repeat1, + STATE(6822), 1, sym_comment, - ACTIONS(962), 2, - sym__table_head_separator, - anon_sym_DOT2, - [222917] = 5, + [221112] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, ACTIONS(11285), 1, anon_sym_RBRACK, - STATE(6426), 1, + STATE(6383), 1, aux_sym__multiple_types_repeat1, - STATE(6824), 1, + STATE(6823), 1, sym_comment, - [222933] = 5, - ACTIONS(251), 1, + [221128] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6466), 1, - anon_sym_AT, + ACTIONS(6604), 1, + sym__entry_separator, ACTIONS(11287), 1, - anon_sym_GT2, - STATE(6825), 1, + anon_sym_RBRACK, + STATE(6384), 1, + aux_sym__multiple_types_repeat1, + STATE(6824), 1, sym_comment, - STATE(7857), 1, - sym_param_cmd, - [222949] = 5, + [221144] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, ACTIONS(11289), 1, anon_sym_RBRACK, - STATE(6427), 1, + STATE(6385), 1, aux_sym__multiple_types_repeat1, + STATE(6825), 1, + sym_comment, + [221160] = 3, + ACTIONS(247), 1, + anon_sym_POUND, STATE(6826), 1, sym_comment, - [222965] = 5, + ACTIONS(10325), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [221172] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, ACTIONS(11291), 1, anon_sym_RBRACK, - STATE(6428), 1, + STATE(6386), 1, aux_sym__multiple_types_repeat1, STATE(6827), 1, sym_comment, - [222981] = 5, + [221188] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, ACTIONS(11293), 1, anon_sym_RBRACK, - STATE(6429), 1, + STATE(6387), 1, aux_sym__multiple_types_repeat1, STATE(6828), 1, sym_comment, - [222997] = 4, + [221204] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2330), 1, + ACTIONS(6604), 1, sym__entry_separator, + ACTIONS(11295), 1, + anon_sym_RBRACK, + STATE(6388), 1, + aux_sym__multiple_types_repeat1, STATE(6829), 1, sym_comment, - ACTIONS(2328), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [223011] = 5, + [221220] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6111), 1, sym__entry_separator, - ACTIONS(11295), 1, - anon_sym_RBRACK, - STATE(6430), 1, + ACTIONS(6155), 1, + anon_sym_RBRACE, + STATE(3033), 1, aux_sym__multiple_types_repeat1, STATE(6830), 1, sym_comment, - [223027] = 5, + [221236] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1826), 1, + aux_sym_unquoted_token2, + STATE(6831), 1, + sym_comment, + ACTIONS(1824), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [221250] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6832), 1, + sym_comment, + ACTIONS(11009), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [221262] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2316), 1, - anon_sym_RBRACE, - ACTIONS(2318), 1, + ACTIONS(6111), 1, sym__entry_separator, - STATE(646), 1, + ACTIONS(6157), 1, + anon_sym_RBRACE, + STATE(3035), 1, aux_sym__multiple_types_repeat1, - STATE(6831), 1, + STATE(6833), 1, sym_comment, - [223043] = 3, - ACTIONS(251), 1, + [221278] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6834), 1, + sym_comment, + ACTIONS(11021), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [221290] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6832), 1, + STATE(6835), 1, sym_comment, - ACTIONS(10433), 3, + ACTIONS(11009), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [223055] = 5, - ACTIONS(3), 1, + [221302] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, + ACTIONS(11174), 1, + sym_hex_digit, ACTIONS(11297), 1, anon_sym_RBRACK, - STATE(6431), 1, - aux_sym__multiple_types_repeat1, - STATE(6833), 1, + STATE(6836), 1, sym_comment, - [223071] = 5, - ACTIONS(3), 1, + STATE(6839), 1, + aux_sym_val_binary_repeat1, + [221318] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, + STATE(6837), 1, + sym_comment, + ACTIONS(10522), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [221330] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6494), 1, + anon_sym_AT, ACTIONS(11299), 1, - anon_sym_RBRACK, - STATE(6432), 1, - aux_sym__multiple_types_repeat1, - STATE(6834), 1, + anon_sym_GT2, + STATE(6838), 1, sym_comment, - [223087] = 5, - ACTIONS(3), 1, + STATE(7856), 1, + sym_param_cmd, + [221346] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, + ACTIONS(11174), 1, + sym_hex_digit, ACTIONS(11301), 1, anon_sym_RBRACK, - STATE(6433), 1, - aux_sym__multiple_types_repeat1, - STATE(6835), 1, + STATE(6729), 1, + aux_sym_val_binary_repeat1, + STATE(6839), 1, sym_comment, - [223103] = 5, + [221362] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(6604), 1, sym__entry_separator, ACTIONS(11303), 1, - anon_sym_GT2, - STATE(5438), 1, + anon_sym_RBRACK, + STATE(6395), 1, aux_sym__multiple_types_repeat1, - STATE(6836), 1, + STATE(6840), 1, sym_comment, - [223119] = 5, + [221378] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(5903), 1, sym__entry_separator, ACTIONS(11305), 1, - anon_sym_GT2, - STATE(5439), 1, + anon_sym_RBRACK, + STATE(2835), 1, aux_sym__multiple_types_repeat1, - STATE(6837), 1, + STATE(6841), 1, sym_comment, - [223135] = 4, - ACTIONS(3), 1, + [221394] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2480), 1, - sym__entry_separator, - STATE(6838), 1, + STATE(6842), 1, sym_comment, - ACTIONS(2478), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [223149] = 5, - ACTIONS(251), 1, + ACTIONS(10524), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [221406] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11149), 1, - sym_hex_digit, + ACTIONS(6604), 1, + sym__entry_separator, ACTIONS(11307), 1, anon_sym_RBRACK, - STATE(6839), 1, + STATE(6396), 1, + aux_sym__multiple_types_repeat1, + STATE(6843), 1, sym_comment, - STATE(6845), 1, - aux_sym_val_binary_repeat1, - [223165] = 5, + [221422] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(6604), 1, sym__entry_separator, ACTIONS(11309), 1, - anon_sym_GT2, - STATE(5442), 1, + anon_sym_RBRACK, + STATE(6397), 1, aux_sym__multiple_types_repeat1, - STATE(6840), 1, - sym_comment, - [223181] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - ACTIONS(7215), 1, - aux_sym_unquoted_token4, - STATE(6841), 1, + STATE(6844), 1, sym_comment, - STATE(7447), 1, - sym__expr_parenthesized_immediate, - [223197] = 5, + [221438] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(6604), 1, sym__entry_separator, ACTIONS(11311), 1, - anon_sym_GT2, - STATE(5443), 1, + anon_sym_RBRACK, + STATE(6398), 1, aux_sym__multiple_types_repeat1, - STATE(6842), 1, - sym_comment, - [223213] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6843), 1, - sym_comment, - ACTIONS(11084), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [223225] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6844), 1, + STATE(6845), 1, sym_comment, - ACTIONS(11018), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [223237] = 5, - ACTIONS(251), 1, + [221454] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11149), 1, - sym_hex_digit, + ACTIONS(6604), 1, + sym__entry_separator, ACTIONS(11313), 1, anon_sym_RBRACK, - STATE(6793), 1, - aux_sym_val_binary_repeat1, - STATE(6845), 1, - sym_comment, - [223253] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4839), 1, - anon_sym_LBRACE, - ACTIONS(11315), 1, - anon_sym_EQ2, - ACTIONS(11317), 1, - sym_short_flag_identifier, + STATE(6399), 1, + aux_sym__multiple_types_repeat1, STATE(6846), 1, sym_comment, - [223269] = 5, + [221470] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11319), 1, + ACTIONS(11315), 1, anon_sym_RBRACK, - STATE(6442), 1, + STATE(6400), 1, aux_sym__multiple_types_repeat1, STATE(6847), 1, sym_comment, - [223285] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6848), 1, - sym_comment, - ACTIONS(10431), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [223297] = 5, + [221486] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11321), 1, + ACTIONS(11317), 1, anon_sym_RBRACK, - STATE(6443), 1, + STATE(6401), 1, aux_sym__multiple_types_repeat1, + STATE(6848), 1, + sym_comment, + [221502] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2087), 1, + sym__space, STATE(6849), 1, sym_comment, - [223313] = 5, + ACTIONS(2085), 2, + sym__newline, + aux_sym_unquoted_token4, + [221516] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11323), 1, + ACTIONS(11319), 1, anon_sym_RBRACK, - STATE(6444), 1, + STATE(6402), 1, aux_sym__multiple_types_repeat1, STATE(6850), 1, sym_comment, - [223329] = 5, + [221532] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(998), 1, sym__entry_separator, - ACTIONS(11325), 1, - anon_sym_RBRACK, - STATE(6445), 1, - aux_sym__multiple_types_repeat1, STATE(6851), 1, sym_comment, - [223345] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(11327), 1, + ACTIONS(1002), 2, anon_sym_RBRACK, - STATE(6446), 1, - aux_sym__multiple_types_repeat1, + anon_sym_RBRACE, + [221546] = 3, + ACTIONS(247), 1, + anon_sym_POUND, STATE(6852), 1, sym_comment, - [223361] = 5, + ACTIONS(11023), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [221558] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11329), 1, - anon_sym_GT2, - STATE(5444), 1, + ACTIONS(11321), 1, + anon_sym_RBRACK, + STATE(6512), 1, aux_sym__multiple_types_repeat1, STATE(6853), 1, sym_comment, - [223377] = 5, - ACTIONS(3), 1, + [221574] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(11331), 1, - anon_sym_RBRACK, - STATE(6447), 1, - aux_sym__multiple_types_repeat1, STATE(6854), 1, sym_comment, - [223393] = 5, - ACTIONS(3), 1, + ACTIONS(11109), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [221586] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(11333), 1, - anon_sym_RBRACK, - STATE(6448), 1, - aux_sym__multiple_types_repeat1, STATE(6855), 1, sym_comment, - [223409] = 5, + ACTIONS(11111), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [221598] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(11335), 1, + ACTIONS(11323), 1, anon_sym_GT2, - STATE(5445), 1, + STATE(5499), 1, aux_sym__multiple_types_repeat1, STATE(6856), 1, sym_comment, - [223425] = 5, + [221614] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(11337), 1, - anon_sym_RBRACK, - STATE(6449), 1, + ACTIONS(11325), 1, + anon_sym_GT2, + STATE(5500), 1, aux_sym__multiple_types_repeat1, STATE(6857), 1, sym_comment, - [223441] = 5, - ACTIONS(3), 1, + [221630] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1640), 1, - anon_sym_LPAREN2, - ACTIONS(1779), 1, - aux_sym__unquoted_in_record_token4, STATE(6858), 1, sym_comment, - STATE(7338), 1, - sym__expr_parenthesized_immediate, - [223457] = 5, - ACTIONS(251), 1, + ACTIONS(10471), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [221642] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11149), 1, + ACTIONS(11174), 1, sym_hex_digit, - ACTIONS(11339), 1, + ACTIONS(11327), 1, anon_sym_RBRACK, STATE(6859), 1, sym_comment, - STATE(7010), 1, + STATE(6863), 1, aux_sym_val_binary_repeat1, - [223473] = 3, - ACTIONS(251), 1, + [221658] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(11329), 1, + anon_sym_RBRACK, + STATE(6516), 1, + aux_sym__multiple_types_repeat1, STATE(6860), 1, sym_comment, - ACTIONS(10449), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [223485] = 5, + [221674] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6085), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(6133), 1, - anon_sym_RBRACE, - STATE(3004), 1, + ACTIONS(11331), 1, + anon_sym_RBRACK, + STATE(6523), 1, aux_sym__multiple_types_repeat1, STATE(6861), 1, sym_comment, - [223501] = 5, - ACTIONS(251), 1, + [221690] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11149), 1, - sym_hex_digit, - ACTIONS(11341), 1, - anon_sym_RBRACK, + ACTIONS(2451), 1, + sym__entry_separator, STATE(6862), 1, sym_comment, - STATE(6866), 1, - aux_sym_val_binary_repeat1, - [223517] = 4, - ACTIONS(3), 1, + ACTIONS(2449), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [221704] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6091), 1, + ACTIONS(11174), 1, + sym_hex_digit, + ACTIONS(11333), 1, anon_sym_RBRACK, + STATE(6729), 1, + aux_sym_val_binary_repeat1, STATE(6863), 1, sym_comment, - ACTIONS(6093), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [223531] = 4, + [221720] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11343), 1, - anon_sym_DQUOTE, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(11335), 1, + anon_sym_RBRACK, + STATE(6409), 1, + aux_sym__multiple_types_repeat1, STATE(6864), 1, sym_comment, - ACTIONS(11345), 2, - sym__escaped_str_content, - sym_escape_sequence, - [223545] = 5, + [221736] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6085), 1, + ACTIONS(5653), 1, sym__entry_separator, - ACTIONS(6135), 1, - anon_sym_RBRACE, - STATE(3005), 1, - aux_sym__multiple_types_repeat1, STATE(6865), 1, sym_comment, - [223561] = 5, - ACTIONS(251), 1, + ACTIONS(5651), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [221750] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11149), 1, - sym_hex_digit, - ACTIONS(11347), 1, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(11337), 1, anon_sym_RBRACK, - STATE(6793), 1, - aux_sym_val_binary_repeat1, + STATE(6410), 1, + aux_sym__multiple_types_repeat1, STATE(6866), 1, sym_comment, - [223577] = 5, + [221766] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11349), 1, + ACTIONS(11339), 1, anon_sym_RBRACK, - STATE(6455), 1, + STATE(6411), 1, aux_sym__multiple_types_repeat1, STATE(6867), 1, sym_comment, - [223593] = 5, + [221782] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11351), 1, + ACTIONS(11341), 1, anon_sym_RBRACK, - STATE(6456), 1, + STATE(6412), 1, aux_sym__multiple_types_repeat1, STATE(6868), 1, sym_comment, - [223609] = 5, - ACTIONS(3), 1, + [221798] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(11353), 1, - anon_sym_RBRACK, - STATE(6457), 1, - aux_sym__multiple_types_repeat1, STATE(6869), 1, sym_comment, - [223625] = 5, + ACTIONS(10433), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [221810] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11355), 1, + ACTIONS(11343), 1, anon_sym_RBRACK, - STATE(6458), 1, + STATE(6413), 1, aux_sym__multiple_types_repeat1, STATE(6870), 1, sym_comment, - [223641] = 5, + [221826] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(11357), 1, - anon_sym_RBRACK, - STATE(6459), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(1641), 1, + anon_sym_LPAREN2, + ACTIONS(1753), 1, + aux_sym__unquoted_in_record_token4, STATE(6871), 1, sym_comment, - [223657] = 3, - ACTIONS(251), 1, + STATE(7402), 1, + sym__expr_parenthesized_immediate, + [221842] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(11345), 1, + anon_sym_RBRACK, + STATE(6414), 1, + aux_sym__multiple_types_repeat1, STATE(6872), 1, sym_comment, - ACTIONS(11070), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [223669] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6466), 1, - anon_sym_AT, - ACTIONS(7981), 1, - anon_sym_EQ, - STATE(5046), 1, - sym_param_cmd, - STATE(6873), 1, - sym_comment, - [223685] = 5, + [221858] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11359), 1, + ACTIONS(11347), 1, anon_sym_RBRACK, - STATE(6460), 1, + STATE(6415), 1, aux_sym__multiple_types_repeat1, - STATE(6874), 1, + STATE(6873), 1, sym_comment, - [223701] = 5, + [221874] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11361), 1, + ACTIONS(11349), 1, anon_sym_RBRACK, - STATE(6461), 1, + STATE(6416), 1, aux_sym__multiple_types_repeat1, + STATE(6874), 1, + sym_comment, + [221890] = 3, + ACTIONS(247), 1, + anon_sym_POUND, STATE(6875), 1, sym_comment, - [223717] = 3, - ACTIONS(251), 1, + ACTIONS(6215), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [221902] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6876), 1, sym_comment, - ACTIONS(10578), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [223729] = 5, + ACTIONS(5824), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [221914] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(5903), 1, sym__entry_separator, - ACTIONS(11363), 1, + ACTIONS(11351), 1, anon_sym_RBRACK, - STATE(6462), 1, + STATE(2832), 1, aux_sym__multiple_types_repeat1, STATE(6877), 1, sym_comment, - [223745] = 5, + [221930] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1012), 1, - sym__space, - ACTIONS(1016), 1, + ACTIONS(1639), 1, sym__newline, - ACTIONS(2208), 1, - aux_sym_unquoted_token4, + ACTIONS(1651), 1, + sym__space, + ACTIONS(7179), 1, + aux_sym_unquoted_token2, STATE(6878), 1, sym_comment, - [223761] = 5, - ACTIONS(251), 1, + [221946] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11149), 1, - sym_hex_digit, - ACTIONS(11365), 1, - anon_sym_RBRACK, - STATE(6793), 1, - aux_sym_val_binary_repeat1, STATE(6879), 1, sym_comment, - [223777] = 5, - ACTIONS(251), 1, + ACTIONS(11113), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [221958] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6466), 1, - anon_sym_AT, - ACTIONS(11367), 1, - anon_sym_GT2, + ACTIONS(2467), 1, + sym__entry_separator, STATE(6880), 1, sym_comment, - STATE(7575), 1, - sym_param_cmd, - [223793] = 3, - ACTIONS(251), 1, + ACTIONS(2465), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [221972] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6881), 1, sym_comment, - ACTIONS(6217), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [223805] = 5, - ACTIONS(3), 1, + ACTIONS(10319), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [221984] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(11369), 1, + ACTIONS(11174), 1, + sym_hex_digit, + ACTIONS(11353), 1, anon_sym_RBRACK, - STATE(6211), 1, - aux_sym__multiple_types_repeat1, STATE(6882), 1, sym_comment, - [223821] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3420), 1, - anon_sym_COLON2, - ACTIONS(6284), 1, - anon_sym_LBRACE, - STATE(6683), 1, - sym_block, - STATE(6883), 1, - sym_comment, - [223837] = 5, + STATE(6885), 1, + aux_sym_val_binary_repeat1, + [222000] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(11371), 1, - anon_sym_RBRACK, - STATE(6212), 1, + ACTIONS(11355), 1, + anon_sym_GT2, + STATE(5505), 1, aux_sym__multiple_types_repeat1, - STATE(6884), 1, + STATE(6883), 1, sym_comment, - [223853] = 5, - ACTIONS(251), 1, + [222016] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6466), 1, - anon_sym_AT, - ACTIONS(7967), 1, - anon_sym_EQ, - STATE(5003), 1, - sym_param_cmd, - STATE(6885), 1, + STATE(6884), 1, sym_comment, - [223869] = 5, - ACTIONS(251), 1, + ACTIONS(11025), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [222028] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11149), 1, + ACTIONS(11174), 1, sym_hex_digit, - ACTIONS(11373), 1, + ACTIONS(11357), 1, anon_sym_RBRACK, + STATE(6729), 1, + aux_sym_val_binary_repeat1, + STATE(6885), 1, + sym_comment, + [222044] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2312), 1, + sym__entry_separator, STATE(6886), 1, sym_comment, - STATE(6890), 1, - aux_sym_val_binary_repeat1, - [223885] = 5, + ACTIONS(2310), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [222058] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11375), 1, + ACTIONS(11359), 1, anon_sym_RBRACK, - STATE(6213), 1, + STATE(6423), 1, aux_sym__multiple_types_repeat1, STATE(6887), 1, sym_comment, - [223901] = 5, + [222074] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5890), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(11377), 1, - anon_sym_RBRACK, - STATE(2809), 1, + ACTIONS(11361), 1, + anon_sym_GT2, + STATE(5421), 1, aux_sym__multiple_types_repeat1, STATE(6888), 1, sym_comment, - [223917] = 4, + [222090] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11379), 1, - anon_sym_LPAREN, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(11363), 1, + anon_sym_RBRACK, + STATE(6424), 1, + aux_sym__multiple_types_repeat1, STATE(6889), 1, sym_comment, - ACTIONS(11381), 2, - sym_unescaped_interpolated_content, - anon_sym_SQUOTE, - [223931] = 5, - ACTIONS(251), 1, + [222106] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11149), 1, - sym_hex_digit, - ACTIONS(11383), 1, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(11365), 1, anon_sym_RBRACK, - STATE(6793), 1, - aux_sym_val_binary_repeat1, + STATE(6425), 1, + aux_sym__multiple_types_repeat1, STATE(6890), 1, sym_comment, - [223947] = 5, + [222122] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11385), 1, + ACTIONS(11367), 1, anon_sym_RBRACK, - STATE(6599), 1, + STATE(6426), 1, aux_sym__multiple_types_repeat1, STATE(6891), 1, sym_comment, - [223963] = 5, + [222138] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(11387), 1, - anon_sym_RBRACK, - STATE(6471), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + ACTIONS(7239), 1, + aux_sym_unquoted_token4, STATE(6892), 1, sym_comment, - [223979] = 4, + STATE(7349), 1, + sym__expr_parenthesized_immediate, + [222154] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2458), 1, + ACTIONS(6604), 1, sym__entry_separator, + ACTIONS(11369), 1, + anon_sym_RBRACK, + STATE(6427), 1, + aux_sym__multiple_types_repeat1, STATE(6893), 1, sym_comment, - ACTIONS(2456), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [223993] = 5, - ACTIONS(3), 1, + [222170] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(11389), 1, - anon_sym_RBRACK, - STATE(6710), 1, - aux_sym__multiple_types_repeat1, STATE(6894), 1, sym_comment, - [224009] = 5, - ACTIONS(3), 1, + ACTIONS(6215), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [222182] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(11391), 1, - anon_sym_RBRACK, - STATE(6473), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(1701), 1, + aux_sym_unquoted_token2, + ACTIONS(1703), 1, + anon_sym_LBRACE, + ACTIONS(10508), 1, + aux_sym__immediate_decimal_token2, STATE(6895), 1, sym_comment, - [224025] = 5, + [222198] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11393), 1, + ACTIONS(11371), 1, anon_sym_RBRACK, - STATE(6474), 1, + STATE(6428), 1, aux_sym__multiple_types_repeat1, STATE(6896), 1, sym_comment, - [224041] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6897), 1, - sym_comment, - ACTIONS(11395), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [224053] = 5, + [222214] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11397), 1, + ACTIONS(11373), 1, anon_sym_RBRACK, - STATE(6475), 1, + STATE(6429), 1, aux_sym__multiple_types_repeat1, - STATE(6898), 1, + STATE(6897), 1, sym_comment, - [224069] = 5, + [222230] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6085), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(6099), 1, - anon_sym_RBRACE, - STATE(2996), 1, + ACTIONS(11375), 1, + anon_sym_GT2, + STATE(5508), 1, aux_sym__multiple_types_repeat1, + STATE(6898), 1, + sym_comment, + [222246] = 3, + ACTIONS(247), 1, + anon_sym_POUND, STATE(6899), 1, sym_comment, - [224085] = 5, + ACTIONS(6222), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [222258] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11399), 1, + ACTIONS(11377), 1, anon_sym_RBRACK, - STATE(6476), 1, + STATE(6430), 1, aux_sym__multiple_types_repeat1, STATE(6900), 1, sym_comment, - [224101] = 5, + [222274] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(11401), 1, - anon_sym_RBRACK, - STATE(6477), 1, + ACTIONS(11379), 1, + anon_sym_GT2, + STATE(5509), 1, aux_sym__multiple_types_repeat1, STATE(6901), 1, sym_comment, - [224117] = 4, - ACTIONS(3), 1, + [222290] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2308), 1, - anon_sym_RBRACE, - STATE(6902), 1, + ACTIONS(11381), 1, + anon_sym_PIPE, + ACTIONS(11384), 1, + anon_sym_EQ_GT, + STATE(6902), 2, sym_comment, - ACTIONS(2310), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [224131] = 5, + aux_sym_match_pattern_repeat1, + [222304] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(1887), 1, sym__entry_separator, - ACTIONS(11403), 1, - anon_sym_RBRACK, - STATE(6478), 1, - aux_sym__multiple_types_repeat1, STATE(6903), 1, sym_comment, - [224147] = 5, + ACTIONS(1885), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [222318] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(2483), 1, sym__entry_separator, - ACTIONS(11405), 1, - anon_sym_RBRACK, - STATE(6600), 1, - aux_sym__multiple_types_repeat1, STATE(6904), 1, sym_comment, - [224163] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6905), 1, - sym_comment, - ACTIONS(11074), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [224175] = 4, + ACTIONS(2481), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [222332] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2334), 1, + ACTIONS(2316), 1, sym__entry_separator, - STATE(6906), 1, + STATE(6905), 1, sym_comment, - ACTIONS(2332), 2, + ACTIONS(2314), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [224189] = 3, - ACTIONS(251), 1, + [222346] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(11174), 1, + sym_hex_digit, + ACTIONS(11386), 1, + anon_sym_RBRACK, + STATE(6906), 1, + sym_comment, + STATE(6909), 1, + aux_sym_val_binary_repeat1, + [222362] = 5, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(6494), 1, + anon_sym_AT, + ACTIONS(7931), 1, + anon_sym_EQ, + STATE(5008), 1, + sym_param_cmd, STATE(6907), 1, sym_comment, - ACTIONS(10469), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [224201] = 4, + [222378] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1939), 1, + ACTIONS(9244), 1, sym__entry_separator, + ACTIONS(11388), 1, + anon_sym_GT2, + STATE(5510), 1, + aux_sym__multiple_types_repeat1, STATE(6908), 1, sym_comment, - ACTIONS(1937), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [224215] = 3, - ACTIONS(251), 1, + [222394] = 5, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(11174), 1, + sym_hex_digit, + ACTIONS(11390), 1, + anon_sym_RBRACK, + STATE(6729), 1, + aux_sym_val_binary_repeat1, STATE(6909), 1, sym_comment, - ACTIONS(11020), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [224227] = 4, + [222410] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11407), 1, - anon_sym_LPAREN, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(11392), 1, + anon_sym_RBRACK, + STATE(6436), 1, + aux_sym__multiple_types_repeat1, STATE(6910), 1, sym_comment, - ACTIONS(11409), 2, - sym_unescaped_interpolated_content, - anon_sym_SQUOTE, - [224241] = 5, - ACTIONS(251), 1, + [222426] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11149), 1, - sym_hex_digit, - ACTIONS(11411), 1, - anon_sym_RBRACK, STATE(6911), 1, sym_comment, - STATE(6913), 1, - aux_sym_val_binary_repeat1, - [224257] = 5, + ACTIONS(10293), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [222438] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5555), 1, - anon_sym_LPAREN2, - ACTIONS(5565), 1, - aux_sym__unquoted_in_list_token4, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(11394), 1, + anon_sym_GT2, + STATE(5511), 1, + aux_sym__multiple_types_repeat1, STATE(6912), 1, sym_comment, - STATE(7428), 1, - sym__expr_parenthesized_immediate, - [224273] = 5, - ACTIONS(251), 1, + [222454] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11149), 1, - sym_hex_digit, - ACTIONS(11413), 1, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(11396), 1, anon_sym_RBRACK, - STATE(6793), 1, - aux_sym_val_binary_repeat1, + STATE(6437), 1, + aux_sym__multiple_types_repeat1, STATE(6913), 1, sym_comment, - [224289] = 4, + [222470] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1951), 1, + ACTIONS(6604), 1, sym__entry_separator, + ACTIONS(11398), 1, + anon_sym_RBRACK, + STATE(6438), 1, + aux_sym__multiple_types_repeat1, STATE(6914), 1, sym_comment, - ACTIONS(1949), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [224303] = 5, + [222486] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11415), 1, + ACTIONS(11400), 1, anon_sym_RBRACK, - STATE(6485), 1, + STATE(6439), 1, aux_sym__multiple_types_repeat1, STATE(6915), 1, sym_comment, - [224319] = 5, + [222502] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5890), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11417), 1, + ACTIONS(11402), 1, anon_sym_RBRACK, - STATE(2874), 1, + STATE(6440), 1, aux_sym__multiple_types_repeat1, STATE(6916), 1, sym_comment, - [224335] = 3, - ACTIONS(251), 1, + [222518] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(11404), 1, + anon_sym_RBRACK, + STATE(6204), 1, + aux_sym__multiple_types_repeat1, STATE(6917), 1, sym_comment, - ACTIONS(6217), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [224347] = 5, + [222534] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11419), 1, + ACTIONS(11406), 1, anon_sym_RBRACK, - STATE(6486), 1, + STATE(6441), 1, aux_sym__multiple_types_repeat1, STATE(6918), 1, sym_comment, - [224363] = 5, + [222550] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11421), 1, + ACTIONS(11408), 1, anon_sym_RBRACK, - STATE(6487), 1, + STATE(6442), 1, aux_sym__multiple_types_repeat1, STATE(6919), 1, sym_comment, - [224379] = 5, + [222566] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11423), 1, + ACTIONS(11410), 1, anon_sym_RBRACK, - STATE(6488), 1, + STATE(6205), 1, aux_sym__multiple_types_repeat1, STATE(6920), 1, sym_comment, - [224395] = 4, + [222582] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1955), 1, + ACTIONS(6604), 1, sym__entry_separator, + ACTIONS(11412), 1, + anon_sym_RBRACK, + STATE(6206), 1, + aux_sym__multiple_types_repeat1, STATE(6921), 1, sym_comment, - ACTIONS(1953), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [224409] = 5, + [222598] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11425), 1, + ACTIONS(11414), 1, anon_sym_RBRACK, - STATE(6489), 1, + STATE(6443), 1, aux_sym__multiple_types_repeat1, STATE(6922), 1, sym_comment, - [224425] = 3, - ACTIONS(3), 1, + [222614] = 5, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(11174), 1, + sym_hex_digit, + ACTIONS(11416), 1, + anon_sym_RBRACK, + STATE(6736), 1, + aux_sym_val_binary_repeat1, STATE(6923), 1, sym_comment, - ACTIONS(1855), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [224437] = 4, + [222630] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5689), 1, + ACTIONS(6111), 1, sym__entry_separator, + ACTIONS(6163), 1, + anon_sym_RBRACE, + STATE(2967), 1, + aux_sym__multiple_types_repeat1, STATE(6924), 1, sym_comment, - ACTIONS(5687), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [224451] = 5, - ACTIONS(3), 1, + [222646] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(11427), 1, + ACTIONS(11174), 1, + sym_hex_digit, + ACTIONS(11418), 1, anon_sym_RBRACK, - STATE(6490), 1, - aux_sym__multiple_types_repeat1, + STATE(6729), 1, + aux_sym_val_binary_repeat1, STATE(6925), 1, sym_comment, - [224467] = 5, + [222662] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(2376), 1, sym__entry_separator, - ACTIONS(11429), 1, - anon_sym_RBRACK, - STATE(6491), 1, - aux_sym__multiple_types_repeat1, STATE(6926), 1, sym_comment, - [224483] = 5, - ACTIONS(3), 1, + ACTIONS(2374), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [222676] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(11431), 1, + ACTIONS(11174), 1, + sym_hex_digit, + ACTIONS(11420), 1, anon_sym_RBRACK, - STATE(6492), 1, - aux_sym__multiple_types_repeat1, STATE(6927), 1, sym_comment, - [224499] = 5, - ACTIONS(251), 1, + STATE(6930), 1, + aux_sym_val_binary_repeat1, + [222692] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1755), 1, - aux_sym_unquoted_token2, - ACTIONS(1757), 1, - anon_sym_LBRACE, - ACTIONS(10297), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(3562), 1, + sym__newline, + ACTIONS(3564), 1, + sym__space, + STATE(1162), 1, + aux_sym_ctrl_do_parenthesized_repeat2, STATE(6928), 1, sym_comment, - [224515] = 3, - ACTIONS(251), 1, + [222708] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2332), 1, + sym__entry_separator, STATE(6929), 1, sym_comment, - ACTIONS(11090), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [224527] = 5, - ACTIONS(3), 1, + ACTIONS(2330), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [222722] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5890), 1, - sym__entry_separator, - ACTIONS(11433), 1, + ACTIONS(11174), 1, + sym_hex_digit, + ACTIONS(11422), 1, anon_sym_RBRACK, - STATE(2804), 1, - aux_sym__multiple_types_repeat1, + STATE(6729), 1, + aux_sym_val_binary_repeat1, STATE(6930), 1, sym_comment, - [224543] = 3, - ACTIONS(251), 1, + [222738] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2487), 1, + sym__entry_separator, STATE(6931), 1, sym_comment, - ACTIONS(11072), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [224555] = 5, + ACTIONS(2485), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [222752] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5890), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11435), 1, + ACTIONS(11424), 1, anon_sym_RBRACK, - STATE(2876), 1, + STATE(6448), 1, aux_sym__multiple_types_repeat1, STATE(6932), 1, sym_comment, - [224571] = 3, - ACTIONS(251), 1, + [222768] = 4, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(1562), 1, + aux_sym_unquoted_token2, STATE(6933), 1, sym_comment, - ACTIONS(11072), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [224583] = 5, - ACTIONS(251), 1, + ACTIONS(2172), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [222782] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11149), 1, - sym_hex_digit, - ACTIONS(11437), 1, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(11426), 1, anon_sym_RBRACK, + STATE(6449), 1, + aux_sym__multiple_types_repeat1, STATE(6934), 1, sym_comment, - STATE(6937), 1, - aux_sym_val_binary_repeat1, - [224599] = 5, + [222798] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3494), 1, - sym__newline, - ACTIONS(3496), 1, - sym__space, - STATE(1135), 1, - aux_sym_ctrl_do_parenthesized_repeat2, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(11428), 1, + anon_sym_RBRACK, + STATE(6450), 1, + aux_sym__multiple_types_repeat1, STATE(6935), 1, sym_comment, - [224615] = 3, - ACTIONS(251), 1, + [222814] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(11430), 1, + anon_sym_RBRACK, + STATE(6451), 1, + aux_sym__multiple_types_repeat1, STATE(6936), 1, sym_comment, - ACTIONS(6225), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [224627] = 5, - ACTIONS(251), 1, + [222830] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11149), 1, - sym_hex_digit, - ACTIONS(11439), 1, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(11432), 1, anon_sym_RBRACK, - STATE(6793), 1, - aux_sym_val_binary_repeat1, + STATE(6452), 1, + aux_sym__multiple_types_repeat1, STATE(6937), 1, sym_comment, - [224643] = 5, + [222846] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - ACTIONS(4487), 1, - aux_sym_unquoted_token4, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(11434), 1, + anon_sym_RBRACK, + STATE(6453), 1, + aux_sym__multiple_types_repeat1, STATE(6938), 1, sym_comment, - STATE(7314), 1, - sym__expr_parenthesized_immediate, - [224659] = 5, + [222862] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11441), 1, + ACTIONS(11436), 1, anon_sym_RBRACK, - STATE(6498), 1, + STATE(6454), 1, aux_sym__multiple_types_repeat1, STATE(6939), 1, sym_comment, - [224675] = 3, - ACTIONS(251), 1, + [222878] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5663), 1, + sym__entry_separator, STATE(6940), 1, sym_comment, - ACTIONS(10329), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [224687] = 5, + ACTIONS(5661), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [222892] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1640), 1, - anon_sym_LPAREN2, - ACTIONS(8883), 1, - aux_sym__unquoted_in_record_token4, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(11438), 1, + anon_sym_RBRACK, + STATE(6455), 1, + aux_sym__multiple_types_repeat1, STATE(6941), 1, sym_comment, - STATE(7370), 1, - sym__expr_parenthesized_immediate, - [224703] = 5, + [222908] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(1639), 1, + anon_sym_RBRACE, + ACTIONS(1651), 1, sym__entry_separator, - ACTIONS(11443), 1, - anon_sym_RBRACK, - STATE(6499), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(8840), 1, + aux_sym__unquoted_in_record_token2, STATE(6942), 1, sym_comment, - [224719] = 5, - ACTIONS(3), 1, + [222924] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(11445), 1, - anon_sym_RBRACK, - STATE(6500), 1, - aux_sym__multiple_types_repeat1, STATE(6943), 1, sym_comment, - [224735] = 5, + ACTIONS(11095), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [222936] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6111), 1, sym__entry_separator, - ACTIONS(11447), 1, - anon_sym_RBRACK, - STATE(6501), 1, + ACTIONS(6177), 1, + anon_sym_RBRACE, + STATE(3034), 1, aux_sym__multiple_types_repeat1, STATE(6944), 1, sym_comment, - [224751] = 5, + [222952] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(11449), 1, - anon_sym_RBRACK, - STATE(6502), 1, - aux_sym__multiple_types_repeat1, STATE(6945), 1, sym_comment, - [224767] = 5, + ACTIONS(1961), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [222964] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(2036), 1, sym__entry_separator, - ACTIONS(11451), 1, - anon_sym_RBRACK, - STATE(6503), 1, - aux_sym__multiple_types_repeat1, STATE(6946), 1, sym_comment, - [224783] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(11453), 1, + ACTIONS(2030), 2, anon_sym_RBRACK, - STATE(6504), 1, - aux_sym__multiple_types_repeat1, + anon_sym_RBRACE, + [222978] = 3, + ACTIONS(247), 1, + anon_sym_POUND, STATE(6947), 1, sym_comment, - [224799] = 5, + ACTIONS(10289), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [222990] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11455), 1, + ACTIONS(11440), 1, anon_sym_RBRACK, - STATE(6505), 1, + STATE(6461), 1, aux_sym__multiple_types_repeat1, STATE(6948), 1, sym_comment, - [224815] = 5, - ACTIONS(251), 1, + [223006] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3420), 1, - anon_sym_COLON2, - ACTIONS(6284), 1, - anon_sym_LBRACE, - STATE(4625), 1, - sym_block, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(11442), 1, + anon_sym_RBRACK, + STATE(6462), 1, + aux_sym__multiple_types_repeat1, STATE(6949), 1, sym_comment, - [224831] = 4, + [223022] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2322), 1, + ACTIONS(6604), 1, sym__entry_separator, + ACTIONS(11444), 1, + anon_sym_RBRACK, + STATE(6700), 1, + aux_sym__multiple_types_repeat1, STATE(6950), 1, sym_comment, - ACTIONS(2320), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [224845] = 5, + [223038] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5890), 1, - sym__entry_separator, - ACTIONS(11457), 1, - anon_sym_RBRACK, - STATE(2827), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(5565), 1, + anon_sym_LPAREN2, + ACTIONS(5575), 1, + aux_sym__unquoted_in_list_token4, STATE(6951), 1, sym_comment, - [224861] = 5, - ACTIONS(251), 1, + STATE(7434), 1, + sym__expr_parenthesized_immediate, + [223054] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1757), 1, - anon_sym_LBRACE, - ACTIONS(9702), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(11459), 1, - anon_sym_DOT, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(11446), 1, + anon_sym_RBRACK, + STATE(6465), 1, + aux_sym__multiple_types_repeat1, STATE(6952), 1, sym_comment, - [224877] = 5, + [223070] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1638), 1, - anon_sym_RBRACK, - ACTIONS(1650), 1, + ACTIONS(1959), 1, sym__entry_separator, - ACTIONS(8909), 1, - aux_sym__unquoted_in_list_token2, STATE(6953), 1, sym_comment, - [224893] = 3, - ACTIONS(251), 1, + ACTIONS(1957), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [223084] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(11448), 1, + anon_sym_RBRACK, + STATE(6466), 1, + aux_sym__multiple_types_repeat1, STATE(6954), 1, sym_comment, - ACTIONS(11022), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [224905] = 5, + [223100] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11461), 1, + ACTIONS(11450), 1, anon_sym_RBRACK, - STATE(6512), 1, + STATE(6467), 1, aux_sym__multiple_types_repeat1, STATE(6955), 1, sym_comment, - [224921] = 5, - ACTIONS(3), 1, + [223116] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(11463), 1, - anon_sym_GT2, - STATE(5545), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(3442), 1, + anon_sym_COLON2, + ACTIONS(6313), 1, + anon_sym_LBRACE, + STATE(6185), 1, + sym_block, STATE(6956), 1, sym_comment, - [224937] = 5, + [223132] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11465), 1, + ACTIONS(11452), 1, anon_sym_RBRACK, - STATE(6513), 1, + STATE(6468), 1, aux_sym__multiple_types_repeat1, STATE(6957), 1, sym_comment, - [224953] = 5, - ACTIONS(3), 1, + [223148] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(11467), 1, - anon_sym_RBRACK, - STATE(6514), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(1725), 1, + anon_sym_SEMI, + ACTIONS(3842), 1, + sym__newline, + STATE(1615), 1, + aux_sym_shebang_repeat1, STATE(6958), 1, sym_comment, - [224969] = 5, + [223164] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(2409), 1, sym__entry_separator, - ACTIONS(11469), 1, - anon_sym_RBRACK, - STATE(6515), 1, - aux_sym__multiple_types_repeat1, STATE(6959), 1, sym_comment, - [224985] = 5, + ACTIONS(2407), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [223178] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(2463), 1, sym__entry_separator, - ACTIONS(11471), 1, - anon_sym_RBRACK, - STATE(6391), 1, - aux_sym__multiple_types_repeat1, STATE(6960), 1, sym_comment, - [225001] = 5, + ACTIONS(2461), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [223192] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(1983), 1, sym__entry_separator, - ACTIONS(11473), 1, - anon_sym_RBRACK, - STATE(6516), 1, - aux_sym__multiple_types_repeat1, STATE(6961), 1, sym_comment, - [225017] = 4, + ACTIONS(1977), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [223206] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2150), 1, - anon_sym_PIPE, + ACTIONS(6111), 1, + sym__entry_separator, + ACTIONS(6167), 1, + anon_sym_RBRACE, + STATE(3051), 1, + aux_sym__multiple_types_repeat1, STATE(6962), 1, sym_comment, - ACTIONS(2148), 2, - anon_sym_EQ_GT, - aux_sym_unquoted_token4, - [225031] = 5, - ACTIONS(3), 1, + [223222] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(11475), 1, - anon_sym_RBRACK, - STATE(6517), 1, - aux_sym__multiple_types_repeat1, STATE(6963), 1, sym_comment, - [225047] = 5, + ACTIONS(10317), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [223234] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11477), 1, + ACTIONS(11454), 1, anon_sym_RBRACK, - STATE(6518), 1, + STATE(6473), 1, aux_sym__multiple_types_repeat1, STATE(6964), 1, sym_comment, - [225063] = 3, - ACTIONS(251), 1, + [223250] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6111), 1, + sym__entry_separator, + ACTIONS(6171), 1, + anon_sym_RBRACE, + STATE(3052), 1, + aux_sym__multiple_types_repeat1, STATE(6965), 1, sym_comment, - ACTIONS(11139), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [225075] = 5, + [223266] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(2479), 1, sym__entry_separator, - ACTIONS(11479), 1, - anon_sym_RBRACK, - STATE(6519), 1, - aux_sym__multiple_types_repeat1, STATE(6966), 1, sym_comment, - [225091] = 3, - ACTIONS(251), 1, + ACTIONS(2477), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [223280] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6967), 1, - sym_comment, - ACTIONS(11141), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [225103] = 5, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(11456), 1, + anon_sym_RBRACK, + STATE(6474), 1, + aux_sym__multiple_types_repeat1, + STATE(6967), 1, + sym_comment, + [223296] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11481), 1, - anon_sym_GT2, - STATE(5549), 1, + ACTIONS(11458), 1, + anon_sym_RBRACK, + STATE(6475), 1, aux_sym__multiple_types_repeat1, STATE(6968), 1, sym_comment, - [225119] = 4, + [223312] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6148), 1, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(11460), 1, anon_sym_RBRACK, + STATE(6476), 1, + aux_sym__multiple_types_repeat1, STATE(6969), 1, sym_comment, - ACTIONS(6150), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [225133] = 5, + [223328] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11483), 1, + ACTIONS(11462), 1, anon_sym_RBRACK, - STATE(6523), 1, + STATE(6477), 1, aux_sym__multiple_types_repeat1, STATE(6970), 1, sym_comment, - [225149] = 3, - ACTIONS(251), 1, + [223344] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(11464), 1, + anon_sym_RBRACK, + STATE(6478), 1, + aux_sym__multiple_types_repeat1, STATE(6971), 1, sym_comment, - ACTIONS(11485), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [225161] = 5, + [223360] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11487), 1, + ACTIONS(11466), 1, anon_sym_RBRACK, - STATE(6524), 1, + STATE(6479), 1, aux_sym__multiple_types_repeat1, STATE(6972), 1, sym_comment, - [225177] = 5, + [223376] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(11489), 1, - anon_sym_RBRACK, - STATE(6525), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(11468), 1, + anon_sym_DQUOTE, STATE(6973), 1, sym_comment, - [225193] = 5, + ACTIONS(11470), 2, + sym__escaped_str_content, + sym_escape_sequence, + [223390] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11491), 1, + ACTIONS(11472), 1, anon_sym_RBRACK, - STATE(6526), 1, + STATE(6480), 1, aux_sym__multiple_types_repeat1, STATE(6974), 1, sym_comment, - [225209] = 5, - ACTIONS(3), 1, + [223406] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(11493), 1, - anon_sym_RBRACK, - STATE(6527), 1, - aux_sym__multiple_types_repeat1, STATE(6975), 1, sym_comment, - [225225] = 5, + ACTIONS(10526), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [223418] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(1879), 1, sym__entry_separator, - ACTIONS(11495), 1, - anon_sym_RBRACK, - STATE(6528), 1, - aux_sym__multiple_types_repeat1, STATE(6976), 1, sym_comment, - [225241] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(11497), 1, + ACTIONS(1877), 2, anon_sym_RBRACK, - STATE(6529), 1, - aux_sym__multiple_types_repeat1, + anon_sym_RBRACE, + [223432] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10263), 1, + anon_sym_PIPE, + ACTIONS(11474), 1, + anon_sym_EQ_GT, + STATE(6902), 1, + aux_sym_match_pattern_repeat1, STATE(6977), 1, sym_comment, - [225257] = 4, + [223448] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5693), 1, + ACTIONS(6604), 1, sym__entry_separator, + ACTIONS(11476), 1, + anon_sym_RBRACK, + STATE(6553), 1, + aux_sym__multiple_types_repeat1, STATE(6978), 1, sym_comment, - ACTIONS(5691), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [225271] = 5, - ACTIONS(251), 1, + [223464] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11149), 1, - sym_hex_digit, - ACTIONS(11499), 1, - anon_sym_RBRACK, + ACTIONS(9787), 1, + anon_sym_LBRACK, STATE(6979), 1, sym_comment, - STATE(6990), 1, - aux_sym_val_binary_repeat1, - [225287] = 5, + STATE(7011), 1, + sym_val_list, + STATE(7029), 1, + aux_sym_val_table_repeat1, + [223480] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(11501), 1, - anon_sym_RBRACK, - STATE(6530), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(1641), 1, + anon_sym_LPAREN2, + ACTIONS(8840), 1, + aux_sym__unquoted_in_record_token4, STATE(6980), 1, sym_comment, - [225303] = 3, - ACTIONS(251), 1, + STATE(7315), 1, + sym__expr_parenthesized_immediate, + [223496] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6981), 1, sym_comment, - ACTIONS(10337), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [225315] = 4, - ACTIONS(251), 1, + ACTIONS(11478), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [223508] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1540), 1, - aux_sym_unquoted_token2, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(11480), 1, + anon_sym_RBRACK, + STATE(6568), 1, + aux_sym__multiple_types_repeat1, STATE(6982), 1, sym_comment, - ACTIONS(2228), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [225329] = 5, + [223524] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1638), 1, - sym__newline, - ACTIONS(1650), 1, - sym__space, - ACTIONS(7177), 1, - aux_sym_unquoted_token2, + ACTIONS(5691), 1, + sym__entry_separator, STATE(6983), 1, sym_comment, - [225345] = 4, - ACTIONS(251), 1, + ACTIONS(5689), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [223538] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1822), 1, - aux_sym_unquoted_token2, + ACTIONS(6111), 1, + sym__entry_separator, + ACTIONS(6143), 1, + anon_sym_RBRACE, + STATE(3030), 1, + aux_sym__multiple_types_repeat1, STATE(6984), 1, sym_comment, - ACTIONS(2222), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [225359] = 4, + [223554] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11503), 1, - sym__table_head_separator, + ACTIONS(11482), 1, + anon_sym_POUND_BANG, + ACTIONS(11484), 1, + sym__newline, + STATE(6781), 1, + aux_sym_shebang_repeat1, STATE(6985), 1, sym_comment, - ACTIONS(1016), 2, - anon_sym_RBRACK, - sym__entry_separator, - [225373] = 4, - ACTIONS(251), 1, + [223570] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1822), 1, - aux_sym_unquoted_token2, + ACTIONS(5903), 1, + sym__entry_separator, + ACTIONS(11486), 1, + anon_sym_RBRACK, + STATE(2831), 1, + aux_sym__multiple_types_repeat1, STATE(6986), 1, sym_comment, - ACTIONS(1820), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [225387] = 4, + [223586] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2388), 1, + ACTIONS(2471), 1, sym__entry_separator, STATE(6987), 1, sym_comment, - ACTIONS(2386), 2, + ACTIONS(2469), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [225401] = 5, + [223600] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - ACTIONS(7177), 1, - aux_sym_unquoted_token4, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(11488), 1, + anon_sym_RBRACK, + STATE(6325), 1, + aux_sym__multiple_types_repeat1, STATE(6988), 1, sym_comment, - STATE(7299), 1, - sym__expr_parenthesized_immediate, - [225417] = 3, - ACTIONS(251), 1, + [223616] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1891), 1, + sym__entry_separator, STATE(6989), 1, sym_comment, - ACTIONS(10337), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [225429] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(11149), 1, - sym_hex_digit, - ACTIONS(11505), 1, + ACTIONS(1889), 2, anon_sym_RBRACK, - STATE(6793), 1, - aux_sym_val_binary_repeat1, + anon_sym_RBRACE, + [223630] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1835), 1, + sym__entry_separator, STATE(6990), 1, sym_comment, - [225445] = 3, - ACTIONS(251), 1, + ACTIONS(1833), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [223644] = 5, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(11174), 1, + sym_hex_digit, + ACTIONS(11490), 1, + anon_sym_RBRACK, STATE(6991), 1, sym_comment, - ACTIONS(10289), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [225457] = 5, - ACTIONS(3), 1, + STATE(6999), 1, + aux_sym_val_binary_repeat1, + [223660] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(11507), 1, - anon_sym_RBRACK, - STATE(6293), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(4938), 1, + anon_sym_LBRACE, + ACTIONS(11492), 1, + sym_long_flag_identifier, + ACTIONS(11494), 1, + anon_sym_EQ2, STATE(6992), 1, sym_comment, - [225473] = 5, + [223676] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - ACTIONS(4904), 1, - aux_sym_unquoted_token4, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(11496), 1, + anon_sym_RBRACK, + STATE(6580), 1, + aux_sym__multiple_types_repeat1, STATE(6993), 1, sym_comment, - STATE(7393), 1, - sym__expr_parenthesized_immediate, - [225489] = 4, - ACTIONS(251), 1, + [223692] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11511), 1, - anon_sym_COMMA, + ACTIONS(5667), 1, + sym__entry_separator, STATE(6994), 1, sym_comment, - ACTIONS(11509), 2, + ACTIONS(5665), 2, anon_sym_RBRACK, - sym_hex_digit, - [225503] = 4, + anon_sym_GT2, + [223706] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2025), 1, + ACTIONS(2320), 1, sym__entry_separator, STATE(6995), 1, sym_comment, - ACTIONS(2019), 2, + ACTIONS(2318), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [225517] = 5, - ACTIONS(3), 1, + [223720] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6085), 1, - sym__entry_separator, - ACTIONS(6137), 1, - anon_sym_RBRACE, - STATE(3006), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(3842), 1, + sym__newline, + ACTIONS(11498), 1, + anon_sym_COLON, + STATE(1615), 1, + aux_sym_shebang_repeat1, STATE(6996), 1, sym_comment, - [225533] = 5, + [223736] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1640), 1, + ACTIONS(4452), 1, anon_sym_LPAREN2, - ACTIONS(1652), 1, - aux_sym__unquoted_in_record_token4, + ACTIONS(7179), 1, + aux_sym_unquoted_token4, STATE(6997), 1, sym_comment, - STATE(7306), 1, + STATE(7293), 1, sym__expr_parenthesized_immediate, - [225549] = 4, + [223752] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2033), 1, + ACTIONS(6111), 1, sym__entry_separator, + ACTIONS(6145), 1, + anon_sym_RBRACE, + STATE(3042), 1, + aux_sym__multiple_types_repeat1, STATE(6998), 1, sym_comment, - ACTIONS(2027), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [225563] = 5, - ACTIONS(3), 1, + [223768] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(11513), 1, + ACTIONS(11174), 1, + sym_hex_digit, + ACTIONS(11500), 1, anon_sym_RBRACK, - STATE(6294), 1, - aux_sym__multiple_types_repeat1, + STATE(6729), 1, + aux_sym_val_binary_repeat1, STATE(6999), 1, sym_comment, - [225579] = 5, + [223784] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(11515), 1, - anon_sym_RBRACK, - STATE(6295), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(11502), 1, + anon_sym_LPAREN, STATE(7000), 1, sym_comment, - [225595] = 5, - ACTIONS(3), 1, + ACTIONS(11504), 2, + sym_unescaped_interpolated_content, + anon_sym_SQUOTE, + [223798] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(11517), 1, + ACTIONS(11174), 1, + sym_hex_digit, + ACTIONS(11506), 1, anon_sym_RBRACK, - STATE(6296), 1, - aux_sym__multiple_types_repeat1, + STATE(6729), 1, + aux_sym_val_binary_repeat1, STATE(7001), 1, sym_comment, - [225611] = 5, + [223814] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11519), 1, + ACTIONS(11508), 1, anon_sym_RBRACK, - STATE(6297), 1, + STATE(6279), 1, aux_sym__multiple_types_repeat1, STATE(7002), 1, sym_comment, - [225627] = 5, + [223830] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(11521), 1, - anon_sym_RBRACK, - STATE(6298), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(2302), 1, + anon_sym_RBRACE, STATE(7003), 1, sym_comment, - [225643] = 5, + ACTIONS(2304), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [223844] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(11523), 1, - anon_sym_RBRACK, - STATE(6299), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(2298), 1, + anon_sym_RBRACE, STATE(7004), 1, sym_comment, - [225659] = 5, + ACTIONS(2300), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [223858] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(11525), 1, - anon_sym_RBRACK, - STATE(6300), 1, + ACTIONS(11510), 1, + anon_sym_COLON, + STATE(5663), 1, aux_sym__multiple_types_repeat1, STATE(7005), 1, sym_comment, - [225675] = 5, + [223874] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1638), 1, - anon_sym_RBRACE, - ACTIONS(1650), 1, + ACTIONS(1991), 1, sym__entry_separator, - ACTIONS(8883), 1, - aux_sym__unquoted_in_record_token2, STATE(7006), 1, sym_comment, - [225691] = 3, - ACTIONS(251), 1, + ACTIONS(1985), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [223888] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1641), 1, + anon_sym_LPAREN2, + ACTIONS(1653), 1, + aux_sym__unquoted_in_record_token4, STATE(7007), 1, sym_comment, - ACTIONS(11080), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [225703] = 4, + STATE(7303), 1, + sym__expr_parenthesized_immediate, + [223904] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2338), 1, + ACTIONS(6604), 1, sym__entry_separator, + ACTIONS(11512), 1, + anon_sym_RBRACK, + STATE(6280), 1, + aux_sym__multiple_types_repeat1, STATE(7008), 1, sym_comment, - ACTIONS(2336), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [225717] = 4, + [223920] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1967), 1, - sym__entry_separator, + ACTIONS(11514), 1, + sym__table_head_separator, STATE(7009), 1, sym_comment, - ACTIONS(1965), 2, + ACTIONS(1002), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [225731] = 5, - ACTIONS(251), 1, + sym__entry_separator, + [223934] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11149), 1, - sym_hex_digit, - ACTIONS(11527), 1, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(11516), 1, anon_sym_RBRACK, - STATE(6793), 1, - aux_sym_val_binary_repeat1, + STATE(6281), 1, + aux_sym__multiple_types_repeat1, STATE(7010), 1, sym_comment, - [225747] = 4, + [223950] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2344), 1, + ACTIONS(6604), 1, sym__entry_separator, + ACTIONS(11518), 1, + anon_sym_RBRACK, + STATE(6636), 1, + aux_sym__multiple_types_repeat1, STATE(7011), 1, sym_comment, - ACTIONS(2342), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [225761] = 5, + [223966] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6085), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(6139), 1, - anon_sym_RBRACE, - STATE(3007), 1, + ACTIONS(11520), 1, + anon_sym_RBRACK, + STATE(6282), 1, aux_sym__multiple_types_repeat1, STATE(7012), 1, sym_comment, - [225777] = 4, + [223982] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2348), 1, - sym__entry_separator, + ACTIONS(2063), 1, + aux_sym_unquoted_token4, + ACTIONS(5999), 1, + anon_sym_EQ_GT, + ACTIONS(6004), 1, + anon_sym_PIPE, STATE(7013), 1, sym_comment, - ACTIONS(2346), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [225791] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym_unquoted_token2, - STATE(7014), 1, - sym_comment, - ACTIONS(1810), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [225805] = 4, + [223998] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2372), 1, + ACTIONS(1903), 1, sym__entry_separator, - STATE(7015), 1, + STATE(7014), 1, sym_comment, - ACTIONS(2370), 2, + ACTIONS(1901), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [225819] = 4, + [224012] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2376), 1, + ACTIONS(6604), 1, sym__entry_separator, + ACTIONS(11522), 1, + anon_sym_RBRACK, + STATE(6283), 1, + aux_sym__multiple_types_repeat1, + STATE(7015), 1, + sym_comment, + [224028] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3444), 1, + anon_sym_COLON2, + ACTIONS(6313), 1, + anon_sym_LBRACE, + STATE(6185), 1, + sym_block, STATE(7016), 1, sym_comment, - ACTIONS(2374), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [225833] = 4, + [224044] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1971), 1, + ACTIONS(2475), 1, sym__entry_separator, STATE(7017), 1, sym_comment, - ACTIONS(1969), 2, + ACTIONS(2473), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [225847] = 4, + [224058] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11529), 1, - sym__table_head_separator, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(11524), 1, + anon_sym_RBRACK, + STATE(6284), 1, + aux_sym__multiple_types_repeat1, STATE(7018), 1, sym_comment, - ACTIONS(1016), 2, - anon_sym_RBRACK, - sym__entry_separator, - [225861] = 5, + [224074] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11531), 1, + ACTIONS(11526), 1, anon_sym_RBRACK, - STATE(3585), 1, + STATE(6285), 1, aux_sym__multiple_types_repeat1, STATE(7019), 1, sym_comment, - [225877] = 4, - ACTIONS(251), 1, + [224090] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7078), 1, - aux_sym_unquoted_token2, + ACTIONS(3444), 1, + anon_sym_COLON2, + ACTIONS(6313), 1, + anon_sym_LBRACE, + STATE(6193), 1, + sym_block, STATE(7020), 1, sym_comment, - ACTIONS(1650), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [225891] = 3, - ACTIONS(251), 1, + [224106] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(11528), 1, + anon_sym_GT2, + STATE(5454), 1, + aux_sym__multiple_types_repeat1, STATE(7021), 1, sym_comment, - ACTIONS(10411), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [225903] = 4, - ACTIONS(3), 1, + [224122] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1907), 1, - sym__entry_separator, STATE(7022), 1, sym_comment, - ACTIONS(1905), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [225917] = 5, - ACTIONS(3), 1, + ACTIONS(10431), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [224134] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(11533), 1, - anon_sym_GT2, - STATE(5558), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(3444), 1, + anon_sym_COLON2, + ACTIONS(6313), 1, + anon_sym_LBRACE, + STATE(4589), 1, + sym_block, STATE(7023), 1, sym_comment, - [225933] = 5, + [224150] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(2228), 1, + anon_sym_RBRACE, + ACTIONS(2230), 1, sym__entry_separator, - ACTIONS(11535), 1, - anon_sym_RBRACK, - STATE(3587), 1, + STATE(606), 1, aux_sym__multiple_types_repeat1, STATE(7024), 1, sym_comment, - [225949] = 4, + [224166] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2462), 1, + ACTIONS(9244), 1, sym__entry_separator, + ACTIONS(11530), 1, + anon_sym_GT2, + STATE(5455), 1, + aux_sym__multiple_types_repeat1, STATE(7025), 1, sym_comment, - ACTIONS(2460), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [225963] = 3, - ACTIONS(251), 1, + [224182] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(7026), 1, sym_comment, - ACTIONS(10291), 3, + ACTIONS(10431), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [225975] = 5, - ACTIONS(251), 1, + [224194] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3442), 1, - anon_sym_COLON2, - ACTIONS(6284), 1, - anon_sym_LBRACE, - STATE(6672), 1, - sym_block, + ACTIONS(2196), 1, + aux_sym_unquoted_token2, STATE(7027), 1, sym_comment, - [225991] = 3, - ACTIONS(251), 1, + ACTIONS(2194), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [224208] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(7028), 1, sym_comment, - ACTIONS(11537), 3, + ACTIONS(10317), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [226003] = 5, - ACTIONS(3), 1, + [224220] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(11539), 1, - anon_sym_RBRACK, - STATE(6625), 1, - aux_sym__multiple_types_repeat1, - STATE(7029), 1, + ACTIONS(11532), 1, + anon_sym_LBRACK, + STATE(7312), 1, + sym_val_list, + STATE(7029), 2, sym_comment, - [226019] = 3, - ACTIONS(251), 1, + aux_sym_val_table_repeat1, + [224234] = 4, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(1701), 1, + aux_sym_unquoted_token2, STATE(7030), 1, sym_comment, - ACTIONS(10974), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [226031] = 5, - ACTIONS(251), 1, + ACTIONS(1703), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [224248] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11149), 1, - sym_hex_digit, - ACTIONS(11541), 1, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(11535), 1, anon_sym_RBRACK, - STATE(6793), 1, - aux_sym_val_binary_repeat1, + STATE(6286), 1, + aux_sym__multiple_types_repeat1, STATE(7031), 1, sym_comment, - [226047] = 5, - ACTIONS(251), 1, + [224264] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3442), 1, - anon_sym_COLON2, - ACTIONS(6284), 1, - anon_sym_LBRACE, - STATE(6683), 1, - sym_block, + ACTIONS(7070), 1, + aux_sym_unquoted_token2, STATE(7032), 1, sym_comment, - [226063] = 4, + ACTIONS(1651), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [224278] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1650), 1, + ACTIONS(6604), 1, sym__entry_separator, + ACTIONS(11537), 1, + anon_sym_RBRACK, + STATE(6189), 1, + aux_sym__multiple_types_repeat1, STATE(7033), 1, sym_comment, - ACTIONS(1638), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [226077] = 3, - ACTIONS(251), 1, + [224294] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(11539), 1, + sym__table_head_separator, STATE(7034), 1, sym_comment, - ACTIONS(10389), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [226089] = 5, - ACTIONS(251), 1, + ACTIONS(1002), 2, + anon_sym_RBRACK, + sym__entry_separator, + [224308] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3442), 1, - anon_sym_COLON2, - ACTIONS(6284), 1, - anon_sym_LBRACE, - STATE(4625), 1, - sym_block, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(11541), 1, + anon_sym_COLON, + STATE(5666), 1, + aux_sym__multiple_types_repeat1, STATE(7035), 1, sym_comment, - [226105] = 5, + [224324] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5722), 1, - sym__entry_separator, ACTIONS(11543), 1, - anon_sym_RBRACK, - STATE(2696), 1, - aux_sym__multiple_types_repeat1, + anon_sym_LPAREN, STATE(7036), 1, sym_comment, - [226121] = 4, + ACTIONS(11545), 2, + sym_unescaped_interpolated_content, + anon_sym_SQUOTE, + [224338] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2041), 1, - sym__entry_separator, + ACTIONS(2067), 1, + anon_sym_LPAREN2, + ACTIONS(2071), 1, + aux_sym_unquoted_token4, + ACTIONS(11547), 1, + sym__space, STATE(7037), 1, sym_comment, - ACTIONS(2035), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [226135] = 3, - ACTIONS(251), 1, + [224354] = 4, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(1693), 1, + aux_sym_unquoted_token2, STATE(7038), 1, sym_comment, - ACTIONS(10389), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [226147] = 5, + ACTIONS(1695), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [224368] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5555), 1, - anon_sym_LPAREN2, - ACTIONS(8909), 1, - aux_sym__unquoted_in_list_token4, + ACTIONS(2443), 1, + sym__entry_separator, STATE(7039), 1, sym_comment, - STATE(7428), 1, - sym__expr_parenthesized_immediate, - [226163] = 3, - ACTIONS(251), 1, + ACTIONS(2441), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [224382] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1919), 1, + sym__entry_separator, STATE(7040), 1, sym_comment, - ACTIONS(11026), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [226175] = 3, - ACTIONS(251), 1, + ACTIONS(1917), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [224396] = 5, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(3442), 1, + anon_sym_COLON2, + ACTIONS(6313), 1, + anon_sym_LBRACE, + STATE(6193), 1, + sym_block, STATE(7041), 1, sym_comment, - ACTIONS(10403), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [226187] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7042), 1, - sym_comment, - ACTIONS(10405), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [226199] = 4, + [224412] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5697), 1, + ACTIONS(2387), 1, sym__entry_separator, - STATE(7043), 1, + STATE(7042), 1, sym_comment, - ACTIONS(5695), 2, + ACTIONS(2385), 2, anon_sym_RBRACK, - anon_sym_GT2, - [226213] = 3, - ACTIONS(251), 1, + anon_sym_RBRACE, + [224426] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7044), 1, + ACTIONS(1703), 1, + anon_sym_LBRACE, + ACTIONS(9681), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(11549), 1, + anon_sym_DOT, + STATE(7043), 1, sym_comment, - ACTIONS(10407), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [226225] = 3, - ACTIONS(251), 1, + [224442] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7045), 1, + ACTIONS(9787), 1, + anon_sym_LBRACK, + STATE(6726), 1, + sym_val_list, + STATE(7029), 1, + aux_sym_val_table_repeat1, + STATE(7044), 1, sym_comment, - ACTIONS(11545), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [226237] = 4, + [224458] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11547), 1, - sym__table_head_separator, - STATE(7046), 1, - sym_comment, - ACTIONS(1016), 2, - anon_sym_RBRACK, + ACTIONS(9244), 1, sym__entry_separator, - [226251] = 5, + ACTIONS(11551), 1, + anon_sym_GT2, + STATE(5459), 1, + aux_sym__multiple_types_repeat1, + STATE(7045), 1, + sym_comment, + [224474] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11549), 1, + ACTIONS(11553), 1, anon_sym_RBRACK, - STATE(6188), 1, + STATE(6588), 1, aux_sym__multiple_types_repeat1, - STATE(7047), 1, + STATE(7046), 1, sym_comment, - [226267] = 4, + [224490] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2049), 1, + ACTIONS(1863), 1, sym__entry_separator, - STATE(7048), 1, + STATE(7047), 1, sym_comment, - ACTIONS(2043), 2, + ACTIONS(1861), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [226281] = 4, - ACTIONS(3), 1, + [224504] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1012), 1, - sym__entry_separator, + ACTIONS(1766), 1, + aux_sym_unquoted_token2, + STATE(7048), 1, + sym_comment, + ACTIONS(1768), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [224518] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9787), 1, + anon_sym_LBRACK, + STATE(6853), 1, + sym_val_list, + STATE(7029), 1, + aux_sym_val_table_repeat1, STATE(7049), 1, sym_comment, - ACTIONS(1016), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [226295] = 5, - ACTIONS(3), 1, + [224534] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2130), 1, - anon_sym_LPAREN2, - ACTIONS(2134), 1, - aux_sym_unquoted_token4, - ACTIONS(11551), 1, - sym__space, + ACTIONS(9787), 1, + anon_sym_LBRACK, + STATE(6861), 1, + sym_val_list, + STATE(7029), 1, + aux_sym_val_table_repeat1, STATE(7050), 1, sym_comment, - [226311] = 4, + [224550] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2352), 1, + ACTIONS(9244), 1, sym__entry_separator, + ACTIONS(11555), 1, + anon_sym_GT2, + STATE(5437), 1, + aux_sym__multiple_types_repeat1, STATE(7051), 1, sym_comment, - ACTIONS(2350), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [226325] = 4, - ACTIONS(3), 1, + [224566] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2356), 1, - sym__entry_separator, + ACTIONS(1792), 1, + aux_sym_unquoted_token2, STATE(7052), 1, sym_comment, - ACTIONS(2354), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [226339] = 4, + ACTIONS(1794), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [224580] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1985), 1, + ACTIONS(9244), 1, sym__entry_separator, + ACTIONS(11557), 1, + anon_sym_GT2, + STATE(5438), 1, + aux_sym__multiple_types_repeat1, STATE(7053), 1, sym_comment, - ACTIONS(1983), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [226353] = 3, - ACTIONS(251), 1, + [224596] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(11559), 1, + anon_sym_RBRACK, + STATE(6190), 1, + aux_sym__multiple_types_repeat1, STATE(7054), 1, sym_comment, - ACTIONS(11038), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [226365] = 4, + [224612] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(11174), 1, + sym_hex_digit, + ACTIONS(11561), 1, + anon_sym_RBRACK, + STATE(6925), 1, + aux_sym_val_binary_repeat1, + STATE(7055), 1, + sym_comment, + [224628] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2360), 1, + ACTIONS(2391), 1, sym__entry_separator, - STATE(7055), 1, + STATE(7056), 1, sym_comment, - ACTIONS(2358), 2, + ACTIONS(2389), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [226379] = 5, - ACTIONS(251), 1, + [224642] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(6764), 1, + STATE(6993), 1, sym_val_list, - STATE(7056), 1, - sym_comment, - STATE(7121), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, - [226395] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(11149), 1, - sym_hex_digit, - ACTIONS(11553), 1, - anon_sym_RBRACK, - STATE(6879), 1, - aux_sym_val_binary_repeat1, STATE(7057), 1, sym_comment, - [226411] = 5, + [224658] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2130), 1, - anon_sym_LPAREN2, - ACTIONS(2134), 1, - aux_sym_unquoted_token4, - ACTIONS(11555), 1, - sym__space, + ACTIONS(2366), 1, + sym__entry_separator, STATE(7058), 1, sym_comment, - [226427] = 5, + ACTIONS(2364), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [224672] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(2395), 1, sym__entry_separator, - ACTIONS(11557), 1, - anon_sym_RBRACK, - STATE(6216), 1, - aux_sym__multiple_types_repeat1, STATE(7059), 1, sym_comment, - [226443] = 5, - ACTIONS(251), 1, + ACTIONS(2393), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [224686] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9773), 1, - anon_sym_LBRACK, - STATE(6891), 1, - sym_val_list, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(11563), 1, + anon_sym_GT2, + STATE(5460), 1, + aux_sym__multiple_types_repeat1, STATE(7060), 1, sym_comment, - STATE(7121), 1, - aux_sym_val_table_repeat1, - [226459] = 4, + [224702] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2466), 1, + ACTIONS(6604), 1, sym__entry_separator, + ACTIONS(11565), 1, + anon_sym_RBRACK, + STATE(6643), 1, + aux_sym__multiple_types_repeat1, STATE(7061), 1, sym_comment, - ACTIONS(2464), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [226473] = 5, - ACTIONS(251), 1, + [224718] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9773), 1, - anon_sym_LBRACK, - STATE(6711), 1, - sym_val_list, + ACTIONS(1907), 1, + sym__entry_separator, STATE(7062), 1, sym_comment, - STATE(7121), 1, - aux_sym_val_table_repeat1, - [226489] = 3, - ACTIONS(251), 1, + ACTIONS(1905), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [224732] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(7063), 1, sym_comment, - ACTIONS(10419), 3, + ACTIONS(11043), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [226501] = 3, - ACTIONS(3), 1, + [224744] = 5, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(9787), 1, + anon_sym_LBRACK, + STATE(7029), 1, + aux_sym_val_table_repeat1, STATE(7064), 1, sym_comment, - ACTIONS(2120), 3, - sym__newline, - sym__space, - anon_sym_COLON2, - [226513] = 5, - ACTIONS(251), 1, + STATE(7130), 1, + sym_val_list, + [224760] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4860), 1, - anon_sym_LBRACE, - ACTIONS(11559), 1, - sym_long_flag_identifier, - ACTIONS(11561), 1, - anon_sym_EQ2, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(11567), 1, + anon_sym_RBRACK, + STATE(6646), 1, + aux_sym__multiple_types_repeat1, STATE(7065), 1, sym_comment, - [226529] = 5, - ACTIONS(251), 1, + [224776] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, - anon_sym_LBRACK, - STATE(7029), 1, - sym_val_list, STATE(7066), 1, sym_comment, - STATE(7121), 1, - aux_sym_val_table_repeat1, - [226545] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1755), 1, - aux_sym_unquoted_token2, - STATE(7067), 1, - sym_comment, - ACTIONS(1757), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [226559] = 4, + ACTIONS(11569), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [224788] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1877), 1, + ACTIONS(9244), 1, sym__entry_separator, - STATE(7068), 1, + ACTIONS(11571), 1, + anon_sym_GT2, + STATE(5443), 1, + aux_sym__multiple_types_repeat1, + STATE(7067), 1, sym_comment, - ACTIONS(1875), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [226573] = 4, - ACTIONS(251), 1, + [224804] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1711), 1, + ACTIONS(1766), 1, aux_sym_unquoted_token2, - STATE(7069), 1, + ACTIONS(1768), 1, + anon_sym_LBRACE, + ACTIONS(11573), 1, + aux_sym__immediate_decimal_token2, + STATE(7068), 1, sym_comment, - ACTIONS(1713), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [226587] = 5, + [224820] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(11563), 1, + ACTIONS(11575), 1, anon_sym_GT2, - STATE(5516), 1, + STATE(5444), 1, aux_sym__multiple_types_repeat1, + STATE(7069), 1, + sym_comment, + [224836] = 3, + ACTIONS(247), 1, + anon_sym_POUND, STATE(7070), 1, sym_comment, - [226603] = 5, - ACTIONS(251), 1, + ACTIONS(11577), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [224848] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6466), 1, - anon_sym_AT, - ACTIONS(11565), 1, - anon_sym_GT2, + ACTIONS(2423), 1, + sym__entry_separator, STATE(7071), 1, sym_comment, - STATE(7511), 1, - sym_param_cmd, - [226619] = 5, + ACTIONS(2421), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [224862] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(11567), 1, + ACTIONS(11579), 1, anon_sym_GT2, - STATE(5546), 1, + STATE(5447), 1, aux_sym__multiple_types_repeat1, STATE(7072), 1, sym_comment, - [226635] = 4, + [224878] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2444), 1, + ACTIONS(9244), 1, sym__entry_separator, + ACTIONS(11581), 1, + anon_sym_GT2, + STATE(5448), 1, + aux_sym__multiple_types_repeat1, STATE(7073), 1, sym_comment, - ACTIONS(2442), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [226649] = 5, + [224894] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(11569), 1, - anon_sym_RBRACK, - STATE(6250), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(2073), 1, + anon_sym_EQ_GT, + ACTIONS(2077), 1, + anon_sym_PIPE, + ACTIONS(2079), 1, + aux_sym_unquoted_token4, STATE(7074), 1, sym_comment, - [226665] = 4, - ACTIONS(251), 1, + [224910] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1783), 1, - aux_sym_unquoted_token2, STATE(7075), 1, sym_comment, - ACTIONS(1785), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [226679] = 5, - ACTIONS(251), 1, + ACTIONS(10745), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [224922] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, - anon_sym_LBRACK, - STATE(6818), 1, - sym_val_list, STATE(7076), 1, sym_comment, - STATE(7121), 1, - aux_sym_val_table_repeat1, - [226695] = 5, + ACTIONS(10311), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [224934] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(11571), 1, - anon_sym_RBRACK, - STATE(6252), 1, + ACTIONS(11583), 1, + anon_sym_GT2, + STATE(5449), 1, aux_sym__multiple_types_repeat1, STATE(7077), 1, sym_comment, - [226711] = 3, - ACTIONS(251), 1, + [224950] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(998), 1, + sym__space, + ACTIONS(1002), 1, + sym__newline, + ACTIONS(2063), 1, + aux_sym_unquoted_token4, STATE(7078), 1, sym_comment, - ACTIONS(10331), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [226723] = 4, - ACTIONS(251), 1, + [224966] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1835), 1, - aux_sym_unquoted_token2, + ACTIONS(5050), 1, + sym__space, + ACTIONS(5052), 1, + sym__newline, + ACTIONS(11585), 1, + anon_sym_EQ2, STATE(7079), 1, sym_comment, - ACTIONS(1837), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [226737] = 3, - ACTIONS(251), 1, + [224982] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(11587), 1, + anon_sym_GT2, + STATE(5450), 1, + aux_sym__multiple_types_repeat1, STATE(7080), 1, sym_comment, - ACTIONS(11573), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [226749] = 3, - ACTIONS(251), 1, + [224998] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(7081), 1, sym_comment, - ACTIONS(11575), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [226761] = 3, - ACTIONS(251), 1, + ACTIONS(2413), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [225010] = 5, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(9787), 1, + anon_sym_LBRACK, + STATE(6982), 1, + sym_val_list, + STATE(7029), 1, + aux_sym_val_table_repeat1, STATE(7082), 1, sym_comment, - ACTIONS(10331), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [226773] = 5, + [225026] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11577), 1, - anon_sym_GT2, - STATE(5564), 1, + ACTIONS(11589), 1, + anon_sym_RBRACK, + STATE(3594), 1, aux_sym__multiple_types_repeat1, STATE(7083), 1, sym_comment, - [226789] = 5, - ACTIONS(3), 1, + [225042] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(11579), 1, - anon_sym_GT2, - STATE(5425), 1, - aux_sym__multiple_types_repeat1, STATE(7084), 1, sym_comment, - [226805] = 5, - ACTIONS(251), 1, + ACTIONS(10327), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [225054] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11149), 1, - sym_hex_digit, - ACTIONS(11581), 1, - anon_sym_RBRACK, + ACTIONS(11591), 1, + sym__table_head_separator, STATE(7085), 1, sym_comment, - STATE(7120), 1, - aux_sym_val_binary_repeat1, - [226821] = 4, + ACTIONS(1002), 2, + anon_sym_RBRACK, + sym__entry_separator, + [225068] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2380), 1, - sym__entry_separator, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + ACTIONS(4472), 1, + aux_sym_unquoted_token4, STATE(7086), 1, sym_comment, - ACTIONS(2378), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [226835] = 4, - ACTIONS(3), 1, + STATE(7444), 1, + sym__expr_parenthesized_immediate, + [225084] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2384), 1, - sym__entry_separator, STATE(7087), 1, sym_comment, - ACTIONS(2382), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [226849] = 5, - ACTIONS(3), 1, + ACTIONS(10283), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [225096] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(11583), 1, - anon_sym_GT2, - STATE(5560), 1, - aux_sym__multiple_types_repeat1, STATE(7088), 1, sym_comment, - [226865] = 5, + ACTIONS(10337), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [225108] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(5649), 1, sym__entry_separator, - ACTIONS(11585), 1, - anon_sym_RBRACK, - STATE(6228), 1, - aux_sym__multiple_types_repeat1, STATE(7089), 1, sym_comment, - [226881] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(11587), 1, + ACTIONS(5647), 2, + anon_sym_RBRACK, anon_sym_GT2, - STATE(5587), 1, - aux_sym__multiple_types_repeat1, + [225122] = 3, + ACTIONS(247), 1, + anon_sym_POUND, STATE(7090), 1, sym_comment, - [226897] = 3, - ACTIONS(251), 1, + ACTIONS(10439), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [225134] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(7091), 1, sym_comment, - ACTIONS(10421), 3, + ACTIONS(10459), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [226909] = 5, - ACTIONS(3), 1, + [225146] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(11589), 1, - anon_sym_GT2, - STATE(5588), 1, - aux_sym__multiple_types_repeat1, STATE(7092), 1, sym_comment, - [226925] = 4, + ACTIONS(10327), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [225158] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2392), 1, + ACTIONS(2439), 1, sym__entry_separator, STATE(7093), 1, sym_comment, - ACTIONS(2390), 2, + ACTIONS(2437), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [226939] = 5, - ACTIONS(3), 1, + [225172] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - ACTIONS(11591), 1, - anon_sym_GT2, - STATE(5589), 1, - aux_sym__multiple_types_repeat1, STATE(7094), 1, sym_comment, - [226955] = 4, + ACTIONS(10461), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [225184] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2396), 1, + ACTIONS(6604), 1, sym__entry_separator, + ACTIONS(11593), 1, + anon_sym_RBRACK, + STATE(6621), 1, + aux_sym__multiple_types_repeat1, STATE(7095), 1, sym_comment, - ACTIONS(2394), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [226969] = 5, + [225200] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11593), 1, - anon_sym_GT2, - STATE(5593), 1, + ACTIONS(11595), 1, + anon_sym_RBRACK, + STATE(6622), 1, aux_sym__multiple_types_repeat1, STATE(7096), 1, sym_comment, - [226985] = 4, + [225216] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2491), 1, + ACTIONS(6604), 1, sym__entry_separator, + ACTIONS(11597), 1, + anon_sym_RBRACK, + STATE(6160), 1, + aux_sym__multiple_types_repeat1, STATE(7097), 1, sym_comment, - ACTIONS(2489), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [226999] = 3, - ACTIONS(251), 1, + [225232] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(11599), 1, + anon_sym_RBRACK, + STATE(6624), 1, + aux_sym__multiple_types_repeat1, STATE(7098), 1, sym_comment, - ACTIONS(10421), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [227011] = 5, + [225248] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11595), 1, + ACTIONS(11601), 1, anon_sym_RBRACK, - STATE(6645), 1, + STATE(6625), 1, aux_sym__multiple_types_repeat1, STATE(7099), 1, sym_comment, - [227027] = 5, + [225264] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11597), 1, + ACTIONS(11603), 1, anon_sym_RBRACK, - STATE(6622), 1, - aux_sym__multiple_types_repeat1, - STATE(7100), 1, - sym_comment, - [227043] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(11599), 1, - anon_sym_PIPE, - ACTIONS(11602), 1, - anon_sym_EQ_GT, - STATE(7101), 2, + STATE(6626), 1, + aux_sym__multiple_types_repeat1, + STATE(7100), 1, sym_comment, - aux_sym_match_pattern_repeat1, - [227057] = 5, + [225280] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11604), 1, + ACTIONS(11605), 1, anon_sym_RBRACK, - STATE(6646), 1, + STATE(6627), 1, aux_sym__multiple_types_repeat1, + STATE(7101), 1, + sym_comment, + [225296] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(11174), 1, + sym_hex_digit, + ACTIONS(11607), 1, + anon_sym_RBRACK, STATE(7102), 1, sym_comment, - [227073] = 5, + STATE(7131), 1, + aux_sym_val_binary_repeat1, + [225312] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11606), 1, + ACTIONS(11609), 1, anon_sym_RBRACK, - STATE(6647), 1, + STATE(6628), 1, aux_sym__multiple_types_repeat1, STATE(7103), 1, sym_comment, - [227089] = 5, + [225328] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(11608), 1, - anon_sym_RBRACK, - STATE(6648), 1, + ACTIONS(11611), 1, + anon_sym_GT2, + STATE(5466), 1, aux_sym__multiple_types_repeat1, STATE(7104), 1, sym_comment, - [227105] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7105), 1, - sym_comment, - ACTIONS(11610), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [227117] = 5, + [225344] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6111), 1, sym__entry_separator, - ACTIONS(11612), 1, - anon_sym_RBRACK, - STATE(6649), 1, + ACTIONS(11613), 1, + anon_sym_RBRACE, + STATE(3016), 1, aux_sym__multiple_types_repeat1, - STATE(7106), 1, + STATE(7105), 1, sym_comment, - [227133] = 5, + [225360] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(11614), 1, + ACTIONS(11615), 1, + sym__table_head_separator, + STATE(7106), 1, + sym_comment, + ACTIONS(1002), 2, anon_sym_RBRACK, - STATE(6229), 1, - aux_sym__multiple_types_repeat1, + sym__entry_separator, + [225374] = 3, + ACTIONS(247), 1, + anon_sym_POUND, STATE(7107), 1, sym_comment, - [227149] = 5, + ACTIONS(10285), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [225386] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(11616), 1, - anon_sym_RBRACK, - STATE(6650), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(2067), 1, + anon_sym_LPAREN2, + ACTIONS(2071), 1, + aux_sym_unquoted_token4, + ACTIONS(11617), 1, + sym__space, STATE(7108), 1, sym_comment, - [227165] = 5, + [225402] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(11618), 1, - anon_sym_RBRACK, - STATE(6651), 1, + ACTIONS(11619), 1, + anon_sym_GT2, + STATE(5467), 1, aux_sym__multiple_types_repeat1, STATE(7109), 1, sym_comment, - [227181] = 5, + [225418] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(11620), 1, - anon_sym_RBRACK, - STATE(6230), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(11621), 1, + sym__table_head_separator, STATE(7110), 1, sym_comment, - [227197] = 5, + ACTIONS(1002), 2, + anon_sym_RBRACK, + sym__entry_separator, + [225432] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - ACTIONS(4780), 1, - aux_sym_unquoted_token4, + ACTIONS(6111), 1, + sym__entry_separator, + ACTIONS(11623), 1, + anon_sym_RBRACE, + STATE(3017), 1, + aux_sym__multiple_types_repeat1, STATE(7111), 1, sym_comment, - STATE(7381), 1, - sym__expr_parenthesized_immediate, - [227213] = 5, + [225448] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(2447), 1, sym__entry_separator, - ACTIONS(11622), 1, - anon_sym_RBRACK, - STATE(6652), 1, - aux_sym__multiple_types_repeat1, STATE(7112), 1, sym_comment, - [227229] = 5, - ACTIONS(251), 1, + ACTIONS(2445), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [225462] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, - anon_sym_LBRACK, - STATE(7059), 1, - sym_val_list, + ACTIONS(6494), 1, + anon_sym_AT, + ACTIONS(7937), 1, + anon_sym_EQ, + STATE(5104), 1, + sym_param_cmd, STATE(7113), 1, sym_comment, - STATE(7121), 1, - aux_sym_val_table_repeat1, - [227245] = 3, - ACTIONS(251), 1, + [225478] = 5, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(9787), 1, + anon_sym_LBRACK, + STATE(6920), 1, + sym_val_list, + STATE(7029), 1, + aux_sym_val_table_repeat1, STATE(7114), 1, sym_comment, - ACTIONS(10333), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [227257] = 5, + [225494] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9787), 1, + anon_sym_LBRACK, + STATE(7029), 1, + aux_sym_val_table_repeat1, + STATE(7115), 1, + sym_comment, + STATE(7265), 1, + sym_val_list, + [225510] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(5791), 1, sym__entry_separator, - ACTIONS(11624), 1, + ACTIONS(11625), 1, anon_sym_RBRACK, - STATE(6630), 1, + STATE(2713), 1, aux_sym__multiple_types_repeat1, - STATE(7115), 1, - sym_comment, - [227273] = 3, - ACTIONS(251), 1, - anon_sym_POUND, STATE(7116), 1, sym_comment, - ACTIONS(10333), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [227285] = 4, - ACTIONS(3), 1, + [225526] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11626), 1, - sym__table_head_separator, + ACTIONS(9787), 1, + anon_sym_LBRACK, + STATE(6702), 1, + sym_val_list, + STATE(7029), 1, + aux_sym_val_table_repeat1, STATE(7117), 1, sym_comment, - ACTIONS(1016), 2, - anon_sym_RBRACK, - sym__entry_separator, - [227299] = 4, + [225542] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2400), 1, - sym__entry_separator, + ACTIONS(11627), 1, + anon_sym_GT2, STATE(7118), 1, sym_comment, - ACTIONS(2398), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [227313] = 4, + ACTIONS(11629), 2, + anon_sym_AT, + sym__entry_separator, + [225556] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11628), 1, - sym__table_head_separator, + ACTIONS(2079), 1, + aux_sym_unquoted_token4, + ACTIONS(2081), 1, + anon_sym_EQ_GT, + ACTIONS(2083), 1, + anon_sym_PIPE, STATE(7119), 1, sym_comment, - ACTIONS(1016), 2, - anon_sym_RBRACK, - sym__entry_separator, - [227327] = 5, - ACTIONS(251), 1, + [225572] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11149), 1, - sym_hex_digit, - ACTIONS(11630), 1, - anon_sym_RBRACK, - STATE(6793), 1, - aux_sym_val_binary_repeat1, STATE(7120), 1, sym_comment, - [227343] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(11632), 1, - anon_sym_LBRACK, - STATE(7352), 1, - sym_val_list, - STATE(7121), 2, - sym_comment, - aux_sym_val_table_repeat1, - [227357] = 5, - ACTIONS(251), 1, + ACTIONS(10373), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [225584] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9773), 1, - anon_sym_LBRACK, - STATE(6884), 1, - sym_val_list, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + ACTIONS(4706), 1, + aux_sym_unquoted_token4, STATE(7121), 1, - aux_sym_val_table_repeat1, - STATE(7122), 1, sym_comment, - [227373] = 4, - ACTIONS(3), 1, + STATE(7382), 1, + sym__expr_parenthesized_immediate, + [225600] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1943), 1, - sym__entry_separator, - STATE(7123), 1, + ACTIONS(6494), 1, + anon_sym_AT, + ACTIONS(7937), 1, + anon_sym_EQ, + STATE(5105), 1, + sym_param_cmd, + STATE(7122), 1, sym_comment, - ACTIONS(1941), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [227387] = 5, - ACTIONS(251), 1, + [225616] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(7089), 1, + STATE(6796), 1, sym_val_list, - STATE(7121), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, - STATE(7124), 1, + STATE(7123), 1, sym_comment, - [227403] = 5, + [225632] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11635), 1, - anon_sym_RBRACK, - STATE(6331), 1, + ACTIONS(10271), 1, + anon_sym_LBRACK, + STATE(3560), 1, aux_sym__multiple_types_repeat1, - STATE(7125), 1, + STATE(7124), 1, sym_comment, - [227419] = 5, - ACTIONS(251), 1, + [225648] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, - anon_sym_LBRACK, - STATE(7110), 1, - sym_val_list, - STATE(7121), 1, - aux_sym_val_table_repeat1, - STATE(7126), 1, + STATE(7125), 1, sym_comment, - [227435] = 3, - ACTIONS(251), 1, + ACTIONS(10369), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [225660] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7127), 1, + STATE(7126), 1, sym_comment, - ACTIONS(10339), 3, + ACTIONS(10371), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [227447] = 5, - ACTIONS(251), 1, + [225672] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9773), 1, - anon_sym_LBRACK, - STATE(6744), 1, - sym_val_list, - STATE(7121), 1, - aux_sym_val_table_repeat1, - STATE(7128), 1, + ACTIONS(5671), 1, + sym__entry_separator, + STATE(7127), 1, sym_comment, - [227463] = 4, - ACTIONS(251), 1, + ACTIONS(5669), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [225686] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(310), 1, - aux_sym__block_body_repeat1, - STATE(7129), 1, + STATE(7128), 1, sym_comment, - ACTIONS(141), 2, + ACTIONS(11631), 3, sym__newline, anon_sym_SEMI, - [227477] = 4, + anon_sym_RPAREN, + [225698] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11637), 1, - sym__table_head_separator, - STATE(7130), 1, + ACTIONS(5677), 1, + sym__entry_separator, + STATE(7129), 1, sym_comment, - ACTIONS(1016), 2, + ACTIONS(5675), 2, anon_sym_RBRACK, - sym__entry_separator, - [227491] = 5, + anon_sym_GT2, + [225712] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4970), 1, - sym__space, - ACTIONS(4972), 1, - sym__newline, - ACTIONS(11639), 1, - anon_sym_EQ2, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(11633), 1, + anon_sym_RBRACK, + STATE(6314), 1, + aux_sym__multiple_types_repeat1, + STATE(7130), 1, + sym_comment, + [225728] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(11174), 1, + sym_hex_digit, + ACTIONS(11635), 1, + anon_sym_RBRACK, + STATE(6729), 1, + aux_sym_val_binary_repeat1, STATE(7131), 1, sym_comment, - [227507] = 5, + [225744] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2318), 1, + ACTIONS(2324), 1, sym__entry_separator, - ACTIONS(11641), 1, - anon_sym_RBRACE, - STATE(654), 1, - aux_sym__multiple_types_repeat1, STATE(7132), 1, sym_comment, - [227523] = 3, - ACTIONS(251), 1, + ACTIONS(2322), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [225758] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(11637), 1, + anon_sym_RBRACK, + STATE(6301), 1, + aux_sym__multiple_types_repeat1, STATE(7133), 1, sym_comment, - ACTIONS(9734), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [227535] = 3, - ACTIONS(251), 1, + [225774] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1641), 1, + anon_sym_LPAREN2, + ACTIONS(7249), 1, + aux_sym__unquoted_in_record_token4, STATE(7134), 1, sym_comment, - ACTIONS(11116), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [227547] = 4, - ACTIONS(3), 1, + STATE(7427), 1, + sym__expr_parenthesized_immediate, + [225790] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2150), 1, - sym__space, + ACTIONS(3442), 1, + anon_sym_COLON2, + ACTIONS(6313), 1, + anon_sym_LBRACE, + STATE(4589), 1, + sym_block, STATE(7135), 1, sym_comment, - ACTIONS(2148), 2, - sym__newline, - aux_sym_unquoted_token4, - [227561] = 5, + [225806] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5722), 1, - sym__entry_separator, - ACTIONS(11643), 1, - anon_sym_RBRACK, - STATE(2719), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(11639), 1, + sym__table_head_separator, STATE(7136), 1, sym_comment, - [227577] = 3, - ACTIONS(251), 1, + ACTIONS(1002), 2, + anon_sym_RBRACK, + sym__entry_separator, + [225820] = 5, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(9787), 1, + anon_sym_LBRACK, + STATE(7029), 1, + aux_sym_val_table_repeat1, + STATE(7065), 1, + sym_val_list, STATE(7137), 1, sym_comment, - ACTIONS(10423), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [227589] = 5, - ACTIONS(251), 1, + [225836] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6466), 1, - anon_sym_AT, - ACTIONS(7811), 1, - anon_sym_EQ, - STATE(5073), 1, - sym_param_cmd, + ACTIONS(11641), 1, + sym__table_head_separator, STATE(7138), 1, sym_comment, - [227605] = 3, - ACTIONS(251), 1, + ACTIONS(1002), 2, + anon_sym_RBRACK, + sym__entry_separator, + [225850] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(11643), 1, + anon_sym_RBRACK, + STATE(6302), 1, + aux_sym__multiple_types_repeat1, STATE(7139), 1, sym_comment, - ACTIONS(9759), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [227617] = 5, + [225866] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, ACTIONS(11645), 1, anon_sym_RBRACK, - STATE(6644), 1, + STATE(6303), 1, aux_sym__multiple_types_repeat1, STATE(7140), 1, sym_comment, - [227633] = 3, + [225882] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(11647), 1, + anon_sym_RBRACK, + STATE(6304), 1, + aux_sym__multiple_types_repeat1, STATE(7141), 1, sym_comment, - ACTIONS(2478), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [227645] = 3, - ACTIONS(251), 1, + [225898] = 5, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(9787), 1, + anon_sym_LBRACK, + STATE(7010), 1, + sym_val_list, + STATE(7029), 1, + aux_sym_val_table_repeat1, STATE(7142), 1, sym_comment, - ACTIONS(10335), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [227657] = 5, - ACTIONS(3), 1, + [225914] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(11647), 1, - anon_sym_RBRACK, - STATE(6332), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(9787), 1, + anon_sym_LBRACK, + STATE(7015), 1, + sym_val_list, + STATE(7029), 1, + aux_sym_val_table_repeat1, STATE(7143), 1, sym_comment, - [227673] = 5, - ACTIONS(251), 1, + [225930] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6466), 1, - anon_sym_AT, - ACTIONS(7811), 1, - anon_sym_EQ, - STATE(5075), 1, - sym_param_cmd, + ACTIONS(9787), 1, + anon_sym_LBRACK, + STATE(7019), 1, + sym_val_list, + STATE(7029), 1, + aux_sym_val_table_repeat1, STATE(7144), 1, sym_comment, - [227689] = 5, - ACTIONS(251), 1, + [225946] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10173), 1, - anon_sym_if, - ACTIONS(11649), 1, - anon_sym_EQ_GT, + ACTIONS(9787), 1, + anon_sym_LBRACK, + STATE(7029), 1, + aux_sym_val_table_repeat1, + STATE(7031), 1, + sym_val_list, STATE(7145), 1, sym_comment, - STATE(7724), 1, - sym_match_guard, - [227705] = 5, + [225962] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2128), 1, - anon_sym_EQ_GT, - ACTIONS(2132), 1, - anon_sym_PIPE, - ACTIONS(2134), 1, - aux_sym_unquoted_token4, + ACTIONS(11649), 1, + sym__table_head_separator, STATE(7146), 1, sym_comment, - [227721] = 5, + ACTIONS(1002), 2, + anon_sym_RBRACK, + sym__entry_separator, + [225976] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(2328), 1, sym__entry_separator, - ACTIONS(11651), 1, - anon_sym_RBRACK, - STATE(6333), 1, - aux_sym__multiple_types_repeat1, STATE(7147), 1, sym_comment, - [227737] = 5, + ACTIONS(2326), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [225990] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(2336), 1, sym__entry_separator, - ACTIONS(11653), 1, - anon_sym_RBRACK, - STATE(6334), 1, - aux_sym__multiple_types_repeat1, STATE(7148), 1, sym_comment, - [227753] = 3, - ACTIONS(251), 1, + ACTIONS(2334), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [226004] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(11651), 1, + sym__table_head_separator, STATE(7149), 1, sym_comment, - ACTIONS(10998), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [227765] = 3, - ACTIONS(251), 1, + ACTIONS(1002), 2, + anon_sym_RBRACK, + sym__entry_separator, + [226018] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2065), 1, + sym__newline, + ACTIONS(2069), 1, + sym__space, + ACTIONS(2071), 1, + aux_sym_unquoted_token4, STATE(7150), 1, sym_comment, - ACTIONS(10363), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [227777] = 4, + [226034] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5677), 1, + ACTIONS(6604), 1, sym__entry_separator, + ACTIONS(11653), 1, + anon_sym_RBRACK, + STATE(6305), 1, + aux_sym__multiple_types_repeat1, STATE(7151), 1, sym_comment, - ACTIONS(5675), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [227791] = 4, + [226050] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9787), 1, + anon_sym_LBRACK, + STATE(7029), 1, + aux_sym_val_table_repeat1, + STATE(7140), 1, + sym_val_list, + STATE(7152), 1, + sym_comment, + [226066] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9787), 1, + anon_sym_LBRACK, + STATE(7029), 1, + aux_sym_val_table_repeat1, + STATE(7151), 1, + sym_val_list, + STATE(7153), 1, + sym_comment, + [226082] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9787), 1, + anon_sym_LBRACK, + STATE(7029), 1, + aux_sym_val_table_repeat1, + STATE(7154), 1, + sym_comment, + STATE(7165), 1, + sym_val_list, + [226098] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9787), 1, + anon_sym_LBRACK, + STATE(7029), 1, + aux_sym_val_table_repeat1, + STATE(7155), 1, + sym_comment, + STATE(7176), 1, + sym_val_list, + [226114] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(11655), 1, sym__table_head_separator, - STATE(7152), 1, + STATE(7156), 1, sym_comment, - ACTIONS(1016), 2, + ACTIONS(1002), 2, anon_sym_RBRACK, sym__entry_separator, - [227805] = 4, + [226128] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(11657), 1, sym__table_head_separator, - STATE(7153), 1, + STATE(7157), 1, sym_comment, - ACTIONS(1016), 2, + ACTIONS(1002), 2, anon_sym_RBRACK, sym__entry_separator, - [227819] = 3, - ACTIONS(251), 1, + [226142] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7154), 1, + ACTIONS(11659), 1, + sym__table_head_separator, + STATE(7158), 1, sym_comment, - ACTIONS(11000), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [227831] = 5, - ACTIONS(251), 1, + ACTIONS(1002), 2, + anon_sym_RBRACK, + sym__entry_separator, + [226156] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(7000), 1, + STATE(6709), 1, sym_val_list, - STATE(7121), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, - STATE(7155), 1, + STATE(7159), 1, sym_comment, - [227847] = 5, - ACTIONS(251), 1, + [226172] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(7002), 1, + STATE(6712), 1, sym_val_list, - STATE(7121), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, - STATE(7156), 1, + STATE(7160), 1, sym_comment, - [227863] = 5, - ACTIONS(251), 1, + [226188] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9773), 1, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(11661), 1, + anon_sym_RBRACK, + STATE(6306), 1, + aux_sym__multiple_types_repeat1, + STATE(7161), 1, + sym_comment, + [226204] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(7004), 1, + STATE(6715), 1, sym_val_list, - STATE(7121), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, - STATE(7157), 1, + STATE(7162), 1, sym_comment, - [227879] = 5, - ACTIONS(251), 1, + [226220] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(7005), 1, + STATE(6718), 1, sym_val_list, - STATE(7121), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, - STATE(7158), 1, - sym_comment, - [227895] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(11659), 1, - anon_sym_RBRACK, - STATE(6335), 1, - aux_sym__multiple_types_repeat1, - STATE(7159), 1, - sym_comment, - [227911] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2326), 1, - sym__entry_separator, - STATE(7160), 1, + STATE(7163), 1, sym_comment, - ACTIONS(2324), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [227925] = 4, + [226236] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11661), 1, + ACTIONS(11663), 1, sym__table_head_separator, - STATE(7161), 1, + STATE(7164), 1, sym_comment, - ACTIONS(1016), 2, + ACTIONS(1002), 2, anon_sym_RBRACK, sym__entry_separator, - [227939] = 5, + [226250] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11663), 1, + ACTIONS(11665), 1, anon_sym_RBRACK, - STATE(6632), 1, + STATE(6307), 1, aux_sym__multiple_types_repeat1, - STATE(7162), 1, + STATE(7165), 1, sym_comment, - [227955] = 4, + [226266] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11665), 1, + ACTIONS(11667), 1, sym__table_head_separator, - STATE(7163), 1, + STATE(7166), 1, sym_comment, - ACTIONS(1016), 2, + ACTIONS(1002), 2, anon_sym_RBRACK, sym__entry_separator, - [227969] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(11667), 1, - anon_sym_RBRACK, - STATE(6336), 1, - aux_sym__multiple_types_repeat1, - STATE(7164), 1, - sym_comment, - [227985] = 5, + [226280] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, ACTIONS(11669), 1, anon_sym_RBRACK, - STATE(6337), 1, + STATE(3596), 1, aux_sym__multiple_types_repeat1, - STATE(7165), 1, - sym_comment, - [228001] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9773), 1, - anon_sym_LBRACK, - STATE(7121), 1, - aux_sym_val_table_repeat1, - STATE(7147), 1, - sym_val_list, - STATE(7166), 1, - sym_comment, - [228017] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9773), 1, - anon_sym_LBRACK, - STATE(7121), 1, - aux_sym_val_table_repeat1, - STATE(7159), 1, - sym_val_list, STATE(7167), 1, sym_comment, - [228033] = 5, - ACTIONS(251), 1, + [226296] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(7121), 1, - aux_sym_val_table_repeat1, - STATE(7165), 1, + STATE(6744), 1, sym_val_list, + STATE(7029), 1, + aux_sym_val_table_repeat1, STATE(7168), 1, sym_comment, - [228049] = 5, - ACTIONS(251), 1, + [226312] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(7121), 1, + STATE(6746), 1, + sym_val_list, + STATE(7029), 1, aux_sym_val_table_repeat1, STATE(7169), 1, sym_comment, - STATE(7179), 1, - sym_val_list, - [228065] = 4, - ACTIONS(3), 1, + [226328] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11671), 1, - sym__table_head_separator, + ACTIONS(9787), 1, + anon_sym_LBRACK, + STATE(6750), 1, + sym_val_list, + STATE(7029), 1, + aux_sym_val_table_repeat1, STATE(7170), 1, sym_comment, - ACTIONS(1016), 2, - anon_sym_RBRACK, - sym__entry_separator, - [228079] = 5, - ACTIONS(251), 1, + [226344] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(7077), 1, + STATE(6753), 1, sym_val_list, - STATE(7121), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, STATE(7171), 1, sym_comment, - [228095] = 4, + [226360] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11673), 1, + ACTIONS(11671), 1, sym__table_head_separator, STATE(7172), 1, sym_comment, - ACTIONS(1016), 2, + ACTIONS(1002), 2, anon_sym_RBRACK, sym__entry_separator, - [228109] = 3, - ACTIONS(251), 1, + [226374] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(7173), 1, sym_comment, - ACTIONS(10331), 3, + ACTIONS(10295), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [228121] = 5, - ACTIONS(251), 1, + [226386] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, - anon_sym_LBRACK, - STATE(6720), 1, - sym_val_list, - STATE(7121), 1, - aux_sym_val_table_repeat1, STATE(7174), 1, sym_comment, - [228137] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9773), 1, - anon_sym_LBRACK, - STATE(6722), 1, - sym_val_list, - STATE(7121), 1, - aux_sym_val_table_repeat1, - STATE(7175), 1, - sym_comment, - [228153] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9773), 1, - anon_sym_LBRACK, - STATE(6724), 1, - sym_val_list, - STATE(7121), 1, - aux_sym_val_table_repeat1, - STATE(7176), 1, - sym_comment, - [228169] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9773), 1, - anon_sym_LBRACK, - STATE(6725), 1, - sym_val_list, - STATE(7121), 1, - aux_sym_val_table_repeat1, - STATE(7177), 1, - sym_comment, - [228185] = 4, + ACTIONS(10558), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [226398] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11675), 1, + ACTIONS(11673), 1, sym__table_head_separator, - STATE(7178), 1, + STATE(7175), 1, sym_comment, - ACTIONS(1016), 2, + ACTIONS(1002), 2, anon_sym_RBRACK, sym__entry_separator, - [228199] = 5, + [226412] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(6604), 1, sym__entry_separator, - ACTIONS(11677), 1, + ACTIONS(11675), 1, anon_sym_RBRACK, - STATE(6338), 1, + STATE(6308), 1, aux_sym__multiple_types_repeat1, - STATE(7179), 1, + STATE(7176), 1, sym_comment, - [228215] = 4, + [226428] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11679), 1, - sym__table_head_separator, - STATE(7180), 1, - sym_comment, - ACTIONS(1016), 2, - anon_sym_RBRACK, - sym__entry_separator, - [228229] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3420), 1, - anon_sym_COLON2, - ACTIONS(6284), 1, - anon_sym_LBRACE, - STATE(6672), 1, - sym_block, - STATE(7181), 1, + ACTIONS(5060), 1, + sym__space, + ACTIONS(5062), 1, + sym__newline, + ACTIONS(11677), 1, + anon_sym_EQ2, + STATE(7177), 1, sym_comment, - [228245] = 5, - ACTIONS(251), 1, + [226444] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(6741), 1, + STATE(6771), 1, sym_val_list, - STATE(7121), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, - STATE(7182), 1, + STATE(7178), 1, sym_comment, - [228261] = 5, - ACTIONS(251), 1, + [226460] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(6743), 1, + STATE(6773), 1, sym_val_list, - STATE(7121), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, - STATE(7183), 1, + STATE(7179), 1, sym_comment, - [228277] = 5, - ACTIONS(251), 1, + [226476] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(6747), 1, + STATE(6775), 1, sym_val_list, - STATE(7121), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, - STATE(7184), 1, + STATE(7180), 1, sym_comment, - [228293] = 5, - ACTIONS(251), 1, + [226492] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(6750), 1, + STATE(6777), 1, sym_val_list, - STATE(7121), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, - STATE(7185), 1, + STATE(7181), 1, sym_comment, - [228309] = 4, + [226508] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11681), 1, + ACTIONS(11679), 1, sym__table_head_separator, - STATE(7186), 1, + STATE(7182), 1, sym_comment, - ACTIONS(1016), 2, + ACTIONS(1002), 2, anon_sym_RBRACK, sym__entry_separator, - [228323] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7187), 1, - sym_comment, - ACTIONS(11683), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [228335] = 4, + [226522] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2503), 1, + ACTIONS(2358), 1, sym__entry_separator, - STATE(7188), 1, + STATE(7183), 1, sym_comment, - ACTIONS(2501), 2, + ACTIONS(2356), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [228349] = 4, + [226536] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11685), 1, + ACTIONS(11681), 1, sym__table_head_separator, - STATE(7189), 1, + STATE(7184), 1, sym_comment, - ACTIONS(1016), 2, + ACTIONS(1002), 2, anon_sym_RBRACK, sym__entry_separator, - [228363] = 5, + [226550] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6085), 1, + ACTIONS(2362), 1, sym__entry_separator, - ACTIONS(11687), 1, - anon_sym_RBRACE, - STATE(2955), 1, - aux_sym__multiple_types_repeat1, - STATE(7190), 1, + STATE(7185), 1, sym_comment, - [228379] = 5, - ACTIONS(251), 1, + ACTIONS(2360), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [226564] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(6771), 1, + STATE(6794), 1, sym_val_list, - STATE(7121), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, - STATE(7191), 1, + STATE(7186), 1, sym_comment, - [228395] = 5, - ACTIONS(251), 1, + [226580] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(6774), 1, + STATE(6797), 1, sym_val_list, - STATE(7121), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, - STATE(7192), 1, + STATE(7187), 1, sym_comment, - [228411] = 5, - ACTIONS(251), 1, + [226596] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9773), 1, + ACTIONS(6111), 1, + sym__entry_separator, + ACTIONS(11683), 1, + anon_sym_RBRACE, + STATE(3007), 1, + aux_sym__multiple_types_repeat1, + STATE(7188), 1, + sym_comment, + [226612] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(6776), 1, + STATE(6801), 1, sym_val_list, - STATE(7121), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, - STATE(7193), 1, + STATE(7189), 1, sym_comment, - [228427] = 5, - ACTIONS(251), 1, + [226628] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(6777), 1, + STATE(6803), 1, sym_val_list, - STATE(7121), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, - STATE(7194), 1, + STATE(7190), 1, sym_comment, - [228443] = 4, + [226644] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11689), 1, + ACTIONS(11685), 1, sym__table_head_separator, - STATE(7195), 1, + STATE(7191), 1, sym_comment, - ACTIONS(1016), 2, + ACTIONS(1002), 2, anon_sym_RBRACK, sym__entry_separator, - [228457] = 4, + [226658] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2448), 1, - sym__entry_separator, - STATE(7196), 1, + ACTIONS(2073), 1, + sym__newline, + ACTIONS(2077), 1, + sym__space, + ACTIONS(2079), 1, + aux_sym_unquoted_token4, + STATE(7192), 1, sym_comment, - ACTIONS(2446), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [228471] = 3, - ACTIONS(251), 1, + [226674] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7197), 1, - sym_comment, - ACTIONS(11691), 3, + ACTIONS(2079), 1, + aux_sym_unquoted_token4, + ACTIONS(2081), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [228483] = 4, + ACTIONS(2083), 1, + sym__space, + STATE(7193), 1, + sym_comment, + [226690] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11693), 1, + ACTIONS(11687), 1, sym__table_head_separator, - STATE(7198), 1, + STATE(7194), 1, sym_comment, - ACTIONS(1016), 2, + ACTIONS(1002), 2, anon_sym_RBRACK, sym__entry_separator, - [228497] = 3, - ACTIONS(251), 1, + [226704] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7199), 1, + ACTIONS(2372), 1, + sym__entry_separator, + STATE(7195), 1, sym_comment, - ACTIONS(10451), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [228509] = 5, - ACTIONS(251), 1, + ACTIONS(2370), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [226718] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9773), 1, + ACTIONS(1841), 1, + sym__entry_separator, + STATE(7196), 1, + sym_comment, + ACTIONS(1839), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [226732] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(6800), 1, + STATE(6823), 1, sym_val_list, - STATE(7121), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, - STATE(7200), 1, + STATE(7197), 1, sym_comment, - [228525] = 5, - ACTIONS(251), 1, + [226748] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(6803), 1, + STATE(6825), 1, sym_val_list, - STATE(7121), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, - STATE(7201), 1, + STATE(7198), 1, sym_comment, - [228541] = 5, + [226764] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2136), 1, + ACTIONS(2065), 1, anon_sym_EQ_GT, - ACTIONS(2140), 1, + ACTIONS(2069), 1, anon_sym_PIPE, - ACTIONS(2142), 1, + ACTIONS(2071), 1, aux_sym_unquoted_token4, - STATE(7202), 1, + STATE(7199), 1, sym_comment, - [228557] = 5, - ACTIONS(251), 1, + [226780] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(6807), 1, + STATE(6828), 1, sym_val_list, - STATE(7121), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, - STATE(7203), 1, + STATE(7200), 1, sym_comment, - [228573] = 5, - ACTIONS(251), 1, + [226796] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(6808), 1, + STATE(6829), 1, sym_val_list, - STATE(7121), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, - STATE(7204), 1, + STATE(7201), 1, sym_comment, - [228589] = 4, + [226812] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11695), 1, + ACTIONS(11689), 1, sym__table_head_separator, - STATE(7205), 1, + STATE(7202), 1, sym_comment, - ACTIONS(1016), 2, + ACTIONS(1002), 2, anon_sym_RBRACK, sym__entry_separator, - [228603] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9773), 1, - anon_sym_LBRACK, - STATE(7115), 1, - sym_val_list, - STATE(7121), 1, - aux_sym_val_table_repeat1, - STATE(7206), 1, - sym_comment, - [228619] = 3, - ACTIONS(251), 1, + [226826] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7207), 1, + ACTIONS(1292), 1, + anon_sym_RPAREN, + STATE(7203), 1, sym_comment, - ACTIONS(11044), 3, - ts_builtin_sym_end, + ACTIONS(1285), 2, sym__newline, anon_sym_SEMI, - [228631] = 4, + [226840] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11697), 1, + ACTIONS(1963), 1, + sym__entry_separator, + STATE(7204), 1, + sym_comment, + ACTIONS(1961), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [226854] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11691), 1, sym__table_head_separator, - STATE(7208), 1, + STATE(7205), 1, sym_comment, - ACTIONS(1016), 2, + ACTIONS(1002), 2, anon_sym_RBRACK, sym__entry_separator, - [228645] = 5, - ACTIONS(3), 1, + [226868] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2208), 1, - aux_sym_unquoted_token4, - ACTIONS(5930), 1, - anon_sym_EQ_GT, - ACTIONS(5935), 1, - anon_sym_PIPE, - STATE(7209), 1, + STATE(7206), 1, sym_comment, - [228661] = 5, - ACTIONS(3), 1, + ACTIONS(11069), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [226880] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2142), 1, - aux_sym_unquoted_token4, - ACTIONS(2144), 1, - anon_sym_EQ_GT, - ACTIONS(2146), 1, - anon_sym_PIPE, - STATE(7210), 1, + STATE(7207), 1, sym_comment, - [228677] = 5, - ACTIONS(251), 1, + ACTIONS(1292), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [226892] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(6827), 1, + STATE(6844), 1, sym_val_list, - STATE(7121), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, - STATE(7211), 1, + STATE(7208), 1, sym_comment, - [228693] = 5, - ACTIONS(251), 1, + [226908] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(6830), 1, + STATE(6846), 1, sym_val_list, - STATE(7121), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, - STATE(7212), 1, + STATE(7209), 1, sym_comment, - [228709] = 5, - ACTIONS(251), 1, + [226924] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, + STATE(7210), 1, + sym_comment, + ACTIONS(10558), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [226936] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(6834), 1, + STATE(6848), 1, sym_val_list, - STATE(7121), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, - STATE(7213), 1, + STATE(7211), 1, sym_comment, - [228725] = 5, - ACTIONS(251), 1, + [226952] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(6835), 1, + STATE(6850), 1, sym_val_list, - STATE(7121), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, - STATE(7214), 1, + STATE(7212), 1, sym_comment, - [228741] = 4, + [226968] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11699), 1, + ACTIONS(11693), 1, sym__table_head_separator, - STATE(7215), 1, + STATE(7213), 1, sym_comment, - ACTIONS(1016), 2, + ACTIONS(1002), 2, anon_sym_RBRACK, sym__entry_separator, - [228755] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2364), 1, - sym__entry_separator, - STATE(7216), 1, - sym_comment, - ACTIONS(2362), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [228769] = 4, + [226982] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11701), 1, + ACTIONS(11695), 1, sym__table_head_separator, - STATE(7217), 1, + STATE(7214), 1, sym_comment, - ACTIONS(1016), 2, + ACTIONS(1002), 2, anon_sym_RBRACK, sym__entry_separator, - [228783] = 5, - ACTIONS(3), 1, + [226996] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2318), 1, - sym__entry_separator, - ACTIONS(11703), 1, - anon_sym_RBRACE, - STATE(639), 1, - aux_sym__multiple_types_repeat1, - STATE(7218), 1, + STATE(7215), 1, sym_comment, - [228799] = 5, - ACTIONS(251), 1, + ACTIONS(10313), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [227008] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, + STATE(7216), 1, + sym_comment, + ACTIONS(10317), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [227020] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(6850), 1, + STATE(6867), 1, sym_val_list, - STATE(7121), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, - STATE(7219), 1, + STATE(7217), 1, sym_comment, - [228815] = 5, - ACTIONS(251), 1, + [227036] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(6852), 1, + STATE(6870), 1, sym_val_list, - STATE(7121), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, - STATE(7220), 1, - sym_comment, - [228831] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7221), 1, + STATE(7218), 1, sym_comment, - ACTIONS(11002), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [228843] = 5, - ACTIONS(251), 1, + [227052] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(6855), 1, + STATE(6873), 1, sym_val_list, - STATE(7121), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, - STATE(7222), 1, + STATE(7219), 1, sym_comment, - [228859] = 5, - ACTIONS(251), 1, + [227068] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(6857), 1, + STATE(6874), 1, sym_val_list, - STATE(7121), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, - STATE(7223), 1, + STATE(7220), 1, sym_comment, - [228875] = 4, + [227084] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11705), 1, + ACTIONS(11697), 1, sym__table_head_separator, - STATE(7224), 1, + STATE(7221), 1, sym_comment, - ACTIONS(1016), 2, + ACTIONS(1002), 2, anon_sym_RBRACK, sym__entry_separator, - [228889] = 5, - ACTIONS(3), 1, + [227098] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5722), 1, - sym__entry_separator, - ACTIONS(11707), 1, - anon_sym_RBRACK, - STATE(2720), 1, - aux_sym__multiple_types_repeat1, - STATE(7225), 1, + STATE(7222), 1, sym_comment, - [228905] = 3, - ACTIONS(251), 1, + ACTIONS(10315), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [227110] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7226), 1, + STATE(7223), 1, sym_comment, - ACTIONS(11709), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [228917] = 4, + ACTIONS(10317), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [227122] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11711), 1, + ACTIONS(11699), 1, sym__table_head_separator, - STATE(7227), 1, + STATE(7224), 1, sym_comment, - ACTIONS(1016), 2, + ACTIONS(1002), 2, anon_sym_RBRACK, sym__entry_separator, - [228931] = 5, - ACTIONS(3), 1, + [227136] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5722), 1, - sym__entry_separator, - ACTIONS(11713), 1, - anon_sym_RBRACK, - STATE(2713), 1, - aux_sym__multiple_types_repeat1, - STATE(7228), 1, + STATE(7225), 1, sym_comment, - [228947] = 5, - ACTIONS(251), 1, + ACTIONS(11017), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [227148] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(6869), 1, - sym_val_list, - STATE(7121), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, - STATE(7229), 1, + STATE(7097), 1, + sym_val_list, + STATE(7226), 1, sym_comment, - [228963] = 5, - ACTIONS(251), 1, + [227164] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(6871), 1, - sym_val_list, - STATE(7121), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, - STATE(7230), 1, + STATE(7099), 1, + sym_val_list, + STATE(7227), 1, sym_comment, - [228979] = 5, - ACTIONS(251), 1, + [227180] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(6875), 1, - sym_val_list, - STATE(7121), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, - STATE(7231), 1, + STATE(7101), 1, + sym_val_list, + STATE(7228), 1, sym_comment, - [228995] = 5, - ACTIONS(251), 1, + [227196] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(6877), 1, - sym_val_list, - STATE(7121), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, - STATE(7232), 1, + STATE(7103), 1, + sym_val_list, + STATE(7229), 1, sym_comment, - [229011] = 4, + [227212] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11715), 1, + ACTIONS(11701), 1, sym__table_head_separator, - STATE(7233), 1, + STATE(7230), 1, sym_comment, - ACTIONS(1016), 2, + ACTIONS(1002), 2, anon_sym_RBRACK, sym__entry_separator, - [229025] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7234), 1, - sym_comment, - ACTIONS(11717), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [229037] = 4, + [227226] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11719), 1, + ACTIONS(11703), 1, sym__table_head_separator, - STATE(7235), 1, + STATE(7231), 1, sym_comment, - ACTIONS(1016), 2, + ACTIONS(1002), 2, anon_sym_RBRACK, sym__entry_separator, - [229051] = 5, - ACTIONS(3), 1, + [227240] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2318), 1, - sym__entry_separator, - ACTIONS(11721), 1, - anon_sym_RBRACE, - STATE(640), 1, - aux_sym__multiple_types_repeat1, - STATE(7236), 1, + ACTIONS(6494), 1, + anon_sym_AT, + ACTIONS(11705), 1, + anon_sym_GT2, + STATE(7232), 1, sym_comment, - [229067] = 5, - ACTIONS(251), 1, + STATE(7478), 1, + sym_param_cmd, + [227256] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(7103), 1, + STATE(6890), 1, sym_val_list, - STATE(7121), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, - STATE(7237), 1, + STATE(7233), 1, sym_comment, - [229083] = 5, - ACTIONS(251), 1, + [227272] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(7106), 1, + STATE(6893), 1, sym_val_list, - STATE(7121), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, - STATE(7238), 1, + STATE(7234), 1, sym_comment, - [229099] = 5, - ACTIONS(251), 1, + [227288] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(7109), 1, + STATE(6897), 1, sym_val_list, - STATE(7121), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, - STATE(7239), 1, + STATE(7235), 1, sym_comment, - [229115] = 5, - ACTIONS(251), 1, + [227304] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(7112), 1, + STATE(6900), 1, sym_val_list, - STATE(7121), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, - STATE(7240), 1, + STATE(7236), 1, sym_comment, - [229131] = 4, + [227320] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11723), 1, + ACTIONS(11707), 1, sym__table_head_separator, - STATE(7241), 1, + STATE(7237), 1, sym_comment, - ACTIONS(1016), 2, + ACTIONS(1002), 2, anon_sym_RBRACK, sym__entry_separator, - [229145] = 4, + [227334] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11725), 1, + ACTIONS(11709), 1, sym__table_head_separator, - STATE(7242), 1, + STATE(7238), 1, sym_comment, - ACTIONS(1016), 2, + ACTIONS(1002), 2, anon_sym_RBRACK, sym__entry_separator, - [229159] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7243), 1, - sym_comment, - ACTIONS(11004), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [229171] = 5, - ACTIONS(251), 1, + [227348] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(6895), 1, + STATE(6914), 1, sym_val_list, - STATE(7121), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, - STATE(7244), 1, + STATE(7239), 1, sym_comment, - [229187] = 5, - ACTIONS(251), 1, + [227364] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(6898), 1, + STATE(6916), 1, sym_val_list, - STATE(7121), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, - STATE(7245), 1, + STATE(7240), 1, sym_comment, - [229203] = 5, - ACTIONS(251), 1, + [227380] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9773), 1, + ACTIONS(5903), 1, + sym__entry_separator, + ACTIONS(11711), 1, + anon_sym_RBRACK, + STATE(2869), 1, + aux_sym__multiple_types_repeat1, + STATE(7241), 1, + sym_comment, + [227396] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(6901), 1, + STATE(6919), 1, sym_val_list, - STATE(7121), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, - STATE(7246), 1, + STATE(7242), 1, sym_comment, - [229219] = 5, - ACTIONS(251), 1, + [227412] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(6903), 1, + STATE(6922), 1, sym_val_list, - STATE(7121), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, - STATE(7247), 1, + STATE(7243), 1, sym_comment, - [229235] = 4, + [227428] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11727), 1, + ACTIONS(11713), 1, sym__table_head_separator, - STATE(7248), 1, + STATE(7244), 1, sym_comment, - ACTIONS(1016), 2, + ACTIONS(1002), 2, anon_sym_RBRACK, sym__entry_separator, - [229249] = 4, + [227442] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11729), 1, + ACTIONS(11715), 1, sym__table_head_separator, - STATE(7249), 1, + STATE(7245), 1, sym_comment, - ACTIONS(1016), 2, + ACTIONS(1002), 2, anon_sym_RBRACK, sym__entry_separator, - [229263] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2292), 1, - anon_sym_RBRACE, - STATE(7250), 1, - sym_comment, - ACTIONS(2294), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [229277] = 5, - ACTIONS(251), 1, + [227456] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(6919), 1, + STATE(6935), 1, sym_val_list, - STATE(7121), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, - STATE(7251), 1, + STATE(7246), 1, sym_comment, - [229293] = 5, - ACTIONS(251), 1, + [227472] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(6922), 1, + STATE(6937), 1, sym_val_list, - STATE(7121), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, - STATE(7252), 1, + STATE(7247), 1, sym_comment, - [229309] = 5, - ACTIONS(251), 1, + [227488] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(6926), 1, + STATE(6939), 1, sym_val_list, - STATE(7121), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, - STATE(7253), 1, + STATE(7248), 1, sym_comment, - [229325] = 5, - ACTIONS(251), 1, + [227504] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(6927), 1, + STATE(6941), 1, sym_val_list, - STATE(7121), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, - STATE(7254), 1, + STATE(7249), 1, sym_comment, - [229341] = 4, + [227520] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11731), 1, + ACTIONS(11717), 1, sym__table_head_separator, - STATE(7255), 1, + STATE(7250), 1, sym_comment, - ACTIONS(1016), 2, + ACTIONS(1002), 2, anon_sym_RBRACK, sym__entry_separator, - [229355] = 4, + [227534] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11733), 1, + ACTIONS(11719), 1, sym__table_head_separator, - STATE(7256), 1, + STATE(7251), 1, sym_comment, - ACTIONS(1016), 2, + ACTIONS(1002), 2, anon_sym_RBRACK, sym__entry_separator, - [229369] = 5, - ACTIONS(251), 1, + [227548] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9773), 1, + ACTIONS(6159), 1, + anon_sym_RBRACK, + STATE(7252), 1, + sym_comment, + ACTIONS(6161), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [227562] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(6943), 1, + STATE(6701), 1, sym_val_list, - STATE(7121), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, - STATE(7257), 1, + STATE(7253), 1, sym_comment, - [229385] = 5, - ACTIONS(251), 1, + [227578] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(6945), 1, + STATE(6952), 1, sym_val_list, - STATE(7121), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, - STATE(7258), 1, - sym_comment, - [229401] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7259), 1, + STATE(7254), 1, sym_comment, - ACTIONS(5928), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [229413] = 5, - ACTIONS(251), 1, + [227594] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(6947), 1, + STATE(6955), 1, sym_val_list, - STATE(7121), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, - STATE(7260), 1, + STATE(7255), 1, sym_comment, - [229429] = 5, - ACTIONS(251), 1, + [227610] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(6948), 1, + STATE(6957), 1, sym_val_list, - STATE(7121), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, - STATE(7261), 1, + STATE(7256), 1, sym_comment, - [229445] = 4, + [227626] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11735), 1, + ACTIONS(11721), 1, sym__table_head_separator, - STATE(7262), 1, + STATE(7257), 1, sym_comment, - ACTIONS(1016), 2, + ACTIONS(1002), 2, anon_sym_RBRACK, sym__entry_separator, - [229459] = 4, + [227640] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11737), 1, + ACTIONS(11723), 1, sym__table_head_separator, - STATE(7263), 1, + STATE(7258), 1, sym_comment, - ACTIONS(1016), 2, + ACTIONS(1002), 2, anon_sym_RBRACK, sym__entry_separator, - [229473] = 5, + [227654] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(5903), 1, sym__entry_separator, - ACTIONS(11739), 1, - anon_sym_GT2, - STATE(5547), 1, + ACTIONS(11725), 1, + anon_sym_RBRACK, + STATE(2870), 1, aux_sym__multiple_types_repeat1, - STATE(7264), 1, + STATE(7259), 1, sym_comment, - [229489] = 5, - ACTIONS(251), 1, + [227670] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(6958), 1, + STATE(6968), 1, sym_val_list, - STATE(7121), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, - STATE(7265), 1, + STATE(7260), 1, sym_comment, - [229505] = 5, - ACTIONS(251), 1, + [227686] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(6961), 1, + STATE(6970), 1, sym_val_list, - STATE(7121), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, - STATE(7266), 1, + STATE(7261), 1, sym_comment, - [229521] = 5, - ACTIONS(251), 1, + [227702] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, + STATE(7262), 1, + sym_comment, + ACTIONS(10297), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [227714] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(6964), 1, + STATE(6972), 1, sym_val_list, - STATE(7121), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, - STATE(7267), 1, + STATE(7263), 1, sym_comment, - [229537] = 5, - ACTIONS(251), 1, + [227730] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, + ACTIONS(9787), 1, anon_sym_LBRACK, - STATE(6966), 1, + STATE(6974), 1, sym_val_list, - STATE(7121), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, - STATE(7268), 1, + STATE(7264), 1, sym_comment, - [229553] = 4, + [227746] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11741), 1, - sym__table_head_separator, - STATE(7269), 1, - sym_comment, - ACTIONS(1016), 2, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(11727), 1, anon_sym_RBRACK, + STATE(6225), 1, + aux_sym__multiple_types_repeat1, + STATE(7265), 1, + sym_comment, + [227762] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2491), 1, sym__entry_separator, - [229567] = 4, + STATE(7266), 1, + sym_comment, + ACTIONS(2489), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [227776] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(7267), 1, + sym_comment, + ACTIONS(10375), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [227788] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11743), 1, - sym__table_head_separator, + ACTIONS(2230), 1, + sym__entry_separator, + ACTIONS(11729), 1, + anon_sym_RBRACE, + STATE(635), 1, + aux_sym__multiple_types_repeat1, + STATE(7268), 1, + sym_comment, + [227804] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(11174), 1, + sym_hex_digit, + ACTIONS(11731), 1, + anon_sym_RBRACK, + STATE(7269), 1, + sym_comment, + STATE(7285), 1, + aux_sym_val_binary_repeat1, + [227820] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(11735), 1, + anon_sym_COMMA, STATE(7270), 1, sym_comment, - ACTIONS(1016), 2, + ACTIONS(11733), 2, anon_sym_RBRACK, - sym__entry_separator, - [229581] = 5, - ACTIONS(251), 1, + sym_hex_digit, + [227834] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, - anon_sym_LBRACK, - STATE(6973), 1, - sym_val_list, - STATE(7121), 1, - aux_sym_val_table_repeat1, + ACTIONS(11174), 1, + sym_hex_digit, + ACTIONS(11737), 1, + anon_sym_RBRACK, + STATE(7001), 1, + aux_sym_val_binary_repeat1, STATE(7271), 1, sym_comment, - [229597] = 5, - ACTIONS(251), 1, + [227850] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9773), 1, - anon_sym_LBRACK, - STATE(6975), 1, - sym_val_list, - STATE(7121), 1, - aux_sym_val_table_repeat1, + ACTIONS(2308), 1, + sym__entry_separator, STATE(7272), 1, sym_comment, - [229613] = 4, - ACTIONS(3), 1, + ACTIONS(2306), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [227864] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5681), 1, - sym__entry_separator, STATE(7273), 1, sym_comment, - ACTIONS(5679), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [229627] = 5, - ACTIONS(251), 1, + ACTIONS(10377), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [227876] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, - anon_sym_LBRACK, - STATE(6977), 1, - sym_val_list, - STATE(7121), 1, - aux_sym_val_table_repeat1, + ACTIONS(10265), 1, + anon_sym_if, + ACTIONS(11739), 1, + anon_sym_EQ_GT, STATE(7274), 1, sym_comment, - [229643] = 5, - ACTIONS(251), 1, + STATE(7742), 1, + sym_match_guard, + [227892] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9773), 1, - anon_sym_LBRACK, - STATE(6980), 1, - sym_val_list, - STATE(7121), 1, - aux_sym_val_table_repeat1, + ACTIONS(6111), 1, + sym__entry_separator, + ACTIONS(11741), 1, + anon_sym_RBRACE, + STATE(3004), 1, + aux_sym__multiple_types_repeat1, STATE(7275), 1, sym_comment, - [229659] = 3, - ACTIONS(251), 1, + [227908] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(7276), 1, sym_comment, - ACTIONS(11745), 3, + ACTIONS(10866), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [229671] = 3, - ACTIONS(251), 1, + [227920] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(7277), 1, sym_comment, - ACTIONS(11747), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [229683] = 3, - ACTIONS(251), 1, + ACTIONS(11743), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [227932] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(7278), 1, sym_comment, - ACTIONS(10425), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [229695] = 3, - ACTIONS(251), 1, + ACTIONS(5982), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [227944] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(7279), 1, sym_comment, - ACTIONS(5808), 3, + ACTIONS(6236), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [229707] = 3, - ACTIONS(251), 1, + [227956] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(7280), 1, sym_comment, - ACTIONS(6250), 3, + ACTIONS(6240), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [229719] = 3, - ACTIONS(251), 1, + [227968] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6604), 1, + sym__entry_separator, + ACTIONS(11745), 1, + anon_sym_RBRACK, + STATE(6226), 1, + aux_sym__multiple_types_repeat1, STATE(7281), 1, sym_comment, - ACTIONS(6196), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [229731] = 3, - ACTIONS(251), 1, + [227984] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(7282), 1, sym_comment, - ACTIONS(11086), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [229743] = 4, + ACTIONS(6004), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [227996] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5685), 1, + ACTIONS(2459), 1, sym__entry_separator, STATE(7283), 1, sym_comment, - ACTIONS(5683), 2, + ACTIONS(2457), 2, anon_sym_RBRACK, - anon_sym_GT2, - [229757] = 5, - ACTIONS(251), 1, + anon_sym_RBRACE, + [228010] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3826), 1, - sym__newline, - ACTIONS(11749), 1, - anon_sym_COLON, - STATE(1800), 1, - aux_sym_shebang_repeat1, STATE(7284), 1, sym_comment, - [229773] = 5, - ACTIONS(251), 1, + ACTIONS(2154), 3, + sym__newline, + sym__space, + anon_sym_COLON2, + [228022] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1783), 1, - aux_sym_unquoted_token2, - ACTIONS(1785), 1, - anon_sym_LBRACE, - ACTIONS(11751), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(11174), 1, + sym_hex_digit, + ACTIONS(11747), 1, + anon_sym_RBRACK, + STATE(6729), 1, + aux_sym_val_binary_repeat1, STATE(7285), 1, sym_comment, - [229789] = 5, + [228038] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - ACTIONS(11753), 1, - anon_sym_RBRACK, - STATE(3582), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(11749), 1, + sym__newline, + ACTIONS(11751), 1, + sym__space, STATE(7286), 1, sym_comment, - [229805] = 5, - ACTIONS(251), 1, + [228051] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11149), 1, - sym_hex_digit, - ACTIONS(11755), 1, - anon_sym_RBRACK, - STATE(6714), 1, - aux_sym_val_binary_repeat1, + ACTIONS(6313), 1, + anon_sym_LBRACE, + STATE(4951), 1, + sym_block, STATE(7287), 1, sym_comment, - [229821] = 5, + [228064] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6085), 1, + ACTIONS(5084), 1, sym__entry_separator, - ACTIONS(11757), 1, + ACTIONS(5087), 1, anon_sym_RBRACE, - STATE(3001), 1, - aux_sym__multiple_types_repeat1, STATE(7288), 1, sym_comment, - [229837] = 3, - ACTIONS(251), 1, + [228077] = 4, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(5565), 1, + anon_sym_LPAREN2, STATE(7289), 1, sym_comment, - ACTIONS(6209), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [229849] = 5, + STATE(7434), 1, + sym__expr_parenthesized_immediate, + [228090] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, + ACTIONS(11753), 1, + anon_sym_RBRACE, + ACTIONS(11755), 1, sym__entry_separator, - ACTIONS(11759), 1, - anon_sym_GT2, - STATE(5565), 1, - aux_sym__multiple_types_repeat1, STATE(7290), 1, sym_comment, - [229865] = 4, - ACTIONS(251), 1, + [228103] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2178), 1, - aux_sym_unquoted_token2, + ACTIONS(1935), 1, + anon_sym_RBRACE, + ACTIONS(1937), 1, + sym__entry_separator, STATE(7291), 1, sym_comment, - ACTIONS(2176), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [229879] = 5, + [228116] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6085), 1, + ACTIONS(11757), 1, + anon_sym_RBRACK, + ACTIONS(11759), 1, sym__entry_separator, - ACTIONS(11761), 1, - anon_sym_RBRACE, - STATE(3002), 1, - aux_sym__multiple_types_repeat1, STATE(7292), 1, sym_comment, - [229895] = 5, - ACTIONS(251), 1, + [228129] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11149), 1, - sym_hex_digit, - ACTIONS(11763), 1, - anon_sym_RBRACK, - STATE(7031), 1, - aux_sym_val_binary_repeat1, + ACTIONS(11761), 1, + aux_sym__unquoted_with_expr_token1, STATE(7293), 1, sym_comment, - [229911] = 3, - ACTIONS(251), 1, + STATE(7301), 1, + aux_sym__unquoted_with_expr_repeat1, + [228142] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(11763), 1, + aux_sym__unquoted_with_expr_token1, STATE(7294), 1, sym_comment, - ACTIONS(11765), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [229923] = 3, - ACTIONS(251), 1, + STATE(7302), 1, + aux_sym__unquoted_with_expr_repeat1, + [228155] = 4, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(5050), 1, + anon_sym_LBRACE, + ACTIONS(11765), 1, + anon_sym_EQ2, STATE(7295), 1, sym_comment, - ACTIONS(11767), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [229935] = 5, - ACTIONS(251), 1, + [228168] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1622), 1, - anon_sym_SEMI, - ACTIONS(3826), 1, - sym__newline, - STATE(1800), 1, - aux_sym_shebang_repeat1, STATE(7296), 1, sym_comment, - [229951] = 5, + ACTIONS(1288), 2, + anon_sym_POUND_BANG, + sym__newline, + [228179] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5890), 1, - sym__entry_separator, - ACTIONS(11769), 1, - anon_sym_RBRACK, - STATE(2846), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(11767), 1, + aux_sym__unquoted_with_expr_token1, STATE(7297), 1, sym_comment, - [229967] = 4, + STATE(7393), 1, + aux_sym__unquoted_with_expr_repeat1, + [228192] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11771), 1, + ACTIONS(11769), 1, aux_sym__unquoted_with_expr_token1, STATE(7298), 1, sym_comment, - STATE(7354), 1, + STATE(7396), 1, aux_sym__unquoted_with_expr_repeat1, - [229980] = 4, + [228205] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11773), 1, + ACTIONS(11771), 1, aux_sym__unquoted_with_expr_token1, STATE(7299), 1, sym_comment, - STATE(7304), 1, + STATE(7343), 1, aux_sym__unquoted_with_expr_repeat1, - [229993] = 4, + [228218] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(11773), 1, + anon_sym_RBRACK, ACTIONS(11775), 1, - aux_sym__unquoted_with_expr_token1, + sym__entry_separator, STATE(7300), 1, sym_comment, - STATE(7305), 1, - aux_sym__unquoted_with_expr_repeat1, - [230006] = 4, - ACTIONS(251), 1, + [228231] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9736), 1, - anon_sym_LBRACE, - STATE(6668), 1, - sym_val_record, + ACTIONS(11777), 1, + aux_sym__unquoted_with_expr_token1, STATE(7301), 1, sym_comment, - [230019] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1835), 1, - aux_sym_unquoted_token2, - ACTIONS(1837), 1, - anon_sym_LBRACE, - STATE(7302), 1, - sym_comment, - [230032] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7303), 1, - sym_comment, - ACTIONS(11777), 2, - anon_sym_RBRACK, - sym_hex_digit, - [230043] = 4, + STATE(7343), 1, + aux_sym__unquoted_with_expr_repeat1, + [228244] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(11779), 1, aux_sym__unquoted_with_expr_token1, - STATE(7304), 1, + STATE(7302), 1, sym_comment, - STATE(7354), 1, + STATE(7343), 1, aux_sym__unquoted_with_expr_repeat1, - [230056] = 4, + [228257] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(11781), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7305), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7303), 1, sym_comment, - STATE(7354), 1, - aux_sym__unquoted_with_expr_repeat1, - [230069] = 4, + STATE(7307), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [228270] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(11783), 1, aux_sym__unquoted_in_record_with_expr_token1, - STATE(7306), 1, + STATE(7304), 1, sym_comment, - STATE(7308), 1, + STATE(7311), 1, aux_sym__unquoted_in_record_with_expr_repeat1, - [230082] = 4, - ACTIONS(3), 1, + [228283] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1562), 1, + aux_sym_unquoted_token2, + ACTIONS(2172), 1, + anon_sym_LBRACE, + STATE(7305), 1, + sym_comment, + [228296] = 4, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(3444), 1, + anon_sym_COLON2, ACTIONS(11785), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7307), 1, + anon_sym_make, + STATE(7306), 1, sym_comment, - STATE(7309), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [230095] = 4, + [228309] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(11787), 1, aux_sym__unquoted_in_record_with_expr_token1, - STATE(7308), 1, + STATE(7307), 1, sym_comment, - STATE(7337), 1, + STATE(7410), 1, aux_sym__unquoted_in_record_with_expr_repeat1, - [230108] = 4, + [228322] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(11789), 1, aux_sym__unquoted_in_record_with_expr_token1, - STATE(7309), 1, + STATE(7308), 1, sym_comment, - STATE(7337), 1, + STATE(7410), 1, aux_sym__unquoted_in_record_with_expr_repeat1, - [230121] = 4, - ACTIONS(251), 1, + [228335] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6284), 1, - anon_sym_LBRACE, - STATE(6672), 1, - sym_block, + STATE(7309), 1, + sym_comment, + ACTIONS(980), 2, + sym__table_head_separator, + anon_sym_DOT2, + [228346] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8072), 1, + sym__entry_separator, + ACTIONS(8074), 1, + anon_sym_RBRACK, STATE(7310), 1, sym_comment, - [230134] = 4, + [228359] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(11791), 1, - aux_sym__unquoted_with_expr_token1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(7311), 1, sym_comment, - STATE(7354), 1, - aux_sym__unquoted_with_expr_repeat1, - [230147] = 4, + STATE(7410), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [228372] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11793), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(6604), 1, + sym__entry_separator, + STATE(7124), 1, + aux_sym__multiple_types_repeat1, STATE(7312), 1, sym_comment, - STATE(7337), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [230160] = 4, + [228385] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11795), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(11793), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(7313), 1, sym_comment, - STATE(7354), 1, - aux_sym__unquoted_with_expr_repeat1, - [230173] = 4, + STATE(7410), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [228398] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11797), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(7978), 1, + anon_sym_RBRACK, + ACTIONS(7980), 1, + sym__entry_separator, STATE(7314), 1, sym_comment, - STATE(7408), 1, - aux_sym__unquoted_with_expr_repeat1, - [230186] = 4, + [228411] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11799), 1, + ACTIONS(11795), 1, aux_sym__unquoted_in_record_with_expr_token1, STATE(7315), 1, sym_comment, - STATE(7337), 1, + STATE(7407), 1, aux_sym__unquoted_in_record_with_expr_repeat1, - [230199] = 4, + [228424] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11801), 1, + ACTIONS(11797), 1, aux_sym__unquoted_in_record_with_expr_token1, STATE(7316), 1, sym_comment, - STATE(7337), 1, + STATE(7408), 1, aux_sym__unquoted_in_record_with_expr_repeat1, - [230212] = 4, - ACTIONS(251), 1, + [228437] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, + ACTIONS(11799), 1, + aux_sym__unquoted_with_expr_token1, STATE(7317), 1, sym_comment, - STATE(7580), 1, - sym__expr_parenthesized_immediate, - [230225] = 4, - ACTIONS(3), 1, + STATE(7343), 1, + aux_sym__unquoted_with_expr_repeat1, + [228450] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11803), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(4452), 1, + anon_sym_LPAREN2, STATE(7318), 1, sym_comment, - STATE(7354), 1, - aux_sym__unquoted_with_expr_repeat1, - [230238] = 4, + STATE(7349), 1, + sym__expr_parenthesized_immediate, + [228463] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11805), 1, - anon_sym_RBRACK, - ACTIONS(11807), 1, - sym__entry_separator, + ACTIONS(11801), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(7319), 1, sym_comment, - [230251] = 4, + STATE(7352), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [228476] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, + ACTIONS(2164), 1, + anon_sym_RBRACE, + ACTIONS(2166), 1, sym__entry_separator, - STATE(3601), 1, - aux_sym__multiple_types_repeat1, STATE(7320), 1, sym_comment, - [230264] = 4, - ACTIONS(251), 1, + [228489] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3442), 1, - anon_sym_COLON2, - ACTIONS(11809), 1, - anon_sym_make, STATE(7321), 1, sym_comment, - [230277] = 4, - ACTIONS(251), 1, + ACTIONS(976), 2, + sym__table_head_separator, + anon_sym_DOT2, + [228500] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6290), 1, - anon_sym_LBRACE, - STATE(4809), 1, - sym_block, + ACTIONS(10115), 1, + anon_sym_RBRACE, + ACTIONS(10117), 1, + sym__entry_separator, STATE(7322), 1, sym_comment, - [230290] = 4, - ACTIONS(251), 1, + [228513] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(7314), 1, - sym__expr_parenthesized_immediate, + ACTIONS(5791), 1, + sym__entry_separator, + STATE(2796), 1, + aux_sym__multiple_types_repeat1, STATE(7323), 1, sym_comment, - [230303] = 4, - ACTIONS(3), 1, + [228526] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11811), 1, - anon_sym_RBRACE, - ACTIONS(11813), 1, - sym__entry_separator, STATE(7324), 1, sym_comment, - [230316] = 4, - ACTIONS(251), 1, + ACTIONS(984), 2, + sym__table_head_separator, + anon_sym_DOT2, + [228537] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4984), 1, - anon_sym_LBRACE, - ACTIONS(11815), 1, - anon_sym_EQ2, + ACTIONS(4452), 1, + anon_sym_LPAREN2, STATE(7325), 1, sym_comment, - [230329] = 4, - ACTIONS(251), 1, + STATE(7477), 1, + sym__expr_parenthesized_immediate, + [228550] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1820), 1, - anon_sym_LBRACE, - ACTIONS(1822), 1, - aux_sym_unquoted_token2, + ACTIONS(11803), 1, + aux_sym__unquoted_with_expr_token1, STATE(7326), 1, sym_comment, - [230342] = 4, - ACTIONS(3), 1, + STATE(7343), 1, + aux_sym__unquoted_with_expr_repeat1, + [228563] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11817), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7315), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, + ACTIONS(1641), 1, + anon_sym_LPAREN2, STATE(7327), 1, sym_comment, - [230355] = 4, - ACTIONS(3), 1, + STATE(7427), 1, + sym__expr_parenthesized_immediate, + [228576] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11819), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7316), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, + ACTIONS(6313), 1, + anon_sym_LBRACE, + STATE(6657), 1, + sym_block, STATE(7328), 1, sym_comment, - [230368] = 4, - ACTIONS(3), 1, + [228589] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5890), 1, - sym__entry_separator, - STATE(2885), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(6315), 1, + anon_sym_LBRACE, + STATE(7210), 1, + sym_block, STATE(7329), 1, sym_comment, - [230381] = 4, - ACTIONS(251), 1, + [228602] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, STATE(7330), 1, sym_comment, - STATE(7447), 1, - sym__expr_parenthesized_immediate, - [230394] = 4, - ACTIONS(251), 1, + ACTIONS(11629), 2, + anon_sym_GT2, + anon_sym_AT, + [228613] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5555), 1, - anon_sym_LPAREN2, + ACTIONS(5060), 1, + anon_sym_LBRACE, + ACTIONS(11805), 1, + anon_sym_EQ2, STATE(7331), 1, sym_comment, - STATE(7514), 1, - sym__expr_parenthesized_immediate, - [230407] = 4, + [228626] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11821), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(2067), 1, + anon_sym_LPAREN2, + ACTIONS(2071), 1, + aux_sym__unquoted_in_record_token4, STATE(7332), 1, sym_comment, - STATE(7354), 1, - aux_sym__unquoted_with_expr_repeat1, - [230420] = 4, - ACTIONS(3), 1, + [228639] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10219), 1, - anon_sym_RBRACE, - ACTIONS(10221), 1, - sym__entry_separator, + ACTIONS(1701), 1, + aux_sym_unquoted_token2, + ACTIONS(1703), 1, + anon_sym_LBRACE, STATE(7333), 1, sym_comment, - [230433] = 4, + [228652] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11823), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(1816), 1, + anon_sym_RBRACE, + ACTIONS(1824), 1, + sym__entry_separator, STATE(7334), 1, sym_comment, - STATE(7354), 1, - aux_sym__unquoted_with_expr_repeat1, - [230446] = 4, - ACTIONS(251), 1, + [228665] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6284), 1, + ACTIONS(1766), 1, + aux_sym_unquoted_token2, + ACTIONS(1768), 1, anon_sym_LBRACE, - STATE(6261), 1, - sym_block, STATE(7335), 1, sym_comment, - [230459] = 4, - ACTIONS(251), 1, + [228678] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1650), 1, - anon_sym_LBRACE, - ACTIONS(7078), 1, - aux_sym_unquoted_token2, + ACTIONS(11807), 1, + sym__newline, + ACTIONS(11809), 1, + sym__space, STATE(7336), 1, sym_comment, - [230472] = 3, - ACTIONS(3), 1, + [228691] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11825), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7337), 2, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(7337), 1, sym_comment, - aux_sym__unquoted_in_record_with_expr_repeat1, - [230483] = 4, + STATE(7444), 1, + sym__expr_parenthesized_immediate, + [228704] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11828), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(2168), 1, + anon_sym_RBRACE, + ACTIONS(2172), 1, + sym__entry_separator, STATE(7338), 1, sym_comment, - STATE(7445), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [230496] = 4, - ACTIONS(251), 1, + [228717] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1640), 1, - anon_sym_LPAREN2, - STATE(7327), 1, - sym__expr_parenthesized_immediate, + ACTIONS(11811), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(7339), 1, sym_comment, - [230509] = 4, - ACTIONS(251), 1, + STATE(7352), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [228730] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11830), 1, - anon_sym_DASH2, + ACTIONS(2067), 1, + anon_sym_LPAREN2, + ACTIONS(2071), 1, + aux_sym__unquoted_in_list_token4, STATE(7340), 1, sym_comment, - STATE(7576), 1, - sym_param_short_flag, - [230522] = 4, - ACTIONS(251), 1, + [228743] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6290), 1, - anon_sym_LBRACE, - STATE(6989), 1, - sym_block, + ACTIONS(11813), 1, + anon_sym_RBRACE, + ACTIONS(11815), 1, + sym__entry_separator, STATE(7341), 1, sym_comment, - [230535] = 4, - ACTIONS(251), 1, + [228756] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6290), 1, - anon_sym_LBRACE, - STATE(6981), 1, - sym_block, + ACTIONS(2067), 1, + anon_sym_LPAREN2, + ACTIONS(2071), 1, + aux_sym_unquoted_token4, STATE(7342), 1, sym_comment, - [230548] = 4, + [228769] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7847), 1, - anon_sym_RBRACK, - ACTIONS(7849), 1, - sym__entry_separator, - STATE(7343), 1, + ACTIONS(11817), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7343), 2, sym_comment, - [230561] = 4, + aux_sym__unquoted_with_expr_repeat1, + [228780] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11832), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(6604), 1, + sym__entry_separator, + STATE(3619), 1, + aux_sym__multiple_types_repeat1, STATE(7344), 1, sym_comment, - STATE(7440), 1, - aux_sym__unquoted_with_expr_repeat1, - [230574] = 4, - ACTIONS(3), 1, + [228793] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11834), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7312), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, + ACTIONS(6313), 1, + anon_sym_LBRACE, + STATE(6187), 1, + sym_block, STATE(7345), 1, sym_comment, - [230587] = 4, - ACTIONS(251), 1, + [228806] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6290), 1, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + ACTIONS(1814), 1, anon_sym_LBRACE, - STATE(7091), 1, - sym_block, STATE(7346), 1, sym_comment, - [230600] = 4, + [228819] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2136), 1, + ACTIONS(10139), 1, anon_sym_RBRACE, - ACTIONS(2140), 1, + ACTIONS(10141), 1, sym__entry_separator, STATE(7347), 1, sym_comment, - [230613] = 3, - ACTIONS(251), 1, + [228832] = 4, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(6313), 1, + anon_sym_LBRACE, + STATE(6656), 1, + sym_block, STATE(7348), 1, sym_comment, - ACTIONS(11602), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [230624] = 4, + [228845] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8410), 1, - sym__entry_separator, - ACTIONS(8412), 1, - anon_sym_RBRACK, + ACTIONS(11820), 1, + aux_sym__unquoted_with_expr_token1, STATE(7349), 1, sym_comment, - [230637] = 4, - ACTIONS(3), 1, + STATE(7387), 1, + aux_sym__unquoted_with_expr_repeat1, + [228858] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2144), 1, - anon_sym_RBRACE, - ACTIONS(2146), 1, - sym__entry_separator, + ACTIONS(6315), 1, + anon_sym_LBRACE, + STATE(7088), 1, + sym_block, STATE(7350), 1, sym_comment, - [230650] = 4, - ACTIONS(251), 1, + [228871] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6284), 1, - anon_sym_LBRACE, - STATE(6262), 1, - sym_block, + ACTIONS(1641), 1, + anon_sym_LPAREN2, STATE(7351), 1, sym_comment, - [230663] = 4, + STATE(7668), 1, + sym__expr_parenthesized_immediate, + [228884] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6594), 1, - sym__entry_separator, - STATE(6718), 1, - aux_sym__multiple_types_repeat1, - STATE(7352), 1, + ACTIONS(11822), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7352), 2, sym_comment, - [230676] = 4, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [228895] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6290), 1, + ACTIONS(6313), 1, anon_sym_LBRACE, - STATE(6783), 1, + STATE(4823), 1, sym_block, STATE(7353), 1, sym_comment, - [230689] = 3, + [228908] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11836), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7354), 2, + ACTIONS(2073), 1, + anon_sym_RBRACE, + ACTIONS(2077), 1, + sym__entry_separator, + STATE(7354), 1, sym_comment, - aux_sym__unquoted_with_expr_repeat1, - [230700] = 4, + [228921] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7426), 1, - anon_sym_RBRACK, - ACTIONS(7428), 1, - sym__entry_separator, + ACTIONS(11825), 1, + aux_sym__unquoted_with_expr_token1, STATE(7355), 1, sym_comment, - [230713] = 4, - ACTIONS(3), 1, + STATE(7401), 1, + aux_sym__unquoted_with_expr_repeat1, + [228934] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1851), 1, - anon_sym_RBRACE, - ACTIONS(1853), 1, - sym__entry_separator, + ACTIONS(6313), 1, + anon_sym_LBRACE, + STATE(6193), 1, + sym_block, STATE(7356), 1, sym_comment, - [230726] = 4, - ACTIONS(251), 1, + [228947] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1711), 1, - aux_sym_unquoted_token2, - ACTIONS(1713), 1, - anon_sym_LBRACE, + ACTIONS(11827), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7339), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, STATE(7357), 1, sym_comment, - [230739] = 4, - ACTIONS(251), 1, + [228960] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6290), 1, - anon_sym_LBRACE, - STATE(4742), 1, - sym_block, + ACTIONS(2000), 1, + anon_sym_RBRACE, + ACTIONS(2006), 1, + sym__entry_separator, STATE(7358), 1, sym_comment, - [230752] = 4, - ACTIONS(3), 1, + [228973] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11839), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(6315), 1, + anon_sym_LBRACE, + STATE(6858), 1, + sym_block, STATE(7359), 1, sym_comment, - STATE(7432), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [230765] = 4, - ACTIONS(251), 1, + [228986] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6284), 1, - anon_sym_LBRACE, - STATE(6683), 1, - sym_block, + ACTIONS(2417), 1, + anon_sym_RBRACE, + ACTIONS(2419), 1, + sym__entry_separator, STATE(7360), 1, sym_comment, - [230778] = 4, - ACTIONS(251), 1, + [228999] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6290), 1, - anon_sym_LBRACE, - STATE(7150), 1, - sym_block, STATE(7361), 1, sym_comment, - [230791] = 4, + ACTIONS(11384), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [229010] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11841), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(5903), 1, + sym__entry_separator, + STATE(2951), 1, + aux_sym__multiple_types_repeat1, STATE(7362), 1, sym_comment, - STATE(7365), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [230804] = 4, - ACTIONS(251), 1, + [229023] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6290), 1, - anon_sym_LBRACE, - STATE(7134), 1, - sym_block, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(7297), 1, + sym__expr_parenthesized_immediate, STATE(7363), 1, sym_comment, - [230817] = 4, - ACTIONS(3), 1, + [229036] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2220), 1, - anon_sym_RBRACE, - ACTIONS(2222), 1, - sym__entry_separator, + ACTIONS(6315), 1, + anon_sym_LBRACE, + STATE(7022), 1, + sym_block, STATE(7364), 1, sym_comment, - [230830] = 3, - ACTIONS(3), 1, + [229049] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11843), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7365), 2, + ACTIONS(1641), 1, + anon_sym_LPAREN2, + STATE(7365), 1, sym_comment, - aux_sym__unquoted_in_list_with_expr_repeat1, - [230841] = 4, - ACTIONS(3), 1, + STATE(7402), 1, + sym__expr_parenthesized_immediate, + [229062] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2007), 1, - anon_sym_RBRACE, - ACTIONS(2013), 1, - sym__entry_separator, + ACTIONS(1651), 1, + anon_sym_LBRACE, + ACTIONS(7070), 1, + aux_sym_unquoted_token2, STATE(7366), 1, sym_comment, - [230854] = 4, - ACTIONS(251), 1, + [229075] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6290), 1, + ACTIONS(6315), 1, anon_sym_LBRACE, - STATE(7098), 1, + STATE(7174), 1, sym_block, STATE(7367), 1, sym_comment, - [230867] = 4, - ACTIONS(251), 1, + [229088] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6284), 1, - anon_sym_LBRACE, - STATE(4923), 1, - sym_block, + ACTIONS(5974), 1, + anon_sym_RBRACK, + ACTIONS(5980), 1, + sym__entry_separator, STATE(7368), 1, sym_comment, - [230880] = 4, + [229101] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2130), 1, - anon_sym_LPAREN2, - ACTIONS(2134), 1, - aux_sym_unquoted_token4, + ACTIONS(9244), 1, + sym__entry_separator, + STATE(5675), 1, + aux_sym__multiple_types_repeat1, STATE(7369), 1, sym_comment, - [230893] = 4, + [229114] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11846), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(8410), 1, + sym__entry_separator, + ACTIONS(8412), 1, + anon_sym_GT2, STATE(7370), 1, sym_comment, - STATE(7410), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [230906] = 4, + [229127] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11848), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(2085), 1, + anon_sym_RBRACE, + ACTIONS(2087), 1, + sym__entry_separator, STATE(7371), 1, sym_comment, - STATE(7424), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [230919] = 3, + [229140] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(9244), 1, + sym__entry_separator, + STATE(5680), 1, + aux_sym__multiple_types_repeat1, STATE(7372), 1, sym_comment, - ACTIONS(1309), 2, - anon_sym_POUND_BANG, - sym__newline, - [230930] = 4, - ACTIONS(3), 1, + [229153] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1812), 1, - anon_sym_RBRACE, - ACTIONS(1820), 1, - sym__entry_separator, + ACTIONS(6313), 1, + anon_sym_LBRACE, + STATE(6240), 1, + sym_block, STATE(7373), 1, sym_comment, - [230943] = 4, - ACTIONS(251), 1, + [229166] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1822), 1, - aux_sym_unquoted_token2, - ACTIONS(2222), 1, - anon_sym_LBRACE, + ACTIONS(7434), 1, + anon_sym_RBRACK, + ACTIONS(7436), 1, + sym__entry_separator, STATE(7374), 1, sym_comment, - [230956] = 4, - ACTIONS(251), 1, + [229179] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6290), 1, - anon_sym_LBRACE, - STATE(6929), 1, - sym_block, + ACTIONS(2018), 1, + anon_sym_RBRACE, + ACTIONS(2020), 1, + sym__entry_separator, STATE(7375), 1, sym_comment, - [230969] = 4, - ACTIONS(251), 1, + [229192] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3420), 1, - anon_sym_COLON2, - ACTIONS(11809), 1, - anon_sym_make, + ACTIONS(6315), 1, + anon_sym_LBRACE, + STATE(7026), 1, + sym_block, STATE(7376), 1, sym_comment, - [230982] = 4, - ACTIONS(251), 1, + [229205] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, + ACTIONS(2397), 1, + anon_sym_RBRACE, + ACTIONS(2399), 1, + sym__entry_separator, STATE(7377), 1, sym_comment, - STATE(7393), 1, - sym__expr_parenthesized_immediate, - [230995] = 4, + [229218] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11850), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7318), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(11829), 1, + sym__newline, + ACTIONS(11831), 1, + sym__space, STATE(7378), 1, sym_comment, - [231008] = 4, - ACTIONS(251), 1, + [229231] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1640), 1, - anon_sym_LPAREN2, - STATE(7338), 1, - sym__expr_parenthesized_immediate, + ACTIONS(1824), 1, + anon_sym_LBRACE, + ACTIONS(1826), 1, + aux_sym_unquoted_token2, STATE(7379), 1, sym_comment, - [231021] = 4, - ACTIONS(3), 1, + [229244] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5043), 1, - sym__entry_separator, - ACTIONS(5046), 1, - anon_sym_RBRACE, + ACTIONS(1792), 1, + aux_sym_unquoted_token2, + ACTIONS(1794), 1, + anon_sym_LBRACE, STATE(7380), 1, sym_comment, - [231034] = 4, - ACTIONS(3), 1, + [229257] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11852), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(6313), 1, + anon_sym_LBRACE, + STATE(5183), 1, + sym_block, STATE(7381), 1, sym_comment, - STATE(7395), 1, - aux_sym__unquoted_with_expr_repeat1, - [231047] = 4, - ACTIONS(251), 1, + [229270] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1755), 1, - aux_sym_unquoted_token2, - ACTIONS(1757), 1, - anon_sym_LBRACE, + ACTIONS(11833), 1, + aux_sym__unquoted_with_expr_token1, STATE(7382), 1, sym_comment, - [231060] = 4, + STATE(7390), 1, + aux_sym__unquoted_with_expr_repeat1, + [229283] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2061), 1, - anon_sym_RBRACE, - ACTIONS(2063), 1, - sym__entry_separator, + ACTIONS(11835), 1, + aux_sym__unquoted_with_expr_token1, STATE(7383), 1, sym_comment, - [231073] = 4, + STATE(7391), 1, + aux_sym__unquoted_with_expr_repeat1, + [229296] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11854), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(2014), 1, + anon_sym_RBRACE, + ACTIONS(2016), 1, + sym__entry_separator, STATE(7384), 1, sym_comment, - STATE(7399), 1, - aux_sym__unquoted_with_expr_repeat1, - [231086] = 4, + [229309] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3549), 1, - sym__space, - STATE(1145), 1, - aux_sym_pipe_element_repeat1, + ACTIONS(11837), 1, + anon_sym_RBRACK, + ACTIONS(11839), 1, + sym__entry_separator, STATE(7385), 1, sym_comment, - [231099] = 4, - ACTIONS(251), 1, + [229322] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6290), 1, - anon_sym_LBRACE, - STATE(7034), 1, - sym_block, + ACTIONS(4452), 1, + anon_sym_LPAREN2, + STATE(7293), 1, + sym__expr_parenthesized_immediate, STATE(7386), 1, sym_comment, - [231112] = 4, + [229335] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2318), 1, - sym__entry_separator, - STATE(711), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(11841), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7343), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(7387), 1, sym_comment, - [231125] = 4, - ACTIONS(3), 1, + [229348] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2172), 1, - anon_sym_RBRACE, - ACTIONS(2176), 1, - sym__entry_separator, + ACTIONS(1641), 1, + anon_sym_LPAREN2, + STATE(7303), 1, + sym__expr_parenthesized_immediate, STATE(7388), 1, sym_comment, - [231138] = 4, + [229361] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6085), 1, + ACTIONS(1806), 1, + anon_sym_RBRACE, + ACTIONS(1814), 1, sym__entry_separator, - STATE(3068), 1, - aux_sym__multiple_types_repeat1, STATE(7389), 1, sym_comment, - [231151] = 4, - ACTIONS(251), 1, + [229374] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2176), 1, - anon_sym_LBRACE, - ACTIONS(2178), 1, - aux_sym_unquoted_token2, + ACTIONS(11843), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7343), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(7390), 1, sym_comment, - [231164] = 4, - ACTIONS(251), 1, + [229387] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6284), 1, - anon_sym_LBRACE, - STATE(6240), 1, - sym_block, + ACTIONS(11845), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7343), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(7391), 1, sym_comment, - [231177] = 4, - ACTIONS(251), 1, + [229400] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6284), 1, + ACTIONS(6313), 1, anon_sym_LBRACE, - STATE(6241), 1, + STATE(5129), 1, sym_block, STATE(7392), 1, sym_comment, - [231190] = 4, + [229413] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11856), 1, + ACTIONS(11847), 1, aux_sym__unquoted_with_expr_token1, - STATE(7298), 1, + STATE(7343), 1, aux_sym__unquoted_with_expr_repeat1, STATE(7393), 1, sym_comment, - [231203] = 4, - ACTIONS(3), 1, + [229426] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2130), 1, + ACTIONS(4452), 1, anon_sym_LPAREN2, - ACTIONS(2134), 1, - aux_sym__unquoted_in_record_token4, + STATE(7382), 1, + sym__expr_parenthesized_immediate, STATE(7394), 1, sym_comment, - [231216] = 4, + [229439] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11858), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7354), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(6111), 1, + sym__entry_separator, + STATE(3112), 1, + aux_sym__multiple_types_repeat1, STATE(7395), 1, sym_comment, - [231229] = 4, - ACTIONS(251), 1, + [229452] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6284), 1, - anon_sym_LBRACE, - STATE(5163), 1, - sym_block, + ACTIONS(11849), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7343), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(7396), 1, sym_comment, - [231242] = 4, - ACTIONS(251), 1, + [229465] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym_unquoted_token2, - ACTIONS(1810), 1, - anon_sym_LBRACE, + ACTIONS(4452), 1, + anon_sym_LPAREN2, STATE(7397), 1, sym_comment, - [231255] = 4, + STATE(7413), 1, + sym__expr_parenthesized_immediate, + [229478] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11860), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7334), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(2190), 1, + anon_sym_RBRACE, + ACTIONS(2194), 1, + sym__entry_separator, STATE(7398), 1, sym_comment, - [231268] = 4, - ACTIONS(3), 1, + [229491] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11862), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7354), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(2194), 1, + anon_sym_LBRACE, + ACTIONS(2196), 1, + aux_sym_unquoted_token2, STATE(7399), 1, sym_comment, - [231281] = 4, - ACTIONS(3), 1, + [229504] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2148), 1, - anon_sym_RBRACE, - ACTIONS(2150), 1, - sym__entry_separator, + ACTIONS(9667), 1, + anon_sym_LBRACE, + STATE(7206), 1, + sym_val_record, STATE(7400), 1, sym_comment, - [231294] = 4, - ACTIONS(251), 1, + [229517] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6290), 1, - anon_sym_LBRACE, - STATE(6907), 1, - sym_block, + ACTIONS(11851), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7343), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(7401), 1, sym_comment, - [231307] = 4, - ACTIONS(251), 1, + [229530] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(7299), 1, - sym__expr_parenthesized_immediate, + ACTIONS(11853), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7308), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(7402), 1, sym_comment, - [231320] = 4, + [229543] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11864), 1, - sym__newline, - ACTIONS(11866), 1, - sym__space, + ACTIONS(11855), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7313), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(7403), 1, sym_comment, - [231333] = 4, - ACTIONS(3), 1, + [229556] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2130), 1, - anon_sym_LPAREN2, - ACTIONS(2134), 1, - aux_sym__unquoted_in_list_token4, + ACTIONS(6315), 1, + anon_sym_LBRACE, + STATE(4797), 1, + sym_block, STATE(7404), 1, sym_comment, - [231346] = 3, - ACTIONS(251), 1, + [229569] = 4, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(6315), 1, + anon_sym_LBRACE, + STATE(4906), 1, + sym_block, STATE(7405), 1, sym_comment, - ACTIONS(998), 2, - sym__table_head_separator, - anon_sym_DOT2, - [231357] = 4, - ACTIONS(251), 1, + [229582] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1640), 1, - anon_sym_LPAREN2, - STATE(7306), 1, - sym__expr_parenthesized_immediate, + ACTIONS(2081), 1, + anon_sym_RBRACE, + ACTIONS(2083), 1, + sym__entry_separator, STATE(7406), 1, sym_comment, - [231370] = 4, - ACTIONS(251), 1, + [229595] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1640), 1, - anon_sym_LPAREN2, - STATE(7370), 1, - sym__expr_parenthesized_immediate, + ACTIONS(11857), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(7407), 1, sym_comment, - [231383] = 4, + STATE(7410), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [229608] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11868), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7354), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(11859), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(7408), 1, sym_comment, - [231396] = 4, - ACTIONS(251), 1, + STATE(7410), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [229621] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6284), 1, + ACTIONS(6315), 1, anon_sym_LBRACE, - STATE(5121), 1, + STATE(6742), 1, sym_block, STATE(7409), 1, sym_comment, - [231409] = 4, + [229634] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11870), 1, + ACTIONS(11861), 1, aux_sym__unquoted_in_record_with_expr_token1, - STATE(7337), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(7410), 1, + STATE(7410), 2, sym_comment, - [231422] = 4, + aux_sym__unquoted_in_record_with_expr_repeat1, + [229645] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11872), 1, - anon_sym_LPAREN2, - ACTIONS(11874), 1, - aux_sym__record_key_token1, + ACTIONS(2085), 1, + aux_sym_unquoted_token4, + ACTIONS(2087), 1, + anon_sym_LBRACE, STATE(7411), 1, sym_comment, - [231435] = 4, - ACTIONS(251), 1, + [229658] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_LPAREN2, - STATE(7381), 1, - sym__expr_parenthesized_immediate, + ACTIONS(2069), 1, + anon_sym_LBRACE, + ACTIONS(2071), 1, + aux_sym_unquoted_token4, STATE(7412), 1, sym_comment, - [231448] = 4, + [229671] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2132), 1, - anon_sym_LBRACE, - ACTIONS(2134), 1, - aux_sym_unquoted_token4, + ACTIONS(11864), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7317), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(7413), 1, sym_comment, - [231461] = 4, - ACTIONS(251), 1, + [229684] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, + ACTIONS(1641), 1, anon_sym_LPAREN2, - STATE(7378), 1, + STATE(7315), 1, sym__expr_parenthesized_immediate, STATE(7414), 1, sym_comment, - [231474] = 4, - ACTIONS(3), 1, + [229697] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1012), 1, + ACTIONS(1826), 1, + aux_sym_unquoted_token2, + ACTIONS(2166), 1, anon_sym_LBRACE, - ACTIONS(2208), 1, - aux_sym_unquoted_token4, STATE(7415), 1, sym_comment, - [231487] = 4, - ACTIONS(251), 1, + [229710] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6290), 1, + ACTIONS(6313), 1, anon_sym_LBRACE, - STATE(7038), 1, + STATE(4589), 1, sym_block, STATE(7416), 1, sym_comment, - [231500] = 4, - ACTIONS(3), 1, + [229723] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - STATE(5674), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(6315), 1, + anon_sym_LBRACE, + STATE(6832), 1, + sym_block, STATE(7417), 1, sym_comment, - [231513] = 4, + [229736] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2402), 1, - anon_sym_RBRACE, - ACTIONS(2404), 1, - sym__entry_separator, + ACTIONS(998), 1, + anon_sym_LBRACE, + ACTIONS(2063), 1, + aux_sym_unquoted_token4, STATE(7418), 1, sym_comment, - [231526] = 4, - ACTIONS(251), 1, + [229749] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6284), 1, - anon_sym_LBRACE, - STATE(4625), 1, - sym_block, + ACTIONS(11866), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7326), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(7419), 1, sym_comment, - [231539] = 4, - ACTIONS(251), 1, + [229762] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6284), 1, + ACTIONS(6315), 1, anon_sym_LBRACE, - STATE(6201), 1, + STATE(6835), 1, sym_block, STATE(7420), 1, sym_comment, - [231552] = 4, + [229775] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, - sym__entry_separator, - STATE(5675), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(2077), 1, + anon_sym_LBRACE, + ACTIONS(2079), 1, + aux_sym_unquoted_token4, STATE(7421), 1, sym_comment, - [231565] = 4, + [229788] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11876), 1, - sym__newline, - ACTIONS(11878), 1, - sym__space, + ACTIONS(11868), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7343), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(7422), 1, sym_comment, - [231578] = 4, - ACTIONS(251), 1, + [229801] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6284), 1, - anon_sym_LBRACE, - STATE(6202), 1, - sym_block, + ACTIONS(2065), 1, + anon_sym_RBRACE, + ACTIONS(2069), 1, + sym__entry_separator, STATE(7423), 1, sym_comment, - [231591] = 4, + [229814] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11880), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7337), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, + ACTIONS(2401), 1, + anon_sym_RBRACE, + ACTIONS(2403), 1, + sym__entry_separator, STATE(7424), 1, sym_comment, - [231604] = 4, - ACTIONS(251), 1, + [229827] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11882), 1, - sym_identifier, - ACTIONS(11884), 1, - anon_sym_DOLLAR, + ACTIONS(11870), 1, + anon_sym_DASH2, STATE(7425), 1, sym_comment, - [231617] = 4, - ACTIONS(251), 1, + STATE(7484), 1, + sym_param_short_flag, + [229840] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6284), 1, + ACTIONS(2079), 1, + aux_sym_unquoted_token4, + ACTIONS(2083), 1, anon_sym_LBRACE, - STATE(6218), 1, - sym_block, STATE(7426), 1, sym_comment, - [231630] = 4, - ACTIONS(251), 1, + [229853] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6290), 1, - anon_sym_LBRACE, - STATE(6781), 1, - sym_block, + ACTIONS(11872), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(7427), 1, sym_comment, - [231643] = 4, + STATE(7430), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [229866] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11886), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7362), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, + ACTIONS(11874), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(7428), 1, sym_comment, - [231656] = 4, - ACTIONS(251), 1, + STATE(7432), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [229879] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6284), 1, - anon_sym_LBRACE, - STATE(6232), 1, - sym_block, + ACTIONS(3442), 1, + anon_sym_COLON2, + ACTIONS(11785), 1, + anon_sym_make, STATE(7429), 1, sym_comment, - [231669] = 4, + [229892] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10215), 1, - anon_sym_RBRACE, - ACTIONS(10217), 1, - sym__entry_separator, + ACTIONS(11876), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7410), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(7430), 1, sym_comment, - [231682] = 4, - ACTIONS(251), 1, + [229905] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6284), 1, + ACTIONS(6315), 1, anon_sym_LBRACE, - STATE(6233), 1, + STATE(6881), 1, sym_block, STATE(7431), 1, sym_comment, - [231695] = 4, + [229918] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11888), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7365), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, + ACTIONS(11878), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7410), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(7432), 1, sym_comment, - [231708] = 4, - ACTIONS(3), 1, + [229931] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2128), 1, - anon_sym_RBRACE, - ACTIONS(2132), 1, - sym__entry_separator, + ACTIONS(6315), 1, + anon_sym_LBRACE, + STATE(6755), 1, + sym_block, STATE(7433), 1, sym_comment, - [231721] = 4, - ACTIONS(251), 1, + [229944] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1640), 1, - anon_sym_LPAREN2, + ACTIONS(11880), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7319), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, STATE(7434), 1, sym_comment, - STATE(7495), 1, - sym__expr_parenthesized_immediate, - [231734] = 4, - ACTIONS(251), 1, + [229957] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9672), 1, - anon_sym_LBRACE, - STATE(7282), 1, - sym_val_record, + ACTIONS(5565), 1, + anon_sym_LPAREN2, STATE(7435), 1, sym_comment, - [231747] = 4, + STATE(7838), 1, + sym__expr_parenthesized_immediate, + [229970] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1802), 1, - anon_sym_RBRACE, - ACTIONS(1810), 1, - sym__entry_separator, + ACTIONS(3584), 1, + sym__space, + STATE(1175), 1, + aux_sym_pipe_element_repeat1, STATE(7436), 1, sym_comment, - [231760] = 4, - ACTIONS(3), 1, + [229983] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2148), 1, - aux_sym_unquoted_token4, - ACTIONS(2150), 1, + ACTIONS(9677), 1, anon_sym_LBRACE, + STATE(6610), 1, + sym_val_record, STATE(7437), 1, sym_comment, - [231773] = 4, - ACTIONS(3), 1, + [229996] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2493), 1, - anon_sym_RBRACE, - ACTIONS(2495), 1, - sym__entry_separator, + ACTIONS(6313), 1, + anon_sym_LBRACE, + STATE(6269), 1, + sym_block, STATE(7438), 1, sym_comment, - [231786] = 4, - ACTIONS(3), 1, + [230009] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5722), 1, - sym__entry_separator, - STATE(2771), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(6315), 1, + anon_sym_LBRACE, + STATE(6826), 1, + sym_block, STATE(7439), 1, sym_comment, - [231799] = 4, - ACTIONS(3), 1, + [230022] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11890), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7354), 1, - aux_sym__unquoted_with_expr_repeat1, STATE(7440), 1, sym_comment, - [231812] = 4, - ACTIONS(251), 1, + ACTIONS(11882), 2, + anon_sym_RBRACK, + sym_hex_digit, + [230033] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4970), 1, + ACTIONS(6313), 1, anon_sym_LBRACE, - ACTIONS(11892), 1, - anon_sym_EQ2, + STATE(6552), 1, + sym_block, STATE(7441), 1, sym_comment, - [231825] = 4, - ACTIONS(251), 1, + [230046] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6284), 1, + ACTIONS(6313), 1, anon_sym_LBRACE, - STATE(6301), 1, + STATE(6555), 1, sym_block, STATE(7442), 1, sym_comment, - [231838] = 3, - ACTIONS(251), 1, + [230059] = 4, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(6313), 1, + anon_sym_LBRACE, + STATE(6316), 1, + sym_block, STATE(7443), 1, sym_comment, - ACTIONS(11212), 2, - anon_sym_GT2, - anon_sym_AT, - [231849] = 4, + [230072] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8348), 1, - sym__entry_separator, - ACTIONS(8350), 1, - anon_sym_GT2, + ACTIONS(11884), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7422), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(7444), 1, sym_comment, - [231862] = 4, + [230085] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11894), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7337), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, + ACTIONS(11886), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7299), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(7445), 1, sym_comment, - [231875] = 4, - ACTIONS(3), 1, + [230098] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2140), 1, + ACTIONS(6313), 1, anon_sym_LBRACE, - ACTIONS(2142), 1, - aux_sym_unquoted_token4, + STATE(6185), 1, + sym_block, STATE(7446), 1, sym_comment, - [231888] = 4, + [230111] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11896), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7311), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(2230), 1, + sym__entry_separator, + STATE(724), 1, + aux_sym__multiple_types_repeat1, STATE(7447), 1, sym_comment, - [231901] = 4, - ACTIONS(3), 1, + [230124] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11898), 1, - anon_sym_RBRACK, - ACTIONS(11900), 1, - sym__entry_separator, + ACTIONS(6313), 1, + anon_sym_LBRACE, + STATE(6435), 1, + sym_block, STATE(7448), 1, sym_comment, - [231914] = 4, - ACTIONS(3), 1, + [230137] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2142), 1, - aux_sym_unquoted_token4, - ACTIONS(2146), 1, + ACTIONS(1693), 1, + aux_sym_unquoted_token2, + ACTIONS(1695), 1, anon_sym_LBRACE, STATE(7449), 1, sym_comment, - [231927] = 4, - ACTIONS(3), 1, + [230150] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11902), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7313), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(6313), 1, + anon_sym_LBRACE, + STATE(6239), 1, + sym_block, STATE(7450), 1, sym_comment, - [231940] = 4, + [230163] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5920), 1, - anon_sym_RBRACK, - ACTIONS(5926), 1, - sym__entry_separator, + ACTIONS(11888), 1, + anon_sym_LPAREN2, + ACTIONS(11890), 1, + aux_sym__record_key_token1, STATE(7451), 1, sym_comment, - [231953] = 4, - ACTIONS(251), 1, + [230176] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5555), 1, - anon_sym_LPAREN2, - STATE(7428), 1, - sym__expr_parenthesized_immediate, + ACTIONS(11892), 1, + sym_identifier, + ACTIONS(11894), 1, + anon_sym_DOLLAR, STATE(7452), 1, sym_comment, - [231966] = 4, - ACTIONS(251), 1, + [230189] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6284), 1, - anon_sym_LBRACE, - STATE(4810), 1, - sym_block, + ACTIONS(11896), 1, + anon_sym_RBRACE, STATE(7453), 1, sym_comment, - [231979] = 4, - ACTIONS(3), 1, + [230199] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11904), 1, - anon_sym_RBRACK, - ACTIONS(11906), 1, - sym__entry_separator, + ACTIONS(11898), 1, + aux_sym_env_var_token2, STATE(7454), 1, sym_comment, - [231992] = 4, - ACTIONS(3), 1, + [230209] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11908), 1, - anon_sym_RBRACE, - ACTIONS(11910), 1, - sym__entry_separator, + ACTIONS(11900), 1, + anon_sym_GT2, STATE(7455), 1, sym_comment, - [232005] = 4, - ACTIONS(251), 1, + [230219] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1540), 1, - aux_sym_unquoted_token2, - ACTIONS(2228), 1, - anon_sym_LBRACE, + ACTIONS(11902), 1, + anon_sym_EQ, STATE(7456), 1, sym_comment, - [232018] = 3, - ACTIONS(251), 1, + [230229] = 3, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(11904), 1, + anon_sym_RBRACE, STATE(7457), 1, sym_comment, - ACTIONS(994), 2, - sym__table_head_separator, - anon_sym_DOT2, - [232029] = 4, - ACTIONS(3), 1, + [230239] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2497), 1, - anon_sym_RBRACE, - ACTIONS(2499), 1, - sym__entry_separator, + ACTIONS(11906), 1, + sym_raw_string_end, STATE(7458), 1, sym_comment, - [232042] = 3, - ACTIONS(251), 1, + [230249] = 3, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2026), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(7459), 1, sym_comment, - ACTIONS(990), 2, - sym__table_head_separator, - anon_sym_DOT2, - [232053] = 4, - ACTIONS(3), 1, + [230259] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11912), 1, - sym__newline, - ACTIONS(11914), 1, - sym__space, + ACTIONS(11908), 1, + anon_sym_RBRACE, STATE(7460), 1, sym_comment, - [232066] = 4, - ACTIONS(251), 1, + [230269] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1783), 1, - aux_sym_unquoted_token2, - ACTIONS(1785), 1, - anon_sym_LBRACE, + ACTIONS(11910), 1, + anon_sym_RBRACE, STATE(7461), 1, sym_comment, - [232079] = 4, - ACTIONS(3), 1, + [230279] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2224), 1, - anon_sym_RBRACE, - ACTIONS(2228), 1, - sym__entry_separator, + ACTIONS(11912), 1, + anon_sym_GT2, STATE(7462), 1, sym_comment, - [232092] = 4, - ACTIONS(3), 1, + [230289] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2057), 1, - anon_sym_RBRACE, - ACTIONS(2059), 1, - sym__entry_separator, + ACTIONS(11914), 1, + sym_raw_string_end, STATE(7463), 1, sym_comment, - [232105] = 4, - ACTIONS(3), 1, + [230299] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11916), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7332), 1, - aux_sym__unquoted_with_expr_repeat1, + sym_raw_string_end, STATE(7464), 1, sym_comment, - [232118] = 3, - ACTIONS(251), 1, + [230309] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11918), 1, - sym_raw_string_content, + anon_sym_LPAREN2, STATE(7465), 1, sym_comment, - [232128] = 3, - ACTIONS(251), 1, + [230319] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4487), 1, + ACTIONS(4712), 1, aux_sym_unquoted_token2, STATE(7466), 1, sym_comment, - [232138] = 3, - ACTIONS(3), 1, + [230329] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11920), 1, - aux_sym_cmd_identifier_token41, + anon_sym_RBRACK, STATE(7467), 1, sym_comment, - [232148] = 3, - ACTIONS(251), 1, + [230339] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2480), 1, - sym__table_head_separator, + ACTIONS(11922), 1, + anon_sym_LBRACE, STATE(7468), 1, sym_comment, - [232158] = 3, - ACTIONS(251), 1, + [230349] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11922), 1, - anon_sym_RBRACE, + ACTIONS(11924), 1, + anon_sym_RPAREN, STATE(7469), 1, sym_comment, - [232168] = 3, - ACTIONS(251), 1, + [230359] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11924), 1, - anon_sym_RPAREN, + ACTIONS(11926), 1, + anon_sym_RBRACK, STATE(7470), 1, sym_comment, - [232178] = 3, - ACTIONS(251), 1, + [230369] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7177), 1, - aux_sym_unquoted_token2, + ACTIONS(11928), 1, + anon_sym_RPAREN, STATE(7471), 1, sym_comment, - [232188] = 3, - ACTIONS(3), 1, + [230379] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5619), 1, - aux_sym_unquoted_token4, + ACTIONS(11930), 1, + anon_sym_RBRACE, STATE(7472), 1, sym_comment, - [232198] = 3, - ACTIONS(251), 1, + [230389] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1652), 1, - aux_sym__unquoted_in_record_token2, + ACTIONS(11932), 1, + anon_sym_RBRACE, STATE(7473), 1, sym_comment, - [232208] = 3, - ACTIONS(251), 1, + [230399] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11926), 1, + ACTIONS(11934), 1, sym_raw_string_end, STATE(7474), 1, sym_comment, - [232218] = 3, - ACTIONS(251), 1, + [230409] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11928), 1, - anon_sym_RPAREN, + ACTIONS(11936), 1, + sym_raw_string_end, STATE(7475), 1, sym_comment, - [232228] = 3, - ACTIONS(251), 1, + [230419] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11930), 1, - anon_sym_RBRACK, + ACTIONS(11938), 1, + anon_sym_RPAREN, STATE(7476), 1, sym_comment, - [232238] = 3, - ACTIONS(251), 1, + [230429] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11932), 1, - sym_identifier, + ACTIONS(11940), 1, + aux_sym__unquoted_with_expr_token1, STATE(7477), 1, sym_comment, - [232248] = 3, - ACTIONS(251), 1, + [230439] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11934), 1, - anon_sym_RBRACK, + ACTIONS(11942), 1, + anon_sym_GT2, STATE(7478), 1, sym_comment, - [232258] = 3, - ACTIONS(3), 1, + [230449] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7215), 1, - aux_sym_unquoted_token4, + ACTIONS(11944), 1, + anon_sym_RBRACE, STATE(7479), 1, sym_comment, - [232268] = 3, - ACTIONS(251), 1, + [230459] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11936), 1, - anon_sym_RPAREN, + ACTIONS(11946), 1, + anon_sym_RBRACE, STATE(7480), 1, sym_comment, - [232278] = 3, - ACTIONS(251), 1, + [230469] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11938), 1, - anon_sym_RBRACK, + ACTIONS(11948), 1, + anon_sym_LBRACE, STATE(7481), 1, sym_comment, - [232288] = 3, - ACTIONS(251), 1, + [230479] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11940), 1, - anon_sym_GT2, + ACTIONS(11950), 1, + anon_sym_LBRACE, STATE(7482), 1, sym_comment, - [232298] = 3, - ACTIONS(251), 1, + [230489] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11942), 1, - anon_sym_RPAREN, + ACTIONS(11952), 1, + sym_raw_string_end, STATE(7483), 1, sym_comment, - [232308] = 3, - ACTIONS(251), 1, + [230499] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11944), 1, - anon_sym_RBRACE, + ACTIONS(11954), 1, + anon_sym_RPAREN, STATE(7484), 1, sym_comment, - [232318] = 3, - ACTIONS(251), 1, + [230509] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11946), 1, + ACTIONS(11956), 1, anon_sym_RBRACE, STATE(7485), 1, sym_comment, - [232328] = 3, - ACTIONS(251), 1, + [230519] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11948), 1, - sym_raw_string_end, + ACTIONS(11958), 1, + anon_sym_RBRACE, STATE(7486), 1, sym_comment, - [232338] = 3, - ACTIONS(251), 1, + [230529] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11950), 1, - anon_sym_RBRACE, + ACTIONS(11960), 1, + anon_sym_LBRACE, STATE(7487), 1, sym_comment, - [232348] = 3, - ACTIONS(251), 1, + [230539] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11952), 1, - anon_sym_RBRACE, + ACTIONS(11962), 1, + anon_sym_RPAREN, STATE(7488), 1, sym_comment, - [232358] = 3, - ACTIONS(251), 1, + [230549] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11954), 1, + ACTIONS(11964), 1, anon_sym_RBRACE, STATE(7489), 1, sym_comment, - [232368] = 3, - ACTIONS(251), 1, + [230559] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4644), 1, - aux_sym_unquoted_token2, + ACTIONS(11966), 1, + anon_sym_RBRACE, STATE(7490), 1, sym_comment, - [232378] = 3, - ACTIONS(251), 1, + [230569] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11956), 1, + ACTIONS(11968), 1, sym_raw_string_end, STATE(7491), 1, sym_comment, - [232388] = 3, - ACTIONS(3), 1, + [230579] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1993), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(11970), 1, + anon_sym_RBRACE, STATE(7492), 1, sym_comment, - [232398] = 3, - ACTIONS(251), 1, + [230589] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11958), 1, - anon_sym_RBRACE, + ACTIONS(9999), 1, + aux_sym_unquoted_token2, STATE(7493), 1, sym_comment, - [232408] = 3, + [230599] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11960), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(2063), 1, + aux_sym_unquoted_token4, STATE(7494), 1, sym_comment, - [232418] = 3, - ACTIONS(3), 1, + [230609] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11962), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(11972), 1, + anon_sym_in2, STATE(7495), 1, sym_comment, - [232428] = 3, - ACTIONS(251), 1, + [230619] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11964), 1, - anon_sym_RBRACK, + ACTIONS(11974), 1, + sym_raw_string_end, STATE(7496), 1, sym_comment, - [232438] = 3, - ACTIONS(251), 1, + [230629] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11966), 1, - anon_sym_GT2, + ACTIONS(11976), 1, + sym_raw_string_end, STATE(7497), 1, sym_comment, - [232448] = 3, - ACTIONS(251), 1, + [230639] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11968), 1, - sym_raw_string_content, + ACTIONS(11978), 1, + anon_sym_RPAREN, STATE(7498), 1, sym_comment, - [232458] = 3, - ACTIONS(251), 1, + [230649] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11970), 1, - anon_sym_RPAREN, + ACTIONS(11980), 1, + anon_sym_RBRACK, STATE(7499), 1, sym_comment, - [232468] = 3, - ACTIONS(251), 1, + [230659] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11972), 1, - anon_sym_RPAREN, + ACTIONS(11982), 1, + anon_sym_RBRACE, STATE(7500), 1, sym_comment, - [232478] = 3, - ACTIONS(251), 1, + [230669] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11974), 1, - anon_sym_in2, + ACTIONS(11984), 1, + sym_raw_string_content, STATE(7501), 1, sym_comment, - [232488] = 3, - ACTIONS(251), 1, + [230679] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11976), 1, - anon_sym_RBRACE, + ACTIONS(1653), 1, + aux_sym__unquoted_in_record_token2, STATE(7502), 1, sym_comment, - [232498] = 3, - ACTIONS(251), 1, + [230689] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11978), 1, - sym_raw_string_end, + ACTIONS(11986), 1, + anon_sym_RBRACE, STATE(7503), 1, sym_comment, - [232508] = 3, - ACTIONS(251), 1, + [230699] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11980), 1, - anon_sym_RBRACE, + ACTIONS(8840), 1, + aux_sym__unquoted_in_record_token2, STATE(7504), 1, sym_comment, - [232518] = 3, - ACTIONS(251), 1, + [230709] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11982), 1, - anon_sym_RBRACE, + ACTIONS(4665), 1, + anon_sym_COLON2, STATE(7505), 1, sym_comment, - [232528] = 3, - ACTIONS(251), 1, + [230719] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(515), 1, - anon_sym_RPAREN2, + ACTIONS(4472), 1, + aux_sym_unquoted_token2, STATE(7506), 1, sym_comment, - [232538] = 3, - ACTIONS(251), 1, + [230729] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11809), 1, + ACTIONS(11785), 1, anon_sym_make, STATE(7507), 1, sym_comment, - [232548] = 3, - ACTIONS(251), 1, + [230739] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11984), 1, - anon_sym_LBRACE, + ACTIONS(11988), 1, + anon_sym_RBRACE, STATE(7508), 1, sym_comment, - [232558] = 3, - ACTIONS(251), 1, + [230749] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11986), 1, - anon_sym_RBRACE, + ACTIONS(11990), 1, + anon_sym_RPAREN2, STATE(7509), 1, sym_comment, - [232568] = 3, - ACTIONS(251), 1, + [230759] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11984), 1, - anon_sym_LBRACE, + ACTIONS(5615), 1, + aux_sym_unquoted_token4, STATE(7510), 1, sym_comment, - [232578] = 3, - ACTIONS(251), 1, + [230769] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11988), 1, - anon_sym_GT2, + ACTIONS(11992), 1, + anon_sym_RBRACE, STATE(7511), 1, sym_comment, - [232588] = 3, - ACTIONS(251), 1, + [230779] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11990), 1, - anon_sym_EQ, + ACTIONS(10277), 1, + anon_sym_LBRACK2, STATE(7512), 1, sym_comment, - [232598] = 3, - ACTIONS(251), 1, + [230789] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11992), 1, - anon_sym_RBRACE, + ACTIONS(11994), 1, + sym_raw_string_end, STATE(7513), 1, sym_comment, - [232608] = 3, + [230799] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11994), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(2022), 1, + aux_sym__unquoted_with_expr_token1, STATE(7514), 1, sym_comment, - [232618] = 3, - ACTIONS(3), 1, + [230809] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11996), 1, - aux_sym_cmd_identifier_token41, + anon_sym_RBRACE, STATE(7515), 1, sym_comment, - [232628] = 3, - ACTIONS(251), 1, + [230819] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11998), 1, - anon_sym_RBRACE, + anon_sym_RPAREN2, STATE(7516), 1, sym_comment, - [232638] = 3, - ACTIONS(251), 1, + [230829] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10996), 1, - anon_sym_LBRACK2, + ACTIONS(4758), 1, + aux_sym_unquoted_token2, STATE(7517), 1, sym_comment, - [232648] = 3, - ACTIONS(251), 1, + [230839] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12000), 1, - anon_sym_EQ, + sym_identifier, STATE(7518), 1, sym_comment, - [232658] = 3, - ACTIONS(251), 1, + [230849] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7078), 1, - aux_sym_unquoted_token2, + ACTIONS(12002), 1, + anon_sym_RBRACK, STATE(7519), 1, sym_comment, - [232668] = 3, - ACTIONS(251), 1, + [230859] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12002), 1, + ACTIONS(12004), 1, anon_sym_RPAREN, STATE(7520), 1, sym_comment, - [232678] = 3, - ACTIONS(3), 1, + [230869] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12004), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(12006), 1, + anon_sym_RBRACE, STATE(7521), 1, sym_comment, - [232688] = 3, - ACTIONS(251), 1, + [230879] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12006), 1, - anon_sym_RBRACE, + ACTIONS(12008), 1, + anon_sym_EQ, STATE(7522), 1, sym_comment, - [232698] = 3, - ACTIONS(251), 1, + [230889] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12008), 1, - sym_raw_string_content, + ACTIONS(12010), 1, + anon_sym_RPAREN, STATE(7523), 1, sym_comment, - [232708] = 3, - ACTIONS(251), 1, + [230899] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1779), 1, - aux_sym__unquoted_in_record_token2, + ACTIONS(4712), 1, + aux_sym_unquoted_token4, STATE(7524), 1, sym_comment, - [232718] = 3, - ACTIONS(251), 1, + [230909] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12010), 1, - sym__table_head_separator, + ACTIONS(12012), 1, + anon_sym_RBRACE, STATE(7525), 1, sym_comment, - [232728] = 3, - ACTIONS(251), 1, + [230919] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12012), 1, + ACTIONS(12014), 1, anon_sym_RBRACE, STATE(7526), 1, sym_comment, - [232738] = 3, - ACTIONS(251), 1, + [230929] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12014), 1, - anon_sym_RBRACE, + ACTIONS(12016), 1, + anon_sym_RBRACK, STATE(7527), 1, sym_comment, - [232748] = 3, - ACTIONS(251), 1, + [230939] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12016), 1, - anon_sym_RPAREN, + ACTIONS(12018), 1, + anon_sym_EQ, STATE(7528), 1, sym_comment, - [232758] = 3, - ACTIONS(251), 1, + [230949] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12018), 1, - anon_sym_RBRACE, + ACTIONS(12020), 1, + ts_builtin_sym_end, STATE(7529), 1, sym_comment, - [232768] = 3, - ACTIONS(251), 1, + [230959] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12020), 1, - sym_identifier, + ACTIONS(12022), 1, + aux_sym_cmd_identifier_token41, STATE(7530), 1, sym_comment, - [232778] = 3, - ACTIONS(251), 1, + [230969] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12022), 1, + ACTIONS(12024), 1, anon_sym_RPAREN, STATE(7531), 1, sym_comment, - [232788] = 3, - ACTIONS(251), 1, + [230979] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12024), 1, - anon_sym_RBRACE, + ACTIONS(12026), 1, + anon_sym_GT2, STATE(7532), 1, sym_comment, - [232798] = 3, - ACTIONS(251), 1, + [230989] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12026), 1, - anon_sym_RBRACE, + ACTIONS(12028), 1, + aux_sym_shebang_token1, STATE(7533), 1, sym_comment, - [232808] = 3, - ACTIONS(251), 1, + [230999] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12028), 1, - anon_sym_RPAREN, + ACTIONS(12030), 1, + anon_sym_EQ, STATE(7534), 1, sym_comment, - [232818] = 3, - ACTIONS(251), 1, + [231009] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12030), 1, - anon_sym_RBRACE, + ACTIONS(12032), 1, + aux_sym_cmd_identifier_token41, STATE(7535), 1, sym_comment, - [232828] = 3, - ACTIONS(251), 1, + [231019] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12032), 1, - anon_sym_DASH_GT, + ACTIONS(12034), 1, + sym_raw_string_content, STATE(7536), 1, sym_comment, - [232838] = 3, - ACTIONS(251), 1, + [231029] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12034), 1, + ACTIONS(12036), 1, anon_sym_RBRACE, STATE(7537), 1, sym_comment, - [232848] = 3, - ACTIONS(251), 1, + [231039] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12036), 1, - anon_sym_RBRACE, + ACTIONS(12038), 1, + sym_raw_string_end, STATE(7538), 1, sym_comment, - [232858] = 3, - ACTIONS(251), 1, + [231049] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12038), 1, - anon_sym_RPAREN2, + ACTIONS(5028), 1, + anon_sym_LBRACK2, STATE(7539), 1, sym_comment, - [232868] = 3, - ACTIONS(251), 1, + [231059] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9857), 1, - aux_sym_unquoted_token2, + ACTIONS(12040), 1, + anon_sym_RBRACE, STATE(7540), 1, sym_comment, - [232878] = 3, - ACTIONS(251), 1, + [231069] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5734), 1, - aux_sym__unquoted_in_list_token2, + ACTIONS(12042), 1, + sym_identifier, STATE(7541), 1, sym_comment, - [232888] = 3, - ACTIONS(251), 1, + [231079] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12040), 1, - sym__table_head_separator, + ACTIONS(12044), 1, + aux_sym_cmd_identifier_token41, STATE(7542), 1, sym_comment, - [232898] = 3, - ACTIONS(3), 1, + [231089] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12042), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(3444), 1, + anon_sym_COLON2, STATE(7543), 1, sym_comment, - [232908] = 3, - ACTIONS(251), 1, + [231099] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12044), 1, + ACTIONS(12046), 1, anon_sym_RBRACE, STATE(7544), 1, sym_comment, - [232918] = 3, - ACTIONS(251), 1, + [231109] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12046), 1, + ACTIONS(12048), 1, anon_sym_RBRACE, STATE(7545), 1, sym_comment, - [232928] = 3, - ACTIONS(3), 1, + [231119] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12048), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(12050), 1, + anon_sym_RPAREN, STATE(7546), 1, sym_comment, - [232938] = 3, - ACTIONS(251), 1, + [231129] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12050), 1, - anon_sym_RPAREN, + ACTIONS(12052), 1, + sym__space, STATE(7547), 1, sym_comment, - [232948] = 3, - ACTIONS(251), 1, + [231139] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12052), 1, - sym_raw_string_content, + ACTIONS(12054), 1, + anon_sym_RPAREN, STATE(7548), 1, sym_comment, - [232958] = 3, - ACTIONS(251), 1, + [231149] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12054), 1, - sym_raw_string_end, + ACTIONS(12056), 1, + anon_sym_LBRACE, STATE(7549), 1, sym_comment, - [232968] = 3, - ACTIONS(251), 1, + [231159] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12056), 1, - anon_sym_RBRACK, + ACTIONS(12058), 1, + sym_raw_string_end, STATE(7550), 1, sym_comment, - [232978] = 3, - ACTIONS(251), 1, + [231169] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5132), 1, - anon_sym_LBRACK2, + ACTIONS(12060), 1, + anon_sym_RBRACE, STATE(7551), 1, sym_comment, - [232988] = 3, - ACTIONS(251), 1, + [231179] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12058), 1, - anon_sym_RBRACE, + ACTIONS(12062), 1, + sym_raw_string_end, STATE(7552), 1, sym_comment, - [232998] = 3, - ACTIONS(251), 1, + [231189] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12060), 1, - anon_sym_RBRACE, + ACTIONS(6206), 1, + aux_sym_unquoted_token2, STATE(7553), 1, sym_comment, - [233008] = 3, - ACTIONS(251), 1, + [231199] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12062), 1, + ACTIONS(12064), 1, anon_sym_RBRACE, STATE(7554), 1, sym_comment, - [233018] = 3, - ACTIONS(251), 1, + [231209] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3442), 1, - anon_sym_COLON2, + ACTIONS(11015), 1, + anon_sym_LBRACE, STATE(7555), 1, sym_comment, - [233028] = 3, - ACTIONS(251), 1, + [231219] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12064), 1, - anon_sym_RPAREN, + ACTIONS(12066), 1, + anon_sym_RBRACK, STATE(7556), 1, sym_comment, - [233038] = 3, - ACTIONS(251), 1, + [231229] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12066), 1, + ACTIONS(12068), 1, anon_sym_RPAREN, STATE(7557), 1, sym_comment, - [233048] = 3, - ACTIONS(251), 1, + [231239] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12068), 1, - anon_sym_EQ, + ACTIONS(12070), 1, + anon_sym_RBRACE, STATE(7558), 1, sym_comment, - [233058] = 3, - ACTIONS(251), 1, + [231249] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12070), 1, - anon_sym_RBRACE, + ACTIONS(12072), 1, + anon_sym_LBRACE, STATE(7559), 1, sym_comment, - [233068] = 3, - ACTIONS(3), 1, + [231259] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12072), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(12074), 1, + anon_sym_RBRACE, STATE(7560), 1, sym_comment, - [233078] = 3, - ACTIONS(251), 1, + [231269] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10964), 1, - anon_sym_LBRACE, + ACTIONS(12076), 1, + anon_sym_RBRACE, STATE(7561), 1, sym_comment, - [233088] = 3, - ACTIONS(251), 1, + [231279] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12074), 1, + ACTIONS(10379), 1, anon_sym_LBRACE, STATE(7562), 1, sym_comment, - [233098] = 3, - ACTIONS(251), 1, + [231289] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12076), 1, - anon_sym_RPAREN2, + ACTIONS(12078), 1, + anon_sym_RBRACE, STATE(7563), 1, sym_comment, - [233108] = 3, - ACTIONS(251), 1, + [231299] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12078), 1, + ACTIONS(12080), 1, anon_sym_RPAREN, STATE(7564), 1, sym_comment, - [233118] = 3, - ACTIONS(251), 1, + [231309] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7274), 1, - aux_sym__unquoted_in_record_token2, + ACTIONS(12082), 1, + anon_sym_RPAREN, STATE(7565), 1, sym_comment, - [233128] = 3, - ACTIONS(251), 1, + [231319] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12080), 1, - sym_raw_string_end, + ACTIONS(12084), 1, + anon_sym_RBRACE, STATE(7566), 1, sym_comment, - [233138] = 3, - ACTIONS(251), 1, + [231329] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12082), 1, - anon_sym_RBRACE, + ACTIONS(12086), 1, + ts_builtin_sym_end, STATE(7567), 1, sym_comment, - [233148] = 3, - ACTIONS(251), 1, + [231339] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6171), 1, - aux_sym_unquoted_token2, + ACTIONS(12088), 1, + anon_sym_RBRACE, STATE(7568), 1, sym_comment, - [233158] = 3, - ACTIONS(251), 1, + [231349] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12084), 1, - anon_sym_RBRACK, + ACTIONS(2415), 1, + sym__table_head_separator, STATE(7569), 1, sym_comment, - [233168] = 3, - ACTIONS(251), 1, + [231359] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12086), 1, - anon_sym_RPAREN, + ACTIONS(12090), 1, + aux_sym_shebang_token1, STATE(7570), 1, sym_comment, - [233178] = 3, - ACTIONS(251), 1, + [231369] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12088), 1, - anon_sym_RBRACE, + ACTIONS(507), 1, + anon_sym_RPAREN2, STATE(7571), 1, sym_comment, - [233188] = 3, - ACTIONS(251), 1, + [231379] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12090), 1, - anon_sym_RBRACE, + ACTIONS(12092), 1, + aux_sym_cmd_identifier_token41, STATE(7572), 1, sym_comment, - [233198] = 3, - ACTIONS(3), 1, + [231389] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2142), 1, - aux_sym_unquoted_token4, + ACTIONS(12094), 1, + sym_identifier, STATE(7573), 1, sym_comment, - [233208] = 3, - ACTIONS(251), 1, + [231399] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(569), 1, - ts_builtin_sym_end, + ACTIONS(12096), 1, + aux_sym_cmd_identifier_token41, STATE(7574), 1, sym_comment, - [233218] = 3, - ACTIONS(251), 1, + [231409] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12092), 1, - anon_sym_GT2, + ACTIONS(12098), 1, + sym_long_flag_identifier, STATE(7575), 1, sym_comment, - [233228] = 3, - ACTIONS(251), 1, + [231419] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12094), 1, - anon_sym_RPAREN, + ACTIONS(12100), 1, + aux_sym_cmd_identifier_token41, STATE(7576), 1, sym_comment, - [233238] = 3, - ACTIONS(251), 1, + [231429] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12096), 1, - anon_sym_RBRACE, + ACTIONS(12102), 1, + sym_raw_string_end, STATE(7577), 1, sym_comment, - [233248] = 3, - ACTIONS(251), 1, + [231439] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12098), 1, + ACTIONS(12104), 1, anon_sym_RBRACE, STATE(7578), 1, sym_comment, - [233258] = 3, - ACTIONS(251), 1, + [231449] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12100), 1, - anon_sym_RBRACK, + ACTIONS(12106), 1, + anon_sym_RPAREN, STATE(7579), 1, sym_comment, - [233268] = 3, - ACTIONS(3), 1, + [231459] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12102), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(481), 1, + anon_sym_RPAREN2, STATE(7580), 1, sym_comment, - [233278] = 3, - ACTIONS(251), 1, + [231469] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12104), 1, - anon_sym_RPAREN, + ACTIONS(12108), 1, + anon_sym_EQ, STATE(7581), 1, sym_comment, - [233288] = 3, - ACTIONS(251), 1, + [231479] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1477), 1, - aux_sym_unquoted_token2, + ACTIONS(12110), 1, + sym_raw_string_end, STATE(7582), 1, sym_comment, - [233298] = 3, - ACTIONS(251), 1, + [231489] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12106), 1, - anon_sym_RPAREN, + ACTIONS(12112), 1, + aux_sym_cmd_identifier_token41, STATE(7583), 1, sym_comment, - [233308] = 3, - ACTIONS(251), 1, + [231499] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12108), 1, - anon_sym_EQ, + ACTIONS(12114), 1, + sym__space, STATE(7584), 1, sym_comment, - [233318] = 3, - ACTIONS(251), 1, + [231509] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1857), 1, - sym__table_head_separator, + ACTIONS(12116), 1, + anon_sym_EQ, STATE(7585), 1, sym_comment, - [233328] = 3, - ACTIONS(3), 1, + [231519] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9857), 1, - aux_sym_unquoted_token4, + ACTIONS(12118), 1, + anon_sym_RPAREN2, STATE(7586), 1, sym_comment, - [233338] = 3, - ACTIONS(251), 1, + [231529] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12110), 1, - anon_sym_RBRACK, + ACTIONS(12120), 1, + anon_sym_EQ, STATE(7587), 1, sym_comment, - [233348] = 3, - ACTIONS(251), 1, + [231539] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1540), 1, - aux_sym_unquoted_token2, + ACTIONS(7249), 1, + aux_sym__unquoted_in_record_token2, STATE(7588), 1, sym_comment, - [233358] = 3, - ACTIONS(251), 1, + [231549] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8883), 1, - aux_sym__unquoted_in_record_token2, + ACTIONS(12122), 1, + anon_sym_RBRACE, STATE(7589), 1, sym_comment, - [233368] = 3, - ACTIONS(251), 1, + [231559] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12112), 1, + ACTIONS(12124), 1, anon_sym_RBRACE, STATE(7590), 1, sym_comment, - [233378] = 3, - ACTIONS(251), 1, + [231569] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1822), 1, - aux_sym_unquoted_token2, + ACTIONS(12126), 1, + anon_sym_RPAREN, STATE(7591), 1, sym_comment, - [233388] = 3, - ACTIONS(3), 1, + [231579] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12114), 1, - sym__space, + ACTIONS(12128), 1, + anon_sym_COLON2, STATE(7592), 1, sym_comment, - [233398] = 3, - ACTIONS(3), 1, + [231589] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12116), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(12130), 1, + sym_raw_string_content, STATE(7593), 1, sym_comment, - [233408] = 3, - ACTIONS(3), 1, + [231599] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12118), 1, - aux_sym_comment_token1, + ACTIONS(1753), 1, + aux_sym__unquoted_in_record_token2, STATE(7594), 1, sym_comment, - [233418] = 3, - ACTIONS(251), 1, + [231609] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12120), 1, - sym_raw_string_end, + ACTIONS(9801), 1, + aux_sym_unquoted_token4, STATE(7595), 1, sym_comment, - [233428] = 3, - ACTIONS(3), 1, + [231619] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1993), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(5162), 1, + anon_sym_LBRACK2, STATE(7596), 1, sym_comment, - [233438] = 3, - ACTIONS(251), 1, + [231629] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12122), 1, - sym_raw_string_end, + ACTIONS(12132), 1, + anon_sym_RBRACE, STATE(7597), 1, sym_comment, - [233448] = 3, - ACTIONS(251), 1, + [231639] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12124), 1, - anon_sym_LBRACE, + ACTIONS(12134), 1, + anon_sym_EQ, STATE(7598), 1, sym_comment, - [233458] = 3, - ACTIONS(3), 1, + [231649] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12126), 1, - aux_sym_shebang_token1, + ACTIONS(12136), 1, + anon_sym_EQ, STATE(7599), 1, sym_comment, - [233468] = 3, - ACTIONS(251), 1, + [231659] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12128), 1, - anon_sym_COLON2, + ACTIONS(12138), 1, + anon_sym_RPAREN, STATE(7600), 1, sym_comment, - [233478] = 3, - ACTIONS(251), 1, + [231669] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12130), 1, - anon_sym_RBRACE, + ACTIONS(5615), 1, + aux_sym_unquoted_token2, STATE(7601), 1, sym_comment, - [233488] = 3, - ACTIONS(251), 1, + [231679] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11807), 1, - anon_sym_LBRACE, + ACTIONS(12140), 1, + sym_raw_string_end, STATE(7602), 1, sym_comment, - [233498] = 3, - ACTIONS(3), 1, + [231689] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12132), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(12142), 1, + sym_raw_string_end, STATE(7603), 1, sym_comment, - [233508] = 3, - ACTIONS(251), 1, + [231699] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12134), 1, - anon_sym_RPAREN, + ACTIONS(12144), 1, + anon_sym_LBRACE, STATE(7604), 1, sym_comment, - [233518] = 3, - ACTIONS(251), 1, + [231709] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3420), 1, - anon_sym_COLON2, + ACTIONS(6206), 1, + aux_sym_unquoted_token4, STATE(7605), 1, sym_comment, - [233528] = 3, - ACTIONS(251), 1, + [231719] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12136), 1, - sym_raw_string_content, + ACTIONS(12146), 1, + anon_sym_RPAREN, STATE(7606), 1, sym_comment, - [233538] = 3, - ACTIONS(251), 1, + [231729] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12138), 1, - aux_sym_env_var_token2, + ACTIONS(12148), 1, + anon_sym_RPAREN, STATE(7607), 1, sym_comment, - [233548] = 3, - ACTIONS(251), 1, + [231739] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12140), 1, + ACTIONS(12150), 1, anon_sym_RBRACK, STATE(7608), 1, sym_comment, - [233558] = 3, - ACTIONS(251), 1, + [231749] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5105), 1, - anon_sym_LBRACK2, + ACTIONS(12152), 1, + anon_sym_RBRACE, STATE(7609), 1, sym_comment, - [233568] = 3, - ACTIONS(251), 1, + [231759] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12142), 1, - sym_raw_string_end, + ACTIONS(4706), 1, + aux_sym_unquoted_token2, STATE(7610), 1, sym_comment, - [233578] = 3, - ACTIONS(251), 1, + [231769] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12144), 1, - anon_sym_RBRACE, + ACTIONS(2196), 1, + aux_sym_unquoted_token2, STATE(7611), 1, sym_comment, - [233588] = 3, - ACTIONS(251), 1, + [231779] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9097), 1, - aux_sym_unquoted_token2, + ACTIONS(12154), 1, + sym_raw_string_end, STATE(7612), 1, sym_comment, - [233598] = 3, - ACTIONS(251), 1, + [231789] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12146), 1, - anon_sym_RBRACK, + ACTIONS(9063), 1, + aux_sym_unquoted_token2, STATE(7613), 1, sym_comment, - [233608] = 3, - ACTIONS(3), 1, + [231799] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12148), 1, - aux_sym_shebang_token1, + ACTIONS(12156), 1, + sym_raw_string_content, STATE(7614), 1, sym_comment, - [233618] = 3, - ACTIONS(251), 1, + [231809] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12150), 1, - anon_sym_RPAREN, + ACTIONS(12158), 1, + anon_sym_RBRACK, STATE(7615), 1, sym_comment, - [233628] = 3, - ACTIONS(3), 1, + [231819] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1997), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(7948), 1, + anon_sym_LBRACK2, STATE(7616), 1, sym_comment, - [233638] = 3, + [231829] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12152), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(7179), 1, + aux_sym_unquoted_token4, STATE(7617), 1, sym_comment, - [233648] = 3, - ACTIONS(251), 1, + [231839] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12154), 1, - anon_sym_RBRACE, + ACTIONS(12160), 1, + anon_sym_RBRACK, STATE(7618), 1, sym_comment, - [233658] = 3, - ACTIONS(251), 1, + [231849] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12156), 1, - anon_sym_RBRACE, + ACTIONS(12162), 1, + anon_sym_RBRACK, STATE(7619), 1, sym_comment, - [233668] = 3, - ACTIONS(251), 1, + [231859] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12158), 1, - anon_sym_RPAREN2, + ACTIONS(12164), 1, + anon_sym_RPAREN, STATE(7620), 1, sym_comment, - [233678] = 3, - ACTIONS(251), 1, + [231869] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12160), 1, - sym_raw_string_end, + ACTIONS(12166), 1, + anon_sym_RPAREN, STATE(7621), 1, sym_comment, - [233688] = 3, - ACTIONS(251), 1, + [231879] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12162), 1, + ACTIONS(12168), 1, anon_sym_RBRACE, STATE(7622), 1, sym_comment, - [233698] = 3, - ACTIONS(251), 1, + [231889] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12164), 1, + ACTIONS(12170), 1, sym_raw_string_end, STATE(7623), 1, sym_comment, - [233708] = 3, - ACTIONS(3), 1, + [231899] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2208), 1, - aux_sym_unquoted_token4, + ACTIONS(4616), 1, + aux_sym_unquoted_token2, STATE(7624), 1, sym_comment, - [233718] = 3, - ACTIONS(251), 1, + [231909] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12166), 1, - sym_identifier, + ACTIONS(12172), 1, + anon_sym_RBRACK, STATE(7625), 1, sym_comment, - [233728] = 3, - ACTIONS(251), 1, + [231919] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(501), 1, - anon_sym_RPAREN2, + ACTIONS(12174), 1, + anon_sym_RBRACE, STATE(7626), 1, sym_comment, - [233738] = 3, - ACTIONS(251), 1, + [231929] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12168), 1, - sym_raw_string_content, + ACTIONS(12176), 1, + anon_sym_RPAREN, STATE(7627), 1, sym_comment, - [233748] = 3, - ACTIONS(251), 1, + [231939] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5508), 1, - anon_sym_LBRACK2, + ACTIONS(9801), 1, + aux_sym_unquoted_token2, STATE(7628), 1, sym_comment, - [233758] = 3, - ACTIONS(251), 1, + [231949] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7817), 1, - anon_sym_LBRACK2, + ACTIONS(12178), 1, + sym_raw_string_content, STATE(7629), 1, sym_comment, - [233768] = 3, - ACTIONS(251), 1, + [231959] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12170), 1, - sym_raw_string_end, + ACTIONS(6025), 1, + anon_sym_LBRACK2, STATE(7630), 1, sym_comment, - [233778] = 3, - ACTIONS(251), 1, + [231969] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12172), 1, - anon_sym_LBRACE, + ACTIONS(2079), 1, + aux_sym_unquoted_token4, STATE(7631), 1, sym_comment, - [233788] = 3, - ACTIONS(251), 1, + [231979] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4630), 1, - aux_sym_unquoted_token2, + ACTIONS(12180), 1, + anon_sym_LBRACE, STATE(7632), 1, sym_comment, - [233798] = 3, - ACTIONS(251), 1, + [231989] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12174), 1, - anon_sym_RBRACK, + ACTIONS(12180), 1, + anon_sym_LBRACE, STATE(7633), 1, sym_comment, - [233808] = 3, - ACTIONS(251), 1, + [231999] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12176), 1, - anon_sym_EQ, + ACTIONS(12182), 1, + anon_sym_RPAREN, STATE(7634), 1, sym_comment, - [233818] = 3, - ACTIONS(251), 1, + [232009] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12178), 1, - anon_sym_RPAREN, + ACTIONS(12184), 1, + anon_sym_RBRACE, STATE(7635), 1, sym_comment, - [233828] = 3, - ACTIONS(251), 1, + [232019] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12180), 1, - anon_sym_RBRACE, + ACTIONS(12186), 1, + anon_sym_EQ, STATE(7636), 1, sym_comment, - [233838] = 3, - ACTIONS(3), 1, + [232029] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5734), 1, - aux_sym__unquoted_in_list_token4, + ACTIONS(12188), 1, + anon_sym_RBRACE, STATE(7637), 1, sym_comment, - [233848] = 3, - ACTIONS(251), 1, + [232039] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4780), 1, - aux_sym_unquoted_token2, + ACTIONS(12190), 1, + aux_sym_cmd_identifier_token41, STATE(7638), 1, sym_comment, - [233858] = 3, - ACTIONS(251), 1, + [232049] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(485), 1, - anon_sym_RPAREN2, + ACTIONS(12192), 1, + anon_sym_RBRACE, STATE(7639), 1, sym_comment, - [233868] = 3, - ACTIONS(251), 1, + [232059] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10319), 1, - anon_sym_LBRACE, + ACTIONS(2022), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(7640), 1, sym_comment, - [233878] = 3, - ACTIONS(251), 1, + [232069] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12182), 1, - sym_raw_string_end, + ACTIONS(12194), 1, + anon_sym_RPAREN, STATE(7641), 1, sym_comment, - [233888] = 3, - ACTIONS(251), 1, + [232079] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6016), 1, - anon_sym_LBRACK2, + ACTIONS(12196), 1, + anon_sym_RPAREN, STATE(7642), 1, sym_comment, - [233898] = 3, - ACTIONS(3), 1, + [232089] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7177), 1, - aux_sym_unquoted_token4, + ACTIONS(12198), 1, + sym_raw_string_content, STATE(7643), 1, sym_comment, - [233908] = 3, - ACTIONS(251), 1, + [232099] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12184), 1, - anon_sym_RPAREN, + ACTIONS(7756), 1, + anon_sym_LBRACK2, STATE(7644), 1, sym_comment, - [233918] = 3, - ACTIONS(251), 1, + [232109] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12186), 1, + ACTIONS(12200), 1, anon_sym_RBRACK, STATE(7645), 1, sym_comment, - [233928] = 3, - ACTIONS(251), 1, + [232119] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12188), 1, - anon_sym_RPAREN, + ACTIONS(12202), 1, + anon_sym_LBRACE, STATE(7646), 1, sym_comment, - [233938] = 3, - ACTIONS(251), 1, + [232129] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12190), 1, - anon_sym_RBRACE, + ACTIONS(12204), 1, + sym_raw_string_content, STATE(7647), 1, sym_comment, - [233948] = 3, - ACTIONS(251), 1, + [232139] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12192), 1, - anon_sym_RPAREN, + ACTIONS(12206), 1, + anon_sym_EQ, STATE(7648), 1, sym_comment, - [233958] = 3, - ACTIONS(251), 1, + [232149] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12194), 1, - anon_sym_EQ, + ACTIONS(7070), 1, + aux_sym_unquoted_token4, STATE(7649), 1, sym_comment, - [233968] = 3, - ACTIONS(251), 1, + [232159] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12196), 1, + ACTIONS(12208), 1, anon_sym_RBRACE, STATE(7650), 1, sym_comment, - [233978] = 3, - ACTIONS(251), 1, + [232169] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12198), 1, - anon_sym_RBRACE, + ACTIONS(12210), 1, + anon_sym_RPAREN, STATE(7651), 1, sym_comment, - [233988] = 3, - ACTIONS(251), 1, + [232179] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12200), 1, - anon_sym_LBRACE, + ACTIONS(12212), 1, + anon_sym_RBRACE, STATE(7652), 1, sym_comment, - [233998] = 3, - ACTIONS(251), 1, + [232189] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12202), 1, - sym_raw_string_end, + ACTIONS(12214), 1, + anon_sym_EQ, STATE(7653), 1, sym_comment, - [234008] = 3, - ACTIONS(251), 1, + [232199] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12204), 1, - sym_raw_string_end, + ACTIONS(12216), 1, + anon_sym_LBRACE, STATE(7654), 1, sym_comment, - [234018] = 3, - ACTIONS(251), 1, + [232209] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12206), 1, - sym_raw_string_content, + ACTIONS(5415), 1, + anon_sym_LBRACK2, STATE(7655), 1, sym_comment, - [234028] = 3, - ACTIONS(251), 1, + [232219] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7734), 1, - anon_sym_LBRACK2, + ACTIONS(12218), 1, + sym_raw_string_content, STATE(7656), 1, sym_comment, - [234038] = 3, - ACTIONS(251), 1, + [232229] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12208), 1, - anon_sym_RBRACE, + ACTIONS(7470), 1, + anon_sym_LBRACK2, STATE(7657), 1, sym_comment, - [234048] = 3, - ACTIONS(251), 1, + [232239] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12210), 1, - anon_sym_EQ, + ACTIONS(12220), 1, + anon_sym_RBRACE, STATE(7658), 1, sym_comment, - [234058] = 3, - ACTIONS(251), 1, + [232249] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12212), 1, + ACTIONS(12222), 1, sym_raw_string_end, STATE(7659), 1, sym_comment, - [234068] = 3, - ACTIONS(251), 1, + [232259] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12214), 1, + ACTIONS(12224), 1, anon_sym_RBRACE, STATE(7660), 1, sym_comment, - [234078] = 3, - ACTIONS(251), 1, + [232269] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12216), 1, - anon_sym_RBRACE, + ACTIONS(12226), 1, + anon_sym_RBRACK, STATE(7661), 1, sym_comment, - [234088] = 3, - ACTIONS(251), 1, + [232279] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12218), 1, + ACTIONS(12228), 1, anon_sym_RBRACE, STATE(7662), 1, sym_comment, - [234098] = 3, - ACTIONS(251), 1, + [232289] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12220), 1, - anon_sym_RPAREN, + ACTIONS(12230), 1, + anon_sym_RBRACE, STATE(7663), 1, sym_comment, - [234108] = 3, - ACTIONS(251), 1, + [232299] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12222), 1, + ACTIONS(12232), 1, sym_identifier, STATE(7664), 1, sym_comment, - [234118] = 3, - ACTIONS(251), 1, + [232309] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12224), 1, + ACTIONS(12234), 1, anon_sym_RBRACE, STATE(7665), 1, sym_comment, - [234128] = 3, - ACTIONS(3), 1, + [232319] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12226), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(12236), 1, + anon_sym_DASH_GT, STATE(7666), 1, sym_comment, - [234138] = 3, - ACTIONS(251), 1, + [232329] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12228), 1, - sym_raw_string_end, + ACTIONS(12238), 1, + anon_sym_RPAREN, STATE(7667), 1, sym_comment, - [234148] = 3, - ACTIONS(251), 1, + [232339] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12230), 1, - sym_raw_string_content, + ACTIONS(12240), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(7668), 1, sym_comment, - [234158] = 3, - ACTIONS(251), 1, + [232349] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7496), 1, - anon_sym_LBRACK2, + ACTIONS(12242), 1, + sym_raw_string_content, STATE(7669), 1, sym_comment, - [234168] = 3, - ACTIONS(251), 1, + [232359] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5619), 1, - aux_sym_unquoted_token2, + ACTIONS(5078), 1, + anon_sym_LBRACK2, STATE(7670), 1, sym_comment, - [234178] = 3, - ACTIONS(251), 1, + [232369] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12232), 1, - anon_sym_LBRACE, + ACTIONS(1963), 1, + sym__table_head_separator, STATE(7671), 1, sym_comment, - [234188] = 3, - ACTIONS(251), 1, + [232379] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12234), 1, - anon_sym_DASH_GT, + ACTIONS(12244), 1, + anon_sym_RPAREN, STATE(7672), 1, sym_comment, - [234198] = 3, - ACTIONS(251), 1, + [232389] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12236), 1, - anon_sym_RBRACE, + ACTIONS(2026), 1, + aux_sym__unquoted_with_expr_token1, STATE(7673), 1, sym_comment, - [234208] = 3, - ACTIONS(251), 1, + [232399] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2472), 1, - anon_sym_COLON2, + ACTIONS(12246), 1, + anon_sym_EQ, STATE(7674), 1, sym_comment, - [234218] = 3, - ACTIONS(251), 1, + [232409] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12238), 1, - sym_raw_string_end, + ACTIONS(12248), 1, + sym__table_head_separator, STATE(7675), 1, sym_comment, - [234228] = 3, - ACTIONS(251), 1, + [232419] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2178), 1, - aux_sym_unquoted_token2, + ACTIONS(12250), 1, + sym_identifier, STATE(7676), 1, sym_comment, - [234238] = 3, - ACTIONS(251), 1, + [232429] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12240), 1, - anon_sym_RPAREN, + ACTIONS(5752), 1, + aux_sym__unquoted_in_list_token2, STATE(7677), 1, sym_comment, - [234248] = 3, - ACTIONS(251), 1, + [232439] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12242), 1, + ACTIONS(12252), 1, anon_sym_RBRACE, STATE(7678), 1, sym_comment, - [234258] = 3, - ACTIONS(251), 1, + [232449] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12244), 1, - anon_sym_RBRACE, + ACTIONS(12254), 1, + sym_raw_string_end, STATE(7679), 1, sym_comment, - [234268] = 3, - ACTIONS(251), 1, + [232459] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12246), 1, - anon_sym_LBRACE, + ACTIONS(12256), 1, + anon_sym_RBRACK, STATE(7680), 1, sym_comment, - [234278] = 3, - ACTIONS(251), 1, + [232469] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12248), 1, - sym_raw_string_content, + ACTIONS(12258), 1, + anon_sym_RPAREN, STATE(7681), 1, sym_comment, - [234288] = 3, - ACTIONS(251), 1, + [232479] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4964), 1, - anon_sym_LBRACK2, + ACTIONS(12260), 1, + sym_raw_string_content, STATE(7682), 1, sym_comment, - [234298] = 3, - ACTIONS(251), 1, + [232489] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12250), 1, - anon_sym_RBRACE, + ACTIONS(6200), 1, + anon_sym_LBRACK2, STATE(7683), 1, sym_comment, - [234308] = 3, - ACTIONS(3), 1, + [232499] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1997), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(12262), 1, + sym_identifier, STATE(7684), 1, sym_comment, - [234318] = 3, - ACTIONS(251), 1, + [232509] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12252), 1, - ts_builtin_sym_end, + ACTIONS(5752), 1, + aux_sym__unquoted_in_list_token4, STATE(7685), 1, sym_comment, - [234328] = 3, - ACTIONS(251), 1, + [232519] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12254), 1, - sym_raw_string_end, + ACTIONS(12264), 1, + anon_sym_EQ_GT, STATE(7686), 1, sym_comment, - [234338] = 3, - ACTIONS(251), 1, + [232529] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12256), 1, + ACTIONS(12266), 1, anon_sym_RBRACK, STATE(7687), 1, sym_comment, - [234348] = 3, - ACTIONS(251), 1, + [232539] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12258), 1, - anon_sym_RBRACE, + ACTIONS(12268), 1, + anon_sym_LBRACE, STATE(7688), 1, sym_comment, - [234358] = 3, - ACTIONS(251), 1, + [232549] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12260), 1, + ACTIONS(12270), 1, anon_sym_RPAREN, STATE(7689), 1, sym_comment, - [234368] = 3, - ACTIONS(251), 1, + [232559] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12262), 1, - anon_sym_LBRACE, + ACTIONS(12272), 1, + sym_identifier, STATE(7690), 1, sym_comment, - [234378] = 3, - ACTIONS(251), 1, + [232569] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12264), 1, - anon_sym_RPAREN, + ACTIONS(12274), 1, + sym__table_head_separator, STATE(7691), 1, sym_comment, - [234388] = 3, - ACTIONS(251), 1, + [232579] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12266), 1, - sym_identifier, + ACTIONS(12276), 1, + anon_sym_RBRACK, STATE(7692), 1, sym_comment, - [234398] = 3, - ACTIONS(3), 1, + [232589] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6171), 1, - aux_sym_unquoted_token4, + ACTIONS(12278), 1, + sym_raw_string_end, STATE(7693), 1, sym_comment, - [234408] = 3, - ACTIONS(251), 1, + [232599] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12268), 1, - sym_raw_string_content, + ACTIONS(12280), 1, + anon_sym_RBRACE, STATE(7694), 1, sym_comment, - [234418] = 3, - ACTIONS(251), 1, + [232609] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6189), 1, - anon_sym_LBRACK2, + ACTIONS(12282), 1, + sym_raw_string_content, STATE(7695), 1, sym_comment, - [234428] = 3, - ACTIONS(251), 1, + [232619] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12270), 1, - sym_raw_string_end, + ACTIONS(6398), 1, + anon_sym_LBRACK2, STATE(7696), 1, sym_comment, - [234438] = 3, - ACTIONS(251), 1, + [232629] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12272), 1, - anon_sym_RPAREN, + ACTIONS(2342), 1, + anon_sym_COLON2, STATE(7697), 1, sym_comment, - [234448] = 3, - ACTIONS(251), 1, + [232639] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12274), 1, - anon_sym_RBRACK, + ACTIONS(12284), 1, + aux_sym_cmd_identifier_token41, STATE(7698), 1, sym_comment, - [234458] = 3, - ACTIONS(251), 1, + [232649] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12276), 1, - anon_sym_RPAREN, + ACTIONS(11890), 1, + aux_sym__record_key_token1, STATE(7699), 1, sym_comment, - [234468] = 3, - ACTIONS(251), 1, + [232659] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12278), 1, - anon_sym_EQ, + ACTIONS(12286), 1, + aux_sym_cmd_identifier_token41, STATE(7700), 1, sym_comment, - [234478] = 3, - ACTIONS(251), 1, + [232669] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12280), 1, - anon_sym_RBRACE, + ACTIONS(3442), 1, + anon_sym_COLON2, STATE(7701), 1, sym_comment, - [234488] = 3, - ACTIONS(251), 1, + [232679] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12282), 1, - anon_sym_LBRACE, + ACTIONS(12288), 1, + anon_sym_RBRACE, STATE(7702), 1, sym_comment, - [234498] = 3, - ACTIONS(251), 1, + [232689] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12284), 1, + ACTIONS(12290), 1, anon_sym_RBRACE, STATE(7703), 1, sym_comment, - [234508] = 3, - ACTIONS(251), 1, + [232699] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12286), 1, - anon_sym_EQ_GT, + ACTIONS(1826), 1, + aux_sym_unquoted_token2, STATE(7704), 1, sym_comment, - [234518] = 3, - ACTIONS(251), 1, + [232709] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12288), 1, - anon_sym_RBRACE, + ACTIONS(12292), 1, + anon_sym_RPAREN, STATE(7705), 1, sym_comment, - [234528] = 3, - ACTIONS(251), 1, + [232719] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12290), 1, - anon_sym_RBRACE, + ACTIONS(12294), 1, + anon_sym_RBRACK, STATE(7706), 1, sym_comment, - [234538] = 3, - ACTIONS(251), 1, + [232729] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12292), 1, - sym_raw_string_content, + ACTIONS(12296), 1, + anon_sym_RBRACE, STATE(7707), 1, sym_comment, - [234548] = 3, - ACTIONS(251), 1, + [232739] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6346), 1, - anon_sym_LBRACK2, + ACTIONS(12298), 1, + sym_raw_string_content, STATE(7708), 1, sym_comment, - [234558] = 3, - ACTIONS(251), 1, + [232749] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12294), 1, - anon_sym_RBRACK, + ACTIONS(6165), 1, + anon_sym_LBRACK2, STATE(7709), 1, sym_comment, - [234568] = 3, - ACTIONS(251), 1, + [232759] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12296), 1, - anon_sym_COLON2, + ACTIONS(12300), 1, + anon_sym_RPAREN, STATE(7710), 1, sym_comment, - [234578] = 3, - ACTIONS(251), 1, + [232769] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12298), 1, - anon_sym_RBRACE, + ACTIONS(12302), 1, + sym_param_short_flag_identifier, STATE(7711), 1, sym_comment, - [234588] = 3, - ACTIONS(251), 1, + [232779] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12300), 1, - sym_raw_string_end, + ACTIONS(12304), 1, + anon_sym_RBRACE, STATE(7712), 1, sym_comment, - [234598] = 3, - ACTIONS(251), 1, + [232789] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12302), 1, - anon_sym_RBRACE, + ACTIONS(2022), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(7713), 1, sym_comment, - [234608] = 3, - ACTIONS(251), 1, + [232799] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4904), 1, - aux_sym_unquoted_token2, + ACTIONS(12306), 1, + anon_sym_RBRACE, STATE(7714), 1, sym_comment, - [234618] = 3, + [232809] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4644), 1, - aux_sym_unquoted_token4, + ACTIONS(12308), 1, + aux_sym_cmd_identifier_token41, STATE(7715), 1, sym_comment, - [234628] = 3, - ACTIONS(251), 1, + [232819] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12304), 1, - anon_sym_RBRACK, + ACTIONS(12310), 1, + anon_sym_RPAREN, STATE(7716), 1, sym_comment, - [234638] = 3, - ACTIONS(251), 1, + [232829] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9936), 1, - aux_sym_unquoted_token2, + ACTIONS(12312), 1, + sym_raw_string_end, STATE(7717), 1, sym_comment, - [234648] = 3, - ACTIONS(3), 1, + [232839] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12306), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(12314), 1, + sym_raw_string_end, STATE(7718), 1, sym_comment, - [234658] = 3, - ACTIONS(251), 1, + [232849] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12308), 1, - anon_sym_RBRACE, + ACTIONS(12316), 1, + anon_sym_RBRACK, STATE(7719), 1, sym_comment, - [234668] = 3, - ACTIONS(251), 1, + [232859] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12310), 1, - sym_raw_string_content, + ACTIONS(12318), 1, + anon_sym_RPAREN, STATE(7720), 1, sym_comment, - [234678] = 3, - ACTIONS(251), 1, + [232869] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6089), 1, - anon_sym_LBRACK2, + ACTIONS(12320), 1, + sym_raw_string_content, STATE(7721), 1, sym_comment, - [234688] = 3, - ACTIONS(3), 1, + [232879] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9936), 1, - aux_sym_unquoted_token4, + ACTIONS(9739), 1, + anon_sym_LBRACK2, STATE(7722), 1, sym_comment, - [234698] = 3, - ACTIONS(3), 1, + [232889] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12312), 1, - sym__space, + ACTIONS(12322), 1, + anon_sym_RBRACE, STATE(7723), 1, sym_comment, - [234708] = 3, - ACTIONS(251), 1, + [232899] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11249), 1, - anon_sym_EQ_GT, + ACTIONS(12324), 1, + anon_sym_RPAREN, STATE(7724), 1, sym_comment, - [234718] = 3, - ACTIONS(251), 1, + [232909] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12314), 1, - sym_identifier, + ACTIONS(12326), 1, + anon_sym_RBRACE, STATE(7725), 1, sym_comment, - [234728] = 3, - ACTIONS(251), 1, + [232919] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12316), 1, - sym_raw_string_end, + ACTIONS(12328), 1, + anon_sym_RPAREN, STATE(7726), 1, sym_comment, - [234738] = 3, - ACTIONS(251), 1, + [232929] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12318), 1, - anon_sym_RPAREN, + ACTIONS(1562), 1, + aux_sym_unquoted_token2, STATE(7727), 1, sym_comment, - [234748] = 3, - ACTIONS(251), 1, + [232939] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12320), 1, - anon_sym_RBRACK, + ACTIONS(12330), 1, + sym_raw_string_end, STATE(7728), 1, sym_comment, - [234758] = 3, - ACTIONS(251), 1, + [232949] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12322), 1, - anon_sym_RPAREN, + ACTIONS(12332), 1, + anon_sym_RBRACE, STATE(7729), 1, sym_comment, - [234768] = 3, - ACTIONS(251), 1, + [232959] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12324), 1, - anon_sym_EQ, + ACTIONS(12334), 1, + anon_sym_RBRACE, STATE(7730), 1, sym_comment, - [234778] = 3, - ACTIONS(251), 1, + [232969] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12326), 1, + ACTIONS(12336), 1, anon_sym_EQ, STATE(7731), 1, sym_comment, - [234788] = 3, - ACTIONS(251), 1, + [232979] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12328), 1, - anon_sym_RBRACK, + ACTIONS(12338), 1, + anon_sym_RPAREN, STATE(7732), 1, sym_comment, - [234798] = 3, - ACTIONS(251), 1, + [232989] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12330), 1, - sym_raw_string_content, + ACTIONS(12340), 1, + anon_sym_EQ, STATE(7733), 1, sym_comment, - [234808] = 3, - ACTIONS(251), 1, + [232999] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9724), 1, - anon_sym_LBRACK2, + ACTIONS(12342), 1, + sym_raw_string_content, STATE(7734), 1, sym_comment, - [234818] = 3, - ACTIONS(251), 1, + [233009] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12332), 1, - anon_sym_RBRACE, + ACTIONS(2368), 1, + anon_sym_LBRACK2, STATE(7735), 1, sym_comment, - [234828] = 3, - ACTIONS(251), 1, + [233019] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12334), 1, - anon_sym_RPAREN, + ACTIONS(11839), 1, + anon_sym_LBRACE, STATE(7736), 1, sym_comment, - [234838] = 3, - ACTIONS(251), 1, + [233029] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12336), 1, + ACTIONS(12344), 1, anon_sym_RBRACE, STATE(7737), 1, sym_comment, - [234848] = 3, - ACTIONS(251), 1, + [233039] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12338), 1, - anon_sym_RPAREN, + ACTIONS(11948), 1, + anon_sym_LBRACE, STATE(7738), 1, sym_comment, - [234858] = 3, - ACTIONS(251), 1, + [233049] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12340), 1, - sym_raw_string_end, + ACTIONS(12346), 1, + anon_sym_RBRACE, STATE(7739), 1, sym_comment, - [234868] = 3, - ACTIONS(251), 1, + [233059] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12342), 1, - anon_sym_RPAREN, + ACTIONS(8832), 1, + aux_sym__unquoted_in_list_token2, STATE(7740), 1, sym_comment, - [234878] = 3, - ACTIONS(251), 1, + [233069] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12344), 1, - anon_sym_EQ_GT, + ACTIONS(12348), 1, + aux_sym_comment_token1, STATE(7741), 1, sym_comment, - [234888] = 3, - ACTIONS(251), 1, + [233079] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12346), 1, - anon_sym_RPAREN, + ACTIONS(11474), 1, + anon_sym_EQ_GT, STATE(7742), 1, sym_comment, - [234898] = 3, - ACTIONS(251), 1, + [233089] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12348), 1, - anon_sym_RBRACE, + ACTIONS(12350), 1, + anon_sym_RPAREN, STATE(7743), 1, sym_comment, - [234908] = 3, - ACTIONS(251), 1, + [233099] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12350), 1, - anon_sym_RBRACE, + ACTIONS(12352), 1, + sym_raw_string_content, STATE(7744), 1, sym_comment, - [234918] = 3, - ACTIONS(251), 1, + [233109] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12352), 1, - anon_sym_RBRACE, + ACTIONS(2294), 1, + anon_sym_LBRACK2, STATE(7745), 1, sym_comment, - [234928] = 3, - ACTIONS(251), 1, + [233119] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(12354), 1, - sym_raw_string_content, + aux_sym_cmd_identifier_token41, STATE(7746), 1, sym_comment, - [234938] = 3, - ACTIONS(251), 1, + [233129] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2474), 1, - anon_sym_LBRACK2, + ACTIONS(12356), 1, + aux_sym_cmd_identifier_token41, STATE(7747), 1, sym_comment, - [234948] = 3, - ACTIONS(251), 1, + [233139] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12356), 1, - anon_sym_RPAREN, + ACTIONS(12358), 1, + anon_sym_GT2, STATE(7748), 1, sym_comment, - [234958] = 3, - ACTIONS(251), 1, + [233149] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12358), 1, + ACTIONS(12360), 1, anon_sym_RBRACE, STATE(7749), 1, sym_comment, - [234968] = 3, - ACTIONS(3), 1, + [233159] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1993), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(12362), 1, + sym_raw_string_end, STATE(7750), 1, sym_comment, - [234978] = 3, - ACTIONS(251), 1, + [233169] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12360), 1, - anon_sym_RBRACE, + ACTIONS(12364), 1, + anon_sym_LBRACE, STATE(7751), 1, sym_comment, - [234988] = 3, - ACTIONS(251), 1, + [233179] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12362), 1, - anon_sym_RBRACE, + ACTIONS(12366), 1, + sym_raw_string_end, STATE(7752), 1, sym_comment, - [234998] = 3, - ACTIONS(251), 1, + [233189] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4718), 1, - anon_sym_COLON2, + ACTIONS(12368), 1, + sym_raw_string_end, STATE(7753), 1, sym_comment, - [235008] = 3, - ACTIONS(251), 1, + [233199] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12364), 1, - anon_sym_LBRACE, + ACTIONS(12370), 1, + sym_raw_string_content, STATE(7754), 1, sym_comment, - [235018] = 3, - ACTIONS(251), 1, + [233209] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12366), 1, - sym_raw_string_end, + ACTIONS(12372), 1, + anon_sym_RBRACE, STATE(7755), 1, sym_comment, - [235028] = 3, - ACTIONS(251), 1, + [233219] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12368), 1, - sym_raw_string_content, + ACTIONS(4462), 1, + aux_sym_unquoted_token2, STATE(7756), 1, sym_comment, - [235038] = 3, - ACTIONS(251), 1, + [233229] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2232), 1, - anon_sym_LBRACK2, + ACTIONS(12374), 1, + sym_raw_string_end, STATE(7757), 1, sym_comment, - [235048] = 3, - ACTIONS(251), 1, + [233239] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12370), 1, - anon_sym_RBRACE, + ACTIONS(12376), 1, + sym_raw_string_end, STATE(7758), 1, sym_comment, - [235058] = 3, - ACTIONS(251), 1, + [233249] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12372), 1, - anon_sym_RBRACE, + ACTIONS(12378), 1, + anon_sym_RBRACK, STATE(7759), 1, sym_comment, - [235068] = 3, - ACTIONS(251), 1, + [233259] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12374), 1, - anon_sym_GT2, + ACTIONS(12380), 1, + anon_sym_EQ, STATE(7760), 1, sym_comment, - [235078] = 3, - ACTIONS(251), 1, + [233269] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12376), 1, - anon_sym_RBRACK, + ACTIONS(12382), 1, + anon_sym_RPAREN, STATE(7761), 1, sym_comment, - [235088] = 3, - ACTIONS(251), 1, + [233279] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12378), 1, - anon_sym_RBRACK, + ACTIONS(4616), 1, + aux_sym_unquoted_token4, STATE(7762), 1, sym_comment, - [235098] = 3, - ACTIONS(251), 1, + [233289] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12380), 1, - anon_sym_LBRACE, + ACTIONS(12384), 1, + sym_raw_string_content, STATE(7763), 1, sym_comment, - [235108] = 3, - ACTIONS(251), 1, + [233299] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12382), 1, - sym_raw_string_end, + ACTIONS(12386), 1, + anon_sym_RBRACK, STATE(7764), 1, sym_comment, - [235118] = 3, - ACTIONS(251), 1, + [233309] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(477), 1, - anon_sym_RPAREN2, + ACTIONS(12388), 1, + anon_sym_RPAREN, STATE(7765), 1, sym_comment, - [235128] = 3, - ACTIONS(251), 1, + [233319] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12384), 1, - sym_raw_string_content, + ACTIONS(12390), 1, + aux_sym_cmd_identifier_token41, STATE(7766), 1, sym_comment, - [235138] = 3, + [233329] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12386), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(2026), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(7767), 1, sym_comment, - [235148] = 3, - ACTIONS(251), 1, + [233339] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12388), 1, - sym_raw_string_end, + ACTIONS(477), 1, + anon_sym_RPAREN2, STATE(7768), 1, sym_comment, - [235158] = 3, - ACTIONS(251), 1, + [233349] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12390), 1, - sym__table_head_separator, + ACTIONS(7179), 1, + aux_sym_unquoted_token2, STATE(7769), 1, sym_comment, - [235168] = 3, - ACTIONS(251), 1, + [233359] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12392), 1, - anon_sym_RBRACK, + anon_sym_RPAREN, STATE(7770), 1, sym_comment, - [235178] = 3, - ACTIONS(251), 1, + [233369] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12394), 1, - anon_sym_RPAREN, + sym_raw_string_end, STATE(7771), 1, sym_comment, - [235188] = 3, - ACTIONS(3), 1, + [233379] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12396), 1, - aux_sym_cmd_identifier_token41, + sym_raw_string_content, STATE(7772), 1, sym_comment, - [235198] = 3, - ACTIONS(251), 1, + [233389] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12398), 1, - anon_sym_EQ, + ACTIONS(7239), 1, + aux_sym_unquoted_token4, STATE(7773), 1, sym_comment, - [235208] = 3, - ACTIONS(251), 1, + [233399] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12400), 1, - anon_sym_RPAREN, + ACTIONS(12398), 1, + anon_sym_RBRACE, STATE(7774), 1, sym_comment, - [235218] = 3, - ACTIONS(251), 1, + [233409] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12402), 1, - sym_raw_string_content, + ACTIONS(12400), 1, + anon_sym_RPAREN, STATE(7775), 1, sym_comment, - [235228] = 3, - ACTIONS(251), 1, + [233419] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8909), 1, - aux_sym__unquoted_in_list_token2, + ACTIONS(12402), 1, + anon_sym_RBRACK, STATE(7776), 1, sym_comment, - [235238] = 3, - ACTIONS(251), 1, + [233429] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12404), 1, - sym_raw_string_end, + anon_sym_COLON2, STATE(7777), 1, sym_comment, - [235248] = 3, - ACTIONS(251), 1, + [233439] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12406), 1, - sym_raw_string_end, + anon_sym_RBRACE, STATE(7778), 1, sym_comment, - [235258] = 3, - ACTIONS(251), 1, + [233449] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12408), 1, - anon_sym_EQ, + sym_raw_string_end, STATE(7779), 1, sym_comment, - [235268] = 3, - ACTIONS(251), 1, + [233459] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12410), 1, - sym_raw_string_end, + ACTIONS(575), 1, + ts_builtin_sym_end, STATE(7780), 1, sym_comment, - [235278] = 3, - ACTIONS(251), 1, + [233469] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12412), 1, - sym_raw_string_end, + ACTIONS(12410), 1, + sym_raw_string_content, STATE(7781), 1, sym_comment, - [235288] = 3, - ACTIONS(251), 1, + [233479] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12414), 1, - sym_identifier, + ACTIONS(12412), 1, + sym_raw_string_content, STATE(7782), 1, sym_comment, - [235298] = 3, - ACTIONS(251), 1, + [233489] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12416), 1, - anon_sym_RBRACK, + ACTIONS(12414), 1, + sym_raw_string_content, STATE(7783), 1, sym_comment, - [235308] = 3, - ACTIONS(251), 1, + [233499] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12418), 1, + ACTIONS(12416), 1, sym_raw_string_content, STATE(7784), 1, sym_comment, - [235318] = 3, - ACTIONS(251), 1, + [233509] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12420), 1, - anon_sym_RPAREN, + ACTIONS(12418), 1, + sym_raw_string_content, STATE(7785), 1, sym_comment, - [235328] = 3, - ACTIONS(251), 1, + [233519] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12422), 1, - ts_builtin_sym_end, + ACTIONS(12420), 1, + sym_raw_string_content, STATE(7786), 1, sym_comment, - [235338] = 3, - ACTIONS(251), 1, + [233529] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12424), 1, - anon_sym_RBRACE, + ACTIONS(12422), 1, + sym_raw_string_content, STATE(7787), 1, sym_comment, - [235348] = 3, - ACTIONS(251), 1, + [233539] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12426), 1, - anon_sym_RPAREN, + ACTIONS(12424), 1, + sym_raw_string_content, STATE(7788), 1, sym_comment, - [235358] = 3, - ACTIONS(3), 1, + [233549] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7078), 1, - aux_sym_unquoted_token4, + ACTIONS(12426), 1, + sym_raw_string_content, STATE(7789), 1, sym_comment, - [235368] = 3, - ACTIONS(251), 1, + [233559] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12428), 1, - sym_raw_string_end, + sym_raw_string_content, STATE(7790), 1, sym_comment, - [235378] = 3, - ACTIONS(251), 1, + [233569] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12430), 1, - sym_long_flag_identifier, + sym_raw_string_content, STATE(7791), 1, sym_comment, - [235388] = 3, - ACTIONS(251), 1, + [233579] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12432), 1, - sym_raw_string_end, + sym_raw_string_content, STATE(7792), 1, sym_comment, - [235398] = 3, - ACTIONS(251), 1, + [233589] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12434), 1, sym_raw_string_content, STATE(7793), 1, sym_comment, - [235408] = 3, - ACTIONS(251), 1, + [233599] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12436), 1, sym_raw_string_content, STATE(7794), 1, sym_comment, - [235418] = 3, - ACTIONS(251), 1, + [233609] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12438), 1, sym_raw_string_content, STATE(7795), 1, sym_comment, - [235428] = 3, - ACTIONS(251), 1, + [233619] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12440), 1, sym_raw_string_content, STATE(7796), 1, sym_comment, - [235438] = 3, - ACTIONS(251), 1, + [233629] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12442), 1, sym_raw_string_content, STATE(7797), 1, sym_comment, - [235448] = 3, - ACTIONS(251), 1, + [233639] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12444), 1, sym_raw_string_content, STATE(7798), 1, sym_comment, - [235458] = 3, - ACTIONS(251), 1, + [233649] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12446), 1, sym_raw_string_content, STATE(7799), 1, sym_comment, - [235468] = 3, - ACTIONS(251), 1, + [233659] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12448), 1, sym_raw_string_content, STATE(7800), 1, sym_comment, - [235478] = 3, - ACTIONS(251), 1, + [233669] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12450), 1, sym_raw_string_content, STATE(7801), 1, sym_comment, - [235488] = 3, - ACTIONS(251), 1, + [233679] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12452), 1, - sym_raw_string_content, + sym__table_head_separator, STATE(7802), 1, sym_comment, - [235498] = 3, - ACTIONS(251), 1, + [233689] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12454), 1, - sym_raw_string_content, + ACTIONS(11888), 1, + anon_sym_LPAREN2, STATE(7803), 1, sym_comment, - [235508] = 3, - ACTIONS(251), 1, + [233699] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12456), 1, - sym_raw_string_content, + ACTIONS(12454), 1, + sym_raw_string_end, STATE(7804), 1, sym_comment, - [235518] = 3, - ACTIONS(251), 1, + [233709] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12458), 1, - sym_raw_string_content, + ACTIONS(12456), 1, + anon_sym_RPAREN, STATE(7805), 1, sym_comment, - [235528] = 3, - ACTIONS(251), 1, + [233719] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12460), 1, - sym_raw_string_content, + ACTIONS(7118), 1, + aux_sym_unquoted_token2, STATE(7806), 1, sym_comment, - [235538] = 3, - ACTIONS(251), 1, + [233729] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12462), 1, - sym_raw_string_content, + ACTIONS(12458), 1, + sym_raw_string_end, STATE(7807), 1, sym_comment, - [235548] = 3, - ACTIONS(251), 1, + [233739] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12464), 1, - sym_raw_string_content, + ACTIONS(12460), 1, + anon_sym_RBRACE, STATE(7808), 1, sym_comment, - [235558] = 3, - ACTIONS(251), 1, + [233749] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12466), 1, - sym_raw_string_content, + ACTIONS(7118), 1, + aux_sym_unquoted_token4, STATE(7809), 1, sym_comment, - [235568] = 3, - ACTIONS(251), 1, + [233759] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12468), 1, - sym_raw_string_content, + ACTIONS(12462), 1, + anon_sym_RPAREN, STATE(7810), 1, sym_comment, - [235578] = 3, - ACTIONS(251), 1, + [233769] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12470), 1, - sym_raw_string_content, + ACTIONS(12464), 1, + sym_identifier, STATE(7811), 1, sym_comment, - [235588] = 3, - ACTIONS(251), 1, + [233779] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12472), 1, - sym_raw_string_content, + ACTIONS(12466), 1, + anon_sym_in2, STATE(7812), 1, sym_comment, - [235598] = 3, - ACTIONS(251), 1, + [233789] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12474), 1, - sym_raw_string_content, + ACTIONS(12468), 1, + anon_sym_RPAREN, STATE(7813), 1, sym_comment, - [235608] = 3, - ACTIONS(251), 1, + [233799] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12476), 1, - anon_sym_make, + ACTIONS(5575), 1, + aux_sym__unquoted_in_list_token2, STATE(7814), 1, sym_comment, - [235618] = 3, - ACTIONS(251), 1, + [233809] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11872), 1, - anon_sym_LPAREN2, + ACTIONS(12470), 1, + anon_sym_RBRACK, STATE(7815), 1, sym_comment, - [235628] = 3, - ACTIONS(251), 1, + [233819] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12478), 1, - anon_sym_EQ, + ACTIONS(12472), 1, + anon_sym_RBRACK, STATE(7816), 1, sym_comment, - [235638] = 3, - ACTIONS(251), 1, + [233829] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12480), 1, - anon_sym_RPAREN, + ACTIONS(12474), 1, + anon_sym_RBRACE, STATE(7817), 1, sym_comment, - [235648] = 3, - ACTIONS(251), 1, + [233839] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12482), 1, - sym_raw_string_end, + ACTIONS(7239), 1, + aux_sym_unquoted_token2, STATE(7818), 1, sym_comment, - [235658] = 3, - ACTIONS(251), 1, + [233849] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12484), 1, - sym_raw_string_end, + ACTIONS(9063), 1, + aux_sym_unquoted_token4, STATE(7819), 1, sym_comment, - [235668] = 3, - ACTIONS(251), 1, + [233859] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12486), 1, - anon_sym_EQ, + ACTIONS(12476), 1, + anon_sym_RBRACK, STATE(7820), 1, sym_comment, - [235678] = 3, - ACTIONS(251), 1, + [233869] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12488), 1, - anon_sym_EQ, + ACTIONS(12478), 1, + anon_sym_RPAREN, STATE(7821), 1, sym_comment, - [235688] = 3, - ACTIONS(251), 1, + [233879] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12490), 1, + ACTIONS(12480), 1, anon_sym_RPAREN, STATE(7822), 1, sym_comment, - [235698] = 3, - ACTIONS(251), 1, + [233889] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12492), 1, + ACTIONS(12482), 1, anon_sym_RBRACE, STATE(7823), 1, sym_comment, - [235708] = 3, - ACTIONS(251), 1, + [233899] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12494), 1, - anon_sym_in2, + ACTIONS(12484), 1, + anon_sym_RPAREN, STATE(7824), 1, sym_comment, - [235718] = 3, - ACTIONS(251), 1, + [233909] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12496), 1, - anon_sym_EQ, + ACTIONS(12486), 1, + anon_sym_make, STATE(7825), 1, sym_comment, - [235728] = 3, - ACTIONS(251), 1, + [233919] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12498), 1, - anon_sym_EQ, + ACTIONS(12488), 1, + anon_sym_RBRACE, STATE(7826), 1, sym_comment, - [235738] = 3, - ACTIONS(251), 1, + [233929] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12500), 1, - sym_raw_string_end, + ACTIONS(12490), 1, + anon_sym_DASH_GT, STATE(7827), 1, sym_comment, - [235748] = 3, - ACTIONS(251), 1, + [233939] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12502), 1, - anon_sym_EQ, + ACTIONS(12492), 1, + anon_sym_RBRACE, STATE(7828), 1, sym_comment, - [235758] = 3, - ACTIONS(251), 1, + [233949] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12504), 1, - anon_sym_RBRACK, + ACTIONS(12494), 1, + anon_sym_RBRACE, STATE(7829), 1, sym_comment, - [235768] = 3, - ACTIONS(251), 1, + [233959] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12506), 1, - anon_sym_RPAREN, + ACTIONS(12496), 1, + anon_sym_RBRACE, STATE(7830), 1, sym_comment, - [235778] = 3, - ACTIONS(251), 1, + [233969] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12508), 1, - anon_sym_RPAREN, + ACTIONS(12498), 1, + anon_sym_RBRACK, STATE(7831), 1, sym_comment, - [235788] = 3, - ACTIONS(251), 1, + [233979] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7215), 1, - aux_sym_unquoted_token2, + ACTIONS(12500), 1, + sym_raw_string_end, STATE(7832), 1, sym_comment, - [235798] = 3, - ACTIONS(3), 1, + [233989] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9097), 1, - aux_sym_unquoted_token4, + ACTIONS(7070), 1, + aux_sym_unquoted_token2, STATE(7833), 1, sym_comment, - [235808] = 3, - ACTIONS(251), 1, + [233999] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4191), 1, - aux_sym_unquoted_token2, + ACTIONS(12502), 1, + anon_sym_RBRACE, STATE(7834), 1, sym_comment, - [235818] = 3, - ACTIONS(251), 1, + [234009] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12510), 1, - sym__table_head_separator, + ACTIONS(12504), 1, + anon_sym_RBRACE, STATE(7835), 1, sym_comment, - [235828] = 3, - ACTIONS(251), 1, + [234019] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7138), 1, - aux_sym_unquoted_token2, + ACTIONS(12506), 1, + anon_sym_RBRACE, STATE(7836), 1, sym_comment, - [235838] = 3, - ACTIONS(3), 1, + [234029] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1997), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(12508), 1, + sym__table_head_separator, STATE(7837), 1, sym_comment, - [235848] = 3, + [234039] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4630), 1, - aux_sym_unquoted_token4, + ACTIONS(12510), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(7838), 1, sym_comment, - [235858] = 3, - ACTIONS(251), 1, + [234049] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12512), 1, - anon_sym_RBRACK, + ACTIONS(469), 1, + anon_sym_RPAREN2, STATE(7839), 1, sym_comment, - [235868] = 3, - ACTIONS(251), 1, + [234059] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(505), 1, - anon_sym_RPAREN2, + ACTIONS(9999), 1, + aux_sym_unquoted_token4, STATE(7840), 1, sym_comment, - [235878] = 3, - ACTIONS(251), 1, + [234069] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12514), 1, + ACTIONS(12512), 1, anon_sym_RPAREN, STATE(7841), 1, sym_comment, - [235888] = 3, - ACTIONS(251), 1, + [234079] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12516), 1, - anon_sym_RBRACE, + ACTIONS(12514), 1, + anon_sym_LBRACE, STATE(7842), 1, sym_comment, - [235898] = 3, - ACTIONS(251), 1, + [234089] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12518), 1, - anon_sym_RBRACE, + ACTIONS(12516), 1, + aux_sym_cmd_identifier_token41, STATE(7843), 1, sym_comment, - [235908] = 3, - ACTIONS(251), 1, + [234099] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12520), 1, - anon_sym_RBRACE, + ACTIONS(12518), 1, + sym_raw_string_end, STATE(7844), 1, sym_comment, - [235918] = 3, - ACTIONS(3), 1, + [234109] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7138), 1, - aux_sym_unquoted_token4, + ACTIONS(12520), 1, + anon_sym_EQ_GT, STATE(7845), 1, sym_comment, - [235928] = 3, - ACTIONS(251), 1, + [234119] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12522), 1, - anon_sym_LPAREN2, + anon_sym_EQ, STATE(7846), 1, sym_comment, - [235938] = 3, - ACTIONS(251), 1, + [234129] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12524), 1, - sym_identifier, + sym_raw_string_end, STATE(7847), 1, sym_comment, - [235948] = 3, - ACTIONS(251), 1, + [234139] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12526), 1, - sym_raw_string_end, + anon_sym_RBRACK, STATE(7848), 1, sym_comment, - [235958] = 3, - ACTIONS(251), 1, + [234149] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12528), 1, - anon_sym_LBRACE, + ACTIONS(465), 1, + anon_sym_RPAREN2, STATE(7849), 1, sym_comment, - [235968] = 3, - ACTIONS(251), 1, + [234159] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12530), 1, - sym_raw_string_end, + ACTIONS(503), 1, + anon_sym_RPAREN2, STATE(7850), 1, sym_comment, - [235978] = 3, - ACTIONS(251), 1, + [234169] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5565), 1, - aux_sym__unquoted_in_list_token2, + ACTIONS(12528), 1, + sym_raw_string_end, STATE(7851), 1, sym_comment, - [235988] = 3, - ACTIONS(251), 1, + [234179] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12532), 1, - anon_sym_RBRACE, + ACTIONS(12530), 1, + aux_sym_cmd_identifier_token41, STATE(7852), 1, sym_comment, - [235998] = 3, - ACTIONS(251), 1, + [234189] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12534), 1, - anon_sym_RBRACK, + ACTIONS(12532), 1, + anon_sym_EQ, STATE(7853), 1, sym_comment, - [236008] = 3, - ACTIONS(251), 1, + [234199] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12536), 1, - anon_sym_RPAREN, + ACTIONS(12534), 1, + sym_raw_string_end, STATE(7854), 1, sym_comment, - [236018] = 3, - ACTIONS(251), 1, + [234209] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12538), 1, - anon_sym_RPAREN, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, STATE(7855), 1, sym_comment, - [236028] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(12540), 1, - anon_sym_RBRACK, - STATE(7856), 1, - sym_comment, - [236038] = 3, - ACTIONS(251), 1, + [234219] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12542), 1, + ACTIONS(12536), 1, anon_sym_GT2, - STATE(7857), 1, - sym_comment, - [236048] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(12544), 1, - anon_sym_RPAREN, - STATE(7858), 1, - sym_comment, - [236058] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(12546), 1, - sym_raw_string_end, - STATE(7859), 1, - sym_comment, - [236068] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(12548), 1, - anon_sym_RBRACE, - STATE(7860), 1, + STATE(7856), 1, sym_comment, - [236078] = 3, - ACTIONS(251), 1, + [234229] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12550), 1, + ACTIONS(12538), 1, anon_sym_RBRACE, - STATE(7861), 1, - sym_comment, - [236088] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12552), 1, - aux_sym_cmd_identifier_token41, - STATE(7862), 1, - sym_comment, - [236098] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(12554), 1, - anon_sym_LBRACE, - STATE(7863), 1, - sym_comment, - [236108] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12556), 1, - aux_sym_cmd_identifier_token41, - STATE(7864), 1, - sym_comment, - [236118] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11874), 1, - aux_sym__record_key_token1, - STATE(7865), 1, - sym_comment, - [236128] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(12558), 1, - sym_param_short_flag_identifier, - STATE(7866), 1, - sym_comment, - [236138] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(12560), 1, - sym_raw_string_end, - STATE(7867), 1, - sym_comment, - [236148] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(509), 1, - anon_sym_RPAREN2, - STATE(7868), 1, - sym_comment, - [236158] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(12246), 1, - anon_sym_LBRACE, - STATE(7869), 1, + STATE(7857), 1, sym_comment, - [236168] = 1, - ACTIONS(12562), 1, + [234239] = 1, + ACTIONS(12540), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1701)] = 0, - [SMALL_STATE(1702)] = 73, - [SMALL_STATE(1703)] = 146, - [SMALL_STATE(1704)] = 219, - [SMALL_STATE(1705)] = 322, - [SMALL_STATE(1706)] = 395, - [SMALL_STATE(1707)] = 468, - [SMALL_STATE(1708)] = 541, - [SMALL_STATE(1709)] = 614, - [SMALL_STATE(1710)] = 721, - [SMALL_STATE(1711)] = 794, - [SMALL_STATE(1712)] = 867, - [SMALL_STATE(1713)] = 940, - [SMALL_STATE(1714)] = 1013, - [SMALL_STATE(1715)] = 1086, - [SMALL_STATE(1716)] = 1159, - [SMALL_STATE(1717)] = 1232, - [SMALL_STATE(1718)] = 1305, - [SMALL_STATE(1719)] = 1378, - [SMALL_STATE(1720)] = 1451, - [SMALL_STATE(1721)] = 1524, - [SMALL_STATE(1722)] = 1597, - [SMALL_STATE(1723)] = 1670, - [SMALL_STATE(1724)] = 1743, - [SMALL_STATE(1725)] = 1816, - [SMALL_STATE(1726)] = 1889, - [SMALL_STATE(1727)] = 1962, - [SMALL_STATE(1728)] = 2035, - [SMALL_STATE(1729)] = 2142, - [SMALL_STATE(1730)] = 2215, - [SMALL_STATE(1731)] = 2290, - [SMALL_STATE(1732)] = 2363, - [SMALL_STATE(1733)] = 2436, - [SMALL_STATE(1734)] = 2509, - [SMALL_STATE(1735)] = 2582, - [SMALL_STATE(1736)] = 2663, - [SMALL_STATE(1737)] = 2736, - [SMALL_STATE(1738)] = 2809, - [SMALL_STATE(1739)] = 2882, - [SMALL_STATE(1740)] = 2955, - [SMALL_STATE(1741)] = 3028, - [SMALL_STATE(1742)] = 3109, - [SMALL_STATE(1743)] = 3182, - [SMALL_STATE(1744)] = 3255, - [SMALL_STATE(1745)] = 3328, - [SMALL_STATE(1746)] = 3401, - [SMALL_STATE(1747)] = 3504, - [SMALL_STATE(1748)] = 3577, - [SMALL_STATE(1749)] = 3650, - [SMALL_STATE(1750)] = 3723, - [SMALL_STATE(1751)] = 3798, - [SMALL_STATE(1752)] = 3871, - [SMALL_STATE(1753)] = 3944, - [SMALL_STATE(1754)] = 4019, - [SMALL_STATE(1755)] = 4092, - [SMALL_STATE(1756)] = 4167, - [SMALL_STATE(1757)] = 4240, - [SMALL_STATE(1758)] = 4313, - [SMALL_STATE(1759)] = 4386, - [SMALL_STATE(1760)] = 4459, - [SMALL_STATE(1761)] = 4532, - [SMALL_STATE(1762)] = 4605, - [SMALL_STATE(1763)] = 4680, - [SMALL_STATE(1764)] = 4755, - [SMALL_STATE(1765)] = 4828, - [SMALL_STATE(1766)] = 4901, - [SMALL_STATE(1767)] = 4974, - [SMALL_STATE(1768)] = 5047, - [SMALL_STATE(1769)] = 5154, - [SMALL_STATE(1770)] = 5227, - [SMALL_STATE(1771)] = 5300, - [SMALL_STATE(1772)] = 5373, - [SMALL_STATE(1773)] = 5448, - [SMALL_STATE(1774)] = 5521, - [SMALL_STATE(1775)] = 5594, - [SMALL_STATE(1776)] = 5669, - [SMALL_STATE(1777)] = 5744, - [SMALL_STATE(1778)] = 5847, - [SMALL_STATE(1779)] = 5920, - [SMALL_STATE(1780)] = 5993, - [SMALL_STATE(1781)] = 6066, - [SMALL_STATE(1782)] = 6141, - [SMALL_STATE(1783)] = 6214, - [SMALL_STATE(1784)] = 6287, - [SMALL_STATE(1785)] = 6360, - [SMALL_STATE(1786)] = 6433, - [SMALL_STATE(1787)] = 6506, - [SMALL_STATE(1788)] = 6579, - [SMALL_STATE(1789)] = 6652, - [SMALL_STATE(1790)] = 6725, - [SMALL_STATE(1791)] = 6798, - [SMALL_STATE(1792)] = 6871, - [SMALL_STATE(1793)] = 6944, - [SMALL_STATE(1794)] = 7019, - [SMALL_STATE(1795)] = 7094, - [SMALL_STATE(1796)] = 7169, - [SMALL_STATE(1797)] = 7244, - [SMALL_STATE(1798)] = 7317, - [SMALL_STATE(1799)] = 7390, - [SMALL_STATE(1800)] = 7463, - [SMALL_STATE(1801)] = 7538, - [SMALL_STATE(1802)] = 7613, - [SMALL_STATE(1803)] = 7686, - [SMALL_STATE(1804)] = 7759, - [SMALL_STATE(1805)] = 7832, - [SMALL_STATE(1806)] = 7905, - [SMALL_STATE(1807)] = 7978, - [SMALL_STATE(1808)] = 8051, - [SMALL_STATE(1809)] = 8124, - [SMALL_STATE(1810)] = 8197, - [SMALL_STATE(1811)] = 8270, - [SMALL_STATE(1812)] = 8343, - [SMALL_STATE(1813)] = 8416, - [SMALL_STATE(1814)] = 8489, - [SMALL_STATE(1815)] = 8562, - [SMALL_STATE(1816)] = 8635, - [SMALL_STATE(1817)] = 8777, - [SMALL_STATE(1818)] = 8919, - [SMALL_STATE(1819)] = 8995, - [SMALL_STATE(1820)] = 9071, - [SMALL_STATE(1821)] = 9147, - [SMALL_STATE(1822)] = 9223, - [SMALL_STATE(1823)] = 9295, - [SMALL_STATE(1824)] = 9367, - [SMALL_STATE(1825)] = 9439, - [SMALL_STATE(1826)] = 9511, - [SMALL_STATE(1827)] = 9583, - [SMALL_STATE(1828)] = 9655, - [SMALL_STATE(1829)] = 9727, - [SMALL_STATE(1830)] = 9799, - [SMALL_STATE(1831)] = 9871, - [SMALL_STATE(1832)] = 9943, - [SMALL_STATE(1833)] = 10019, - [SMALL_STATE(1834)] = 10095, - [SMALL_STATE(1835)] = 10167, - [SMALL_STATE(1836)] = 10239, - [SMALL_STATE(1837)] = 10311, - [SMALL_STATE(1838)] = 10383, - [SMALL_STATE(1839)] = 10455, - [SMALL_STATE(1840)] = 10527, - [SMALL_STATE(1841)] = 10599, - [SMALL_STATE(1842)] = 10741, - [SMALL_STATE(1843)] = 10813, - [SMALL_STATE(1844)] = 10889, - [SMALL_STATE(1845)] = 10961, - [SMALL_STATE(1846)] = 11033, - [SMALL_STATE(1847)] = 11109, - [SMALL_STATE(1848)] = 11185, - [SMALL_STATE(1849)] = 11257, - [SMALL_STATE(1850)] = 11329, - [SMALL_STATE(1851)] = 11401, - [SMALL_STATE(1852)] = 11473, - [SMALL_STATE(1853)] = 11545, - [SMALL_STATE(1854)] = 11617, - [SMALL_STATE(1855)] = 11689, - [SMALL_STATE(1856)] = 11765, - [SMALL_STATE(1857)] = 11841, - [SMALL_STATE(1858)] = 11913, - [SMALL_STATE(1859)] = 11985, - [SMALL_STATE(1860)] = 12057, - [SMALL_STATE(1861)] = 12129, - [SMALL_STATE(1862)] = 12201, - [SMALL_STATE(1863)] = 12273, - [SMALL_STATE(1864)] = 12347, - [SMALL_STATE(1865)] = 12419, - [SMALL_STATE(1866)] = 12495, - [SMALL_STATE(1867)] = 12567, - [SMALL_STATE(1868)] = 12639, - [SMALL_STATE(1869)] = 12715, - [SMALL_STATE(1870)] = 12791, - [SMALL_STATE(1871)] = 12867, - [SMALL_STATE(1872)] = 12939, - [SMALL_STATE(1873)] = 13011, - [SMALL_STATE(1874)] = 13083, - [SMALL_STATE(1875)] = 13155, - [SMALL_STATE(1876)] = 13227, - [SMALL_STATE(1877)] = 13299, - [SMALL_STATE(1878)] = 13375, - [SMALL_STATE(1879)] = 13447, - [SMALL_STATE(1880)] = 13519, - [SMALL_STATE(1881)] = 13591, - [SMALL_STATE(1882)] = 13663, - [SMALL_STATE(1883)] = 13735, - [SMALL_STATE(1884)] = 13807, - [SMALL_STATE(1885)] = 13879, - [SMALL_STATE(1886)] = 13951, - [SMALL_STATE(1887)] = 14023, - [SMALL_STATE(1888)] = 14095, - [SMALL_STATE(1889)] = 14175, - [SMALL_STATE(1890)] = 14247, - [SMALL_STATE(1891)] = 14319, - [SMALL_STATE(1892)] = 14391, - [SMALL_STATE(1893)] = 14463, - [SMALL_STATE(1894)] = 14535, - [SMALL_STATE(1895)] = 14607, - [SMALL_STATE(1896)] = 14679, - [SMALL_STATE(1897)] = 14751, - [SMALL_STATE(1898)] = 14823, - [SMALL_STATE(1899)] = 14965, - [SMALL_STATE(1900)] = 15037, - [SMALL_STATE(1901)] = 15109, - [SMALL_STATE(1902)] = 15181, - [SMALL_STATE(1903)] = 15257, - [SMALL_STATE(1904)] = 15329, - [SMALL_STATE(1905)] = 15401, - [SMALL_STATE(1906)] = 15477, - [SMALL_STATE(1907)] = 15549, - [SMALL_STATE(1908)] = 15621, - [SMALL_STATE(1909)] = 15697, - [SMALL_STATE(1910)] = 15769, - [SMALL_STATE(1911)] = 15845, - [SMALL_STATE(1912)] = 15921, - [SMALL_STATE(1913)] = 15997, - [SMALL_STATE(1914)] = 16077, - [SMALL_STATE(1915)] = 16153, - [SMALL_STATE(1916)] = 16225, - [SMALL_STATE(1917)] = 16297, - [SMALL_STATE(1918)] = 16369, - [SMALL_STATE(1919)] = 16441, - [SMALL_STATE(1920)] = 16517, - [SMALL_STATE(1921)] = 16589, - [SMALL_STATE(1922)] = 16661, - [SMALL_STATE(1923)] = 16737, - [SMALL_STATE(1924)] = 16809, - [SMALL_STATE(1925)] = 16889, - [SMALL_STATE(1926)] = 16961, - [SMALL_STATE(1927)] = 17033, - [SMALL_STATE(1928)] = 17105, - [SMALL_STATE(1929)] = 17181, - [SMALL_STATE(1930)] = 17253, - [SMALL_STATE(1931)] = 17325, - [SMALL_STATE(1932)] = 17397, - [SMALL_STATE(1933)] = 17469, - [SMALL_STATE(1934)] = 17541, - [SMALL_STATE(1935)] = 17613, - [SMALL_STATE(1936)] = 17685, - [SMALL_STATE(1937)] = 17757, - [SMALL_STATE(1938)] = 17829, - [SMALL_STATE(1939)] = 17901, - [SMALL_STATE(1940)] = 17973, - [SMALL_STATE(1941)] = 18045, - [SMALL_STATE(1942)] = 18117, - [SMALL_STATE(1943)] = 18189, - [SMALL_STATE(1944)] = 18331, - [SMALL_STATE(1945)] = 18473, - [SMALL_STATE(1946)] = 18549, - [SMALL_STATE(1947)] = 18626, - [SMALL_STATE(1948)] = 18703, - [SMALL_STATE(1949)] = 18782, - [SMALL_STATE(1950)] = 18859, - [SMALL_STATE(1951)] = 18936, - [SMALL_STATE(1952)] = 19015, - [SMALL_STATE(1953)] = 19092, - [SMALL_STATE(1954)] = 19169, - [SMALL_STATE(1955)] = 19246, - [SMALL_STATE(1956)] = 19323, - [SMALL_STATE(1957)] = 19400, - [SMALL_STATE(1958)] = 19473, - [SMALL_STATE(1959)] = 19550, - [SMALL_STATE(1960)] = 19627, - [SMALL_STATE(1961)] = 19704, - [SMALL_STATE(1962)] = 19777, - [SMALL_STATE(1963)] = 19854, - [SMALL_STATE(1964)] = 19931, - [SMALL_STATE(1965)] = 20008, - [SMALL_STATE(1966)] = 20085, - [SMALL_STATE(1967)] = 20164, - [SMALL_STATE(1968)] = 20235, - [SMALL_STATE(1969)] = 20306, - [SMALL_STATE(1970)] = 20377, - [SMALL_STATE(1971)] = 20448, - [SMALL_STATE(1972)] = 20525, - [SMALL_STATE(1973)] = 20602, - [SMALL_STATE(1974)] = 20679, - [SMALL_STATE(1975)] = 20760, - [SMALL_STATE(1976)] = 20837, - [SMALL_STATE(1977)] = 20970, - [SMALL_STATE(1978)] = 21047, - [SMALL_STATE(1979)] = 21124, - [SMALL_STATE(1980)] = 21195, - [SMALL_STATE(1981)] = 21272, - [SMALL_STATE(1982)] = 21347, - [SMALL_STATE(1983)] = 21424, - [SMALL_STATE(1984)] = 21499, - [SMALL_STATE(1985)] = 21570, - [SMALL_STATE(1986)] = 21647, - [SMALL_STATE(1987)] = 21718, - [SMALL_STATE(1988)] = 21795, - [SMALL_STATE(1989)] = 21870, - [SMALL_STATE(1990)] = 21947, - [SMALL_STATE(1991)] = 22086, - [SMALL_STATE(1992)] = 22225, - [SMALL_STATE(1993)] = 22302, - [SMALL_STATE(1994)] = 22379, - [SMALL_STATE(1995)] = 22450, - [SMALL_STATE(1996)] = 22521, - [SMALL_STATE(1997)] = 22592, - [SMALL_STATE(1998)] = 22663, - [SMALL_STATE(1999)] = 22734, - [SMALL_STATE(2000)] = 22805, - [SMALL_STATE(2001)] = 22876, - [SMALL_STATE(2002)] = 22953, - [SMALL_STATE(2003)] = 23032, - [SMALL_STATE(2004)] = 23111, - [SMALL_STATE(2005)] = 23190, - [SMALL_STATE(2006)] = 23269, - [SMALL_STATE(2007)] = 23348, - [SMALL_STATE(2008)] = 23427, - [SMALL_STATE(2009)] = 23498, - [SMALL_STATE(2010)] = 23569, - [SMALL_STATE(2011)] = 23648, - [SMALL_STATE(2012)] = 23727, - [SMALL_STATE(2013)] = 23806, - [SMALL_STATE(2014)] = 23877, - [SMALL_STATE(2015)] = 23948, - [SMALL_STATE(2016)] = 24029, - [SMALL_STATE(2017)] = 24108, - [SMALL_STATE(2018)] = 24241, - [SMALL_STATE(2019)] = 24318, - [SMALL_STATE(2020)] = 24451, - [SMALL_STATE(2021)] = 24522, - [SMALL_STATE(2022)] = 24593, - [SMALL_STATE(2023)] = 24664, - [SMALL_STATE(2024)] = 24735, - [SMALL_STATE(2025)] = 24806, - [SMALL_STATE(2026)] = 24883, - [SMALL_STATE(2027)] = 24954, - [SMALL_STATE(2028)] = 25031, - [SMALL_STATE(2029)] = 25102, - [SMALL_STATE(2030)] = 25173, - [SMALL_STATE(2031)] = 25244, - [SMALL_STATE(2032)] = 25315, - [SMALL_STATE(2033)] = 25386, - [SMALL_STATE(2034)] = 25463, - [SMALL_STATE(2035)] = 25534, - [SMALL_STATE(2036)] = 25605, - [SMALL_STATE(2037)] = 25682, - [SMALL_STATE(2038)] = 25815, - [SMALL_STATE(2039)] = 25886, - [SMALL_STATE(2040)] = 25963, - [SMALL_STATE(2041)] = 26034, - [SMALL_STATE(2042)] = 26173, - [SMALL_STATE(2043)] = 26312, - [SMALL_STATE(2044)] = 26391, - [SMALL_STATE(2045)] = 26472, - [SMALL_STATE(2046)] = 26549, - [SMALL_STATE(2047)] = 26626, - [SMALL_STATE(2048)] = 26703, - [SMALL_STATE(2049)] = 26774, - [SMALL_STATE(2050)] = 26851, - [SMALL_STATE(2051)] = 26926, - [SMALL_STATE(2052)] = 26997, - [SMALL_STATE(2053)] = 27074, - [SMALL_STATE(2054)] = 27151, - [SMALL_STATE(2055)] = 27230, - [SMALL_STATE(2056)] = 27301, - [SMALL_STATE(2057)] = 27372, - [SMALL_STATE(2058)] = 27451, - [SMALL_STATE(2059)] = 27528, - [SMALL_STATE(2060)] = 27605, - [SMALL_STATE(2061)] = 27676, - [SMALL_STATE(2062)] = 27753, - [SMALL_STATE(2063)] = 27830, - [SMALL_STATE(2064)] = 27907, - [SMALL_STATE(2065)] = 27984, - [SMALL_STATE(2066)] = 28063, - [SMALL_STATE(2067)] = 28142, - [SMALL_STATE(2068)] = 28221, - [SMALL_STATE(2069)] = 28300, - [SMALL_STATE(2070)] = 28377, - [SMALL_STATE(2071)] = 28454, - [SMALL_STATE(2072)] = 28533, - [SMALL_STATE(2073)] = 28604, - [SMALL_STATE(2074)] = 28675, - [SMALL_STATE(2075)] = 28746, - [SMALL_STATE(2076)] = 28817, - [SMALL_STATE(2077)] = 28888, - [SMALL_STATE(2078)] = 28965, - [SMALL_STATE(2079)] = 29036, - [SMALL_STATE(2080)] = 29115, - [SMALL_STATE(2081)] = 29192, - [SMALL_STATE(2082)] = 29262, - [SMALL_STATE(2083)] = 29336, - [SMALL_STATE(2084)] = 29410, - [SMALL_STATE(2085)] = 29480, - [SMALL_STATE(2086)] = 29550, - [SMALL_STATE(2087)] = 29624, - [SMALL_STATE(2088)] = 29760, - [SMALL_STATE(2089)] = 29896, - [SMALL_STATE(2090)] = 29966, - [SMALL_STATE(2091)] = 30102, - [SMALL_STATE(2092)] = 30238, - [SMALL_STATE(2093)] = 30308, - [SMALL_STATE(2094)] = 30378, - [SMALL_STATE(2095)] = 30456, - [SMALL_STATE(2096)] = 30526, - [SMALL_STATE(2097)] = 30662, - [SMALL_STATE(2098)] = 30736, - [SMALL_STATE(2099)] = 30806, - [SMALL_STATE(2100)] = 30876, - [SMALL_STATE(2101)] = 30946, - [SMALL_STATE(2102)] = 31020, - [SMALL_STATE(2103)] = 31090, - [SMALL_STATE(2104)] = 31160, - [SMALL_STATE(2105)] = 31230, - [SMALL_STATE(2106)] = 31300, - [SMALL_STATE(2107)] = 31436, - [SMALL_STATE(2108)] = 31506, - [SMALL_STATE(2109)] = 31576, - [SMALL_STATE(2110)] = 31712, - [SMALL_STATE(2111)] = 31782, - [SMALL_STATE(2112)] = 31852, - [SMALL_STATE(2113)] = 31922, - [SMALL_STATE(2114)] = 31992, - [SMALL_STATE(2115)] = 32128, - [SMALL_STATE(2116)] = 32198, - [SMALL_STATE(2117)] = 32268, - [SMALL_STATE(2118)] = 32340, - [SMALL_STATE(2119)] = 32414, - [SMALL_STATE(2120)] = 32484, - [SMALL_STATE(2121)] = 32620, - [SMALL_STATE(2122)] = 32694, - [SMALL_STATE(2123)] = 32764, - [SMALL_STATE(2124)] = 32834, - [SMALL_STATE(2125)] = 32904, - [SMALL_STATE(2126)] = 32976, - [SMALL_STATE(2127)] = 33046, - [SMALL_STATE(2128)] = 33116, - [SMALL_STATE(2129)] = 33186, - [SMALL_STATE(2130)] = 33256, - [SMALL_STATE(2131)] = 33326, - [SMALL_STATE(2132)] = 33396, - [SMALL_STATE(2133)] = 33470, - [SMALL_STATE(2134)] = 33540, - [SMALL_STATE(2135)] = 33610, - [SMALL_STATE(2136)] = 33684, - [SMALL_STATE(2137)] = 33754, - [SMALL_STATE(2138)] = 33824, - [SMALL_STATE(2139)] = 33894, - [SMALL_STATE(2140)] = 33964, - [SMALL_STATE(2141)] = 34038, - [SMALL_STATE(2142)] = 34112, - [SMALL_STATE(2143)] = 34182, - [SMALL_STATE(2144)] = 34252, - [SMALL_STATE(2145)] = 34326, - [SMALL_STATE(2146)] = 34396, - [SMALL_STATE(2147)] = 34470, - [SMALL_STATE(2148)] = 34544, - [SMALL_STATE(2149)] = 34618, - [SMALL_STATE(2150)] = 34754, - [SMALL_STATE(2151)] = 34828, - [SMALL_STATE(2152)] = 34898, - [SMALL_STATE(2153)] = 34972, - [SMALL_STATE(2154)] = 35042, - [SMALL_STATE(2155)] = 35116, - [SMALL_STATE(2156)] = 35186, - [SMALL_STATE(2157)] = 35259, - [SMALL_STATE(2158)] = 35330, - [SMALL_STATE(2159)] = 35401, - [SMALL_STATE(2160)] = 35472, - [SMALL_STATE(2161)] = 35543, - [SMALL_STATE(2162)] = 35614, - [SMALL_STATE(2163)] = 35685, - [SMALL_STATE(2164)] = 35756, - [SMALL_STATE(2165)] = 35827, - [SMALL_STATE(2166)] = 35898, - [SMALL_STATE(2167)] = 35969, - [SMALL_STATE(2168)] = 36042, - [SMALL_STATE(2169)] = 36115, - [SMALL_STATE(2170)] = 36186, - [SMALL_STATE(2171)] = 36257, - [SMALL_STATE(2172)] = 36330, - [SMALL_STATE(2173)] = 36403, - [SMALL_STATE(2174)] = 36532, - [SMALL_STATE(2175)] = 36603, - [SMALL_STATE(2176)] = 36674, - [SMALL_STATE(2177)] = 36745, - [SMALL_STATE(2178)] = 36816, - [SMALL_STATE(2179)] = 36885, - [SMALL_STATE(2180)] = 36956, - [SMALL_STATE(2181)] = 37029, - [SMALL_STATE(2182)] = 37158, - [SMALL_STATE(2183)] = 37231, - [SMALL_STATE(2184)] = 37304, - [SMALL_STATE(2185)] = 37375, - [SMALL_STATE(2186)] = 37446, - [SMALL_STATE(2187)] = 37517, - [SMALL_STATE(2188)] = 37588, - [SMALL_STATE(2189)] = 37657, - [SMALL_STATE(2190)] = 37756, - [SMALL_STATE(2191)] = 37827, - [SMALL_STATE(2192)] = 37898, - [SMALL_STATE(2193)] = 37969, - [SMALL_STATE(2194)] = 38040, - [SMALL_STATE(2195)] = 38111, - [SMALL_STATE(2196)] = 38182, - [SMALL_STATE(2197)] = 38253, - [SMALL_STATE(2198)] = 38324, - [SMALL_STATE(2199)] = 38395, - [SMALL_STATE(2200)] = 38466, - [SMALL_STATE(2201)] = 38537, - [SMALL_STATE(2202)] = 38608, - [SMALL_STATE(2203)] = 38679, - [SMALL_STATE(2204)] = 38750, - [SMALL_STATE(2205)] = 38821, - [SMALL_STATE(2206)] = 38894, - [SMALL_STATE(2207)] = 38967, - [SMALL_STATE(2208)] = 39040, - [SMALL_STATE(2209)] = 39169, - [SMALL_STATE(2210)] = 39240, - [SMALL_STATE(2211)] = 39311, - [SMALL_STATE(2212)] = 39384, - [SMALL_STATE(2213)] = 39455, - [SMALL_STATE(2214)] = 39524, - [SMALL_STATE(2215)] = 39595, - [SMALL_STATE(2216)] = 39666, - [SMALL_STATE(2217)] = 39737, - [SMALL_STATE(2218)] = 39808, - [SMALL_STATE(2219)] = 39879, - [SMALL_STATE(2220)] = 39950, - [SMALL_STATE(2221)] = 40021, - [SMALL_STATE(2222)] = 40092, - [SMALL_STATE(2223)] = 40163, - [SMALL_STATE(2224)] = 40234, - [SMALL_STATE(2225)] = 40305, - [SMALL_STATE(2226)] = 40376, - [SMALL_STATE(2227)] = 40445, - [SMALL_STATE(2228)] = 40516, - [SMALL_STATE(2229)] = 40615, - [SMALL_STATE(2230)] = 40686, - [SMALL_STATE(2231)] = 40759, - [SMALL_STATE(2232)] = 40836, - [SMALL_STATE(2233)] = 40907, - [SMALL_STATE(2234)] = 40978, - [SMALL_STATE(2235)] = 41049, - [SMALL_STATE(2236)] = 41120, - [SMALL_STATE(2237)] = 41249, - [SMALL_STATE(2238)] = 41320, - [SMALL_STATE(2239)] = 41391, - [SMALL_STATE(2240)] = 41490, - [SMALL_STATE(2241)] = 41563, - [SMALL_STATE(2242)] = 41634, - [SMALL_STATE(2243)] = 41705, - [SMALL_STATE(2244)] = 41782, - [SMALL_STATE(2245)] = 41853, - [SMALL_STATE(2246)] = 41924, - [SMALL_STATE(2247)] = 41995, - [SMALL_STATE(2248)] = 42066, - [SMALL_STATE(2249)] = 42137, - [SMALL_STATE(2250)] = 42208, - [SMALL_STATE(2251)] = 42281, - [SMALL_STATE(2252)] = 42352, - [SMALL_STATE(2253)] = 42423, - [SMALL_STATE(2254)] = 42494, - [SMALL_STATE(2255)] = 42565, - [SMALL_STATE(2256)] = 42636, - [SMALL_STATE(2257)] = 42707, - [SMALL_STATE(2258)] = 42778, - [SMALL_STATE(2259)] = 42849, - [SMALL_STATE(2260)] = 42922, - [SMALL_STATE(2261)] = 42995, - [SMALL_STATE(2262)] = 43066, - [SMALL_STATE(2263)] = 43137, - [SMALL_STATE(2264)] = 43214, - [SMALL_STATE(2265)] = 43285, - [SMALL_STATE(2266)] = 43356, - [SMALL_STATE(2267)] = 43427, - [SMALL_STATE(2268)] = 43500, - [SMALL_STATE(2269)] = 43571, - [SMALL_STATE(2270)] = 43642, - [SMALL_STATE(2271)] = 43713, - [SMALL_STATE(2272)] = 43786, - [SMALL_STATE(2273)] = 43873, - [SMALL_STATE(2274)] = 43944, - [SMALL_STATE(2275)] = 44015, - [SMALL_STATE(2276)] = 44088, - [SMALL_STATE(2277)] = 44159, - [SMALL_STATE(2278)] = 44232, - [SMALL_STATE(2279)] = 44303, - [SMALL_STATE(2280)] = 44374, - [SMALL_STATE(2281)] = 44445, - [SMALL_STATE(2282)] = 44518, - [SMALL_STATE(2283)] = 44589, - [SMALL_STATE(2284)] = 44660, - [SMALL_STATE(2285)] = 44733, - [SMALL_STATE(2286)] = 44802, - [SMALL_STATE(2287)] = 44873, - [SMALL_STATE(2288)] = 44944, - [SMALL_STATE(2289)] = 45015, - [SMALL_STATE(2290)] = 45086, - [SMALL_STATE(2291)] = 45157, - [SMALL_STATE(2292)] = 45228, - [SMALL_STATE(2293)] = 45299, - [SMALL_STATE(2294)] = 45372, - [SMALL_STATE(2295)] = 45443, - [SMALL_STATE(2296)] = 45514, - [SMALL_STATE(2297)] = 45585, - [SMALL_STATE(2298)] = 45656, - [SMALL_STATE(2299)] = 45727, - [SMALL_STATE(2300)] = 45798, - [SMALL_STATE(2301)] = 45869, - [SMALL_STATE(2302)] = 45942, - [SMALL_STATE(2303)] = 46013, - [SMALL_STATE(2304)] = 46084, - [SMALL_STATE(2305)] = 46155, - [SMALL_STATE(2306)] = 46226, - [SMALL_STATE(2307)] = 46325, - [SMALL_STATE(2308)] = 46398, - [SMALL_STATE(2309)] = 46469, - [SMALL_STATE(2310)] = 46540, - [SMALL_STATE(2311)] = 46611, - [SMALL_STATE(2312)] = 46684, - [SMALL_STATE(2313)] = 46755, - [SMALL_STATE(2314)] = 46851, - [SMALL_STATE(2315)] = 46947, - [SMALL_STATE(2316)] = 47031, - [SMALL_STATE(2317)] = 47105, - [SMALL_STATE(2318)] = 47203, - [SMALL_STATE(2319)] = 47299, - [SMALL_STATE(2320)] = 47399, - [SMALL_STATE(2321)] = 47471, - [SMALL_STATE(2322)] = 47573, - [SMALL_STATE(2323)] = 47663, - [SMALL_STATE(2324)] = 47733, - [SMALL_STATE(2325)] = 47829, - [SMALL_STATE(2326)] = 47905, - [SMALL_STATE(2327)] = 47987, - [SMALL_STATE(2328)] = 48075, - [SMALL_STATE(2329)] = 48167, - [SMALL_STATE(2330)] = 48261, - [SMALL_STATE(2331)] = 48357, - [SMALL_STATE(2332)] = 48425, - [SMALL_STATE(2333)] = 48497, - [SMALL_STATE(2334)] = 48565, - [SMALL_STATE(2335)] = 48649, - [SMALL_STATE(2336)] = 48731, - [SMALL_STATE(2337)] = 48807, - [SMALL_STATE(2338)] = 48891, - [SMALL_STATE(2339)] = 48977, - [SMALL_STATE(2340)] = 49049, - [SMALL_STATE(2341)] = 49145, - [SMALL_STATE(2342)] = 49243, - [SMALL_STATE(2343)] = 49343, - [SMALL_STATE(2344)] = 49431, - [SMALL_STATE(2345)] = 49511, - [SMALL_STATE(2346)] = 49601, - [SMALL_STATE(2347)] = 49693, - [SMALL_STATE(2348)] = 49787, - [SMALL_STATE(2349)] = 49869, - [SMALL_STATE(2350)] = 49953, - [SMALL_STATE(2351)] = 50029, - [SMALL_STATE(2352)] = 50107, - [SMALL_STATE(2353)] = 50193, - [SMALL_STATE(2354)] = 50265, - [SMALL_STATE(2355)] = 50353, - [SMALL_STATE(2356)] = 50425, - [SMALL_STATE(2357)] = 50499, - [SMALL_STATE(2358)] = 50595, - [SMALL_STATE(2359)] = 50693, - [SMALL_STATE(2360)] = 50791, - [SMALL_STATE(2361)] = 50891, - [SMALL_STATE(2362)] = 50991, - [SMALL_STATE(2363)] = 51093, - [SMALL_STATE(2364)] = 51163, - [SMALL_STATE(2365)] = 51251, - [SMALL_STATE(2366)] = 51341, - [SMALL_STATE(2367)] = 51421, - [SMALL_STATE(2368)] = 51503, - [SMALL_STATE(2369)] = 51593, - [SMALL_STATE(2370)] = 51685, - [SMALL_STATE(2371)] = 51777, - [SMALL_STATE(2372)] = 51871, - [SMALL_STATE(2373)] = 51965, - [SMALL_STATE(2374)] = 52061, - [SMALL_STATE(2375)] = 52143, - [SMALL_STATE(2376)] = 52219, - [SMALL_STATE(2377)] = 52305, - [SMALL_STATE(2378)] = 52377, - [SMALL_STATE(2379)] = 52473, - [SMALL_STATE(2380)] = 52571, - [SMALL_STATE(2381)] = 52671, - [SMALL_STATE(2382)] = 52759, - [SMALL_STATE(2383)] = 52839, - [SMALL_STATE(2384)] = 52929, - [SMALL_STATE(2385)] = 53021, - [SMALL_STATE(2386)] = 53093, - [SMALL_STATE(2387)] = 53165, - [SMALL_STATE(2388)] = 53259, - [SMALL_STATE(2389)] = 53341, - [SMALL_STATE(2390)] = 53425, - [SMALL_STATE(2391)] = 53501, - [SMALL_STATE(2392)] = 53577, - [SMALL_STATE(2393)] = 53655, - [SMALL_STATE(2394)] = 53741, - [SMALL_STATE(2395)] = 53829, - [SMALL_STATE(2396)] = 53901, - [SMALL_STATE(2397)] = 53975, - [SMALL_STATE(2398)] = 54071, - [SMALL_STATE(2399)] = 54145, - [SMALL_STATE(2400)] = 54243, - [SMALL_STATE(2401)] = 54341, - [SMALL_STATE(2402)] = 54441, - [SMALL_STATE(2403)] = 54541, - [SMALL_STATE(2404)] = 54643, - [SMALL_STATE(2405)] = 54723, - [SMALL_STATE(2406)] = 54797, - [SMALL_STATE(2407)] = 54881, - [SMALL_STATE(2408)] = 54951, - [SMALL_STATE(2409)] = 55045, - [SMALL_STATE(2410)] = 55141, - [SMALL_STATE(2411)] = 55239, - [SMALL_STATE(2412)] = 55325, - [SMALL_STATE(2413)] = 55403, - [SMALL_STATE(2414)] = 55491, - [SMALL_STATE(2415)] = 55581, - [SMALL_STATE(2416)] = 55673, - [SMALL_STATE(2417)] = 55761, - [SMALL_STATE(2418)] = 55851, - [SMALL_STATE(2419)] = 55931, - [SMALL_STATE(2420)] = 56013, - [SMALL_STATE(2421)] = 56089, - [SMALL_STATE(2422)] = 56179, - [SMALL_STATE(2423)] = 56271, - [SMALL_STATE(2424)] = 56367, - [SMALL_STATE(2425)] = 56459, - [SMALL_STATE(2426)] = 56553, - [SMALL_STATE(2427)] = 56647, - [SMALL_STATE(2428)] = 56743, - [SMALL_STATE(2429)] = 56827, - [SMALL_STATE(2430)] = 56905, - [SMALL_STATE(2431)] = 56975, - [SMALL_STATE(2432)] = 57063, - [SMALL_STATE(2433)] = 57137, - [SMALL_STATE(2434)] = 57235, - [SMALL_STATE(2435)] = 57335, - [SMALL_STATE(2436)] = 57431, - [SMALL_STATE(2437)] = 57533, - [SMALL_STATE(2438)] = 57623, - [SMALL_STATE(2439)] = 57691, - [SMALL_STATE(2440)] = 57775, - [SMALL_STATE(2441)] = 57853, - [SMALL_STATE(2442)] = 57935, - [SMALL_STATE(2443)] = 58009, - [SMALL_STATE(2444)] = 58079, - [SMALL_STATE(2445)] = 58175, - [SMALL_STATE(2446)] = 58267, - [SMALL_STATE(2447)] = 58355, - [SMALL_STATE(2448)] = 58451, - [SMALL_STATE(2449)] = 58547, - [SMALL_STATE(2450)] = 58643, - [SMALL_STATE(2451)] = 58739, - [SMALL_STATE(2452)] = 58833, - [SMALL_STATE(2453)] = 58900, - [SMALL_STATE(2454)] = 58967, - [SMALL_STATE(2455)] = 59034, - [SMALL_STATE(2456)] = 59115, - [SMALL_STATE(2457)] = 59186, - [SMALL_STATE(2458)] = 59271, - [SMALL_STATE(2459)] = 59338, - [SMALL_STATE(2460)] = 59405, - [SMALL_STATE(2461)] = 59472, - [SMALL_STATE(2462)] = 59539, - [SMALL_STATE(2463)] = 59606, - [SMALL_STATE(2464)] = 59673, - [SMALL_STATE(2465)] = 59740, - [SMALL_STATE(2466)] = 59825, - [SMALL_STATE(2467)] = 59892, - [SMALL_STATE(2468)] = 59961, - [SMALL_STATE(2469)] = 60028, - [SMALL_STATE(2470)] = 60097, - [SMALL_STATE(2471)] = 60164, - [SMALL_STATE(2472)] = 60245, - [SMALL_STATE(2473)] = 60322, - [SMALL_STATE(2474)] = 60389, - [SMALL_STATE(2475)] = 60456, - [SMALL_STATE(2476)] = 60523, - [SMALL_STATE(2477)] = 60610, - [SMALL_STATE(2478)] = 60677, - [SMALL_STATE(2479)] = 60744, - [SMALL_STATE(2480)] = 60811, - [SMALL_STATE(2481)] = 60878, - [SMALL_STATE(2482)] = 60945, - [SMALL_STATE(2483)] = 61034, - [SMALL_STATE(2484)] = 61101, - [SMALL_STATE(2485)] = 61168, - [SMALL_STATE(2486)] = 61235, - [SMALL_STATE(2487)] = 61302, - [SMALL_STATE(2488)] = 61369, - [SMALL_STATE(2489)] = 61436, - [SMALL_STATE(2490)] = 61503, - [SMALL_STATE(2491)] = 61570, - [SMALL_STATE(2492)] = 61651, - [SMALL_STATE(2493)] = 61722, - [SMALL_STATE(2494)] = 61789, - [SMALL_STATE(2495)] = 61880, - [SMALL_STATE(2496)] = 61947, - [SMALL_STATE(2497)] = 62014, - [SMALL_STATE(2498)] = 62081, - [SMALL_STATE(2499)] = 62148, - [SMALL_STATE(2500)] = 62215, - [SMALL_STATE(2501)] = 62282, - [SMALL_STATE(2502)] = 62349, - [SMALL_STATE(2503)] = 62416, - [SMALL_STATE(2504)] = 62483, - [SMALL_STATE(2505)] = 62550, - [SMALL_STATE(2506)] = 62617, - [SMALL_STATE(2507)] = 62696, - [SMALL_STATE(2508)] = 62763, - [SMALL_STATE(2509)] = 62830, - [SMALL_STATE(2510)] = 62897, - [SMALL_STATE(2511)] = 62964, - [SMALL_STATE(2512)] = 63031, - [SMALL_STATE(2513)] = 63098, - [SMALL_STATE(2514)] = 63171, - [SMALL_STATE(2515)] = 63240, - [SMALL_STATE(2516)] = 63307, - [SMALL_STATE(2517)] = 63374, - [SMALL_STATE(2518)] = 63441, - [SMALL_STATE(2519)] = 63524, - [SMALL_STATE(2520)] = 63605, - [SMALL_STATE(2521)] = 63672, - [SMALL_STATE(2522)] = 63739, - [SMALL_STATE(2523)] = 63806, - [SMALL_STATE(2524)] = 63891, - [SMALL_STATE(2525)] = 63958, - [SMALL_STATE(2526)] = 64025, - [SMALL_STATE(2527)] = 64094, - [SMALL_STATE(2528)] = 64161, - [SMALL_STATE(2529)] = 64228, - [SMALL_STATE(2530)] = 64295, - [SMALL_STATE(2531)] = 64362, - [SMALL_STATE(2532)] = 64431, - [SMALL_STATE(2533)] = 64498, - [SMALL_STATE(2534)] = 64565, - [SMALL_STATE(2535)] = 64632, - [SMALL_STATE(2536)] = 64717, - [SMALL_STATE(2537)] = 64784, - [SMALL_STATE(2538)] = 64851, - [SMALL_STATE(2539)] = 64918, - [SMALL_STATE(2540)] = 64999, - [SMALL_STATE(2541)] = 65066, - [SMALL_STATE(2542)] = 65133, - [SMALL_STATE(2543)] = 65200, - [SMALL_STATE(2544)] = 65293, - [SMALL_STATE(2545)] = 65360, - [SMALL_STATE(2546)] = 65427, - [SMALL_STATE(2547)] = 65522, - [SMALL_STATE(2548)] = 65589, - [SMALL_STATE(2549)] = 65656, - [SMALL_STATE(2550)] = 65723, - [SMALL_STATE(2551)] = 65820, - [SMALL_STATE(2552)] = 65887, - [SMALL_STATE(2553)] = 65954, - [SMALL_STATE(2554)] = 66021, - [SMALL_STATE(2555)] = 66088, - [SMALL_STATE(2556)] = 66155, - [SMALL_STATE(2557)] = 66222, - [SMALL_STATE(2558)] = 66289, - [SMALL_STATE(2559)] = 66358, - [SMALL_STATE(2560)] = 66427, - [SMALL_STATE(2561)] = 66500, - [SMALL_STATE(2562)] = 66567, - [SMALL_STATE(2563)] = 66634, - [SMALL_STATE(2564)] = 66700, - [SMALL_STATE(2565)] = 66782, - [SMALL_STATE(2566)] = 66864, - [SMALL_STATE(2567)] = 66946, - [SMALL_STATE(2568)] = 67020, - [SMALL_STATE(2569)] = 67110, - [SMALL_STATE(2570)] = 67176, - [SMALL_STATE(2571)] = 67242, - [SMALL_STATE(2572)] = 67310, - [SMALL_STATE(2573)] = 67378, - [SMALL_STATE(2574)] = 67444, - [SMALL_STATE(2575)] = 67520, - [SMALL_STATE(2576)] = 67586, - [SMALL_STATE(2577)] = 67656, - [SMALL_STATE(2578)] = 67726, - [SMALL_STATE(2579)] = 67792, - [SMALL_STATE(2580)] = 67882, - [SMALL_STATE(2581)] = 67972, - [SMALL_STATE(2582)] = 68038, - [SMALL_STATE(2583)] = 68126, - [SMALL_STATE(2584)] = 68216, - [SMALL_STATE(2585)] = 68282, - [SMALL_STATE(2586)] = 68372, - [SMALL_STATE(2587)] = 68462, - [SMALL_STATE(2588)] = 68552, - [SMALL_STATE(2589)] = 68618, - [SMALL_STATE(2590)] = 68708, - [SMALL_STATE(2591)] = 68798, - [SMALL_STATE(2592)] = 68872, - [SMALL_STATE(2593)] = 68962, - [SMALL_STATE(2594)] = 69028, - [SMALL_STATE(2595)] = 69110, - [SMALL_STATE(2596)] = 69200, - [SMALL_STATE(2597)] = 69266, - [SMALL_STATE(2598)] = 69332, - [SMALL_STATE(2599)] = 69402, - [SMALL_STATE(2600)] = 69468, - [SMALL_STATE(2601)] = 69534, - [SMALL_STATE(2602)] = 69604, - [SMALL_STATE(2603)] = 69670, - [SMALL_STATE(2604)] = 69744, - [SMALL_STATE(2605)] = 69834, - [SMALL_STATE(2606)] = 69921, - [SMALL_STATE(2607)] = 69988, - [SMALL_STATE(2608)] = 70075, - [SMALL_STATE(2609)] = 70140, - [SMALL_STATE(2610)] = 70205, - [SMALL_STATE(2611)] = 70292, - [SMALL_STATE(2612)] = 70379, - [SMALL_STATE(2613)] = 70444, - [SMALL_STATE(2614)] = 70509, - [SMALL_STATE(2615)] = 70574, - [SMALL_STATE(2616)] = 70639, - [SMALL_STATE(2617)] = 70704, - [SMALL_STATE(2618)] = 70771, - [SMALL_STATE(2619)] = 70838, - [SMALL_STATE(2620)] = 70903, - [SMALL_STATE(2621)] = 70968, - [SMALL_STATE(2622)] = 71033, - [SMALL_STATE(2623)] = 71098, - [SMALL_STATE(2624)] = 71185, - [SMALL_STATE(2625)] = 71250, - [SMALL_STATE(2626)] = 71337, - [SMALL_STATE(2627)] = 71402, - [SMALL_STATE(2628)] = 71467, - [SMALL_STATE(2629)] = 71532, - [SMALL_STATE(2630)] = 71619, - [SMALL_STATE(2631)] = 71684, - [SMALL_STATE(2632)] = 71749, - [SMALL_STATE(2633)] = 71814, - [SMALL_STATE(2634)] = 71879, - [SMALL_STATE(2635)] = 71944, - [SMALL_STATE(2636)] = 72009, - [SMALL_STATE(2637)] = 72074, - [SMALL_STATE(2638)] = 72161, - [SMALL_STATE(2639)] = 72248, - [SMALL_STATE(2640)] = 72335, - [SMALL_STATE(2641)] = 72422, - [SMALL_STATE(2642)] = 72487, - [SMALL_STATE(2643)] = 72574, - [SMALL_STATE(2644)] = 72661, - [SMALL_STATE(2645)] = 72734, - [SMALL_STATE(2646)] = 72807, - [SMALL_STATE(2647)] = 72894, - [SMALL_STATE(2648)] = 72967, - [SMALL_STATE(2649)] = 73054, - [SMALL_STATE(2650)] = 73141, - [SMALL_STATE(2651)] = 73228, - [SMALL_STATE(2652)] = 73315, - [SMALL_STATE(2653)] = 73402, - [SMALL_STATE(2654)] = 73473, - [SMALL_STATE(2655)] = 73560, - [SMALL_STATE(2656)] = 73647, - [SMALL_STATE(2657)] = 73734, - [SMALL_STATE(2658)] = 73803, - [SMALL_STATE(2659)] = 73890, - [SMALL_STATE(2660)] = 73955, - [SMALL_STATE(2661)] = 74042, - [SMALL_STATE(2662)] = 74129, - [SMALL_STATE(2663)] = 74216, - [SMALL_STATE(2664)] = 74303, - [SMALL_STATE(2665)] = 74390, - [SMALL_STATE(2666)] = 74455, - [SMALL_STATE(2667)] = 74522, - [SMALL_STATE(2668)] = 74609, - [SMALL_STATE(2669)] = 74696, - [SMALL_STATE(2670)] = 74783, - [SMALL_STATE(2671)] = 74855, - [SMALL_STATE(2672)] = 74919, - [SMALL_STATE(2673)] = 74983, - [SMALL_STATE(2674)] = 75055, - [SMALL_STATE(2675)] = 75127, - [SMALL_STATE(2676)] = 75195, - [SMALL_STATE(2677)] = 75259, - [SMALL_STATE(2678)] = 75323, - [SMALL_STATE(2679)] = 75395, - [SMALL_STATE(2680)] = 75467, - [SMALL_STATE(2681)] = 75539, - [SMALL_STATE(2682)] = 75611, - [SMALL_STATE(2683)] = 75683, - [SMALL_STATE(2684)] = 75755, - [SMALL_STATE(2685)] = 75827, - [SMALL_STATE(2686)] = 75899, - [SMALL_STATE(2687)] = 75971, - [SMALL_STATE(2688)] = 76043, - [SMALL_STATE(2689)] = 76115, - [SMALL_STATE(2690)] = 76187, - [SMALL_STATE(2691)] = 76259, - [SMALL_STATE(2692)] = 76331, - [SMALL_STATE(2693)] = 76403, - [SMALL_STATE(2694)] = 76475, - [SMALL_STATE(2695)] = 76539, - [SMALL_STATE(2696)] = 76603, - [SMALL_STATE(2697)] = 76673, - [SMALL_STATE(2698)] = 76737, - [SMALL_STATE(2699)] = 76801, - [SMALL_STATE(2700)] = 76865, - [SMALL_STATE(2701)] = 76929, - [SMALL_STATE(2702)] = 76993, - [SMALL_STATE(2703)] = 77067, - [SMALL_STATE(2704)] = 77189, - [SMALL_STATE(2705)] = 77253, - [SMALL_STATE(2706)] = 77317, - [SMALL_STATE(2707)] = 77381, - [SMALL_STATE(2708)] = 77453, - [SMALL_STATE(2709)] = 77517, - [SMALL_STATE(2710)] = 77587, - [SMALL_STATE(2711)] = 77651, - [SMALL_STATE(2712)] = 77719, - [SMALL_STATE(2713)] = 77787, - [SMALL_STATE(2714)] = 77857, - [SMALL_STATE(2715)] = 77929, - [SMALL_STATE(2716)] = 77993, - [SMALL_STATE(2717)] = 78115, - [SMALL_STATE(2718)] = 78233, - [SMALL_STATE(2719)] = 78299, - [SMALL_STATE(2720)] = 78369, - [SMALL_STATE(2721)] = 78439, - [SMALL_STATE(2722)] = 78511, - [SMALL_STATE(2723)] = 78575, - [SMALL_STATE(2724)] = 78639, - [SMALL_STATE(2725)] = 78703, - [SMALL_STATE(2726)] = 78771, - [SMALL_STATE(2727)] = 78837, - [SMALL_STATE(2728)] = 78903, - [SMALL_STATE(2729)] = 78967, - [SMALL_STATE(2730)] = 79031, - [SMALL_STATE(2731)] = 79095, - [SMALL_STATE(2732)] = 79163, - [SMALL_STATE(2733)] = 79279, - [SMALL_STATE(2734)] = 79351, - [SMALL_STATE(2735)] = 79419, - [SMALL_STATE(2736)] = 79535, - [SMALL_STATE(2737)] = 79653, - [SMALL_STATE(2738)] = 79717, - [SMALL_STATE(2739)] = 79781, - [SMALL_STATE(2740)] = 79845, - [SMALL_STATE(2741)] = 79909, - [SMALL_STATE(2742)] = 79973, - [SMALL_STATE(2743)] = 80045, - [SMALL_STATE(2744)] = 80117, - [SMALL_STATE(2745)] = 80181, - [SMALL_STATE(2746)] = 80245, - [SMALL_STATE(2747)] = 80309, - [SMALL_STATE(2748)] = 80373, - [SMALL_STATE(2749)] = 80449, - [SMALL_STATE(2750)] = 80513, - [SMALL_STATE(2751)] = 80577, - [SMALL_STATE(2752)] = 80640, - [SMALL_STATE(2753)] = 80755, - [SMALL_STATE(2754)] = 80818, - [SMALL_STATE(2755)] = 80931, - [SMALL_STATE(2756)] = 81006, - [SMALL_STATE(2757)] = 81071, - [SMALL_STATE(2758)] = 81142, - [SMALL_STATE(2759)] = 81207, - [SMALL_STATE(2760)] = 81278, - [SMALL_STATE(2761)] = 81349, - [SMALL_STATE(2762)] = 81412, - [SMALL_STATE(2763)] = 81483, - [SMALL_STATE(2764)] = 81546, - [SMALL_STATE(2765)] = 81617, - [SMALL_STATE(2766)] = 81688, - [SMALL_STATE(2767)] = 81751, - [SMALL_STATE(2768)] = 81822, - [SMALL_STATE(2769)] = 81893, - [SMALL_STATE(2770)] = 81956, - [SMALL_STATE(2771)] = 82023, - [SMALL_STATE(2772)] = 82090, - [SMALL_STATE(2773)] = 82161, - [SMALL_STATE(2774)] = 82232, - [SMALL_STATE(2775)] = 82303, - [SMALL_STATE(2776)] = 82370, - [SMALL_STATE(2777)] = 82441, - [SMALL_STATE(2778)] = 82512, - [SMALL_STATE(2779)] = 82583, - [SMALL_STATE(2780)] = 82654, - [SMALL_STATE(2781)] = 82725, - [SMALL_STATE(2782)] = 82796, - [SMALL_STATE(2783)] = 82865, - [SMALL_STATE(2784)] = 82932, - [SMALL_STATE(2785)] = 83013, - [SMALL_STATE(2786)] = 83078, - [SMALL_STATE(2787)] = 83151, - [SMALL_STATE(2788)] = 83216, - [SMALL_STATE(2789)] = 83281, - [SMALL_STATE(2790)] = 83348, - [SMALL_STATE(2791)] = 83461, - [SMALL_STATE(2792)] = 83528, - [SMALL_STATE(2793)] = 83643, - [SMALL_STATE(2794)] = 83706, - [SMALL_STATE(2795)] = 83769, - [SMALL_STATE(2796)] = 83882, - [SMALL_STATE(2797)] = 83947, - [SMALL_STATE(2798)] = 84012, - [SMALL_STATE(2799)] = 84079, - [SMALL_STATE(2800)] = 84192, - [SMALL_STATE(2801)] = 84263, - [SMALL_STATE(2802)] = 84334, - [SMALL_STATE(2803)] = 84400, - [SMALL_STATE(2804)] = 84470, - [SMALL_STATE(2805)] = 84538, - [SMALL_STATE(2806)] = 84606, - [SMALL_STATE(2807)] = 84674, - [SMALL_STATE(2808)] = 84736, - [SMALL_STATE(2809)] = 84806, - [SMALL_STATE(2810)] = 84874, - [SMALL_STATE(2811)] = 84944, - [SMALL_STATE(2812)] = 85014, - [SMALL_STATE(2813)] = 85076, - [SMALL_STATE(2814)] = 85146, - [SMALL_STATE(2815)] = 85212, - [SMALL_STATE(2816)] = 85282, - [SMALL_STATE(2817)] = 85352, - [SMALL_STATE(2818)] = 85422, - [SMALL_STATE(2819)] = 85492, - [SMALL_STATE(2820)] = 85562, - [SMALL_STATE(2821)] = 85624, - [SMALL_STATE(2822)] = 85694, - [SMALL_STATE(2823)] = 85756, - [SMALL_STATE(2824)] = 85820, - [SMALL_STATE(2825)] = 85882, - [SMALL_STATE(2826)] = 85960, - [SMALL_STATE(2827)] = 86022, - [SMALL_STATE(2828)] = 86090, - [SMALL_STATE(2829)] = 86154, - [SMALL_STATE(2830)] = 86224, - [SMALL_STATE(2831)] = 86294, - [SMALL_STATE(2832)] = 86358, - [SMALL_STATE(2833)] = 86420, - [SMALL_STATE(2834)] = 86482, - [SMALL_STATE(2835)] = 86546, - [SMALL_STATE(2836)] = 86608, - [SMALL_STATE(2837)] = 86670, - [SMALL_STATE(2838)] = 86734, - [SMALL_STATE(2839)] = 86804, - [SMALL_STATE(2840)] = 86870, - [SMALL_STATE(2841)] = 86934, - [SMALL_STATE(2842)] = 86996, - [SMALL_STATE(2843)] = 87066, - [SMALL_STATE(2844)] = 87128, - [SMALL_STATE(2845)] = 87192, - [SMALL_STATE(2846)] = 87262, - [SMALL_STATE(2847)] = 87330, - [SMALL_STATE(2848)] = 87394, - [SMALL_STATE(2849)] = 87456, - [SMALL_STATE(2850)] = 87526, - [SMALL_STATE(2851)] = 87590, - [SMALL_STATE(2852)] = 87656, - [SMALL_STATE(2853)] = 87726, - [SMALL_STATE(2854)] = 87796, - [SMALL_STATE(2855)] = 87858, - [SMALL_STATE(2856)] = 87920, - [SMALL_STATE(2857)] = 87982, - [SMALL_STATE(2858)] = 88050, - [SMALL_STATE(2859)] = 88118, - [SMALL_STATE(2860)] = 88188, - [SMALL_STATE(2861)] = 88268, - [SMALL_STATE(2862)] = 88332, - [SMALL_STATE(2863)] = 88394, - [SMALL_STATE(2864)] = 88456, - [SMALL_STATE(2865)] = 88522, - [SMALL_STATE(2866)] = 88588, - [SMALL_STATE(2867)] = 88666, - [SMALL_STATE(2868)] = 88732, - [SMALL_STATE(2869)] = 88794, - [SMALL_STATE(2870)] = 88856, - [SMALL_STATE(2871)] = 88926, - [SMALL_STATE(2872)] = 88988, - [SMALL_STATE(2873)] = 89052, - [SMALL_STATE(2874)] = 89122, - [SMALL_STATE(2875)] = 89190, - [SMALL_STATE(2876)] = 89260, - [SMALL_STATE(2877)] = 89328, - [SMALL_STATE(2878)] = 89396, - [SMALL_STATE(2879)] = 89461, - [SMALL_STATE(2880)] = 89522, - [SMALL_STATE(2881)] = 89583, - [SMALL_STATE(2882)] = 89644, - [SMALL_STATE(2883)] = 89709, - [SMALL_STATE(2884)] = 89774, - [SMALL_STATE(2885)] = 89839, - [SMALL_STATE(2886)] = 89904, - [SMALL_STATE(2887)] = 89967, - [SMALL_STATE(2888)] = 90030, - [SMALL_STATE(2889)] = 90095, - [SMALL_STATE(2890)] = 90160, - [SMALL_STATE(2891)] = 90225, - [SMALL_STATE(2892)] = 90286, - [SMALL_STATE(2893)] = 90347, - [SMALL_STATE(2894)] = 90412, - [SMALL_STATE(2895)] = 90477, - [SMALL_STATE(2896)] = 90542, - [SMALL_STATE(2897)] = 90607, - [SMALL_STATE(2898)] = 90670, - [SMALL_STATE(2899)] = 90731, - [SMALL_STATE(2900)] = 90792, - [SMALL_STATE(2901)] = 90853, - [SMALL_STATE(2902)] = 90916, - [SMALL_STATE(2903)] = 90985, - [SMALL_STATE(2904)] = 91050, - [SMALL_STATE(2905)] = 91113, - [SMALL_STATE(2906)] = 91176, - [SMALL_STATE(2907)] = 91239, - [SMALL_STATE(2908)] = 91300, - [SMALL_STATE(2909)] = 91361, - [SMALL_STATE(2910)] = 91422, - [SMALL_STATE(2911)] = 91487, - [SMALL_STATE(2912)] = 91552, - [SMALL_STATE(2913)] = 91617, - [SMALL_STATE(2914)] = 91682, - [SMALL_STATE(2915)] = 91749, - [SMALL_STATE(2916)] = 91810, - [SMALL_STATE(2917)] = 91887, - [SMALL_STATE(2918)] = 91952, - [SMALL_STATE(2919)] = 92013, - [SMALL_STATE(2920)] = 92084, - [SMALL_STATE(2921)] = 92145, - [SMALL_STATE(2922)] = 92206, - [SMALL_STATE(2923)] = 92267, - [SMALL_STATE(2924)] = 92330, - [SMALL_STATE(2925)] = 92391, - [SMALL_STATE(2926)] = 92454, - [SMALL_STATE(2927)] = 92515, - [SMALL_STATE(2928)] = 92576, - [SMALL_STATE(2929)] = 92637, - [SMALL_STATE(2930)] = 92698, - [SMALL_STATE(2931)] = 92759, - [SMALL_STATE(2932)] = 92822, - [SMALL_STATE(2933)] = 92883, - [SMALL_STATE(2934)] = 92944, - [SMALL_STATE(2935)] = 93009, - [SMALL_STATE(2936)] = 93074, - [SMALL_STATE(2937)] = 93135, - [SMALL_STATE(2938)] = 93212, - [SMALL_STATE(2939)] = 93277, - [SMALL_STATE(2940)] = 93342, - [SMALL_STATE(2941)] = 93407, - [SMALL_STATE(2942)] = 93468, - [SMALL_STATE(2943)] = 93529, - [SMALL_STATE(2944)] = 93590, - [SMALL_STATE(2945)] = 93651, - [SMALL_STATE(2946)] = 93716, - [SMALL_STATE(2947)] = 93778, - [SMALL_STATE(2948)] = 93844, - [SMALL_STATE(2949)] = 93906, - [SMALL_STATE(2950)] = 93968, - [SMALL_STATE(2951)] = 94028, - [SMALL_STATE(2952)] = 94092, - [SMALL_STATE(2953)] = 94152, - [SMALL_STATE(2954)] = 94212, - [SMALL_STATE(2955)] = 94272, - [SMALL_STATE(2956)] = 94338, - [SMALL_STATE(2957)] = 94398, - [SMALL_STATE(2958)] = 94458, - [SMALL_STATE(2959)] = 94518, - [SMALL_STATE(2960)] = 94578, - [SMALL_STATE(2961)] = 94644, - [SMALL_STATE(2962)] = 94704, - [SMALL_STATE(2963)] = 94764, - [SMALL_STATE(2964)] = 94828, - [SMALL_STATE(2965)] = 94890, - [SMALL_STATE(2966)] = 94952, - [SMALL_STATE(2967)] = 95016, - [SMALL_STATE(2968)] = 95080, - [SMALL_STATE(2969)] = 95142, - [SMALL_STATE(2970)] = 95204, - [SMALL_STATE(2971)] = 95264, - [SMALL_STATE(2972)] = 95324, - [SMALL_STATE(2973)] = 95388, - [SMALL_STATE(2974)] = 95448, - [SMALL_STATE(2975)] = 95508, - [SMALL_STATE(2976)] = 95568, - [SMALL_STATE(2977)] = 95628, - [SMALL_STATE(2978)] = 95688, - [SMALL_STATE(2979)] = 95748, - [SMALL_STATE(2980)] = 95808, - [SMALL_STATE(2981)] = 95868, - [SMALL_STATE(2982)] = 95928, - [SMALL_STATE(2983)] = 95988, - [SMALL_STATE(2984)] = 96048, - [SMALL_STATE(2985)] = 96108, - [SMALL_STATE(2986)] = 96168, - [SMALL_STATE(2987)] = 96228, - [SMALL_STATE(2988)] = 96288, - [SMALL_STATE(2989)] = 96348, - [SMALL_STATE(2990)] = 96408, - [SMALL_STATE(2991)] = 96468, - [SMALL_STATE(2992)] = 96528, - [SMALL_STATE(2993)] = 96588, - [SMALL_STATE(2994)] = 96654, - [SMALL_STATE(2995)] = 96720, - [SMALL_STATE(2996)] = 96782, - [SMALL_STATE(2997)] = 96848, - [SMALL_STATE(2998)] = 96908, - [SMALL_STATE(2999)] = 96968, - [SMALL_STATE(3000)] = 97028, - [SMALL_STATE(3001)] = 97088, - [SMALL_STATE(3002)] = 97154, - [SMALL_STATE(3003)] = 97220, - [SMALL_STATE(3004)] = 97280, - [SMALL_STATE(3005)] = 97346, - [SMALL_STATE(3006)] = 97412, - [SMALL_STATE(3007)] = 97478, - [SMALL_STATE(3008)] = 97544, - [SMALL_STATE(3009)] = 97604, - [SMALL_STATE(3010)] = 97664, - [SMALL_STATE(3011)] = 97726, - [SMALL_STATE(3012)] = 97786, - [SMALL_STATE(3013)] = 97846, - [SMALL_STATE(3014)] = 97906, - [SMALL_STATE(3015)] = 97966, - [SMALL_STATE(3016)] = 98026, - [SMALL_STATE(3017)] = 98088, - [SMALL_STATE(3018)] = 98148, - [SMALL_STATE(3019)] = 98208, - [SMALL_STATE(3020)] = 98268, - [SMALL_STATE(3021)] = 98328, - [SMALL_STATE(3022)] = 98388, - [SMALL_STATE(3023)] = 98450, - [SMALL_STATE(3024)] = 98512, - [SMALL_STATE(3025)] = 98572, - [SMALL_STATE(3026)] = 98632, - [SMALL_STATE(3027)] = 98692, - [SMALL_STATE(3028)] = 98752, - [SMALL_STATE(3029)] = 98812, - [SMALL_STATE(3030)] = 98872, - [SMALL_STATE(3031)] = 98932, - [SMALL_STATE(3032)] = 98992, - [SMALL_STATE(3033)] = 99054, - [SMALL_STATE(3034)] = 99128, - [SMALL_STATE(3035)] = 99188, - [SMALL_STATE(3036)] = 99248, - [SMALL_STATE(3037)] = 99308, - [SMALL_STATE(3038)] = 99370, - [SMALL_STATE(3039)] = 99429, - [SMALL_STATE(3040)] = 99488, - [SMALL_STATE(3041)] = 99547, - [SMALL_STATE(3042)] = 99606, - [SMALL_STATE(3043)] = 99665, - [SMALL_STATE(3044)] = 99724, - [SMALL_STATE(3045)] = 99783, - [SMALL_STATE(3046)] = 99842, - [SMALL_STATE(3047)] = 99903, - [SMALL_STATE(3048)] = 99962, - [SMALL_STATE(3049)] = 100023, - [SMALL_STATE(3050)] = 100084, - [SMALL_STATE(3051)] = 100153, - [SMALL_STATE(3052)] = 100214, - [SMALL_STATE(3053)] = 100273, - [SMALL_STATE(3054)] = 100332, - [SMALL_STATE(3055)] = 100391, - [SMALL_STATE(3056)] = 100452, - [SMALL_STATE(3057)] = 100511, - [SMALL_STATE(3058)] = 100572, - [SMALL_STATE(3059)] = 100631, - [SMALL_STATE(3060)] = 100692, - [SMALL_STATE(3061)] = 100753, - [SMALL_STATE(3062)] = 100814, - [SMALL_STATE(3063)] = 100873, - [SMALL_STATE(3064)] = 100932, - [SMALL_STATE(3065)] = 100991, - [SMALL_STATE(3066)] = 101050, - [SMALL_STATE(3067)] = 101109, - [SMALL_STATE(3068)] = 101168, - [SMALL_STATE(3069)] = 101231, - [SMALL_STATE(3070)] = 101290, - [SMALL_STATE(3071)] = 101349, - [SMALL_STATE(3072)] = 101408, - [SMALL_STATE(3073)] = 101467, - [SMALL_STATE(3074)] = 101528, - [SMALL_STATE(3075)] = 101587, - [SMALL_STATE(3076)] = 101648, - [SMALL_STATE(3077)] = 101709, - [SMALL_STATE(3078)] = 101782, - [SMALL_STATE(3079)] = 101845, - [SMALL_STATE(3080)] = 101904, - [SMALL_STATE(3081)] = 101963, - [SMALL_STATE(3082)] = 102022, - [SMALL_STATE(3083)] = 102081, - [SMALL_STATE(3084)] = 102140, - [SMALL_STATE(3085)] = 102199, - [SMALL_STATE(3086)] = 102258, - [SMALL_STATE(3087)] = 102317, - [SMALL_STATE(3088)] = 102376, - [SMALL_STATE(3089)] = 102437, - [SMALL_STATE(3090)] = 102496, - [SMALL_STATE(3091)] = 102555, - [SMALL_STATE(3092)] = 102614, - [SMALL_STATE(3093)] = 102673, - [SMALL_STATE(3094)] = 102732, - [SMALL_STATE(3095)] = 102791, - [SMALL_STATE(3096)] = 102852, - [SMALL_STATE(3097)] = 102911, - [SMALL_STATE(3098)] = 102970, - [SMALL_STATE(3099)] = 103029, - [SMALL_STATE(3100)] = 103088, - [SMALL_STATE(3101)] = 103147, - [SMALL_STATE(3102)] = 103206, - [SMALL_STATE(3103)] = 103265, - [SMALL_STATE(3104)] = 103328, - [SMALL_STATE(3105)] = 103391, - [SMALL_STATE(3106)] = 103452, - [SMALL_STATE(3107)] = 103515, - [SMALL_STATE(3108)] = 103574, - [SMALL_STATE(3109)] = 103633, - [SMALL_STATE(3110)] = 103692, - [SMALL_STATE(3111)] = 103751, - [SMALL_STATE(3112)] = 103814, - [SMALL_STATE(3113)] = 103873, - [SMALL_STATE(3114)] = 103932, - [SMALL_STATE(3115)] = 103991, - [SMALL_STATE(3116)] = 104050, - [SMALL_STATE(3117)] = 104109, - [SMALL_STATE(3118)] = 104168, - [SMALL_STATE(3119)] = 104227, - [SMALL_STATE(3120)] = 104286, - [SMALL_STATE(3121)] = 104345, - [SMALL_STATE(3122)] = 104404, - [SMALL_STATE(3123)] = 104463, - [SMALL_STATE(3124)] = 104522, - [SMALL_STATE(3125)] = 104581, - [SMALL_STATE(3126)] = 104640, - [SMALL_STATE(3127)] = 104699, - [SMALL_STATE(3128)] = 104760, - [SMALL_STATE(3129)] = 104819, - [SMALL_STATE(3130)] = 104877, - [SMALL_STATE(3131)] = 104935, - [SMALL_STATE(3132)] = 104993, - [SMALL_STATE(3133)] = 105051, - [SMALL_STATE(3134)] = 105109, - [SMALL_STATE(3135)] = 105171, - [SMALL_STATE(3136)] = 105229, - [SMALL_STATE(3137)] = 105287, - [SMALL_STATE(3138)] = 105345, - [SMALL_STATE(3139)] = 105403, - [SMALL_STATE(3140)] = 105461, - [SMALL_STATE(3141)] = 105519, - [SMALL_STATE(3142)] = 105577, - [SMALL_STATE(3143)] = 105635, - [SMALL_STATE(3144)] = 105693, - [SMALL_STATE(3145)] = 105751, - [SMALL_STATE(3146)] = 105809, - [SMALL_STATE(3147)] = 105867, - [SMALL_STATE(3148)] = 105925, - [SMALL_STATE(3149)] = 105983, - [SMALL_STATE(3150)] = 106041, - [SMALL_STATE(3151)] = 106099, - [SMALL_STATE(3152)] = 106157, - [SMALL_STATE(3153)] = 106215, - [SMALL_STATE(3154)] = 106273, - [SMALL_STATE(3155)] = 106339, - [SMALL_STATE(3156)] = 106397, - [SMALL_STATE(3157)] = 106455, - [SMALL_STATE(3158)] = 106513, - [SMALL_STATE(3159)] = 106571, - [SMALL_STATE(3160)] = 106629, - [SMALL_STATE(3161)] = 106687, - [SMALL_STATE(3162)] = 106745, - [SMALL_STATE(3163)] = 106805, - [SMALL_STATE(3164)] = 106863, - [SMALL_STATE(3165)] = 106921, - [SMALL_STATE(3166)] = 106979, - [SMALL_STATE(3167)] = 107037, - [SMALL_STATE(3168)] = 107095, - [SMALL_STATE(3169)] = 107153, - [SMALL_STATE(3170)] = 107211, - [SMALL_STATE(3171)] = 107271, - [SMALL_STATE(3172)] = 107331, - [SMALL_STATE(3173)] = 107389, - [SMALL_STATE(3174)] = 107447, - [SMALL_STATE(3175)] = 107505, - [SMALL_STATE(3176)] = 107563, - [SMALL_STATE(3177)] = 107621, - [SMALL_STATE(3178)] = 107679, - [SMALL_STATE(3179)] = 107737, - [SMALL_STATE(3180)] = 107795, - [SMALL_STATE(3181)] = 107853, - [SMALL_STATE(3182)] = 107921, - [SMALL_STATE(3183)] = 107979, - [SMALL_STATE(3184)] = 108037, - [SMALL_STATE(3185)] = 108095, - [SMALL_STATE(3186)] = 108153, - [SMALL_STATE(3187)] = 108211, - [SMALL_STATE(3188)] = 108269, - [SMALL_STATE(3189)] = 108327, - [SMALL_STATE(3190)] = 108385, - [SMALL_STATE(3191)] = 108443, - [SMALL_STATE(3192)] = 108501, - [SMALL_STATE(3193)] = 108559, - [SMALL_STATE(3194)] = 108617, - [SMALL_STATE(3195)] = 108675, - [SMALL_STATE(3196)] = 108733, - [SMALL_STATE(3197)] = 108791, - [SMALL_STATE(3198)] = 108849, - [SMALL_STATE(3199)] = 108907, - [SMALL_STATE(3200)] = 108965, - [SMALL_STATE(3201)] = 109023, - [SMALL_STATE(3202)] = 109081, - [SMALL_STATE(3203)] = 109143, - [SMALL_STATE(3204)] = 109200, - [SMALL_STATE(3205)] = 109265, - [SMALL_STATE(3206)] = 109322, - [SMALL_STATE(3207)] = 109387, - [SMALL_STATE(3208)] = 109444, - [SMALL_STATE(3209)] = 109509, - [SMALL_STATE(3210)] = 109566, - [SMALL_STATE(3211)] = 109623, - [SMALL_STATE(3212)] = 109688, - [SMALL_STATE(3213)] = 109753, - [SMALL_STATE(3214)] = 109818, - [SMALL_STATE(3215)] = 109883, - [SMALL_STATE(3216)] = 109942, - [SMALL_STATE(3217)] = 110007, - [SMALL_STATE(3218)] = 110072, - [SMALL_STATE(3219)] = 110137, - [SMALL_STATE(3220)] = 110202, - [SMALL_STATE(3221)] = 110267, - [SMALL_STATE(3222)] = 110332, - [SMALL_STATE(3223)] = 110397, - [SMALL_STATE(3224)] = 110462, - [SMALL_STATE(3225)] = 110527, - [SMALL_STATE(3226)] = 110592, - [SMALL_STATE(3227)] = 110657, - [SMALL_STATE(3228)] = 110722, - [SMALL_STATE(3229)] = 110787, - [SMALL_STATE(3230)] = 110852, - [SMALL_STATE(3231)] = 110917, - [SMALL_STATE(3232)] = 110982, - [SMALL_STATE(3233)] = 111047, - [SMALL_STATE(3234)] = 111106, - [SMALL_STATE(3235)] = 111171, - [SMALL_STATE(3236)] = 111247, - [SMALL_STATE(3237)] = 111307, - [SMALL_STATE(3238)] = 111383, - [SMALL_STATE(3239)] = 111459, - [SMALL_STATE(3240)] = 111523, - [SMALL_STATE(3241)] = 111583, - [SMALL_STATE(3242)] = 111643, - [SMALL_STATE(3243)] = 111707, - [SMALL_STATE(3244)] = 111783, - [SMALL_STATE(3245)] = 111839, - [SMALL_STATE(3246)] = 111915, - [SMALL_STATE(3247)] = 111991, - [SMALL_STATE(3248)] = 112067, - [SMALL_STATE(3249)] = 112129, - [SMALL_STATE(3250)] = 112185, - [SMALL_STATE(3251)] = 112251, - [SMALL_STATE(3252)] = 112327, - [SMALL_STATE(3253)] = 112403, - [SMALL_STATE(3254)] = 112459, - [SMALL_STATE(3255)] = 112515, - [SMALL_STATE(3256)] = 112591, - [SMALL_STATE(3257)] = 112655, - [SMALL_STATE(3258)] = 112731, - [SMALL_STATE(3259)] = 112807, - [SMALL_STATE(3260)] = 112883, - [SMALL_STATE(3261)] = 112959, - [SMALL_STATE(3262)] = 113023, - [SMALL_STATE(3263)] = 113099, - [SMALL_STATE(3264)] = 113175, - [SMALL_STATE(3265)] = 113232, - [SMALL_STATE(3266)] = 113287, - [SMALL_STATE(3267)] = 113352, - [SMALL_STATE(3268)] = 113411, - [SMALL_STATE(3269)] = 113468, - [SMALL_STATE(3270)] = 113523, - [SMALL_STATE(3271)] = 113582, - [SMALL_STATE(3272)] = 113641, - [SMALL_STATE(3273)] = 113698, - [SMALL_STATE(3274)] = 113757, - [SMALL_STATE(3275)] = 113814, - [SMALL_STATE(3276)] = 113869, - [SMALL_STATE(3277)] = 113924, - [SMALL_STATE(3278)] = 113982, - [SMALL_STATE(3279)] = 114038, - [SMALL_STATE(3280)] = 114096, - [SMALL_STATE(3281)] = 114154, - [SMALL_STATE(3282)] = 114210, - [SMALL_STATE(3283)] = 114266, - [SMALL_STATE(3284)] = 114336, - [SMALL_STATE(3285)] = 114394, - [SMALL_STATE(3286)] = 114452, - [SMALL_STATE(3287)] = 114508, - [SMALL_STATE(3288)] = 114564, - [SMALL_STATE(3289)] = 114620, - [SMALL_STATE(3290)] = 114674, - [SMALL_STATE(3291)] = 114728, - [SMALL_STATE(3292)] = 114786, - [SMALL_STATE(3293)] = 114840, - [SMALL_STATE(3294)] = 114894, - [SMALL_STATE(3295)] = 114948, - [SMALL_STATE(3296)] = 115004, - [SMALL_STATE(3297)] = 115062, - [SMALL_STATE(3298)] = 115118, - [SMALL_STATE(3299)] = 115172, - [SMALL_STATE(3300)] = 115228, - [SMALL_STATE(3301)] = 115286, - [SMALL_STATE(3302)] = 115340, - [SMALL_STATE(3303)] = 115394, - [SMALL_STATE(3304)] = 115450, - [SMALL_STATE(3305)] = 115508, - [SMALL_STATE(3306)] = 115562, - [SMALL_STATE(3307)] = 115616, - [SMALL_STATE(3308)] = 115670, - [SMALL_STATE(3309)] = 115723, - [SMALL_STATE(3310)] = 115776, - [SMALL_STATE(3311)] = 115829, - [SMALL_STATE(3312)] = 115882, - [SMALL_STATE(3313)] = 115935, - [SMALL_STATE(3314)] = 115988, - [SMALL_STATE(3315)] = 116041, - [SMALL_STATE(3316)] = 116098, - [SMALL_STATE(3317)] = 116151, - [SMALL_STATE(3318)] = 116204, - [SMALL_STATE(3319)] = 116257, - [SMALL_STATE(3320)] = 116310, - [SMALL_STATE(3321)] = 116363, - [SMALL_STATE(3322)] = 116416, - [SMALL_STATE(3323)] = 116469, - [SMALL_STATE(3324)] = 116522, - [SMALL_STATE(3325)] = 116575, - [SMALL_STATE(3326)] = 116628, - [SMALL_STATE(3327)] = 116681, - [SMALL_STATE(3328)] = 116734, - [SMALL_STATE(3329)] = 116787, - [SMALL_STATE(3330)] = 116840, - [SMALL_STATE(3331)] = 116897, - [SMALL_STATE(3332)] = 116950, - [SMALL_STATE(3333)] = 117003, - [SMALL_STATE(3334)] = 117056, - [SMALL_STATE(3335)] = 117109, - [SMALL_STATE(3336)] = 117162, - [SMALL_STATE(3337)] = 117215, - [SMALL_STATE(3338)] = 117268, - [SMALL_STATE(3339)] = 117321, - [SMALL_STATE(3340)] = 117374, - [SMALL_STATE(3341)] = 117431, - [SMALL_STATE(3342)] = 117484, - [SMALL_STATE(3343)] = 117541, - [SMALL_STATE(3344)] = 117594, - [SMALL_STATE(3345)] = 117661, - [SMALL_STATE(3346)] = 117714, - [SMALL_STATE(3347)] = 117767, - [SMALL_STATE(3348)] = 117820, - [SMALL_STATE(3349)] = 117873, - [SMALL_STATE(3350)] = 117926, - [SMALL_STATE(3351)] = 117979, - [SMALL_STATE(3352)] = 118036, - [SMALL_STATE(3353)] = 118093, - [SMALL_STATE(3354)] = 118146, - [SMALL_STATE(3355)] = 118199, - [SMALL_STATE(3356)] = 118252, - [SMALL_STATE(3357)] = 118305, - [SMALL_STATE(3358)] = 118360, - [SMALL_STATE(3359)] = 118413, - [SMALL_STATE(3360)] = 118466, - [SMALL_STATE(3361)] = 118519, - [SMALL_STATE(3362)] = 118576, - [SMALL_STATE(3363)] = 118629, - [SMALL_STATE(3364)] = 118682, - [SMALL_STATE(3365)] = 118735, - [SMALL_STATE(3366)] = 118792, - [SMALL_STATE(3367)] = 118845, - [SMALL_STATE(3368)] = 118902, - [SMALL_STATE(3369)] = 118955, - [SMALL_STATE(3370)] = 119008, - [SMALL_STATE(3371)] = 119061, - [SMALL_STATE(3372)] = 119114, - [SMALL_STATE(3373)] = 119167, - [SMALL_STATE(3374)] = 119220, - [SMALL_STATE(3375)] = 119273, - [SMALL_STATE(3376)] = 119326, - [SMALL_STATE(3377)] = 119379, - [SMALL_STATE(3378)] = 119432, - [SMALL_STATE(3379)] = 119485, - [SMALL_STATE(3380)] = 119549, - [SMALL_STATE(3381)] = 119625, - [SMALL_STATE(3382)] = 119701, - [SMALL_STATE(3383)] = 119779, - [SMALL_STATE(3384)] = 119845, - [SMALL_STATE(3385)] = 119905, - [SMALL_STATE(3386)] = 119973, - [SMALL_STATE(3387)] = 120029, - [SMALL_STATE(3388)] = 120107, - [SMALL_STATE(3389)] = 120187, - [SMALL_STATE(3390)] = 120269, - [SMALL_STATE(3391)] = 120339, - [SMALL_STATE(3392)] = 120403, - [SMALL_STATE(3393)] = 120475, - [SMALL_STATE(3394)] = 120549, - [SMALL_STATE(3395)] = 120625, - [SMALL_STATE(3396)] = 120675, - [SMALL_STATE(3397)] = 120757, - [SMALL_STATE(3398)] = 120807, - [SMALL_STATE(3399)] = 120891, - [SMALL_STATE(3400)] = 120963, - [SMALL_STATE(3401)] = 121031, - [SMALL_STATE(3402)] = 121085, - [SMALL_STATE(3403)] = 121151, - [SMALL_STATE(3404)] = 121225, - [SMALL_STATE(3405)] = 121301, - [SMALL_STATE(3406)] = 121371, - [SMALL_STATE(3407)] = 121449, - [SMALL_STATE(3408)] = 121519, - [SMALL_STATE(3409)] = 121583, - [SMALL_STATE(3410)] = 121641, - [SMALL_STATE(3411)] = 121707, - [SMALL_STATE(3412)] = 121761, - [SMALL_STATE(3413)] = 121837, - [SMALL_STATE(3414)] = 121915, - [SMALL_STATE(3415)] = 121995, - [SMALL_STATE(3416)] = 122063, - [SMALL_STATE(3417)] = 122125, - [SMALL_STATE(3418)] = 122195, - [SMALL_STATE(3419)] = 122267, - [SMALL_STATE(3420)] = 122341, - [SMALL_STATE(3421)] = 122399, - [SMALL_STATE(3422)] = 122479, - [SMALL_STATE(3423)] = 122543, - [SMALL_STATE(3424)] = 122605, - [SMALL_STATE(3425)] = 122671, - [SMALL_STATE(3426)] = 122739, - [SMALL_STATE(3427)] = 122799, - [SMALL_STATE(3428)] = 122861, - [SMALL_STATE(3429)] = 122929, - [SMALL_STATE(3430)] = 122999, - [SMALL_STATE(3431)] = 123055, - [SMALL_STATE(3432)] = 123113, - [SMALL_STATE(3433)] = 123191, - [SMALL_STATE(3434)] = 123271, - [SMALL_STATE(3435)] = 123351, - [SMALL_STATE(3436)] = 123433, - [SMALL_STATE(3437)] = 123515, - [SMALL_STATE(3438)] = 123567, - [SMALL_STATE(3439)] = 123651, - [SMALL_STATE(3440)] = 123721, - [SMALL_STATE(3441)] = 123793, - [SMALL_STATE(3442)] = 123857, - [SMALL_STATE(3443)] = 123923, - [SMALL_STATE(3444)] = 123973, - [SMALL_STATE(3445)] = 124047, - [SMALL_STATE(3446)] = 124121, - [SMALL_STATE(3447)] = 124197, - [SMALL_STATE(3448)] = 124273, - [SMALL_STATE(3449)] = 124337, - [SMALL_STATE(3450)] = 124415, - [SMALL_STATE(3451)] = 124483, - [SMALL_STATE(3452)] = 124545, - [SMALL_STATE(3453)] = 124615, - [SMALL_STATE(3454)] = 124673, - [SMALL_STATE(3455)] = 124723, - [SMALL_STATE(3456)] = 124803, - [SMALL_STATE(3457)] = 124885, - [SMALL_STATE(3458)] = 124969, - [SMALL_STATE(3459)] = 125041, - [SMALL_STATE(3460)] = 125107, - [SMALL_STATE(3461)] = 125181, - [SMALL_STATE(3462)] = 125257, - [SMALL_STATE(3463)] = 125335, - [SMALL_STATE(3464)] = 125399, - [SMALL_STATE(3465)] = 125465, - [SMALL_STATE(3466)] = 125525, - [SMALL_STATE(3467)] = 125593, - [SMALL_STATE(3468)] = 125649, - [SMALL_STATE(3469)] = 125727, - [SMALL_STATE(3470)] = 125807, - [SMALL_STATE(3471)] = 125861, - [SMALL_STATE(3472)] = 125943, - [SMALL_STATE(3473)] = 126013, - [SMALL_STATE(3474)] = 126077, - [SMALL_STATE(3475)] = 126149, - [SMALL_STATE(3476)] = 126223, - [SMALL_STATE(3477)] = 126299, - [SMALL_STATE(3478)] = 126365, - [SMALL_STATE(3479)] = 126433, - [SMALL_STATE(3480)] = 126493, - [SMALL_STATE(3481)] = 126555, - [SMALL_STATE(3482)] = 126623, - [SMALL_STATE(3483)] = 126693, - [SMALL_STATE(3484)] = 126749, - [SMALL_STATE(3485)] = 126807, - [SMALL_STATE(3486)] = 126857, - [SMALL_STATE(3487)] = 126935, - [SMALL_STATE(3488)] = 127015, - [SMALL_STATE(3489)] = 127095, - [SMALL_STATE(3490)] = 127177, - [SMALL_STATE(3491)] = 127259, - [SMALL_STATE(3492)] = 127343, - [SMALL_STATE(3493)] = 127413, - [SMALL_STATE(3494)] = 127485, - [SMALL_STATE(3495)] = 127535, - [SMALL_STATE(3496)] = 127599, - [SMALL_STATE(3497)] = 127665, - [SMALL_STATE(3498)] = 127737, - [SMALL_STATE(3499)] = 127811, - [SMALL_STATE(3500)] = 127885, - [SMALL_STATE(3501)] = 127957, - [SMALL_STATE(3502)] = 128016, - [SMALL_STATE(3503)] = 128077, - [SMALL_STATE(3504)] = 128138, - [SMALL_STATE(3505)] = 128189, - [SMALL_STATE(3506)] = 128240, - [SMALL_STATE(3507)] = 128301, - [SMALL_STATE(3508)] = 128362, - [SMALL_STATE(3509)] = 128429, - [SMALL_STATE(3510)] = 128496, - [SMALL_STATE(3511)] = 128549, - [SMALL_STATE(3512)] = 128610, - [SMALL_STATE(3513)] = 128679, - [SMALL_STATE(3514)] = 128740, - [SMALL_STATE(3515)] = 128803, - [SMALL_STATE(3516)] = 128860, - [SMALL_STATE(3517)] = 128925, - [SMALL_STATE(3518)] = 128978, - [SMALL_STATE(3519)] = 129053, - [SMALL_STATE(3520)] = 129130, - [SMALL_STATE(3521)] = 129209, - [SMALL_STATE(3522)] = 129276, - [SMALL_STATE(3523)] = 129337, - [SMALL_STATE(3524)] = 129398, - [SMALL_STATE(3525)] = 129467, - [SMALL_STATE(3526)] = 129538, - [SMALL_STATE(3527)] = 129599, - [SMALL_STATE(3528)] = 129672, - [SMALL_STATE(3529)] = 129733, - [SMALL_STATE(3530)] = 129794, - [SMALL_STATE(3531)] = 129848, - [SMALL_STATE(3532)] = 129914, - [SMALL_STATE(3533)] = 129968, - [SMALL_STATE(3534)] = 130054, - [SMALL_STATE(3535)] = 130140, - [SMALL_STATE(3536)] = 130206, - [SMALL_STATE(3537)] = 130272, - [SMALL_STATE(3538)] = 130338, - [SMALL_STATE(3539)] = 130401, - [SMALL_STATE(3540)] = 130456, - [SMALL_STATE(3541)] = 130519, - [SMALL_STATE(3542)] = 130572, - [SMALL_STATE(3543)] = 130627, - [SMALL_STATE(3544)] = 130682, - [SMALL_STATE(3545)] = 130737, - [SMALL_STATE(3546)] = 130792, - [SMALL_STATE(3547)] = 130847, - [SMALL_STATE(3548)] = 130902, - [SMALL_STATE(3549)] = 130957, - [SMALL_STATE(3550)] = 131012, - [SMALL_STATE(3551)] = 131067, - [SMALL_STATE(3552)] = 131122, - [SMALL_STATE(3553)] = 131173, - [SMALL_STATE(3554)] = 131228, - [SMALL_STATE(3555)] = 131291, - [SMALL_STATE(3556)] = 131354, - [SMALL_STATE(3557)] = 131409, - [SMALL_STATE(3558)] = 131464, - [SMALL_STATE(3559)] = 131519, - [SMALL_STATE(3560)] = 131574, - [SMALL_STATE(3561)] = 131629, - [SMALL_STATE(3562)] = 131684, - [SMALL_STATE(3563)] = 131739, - [SMALL_STATE(3564)] = 131794, - [SMALL_STATE(3565)] = 131857, - [SMALL_STATE(3566)] = 131920, - [SMALL_STATE(3567)] = 131975, - [SMALL_STATE(3568)] = 132030, - [SMALL_STATE(3569)] = 132113, - [SMALL_STATE(3570)] = 132166, - [SMALL_STATE(3571)] = 132215, - [SMALL_STATE(3572)] = 132270, - [SMALL_STATE(3573)] = 132325, - [SMALL_STATE(3574)] = 132380, - [SMALL_STATE(3575)] = 132435, - [SMALL_STATE(3576)] = 132490, - [SMALL_STATE(3577)] = 132553, - [SMALL_STATE(3578)] = 132636, - [SMALL_STATE(3579)] = 132687, - [SMALL_STATE(3580)] = 132742, - [SMALL_STATE(3581)] = 132790, - [SMALL_STATE(3582)] = 132842, - [SMALL_STATE(3583)] = 132894, - [SMALL_STATE(3584)] = 132946, - [SMALL_STATE(3585)] = 132998, - [SMALL_STATE(3586)] = 133050, - [SMALL_STATE(3587)] = 133098, - [SMALL_STATE(3588)] = 133150, - [SMALL_STATE(3589)] = 133198, - [SMALL_STATE(3590)] = 133260, - [SMALL_STATE(3591)] = 133308, - [SMALL_STATE(3592)] = 133358, - [SMALL_STATE(3593)] = 133408, - [SMALL_STATE(3594)] = 133456, - [SMALL_STATE(3595)] = 133507, - [SMALL_STATE(3596)] = 133558, - [SMALL_STATE(3597)] = 133607, - [SMALL_STATE(3598)] = 133654, - [SMALL_STATE(3599)] = 133701, - [SMALL_STATE(3600)] = 133752, - [SMALL_STATE(3601)] = 133801, - [SMALL_STATE(3602)] = 133850, - [SMALL_STATE(3603)] = 133897, - [SMALL_STATE(3604)] = 133944, - [SMALL_STATE(3605)] = 133991, - [SMALL_STATE(3606)] = 134035, - [SMALL_STATE(3607)] = 134083, - [SMALL_STATE(3608)] = 134129, - [SMALL_STATE(3609)] = 134183, - [SMALL_STATE(3610)] = 134229, - [SMALL_STATE(3611)] = 134275, - [SMALL_STATE(3612)] = 134321, - [SMALL_STATE(3613)] = 134369, - [SMALL_STATE(3614)] = 134423, - [SMALL_STATE(3615)] = 134476, - [SMALL_STATE(3616)] = 134521, - [SMALL_STATE(3617)] = 134570, - [SMALL_STATE(3618)] = 134615, - [SMALL_STATE(3619)] = 134664, - [SMALL_STATE(3620)] = 134717, - [SMALL_STATE(3621)] = 134766, - [SMALL_STATE(3622)] = 134811, - [SMALL_STATE(3623)] = 134864, - [SMALL_STATE(3624)] = 134913, - [SMALL_STATE(3625)] = 134958, - [SMALL_STATE(3626)] = 135004, - [SMALL_STATE(3627)] = 135052, - [SMALL_STATE(3628)] = 135100, - [SMALL_STATE(3629)] = 135148, - [SMALL_STATE(3630)] = 135194, - [SMALL_STATE(3631)] = 135242, - [SMALL_STATE(3632)] = 135288, - [SMALL_STATE(3633)] = 135334, - [SMALL_STATE(3634)] = 135383, - [SMALL_STATE(3635)] = 135426, - [SMALL_STATE(3636)] = 135469, - [SMALL_STATE(3637)] = 135512, - [SMALL_STATE(3638)] = 135559, - [SMALL_STATE(3639)] = 135606, - [SMALL_STATE(3640)] = 135653, - [SMALL_STATE(3641)] = 135700, - [SMALL_STATE(3642)] = 135743, - [SMALL_STATE(3643)] = 135786, - [SMALL_STATE(3644)] = 135875, - [SMALL_STATE(3645)] = 135918, - [SMALL_STATE(3646)] = 135965, - [SMALL_STATE(3647)] = 136012, - [SMALL_STATE(3648)] = 136055, - [SMALL_STATE(3649)] = 136102, - [SMALL_STATE(3650)] = 136149, - [SMALL_STATE(3651)] = 136194, - [SMALL_STATE(3652)] = 136237, - [SMALL_STATE(3653)] = 136288, - [SMALL_STATE(3654)] = 136331, - [SMALL_STATE(3655)] = 136374, - [SMALL_STATE(3656)] = 136419, - [SMALL_STATE(3657)] = 136466, - [SMALL_STATE(3658)] = 136513, - [SMALL_STATE(3659)] = 136560, - [SMALL_STATE(3660)] = 136607, - [SMALL_STATE(3661)] = 136652, - [SMALL_STATE(3662)] = 136741, - [SMALL_STATE(3663)] = 136788, - [SMALL_STATE(3664)] = 136835, - [SMALL_STATE(3665)] = 136882, - [SMALL_STATE(3666)] = 136929, - [SMALL_STATE(3667)] = 136972, - [SMALL_STATE(3668)] = 137017, - [SMALL_STATE(3669)] = 137060, - [SMALL_STATE(3670)] = 137103, - [SMALL_STATE(3671)] = 137150, - [SMALL_STATE(3672)] = 137212, - [SMALL_STATE(3673)] = 137276, - [SMALL_STATE(3674)] = 137340, - [SMALL_STATE(3675)] = 137406, - [SMALL_STATE(3676)] = 137472, - [SMALL_STATE(3677)] = 137540, - [SMALL_STATE(3678)] = 137598, - [SMALL_STATE(3679)] = 137650, - [SMALL_STATE(3680)] = 137710, - [SMALL_STATE(3681)] = 137758, - [SMALL_STATE(3682)] = 137806, - [SMALL_STATE(3683)] = 137876, - [SMALL_STATE(3684)] = 137948, - [SMALL_STATE(3685)] = 138022, - [SMALL_STATE(3686)] = 138084, - [SMALL_STATE(3687)] = 138140, - [SMALL_STATE(3688)] = 138204, - [SMALL_STATE(3689)] = 138270, - [SMALL_STATE(3690)] = 138338, - [SMALL_STATE(3691)] = 138382, - [SMALL_STATE(3692)] = 138426, - [SMALL_STATE(3693)] = 138470, - [SMALL_STATE(3694)] = 138516, - [SMALL_STATE(3695)] = 138572, - [SMALL_STATE(3696)] = 138622, - [SMALL_STATE(3697)] = 138680, - [SMALL_STATE(3698)] = 138726, - [SMALL_STATE(3699)] = 138794, - [SMALL_STATE(3700)] = 138864, - [SMALL_STATE(3701)] = 138936, - [SMALL_STATE(3702)] = 138996, - [SMALL_STATE(3703)] = 139050, - [SMALL_STATE(3704)] = 139112, - [SMALL_STATE(3705)] = 139176, - [SMALL_STATE(3706)] = 139242, - [SMALL_STATE(3707)] = 139298, - [SMALL_STATE(3708)] = 139356, - [SMALL_STATE(3709)] = 139406, - [SMALL_STATE(3710)] = 139458, - [SMALL_STATE(3711)] = 139516, - [SMALL_STATE(3712)] = 139576, - [SMALL_STATE(3713)] = 139622, - [SMALL_STATE(3714)] = 139670, - [SMALL_STATE(3715)] = 139738, - [SMALL_STATE(3716)] = 139808, - [SMALL_STATE(3717)] = 139878, - [SMALL_STATE(3718)] = 139950, - [SMALL_STATE(3719)] = 140022, - [SMALL_STATE(3720)] = 140096, - [SMALL_STATE(3721)] = 140156, - [SMALL_STATE(3722)] = 140214, - [SMALL_STATE(3723)] = 140268, - [SMALL_STATE(3724)] = 140324, - [SMALL_STATE(3725)] = 140386, - [SMALL_STATE(3726)] = 140450, - [SMALL_STATE(3727)] = 140514, - [SMALL_STATE(3728)] = 140580, - [SMALL_STATE(3729)] = 140646, - [SMALL_STATE(3730)] = 140714, - [SMALL_STATE(3731)] = 140756, - [SMALL_STATE(3732)] = 140826, - [SMALL_STATE(3733)] = 140882, - [SMALL_STATE(3734)] = 140932, - [SMALL_STATE(3735)] = 140990, - [SMALL_STATE(3736)] = 141052, - [SMALL_STATE(3737)] = 141120, - [SMALL_STATE(3738)] = 141190, - [SMALL_STATE(3739)] = 141262, - [SMALL_STATE(3740)] = 141322, - [SMALL_STATE(3741)] = 141376, - [SMALL_STATE(3742)] = 141438, - [SMALL_STATE(3743)] = 141502, - [SMALL_STATE(3744)] = 141568, - [SMALL_STATE(3745)] = 141612, - [SMALL_STATE(3746)] = 141658, - [SMALL_STATE(3747)] = 141704, - [SMALL_STATE(3748)] = 141776, - [SMALL_STATE(3749)] = 141822, - [SMALL_STATE(3750)] = 141868, - [SMALL_STATE(3751)] = 141910, - [SMALL_STATE(3752)] = 141958, - [SMALL_STATE(3753)] = 142010, - [SMALL_STATE(3754)] = 142052, - [SMALL_STATE(3755)] = 142126, - [SMALL_STATE(3756)] = 142188, - [SMALL_STATE(3757)] = 142244, - [SMALL_STATE(3758)] = 142292, - [SMALL_STATE(3759)] = 142356, - [SMALL_STATE(3760)] = 142422, - [SMALL_STATE(3761)] = 142490, - [SMALL_STATE(3762)] = 142532, - [SMALL_STATE(3763)] = 142592, - [SMALL_STATE(3764)] = 142640, - [SMALL_STATE(3765)] = 142688, - [SMALL_STATE(3766)] = 142736, - [SMALL_STATE(3767)] = 142792, - [SMALL_STATE(3768)] = 142850, - [SMALL_STATE(3769)] = 142900, - [SMALL_STATE(3770)] = 142946, - [SMALL_STATE(3771)] = 142988, - [SMALL_STATE(3772)] = 143040, - [SMALL_STATE(3773)] = 143098, - [SMALL_STATE(3774)] = 143158, - [SMALL_STATE(3775)] = 143204, - [SMALL_STATE(3776)] = 143252, - [SMALL_STATE(3777)] = 143294, - [SMALL_STATE(3778)] = 143362, - [SMALL_STATE(3779)] = 143404, - [SMALL_STATE(3780)] = 143446, - [SMALL_STATE(3781)] = 143490, - [SMALL_STATE(3782)] = 143560, - [SMALL_STATE(3783)] = 143630, - [SMALL_STATE(3784)] = 143702, - [SMALL_STATE(3785)] = 143774, - [SMALL_STATE(3786)] = 143848, - [SMALL_STATE(3787)] = 143908, - [SMALL_STATE(3788)] = 143956, - [SMALL_STATE(3789)] = 143998, - [SMALL_STATE(3790)] = 144060, - [SMALL_STATE(3791)] = 144114, - [SMALL_STATE(3792)] = 144170, - [SMALL_STATE(3793)] = 144218, - [SMALL_STATE(3794)] = 144264, - [SMALL_STATE(3795)] = 144347, - [SMALL_STATE(3796)] = 144420, - [SMALL_STATE(3797)] = 144503, - [SMALL_STATE(3798)] = 144548, - [SMALL_STATE(3799)] = 144631, - [SMALL_STATE(3800)] = 144714, - [SMALL_STATE(3801)] = 144797, - [SMALL_STATE(3802)] = 144880, - [SMALL_STATE(3803)] = 144963, - [SMALL_STATE(3804)] = 145046, - [SMALL_STATE(3805)] = 145129, - [SMALL_STATE(3806)] = 145212, - [SMALL_STATE(3807)] = 145285, - [SMALL_STATE(3808)] = 145328, - [SMALL_STATE(3809)] = 145411, - [SMALL_STATE(3810)] = 145494, - [SMALL_STATE(3811)] = 145539, - [SMALL_STATE(3812)] = 145622, - [SMALL_STATE(3813)] = 145705, - [SMALL_STATE(3814)] = 145788, - [SMALL_STATE(3815)] = 145861, - [SMALL_STATE(3816)] = 145934, - [SMALL_STATE(3817)] = 146017, - [SMALL_STATE(3818)] = 146090, - [SMALL_STATE(3819)] = 146163, - [SMALL_STATE(3820)] = 146246, - [SMALL_STATE(3821)] = 146329, - [SMALL_STATE(3822)] = 146412, - [SMALL_STATE(3823)] = 146495, - [SMALL_STATE(3824)] = 146578, - [SMALL_STATE(3825)] = 146661, - [SMALL_STATE(3826)] = 146744, - [SMALL_STATE(3827)] = 146827, - [SMALL_STATE(3828)] = 146910, - [SMALL_STATE(3829)] = 146993, - [SMALL_STATE(3830)] = 147051, - [SMALL_STATE(3831)] = 147093, - [SMALL_STATE(3832)] = 147137, - [SMALL_STATE(3833)] = 147179, - [SMALL_STATE(3834)] = 147231, - [SMALL_STATE(3835)] = 147277, - [SMALL_STATE(3836)] = 147331, - [SMALL_STATE(3837)] = 147373, - [SMALL_STATE(3838)] = 147437, - [SMALL_STATE(3839)] = 147503, - [SMALL_STATE(3840)] = 147571, - [SMALL_STATE(3841)] = 147627, - [SMALL_STATE(3842)] = 147677, - [SMALL_STATE(3843)] = 147737, - [SMALL_STATE(3844)] = 147799, - [SMALL_STATE(3845)] = 147851, - [SMALL_STATE(3846)] = 147895, - [SMALL_STATE(3847)] = 147941, - [SMALL_STATE(3848)] = 147983, - [SMALL_STATE(3849)] = 148037, - [SMALL_STATE(3850)] = 148079, - [SMALL_STATE(3851)] = 148121, - [SMALL_STATE(3852)] = 148185, - [SMALL_STATE(3853)] = 148251, - [SMALL_STATE(3854)] = 148319, - [SMALL_STATE(3855)] = 148361, - [SMALL_STATE(3856)] = 148417, - [SMALL_STATE(3857)] = 148467, - [SMALL_STATE(3858)] = 148525, - [SMALL_STATE(3859)] = 148585, - [SMALL_STATE(3860)] = 148647, - [SMALL_STATE(3861)] = 148691, - [SMALL_STATE(3862)] = 148733, - [SMALL_STATE(3863)] = 148775, - [SMALL_STATE(3864)] = 148819, - [SMALL_STATE(3865)] = 148861, - [SMALL_STATE(3866)] = 148928, - [SMALL_STATE(3867)] = 149005, - [SMALL_STATE(3868)] = 149082, - [SMALL_STATE(3869)] = 149159, - [SMALL_STATE(3870)] = 149236, - [SMALL_STATE(3871)] = 149313, - [SMALL_STATE(3872)] = 149352, - [SMALL_STATE(3873)] = 149397, - [SMALL_STATE(3874)] = 149464, - [SMALL_STATE(3875)] = 149531, - [SMALL_STATE(3876)] = 149608, - [SMALL_STATE(3877)] = 149675, - [SMALL_STATE(3878)] = 149752, - [SMALL_STATE(3879)] = 149829, - [SMALL_STATE(3880)] = 149906, - [SMALL_STATE(3881)] = 149983, - [SMALL_STATE(3882)] = 150060, - [SMALL_STATE(3883)] = 150127, - [SMALL_STATE(3884)] = 150194, - [SMALL_STATE(3885)] = 150271, - [SMALL_STATE(3886)] = 150325, - [SMALL_STATE(3887)] = 150369, - [SMALL_STATE(3888)] = 150420, - [SMALL_STATE(3889)] = 150473, - [SMALL_STATE(3890)] = 150524, - [SMALL_STATE(3891)] = 150575, - [SMALL_STATE(3892)] = 150623, - [SMALL_STATE(3893)] = 150663, - [SMALL_STATE(3894)] = 150707, - [SMALL_STATE(3895)] = 150757, - [SMALL_STATE(3896)] = 150813, - [SMALL_STATE(3897)] = 150849, - [SMALL_STATE(3898)] = 150893, - [SMALL_STATE(3899)] = 150941, - [SMALL_STATE(3900)] = 150989, - [SMALL_STATE(3901)] = 151037, - [SMALL_STATE(3902)] = 151077, - [SMALL_STATE(3903)] = 151119, - [SMALL_STATE(3904)] = 151169, - [SMALL_STATE(3905)] = 151219, - [SMALL_STATE(3906)] = 151259, - [SMALL_STATE(3907)] = 151303, - [SMALL_STATE(3908)] = 151339, - [SMALL_STATE(3909)] = 151376, - [SMALL_STATE(3910)] = 151415, - [SMALL_STATE(3911)] = 151452, - [SMALL_STATE(3912)] = 151499, - [SMALL_STATE(3913)] = 151546, - [SMALL_STATE(3914)] = 151593, - [SMALL_STATE(3915)] = 151632, - [SMALL_STATE(3916)] = 151679, - [SMALL_STATE(3917)] = 151732, - [SMALL_STATE(3918)] = 151785, - [SMALL_STATE(3919)] = 151840, - [SMALL_STATE(3920)] = 151887, - [SMALL_STATE(3921)] = 151940, - [SMALL_STATE(3922)] = 151982, - [SMALL_STATE(3923)] = 152032, - [SMALL_STATE(3924)] = 152066, - [SMALL_STATE(3925)] = 152102, - [SMALL_STATE(3926)] = 152152, - [SMALL_STATE(3927)] = 152190, - [SMALL_STATE(3928)] = 152242, - [SMALL_STATE(3929)] = 152294, - [SMALL_STATE(3930)] = 152330, - [SMALL_STATE(3931)] = 152364, - [SMALL_STATE(3932)] = 152414, - [SMALL_STATE(3933)] = 152448, - [SMALL_STATE(3934)] = 152486, - [SMALL_STATE(3935)] = 152520, - [SMALL_STATE(3936)] = 152570, - [SMALL_STATE(3937)] = 152616, - [SMALL_STATE(3938)] = 152668, - [SMALL_STATE(3939)] = 152706, - [SMALL_STATE(3940)] = 152744, - [SMALL_STATE(3941)] = 152793, - [SMALL_STATE(3942)] = 152828, - [SMALL_STATE(3943)] = 152861, - [SMALL_STATE(3944)] = 152898, - [SMALL_STATE(3945)] = 152933, - [SMALL_STATE(3946)] = 152982, - [SMALL_STATE(3947)] = 153031, - [SMALL_STATE(3948)] = 153080, - [SMALL_STATE(3949)] = 153115, - [SMALL_STATE(3950)] = 153152, - [SMALL_STATE(3951)] = 153189, - [SMALL_STATE(3952)] = 153222, - [SMALL_STATE(3953)] = 153257, - [SMALL_STATE(3954)] = 153304, - [SMALL_STATE(3955)] = 153337, - [SMALL_STATE(3956)] = 153390, - [SMALL_STATE(3957)] = 153425, - [SMALL_STATE(3958)] = 153458, - [SMALL_STATE(3959)] = 153495, - [SMALL_STATE(3960)] = 153535, - [SMALL_STATE(3961)] = 153573, - [SMALL_STATE(3962)] = 153609, - [SMALL_STATE(3963)] = 153647, - [SMALL_STATE(3964)] = 153685, - [SMALL_STATE(3965)] = 153723, - [SMALL_STATE(3966)] = 153761, - [SMALL_STATE(3967)] = 153799, - [SMALL_STATE(3968)] = 153845, - [SMALL_STATE(3969)] = 153877, - [SMALL_STATE(3970)] = 153911, - [SMALL_STATE(3971)] = 153943, - [SMALL_STATE(3972)] = 153981, - [SMALL_STATE(3973)] = 154019, - [SMALL_STATE(3974)] = 154069, - [SMALL_STATE(3975)] = 154107, - [SMALL_STATE(3976)] = 154145, - [SMALL_STATE(3977)] = 154177, - [SMALL_STATE(3978)] = 154215, - [SMALL_STATE(3979)] = 154253, - [SMALL_STATE(3980)] = 154285, - [SMALL_STATE(3981)] = 154317, - [SMALL_STATE(3982)] = 154351, - [SMALL_STATE(3983)] = 154385, - [SMALL_STATE(3984)] = 154425, - [SMALL_STATE(3985)] = 154463, - [SMALL_STATE(3986)] = 154499, - [SMALL_STATE(3987)] = 154537, - [SMALL_STATE(3988)] = 154575, - [SMALL_STATE(3989)] = 154607, - [SMALL_STATE(3990)] = 154645, - [SMALL_STATE(3991)] = 154695, - [SMALL_STATE(3992)] = 154727, - [SMALL_STATE(3993)] = 154765, - [SMALL_STATE(3994)] = 154799, - [SMALL_STATE(3995)] = 154833, - [SMALL_STATE(3996)] = 154865, - [SMALL_STATE(3997)] = 154899, - [SMALL_STATE(3998)] = 154937, - [SMALL_STATE(3999)] = 154969, - [SMALL_STATE(4000)] = 155005, - [SMALL_STATE(4001)] = 155037, - [SMALL_STATE(4002)] = 155075, - [SMALL_STATE(4003)] = 155125, - [SMALL_STATE(4004)] = 155163, - [SMALL_STATE(4005)] = 155195, - [SMALL_STATE(4006)] = 155231, - [SMALL_STATE(4007)] = 155269, - [SMALL_STATE(4008)] = 155309, - [SMALL_STATE(4009)] = 155347, - [SMALL_STATE(4010)] = 155385, - [SMALL_STATE(4011)] = 155423, - [SMALL_STATE(4012)] = 155454, - [SMALL_STATE(4013)] = 155489, - [SMALL_STATE(4014)] = 155520, - [SMALL_STATE(4015)] = 155551, - [SMALL_STATE(4016)] = 155582, - [SMALL_STATE(4017)] = 155615, - [SMALL_STATE(4018)] = 155650, - [SMALL_STATE(4019)] = 155681, - [SMALL_STATE(4020)] = 155714, - [SMALL_STATE(4021)] = 155761, - [SMALL_STATE(4022)] = 155808, - [SMALL_STATE(4023)] = 155855, - [SMALL_STATE(4024)] = 155900, - [SMALL_STATE(4025)] = 155937, - [SMALL_STATE(4026)] = 155974, - [SMALL_STATE(4027)] = 156007, - [SMALL_STATE(4028)] = 156038, - [SMALL_STATE(4029)] = 156073, - [SMALL_STATE(4030)] = 156108, - [SMALL_STATE(4031)] = 156139, - [SMALL_STATE(4032)] = 156174, - [SMALL_STATE(4033)] = 156207, - [SMALL_STATE(4034)] = 156244, - [SMALL_STATE(4035)] = 156285, - [SMALL_STATE(4036)] = 156316, - [SMALL_STATE(4037)] = 156355, - [SMALL_STATE(4038)] = 156386, - [SMALL_STATE(4039)] = 156425, - [SMALL_STATE(4040)] = 156464, - [SMALL_STATE(4041)] = 156511, - [SMALL_STATE(4042)] = 156542, - [SMALL_STATE(4043)] = 156573, - [SMALL_STATE(4044)] = 156605, - [SMALL_STATE(4045)] = 156643, - [SMALL_STATE(4046)] = 156673, - [SMALL_STATE(4047)] = 156703, - [SMALL_STATE(4048)] = 156735, - [SMALL_STATE(4049)] = 156769, - [SMALL_STATE(4050)] = 156799, - [SMALL_STATE(4051)] = 156837, - [SMALL_STATE(4052)] = 156867, - [SMALL_STATE(4053)] = 156897, - [SMALL_STATE(4054)] = 156927, - [SMALL_STATE(4055)] = 156957, - [SMALL_STATE(4056)] = 156987, - [SMALL_STATE(4057)] = 157017, - [SMALL_STATE(4058)] = 157051, - [SMALL_STATE(4059)] = 157081, - [SMALL_STATE(4060)] = 157119, - [SMALL_STATE(4061)] = 157155, - [SMALL_STATE(4062)] = 157193, - [SMALL_STATE(4063)] = 157223, - [SMALL_STATE(4064)] = 157257, - [SMALL_STATE(4065)] = 157289, - [SMALL_STATE(4066)] = 157321, - [SMALL_STATE(4067)] = 157353, - [SMALL_STATE(4068)] = 157391, - [SMALL_STATE(4069)] = 157423, - [SMALL_STATE(4070)] = 157473, - [SMALL_STATE(4071)] = 157505, - [SMALL_STATE(4072)] = 157539, - [SMALL_STATE(4073)] = 157573, - [SMALL_STATE(4074)] = 157603, - [SMALL_STATE(4075)] = 157635, - [SMALL_STATE(4076)] = 157667, - [SMALL_STATE(4077)] = 157699, - [SMALL_STATE(4078)] = 157731, - [SMALL_STATE(4079)] = 157763, - [SMALL_STATE(4080)] = 157795, - [SMALL_STATE(4081)] = 157835, - [SMALL_STATE(4082)] = 157867, - [SMALL_STATE(4083)] = 157904, - [SMALL_STATE(4084)] = 157941, - [SMALL_STATE(4085)] = 157972, - [SMALL_STATE(4086)] = 158001, - [SMALL_STATE(4087)] = 158032, - [SMALL_STATE(4088)] = 158069, - [SMALL_STATE(4089)] = 158102, - [SMALL_STATE(4090)] = 158139, - [SMALL_STATE(4091)] = 158170, - [SMALL_STATE(4092)] = 158207, - [SMALL_STATE(4093)] = 158238, - [SMALL_STATE(4094)] = 158275, - [SMALL_STATE(4095)] = 158308, - [SMALL_STATE(4096)] = 158345, - [SMALL_STATE(4097)] = 158374, - [SMALL_STATE(4098)] = 158411, - [SMALL_STATE(4099)] = 158440, - [SMALL_STATE(4100)] = 158477, - [SMALL_STATE(4101)] = 158514, - [SMALL_STATE(4102)] = 158551, - [SMALL_STATE(4103)] = 158580, - [SMALL_STATE(4104)] = 158617, - [SMALL_STATE(4105)] = 158646, - [SMALL_STATE(4106)] = 158679, - [SMALL_STATE(4107)] = 158710, - [SMALL_STATE(4108)] = 158739, - [SMALL_STATE(4109)] = 158772, - [SMALL_STATE(4110)] = 158809, - [SMALL_STATE(4111)] = 158838, - [SMALL_STATE(4112)] = 158875, - [SMALL_STATE(4113)] = 158912, - [SMALL_STATE(4114)] = 158943, - [SMALL_STATE(4115)] = 158980, - [SMALL_STATE(4116)] = 159011, - [SMALL_STATE(4117)] = 159048, - [SMALL_STATE(4118)] = 159085, - [SMALL_STATE(4119)] = 159116, - [SMALL_STATE(4120)] = 159153, - [SMALL_STATE(4121)] = 159190, - [SMALL_STATE(4122)] = 159219, - [SMALL_STATE(4123)] = 159256, - [SMALL_STATE(4124)] = 159291, - [SMALL_STATE(4125)] = 159320, - [SMALL_STATE(4126)] = 159351, - [SMALL_STATE(4127)] = 159382, - [SMALL_STATE(4128)] = 159413, - [SMALL_STATE(4129)] = 159444, - [SMALL_STATE(4130)] = 159475, - [SMALL_STATE(4131)] = 159506, - [SMALL_STATE(4132)] = 159543, - [SMALL_STATE(4133)] = 159572, - [SMALL_STATE(4134)] = 159601, - [SMALL_STATE(4135)] = 159634, - [SMALL_STATE(4136)] = 159665, - [SMALL_STATE(4137)] = 159694, - [SMALL_STATE(4138)] = 159723, - [SMALL_STATE(4139)] = 159760, - [SMALL_STATE(4140)] = 159793, - [SMALL_STATE(4141)] = 159824, - [SMALL_STATE(4142)] = 159853, - [SMALL_STATE(4143)] = 159884, - [SMALL_STATE(4144)] = 159913, - [SMALL_STATE(4145)] = 159950, - [SMALL_STATE(4146)] = 159979, - [SMALL_STATE(4147)] = 160008, - [SMALL_STATE(4148)] = 160039, - [SMALL_STATE(4149)] = 160070, - [SMALL_STATE(4150)] = 160099, - [SMALL_STATE(4151)] = 160128, - [SMALL_STATE(4152)] = 160161, - [SMALL_STATE(4153)] = 160190, - [SMALL_STATE(4154)] = 160219, - [SMALL_STATE(4155)] = 160250, - [SMALL_STATE(4156)] = 160281, - [SMALL_STATE(4157)] = 160310, - [SMALL_STATE(4158)] = 160347, - [SMALL_STATE(4159)] = 160376, - [SMALL_STATE(4160)] = 160407, - [SMALL_STATE(4161)] = 160444, - [SMALL_STATE(4162)] = 160481, - [SMALL_STATE(4163)] = 160518, - [SMALL_STATE(4164)] = 160555, - [SMALL_STATE(4165)] = 160591, - [SMALL_STATE(4166)] = 160627, - [SMALL_STATE(4167)] = 160655, - [SMALL_STATE(4168)] = 160703, - [SMALL_STATE(4169)] = 160733, - [SMALL_STATE(4170)] = 160761, - [SMALL_STATE(4171)] = 160793, - [SMALL_STATE(4172)] = 160841, - [SMALL_STATE(4173)] = 160871, - [SMALL_STATE(4174)] = 160899, - [SMALL_STATE(4175)] = 160947, - [SMALL_STATE(4176)] = 160983, - [SMALL_STATE(4177)] = 161021, - [SMALL_STATE(4178)] = 161051, - [SMALL_STATE(4179)] = 161087, - [SMALL_STATE(4180)] = 161119, - [SMALL_STATE(4181)] = 161149, - [SMALL_STATE(4182)] = 161177, - [SMALL_STATE(4183)] = 161209, - [SMALL_STATE(4184)] = 161241, - [SMALL_STATE(4185)] = 161269, - [SMALL_STATE(4186)] = 161305, - [SMALL_STATE(4187)] = 161337, - [SMALL_STATE(4188)] = 161373, - [SMALL_STATE(4189)] = 161403, - [SMALL_STATE(4190)] = 161435, - [SMALL_STATE(4191)] = 161471, - [SMALL_STATE(4192)] = 161499, - [SMALL_STATE(4193)] = 161529, - [SMALL_STATE(4194)] = 161557, - [SMALL_STATE(4195)] = 161593, - [SMALL_STATE(4196)] = 161629, - [SMALL_STATE(4197)] = 161665, - [SMALL_STATE(4198)] = 161701, - [SMALL_STATE(4199)] = 161737, - [SMALL_STATE(4200)] = 161785, - [SMALL_STATE(4201)] = 161813, - [SMALL_STATE(4202)] = 161849, - [SMALL_STATE(4203)] = 161885, - [SMALL_STATE(4204)] = 161921, - [SMALL_STATE(4205)] = 161957, - [SMALL_STATE(4206)] = 161993, - [SMALL_STATE(4207)] = 162021, - [SMALL_STATE(4208)] = 162049, - [SMALL_STATE(4209)] = 162077, - [SMALL_STATE(4210)] = 162113, - [SMALL_STATE(4211)] = 162143, - [SMALL_STATE(4212)] = 162171, - [SMALL_STATE(4213)] = 162203, - [SMALL_STATE(4214)] = 162239, - [SMALL_STATE(4215)] = 162283, - [SMALL_STATE(4216)] = 162319, - [SMALL_STATE(4217)] = 162347, - [SMALL_STATE(4218)] = 162383, - [SMALL_STATE(4219)] = 162411, - [SMALL_STATE(4220)] = 162449, - [SMALL_STATE(4221)] = 162479, - [SMALL_STATE(4222)] = 162511, - [SMALL_STATE(4223)] = 162539, - [SMALL_STATE(4224)] = 162583, - [SMALL_STATE(4225)] = 162619, - [SMALL_STATE(4226)] = 162663, - [SMALL_STATE(4227)] = 162693, - [SMALL_STATE(4228)] = 162737, - [SMALL_STATE(4229)] = 162769, - [SMALL_STATE(4230)] = 162797, - [SMALL_STATE(4231)] = 162827, - [SMALL_STATE(4232)] = 162871, - [SMALL_STATE(4233)] = 162899, - [SMALL_STATE(4234)] = 162935, - [SMALL_STATE(4235)] = 162963, - [SMALL_STATE(4236)] = 162999, - [SMALL_STATE(4237)] = 163029, - [SMALL_STATE(4238)] = 163065, - [SMALL_STATE(4239)] = 163101, - [SMALL_STATE(4240)] = 163137, - [SMALL_STATE(4241)] = 163165, - [SMALL_STATE(4242)] = 163197, - [SMALL_STATE(4243)] = 163225, - [SMALL_STATE(4244)] = 163261, - [SMALL_STATE(4245)] = 163293, - [SMALL_STATE(4246)] = 163321, - [SMALL_STATE(4247)] = 163353, - [SMALL_STATE(4248)] = 163381, - [SMALL_STATE(4249)] = 163417, - [SMALL_STATE(4250)] = 163448, - [SMALL_STATE(4251)] = 163475, - [SMALL_STATE(4252)] = 163502, - [SMALL_STATE(4253)] = 163537, - [SMALL_STATE(4254)] = 163572, - [SMALL_STATE(4255)] = 163599, - [SMALL_STATE(4256)] = 163624, - [SMALL_STATE(4257)] = 163651, - [SMALL_STATE(4258)] = 163678, - [SMALL_STATE(4259)] = 163709, - [SMALL_STATE(4260)] = 163736, - [SMALL_STATE(4261)] = 163763, - [SMALL_STATE(4262)] = 163790, - [SMALL_STATE(4263)] = 163819, - [SMALL_STATE(4264)] = 163852, - [SMALL_STATE(4265)] = 163885, - [SMALL_STATE(4266)] = 163920, - [SMALL_STATE(4267)] = 163949, - [SMALL_STATE(4268)] = 163976, - [SMALL_STATE(4269)] = 164003, - [SMALL_STATE(4270)] = 164030, - [SMALL_STATE(4271)] = 164063, - [SMALL_STATE(4272)] = 164094, - [SMALL_STATE(4273)] = 164123, - [SMALL_STATE(4274)] = 164148, - [SMALL_STATE(4275)] = 164173, - [SMALL_STATE(4276)] = 164198, - [SMALL_STATE(4277)] = 164225, - [SMALL_STATE(4278)] = 164258, - [SMALL_STATE(4279)] = 164285, - [SMALL_STATE(4280)] = 164312, - [SMALL_STATE(4281)] = 164343, - [SMALL_STATE(4282)] = 164372, - [SMALL_STATE(4283)] = 164399, - [SMALL_STATE(4284)] = 164428, - [SMALL_STATE(4285)] = 164455, - [SMALL_STATE(4286)] = 164486, - [SMALL_STATE(4287)] = 164515, - [SMALL_STATE(4288)] = 164546, - [SMALL_STATE(4289)] = 164573, - [SMALL_STATE(4290)] = 164606, - [SMALL_STATE(4291)] = 164639, - [SMALL_STATE(4292)] = 164666, - [SMALL_STATE(4293)] = 164693, - [SMALL_STATE(4294)] = 164724, - [SMALL_STATE(4295)] = 164755, - [SMALL_STATE(4296)] = 164786, - [SMALL_STATE(4297)] = 164817, - [SMALL_STATE(4298)] = 164844, - [SMALL_STATE(4299)] = 164875, - [SMALL_STATE(4300)] = 164906, - [SMALL_STATE(4301)] = 164933, - [SMALL_STATE(4302)] = 164964, - [SMALL_STATE(4303)] = 164991, - [SMALL_STATE(4304)] = 165022, - [SMALL_STATE(4305)] = 165049, - [SMALL_STATE(4306)] = 165076, - [SMALL_STATE(4307)] = 165101, - [SMALL_STATE(4308)] = 165136, - [SMALL_STATE(4309)] = 165167, - [SMALL_STATE(4310)] = 165198, - [SMALL_STATE(4311)] = 165225, - [SMALL_STATE(4312)] = 165252, - [SMALL_STATE(4313)] = 165279, - [SMALL_STATE(4314)] = 165314, - [SMALL_STATE(4315)] = 165343, - [SMALL_STATE(4316)] = 165370, - [SMALL_STATE(4317)] = 165399, - [SMALL_STATE(4318)] = 165430, - [SMALL_STATE(4319)] = 165457, - [SMALL_STATE(4320)] = 165482, - [SMALL_STATE(4321)] = 165509, - [SMALL_STATE(4322)] = 165540, - [SMALL_STATE(4323)] = 165571, - [SMALL_STATE(4324)] = 165602, - [SMALL_STATE(4325)] = 165633, - [SMALL_STATE(4326)] = 165664, - [SMALL_STATE(4327)] = 165693, - [SMALL_STATE(4328)] = 165724, - [SMALL_STATE(4329)] = 165755, - [SMALL_STATE(4330)] = 165786, - [SMALL_STATE(4331)] = 165819, - [SMALL_STATE(4332)] = 165852, - [SMALL_STATE(4333)] = 165885, - [SMALL_STATE(4334)] = 165918, - [SMALL_STATE(4335)] = 165949, - [SMALL_STATE(4336)] = 165976, - [SMALL_STATE(4337)] = 166003, - [SMALL_STATE(4338)] = 166030, - [SMALL_STATE(4339)] = 166057, - [SMALL_STATE(4340)] = 166088, - [SMALL_STATE(4341)] = 166115, - [SMALL_STATE(4342)] = 166144, - [SMALL_STATE(4343)] = 166179, - [SMALL_STATE(4344)] = 166206, - [SMALL_STATE(4345)] = 166233, - [SMALL_STATE(4346)] = 166260, - [SMALL_STATE(4347)] = 166295, - [SMALL_STATE(4348)] = 166322, - [SMALL_STATE(4349)] = 166349, - [SMALL_STATE(4350)] = 166376, - [SMALL_STATE(4351)] = 166407, - [SMALL_STATE(4352)] = 166434, - [SMALL_STATE(4353)] = 166461, - [SMALL_STATE(4354)] = 166488, - [SMALL_STATE(4355)] = 166515, - [SMALL_STATE(4356)] = 166550, - [SMALL_STATE(4357)] = 166585, - [SMALL_STATE(4358)] = 166620, - [SMALL_STATE(4359)] = 166655, - [SMALL_STATE(4360)] = 166690, - [SMALL_STATE(4361)] = 166725, - [SMALL_STATE(4362)] = 166760, - [SMALL_STATE(4363)] = 166795, - [SMALL_STATE(4364)] = 166830, - [SMALL_STATE(4365)] = 166865, - [SMALL_STATE(4366)] = 166900, - [SMALL_STATE(4367)] = 166935, - [SMALL_STATE(4368)] = 166970, - [SMALL_STATE(4369)] = 167005, - [SMALL_STATE(4370)] = 167036, - [SMALL_STATE(4371)] = 167071, - [SMALL_STATE(4372)] = 167106, - [SMALL_STATE(4373)] = 167141, - [SMALL_STATE(4374)] = 167176, - [SMALL_STATE(4375)] = 167211, - [SMALL_STATE(4376)] = 167246, - [SMALL_STATE(4377)] = 167277, - [SMALL_STATE(4378)] = 167304, - [SMALL_STATE(4379)] = 167337, - [SMALL_STATE(4380)] = 167366, - [SMALL_STATE(4381)] = 167397, - [SMALL_STATE(4382)] = 167424, - [SMALL_STATE(4383)] = 167451, - [SMALL_STATE(4384)] = 167482, - [SMALL_STATE(4385)] = 167509, - [SMALL_STATE(4386)] = 167536, - [SMALL_STATE(4387)] = 167567, - [SMALL_STATE(4388)] = 167596, - [SMALL_STATE(4389)] = 167623, - [SMALL_STATE(4390)] = 167654, - [SMALL_STATE(4391)] = 167681, - [SMALL_STATE(4392)] = 167708, - [SMALL_STATE(4393)] = 167739, - [SMALL_STATE(4394)] = 167766, - [SMALL_STATE(4395)] = 167797, - [SMALL_STATE(4396)] = 167826, - [SMALL_STATE(4397)] = 167853, - [SMALL_STATE(4398)] = 167884, - [SMALL_STATE(4399)] = 167915, - [SMALL_STATE(4400)] = 167946, - [SMALL_STATE(4401)] = 167977, - [SMALL_STATE(4402)] = 168008, - [SMALL_STATE(4403)] = 168039, - [SMALL_STATE(4404)] = 168066, - [SMALL_STATE(4405)] = 168095, - [SMALL_STATE(4406)] = 168130, - [SMALL_STATE(4407)] = 168157, - [SMALL_STATE(4408)] = 168184, - [SMALL_STATE(4409)] = 168211, - [SMALL_STATE(4410)] = 168242, - [SMALL_STATE(4411)] = 168269, - [SMALL_STATE(4412)] = 168296, - [SMALL_STATE(4413)] = 168325, - [SMALL_STATE(4414)] = 168358, - [SMALL_STATE(4415)] = 168385, - [SMALL_STATE(4416)] = 168416, - [SMALL_STATE(4417)] = 168447, - [SMALL_STATE(4418)] = 168474, - [SMALL_STATE(4419)] = 168501, - [SMALL_STATE(4420)] = 168528, - [SMALL_STATE(4421)] = 168559, - [SMALL_STATE(4422)] = 168586, - [SMALL_STATE(4423)] = 168615, - [SMALL_STATE(4424)] = 168642, - [SMALL_STATE(4425)] = 168669, - [SMALL_STATE(4426)] = 168698, - [SMALL_STATE(4427)] = 168727, - [SMALL_STATE(4428)] = 168758, - [SMALL_STATE(4429)] = 168787, - [SMALL_STATE(4430)] = 168818, - [SMALL_STATE(4431)] = 168843, - [SMALL_STATE(4432)] = 168870, - [SMALL_STATE(4433)] = 168901, - [SMALL_STATE(4434)] = 168926, - [SMALL_STATE(4435)] = 168955, - [SMALL_STATE(4436)] = 168980, - [SMALL_STATE(4437)] = 169007, - [SMALL_STATE(4438)] = 169032, - [SMALL_STATE(4439)] = 169063, - [SMALL_STATE(4440)] = 169094, - [SMALL_STATE(4441)] = 169121, - [SMALL_STATE(4442)] = 169148, - [SMALL_STATE(4443)] = 169175, - [SMALL_STATE(4444)] = 169206, - [SMALL_STATE(4445)] = 169233, - [SMALL_STATE(4446)] = 169260, - [SMALL_STATE(4447)] = 169287, - [SMALL_STATE(4448)] = 169318, - [SMALL_STATE(4449)] = 169349, - [SMALL_STATE(4450)] = 169378, - [SMALL_STATE(4451)] = 169409, - [SMALL_STATE(4452)] = 169440, - [SMALL_STATE(4453)] = 169471, - [SMALL_STATE(4454)] = 169504, - [SMALL_STATE(4455)] = 169535, - [SMALL_STATE(4456)] = 169568, - [SMALL_STATE(4457)] = 169601, - [SMALL_STATE(4458)] = 169638, - [SMALL_STATE(4459)] = 169663, - [SMALL_STATE(4460)] = 169692, - [SMALL_STATE(4461)] = 169727, - [SMALL_STATE(4462)] = 169760, - [SMALL_STATE(4463)] = 169793, - [SMALL_STATE(4464)] = 169820, - [SMALL_STATE(4465)] = 169851, - [SMALL_STATE(4466)] = 169882, - [SMALL_STATE(4467)] = 169909, - [SMALL_STATE(4468)] = 169942, - [SMALL_STATE(4469)] = 169975, - [SMALL_STATE(4470)] = 170002, - [SMALL_STATE(4471)] = 170035, - [SMALL_STATE(4472)] = 170070, - [SMALL_STATE(4473)] = 170105, - [SMALL_STATE(4474)] = 170129, - [SMALL_STATE(4475)] = 170159, - [SMALL_STATE(4476)] = 170189, - [SMALL_STATE(4477)] = 170215, - [SMALL_STATE(4478)] = 170241, - [SMALL_STATE(4479)] = 170271, - [SMALL_STATE(4480)] = 170301, - [SMALL_STATE(4481)] = 170331, - [SMALL_STATE(4482)] = 170361, - [SMALL_STATE(4483)] = 170391, - [SMALL_STATE(4484)] = 170437, - [SMALL_STATE(4485)] = 170489, - [SMALL_STATE(4486)] = 170513, - [SMALL_STATE(4487)] = 170537, - [SMALL_STATE(4488)] = 170561, - [SMALL_STATE(4489)] = 170585, - [SMALL_STATE(4490)] = 170609, - [SMALL_STATE(4491)] = 170633, - [SMALL_STATE(4492)] = 170657, - [SMALL_STATE(4493)] = 170681, - [SMALL_STATE(4494)] = 170707, - [SMALL_STATE(4495)] = 170733, - [SMALL_STATE(4496)] = 170761, - [SMALL_STATE(4497)] = 170789, - [SMALL_STATE(4498)] = 170813, - [SMALL_STATE(4499)] = 170839, - [SMALL_STATE(4500)] = 170865, - [SMALL_STATE(4501)] = 170893, - [SMALL_STATE(4502)] = 170921, - [SMALL_STATE(4503)] = 170947, - [SMALL_STATE(4504)] = 170977, - [SMALL_STATE(4505)] = 171003, - [SMALL_STATE(4506)] = 171033, - [SMALL_STATE(4507)] = 171061, - [SMALL_STATE(4508)] = 171091, - [SMALL_STATE(4509)] = 171119, - [SMALL_STATE(4510)] = 171149, - [SMALL_STATE(4511)] = 171177, - [SMALL_STATE(4512)] = 171207, - [SMALL_STATE(4513)] = 171235, - [SMALL_STATE(4514)] = 171265, - [SMALL_STATE(4515)] = 171293, - [SMALL_STATE(4516)] = 171325, - [SMALL_STATE(4517)] = 171351, - [SMALL_STATE(4518)] = 171381, - [SMALL_STATE(4519)] = 171433, - [SMALL_STATE(4520)] = 171459, - [SMALL_STATE(4521)] = 171487, - [SMALL_STATE(4522)] = 171515, - [SMALL_STATE(4523)] = 171567, - [SMALL_STATE(4524)] = 171619, - [SMALL_STATE(4525)] = 171651, - [SMALL_STATE(4526)] = 171703, - [SMALL_STATE(4527)] = 171755, - [SMALL_STATE(4528)] = 171785, - [SMALL_STATE(4529)] = 171815, - [SMALL_STATE(4530)] = 171845, - [SMALL_STATE(4531)] = 171869, - [SMALL_STATE(4532)] = 171897, - [SMALL_STATE(4533)] = 171927, - [SMALL_STATE(4534)] = 171957, - [SMALL_STATE(4535)] = 171987, - [SMALL_STATE(4536)] = 172013, - [SMALL_STATE(4537)] = 172039, - [SMALL_STATE(4538)] = 172069, - [SMALL_STATE(4539)] = 172093, - [SMALL_STATE(4540)] = 172119, - [SMALL_STATE(4541)] = 172145, - [SMALL_STATE(4542)] = 172171, - [SMALL_STATE(4543)] = 172223, - [SMALL_STATE(4544)] = 172253, - [SMALL_STATE(4545)] = 172305, - [SMALL_STATE(4546)] = 172335, - [SMALL_STATE(4547)] = 172365, - [SMALL_STATE(4548)] = 172395, - [SMALL_STATE(4549)] = 172425, - [SMALL_STATE(4550)] = 172449, - [SMALL_STATE(4551)] = 172479, - [SMALL_STATE(4552)] = 172505, - [SMALL_STATE(4553)] = 172531, - [SMALL_STATE(4554)] = 172559, - [SMALL_STATE(4555)] = 172587, - [SMALL_STATE(4556)] = 172617, - [SMALL_STATE(4557)] = 172647, - [SMALL_STATE(4558)] = 172699, - [SMALL_STATE(4559)] = 172751, - [SMALL_STATE(4560)] = 172780, - [SMALL_STATE(4561)] = 172805, - [SMALL_STATE(4562)] = 172832, - [SMALL_STATE(4563)] = 172857, - [SMALL_STATE(4564)] = 172882, - [SMALL_STATE(4565)] = 172907, - [SMALL_STATE(4566)] = 172932, - [SMALL_STATE(4567)] = 172957, - [SMALL_STATE(4568)] = 172982, - [SMALL_STATE(4569)] = 173007, - [SMALL_STATE(4570)] = 173032, - [SMALL_STATE(4571)] = 173057, - [SMALL_STATE(4572)] = 173086, - [SMALL_STATE(4573)] = 173115, - [SMALL_STATE(4574)] = 173142, - [SMALL_STATE(4575)] = 173167, - [SMALL_STATE(4576)] = 173192, - [SMALL_STATE(4577)] = 173221, - [SMALL_STATE(4578)] = 173246, - [SMALL_STATE(4579)] = 173273, - [SMALL_STATE(4580)] = 173302, - [SMALL_STATE(4581)] = 173327, - [SMALL_STATE(4582)] = 173352, - [SMALL_STATE(4583)] = 173377, - [SMALL_STATE(4584)] = 173402, - [SMALL_STATE(4585)] = 173431, - [SMALL_STATE(4586)] = 173456, - [SMALL_STATE(4587)] = 173481, - [SMALL_STATE(4588)] = 173506, - [SMALL_STATE(4589)] = 173531, - [SMALL_STATE(4590)] = 173554, - [SMALL_STATE(4591)] = 173579, - [SMALL_STATE(4592)] = 173604, - [SMALL_STATE(4593)] = 173629, - [SMALL_STATE(4594)] = 173654, - [SMALL_STATE(4595)] = 173679, - [SMALL_STATE(4596)] = 173704, - [SMALL_STATE(4597)] = 173729, - [SMALL_STATE(4598)] = 173754, - [SMALL_STATE(4599)] = 173779, - [SMALL_STATE(4600)] = 173804, - [SMALL_STATE(4601)] = 173833, - [SMALL_STATE(4602)] = 173858, - [SMALL_STATE(4603)] = 173889, - [SMALL_STATE(4604)] = 173914, - [SMALL_STATE(4605)] = 173939, - [SMALL_STATE(4606)] = 173964, - [SMALL_STATE(4607)] = 173989, - [SMALL_STATE(4608)] = 174014, - [SMALL_STATE(4609)] = 174039, - [SMALL_STATE(4610)] = 174064, - [SMALL_STATE(4611)] = 174089, - [SMALL_STATE(4612)] = 174114, - [SMALL_STATE(4613)] = 174139, - [SMALL_STATE(4614)] = 174164, - [SMALL_STATE(4615)] = 174189, - [SMALL_STATE(4616)] = 174214, - [SMALL_STATE(4617)] = 174239, - [SMALL_STATE(4618)] = 174264, - [SMALL_STATE(4619)] = 174289, - [SMALL_STATE(4620)] = 174314, - [SMALL_STATE(4621)] = 174339, - [SMALL_STATE(4622)] = 174362, - [SMALL_STATE(4623)] = 174385, - [SMALL_STATE(4624)] = 174414, - [SMALL_STATE(4625)] = 174443, - [SMALL_STATE(4626)] = 174468, - [SMALL_STATE(4627)] = 174493, - [SMALL_STATE(4628)] = 174522, - [SMALL_STATE(4629)] = 174551, - [SMALL_STATE(4630)] = 174580, - [SMALL_STATE(4631)] = 174609, - [SMALL_STATE(4632)] = 174638, - [SMALL_STATE(4633)] = 174683, - [SMALL_STATE(4634)] = 174712, - [SMALL_STATE(4635)] = 174739, - [SMALL_STATE(4636)] = 174764, - [SMALL_STATE(4637)] = 174789, - [SMALL_STATE(4638)] = 174814, - [SMALL_STATE(4639)] = 174839, - [SMALL_STATE(4640)] = 174870, - [SMALL_STATE(4641)] = 174895, - [SMALL_STATE(4642)] = 174918, - [SMALL_STATE(4643)] = 174947, - [SMALL_STATE(4644)] = 174976, - [SMALL_STATE(4645)] = 175005, - [SMALL_STATE(4646)] = 175046, - [SMALL_STATE(4647)] = 175071, - [SMALL_STATE(4648)] = 175096, - [SMALL_STATE(4649)] = 175121, - [SMALL_STATE(4650)] = 175144, - [SMALL_STATE(4651)] = 175171, - [SMALL_STATE(4652)] = 175200, - [SMALL_STATE(4653)] = 175225, - [SMALL_STATE(4654)] = 175254, - [SMALL_STATE(4655)] = 175281, - [SMALL_STATE(4656)] = 175306, - [SMALL_STATE(4657)] = 175331, - [SMALL_STATE(4658)] = 175358, - [SMALL_STATE(4659)] = 175383, - [SMALL_STATE(4660)] = 175408, - [SMALL_STATE(4661)] = 175433, - [SMALL_STATE(4662)] = 175458, - [SMALL_STATE(4663)] = 175483, - [SMALL_STATE(4664)] = 175508, - [SMALL_STATE(4665)] = 175533, - [SMALL_STATE(4666)] = 175558, - [SMALL_STATE(4667)] = 175583, - [SMALL_STATE(4668)] = 175612, - [SMALL_STATE(4669)] = 175641, - [SMALL_STATE(4670)] = 175670, - [SMALL_STATE(4671)] = 175695, - [SMALL_STATE(4672)] = 175724, - [SMALL_STATE(4673)] = 175749, - [SMALL_STATE(4674)] = 175774, - [SMALL_STATE(4675)] = 175799, - [SMALL_STATE(4676)] = 175828, - [SMALL_STATE(4677)] = 175859, - [SMALL_STATE(4678)] = 175888, - [SMALL_STATE(4679)] = 175917, - [SMALL_STATE(4680)] = 175946, - [SMALL_STATE(4681)] = 175975, - [SMALL_STATE(4682)] = 176000, - [SMALL_STATE(4683)] = 176029, - [SMALL_STATE(4684)] = 176052, - [SMALL_STATE(4685)] = 176077, - [SMALL_STATE(4686)] = 176108, - [SMALL_STATE(4687)] = 176137, - [SMALL_STATE(4688)] = 176166, - [SMALL_STATE(4689)] = 176189, - [SMALL_STATE(4690)] = 176218, - [SMALL_STATE(4691)] = 176247, - [SMALL_STATE(4692)] = 176274, - [SMALL_STATE(4693)] = 176301, - [SMALL_STATE(4694)] = 176326, - [SMALL_STATE(4695)] = 176355, - [SMALL_STATE(4696)] = 176384, - [SMALL_STATE(4697)] = 176409, - [SMALL_STATE(4698)] = 176434, - [SMALL_STATE(4699)] = 176459, - [SMALL_STATE(4700)] = 176488, - [SMALL_STATE(4701)] = 176515, - [SMALL_STATE(4702)] = 176542, - [SMALL_STATE(4703)] = 176571, - [SMALL_STATE(4704)] = 176600, - [SMALL_STATE(4705)] = 176629, - [SMALL_STATE(4706)] = 176654, - [SMALL_STATE(4707)] = 176679, - [SMALL_STATE(4708)] = 176704, - [SMALL_STATE(4709)] = 176729, - [SMALL_STATE(4710)] = 176754, - [SMALL_STATE(4711)] = 176783, - [SMALL_STATE(4712)] = 176812, - [SMALL_STATE(4713)] = 176841, - [SMALL_STATE(4714)] = 176886, - [SMALL_STATE(4715)] = 176915, - [SMALL_STATE(4716)] = 176944, - [SMALL_STATE(4717)] = 176973, - [SMALL_STATE(4718)] = 177002, - [SMALL_STATE(4719)] = 177031, - [SMALL_STATE(4720)] = 177056, - [SMALL_STATE(4721)] = 177085, - [SMALL_STATE(4722)] = 177131, - [SMALL_STATE(4723)] = 177155, - [SMALL_STATE(4724)] = 177179, - [SMALL_STATE(4725)] = 177203, - [SMALL_STATE(4726)] = 177227, - [SMALL_STATE(4727)] = 177251, - [SMALL_STATE(4728)] = 177275, - [SMALL_STATE(4729)] = 177299, - [SMALL_STATE(4730)] = 177323, - [SMALL_STATE(4731)] = 177347, - [SMALL_STATE(4732)] = 177371, - [SMALL_STATE(4733)] = 177395, - [SMALL_STATE(4734)] = 177419, - [SMALL_STATE(4735)] = 177443, - [SMALL_STATE(4736)] = 177467, - [SMALL_STATE(4737)] = 177491, - [SMALL_STATE(4738)] = 177515, - [SMALL_STATE(4739)] = 177539, - [SMALL_STATE(4740)] = 177563, - [SMALL_STATE(4741)] = 177587, - [SMALL_STATE(4742)] = 177629, - [SMALL_STATE(4743)] = 177653, - [SMALL_STATE(4744)] = 177677, - [SMALL_STATE(4745)] = 177701, - [SMALL_STATE(4746)] = 177725, - [SMALL_STATE(4747)] = 177771, - [SMALL_STATE(4748)] = 177817, - [SMALL_STATE(4749)] = 177841, - [SMALL_STATE(4750)] = 177865, - [SMALL_STATE(4751)] = 177889, - [SMALL_STATE(4752)] = 177913, - [SMALL_STATE(4753)] = 177935, - [SMALL_STATE(4754)] = 177957, - [SMALL_STATE(4755)] = 177981, - [SMALL_STATE(4756)] = 178005, - [SMALL_STATE(4757)] = 178031, - [SMALL_STATE(4758)] = 178057, - [SMALL_STATE(4759)] = 178081, - [SMALL_STATE(4760)] = 178107, - [SMALL_STATE(4761)] = 178131, - [SMALL_STATE(4762)] = 178155, - [SMALL_STATE(4763)] = 178179, - [SMALL_STATE(4764)] = 178219, - [SMALL_STATE(4765)] = 178243, - [SMALL_STATE(4766)] = 178267, - [SMALL_STATE(4767)] = 178291, - [SMALL_STATE(4768)] = 178315, - [SMALL_STATE(4769)] = 178359, - [SMALL_STATE(4770)] = 178383, - [SMALL_STATE(4771)] = 178407, - [SMALL_STATE(4772)] = 178431, - [SMALL_STATE(4773)] = 178455, - [SMALL_STATE(4774)] = 178479, - [SMALL_STATE(4775)] = 178503, - [SMALL_STATE(4776)] = 178527, - [SMALL_STATE(4777)] = 178549, - [SMALL_STATE(4778)] = 178571, - [SMALL_STATE(4779)] = 178595, - [SMALL_STATE(4780)] = 178619, - [SMALL_STATE(4781)] = 178643, - [SMALL_STATE(4782)] = 178665, - [SMALL_STATE(4783)] = 178687, - [SMALL_STATE(4784)] = 178709, - [SMALL_STATE(4785)] = 178733, - [SMALL_STATE(4786)] = 178757, - [SMALL_STATE(4787)] = 178781, - [SMALL_STATE(4788)] = 178805, - [SMALL_STATE(4789)] = 178829, - [SMALL_STATE(4790)] = 178853, - [SMALL_STATE(4791)] = 178877, - [SMALL_STATE(4792)] = 178901, - [SMALL_STATE(4793)] = 178925, - [SMALL_STATE(4794)] = 178947, - [SMALL_STATE(4795)] = 178991, - [SMALL_STATE(4796)] = 179013, - [SMALL_STATE(4797)] = 179037, - [SMALL_STATE(4798)] = 179061, - [SMALL_STATE(4799)] = 179083, - [SMALL_STATE(4800)] = 179107, - [SMALL_STATE(4801)] = 179131, - [SMALL_STATE(4802)] = 179173, - [SMALL_STATE(4803)] = 179197, - [SMALL_STATE(4804)] = 179221, - [SMALL_STATE(4805)] = 179245, - [SMALL_STATE(4806)] = 179269, - [SMALL_STATE(4807)] = 179315, - [SMALL_STATE(4808)] = 179339, - [SMALL_STATE(4809)] = 179385, - [SMALL_STATE(4810)] = 179409, - [SMALL_STATE(4811)] = 179433, - [SMALL_STATE(4812)] = 179457, - [SMALL_STATE(4813)] = 179495, - [SMALL_STATE(4814)] = 179519, - [SMALL_STATE(4815)] = 179565, - [SMALL_STATE(4816)] = 179611, - [SMALL_STATE(4817)] = 179657, - [SMALL_STATE(4818)] = 179681, - [SMALL_STATE(4819)] = 179705, - [SMALL_STATE(4820)] = 179729, - [SMALL_STATE(4821)] = 179753, - [SMALL_STATE(4822)] = 179777, - [SMALL_STATE(4823)] = 179801, - [SMALL_STATE(4824)] = 179825, - [SMALL_STATE(4825)] = 179849, - [SMALL_STATE(4826)] = 179873, - [SMALL_STATE(4827)] = 179897, - [SMALL_STATE(4828)] = 179921, - [SMALL_STATE(4829)] = 179945, - [SMALL_STATE(4830)] = 179969, - [SMALL_STATE(4831)] = 179993, - [SMALL_STATE(4832)] = 180017, - [SMALL_STATE(4833)] = 180041, - [SMALL_STATE(4834)] = 180065, - [SMALL_STATE(4835)] = 180089, - [SMALL_STATE(4836)] = 180113, - [SMALL_STATE(4837)] = 180137, - [SMALL_STATE(4838)] = 180161, - [SMALL_STATE(4839)] = 180185, - [SMALL_STATE(4840)] = 180209, - [SMALL_STATE(4841)] = 180233, - [SMALL_STATE(4842)] = 180255, - [SMALL_STATE(4843)] = 180279, - [SMALL_STATE(4844)] = 180303, - [SMALL_STATE(4845)] = 180327, - [SMALL_STATE(4846)] = 180351, - [SMALL_STATE(4847)] = 180375, - [SMALL_STATE(4848)] = 180399, - [SMALL_STATE(4849)] = 180423, - [SMALL_STATE(4850)] = 180447, - [SMALL_STATE(4851)] = 180485, - [SMALL_STATE(4852)] = 180517, - [SMALL_STATE(4853)] = 180549, - [SMALL_STATE(4854)] = 180581, - [SMALL_STATE(4855)] = 180613, - [SMALL_STATE(4856)] = 180645, - [SMALL_STATE(4857)] = 180677, - [SMALL_STATE(4858)] = 180709, - [SMALL_STATE(4859)] = 180741, - [SMALL_STATE(4860)] = 180773, - [SMALL_STATE(4861)] = 180805, - [SMALL_STATE(4862)] = 180837, - [SMALL_STATE(4863)] = 180869, - [SMALL_STATE(4864)] = 180901, - [SMALL_STATE(4865)] = 180933, - [SMALL_STATE(4866)] = 180965, - [SMALL_STATE(4867)] = 180997, - [SMALL_STATE(4868)] = 181029, - [SMALL_STATE(4869)] = 181061, - [SMALL_STATE(4870)] = 181093, - [SMALL_STATE(4871)] = 181125, - [SMALL_STATE(4872)] = 181157, - [SMALL_STATE(4873)] = 181189, - [SMALL_STATE(4874)] = 181211, - [SMALL_STATE(4875)] = 181233, - [SMALL_STATE(4876)] = 181259, - [SMALL_STATE(4877)] = 181283, - [SMALL_STATE(4878)] = 181307, - [SMALL_STATE(4879)] = 181331, - [SMALL_STATE(4880)] = 181353, - [SMALL_STATE(4881)] = 181377, - [SMALL_STATE(4882)] = 181401, - [SMALL_STATE(4883)] = 181447, - [SMALL_STATE(4884)] = 181471, - [SMALL_STATE(4885)] = 181495, - [SMALL_STATE(4886)] = 181517, - [SMALL_STATE(4887)] = 181541, - [SMALL_STATE(4888)] = 181587, - [SMALL_STATE(4889)] = 181611, - [SMALL_STATE(4890)] = 181635, - [SMALL_STATE(4891)] = 181659, - [SMALL_STATE(4892)] = 181683, - [SMALL_STATE(4893)] = 181705, - [SMALL_STATE(4894)] = 181727, - [SMALL_STATE(4895)] = 181749, - [SMALL_STATE(4896)] = 181787, - [SMALL_STATE(4897)] = 181809, - [SMALL_STATE(4898)] = 181833, - [SMALL_STATE(4899)] = 181857, - [SMALL_STATE(4900)] = 181881, - [SMALL_STATE(4901)] = 181905, - [SMALL_STATE(4902)] = 181927, - [SMALL_STATE(4903)] = 181949, - [SMALL_STATE(4904)] = 181973, - [SMALL_STATE(4905)] = 181997, - [SMALL_STATE(4906)] = 182021, - [SMALL_STATE(4907)] = 182043, - [SMALL_STATE(4908)] = 182065, - [SMALL_STATE(4909)] = 182089, - [SMALL_STATE(4910)] = 182113, - [SMALL_STATE(4911)] = 182145, - [SMALL_STATE(4912)] = 182167, - [SMALL_STATE(4913)] = 182189, - [SMALL_STATE(4914)] = 182223, - [SMALL_STATE(4915)] = 182247, - [SMALL_STATE(4916)] = 182271, - [SMALL_STATE(4917)] = 182295, - [SMALL_STATE(4918)] = 182319, - [SMALL_STATE(4919)] = 182361, - [SMALL_STATE(4920)] = 182385, - [SMALL_STATE(4921)] = 182409, - [SMALL_STATE(4922)] = 182433, - [SMALL_STATE(4923)] = 182457, - [SMALL_STATE(4924)] = 182481, - [SMALL_STATE(4925)] = 182505, - [SMALL_STATE(4926)] = 182529, - [SMALL_STATE(4927)] = 182553, - [SMALL_STATE(4928)] = 182577, - [SMALL_STATE(4929)] = 182601, - [SMALL_STATE(4930)] = 182625, - [SMALL_STATE(4931)] = 182653, - [SMALL_STATE(4932)] = 182681, - [SMALL_STATE(4933)] = 182709, - [SMALL_STATE(4934)] = 182737, - [SMALL_STATE(4935)] = 182765, - [SMALL_STATE(4936)] = 182793, - [SMALL_STATE(4937)] = 182821, - [SMALL_STATE(4938)] = 182849, - [SMALL_STATE(4939)] = 182877, - [SMALL_STATE(4940)] = 182905, - [SMALL_STATE(4941)] = 182933, - [SMALL_STATE(4942)] = 182957, - [SMALL_STATE(4943)] = 182985, - [SMALL_STATE(4944)] = 183009, - [SMALL_STATE(4945)] = 183033, - [SMALL_STATE(4946)] = 183057, - [SMALL_STATE(4947)] = 183081, - [SMALL_STATE(4948)] = 183105, - [SMALL_STATE(4949)] = 183129, - [SMALL_STATE(4950)] = 183153, - [SMALL_STATE(4951)] = 183177, - [SMALL_STATE(4952)] = 183201, - [SMALL_STATE(4953)] = 183225, - [SMALL_STATE(4954)] = 183249, - [SMALL_STATE(4955)] = 183273, - [SMALL_STATE(4956)] = 183297, - [SMALL_STATE(4957)] = 183321, - [SMALL_STATE(4958)] = 183345, - [SMALL_STATE(4959)] = 183369, - [SMALL_STATE(4960)] = 183393, - [SMALL_STATE(4961)] = 183417, - [SMALL_STATE(4962)] = 183440, - [SMALL_STATE(4963)] = 183461, - [SMALL_STATE(4964)] = 183482, - [SMALL_STATE(4965)] = 183503, - [SMALL_STATE(4966)] = 183524, - [SMALL_STATE(4967)] = 183545, - [SMALL_STATE(4968)] = 183566, - [SMALL_STATE(4969)] = 183589, - [SMALL_STATE(4970)] = 183630, - [SMALL_STATE(4971)] = 183653, - [SMALL_STATE(4972)] = 183676, - [SMALL_STATE(4973)] = 183699, - [SMALL_STATE(4974)] = 183722, - [SMALL_STATE(4975)] = 183745, - [SMALL_STATE(4976)] = 183768, - [SMALL_STATE(4977)] = 183791, - [SMALL_STATE(4978)] = 183814, - [SMALL_STATE(4979)] = 183837, - [SMALL_STATE(4980)] = 183858, - [SMALL_STATE(4981)] = 183879, - [SMALL_STATE(4982)] = 183920, - [SMALL_STATE(4983)] = 183941, - [SMALL_STATE(4984)] = 183964, - [SMALL_STATE(4985)] = 183985, - [SMALL_STATE(4986)] = 184006, - [SMALL_STATE(4987)] = 184045, - [SMALL_STATE(4988)] = 184066, - [SMALL_STATE(4989)] = 184093, - [SMALL_STATE(4990)] = 184120, - [SMALL_STATE(4991)] = 184141, - [SMALL_STATE(4992)] = 184168, - [SMALL_STATE(4993)] = 184189, - [SMALL_STATE(4994)] = 184210, - [SMALL_STATE(4995)] = 184231, - [SMALL_STATE(4996)] = 184254, - [SMALL_STATE(4997)] = 184289, - [SMALL_STATE(4998)] = 184324, - [SMALL_STATE(4999)] = 184359, - [SMALL_STATE(5000)] = 184394, - [SMALL_STATE(5001)] = 184435, - [SMALL_STATE(5002)] = 184472, - [SMALL_STATE(5003)] = 184499, - [SMALL_STATE(5004)] = 184522, - [SMALL_STATE(5005)] = 184545, - [SMALL_STATE(5006)] = 184566, - [SMALL_STATE(5007)] = 184587, - [SMALL_STATE(5008)] = 184614, - [SMALL_STATE(5009)] = 184635, - [SMALL_STATE(5010)] = 184656, - [SMALL_STATE(5011)] = 184677, - [SMALL_STATE(5012)] = 184698, - [SMALL_STATE(5013)] = 184719, - [SMALL_STATE(5014)] = 184740, - [SMALL_STATE(5015)] = 184767, - [SMALL_STATE(5016)] = 184788, - [SMALL_STATE(5017)] = 184809, - [SMALL_STATE(5018)] = 184832, - [SMALL_STATE(5019)] = 184853, - [SMALL_STATE(5020)] = 184876, - [SMALL_STATE(5021)] = 184897, - [SMALL_STATE(5022)] = 184938, - [SMALL_STATE(5023)] = 184961, - [SMALL_STATE(5024)] = 184984, - [SMALL_STATE(5025)] = 185017, - [SMALL_STATE(5026)] = 185050, - [SMALL_STATE(5027)] = 185071, - [SMALL_STATE(5028)] = 185094, - [SMALL_STATE(5029)] = 185133, - [SMALL_STATE(5030)] = 185154, - [SMALL_STATE(5031)] = 185175, - [SMALL_STATE(5032)] = 185196, - [SMALL_STATE(5033)] = 185219, - [SMALL_STATE(5034)] = 185240, - [SMALL_STATE(5035)] = 185263, - [SMALL_STATE(5036)] = 185284, - [SMALL_STATE(5037)] = 185311, - [SMALL_STATE(5038)] = 185350, - [SMALL_STATE(5039)] = 185389, - [SMALL_STATE(5040)] = 185428, - [SMALL_STATE(5041)] = 185449, - [SMALL_STATE(5042)] = 185470, - [SMALL_STATE(5043)] = 185511, - [SMALL_STATE(5044)] = 185534, - [SMALL_STATE(5045)] = 185555, - [SMALL_STATE(5046)] = 185576, - [SMALL_STATE(5047)] = 185599, - [SMALL_STATE(5048)] = 185620, - [SMALL_STATE(5049)] = 185659, - [SMALL_STATE(5050)] = 185692, - [SMALL_STATE(5051)] = 185713, - [SMALL_STATE(5052)] = 185752, - [SMALL_STATE(5053)] = 185775, - [SMALL_STATE(5054)] = 185808, - [SMALL_STATE(5055)] = 185831, - [SMALL_STATE(5056)] = 185852, - [SMALL_STATE(5057)] = 185873, - [SMALL_STATE(5058)] = 185894, - [SMALL_STATE(5059)] = 185921, - [SMALL_STATE(5060)] = 185942, - [SMALL_STATE(5061)] = 185965, - [SMALL_STATE(5062)] = 185994, - [SMALL_STATE(5063)] = 186021, - [SMALL_STATE(5064)] = 186060, - [SMALL_STATE(5065)] = 186081, - [SMALL_STATE(5066)] = 186102, - [SMALL_STATE(5067)] = 186125, - [SMALL_STATE(5068)] = 186166, - [SMALL_STATE(5069)] = 186187, - [SMALL_STATE(5070)] = 186208, - [SMALL_STATE(5071)] = 186231, - [SMALL_STATE(5072)] = 186252, - [SMALL_STATE(5073)] = 186273, - [SMALL_STATE(5074)] = 186296, - [SMALL_STATE(5075)] = 186317, - [SMALL_STATE(5076)] = 186340, - [SMALL_STATE(5077)] = 186363, - [SMALL_STATE(5078)] = 186386, - [SMALL_STATE(5079)] = 186427, - [SMALL_STATE(5080)] = 186448, - [SMALL_STATE(5081)] = 186469, - [SMALL_STATE(5082)] = 186492, - [SMALL_STATE(5083)] = 186515, - [SMALL_STATE(5084)] = 186552, - [SMALL_STATE(5085)] = 186573, - [SMALL_STATE(5086)] = 186596, - [SMALL_STATE(5087)] = 186619, - [SMALL_STATE(5088)] = 186646, - [SMALL_STATE(5089)] = 186673, - [SMALL_STATE(5090)] = 186700, - [SMALL_STATE(5091)] = 186727, - [SMALL_STATE(5092)] = 186754, - [SMALL_STATE(5093)] = 186781, - [SMALL_STATE(5094)] = 186808, - [SMALL_STATE(5095)] = 186835, - [SMALL_STATE(5096)] = 186862, - [SMALL_STATE(5097)] = 186889, - [SMALL_STATE(5098)] = 186916, - [SMALL_STATE(5099)] = 186939, - [SMALL_STATE(5100)] = 186962, - [SMALL_STATE(5101)] = 186989, - [SMALL_STATE(5102)] = 187012, - [SMALL_STATE(5103)] = 187051, - [SMALL_STATE(5104)] = 187090, - [SMALL_STATE(5105)] = 187111, - [SMALL_STATE(5106)] = 187132, - [SMALL_STATE(5107)] = 187153, - [SMALL_STATE(5108)] = 187174, - [SMALL_STATE(5109)] = 187197, - [SMALL_STATE(5110)] = 187236, - [SMALL_STATE(5111)] = 187263, - [SMALL_STATE(5112)] = 187284, - [SMALL_STATE(5113)] = 187317, - [SMALL_STATE(5114)] = 187358, - [SMALL_STATE(5115)] = 187379, - [SMALL_STATE(5116)] = 187420, - [SMALL_STATE(5117)] = 187447, - [SMALL_STATE(5118)] = 187468, - [SMALL_STATE(5119)] = 187489, - [SMALL_STATE(5120)] = 187516, - [SMALL_STATE(5121)] = 187557, - [SMALL_STATE(5122)] = 187580, - [SMALL_STATE(5123)] = 187601, - [SMALL_STATE(5124)] = 187622, - [SMALL_STATE(5125)] = 187643, - [SMALL_STATE(5126)] = 187664, - [SMALL_STATE(5127)] = 187685, - [SMALL_STATE(5128)] = 187706, - [SMALL_STATE(5129)] = 187729, - [SMALL_STATE(5130)] = 187750, - [SMALL_STATE(5131)] = 187771, - [SMALL_STATE(5132)] = 187792, - [SMALL_STATE(5133)] = 187815, - [SMALL_STATE(5134)] = 187846, - [SMALL_STATE(5135)] = 187869, - [SMALL_STATE(5136)] = 187892, - [SMALL_STATE(5137)] = 187913, - [SMALL_STATE(5138)] = 187934, - [SMALL_STATE(5139)] = 187957, - [SMALL_STATE(5140)] = 187978, - [SMALL_STATE(5141)] = 188017, - [SMALL_STATE(5142)] = 188055, - [SMALL_STATE(5143)] = 188085, - [SMALL_STATE(5144)] = 188115, - [SMALL_STATE(5145)] = 188147, - [SMALL_STATE(5146)] = 188183, - [SMALL_STATE(5147)] = 188215, - [SMALL_STATE(5148)] = 188253, - [SMALL_STATE(5149)] = 188279, - [SMALL_STATE(5150)] = 188305, - [SMALL_STATE(5151)] = 188337, - [SMALL_STATE(5152)] = 188361, - [SMALL_STATE(5153)] = 188397, - [SMALL_STATE(5154)] = 188429, - [SMALL_STATE(5155)] = 188459, - [SMALL_STATE(5156)] = 188497, - [SMALL_STATE(5157)] = 188521, - [SMALL_STATE(5158)] = 188557, - [SMALL_STATE(5159)] = 188581, - [SMALL_STATE(5160)] = 188605, - [SMALL_STATE(5161)] = 188637, - [SMALL_STATE(5162)] = 188663, - [SMALL_STATE(5163)] = 188695, - [SMALL_STATE(5164)] = 188717, - [SMALL_STATE(5165)] = 188741, - [SMALL_STATE(5166)] = 188771, - [SMALL_STATE(5167)] = 188803, - [SMALL_STATE(5168)] = 188827, - [SMALL_STATE(5169)] = 188853, - [SMALL_STATE(5170)] = 188883, - [SMALL_STATE(5171)] = 188907, - [SMALL_STATE(5172)] = 188933, - [SMALL_STATE(5173)] = 188965, - [SMALL_STATE(5174)] = 188995, - [SMALL_STATE(5175)] = 189031, - [SMALL_STATE(5176)] = 189061, - [SMALL_STATE(5177)] = 189091, - [SMALL_STATE(5178)] = 189123, - [SMALL_STATE(5179)] = 189149, - [SMALL_STATE(5180)] = 189175, - [SMALL_STATE(5181)] = 189201, - [SMALL_STATE(5182)] = 189227, - [SMALL_STATE(5183)] = 189253, - [SMALL_STATE(5184)] = 189277, - [SMALL_STATE(5185)] = 189307, - [SMALL_STATE(5186)] = 189339, - [SMALL_STATE(5187)] = 189377, - [SMALL_STATE(5188)] = 189413, - [SMALL_STATE(5189)] = 189449, - [SMALL_STATE(5190)] = 189470, - [SMALL_STATE(5191)] = 189503, - [SMALL_STATE(5192)] = 189524, - [SMALL_STATE(5193)] = 189559, - [SMALL_STATE(5194)] = 189594, - [SMALL_STATE(5195)] = 189623, - [SMALL_STATE(5196)] = 189644, - [SMALL_STATE(5197)] = 189667, - [SMALL_STATE(5198)] = 189690, - [SMALL_STATE(5199)] = 189725, - [SMALL_STATE(5200)] = 189760, - [SMALL_STATE(5201)] = 189783, - [SMALL_STATE(5202)] = 189818, - [SMALL_STATE(5203)] = 189853, - [SMALL_STATE(5204)] = 189888, - [SMALL_STATE(5205)] = 189923, - [SMALL_STATE(5206)] = 189958, - [SMALL_STATE(5207)] = 189989, - [SMALL_STATE(5208)] = 190024, - [SMALL_STATE(5209)] = 190059, - [SMALL_STATE(5210)] = 190088, - [SMALL_STATE(5211)] = 190123, - [SMALL_STATE(5212)] = 190158, - [SMALL_STATE(5213)] = 190193, - [SMALL_STATE(5214)] = 190228, - [SMALL_STATE(5215)] = 190263, - [SMALL_STATE(5216)] = 190298, - [SMALL_STATE(5217)] = 190319, - [SMALL_STATE(5218)] = 190344, - [SMALL_STATE(5219)] = 190379, - [SMALL_STATE(5220)] = 190404, - [SMALL_STATE(5221)] = 190425, - [SMALL_STATE(5222)] = 190454, - [SMALL_STATE(5223)] = 190475, - [SMALL_STATE(5224)] = 190496, - [SMALL_STATE(5225)] = 190517, - [SMALL_STATE(5226)] = 190552, - [SMALL_STATE(5227)] = 190587, - [SMALL_STATE(5228)] = 190608, - [SMALL_STATE(5229)] = 190637, - [SMALL_STATE(5230)] = 190664, - [SMALL_STATE(5231)] = 190697, - [SMALL_STATE(5232)] = 190726, - [SMALL_STATE(5233)] = 190747, - [SMALL_STATE(5234)] = 190782, - [SMALL_STATE(5235)] = 190811, - [SMALL_STATE(5236)] = 190832, - [SMALL_STATE(5237)] = 190853, - [SMALL_STATE(5238)] = 190884, - [SMALL_STATE(5239)] = 190905, - [SMALL_STATE(5240)] = 190926, - [SMALL_STATE(5241)] = 190951, - [SMALL_STATE(5242)] = 190972, - [SMALL_STATE(5243)] = 190993, - [SMALL_STATE(5244)] = 191014, - [SMALL_STATE(5245)] = 191039, - [SMALL_STATE(5246)] = 191068, - [SMALL_STATE(5247)] = 191097, - [SMALL_STATE(5248)] = 191118, - [SMALL_STATE(5249)] = 191145, - [SMALL_STATE(5250)] = 191170, - [SMALL_STATE(5251)] = 191199, - [SMALL_STATE(5252)] = 191224, - [SMALL_STATE(5253)] = 191259, - [SMALL_STATE(5254)] = 191294, - [SMALL_STATE(5255)] = 191329, - [SMALL_STATE(5256)] = 191364, - [SMALL_STATE(5257)] = 191399, - [SMALL_STATE(5258)] = 191420, - [SMALL_STATE(5259)] = 191449, - [SMALL_STATE(5260)] = 191478, - [SMALL_STATE(5261)] = 191513, - [SMALL_STATE(5262)] = 191548, - [SMALL_STATE(5263)] = 191577, - [SMALL_STATE(5264)] = 191606, - [SMALL_STATE(5265)] = 191627, - [SMALL_STATE(5266)] = 191648, - [SMALL_STATE(5267)] = 191669, - [SMALL_STATE(5268)] = 191694, - [SMALL_STATE(5269)] = 191715, - [SMALL_STATE(5270)] = 191736, - [SMALL_STATE(5271)] = 191757, - [SMALL_STATE(5272)] = 191778, - [SMALL_STATE(5273)] = 191799, - [SMALL_STATE(5274)] = 191820, - [SMALL_STATE(5275)] = 191841, - [SMALL_STATE(5276)] = 191866, - [SMALL_STATE(5277)] = 191895, - [SMALL_STATE(5278)] = 191924, - [SMALL_STATE(5279)] = 191953, - [SMALL_STATE(5280)] = 191982, - [SMALL_STATE(5281)] = 192011, - [SMALL_STATE(5282)] = 192040, - [SMALL_STATE(5283)] = 192061, - [SMALL_STATE(5284)] = 192090, - [SMALL_STATE(5285)] = 192119, - [SMALL_STATE(5286)] = 192148, - [SMALL_STATE(5287)] = 192183, - [SMALL_STATE(5288)] = 192218, - [SMALL_STATE(5289)] = 192253, - [SMALL_STATE(5290)] = 192288, - [SMALL_STATE(5291)] = 192309, - [SMALL_STATE(5292)] = 192338, - [SMALL_STATE(5293)] = 192373, - [SMALL_STATE(5294)] = 192408, - [SMALL_STATE(5295)] = 192443, - [SMALL_STATE(5296)] = 192478, - [SMALL_STATE(5297)] = 192513, - [SMALL_STATE(5298)] = 192548, - [SMALL_STATE(5299)] = 192583, - [SMALL_STATE(5300)] = 192618, - [SMALL_STATE(5301)] = 192653, - [SMALL_STATE(5302)] = 192688, - [SMALL_STATE(5303)] = 192723, - [SMALL_STATE(5304)] = 192758, - [SMALL_STATE(5305)] = 192787, - [SMALL_STATE(5306)] = 192822, - [SMALL_STATE(5307)] = 192857, - [SMALL_STATE(5308)] = 192892, - [SMALL_STATE(5309)] = 192921, - [SMALL_STATE(5310)] = 192952, - [SMALL_STATE(5311)] = 192979, - [SMALL_STATE(5312)] = 193008, - [SMALL_STATE(5313)] = 193037, - [SMALL_STATE(5314)] = 193060, - [SMALL_STATE(5315)] = 193089, - [SMALL_STATE(5316)] = 193118, - [SMALL_STATE(5317)] = 193149, - [SMALL_STATE(5318)] = 193182, - [SMALL_STATE(5319)] = 193203, - [SMALL_STATE(5320)] = 193232, - [SMALL_STATE(5321)] = 193255, - [SMALL_STATE(5322)] = 193284, - [SMALL_STATE(5323)] = 193319, - [SMALL_STATE(5324)] = 193352, - [SMALL_STATE(5325)] = 193387, - [SMALL_STATE(5326)] = 193415, - [SMALL_STATE(5327)] = 193435, - [SMALL_STATE(5328)] = 193457, - [SMALL_STATE(5329)] = 193487, - [SMALL_STATE(5330)] = 193517, - [SMALL_STATE(5331)] = 193547, - [SMALL_STATE(5332)] = 193567, - [SMALL_STATE(5333)] = 193589, - [SMALL_STATE(5334)] = 193619, - [SMALL_STATE(5335)] = 193639, - [SMALL_STATE(5336)] = 193663, - [SMALL_STATE(5337)] = 193693, - [SMALL_STATE(5338)] = 193723, - [SMALL_STATE(5339)] = 193751, - [SMALL_STATE(5340)] = 193781, - [SMALL_STATE(5341)] = 193801, - [SMALL_STATE(5342)] = 193831, - [SMALL_STATE(5343)] = 193861, - [SMALL_STATE(5344)] = 193891, - [SMALL_STATE(5345)] = 193921, - [SMALL_STATE(5346)] = 193947, - [SMALL_STATE(5347)] = 193977, - [SMALL_STATE(5348)] = 193999, - [SMALL_STATE(5349)] = 194019, - [SMALL_STATE(5350)] = 194049, - [SMALL_STATE(5351)] = 194073, - [SMALL_STATE(5352)] = 194095, - [SMALL_STATE(5353)] = 194117, - [SMALL_STATE(5354)] = 194139, - [SMALL_STATE(5355)] = 194169, - [SMALL_STATE(5356)] = 194191, - [SMALL_STATE(5357)] = 194221, - [SMALL_STATE(5358)] = 194249, - [SMALL_STATE(5359)] = 194277, - [SMALL_STATE(5360)] = 194301, - [SMALL_STATE(5361)] = 194331, - [SMALL_STATE(5362)] = 194361, - [SMALL_STATE(5363)] = 194381, - [SMALL_STATE(5364)] = 194409, - [SMALL_STATE(5365)] = 194439, - [SMALL_STATE(5366)] = 194459, - [SMALL_STATE(5367)] = 194489, - [SMALL_STATE(5368)] = 194519, - [SMALL_STATE(5369)] = 194549, - [SMALL_STATE(5370)] = 194579, - [SMALL_STATE(5371)] = 194607, - [SMALL_STATE(5372)] = 194637, - [SMALL_STATE(5373)] = 194667, - [SMALL_STATE(5374)] = 194697, - [SMALL_STATE(5375)] = 194717, - [SMALL_STATE(5376)] = 194737, - [SMALL_STATE(5377)] = 194767, - [SMALL_STATE(5378)] = 194795, - [SMALL_STATE(5379)] = 194825, - [SMALL_STATE(5380)] = 194855, - [SMALL_STATE(5381)] = 194875, - [SMALL_STATE(5382)] = 194905, - [SMALL_STATE(5383)] = 194935, - [SMALL_STATE(5384)] = 194959, - [SMALL_STATE(5385)] = 194989, - [SMALL_STATE(5386)] = 195019, - [SMALL_STATE(5387)] = 195049, - [SMALL_STATE(5388)] = 195079, - [SMALL_STATE(5389)] = 195109, - [SMALL_STATE(5390)] = 195139, - [SMALL_STATE(5391)] = 195169, - [SMALL_STATE(5392)] = 195199, - [SMALL_STATE(5393)] = 195229, - [SMALL_STATE(5394)] = 195257, - [SMALL_STATE(5395)] = 195287, - [SMALL_STATE(5396)] = 195317, - [SMALL_STATE(5397)] = 195347, - [SMALL_STATE(5398)] = 195377, - [SMALL_STATE(5399)] = 195407, - [SMALL_STATE(5400)] = 195437, - [SMALL_STATE(5401)] = 195467, - [SMALL_STATE(5402)] = 195497, - [SMALL_STATE(5403)] = 195527, - [SMALL_STATE(5404)] = 195551, - [SMALL_STATE(5405)] = 195575, - [SMALL_STATE(5406)] = 195595, - [SMALL_STATE(5407)] = 195621, - [SMALL_STATE(5408)] = 195651, - [SMALL_STATE(5409)] = 195681, - [SMALL_STATE(5410)] = 195711, - [SMALL_STATE(5411)] = 195735, - [SMALL_STATE(5412)] = 195765, - [SMALL_STATE(5413)] = 195789, - [SMALL_STATE(5414)] = 195819, - [SMALL_STATE(5415)] = 195849, - [SMALL_STATE(5416)] = 195873, - [SMALL_STATE(5417)] = 195903, - [SMALL_STATE(5418)] = 195923, - [SMALL_STATE(5419)] = 195943, - [SMALL_STATE(5420)] = 195965, - [SMALL_STATE(5421)] = 195987, - [SMALL_STATE(5422)] = 196009, - [SMALL_STATE(5423)] = 196029, - [SMALL_STATE(5424)] = 196059, - [SMALL_STATE(5425)] = 196089, - [SMALL_STATE(5426)] = 196114, - [SMALL_STATE(5427)] = 196139, - [SMALL_STATE(5428)] = 196164, - [SMALL_STATE(5429)] = 196189, - [SMALL_STATE(5430)] = 196214, - [SMALL_STATE(5431)] = 196239, - [SMALL_STATE(5432)] = 196264, - [SMALL_STATE(5433)] = 196289, - [SMALL_STATE(5434)] = 196314, - [SMALL_STATE(5435)] = 196339, - [SMALL_STATE(5436)] = 196364, - [SMALL_STATE(5437)] = 196389, - [SMALL_STATE(5438)] = 196414, - [SMALL_STATE(5439)] = 196439, - [SMALL_STATE(5440)] = 196464, - [SMALL_STATE(5441)] = 196489, - [SMALL_STATE(5442)] = 196514, - [SMALL_STATE(5443)] = 196539, - [SMALL_STATE(5444)] = 196564, - [SMALL_STATE(5445)] = 196589, - [SMALL_STATE(5446)] = 196614, - [SMALL_STATE(5447)] = 196639, - [SMALL_STATE(5448)] = 196660, - [SMALL_STATE(5449)] = 196685, - [SMALL_STATE(5450)] = 196704, - [SMALL_STATE(5451)] = 196729, - [SMALL_STATE(5452)] = 196756, - [SMALL_STATE(5453)] = 196781, - [SMALL_STATE(5454)] = 196802, - [SMALL_STATE(5455)] = 196829, - [SMALL_STATE(5456)] = 196856, - [SMALL_STATE(5457)] = 196881, - [SMALL_STATE(5458)] = 196908, - [SMALL_STATE(5459)] = 196927, - [SMALL_STATE(5460)] = 196952, - [SMALL_STATE(5461)] = 196975, - [SMALL_STATE(5462)] = 197000, - [SMALL_STATE(5463)] = 197027, - [SMALL_STATE(5464)] = 197056, - [SMALL_STATE(5465)] = 197075, - [SMALL_STATE(5466)] = 197096, - [SMALL_STATE(5467)] = 197117, - [SMALL_STATE(5468)] = 197138, - [SMALL_STATE(5469)] = 197167, - [SMALL_STATE(5470)] = 197194, - [SMALL_STATE(5471)] = 197221, - [SMALL_STATE(5472)] = 197248, - [SMALL_STATE(5473)] = 197275, - [SMALL_STATE(5474)] = 197294, - [SMALL_STATE(5475)] = 197315, - [SMALL_STATE(5476)] = 197334, - [SMALL_STATE(5477)] = 197353, - [SMALL_STATE(5478)] = 197378, - [SMALL_STATE(5479)] = 197405, - [SMALL_STATE(5480)] = 197432, - [SMALL_STATE(5481)] = 197459, - [SMALL_STATE(5482)] = 197484, - [SMALL_STATE(5483)] = 197509, - [SMALL_STATE(5484)] = 197536, - [SMALL_STATE(5485)] = 197563, - [SMALL_STATE(5486)] = 197590, - [SMALL_STATE(5487)] = 197617, - [SMALL_STATE(5488)] = 197642, - [SMALL_STATE(5489)] = 197669, - [SMALL_STATE(5490)] = 197696, - [SMALL_STATE(5491)] = 197723, - [SMALL_STATE(5492)] = 197750, - [SMALL_STATE(5493)] = 197775, - [SMALL_STATE(5494)] = 197800, - [SMALL_STATE(5495)] = 197827, - [SMALL_STATE(5496)] = 197848, - [SMALL_STATE(5497)] = 197875, - [SMALL_STATE(5498)] = 197902, - [SMALL_STATE(5499)] = 197927, - [SMALL_STATE(5500)] = 197950, - [SMALL_STATE(5501)] = 197977, - [SMALL_STATE(5502)] = 198004, - [SMALL_STATE(5503)] = 198029, - [SMALL_STATE(5504)] = 198056, - [SMALL_STATE(5505)] = 198081, - [SMALL_STATE(5506)] = 198106, - [SMALL_STATE(5507)] = 198133, - [SMALL_STATE(5508)] = 198160, - [SMALL_STATE(5509)] = 198187, - [SMALL_STATE(5510)] = 198212, - [SMALL_STATE(5511)] = 198237, - [SMALL_STATE(5512)] = 198264, - [SMALL_STATE(5513)] = 198285, - [SMALL_STATE(5514)] = 198312, - [SMALL_STATE(5515)] = 198339, - [SMALL_STATE(5516)] = 198358, - [SMALL_STATE(5517)] = 198383, - [SMALL_STATE(5518)] = 198408, - [SMALL_STATE(5519)] = 198435, - [SMALL_STATE(5520)] = 198454, - [SMALL_STATE(5521)] = 198481, - [SMALL_STATE(5522)] = 198500, - [SMALL_STATE(5523)] = 198527, - [SMALL_STATE(5524)] = 198552, - [SMALL_STATE(5525)] = 198579, - [SMALL_STATE(5526)] = 198606, - [SMALL_STATE(5527)] = 198625, - [SMALL_STATE(5528)] = 198652, - [SMALL_STATE(5529)] = 198673, - [SMALL_STATE(5530)] = 198700, - [SMALL_STATE(5531)] = 198723, - [SMALL_STATE(5532)] = 198750, - [SMALL_STATE(5533)] = 198775, - [SMALL_STATE(5534)] = 198802, - [SMALL_STATE(5535)] = 198829, - [SMALL_STATE(5536)] = 198854, - [SMALL_STATE(5537)] = 198881, - [SMALL_STATE(5538)] = 198908, - [SMALL_STATE(5539)] = 198935, - [SMALL_STATE(5540)] = 198962, - [SMALL_STATE(5541)] = 198989, - [SMALL_STATE(5542)] = 199016, - [SMALL_STATE(5543)] = 199043, - [SMALL_STATE(5544)] = 199070, - [SMALL_STATE(5545)] = 199097, - [SMALL_STATE(5546)] = 199122, - [SMALL_STATE(5547)] = 199147, - [SMALL_STATE(5548)] = 199172, - [SMALL_STATE(5549)] = 199197, - [SMALL_STATE(5550)] = 199222, - [SMALL_STATE(5551)] = 199247, - [SMALL_STATE(5552)] = 199272, - [SMALL_STATE(5553)] = 199299, - [SMALL_STATE(5554)] = 199318, - [SMALL_STATE(5555)] = 199343, - [SMALL_STATE(5556)] = 199368, - [SMALL_STATE(5557)] = 199387, - [SMALL_STATE(5558)] = 199406, - [SMALL_STATE(5559)] = 199431, - [SMALL_STATE(5560)] = 199456, - [SMALL_STATE(5561)] = 199481, - [SMALL_STATE(5562)] = 199500, - [SMALL_STATE(5563)] = 199519, - [SMALL_STATE(5564)] = 199538, - [SMALL_STATE(5565)] = 199563, - [SMALL_STATE(5566)] = 199588, - [SMALL_STATE(5567)] = 199613, - [SMALL_STATE(5568)] = 199638, - [SMALL_STATE(5569)] = 199659, - [SMALL_STATE(5570)] = 199680, - [SMALL_STATE(5571)] = 199707, - [SMALL_STATE(5572)] = 199728, - [SMALL_STATE(5573)] = 199753, - [SMALL_STATE(5574)] = 199772, - [SMALL_STATE(5575)] = 199793, - [SMALL_STATE(5576)] = 199814, - [SMALL_STATE(5577)] = 199833, - [SMALL_STATE(5578)] = 199858, - [SMALL_STATE(5579)] = 199883, - [SMALL_STATE(5580)] = 199902, - [SMALL_STATE(5581)] = 199923, - [SMALL_STATE(5582)] = 199948, - [SMALL_STATE(5583)] = 199971, - [SMALL_STATE(5584)] = 199998, - [SMALL_STATE(5585)] = 200023, - [SMALL_STATE(5586)] = 200042, - [SMALL_STATE(5587)] = 200061, - [SMALL_STATE(5588)] = 200086, - [SMALL_STATE(5589)] = 200111, - [SMALL_STATE(5590)] = 200136, - [SMALL_STATE(5591)] = 200161, - [SMALL_STATE(5592)] = 200186, - [SMALL_STATE(5593)] = 200211, - [SMALL_STATE(5594)] = 200236, - [SMALL_STATE(5595)] = 200263, - [SMALL_STATE(5596)] = 200282, - [SMALL_STATE(5597)] = 200307, - [SMALL_STATE(5598)] = 200334, - [SMALL_STATE(5599)] = 200355, - [SMALL_STATE(5600)] = 200377, - [SMALL_STATE(5601)] = 200403, - [SMALL_STATE(5602)] = 200429, - [SMALL_STATE(5603)] = 200455, - [SMALL_STATE(5604)] = 200481, - [SMALL_STATE(5605)] = 200507, - [SMALL_STATE(5606)] = 200533, - [SMALL_STATE(5607)] = 200559, - [SMALL_STATE(5608)] = 200585, - [SMALL_STATE(5609)] = 200603, - [SMALL_STATE(5610)] = 200629, - [SMALL_STATE(5611)] = 200647, - [SMALL_STATE(5612)] = 200665, - [SMALL_STATE(5613)] = 200683, - [SMALL_STATE(5614)] = 200709, - [SMALL_STATE(5615)] = 200729, - [SMALL_STATE(5616)] = 200747, - [SMALL_STATE(5617)] = 200765, - [SMALL_STATE(5618)] = 200783, - [SMALL_STATE(5619)] = 200809, - [SMALL_STATE(5620)] = 200835, - [SMALL_STATE(5621)] = 200861, - [SMALL_STATE(5622)] = 200887, - [SMALL_STATE(5623)] = 200905, - [SMALL_STATE(5624)] = 200931, - [SMALL_STATE(5625)] = 200955, - [SMALL_STATE(5626)] = 200977, - [SMALL_STATE(5627)] = 200999, - [SMALL_STATE(5628)] = 201021, - [SMALL_STATE(5629)] = 201045, - [SMALL_STATE(5630)] = 201069, - [SMALL_STATE(5631)] = 201087, - [SMALL_STATE(5632)] = 201105, - [SMALL_STATE(5633)] = 201123, - [SMALL_STATE(5634)] = 201147, - [SMALL_STATE(5635)] = 201173, - [SMALL_STATE(5636)] = 201193, - [SMALL_STATE(5637)] = 201211, - [SMALL_STATE(5638)] = 201229, - [SMALL_STATE(5639)] = 201251, - [SMALL_STATE(5640)] = 201271, - [SMALL_STATE(5641)] = 201297, - [SMALL_STATE(5642)] = 201325, - [SMALL_STATE(5643)] = 201347, - [SMALL_STATE(5644)] = 201365, - [SMALL_STATE(5645)] = 201391, - [SMALL_STATE(5646)] = 201411, - [SMALL_STATE(5647)] = 201437, - [SMALL_STATE(5648)] = 201463, - [SMALL_STATE(5649)] = 201481, - [SMALL_STATE(5650)] = 201507, - [SMALL_STATE(5651)] = 201529, - [SMALL_STATE(5652)] = 201547, - [SMALL_STATE(5653)] = 201565, - [SMALL_STATE(5654)] = 201593, - [SMALL_STATE(5655)] = 201619, - [SMALL_STATE(5656)] = 201645, - [SMALL_STATE(5657)] = 201663, - [SMALL_STATE(5658)] = 201681, - [SMALL_STATE(5659)] = 201701, - [SMALL_STATE(5660)] = 201727, - [SMALL_STATE(5661)] = 201749, - [SMALL_STATE(5662)] = 201771, - [SMALL_STATE(5663)] = 201791, - [SMALL_STATE(5664)] = 201809, - [SMALL_STATE(5665)] = 201835, - [SMALL_STATE(5666)] = 201859, - [SMALL_STATE(5667)] = 201875, - [SMALL_STATE(5668)] = 201893, - [SMALL_STATE(5669)] = 201919, - [SMALL_STATE(5670)] = 201937, - [SMALL_STATE(5671)] = 201963, - [SMALL_STATE(5672)] = 201981, - [SMALL_STATE(5673)] = 201999, - [SMALL_STATE(5674)] = 202025, - [SMALL_STATE(5675)] = 202047, - [SMALL_STATE(5676)] = 202069, - [SMALL_STATE(5677)] = 202095, - [SMALL_STATE(5678)] = 202115, - [SMALL_STATE(5679)] = 202141, - [SMALL_STATE(5680)] = 202167, - [SMALL_STATE(5681)] = 202193, - [SMALL_STATE(5682)] = 202219, - [SMALL_STATE(5683)] = 202239, - [SMALL_STATE(5684)] = 202259, - [SMALL_STATE(5685)] = 202279, - [SMALL_STATE(5686)] = 202303, - [SMALL_STATE(5687)] = 202321, - [SMALL_STATE(5688)] = 202339, - [SMALL_STATE(5689)] = 202365, - [SMALL_STATE(5690)] = 202383, - [SMALL_STATE(5691)] = 202401, - [SMALL_STATE(5692)] = 202421, - [SMALL_STATE(5693)] = 202439, - [SMALL_STATE(5694)] = 202457, - [SMALL_STATE(5695)] = 202475, - [SMALL_STATE(5696)] = 202501, - [SMALL_STATE(5697)] = 202517, - [SMALL_STATE(5698)] = 202535, - [SMALL_STATE(5699)] = 202558, - [SMALL_STATE(5700)] = 202575, - [SMALL_STATE(5701)] = 202594, - [SMALL_STATE(5702)] = 202611, - [SMALL_STATE(5703)] = 202634, - [SMALL_STATE(5704)] = 202659, - [SMALL_STATE(5705)] = 202684, - [SMALL_STATE(5706)] = 202707, - [SMALL_STATE(5707)] = 202732, - [SMALL_STATE(5708)] = 202757, - [SMALL_STATE(5709)] = 202778, - [SMALL_STATE(5710)] = 202799, - [SMALL_STATE(5711)] = 202824, - [SMALL_STATE(5712)] = 202845, - [SMALL_STATE(5713)] = 202870, - [SMALL_STATE(5714)] = 202891, - [SMALL_STATE(5715)] = 202914, - [SMALL_STATE(5716)] = 202939, - [SMALL_STATE(5717)] = 202964, - [SMALL_STATE(5718)] = 202987, - [SMALL_STATE(5719)] = 203004, - [SMALL_STATE(5720)] = 203029, - [SMALL_STATE(5721)] = 203050, - [SMALL_STATE(5722)] = 203075, - [SMALL_STATE(5723)] = 203100, - [SMALL_STATE(5724)] = 203119, - [SMALL_STATE(5725)] = 203144, - [SMALL_STATE(5726)] = 203165, - [SMALL_STATE(5727)] = 203186, - [SMALL_STATE(5728)] = 203211, - [SMALL_STATE(5729)] = 203234, - [SMALL_STATE(5730)] = 203259, - [SMALL_STATE(5731)] = 203284, - [SMALL_STATE(5732)] = 203303, - [SMALL_STATE(5733)] = 203326, - [SMALL_STATE(5734)] = 203351, - [SMALL_STATE(5735)] = 203376, - [SMALL_STATE(5736)] = 203401, - [SMALL_STATE(5737)] = 203422, - [SMALL_STATE(5738)] = 203441, - [SMALL_STATE(5739)] = 203466, - [SMALL_STATE(5740)] = 203485, - [SMALL_STATE(5741)] = 203508, - [SMALL_STATE(5742)] = 203533, - [SMALL_STATE(5743)] = 203556, - [SMALL_STATE(5744)] = 203579, - [SMALL_STATE(5745)] = 203604, - [SMALL_STATE(5746)] = 203627, - [SMALL_STATE(5747)] = 203652, - [SMALL_STATE(5748)] = 203677, - [SMALL_STATE(5749)] = 203698, - [SMALL_STATE(5750)] = 203717, - [SMALL_STATE(5751)] = 203736, - [SMALL_STATE(5752)] = 203759, - [SMALL_STATE(5753)] = 203782, - [SMALL_STATE(5754)] = 203807, - [SMALL_STATE(5755)] = 203826, - [SMALL_STATE(5756)] = 203851, - [SMALL_STATE(5757)] = 203872, - [SMALL_STATE(5758)] = 203897, - [SMALL_STATE(5759)] = 203912, - [SMALL_STATE(5760)] = 203935, - [SMALL_STATE(5761)] = 203958, - [SMALL_STATE(5762)] = 203983, - [SMALL_STATE(5763)] = 204008, - [SMALL_STATE(5764)] = 204033, - [SMALL_STATE(5765)] = 204050, - [SMALL_STATE(5766)] = 204073, - [SMALL_STATE(5767)] = 204096, - [SMALL_STATE(5768)] = 204121, - [SMALL_STATE(5769)] = 204146, - [SMALL_STATE(5770)] = 204171, - [SMALL_STATE(5771)] = 204192, - [SMALL_STATE(5772)] = 204215, - [SMALL_STATE(5773)] = 204238, - [SMALL_STATE(5774)] = 204263, - [SMALL_STATE(5775)] = 204280, - [SMALL_STATE(5776)] = 204305, - [SMALL_STATE(5777)] = 204326, - [SMALL_STATE(5778)] = 204351, - [SMALL_STATE(5779)] = 204372, - [SMALL_STATE(5780)] = 204397, - [SMALL_STATE(5781)] = 204420, - [SMALL_STATE(5782)] = 204437, - [SMALL_STATE(5783)] = 204454, - [SMALL_STATE(5784)] = 204479, - [SMALL_STATE(5785)] = 204504, - [SMALL_STATE(5786)] = 204529, - [SMALL_STATE(5787)] = 204550, - [SMALL_STATE(5788)] = 204569, - [SMALL_STATE(5789)] = 204586, - [SMALL_STATE(5790)] = 204611, - [SMALL_STATE(5791)] = 204636, - [SMALL_STATE(5792)] = 204653, - [SMALL_STATE(5793)] = 204670, - [SMALL_STATE(5794)] = 204695, - [SMALL_STATE(5795)] = 204718, - [SMALL_STATE(5796)] = 204743, - [SMALL_STATE(5797)] = 204760, - [SMALL_STATE(5798)] = 204777, - [SMALL_STATE(5799)] = 204794, - [SMALL_STATE(5800)] = 204819, - [SMALL_STATE(5801)] = 204836, - [SMALL_STATE(5802)] = 204861, - [SMALL_STATE(5803)] = 204886, - [SMALL_STATE(5804)] = 204911, - [SMALL_STATE(5805)] = 204936, - [SMALL_STATE(5806)] = 204961, - [SMALL_STATE(5807)] = 204978, - [SMALL_STATE(5808)] = 205003, - [SMALL_STATE(5809)] = 205026, - [SMALL_STATE(5810)] = 205051, - [SMALL_STATE(5811)] = 205076, - [SMALL_STATE(5812)] = 205101, - [SMALL_STATE(5813)] = 205126, - [SMALL_STATE(5814)] = 205147, - [SMALL_STATE(5815)] = 205168, - [SMALL_STATE(5816)] = 205193, - [SMALL_STATE(5817)] = 205214, - [SMALL_STATE(5818)] = 205237, - [SMALL_STATE(5819)] = 205254, - [SMALL_STATE(5820)] = 205273, - [SMALL_STATE(5821)] = 205290, - [SMALL_STATE(5822)] = 205307, - [SMALL_STATE(5823)] = 205332, - [SMALL_STATE(5824)] = 205357, - [SMALL_STATE(5825)] = 205380, - [SMALL_STATE(5826)] = 205401, - [SMALL_STATE(5827)] = 205420, - [SMALL_STATE(5828)] = 205443, - [SMALL_STATE(5829)] = 205460, - [SMALL_STATE(5830)] = 205477, - [SMALL_STATE(5831)] = 205494, - [SMALL_STATE(5832)] = 205515, - [SMALL_STATE(5833)] = 205534, - [SMALL_STATE(5834)] = 205553, - [SMALL_STATE(5835)] = 205572, - [SMALL_STATE(5836)] = 205591, - [SMALL_STATE(5837)] = 205616, - [SMALL_STATE(5838)] = 205633, - [SMALL_STATE(5839)] = 205658, - [SMALL_STATE(5840)] = 205679, - [SMALL_STATE(5841)] = 205696, - [SMALL_STATE(5842)] = 205713, - [SMALL_STATE(5843)] = 205736, - [SMALL_STATE(5844)] = 205761, - [SMALL_STATE(5845)] = 205786, - [SMALL_STATE(5846)] = 205811, - [SMALL_STATE(5847)] = 205828, - [SMALL_STATE(5848)] = 205845, - [SMALL_STATE(5849)] = 205862, - [SMALL_STATE(5850)] = 205879, - [SMALL_STATE(5851)] = 205896, - [SMALL_STATE(5852)] = 205921, - [SMALL_STATE(5853)] = 205940, - [SMALL_STATE(5854)] = 205965, - [SMALL_STATE(5855)] = 205990, - [SMALL_STATE(5856)] = 206007, - [SMALL_STATE(5857)] = 206024, - [SMALL_STATE(5858)] = 206041, - [SMALL_STATE(5859)] = 206058, - [SMALL_STATE(5860)] = 206075, - [SMALL_STATE(5861)] = 206100, - [SMALL_STATE(5862)] = 206121, - [SMALL_STATE(5863)] = 206138, - [SMALL_STATE(5864)] = 206161, - [SMALL_STATE(5865)] = 206186, - [SMALL_STATE(5866)] = 206211, - [SMALL_STATE(5867)] = 206230, - [SMALL_STATE(5868)] = 206249, - [SMALL_STATE(5869)] = 206266, - [SMALL_STATE(5870)] = 206283, - [SMALL_STATE(5871)] = 206308, - [SMALL_STATE(5872)] = 206331, - [SMALL_STATE(5873)] = 206356, - [SMALL_STATE(5874)] = 206379, - [SMALL_STATE(5875)] = 206396, - [SMALL_STATE(5876)] = 206413, - [SMALL_STATE(5877)] = 206430, - [SMALL_STATE(5878)] = 206447, - [SMALL_STATE(5879)] = 206464, - [SMALL_STATE(5880)] = 206481, - [SMALL_STATE(5881)] = 206498, - [SMALL_STATE(5882)] = 206521, - [SMALL_STATE(5883)] = 206538, - [SMALL_STATE(5884)] = 206555, - [SMALL_STATE(5885)] = 206572, - [SMALL_STATE(5886)] = 206589, - [SMALL_STATE(5887)] = 206606, - [SMALL_STATE(5888)] = 206623, - [SMALL_STATE(5889)] = 206648, - [SMALL_STATE(5890)] = 206673, - [SMALL_STATE(5891)] = 206690, - [SMALL_STATE(5892)] = 206709, - [SMALL_STATE(5893)] = 206726, - [SMALL_STATE(5894)] = 206743, - [SMALL_STATE(5895)] = 206768, - [SMALL_STATE(5896)] = 206785, - [SMALL_STATE(5897)] = 206810, - [SMALL_STATE(5898)] = 206833, - [SMALL_STATE(5899)] = 206858, - [SMALL_STATE(5900)] = 206883, - [SMALL_STATE(5901)] = 206900, - [SMALL_STATE(5902)] = 206917, - [SMALL_STATE(5903)] = 206940, - [SMALL_STATE(5904)] = 206965, - [SMALL_STATE(5905)] = 206990, - [SMALL_STATE(5906)] = 207007, - [SMALL_STATE(5907)] = 207032, - [SMALL_STATE(5908)] = 207057, - [SMALL_STATE(5909)] = 207080, - [SMALL_STATE(5910)] = 207105, - [SMALL_STATE(5911)] = 207130, - [SMALL_STATE(5912)] = 207155, - [SMALL_STATE(5913)] = 207178, - [SMALL_STATE(5914)] = 207203, - [SMALL_STATE(5915)] = 207228, - [SMALL_STATE(5916)] = 207253, - [SMALL_STATE(5917)] = 207270, - [SMALL_STATE(5918)] = 207287, - [SMALL_STATE(5919)] = 207304, - [SMALL_STATE(5920)] = 207329, - [SMALL_STATE(5921)] = 207348, - [SMALL_STATE(5922)] = 207367, - [SMALL_STATE(5923)] = 207388, - [SMALL_STATE(5924)] = 207409, - [SMALL_STATE(5925)] = 207434, - [SMALL_STATE(5926)] = 207459, - [SMALL_STATE(5927)] = 207476, - [SMALL_STATE(5928)] = 207501, - [SMALL_STATE(5929)] = 207518, - [SMALL_STATE(5930)] = 207540, - [SMALL_STATE(5931)] = 207562, - [SMALL_STATE(5932)] = 207584, - [SMALL_STATE(5933)] = 207606, - [SMALL_STATE(5934)] = 207624, - [SMALL_STATE(5935)] = 207638, - [SMALL_STATE(5936)] = 207652, - [SMALL_STATE(5937)] = 207674, - [SMALL_STATE(5938)] = 207692, - [SMALL_STATE(5939)] = 207710, - [SMALL_STATE(5940)] = 207726, - [SMALL_STATE(5941)] = 207748, - [SMALL_STATE(5942)] = 207770, - [SMALL_STATE(5943)] = 207790, - [SMALL_STATE(5944)] = 207812, - [SMALL_STATE(5945)] = 207830, - [SMALL_STATE(5946)] = 207852, - [SMALL_STATE(5947)] = 207874, - [SMALL_STATE(5948)] = 207888, - [SMALL_STATE(5949)] = 207906, - [SMALL_STATE(5950)] = 207928, - [SMALL_STATE(5951)] = 207950, - [SMALL_STATE(5952)] = 207972, - [SMALL_STATE(5953)] = 207992, - [SMALL_STATE(5954)] = 208006, - [SMALL_STATE(5955)] = 208026, - [SMALL_STATE(5956)] = 208048, - [SMALL_STATE(5957)] = 208066, - [SMALL_STATE(5958)] = 208088, - [SMALL_STATE(5959)] = 208108, - [SMALL_STATE(5960)] = 208130, - [SMALL_STATE(5961)] = 208152, - [SMALL_STATE(5962)] = 208170, - [SMALL_STATE(5963)] = 208188, - [SMALL_STATE(5964)] = 208210, - [SMALL_STATE(5965)] = 208232, - [SMALL_STATE(5966)] = 208246, - [SMALL_STATE(5967)] = 208268, - [SMALL_STATE(5968)] = 208290, - [SMALL_STATE(5969)] = 208304, - [SMALL_STATE(5970)] = 208318, - [SMALL_STATE(5971)] = 208332, - [SMALL_STATE(5972)] = 208346, - [SMALL_STATE(5973)] = 208368, - [SMALL_STATE(5974)] = 208382, - [SMALL_STATE(5975)] = 208404, - [SMALL_STATE(5976)] = 208426, - [SMALL_STATE(5977)] = 208444, - [SMALL_STATE(5978)] = 208466, - [SMALL_STATE(5979)] = 208480, - [SMALL_STATE(5980)] = 208502, - [SMALL_STATE(5981)] = 208524, - [SMALL_STATE(5982)] = 208538, - [SMALL_STATE(5983)] = 208560, - [SMALL_STATE(5984)] = 208574, - [SMALL_STATE(5985)] = 208596, - [SMALL_STATE(5986)] = 208618, - [SMALL_STATE(5987)] = 208640, - [SMALL_STATE(5988)] = 208662, - [SMALL_STATE(5989)] = 208676, - [SMALL_STATE(5990)] = 208690, - [SMALL_STATE(5991)] = 208706, - [SMALL_STATE(5992)] = 208720, - [SMALL_STATE(5993)] = 208742, - [SMALL_STATE(5994)] = 208756, - [SMALL_STATE(5995)] = 208778, - [SMALL_STATE(5996)] = 208796, - [SMALL_STATE(5997)] = 208812, - [SMALL_STATE(5998)] = 208834, - [SMALL_STATE(5999)] = 208856, - [SMALL_STATE(6000)] = 208878, - [SMALL_STATE(6001)] = 208900, - [SMALL_STATE(6002)] = 208918, - [SMALL_STATE(6003)] = 208940, - [SMALL_STATE(6004)] = 208954, - [SMALL_STATE(6005)] = 208968, - [SMALL_STATE(6006)] = 208988, - [SMALL_STATE(6007)] = 209010, - [SMALL_STATE(6008)] = 209028, - [SMALL_STATE(6009)] = 209042, - [SMALL_STATE(6010)] = 209056, - [SMALL_STATE(6011)] = 209074, - [SMALL_STATE(6012)] = 209092, - [SMALL_STATE(6013)] = 209110, - [SMALL_STATE(6014)] = 209132, - [SMALL_STATE(6015)] = 209150, - [SMALL_STATE(6016)] = 209168, - [SMALL_STATE(6017)] = 209190, - [SMALL_STATE(6018)] = 209204, - [SMALL_STATE(6019)] = 209218, - [SMALL_STATE(6020)] = 209240, - [SMALL_STATE(6021)] = 209262, - [SMALL_STATE(6022)] = 209284, - [SMALL_STATE(6023)] = 209304, - [SMALL_STATE(6024)] = 209326, - [SMALL_STATE(6025)] = 209340, - [SMALL_STATE(6026)] = 209354, - [SMALL_STATE(6027)] = 209368, - [SMALL_STATE(6028)] = 209390, - [SMALL_STATE(6029)] = 209412, - [SMALL_STATE(6030)] = 209430, - [SMALL_STATE(6031)] = 209452, - [SMALL_STATE(6032)] = 209474, - [SMALL_STATE(6033)] = 209496, - [SMALL_STATE(6034)] = 209518, - [SMALL_STATE(6035)] = 209540, - [SMALL_STATE(6036)] = 209562, - [SMALL_STATE(6037)] = 209576, - [SMALL_STATE(6038)] = 209594, - [SMALL_STATE(6039)] = 209614, - [SMALL_STATE(6040)] = 209628, - [SMALL_STATE(6041)] = 209650, - [SMALL_STATE(6042)] = 209666, - [SMALL_STATE(6043)] = 209686, - [SMALL_STATE(6044)] = 209700, - [SMALL_STATE(6045)] = 209714, - [SMALL_STATE(6046)] = 209732, - [SMALL_STATE(6047)] = 209754, - [SMALL_STATE(6048)] = 209776, - [SMALL_STATE(6049)] = 209790, - [SMALL_STATE(6050)] = 209804, - [SMALL_STATE(6051)] = 209826, - [SMALL_STATE(6052)] = 209840, - [SMALL_STATE(6053)] = 209862, - [SMALL_STATE(6054)] = 209876, - [SMALL_STATE(6055)] = 209898, - [SMALL_STATE(6056)] = 209920, - [SMALL_STATE(6057)] = 209934, - [SMALL_STATE(6058)] = 209954, - [SMALL_STATE(6059)] = 209968, - [SMALL_STATE(6060)] = 209982, - [SMALL_STATE(6061)] = 210004, - [SMALL_STATE(6062)] = 210026, - [SMALL_STATE(6063)] = 210048, - [SMALL_STATE(6064)] = 210062, - [SMALL_STATE(6065)] = 210084, - [SMALL_STATE(6066)] = 210106, - [SMALL_STATE(6067)] = 210120, - [SMALL_STATE(6068)] = 210134, - [SMALL_STATE(6069)] = 210152, - [SMALL_STATE(6070)] = 210166, - [SMALL_STATE(6071)] = 210180, - [SMALL_STATE(6072)] = 210202, - [SMALL_STATE(6073)] = 210220, - [SMALL_STATE(6074)] = 210240, - [SMALL_STATE(6075)] = 210254, - [SMALL_STATE(6076)] = 210270, - [SMALL_STATE(6077)] = 210290, - [SMALL_STATE(6078)] = 210312, - [SMALL_STATE(6079)] = 210334, - [SMALL_STATE(6080)] = 210348, - [SMALL_STATE(6081)] = 210370, - [SMALL_STATE(6082)] = 210392, - [SMALL_STATE(6083)] = 210414, - [SMALL_STATE(6084)] = 210436, - [SMALL_STATE(6085)] = 210458, - [SMALL_STATE(6086)] = 210480, - [SMALL_STATE(6087)] = 210502, - [SMALL_STATE(6088)] = 210516, - [SMALL_STATE(6089)] = 210538, - [SMALL_STATE(6090)] = 210560, - [SMALL_STATE(6091)] = 210574, - [SMALL_STATE(6092)] = 210596, - [SMALL_STATE(6093)] = 210618, - [SMALL_STATE(6094)] = 210640, - [SMALL_STATE(6095)] = 210654, - [SMALL_STATE(6096)] = 210668, - [SMALL_STATE(6097)] = 210690, - [SMALL_STATE(6098)] = 210708, - [SMALL_STATE(6099)] = 210730, - [SMALL_STATE(6100)] = 210752, - [SMALL_STATE(6101)] = 210766, - [SMALL_STATE(6102)] = 210788, - [SMALL_STATE(6103)] = 210810, - [SMALL_STATE(6104)] = 210832, - [SMALL_STATE(6105)] = 210852, - [SMALL_STATE(6106)] = 210870, - [SMALL_STATE(6107)] = 210890, - [SMALL_STATE(6108)] = 210912, - [SMALL_STATE(6109)] = 210934, - [SMALL_STATE(6110)] = 210956, - [SMALL_STATE(6111)] = 210972, - [SMALL_STATE(6112)] = 210994, - [SMALL_STATE(6113)] = 211016, - [SMALL_STATE(6114)] = 211038, - [SMALL_STATE(6115)] = 211052, - [SMALL_STATE(6116)] = 211066, - [SMALL_STATE(6117)] = 211088, - [SMALL_STATE(6118)] = 211110, - [SMALL_STATE(6119)] = 211132, - [SMALL_STATE(6120)] = 211154, - [SMALL_STATE(6121)] = 211176, - [SMALL_STATE(6122)] = 211198, - [SMALL_STATE(6123)] = 211220, - [SMALL_STATE(6124)] = 211234, - [SMALL_STATE(6125)] = 211256, - [SMALL_STATE(6126)] = 211278, - [SMALL_STATE(6127)] = 211300, - [SMALL_STATE(6128)] = 211322, - [SMALL_STATE(6129)] = 211344, - [SMALL_STATE(6130)] = 211366, - [SMALL_STATE(6131)] = 211388, - [SMALL_STATE(6132)] = 211410, - [SMALL_STATE(6133)] = 211432, - [SMALL_STATE(6134)] = 211454, - [SMALL_STATE(6135)] = 211476, - [SMALL_STATE(6136)] = 211498, - [SMALL_STATE(6137)] = 211520, - [SMALL_STATE(6138)] = 211542, - [SMALL_STATE(6139)] = 211564, - [SMALL_STATE(6140)] = 211586, - [SMALL_STATE(6141)] = 211608, - [SMALL_STATE(6142)] = 211630, - [SMALL_STATE(6143)] = 211652, - [SMALL_STATE(6144)] = 211674, - [SMALL_STATE(6145)] = 211694, - [SMALL_STATE(6146)] = 211716, - [SMALL_STATE(6147)] = 211738, - [SMALL_STATE(6148)] = 211752, - [SMALL_STATE(6149)] = 211766, - [SMALL_STATE(6150)] = 211784, - [SMALL_STATE(6151)] = 211806, - [SMALL_STATE(6152)] = 211828, - [SMALL_STATE(6153)] = 211850, - [SMALL_STATE(6154)] = 211866, - [SMALL_STATE(6155)] = 211888, - [SMALL_STATE(6156)] = 211910, - [SMALL_STATE(6157)] = 211924, - [SMALL_STATE(6158)] = 211938, - [SMALL_STATE(6159)] = 211960, - [SMALL_STATE(6160)] = 211980, - [SMALL_STATE(6161)] = 212000, - [SMALL_STATE(6162)] = 212022, - [SMALL_STATE(6163)] = 212036, - [SMALL_STATE(6164)] = 212058, - [SMALL_STATE(6165)] = 212080, - [SMALL_STATE(6166)] = 212098, - [SMALL_STATE(6167)] = 212120, - [SMALL_STATE(6168)] = 212134, - [SMALL_STATE(6169)] = 212149, - [SMALL_STATE(6170)] = 212162, - [SMALL_STATE(6171)] = 212175, - [SMALL_STATE(6172)] = 212192, - [SMALL_STATE(6173)] = 212211, - [SMALL_STATE(6174)] = 212230, - [SMALL_STATE(6175)] = 212249, - [SMALL_STATE(6176)] = 212264, - [SMALL_STATE(6177)] = 212281, - [SMALL_STATE(6178)] = 212294, - [SMALL_STATE(6179)] = 212307, - [SMALL_STATE(6180)] = 212320, - [SMALL_STATE(6181)] = 212333, - [SMALL_STATE(6182)] = 212352, - [SMALL_STATE(6183)] = 212367, - [SMALL_STATE(6184)] = 212384, - [SMALL_STATE(6185)] = 212401, - [SMALL_STATE(6186)] = 212416, - [SMALL_STATE(6187)] = 212435, - [SMALL_STATE(6188)] = 212452, - [SMALL_STATE(6189)] = 212471, - [SMALL_STATE(6190)] = 212488, - [SMALL_STATE(6191)] = 212505, - [SMALL_STATE(6192)] = 212524, - [SMALL_STATE(6193)] = 212539, - [SMALL_STATE(6194)] = 212552, - [SMALL_STATE(6195)] = 212565, - [SMALL_STATE(6196)] = 212578, - [SMALL_STATE(6197)] = 212591, - [SMALL_STATE(6198)] = 212604, - [SMALL_STATE(6199)] = 212617, - [SMALL_STATE(6200)] = 212630, - [SMALL_STATE(6201)] = 212643, - [SMALL_STATE(6202)] = 212656, - [SMALL_STATE(6203)] = 212669, - [SMALL_STATE(6204)] = 212682, - [SMALL_STATE(6205)] = 212699, - [SMALL_STATE(6206)] = 212716, - [SMALL_STATE(6207)] = 212729, - [SMALL_STATE(6208)] = 212742, - [SMALL_STATE(6209)] = 212759, - [SMALL_STATE(6210)] = 212778, - [SMALL_STATE(6211)] = 212797, - [SMALL_STATE(6212)] = 212816, - [SMALL_STATE(6213)] = 212835, - [SMALL_STATE(6214)] = 212854, - [SMALL_STATE(6215)] = 212871, - [SMALL_STATE(6216)] = 212886, - [SMALL_STATE(6217)] = 212905, - [SMALL_STATE(6218)] = 212924, - [SMALL_STATE(6219)] = 212937, - [SMALL_STATE(6220)] = 212956, - [SMALL_STATE(6221)] = 212971, - [SMALL_STATE(6222)] = 212986, - [SMALL_STATE(6223)] = 213005, - [SMALL_STATE(6224)] = 213024, - [SMALL_STATE(6225)] = 213043, - [SMALL_STATE(6226)] = 213062, - [SMALL_STATE(6227)] = 213081, - [SMALL_STATE(6228)] = 213100, - [SMALL_STATE(6229)] = 213119, - [SMALL_STATE(6230)] = 213138, - [SMALL_STATE(6231)] = 213157, - [SMALL_STATE(6232)] = 213176, - [SMALL_STATE(6233)] = 213189, - [SMALL_STATE(6234)] = 213202, - [SMALL_STATE(6235)] = 213215, - [SMALL_STATE(6236)] = 213228, - [SMALL_STATE(6237)] = 213243, - [SMALL_STATE(6238)] = 213258, - [SMALL_STATE(6239)] = 213271, - [SMALL_STATE(6240)] = 213284, - [SMALL_STATE(6241)] = 213297, - [SMALL_STATE(6242)] = 213310, - [SMALL_STATE(6243)] = 213329, - [SMALL_STATE(6244)] = 213348, - [SMALL_STATE(6245)] = 213367, - [SMALL_STATE(6246)] = 213380, - [SMALL_STATE(6247)] = 213393, - [SMALL_STATE(6248)] = 213406, - [SMALL_STATE(6249)] = 213421, - [SMALL_STATE(6250)] = 213440, - [SMALL_STATE(6251)] = 213459, - [SMALL_STATE(6252)] = 213472, - [SMALL_STATE(6253)] = 213491, - [SMALL_STATE(6254)] = 213508, - [SMALL_STATE(6255)] = 213525, - [SMALL_STATE(6256)] = 213544, - [SMALL_STATE(6257)] = 213563, - [SMALL_STATE(6258)] = 213582, - [SMALL_STATE(6259)] = 213601, - [SMALL_STATE(6260)] = 213616, - [SMALL_STATE(6261)] = 213629, - [SMALL_STATE(6262)] = 213642, - [SMALL_STATE(6263)] = 213655, - [SMALL_STATE(6264)] = 213670, - [SMALL_STATE(6265)] = 213685, - [SMALL_STATE(6266)] = 213700, - [SMALL_STATE(6267)] = 213713, - [SMALL_STATE(6268)] = 213726, - [SMALL_STATE(6269)] = 213741, - [SMALL_STATE(6270)] = 213754, - [SMALL_STATE(6271)] = 213767, - [SMALL_STATE(6272)] = 213780, - [SMALL_STATE(6273)] = 213793, - [SMALL_STATE(6274)] = 213806, - [SMALL_STATE(6275)] = 213819, - [SMALL_STATE(6276)] = 213838, - [SMALL_STATE(6277)] = 213857, - [SMALL_STATE(6278)] = 213876, - [SMALL_STATE(6279)] = 213895, - [SMALL_STATE(6280)] = 213908, - [SMALL_STATE(6281)] = 213927, - [SMALL_STATE(6282)] = 213944, - [SMALL_STATE(6283)] = 213963, - [SMALL_STATE(6284)] = 213978, - [SMALL_STATE(6285)] = 213993, - [SMALL_STATE(6286)] = 214010, - [SMALL_STATE(6287)] = 214025, - [SMALL_STATE(6288)] = 214040, - [SMALL_STATE(6289)] = 214055, - [SMALL_STATE(6290)] = 214070, - [SMALL_STATE(6291)] = 214087, - [SMALL_STATE(6292)] = 214100, - [SMALL_STATE(6293)] = 214113, - [SMALL_STATE(6294)] = 214132, - [SMALL_STATE(6295)] = 214151, - [SMALL_STATE(6296)] = 214170, - [SMALL_STATE(6297)] = 214189, - [SMALL_STATE(6298)] = 214208, - [SMALL_STATE(6299)] = 214227, - [SMALL_STATE(6300)] = 214246, - [SMALL_STATE(6301)] = 214265, - [SMALL_STATE(6302)] = 214278, - [SMALL_STATE(6303)] = 214293, - [SMALL_STATE(6304)] = 214312, - [SMALL_STATE(6305)] = 214331, - [SMALL_STATE(6306)] = 214350, - [SMALL_STATE(6307)] = 214365, - [SMALL_STATE(6308)] = 214380, - [SMALL_STATE(6309)] = 214395, - [SMALL_STATE(6310)] = 214410, - [SMALL_STATE(6311)] = 214425, - [SMALL_STATE(6312)] = 214440, - [SMALL_STATE(6313)] = 214455, - [SMALL_STATE(6314)] = 214470, - [SMALL_STATE(6315)] = 214483, - [SMALL_STATE(6316)] = 214500, - [SMALL_STATE(6317)] = 214515, - [SMALL_STATE(6318)] = 214530, - [SMALL_STATE(6319)] = 214545, - [SMALL_STATE(6320)] = 214564, - [SMALL_STATE(6321)] = 214579, - [SMALL_STATE(6322)] = 214594, - [SMALL_STATE(6323)] = 214611, - [SMALL_STATE(6324)] = 214626, - [SMALL_STATE(6325)] = 214641, - [SMALL_STATE(6326)] = 214656, - [SMALL_STATE(6327)] = 214675, - [SMALL_STATE(6328)] = 214694, - [SMALL_STATE(6329)] = 214709, - [SMALL_STATE(6330)] = 214724, - [SMALL_STATE(6331)] = 214739, - [SMALL_STATE(6332)] = 214758, - [SMALL_STATE(6333)] = 214777, - [SMALL_STATE(6334)] = 214796, - [SMALL_STATE(6335)] = 214815, - [SMALL_STATE(6336)] = 214834, - [SMALL_STATE(6337)] = 214853, - [SMALL_STATE(6338)] = 214872, - [SMALL_STATE(6339)] = 214891, - [SMALL_STATE(6340)] = 214906, - [SMALL_STATE(6341)] = 214919, - [SMALL_STATE(6342)] = 214934, - [SMALL_STATE(6343)] = 214951, - [SMALL_STATE(6344)] = 214966, - [SMALL_STATE(6345)] = 214985, - [SMALL_STATE(6346)] = 215000, - [SMALL_STATE(6347)] = 215017, - [SMALL_STATE(6348)] = 215032, - [SMALL_STATE(6349)] = 215047, - [SMALL_STATE(6350)] = 215062, - [SMALL_STATE(6351)] = 215077, - [SMALL_STATE(6352)] = 215092, - [SMALL_STATE(6353)] = 215111, - [SMALL_STATE(6354)] = 215130, - [SMALL_STATE(6355)] = 215149, - [SMALL_STATE(6356)] = 215168, - [SMALL_STATE(6357)] = 215187, - [SMALL_STATE(6358)] = 215206, - [SMALL_STATE(6359)] = 215225, - [SMALL_STATE(6360)] = 215244, - [SMALL_STATE(6361)] = 215263, - [SMALL_STATE(6362)] = 215278, - [SMALL_STATE(6363)] = 215293, - [SMALL_STATE(6364)] = 215306, - [SMALL_STATE(6365)] = 215321, - [SMALL_STATE(6366)] = 215338, - [SMALL_STATE(6367)] = 215353, - [SMALL_STATE(6368)] = 215368, - [SMALL_STATE(6369)] = 215383, - [SMALL_STATE(6370)] = 215400, - [SMALL_STATE(6371)] = 215415, - [SMALL_STATE(6372)] = 215430, - [SMALL_STATE(6373)] = 215445, - [SMALL_STATE(6374)] = 215460, - [SMALL_STATE(6375)] = 215473, - [SMALL_STATE(6376)] = 215488, - [SMALL_STATE(6377)] = 215503, - [SMALL_STATE(6378)] = 215522, - [SMALL_STATE(6379)] = 215541, - [SMALL_STATE(6380)] = 215560, - [SMALL_STATE(6381)] = 215579, - [SMALL_STATE(6382)] = 215598, - [SMALL_STATE(6383)] = 215617, - [SMALL_STATE(6384)] = 215636, - [SMALL_STATE(6385)] = 215655, - [SMALL_STATE(6386)] = 215670, - [SMALL_STATE(6387)] = 215685, - [SMALL_STATE(6388)] = 215698, - [SMALL_STATE(6389)] = 215715, - [SMALL_STATE(6390)] = 215728, - [SMALL_STATE(6391)] = 215745, - [SMALL_STATE(6392)] = 215764, - [SMALL_STATE(6393)] = 215779, - [SMALL_STATE(6394)] = 215792, - [SMALL_STATE(6395)] = 215805, - [SMALL_STATE(6396)] = 215824, - [SMALL_STATE(6397)] = 215843, - [SMALL_STATE(6398)] = 215862, - [SMALL_STATE(6399)] = 215881, - [SMALL_STATE(6400)] = 215900, - [SMALL_STATE(6401)] = 215919, - [SMALL_STATE(6402)] = 215938, - [SMALL_STATE(6403)] = 215957, - [SMALL_STATE(6404)] = 215970, - [SMALL_STATE(6405)] = 215983, - [SMALL_STATE(6406)] = 216000, - [SMALL_STATE(6407)] = 216019, - [SMALL_STATE(6408)] = 216036, - [SMALL_STATE(6409)] = 216055, - [SMALL_STATE(6410)] = 216070, - [SMALL_STATE(6411)] = 216089, - [SMALL_STATE(6412)] = 216108, - [SMALL_STATE(6413)] = 216127, - [SMALL_STATE(6414)] = 216146, - [SMALL_STATE(6415)] = 216165, - [SMALL_STATE(6416)] = 216184, - [SMALL_STATE(6417)] = 216203, - [SMALL_STATE(6418)] = 216222, - [SMALL_STATE(6419)] = 216241, - [SMALL_STATE(6420)] = 216254, - [SMALL_STATE(6421)] = 216271, - [SMALL_STATE(6422)] = 216290, - [SMALL_STATE(6423)] = 216309, - [SMALL_STATE(6424)] = 216328, - [SMALL_STATE(6425)] = 216345, - [SMALL_STATE(6426)] = 216360, - [SMALL_STATE(6427)] = 216379, - [SMALL_STATE(6428)] = 216398, - [SMALL_STATE(6429)] = 216417, - [SMALL_STATE(6430)] = 216436, - [SMALL_STATE(6431)] = 216455, - [SMALL_STATE(6432)] = 216474, - [SMALL_STATE(6433)] = 216493, - [SMALL_STATE(6434)] = 216512, - [SMALL_STATE(6435)] = 216527, - [SMALL_STATE(6436)] = 216540, - [SMALL_STATE(6437)] = 216557, - [SMALL_STATE(6438)] = 216570, - [SMALL_STATE(6439)] = 216587, - [SMALL_STATE(6440)] = 216604, - [SMALL_STATE(6441)] = 216619, - [SMALL_STATE(6442)] = 216636, - [SMALL_STATE(6443)] = 216655, - [SMALL_STATE(6444)] = 216674, - [SMALL_STATE(6445)] = 216693, - [SMALL_STATE(6446)] = 216712, - [SMALL_STATE(6447)] = 216731, - [SMALL_STATE(6448)] = 216750, - [SMALL_STATE(6449)] = 216769, - [SMALL_STATE(6450)] = 216788, - [SMALL_STATE(6451)] = 216801, - [SMALL_STATE(6452)] = 216818, - [SMALL_STATE(6453)] = 216837, - [SMALL_STATE(6454)] = 216854, - [SMALL_STATE(6455)] = 216871, - [SMALL_STATE(6456)] = 216890, - [SMALL_STATE(6457)] = 216909, - [SMALL_STATE(6458)] = 216928, - [SMALL_STATE(6459)] = 216947, - [SMALL_STATE(6460)] = 216966, - [SMALL_STATE(6461)] = 216985, - [SMALL_STATE(6462)] = 217004, - [SMALL_STATE(6463)] = 217023, - [SMALL_STATE(6464)] = 217042, - [SMALL_STATE(6465)] = 217061, - [SMALL_STATE(6466)] = 217074, - [SMALL_STATE(6467)] = 217091, - [SMALL_STATE(6468)] = 217110, - [SMALL_STATE(6469)] = 217127, - [SMALL_STATE(6470)] = 217146, - [SMALL_STATE(6471)] = 217165, - [SMALL_STATE(6472)] = 217184, - [SMALL_STATE(6473)] = 217201, - [SMALL_STATE(6474)] = 217220, - [SMALL_STATE(6475)] = 217239, - [SMALL_STATE(6476)] = 217258, - [SMALL_STATE(6477)] = 217277, - [SMALL_STATE(6478)] = 217296, - [SMALL_STATE(6479)] = 217315, - [SMALL_STATE(6480)] = 217334, - [SMALL_STATE(6481)] = 217347, - [SMALL_STATE(6482)] = 217364, - [SMALL_STATE(6483)] = 217381, - [SMALL_STATE(6484)] = 217396, - [SMALL_STATE(6485)] = 217411, - [SMALL_STATE(6486)] = 217430, - [SMALL_STATE(6487)] = 217449, - [SMALL_STATE(6488)] = 217468, - [SMALL_STATE(6489)] = 217487, - [SMALL_STATE(6490)] = 217506, - [SMALL_STATE(6491)] = 217525, - [SMALL_STATE(6492)] = 217544, - [SMALL_STATE(6493)] = 217563, - [SMALL_STATE(6494)] = 217576, - [SMALL_STATE(6495)] = 217593, - [SMALL_STATE(6496)] = 217608, - [SMALL_STATE(6497)] = 217625, - [SMALL_STATE(6498)] = 217644, - [SMALL_STATE(6499)] = 217663, - [SMALL_STATE(6500)] = 217682, - [SMALL_STATE(6501)] = 217701, - [SMALL_STATE(6502)] = 217720, - [SMALL_STATE(6503)] = 217739, - [SMALL_STATE(6504)] = 217758, - [SMALL_STATE(6505)] = 217777, - [SMALL_STATE(6506)] = 217796, - [SMALL_STATE(6507)] = 217815, - [SMALL_STATE(6508)] = 217828, - [SMALL_STATE(6509)] = 217845, - [SMALL_STATE(6510)] = 217862, - [SMALL_STATE(6511)] = 217881, - [SMALL_STATE(6512)] = 217900, - [SMALL_STATE(6513)] = 217919, - [SMALL_STATE(6514)] = 217938, - [SMALL_STATE(6515)] = 217957, - [SMALL_STATE(6516)] = 217976, - [SMALL_STATE(6517)] = 217995, - [SMALL_STATE(6518)] = 218014, - [SMALL_STATE(6519)] = 218033, - [SMALL_STATE(6520)] = 218052, - [SMALL_STATE(6521)] = 218065, - [SMALL_STATE(6522)] = 218082, - [SMALL_STATE(6523)] = 218099, - [SMALL_STATE(6524)] = 218118, - [SMALL_STATE(6525)] = 218137, - [SMALL_STATE(6526)] = 218156, - [SMALL_STATE(6527)] = 218175, - [SMALL_STATE(6528)] = 218194, - [SMALL_STATE(6529)] = 218213, - [SMALL_STATE(6530)] = 218232, - [SMALL_STATE(6531)] = 218251, - [SMALL_STATE(6532)] = 218264, - [SMALL_STATE(6533)] = 218281, - [SMALL_STATE(6534)] = 218298, - [SMALL_STATE(6535)] = 218311, - [SMALL_STATE(6536)] = 218328, - [SMALL_STATE(6537)] = 218345, - [SMALL_STATE(6538)] = 218358, - [SMALL_STATE(6539)] = 218375, - [SMALL_STATE(6540)] = 218392, - [SMALL_STATE(6541)] = 218405, - [SMALL_STATE(6542)] = 218422, - [SMALL_STATE(6543)] = 218439, - [SMALL_STATE(6544)] = 218452, - [SMALL_STATE(6545)] = 218469, - [SMALL_STATE(6546)] = 218486, - [SMALL_STATE(6547)] = 218505, - [SMALL_STATE(6548)] = 218518, - [SMALL_STATE(6549)] = 218535, - [SMALL_STATE(6550)] = 218552, - [SMALL_STATE(6551)] = 218565, - [SMALL_STATE(6552)] = 218582, - [SMALL_STATE(6553)] = 218599, - [SMALL_STATE(6554)] = 218612, - [SMALL_STATE(6555)] = 218629, - [SMALL_STATE(6556)] = 218646, - [SMALL_STATE(6557)] = 218659, - [SMALL_STATE(6558)] = 218676, - [SMALL_STATE(6559)] = 218693, - [SMALL_STATE(6560)] = 218706, - [SMALL_STATE(6561)] = 218723, - [SMALL_STATE(6562)] = 218740, - [SMALL_STATE(6563)] = 218753, - [SMALL_STATE(6564)] = 218770, - [SMALL_STATE(6565)] = 218787, - [SMALL_STATE(6566)] = 218800, - [SMALL_STATE(6567)] = 218817, - [SMALL_STATE(6568)] = 218834, - [SMALL_STATE(6569)] = 218847, - [SMALL_STATE(6570)] = 218864, - [SMALL_STATE(6571)] = 218881, - [SMALL_STATE(6572)] = 218894, - [SMALL_STATE(6573)] = 218911, - [SMALL_STATE(6574)] = 218928, - [SMALL_STATE(6575)] = 218941, - [SMALL_STATE(6576)] = 218958, - [SMALL_STATE(6577)] = 218975, - [SMALL_STATE(6578)] = 218992, - [SMALL_STATE(6579)] = 219009, - [SMALL_STATE(6580)] = 219026, - [SMALL_STATE(6581)] = 219043, - [SMALL_STATE(6582)] = 219060, - [SMALL_STATE(6583)] = 219077, - [SMALL_STATE(6584)] = 219094, - [SMALL_STATE(6585)] = 219111, - [SMALL_STATE(6586)] = 219128, - [SMALL_STATE(6587)] = 219145, - [SMALL_STATE(6588)] = 219162, - [SMALL_STATE(6589)] = 219179, - [SMALL_STATE(6590)] = 219196, - [SMALL_STATE(6591)] = 219213, - [SMALL_STATE(6592)] = 219226, - [SMALL_STATE(6593)] = 219245, - [SMALL_STATE(6594)] = 219264, - [SMALL_STATE(6595)] = 219283, - [SMALL_STATE(6596)] = 219300, - [SMALL_STATE(6597)] = 219319, - [SMALL_STATE(6598)] = 219338, - [SMALL_STATE(6599)] = 219351, - [SMALL_STATE(6600)] = 219370, - [SMALL_STATE(6601)] = 219389, - [SMALL_STATE(6602)] = 219408, - [SMALL_STATE(6603)] = 219427, - [SMALL_STATE(6604)] = 219442, - [SMALL_STATE(6605)] = 219461, - [SMALL_STATE(6606)] = 219478, - [SMALL_STATE(6607)] = 219495, - [SMALL_STATE(6608)] = 219514, - [SMALL_STATE(6609)] = 219533, - [SMALL_STATE(6610)] = 219552, - [SMALL_STATE(6611)] = 219571, - [SMALL_STATE(6612)] = 219588, - [SMALL_STATE(6613)] = 219605, - [SMALL_STATE(6614)] = 219624, - [SMALL_STATE(6615)] = 219637, - [SMALL_STATE(6616)] = 219656, - [SMALL_STATE(6617)] = 219669, - [SMALL_STATE(6618)] = 219682, - [SMALL_STATE(6619)] = 219695, - [SMALL_STATE(6620)] = 219708, - [SMALL_STATE(6621)] = 219727, - [SMALL_STATE(6622)] = 219742, - [SMALL_STATE(6623)] = 219761, - [SMALL_STATE(6624)] = 219780, - [SMALL_STATE(6625)] = 219799, - [SMALL_STATE(6626)] = 219818, - [SMALL_STATE(6627)] = 219835, - [SMALL_STATE(6628)] = 219848, - [SMALL_STATE(6629)] = 219861, - [SMALL_STATE(6630)] = 219874, - [SMALL_STATE(6631)] = 219893, - [SMALL_STATE(6632)] = 219906, - [SMALL_STATE(6633)] = 219925, - [SMALL_STATE(6634)] = 219942, - [SMALL_STATE(6635)] = 219957, - [SMALL_STATE(6636)] = 219970, - [SMALL_STATE(6637)] = 219989, - [SMALL_STATE(6638)] = 220002, - [SMALL_STATE(6639)] = 220021, - [SMALL_STATE(6640)] = 220034, - [SMALL_STATE(6641)] = 220053, - [SMALL_STATE(6642)] = 220072, - [SMALL_STATE(6643)] = 220091, - [SMALL_STATE(6644)] = 220110, - [SMALL_STATE(6645)] = 220129, - [SMALL_STATE(6646)] = 220148, - [SMALL_STATE(6647)] = 220167, - [SMALL_STATE(6648)] = 220186, - [SMALL_STATE(6649)] = 220205, - [SMALL_STATE(6650)] = 220224, - [SMALL_STATE(6651)] = 220243, - [SMALL_STATE(6652)] = 220262, - [SMALL_STATE(6653)] = 220281, - [SMALL_STATE(6654)] = 220294, - [SMALL_STATE(6655)] = 220311, - [SMALL_STATE(6656)] = 220324, - [SMALL_STATE(6657)] = 220337, - [SMALL_STATE(6658)] = 220350, - [SMALL_STATE(6659)] = 220363, - [SMALL_STATE(6660)] = 220376, - [SMALL_STATE(6661)] = 220389, - [SMALL_STATE(6662)] = 220402, - [SMALL_STATE(6663)] = 220421, - [SMALL_STATE(6664)] = 220438, - [SMALL_STATE(6665)] = 220451, - [SMALL_STATE(6666)] = 220464, - [SMALL_STATE(6667)] = 220477, - [SMALL_STATE(6668)] = 220496, - [SMALL_STATE(6669)] = 220509, - [SMALL_STATE(6670)] = 220524, - [SMALL_STATE(6671)] = 220541, - [SMALL_STATE(6672)] = 220556, - [SMALL_STATE(6673)] = 220569, - [SMALL_STATE(6674)] = 220586, - [SMALL_STATE(6675)] = 220603, - [SMALL_STATE(6676)] = 220620, - [SMALL_STATE(6677)] = 220639, - [SMALL_STATE(6678)] = 220656, - [SMALL_STATE(6679)] = 220671, - [SMALL_STATE(6680)] = 220690, - [SMALL_STATE(6681)] = 220709, - [SMALL_STATE(6682)] = 220728, - [SMALL_STATE(6683)] = 220747, - [SMALL_STATE(6684)] = 220760, - [SMALL_STATE(6685)] = 220775, - [SMALL_STATE(6686)] = 220794, - [SMALL_STATE(6687)] = 220811, - [SMALL_STATE(6688)] = 220826, - [SMALL_STATE(6689)] = 220843, - [SMALL_STATE(6690)] = 220856, - [SMALL_STATE(6691)] = 220875, - [SMALL_STATE(6692)] = 220894, - [SMALL_STATE(6693)] = 220911, - [SMALL_STATE(6694)] = 220930, - [SMALL_STATE(6695)] = 220949, - [SMALL_STATE(6696)] = 220968, - [SMALL_STATE(6697)] = 220987, - [SMALL_STATE(6698)] = 221006, - [SMALL_STATE(6699)] = 221019, - [SMALL_STATE(6700)] = 221032, - [SMALL_STATE(6701)] = 221051, - [SMALL_STATE(6702)] = 221070, - [SMALL_STATE(6703)] = 221089, - [SMALL_STATE(6704)] = 221108, - [SMALL_STATE(6705)] = 221127, - [SMALL_STATE(6706)] = 221142, - [SMALL_STATE(6707)] = 221161, - [SMALL_STATE(6708)] = 221176, - [SMALL_STATE(6709)] = 221195, - [SMALL_STATE(6710)] = 221214, - [SMALL_STATE(6711)] = 221233, - [SMALL_STATE(6712)] = 221249, - [SMALL_STATE(6713)] = 221265, - [SMALL_STATE(6714)] = 221281, - [SMALL_STATE(6715)] = 221297, - [SMALL_STATE(6716)] = 221309, - [SMALL_STATE(6717)] = 221325, - [SMALL_STATE(6718)] = 221341, - [SMALL_STATE(6719)] = 221357, - [SMALL_STATE(6720)] = 221373, - [SMALL_STATE(6721)] = 221389, - [SMALL_STATE(6722)] = 221405, - [SMALL_STATE(6723)] = 221421, - [SMALL_STATE(6724)] = 221437, - [SMALL_STATE(6725)] = 221453, - [SMALL_STATE(6726)] = 221469, - [SMALL_STATE(6727)] = 221483, - [SMALL_STATE(6728)] = 221499, - [SMALL_STATE(6729)] = 221513, - [SMALL_STATE(6730)] = 221527, - [SMALL_STATE(6731)] = 221541, - [SMALL_STATE(6732)] = 221557, - [SMALL_STATE(6733)] = 221571, - [SMALL_STATE(6734)] = 221587, - [SMALL_STATE(6735)] = 221599, - [SMALL_STATE(6736)] = 221615, - [SMALL_STATE(6737)] = 221631, - [SMALL_STATE(6738)] = 221643, - [SMALL_STATE(6739)] = 221659, - [SMALL_STATE(6740)] = 221671, - [SMALL_STATE(6741)] = 221687, - [SMALL_STATE(6742)] = 221703, - [SMALL_STATE(6743)] = 221719, - [SMALL_STATE(6744)] = 221735, - [SMALL_STATE(6745)] = 221751, - [SMALL_STATE(6746)] = 221767, - [SMALL_STATE(6747)] = 221783, - [SMALL_STATE(6748)] = 221799, - [SMALL_STATE(6749)] = 221813, - [SMALL_STATE(6750)] = 221827, - [SMALL_STATE(6751)] = 221843, - [SMALL_STATE(6752)] = 221857, - [SMALL_STATE(6753)] = 221871, - [SMALL_STATE(6754)] = 221883, - [SMALL_STATE(6755)] = 221895, - [SMALL_STATE(6756)] = 221907, - [SMALL_STATE(6757)] = 221921, - [SMALL_STATE(6758)] = 221937, - [SMALL_STATE(6759)] = 221953, - [SMALL_STATE(6760)] = 221965, - [SMALL_STATE(6761)] = 221981, - [SMALL_STATE(6762)] = 221995, - [SMALL_STATE(6763)] = 222007, - [SMALL_STATE(6764)] = 222023, - [SMALL_STATE(6765)] = 222039, - [SMALL_STATE(6766)] = 222055, - [SMALL_STATE(6767)] = 222069, - [SMALL_STATE(6768)] = 222085, - [SMALL_STATE(6769)] = 222101, - [SMALL_STATE(6770)] = 222117, - [SMALL_STATE(6771)] = 222133, - [SMALL_STATE(6772)] = 222149, - [SMALL_STATE(6773)] = 222165, - [SMALL_STATE(6774)] = 222177, - [SMALL_STATE(6775)] = 222193, - [SMALL_STATE(6776)] = 222209, - [SMALL_STATE(6777)] = 222225, - [SMALL_STATE(6778)] = 222241, - [SMALL_STATE(6779)] = 222253, - [SMALL_STATE(6780)] = 222269, - [SMALL_STATE(6781)] = 222285, - [SMALL_STATE(6782)] = 222297, - [SMALL_STATE(6783)] = 222311, - [SMALL_STATE(6784)] = 222323, - [SMALL_STATE(6785)] = 222339, - [SMALL_STATE(6786)] = 222351, - [SMALL_STATE(6787)] = 222363, - [SMALL_STATE(6788)] = 222379, - [SMALL_STATE(6789)] = 222393, - [SMALL_STATE(6790)] = 222409, - [SMALL_STATE(6791)] = 222425, - [SMALL_STATE(6792)] = 222437, - [SMALL_STATE(6793)] = 222451, - [SMALL_STATE(6794)] = 222465, - [SMALL_STATE(6795)] = 222481, - [SMALL_STATE(6796)] = 222495, - [SMALL_STATE(6797)] = 222511, - [SMALL_STATE(6798)] = 222527, - [SMALL_STATE(6799)] = 222539, - [SMALL_STATE(6800)] = 222555, - [SMALL_STATE(6801)] = 222571, - [SMALL_STATE(6802)] = 222587, - [SMALL_STATE(6803)] = 222603, - [SMALL_STATE(6804)] = 222619, - [SMALL_STATE(6805)] = 222631, - [SMALL_STATE(6806)] = 222645, - [SMALL_STATE(6807)] = 222661, - [SMALL_STATE(6808)] = 222677, - [SMALL_STATE(6809)] = 222693, - [SMALL_STATE(6810)] = 222709, - [SMALL_STATE(6811)] = 222721, - [SMALL_STATE(6812)] = 222735, - [SMALL_STATE(6813)] = 222751, - [SMALL_STATE(6814)] = 222767, - [SMALL_STATE(6815)] = 222781, - [SMALL_STATE(6816)] = 222797, - [SMALL_STATE(6817)] = 222809, - [SMALL_STATE(6818)] = 222825, - [SMALL_STATE(6819)] = 222841, - [SMALL_STATE(6820)] = 222857, - [SMALL_STATE(6821)] = 222873, - [SMALL_STATE(6822)] = 222889, - [SMALL_STATE(6823)] = 222903, - [SMALL_STATE(6824)] = 222917, - [SMALL_STATE(6825)] = 222933, - [SMALL_STATE(6826)] = 222949, - [SMALL_STATE(6827)] = 222965, - [SMALL_STATE(6828)] = 222981, - [SMALL_STATE(6829)] = 222997, - [SMALL_STATE(6830)] = 223011, - [SMALL_STATE(6831)] = 223027, - [SMALL_STATE(6832)] = 223043, - [SMALL_STATE(6833)] = 223055, - [SMALL_STATE(6834)] = 223071, - [SMALL_STATE(6835)] = 223087, - [SMALL_STATE(6836)] = 223103, - [SMALL_STATE(6837)] = 223119, - [SMALL_STATE(6838)] = 223135, - [SMALL_STATE(6839)] = 223149, - [SMALL_STATE(6840)] = 223165, - [SMALL_STATE(6841)] = 223181, - [SMALL_STATE(6842)] = 223197, - [SMALL_STATE(6843)] = 223213, - [SMALL_STATE(6844)] = 223225, - [SMALL_STATE(6845)] = 223237, - [SMALL_STATE(6846)] = 223253, - [SMALL_STATE(6847)] = 223269, - [SMALL_STATE(6848)] = 223285, - [SMALL_STATE(6849)] = 223297, - [SMALL_STATE(6850)] = 223313, - [SMALL_STATE(6851)] = 223329, - [SMALL_STATE(6852)] = 223345, - [SMALL_STATE(6853)] = 223361, - [SMALL_STATE(6854)] = 223377, - [SMALL_STATE(6855)] = 223393, - [SMALL_STATE(6856)] = 223409, - [SMALL_STATE(6857)] = 223425, - [SMALL_STATE(6858)] = 223441, - [SMALL_STATE(6859)] = 223457, - [SMALL_STATE(6860)] = 223473, - [SMALL_STATE(6861)] = 223485, - [SMALL_STATE(6862)] = 223501, - [SMALL_STATE(6863)] = 223517, - [SMALL_STATE(6864)] = 223531, - [SMALL_STATE(6865)] = 223545, - [SMALL_STATE(6866)] = 223561, - [SMALL_STATE(6867)] = 223577, - [SMALL_STATE(6868)] = 223593, - [SMALL_STATE(6869)] = 223609, - [SMALL_STATE(6870)] = 223625, - [SMALL_STATE(6871)] = 223641, - [SMALL_STATE(6872)] = 223657, - [SMALL_STATE(6873)] = 223669, - [SMALL_STATE(6874)] = 223685, - [SMALL_STATE(6875)] = 223701, - [SMALL_STATE(6876)] = 223717, - [SMALL_STATE(6877)] = 223729, - [SMALL_STATE(6878)] = 223745, - [SMALL_STATE(6879)] = 223761, - [SMALL_STATE(6880)] = 223777, - [SMALL_STATE(6881)] = 223793, - [SMALL_STATE(6882)] = 223805, - [SMALL_STATE(6883)] = 223821, - [SMALL_STATE(6884)] = 223837, - [SMALL_STATE(6885)] = 223853, - [SMALL_STATE(6886)] = 223869, - [SMALL_STATE(6887)] = 223885, - [SMALL_STATE(6888)] = 223901, - [SMALL_STATE(6889)] = 223917, - [SMALL_STATE(6890)] = 223931, - [SMALL_STATE(6891)] = 223947, - [SMALL_STATE(6892)] = 223963, - [SMALL_STATE(6893)] = 223979, - [SMALL_STATE(6894)] = 223993, - [SMALL_STATE(6895)] = 224009, - [SMALL_STATE(6896)] = 224025, - [SMALL_STATE(6897)] = 224041, - [SMALL_STATE(6898)] = 224053, - [SMALL_STATE(6899)] = 224069, - [SMALL_STATE(6900)] = 224085, - [SMALL_STATE(6901)] = 224101, - [SMALL_STATE(6902)] = 224117, - [SMALL_STATE(6903)] = 224131, - [SMALL_STATE(6904)] = 224147, - [SMALL_STATE(6905)] = 224163, - [SMALL_STATE(6906)] = 224175, - [SMALL_STATE(6907)] = 224189, - [SMALL_STATE(6908)] = 224201, - [SMALL_STATE(6909)] = 224215, - [SMALL_STATE(6910)] = 224227, - [SMALL_STATE(6911)] = 224241, - [SMALL_STATE(6912)] = 224257, - [SMALL_STATE(6913)] = 224273, - [SMALL_STATE(6914)] = 224289, - [SMALL_STATE(6915)] = 224303, - [SMALL_STATE(6916)] = 224319, - [SMALL_STATE(6917)] = 224335, - [SMALL_STATE(6918)] = 224347, - [SMALL_STATE(6919)] = 224363, - [SMALL_STATE(6920)] = 224379, - [SMALL_STATE(6921)] = 224395, - [SMALL_STATE(6922)] = 224409, - [SMALL_STATE(6923)] = 224425, - [SMALL_STATE(6924)] = 224437, - [SMALL_STATE(6925)] = 224451, - [SMALL_STATE(6926)] = 224467, - [SMALL_STATE(6927)] = 224483, - [SMALL_STATE(6928)] = 224499, - [SMALL_STATE(6929)] = 224515, - [SMALL_STATE(6930)] = 224527, - [SMALL_STATE(6931)] = 224543, - [SMALL_STATE(6932)] = 224555, - [SMALL_STATE(6933)] = 224571, - [SMALL_STATE(6934)] = 224583, - [SMALL_STATE(6935)] = 224599, - [SMALL_STATE(6936)] = 224615, - [SMALL_STATE(6937)] = 224627, - [SMALL_STATE(6938)] = 224643, - [SMALL_STATE(6939)] = 224659, - [SMALL_STATE(6940)] = 224675, - [SMALL_STATE(6941)] = 224687, - [SMALL_STATE(6942)] = 224703, - [SMALL_STATE(6943)] = 224719, - [SMALL_STATE(6944)] = 224735, - [SMALL_STATE(6945)] = 224751, - [SMALL_STATE(6946)] = 224767, - [SMALL_STATE(6947)] = 224783, - [SMALL_STATE(6948)] = 224799, - [SMALL_STATE(6949)] = 224815, - [SMALL_STATE(6950)] = 224831, - [SMALL_STATE(6951)] = 224845, - [SMALL_STATE(6952)] = 224861, - [SMALL_STATE(6953)] = 224877, - [SMALL_STATE(6954)] = 224893, - [SMALL_STATE(6955)] = 224905, - [SMALL_STATE(6956)] = 224921, - [SMALL_STATE(6957)] = 224937, - [SMALL_STATE(6958)] = 224953, - [SMALL_STATE(6959)] = 224969, - [SMALL_STATE(6960)] = 224985, - [SMALL_STATE(6961)] = 225001, - [SMALL_STATE(6962)] = 225017, - [SMALL_STATE(6963)] = 225031, - [SMALL_STATE(6964)] = 225047, - [SMALL_STATE(6965)] = 225063, - [SMALL_STATE(6966)] = 225075, - [SMALL_STATE(6967)] = 225091, - [SMALL_STATE(6968)] = 225103, - [SMALL_STATE(6969)] = 225119, - [SMALL_STATE(6970)] = 225133, - [SMALL_STATE(6971)] = 225149, - [SMALL_STATE(6972)] = 225161, - [SMALL_STATE(6973)] = 225177, - [SMALL_STATE(6974)] = 225193, - [SMALL_STATE(6975)] = 225209, - [SMALL_STATE(6976)] = 225225, - [SMALL_STATE(6977)] = 225241, - [SMALL_STATE(6978)] = 225257, - [SMALL_STATE(6979)] = 225271, - [SMALL_STATE(6980)] = 225287, - [SMALL_STATE(6981)] = 225303, - [SMALL_STATE(6982)] = 225315, - [SMALL_STATE(6983)] = 225329, - [SMALL_STATE(6984)] = 225345, - [SMALL_STATE(6985)] = 225359, - [SMALL_STATE(6986)] = 225373, - [SMALL_STATE(6987)] = 225387, - [SMALL_STATE(6988)] = 225401, - [SMALL_STATE(6989)] = 225417, - [SMALL_STATE(6990)] = 225429, - [SMALL_STATE(6991)] = 225445, - [SMALL_STATE(6992)] = 225457, - [SMALL_STATE(6993)] = 225473, - [SMALL_STATE(6994)] = 225489, - [SMALL_STATE(6995)] = 225503, - [SMALL_STATE(6996)] = 225517, - [SMALL_STATE(6997)] = 225533, - [SMALL_STATE(6998)] = 225549, - [SMALL_STATE(6999)] = 225563, - [SMALL_STATE(7000)] = 225579, - [SMALL_STATE(7001)] = 225595, - [SMALL_STATE(7002)] = 225611, - [SMALL_STATE(7003)] = 225627, - [SMALL_STATE(7004)] = 225643, - [SMALL_STATE(7005)] = 225659, - [SMALL_STATE(7006)] = 225675, - [SMALL_STATE(7007)] = 225691, - [SMALL_STATE(7008)] = 225703, - [SMALL_STATE(7009)] = 225717, - [SMALL_STATE(7010)] = 225731, - [SMALL_STATE(7011)] = 225747, - [SMALL_STATE(7012)] = 225761, - [SMALL_STATE(7013)] = 225777, - [SMALL_STATE(7014)] = 225791, - [SMALL_STATE(7015)] = 225805, - [SMALL_STATE(7016)] = 225819, - [SMALL_STATE(7017)] = 225833, - [SMALL_STATE(7018)] = 225847, - [SMALL_STATE(7019)] = 225861, - [SMALL_STATE(7020)] = 225877, - [SMALL_STATE(7021)] = 225891, - [SMALL_STATE(7022)] = 225903, - [SMALL_STATE(7023)] = 225917, - [SMALL_STATE(7024)] = 225933, - [SMALL_STATE(7025)] = 225949, - [SMALL_STATE(7026)] = 225963, - [SMALL_STATE(7027)] = 225975, - [SMALL_STATE(7028)] = 225991, - [SMALL_STATE(7029)] = 226003, - [SMALL_STATE(7030)] = 226019, - [SMALL_STATE(7031)] = 226031, - [SMALL_STATE(7032)] = 226047, - [SMALL_STATE(7033)] = 226063, - [SMALL_STATE(7034)] = 226077, - [SMALL_STATE(7035)] = 226089, - [SMALL_STATE(7036)] = 226105, - [SMALL_STATE(7037)] = 226121, - [SMALL_STATE(7038)] = 226135, - [SMALL_STATE(7039)] = 226147, - [SMALL_STATE(7040)] = 226163, - [SMALL_STATE(7041)] = 226175, - [SMALL_STATE(7042)] = 226187, - [SMALL_STATE(7043)] = 226199, - [SMALL_STATE(7044)] = 226213, - [SMALL_STATE(7045)] = 226225, - [SMALL_STATE(7046)] = 226237, - [SMALL_STATE(7047)] = 226251, - [SMALL_STATE(7048)] = 226267, - [SMALL_STATE(7049)] = 226281, - [SMALL_STATE(7050)] = 226295, - [SMALL_STATE(7051)] = 226311, - [SMALL_STATE(7052)] = 226325, - [SMALL_STATE(7053)] = 226339, - [SMALL_STATE(7054)] = 226353, - [SMALL_STATE(7055)] = 226365, - [SMALL_STATE(7056)] = 226379, - [SMALL_STATE(7057)] = 226395, - [SMALL_STATE(7058)] = 226411, - [SMALL_STATE(7059)] = 226427, - [SMALL_STATE(7060)] = 226443, - [SMALL_STATE(7061)] = 226459, - [SMALL_STATE(7062)] = 226473, - [SMALL_STATE(7063)] = 226489, - [SMALL_STATE(7064)] = 226501, - [SMALL_STATE(7065)] = 226513, - [SMALL_STATE(7066)] = 226529, - [SMALL_STATE(7067)] = 226545, - [SMALL_STATE(7068)] = 226559, - [SMALL_STATE(7069)] = 226573, - [SMALL_STATE(7070)] = 226587, - [SMALL_STATE(7071)] = 226603, - [SMALL_STATE(7072)] = 226619, - [SMALL_STATE(7073)] = 226635, - [SMALL_STATE(7074)] = 226649, - [SMALL_STATE(7075)] = 226665, - [SMALL_STATE(7076)] = 226679, - [SMALL_STATE(7077)] = 226695, - [SMALL_STATE(7078)] = 226711, - [SMALL_STATE(7079)] = 226723, - [SMALL_STATE(7080)] = 226737, - [SMALL_STATE(7081)] = 226749, - [SMALL_STATE(7082)] = 226761, - [SMALL_STATE(7083)] = 226773, - [SMALL_STATE(7084)] = 226789, - [SMALL_STATE(7085)] = 226805, - [SMALL_STATE(7086)] = 226821, - [SMALL_STATE(7087)] = 226835, - [SMALL_STATE(7088)] = 226849, - [SMALL_STATE(7089)] = 226865, - [SMALL_STATE(7090)] = 226881, - [SMALL_STATE(7091)] = 226897, - [SMALL_STATE(7092)] = 226909, - [SMALL_STATE(7093)] = 226925, - [SMALL_STATE(7094)] = 226939, - [SMALL_STATE(7095)] = 226955, - [SMALL_STATE(7096)] = 226969, - [SMALL_STATE(7097)] = 226985, - [SMALL_STATE(7098)] = 226999, - [SMALL_STATE(7099)] = 227011, - [SMALL_STATE(7100)] = 227027, - [SMALL_STATE(7101)] = 227043, - [SMALL_STATE(7102)] = 227057, - [SMALL_STATE(7103)] = 227073, - [SMALL_STATE(7104)] = 227089, - [SMALL_STATE(7105)] = 227105, - [SMALL_STATE(7106)] = 227117, - [SMALL_STATE(7107)] = 227133, - [SMALL_STATE(7108)] = 227149, - [SMALL_STATE(7109)] = 227165, - [SMALL_STATE(7110)] = 227181, - [SMALL_STATE(7111)] = 227197, - [SMALL_STATE(7112)] = 227213, - [SMALL_STATE(7113)] = 227229, - [SMALL_STATE(7114)] = 227245, - [SMALL_STATE(7115)] = 227257, - [SMALL_STATE(7116)] = 227273, - [SMALL_STATE(7117)] = 227285, - [SMALL_STATE(7118)] = 227299, - [SMALL_STATE(7119)] = 227313, - [SMALL_STATE(7120)] = 227327, - [SMALL_STATE(7121)] = 227343, - [SMALL_STATE(7122)] = 227357, - [SMALL_STATE(7123)] = 227373, - [SMALL_STATE(7124)] = 227387, - [SMALL_STATE(7125)] = 227403, - [SMALL_STATE(7126)] = 227419, - [SMALL_STATE(7127)] = 227435, - [SMALL_STATE(7128)] = 227447, - [SMALL_STATE(7129)] = 227463, - [SMALL_STATE(7130)] = 227477, - [SMALL_STATE(7131)] = 227491, - [SMALL_STATE(7132)] = 227507, - [SMALL_STATE(7133)] = 227523, - [SMALL_STATE(7134)] = 227535, - [SMALL_STATE(7135)] = 227547, - [SMALL_STATE(7136)] = 227561, - [SMALL_STATE(7137)] = 227577, - [SMALL_STATE(7138)] = 227589, - [SMALL_STATE(7139)] = 227605, - [SMALL_STATE(7140)] = 227617, - [SMALL_STATE(7141)] = 227633, - [SMALL_STATE(7142)] = 227645, - [SMALL_STATE(7143)] = 227657, - [SMALL_STATE(7144)] = 227673, - [SMALL_STATE(7145)] = 227689, - [SMALL_STATE(7146)] = 227705, - [SMALL_STATE(7147)] = 227721, - [SMALL_STATE(7148)] = 227737, - [SMALL_STATE(7149)] = 227753, - [SMALL_STATE(7150)] = 227765, - [SMALL_STATE(7151)] = 227777, - [SMALL_STATE(7152)] = 227791, - [SMALL_STATE(7153)] = 227805, - [SMALL_STATE(7154)] = 227819, - [SMALL_STATE(7155)] = 227831, - [SMALL_STATE(7156)] = 227847, - [SMALL_STATE(7157)] = 227863, - [SMALL_STATE(7158)] = 227879, - [SMALL_STATE(7159)] = 227895, - [SMALL_STATE(7160)] = 227911, - [SMALL_STATE(7161)] = 227925, - [SMALL_STATE(7162)] = 227939, - [SMALL_STATE(7163)] = 227955, - [SMALL_STATE(7164)] = 227969, - [SMALL_STATE(7165)] = 227985, - [SMALL_STATE(7166)] = 228001, - [SMALL_STATE(7167)] = 228017, - [SMALL_STATE(7168)] = 228033, - [SMALL_STATE(7169)] = 228049, - [SMALL_STATE(7170)] = 228065, - [SMALL_STATE(7171)] = 228079, - [SMALL_STATE(7172)] = 228095, - [SMALL_STATE(7173)] = 228109, - [SMALL_STATE(7174)] = 228121, - [SMALL_STATE(7175)] = 228137, - [SMALL_STATE(7176)] = 228153, - [SMALL_STATE(7177)] = 228169, - [SMALL_STATE(7178)] = 228185, - [SMALL_STATE(7179)] = 228199, - [SMALL_STATE(7180)] = 228215, - [SMALL_STATE(7181)] = 228229, - [SMALL_STATE(7182)] = 228245, - [SMALL_STATE(7183)] = 228261, - [SMALL_STATE(7184)] = 228277, - [SMALL_STATE(7185)] = 228293, - [SMALL_STATE(7186)] = 228309, - [SMALL_STATE(7187)] = 228323, - [SMALL_STATE(7188)] = 228335, - [SMALL_STATE(7189)] = 228349, - [SMALL_STATE(7190)] = 228363, - [SMALL_STATE(7191)] = 228379, - [SMALL_STATE(7192)] = 228395, - [SMALL_STATE(7193)] = 228411, - [SMALL_STATE(7194)] = 228427, - [SMALL_STATE(7195)] = 228443, - [SMALL_STATE(7196)] = 228457, - [SMALL_STATE(7197)] = 228471, - [SMALL_STATE(7198)] = 228483, - [SMALL_STATE(7199)] = 228497, - [SMALL_STATE(7200)] = 228509, - [SMALL_STATE(7201)] = 228525, - [SMALL_STATE(7202)] = 228541, - [SMALL_STATE(7203)] = 228557, - [SMALL_STATE(7204)] = 228573, - [SMALL_STATE(7205)] = 228589, - [SMALL_STATE(7206)] = 228603, - [SMALL_STATE(7207)] = 228619, - [SMALL_STATE(7208)] = 228631, - [SMALL_STATE(7209)] = 228645, - [SMALL_STATE(7210)] = 228661, - [SMALL_STATE(7211)] = 228677, - [SMALL_STATE(7212)] = 228693, - [SMALL_STATE(7213)] = 228709, - [SMALL_STATE(7214)] = 228725, - [SMALL_STATE(7215)] = 228741, - [SMALL_STATE(7216)] = 228755, - [SMALL_STATE(7217)] = 228769, - [SMALL_STATE(7218)] = 228783, - [SMALL_STATE(7219)] = 228799, - [SMALL_STATE(7220)] = 228815, - [SMALL_STATE(7221)] = 228831, - [SMALL_STATE(7222)] = 228843, - [SMALL_STATE(7223)] = 228859, - [SMALL_STATE(7224)] = 228875, - [SMALL_STATE(7225)] = 228889, - [SMALL_STATE(7226)] = 228905, - [SMALL_STATE(7227)] = 228917, - [SMALL_STATE(7228)] = 228931, - [SMALL_STATE(7229)] = 228947, - [SMALL_STATE(7230)] = 228963, - [SMALL_STATE(7231)] = 228979, - [SMALL_STATE(7232)] = 228995, - [SMALL_STATE(7233)] = 229011, - [SMALL_STATE(7234)] = 229025, - [SMALL_STATE(7235)] = 229037, - [SMALL_STATE(7236)] = 229051, - [SMALL_STATE(7237)] = 229067, - [SMALL_STATE(7238)] = 229083, - [SMALL_STATE(7239)] = 229099, - [SMALL_STATE(7240)] = 229115, - [SMALL_STATE(7241)] = 229131, - [SMALL_STATE(7242)] = 229145, - [SMALL_STATE(7243)] = 229159, - [SMALL_STATE(7244)] = 229171, - [SMALL_STATE(7245)] = 229187, - [SMALL_STATE(7246)] = 229203, - [SMALL_STATE(7247)] = 229219, - [SMALL_STATE(7248)] = 229235, - [SMALL_STATE(7249)] = 229249, - [SMALL_STATE(7250)] = 229263, - [SMALL_STATE(7251)] = 229277, - [SMALL_STATE(7252)] = 229293, - [SMALL_STATE(7253)] = 229309, - [SMALL_STATE(7254)] = 229325, - [SMALL_STATE(7255)] = 229341, - [SMALL_STATE(7256)] = 229355, - [SMALL_STATE(7257)] = 229369, - [SMALL_STATE(7258)] = 229385, - [SMALL_STATE(7259)] = 229401, - [SMALL_STATE(7260)] = 229413, - [SMALL_STATE(7261)] = 229429, - [SMALL_STATE(7262)] = 229445, - [SMALL_STATE(7263)] = 229459, - [SMALL_STATE(7264)] = 229473, - [SMALL_STATE(7265)] = 229489, - [SMALL_STATE(7266)] = 229505, - [SMALL_STATE(7267)] = 229521, - [SMALL_STATE(7268)] = 229537, - [SMALL_STATE(7269)] = 229553, - [SMALL_STATE(7270)] = 229567, - [SMALL_STATE(7271)] = 229581, - [SMALL_STATE(7272)] = 229597, - [SMALL_STATE(7273)] = 229613, - [SMALL_STATE(7274)] = 229627, - [SMALL_STATE(7275)] = 229643, - [SMALL_STATE(7276)] = 229659, - [SMALL_STATE(7277)] = 229671, - [SMALL_STATE(7278)] = 229683, - [SMALL_STATE(7279)] = 229695, - [SMALL_STATE(7280)] = 229707, - [SMALL_STATE(7281)] = 229719, - [SMALL_STATE(7282)] = 229731, - [SMALL_STATE(7283)] = 229743, - [SMALL_STATE(7284)] = 229757, - [SMALL_STATE(7285)] = 229773, - [SMALL_STATE(7286)] = 229789, - [SMALL_STATE(7287)] = 229805, - [SMALL_STATE(7288)] = 229821, - [SMALL_STATE(7289)] = 229837, - [SMALL_STATE(7290)] = 229849, - [SMALL_STATE(7291)] = 229865, - [SMALL_STATE(7292)] = 229879, - [SMALL_STATE(7293)] = 229895, - [SMALL_STATE(7294)] = 229911, - [SMALL_STATE(7295)] = 229923, - [SMALL_STATE(7296)] = 229935, - [SMALL_STATE(7297)] = 229951, - [SMALL_STATE(7298)] = 229967, - [SMALL_STATE(7299)] = 229980, - [SMALL_STATE(7300)] = 229993, - [SMALL_STATE(7301)] = 230006, - [SMALL_STATE(7302)] = 230019, - [SMALL_STATE(7303)] = 230032, - [SMALL_STATE(7304)] = 230043, - [SMALL_STATE(7305)] = 230056, - [SMALL_STATE(7306)] = 230069, - [SMALL_STATE(7307)] = 230082, - [SMALL_STATE(7308)] = 230095, - [SMALL_STATE(7309)] = 230108, - [SMALL_STATE(7310)] = 230121, - [SMALL_STATE(7311)] = 230134, - [SMALL_STATE(7312)] = 230147, - [SMALL_STATE(7313)] = 230160, - [SMALL_STATE(7314)] = 230173, - [SMALL_STATE(7315)] = 230186, - [SMALL_STATE(7316)] = 230199, - [SMALL_STATE(7317)] = 230212, - [SMALL_STATE(7318)] = 230225, - [SMALL_STATE(7319)] = 230238, - [SMALL_STATE(7320)] = 230251, - [SMALL_STATE(7321)] = 230264, - [SMALL_STATE(7322)] = 230277, - [SMALL_STATE(7323)] = 230290, - [SMALL_STATE(7324)] = 230303, - [SMALL_STATE(7325)] = 230316, - [SMALL_STATE(7326)] = 230329, - [SMALL_STATE(7327)] = 230342, - [SMALL_STATE(7328)] = 230355, - [SMALL_STATE(7329)] = 230368, - [SMALL_STATE(7330)] = 230381, - [SMALL_STATE(7331)] = 230394, - [SMALL_STATE(7332)] = 230407, - [SMALL_STATE(7333)] = 230420, - [SMALL_STATE(7334)] = 230433, - [SMALL_STATE(7335)] = 230446, - [SMALL_STATE(7336)] = 230459, - [SMALL_STATE(7337)] = 230472, - [SMALL_STATE(7338)] = 230483, - [SMALL_STATE(7339)] = 230496, - [SMALL_STATE(7340)] = 230509, - [SMALL_STATE(7341)] = 230522, - [SMALL_STATE(7342)] = 230535, - [SMALL_STATE(7343)] = 230548, - [SMALL_STATE(7344)] = 230561, - [SMALL_STATE(7345)] = 230574, - [SMALL_STATE(7346)] = 230587, - [SMALL_STATE(7347)] = 230600, - [SMALL_STATE(7348)] = 230613, - [SMALL_STATE(7349)] = 230624, - [SMALL_STATE(7350)] = 230637, - [SMALL_STATE(7351)] = 230650, - [SMALL_STATE(7352)] = 230663, - [SMALL_STATE(7353)] = 230676, - [SMALL_STATE(7354)] = 230689, - [SMALL_STATE(7355)] = 230700, - [SMALL_STATE(7356)] = 230713, - [SMALL_STATE(7357)] = 230726, - [SMALL_STATE(7358)] = 230739, - [SMALL_STATE(7359)] = 230752, - [SMALL_STATE(7360)] = 230765, - [SMALL_STATE(7361)] = 230778, - [SMALL_STATE(7362)] = 230791, - [SMALL_STATE(7363)] = 230804, - [SMALL_STATE(7364)] = 230817, - [SMALL_STATE(7365)] = 230830, - [SMALL_STATE(7366)] = 230841, - [SMALL_STATE(7367)] = 230854, - [SMALL_STATE(7368)] = 230867, - [SMALL_STATE(7369)] = 230880, - [SMALL_STATE(7370)] = 230893, - [SMALL_STATE(7371)] = 230906, - [SMALL_STATE(7372)] = 230919, - [SMALL_STATE(7373)] = 230930, - [SMALL_STATE(7374)] = 230943, - [SMALL_STATE(7375)] = 230956, - [SMALL_STATE(7376)] = 230969, - [SMALL_STATE(7377)] = 230982, - [SMALL_STATE(7378)] = 230995, - [SMALL_STATE(7379)] = 231008, - [SMALL_STATE(7380)] = 231021, - [SMALL_STATE(7381)] = 231034, - [SMALL_STATE(7382)] = 231047, - [SMALL_STATE(7383)] = 231060, - [SMALL_STATE(7384)] = 231073, - [SMALL_STATE(7385)] = 231086, - [SMALL_STATE(7386)] = 231099, - [SMALL_STATE(7387)] = 231112, - [SMALL_STATE(7388)] = 231125, - [SMALL_STATE(7389)] = 231138, - [SMALL_STATE(7390)] = 231151, - [SMALL_STATE(7391)] = 231164, - [SMALL_STATE(7392)] = 231177, - [SMALL_STATE(7393)] = 231190, - [SMALL_STATE(7394)] = 231203, - [SMALL_STATE(7395)] = 231216, - [SMALL_STATE(7396)] = 231229, - [SMALL_STATE(7397)] = 231242, - [SMALL_STATE(7398)] = 231255, - [SMALL_STATE(7399)] = 231268, - [SMALL_STATE(7400)] = 231281, - [SMALL_STATE(7401)] = 231294, - [SMALL_STATE(7402)] = 231307, - [SMALL_STATE(7403)] = 231320, - [SMALL_STATE(7404)] = 231333, - [SMALL_STATE(7405)] = 231346, - [SMALL_STATE(7406)] = 231357, - [SMALL_STATE(7407)] = 231370, - [SMALL_STATE(7408)] = 231383, - [SMALL_STATE(7409)] = 231396, - [SMALL_STATE(7410)] = 231409, - [SMALL_STATE(7411)] = 231422, - [SMALL_STATE(7412)] = 231435, - [SMALL_STATE(7413)] = 231448, - [SMALL_STATE(7414)] = 231461, - [SMALL_STATE(7415)] = 231474, - [SMALL_STATE(7416)] = 231487, - [SMALL_STATE(7417)] = 231500, - [SMALL_STATE(7418)] = 231513, - [SMALL_STATE(7419)] = 231526, - [SMALL_STATE(7420)] = 231539, - [SMALL_STATE(7421)] = 231552, - [SMALL_STATE(7422)] = 231565, - [SMALL_STATE(7423)] = 231578, - [SMALL_STATE(7424)] = 231591, - [SMALL_STATE(7425)] = 231604, - [SMALL_STATE(7426)] = 231617, - [SMALL_STATE(7427)] = 231630, - [SMALL_STATE(7428)] = 231643, - [SMALL_STATE(7429)] = 231656, - [SMALL_STATE(7430)] = 231669, - [SMALL_STATE(7431)] = 231682, - [SMALL_STATE(7432)] = 231695, - [SMALL_STATE(7433)] = 231708, - [SMALL_STATE(7434)] = 231721, - [SMALL_STATE(7435)] = 231734, - [SMALL_STATE(7436)] = 231747, - [SMALL_STATE(7437)] = 231760, - [SMALL_STATE(7438)] = 231773, - [SMALL_STATE(7439)] = 231786, - [SMALL_STATE(7440)] = 231799, - [SMALL_STATE(7441)] = 231812, - [SMALL_STATE(7442)] = 231825, - [SMALL_STATE(7443)] = 231838, - [SMALL_STATE(7444)] = 231849, - [SMALL_STATE(7445)] = 231862, - [SMALL_STATE(7446)] = 231875, - [SMALL_STATE(7447)] = 231888, - [SMALL_STATE(7448)] = 231901, - [SMALL_STATE(7449)] = 231914, - [SMALL_STATE(7450)] = 231927, - [SMALL_STATE(7451)] = 231940, - [SMALL_STATE(7452)] = 231953, - [SMALL_STATE(7453)] = 231966, - [SMALL_STATE(7454)] = 231979, - [SMALL_STATE(7455)] = 231992, - [SMALL_STATE(7456)] = 232005, - [SMALL_STATE(7457)] = 232018, - [SMALL_STATE(7458)] = 232029, - [SMALL_STATE(7459)] = 232042, - [SMALL_STATE(7460)] = 232053, - [SMALL_STATE(7461)] = 232066, - [SMALL_STATE(7462)] = 232079, - [SMALL_STATE(7463)] = 232092, - [SMALL_STATE(7464)] = 232105, - [SMALL_STATE(7465)] = 232118, - [SMALL_STATE(7466)] = 232128, - [SMALL_STATE(7467)] = 232138, - [SMALL_STATE(7468)] = 232148, - [SMALL_STATE(7469)] = 232158, - [SMALL_STATE(7470)] = 232168, - [SMALL_STATE(7471)] = 232178, - [SMALL_STATE(7472)] = 232188, - [SMALL_STATE(7473)] = 232198, - [SMALL_STATE(7474)] = 232208, - [SMALL_STATE(7475)] = 232218, - [SMALL_STATE(7476)] = 232228, - [SMALL_STATE(7477)] = 232238, - [SMALL_STATE(7478)] = 232248, - [SMALL_STATE(7479)] = 232258, - [SMALL_STATE(7480)] = 232268, - [SMALL_STATE(7481)] = 232278, - [SMALL_STATE(7482)] = 232288, - [SMALL_STATE(7483)] = 232298, - [SMALL_STATE(7484)] = 232308, - [SMALL_STATE(7485)] = 232318, - [SMALL_STATE(7486)] = 232328, - [SMALL_STATE(7487)] = 232338, - [SMALL_STATE(7488)] = 232348, - [SMALL_STATE(7489)] = 232358, - [SMALL_STATE(7490)] = 232368, - [SMALL_STATE(7491)] = 232378, - [SMALL_STATE(7492)] = 232388, - [SMALL_STATE(7493)] = 232398, - [SMALL_STATE(7494)] = 232408, - [SMALL_STATE(7495)] = 232418, - [SMALL_STATE(7496)] = 232428, - [SMALL_STATE(7497)] = 232438, - [SMALL_STATE(7498)] = 232448, - [SMALL_STATE(7499)] = 232458, - [SMALL_STATE(7500)] = 232468, - [SMALL_STATE(7501)] = 232478, - [SMALL_STATE(7502)] = 232488, - [SMALL_STATE(7503)] = 232498, - [SMALL_STATE(7504)] = 232508, - [SMALL_STATE(7505)] = 232518, - [SMALL_STATE(7506)] = 232528, - [SMALL_STATE(7507)] = 232538, - [SMALL_STATE(7508)] = 232548, - [SMALL_STATE(7509)] = 232558, - [SMALL_STATE(7510)] = 232568, - [SMALL_STATE(7511)] = 232578, - [SMALL_STATE(7512)] = 232588, - [SMALL_STATE(7513)] = 232598, - [SMALL_STATE(7514)] = 232608, - [SMALL_STATE(7515)] = 232618, - [SMALL_STATE(7516)] = 232628, - [SMALL_STATE(7517)] = 232638, - [SMALL_STATE(7518)] = 232648, - [SMALL_STATE(7519)] = 232658, - [SMALL_STATE(7520)] = 232668, - [SMALL_STATE(7521)] = 232678, - [SMALL_STATE(7522)] = 232688, - [SMALL_STATE(7523)] = 232698, - [SMALL_STATE(7524)] = 232708, - [SMALL_STATE(7525)] = 232718, - [SMALL_STATE(7526)] = 232728, - [SMALL_STATE(7527)] = 232738, - [SMALL_STATE(7528)] = 232748, - [SMALL_STATE(7529)] = 232758, - [SMALL_STATE(7530)] = 232768, - [SMALL_STATE(7531)] = 232778, - [SMALL_STATE(7532)] = 232788, - [SMALL_STATE(7533)] = 232798, - [SMALL_STATE(7534)] = 232808, - [SMALL_STATE(7535)] = 232818, - [SMALL_STATE(7536)] = 232828, - [SMALL_STATE(7537)] = 232838, - [SMALL_STATE(7538)] = 232848, - [SMALL_STATE(7539)] = 232858, - [SMALL_STATE(7540)] = 232868, - [SMALL_STATE(7541)] = 232878, - [SMALL_STATE(7542)] = 232888, - [SMALL_STATE(7543)] = 232898, - [SMALL_STATE(7544)] = 232908, - [SMALL_STATE(7545)] = 232918, - [SMALL_STATE(7546)] = 232928, - [SMALL_STATE(7547)] = 232938, - [SMALL_STATE(7548)] = 232948, - [SMALL_STATE(7549)] = 232958, - [SMALL_STATE(7550)] = 232968, - [SMALL_STATE(7551)] = 232978, - [SMALL_STATE(7552)] = 232988, - [SMALL_STATE(7553)] = 232998, - [SMALL_STATE(7554)] = 233008, - [SMALL_STATE(7555)] = 233018, - [SMALL_STATE(7556)] = 233028, - [SMALL_STATE(7557)] = 233038, - [SMALL_STATE(7558)] = 233048, - [SMALL_STATE(7559)] = 233058, - [SMALL_STATE(7560)] = 233068, - [SMALL_STATE(7561)] = 233078, - [SMALL_STATE(7562)] = 233088, - [SMALL_STATE(7563)] = 233098, - [SMALL_STATE(7564)] = 233108, - [SMALL_STATE(7565)] = 233118, - [SMALL_STATE(7566)] = 233128, - [SMALL_STATE(7567)] = 233138, - [SMALL_STATE(7568)] = 233148, - [SMALL_STATE(7569)] = 233158, - [SMALL_STATE(7570)] = 233168, - [SMALL_STATE(7571)] = 233178, - [SMALL_STATE(7572)] = 233188, - [SMALL_STATE(7573)] = 233198, - [SMALL_STATE(7574)] = 233208, - [SMALL_STATE(7575)] = 233218, - [SMALL_STATE(7576)] = 233228, - [SMALL_STATE(7577)] = 233238, - [SMALL_STATE(7578)] = 233248, - [SMALL_STATE(7579)] = 233258, - [SMALL_STATE(7580)] = 233268, - [SMALL_STATE(7581)] = 233278, - [SMALL_STATE(7582)] = 233288, - [SMALL_STATE(7583)] = 233298, - [SMALL_STATE(7584)] = 233308, - [SMALL_STATE(7585)] = 233318, - [SMALL_STATE(7586)] = 233328, - [SMALL_STATE(7587)] = 233338, - [SMALL_STATE(7588)] = 233348, - [SMALL_STATE(7589)] = 233358, - [SMALL_STATE(7590)] = 233368, - [SMALL_STATE(7591)] = 233378, - [SMALL_STATE(7592)] = 233388, - [SMALL_STATE(7593)] = 233398, - [SMALL_STATE(7594)] = 233408, - [SMALL_STATE(7595)] = 233418, - [SMALL_STATE(7596)] = 233428, - [SMALL_STATE(7597)] = 233438, - [SMALL_STATE(7598)] = 233448, - [SMALL_STATE(7599)] = 233458, - [SMALL_STATE(7600)] = 233468, - [SMALL_STATE(7601)] = 233478, - [SMALL_STATE(7602)] = 233488, - [SMALL_STATE(7603)] = 233498, - [SMALL_STATE(7604)] = 233508, - [SMALL_STATE(7605)] = 233518, - [SMALL_STATE(7606)] = 233528, - [SMALL_STATE(7607)] = 233538, - [SMALL_STATE(7608)] = 233548, - [SMALL_STATE(7609)] = 233558, - [SMALL_STATE(7610)] = 233568, - [SMALL_STATE(7611)] = 233578, - [SMALL_STATE(7612)] = 233588, - [SMALL_STATE(7613)] = 233598, - [SMALL_STATE(7614)] = 233608, - [SMALL_STATE(7615)] = 233618, - [SMALL_STATE(7616)] = 233628, - [SMALL_STATE(7617)] = 233638, - [SMALL_STATE(7618)] = 233648, - [SMALL_STATE(7619)] = 233658, - [SMALL_STATE(7620)] = 233668, - [SMALL_STATE(7621)] = 233678, - [SMALL_STATE(7622)] = 233688, - [SMALL_STATE(7623)] = 233698, - [SMALL_STATE(7624)] = 233708, - [SMALL_STATE(7625)] = 233718, - [SMALL_STATE(7626)] = 233728, - [SMALL_STATE(7627)] = 233738, - [SMALL_STATE(7628)] = 233748, - [SMALL_STATE(7629)] = 233758, - [SMALL_STATE(7630)] = 233768, - [SMALL_STATE(7631)] = 233778, - [SMALL_STATE(7632)] = 233788, - [SMALL_STATE(7633)] = 233798, - [SMALL_STATE(7634)] = 233808, - [SMALL_STATE(7635)] = 233818, - [SMALL_STATE(7636)] = 233828, - [SMALL_STATE(7637)] = 233838, - [SMALL_STATE(7638)] = 233848, - [SMALL_STATE(7639)] = 233858, - [SMALL_STATE(7640)] = 233868, - [SMALL_STATE(7641)] = 233878, - [SMALL_STATE(7642)] = 233888, - [SMALL_STATE(7643)] = 233898, - [SMALL_STATE(7644)] = 233908, - [SMALL_STATE(7645)] = 233918, - [SMALL_STATE(7646)] = 233928, - [SMALL_STATE(7647)] = 233938, - [SMALL_STATE(7648)] = 233948, - [SMALL_STATE(7649)] = 233958, - [SMALL_STATE(7650)] = 233968, - [SMALL_STATE(7651)] = 233978, - [SMALL_STATE(7652)] = 233988, - [SMALL_STATE(7653)] = 233998, - [SMALL_STATE(7654)] = 234008, - [SMALL_STATE(7655)] = 234018, - [SMALL_STATE(7656)] = 234028, - [SMALL_STATE(7657)] = 234038, - [SMALL_STATE(7658)] = 234048, - [SMALL_STATE(7659)] = 234058, - [SMALL_STATE(7660)] = 234068, - [SMALL_STATE(7661)] = 234078, - [SMALL_STATE(7662)] = 234088, - [SMALL_STATE(7663)] = 234098, - [SMALL_STATE(7664)] = 234108, - [SMALL_STATE(7665)] = 234118, - [SMALL_STATE(7666)] = 234128, - [SMALL_STATE(7667)] = 234138, - [SMALL_STATE(7668)] = 234148, - [SMALL_STATE(7669)] = 234158, - [SMALL_STATE(7670)] = 234168, - [SMALL_STATE(7671)] = 234178, - [SMALL_STATE(7672)] = 234188, - [SMALL_STATE(7673)] = 234198, - [SMALL_STATE(7674)] = 234208, - [SMALL_STATE(7675)] = 234218, - [SMALL_STATE(7676)] = 234228, - [SMALL_STATE(7677)] = 234238, - [SMALL_STATE(7678)] = 234248, - [SMALL_STATE(7679)] = 234258, - [SMALL_STATE(7680)] = 234268, - [SMALL_STATE(7681)] = 234278, - [SMALL_STATE(7682)] = 234288, - [SMALL_STATE(7683)] = 234298, - [SMALL_STATE(7684)] = 234308, - [SMALL_STATE(7685)] = 234318, - [SMALL_STATE(7686)] = 234328, - [SMALL_STATE(7687)] = 234338, - [SMALL_STATE(7688)] = 234348, - [SMALL_STATE(7689)] = 234358, - [SMALL_STATE(7690)] = 234368, - [SMALL_STATE(7691)] = 234378, - [SMALL_STATE(7692)] = 234388, - [SMALL_STATE(7693)] = 234398, - [SMALL_STATE(7694)] = 234408, - [SMALL_STATE(7695)] = 234418, - [SMALL_STATE(7696)] = 234428, - [SMALL_STATE(7697)] = 234438, - [SMALL_STATE(7698)] = 234448, - [SMALL_STATE(7699)] = 234458, - [SMALL_STATE(7700)] = 234468, - [SMALL_STATE(7701)] = 234478, - [SMALL_STATE(7702)] = 234488, - [SMALL_STATE(7703)] = 234498, - [SMALL_STATE(7704)] = 234508, - [SMALL_STATE(7705)] = 234518, - [SMALL_STATE(7706)] = 234528, - [SMALL_STATE(7707)] = 234538, - [SMALL_STATE(7708)] = 234548, - [SMALL_STATE(7709)] = 234558, - [SMALL_STATE(7710)] = 234568, - [SMALL_STATE(7711)] = 234578, - [SMALL_STATE(7712)] = 234588, - [SMALL_STATE(7713)] = 234598, - [SMALL_STATE(7714)] = 234608, - [SMALL_STATE(7715)] = 234618, - [SMALL_STATE(7716)] = 234628, - [SMALL_STATE(7717)] = 234638, - [SMALL_STATE(7718)] = 234648, - [SMALL_STATE(7719)] = 234658, - [SMALL_STATE(7720)] = 234668, - [SMALL_STATE(7721)] = 234678, - [SMALL_STATE(7722)] = 234688, - [SMALL_STATE(7723)] = 234698, - [SMALL_STATE(7724)] = 234708, - [SMALL_STATE(7725)] = 234718, - [SMALL_STATE(7726)] = 234728, - [SMALL_STATE(7727)] = 234738, - [SMALL_STATE(7728)] = 234748, - [SMALL_STATE(7729)] = 234758, - [SMALL_STATE(7730)] = 234768, - [SMALL_STATE(7731)] = 234778, - [SMALL_STATE(7732)] = 234788, - [SMALL_STATE(7733)] = 234798, - [SMALL_STATE(7734)] = 234808, - [SMALL_STATE(7735)] = 234818, - [SMALL_STATE(7736)] = 234828, - [SMALL_STATE(7737)] = 234838, - [SMALL_STATE(7738)] = 234848, - [SMALL_STATE(7739)] = 234858, - [SMALL_STATE(7740)] = 234868, - [SMALL_STATE(7741)] = 234878, - [SMALL_STATE(7742)] = 234888, - [SMALL_STATE(7743)] = 234898, - [SMALL_STATE(7744)] = 234908, - [SMALL_STATE(7745)] = 234918, - [SMALL_STATE(7746)] = 234928, - [SMALL_STATE(7747)] = 234938, - [SMALL_STATE(7748)] = 234948, - [SMALL_STATE(7749)] = 234958, - [SMALL_STATE(7750)] = 234968, - [SMALL_STATE(7751)] = 234978, - [SMALL_STATE(7752)] = 234988, - [SMALL_STATE(7753)] = 234998, - [SMALL_STATE(7754)] = 235008, - [SMALL_STATE(7755)] = 235018, - [SMALL_STATE(7756)] = 235028, - [SMALL_STATE(7757)] = 235038, - [SMALL_STATE(7758)] = 235048, - [SMALL_STATE(7759)] = 235058, - [SMALL_STATE(7760)] = 235068, - [SMALL_STATE(7761)] = 235078, - [SMALL_STATE(7762)] = 235088, - [SMALL_STATE(7763)] = 235098, - [SMALL_STATE(7764)] = 235108, - [SMALL_STATE(7765)] = 235118, - [SMALL_STATE(7766)] = 235128, - [SMALL_STATE(7767)] = 235138, - [SMALL_STATE(7768)] = 235148, - [SMALL_STATE(7769)] = 235158, - [SMALL_STATE(7770)] = 235168, - [SMALL_STATE(7771)] = 235178, - [SMALL_STATE(7772)] = 235188, - [SMALL_STATE(7773)] = 235198, - [SMALL_STATE(7774)] = 235208, - [SMALL_STATE(7775)] = 235218, - [SMALL_STATE(7776)] = 235228, - [SMALL_STATE(7777)] = 235238, - [SMALL_STATE(7778)] = 235248, - [SMALL_STATE(7779)] = 235258, - [SMALL_STATE(7780)] = 235268, - [SMALL_STATE(7781)] = 235278, - [SMALL_STATE(7782)] = 235288, - [SMALL_STATE(7783)] = 235298, - [SMALL_STATE(7784)] = 235308, - [SMALL_STATE(7785)] = 235318, - [SMALL_STATE(7786)] = 235328, - [SMALL_STATE(7787)] = 235338, - [SMALL_STATE(7788)] = 235348, - [SMALL_STATE(7789)] = 235358, - [SMALL_STATE(7790)] = 235368, - [SMALL_STATE(7791)] = 235378, - [SMALL_STATE(7792)] = 235388, - [SMALL_STATE(7793)] = 235398, - [SMALL_STATE(7794)] = 235408, - [SMALL_STATE(7795)] = 235418, - [SMALL_STATE(7796)] = 235428, - [SMALL_STATE(7797)] = 235438, - [SMALL_STATE(7798)] = 235448, - [SMALL_STATE(7799)] = 235458, - [SMALL_STATE(7800)] = 235468, - [SMALL_STATE(7801)] = 235478, - [SMALL_STATE(7802)] = 235488, - [SMALL_STATE(7803)] = 235498, - [SMALL_STATE(7804)] = 235508, - [SMALL_STATE(7805)] = 235518, - [SMALL_STATE(7806)] = 235528, - [SMALL_STATE(7807)] = 235538, - [SMALL_STATE(7808)] = 235548, - [SMALL_STATE(7809)] = 235558, - [SMALL_STATE(7810)] = 235568, - [SMALL_STATE(7811)] = 235578, - [SMALL_STATE(7812)] = 235588, - [SMALL_STATE(7813)] = 235598, - [SMALL_STATE(7814)] = 235608, - [SMALL_STATE(7815)] = 235618, - [SMALL_STATE(7816)] = 235628, - [SMALL_STATE(7817)] = 235638, - [SMALL_STATE(7818)] = 235648, - [SMALL_STATE(7819)] = 235658, - [SMALL_STATE(7820)] = 235668, - [SMALL_STATE(7821)] = 235678, - [SMALL_STATE(7822)] = 235688, - [SMALL_STATE(7823)] = 235698, - [SMALL_STATE(7824)] = 235708, - [SMALL_STATE(7825)] = 235718, - [SMALL_STATE(7826)] = 235728, - [SMALL_STATE(7827)] = 235738, - [SMALL_STATE(7828)] = 235748, - [SMALL_STATE(7829)] = 235758, - [SMALL_STATE(7830)] = 235768, - [SMALL_STATE(7831)] = 235778, - [SMALL_STATE(7832)] = 235788, - [SMALL_STATE(7833)] = 235798, - [SMALL_STATE(7834)] = 235808, - [SMALL_STATE(7835)] = 235818, - [SMALL_STATE(7836)] = 235828, - [SMALL_STATE(7837)] = 235838, - [SMALL_STATE(7838)] = 235848, - [SMALL_STATE(7839)] = 235858, - [SMALL_STATE(7840)] = 235868, - [SMALL_STATE(7841)] = 235878, - [SMALL_STATE(7842)] = 235888, - [SMALL_STATE(7843)] = 235898, - [SMALL_STATE(7844)] = 235908, - [SMALL_STATE(7845)] = 235918, - [SMALL_STATE(7846)] = 235928, - [SMALL_STATE(7847)] = 235938, - [SMALL_STATE(7848)] = 235948, - [SMALL_STATE(7849)] = 235958, - [SMALL_STATE(7850)] = 235968, - [SMALL_STATE(7851)] = 235978, - [SMALL_STATE(7852)] = 235988, - [SMALL_STATE(7853)] = 235998, - [SMALL_STATE(7854)] = 236008, - [SMALL_STATE(7855)] = 236018, - [SMALL_STATE(7856)] = 236028, - [SMALL_STATE(7857)] = 236038, - [SMALL_STATE(7858)] = 236048, - [SMALL_STATE(7859)] = 236058, - [SMALL_STATE(7860)] = 236068, - [SMALL_STATE(7861)] = 236078, - [SMALL_STATE(7862)] = 236088, - [SMALL_STATE(7863)] = 236098, - [SMALL_STATE(7864)] = 236108, - [SMALL_STATE(7865)] = 236118, - [SMALL_STATE(7866)] = 236128, - [SMALL_STATE(7867)] = 236138, - [SMALL_STATE(7868)] = 236148, - [SMALL_STATE(7869)] = 236158, - [SMALL_STATE(7870)] = 236168, + [SMALL_STATE(1748)] = 0, + [SMALL_STATE(1749)] = 75, + [SMALL_STATE(1750)] = 148, + [SMALL_STATE(1751)] = 229, + [SMALL_STATE(1752)] = 302, + [SMALL_STATE(1753)] = 381, + [SMALL_STATE(1754)] = 456, + [SMALL_STATE(1755)] = 535, + [SMALL_STATE(1756)] = 608, + [SMALL_STATE(1757)] = 711, + [SMALL_STATE(1758)] = 784, + [SMALL_STATE(1759)] = 863, + [SMALL_STATE(1760)] = 936, + [SMALL_STATE(1761)] = 1043, + [SMALL_STATE(1762)] = 1122, + [SMALL_STATE(1763)] = 1195, + [SMALL_STATE(1764)] = 1270, + [SMALL_STATE(1765)] = 1343, + [SMALL_STATE(1766)] = 1416, + [SMALL_STATE(1767)] = 1489, + [SMALL_STATE(1768)] = 1568, + [SMALL_STATE(1769)] = 1647, + [SMALL_STATE(1770)] = 1726, + [SMALL_STATE(1771)] = 1799, + [SMALL_STATE(1772)] = 1872, + [SMALL_STATE(1773)] = 1945, + [SMALL_STATE(1774)] = 2018, + [SMALL_STATE(1775)] = 2097, + [SMALL_STATE(1776)] = 2170, + [SMALL_STATE(1777)] = 2243, + [SMALL_STATE(1778)] = 2316, + [SMALL_STATE(1779)] = 2389, + [SMALL_STATE(1780)] = 2468, + [SMALL_STATE(1781)] = 2541, + [SMALL_STATE(1782)] = 2614, + [SMALL_STATE(1783)] = 2693, + [SMALL_STATE(1784)] = 2766, + [SMALL_STATE(1785)] = 2839, + [SMALL_STATE(1786)] = 2912, + [SMALL_STATE(1787)] = 2985, + [SMALL_STATE(1788)] = 3058, + [SMALL_STATE(1789)] = 3131, + [SMALL_STATE(1790)] = 3204, + [SMALL_STATE(1791)] = 3277, + [SMALL_STATE(1792)] = 3350, + [SMALL_STATE(1793)] = 3423, + [SMALL_STATE(1794)] = 3496, + [SMALL_STATE(1795)] = 3569, + [SMALL_STATE(1796)] = 3642, + [SMALL_STATE(1797)] = 3715, + [SMALL_STATE(1798)] = 3788, + [SMALL_STATE(1799)] = 3861, + [SMALL_STATE(1800)] = 3934, + [SMALL_STATE(1801)] = 4007, + [SMALL_STATE(1802)] = 4080, + [SMALL_STATE(1803)] = 4153, + [SMALL_STATE(1804)] = 4226, + [SMALL_STATE(1805)] = 4299, + [SMALL_STATE(1806)] = 4372, + [SMALL_STATE(1807)] = 4451, + [SMALL_STATE(1808)] = 4528, + [SMALL_STATE(1809)] = 4607, + [SMALL_STATE(1810)] = 4680, + [SMALL_STATE(1811)] = 4761, + [SMALL_STATE(1812)] = 4834, + [SMALL_STATE(1813)] = 4907, + [SMALL_STATE(1814)] = 4986, + [SMALL_STATE(1815)] = 5059, + [SMALL_STATE(1816)] = 5132, + [SMALL_STATE(1817)] = 5205, + [SMALL_STATE(1818)] = 5278, + [SMALL_STATE(1819)] = 5351, + [SMALL_STATE(1820)] = 5424, + [SMALL_STATE(1821)] = 5497, + [SMALL_STATE(1822)] = 5570, + [SMALL_STATE(1823)] = 5643, + [SMALL_STATE(1824)] = 5716, + [SMALL_STATE(1825)] = 5789, + [SMALL_STATE(1826)] = 5868, + [SMALL_STATE(1827)] = 5941, + [SMALL_STATE(1828)] = 6014, + [SMALL_STATE(1829)] = 6087, + [SMALL_STATE(1830)] = 6160, + [SMALL_STATE(1831)] = 6267, + [SMALL_STATE(1832)] = 6340, + [SMALL_STATE(1833)] = 6413, + [SMALL_STATE(1834)] = 6486, + [SMALL_STATE(1835)] = 6567, + [SMALL_STATE(1836)] = 6648, + [SMALL_STATE(1837)] = 6721, + [SMALL_STATE(1838)] = 6794, + [SMALL_STATE(1839)] = 6873, + [SMALL_STATE(1840)] = 6952, + [SMALL_STATE(1841)] = 7031, + [SMALL_STATE(1842)] = 7110, + [SMALL_STATE(1843)] = 7189, + [SMALL_STATE(1844)] = 7268, + [SMALL_STATE(1845)] = 7341, + [SMALL_STATE(1846)] = 7414, + [SMALL_STATE(1847)] = 7493, + [SMALL_STATE(1848)] = 7566, + [SMALL_STATE(1849)] = 7639, + [SMALL_STATE(1850)] = 7714, + [SMALL_STATE(1851)] = 7787, + [SMALL_STATE(1852)] = 7860, + [SMALL_STATE(1853)] = 7933, + [SMALL_STATE(1854)] = 8006, + [SMALL_STATE(1855)] = 8079, + [SMALL_STATE(1856)] = 8152, + [SMALL_STATE(1857)] = 8225, + [SMALL_STATE(1858)] = 8298, + [SMALL_STATE(1859)] = 8371, + [SMALL_STATE(1860)] = 8444, + [SMALL_STATE(1861)] = 8517, + [SMALL_STATE(1862)] = 8590, + [SMALL_STATE(1863)] = 8663, + [SMALL_STATE(1864)] = 8736, + [SMALL_STATE(1865)] = 8809, + [SMALL_STATE(1866)] = 8882, + [SMALL_STATE(1867)] = 8955, + [SMALL_STATE(1868)] = 9028, + [SMALL_STATE(1869)] = 9101, + [SMALL_STATE(1870)] = 9174, + [SMALL_STATE(1871)] = 9247, + [SMALL_STATE(1872)] = 9322, + [SMALL_STATE(1873)] = 9395, + [SMALL_STATE(1874)] = 9468, + [SMALL_STATE(1875)] = 9541, + [SMALL_STATE(1876)] = 9614, + [SMALL_STATE(1877)] = 9689, + [SMALL_STATE(1878)] = 9762, + [SMALL_STATE(1879)] = 9835, + [SMALL_STATE(1880)] = 9908, + [SMALL_STATE(1881)] = 9981, + [SMALL_STATE(1882)] = 10054, + [SMALL_STATE(1883)] = 10127, + [SMALL_STATE(1884)] = 10208, + [SMALL_STATE(1885)] = 10281, + [SMALL_STATE(1886)] = 10354, + [SMALL_STATE(1887)] = 10433, + [SMALL_STATE(1888)] = 10506, + [SMALL_STATE(1889)] = 10579, + [SMALL_STATE(1890)] = 10652, + [SMALL_STATE(1891)] = 10725, + [SMALL_STATE(1892)] = 10798, + [SMALL_STATE(1893)] = 10871, + [SMALL_STATE(1894)] = 10952, + [SMALL_STATE(1895)] = 11027, + [SMALL_STATE(1896)] = 11100, + [SMALL_STATE(1897)] = 11181, + [SMALL_STATE(1898)] = 11260, + [SMALL_STATE(1899)] = 11339, + [SMALL_STATE(1900)] = 11418, + [SMALL_STATE(1901)] = 11497, + [SMALL_STATE(1902)] = 11576, + [SMALL_STATE(1903)] = 11655, + [SMALL_STATE(1904)] = 11734, + [SMALL_STATE(1905)] = 11809, + [SMALL_STATE(1906)] = 11890, + [SMALL_STATE(1907)] = 11971, + [SMALL_STATE(1908)] = 12052, + [SMALL_STATE(1909)] = 12125, + [SMALL_STATE(1910)] = 12198, + [SMALL_STATE(1911)] = 12277, + [SMALL_STATE(1912)] = 12356, + [SMALL_STATE(1913)] = 12429, + [SMALL_STATE(1914)] = 12508, + [SMALL_STATE(1915)] = 12587, + [SMALL_STATE(1916)] = 12664, + [SMALL_STATE(1917)] = 12745, + [SMALL_STATE(1918)] = 12826, + [SMALL_STATE(1919)] = 12899, + [SMALL_STATE(1920)] = 13006, + [SMALL_STATE(1921)] = 13085, + [SMALL_STATE(1922)] = 13158, + [SMALL_STATE(1923)] = 13231, + [SMALL_STATE(1924)] = 13304, + [SMALL_STATE(1925)] = 13377, + [SMALL_STATE(1926)] = 13450, + [SMALL_STATE(1927)] = 13523, + [SMALL_STATE(1928)] = 13596, + [SMALL_STATE(1929)] = 13669, + [SMALL_STATE(1930)] = 13742, + [SMALL_STATE(1931)] = 13815, + [SMALL_STATE(1932)] = 13918, + [SMALL_STATE(1933)] = 13991, + [SMALL_STATE(1934)] = 14064, + [SMALL_STATE(1935)] = 14137, + [SMALL_STATE(1936)] = 14210, + [SMALL_STATE(1937)] = 14283, + [SMALL_STATE(1938)] = 14362, + [SMALL_STATE(1939)] = 14441, + [SMALL_STATE(1940)] = 14520, + [SMALL_STATE(1941)] = 14593, + [SMALL_STATE(1942)] = 14672, + [SMALL_STATE(1943)] = 14751, + [SMALL_STATE(1944)] = 14830, + [SMALL_STATE(1945)] = 14903, + [SMALL_STATE(1946)] = 14978, + [SMALL_STATE(1947)] = 15057, + [SMALL_STATE(1948)] = 15138, + [SMALL_STATE(1949)] = 15213, + [SMALL_STATE(1950)] = 15290, + [SMALL_STATE(1951)] = 15371, + [SMALL_STATE(1952)] = 15454, + [SMALL_STATE(1953)] = 15531, + [SMALL_STATE(1954)] = 15610, + [SMALL_STATE(1955)] = 15689, + [SMALL_STATE(1956)] = 15768, + [SMALL_STATE(1957)] = 15871, + [SMALL_STATE(1958)] = 15944, + [SMALL_STATE(1959)] = 16023, + [SMALL_STATE(1960)] = 16102, + [SMALL_STATE(1961)] = 16181, + [SMALL_STATE(1962)] = 16260, + [SMALL_STATE(1963)] = 16339, + [SMALL_STATE(1964)] = 16420, + [SMALL_STATE(1965)] = 16501, + [SMALL_STATE(1966)] = 16582, + [SMALL_STATE(1967)] = 16663, + [SMALL_STATE(1968)] = 16746, + [SMALL_STATE(1969)] = 16825, + [SMALL_STATE(1970)] = 16904, + [SMALL_STATE(1971)] = 16987, + [SMALL_STATE(1972)] = 17062, + [SMALL_STATE(1973)] = 17135, + [SMALL_STATE(1974)] = 17216, + [SMALL_STATE(1975)] = 17297, + [SMALL_STATE(1976)] = 17378, + [SMALL_STATE(1977)] = 17459, + [SMALL_STATE(1978)] = 17534, + [SMALL_STATE(1979)] = 17609, + [SMALL_STATE(1980)] = 17682, + [SMALL_STATE(1981)] = 17761, + [SMALL_STATE(1982)] = 17834, + [SMALL_STATE(1983)] = 17908, + [SMALL_STATE(1984)] = 18050, + [SMALL_STATE(1985)] = 18126, + [SMALL_STATE(1986)] = 18198, + [SMALL_STATE(1987)] = 18270, + [SMALL_STATE(1988)] = 18342, + [SMALL_STATE(1989)] = 18414, + [SMALL_STATE(1990)] = 18486, + [SMALL_STATE(1991)] = 18558, + [SMALL_STATE(1992)] = 18630, + [SMALL_STATE(1993)] = 18702, + [SMALL_STATE(1994)] = 18778, + [SMALL_STATE(1995)] = 18850, + [SMALL_STATE(1996)] = 18922, + [SMALL_STATE(1997)] = 18994, + [SMALL_STATE(1998)] = 19066, + [SMALL_STATE(1999)] = 19142, + [SMALL_STATE(2000)] = 19218, + [SMALL_STATE(2001)] = 19290, + [SMALL_STATE(2002)] = 19362, + [SMALL_STATE(2003)] = 19434, + [SMALL_STATE(2004)] = 19506, + [SMALL_STATE(2005)] = 19582, + [SMALL_STATE(2006)] = 19654, + [SMALL_STATE(2007)] = 19726, + [SMALL_STATE(2008)] = 19798, + [SMALL_STATE(2009)] = 19870, + [SMALL_STATE(2010)] = 19942, + [SMALL_STATE(2011)] = 20014, + [SMALL_STATE(2012)] = 20090, + [SMALL_STATE(2013)] = 20166, + [SMALL_STATE(2014)] = 20238, + [SMALL_STATE(2015)] = 20310, + [SMALL_STATE(2016)] = 20382, + [SMALL_STATE(2017)] = 20454, + [SMALL_STATE(2018)] = 20530, + [SMALL_STATE(2019)] = 20602, + [SMALL_STATE(2020)] = 20674, + [SMALL_STATE(2021)] = 20746, + [SMALL_STATE(2022)] = 20818, + [SMALL_STATE(2023)] = 20890, + [SMALL_STATE(2024)] = 20962, + [SMALL_STATE(2025)] = 21034, + [SMALL_STATE(2026)] = 21106, + [SMALL_STATE(2027)] = 21178, + [SMALL_STATE(2028)] = 21250, + [SMALL_STATE(2029)] = 21322, + [SMALL_STATE(2030)] = 21394, + [SMALL_STATE(2031)] = 21466, + [SMALL_STATE(2032)] = 21542, + [SMALL_STATE(2033)] = 21614, + [SMALL_STATE(2034)] = 21690, + [SMALL_STATE(2035)] = 21762, + [SMALL_STATE(2036)] = 21834, + [SMALL_STATE(2037)] = 21906, + [SMALL_STATE(2038)] = 21978, + [SMALL_STATE(2039)] = 22054, + [SMALL_STATE(2040)] = 22126, + [SMALL_STATE(2041)] = 22198, + [SMALL_STATE(2042)] = 22272, + [SMALL_STATE(2043)] = 22344, + [SMALL_STATE(2044)] = 22416, + [SMALL_STATE(2045)] = 22488, + [SMALL_STATE(2046)] = 22560, + [SMALL_STATE(2047)] = 22632, + [SMALL_STATE(2048)] = 22704, + [SMALL_STATE(2049)] = 22776, + [SMALL_STATE(2050)] = 22856, + [SMALL_STATE(2051)] = 22928, + [SMALL_STATE(2052)] = 23000, + [SMALL_STATE(2053)] = 23072, + [SMALL_STATE(2054)] = 23144, + [SMALL_STATE(2055)] = 23216, + [SMALL_STATE(2056)] = 23288, + [SMALL_STATE(2057)] = 23360, + [SMALL_STATE(2058)] = 23432, + [SMALL_STATE(2059)] = 23504, + [SMALL_STATE(2060)] = 23576, + [SMALL_STATE(2061)] = 23718, + [SMALL_STATE(2062)] = 23790, + [SMALL_STATE(2063)] = 23862, + [SMALL_STATE(2064)] = 23934, + [SMALL_STATE(2065)] = 24006, + [SMALL_STATE(2066)] = 24078, + [SMALL_STATE(2067)] = 24150, + [SMALL_STATE(2068)] = 24222, + [SMALL_STATE(2069)] = 24298, + [SMALL_STATE(2070)] = 24370, + [SMALL_STATE(2071)] = 24442, + [SMALL_STATE(2072)] = 24514, + [SMALL_STATE(2073)] = 24586, + [SMALL_STATE(2074)] = 24658, + [SMALL_STATE(2075)] = 24730, + [SMALL_STATE(2076)] = 24802, + [SMALL_STATE(2077)] = 24874, + [SMALL_STATE(2078)] = 24946, + [SMALL_STATE(2079)] = 25018, + [SMALL_STATE(2080)] = 25090, + [SMALL_STATE(2081)] = 25162, + [SMALL_STATE(2082)] = 25234, + [SMALL_STATE(2083)] = 25306, + [SMALL_STATE(2084)] = 25378, + [SMALL_STATE(2085)] = 25450, + [SMALL_STATE(2086)] = 25522, + [SMALL_STATE(2087)] = 25594, + [SMALL_STATE(2088)] = 25666, + [SMALL_STATE(2089)] = 25742, + [SMALL_STATE(2090)] = 25818, + [SMALL_STATE(2091)] = 25890, + [SMALL_STATE(2092)] = 25966, + [SMALL_STATE(2093)] = 26042, + [SMALL_STATE(2094)] = 26114, + [SMALL_STATE(2095)] = 26186, + [SMALL_STATE(2096)] = 26258, + [SMALL_STATE(2097)] = 26330, + [SMALL_STATE(2098)] = 26402, + [SMALL_STATE(2099)] = 26474, + [SMALL_STATE(2100)] = 26546, + [SMALL_STATE(2101)] = 26618, + [SMALL_STATE(2102)] = 26690, + [SMALL_STATE(2103)] = 26762, + [SMALL_STATE(2104)] = 26834, + [SMALL_STATE(2105)] = 26906, + [SMALL_STATE(2106)] = 26978, + [SMALL_STATE(2107)] = 27050, + [SMALL_STATE(2108)] = 27122, + [SMALL_STATE(2109)] = 27194, + [SMALL_STATE(2110)] = 27266, + [SMALL_STATE(2111)] = 27338, + [SMALL_STATE(2112)] = 27410, + [SMALL_STATE(2113)] = 27482, + [SMALL_STATE(2114)] = 27554, + [SMALL_STATE(2115)] = 27696, + [SMALL_STATE(2116)] = 27768, + [SMALL_STATE(2117)] = 27840, + [SMALL_STATE(2118)] = 27912, + [SMALL_STATE(2119)] = 27984, + [SMALL_STATE(2120)] = 28056, + [SMALL_STATE(2121)] = 28128, + [SMALL_STATE(2122)] = 28204, + [SMALL_STATE(2123)] = 28276, + [SMALL_STATE(2124)] = 28348, + [SMALL_STATE(2125)] = 28420, + [SMALL_STATE(2126)] = 28492, + [SMALL_STATE(2127)] = 28564, + [SMALL_STATE(2128)] = 28636, + [SMALL_STATE(2129)] = 28708, + [SMALL_STATE(2130)] = 28780, + [SMALL_STATE(2131)] = 28852, + [SMALL_STATE(2132)] = 28924, + [SMALL_STATE(2133)] = 29000, + [SMALL_STATE(2134)] = 29072, + [SMALL_STATE(2135)] = 29214, + [SMALL_STATE(2136)] = 29356, + [SMALL_STATE(2137)] = 29498, + [SMALL_STATE(2138)] = 29570, + [SMALL_STATE(2139)] = 29643, + [SMALL_STATE(2140)] = 29718, + [SMALL_STATE(2141)] = 29791, + [SMALL_STATE(2142)] = 29866, + [SMALL_STATE(2143)] = 29939, + [SMALL_STATE(2144)] = 30014, + [SMALL_STATE(2145)] = 30087, + [SMALL_STATE(2146)] = 30226, + [SMALL_STATE(2147)] = 30299, + [SMALL_STATE(2148)] = 30372, + [SMALL_STATE(2149)] = 30445, + [SMALL_STATE(2150)] = 30518, + [SMALL_STATE(2151)] = 30591, + [SMALL_STATE(2152)] = 30664, + [SMALL_STATE(2153)] = 30737, + [SMALL_STATE(2154)] = 30810, + [SMALL_STATE(2155)] = 30883, + [SMALL_STATE(2156)] = 30956, + [SMALL_STATE(2157)] = 31029, + [SMALL_STATE(2158)] = 31102, + [SMALL_STATE(2159)] = 31173, + [SMALL_STATE(2160)] = 31246, + [SMALL_STATE(2161)] = 31321, + [SMALL_STATE(2162)] = 31394, + [SMALL_STATE(2163)] = 31467, + [SMALL_STATE(2164)] = 31542, + [SMALL_STATE(2165)] = 31615, + [SMALL_STATE(2166)] = 31688, + [SMALL_STATE(2167)] = 31761, + [SMALL_STATE(2168)] = 31834, + [SMALL_STATE(2169)] = 31967, + [SMALL_STATE(2170)] = 32040, + [SMALL_STATE(2171)] = 32115, + [SMALL_STATE(2172)] = 32190, + [SMALL_STATE(2173)] = 32265, + [SMALL_STATE(2174)] = 32338, + [SMALL_STATE(2175)] = 32413, + [SMALL_STATE(2176)] = 32488, + [SMALL_STATE(2177)] = 32563, + [SMALL_STATE(2178)] = 32638, + [SMALL_STATE(2179)] = 32711, + [SMALL_STATE(2180)] = 32784, + [SMALL_STATE(2181)] = 32857, + [SMALL_STATE(2182)] = 32930, + [SMALL_STATE(2183)] = 33005, + [SMALL_STATE(2184)] = 33078, + [SMALL_STATE(2185)] = 33153, + [SMALL_STATE(2186)] = 33226, + [SMALL_STATE(2187)] = 33299, + [SMALL_STATE(2188)] = 33372, + [SMALL_STATE(2189)] = 33447, + [SMALL_STATE(2190)] = 33520, + [SMALL_STATE(2191)] = 33593, + [SMALL_STATE(2192)] = 33668, + [SMALL_STATE(2193)] = 33739, + [SMALL_STATE(2194)] = 33810, + [SMALL_STATE(2195)] = 33883, + [SMALL_STATE(2196)] = 33956, + [SMALL_STATE(2197)] = 34029, + [SMALL_STATE(2198)] = 34102, + [SMALL_STATE(2199)] = 34177, + [SMALL_STATE(2200)] = 34250, + [SMALL_STATE(2201)] = 34323, + [SMALL_STATE(2202)] = 34396, + [SMALL_STATE(2203)] = 34467, + [SMALL_STATE(2204)] = 34540, + [SMALL_STATE(2205)] = 34613, + [SMALL_STATE(2206)] = 34686, + [SMALL_STATE(2207)] = 34757, + [SMALL_STATE(2208)] = 34830, + [SMALL_STATE(2209)] = 34903, + [SMALL_STATE(2210)] = 34976, + [SMALL_STATE(2211)] = 35109, + [SMALL_STATE(2212)] = 35182, + [SMALL_STATE(2213)] = 35255, + [SMALL_STATE(2214)] = 35328, + [SMALL_STATE(2215)] = 35401, + [SMALL_STATE(2216)] = 35474, + [SMALL_STATE(2217)] = 35547, + [SMALL_STATE(2218)] = 35620, + [SMALL_STATE(2219)] = 35693, + [SMALL_STATE(2220)] = 35826, + [SMALL_STATE(2221)] = 35899, + [SMALL_STATE(2222)] = 35972, + [SMALL_STATE(2223)] = 36045, + [SMALL_STATE(2224)] = 36118, + [SMALL_STATE(2225)] = 36191, + [SMALL_STATE(2226)] = 36264, + [SMALL_STATE(2227)] = 36337, + [SMALL_STATE(2228)] = 36412, + [SMALL_STATE(2229)] = 36485, + [SMALL_STATE(2230)] = 36558, + [SMALL_STATE(2231)] = 36633, + [SMALL_STATE(2232)] = 36706, + [SMALL_STATE(2233)] = 36779, + [SMALL_STATE(2234)] = 36854, + [SMALL_STATE(2235)] = 36927, + [SMALL_STATE(2236)] = 37000, + [SMALL_STATE(2237)] = 37073, + [SMALL_STATE(2238)] = 37146, + [SMALL_STATE(2239)] = 37219, + [SMALL_STATE(2240)] = 37292, + [SMALL_STATE(2241)] = 37365, + [SMALL_STATE(2242)] = 37438, + [SMALL_STATE(2243)] = 37511, + [SMALL_STATE(2244)] = 37586, + [SMALL_STATE(2245)] = 37661, + [SMALL_STATE(2246)] = 37734, + [SMALL_STATE(2247)] = 37807, + [SMALL_STATE(2248)] = 37880, + [SMALL_STATE(2249)] = 37953, + [SMALL_STATE(2250)] = 38026, + [SMALL_STATE(2251)] = 38159, + [SMALL_STATE(2252)] = 38298, + [SMALL_STATE(2253)] = 38437, + [SMALL_STATE(2254)] = 38510, + [SMALL_STATE(2255)] = 38583, + [SMALL_STATE(2256)] = 38656, + [SMALL_STATE(2257)] = 38729, + [SMALL_STATE(2258)] = 38802, + [SMALL_STATE(2259)] = 38875, + [SMALL_STATE(2260)] = 38948, + [SMALL_STATE(2261)] = 39021, + [SMALL_STATE(2262)] = 39094, + [SMALL_STATE(2263)] = 39167, + [SMALL_STATE(2264)] = 39242, + [SMALL_STATE(2265)] = 39315, + [SMALL_STATE(2266)] = 39388, + [SMALL_STATE(2267)] = 39463, + [SMALL_STATE(2268)] = 39538, + [SMALL_STATE(2269)] = 39611, + [SMALL_STATE(2270)] = 39684, + [SMALL_STATE(2271)] = 39757, + [SMALL_STATE(2272)] = 39830, + [SMALL_STATE(2273)] = 39903, + [SMALL_STATE(2274)] = 39976, + [SMALL_STATE(2275)] = 40049, + [SMALL_STATE(2276)] = 40122, + [SMALL_STATE(2277)] = 40195, + [SMALL_STATE(2278)] = 40268, + [SMALL_STATE(2279)] = 40341, + [SMALL_STATE(2280)] = 40416, + [SMALL_STATE(2281)] = 40555, + [SMALL_STATE(2282)] = 40628, + [SMALL_STATE(2283)] = 40701, + [SMALL_STATE(2284)] = 40776, + [SMALL_STATE(2285)] = 40849, + [SMALL_STATE(2286)] = 40922, + [SMALL_STATE(2287)] = 40995, + [SMALL_STATE(2288)] = 41068, + [SMALL_STATE(2289)] = 41141, + [SMALL_STATE(2290)] = 41214, + [SMALL_STATE(2291)] = 41287, + [SMALL_STATE(2292)] = 41379, + [SMALL_STATE(2293)] = 41463, + [SMALL_STATE(2294)] = 41565, + [SMALL_STATE(2295)] = 41659, + [SMALL_STATE(2296)] = 41763, + [SMALL_STATE(2297)] = 41857, + [SMALL_STATE(2298)] = 41953, + [SMALL_STATE(2299)] = 42041, + [SMALL_STATE(2300)] = 42139, + [SMALL_STATE(2301)] = 42239, + [SMALL_STATE(2302)] = 42329, + [SMALL_STATE(2303)] = 42419, + [SMALL_STATE(2304)] = 42511, + [SMALL_STATE(2305)] = 42647, + [SMALL_STATE(2306)] = 42743, + [SMALL_STATE(2307)] = 42841, + [SMALL_STATE(2308)] = 42915, + [SMALL_STATE(2309)] = 42999, + [SMALL_STATE(2310)] = 43135, + [SMALL_STATE(2311)] = 43211, + [SMALL_STATE(2312)] = 43313, + [SMALL_STATE(2313)] = 43397, + [SMALL_STATE(2314)] = 43483, + [SMALL_STATE(2315)] = 43561, + [SMALL_STATE(2316)] = 43641, + [SMALL_STATE(2317)] = 43729, + [SMALL_STATE(2318)] = 43819, + [SMALL_STATE(2319)] = 43905, + [SMALL_STATE(2320)] = 43981, + [SMALL_STATE(2321)] = 44079, + [SMALL_STATE(2322)] = 44161, + [SMALL_STATE(2323)] = 44261, + [SMALL_STATE(2324)] = 44361, + [SMALL_STATE(2325)] = 44463, + [SMALL_STATE(2326)] = 44561, + [SMALL_STATE(2327)] = 44645, + [SMALL_STATE(2328)] = 44727, + [SMALL_STATE(2329)] = 44811, + [SMALL_STATE(2330)] = 44911, + [SMALL_STATE(2331)] = 45013, + [SMALL_STATE(2332)] = 45117, + [SMALL_STATE(2333)] = 45195, + [SMALL_STATE(2334)] = 45287, + [SMALL_STATE(2335)] = 45377, + [SMALL_STATE(2336)] = 45449, + [SMALL_STATE(2337)] = 45537, + [SMALL_STATE(2338)] = 45611, + [SMALL_STATE(2339)] = 45703, + [SMALL_STATE(2340)] = 45785, + [SMALL_STATE(2341)] = 45869, + [SMALL_STATE(2342)] = 45961, + [SMALL_STATE(2343)] = 46055, + [SMALL_STATE(2344)] = 46149, + [SMALL_STATE(2345)] = 46245, + [SMALL_STATE(2346)] = 46341, + [SMALL_STATE(2347)] = 46439, + [SMALL_STATE(2348)] = 46525, + [SMALL_STATE(2349)] = 46605, + [SMALL_STATE(2350)] = 46687, + [SMALL_STATE(2351)] = 46763, + [SMALL_STATE(2352)] = 46849, + [SMALL_STATE(2353)] = 46921, + [SMALL_STATE(2354)] = 47017, + [SMALL_STATE(2355)] = 47115, + [SMALL_STATE(2356)] = 47215, + [SMALL_STATE(2357)] = 47303, + [SMALL_STATE(2358)] = 47383, + [SMALL_STATE(2359)] = 47473, + [SMALL_STATE(2360)] = 47565, + [SMALL_STATE(2361)] = 47659, + [SMALL_STATE(2362)] = 47749, + [SMALL_STATE(2363)] = 47885, + [SMALL_STATE(2364)] = 47961, + [SMALL_STATE(2365)] = 48061, + [SMALL_STATE(2366)] = 48163, + [SMALL_STATE(2367)] = 48237, + [SMALL_STATE(2368)] = 48331, + [SMALL_STATE(2369)] = 48429, + [SMALL_STATE(2370)] = 48507, + [SMALL_STATE(2371)] = 48611, + [SMALL_STATE(2372)] = 48711, + [SMALL_STATE(2373)] = 48803, + [SMALL_STATE(2374)] = 48887, + [SMALL_STATE(2375)] = 48981, + [SMALL_STATE(2376)] = 49081, + [SMALL_STATE(2377)] = 49177, + [SMALL_STATE(2378)] = 49279, + [SMALL_STATE(2379)] = 49377, + [SMALL_STATE(2380)] = 49471, + [SMALL_STATE(2381)] = 49561, + [SMALL_STATE(2382)] = 49637, + [SMALL_STATE(2383)] = 49773, + [SMALL_STATE(2384)] = 49861, + [SMALL_STATE(2385)] = 49931, + [SMALL_STATE(2386)] = 50027, + [SMALL_STATE(2387)] = 50097, + [SMALL_STATE(2388)] = 50199, + [SMALL_STATE(2389)] = 50281, + [SMALL_STATE(2390)] = 50361, + [SMALL_STATE(2391)] = 50433, + [SMALL_STATE(2392)] = 50503, + [SMALL_STATE(2393)] = 50589, + [SMALL_STATE(2394)] = 50681, + [SMALL_STATE(2395)] = 50761, + [SMALL_STATE(2396)] = 50857, + [SMALL_STATE(2397)] = 50951, + [SMALL_STATE(2398)] = 51041, + [SMALL_STATE(2399)] = 51113, + [SMALL_STATE(2400)] = 51249, + [SMALL_STATE(2401)] = 51385, + [SMALL_STATE(2402)] = 51481, + [SMALL_STATE(2403)] = 51571, + [SMALL_STATE(2404)] = 51643, + [SMALL_STATE(2405)] = 51779, + [SMALL_STATE(2406)] = 51855, + [SMALL_STATE(2407)] = 51991, + [SMALL_STATE(2408)] = 52127, + [SMALL_STATE(2409)] = 52263, + [SMALL_STATE(2410)] = 52347, + [SMALL_STATE(2411)] = 52447, + [SMALL_STATE(2412)] = 52525, + [SMALL_STATE(2413)] = 52627, + [SMALL_STATE(2414)] = 52731, + [SMALL_STATE(2415)] = 52823, + [SMALL_STATE(2416)] = 52921, + [SMALL_STATE(2417)] = 52995, + [SMALL_STATE(2418)] = 53064, + [SMALL_STATE(2419)] = 53133, + [SMALL_STATE(2420)] = 53202, + [SMALL_STATE(2421)] = 53271, + [SMALL_STATE(2422)] = 53340, + [SMALL_STATE(2423)] = 53409, + [SMALL_STATE(2424)] = 53478, + [SMALL_STATE(2425)] = 53547, + [SMALL_STATE(2426)] = 53616, + [SMALL_STATE(2427)] = 53685, + [SMALL_STATE(2428)] = 53754, + [SMALL_STATE(2429)] = 53823, + [SMALL_STATE(2430)] = 53892, + [SMALL_STATE(2431)] = 53961, + [SMALL_STATE(2432)] = 54060, + [SMALL_STATE(2433)] = 54129, + [SMALL_STATE(2434)] = 54198, + [SMALL_STATE(2435)] = 54267, + [SMALL_STATE(2436)] = 54336, + [SMALL_STATE(2437)] = 54405, + [SMALL_STATE(2438)] = 54474, + [SMALL_STATE(2439)] = 54551, + [SMALL_STATE(2440)] = 54620, + [SMALL_STATE(2441)] = 54689, + [SMALL_STATE(2442)] = 54758, + [SMALL_STATE(2443)] = 54827, + [SMALL_STATE(2444)] = 54900, + [SMALL_STATE(2445)] = 55029, + [SMALL_STATE(2446)] = 55098, + [SMALL_STATE(2447)] = 55167, + [SMALL_STATE(2448)] = 55266, + [SMALL_STATE(2449)] = 55335, + [SMALL_STATE(2450)] = 55464, + [SMALL_STATE(2451)] = 55563, + [SMALL_STATE(2452)] = 55692, + [SMALL_STATE(2453)] = 55821, + [SMALL_STATE(2454)] = 55890, + [SMALL_STATE(2455)] = 55959, + [SMALL_STATE(2456)] = 56028, + [SMALL_STATE(2457)] = 56097, + [SMALL_STATE(2458)] = 56166, + [SMALL_STATE(2459)] = 56235, + [SMALL_STATE(2460)] = 56304, + [SMALL_STATE(2461)] = 56373, + [SMALL_STATE(2462)] = 56442, + [SMALL_STATE(2463)] = 56511, + [SMALL_STATE(2464)] = 56580, + [SMALL_STATE(2465)] = 56661, + [SMALL_STATE(2466)] = 56730, + [SMALL_STATE(2467)] = 56799, + [SMALL_STATE(2468)] = 56874, + [SMALL_STATE(2469)] = 56951, + [SMALL_STATE(2470)] = 57050, + [SMALL_STATE(2471)] = 57135, + [SMALL_STATE(2472)] = 57204, + [SMALL_STATE(2473)] = 57275, + [SMALL_STATE(2474)] = 57344, + [SMALL_STATE(2475)] = 57413, + [SMALL_STATE(2476)] = 57482, + [SMALL_STATE(2477)] = 57577, + [SMALL_STATE(2478)] = 57646, + [SMALL_STATE(2479)] = 57743, + [SMALL_STATE(2480)] = 57812, + [SMALL_STATE(2481)] = 57911, + [SMALL_STATE(2482)] = 57988, + [SMALL_STATE(2483)] = 58057, + [SMALL_STATE(2484)] = 58126, + [SMALL_STATE(2485)] = 58213, + [SMALL_STATE(2486)] = 58282, + [SMALL_STATE(2487)] = 58351, + [SMALL_STATE(2488)] = 58420, + [SMALL_STATE(2489)] = 58499, + [SMALL_STATE(2490)] = 58568, + [SMALL_STATE(2491)] = 58657, + [SMALL_STATE(2492)] = 58726, + [SMALL_STATE(2493)] = 58817, + [SMALL_STATE(2494)] = 58886, + [SMALL_STATE(2495)] = 58979, + [SMALL_STATE(2496)] = 59048, + [SMALL_STATE(2497)] = 59117, + [SMALL_STATE(2498)] = 59186, + [SMALL_STATE(2499)] = 59255, + [SMALL_STATE(2500)] = 59324, + [SMALL_STATE(2501)] = 59393, + [SMALL_STATE(2502)] = 59462, + [SMALL_STATE(2503)] = 59531, + [SMALL_STATE(2504)] = 59600, + [SMALL_STATE(2505)] = 59687, + [SMALL_STATE(2506)] = 59756, + [SMALL_STATE(2507)] = 59825, + [SMALL_STATE(2508)] = 59894, + [SMALL_STATE(2509)] = 59963, + [SMALL_STATE(2510)] = 60032, + [SMALL_STATE(2511)] = 60101, + [SMALL_STATE(2512)] = 60170, + [SMALL_STATE(2513)] = 60239, + [SMALL_STATE(2514)] = 60308, + [SMALL_STATE(2515)] = 60377, + [SMALL_STATE(2516)] = 60446, + [SMALL_STATE(2517)] = 60515, + [SMALL_STATE(2518)] = 60584, + [SMALL_STATE(2519)] = 60653, + [SMALL_STATE(2520)] = 60722, + [SMALL_STATE(2521)] = 60818, + [SMALL_STATE(2522)] = 60894, + [SMALL_STATE(2523)] = 60966, + [SMALL_STATE(2524)] = 61062, + [SMALL_STATE(2525)] = 61134, + [SMALL_STATE(2526)] = 61206, + [SMALL_STATE(2527)] = 61290, + [SMALL_STATE(2528)] = 61386, + [SMALL_STATE(2529)] = 61470, + [SMALL_STATE(2530)] = 61546, + [SMALL_STATE(2531)] = 61642, + [SMALL_STATE(2532)] = 61738, + [SMALL_STATE(2533)] = 61810, + [SMALL_STATE(2534)] = 61882, + [SMALL_STATE(2535)] = 61966, + [SMALL_STATE(2536)] = 62062, + [SMALL_STATE(2537)] = 62136, + [SMALL_STATE(2538)] = 62232, + [SMALL_STATE(2539)] = 62328, + [SMALL_STATE(2540)] = 62424, + [SMALL_STATE(2541)] = 62520, + [SMALL_STATE(2542)] = 62608, + [SMALL_STATE(2543)] = 62684, + [SMALL_STATE(2544)] = 62751, + [SMALL_STATE(2545)] = 62832, + [SMALL_STATE(2546)] = 62903, + [SMALL_STATE(2547)] = 62972, + [SMALL_STATE(2548)] = 63039, + [SMALL_STATE(2549)] = 63106, + [SMALL_STATE(2550)] = 63175, + [SMALL_STATE(2551)] = 63244, + [SMALL_STATE(2552)] = 63325, + [SMALL_STATE(2553)] = 63398, + [SMALL_STATE(2554)] = 63467, + [SMALL_STATE(2555)] = 63548, + [SMALL_STATE(2556)] = 63629, + [SMALL_STATE(2557)] = 63698, + [SMALL_STATE(2558)] = 63767, + [SMALL_STATE(2559)] = 63852, + [SMALL_STATE(2560)] = 63937, + [SMALL_STATE(2561)] = 64018, + [SMALL_STATE(2562)] = 64103, + [SMALL_STATE(2563)] = 64170, + [SMALL_STATE(2564)] = 64252, + [SMALL_STATE(2565)] = 64322, + [SMALL_STATE(2566)] = 64404, + [SMALL_STATE(2567)] = 64486, + [SMALL_STATE(2568)] = 64568, + [SMALL_STATE(2569)] = 64638, + [SMALL_STATE(2570)] = 64704, + [SMALL_STATE(2571)] = 64770, + [SMALL_STATE(2572)] = 64836, + [SMALL_STATE(2573)] = 64902, + [SMALL_STATE(2574)] = 64992, + [SMALL_STATE(2575)] = 65082, + [SMALL_STATE(2576)] = 65148, + [SMALL_STATE(2577)] = 65214, + [SMALL_STATE(2578)] = 65288, + [SMALL_STATE(2579)] = 65378, + [SMALL_STATE(2580)] = 65444, + [SMALL_STATE(2581)] = 65510, + [SMALL_STATE(2582)] = 65584, + [SMALL_STATE(2583)] = 65652, + [SMALL_STATE(2584)] = 65742, + [SMALL_STATE(2585)] = 65812, + [SMALL_STATE(2586)] = 65878, + [SMALL_STATE(2587)] = 65944, + [SMALL_STATE(2588)] = 66034, + [SMALL_STATE(2589)] = 66100, + [SMALL_STATE(2590)] = 66176, + [SMALL_STATE(2591)] = 66242, + [SMALL_STATE(2592)] = 66332, + [SMALL_STATE(2593)] = 66420, + [SMALL_STATE(2594)] = 66486, + [SMALL_STATE(2595)] = 66576, + [SMALL_STATE(2596)] = 66642, + [SMALL_STATE(2597)] = 66712, + [SMALL_STATE(2598)] = 66786, + [SMALL_STATE(2599)] = 66854, + [SMALL_STATE(2600)] = 66944, + [SMALL_STATE(2601)] = 67034, + [SMALL_STATE(2602)] = 67124, + [SMALL_STATE(2603)] = 67214, + [SMALL_STATE(2604)] = 67304, + [SMALL_STATE(2605)] = 67370, + [SMALL_STATE(2606)] = 67437, + [SMALL_STATE(2607)] = 67502, + [SMALL_STATE(2608)] = 67589, + [SMALL_STATE(2609)] = 67654, + [SMALL_STATE(2610)] = 67719, + [SMALL_STATE(2611)] = 67784, + [SMALL_STATE(2612)] = 67849, + [SMALL_STATE(2613)] = 67914, + [SMALL_STATE(2614)] = 67979, + [SMALL_STATE(2615)] = 68066, + [SMALL_STATE(2616)] = 68153, + [SMALL_STATE(2617)] = 68218, + [SMALL_STATE(2618)] = 68287, + [SMALL_STATE(2619)] = 68352, + [SMALL_STATE(2620)] = 68417, + [SMALL_STATE(2621)] = 68482, + [SMALL_STATE(2622)] = 68547, + [SMALL_STATE(2623)] = 68634, + [SMALL_STATE(2624)] = 68721, + [SMALL_STATE(2625)] = 68786, + [SMALL_STATE(2626)] = 68853, + [SMALL_STATE(2627)] = 68940, + [SMALL_STATE(2628)] = 69027, + [SMALL_STATE(2629)] = 69092, + [SMALL_STATE(2630)] = 69157, + [SMALL_STATE(2631)] = 69244, + [SMALL_STATE(2632)] = 69331, + [SMALL_STATE(2633)] = 69418, + [SMALL_STATE(2634)] = 69483, + [SMALL_STATE(2635)] = 69548, + [SMALL_STATE(2636)] = 69613, + [SMALL_STATE(2637)] = 69678, + [SMALL_STATE(2638)] = 69765, + [SMALL_STATE(2639)] = 69832, + [SMALL_STATE(2640)] = 69897, + [SMALL_STATE(2641)] = 69962, + [SMALL_STATE(2642)] = 70049, + [SMALL_STATE(2643)] = 70136, + [SMALL_STATE(2644)] = 70223, + [SMALL_STATE(2645)] = 70310, + [SMALL_STATE(2646)] = 70397, + [SMALL_STATE(2647)] = 70462, + [SMALL_STATE(2648)] = 70549, + [SMALL_STATE(2649)] = 70632, + [SMALL_STATE(2650)] = 70705, + [SMALL_STATE(2651)] = 70770, + [SMALL_STATE(2652)] = 70835, + [SMALL_STATE(2653)] = 70922, + [SMALL_STATE(2654)] = 71009, + [SMALL_STATE(2655)] = 71096, + [SMALL_STATE(2656)] = 71183, + [SMALL_STATE(2657)] = 71270, + [SMALL_STATE(2658)] = 71343, + [SMALL_STATE(2659)] = 71430, + [SMALL_STATE(2660)] = 71517, + [SMALL_STATE(2661)] = 71604, + [SMALL_STATE(2662)] = 71691, + [SMALL_STATE(2663)] = 71778, + [SMALL_STATE(2664)] = 71865, + [SMALL_STATE(2665)] = 71936, + [SMALL_STATE(2666)] = 72023, + [SMALL_STATE(2667)] = 72110, + [SMALL_STATE(2668)] = 72197, + [SMALL_STATE(2669)] = 72264, + [SMALL_STATE(2670)] = 72333, + [SMALL_STATE(2671)] = 72398, + [SMALL_STATE(2672)] = 72471, + [SMALL_STATE(2673)] = 72589, + [SMALL_STATE(2674)] = 72661, + [SMALL_STATE(2675)] = 72725, + [SMALL_STATE(2676)] = 72789, + [SMALL_STATE(2677)] = 72853, + [SMALL_STATE(2678)] = 72917, + [SMALL_STATE(2679)] = 73033, + [SMALL_STATE(2680)] = 73115, + [SMALL_STATE(2681)] = 73179, + [SMALL_STATE(2682)] = 73243, + [SMALL_STATE(2683)] = 73307, + [SMALL_STATE(2684)] = 73371, + [SMALL_STATE(2685)] = 73443, + [SMALL_STATE(2686)] = 73511, + [SMALL_STATE(2687)] = 73575, + [SMALL_STATE(2688)] = 73639, + [SMALL_STATE(2689)] = 73707, + [SMALL_STATE(2690)] = 73771, + [SMALL_STATE(2691)] = 73841, + [SMALL_STATE(2692)] = 73909, + [SMALL_STATE(2693)] = 73973, + [SMALL_STATE(2694)] = 74045, + [SMALL_STATE(2695)] = 74109, + [SMALL_STATE(2696)] = 74183, + [SMALL_STATE(2697)] = 74251, + [SMALL_STATE(2698)] = 74317, + [SMALL_STATE(2699)] = 74381, + [SMALL_STATE(2700)] = 74445, + [SMALL_STATE(2701)] = 74567, + [SMALL_STATE(2702)] = 74631, + [SMALL_STATE(2703)] = 74695, + [SMALL_STATE(2704)] = 74759, + [SMALL_STATE(2705)] = 74831, + [SMALL_STATE(2706)] = 74895, + [SMALL_STATE(2707)] = 75017, + [SMALL_STATE(2708)] = 75089, + [SMALL_STATE(2709)] = 75161, + [SMALL_STATE(2710)] = 75225, + [SMALL_STATE(2711)] = 75293, + [SMALL_STATE(2712)] = 75359, + [SMALL_STATE(2713)] = 75429, + [SMALL_STATE(2714)] = 75499, + [SMALL_STATE(2715)] = 75569, + [SMALL_STATE(2716)] = 75633, + [SMALL_STATE(2717)] = 75713, + [SMALL_STATE(2718)] = 75783, + [SMALL_STATE(2719)] = 75851, + [SMALL_STATE(2720)] = 75915, + [SMALL_STATE(2721)] = 75979, + [SMALL_STATE(2722)] = 76043, + [SMALL_STATE(2723)] = 76123, + [SMALL_STATE(2724)] = 76195, + [SMALL_STATE(2725)] = 76267, + [SMALL_STATE(2726)] = 76331, + [SMALL_STATE(2727)] = 76403, + [SMALL_STATE(2728)] = 76475, + [SMALL_STATE(2729)] = 76539, + [SMALL_STATE(2730)] = 76605, + [SMALL_STATE(2731)] = 76671, + [SMALL_STATE(2732)] = 76735, + [SMALL_STATE(2733)] = 76851, + [SMALL_STATE(2734)] = 76923, + [SMALL_STATE(2735)] = 76995, + [SMALL_STATE(2736)] = 77067, + [SMALL_STATE(2737)] = 77185, + [SMALL_STATE(2738)] = 77249, + [SMALL_STATE(2739)] = 77321, + [SMALL_STATE(2740)] = 77393, + [SMALL_STATE(2741)] = 77459, + [SMALL_STATE(2742)] = 77531, + [SMALL_STATE(2743)] = 77603, + [SMALL_STATE(2744)] = 77679, + [SMALL_STATE(2745)] = 77751, + [SMALL_STATE(2746)] = 77823, + [SMALL_STATE(2747)] = 77895, + [SMALL_STATE(2748)] = 77967, + [SMALL_STATE(2749)] = 78039, + [SMALL_STATE(2750)] = 78111, + [SMALL_STATE(2751)] = 78183, + [SMALL_STATE(2752)] = 78255, + [SMALL_STATE(2753)] = 78319, + [SMALL_STATE(2754)] = 78383, + [SMALL_STATE(2755)] = 78447, + [SMALL_STATE(2756)] = 78511, + [SMALL_STATE(2757)] = 78575, + [SMALL_STATE(2758)] = 78639, + [SMALL_STATE(2759)] = 78706, + [SMALL_STATE(2760)] = 78769, + [SMALL_STATE(2761)] = 78840, + [SMALL_STATE(2762)] = 78911, + [SMALL_STATE(2763)] = 78974, + [SMALL_STATE(2764)] = 79045, + [SMALL_STATE(2765)] = 79116, + [SMALL_STATE(2766)] = 79187, + [SMALL_STATE(2767)] = 79300, + [SMALL_STATE(2768)] = 79365, + [SMALL_STATE(2769)] = 79436, + [SMALL_STATE(2770)] = 79507, + [SMALL_STATE(2771)] = 79578, + [SMALL_STATE(2772)] = 79645, + [SMALL_STATE(2773)] = 79712, + [SMALL_STATE(2774)] = 79783, + [SMALL_STATE(2775)] = 79848, + [SMALL_STATE(2776)] = 79921, + [SMALL_STATE(2777)] = 79992, + [SMALL_STATE(2778)] = 80055, + [SMALL_STATE(2779)] = 80120, + [SMALL_STATE(2780)] = 80185, + [SMALL_STATE(2781)] = 80248, + [SMALL_STATE(2782)] = 80311, + [SMALL_STATE(2783)] = 80382, + [SMALL_STATE(2784)] = 80445, + [SMALL_STATE(2785)] = 80510, + [SMALL_STATE(2786)] = 80577, + [SMALL_STATE(2787)] = 80692, + [SMALL_STATE(2788)] = 80755, + [SMALL_STATE(2789)] = 80818, + [SMALL_STATE(2790)] = 80889, + [SMALL_STATE(2791)] = 80968, + [SMALL_STATE(2792)] = 81031, + [SMALL_STATE(2793)] = 81102, + [SMALL_STATE(2794)] = 81173, + [SMALL_STATE(2795)] = 81244, + [SMALL_STATE(2796)] = 81357, + [SMALL_STATE(2797)] = 81424, + [SMALL_STATE(2798)] = 81539, + [SMALL_STATE(2799)] = 81610, + [SMALL_STATE(2800)] = 81681, + [SMALL_STATE(2801)] = 81794, + [SMALL_STATE(2802)] = 81865, + [SMALL_STATE(2803)] = 81932, + [SMALL_STATE(2804)] = 81999, + [SMALL_STATE(2805)] = 82112, + [SMALL_STATE(2806)] = 82175, + [SMALL_STATE(2807)] = 82240, + [SMALL_STATE(2808)] = 82319, + [SMALL_STATE(2809)] = 82382, + [SMALL_STATE(2810)] = 82447, + [SMALL_STATE(2811)] = 82518, + [SMALL_STATE(2812)] = 82593, + [SMALL_STATE(2813)] = 82660, + [SMALL_STATE(2814)] = 82723, + [SMALL_STATE(2815)] = 82792, + [SMALL_STATE(2816)] = 82860, + [SMALL_STATE(2817)] = 82930, + [SMALL_STATE(2818)] = 83000, + [SMALL_STATE(2819)] = 83070, + [SMALL_STATE(2820)] = 83140, + [SMALL_STATE(2821)] = 83210, + [SMALL_STATE(2822)] = 83280, + [SMALL_STATE(2823)] = 83350, + [SMALL_STATE(2824)] = 83420, + [SMALL_STATE(2825)] = 83490, + [SMALL_STATE(2826)] = 83560, + [SMALL_STATE(2827)] = 83630, + [SMALL_STATE(2828)] = 83700, + [SMALL_STATE(2829)] = 83770, + [SMALL_STATE(2830)] = 83840, + [SMALL_STATE(2831)] = 83910, + [SMALL_STATE(2832)] = 83978, + [SMALL_STATE(2833)] = 84046, + [SMALL_STATE(2834)] = 84114, + [SMALL_STATE(2835)] = 84176, + [SMALL_STATE(2836)] = 84244, + [SMALL_STATE(2837)] = 84306, + [SMALL_STATE(2838)] = 84368, + [SMALL_STATE(2839)] = 84434, + [SMALL_STATE(2840)] = 84496, + [SMALL_STATE(2841)] = 84562, + [SMALL_STATE(2842)] = 84624, + [SMALL_STATE(2843)] = 84700, + [SMALL_STATE(2844)] = 84766, + [SMALL_STATE(2845)] = 84832, + [SMALL_STATE(2846)] = 84902, + [SMALL_STATE(2847)] = 84968, + [SMALL_STATE(2848)] = 85032, + [SMALL_STATE(2849)] = 85100, + [SMALL_STATE(2850)] = 85164, + [SMALL_STATE(2851)] = 85228, + [SMALL_STATE(2852)] = 85290, + [SMALL_STATE(2853)] = 85354, + [SMALL_STATE(2854)] = 85418, + [SMALL_STATE(2855)] = 85480, + [SMALL_STATE(2856)] = 85542, + [SMALL_STATE(2857)] = 85606, + [SMALL_STATE(2858)] = 85670, + [SMALL_STATE(2859)] = 85732, + [SMALL_STATE(2860)] = 85794, + [SMALL_STATE(2861)] = 85860, + [SMALL_STATE(2862)] = 85922, + [SMALL_STATE(2863)] = 85984, + [SMALL_STATE(2864)] = 86046, + [SMALL_STATE(2865)] = 86112, + [SMALL_STATE(2866)] = 86174, + [SMALL_STATE(2867)] = 86238, + [SMALL_STATE(2868)] = 86302, + [SMALL_STATE(2869)] = 86372, + [SMALL_STATE(2870)] = 86440, + [SMALL_STATE(2871)] = 86508, + [SMALL_STATE(2872)] = 86574, + [SMALL_STATE(2873)] = 86636, + [SMALL_STATE(2874)] = 86702, + [SMALL_STATE(2875)] = 86770, + [SMALL_STATE(2876)] = 86840, + [SMALL_STATE(2877)] = 86906, + [SMALL_STATE(2878)] = 86968, + [SMALL_STATE(2879)] = 87032, + [SMALL_STATE(2880)] = 87100, + [SMALL_STATE(2881)] = 87164, + [SMALL_STATE(2882)] = 87234, + [SMALL_STATE(2883)] = 87296, + [SMALL_STATE(2884)] = 87366, + [SMALL_STATE(2885)] = 87428, + [SMALL_STATE(2886)] = 87490, + [SMALL_STATE(2887)] = 87560, + [SMALL_STATE(2888)] = 87630, + [SMALL_STATE(2889)] = 87698, + [SMALL_STATE(2890)] = 87768, + [SMALL_STATE(2891)] = 87830, + [SMALL_STATE(2892)] = 87892, + [SMALL_STATE(2893)] = 87953, + [SMALL_STATE(2894)] = 88018, + [SMALL_STATE(2895)] = 88079, + [SMALL_STATE(2896)] = 88142, + [SMALL_STATE(2897)] = 88203, + [SMALL_STATE(2898)] = 88264, + [SMALL_STATE(2899)] = 88327, + [SMALL_STATE(2900)] = 88390, + [SMALL_STATE(2901)] = 88451, + [SMALL_STATE(2902)] = 88516, + [SMALL_STATE(2903)] = 88581, + [SMALL_STATE(2904)] = 88642, + [SMALL_STATE(2905)] = 88703, + [SMALL_STATE(2906)] = 88768, + [SMALL_STATE(2907)] = 88829, + [SMALL_STATE(2908)] = 88890, + [SMALL_STATE(2909)] = 88951, + [SMALL_STATE(2910)] = 89012, + [SMALL_STATE(2911)] = 89073, + [SMALL_STATE(2912)] = 89134, + [SMALL_STATE(2913)] = 89199, + [SMALL_STATE(2914)] = 89266, + [SMALL_STATE(2915)] = 89327, + [SMALL_STATE(2916)] = 89388, + [SMALL_STATE(2917)] = 89449, + [SMALL_STATE(2918)] = 89514, + [SMALL_STATE(2919)] = 89577, + [SMALL_STATE(2920)] = 89638, + [SMALL_STATE(2921)] = 89703, + [SMALL_STATE(2922)] = 89766, + [SMALL_STATE(2923)] = 89831, + [SMALL_STATE(2924)] = 89896, + [SMALL_STATE(2925)] = 89961, + [SMALL_STATE(2926)] = 90026, + [SMALL_STATE(2927)] = 90091, + [SMALL_STATE(2928)] = 90156, + [SMALL_STATE(2929)] = 90221, + [SMALL_STATE(2930)] = 90282, + [SMALL_STATE(2931)] = 90351, + [SMALL_STATE(2932)] = 90416, + [SMALL_STATE(2933)] = 90481, + [SMALL_STATE(2934)] = 90544, + [SMALL_STATE(2935)] = 90607, + [SMALL_STATE(2936)] = 90670, + [SMALL_STATE(2937)] = 90733, + [SMALL_STATE(2938)] = 90798, + [SMALL_STATE(2939)] = 90873, + [SMALL_STATE(2940)] = 90934, + [SMALL_STATE(2941)] = 90997, + [SMALL_STATE(2942)] = 91062, + [SMALL_STATE(2943)] = 91123, + [SMALL_STATE(2944)] = 91184, + [SMALL_STATE(2945)] = 91249, + [SMALL_STATE(2946)] = 91310, + [SMALL_STATE(2947)] = 91371, + [SMALL_STATE(2948)] = 91432, + [SMALL_STATE(2949)] = 91497, + [SMALL_STATE(2950)] = 91558, + [SMALL_STATE(2951)] = 91619, + [SMALL_STATE(2952)] = 91684, + [SMALL_STATE(2953)] = 91755, + [SMALL_STATE(2954)] = 91820, + [SMALL_STATE(2955)] = 91881, + [SMALL_STATE(2956)] = 91942, + [SMALL_STATE(2957)] = 92003, + [SMALL_STATE(2958)] = 92066, + [SMALL_STATE(2959)] = 92131, + [SMALL_STATE(2960)] = 92194, + [SMALL_STATE(2961)] = 92259, + [SMALL_STATE(2962)] = 92323, + [SMALL_STATE(2963)] = 92383, + [SMALL_STATE(2964)] = 92443, + [SMALL_STATE(2965)] = 92503, + [SMALL_STATE(2966)] = 92563, + [SMALL_STATE(2967)] = 92625, + [SMALL_STATE(2968)] = 92691, + [SMALL_STATE(2969)] = 92751, + [SMALL_STATE(2970)] = 92811, + [SMALL_STATE(2971)] = 92875, + [SMALL_STATE(2972)] = 92935, + [SMALL_STATE(2973)] = 92995, + [SMALL_STATE(2974)] = 93057, + [SMALL_STATE(2975)] = 93117, + [SMALL_STATE(2976)] = 93185, + [SMALL_STATE(2977)] = 93245, + [SMALL_STATE(2978)] = 93305, + [SMALL_STATE(2979)] = 93367, + [SMALL_STATE(2980)] = 93431, + [SMALL_STATE(2981)] = 93493, + [SMALL_STATE(2982)] = 93553, + [SMALL_STATE(2983)] = 93613, + [SMALL_STATE(2984)] = 93673, + [SMALL_STATE(2985)] = 93733, + [SMALL_STATE(2986)] = 93793, + [SMALL_STATE(2987)] = 93853, + [SMALL_STATE(2988)] = 93913, + [SMALL_STATE(2989)] = 93973, + [SMALL_STATE(2990)] = 94033, + [SMALL_STATE(2991)] = 94095, + [SMALL_STATE(2992)] = 94155, + [SMALL_STATE(2993)] = 94215, + [SMALL_STATE(2994)] = 94275, + [SMALL_STATE(2995)] = 94335, + [SMALL_STATE(2996)] = 94395, + [SMALL_STATE(2997)] = 94455, + [SMALL_STATE(2998)] = 94517, + [SMALL_STATE(2999)] = 94577, + [SMALL_STATE(3000)] = 94639, + [SMALL_STATE(3001)] = 94699, + [SMALL_STATE(3002)] = 94761, + [SMALL_STATE(3003)] = 94823, + [SMALL_STATE(3004)] = 94883, + [SMALL_STATE(3005)] = 94949, + [SMALL_STATE(3006)] = 95009, + [SMALL_STATE(3007)] = 95069, + [SMALL_STATE(3008)] = 95135, + [SMALL_STATE(3009)] = 95195, + [SMALL_STATE(3010)] = 95255, + [SMALL_STATE(3011)] = 95317, + [SMALL_STATE(3012)] = 95381, + [SMALL_STATE(3013)] = 95443, + [SMALL_STATE(3014)] = 95503, + [SMALL_STATE(3015)] = 95563, + [SMALL_STATE(3016)] = 95623, + [SMALL_STATE(3017)] = 95689, + [SMALL_STATE(3018)] = 95755, + [SMALL_STATE(3019)] = 95815, + [SMALL_STATE(3020)] = 95875, + [SMALL_STATE(3021)] = 95935, + [SMALL_STATE(3022)] = 95995, + [SMALL_STATE(3023)] = 96055, + [SMALL_STATE(3024)] = 96115, + [SMALL_STATE(3025)] = 96175, + [SMALL_STATE(3026)] = 96235, + [SMALL_STATE(3027)] = 96295, + [SMALL_STATE(3028)] = 96355, + [SMALL_STATE(3029)] = 96415, + [SMALL_STATE(3030)] = 96475, + [SMALL_STATE(3031)] = 96541, + [SMALL_STATE(3032)] = 96603, + [SMALL_STATE(3033)] = 96663, + [SMALL_STATE(3034)] = 96729, + [SMALL_STATE(3035)] = 96795, + [SMALL_STATE(3036)] = 96861, + [SMALL_STATE(3037)] = 96921, + [SMALL_STATE(3038)] = 96981, + [SMALL_STATE(3039)] = 97041, + [SMALL_STATE(3040)] = 97101, + [SMALL_STATE(3041)] = 97161, + [SMALL_STATE(3042)] = 97221, + [SMALL_STATE(3043)] = 97287, + [SMALL_STATE(3044)] = 97347, + [SMALL_STATE(3045)] = 97407, + [SMALL_STATE(3046)] = 97467, + [SMALL_STATE(3047)] = 97527, + [SMALL_STATE(3048)] = 97587, + [SMALL_STATE(3049)] = 97647, + [SMALL_STATE(3050)] = 97707, + [SMALL_STATE(3051)] = 97767, + [SMALL_STATE(3052)] = 97833, + [SMALL_STATE(3053)] = 97899, + [SMALL_STATE(3054)] = 97961, + [SMALL_STATE(3055)] = 98021, + [SMALL_STATE(3056)] = 98083, + [SMALL_STATE(3057)] = 98142, + [SMALL_STATE(3058)] = 98201, + [SMALL_STATE(3059)] = 98260, + [SMALL_STATE(3060)] = 98319, + [SMALL_STATE(3061)] = 98378, + [SMALL_STATE(3062)] = 98437, + [SMALL_STATE(3063)] = 98496, + [SMALL_STATE(3064)] = 98555, + [SMALL_STATE(3065)] = 98614, + [SMALL_STATE(3066)] = 98673, + [SMALL_STATE(3067)] = 98732, + [SMALL_STATE(3068)] = 98791, + [SMALL_STATE(3069)] = 98852, + [SMALL_STATE(3070)] = 98911, + [SMALL_STATE(3071)] = 98970, + [SMALL_STATE(3072)] = 99029, + [SMALL_STATE(3073)] = 99088, + [SMALL_STATE(3074)] = 99147, + [SMALL_STATE(3075)] = 99206, + [SMALL_STATE(3076)] = 99265, + [SMALL_STATE(3077)] = 99324, + [SMALL_STATE(3078)] = 99383, + [SMALL_STATE(3079)] = 99442, + [SMALL_STATE(3080)] = 99501, + [SMALL_STATE(3081)] = 99560, + [SMALL_STATE(3082)] = 99621, + [SMALL_STATE(3083)] = 99680, + [SMALL_STATE(3084)] = 99741, + [SMALL_STATE(3085)] = 99800, + [SMALL_STATE(3086)] = 99859, + [SMALL_STATE(3087)] = 99920, + [SMALL_STATE(3088)] = 99979, + [SMALL_STATE(3089)] = 100038, + [SMALL_STATE(3090)] = 100097, + [SMALL_STATE(3091)] = 100158, + [SMALL_STATE(3092)] = 100217, + [SMALL_STATE(3093)] = 100276, + [SMALL_STATE(3094)] = 100335, + [SMALL_STATE(3095)] = 100394, + [SMALL_STATE(3096)] = 100453, + [SMALL_STATE(3097)] = 100512, + [SMALL_STATE(3098)] = 100571, + [SMALL_STATE(3099)] = 100632, + [SMALL_STATE(3100)] = 100691, + [SMALL_STATE(3101)] = 100750, + [SMALL_STATE(3102)] = 100811, + [SMALL_STATE(3103)] = 100874, + [SMALL_STATE(3104)] = 100933, + [SMALL_STATE(3105)] = 100996, + [SMALL_STATE(3106)] = 101057, + [SMALL_STATE(3107)] = 101116, + [SMALL_STATE(3108)] = 101177, + [SMALL_STATE(3109)] = 101236, + [SMALL_STATE(3110)] = 101295, + [SMALL_STATE(3111)] = 101358, + [SMALL_STATE(3112)] = 101419, + [SMALL_STATE(3113)] = 101482, + [SMALL_STATE(3114)] = 101543, + [SMALL_STATE(3115)] = 101602, + [SMALL_STATE(3116)] = 101661, + [SMALL_STATE(3117)] = 101720, + [SMALL_STATE(3118)] = 101781, + [SMALL_STATE(3119)] = 101840, + [SMALL_STATE(3120)] = 101899, + [SMALL_STATE(3121)] = 101958, + [SMALL_STATE(3122)] = 102017, + [SMALL_STATE(3123)] = 102084, + [SMALL_STATE(3124)] = 102145, + [SMALL_STATE(3125)] = 102206, + [SMALL_STATE(3126)] = 102275, + [SMALL_STATE(3127)] = 102334, + [SMALL_STATE(3128)] = 102393, + [SMALL_STATE(3129)] = 102452, + [SMALL_STATE(3130)] = 102511, + [SMALL_STATE(3131)] = 102570, + [SMALL_STATE(3132)] = 102637, + [SMALL_STATE(3133)] = 102696, + [SMALL_STATE(3134)] = 102755, + [SMALL_STATE(3135)] = 102814, + [SMALL_STATE(3136)] = 102875, + [SMALL_STATE(3137)] = 102934, + [SMALL_STATE(3138)] = 102993, + [SMALL_STATE(3139)] = 103052, + [SMALL_STATE(3140)] = 103111, + [SMALL_STATE(3141)] = 103170, + [SMALL_STATE(3142)] = 103231, + [SMALL_STATE(3143)] = 103290, + [SMALL_STATE(3144)] = 103349, + [SMALL_STATE(3145)] = 103408, + [SMALL_STATE(3146)] = 103467, + [SMALL_STATE(3147)] = 103525, + [SMALL_STATE(3148)] = 103583, + [SMALL_STATE(3149)] = 103641, + [SMALL_STATE(3150)] = 103699, + [SMALL_STATE(3151)] = 103757, + [SMALL_STATE(3152)] = 103815, + [SMALL_STATE(3153)] = 103883, + [SMALL_STATE(3154)] = 103941, + [SMALL_STATE(3155)] = 103999, + [SMALL_STATE(3156)] = 104057, + [SMALL_STATE(3157)] = 104115, + [SMALL_STATE(3158)] = 104173, + [SMALL_STATE(3159)] = 104231, + [SMALL_STATE(3160)] = 104289, + [SMALL_STATE(3161)] = 104347, + [SMALL_STATE(3162)] = 104405, + [SMALL_STATE(3163)] = 104463, + [SMALL_STATE(3164)] = 104521, + [SMALL_STATE(3165)] = 104579, + [SMALL_STATE(3166)] = 104637, + [SMALL_STATE(3167)] = 104695, + [SMALL_STATE(3168)] = 104753, + [SMALL_STATE(3169)] = 104811, + [SMALL_STATE(3170)] = 104869, + [SMALL_STATE(3171)] = 104927, + [SMALL_STATE(3172)] = 104985, + [SMALL_STATE(3173)] = 105043, + [SMALL_STATE(3174)] = 105101, + [SMALL_STATE(3175)] = 105159, + [SMALL_STATE(3176)] = 105217, + [SMALL_STATE(3177)] = 105275, + [SMALL_STATE(3178)] = 105333, + [SMALL_STATE(3179)] = 105391, + [SMALL_STATE(3180)] = 105449, + [SMALL_STATE(3181)] = 105507, + [SMALL_STATE(3182)] = 105565, + [SMALL_STATE(3183)] = 105627, + [SMALL_STATE(3184)] = 105685, + [SMALL_STATE(3185)] = 105747, + [SMALL_STATE(3186)] = 105805, + [SMALL_STATE(3187)] = 105865, + [SMALL_STATE(3188)] = 105923, + [SMALL_STATE(3189)] = 105981, + [SMALL_STATE(3190)] = 106039, + [SMALL_STATE(3191)] = 106105, + [SMALL_STATE(3192)] = 106163, + [SMALL_STATE(3193)] = 106221, + [SMALL_STATE(3194)] = 106279, + [SMALL_STATE(3195)] = 106337, + [SMALL_STATE(3196)] = 106395, + [SMALL_STATE(3197)] = 106461, + [SMALL_STATE(3198)] = 106519, + [SMALL_STATE(3199)] = 106577, + [SMALL_STATE(3200)] = 106635, + [SMALL_STATE(3201)] = 106693, + [SMALL_STATE(3202)] = 106761, + [SMALL_STATE(3203)] = 106819, + [SMALL_STATE(3204)] = 106877, + [SMALL_STATE(3205)] = 106935, + [SMALL_STATE(3206)] = 106993, + [SMALL_STATE(3207)] = 107051, + [SMALL_STATE(3208)] = 107109, + [SMALL_STATE(3209)] = 107167, + [SMALL_STATE(3210)] = 107225, + [SMALL_STATE(3211)] = 107283, + [SMALL_STATE(3212)] = 107341, + [SMALL_STATE(3213)] = 107399, + [SMALL_STATE(3214)] = 107457, + [SMALL_STATE(3215)] = 107515, + [SMALL_STATE(3216)] = 107581, + [SMALL_STATE(3217)] = 107639, + [SMALL_STATE(3218)] = 107697, + [SMALL_STATE(3219)] = 107755, + [SMALL_STATE(3220)] = 107813, + [SMALL_STATE(3221)] = 107871, + [SMALL_STATE(3222)] = 107936, + [SMALL_STATE(3223)] = 108001, + [SMALL_STATE(3224)] = 108066, + [SMALL_STATE(3225)] = 108127, + [SMALL_STATE(3226)] = 108188, + [SMALL_STATE(3227)] = 108247, + [SMALL_STATE(3228)] = 108306, + [SMALL_STATE(3229)] = 108363, + [SMALL_STATE(3230)] = 108428, + [SMALL_STATE(3231)] = 108495, + [SMALL_STATE(3232)] = 108560, + [SMALL_STATE(3233)] = 108625, + [SMALL_STATE(3234)] = 108690, + [SMALL_STATE(3235)] = 108755, + [SMALL_STATE(3236)] = 108820, + [SMALL_STATE(3237)] = 108885, + [SMALL_STATE(3238)] = 108950, + [SMALL_STATE(3239)] = 109015, + [SMALL_STATE(3240)] = 109080, + [SMALL_STATE(3241)] = 109145, + [SMALL_STATE(3242)] = 109210, + [SMALL_STATE(3243)] = 109275, + [SMALL_STATE(3244)] = 109340, + [SMALL_STATE(3245)] = 109405, + [SMALL_STATE(3246)] = 109470, + [SMALL_STATE(3247)] = 109535, + [SMALL_STATE(3248)] = 109600, + [SMALL_STATE(3249)] = 109665, + [SMALL_STATE(3250)] = 109730, + [SMALL_STATE(3251)] = 109790, + [SMALL_STATE(3252)] = 109846, + [SMALL_STATE(3253)] = 109906, + [SMALL_STATE(3254)] = 109970, + [SMALL_STATE(3255)] = 110046, + [SMALL_STATE(3256)] = 110122, + [SMALL_STATE(3257)] = 110198, + [SMALL_STATE(3258)] = 110274, + [SMALL_STATE(3259)] = 110350, + [SMALL_STATE(3260)] = 110426, + [SMALL_STATE(3261)] = 110502, + [SMALL_STATE(3262)] = 110578, + [SMALL_STATE(3263)] = 110638, + [SMALL_STATE(3264)] = 110698, + [SMALL_STATE(3265)] = 110774, + [SMALL_STATE(3266)] = 110850, + [SMALL_STATE(3267)] = 110910, + [SMALL_STATE(3268)] = 110970, + [SMALL_STATE(3269)] = 111032, + [SMALL_STATE(3270)] = 111090, + [SMALL_STATE(3271)] = 111150, + [SMALL_STATE(3272)] = 111206, + [SMALL_STATE(3273)] = 111266, + [SMALL_STATE(3274)] = 111322, + [SMALL_STATE(3275)] = 111382, + [SMALL_STATE(3276)] = 111438, + [SMALL_STATE(3277)] = 111494, + [SMALL_STATE(3278)] = 111570, + [SMALL_STATE(3279)] = 111646, + [SMALL_STATE(3280)] = 111702, + [SMALL_STATE(3281)] = 111758, + [SMALL_STATE(3282)] = 111834, + [SMALL_STATE(3283)] = 111910, + [SMALL_STATE(3284)] = 111970, + [SMALL_STATE(3285)] = 112046, + [SMALL_STATE(3286)] = 112122, + [SMALL_STATE(3287)] = 112180, + [SMALL_STATE(3288)] = 112239, + [SMALL_STATE(3289)] = 112298, + [SMALL_STATE(3290)] = 112353, + [SMALL_STATE(3291)] = 112412, + [SMALL_STATE(3292)] = 112467, + [SMALL_STATE(3293)] = 112522, + [SMALL_STATE(3294)] = 112577, + [SMALL_STATE(3295)] = 112632, + [SMALL_STATE(3296)] = 112691, + [SMALL_STATE(3297)] = 112750, + [SMALL_STATE(3298)] = 112809, + [SMALL_STATE(3299)] = 112868, + [SMALL_STATE(3300)] = 112927, + [SMALL_STATE(3301)] = 112986, + [SMALL_STATE(3302)] = 113041, + [SMALL_STATE(3303)] = 113096, + [SMALL_STATE(3304)] = 113151, + [SMALL_STATE(3305)] = 113208, + [SMALL_STATE(3306)] = 113267, + [SMALL_STATE(3307)] = 113322, + [SMALL_STATE(3308)] = 113381, + [SMALL_STATE(3309)] = 113438, + [SMALL_STATE(3310)] = 113495, + [SMALL_STATE(3311)] = 113555, + [SMALL_STATE(3312)] = 113611, + [SMALL_STATE(3313)] = 113667, + [SMALL_STATE(3314)] = 113723, + [SMALL_STATE(3315)] = 113779, + [SMALL_STATE(3316)] = 113835, + [SMALL_STATE(3317)] = 113891, + [SMALL_STATE(3318)] = 113945, + [SMALL_STATE(3319)] = 114001, + [SMALL_STATE(3320)] = 114057, + [SMALL_STATE(3321)] = 114113, + [SMALL_STATE(3322)] = 114183, + [SMALL_STATE(3323)] = 114247, + [SMALL_STATE(3324)] = 114319, + [SMALL_STATE(3325)] = 114379, + [SMALL_STATE(3326)] = 114461, + [SMALL_STATE(3327)] = 114545, + [SMALL_STATE(3328)] = 114631, + [SMALL_STATE(3329)] = 114705, + [SMALL_STATE(3330)] = 114773, + [SMALL_STATE(3331)] = 114849, + [SMALL_STATE(3332)] = 114927, + [SMALL_STATE(3333)] = 115007, + [SMALL_STATE(3334)] = 115075, + [SMALL_STATE(3335)] = 115145, + [SMALL_STATE(3336)] = 115207, + [SMALL_STATE(3337)] = 115271, + [SMALL_STATE(3338)] = 115341, + [SMALL_STATE(3339)] = 115413, + [SMALL_STATE(3340)] = 115471, + [SMALL_STATE(3341)] = 115551, + [SMALL_STATE(3342)] = 115633, + [SMALL_STATE(3343)] = 115715, + [SMALL_STATE(3344)] = 115799, + [SMALL_STATE(3345)] = 115883, + [SMALL_STATE(3346)] = 115969, + [SMALL_STATE(3347)] = 116041, + [SMALL_STATE(3348)] = 116115, + [SMALL_STATE(3349)] = 116181, + [SMALL_STATE(3350)] = 116249, + [SMALL_STATE(3351)] = 116323, + [SMALL_STATE(3352)] = 116399, + [SMALL_STATE(3353)] = 116475, + [SMALL_STATE(3354)] = 116553, + [SMALL_STATE(3355)] = 116631, + [SMALL_STATE(3356)] = 116711, + [SMALL_STATE(3357)] = 116781, + [SMALL_STATE(3358)] = 116845, + [SMALL_STATE(3359)] = 116917, + [SMALL_STATE(3360)] = 116977, + [SMALL_STATE(3361)] = 117059, + [SMALL_STATE(3362)] = 117143, + [SMALL_STATE(3363)] = 117229, + [SMALL_STATE(3364)] = 117303, + [SMALL_STATE(3365)] = 117371, + [SMALL_STATE(3366)] = 117447, + [SMALL_STATE(3367)] = 117525, + [SMALL_STATE(3368)] = 117605, + [SMALL_STATE(3369)] = 117673, + [SMALL_STATE(3370)] = 117735, + [SMALL_STATE(3371)] = 117805, + [SMALL_STATE(3372)] = 117863, + [SMALL_STATE(3373)] = 117943, + [SMALL_STATE(3374)] = 118025, + [SMALL_STATE(3375)] = 118081, + [SMALL_STATE(3376)] = 118153, + [SMALL_STATE(3377)] = 118219, + [SMALL_STATE(3378)] = 118293, + [SMALL_STATE(3379)] = 118369, + [SMALL_STATE(3380)] = 118447, + [SMALL_STATE(3381)] = 118515, + [SMALL_STATE(3382)] = 118585, + [SMALL_STATE(3383)] = 118647, + [SMALL_STATE(3384)] = 118711, + [SMALL_STATE(3385)] = 118781, + [SMALL_STATE(3386)] = 118853, + [SMALL_STATE(3387)] = 118911, + [SMALL_STATE(3388)] = 118971, + [SMALL_STATE(3389)] = 119051, + [SMALL_STATE(3390)] = 119133, + [SMALL_STATE(3391)] = 119215, + [SMALL_STATE(3392)] = 119299, + [SMALL_STATE(3393)] = 119383, + [SMALL_STATE(3394)] = 119469, + [SMALL_STATE(3395)] = 119541, + [SMALL_STATE(3396)] = 119615, + [SMALL_STATE(3397)] = 119681, + [SMALL_STATE(3398)] = 119749, + [SMALL_STATE(3399)] = 119823, + [SMALL_STATE(3400)] = 119899, + [SMALL_STATE(3401)] = 119975, + [SMALL_STATE(3402)] = 120053, + [SMALL_STATE(3403)] = 120131, + [SMALL_STATE(3404)] = 120211, + [SMALL_STATE(3405)] = 120279, + [SMALL_STATE(3406)] = 120341, + [SMALL_STATE(3407)] = 120411, + [SMALL_STATE(3408)] = 120469, + [SMALL_STATE(3409)] = 120549, + [SMALL_STATE(3410)] = 120631, + [SMALL_STATE(3411)] = 120715, + [SMALL_STATE(3412)] = 120787, + [SMALL_STATE(3413)] = 120853, + [SMALL_STATE(3414)] = 120927, + [SMALL_STATE(3415)] = 121003, + [SMALL_STATE(3416)] = 121081, + [SMALL_STATE(3417)] = 121147, + [SMALL_STATE(3418)] = 121207, + [SMALL_STATE(3419)] = 121275, + [SMALL_STATE(3420)] = 121331, + [SMALL_STATE(3421)] = 121409, + [SMALL_STATE(3422)] = 121489, + [SMALL_STATE(3423)] = 121571, + [SMALL_STATE(3424)] = 121641, + [SMALL_STATE(3425)] = 121705, + [SMALL_STATE(3426)] = 121777, + [SMALL_STATE(3427)] = 121851, + [SMALL_STATE(3428)] = 121927, + [SMALL_STATE(3429)] = 121981, + [SMALL_STATE(3430)] = 122051, + [SMALL_STATE(3431)] = 122123, + [SMALL_STATE(3432)] = 122177, + [SMALL_STATE(3433)] = 122231, + [SMALL_STATE(3434)] = 122315, + [SMALL_STATE(3435)] = 122368, + [SMALL_STATE(3436)] = 122421, + [SMALL_STATE(3437)] = 122474, + [SMALL_STATE(3438)] = 122527, + [SMALL_STATE(3439)] = 122580, + [SMALL_STATE(3440)] = 122633, + [SMALL_STATE(3441)] = 122686, + [SMALL_STATE(3442)] = 122739, + [SMALL_STATE(3443)] = 122792, + [SMALL_STATE(3444)] = 122845, + [SMALL_STATE(3445)] = 122898, + [SMALL_STATE(3446)] = 122951, + [SMALL_STATE(3447)] = 123004, + [SMALL_STATE(3448)] = 123057, + [SMALL_STATE(3449)] = 123110, + [SMALL_STATE(3450)] = 123163, + [SMALL_STATE(3451)] = 123216, + [SMALL_STATE(3452)] = 123271, + [SMALL_STATE(3453)] = 123342, + [SMALL_STATE(3454)] = 123395, + [SMALL_STATE(3455)] = 123464, + [SMALL_STATE(3456)] = 123517, + [SMALL_STATE(3457)] = 123570, + [SMALL_STATE(3458)] = 123623, + [SMALL_STATE(3459)] = 123676, + [SMALL_STATE(3460)] = 123729, + [SMALL_STATE(3461)] = 123796, + [SMALL_STATE(3462)] = 123849, + [SMALL_STATE(3463)] = 123902, + [SMALL_STATE(3464)] = 123955, + [SMALL_STATE(3465)] = 124008, + [SMALL_STATE(3466)] = 124061, + [SMALL_STATE(3467)] = 124114, + [SMALL_STATE(3468)] = 124167, + [SMALL_STATE(3469)] = 124220, + [SMALL_STATE(3470)] = 124273, + [SMALL_STATE(3471)] = 124326, + [SMALL_STATE(3472)] = 124379, + [SMALL_STATE(3473)] = 124432, + [SMALL_STATE(3474)] = 124485, + [SMALL_STATE(3475)] = 124538, + [SMALL_STATE(3476)] = 124591, + [SMALL_STATE(3477)] = 124644, + [SMALL_STATE(3478)] = 124697, + [SMALL_STATE(3479)] = 124750, + [SMALL_STATE(3480)] = 124815, + [SMALL_STATE(3481)] = 124874, + [SMALL_STATE(3482)] = 124941, + [SMALL_STATE(3483)] = 124996, + [SMALL_STATE(3484)] = 125073, + [SMALL_STATE(3485)] = 125152, + [SMALL_STATE(3486)] = 125233, + [SMALL_STATE(3487)] = 125302, + [SMALL_STATE(3488)] = 125371, + [SMALL_STATE(3489)] = 125434, + [SMALL_STATE(3490)] = 125505, + [SMALL_STATE(3491)] = 125578, + [SMALL_STATE(3492)] = 125653, + [SMALL_STATE(3493)] = 125706, + [SMALL_STATE(3494)] = 125759, + [SMALL_STATE(3495)] = 125812, + [SMALL_STATE(3496)] = 125865, + [SMALL_STATE(3497)] = 125918, + [SMALL_STATE(3498)] = 125971, + [SMALL_STATE(3499)] = 126024, + [SMALL_STATE(3500)] = 126077, + [SMALL_STATE(3501)] = 126130, + [SMALL_STATE(3502)] = 126183, + [SMALL_STATE(3503)] = 126236, + [SMALL_STATE(3504)] = 126289, + [SMALL_STATE(3505)] = 126342, + [SMALL_STATE(3506)] = 126395, + [SMALL_STATE(3507)] = 126448, + [SMALL_STATE(3508)] = 126501, + [SMALL_STATE(3509)] = 126551, + [SMALL_STATE(3510)] = 126619, + [SMALL_STATE(3511)] = 126683, + [SMALL_STATE(3512)] = 126751, + [SMALL_STATE(3513)] = 126815, + [SMALL_STATE(3514)] = 126879, + [SMALL_STATE(3515)] = 126935, + [SMALL_STATE(3516)] = 126987, + [SMALL_STATE(3517)] = 127055, + [SMALL_STATE(3518)] = 127105, + [SMALL_STATE(3519)] = 127155, + [SMALL_STATE(3520)] = 127211, + [SMALL_STATE(3521)] = 127261, + [SMALL_STATE(3522)] = 127311, + [SMALL_STATE(3523)] = 127379, + [SMALL_STATE(3524)] = 127443, + [SMALL_STATE(3525)] = 127493, + [SMALL_STATE(3526)] = 127558, + [SMALL_STATE(3527)] = 127619, + [SMALL_STATE(3528)] = 127684, + [SMALL_STATE(3529)] = 127749, + [SMALL_STATE(3530)] = 127814, + [SMALL_STATE(3531)] = 127867, + [SMALL_STATE(3532)] = 127932, + [SMALL_STATE(3533)] = 127985, + [SMALL_STATE(3534)] = 128046, + [SMALL_STATE(3535)] = 128105, + [SMALL_STATE(3536)] = 128170, + [SMALL_STATE(3537)] = 128231, + [SMALL_STATE(3538)] = 128292, + [SMALL_STATE(3539)] = 128353, + [SMALL_STATE(3540)] = 128414, + [SMALL_STATE(3541)] = 128475, + [SMALL_STATE(3542)] = 128530, + [SMALL_STATE(3543)] = 128591, + [SMALL_STATE(3544)] = 128652, + [SMALL_STATE(3545)] = 128707, + [SMALL_STATE(3546)] = 128772, + [SMALL_STATE(3547)] = 128833, + [SMALL_STATE(3548)] = 128883, + [SMALL_STATE(3549)] = 128933, + [SMALL_STATE(3550)] = 128997, + [SMALL_STATE(3551)] = 129051, + [SMALL_STATE(3552)] = 129101, + [SMALL_STATE(3553)] = 129153, + [SMALL_STATE(3554)] = 129207, + [SMALL_STATE(3555)] = 129259, + [SMALL_STATE(3556)] = 129309, + [SMALL_STATE(3557)] = 129364, + [SMALL_STATE(3558)] = 129417, + [SMALL_STATE(3559)] = 129470, + [SMALL_STATE(3560)] = 129525, + [SMALL_STATE(3561)] = 129574, + [SMALL_STATE(3562)] = 129629, + [SMALL_STATE(3563)] = 129684, + [SMALL_STATE(3564)] = 129739, + [SMALL_STATE(3565)] = 129788, + [SMALL_STATE(3566)] = 129837, + [SMALL_STATE(3567)] = 129886, + [SMALL_STATE(3568)] = 129935, + [SMALL_STATE(3569)] = 129988, + [SMALL_STATE(3570)] = 130043, + [SMALL_STATE(3571)] = 130098, + [SMALL_STATE(3572)] = 130153, + [SMALL_STATE(3573)] = 130208, + [SMALL_STATE(3574)] = 130263, + [SMALL_STATE(3575)] = 130318, + [SMALL_STATE(3576)] = 130369, + [SMALL_STATE(3577)] = 130424, + [SMALL_STATE(3578)] = 130479, + [SMALL_STATE(3579)] = 130534, + [SMALL_STATE(3580)] = 130589, + [SMALL_STATE(3581)] = 130644, + [SMALL_STATE(3582)] = 130699, + [SMALL_STATE(3583)] = 130754, + [SMALL_STATE(3584)] = 130809, + [SMALL_STATE(3585)] = 130864, + [SMALL_STATE(3586)] = 130919, + [SMALL_STATE(3587)] = 130974, + [SMALL_STATE(3588)] = 131029, + [SMALL_STATE(3589)] = 131084, + [SMALL_STATE(3590)] = 131139, + [SMALL_STATE(3591)] = 131194, + [SMALL_STATE(3592)] = 131249, + [SMALL_STATE(3593)] = 131300, + [SMALL_STATE(3594)] = 131355, + [SMALL_STATE(3595)] = 131407, + [SMALL_STATE(3596)] = 131463, + [SMALL_STATE(3597)] = 131515, + [SMALL_STATE(3598)] = 131563, + [SMALL_STATE(3599)] = 131619, + [SMALL_STATE(3600)] = 131667, + [SMALL_STATE(3601)] = 131719, + [SMALL_STATE(3602)] = 131771, + [SMALL_STATE(3603)] = 131821, + [SMALL_STATE(3604)] = 131869, + [SMALL_STATE(3605)] = 131919, + [SMALL_STATE(3606)] = 131967, + [SMALL_STATE(3607)] = 132015, + [SMALL_STATE(3608)] = 132066, + [SMALL_STATE(3609)] = 132117, + [SMALL_STATE(3610)] = 132168, + [SMALL_STATE(3611)] = 132223, + [SMALL_STATE(3612)] = 132278, + [SMALL_STATE(3613)] = 132325, + [SMALL_STATE(3614)] = 132376, + [SMALL_STATE(3615)] = 132423, + [SMALL_STATE(3616)] = 132470, + [SMALL_STATE(3617)] = 132517, + [SMALL_STATE(3618)] = 132564, + [SMALL_STATE(3619)] = 132619, + [SMALL_STATE(3620)] = 132668, + [SMALL_STATE(3621)] = 132718, + [SMALL_STATE(3622)] = 132766, + [SMALL_STATE(3623)] = 132814, + [SMALL_STATE(3624)] = 132862, + [SMALL_STATE(3625)] = 132906, + [SMALL_STATE(3626)] = 132956, + [SMALL_STATE(3627)] = 133004, + [SMALL_STATE(3628)] = 133054, + [SMALL_STATE(3629)] = 133104, + [SMALL_STATE(3630)] = 133153, + [SMALL_STATE(3631)] = 133202, + [SMALL_STATE(3632)] = 133255, + [SMALL_STATE(3633)] = 133300, + [SMALL_STATE(3634)] = 133345, + [SMALL_STATE(3635)] = 133392, + [SMALL_STATE(3636)] = 133437, + [SMALL_STATE(3637)] = 133482, + [SMALL_STATE(3638)] = 133529, + [SMALL_STATE(3639)] = 133574, + [SMALL_STATE(3640)] = 133623, + [SMALL_STATE(3641)] = 133668, + [SMALL_STATE(3642)] = 133717, + [SMALL_STATE(3643)] = 133766, + [SMALL_STATE(3644)] = 133815, + [SMALL_STATE(3645)] = 133862, + [SMALL_STATE(3646)] = 133911, + [SMALL_STATE(3647)] = 133956, + [SMALL_STATE(3648)] = 134007, + [SMALL_STATE(3649)] = 134052, + [SMALL_STATE(3650)] = 134101, + [SMALL_STATE(3651)] = 134150, + [SMALL_STATE(3652)] = 134199, + [SMALL_STATE(3653)] = 134248, + [SMALL_STATE(3654)] = 134297, + [SMALL_STATE(3655)] = 134342, + [SMALL_STATE(3656)] = 134389, + [SMALL_STATE(3657)] = 134438, + [SMALL_STATE(3658)] = 134487, + [SMALL_STATE(3659)] = 134536, + [SMALL_STATE(3660)] = 134585, + [SMALL_STATE(3661)] = 134634, + [SMALL_STATE(3662)] = 134684, + [SMALL_STATE(3663)] = 134754, + [SMALL_STATE(3664)] = 134826, + [SMALL_STATE(3665)] = 134898, + [SMALL_STATE(3666)] = 134972, + [SMALL_STATE(3667)] = 135046, + [SMALL_STATE(3668)] = 135122, + [SMALL_STATE(3669)] = 135184, + [SMALL_STATE(3670)] = 135248, + [SMALL_STATE(3671)] = 135304, + [SMALL_STATE(3672)] = 135362, + [SMALL_STATE(3673)] = 135426, + [SMALL_STATE(3674)] = 135492, + [SMALL_STATE(3675)] = 135558, + [SMALL_STATE(3676)] = 135626, + [SMALL_STATE(3677)] = 135694, + [SMALL_STATE(3678)] = 135764, + [SMALL_STATE(3679)] = 135824, + [SMALL_STATE(3680)] = 135878, + [SMALL_STATE(3681)] = 135940, + [SMALL_STATE(3682)] = 135990, + [SMALL_STATE(3683)] = 136062, + [SMALL_STATE(3684)] = 136136, + [SMALL_STATE(3685)] = 136212, + [SMALL_STATE(3686)] = 136276, + [SMALL_STATE(3687)] = 136334, + [SMALL_STATE(3688)] = 136400, + [SMALL_STATE(3689)] = 136468, + [SMALL_STATE(3690)] = 136538, + [SMALL_STATE(3691)] = 136612, + [SMALL_STATE(3692)] = 136670, + [SMALL_STATE(3693)] = 136722, + [SMALL_STATE(3694)] = 136782, + [SMALL_STATE(3695)] = 136830, + [SMALL_STATE(3696)] = 136900, + [SMALL_STATE(3697)] = 136972, + [SMALL_STATE(3698)] = 137046, + [SMALL_STATE(3699)] = 137108, + [SMALL_STATE(3700)] = 137164, + [SMALL_STATE(3701)] = 137228, + [SMALL_STATE(3702)] = 137294, + [SMALL_STATE(3703)] = 137362, + [SMALL_STATE(3704)] = 137420, + [SMALL_STATE(3705)] = 137480, + [SMALL_STATE(3706)] = 137532, + [SMALL_STATE(3707)] = 137586, + [SMALL_STATE(3708)] = 137646, + [SMALL_STATE(3709)] = 137696, + [SMALL_STATE(3710)] = 137758, + [SMALL_STATE(3711)] = 137806, + [SMALL_STATE(3712)] = 137856, + [SMALL_STATE(3713)] = 137926, + [SMALL_STATE(3714)] = 137998, + [SMALL_STATE(3715)] = 138070, + [SMALL_STATE(3716)] = 138124, + [SMALL_STATE(3717)] = 138168, + [SMALL_STATE(3718)] = 138244, + [SMALL_STATE(3719)] = 138318, + [SMALL_STATE(3720)] = 138392, + [SMALL_STATE(3721)] = 138442, + [SMALL_STATE(3722)] = 138492, + [SMALL_STATE(3723)] = 138554, + [SMALL_STATE(3724)] = 138630, + [SMALL_STATE(3725)] = 138692, + [SMALL_STATE(3726)] = 138756, + [SMALL_STATE(3727)] = 138804, + [SMALL_STATE(3728)] = 138860, + [SMALL_STATE(3729)] = 138918, + [SMALL_STATE(3730)] = 138982, + [SMALL_STATE(3731)] = 139048, + [SMALL_STATE(3732)] = 139116, + [SMALL_STATE(3733)] = 139184, + [SMALL_STATE(3734)] = 139248, + [SMALL_STATE(3735)] = 139318, + [SMALL_STATE(3736)] = 139366, + [SMALL_STATE(3737)] = 139412, + [SMALL_STATE(3738)] = 139470, + [SMALL_STATE(3739)] = 139518, + [SMALL_STATE(3740)] = 139576, + [SMALL_STATE(3741)] = 139628, + [SMALL_STATE(3742)] = 139678, + [SMALL_STATE(3743)] = 139738, + [SMALL_STATE(3744)] = 139786, + [SMALL_STATE(3745)] = 139856, + [SMALL_STATE(3746)] = 139928, + [SMALL_STATE(3747)] = 140002, + [SMALL_STATE(3748)] = 140064, + [SMALL_STATE(3749)] = 140120, + [SMALL_STATE(3750)] = 140184, + [SMALL_STATE(3751)] = 140250, + [SMALL_STATE(3752)] = 140294, + [SMALL_STATE(3753)] = 140338, + [SMALL_STATE(3754)] = 140406, + [SMALL_STATE(3755)] = 140456, + [SMALL_STATE(3756)] = 140504, + [SMALL_STATE(3757)] = 140574, + [SMALL_STATE(3758)] = 140624, + [SMALL_STATE(3759)] = 140668, + [SMALL_STATE(3760)] = 140716, + [SMALL_STATE(3761)] = 140764, + [SMALL_STATE(3762)] = 140814, + [SMALL_STATE(3763)] = 140858, + [SMALL_STATE(3764)] = 140930, + [SMALL_STATE(3765)] = 140996, + [SMALL_STATE(3766)] = 141040, + [SMALL_STATE(3767)] = 141086, + [SMALL_STATE(3768)] = 141144, + [SMALL_STATE(3769)] = 141204, + [SMALL_STATE(3770)] = 141248, + [SMALL_STATE(3771)] = 141300, + [SMALL_STATE(3772)] = 141354, + [SMALL_STATE(3773)] = 141414, + [SMALL_STATE(3774)] = 141476, + [SMALL_STATE(3775)] = 141524, + [SMALL_STATE(3776)] = 141574, + [SMALL_STATE(3777)] = 141620, + [SMALL_STATE(3778)] = 141688, + [SMALL_STATE(3779)] = 141734, + [SMALL_STATE(3780)] = 141780, + [SMALL_STATE(3781)] = 141824, + [SMALL_STATE(3782)] = 141868, + [SMALL_STATE(3783)] = 141928, + [SMALL_STATE(3784)] = 141994, + [SMALL_STATE(3785)] = 142069, + [SMALL_STATE(3786)] = 142112, + [SMALL_STATE(3787)] = 142187, + [SMALL_STATE(3788)] = 142262, + [SMALL_STATE(3789)] = 142337, + [SMALL_STATE(3790)] = 142426, + [SMALL_STATE(3791)] = 142515, + [SMALL_STATE(3792)] = 142560, + [SMALL_STATE(3793)] = 142603, + [SMALL_STATE(3794)] = 142646, + [SMALL_STATE(3795)] = 142721, + [SMALL_STATE(3796)] = 142764, + [SMALL_STATE(3797)] = 142839, + [SMALL_STATE(3798)] = 142883, + [SMALL_STATE(3799)] = 142927, + [SMALL_STATE(3800)] = 142981, + [SMALL_STATE(3801)] = 143029, + [SMALL_STATE(3802)] = 143085, + [SMALL_STATE(3803)] = 143129, + [SMALL_STATE(3804)] = 143173, + [SMALL_STATE(3805)] = 143239, + [SMALL_STATE(3806)] = 143307, + [SMALL_STATE(3807)] = 143377, + [SMALL_STATE(3808)] = 143435, + [SMALL_STATE(3809)] = 143487, + [SMALL_STATE(3810)] = 143547, + [SMALL_STATE(3811)] = 143609, + [SMALL_STATE(3812)] = 143653, + [SMALL_STATE(3813)] = 143717, + [SMALL_STATE(3814)] = 143761, + [SMALL_STATE(3815)] = 143815, + [SMALL_STATE(3816)] = 143863, + [SMALL_STATE(3817)] = 143919, + [SMALL_STATE(3818)] = 143963, + [SMALL_STATE(3819)] = 144029, + [SMALL_STATE(3820)] = 144097, + [SMALL_STATE(3821)] = 144167, + [SMALL_STATE(3822)] = 144225, + [SMALL_STATE(3823)] = 144277, + [SMALL_STATE(3824)] = 144337, + [SMALL_STATE(3825)] = 144399, + [SMALL_STATE(3826)] = 144463, + [SMALL_STATE(3827)] = 144507, + [SMALL_STATE(3828)] = 144551, + [SMALL_STATE(3829)] = 144595, + [SMALL_STATE(3830)] = 144664, + [SMALL_STATE(3831)] = 144733, + [SMALL_STATE(3832)] = 144816, + [SMALL_STATE(3833)] = 144899, + [SMALL_STATE(3834)] = 144982, + [SMALL_STATE(3835)] = 145065, + [SMALL_STATE(3836)] = 145148, + [SMALL_STATE(3837)] = 145217, + [SMALL_STATE(3838)] = 145300, + [SMALL_STATE(3839)] = 145369, + [SMALL_STATE(3840)] = 145414, + [SMALL_STATE(3841)] = 145497, + [SMALL_STATE(3842)] = 145580, + [SMALL_STATE(3843)] = 145663, + [SMALL_STATE(3844)] = 145732, + [SMALL_STATE(3845)] = 145815, + [SMALL_STATE(3846)] = 145860, + [SMALL_STATE(3847)] = 145943, + [SMALL_STATE(3848)] = 146026, + [SMALL_STATE(3849)] = 146109, + [SMALL_STATE(3850)] = 146178, + [SMALL_STATE(3851)] = 146225, + [SMALL_STATE(3852)] = 146308, + [SMALL_STATE(3853)] = 146391, + [SMALL_STATE(3854)] = 146474, + [SMALL_STATE(3855)] = 146557, + [SMALL_STATE(3856)] = 146640, + [SMALL_STATE(3857)] = 146723, + [SMALL_STATE(3858)] = 146806, + [SMALL_STATE(3859)] = 146889, + [SMALL_STATE(3860)] = 146972, + [SMALL_STATE(3861)] = 147055, + [SMALL_STATE(3862)] = 147138, + [SMALL_STATE(3863)] = 147221, + [SMALL_STATE(3864)] = 147304, + [SMALL_STATE(3865)] = 147350, + [SMALL_STATE(3866)] = 147394, + [SMALL_STATE(3867)] = 147438, + [SMALL_STATE(3868)] = 147482, + [SMALL_STATE(3869)] = 147526, + [SMALL_STATE(3870)] = 147603, + [SMALL_STATE(3871)] = 147680, + [SMALL_STATE(3872)] = 147757, + [SMALL_STATE(3873)] = 147834, + [SMALL_STATE(3874)] = 147911, + [SMALL_STATE(3875)] = 147988, + [SMALL_STATE(3876)] = 148065, + [SMALL_STATE(3877)] = 148142, + [SMALL_STATE(3878)] = 148219, + [SMALL_STATE(3879)] = 148296, + [SMALL_STATE(3880)] = 148373, + [SMALL_STATE(3881)] = 148450, + [SMALL_STATE(3882)] = 148489, + [SMALL_STATE(3883)] = 148543, + [SMALL_STATE(3884)] = 148594, + [SMALL_STATE(3885)] = 148645, + [SMALL_STATE(3886)] = 148696, + [SMALL_STATE(3887)] = 148749, + [SMALL_STATE(3888)] = 148799, + [SMALL_STATE(3889)] = 148849, + [SMALL_STATE(3890)] = 148885, + [SMALL_STATE(3891)] = 148925, + [SMALL_STATE(3892)] = 148981, + [SMALL_STATE(3893)] = 149025, + [SMALL_STATE(3894)] = 149075, + [SMALL_STATE(3895)] = 149119, + [SMALL_STATE(3896)] = 149163, + [SMALL_STATE(3897)] = 149203, + [SMALL_STATE(3898)] = 149243, + [SMALL_STATE(3899)] = 149285, + [SMALL_STATE(3900)] = 149333, + [SMALL_STATE(3901)] = 149381, + [SMALL_STATE(3902)] = 149429, + [SMALL_STATE(3903)] = 149477, + [SMALL_STATE(3904)] = 149513, + [SMALL_STATE(3905)] = 149550, + [SMALL_STATE(3906)] = 149589, + [SMALL_STATE(3907)] = 149642, + [SMALL_STATE(3908)] = 149695, + [SMALL_STATE(3909)] = 149742, + [SMALL_STATE(3910)] = 149789, + [SMALL_STATE(3911)] = 149826, + [SMALL_STATE(3912)] = 149865, + [SMALL_STATE(3913)] = 149912, + [SMALL_STATE(3914)] = 149967, + [SMALL_STATE(3915)] = 150014, + [SMALL_STATE(3916)] = 150061, + [SMALL_STATE(3917)] = 150114, + [SMALL_STATE(3918)] = 150164, + [SMALL_STATE(3919)] = 150216, + [SMALL_STATE(3920)] = 150250, + [SMALL_STATE(3921)] = 150288, + [SMALL_STATE(3922)] = 150324, + [SMALL_STATE(3923)] = 150362, + [SMALL_STATE(3924)] = 150396, + [SMALL_STATE(3925)] = 150434, + [SMALL_STATE(3926)] = 150480, + [SMALL_STATE(3927)] = 150514, + [SMALL_STATE(3928)] = 150550, + [SMALL_STATE(3929)] = 150600, + [SMALL_STATE(3930)] = 150652, + [SMALL_STATE(3931)] = 150704, + [SMALL_STATE(3932)] = 150754, + [SMALL_STATE(3933)] = 150804, + [SMALL_STATE(3934)] = 150838, + [SMALL_STATE(3935)] = 150876, + [SMALL_STATE(3936)] = 150909, + [SMALL_STATE(3937)] = 150946, + [SMALL_STATE(3938)] = 150981, + [SMALL_STATE(3939)] = 151030, + [SMALL_STATE(3940)] = 151065, + [SMALL_STATE(3941)] = 151114, + [SMALL_STATE(3942)] = 151163, + [SMALL_STATE(3943)] = 151204, + [SMALL_STATE(3944)] = 151241, + [SMALL_STATE(3945)] = 151294, + [SMALL_STATE(3946)] = 151327, + [SMALL_STATE(3947)] = 151362, + [SMALL_STATE(3948)] = 151395, + [SMALL_STATE(3949)] = 151428, + [SMALL_STATE(3950)] = 151465, + [SMALL_STATE(3951)] = 151500, + [SMALL_STATE(3952)] = 151535, + [SMALL_STATE(3953)] = 151584, + [SMALL_STATE(3954)] = 151631, + [SMALL_STATE(3955)] = 151668, + [SMALL_STATE(3956)] = 151706, + [SMALL_STATE(3957)] = 151740, + [SMALL_STATE(3958)] = 151778, + [SMALL_STATE(3959)] = 151828, + [SMALL_STATE(3960)] = 151864, + [SMALL_STATE(3961)] = 151900, + [SMALL_STATE(3962)] = 151938, + [SMALL_STATE(3963)] = 151972, + [SMALL_STATE(3964)] = 152008, + [SMALL_STATE(3965)] = 152058, + [SMALL_STATE(3966)] = 152096, + [SMALL_STATE(3967)] = 152134, + [SMALL_STATE(3968)] = 152172, + [SMALL_STATE(3969)] = 152210, + [SMALL_STATE(3970)] = 152244, + [SMALL_STATE(3971)] = 152282, + [SMALL_STATE(3972)] = 152316, + [SMALL_STATE(3973)] = 152348, + [SMALL_STATE(3974)] = 152382, + [SMALL_STATE(3975)] = 152420, + [SMALL_STATE(3976)] = 152458, + [SMALL_STATE(3977)] = 152490, + [SMALL_STATE(3978)] = 152522, + [SMALL_STATE(3979)] = 152560, + [SMALL_STATE(3980)] = 152598, + [SMALL_STATE(3981)] = 152630, + [SMALL_STATE(3982)] = 152662, + [SMALL_STATE(3983)] = 152700, + [SMALL_STATE(3984)] = 152738, + [SMALL_STATE(3985)] = 152772, + [SMALL_STATE(3986)] = 152810, + [SMALL_STATE(3987)] = 152848, + [SMALL_STATE(3988)] = 152886, + [SMALL_STATE(3989)] = 152924, + [SMALL_STATE(3990)] = 152962, + [SMALL_STATE(3991)] = 153002, + [SMALL_STATE(3992)] = 153040, + [SMALL_STATE(3993)] = 153078, + [SMALL_STATE(3994)] = 153114, + [SMALL_STATE(3995)] = 153152, + [SMALL_STATE(3996)] = 153184, + [SMALL_STATE(3997)] = 153224, + [SMALL_STATE(3998)] = 153264, + [SMALL_STATE(3999)] = 153296, + [SMALL_STATE(4000)] = 153334, + [SMALL_STATE(4001)] = 153384, + [SMALL_STATE(4002)] = 153422, + [SMALL_STATE(4003)] = 153468, + [SMALL_STATE(4004)] = 153500, + [SMALL_STATE(4005)] = 153532, + [SMALL_STATE(4006)] = 153577, + [SMALL_STATE(4007)] = 153610, + [SMALL_STATE(4008)] = 153649, + [SMALL_STATE(4009)] = 153684, + [SMALL_STATE(4010)] = 153715, + [SMALL_STATE(4011)] = 153746, + [SMALL_STATE(4012)] = 153781, + [SMALL_STATE(4013)] = 153816, + [SMALL_STATE(4014)] = 153863, + [SMALL_STATE(4015)] = 153894, + [SMALL_STATE(4016)] = 153925, + [SMALL_STATE(4017)] = 153956, + [SMALL_STATE(4018)] = 154003, + [SMALL_STATE(4019)] = 154036, + [SMALL_STATE(4020)] = 154075, + [SMALL_STATE(4021)] = 154108, + [SMALL_STATE(4022)] = 154145, + [SMALL_STATE(4023)] = 154186, + [SMALL_STATE(4024)] = 154217, + [SMALL_STATE(4025)] = 154256, + [SMALL_STATE(4026)] = 154287, + [SMALL_STATE(4027)] = 154318, + [SMALL_STATE(4028)] = 154365, + [SMALL_STATE(4029)] = 154400, + [SMALL_STATE(4030)] = 154431, + [SMALL_STATE(4031)] = 154478, + [SMALL_STATE(4032)] = 154509, + [SMALL_STATE(4033)] = 154546, + [SMALL_STATE(4034)] = 154577, + [SMALL_STATE(4035)] = 154614, + [SMALL_STATE(4036)] = 154645, + [SMALL_STATE(4037)] = 154678, + [SMALL_STATE(4038)] = 154713, + [SMALL_STATE(4039)] = 154744, + [SMALL_STATE(4040)] = 154776, + [SMALL_STATE(4041)] = 154816, + [SMALL_STATE(4042)] = 154846, + [SMALL_STATE(4043)] = 154882, + [SMALL_STATE(4044)] = 154912, + [SMALL_STATE(4045)] = 154950, + [SMALL_STATE(4046)] = 154984, + [SMALL_STATE(4047)] = 155016, + [SMALL_STATE(4048)] = 155054, + [SMALL_STATE(4049)] = 155094, + [SMALL_STATE(4050)] = 155124, + [SMALL_STATE(4051)] = 155164, + [SMALL_STATE(4052)] = 155196, + [SMALL_STATE(4053)] = 155246, + [SMALL_STATE(4054)] = 155280, + [SMALL_STATE(4055)] = 155318, + [SMALL_STATE(4056)] = 155350, + [SMALL_STATE(4057)] = 155380, + [SMALL_STATE(4058)] = 155412, + [SMALL_STATE(4059)] = 155446, + [SMALL_STATE(4060)] = 155476, + [SMALL_STATE(4061)] = 155510, + [SMALL_STATE(4062)] = 155544, + [SMALL_STATE(4063)] = 155576, + [SMALL_STATE(4064)] = 155608, + [SMALL_STATE(4065)] = 155640, + [SMALL_STATE(4066)] = 155678, + [SMALL_STATE(4067)] = 155708, + [SMALL_STATE(4068)] = 155738, + [SMALL_STATE(4069)] = 155770, + [SMALL_STATE(4070)] = 155808, + [SMALL_STATE(4071)] = 155840, + [SMALL_STATE(4072)] = 155870, + [SMALL_STATE(4073)] = 155900, + [SMALL_STATE(4074)] = 155930, + [SMALL_STATE(4075)] = 155960, + [SMALL_STATE(4076)] = 155992, + [SMALL_STATE(4077)] = 156024, + [SMALL_STATE(4078)] = 156056, + [SMALL_STATE(4079)] = 156088, + [SMALL_STATE(4080)] = 156118, + [SMALL_STATE(4081)] = 156151, + [SMALL_STATE(4082)] = 156188, + [SMALL_STATE(4083)] = 156217, + [SMALL_STATE(4084)] = 156248, + [SMALL_STATE(4085)] = 156279, + [SMALL_STATE(4086)] = 156316, + [SMALL_STATE(4087)] = 156345, + [SMALL_STATE(4088)] = 156374, + [SMALL_STATE(4089)] = 156405, + [SMALL_STATE(4090)] = 156434, + [SMALL_STATE(4091)] = 156471, + [SMALL_STATE(4092)] = 156500, + [SMALL_STATE(4093)] = 156533, + [SMALL_STATE(4094)] = 156566, + [SMALL_STATE(4095)] = 156597, + [SMALL_STATE(4096)] = 156628, + [SMALL_STATE(4097)] = 156665, + [SMALL_STATE(4098)] = 156700, + [SMALL_STATE(4099)] = 156731, + [SMALL_STATE(4100)] = 156762, + [SMALL_STATE(4101)] = 156799, + [SMALL_STATE(4102)] = 156836, + [SMALL_STATE(4103)] = 156869, + [SMALL_STATE(4104)] = 156906, + [SMALL_STATE(4105)] = 156943, + [SMALL_STATE(4106)] = 156972, + [SMALL_STATE(4107)] = 157003, + [SMALL_STATE(4108)] = 157040, + [SMALL_STATE(4109)] = 157077, + [SMALL_STATE(4110)] = 157108, + [SMALL_STATE(4111)] = 157145, + [SMALL_STATE(4112)] = 157176, + [SMALL_STATE(4113)] = 157207, + [SMALL_STATE(4114)] = 157244, + [SMALL_STATE(4115)] = 157275, + [SMALL_STATE(4116)] = 157306, + [SMALL_STATE(4117)] = 157337, + [SMALL_STATE(4118)] = 157374, + [SMALL_STATE(4119)] = 157411, + [SMALL_STATE(4120)] = 157448, + [SMALL_STATE(4121)] = 157485, + [SMALL_STATE(4122)] = 157514, + [SMALL_STATE(4123)] = 157551, + [SMALL_STATE(4124)] = 157582, + [SMALL_STATE(4125)] = 157619, + [SMALL_STATE(4126)] = 157650, + [SMALL_STATE(4127)] = 157687, + [SMALL_STATE(4128)] = 157716, + [SMALL_STATE(4129)] = 157747, + [SMALL_STATE(4130)] = 157784, + [SMALL_STATE(4131)] = 157815, + [SMALL_STATE(4132)] = 157846, + [SMALL_STATE(4133)] = 157875, + [SMALL_STATE(4134)] = 157904, + [SMALL_STATE(4135)] = 157933, + [SMALL_STATE(4136)] = 157970, + [SMALL_STATE(4137)] = 158003, + [SMALL_STATE(4138)] = 158032, + [SMALL_STATE(4139)] = 158069, + [SMALL_STATE(4140)] = 158100, + [SMALL_STATE(4141)] = 158137, + [SMALL_STATE(4142)] = 158170, + [SMALL_STATE(4143)] = 158201, + [SMALL_STATE(4144)] = 158230, + [SMALL_STATE(4145)] = 158267, + [SMALL_STATE(4146)] = 158298, + [SMALL_STATE(4147)] = 158335, + [SMALL_STATE(4148)] = 158372, + [SMALL_STATE(4149)] = 158401, + [SMALL_STATE(4150)] = 158438, + [SMALL_STATE(4151)] = 158467, + [SMALL_STATE(4152)] = 158504, + [SMALL_STATE(4153)] = 158541, + [SMALL_STATE(4154)] = 158570, + [SMALL_STATE(4155)] = 158599, + [SMALL_STATE(4156)] = 158636, + [SMALL_STATE(4157)] = 158669, + [SMALL_STATE(4158)] = 158706, + [SMALL_STATE(4159)] = 158735, + [SMALL_STATE(4160)] = 158764, + [SMALL_STATE(4161)] = 158797, + [SMALL_STATE(4162)] = 158834, + [SMALL_STATE(4163)] = 158863, + [SMALL_STATE(4164)] = 158892, + [SMALL_STATE(4165)] = 158921, + [SMALL_STATE(4166)] = 158950, + [SMALL_STATE(4167)] = 158986, + [SMALL_STATE(4168)] = 159014, + [SMALL_STATE(4169)] = 159046, + [SMALL_STATE(4170)] = 159078, + [SMALL_STATE(4171)] = 159114, + [SMALL_STATE(4172)] = 159142, + [SMALL_STATE(4173)] = 159178, + [SMALL_STATE(4174)] = 159214, + [SMALL_STATE(4175)] = 159246, + [SMALL_STATE(4176)] = 159276, + [SMALL_STATE(4177)] = 159312, + [SMALL_STATE(4178)] = 159348, + [SMALL_STATE(4179)] = 159376, + [SMALL_STATE(4180)] = 159412, + [SMALL_STATE(4181)] = 159448, + [SMALL_STATE(4182)] = 159484, + [SMALL_STATE(4183)] = 159514, + [SMALL_STATE(4184)] = 159542, + [SMALL_STATE(4185)] = 159570, + [SMALL_STATE(4186)] = 159602, + [SMALL_STATE(4187)] = 159634, + [SMALL_STATE(4188)] = 159666, + [SMALL_STATE(4189)] = 159696, + [SMALL_STATE(4190)] = 159728, + [SMALL_STATE(4191)] = 159758, + [SMALL_STATE(4192)] = 159802, + [SMALL_STATE(4193)] = 159834, + [SMALL_STATE(4194)] = 159862, + [SMALL_STATE(4195)] = 159898, + [SMALL_STATE(4196)] = 159934, + [SMALL_STATE(4197)] = 159970, + [SMALL_STATE(4198)] = 159998, + [SMALL_STATE(4199)] = 160030, + [SMALL_STATE(4200)] = 160066, + [SMALL_STATE(4201)] = 160094, + [SMALL_STATE(4202)] = 160130, + [SMALL_STATE(4203)] = 160166, + [SMALL_STATE(4204)] = 160202, + [SMALL_STATE(4205)] = 160232, + [SMALL_STATE(4206)] = 160268, + [SMALL_STATE(4207)] = 160296, + [SMALL_STATE(4208)] = 160332, + [SMALL_STATE(4209)] = 160380, + [SMALL_STATE(4210)] = 160408, + [SMALL_STATE(4211)] = 160452, + [SMALL_STATE(4212)] = 160488, + [SMALL_STATE(4213)] = 160524, + [SMALL_STATE(4214)] = 160560, + [SMALL_STATE(4215)] = 160588, + [SMALL_STATE(4216)] = 160620, + [SMALL_STATE(4217)] = 160648, + [SMALL_STATE(4218)] = 160684, + [SMALL_STATE(4219)] = 160712, + [SMALL_STATE(4220)] = 160748, + [SMALL_STATE(4221)] = 160776, + [SMALL_STATE(4222)] = 160806, + [SMALL_STATE(4223)] = 160834, + [SMALL_STATE(4224)] = 160864, + [SMALL_STATE(4225)] = 160892, + [SMALL_STATE(4226)] = 160928, + [SMALL_STATE(4227)] = 160956, + [SMALL_STATE(4228)] = 160986, + [SMALL_STATE(4229)] = 161022, + [SMALL_STATE(4230)] = 161066, + [SMALL_STATE(4231)] = 161094, + [SMALL_STATE(4232)] = 161122, + [SMALL_STATE(4233)] = 161150, + [SMALL_STATE(4234)] = 161182, + [SMALL_STATE(4235)] = 161214, + [SMALL_STATE(4236)] = 161244, + [SMALL_STATE(4237)] = 161280, + [SMALL_STATE(4238)] = 161316, + [SMALL_STATE(4239)] = 161364, + [SMALL_STATE(4240)] = 161400, + [SMALL_STATE(4241)] = 161436, + [SMALL_STATE(4242)] = 161480, + [SMALL_STATE(4243)] = 161524, + [SMALL_STATE(4244)] = 161554, + [SMALL_STATE(4245)] = 161582, + [SMALL_STATE(4246)] = 161630, + [SMALL_STATE(4247)] = 161660, + [SMALL_STATE(4248)] = 161708, + [SMALL_STATE(4249)] = 161736, + [SMALL_STATE(4250)] = 161771, + [SMALL_STATE(4251)] = 161802, + [SMALL_STATE(4252)] = 161829, + [SMALL_STATE(4253)] = 161856, + [SMALL_STATE(4254)] = 161883, + [SMALL_STATE(4255)] = 161916, + [SMALL_STATE(4256)] = 161943, + [SMALL_STATE(4257)] = 161970, + [SMALL_STATE(4258)] = 161997, + [SMALL_STATE(4259)] = 162024, + [SMALL_STATE(4260)] = 162051, + [SMALL_STATE(4261)] = 162082, + [SMALL_STATE(4262)] = 162109, + [SMALL_STATE(4263)] = 162136, + [SMALL_STATE(4264)] = 162165, + [SMALL_STATE(4265)] = 162192, + [SMALL_STATE(4266)] = 162219, + [SMALL_STATE(4267)] = 162246, + [SMALL_STATE(4268)] = 162273, + [SMALL_STATE(4269)] = 162300, + [SMALL_STATE(4270)] = 162327, + [SMALL_STATE(4271)] = 162354, + [SMALL_STATE(4272)] = 162381, + [SMALL_STATE(4273)] = 162408, + [SMALL_STATE(4274)] = 162435, + [SMALL_STATE(4275)] = 162462, + [SMALL_STATE(4276)] = 162489, + [SMALL_STATE(4277)] = 162516, + [SMALL_STATE(4278)] = 162545, + [SMALL_STATE(4279)] = 162576, + [SMALL_STATE(4280)] = 162603, + [SMALL_STATE(4281)] = 162634, + [SMALL_STATE(4282)] = 162665, + [SMALL_STATE(4283)] = 162694, + [SMALL_STATE(4284)] = 162725, + [SMALL_STATE(4285)] = 162752, + [SMALL_STATE(4286)] = 162779, + [SMALL_STATE(4287)] = 162806, + [SMALL_STATE(4288)] = 162837, + [SMALL_STATE(4289)] = 162868, + [SMALL_STATE(4290)] = 162899, + [SMALL_STATE(4291)] = 162926, + [SMALL_STATE(4292)] = 162953, + [SMALL_STATE(4293)] = 162982, + [SMALL_STATE(4294)] = 163011, + [SMALL_STATE(4295)] = 163036, + [SMALL_STATE(4296)] = 163067, + [SMALL_STATE(4297)] = 163098, + [SMALL_STATE(4298)] = 163125, + [SMALL_STATE(4299)] = 163156, + [SMALL_STATE(4300)] = 163185, + [SMALL_STATE(4301)] = 163212, + [SMALL_STATE(4302)] = 163243, + [SMALL_STATE(4303)] = 163270, + [SMALL_STATE(4304)] = 163297, + [SMALL_STATE(4305)] = 163322, + [SMALL_STATE(4306)] = 163353, + [SMALL_STATE(4307)] = 163378, + [SMALL_STATE(4308)] = 163413, + [SMALL_STATE(4309)] = 163444, + [SMALL_STATE(4310)] = 163473, + [SMALL_STATE(4311)] = 163508, + [SMALL_STATE(4312)] = 163535, + [SMALL_STATE(4313)] = 163562, + [SMALL_STATE(4314)] = 163587, + [SMALL_STATE(4315)] = 163614, + [SMALL_STATE(4316)] = 163641, + [SMALL_STATE(4317)] = 163666, + [SMALL_STATE(4318)] = 163693, + [SMALL_STATE(4319)] = 163724, + [SMALL_STATE(4320)] = 163755, + [SMALL_STATE(4321)] = 163788, + [SMALL_STATE(4322)] = 163819, + [SMALL_STATE(4323)] = 163846, + [SMALL_STATE(4324)] = 163877, + [SMALL_STATE(4325)] = 163908, + [SMALL_STATE(4326)] = 163935, + [SMALL_STATE(4327)] = 163968, + [SMALL_STATE(4328)] = 163997, + [SMALL_STATE(4329)] = 164028, + [SMALL_STATE(4330)] = 164057, + [SMALL_STATE(4331)] = 164084, + [SMALL_STATE(4332)] = 164111, + [SMALL_STATE(4333)] = 164142, + [SMALL_STATE(4334)] = 164173, + [SMALL_STATE(4335)] = 164206, + [SMALL_STATE(4336)] = 164239, + [SMALL_STATE(4337)] = 164264, + [SMALL_STATE(4338)] = 164291, + [SMALL_STATE(4339)] = 164318, + [SMALL_STATE(4340)] = 164351, + [SMALL_STATE(4341)] = 164384, + [SMALL_STATE(4342)] = 164411, + [SMALL_STATE(4343)] = 164442, + [SMALL_STATE(4344)] = 164467, + [SMALL_STATE(4345)] = 164492, + [SMALL_STATE(4346)] = 164523, + [SMALL_STATE(4347)] = 164550, + [SMALL_STATE(4348)] = 164579, + [SMALL_STATE(4349)] = 164606, + [SMALL_STATE(4350)] = 164635, + [SMALL_STATE(4351)] = 164662, + [SMALL_STATE(4352)] = 164689, + [SMALL_STATE(4353)] = 164716, + [SMALL_STATE(4354)] = 164747, + [SMALL_STATE(4355)] = 164778, + [SMALL_STATE(4356)] = 164809, + [SMALL_STATE(4357)] = 164840, + [SMALL_STATE(4358)] = 164867, + [SMALL_STATE(4359)] = 164894, + [SMALL_STATE(4360)] = 164925, + [SMALL_STATE(4361)] = 164952, + [SMALL_STATE(4362)] = 164983, + [SMALL_STATE(4363)] = 165016, + [SMALL_STATE(4364)] = 165049, + [SMALL_STATE(4365)] = 165078, + [SMALL_STATE(4366)] = 165107, + [SMALL_STATE(4367)] = 165132, + [SMALL_STATE(4368)] = 165159, + [SMALL_STATE(4369)] = 165190, + [SMALL_STATE(4370)] = 165225, + [SMALL_STATE(4371)] = 165256, + [SMALL_STATE(4372)] = 165283, + [SMALL_STATE(4373)] = 165314, + [SMALL_STATE(4374)] = 165339, + [SMALL_STATE(4375)] = 165366, + [SMALL_STATE(4376)] = 165393, + [SMALL_STATE(4377)] = 165422, + [SMALL_STATE(4378)] = 165451, + [SMALL_STATE(4379)] = 165478, + [SMALL_STATE(4380)] = 165509, + [SMALL_STATE(4381)] = 165536, + [SMALL_STATE(4382)] = 165563, + [SMALL_STATE(4383)] = 165592, + [SMALL_STATE(4384)] = 165621, + [SMALL_STATE(4385)] = 165658, + [SMALL_STATE(4386)] = 165693, + [SMALL_STATE(4387)] = 165720, + [SMALL_STATE(4388)] = 165751, + [SMALL_STATE(4389)] = 165782, + [SMALL_STATE(4390)] = 165813, + [SMALL_STATE(4391)] = 165840, + [SMALL_STATE(4392)] = 165867, + [SMALL_STATE(4393)] = 165894, + [SMALL_STATE(4394)] = 165925, + [SMALL_STATE(4395)] = 165956, + [SMALL_STATE(4396)] = 165987, + [SMALL_STATE(4397)] = 166014, + [SMALL_STATE(4398)] = 166045, + [SMALL_STATE(4399)] = 166070, + [SMALL_STATE(4400)] = 166105, + [SMALL_STATE(4401)] = 166132, + [SMALL_STATE(4402)] = 166161, + [SMALL_STATE(4403)] = 166190, + [SMALL_STATE(4404)] = 166221, + [SMALL_STATE(4405)] = 166252, + [SMALL_STATE(4406)] = 166283, + [SMALL_STATE(4407)] = 166310, + [SMALL_STATE(4408)] = 166345, + [SMALL_STATE(4409)] = 166380, + [SMALL_STATE(4410)] = 166415, + [SMALL_STATE(4411)] = 166450, + [SMALL_STATE(4412)] = 166485, + [SMALL_STATE(4413)] = 166520, + [SMALL_STATE(4414)] = 166555, + [SMALL_STATE(4415)] = 166590, + [SMALL_STATE(4416)] = 166625, + [SMALL_STATE(4417)] = 166660, + [SMALL_STATE(4418)] = 166695, + [SMALL_STATE(4419)] = 166730, + [SMALL_STATE(4420)] = 166765, + [SMALL_STATE(4421)] = 166800, + [SMALL_STATE(4422)] = 166835, + [SMALL_STATE(4423)] = 166870, + [SMALL_STATE(4424)] = 166905, + [SMALL_STATE(4425)] = 166940, + [SMALL_STATE(4426)] = 166975, + [SMALL_STATE(4427)] = 167010, + [SMALL_STATE(4428)] = 167041, + [SMALL_STATE(4429)] = 167072, + [SMALL_STATE(4430)] = 167103, + [SMALL_STATE(4431)] = 167136, + [SMALL_STATE(4432)] = 167169, + [SMALL_STATE(4433)] = 167196, + [SMALL_STATE(4434)] = 167223, + [SMALL_STATE(4435)] = 167250, + [SMALL_STATE(4436)] = 167281, + [SMALL_STATE(4437)] = 167312, + [SMALL_STATE(4438)] = 167339, + [SMALL_STATE(4439)] = 167370, + [SMALL_STATE(4440)] = 167401, + [SMALL_STATE(4441)] = 167434, + [SMALL_STATE(4442)] = 167467, + [SMALL_STATE(4443)] = 167494, + [SMALL_STATE(4444)] = 167521, + [SMALL_STATE(4445)] = 167548, + [SMALL_STATE(4446)] = 167575, + [SMALL_STATE(4447)] = 167604, + [SMALL_STATE(4448)] = 167633, + [SMALL_STATE(4449)] = 167664, + [SMALL_STATE(4450)] = 167695, + [SMALL_STATE(4451)] = 167726, + [SMALL_STATE(4452)] = 167757, + [SMALL_STATE(4453)] = 167790, + [SMALL_STATE(4454)] = 167823, + [SMALL_STATE(4455)] = 167850, + [SMALL_STATE(4456)] = 167877, + [SMALL_STATE(4457)] = 167908, + [SMALL_STATE(4458)] = 167939, + [SMALL_STATE(4459)] = 167972, + [SMALL_STATE(4460)] = 168005, + [SMALL_STATE(4461)] = 168038, + [SMALL_STATE(4462)] = 168073, + [SMALL_STATE(4463)] = 168102, + [SMALL_STATE(4464)] = 168133, + [SMALL_STATE(4465)] = 168160, + [SMALL_STATE(4466)] = 168193, + [SMALL_STATE(4467)] = 168226, + [SMALL_STATE(4468)] = 168261, + [SMALL_STATE(4469)] = 168288, + [SMALL_STATE(4470)] = 168312, + [SMALL_STATE(4471)] = 168338, + [SMALL_STATE(4472)] = 168364, + [SMALL_STATE(4473)] = 168392, + [SMALL_STATE(4474)] = 168422, + [SMALL_STATE(4475)] = 168448, + [SMALL_STATE(4476)] = 168478, + [SMALL_STATE(4477)] = 168502, + [SMALL_STATE(4478)] = 168530, + [SMALL_STATE(4479)] = 168556, + [SMALL_STATE(4480)] = 168580, + [SMALL_STATE(4481)] = 168610, + [SMALL_STATE(4482)] = 168640, + [SMALL_STATE(4483)] = 168666, + [SMALL_STATE(4484)] = 168696, + [SMALL_STATE(4485)] = 168726, + [SMALL_STATE(4486)] = 168756, + [SMALL_STATE(4487)] = 168808, + [SMALL_STATE(4488)] = 168840, + [SMALL_STATE(4489)] = 168886, + [SMALL_STATE(4490)] = 168916, + [SMALL_STATE(4491)] = 168946, + [SMALL_STATE(4492)] = 168976, + [SMALL_STATE(4493)] = 169008, + [SMALL_STATE(4494)] = 169038, + [SMALL_STATE(4495)] = 169068, + [SMALL_STATE(4496)] = 169092, + [SMALL_STATE(4497)] = 169118, + [SMALL_STATE(4498)] = 169170, + [SMALL_STATE(4499)] = 169194, + [SMALL_STATE(4500)] = 169220, + [SMALL_STATE(4501)] = 169248, + [SMALL_STATE(4502)] = 169278, + [SMALL_STATE(4503)] = 169302, + [SMALL_STATE(4504)] = 169326, + [SMALL_STATE(4505)] = 169378, + [SMALL_STATE(4506)] = 169430, + [SMALL_STATE(4507)] = 169460, + [SMALL_STATE(4508)] = 169484, + [SMALL_STATE(4509)] = 169510, + [SMALL_STATE(4510)] = 169540, + [SMALL_STATE(4511)] = 169564, + [SMALL_STATE(4512)] = 169594, + [SMALL_STATE(4513)] = 169646, + [SMALL_STATE(4514)] = 169676, + [SMALL_STATE(4515)] = 169702, + [SMALL_STATE(4516)] = 169732, + [SMALL_STATE(4517)] = 169760, + [SMALL_STATE(4518)] = 169788, + [SMALL_STATE(4519)] = 169812, + [SMALL_STATE(4520)] = 169836, + [SMALL_STATE(4521)] = 169860, + [SMALL_STATE(4522)] = 169890, + [SMALL_STATE(4523)] = 169918, + [SMALL_STATE(4524)] = 169948, + [SMALL_STATE(4525)] = 170000, + [SMALL_STATE(4526)] = 170030, + [SMALL_STATE(4527)] = 170060, + [SMALL_STATE(4528)] = 170112, + [SMALL_STATE(4529)] = 170164, + [SMALL_STATE(4530)] = 170190, + [SMALL_STATE(4531)] = 170220, + [SMALL_STATE(4532)] = 170246, + [SMALL_STATE(4533)] = 170272, + [SMALL_STATE(4534)] = 170324, + [SMALL_STATE(4535)] = 170350, + [SMALL_STATE(4536)] = 170378, + [SMALL_STATE(4537)] = 170406, + [SMALL_STATE(4538)] = 170434, + [SMALL_STATE(4539)] = 170462, + [SMALL_STATE(4540)] = 170490, + [SMALL_STATE(4541)] = 170516, + [SMALL_STATE(4542)] = 170546, + [SMALL_STATE(4543)] = 170576, + [SMALL_STATE(4544)] = 170600, + [SMALL_STATE(4545)] = 170628, + [SMALL_STATE(4546)] = 170658, + [SMALL_STATE(4547)] = 170684, + [SMALL_STATE(4548)] = 170710, + [SMALL_STATE(4549)] = 170738, + [SMALL_STATE(4550)] = 170768, + [SMALL_STATE(4551)] = 170794, + [SMALL_STATE(4552)] = 170824, + [SMALL_STATE(4553)] = 170854, + [SMALL_STATE(4554)] = 170882, + [SMALL_STATE(4555)] = 170934, + [SMALL_STATE(4556)] = 170959, + [SMALL_STATE(4557)] = 170988, + [SMALL_STATE(4558)] = 171013, + [SMALL_STATE(4559)] = 171038, + [SMALL_STATE(4560)] = 171063, + [SMALL_STATE(4561)] = 171092, + [SMALL_STATE(4562)] = 171117, + [SMALL_STATE(4563)] = 171142, + [SMALL_STATE(4564)] = 171167, + [SMALL_STATE(4565)] = 171192, + [SMALL_STATE(4566)] = 171217, + [SMALL_STATE(4567)] = 171242, + [SMALL_STATE(4568)] = 171267, + [SMALL_STATE(4569)] = 171292, + [SMALL_STATE(4570)] = 171317, + [SMALL_STATE(4571)] = 171342, + [SMALL_STATE(4572)] = 171371, + [SMALL_STATE(4573)] = 171400, + [SMALL_STATE(4574)] = 171425, + [SMALL_STATE(4575)] = 171454, + [SMALL_STATE(4576)] = 171483, + [SMALL_STATE(4577)] = 171512, + [SMALL_STATE(4578)] = 171537, + [SMALL_STATE(4579)] = 171566, + [SMALL_STATE(4580)] = 171595, + [SMALL_STATE(4581)] = 171620, + [SMALL_STATE(4582)] = 171647, + [SMALL_STATE(4583)] = 171676, + [SMALL_STATE(4584)] = 171705, + [SMALL_STATE(4585)] = 171734, + [SMALL_STATE(4586)] = 171763, + [SMALL_STATE(4587)] = 171792, + [SMALL_STATE(4588)] = 171817, + [SMALL_STATE(4589)] = 171842, + [SMALL_STATE(4590)] = 171867, + [SMALL_STATE(4591)] = 171890, + [SMALL_STATE(4592)] = 171921, + [SMALL_STATE(4593)] = 171948, + [SMALL_STATE(4594)] = 171973, + [SMALL_STATE(4595)] = 172000, + [SMALL_STATE(4596)] = 172027, + [SMALL_STATE(4597)] = 172050, + [SMALL_STATE(4598)] = 172079, + [SMALL_STATE(4599)] = 172108, + [SMALL_STATE(4600)] = 172133, + [SMALL_STATE(4601)] = 172158, + [SMALL_STATE(4602)] = 172187, + [SMALL_STATE(4603)] = 172212, + [SMALL_STATE(4604)] = 172241, + [SMALL_STATE(4605)] = 172266, + [SMALL_STATE(4606)] = 172291, + [SMALL_STATE(4607)] = 172316, + [SMALL_STATE(4608)] = 172341, + [SMALL_STATE(4609)] = 172366, + [SMALL_STATE(4610)] = 172395, + [SMALL_STATE(4611)] = 172420, + [SMALL_STATE(4612)] = 172445, + [SMALL_STATE(4613)] = 172474, + [SMALL_STATE(4614)] = 172505, + [SMALL_STATE(4615)] = 172534, + [SMALL_STATE(4616)] = 172563, + [SMALL_STATE(4617)] = 172592, + [SMALL_STATE(4618)] = 172621, + [SMALL_STATE(4619)] = 172646, + [SMALL_STATE(4620)] = 172677, + [SMALL_STATE(4621)] = 172702, + [SMALL_STATE(4622)] = 172731, + [SMALL_STATE(4623)] = 172756, + [SMALL_STATE(4624)] = 172801, + [SMALL_STATE(4625)] = 172826, + [SMALL_STATE(4626)] = 172855, + [SMALL_STATE(4627)] = 172884, + [SMALL_STATE(4628)] = 172913, + [SMALL_STATE(4629)] = 172940, + [SMALL_STATE(4630)] = 172965, + [SMALL_STATE(4631)] = 172990, + [SMALL_STATE(4632)] = 173017, + [SMALL_STATE(4633)] = 173042, + [SMALL_STATE(4634)] = 173067, + [SMALL_STATE(4635)] = 173090, + [SMALL_STATE(4636)] = 173119, + [SMALL_STATE(4637)] = 173148, + [SMALL_STATE(4638)] = 173177, + [SMALL_STATE(4639)] = 173200, + [SMALL_STATE(4640)] = 173225, + [SMALL_STATE(4641)] = 173250, + [SMALL_STATE(4642)] = 173275, + [SMALL_STATE(4643)] = 173300, + [SMALL_STATE(4644)] = 173329, + [SMALL_STATE(4645)] = 173358, + [SMALL_STATE(4646)] = 173383, + [SMALL_STATE(4647)] = 173410, + [SMALL_STATE(4648)] = 173439, + [SMALL_STATE(4649)] = 173468, + [SMALL_STATE(4650)] = 173493, + [SMALL_STATE(4651)] = 173518, + [SMALL_STATE(4652)] = 173543, + [SMALL_STATE(4653)] = 173572, + [SMALL_STATE(4654)] = 173601, + [SMALL_STATE(4655)] = 173626, + [SMALL_STATE(4656)] = 173651, + [SMALL_STATE(4657)] = 173676, + [SMALL_STATE(4658)] = 173701, + [SMALL_STATE(4659)] = 173726, + [SMALL_STATE(4660)] = 173749, + [SMALL_STATE(4661)] = 173774, + [SMALL_STATE(4662)] = 173797, + [SMALL_STATE(4663)] = 173828, + [SMALL_STATE(4664)] = 173853, + [SMALL_STATE(4665)] = 173878, + [SMALL_STATE(4666)] = 173903, + [SMALL_STATE(4667)] = 173926, + [SMALL_STATE(4668)] = 173951, + [SMALL_STATE(4669)] = 173980, + [SMALL_STATE(4670)] = 174005, + [SMALL_STATE(4671)] = 174030, + [SMALL_STATE(4672)] = 174055, + [SMALL_STATE(4673)] = 174080, + [SMALL_STATE(4674)] = 174105, + [SMALL_STATE(4675)] = 174130, + [SMALL_STATE(4676)] = 174155, + [SMALL_STATE(4677)] = 174184, + [SMALL_STATE(4678)] = 174213, + [SMALL_STATE(4679)] = 174238, + [SMALL_STATE(4680)] = 174263, + [SMALL_STATE(4681)] = 174288, + [SMALL_STATE(4682)] = 174317, + [SMALL_STATE(4683)] = 174342, + [SMALL_STATE(4684)] = 174371, + [SMALL_STATE(4685)] = 174396, + [SMALL_STATE(4686)] = 174425, + [SMALL_STATE(4687)] = 174450, + [SMALL_STATE(4688)] = 174475, + [SMALL_STATE(4689)] = 174500, + [SMALL_STATE(4690)] = 174525, + [SMALL_STATE(4691)] = 174550, + [SMALL_STATE(4692)] = 174575, + [SMALL_STATE(4693)] = 174602, + [SMALL_STATE(4694)] = 174627, + [SMALL_STATE(4695)] = 174652, + [SMALL_STATE(4696)] = 174681, + [SMALL_STATE(4697)] = 174706, + [SMALL_STATE(4698)] = 174731, + [SMALL_STATE(4699)] = 174756, + [SMALL_STATE(4700)] = 174781, + [SMALL_STATE(4701)] = 174810, + [SMALL_STATE(4702)] = 174839, + [SMALL_STATE(4703)] = 174864, + [SMALL_STATE(4704)] = 174889, + [SMALL_STATE(4705)] = 174930, + [SMALL_STATE(4706)] = 174955, + [SMALL_STATE(4707)] = 174982, + [SMALL_STATE(4708)] = 175007, + [SMALL_STATE(4709)] = 175032, + [SMALL_STATE(4710)] = 175077, + [SMALL_STATE(4711)] = 175106, + [SMALL_STATE(4712)] = 175135, + [SMALL_STATE(4713)] = 175164, + [SMALL_STATE(4714)] = 175193, + [SMALL_STATE(4715)] = 175218, + [SMALL_STATE(4716)] = 175243, + [SMALL_STATE(4717)] = 175268, + [SMALL_STATE(4718)] = 175293, + [SMALL_STATE(4719)] = 175320, + [SMALL_STATE(4720)] = 175345, + [SMALL_STATE(4721)] = 175374, + [SMALL_STATE(4722)] = 175401, + [SMALL_STATE(4723)] = 175426, + [SMALL_STATE(4724)] = 175458, + [SMALL_STATE(4725)] = 175482, + [SMALL_STATE(4726)] = 175506, + [SMALL_STATE(4727)] = 175530, + [SMALL_STATE(4728)] = 175552, + [SMALL_STATE(4729)] = 175576, + [SMALL_STATE(4730)] = 175600, + [SMALL_STATE(4731)] = 175624, + [SMALL_STATE(4732)] = 175648, + [SMALL_STATE(4733)] = 175688, + [SMALL_STATE(4734)] = 175720, + [SMALL_STATE(4735)] = 175744, + [SMALL_STATE(4736)] = 175768, + [SMALL_STATE(4737)] = 175792, + [SMALL_STATE(4738)] = 175816, + [SMALL_STATE(4739)] = 175840, + [SMALL_STATE(4740)] = 175862, + [SMALL_STATE(4741)] = 175894, + [SMALL_STATE(4742)] = 175918, + [SMALL_STATE(4743)] = 175942, + [SMALL_STATE(4744)] = 175966, + [SMALL_STATE(4745)] = 175990, + [SMALL_STATE(4746)] = 176012, + [SMALL_STATE(4747)] = 176036, + [SMALL_STATE(4748)] = 176058, + [SMALL_STATE(4749)] = 176080, + [SMALL_STATE(4750)] = 176126, + [SMALL_STATE(4751)] = 176152, + [SMALL_STATE(4752)] = 176190, + [SMALL_STATE(4753)] = 176214, + [SMALL_STATE(4754)] = 176238, + [SMALL_STATE(4755)] = 176262, + [SMALL_STATE(4756)] = 176284, + [SMALL_STATE(4757)] = 176308, + [SMALL_STATE(4758)] = 176332, + [SMALL_STATE(4759)] = 176356, + [SMALL_STATE(4760)] = 176380, + [SMALL_STATE(4761)] = 176412, + [SMALL_STATE(4762)] = 176436, + [SMALL_STATE(4763)] = 176460, + [SMALL_STATE(4764)] = 176482, + [SMALL_STATE(4765)] = 176520, + [SMALL_STATE(4766)] = 176544, + [SMALL_STATE(4767)] = 176568, + [SMALL_STATE(4768)] = 176592, + [SMALL_STATE(4769)] = 176638, + [SMALL_STATE(4770)] = 176662, + [SMALL_STATE(4771)] = 176686, + [SMALL_STATE(4772)] = 176708, + [SMALL_STATE(4773)] = 176732, + [SMALL_STATE(4774)] = 176754, + [SMALL_STATE(4775)] = 176778, + [SMALL_STATE(4776)] = 176802, + [SMALL_STATE(4777)] = 176826, + [SMALL_STATE(4778)] = 176850, + [SMALL_STATE(4779)] = 176874, + [SMALL_STATE(4780)] = 176898, + [SMALL_STATE(4781)] = 176922, + [SMALL_STATE(4782)] = 176964, + [SMALL_STATE(4783)] = 176988, + [SMALL_STATE(4784)] = 177012, + [SMALL_STATE(4785)] = 177036, + [SMALL_STATE(4786)] = 177060, + [SMALL_STATE(4787)] = 177082, + [SMALL_STATE(4788)] = 177128, + [SMALL_STATE(4789)] = 177152, + [SMALL_STATE(4790)] = 177176, + [SMALL_STATE(4791)] = 177200, + [SMALL_STATE(4792)] = 177224, + [SMALL_STATE(4793)] = 177246, + [SMALL_STATE(4794)] = 177292, + [SMALL_STATE(4795)] = 177316, + [SMALL_STATE(4796)] = 177340, + [SMALL_STATE(4797)] = 177362, + [SMALL_STATE(4798)] = 177386, + [SMALL_STATE(4799)] = 177410, + [SMALL_STATE(4800)] = 177434, + [SMALL_STATE(4801)] = 177466, + [SMALL_STATE(4802)] = 177490, + [SMALL_STATE(4803)] = 177514, + [SMALL_STATE(4804)] = 177538, + [SMALL_STATE(4805)] = 177562, + [SMALL_STATE(4806)] = 177586, + [SMALL_STATE(4807)] = 177610, + [SMALL_STATE(4808)] = 177634, + [SMALL_STATE(4809)] = 177680, + [SMALL_STATE(4810)] = 177726, + [SMALL_STATE(4811)] = 177750, + [SMALL_STATE(4812)] = 177774, + [SMALL_STATE(4813)] = 177798, + [SMALL_STATE(4814)] = 177822, + [SMALL_STATE(4815)] = 177854, + [SMALL_STATE(4816)] = 177878, + [SMALL_STATE(4817)] = 177902, + [SMALL_STATE(4818)] = 177924, + [SMALL_STATE(4819)] = 177956, + [SMALL_STATE(4820)] = 177980, + [SMALL_STATE(4821)] = 178004, + [SMALL_STATE(4822)] = 178028, + [SMALL_STATE(4823)] = 178060, + [SMALL_STATE(4824)] = 178084, + [SMALL_STATE(4825)] = 178108, + [SMALL_STATE(4826)] = 178140, + [SMALL_STATE(4827)] = 178172, + [SMALL_STATE(4828)] = 178196, + [SMALL_STATE(4829)] = 178220, + [SMALL_STATE(4830)] = 178244, + [SMALL_STATE(4831)] = 178268, + [SMALL_STATE(4832)] = 178312, + [SMALL_STATE(4833)] = 178336, + [SMALL_STATE(4834)] = 178360, + [SMALL_STATE(4835)] = 178384, + [SMALL_STATE(4836)] = 178408, + [SMALL_STATE(4837)] = 178432, + [SMALL_STATE(4838)] = 178456, + [SMALL_STATE(4839)] = 178500, + [SMALL_STATE(4840)] = 178524, + [SMALL_STATE(4841)] = 178548, + [SMALL_STATE(4842)] = 178580, + [SMALL_STATE(4843)] = 178604, + [SMALL_STATE(4844)] = 178628, + [SMALL_STATE(4845)] = 178660, + [SMALL_STATE(4846)] = 178684, + [SMALL_STATE(4847)] = 178708, + [SMALL_STATE(4848)] = 178740, + [SMALL_STATE(4849)] = 178764, + [SMALL_STATE(4850)] = 178788, + [SMALL_STATE(4851)] = 178820, + [SMALL_STATE(4852)] = 178844, + [SMALL_STATE(4853)] = 178868, + [SMALL_STATE(4854)] = 178892, + [SMALL_STATE(4855)] = 178916, + [SMALL_STATE(4856)] = 178940, + [SMALL_STATE(4857)] = 178962, + [SMALL_STATE(4858)] = 178986, + [SMALL_STATE(4859)] = 179010, + [SMALL_STATE(4860)] = 179036, + [SMALL_STATE(4861)] = 179060, + [SMALL_STATE(4862)] = 179084, + [SMALL_STATE(4863)] = 179108, + [SMALL_STATE(4864)] = 179132, + [SMALL_STATE(4865)] = 179156, + [SMALL_STATE(4866)] = 179188, + [SMALL_STATE(4867)] = 179216, + [SMALL_STATE(4868)] = 179244, + [SMALL_STATE(4869)] = 179272, + [SMALL_STATE(4870)] = 179300, + [SMALL_STATE(4871)] = 179328, + [SMALL_STATE(4872)] = 179356, + [SMALL_STATE(4873)] = 179384, + [SMALL_STATE(4874)] = 179412, + [SMALL_STATE(4875)] = 179436, + [SMALL_STATE(4876)] = 179460, + [SMALL_STATE(4877)] = 179488, + [SMALL_STATE(4878)] = 179516, + [SMALL_STATE(4879)] = 179544, + [SMALL_STATE(4880)] = 179576, + [SMALL_STATE(4881)] = 179622, + [SMALL_STATE(4882)] = 179646, + [SMALL_STATE(4883)] = 179668, + [SMALL_STATE(4884)] = 179696, + [SMALL_STATE(4885)] = 179720, + [SMALL_STATE(4886)] = 179744, + [SMALL_STATE(4887)] = 179786, + [SMALL_STATE(4888)] = 179812, + [SMALL_STATE(4889)] = 179836, + [SMALL_STATE(4890)] = 179868, + [SMALL_STATE(4891)] = 179892, + [SMALL_STATE(4892)] = 179924, + [SMALL_STATE(4893)] = 179948, + [SMALL_STATE(4894)] = 179970, + [SMALL_STATE(4895)] = 179992, + [SMALL_STATE(4896)] = 180016, + [SMALL_STATE(4897)] = 180038, + [SMALL_STATE(4898)] = 180070, + [SMALL_STATE(4899)] = 180094, + [SMALL_STATE(4900)] = 180118, + [SMALL_STATE(4901)] = 180150, + [SMALL_STATE(4902)] = 180174, + [SMALL_STATE(4903)] = 180198, + [SMALL_STATE(4904)] = 180220, + [SMALL_STATE(4905)] = 180244, + [SMALL_STATE(4906)] = 180282, + [SMALL_STATE(4907)] = 180306, + [SMALL_STATE(4908)] = 180328, + [SMALL_STATE(4909)] = 180352, + [SMALL_STATE(4910)] = 180376, + [SMALL_STATE(4911)] = 180400, + [SMALL_STATE(4912)] = 180422, + [SMALL_STATE(4913)] = 180468, + [SMALL_STATE(4914)] = 180492, + [SMALL_STATE(4915)] = 180524, + [SMALL_STATE(4916)] = 180570, + [SMALL_STATE(4917)] = 180594, + [SMALL_STATE(4918)] = 180618, + [SMALL_STATE(4919)] = 180640, + [SMALL_STATE(4920)] = 180682, + [SMALL_STATE(4921)] = 180706, + [SMALL_STATE(4922)] = 180730, + [SMALL_STATE(4923)] = 180754, + [SMALL_STATE(4924)] = 180778, + [SMALL_STATE(4925)] = 180802, + [SMALL_STATE(4926)] = 180826, + [SMALL_STATE(4927)] = 180858, + [SMALL_STATE(4928)] = 180904, + [SMALL_STATE(4929)] = 180928, + [SMALL_STATE(4930)] = 180952, + [SMALL_STATE(4931)] = 180976, + [SMALL_STATE(4932)] = 181000, + [SMALL_STATE(4933)] = 181024, + [SMALL_STATE(4934)] = 181048, + [SMALL_STATE(4935)] = 181070, + [SMALL_STATE(4936)] = 181094, + [SMALL_STATE(4937)] = 181118, + [SMALL_STATE(4938)] = 181142, + [SMALL_STATE(4939)] = 181176, + [SMALL_STATE(4940)] = 181200, + [SMALL_STATE(4941)] = 181224, + [SMALL_STATE(4942)] = 181248, + [SMALL_STATE(4943)] = 181272, + [SMALL_STATE(4944)] = 181296, + [SMALL_STATE(4945)] = 181320, + [SMALL_STATE(4946)] = 181342, + [SMALL_STATE(4947)] = 181366, + [SMALL_STATE(4948)] = 181398, + [SMALL_STATE(4949)] = 181422, + [SMALL_STATE(4950)] = 181446, + [SMALL_STATE(4951)] = 181470, + [SMALL_STATE(4952)] = 181494, + [SMALL_STATE(4953)] = 181518, + [SMALL_STATE(4954)] = 181542, + [SMALL_STATE(4955)] = 181564, + [SMALL_STATE(4956)] = 181588, + [SMALL_STATE(4957)] = 181612, + [SMALL_STATE(4958)] = 181636, + [SMALL_STATE(4959)] = 181660, + [SMALL_STATE(4960)] = 181684, + [SMALL_STATE(4961)] = 181708, + [SMALL_STATE(4962)] = 181732, + [SMALL_STATE(4963)] = 181758, + [SMALL_STATE(4964)] = 181779, + [SMALL_STATE(4965)] = 181800, + [SMALL_STATE(4966)] = 181823, + [SMALL_STATE(4967)] = 181846, + [SMALL_STATE(4968)] = 181869, + [SMALL_STATE(4969)] = 181892, + [SMALL_STATE(4970)] = 181925, + [SMALL_STATE(4971)] = 181966, + [SMALL_STATE(4972)] = 181989, + [SMALL_STATE(4973)] = 182030, + [SMALL_STATE(4974)] = 182053, + [SMALL_STATE(4975)] = 182074, + [SMALL_STATE(4976)] = 182095, + [SMALL_STATE(4977)] = 182116, + [SMALL_STATE(4978)] = 182139, + [SMALL_STATE(4979)] = 182162, + [SMALL_STATE(4980)] = 182185, + [SMALL_STATE(4981)] = 182208, + [SMALL_STATE(4982)] = 182229, + [SMALL_STATE(4983)] = 182252, + [SMALL_STATE(4984)] = 182273, + [SMALL_STATE(4985)] = 182296, + [SMALL_STATE(4986)] = 182319, + [SMALL_STATE(4987)] = 182342, + [SMALL_STATE(4988)] = 182365, + [SMALL_STATE(4989)] = 182388, + [SMALL_STATE(4990)] = 182411, + [SMALL_STATE(4991)] = 182434, + [SMALL_STATE(4992)] = 182457, + [SMALL_STATE(4993)] = 182480, + [SMALL_STATE(4994)] = 182503, + [SMALL_STATE(4995)] = 182526, + [SMALL_STATE(4996)] = 182549, + [SMALL_STATE(4997)] = 182572, + [SMALL_STATE(4998)] = 182613, + [SMALL_STATE(4999)] = 182654, + [SMALL_STATE(5000)] = 182675, + [SMALL_STATE(5001)] = 182716, + [SMALL_STATE(5002)] = 182737, + [SMALL_STATE(5003)] = 182758, + [SMALL_STATE(5004)] = 182781, + [SMALL_STATE(5005)] = 182804, + [SMALL_STATE(5006)] = 182827, + [SMALL_STATE(5007)] = 182858, + [SMALL_STATE(5008)] = 182897, + [SMALL_STATE(5009)] = 182920, + [SMALL_STATE(5010)] = 182941, + [SMALL_STATE(5011)] = 182962, + [SMALL_STATE(5012)] = 182983, + [SMALL_STATE(5013)] = 183004, + [SMALL_STATE(5014)] = 183025, + [SMALL_STATE(5015)] = 183046, + [SMALL_STATE(5016)] = 183067, + [SMALL_STATE(5017)] = 183088, + [SMALL_STATE(5018)] = 183109, + [SMALL_STATE(5019)] = 183130, + [SMALL_STATE(5020)] = 183151, + [SMALL_STATE(5021)] = 183172, + [SMALL_STATE(5022)] = 183193, + [SMALL_STATE(5023)] = 183232, + [SMALL_STATE(5024)] = 183273, + [SMALL_STATE(5025)] = 183312, + [SMALL_STATE(5026)] = 183345, + [SMALL_STATE(5027)] = 183366, + [SMALL_STATE(5028)] = 183387, + [SMALL_STATE(5029)] = 183408, + [SMALL_STATE(5030)] = 183429, + [SMALL_STATE(5031)] = 183450, + [SMALL_STATE(5032)] = 183471, + [SMALL_STATE(5033)] = 183492, + [SMALL_STATE(5034)] = 183515, + [SMALL_STATE(5035)] = 183542, + [SMALL_STATE(5036)] = 183569, + [SMALL_STATE(5037)] = 183590, + [SMALL_STATE(5038)] = 183611, + [SMALL_STATE(5039)] = 183650, + [SMALL_STATE(5040)] = 183671, + [SMALL_STATE(5041)] = 183692, + [SMALL_STATE(5042)] = 183713, + [SMALL_STATE(5043)] = 183734, + [SMALL_STATE(5044)] = 183755, + [SMALL_STATE(5045)] = 183776, + [SMALL_STATE(5046)] = 183797, + [SMALL_STATE(5047)] = 183834, + [SMALL_STATE(5048)] = 183855, + [SMALL_STATE(5049)] = 183876, + [SMALL_STATE(5050)] = 183897, + [SMALL_STATE(5051)] = 183924, + [SMALL_STATE(5052)] = 183945, + [SMALL_STATE(5053)] = 183966, + [SMALL_STATE(5054)] = 183987, + [SMALL_STATE(5055)] = 184028, + [SMALL_STATE(5056)] = 184067, + [SMALL_STATE(5057)] = 184088, + [SMALL_STATE(5058)] = 184109, + [SMALL_STATE(5059)] = 184130, + [SMALL_STATE(5060)] = 184151, + [SMALL_STATE(5061)] = 184172, + [SMALL_STATE(5062)] = 184195, + [SMALL_STATE(5063)] = 184218, + [SMALL_STATE(5064)] = 184255, + [SMALL_STATE(5065)] = 184276, + [SMALL_STATE(5066)] = 184317, + [SMALL_STATE(5067)] = 184338, + [SMALL_STATE(5068)] = 184359, + [SMALL_STATE(5069)] = 184382, + [SMALL_STATE(5070)] = 184405, + [SMALL_STATE(5071)] = 184426, + [SMALL_STATE(5072)] = 184447, + [SMALL_STATE(5073)] = 184468, + [SMALL_STATE(5074)] = 184489, + [SMALL_STATE(5075)] = 184510, + [SMALL_STATE(5076)] = 184531, + [SMALL_STATE(5077)] = 184554, + [SMALL_STATE(5078)] = 184577, + [SMALL_STATE(5079)] = 184598, + [SMALL_STATE(5080)] = 184619, + [SMALL_STATE(5081)] = 184654, + [SMALL_STATE(5082)] = 184689, + [SMALL_STATE(5083)] = 184724, + [SMALL_STATE(5084)] = 184759, + [SMALL_STATE(5085)] = 184800, + [SMALL_STATE(5086)] = 184839, + [SMALL_STATE(5087)] = 184878, + [SMALL_STATE(5088)] = 184905, + [SMALL_STATE(5089)] = 184944, + [SMALL_STATE(5090)] = 184965, + [SMALL_STATE(5091)] = 184986, + [SMALL_STATE(5092)] = 185027, + [SMALL_STATE(5093)] = 185066, + [SMALL_STATE(5094)] = 185105, + [SMALL_STATE(5095)] = 185126, + [SMALL_STATE(5096)] = 185147, + [SMALL_STATE(5097)] = 185176, + [SMALL_STATE(5098)] = 185203, + [SMALL_STATE(5099)] = 185224, + [SMALL_STATE(5100)] = 185247, + [SMALL_STATE(5101)] = 185270, + [SMALL_STATE(5102)] = 185303, + [SMALL_STATE(5103)] = 185330, + [SMALL_STATE(5104)] = 185351, + [SMALL_STATE(5105)] = 185374, + [SMALL_STATE(5106)] = 185397, + [SMALL_STATE(5107)] = 185424, + [SMALL_STATE(5108)] = 185451, + [SMALL_STATE(5109)] = 185478, + [SMALL_STATE(5110)] = 185505, + [SMALL_STATE(5111)] = 185532, + [SMALL_STATE(5112)] = 185559, + [SMALL_STATE(5113)] = 185586, + [SMALL_STATE(5114)] = 185613, + [SMALL_STATE(5115)] = 185640, + [SMALL_STATE(5116)] = 185667, + [SMALL_STATE(5117)] = 185694, + [SMALL_STATE(5118)] = 185721, + [SMALL_STATE(5119)] = 185748, + [SMALL_STATE(5120)] = 185769, + [SMALL_STATE(5121)] = 185790, + [SMALL_STATE(5122)] = 185811, + [SMALL_STATE(5123)] = 185832, + [SMALL_STATE(5124)] = 185871, + [SMALL_STATE(5125)] = 185898, + [SMALL_STATE(5126)] = 185919, + [SMALL_STATE(5127)] = 185946, + [SMALL_STATE(5128)] = 185967, + [SMALL_STATE(5129)] = 185994, + [SMALL_STATE(5130)] = 186017, + [SMALL_STATE(5131)] = 186050, + [SMALL_STATE(5132)] = 186083, + [SMALL_STATE(5133)] = 186122, + [SMALL_STATE(5134)] = 186145, + [SMALL_STATE(5135)] = 186168, + [SMALL_STATE(5136)] = 186191, + [SMALL_STATE(5137)] = 186212, + [SMALL_STATE(5138)] = 186242, + [SMALL_STATE(5139)] = 186272, + [SMALL_STATE(5140)] = 186296, + [SMALL_STATE(5141)] = 186326, + [SMALL_STATE(5142)] = 186352, + [SMALL_STATE(5143)] = 186376, + [SMALL_STATE(5144)] = 186414, + [SMALL_STATE(5145)] = 186446, + [SMALL_STATE(5146)] = 186478, + [SMALL_STATE(5147)] = 186504, + [SMALL_STATE(5148)] = 186530, + [SMALL_STATE(5149)] = 186560, + [SMALL_STATE(5150)] = 186590, + [SMALL_STATE(5151)] = 186622, + [SMALL_STATE(5152)] = 186654, + [SMALL_STATE(5153)] = 186684, + [SMALL_STATE(5154)] = 186708, + [SMALL_STATE(5155)] = 186738, + [SMALL_STATE(5156)] = 186768, + [SMALL_STATE(5157)] = 186798, + [SMALL_STATE(5158)] = 186830, + [SMALL_STATE(5159)] = 186866, + [SMALL_STATE(5160)] = 186898, + [SMALL_STATE(5161)] = 186930, + [SMALL_STATE(5162)] = 186956, + [SMALL_STATE(5163)] = 186982, + [SMALL_STATE(5164)] = 187008, + [SMALL_STATE(5165)] = 187046, + [SMALL_STATE(5166)] = 187070, + [SMALL_STATE(5167)] = 187102, + [SMALL_STATE(5168)] = 187138, + [SMALL_STATE(5169)] = 187162, + [SMALL_STATE(5170)] = 187188, + [SMALL_STATE(5171)] = 187214, + [SMALL_STATE(5172)] = 187252, + [SMALL_STATE(5173)] = 187278, + [SMALL_STATE(5174)] = 187314, + [SMALL_STATE(5175)] = 187338, + [SMALL_STATE(5176)] = 187364, + [SMALL_STATE(5177)] = 187396, + [SMALL_STATE(5178)] = 187420, + [SMALL_STATE(5179)] = 187456, + [SMALL_STATE(5180)] = 187492, + [SMALL_STATE(5181)] = 187528, + [SMALL_STATE(5182)] = 187566, + [SMALL_STATE(5183)] = 187590, + [SMALL_STATE(5184)] = 187612, + [SMALL_STATE(5185)] = 187644, + [SMALL_STATE(5186)] = 187679, + [SMALL_STATE(5187)] = 187714, + [SMALL_STATE(5188)] = 187735, + [SMALL_STATE(5189)] = 187756, + [SMALL_STATE(5190)] = 187787, + [SMALL_STATE(5191)] = 187822, + [SMALL_STATE(5192)] = 187851, + [SMALL_STATE(5193)] = 187876, + [SMALL_STATE(5194)] = 187911, + [SMALL_STATE(5195)] = 187938, + [SMALL_STATE(5196)] = 187963, + [SMALL_STATE(5197)] = 187998, + [SMALL_STATE(5198)] = 188033, + [SMALL_STATE(5199)] = 188068, + [SMALL_STATE(5200)] = 188103, + [SMALL_STATE(5201)] = 188124, + [SMALL_STATE(5202)] = 188159, + [SMALL_STATE(5203)] = 188188, + [SMALL_STATE(5204)] = 188223, + [SMALL_STATE(5205)] = 188258, + [SMALL_STATE(5206)] = 188287, + [SMALL_STATE(5207)] = 188316, + [SMALL_STATE(5208)] = 188345, + [SMALL_STATE(5209)] = 188374, + [SMALL_STATE(5210)] = 188403, + [SMALL_STATE(5211)] = 188432, + [SMALL_STATE(5212)] = 188461, + [SMALL_STATE(5213)] = 188490, + [SMALL_STATE(5214)] = 188519, + [SMALL_STATE(5215)] = 188548, + [SMALL_STATE(5216)] = 188577, + [SMALL_STATE(5217)] = 188606, + [SMALL_STATE(5218)] = 188635, + [SMALL_STATE(5219)] = 188664, + [SMALL_STATE(5220)] = 188693, + [SMALL_STATE(5221)] = 188722, + [SMALL_STATE(5222)] = 188751, + [SMALL_STATE(5223)] = 188780, + [SMALL_STATE(5224)] = 188815, + [SMALL_STATE(5225)] = 188844, + [SMALL_STATE(5226)] = 188879, + [SMALL_STATE(5227)] = 188906, + [SMALL_STATE(5228)] = 188941, + [SMALL_STATE(5229)] = 188966, + [SMALL_STATE(5230)] = 188987, + [SMALL_STATE(5231)] = 189008, + [SMALL_STATE(5232)] = 189029, + [SMALL_STATE(5233)] = 189050, + [SMALL_STATE(5234)] = 189079, + [SMALL_STATE(5235)] = 189114, + [SMALL_STATE(5236)] = 189149, + [SMALL_STATE(5237)] = 189170, + [SMALL_STATE(5238)] = 189205, + [SMALL_STATE(5239)] = 189240, + [SMALL_STATE(5240)] = 189269, + [SMALL_STATE(5241)] = 189290, + [SMALL_STATE(5242)] = 189323, + [SMALL_STATE(5243)] = 189356, + [SMALL_STATE(5244)] = 189389, + [SMALL_STATE(5245)] = 189424, + [SMALL_STATE(5246)] = 189459, + [SMALL_STATE(5247)] = 189494, + [SMALL_STATE(5248)] = 189529, + [SMALL_STATE(5249)] = 189564, + [SMALL_STATE(5250)] = 189599, + [SMALL_STATE(5251)] = 189624, + [SMALL_STATE(5252)] = 189659, + [SMALL_STATE(5253)] = 189694, + [SMALL_STATE(5254)] = 189715, + [SMALL_STATE(5255)] = 189740, + [SMALL_STATE(5256)] = 189775, + [SMALL_STATE(5257)] = 189810, + [SMALL_STATE(5258)] = 189831, + [SMALL_STATE(5259)] = 189866, + [SMALL_STATE(5260)] = 189901, + [SMALL_STATE(5261)] = 189926, + [SMALL_STATE(5262)] = 189961, + [SMALL_STATE(5263)] = 189992, + [SMALL_STATE(5264)] = 190021, + [SMALL_STATE(5265)] = 190042, + [SMALL_STATE(5266)] = 190077, + [SMALL_STATE(5267)] = 190112, + [SMALL_STATE(5268)] = 190147, + [SMALL_STATE(5269)] = 190182, + [SMALL_STATE(5270)] = 190203, + [SMALL_STATE(5271)] = 190238, + [SMALL_STATE(5272)] = 190273, + [SMALL_STATE(5273)] = 190308, + [SMALL_STATE(5274)] = 190343, + [SMALL_STATE(5275)] = 190366, + [SMALL_STATE(5276)] = 190401, + [SMALL_STATE(5277)] = 190424, + [SMALL_STATE(5278)] = 190447, + [SMALL_STATE(5279)] = 190482, + [SMALL_STATE(5280)] = 190505, + [SMALL_STATE(5281)] = 190540, + [SMALL_STATE(5282)] = 190561, + [SMALL_STATE(5283)] = 190592, + [SMALL_STATE(5284)] = 190619, + [SMALL_STATE(5285)] = 190640, + [SMALL_STATE(5286)] = 190661, + [SMALL_STATE(5287)] = 190686, + [SMALL_STATE(5288)] = 190709, + [SMALL_STATE(5289)] = 190738, + [SMALL_STATE(5290)] = 190773, + [SMALL_STATE(5291)] = 190794, + [SMALL_STATE(5292)] = 190815, + [SMALL_STATE(5293)] = 190844, + [SMALL_STATE(5294)] = 190873, + [SMALL_STATE(5295)] = 190908, + [SMALL_STATE(5296)] = 190937, + [SMALL_STATE(5297)] = 190958, + [SMALL_STATE(5298)] = 190979, + [SMALL_STATE(5299)] = 191000, + [SMALL_STATE(5300)] = 191021, + [SMALL_STATE(5301)] = 191042, + [SMALL_STATE(5302)] = 191063, + [SMALL_STATE(5303)] = 191094, + [SMALL_STATE(5304)] = 191127, + [SMALL_STATE(5305)] = 191148, + [SMALL_STATE(5306)] = 191169, + [SMALL_STATE(5307)] = 191204, + [SMALL_STATE(5308)] = 191225, + [SMALL_STATE(5309)] = 191246, + [SMALL_STATE(5310)] = 191267, + [SMALL_STATE(5311)] = 191288, + [SMALL_STATE(5312)] = 191323, + [SMALL_STATE(5313)] = 191358, + [SMALL_STATE(5314)] = 191387, + [SMALL_STATE(5315)] = 191422, + [SMALL_STATE(5316)] = 191447, + [SMALL_STATE(5317)] = 191476, + [SMALL_STATE(5318)] = 191497, + [SMALL_STATE(5319)] = 191518, + [SMALL_STATE(5320)] = 191547, + [SMALL_STATE(5321)] = 191582, + [SMALL_STATE(5322)] = 191612, + [SMALL_STATE(5323)] = 191642, + [SMALL_STATE(5324)] = 191672, + [SMALL_STATE(5325)] = 191694, + [SMALL_STATE(5326)] = 191724, + [SMALL_STATE(5327)] = 191754, + [SMALL_STATE(5328)] = 191774, + [SMALL_STATE(5329)] = 191804, + [SMALL_STATE(5330)] = 191834, + [SMALL_STATE(5331)] = 191864, + [SMALL_STATE(5332)] = 191886, + [SMALL_STATE(5333)] = 191916, + [SMALL_STATE(5334)] = 191946, + [SMALL_STATE(5335)] = 191976, + [SMALL_STATE(5336)] = 192006, + [SMALL_STATE(5337)] = 192036, + [SMALL_STATE(5338)] = 192056, + [SMALL_STATE(5339)] = 192086, + [SMALL_STATE(5340)] = 192116, + [SMALL_STATE(5341)] = 192146, + [SMALL_STATE(5342)] = 192176, + [SMALL_STATE(5343)] = 192206, + [SMALL_STATE(5344)] = 192236, + [SMALL_STATE(5345)] = 192256, + [SMALL_STATE(5346)] = 192280, + [SMALL_STATE(5347)] = 192300, + [SMALL_STATE(5348)] = 192330, + [SMALL_STATE(5349)] = 192356, + [SMALL_STATE(5350)] = 192376, + [SMALL_STATE(5351)] = 192404, + [SMALL_STATE(5352)] = 192432, + [SMALL_STATE(5353)] = 192462, + [SMALL_STATE(5354)] = 192490, + [SMALL_STATE(5355)] = 192514, + [SMALL_STATE(5356)] = 192536, + [SMALL_STATE(5357)] = 192556, + [SMALL_STATE(5358)] = 192578, + [SMALL_STATE(5359)] = 192608, + [SMALL_STATE(5360)] = 192632, + [SMALL_STATE(5361)] = 192654, + [SMALL_STATE(5362)] = 192676, + [SMALL_STATE(5363)] = 192706, + [SMALL_STATE(5364)] = 192736, + [SMALL_STATE(5365)] = 192756, + [SMALL_STATE(5366)] = 192784, + [SMALL_STATE(5367)] = 192814, + [SMALL_STATE(5368)] = 192842, + [SMALL_STATE(5369)] = 192870, + [SMALL_STATE(5370)] = 192898, + [SMALL_STATE(5371)] = 192928, + [SMALL_STATE(5372)] = 192958, + [SMALL_STATE(5373)] = 192988, + [SMALL_STATE(5374)] = 193018, + [SMALL_STATE(5375)] = 193042, + [SMALL_STATE(5376)] = 193072, + [SMALL_STATE(5377)] = 193092, + [SMALL_STATE(5378)] = 193120, + [SMALL_STATE(5379)] = 193144, + [SMALL_STATE(5380)] = 193164, + [SMALL_STATE(5381)] = 193190, + [SMALL_STATE(5382)] = 193212, + [SMALL_STATE(5383)] = 193234, + [SMALL_STATE(5384)] = 193264, + [SMALL_STATE(5385)] = 193294, + [SMALL_STATE(5386)] = 193324, + [SMALL_STATE(5387)] = 193354, + [SMALL_STATE(5388)] = 193374, + [SMALL_STATE(5389)] = 193404, + [SMALL_STATE(5390)] = 193434, + [SMALL_STATE(5391)] = 193464, + [SMALL_STATE(5392)] = 193494, + [SMALL_STATE(5393)] = 193524, + [SMALL_STATE(5394)] = 193554, + [SMALL_STATE(5395)] = 193584, + [SMALL_STATE(5396)] = 193604, + [SMALL_STATE(5397)] = 193634, + [SMALL_STATE(5398)] = 193658, + [SMALL_STATE(5399)] = 193682, + [SMALL_STATE(5400)] = 193702, + [SMALL_STATE(5401)] = 193732, + [SMALL_STATE(5402)] = 193762, + [SMALL_STATE(5403)] = 193792, + [SMALL_STATE(5404)] = 193816, + [SMALL_STATE(5405)] = 193846, + [SMALL_STATE(5406)] = 193876, + [SMALL_STATE(5407)] = 193906, + [SMALL_STATE(5408)] = 193936, + [SMALL_STATE(5409)] = 193966, + [SMALL_STATE(5410)] = 193986, + [SMALL_STATE(5411)] = 194008, + [SMALL_STATE(5412)] = 194038, + [SMALL_STATE(5413)] = 194068, + [SMALL_STATE(5414)] = 194098, + [SMALL_STATE(5415)] = 194128, + [SMALL_STATE(5416)] = 194152, + [SMALL_STATE(5417)] = 194174, + [SMALL_STATE(5418)] = 194204, + [SMALL_STATE(5419)] = 194234, + [SMALL_STATE(5420)] = 194254, + [SMALL_STATE(5421)] = 194284, + [SMALL_STATE(5422)] = 194309, + [SMALL_STATE(5423)] = 194334, + [SMALL_STATE(5424)] = 194359, + [SMALL_STATE(5425)] = 194384, + [SMALL_STATE(5426)] = 194409, + [SMALL_STATE(5427)] = 194434, + [SMALL_STATE(5428)] = 194459, + [SMALL_STATE(5429)] = 194484, + [SMALL_STATE(5430)] = 194509, + [SMALL_STATE(5431)] = 194534, + [SMALL_STATE(5432)] = 194559, + [SMALL_STATE(5433)] = 194584, + [SMALL_STATE(5434)] = 194609, + [SMALL_STATE(5435)] = 194634, + [SMALL_STATE(5436)] = 194659, + [SMALL_STATE(5437)] = 194684, + [SMALL_STATE(5438)] = 194709, + [SMALL_STATE(5439)] = 194734, + [SMALL_STATE(5440)] = 194759, + [SMALL_STATE(5441)] = 194784, + [SMALL_STATE(5442)] = 194809, + [SMALL_STATE(5443)] = 194834, + [SMALL_STATE(5444)] = 194859, + [SMALL_STATE(5445)] = 194884, + [SMALL_STATE(5446)] = 194909, + [SMALL_STATE(5447)] = 194934, + [SMALL_STATE(5448)] = 194959, + [SMALL_STATE(5449)] = 194984, + [SMALL_STATE(5450)] = 195009, + [SMALL_STATE(5451)] = 195034, + [SMALL_STATE(5452)] = 195053, + [SMALL_STATE(5453)] = 195080, + [SMALL_STATE(5454)] = 195107, + [SMALL_STATE(5455)] = 195132, + [SMALL_STATE(5456)] = 195157, + [SMALL_STATE(5457)] = 195182, + [SMALL_STATE(5458)] = 195207, + [SMALL_STATE(5459)] = 195234, + [SMALL_STATE(5460)] = 195259, + [SMALL_STATE(5461)] = 195284, + [SMALL_STATE(5462)] = 195311, + [SMALL_STATE(5463)] = 195338, + [SMALL_STATE(5464)] = 195365, + [SMALL_STATE(5465)] = 195392, + [SMALL_STATE(5466)] = 195419, + [SMALL_STATE(5467)] = 195444, + [SMALL_STATE(5468)] = 195469, + [SMALL_STATE(5469)] = 195496, + [SMALL_STATE(5470)] = 195523, + [SMALL_STATE(5471)] = 195550, + [SMALL_STATE(5472)] = 195571, + [SMALL_STATE(5473)] = 195598, + [SMALL_STATE(5474)] = 195625, + [SMALL_STATE(5475)] = 195652, + [SMALL_STATE(5476)] = 195679, + [SMALL_STATE(5477)] = 195706, + [SMALL_STATE(5478)] = 195733, + [SMALL_STATE(5479)] = 195760, + [SMALL_STATE(5480)] = 195779, + [SMALL_STATE(5481)] = 195806, + [SMALL_STATE(5482)] = 195835, + [SMALL_STATE(5483)] = 195858, + [SMALL_STATE(5484)] = 195877, + [SMALL_STATE(5485)] = 195896, + [SMALL_STATE(5486)] = 195919, + [SMALL_STATE(5487)] = 195940, + [SMALL_STATE(5488)] = 195961, + [SMALL_STATE(5489)] = 195988, + [SMALL_STATE(5490)] = 196013, + [SMALL_STATE(5491)] = 196038, + [SMALL_STATE(5492)] = 196063, + [SMALL_STATE(5493)] = 196088, + [SMALL_STATE(5494)] = 196113, + [SMALL_STATE(5495)] = 196138, + [SMALL_STATE(5496)] = 196163, + [SMALL_STATE(5497)] = 196188, + [SMALL_STATE(5498)] = 196213, + [SMALL_STATE(5499)] = 196238, + [SMALL_STATE(5500)] = 196263, + [SMALL_STATE(5501)] = 196288, + [SMALL_STATE(5502)] = 196313, + [SMALL_STATE(5503)] = 196338, + [SMALL_STATE(5504)] = 196363, + [SMALL_STATE(5505)] = 196388, + [SMALL_STATE(5506)] = 196413, + [SMALL_STATE(5507)] = 196438, + [SMALL_STATE(5508)] = 196463, + [SMALL_STATE(5509)] = 196488, + [SMALL_STATE(5510)] = 196513, + [SMALL_STATE(5511)] = 196538, + [SMALL_STATE(5512)] = 196563, + [SMALL_STATE(5513)] = 196590, + [SMALL_STATE(5514)] = 196617, + [SMALL_STATE(5515)] = 196644, + [SMALL_STATE(5516)] = 196671, + [SMALL_STATE(5517)] = 196696, + [SMALL_STATE(5518)] = 196725, + [SMALL_STATE(5519)] = 196752, + [SMALL_STATE(5520)] = 196771, + [SMALL_STATE(5521)] = 196792, + [SMALL_STATE(5522)] = 196817, + [SMALL_STATE(5523)] = 196844, + [SMALL_STATE(5524)] = 196863, + [SMALL_STATE(5525)] = 196882, + [SMALL_STATE(5526)] = 196901, + [SMALL_STATE(5527)] = 196928, + [SMALL_STATE(5528)] = 196955, + [SMALL_STATE(5529)] = 196982, + [SMALL_STATE(5530)] = 197007, + [SMALL_STATE(5531)] = 197026, + [SMALL_STATE(5532)] = 197053, + [SMALL_STATE(5533)] = 197078, + [SMALL_STATE(5534)] = 197103, + [SMALL_STATE(5535)] = 197128, + [SMALL_STATE(5536)] = 197155, + [SMALL_STATE(5537)] = 197182, + [SMALL_STATE(5538)] = 197201, + [SMALL_STATE(5539)] = 197220, + [SMALL_STATE(5540)] = 197247, + [SMALL_STATE(5541)] = 197266, + [SMALL_STATE(5542)] = 197293, + [SMALL_STATE(5543)] = 197320, + [SMALL_STATE(5544)] = 197347, + [SMALL_STATE(5545)] = 197374, + [SMALL_STATE(5546)] = 197395, + [SMALL_STATE(5547)] = 197422, + [SMALL_STATE(5548)] = 197445, + [SMALL_STATE(5549)] = 197472, + [SMALL_STATE(5550)] = 197499, + [SMALL_STATE(5551)] = 197526, + [SMALL_STATE(5552)] = 197553, + [SMALL_STATE(5553)] = 197580, + [SMALL_STATE(5554)] = 197607, + [SMALL_STATE(5555)] = 197634, + [SMALL_STATE(5556)] = 197661, + [SMALL_STATE(5557)] = 197688, + [SMALL_STATE(5558)] = 197715, + [SMALL_STATE(5559)] = 197742, + [SMALL_STATE(5560)] = 197769, + [SMALL_STATE(5561)] = 197796, + [SMALL_STATE(5562)] = 197823, + [SMALL_STATE(5563)] = 197850, + [SMALL_STATE(5564)] = 197871, + [SMALL_STATE(5565)] = 197890, + [SMALL_STATE(5566)] = 197909, + [SMALL_STATE(5567)] = 197928, + [SMALL_STATE(5568)] = 197955, + [SMALL_STATE(5569)] = 197980, + [SMALL_STATE(5570)] = 198005, + [SMALL_STATE(5571)] = 198026, + [SMALL_STATE(5572)] = 198051, + [SMALL_STATE(5573)] = 198076, + [SMALL_STATE(5574)] = 198101, + [SMALL_STATE(5575)] = 198120, + [SMALL_STATE(5576)] = 198141, + [SMALL_STATE(5577)] = 198162, + [SMALL_STATE(5578)] = 198181, + [SMALL_STATE(5579)] = 198202, + [SMALL_STATE(5580)] = 198223, + [SMALL_STATE(5581)] = 198244, + [SMALL_STATE(5582)] = 198265, + [SMALL_STATE(5583)] = 198286, + [SMALL_STATE(5584)] = 198309, + [SMALL_STATE(5585)] = 198330, + [SMALL_STATE(5586)] = 198355, + [SMALL_STATE(5587)] = 198374, + [SMALL_STATE(5588)] = 198401, + [SMALL_STATE(5589)] = 198428, + [SMALL_STATE(5590)] = 198447, + [SMALL_STATE(5591)] = 198468, + [SMALL_STATE(5592)] = 198487, + [SMALL_STATE(5593)] = 198506, + [SMALL_STATE(5594)] = 198531, + [SMALL_STATE(5595)] = 198550, + [SMALL_STATE(5596)] = 198576, + [SMALL_STATE(5597)] = 198594, + [SMALL_STATE(5598)] = 198620, + [SMALL_STATE(5599)] = 198638, + [SMALL_STATE(5600)] = 198664, + [SMALL_STATE(5601)] = 198682, + [SMALL_STATE(5602)] = 198706, + [SMALL_STATE(5603)] = 198732, + [SMALL_STATE(5604)] = 198758, + [SMALL_STATE(5605)] = 198778, + [SMALL_STATE(5606)] = 198804, + [SMALL_STATE(5607)] = 198830, + [SMALL_STATE(5608)] = 198856, + [SMALL_STATE(5609)] = 198882, + [SMALL_STATE(5610)] = 198908, + [SMALL_STATE(5611)] = 198926, + [SMALL_STATE(5612)] = 198944, + [SMALL_STATE(5613)] = 198962, + [SMALL_STATE(5614)] = 198986, + [SMALL_STATE(5615)] = 199006, + [SMALL_STATE(5616)] = 199032, + [SMALL_STATE(5617)] = 199056, + [SMALL_STATE(5618)] = 199082, + [SMALL_STATE(5619)] = 199106, + [SMALL_STATE(5620)] = 199124, + [SMALL_STATE(5621)] = 199150, + [SMALL_STATE(5622)] = 199176, + [SMALL_STATE(5623)] = 199202, + [SMALL_STATE(5624)] = 199224, + [SMALL_STATE(5625)] = 199250, + [SMALL_STATE(5626)] = 199268, + [SMALL_STATE(5627)] = 199286, + [SMALL_STATE(5628)] = 199306, + [SMALL_STATE(5629)] = 199332, + [SMALL_STATE(5630)] = 199354, + [SMALL_STATE(5631)] = 199372, + [SMALL_STATE(5632)] = 199396, + [SMALL_STATE(5633)] = 199414, + [SMALL_STATE(5634)] = 199442, + [SMALL_STATE(5635)] = 199460, + [SMALL_STATE(5636)] = 199486, + [SMALL_STATE(5637)] = 199508, + [SMALL_STATE(5638)] = 199526, + [SMALL_STATE(5639)] = 199552, + [SMALL_STATE(5640)] = 199578, + [SMALL_STATE(5641)] = 199604, + [SMALL_STATE(5642)] = 199630, + [SMALL_STATE(5643)] = 199648, + [SMALL_STATE(5644)] = 199668, + [SMALL_STATE(5645)] = 199686, + [SMALL_STATE(5646)] = 199702, + [SMALL_STATE(5647)] = 199720, + [SMALL_STATE(5648)] = 199746, + [SMALL_STATE(5649)] = 199764, + [SMALL_STATE(5650)] = 199790, + [SMALL_STATE(5651)] = 199814, + [SMALL_STATE(5652)] = 199836, + [SMALL_STATE(5653)] = 199854, + [SMALL_STATE(5654)] = 199870, + [SMALL_STATE(5655)] = 199890, + [SMALL_STATE(5656)] = 199910, + [SMALL_STATE(5657)] = 199938, + [SMALL_STATE(5658)] = 199956, + [SMALL_STATE(5659)] = 199982, + [SMALL_STATE(5660)] = 200004, + [SMALL_STATE(5661)] = 200026, + [SMALL_STATE(5662)] = 200046, + [SMALL_STATE(5663)] = 200064, + [SMALL_STATE(5664)] = 200086, + [SMALL_STATE(5665)] = 200112, + [SMALL_STATE(5666)] = 200138, + [SMALL_STATE(5667)] = 200160, + [SMALL_STATE(5668)] = 200178, + [SMALL_STATE(5669)] = 200198, + [SMALL_STATE(5670)] = 200224, + [SMALL_STATE(5671)] = 200242, + [SMALL_STATE(5672)] = 200268, + [SMALL_STATE(5673)] = 200294, + [SMALL_STATE(5674)] = 200316, + [SMALL_STATE(5675)] = 200334, + [SMALL_STATE(5676)] = 200356, + [SMALL_STATE(5677)] = 200382, + [SMALL_STATE(5678)] = 200400, + [SMALL_STATE(5679)] = 200420, + [SMALL_STATE(5680)] = 200440, + [SMALL_STATE(5681)] = 200462, + [SMALL_STATE(5682)] = 200480, + [SMALL_STATE(5683)] = 200498, + [SMALL_STATE(5684)] = 200518, + [SMALL_STATE(5685)] = 200544, + [SMALL_STATE(5686)] = 200570, + [SMALL_STATE(5687)] = 200588, + [SMALL_STATE(5688)] = 200606, + [SMALL_STATE(5689)] = 200624, + [SMALL_STATE(5690)] = 200642, + [SMALL_STATE(5691)] = 200660, + [SMALL_STATE(5692)] = 200686, + [SMALL_STATE(5693)] = 200712, + [SMALL_STATE(5694)] = 200730, + [SMALL_STATE(5695)] = 200751, + [SMALL_STATE(5696)] = 200768, + [SMALL_STATE(5697)] = 200785, + [SMALL_STATE(5698)] = 200810, + [SMALL_STATE(5699)] = 200829, + [SMALL_STATE(5700)] = 200848, + [SMALL_STATE(5701)] = 200865, + [SMALL_STATE(5702)] = 200886, + [SMALL_STATE(5703)] = 200903, + [SMALL_STATE(5704)] = 200928, + [SMALL_STATE(5705)] = 200953, + [SMALL_STATE(5706)] = 200978, + [SMALL_STATE(5707)] = 200999, + [SMALL_STATE(5708)] = 201016, + [SMALL_STATE(5709)] = 201037, + [SMALL_STATE(5710)] = 201060, + [SMALL_STATE(5711)] = 201083, + [SMALL_STATE(5712)] = 201108, + [SMALL_STATE(5713)] = 201133, + [SMALL_STATE(5714)] = 201154, + [SMALL_STATE(5715)] = 201175, + [SMALL_STATE(5716)] = 201198, + [SMALL_STATE(5717)] = 201223, + [SMALL_STATE(5718)] = 201246, + [SMALL_STATE(5719)] = 201269, + [SMALL_STATE(5720)] = 201294, + [SMALL_STATE(5721)] = 201319, + [SMALL_STATE(5722)] = 201336, + [SMALL_STATE(5723)] = 201353, + [SMALL_STATE(5724)] = 201370, + [SMALL_STATE(5725)] = 201395, + [SMALL_STATE(5726)] = 201420, + [SMALL_STATE(5727)] = 201441, + [SMALL_STATE(5728)] = 201458, + [SMALL_STATE(5729)] = 201483, + [SMALL_STATE(5730)] = 201508, + [SMALL_STATE(5731)] = 201525, + [SMALL_STATE(5732)] = 201544, + [SMALL_STATE(5733)] = 201569, + [SMALL_STATE(5734)] = 201592, + [SMALL_STATE(5735)] = 201615, + [SMALL_STATE(5736)] = 201632, + [SMALL_STATE(5737)] = 201657, + [SMALL_STATE(5738)] = 201682, + [SMALL_STATE(5739)] = 201707, + [SMALL_STATE(5740)] = 201732, + [SMALL_STATE(5741)] = 201755, + [SMALL_STATE(5742)] = 201780, + [SMALL_STATE(5743)] = 201805, + [SMALL_STATE(5744)] = 201830, + [SMALL_STATE(5745)] = 201853, + [SMALL_STATE(5746)] = 201870, + [SMALL_STATE(5747)] = 201895, + [SMALL_STATE(5748)] = 201920, + [SMALL_STATE(5749)] = 201943, + [SMALL_STATE(5750)] = 201968, + [SMALL_STATE(5751)] = 201985, + [SMALL_STATE(5752)] = 202010, + [SMALL_STATE(5753)] = 202035, + [SMALL_STATE(5754)] = 202060, + [SMALL_STATE(5755)] = 202085, + [SMALL_STATE(5756)] = 202108, + [SMALL_STATE(5757)] = 202133, + [SMALL_STATE(5758)] = 202158, + [SMALL_STATE(5759)] = 202181, + [SMALL_STATE(5760)] = 202202, + [SMALL_STATE(5761)] = 202227, + [SMALL_STATE(5762)] = 202250, + [SMALL_STATE(5763)] = 202275, + [SMALL_STATE(5764)] = 202296, + [SMALL_STATE(5765)] = 202319, + [SMALL_STATE(5766)] = 202344, + [SMALL_STATE(5767)] = 202369, + [SMALL_STATE(5768)] = 202392, + [SMALL_STATE(5769)] = 202417, + [SMALL_STATE(5770)] = 202438, + [SMALL_STATE(5771)] = 202463, + [SMALL_STATE(5772)] = 202488, + [SMALL_STATE(5773)] = 202505, + [SMALL_STATE(5774)] = 202530, + [SMALL_STATE(5775)] = 202553, + [SMALL_STATE(5776)] = 202578, + [SMALL_STATE(5777)] = 202603, + [SMALL_STATE(5778)] = 202626, + [SMALL_STATE(5779)] = 202651, + [SMALL_STATE(5780)] = 202668, + [SMALL_STATE(5781)] = 202685, + [SMALL_STATE(5782)] = 202710, + [SMALL_STATE(5783)] = 202727, + [SMALL_STATE(5784)] = 202748, + [SMALL_STATE(5785)] = 202771, + [SMALL_STATE(5786)] = 202796, + [SMALL_STATE(5787)] = 202821, + [SMALL_STATE(5788)] = 202844, + [SMALL_STATE(5789)] = 202869, + [SMALL_STATE(5790)] = 202886, + [SMALL_STATE(5791)] = 202903, + [SMALL_STATE(5792)] = 202922, + [SMALL_STATE(5793)] = 202947, + [SMALL_STATE(5794)] = 202964, + [SMALL_STATE(5795)] = 202987, + [SMALL_STATE(5796)] = 203012, + [SMALL_STATE(5797)] = 203037, + [SMALL_STATE(5798)] = 203060, + [SMALL_STATE(5799)] = 203085, + [SMALL_STATE(5800)] = 203110, + [SMALL_STATE(5801)] = 203127, + [SMALL_STATE(5802)] = 203150, + [SMALL_STATE(5803)] = 203173, + [SMALL_STATE(5804)] = 203198, + [SMALL_STATE(5805)] = 203217, + [SMALL_STATE(5806)] = 203236, + [SMALL_STATE(5807)] = 203261, + [SMALL_STATE(5808)] = 203282, + [SMALL_STATE(5809)] = 203299, + [SMALL_STATE(5810)] = 203322, + [SMALL_STATE(5811)] = 203345, + [SMALL_STATE(5812)] = 203370, + [SMALL_STATE(5813)] = 203395, + [SMALL_STATE(5814)] = 203420, + [SMALL_STATE(5815)] = 203445, + [SMALL_STATE(5816)] = 203468, + [SMALL_STATE(5817)] = 203491, + [SMALL_STATE(5818)] = 203516, + [SMALL_STATE(5819)] = 203533, + [SMALL_STATE(5820)] = 203550, + [SMALL_STATE(5821)] = 203573, + [SMALL_STATE(5822)] = 203594, + [SMALL_STATE(5823)] = 203617, + [SMALL_STATE(5824)] = 203642, + [SMALL_STATE(5825)] = 203663, + [SMALL_STATE(5826)] = 203688, + [SMALL_STATE(5827)] = 203709, + [SMALL_STATE(5828)] = 203732, + [SMALL_STATE(5829)] = 203755, + [SMALL_STATE(5830)] = 203780, + [SMALL_STATE(5831)] = 203805, + [SMALL_STATE(5832)] = 203830, + [SMALL_STATE(5833)] = 203855, + [SMALL_STATE(5834)] = 203880, + [SMALL_STATE(5835)] = 203905, + [SMALL_STATE(5836)] = 203930, + [SMALL_STATE(5837)] = 203955, + [SMALL_STATE(5838)] = 203972, + [SMALL_STATE(5839)] = 203989, + [SMALL_STATE(5840)] = 204010, + [SMALL_STATE(5841)] = 204031, + [SMALL_STATE(5842)] = 204054, + [SMALL_STATE(5843)] = 204079, + [SMALL_STATE(5844)] = 204100, + [SMALL_STATE(5845)] = 204119, + [SMALL_STATE(5846)] = 204138, + [SMALL_STATE(5847)] = 204157, + [SMALL_STATE(5848)] = 204182, + [SMALL_STATE(5849)] = 204207, + [SMALL_STATE(5850)] = 204232, + [SMALL_STATE(5851)] = 204249, + [SMALL_STATE(5852)] = 204270, + [SMALL_STATE(5853)] = 204287, + [SMALL_STATE(5854)] = 204304, + [SMALL_STATE(5855)] = 204325, + [SMALL_STATE(5856)] = 204350, + [SMALL_STATE(5857)] = 204367, + [SMALL_STATE(5858)] = 204384, + [SMALL_STATE(5859)] = 204403, + [SMALL_STATE(5860)] = 204422, + [SMALL_STATE(5861)] = 204447, + [SMALL_STATE(5862)] = 204462, + [SMALL_STATE(5863)] = 204479, + [SMALL_STATE(5864)] = 204496, + [SMALL_STATE(5865)] = 204513, + [SMALL_STATE(5866)] = 204538, + [SMALL_STATE(5867)] = 204559, + [SMALL_STATE(5868)] = 204578, + [SMALL_STATE(5869)] = 204603, + [SMALL_STATE(5870)] = 204628, + [SMALL_STATE(5871)] = 204647, + [SMALL_STATE(5872)] = 204666, + [SMALL_STATE(5873)] = 204685, + [SMALL_STATE(5874)] = 204702, + [SMALL_STATE(5875)] = 204719, + [SMALL_STATE(5876)] = 204740, + [SMALL_STATE(5877)] = 204765, + [SMALL_STATE(5878)] = 204790, + [SMALL_STATE(5879)] = 204807, + [SMALL_STATE(5880)] = 204832, + [SMALL_STATE(5881)] = 204857, + [SMALL_STATE(5882)] = 204876, + [SMALL_STATE(5883)] = 204893, + [SMALL_STATE(5884)] = 204918, + [SMALL_STATE(5885)] = 204943, + [SMALL_STATE(5886)] = 204968, + [SMALL_STATE(5887)] = 204985, + [SMALL_STATE(5888)] = 205002, + [SMALL_STATE(5889)] = 205019, + [SMALL_STATE(5890)] = 205036, + [SMALL_STATE(5891)] = 205057, + [SMALL_STATE(5892)] = 205074, + [SMALL_STATE(5893)] = 205099, + [SMALL_STATE(5894)] = 205116, + [SMALL_STATE(5895)] = 205139, + [SMALL_STATE(5896)] = 205164, + [SMALL_STATE(5897)] = 205181, + [SMALL_STATE(5898)] = 205206, + [SMALL_STATE(5899)] = 205223, + [SMALL_STATE(5900)] = 205240, + [SMALL_STATE(5901)] = 205257, + [SMALL_STATE(5902)] = 205274, + [SMALL_STATE(5903)] = 205293, + [SMALL_STATE(5904)] = 205310, + [SMALL_STATE(5905)] = 205327, + [SMALL_STATE(5906)] = 205346, + [SMALL_STATE(5907)] = 205363, + [SMALL_STATE(5908)] = 205380, + [SMALL_STATE(5909)] = 205397, + [SMALL_STATE(5910)] = 205414, + [SMALL_STATE(5911)] = 205431, + [SMALL_STATE(5912)] = 205448, + [SMALL_STATE(5913)] = 205465, + [SMALL_STATE(5914)] = 205490, + [SMALL_STATE(5915)] = 205513, + [SMALL_STATE(5916)] = 205538, + [SMALL_STATE(5917)] = 205555, + [SMALL_STATE(5918)] = 205572, + [SMALL_STATE(5919)] = 205589, + [SMALL_STATE(5920)] = 205606, + [SMALL_STATE(5921)] = 205631, + [SMALL_STATE(5922)] = 205650, + [SMALL_STATE(5923)] = 205675, + [SMALL_STATE(5924)] = 205695, + [SMALL_STATE(5925)] = 205717, + [SMALL_STATE(5926)] = 205731, + [SMALL_STATE(5927)] = 205745, + [SMALL_STATE(5928)] = 205767, + [SMALL_STATE(5929)] = 205781, + [SMALL_STATE(5930)] = 205797, + [SMALL_STATE(5931)] = 205819, + [SMALL_STATE(5932)] = 205835, + [SMALL_STATE(5933)] = 205857, + [SMALL_STATE(5934)] = 205871, + [SMALL_STATE(5935)] = 205893, + [SMALL_STATE(5936)] = 205915, + [SMALL_STATE(5937)] = 205929, + [SMALL_STATE(5938)] = 205951, + [SMALL_STATE(5939)] = 205965, + [SMALL_STATE(5940)] = 205983, + [SMALL_STATE(5941)] = 206003, + [SMALL_STATE(5942)] = 206025, + [SMALL_STATE(5943)] = 206047, + [SMALL_STATE(5944)] = 206069, + [SMALL_STATE(5945)] = 206083, + [SMALL_STATE(5946)] = 206097, + [SMALL_STATE(5947)] = 206117, + [SMALL_STATE(5948)] = 206135, + [SMALL_STATE(5949)] = 206157, + [SMALL_STATE(5950)] = 206179, + [SMALL_STATE(5951)] = 206193, + [SMALL_STATE(5952)] = 206207, + [SMALL_STATE(5953)] = 206221, + [SMALL_STATE(5954)] = 206243, + [SMALL_STATE(5955)] = 206257, + [SMALL_STATE(5956)] = 206275, + [SMALL_STATE(5957)] = 206297, + [SMALL_STATE(5958)] = 206319, + [SMALL_STATE(5959)] = 206337, + [SMALL_STATE(5960)] = 206351, + [SMALL_STATE(5961)] = 206367, + [SMALL_STATE(5962)] = 206381, + [SMALL_STATE(5963)] = 206395, + [SMALL_STATE(5964)] = 206417, + [SMALL_STATE(5965)] = 206439, + [SMALL_STATE(5966)] = 206461, + [SMALL_STATE(5967)] = 206481, + [SMALL_STATE(5968)] = 206503, + [SMALL_STATE(5969)] = 206521, + [SMALL_STATE(5970)] = 206539, + [SMALL_STATE(5971)] = 206561, + [SMALL_STATE(5972)] = 206581, + [SMALL_STATE(5973)] = 206603, + [SMALL_STATE(5974)] = 206625, + [SMALL_STATE(5975)] = 206639, + [SMALL_STATE(5976)] = 206657, + [SMALL_STATE(5977)] = 206675, + [SMALL_STATE(5978)] = 206695, + [SMALL_STATE(5979)] = 206717, + [SMALL_STATE(5980)] = 206737, + [SMALL_STATE(5981)] = 206751, + [SMALL_STATE(5982)] = 206769, + [SMALL_STATE(5983)] = 206791, + [SMALL_STATE(5984)] = 206811, + [SMALL_STATE(5985)] = 206829, + [SMALL_STATE(5986)] = 206843, + [SMALL_STATE(5987)] = 206865, + [SMALL_STATE(5988)] = 206887, + [SMALL_STATE(5989)] = 206907, + [SMALL_STATE(5990)] = 206921, + [SMALL_STATE(5991)] = 206935, + [SMALL_STATE(5992)] = 206957, + [SMALL_STATE(5993)] = 206971, + [SMALL_STATE(5994)] = 206993, + [SMALL_STATE(5995)] = 207015, + [SMALL_STATE(5996)] = 207037, + [SMALL_STATE(5997)] = 207051, + [SMALL_STATE(5998)] = 207073, + [SMALL_STATE(5999)] = 207091, + [SMALL_STATE(6000)] = 207109, + [SMALL_STATE(6001)] = 207131, + [SMALL_STATE(6002)] = 207149, + [SMALL_STATE(6003)] = 207163, + [SMALL_STATE(6004)] = 207183, + [SMALL_STATE(6005)] = 207197, + [SMALL_STATE(6006)] = 207219, + [SMALL_STATE(6007)] = 207241, + [SMALL_STATE(6008)] = 207263, + [SMALL_STATE(6009)] = 207277, + [SMALL_STATE(6010)] = 207291, + [SMALL_STATE(6011)] = 207313, + [SMALL_STATE(6012)] = 207329, + [SMALL_STATE(6013)] = 207343, + [SMALL_STATE(6014)] = 207357, + [SMALL_STATE(6015)] = 207375, + [SMALL_STATE(6016)] = 207393, + [SMALL_STATE(6017)] = 207407, + [SMALL_STATE(6018)] = 207429, + [SMALL_STATE(6019)] = 207451, + [SMALL_STATE(6020)] = 207473, + [SMALL_STATE(6021)] = 207493, + [SMALL_STATE(6022)] = 207507, + [SMALL_STATE(6023)] = 207521, + [SMALL_STATE(6024)] = 207535, + [SMALL_STATE(6025)] = 207557, + [SMALL_STATE(6026)] = 207579, + [SMALL_STATE(6027)] = 207597, + [SMALL_STATE(6028)] = 207611, + [SMALL_STATE(6029)] = 207625, + [SMALL_STATE(6030)] = 207647, + [SMALL_STATE(6031)] = 207661, + [SMALL_STATE(6032)] = 207683, + [SMALL_STATE(6033)] = 207697, + [SMALL_STATE(6034)] = 207717, + [SMALL_STATE(6035)] = 207731, + [SMALL_STATE(6036)] = 207751, + [SMALL_STATE(6037)] = 207773, + [SMALL_STATE(6038)] = 207787, + [SMALL_STATE(6039)] = 207805, + [SMALL_STATE(6040)] = 207827, + [SMALL_STATE(6041)] = 207849, + [SMALL_STATE(6042)] = 207871, + [SMALL_STATE(6043)] = 207893, + [SMALL_STATE(6044)] = 207915, + [SMALL_STATE(6045)] = 207937, + [SMALL_STATE(6046)] = 207951, + [SMALL_STATE(6047)] = 207973, + [SMALL_STATE(6048)] = 207991, + [SMALL_STATE(6049)] = 208005, + [SMALL_STATE(6050)] = 208019, + [SMALL_STATE(6051)] = 208039, + [SMALL_STATE(6052)] = 208061, + [SMALL_STATE(6053)] = 208083, + [SMALL_STATE(6054)] = 208097, + [SMALL_STATE(6055)] = 208111, + [SMALL_STATE(6056)] = 208133, + [SMALL_STATE(6057)] = 208155, + [SMALL_STATE(6058)] = 208177, + [SMALL_STATE(6059)] = 208199, + [SMALL_STATE(6060)] = 208221, + [SMALL_STATE(6061)] = 208243, + [SMALL_STATE(6062)] = 208257, + [SMALL_STATE(6063)] = 208279, + [SMALL_STATE(6064)] = 208293, + [SMALL_STATE(6065)] = 208307, + [SMALL_STATE(6066)] = 208329, + [SMALL_STATE(6067)] = 208343, + [SMALL_STATE(6068)] = 208365, + [SMALL_STATE(6069)] = 208387, + [SMALL_STATE(6070)] = 208401, + [SMALL_STATE(6071)] = 208423, + [SMALL_STATE(6072)] = 208445, + [SMALL_STATE(6073)] = 208467, + [SMALL_STATE(6074)] = 208485, + [SMALL_STATE(6075)] = 208501, + [SMALL_STATE(6076)] = 208515, + [SMALL_STATE(6077)] = 208529, + [SMALL_STATE(6078)] = 208551, + [SMALL_STATE(6079)] = 208565, + [SMALL_STATE(6080)] = 208587, + [SMALL_STATE(6081)] = 208609, + [SMALL_STATE(6082)] = 208631, + [SMALL_STATE(6083)] = 208653, + [SMALL_STATE(6084)] = 208675, + [SMALL_STATE(6085)] = 208697, + [SMALL_STATE(6086)] = 208717, + [SMALL_STATE(6087)] = 208739, + [SMALL_STATE(6088)] = 208761, + [SMALL_STATE(6089)] = 208779, + [SMALL_STATE(6090)] = 208801, + [SMALL_STATE(6091)] = 208823, + [SMALL_STATE(6092)] = 208845, + [SMALL_STATE(6093)] = 208867, + [SMALL_STATE(6094)] = 208889, + [SMALL_STATE(6095)] = 208911, + [SMALL_STATE(6096)] = 208933, + [SMALL_STATE(6097)] = 208955, + [SMALL_STATE(6098)] = 208977, + [SMALL_STATE(6099)] = 208999, + [SMALL_STATE(6100)] = 209021, + [SMALL_STATE(6101)] = 209043, + [SMALL_STATE(6102)] = 209061, + [SMALL_STATE(6103)] = 209083, + [SMALL_STATE(6104)] = 209105, + [SMALL_STATE(6105)] = 209121, + [SMALL_STATE(6106)] = 209135, + [SMALL_STATE(6107)] = 209151, + [SMALL_STATE(6108)] = 209173, + [SMALL_STATE(6109)] = 209195, + [SMALL_STATE(6110)] = 209217, + [SMALL_STATE(6111)] = 209239, + [SMALL_STATE(6112)] = 209261, + [SMALL_STATE(6113)] = 209283, + [SMALL_STATE(6114)] = 209305, + [SMALL_STATE(6115)] = 209327, + [SMALL_STATE(6116)] = 209349, + [SMALL_STATE(6117)] = 209363, + [SMALL_STATE(6118)] = 209377, + [SMALL_STATE(6119)] = 209399, + [SMALL_STATE(6120)] = 209421, + [SMALL_STATE(6121)] = 209443, + [SMALL_STATE(6122)] = 209465, + [SMALL_STATE(6123)] = 209483, + [SMALL_STATE(6124)] = 209505, + [SMALL_STATE(6125)] = 209527, + [SMALL_STATE(6126)] = 209549, + [SMALL_STATE(6127)] = 209571, + [SMALL_STATE(6128)] = 209593, + [SMALL_STATE(6129)] = 209615, + [SMALL_STATE(6130)] = 209637, + [SMALL_STATE(6131)] = 209659, + [SMALL_STATE(6132)] = 209681, + [SMALL_STATE(6133)] = 209703, + [SMALL_STATE(6134)] = 209725, + [SMALL_STATE(6135)] = 209747, + [SMALL_STATE(6136)] = 209769, + [SMALL_STATE(6137)] = 209791, + [SMALL_STATE(6138)] = 209805, + [SMALL_STATE(6139)] = 209827, + [SMALL_STATE(6140)] = 209849, + [SMALL_STATE(6141)] = 209871, + [SMALL_STATE(6142)] = 209893, + [SMALL_STATE(6143)] = 209915, + [SMALL_STATE(6144)] = 209937, + [SMALL_STATE(6145)] = 209959, + [SMALL_STATE(6146)] = 209977, + [SMALL_STATE(6147)] = 209991, + [SMALL_STATE(6148)] = 210013, + [SMALL_STATE(6149)] = 210033, + [SMALL_STATE(6150)] = 210051, + [SMALL_STATE(6151)] = 210073, + [SMALL_STATE(6152)] = 210095, + [SMALL_STATE(6153)] = 210117, + [SMALL_STATE(6154)] = 210131, + [SMALL_STATE(6155)] = 210153, + [SMALL_STATE(6156)] = 210175, + [SMALL_STATE(6157)] = 210197, + [SMALL_STATE(6158)] = 210219, + [SMALL_STATE(6159)] = 210241, + [SMALL_STATE(6160)] = 210255, + [SMALL_STATE(6161)] = 210274, + [SMALL_STATE(6162)] = 210287, + [SMALL_STATE(6163)] = 210304, + [SMALL_STATE(6164)] = 210323, + [SMALL_STATE(6165)] = 210336, + [SMALL_STATE(6166)] = 210349, + [SMALL_STATE(6167)] = 210362, + [SMALL_STATE(6168)] = 210375, + [SMALL_STATE(6169)] = 210394, + [SMALL_STATE(6170)] = 210411, + [SMALL_STATE(6171)] = 210426, + [SMALL_STATE(6172)] = 210439, + [SMALL_STATE(6173)] = 210452, + [SMALL_STATE(6174)] = 210465, + [SMALL_STATE(6175)] = 210484, + [SMALL_STATE(6176)] = 210499, + [SMALL_STATE(6177)] = 210516, + [SMALL_STATE(6178)] = 210535, + [SMALL_STATE(6179)] = 210554, + [SMALL_STATE(6180)] = 210571, + [SMALL_STATE(6181)] = 210590, + [SMALL_STATE(6182)] = 210603, + [SMALL_STATE(6183)] = 210616, + [SMALL_STATE(6184)] = 210629, + [SMALL_STATE(6185)] = 210642, + [SMALL_STATE(6186)] = 210655, + [SMALL_STATE(6187)] = 210674, + [SMALL_STATE(6188)] = 210687, + [SMALL_STATE(6189)] = 210700, + [SMALL_STATE(6190)] = 210719, + [SMALL_STATE(6191)] = 210738, + [SMALL_STATE(6192)] = 210757, + [SMALL_STATE(6193)] = 210770, + [SMALL_STATE(6194)] = 210783, + [SMALL_STATE(6195)] = 210802, + [SMALL_STATE(6196)] = 210817, + [SMALL_STATE(6197)] = 210836, + [SMALL_STATE(6198)] = 210855, + [SMALL_STATE(6199)] = 210874, + [SMALL_STATE(6200)] = 210891, + [SMALL_STATE(6201)] = 210908, + [SMALL_STATE(6202)] = 210923, + [SMALL_STATE(6203)] = 210942, + [SMALL_STATE(6204)] = 210961, + [SMALL_STATE(6205)] = 210980, + [SMALL_STATE(6206)] = 210999, + [SMALL_STATE(6207)] = 211018, + [SMALL_STATE(6208)] = 211037, + [SMALL_STATE(6209)] = 211050, + [SMALL_STATE(6210)] = 211063, + [SMALL_STATE(6211)] = 211076, + [SMALL_STATE(6212)] = 211089, + [SMALL_STATE(6213)] = 211102, + [SMALL_STATE(6214)] = 211121, + [SMALL_STATE(6215)] = 211136, + [SMALL_STATE(6216)] = 211151, + [SMALL_STATE(6217)] = 211170, + [SMALL_STATE(6218)] = 211187, + [SMALL_STATE(6219)] = 211206, + [SMALL_STATE(6220)] = 211225, + [SMALL_STATE(6221)] = 211244, + [SMALL_STATE(6222)] = 211263, + [SMALL_STATE(6223)] = 211282, + [SMALL_STATE(6224)] = 211301, + [SMALL_STATE(6225)] = 211320, + [SMALL_STATE(6226)] = 211339, + [SMALL_STATE(6227)] = 211358, + [SMALL_STATE(6228)] = 211377, + [SMALL_STATE(6229)] = 211396, + [SMALL_STATE(6230)] = 211415, + [SMALL_STATE(6231)] = 211432, + [SMALL_STATE(6232)] = 211449, + [SMALL_STATE(6233)] = 211468, + [SMALL_STATE(6234)] = 211487, + [SMALL_STATE(6235)] = 211506, + [SMALL_STATE(6236)] = 211525, + [SMALL_STATE(6237)] = 211544, + [SMALL_STATE(6238)] = 211563, + [SMALL_STATE(6239)] = 211582, + [SMALL_STATE(6240)] = 211595, + [SMALL_STATE(6241)] = 211608, + [SMALL_STATE(6242)] = 211623, + [SMALL_STATE(6243)] = 211638, + [SMALL_STATE(6244)] = 211657, + [SMALL_STATE(6245)] = 211672, + [SMALL_STATE(6246)] = 211685, + [SMALL_STATE(6247)] = 211700, + [SMALL_STATE(6248)] = 211717, + [SMALL_STATE(6249)] = 211734, + [SMALL_STATE(6250)] = 211747, + [SMALL_STATE(6251)] = 211766, + [SMALL_STATE(6252)] = 211785, + [SMALL_STATE(6253)] = 211798, + [SMALL_STATE(6254)] = 211811, + [SMALL_STATE(6255)] = 211824, + [SMALL_STATE(6256)] = 211837, + [SMALL_STATE(6257)] = 211850, + [SMALL_STATE(6258)] = 211863, + [SMALL_STATE(6259)] = 211882, + [SMALL_STATE(6260)] = 211901, + [SMALL_STATE(6261)] = 211920, + [SMALL_STATE(6262)] = 211933, + [SMALL_STATE(6263)] = 211946, + [SMALL_STATE(6264)] = 211959, + [SMALL_STATE(6265)] = 211976, + [SMALL_STATE(6266)] = 211993, + [SMALL_STATE(6267)] = 212006, + [SMALL_STATE(6268)] = 212019, + [SMALL_STATE(6269)] = 212032, + [SMALL_STATE(6270)] = 212045, + [SMALL_STATE(6271)] = 212062, + [SMALL_STATE(6272)] = 212075, + [SMALL_STATE(6273)] = 212092, + [SMALL_STATE(6274)] = 212111, + [SMALL_STATE(6275)] = 212130, + [SMALL_STATE(6276)] = 212149, + [SMALL_STATE(6277)] = 212166, + [SMALL_STATE(6278)] = 212181, + [SMALL_STATE(6279)] = 212200, + [SMALL_STATE(6280)] = 212219, + [SMALL_STATE(6281)] = 212238, + [SMALL_STATE(6282)] = 212257, + [SMALL_STATE(6283)] = 212276, + [SMALL_STATE(6284)] = 212295, + [SMALL_STATE(6285)] = 212314, + [SMALL_STATE(6286)] = 212333, + [SMALL_STATE(6287)] = 212352, + [SMALL_STATE(6288)] = 212367, + [SMALL_STATE(6289)] = 212386, + [SMALL_STATE(6290)] = 212399, + [SMALL_STATE(6291)] = 212414, + [SMALL_STATE(6292)] = 212431, + [SMALL_STATE(6293)] = 212446, + [SMALL_STATE(6294)] = 212459, + [SMALL_STATE(6295)] = 212472, + [SMALL_STATE(6296)] = 212485, + [SMALL_STATE(6297)] = 212498, + [SMALL_STATE(6298)] = 212515, + [SMALL_STATE(6299)] = 212532, + [SMALL_STATE(6300)] = 212551, + [SMALL_STATE(6301)] = 212570, + [SMALL_STATE(6302)] = 212589, + [SMALL_STATE(6303)] = 212608, + [SMALL_STATE(6304)] = 212627, + [SMALL_STATE(6305)] = 212646, + [SMALL_STATE(6306)] = 212665, + [SMALL_STATE(6307)] = 212684, + [SMALL_STATE(6308)] = 212703, + [SMALL_STATE(6309)] = 212722, + [SMALL_STATE(6310)] = 212735, + [SMALL_STATE(6311)] = 212752, + [SMALL_STATE(6312)] = 212771, + [SMALL_STATE(6313)] = 212790, + [SMALL_STATE(6314)] = 212807, + [SMALL_STATE(6315)] = 212826, + [SMALL_STATE(6316)] = 212845, + [SMALL_STATE(6317)] = 212858, + [SMALL_STATE(6318)] = 212877, + [SMALL_STATE(6319)] = 212896, + [SMALL_STATE(6320)] = 212915, + [SMALL_STATE(6321)] = 212934, + [SMALL_STATE(6322)] = 212953, + [SMALL_STATE(6323)] = 212972, + [SMALL_STATE(6324)] = 212991, + [SMALL_STATE(6325)] = 213010, + [SMALL_STATE(6326)] = 213029, + [SMALL_STATE(6327)] = 213048, + [SMALL_STATE(6328)] = 213061, + [SMALL_STATE(6329)] = 213074, + [SMALL_STATE(6330)] = 213091, + [SMALL_STATE(6331)] = 213104, + [SMALL_STATE(6332)] = 213121, + [SMALL_STATE(6333)] = 213140, + [SMALL_STATE(6334)] = 213157, + [SMALL_STATE(6335)] = 213176, + [SMALL_STATE(6336)] = 213195, + [SMALL_STATE(6337)] = 213214, + [SMALL_STATE(6338)] = 213233, + [SMALL_STATE(6339)] = 213252, + [SMALL_STATE(6340)] = 213271, + [SMALL_STATE(6341)] = 213290, + [SMALL_STATE(6342)] = 213309, + [SMALL_STATE(6343)] = 213328, + [SMALL_STATE(6344)] = 213341, + [SMALL_STATE(6345)] = 213358, + [SMALL_STATE(6346)] = 213373, + [SMALL_STATE(6347)] = 213390, + [SMALL_STATE(6348)] = 213409, + [SMALL_STATE(6349)] = 213428, + [SMALL_STATE(6350)] = 213447, + [SMALL_STATE(6351)] = 213466, + [SMALL_STATE(6352)] = 213485, + [SMALL_STATE(6353)] = 213504, + [SMALL_STATE(6354)] = 213523, + [SMALL_STATE(6355)] = 213542, + [SMALL_STATE(6356)] = 213561, + [SMALL_STATE(6357)] = 213580, + [SMALL_STATE(6358)] = 213599, + [SMALL_STATE(6359)] = 213616, + [SMALL_STATE(6360)] = 213629, + [SMALL_STATE(6361)] = 213646, + [SMALL_STATE(6362)] = 213665, + [SMALL_STATE(6363)] = 213684, + [SMALL_STATE(6364)] = 213701, + [SMALL_STATE(6365)] = 213716, + [SMALL_STATE(6366)] = 213731, + [SMALL_STATE(6367)] = 213746, + [SMALL_STATE(6368)] = 213765, + [SMALL_STATE(6369)] = 213784, + [SMALL_STATE(6370)] = 213803, + [SMALL_STATE(6371)] = 213822, + [SMALL_STATE(6372)] = 213841, + [SMALL_STATE(6373)] = 213860, + [SMALL_STATE(6374)] = 213879, + [SMALL_STATE(6375)] = 213898, + [SMALL_STATE(6376)] = 213911, + [SMALL_STATE(6377)] = 213928, + [SMALL_STATE(6378)] = 213945, + [SMALL_STATE(6379)] = 213960, + [SMALL_STATE(6380)] = 213975, + [SMALL_STATE(6381)] = 213990, + [SMALL_STATE(6382)] = 214009, + [SMALL_STATE(6383)] = 214028, + [SMALL_STATE(6384)] = 214047, + [SMALL_STATE(6385)] = 214066, + [SMALL_STATE(6386)] = 214085, + [SMALL_STATE(6387)] = 214104, + [SMALL_STATE(6388)] = 214123, + [SMALL_STATE(6389)] = 214142, + [SMALL_STATE(6390)] = 214155, + [SMALL_STATE(6391)] = 214172, + [SMALL_STATE(6392)] = 214189, + [SMALL_STATE(6393)] = 214208, + [SMALL_STATE(6394)] = 214227, + [SMALL_STATE(6395)] = 214242, + [SMALL_STATE(6396)] = 214261, + [SMALL_STATE(6397)] = 214280, + [SMALL_STATE(6398)] = 214299, + [SMALL_STATE(6399)] = 214318, + [SMALL_STATE(6400)] = 214337, + [SMALL_STATE(6401)] = 214356, + [SMALL_STATE(6402)] = 214375, + [SMALL_STATE(6403)] = 214394, + [SMALL_STATE(6404)] = 214413, + [SMALL_STATE(6405)] = 214426, + [SMALL_STATE(6406)] = 214443, + [SMALL_STATE(6407)] = 214462, + [SMALL_STATE(6408)] = 214481, + [SMALL_STATE(6409)] = 214498, + [SMALL_STATE(6410)] = 214517, + [SMALL_STATE(6411)] = 214536, + [SMALL_STATE(6412)] = 214555, + [SMALL_STATE(6413)] = 214574, + [SMALL_STATE(6414)] = 214593, + [SMALL_STATE(6415)] = 214612, + [SMALL_STATE(6416)] = 214631, + [SMALL_STATE(6417)] = 214650, + [SMALL_STATE(6418)] = 214665, + [SMALL_STATE(6419)] = 214678, + [SMALL_STATE(6420)] = 214691, + [SMALL_STATE(6421)] = 214708, + [SMALL_STATE(6422)] = 214725, + [SMALL_STATE(6423)] = 214744, + [SMALL_STATE(6424)] = 214763, + [SMALL_STATE(6425)] = 214782, + [SMALL_STATE(6426)] = 214801, + [SMALL_STATE(6427)] = 214820, + [SMALL_STATE(6428)] = 214839, + [SMALL_STATE(6429)] = 214858, + [SMALL_STATE(6430)] = 214877, + [SMALL_STATE(6431)] = 214896, + [SMALL_STATE(6432)] = 214909, + [SMALL_STATE(6433)] = 214926, + [SMALL_STATE(6434)] = 214943, + [SMALL_STATE(6435)] = 214956, + [SMALL_STATE(6436)] = 214969, + [SMALL_STATE(6437)] = 214988, + [SMALL_STATE(6438)] = 215007, + [SMALL_STATE(6439)] = 215026, + [SMALL_STATE(6440)] = 215045, + [SMALL_STATE(6441)] = 215064, + [SMALL_STATE(6442)] = 215083, + [SMALL_STATE(6443)] = 215102, + [SMALL_STATE(6444)] = 215121, + [SMALL_STATE(6445)] = 215134, + [SMALL_STATE(6446)] = 215151, + [SMALL_STATE(6447)] = 215166, + [SMALL_STATE(6448)] = 215183, + [SMALL_STATE(6449)] = 215202, + [SMALL_STATE(6450)] = 215221, + [SMALL_STATE(6451)] = 215240, + [SMALL_STATE(6452)] = 215259, + [SMALL_STATE(6453)] = 215278, + [SMALL_STATE(6454)] = 215297, + [SMALL_STATE(6455)] = 215316, + [SMALL_STATE(6456)] = 215335, + [SMALL_STATE(6457)] = 215348, + [SMALL_STATE(6458)] = 215365, + [SMALL_STATE(6459)] = 215384, + [SMALL_STATE(6460)] = 215401, + [SMALL_STATE(6461)] = 215420, + [SMALL_STATE(6462)] = 215439, + [SMALL_STATE(6463)] = 215458, + [SMALL_STATE(6464)] = 215477, + [SMALL_STATE(6465)] = 215492, + [SMALL_STATE(6466)] = 215511, + [SMALL_STATE(6467)] = 215530, + [SMALL_STATE(6468)] = 215549, + [SMALL_STATE(6469)] = 215568, + [SMALL_STATE(6470)] = 215585, + [SMALL_STATE(6471)] = 215598, + [SMALL_STATE(6472)] = 215615, + [SMALL_STATE(6473)] = 215632, + [SMALL_STATE(6474)] = 215651, + [SMALL_STATE(6475)] = 215670, + [SMALL_STATE(6476)] = 215689, + [SMALL_STATE(6477)] = 215708, + [SMALL_STATE(6478)] = 215727, + [SMALL_STATE(6479)] = 215746, + [SMALL_STATE(6480)] = 215765, + [SMALL_STATE(6481)] = 215784, + [SMALL_STATE(6482)] = 215797, + [SMALL_STATE(6483)] = 215814, + [SMALL_STATE(6484)] = 215827, + [SMALL_STATE(6485)] = 215844, + [SMALL_STATE(6486)] = 215857, + [SMALL_STATE(6487)] = 215874, + [SMALL_STATE(6488)] = 215891, + [SMALL_STATE(6489)] = 215906, + [SMALL_STATE(6490)] = 215919, + [SMALL_STATE(6491)] = 215936, + [SMALL_STATE(6492)] = 215955, + [SMALL_STATE(6493)] = 215972, + [SMALL_STATE(6494)] = 215991, + [SMALL_STATE(6495)] = 216004, + [SMALL_STATE(6496)] = 216021, + [SMALL_STATE(6497)] = 216040, + [SMALL_STATE(6498)] = 216057, + [SMALL_STATE(6499)] = 216076, + [SMALL_STATE(6500)] = 216089, + [SMALL_STATE(6501)] = 216106, + [SMALL_STATE(6502)] = 216123, + [SMALL_STATE(6503)] = 216142, + [SMALL_STATE(6504)] = 216155, + [SMALL_STATE(6505)] = 216172, + [SMALL_STATE(6506)] = 216189, + [SMALL_STATE(6507)] = 216202, + [SMALL_STATE(6508)] = 216219, + [SMALL_STATE(6509)] = 216236, + [SMALL_STATE(6510)] = 216249, + [SMALL_STATE(6511)] = 216266, + [SMALL_STATE(6512)] = 216283, + [SMALL_STATE(6513)] = 216302, + [SMALL_STATE(6514)] = 216315, + [SMALL_STATE(6515)] = 216332, + [SMALL_STATE(6516)] = 216349, + [SMALL_STATE(6517)] = 216368, + [SMALL_STATE(6518)] = 216381, + [SMALL_STATE(6519)] = 216398, + [SMALL_STATE(6520)] = 216415, + [SMALL_STATE(6521)] = 216428, + [SMALL_STATE(6522)] = 216445, + [SMALL_STATE(6523)] = 216462, + [SMALL_STATE(6524)] = 216481, + [SMALL_STATE(6525)] = 216494, + [SMALL_STATE(6526)] = 216511, + [SMALL_STATE(6527)] = 216528, + [SMALL_STATE(6528)] = 216541, + [SMALL_STATE(6529)] = 216558, + [SMALL_STATE(6530)] = 216575, + [SMALL_STATE(6531)] = 216588, + [SMALL_STATE(6532)] = 216605, + [SMALL_STATE(6533)] = 216622, + [SMALL_STATE(6534)] = 216635, + [SMALL_STATE(6535)] = 216652, + [SMALL_STATE(6536)] = 216669, + [SMALL_STATE(6537)] = 216686, + [SMALL_STATE(6538)] = 216703, + [SMALL_STATE(6539)] = 216720, + [SMALL_STATE(6540)] = 216737, + [SMALL_STATE(6541)] = 216754, + [SMALL_STATE(6542)] = 216771, + [SMALL_STATE(6543)] = 216788, + [SMALL_STATE(6544)] = 216805, + [SMALL_STATE(6545)] = 216822, + [SMALL_STATE(6546)] = 216839, + [SMALL_STATE(6547)] = 216856, + [SMALL_STATE(6548)] = 216873, + [SMALL_STATE(6549)] = 216890, + [SMALL_STATE(6550)] = 216907, + [SMALL_STATE(6551)] = 216926, + [SMALL_STATE(6552)] = 216939, + [SMALL_STATE(6553)] = 216952, + [SMALL_STATE(6554)] = 216971, + [SMALL_STATE(6555)] = 216990, + [SMALL_STATE(6556)] = 217003, + [SMALL_STATE(6557)] = 217016, + [SMALL_STATE(6558)] = 217029, + [SMALL_STATE(6559)] = 217046, + [SMALL_STATE(6560)] = 217059, + [SMALL_STATE(6561)] = 217072, + [SMALL_STATE(6562)] = 217085, + [SMALL_STATE(6563)] = 217098, + [SMALL_STATE(6564)] = 217111, + [SMALL_STATE(6565)] = 217124, + [SMALL_STATE(6566)] = 217137, + [SMALL_STATE(6567)] = 217156, + [SMALL_STATE(6568)] = 217171, + [SMALL_STATE(6569)] = 217190, + [SMALL_STATE(6570)] = 217205, + [SMALL_STATE(6571)] = 217220, + [SMALL_STATE(6572)] = 217239, + [SMALL_STATE(6573)] = 217258, + [SMALL_STATE(6574)] = 217277, + [SMALL_STATE(6575)] = 217294, + [SMALL_STATE(6576)] = 217309, + [SMALL_STATE(6577)] = 217328, + [SMALL_STATE(6578)] = 217347, + [SMALL_STATE(6579)] = 217362, + [SMALL_STATE(6580)] = 217377, + [SMALL_STATE(6581)] = 217396, + [SMALL_STATE(6582)] = 217411, + [SMALL_STATE(6583)] = 217424, + [SMALL_STATE(6584)] = 217443, + [SMALL_STATE(6585)] = 217456, + [SMALL_STATE(6586)] = 217469, + [SMALL_STATE(6587)] = 217482, + [SMALL_STATE(6588)] = 217497, + [SMALL_STATE(6589)] = 217516, + [SMALL_STATE(6590)] = 217529, + [SMALL_STATE(6591)] = 217542, + [SMALL_STATE(6592)] = 217559, + [SMALL_STATE(6593)] = 217574, + [SMALL_STATE(6594)] = 217593, + [SMALL_STATE(6595)] = 217612, + [SMALL_STATE(6596)] = 217631, + [SMALL_STATE(6597)] = 217650, + [SMALL_STATE(6598)] = 217663, + [SMALL_STATE(6599)] = 217682, + [SMALL_STATE(6600)] = 217701, + [SMALL_STATE(6601)] = 217716, + [SMALL_STATE(6602)] = 217733, + [SMALL_STATE(6603)] = 217748, + [SMALL_STATE(6604)] = 217767, + [SMALL_STATE(6605)] = 217782, + [SMALL_STATE(6606)] = 217797, + [SMALL_STATE(6607)] = 217812, + [SMALL_STATE(6608)] = 217827, + [SMALL_STATE(6609)] = 217842, + [SMALL_STATE(6610)] = 217857, + [SMALL_STATE(6611)] = 217870, + [SMALL_STATE(6612)] = 217885, + [SMALL_STATE(6613)] = 217900, + [SMALL_STATE(6614)] = 217917, + [SMALL_STATE(6615)] = 217932, + [SMALL_STATE(6616)] = 217947, + [SMALL_STATE(6617)] = 217962, + [SMALL_STATE(6618)] = 217977, + [SMALL_STATE(6619)] = 217992, + [SMALL_STATE(6620)] = 218007, + [SMALL_STATE(6621)] = 218022, + [SMALL_STATE(6622)] = 218041, + [SMALL_STATE(6623)] = 218060, + [SMALL_STATE(6624)] = 218075, + [SMALL_STATE(6625)] = 218094, + [SMALL_STATE(6626)] = 218113, + [SMALL_STATE(6627)] = 218132, + [SMALL_STATE(6628)] = 218151, + [SMALL_STATE(6629)] = 218170, + [SMALL_STATE(6630)] = 218185, + [SMALL_STATE(6631)] = 218198, + [SMALL_STATE(6632)] = 218213, + [SMALL_STATE(6633)] = 218228, + [SMALL_STATE(6634)] = 218243, + [SMALL_STATE(6635)] = 218258, + [SMALL_STATE(6636)] = 218273, + [SMALL_STATE(6637)] = 218292, + [SMALL_STATE(6638)] = 218307, + [SMALL_STATE(6639)] = 218322, + [SMALL_STATE(6640)] = 218337, + [SMALL_STATE(6641)] = 218352, + [SMALL_STATE(6642)] = 218369, + [SMALL_STATE(6643)] = 218384, + [SMALL_STATE(6644)] = 218403, + [SMALL_STATE(6645)] = 218420, + [SMALL_STATE(6646)] = 218435, + [SMALL_STATE(6647)] = 218454, + [SMALL_STATE(6648)] = 218467, + [SMALL_STATE(6649)] = 218480, + [SMALL_STATE(6650)] = 218495, + [SMALL_STATE(6651)] = 218510, + [SMALL_STATE(6652)] = 218527, + [SMALL_STATE(6653)] = 218544, + [SMALL_STATE(6654)] = 218561, + [SMALL_STATE(6655)] = 218576, + [SMALL_STATE(6656)] = 218589, + [SMALL_STATE(6657)] = 218602, + [SMALL_STATE(6658)] = 218615, + [SMALL_STATE(6659)] = 218630, + [SMALL_STATE(6660)] = 218645, + [SMALL_STATE(6661)] = 218662, + [SMALL_STATE(6662)] = 218681, + [SMALL_STATE(6663)] = 218700, + [SMALL_STATE(6664)] = 218715, + [SMALL_STATE(6665)] = 218728, + [SMALL_STATE(6666)] = 218741, + [SMALL_STATE(6667)] = 218756, + [SMALL_STATE(6668)] = 218771, + [SMALL_STATE(6669)] = 218786, + [SMALL_STATE(6670)] = 218801, + [SMALL_STATE(6671)] = 218816, + [SMALL_STATE(6672)] = 218829, + [SMALL_STATE(6673)] = 218844, + [SMALL_STATE(6674)] = 218859, + [SMALL_STATE(6675)] = 218874, + [SMALL_STATE(6676)] = 218887, + [SMALL_STATE(6677)] = 218904, + [SMALL_STATE(6678)] = 218921, + [SMALL_STATE(6679)] = 218938, + [SMALL_STATE(6680)] = 218953, + [SMALL_STATE(6681)] = 218968, + [SMALL_STATE(6682)] = 218985, + [SMALL_STATE(6683)] = 219000, + [SMALL_STATE(6684)] = 219013, + [SMALL_STATE(6685)] = 219032, + [SMALL_STATE(6686)] = 219051, + [SMALL_STATE(6687)] = 219070, + [SMALL_STATE(6688)] = 219089, + [SMALL_STATE(6689)] = 219108, + [SMALL_STATE(6690)] = 219127, + [SMALL_STATE(6691)] = 219142, + [SMALL_STATE(6692)] = 219161, + [SMALL_STATE(6693)] = 219180, + [SMALL_STATE(6694)] = 219199, + [SMALL_STATE(6695)] = 219218, + [SMALL_STATE(6696)] = 219237, + [SMALL_STATE(6697)] = 219254, + [SMALL_STATE(6698)] = 219271, + [SMALL_STATE(6699)] = 219290, + [SMALL_STATE(6700)] = 219309, + [SMALL_STATE(6701)] = 219328, + [SMALL_STATE(6702)] = 219344, + [SMALL_STATE(6703)] = 219360, + [SMALL_STATE(6704)] = 219376, + [SMALL_STATE(6705)] = 219390, + [SMALL_STATE(6706)] = 219406, + [SMALL_STATE(6707)] = 219422, + [SMALL_STATE(6708)] = 219438, + [SMALL_STATE(6709)] = 219454, + [SMALL_STATE(6710)] = 219470, + [SMALL_STATE(6711)] = 219486, + [SMALL_STATE(6712)] = 219498, + [SMALL_STATE(6713)] = 219514, + [SMALL_STATE(6714)] = 219528, + [SMALL_STATE(6715)] = 219544, + [SMALL_STATE(6716)] = 219560, + [SMALL_STATE(6717)] = 219574, + [SMALL_STATE(6718)] = 219590, + [SMALL_STATE(6719)] = 219606, + [SMALL_STATE(6720)] = 219618, + [SMALL_STATE(6721)] = 219630, + [SMALL_STATE(6722)] = 219646, + [SMALL_STATE(6723)] = 219662, + [SMALL_STATE(6724)] = 219674, + [SMALL_STATE(6725)] = 219688, + [SMALL_STATE(6726)] = 219704, + [SMALL_STATE(6727)] = 219720, + [SMALL_STATE(6728)] = 219736, + [SMALL_STATE(6729)] = 219752, + [SMALL_STATE(6730)] = 219766, + [SMALL_STATE(6731)] = 219778, + [SMALL_STATE(6732)] = 219794, + [SMALL_STATE(6733)] = 219808, + [SMALL_STATE(6734)] = 219822, + [SMALL_STATE(6735)] = 219838, + [SMALL_STATE(6736)] = 219850, + [SMALL_STATE(6737)] = 219866, + [SMALL_STATE(6738)] = 219882, + [SMALL_STATE(6739)] = 219898, + [SMALL_STATE(6740)] = 219910, + [SMALL_STATE(6741)] = 219926, + [SMALL_STATE(6742)] = 219940, + [SMALL_STATE(6743)] = 219952, + [SMALL_STATE(6744)] = 219968, + [SMALL_STATE(6745)] = 219984, + [SMALL_STATE(6746)] = 220000, + [SMALL_STATE(6747)] = 220016, + [SMALL_STATE(6748)] = 220028, + [SMALL_STATE(6749)] = 220040, + [SMALL_STATE(6750)] = 220056, + [SMALL_STATE(6751)] = 220072, + [SMALL_STATE(6752)] = 220086, + [SMALL_STATE(6753)] = 220102, + [SMALL_STATE(6754)] = 220118, + [SMALL_STATE(6755)] = 220130, + [SMALL_STATE(6756)] = 220142, + [SMALL_STATE(6757)] = 220154, + [SMALL_STATE(6758)] = 220166, + [SMALL_STATE(6759)] = 220178, + [SMALL_STATE(6760)] = 220194, + [SMALL_STATE(6761)] = 220206, + [SMALL_STATE(6762)] = 220218, + [SMALL_STATE(6763)] = 220230, + [SMALL_STATE(6764)] = 220246, + [SMALL_STATE(6765)] = 220262, + [SMALL_STATE(6766)] = 220278, + [SMALL_STATE(6767)] = 220292, + [SMALL_STATE(6768)] = 220308, + [SMALL_STATE(6769)] = 220320, + [SMALL_STATE(6770)] = 220332, + [SMALL_STATE(6771)] = 220348, + [SMALL_STATE(6772)] = 220364, + [SMALL_STATE(6773)] = 220380, + [SMALL_STATE(6774)] = 220396, + [SMALL_STATE(6775)] = 220412, + [SMALL_STATE(6776)] = 220428, + [SMALL_STATE(6777)] = 220440, + [SMALL_STATE(6778)] = 220456, + [SMALL_STATE(6779)] = 220468, + [SMALL_STATE(6780)] = 220484, + [SMALL_STATE(6781)] = 220498, + [SMALL_STATE(6782)] = 220512, + [SMALL_STATE(6783)] = 220524, + [SMALL_STATE(6784)] = 220536, + [SMALL_STATE(6785)] = 220550, + [SMALL_STATE(6786)] = 220566, + [SMALL_STATE(6787)] = 220580, + [SMALL_STATE(6788)] = 220594, + [SMALL_STATE(6789)] = 220606, + [SMALL_STATE(6790)] = 220620, + [SMALL_STATE(6791)] = 220636, + [SMALL_STATE(6792)] = 220652, + [SMALL_STATE(6793)] = 220668, + [SMALL_STATE(6794)] = 220684, + [SMALL_STATE(6795)] = 220700, + [SMALL_STATE(6796)] = 220716, + [SMALL_STATE(6797)] = 220732, + [SMALL_STATE(6798)] = 220748, + [SMALL_STATE(6799)] = 220760, + [SMALL_STATE(6800)] = 220772, + [SMALL_STATE(6801)] = 220788, + [SMALL_STATE(6802)] = 220804, + [SMALL_STATE(6803)] = 220816, + [SMALL_STATE(6804)] = 220832, + [SMALL_STATE(6805)] = 220848, + [SMALL_STATE(6806)] = 220860, + [SMALL_STATE(6807)] = 220876, + [SMALL_STATE(6808)] = 220892, + [SMALL_STATE(6809)] = 220904, + [SMALL_STATE(6810)] = 220918, + [SMALL_STATE(6811)] = 220932, + [SMALL_STATE(6812)] = 220946, + [SMALL_STATE(6813)] = 220962, + [SMALL_STATE(6814)] = 220978, + [SMALL_STATE(6815)] = 220990, + [SMALL_STATE(6816)] = 221006, + [SMALL_STATE(6817)] = 221022, + [SMALL_STATE(6818)] = 221038, + [SMALL_STATE(6819)] = 221052, + [SMALL_STATE(6820)] = 221068, + [SMALL_STATE(6821)] = 221084, + [SMALL_STATE(6822)] = 221096, + [SMALL_STATE(6823)] = 221112, + [SMALL_STATE(6824)] = 221128, + [SMALL_STATE(6825)] = 221144, + [SMALL_STATE(6826)] = 221160, + [SMALL_STATE(6827)] = 221172, + [SMALL_STATE(6828)] = 221188, + [SMALL_STATE(6829)] = 221204, + [SMALL_STATE(6830)] = 221220, + [SMALL_STATE(6831)] = 221236, + [SMALL_STATE(6832)] = 221250, + [SMALL_STATE(6833)] = 221262, + [SMALL_STATE(6834)] = 221278, + [SMALL_STATE(6835)] = 221290, + [SMALL_STATE(6836)] = 221302, + [SMALL_STATE(6837)] = 221318, + [SMALL_STATE(6838)] = 221330, + [SMALL_STATE(6839)] = 221346, + [SMALL_STATE(6840)] = 221362, + [SMALL_STATE(6841)] = 221378, + [SMALL_STATE(6842)] = 221394, + [SMALL_STATE(6843)] = 221406, + [SMALL_STATE(6844)] = 221422, + [SMALL_STATE(6845)] = 221438, + [SMALL_STATE(6846)] = 221454, + [SMALL_STATE(6847)] = 221470, + [SMALL_STATE(6848)] = 221486, + [SMALL_STATE(6849)] = 221502, + [SMALL_STATE(6850)] = 221516, + [SMALL_STATE(6851)] = 221532, + [SMALL_STATE(6852)] = 221546, + [SMALL_STATE(6853)] = 221558, + [SMALL_STATE(6854)] = 221574, + [SMALL_STATE(6855)] = 221586, + [SMALL_STATE(6856)] = 221598, + [SMALL_STATE(6857)] = 221614, + [SMALL_STATE(6858)] = 221630, + [SMALL_STATE(6859)] = 221642, + [SMALL_STATE(6860)] = 221658, + [SMALL_STATE(6861)] = 221674, + [SMALL_STATE(6862)] = 221690, + [SMALL_STATE(6863)] = 221704, + [SMALL_STATE(6864)] = 221720, + [SMALL_STATE(6865)] = 221736, + [SMALL_STATE(6866)] = 221750, + [SMALL_STATE(6867)] = 221766, + [SMALL_STATE(6868)] = 221782, + [SMALL_STATE(6869)] = 221798, + [SMALL_STATE(6870)] = 221810, + [SMALL_STATE(6871)] = 221826, + [SMALL_STATE(6872)] = 221842, + [SMALL_STATE(6873)] = 221858, + [SMALL_STATE(6874)] = 221874, + [SMALL_STATE(6875)] = 221890, + [SMALL_STATE(6876)] = 221902, + [SMALL_STATE(6877)] = 221914, + [SMALL_STATE(6878)] = 221930, + [SMALL_STATE(6879)] = 221946, + [SMALL_STATE(6880)] = 221958, + [SMALL_STATE(6881)] = 221972, + [SMALL_STATE(6882)] = 221984, + [SMALL_STATE(6883)] = 222000, + [SMALL_STATE(6884)] = 222016, + [SMALL_STATE(6885)] = 222028, + [SMALL_STATE(6886)] = 222044, + [SMALL_STATE(6887)] = 222058, + [SMALL_STATE(6888)] = 222074, + [SMALL_STATE(6889)] = 222090, + [SMALL_STATE(6890)] = 222106, + [SMALL_STATE(6891)] = 222122, + [SMALL_STATE(6892)] = 222138, + [SMALL_STATE(6893)] = 222154, + [SMALL_STATE(6894)] = 222170, + [SMALL_STATE(6895)] = 222182, + [SMALL_STATE(6896)] = 222198, + [SMALL_STATE(6897)] = 222214, + [SMALL_STATE(6898)] = 222230, + [SMALL_STATE(6899)] = 222246, + [SMALL_STATE(6900)] = 222258, + [SMALL_STATE(6901)] = 222274, + [SMALL_STATE(6902)] = 222290, + [SMALL_STATE(6903)] = 222304, + [SMALL_STATE(6904)] = 222318, + [SMALL_STATE(6905)] = 222332, + [SMALL_STATE(6906)] = 222346, + [SMALL_STATE(6907)] = 222362, + [SMALL_STATE(6908)] = 222378, + [SMALL_STATE(6909)] = 222394, + [SMALL_STATE(6910)] = 222410, + [SMALL_STATE(6911)] = 222426, + [SMALL_STATE(6912)] = 222438, + [SMALL_STATE(6913)] = 222454, + [SMALL_STATE(6914)] = 222470, + [SMALL_STATE(6915)] = 222486, + [SMALL_STATE(6916)] = 222502, + [SMALL_STATE(6917)] = 222518, + [SMALL_STATE(6918)] = 222534, + [SMALL_STATE(6919)] = 222550, + [SMALL_STATE(6920)] = 222566, + [SMALL_STATE(6921)] = 222582, + [SMALL_STATE(6922)] = 222598, + [SMALL_STATE(6923)] = 222614, + [SMALL_STATE(6924)] = 222630, + [SMALL_STATE(6925)] = 222646, + [SMALL_STATE(6926)] = 222662, + [SMALL_STATE(6927)] = 222676, + [SMALL_STATE(6928)] = 222692, + [SMALL_STATE(6929)] = 222708, + [SMALL_STATE(6930)] = 222722, + [SMALL_STATE(6931)] = 222738, + [SMALL_STATE(6932)] = 222752, + [SMALL_STATE(6933)] = 222768, + [SMALL_STATE(6934)] = 222782, + [SMALL_STATE(6935)] = 222798, + [SMALL_STATE(6936)] = 222814, + [SMALL_STATE(6937)] = 222830, + [SMALL_STATE(6938)] = 222846, + [SMALL_STATE(6939)] = 222862, + [SMALL_STATE(6940)] = 222878, + [SMALL_STATE(6941)] = 222892, + [SMALL_STATE(6942)] = 222908, + [SMALL_STATE(6943)] = 222924, + [SMALL_STATE(6944)] = 222936, + [SMALL_STATE(6945)] = 222952, + [SMALL_STATE(6946)] = 222964, + [SMALL_STATE(6947)] = 222978, + [SMALL_STATE(6948)] = 222990, + [SMALL_STATE(6949)] = 223006, + [SMALL_STATE(6950)] = 223022, + [SMALL_STATE(6951)] = 223038, + [SMALL_STATE(6952)] = 223054, + [SMALL_STATE(6953)] = 223070, + [SMALL_STATE(6954)] = 223084, + [SMALL_STATE(6955)] = 223100, + [SMALL_STATE(6956)] = 223116, + [SMALL_STATE(6957)] = 223132, + [SMALL_STATE(6958)] = 223148, + [SMALL_STATE(6959)] = 223164, + [SMALL_STATE(6960)] = 223178, + [SMALL_STATE(6961)] = 223192, + [SMALL_STATE(6962)] = 223206, + [SMALL_STATE(6963)] = 223222, + [SMALL_STATE(6964)] = 223234, + [SMALL_STATE(6965)] = 223250, + [SMALL_STATE(6966)] = 223266, + [SMALL_STATE(6967)] = 223280, + [SMALL_STATE(6968)] = 223296, + [SMALL_STATE(6969)] = 223312, + [SMALL_STATE(6970)] = 223328, + [SMALL_STATE(6971)] = 223344, + [SMALL_STATE(6972)] = 223360, + [SMALL_STATE(6973)] = 223376, + [SMALL_STATE(6974)] = 223390, + [SMALL_STATE(6975)] = 223406, + [SMALL_STATE(6976)] = 223418, + [SMALL_STATE(6977)] = 223432, + [SMALL_STATE(6978)] = 223448, + [SMALL_STATE(6979)] = 223464, + [SMALL_STATE(6980)] = 223480, + [SMALL_STATE(6981)] = 223496, + [SMALL_STATE(6982)] = 223508, + [SMALL_STATE(6983)] = 223524, + [SMALL_STATE(6984)] = 223538, + [SMALL_STATE(6985)] = 223554, + [SMALL_STATE(6986)] = 223570, + [SMALL_STATE(6987)] = 223586, + [SMALL_STATE(6988)] = 223600, + [SMALL_STATE(6989)] = 223616, + [SMALL_STATE(6990)] = 223630, + [SMALL_STATE(6991)] = 223644, + [SMALL_STATE(6992)] = 223660, + [SMALL_STATE(6993)] = 223676, + [SMALL_STATE(6994)] = 223692, + [SMALL_STATE(6995)] = 223706, + [SMALL_STATE(6996)] = 223720, + [SMALL_STATE(6997)] = 223736, + [SMALL_STATE(6998)] = 223752, + [SMALL_STATE(6999)] = 223768, + [SMALL_STATE(7000)] = 223784, + [SMALL_STATE(7001)] = 223798, + [SMALL_STATE(7002)] = 223814, + [SMALL_STATE(7003)] = 223830, + [SMALL_STATE(7004)] = 223844, + [SMALL_STATE(7005)] = 223858, + [SMALL_STATE(7006)] = 223874, + [SMALL_STATE(7007)] = 223888, + [SMALL_STATE(7008)] = 223904, + [SMALL_STATE(7009)] = 223920, + [SMALL_STATE(7010)] = 223934, + [SMALL_STATE(7011)] = 223950, + [SMALL_STATE(7012)] = 223966, + [SMALL_STATE(7013)] = 223982, + [SMALL_STATE(7014)] = 223998, + [SMALL_STATE(7015)] = 224012, + [SMALL_STATE(7016)] = 224028, + [SMALL_STATE(7017)] = 224044, + [SMALL_STATE(7018)] = 224058, + [SMALL_STATE(7019)] = 224074, + [SMALL_STATE(7020)] = 224090, + [SMALL_STATE(7021)] = 224106, + [SMALL_STATE(7022)] = 224122, + [SMALL_STATE(7023)] = 224134, + [SMALL_STATE(7024)] = 224150, + [SMALL_STATE(7025)] = 224166, + [SMALL_STATE(7026)] = 224182, + [SMALL_STATE(7027)] = 224194, + [SMALL_STATE(7028)] = 224208, + [SMALL_STATE(7029)] = 224220, + [SMALL_STATE(7030)] = 224234, + [SMALL_STATE(7031)] = 224248, + [SMALL_STATE(7032)] = 224264, + [SMALL_STATE(7033)] = 224278, + [SMALL_STATE(7034)] = 224294, + [SMALL_STATE(7035)] = 224308, + [SMALL_STATE(7036)] = 224324, + [SMALL_STATE(7037)] = 224338, + [SMALL_STATE(7038)] = 224354, + [SMALL_STATE(7039)] = 224368, + [SMALL_STATE(7040)] = 224382, + [SMALL_STATE(7041)] = 224396, + [SMALL_STATE(7042)] = 224412, + [SMALL_STATE(7043)] = 224426, + [SMALL_STATE(7044)] = 224442, + [SMALL_STATE(7045)] = 224458, + [SMALL_STATE(7046)] = 224474, + [SMALL_STATE(7047)] = 224490, + [SMALL_STATE(7048)] = 224504, + [SMALL_STATE(7049)] = 224518, + [SMALL_STATE(7050)] = 224534, + [SMALL_STATE(7051)] = 224550, + [SMALL_STATE(7052)] = 224566, + [SMALL_STATE(7053)] = 224580, + [SMALL_STATE(7054)] = 224596, + [SMALL_STATE(7055)] = 224612, + [SMALL_STATE(7056)] = 224628, + [SMALL_STATE(7057)] = 224642, + [SMALL_STATE(7058)] = 224658, + [SMALL_STATE(7059)] = 224672, + [SMALL_STATE(7060)] = 224686, + [SMALL_STATE(7061)] = 224702, + [SMALL_STATE(7062)] = 224718, + [SMALL_STATE(7063)] = 224732, + [SMALL_STATE(7064)] = 224744, + [SMALL_STATE(7065)] = 224760, + [SMALL_STATE(7066)] = 224776, + [SMALL_STATE(7067)] = 224788, + [SMALL_STATE(7068)] = 224804, + [SMALL_STATE(7069)] = 224820, + [SMALL_STATE(7070)] = 224836, + [SMALL_STATE(7071)] = 224848, + [SMALL_STATE(7072)] = 224862, + [SMALL_STATE(7073)] = 224878, + [SMALL_STATE(7074)] = 224894, + [SMALL_STATE(7075)] = 224910, + [SMALL_STATE(7076)] = 224922, + [SMALL_STATE(7077)] = 224934, + [SMALL_STATE(7078)] = 224950, + [SMALL_STATE(7079)] = 224966, + [SMALL_STATE(7080)] = 224982, + [SMALL_STATE(7081)] = 224998, + [SMALL_STATE(7082)] = 225010, + [SMALL_STATE(7083)] = 225026, + [SMALL_STATE(7084)] = 225042, + [SMALL_STATE(7085)] = 225054, + [SMALL_STATE(7086)] = 225068, + [SMALL_STATE(7087)] = 225084, + [SMALL_STATE(7088)] = 225096, + [SMALL_STATE(7089)] = 225108, + [SMALL_STATE(7090)] = 225122, + [SMALL_STATE(7091)] = 225134, + [SMALL_STATE(7092)] = 225146, + [SMALL_STATE(7093)] = 225158, + [SMALL_STATE(7094)] = 225172, + [SMALL_STATE(7095)] = 225184, + [SMALL_STATE(7096)] = 225200, + [SMALL_STATE(7097)] = 225216, + [SMALL_STATE(7098)] = 225232, + [SMALL_STATE(7099)] = 225248, + [SMALL_STATE(7100)] = 225264, + [SMALL_STATE(7101)] = 225280, + [SMALL_STATE(7102)] = 225296, + [SMALL_STATE(7103)] = 225312, + [SMALL_STATE(7104)] = 225328, + [SMALL_STATE(7105)] = 225344, + [SMALL_STATE(7106)] = 225360, + [SMALL_STATE(7107)] = 225374, + [SMALL_STATE(7108)] = 225386, + [SMALL_STATE(7109)] = 225402, + [SMALL_STATE(7110)] = 225418, + [SMALL_STATE(7111)] = 225432, + [SMALL_STATE(7112)] = 225448, + [SMALL_STATE(7113)] = 225462, + [SMALL_STATE(7114)] = 225478, + [SMALL_STATE(7115)] = 225494, + [SMALL_STATE(7116)] = 225510, + [SMALL_STATE(7117)] = 225526, + [SMALL_STATE(7118)] = 225542, + [SMALL_STATE(7119)] = 225556, + [SMALL_STATE(7120)] = 225572, + [SMALL_STATE(7121)] = 225584, + [SMALL_STATE(7122)] = 225600, + [SMALL_STATE(7123)] = 225616, + [SMALL_STATE(7124)] = 225632, + [SMALL_STATE(7125)] = 225648, + [SMALL_STATE(7126)] = 225660, + [SMALL_STATE(7127)] = 225672, + [SMALL_STATE(7128)] = 225686, + [SMALL_STATE(7129)] = 225698, + [SMALL_STATE(7130)] = 225712, + [SMALL_STATE(7131)] = 225728, + [SMALL_STATE(7132)] = 225744, + [SMALL_STATE(7133)] = 225758, + [SMALL_STATE(7134)] = 225774, + [SMALL_STATE(7135)] = 225790, + [SMALL_STATE(7136)] = 225806, + [SMALL_STATE(7137)] = 225820, + [SMALL_STATE(7138)] = 225836, + [SMALL_STATE(7139)] = 225850, + [SMALL_STATE(7140)] = 225866, + [SMALL_STATE(7141)] = 225882, + [SMALL_STATE(7142)] = 225898, + [SMALL_STATE(7143)] = 225914, + [SMALL_STATE(7144)] = 225930, + [SMALL_STATE(7145)] = 225946, + [SMALL_STATE(7146)] = 225962, + [SMALL_STATE(7147)] = 225976, + [SMALL_STATE(7148)] = 225990, + [SMALL_STATE(7149)] = 226004, + [SMALL_STATE(7150)] = 226018, + [SMALL_STATE(7151)] = 226034, + [SMALL_STATE(7152)] = 226050, + [SMALL_STATE(7153)] = 226066, + [SMALL_STATE(7154)] = 226082, + [SMALL_STATE(7155)] = 226098, + [SMALL_STATE(7156)] = 226114, + [SMALL_STATE(7157)] = 226128, + [SMALL_STATE(7158)] = 226142, + [SMALL_STATE(7159)] = 226156, + [SMALL_STATE(7160)] = 226172, + [SMALL_STATE(7161)] = 226188, + [SMALL_STATE(7162)] = 226204, + [SMALL_STATE(7163)] = 226220, + [SMALL_STATE(7164)] = 226236, + [SMALL_STATE(7165)] = 226250, + [SMALL_STATE(7166)] = 226266, + [SMALL_STATE(7167)] = 226280, + [SMALL_STATE(7168)] = 226296, + [SMALL_STATE(7169)] = 226312, + [SMALL_STATE(7170)] = 226328, + [SMALL_STATE(7171)] = 226344, + [SMALL_STATE(7172)] = 226360, + [SMALL_STATE(7173)] = 226374, + [SMALL_STATE(7174)] = 226386, + [SMALL_STATE(7175)] = 226398, + [SMALL_STATE(7176)] = 226412, + [SMALL_STATE(7177)] = 226428, + [SMALL_STATE(7178)] = 226444, + [SMALL_STATE(7179)] = 226460, + [SMALL_STATE(7180)] = 226476, + [SMALL_STATE(7181)] = 226492, + [SMALL_STATE(7182)] = 226508, + [SMALL_STATE(7183)] = 226522, + [SMALL_STATE(7184)] = 226536, + [SMALL_STATE(7185)] = 226550, + [SMALL_STATE(7186)] = 226564, + [SMALL_STATE(7187)] = 226580, + [SMALL_STATE(7188)] = 226596, + [SMALL_STATE(7189)] = 226612, + [SMALL_STATE(7190)] = 226628, + [SMALL_STATE(7191)] = 226644, + [SMALL_STATE(7192)] = 226658, + [SMALL_STATE(7193)] = 226674, + [SMALL_STATE(7194)] = 226690, + [SMALL_STATE(7195)] = 226704, + [SMALL_STATE(7196)] = 226718, + [SMALL_STATE(7197)] = 226732, + [SMALL_STATE(7198)] = 226748, + [SMALL_STATE(7199)] = 226764, + [SMALL_STATE(7200)] = 226780, + [SMALL_STATE(7201)] = 226796, + [SMALL_STATE(7202)] = 226812, + [SMALL_STATE(7203)] = 226826, + [SMALL_STATE(7204)] = 226840, + [SMALL_STATE(7205)] = 226854, + [SMALL_STATE(7206)] = 226868, + [SMALL_STATE(7207)] = 226880, + [SMALL_STATE(7208)] = 226892, + [SMALL_STATE(7209)] = 226908, + [SMALL_STATE(7210)] = 226924, + [SMALL_STATE(7211)] = 226936, + [SMALL_STATE(7212)] = 226952, + [SMALL_STATE(7213)] = 226968, + [SMALL_STATE(7214)] = 226982, + [SMALL_STATE(7215)] = 226996, + [SMALL_STATE(7216)] = 227008, + [SMALL_STATE(7217)] = 227020, + [SMALL_STATE(7218)] = 227036, + [SMALL_STATE(7219)] = 227052, + [SMALL_STATE(7220)] = 227068, + [SMALL_STATE(7221)] = 227084, + [SMALL_STATE(7222)] = 227098, + [SMALL_STATE(7223)] = 227110, + [SMALL_STATE(7224)] = 227122, + [SMALL_STATE(7225)] = 227136, + [SMALL_STATE(7226)] = 227148, + [SMALL_STATE(7227)] = 227164, + [SMALL_STATE(7228)] = 227180, + [SMALL_STATE(7229)] = 227196, + [SMALL_STATE(7230)] = 227212, + [SMALL_STATE(7231)] = 227226, + [SMALL_STATE(7232)] = 227240, + [SMALL_STATE(7233)] = 227256, + [SMALL_STATE(7234)] = 227272, + [SMALL_STATE(7235)] = 227288, + [SMALL_STATE(7236)] = 227304, + [SMALL_STATE(7237)] = 227320, + [SMALL_STATE(7238)] = 227334, + [SMALL_STATE(7239)] = 227348, + [SMALL_STATE(7240)] = 227364, + [SMALL_STATE(7241)] = 227380, + [SMALL_STATE(7242)] = 227396, + [SMALL_STATE(7243)] = 227412, + [SMALL_STATE(7244)] = 227428, + [SMALL_STATE(7245)] = 227442, + [SMALL_STATE(7246)] = 227456, + [SMALL_STATE(7247)] = 227472, + [SMALL_STATE(7248)] = 227488, + [SMALL_STATE(7249)] = 227504, + [SMALL_STATE(7250)] = 227520, + [SMALL_STATE(7251)] = 227534, + [SMALL_STATE(7252)] = 227548, + [SMALL_STATE(7253)] = 227562, + [SMALL_STATE(7254)] = 227578, + [SMALL_STATE(7255)] = 227594, + [SMALL_STATE(7256)] = 227610, + [SMALL_STATE(7257)] = 227626, + [SMALL_STATE(7258)] = 227640, + [SMALL_STATE(7259)] = 227654, + [SMALL_STATE(7260)] = 227670, + [SMALL_STATE(7261)] = 227686, + [SMALL_STATE(7262)] = 227702, + [SMALL_STATE(7263)] = 227714, + [SMALL_STATE(7264)] = 227730, + [SMALL_STATE(7265)] = 227746, + [SMALL_STATE(7266)] = 227762, + [SMALL_STATE(7267)] = 227776, + [SMALL_STATE(7268)] = 227788, + [SMALL_STATE(7269)] = 227804, + [SMALL_STATE(7270)] = 227820, + [SMALL_STATE(7271)] = 227834, + [SMALL_STATE(7272)] = 227850, + [SMALL_STATE(7273)] = 227864, + [SMALL_STATE(7274)] = 227876, + [SMALL_STATE(7275)] = 227892, + [SMALL_STATE(7276)] = 227908, + [SMALL_STATE(7277)] = 227920, + [SMALL_STATE(7278)] = 227932, + [SMALL_STATE(7279)] = 227944, + [SMALL_STATE(7280)] = 227956, + [SMALL_STATE(7281)] = 227968, + [SMALL_STATE(7282)] = 227984, + [SMALL_STATE(7283)] = 227996, + [SMALL_STATE(7284)] = 228010, + [SMALL_STATE(7285)] = 228022, + [SMALL_STATE(7286)] = 228038, + [SMALL_STATE(7287)] = 228051, + [SMALL_STATE(7288)] = 228064, + [SMALL_STATE(7289)] = 228077, + [SMALL_STATE(7290)] = 228090, + [SMALL_STATE(7291)] = 228103, + [SMALL_STATE(7292)] = 228116, + [SMALL_STATE(7293)] = 228129, + [SMALL_STATE(7294)] = 228142, + [SMALL_STATE(7295)] = 228155, + [SMALL_STATE(7296)] = 228168, + [SMALL_STATE(7297)] = 228179, + [SMALL_STATE(7298)] = 228192, + [SMALL_STATE(7299)] = 228205, + [SMALL_STATE(7300)] = 228218, + [SMALL_STATE(7301)] = 228231, + [SMALL_STATE(7302)] = 228244, + [SMALL_STATE(7303)] = 228257, + [SMALL_STATE(7304)] = 228270, + [SMALL_STATE(7305)] = 228283, + [SMALL_STATE(7306)] = 228296, + [SMALL_STATE(7307)] = 228309, + [SMALL_STATE(7308)] = 228322, + [SMALL_STATE(7309)] = 228335, + [SMALL_STATE(7310)] = 228346, + [SMALL_STATE(7311)] = 228359, + [SMALL_STATE(7312)] = 228372, + [SMALL_STATE(7313)] = 228385, + [SMALL_STATE(7314)] = 228398, + [SMALL_STATE(7315)] = 228411, + [SMALL_STATE(7316)] = 228424, + [SMALL_STATE(7317)] = 228437, + [SMALL_STATE(7318)] = 228450, + [SMALL_STATE(7319)] = 228463, + [SMALL_STATE(7320)] = 228476, + [SMALL_STATE(7321)] = 228489, + [SMALL_STATE(7322)] = 228500, + [SMALL_STATE(7323)] = 228513, + [SMALL_STATE(7324)] = 228526, + [SMALL_STATE(7325)] = 228537, + [SMALL_STATE(7326)] = 228550, + [SMALL_STATE(7327)] = 228563, + [SMALL_STATE(7328)] = 228576, + [SMALL_STATE(7329)] = 228589, + [SMALL_STATE(7330)] = 228602, + [SMALL_STATE(7331)] = 228613, + [SMALL_STATE(7332)] = 228626, + [SMALL_STATE(7333)] = 228639, + [SMALL_STATE(7334)] = 228652, + [SMALL_STATE(7335)] = 228665, + [SMALL_STATE(7336)] = 228678, + [SMALL_STATE(7337)] = 228691, + [SMALL_STATE(7338)] = 228704, + [SMALL_STATE(7339)] = 228717, + [SMALL_STATE(7340)] = 228730, + [SMALL_STATE(7341)] = 228743, + [SMALL_STATE(7342)] = 228756, + [SMALL_STATE(7343)] = 228769, + [SMALL_STATE(7344)] = 228780, + [SMALL_STATE(7345)] = 228793, + [SMALL_STATE(7346)] = 228806, + [SMALL_STATE(7347)] = 228819, + [SMALL_STATE(7348)] = 228832, + [SMALL_STATE(7349)] = 228845, + [SMALL_STATE(7350)] = 228858, + [SMALL_STATE(7351)] = 228871, + [SMALL_STATE(7352)] = 228884, + [SMALL_STATE(7353)] = 228895, + [SMALL_STATE(7354)] = 228908, + [SMALL_STATE(7355)] = 228921, + [SMALL_STATE(7356)] = 228934, + [SMALL_STATE(7357)] = 228947, + [SMALL_STATE(7358)] = 228960, + [SMALL_STATE(7359)] = 228973, + [SMALL_STATE(7360)] = 228986, + [SMALL_STATE(7361)] = 228999, + [SMALL_STATE(7362)] = 229010, + [SMALL_STATE(7363)] = 229023, + [SMALL_STATE(7364)] = 229036, + [SMALL_STATE(7365)] = 229049, + [SMALL_STATE(7366)] = 229062, + [SMALL_STATE(7367)] = 229075, + [SMALL_STATE(7368)] = 229088, + [SMALL_STATE(7369)] = 229101, + [SMALL_STATE(7370)] = 229114, + [SMALL_STATE(7371)] = 229127, + [SMALL_STATE(7372)] = 229140, + [SMALL_STATE(7373)] = 229153, + [SMALL_STATE(7374)] = 229166, + [SMALL_STATE(7375)] = 229179, + [SMALL_STATE(7376)] = 229192, + [SMALL_STATE(7377)] = 229205, + [SMALL_STATE(7378)] = 229218, + [SMALL_STATE(7379)] = 229231, + [SMALL_STATE(7380)] = 229244, + [SMALL_STATE(7381)] = 229257, + [SMALL_STATE(7382)] = 229270, + [SMALL_STATE(7383)] = 229283, + [SMALL_STATE(7384)] = 229296, + [SMALL_STATE(7385)] = 229309, + [SMALL_STATE(7386)] = 229322, + [SMALL_STATE(7387)] = 229335, + [SMALL_STATE(7388)] = 229348, + [SMALL_STATE(7389)] = 229361, + [SMALL_STATE(7390)] = 229374, + [SMALL_STATE(7391)] = 229387, + [SMALL_STATE(7392)] = 229400, + [SMALL_STATE(7393)] = 229413, + [SMALL_STATE(7394)] = 229426, + [SMALL_STATE(7395)] = 229439, + [SMALL_STATE(7396)] = 229452, + [SMALL_STATE(7397)] = 229465, + [SMALL_STATE(7398)] = 229478, + [SMALL_STATE(7399)] = 229491, + [SMALL_STATE(7400)] = 229504, + [SMALL_STATE(7401)] = 229517, + [SMALL_STATE(7402)] = 229530, + [SMALL_STATE(7403)] = 229543, + [SMALL_STATE(7404)] = 229556, + [SMALL_STATE(7405)] = 229569, + [SMALL_STATE(7406)] = 229582, + [SMALL_STATE(7407)] = 229595, + [SMALL_STATE(7408)] = 229608, + [SMALL_STATE(7409)] = 229621, + [SMALL_STATE(7410)] = 229634, + [SMALL_STATE(7411)] = 229645, + [SMALL_STATE(7412)] = 229658, + [SMALL_STATE(7413)] = 229671, + [SMALL_STATE(7414)] = 229684, + [SMALL_STATE(7415)] = 229697, + [SMALL_STATE(7416)] = 229710, + [SMALL_STATE(7417)] = 229723, + [SMALL_STATE(7418)] = 229736, + [SMALL_STATE(7419)] = 229749, + [SMALL_STATE(7420)] = 229762, + [SMALL_STATE(7421)] = 229775, + [SMALL_STATE(7422)] = 229788, + [SMALL_STATE(7423)] = 229801, + [SMALL_STATE(7424)] = 229814, + [SMALL_STATE(7425)] = 229827, + [SMALL_STATE(7426)] = 229840, + [SMALL_STATE(7427)] = 229853, + [SMALL_STATE(7428)] = 229866, + [SMALL_STATE(7429)] = 229879, + [SMALL_STATE(7430)] = 229892, + [SMALL_STATE(7431)] = 229905, + [SMALL_STATE(7432)] = 229918, + [SMALL_STATE(7433)] = 229931, + [SMALL_STATE(7434)] = 229944, + [SMALL_STATE(7435)] = 229957, + [SMALL_STATE(7436)] = 229970, + [SMALL_STATE(7437)] = 229983, + [SMALL_STATE(7438)] = 229996, + [SMALL_STATE(7439)] = 230009, + [SMALL_STATE(7440)] = 230022, + [SMALL_STATE(7441)] = 230033, + [SMALL_STATE(7442)] = 230046, + [SMALL_STATE(7443)] = 230059, + [SMALL_STATE(7444)] = 230072, + [SMALL_STATE(7445)] = 230085, + [SMALL_STATE(7446)] = 230098, + [SMALL_STATE(7447)] = 230111, + [SMALL_STATE(7448)] = 230124, + [SMALL_STATE(7449)] = 230137, + [SMALL_STATE(7450)] = 230150, + [SMALL_STATE(7451)] = 230163, + [SMALL_STATE(7452)] = 230176, + [SMALL_STATE(7453)] = 230189, + [SMALL_STATE(7454)] = 230199, + [SMALL_STATE(7455)] = 230209, + [SMALL_STATE(7456)] = 230219, + [SMALL_STATE(7457)] = 230229, + [SMALL_STATE(7458)] = 230239, + [SMALL_STATE(7459)] = 230249, + [SMALL_STATE(7460)] = 230259, + [SMALL_STATE(7461)] = 230269, + [SMALL_STATE(7462)] = 230279, + [SMALL_STATE(7463)] = 230289, + [SMALL_STATE(7464)] = 230299, + [SMALL_STATE(7465)] = 230309, + [SMALL_STATE(7466)] = 230319, + [SMALL_STATE(7467)] = 230329, + [SMALL_STATE(7468)] = 230339, + [SMALL_STATE(7469)] = 230349, + [SMALL_STATE(7470)] = 230359, + [SMALL_STATE(7471)] = 230369, + [SMALL_STATE(7472)] = 230379, + [SMALL_STATE(7473)] = 230389, + [SMALL_STATE(7474)] = 230399, + [SMALL_STATE(7475)] = 230409, + [SMALL_STATE(7476)] = 230419, + [SMALL_STATE(7477)] = 230429, + [SMALL_STATE(7478)] = 230439, + [SMALL_STATE(7479)] = 230449, + [SMALL_STATE(7480)] = 230459, + [SMALL_STATE(7481)] = 230469, + [SMALL_STATE(7482)] = 230479, + [SMALL_STATE(7483)] = 230489, + [SMALL_STATE(7484)] = 230499, + [SMALL_STATE(7485)] = 230509, + [SMALL_STATE(7486)] = 230519, + [SMALL_STATE(7487)] = 230529, + [SMALL_STATE(7488)] = 230539, + [SMALL_STATE(7489)] = 230549, + [SMALL_STATE(7490)] = 230559, + [SMALL_STATE(7491)] = 230569, + [SMALL_STATE(7492)] = 230579, + [SMALL_STATE(7493)] = 230589, + [SMALL_STATE(7494)] = 230599, + [SMALL_STATE(7495)] = 230609, + [SMALL_STATE(7496)] = 230619, + [SMALL_STATE(7497)] = 230629, + [SMALL_STATE(7498)] = 230639, + [SMALL_STATE(7499)] = 230649, + [SMALL_STATE(7500)] = 230659, + [SMALL_STATE(7501)] = 230669, + [SMALL_STATE(7502)] = 230679, + [SMALL_STATE(7503)] = 230689, + [SMALL_STATE(7504)] = 230699, + [SMALL_STATE(7505)] = 230709, + [SMALL_STATE(7506)] = 230719, + [SMALL_STATE(7507)] = 230729, + [SMALL_STATE(7508)] = 230739, + [SMALL_STATE(7509)] = 230749, + [SMALL_STATE(7510)] = 230759, + [SMALL_STATE(7511)] = 230769, + [SMALL_STATE(7512)] = 230779, + [SMALL_STATE(7513)] = 230789, + [SMALL_STATE(7514)] = 230799, + [SMALL_STATE(7515)] = 230809, + [SMALL_STATE(7516)] = 230819, + [SMALL_STATE(7517)] = 230829, + [SMALL_STATE(7518)] = 230839, + [SMALL_STATE(7519)] = 230849, + [SMALL_STATE(7520)] = 230859, + [SMALL_STATE(7521)] = 230869, + [SMALL_STATE(7522)] = 230879, + [SMALL_STATE(7523)] = 230889, + [SMALL_STATE(7524)] = 230899, + [SMALL_STATE(7525)] = 230909, + [SMALL_STATE(7526)] = 230919, + [SMALL_STATE(7527)] = 230929, + [SMALL_STATE(7528)] = 230939, + [SMALL_STATE(7529)] = 230949, + [SMALL_STATE(7530)] = 230959, + [SMALL_STATE(7531)] = 230969, + [SMALL_STATE(7532)] = 230979, + [SMALL_STATE(7533)] = 230989, + [SMALL_STATE(7534)] = 230999, + [SMALL_STATE(7535)] = 231009, + [SMALL_STATE(7536)] = 231019, + [SMALL_STATE(7537)] = 231029, + [SMALL_STATE(7538)] = 231039, + [SMALL_STATE(7539)] = 231049, + [SMALL_STATE(7540)] = 231059, + [SMALL_STATE(7541)] = 231069, + [SMALL_STATE(7542)] = 231079, + [SMALL_STATE(7543)] = 231089, + [SMALL_STATE(7544)] = 231099, + [SMALL_STATE(7545)] = 231109, + [SMALL_STATE(7546)] = 231119, + [SMALL_STATE(7547)] = 231129, + [SMALL_STATE(7548)] = 231139, + [SMALL_STATE(7549)] = 231149, + [SMALL_STATE(7550)] = 231159, + [SMALL_STATE(7551)] = 231169, + [SMALL_STATE(7552)] = 231179, + [SMALL_STATE(7553)] = 231189, + [SMALL_STATE(7554)] = 231199, + [SMALL_STATE(7555)] = 231209, + [SMALL_STATE(7556)] = 231219, + [SMALL_STATE(7557)] = 231229, + [SMALL_STATE(7558)] = 231239, + [SMALL_STATE(7559)] = 231249, + [SMALL_STATE(7560)] = 231259, + [SMALL_STATE(7561)] = 231269, + [SMALL_STATE(7562)] = 231279, + [SMALL_STATE(7563)] = 231289, + [SMALL_STATE(7564)] = 231299, + [SMALL_STATE(7565)] = 231309, + [SMALL_STATE(7566)] = 231319, + [SMALL_STATE(7567)] = 231329, + [SMALL_STATE(7568)] = 231339, + [SMALL_STATE(7569)] = 231349, + [SMALL_STATE(7570)] = 231359, + [SMALL_STATE(7571)] = 231369, + [SMALL_STATE(7572)] = 231379, + [SMALL_STATE(7573)] = 231389, + [SMALL_STATE(7574)] = 231399, + [SMALL_STATE(7575)] = 231409, + [SMALL_STATE(7576)] = 231419, + [SMALL_STATE(7577)] = 231429, + [SMALL_STATE(7578)] = 231439, + [SMALL_STATE(7579)] = 231449, + [SMALL_STATE(7580)] = 231459, + [SMALL_STATE(7581)] = 231469, + [SMALL_STATE(7582)] = 231479, + [SMALL_STATE(7583)] = 231489, + [SMALL_STATE(7584)] = 231499, + [SMALL_STATE(7585)] = 231509, + [SMALL_STATE(7586)] = 231519, + [SMALL_STATE(7587)] = 231529, + [SMALL_STATE(7588)] = 231539, + [SMALL_STATE(7589)] = 231549, + [SMALL_STATE(7590)] = 231559, + [SMALL_STATE(7591)] = 231569, + [SMALL_STATE(7592)] = 231579, + [SMALL_STATE(7593)] = 231589, + [SMALL_STATE(7594)] = 231599, + [SMALL_STATE(7595)] = 231609, + [SMALL_STATE(7596)] = 231619, + [SMALL_STATE(7597)] = 231629, + [SMALL_STATE(7598)] = 231639, + [SMALL_STATE(7599)] = 231649, + [SMALL_STATE(7600)] = 231659, + [SMALL_STATE(7601)] = 231669, + [SMALL_STATE(7602)] = 231679, + [SMALL_STATE(7603)] = 231689, + [SMALL_STATE(7604)] = 231699, + [SMALL_STATE(7605)] = 231709, + [SMALL_STATE(7606)] = 231719, + [SMALL_STATE(7607)] = 231729, + [SMALL_STATE(7608)] = 231739, + [SMALL_STATE(7609)] = 231749, + [SMALL_STATE(7610)] = 231759, + [SMALL_STATE(7611)] = 231769, + [SMALL_STATE(7612)] = 231779, + [SMALL_STATE(7613)] = 231789, + [SMALL_STATE(7614)] = 231799, + [SMALL_STATE(7615)] = 231809, + [SMALL_STATE(7616)] = 231819, + [SMALL_STATE(7617)] = 231829, + [SMALL_STATE(7618)] = 231839, + [SMALL_STATE(7619)] = 231849, + [SMALL_STATE(7620)] = 231859, + [SMALL_STATE(7621)] = 231869, + [SMALL_STATE(7622)] = 231879, + [SMALL_STATE(7623)] = 231889, + [SMALL_STATE(7624)] = 231899, + [SMALL_STATE(7625)] = 231909, + [SMALL_STATE(7626)] = 231919, + [SMALL_STATE(7627)] = 231929, + [SMALL_STATE(7628)] = 231939, + [SMALL_STATE(7629)] = 231949, + [SMALL_STATE(7630)] = 231959, + [SMALL_STATE(7631)] = 231969, + [SMALL_STATE(7632)] = 231979, + [SMALL_STATE(7633)] = 231989, + [SMALL_STATE(7634)] = 231999, + [SMALL_STATE(7635)] = 232009, + [SMALL_STATE(7636)] = 232019, + [SMALL_STATE(7637)] = 232029, + [SMALL_STATE(7638)] = 232039, + [SMALL_STATE(7639)] = 232049, + [SMALL_STATE(7640)] = 232059, + [SMALL_STATE(7641)] = 232069, + [SMALL_STATE(7642)] = 232079, + [SMALL_STATE(7643)] = 232089, + [SMALL_STATE(7644)] = 232099, + [SMALL_STATE(7645)] = 232109, + [SMALL_STATE(7646)] = 232119, + [SMALL_STATE(7647)] = 232129, + [SMALL_STATE(7648)] = 232139, + [SMALL_STATE(7649)] = 232149, + [SMALL_STATE(7650)] = 232159, + [SMALL_STATE(7651)] = 232169, + [SMALL_STATE(7652)] = 232179, + [SMALL_STATE(7653)] = 232189, + [SMALL_STATE(7654)] = 232199, + [SMALL_STATE(7655)] = 232209, + [SMALL_STATE(7656)] = 232219, + [SMALL_STATE(7657)] = 232229, + [SMALL_STATE(7658)] = 232239, + [SMALL_STATE(7659)] = 232249, + [SMALL_STATE(7660)] = 232259, + [SMALL_STATE(7661)] = 232269, + [SMALL_STATE(7662)] = 232279, + [SMALL_STATE(7663)] = 232289, + [SMALL_STATE(7664)] = 232299, + [SMALL_STATE(7665)] = 232309, + [SMALL_STATE(7666)] = 232319, + [SMALL_STATE(7667)] = 232329, + [SMALL_STATE(7668)] = 232339, + [SMALL_STATE(7669)] = 232349, + [SMALL_STATE(7670)] = 232359, + [SMALL_STATE(7671)] = 232369, + [SMALL_STATE(7672)] = 232379, + [SMALL_STATE(7673)] = 232389, + [SMALL_STATE(7674)] = 232399, + [SMALL_STATE(7675)] = 232409, + [SMALL_STATE(7676)] = 232419, + [SMALL_STATE(7677)] = 232429, + [SMALL_STATE(7678)] = 232439, + [SMALL_STATE(7679)] = 232449, + [SMALL_STATE(7680)] = 232459, + [SMALL_STATE(7681)] = 232469, + [SMALL_STATE(7682)] = 232479, + [SMALL_STATE(7683)] = 232489, + [SMALL_STATE(7684)] = 232499, + [SMALL_STATE(7685)] = 232509, + [SMALL_STATE(7686)] = 232519, + [SMALL_STATE(7687)] = 232529, + [SMALL_STATE(7688)] = 232539, + [SMALL_STATE(7689)] = 232549, + [SMALL_STATE(7690)] = 232559, + [SMALL_STATE(7691)] = 232569, + [SMALL_STATE(7692)] = 232579, + [SMALL_STATE(7693)] = 232589, + [SMALL_STATE(7694)] = 232599, + [SMALL_STATE(7695)] = 232609, + [SMALL_STATE(7696)] = 232619, + [SMALL_STATE(7697)] = 232629, + [SMALL_STATE(7698)] = 232639, + [SMALL_STATE(7699)] = 232649, + [SMALL_STATE(7700)] = 232659, + [SMALL_STATE(7701)] = 232669, + [SMALL_STATE(7702)] = 232679, + [SMALL_STATE(7703)] = 232689, + [SMALL_STATE(7704)] = 232699, + [SMALL_STATE(7705)] = 232709, + [SMALL_STATE(7706)] = 232719, + [SMALL_STATE(7707)] = 232729, + [SMALL_STATE(7708)] = 232739, + [SMALL_STATE(7709)] = 232749, + [SMALL_STATE(7710)] = 232759, + [SMALL_STATE(7711)] = 232769, + [SMALL_STATE(7712)] = 232779, + [SMALL_STATE(7713)] = 232789, + [SMALL_STATE(7714)] = 232799, + [SMALL_STATE(7715)] = 232809, + [SMALL_STATE(7716)] = 232819, + [SMALL_STATE(7717)] = 232829, + [SMALL_STATE(7718)] = 232839, + [SMALL_STATE(7719)] = 232849, + [SMALL_STATE(7720)] = 232859, + [SMALL_STATE(7721)] = 232869, + [SMALL_STATE(7722)] = 232879, + [SMALL_STATE(7723)] = 232889, + [SMALL_STATE(7724)] = 232899, + [SMALL_STATE(7725)] = 232909, + [SMALL_STATE(7726)] = 232919, + [SMALL_STATE(7727)] = 232929, + [SMALL_STATE(7728)] = 232939, + [SMALL_STATE(7729)] = 232949, + [SMALL_STATE(7730)] = 232959, + [SMALL_STATE(7731)] = 232969, + [SMALL_STATE(7732)] = 232979, + [SMALL_STATE(7733)] = 232989, + [SMALL_STATE(7734)] = 232999, + [SMALL_STATE(7735)] = 233009, + [SMALL_STATE(7736)] = 233019, + [SMALL_STATE(7737)] = 233029, + [SMALL_STATE(7738)] = 233039, + [SMALL_STATE(7739)] = 233049, + [SMALL_STATE(7740)] = 233059, + [SMALL_STATE(7741)] = 233069, + [SMALL_STATE(7742)] = 233079, + [SMALL_STATE(7743)] = 233089, + [SMALL_STATE(7744)] = 233099, + [SMALL_STATE(7745)] = 233109, + [SMALL_STATE(7746)] = 233119, + [SMALL_STATE(7747)] = 233129, + [SMALL_STATE(7748)] = 233139, + [SMALL_STATE(7749)] = 233149, + [SMALL_STATE(7750)] = 233159, + [SMALL_STATE(7751)] = 233169, + [SMALL_STATE(7752)] = 233179, + [SMALL_STATE(7753)] = 233189, + [SMALL_STATE(7754)] = 233199, + [SMALL_STATE(7755)] = 233209, + [SMALL_STATE(7756)] = 233219, + [SMALL_STATE(7757)] = 233229, + [SMALL_STATE(7758)] = 233239, + [SMALL_STATE(7759)] = 233249, + [SMALL_STATE(7760)] = 233259, + [SMALL_STATE(7761)] = 233269, + [SMALL_STATE(7762)] = 233279, + [SMALL_STATE(7763)] = 233289, + [SMALL_STATE(7764)] = 233299, + [SMALL_STATE(7765)] = 233309, + [SMALL_STATE(7766)] = 233319, + [SMALL_STATE(7767)] = 233329, + [SMALL_STATE(7768)] = 233339, + [SMALL_STATE(7769)] = 233349, + [SMALL_STATE(7770)] = 233359, + [SMALL_STATE(7771)] = 233369, + [SMALL_STATE(7772)] = 233379, + [SMALL_STATE(7773)] = 233389, + [SMALL_STATE(7774)] = 233399, + [SMALL_STATE(7775)] = 233409, + [SMALL_STATE(7776)] = 233419, + [SMALL_STATE(7777)] = 233429, + [SMALL_STATE(7778)] = 233439, + [SMALL_STATE(7779)] = 233449, + [SMALL_STATE(7780)] = 233459, + [SMALL_STATE(7781)] = 233469, + [SMALL_STATE(7782)] = 233479, + [SMALL_STATE(7783)] = 233489, + [SMALL_STATE(7784)] = 233499, + [SMALL_STATE(7785)] = 233509, + [SMALL_STATE(7786)] = 233519, + [SMALL_STATE(7787)] = 233529, + [SMALL_STATE(7788)] = 233539, + [SMALL_STATE(7789)] = 233549, + [SMALL_STATE(7790)] = 233559, + [SMALL_STATE(7791)] = 233569, + [SMALL_STATE(7792)] = 233579, + [SMALL_STATE(7793)] = 233589, + [SMALL_STATE(7794)] = 233599, + [SMALL_STATE(7795)] = 233609, + [SMALL_STATE(7796)] = 233619, + [SMALL_STATE(7797)] = 233629, + [SMALL_STATE(7798)] = 233639, + [SMALL_STATE(7799)] = 233649, + [SMALL_STATE(7800)] = 233659, + [SMALL_STATE(7801)] = 233669, + [SMALL_STATE(7802)] = 233679, + [SMALL_STATE(7803)] = 233689, + [SMALL_STATE(7804)] = 233699, + [SMALL_STATE(7805)] = 233709, + [SMALL_STATE(7806)] = 233719, + [SMALL_STATE(7807)] = 233729, + [SMALL_STATE(7808)] = 233739, + [SMALL_STATE(7809)] = 233749, + [SMALL_STATE(7810)] = 233759, + [SMALL_STATE(7811)] = 233769, + [SMALL_STATE(7812)] = 233779, + [SMALL_STATE(7813)] = 233789, + [SMALL_STATE(7814)] = 233799, + [SMALL_STATE(7815)] = 233809, + [SMALL_STATE(7816)] = 233819, + [SMALL_STATE(7817)] = 233829, + [SMALL_STATE(7818)] = 233839, + [SMALL_STATE(7819)] = 233849, + [SMALL_STATE(7820)] = 233859, + [SMALL_STATE(7821)] = 233869, + [SMALL_STATE(7822)] = 233879, + [SMALL_STATE(7823)] = 233889, + [SMALL_STATE(7824)] = 233899, + [SMALL_STATE(7825)] = 233909, + [SMALL_STATE(7826)] = 233919, + [SMALL_STATE(7827)] = 233929, + [SMALL_STATE(7828)] = 233939, + [SMALL_STATE(7829)] = 233949, + [SMALL_STATE(7830)] = 233959, + [SMALL_STATE(7831)] = 233969, + [SMALL_STATE(7832)] = 233979, + [SMALL_STATE(7833)] = 233989, + [SMALL_STATE(7834)] = 233999, + [SMALL_STATE(7835)] = 234009, + [SMALL_STATE(7836)] = 234019, + [SMALL_STATE(7837)] = 234029, + [SMALL_STATE(7838)] = 234039, + [SMALL_STATE(7839)] = 234049, + [SMALL_STATE(7840)] = 234059, + [SMALL_STATE(7841)] = 234069, + [SMALL_STATE(7842)] = 234079, + [SMALL_STATE(7843)] = 234089, + [SMALL_STATE(7844)] = 234099, + [SMALL_STATE(7845)] = 234109, + [SMALL_STATE(7846)] = 234119, + [SMALL_STATE(7847)] = 234129, + [SMALL_STATE(7848)] = 234139, + [SMALL_STATE(7849)] = 234149, + [SMALL_STATE(7850)] = 234159, + [SMALL_STATE(7851)] = 234169, + [SMALL_STATE(7852)] = 234179, + [SMALL_STATE(7853)] = 234189, + [SMALL_STATE(7854)] = 234199, + [SMALL_STATE(7855)] = 234209, + [SMALL_STATE(7856)] = 234219, + [SMALL_STATE(7857)] = 234229, + [SMALL_STATE(7858)] = 234239, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7594), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7741), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 0, 0, 0), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7614), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5762), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5964), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6000), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6002), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4744), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7375), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7570), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5703), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5973), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6019), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5986), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4746), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7431), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6437), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7814), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7846), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4987), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4962), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6676), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7363), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5051), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5364), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7322), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5322), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6467), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7628), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6686), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6028), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5897), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7607), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7523), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5653), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5803), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5804), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5805), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4683), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7027), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6562), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7321), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7411), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4916), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4917), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5967), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7555), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7032), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4918), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5344), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7035), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5141), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5972), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7865), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7477), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7551), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6315), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6071), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5780), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7594), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7627), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5641), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5789), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5801), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5807), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7181), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6314), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7376), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4898), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4733), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5936), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7605), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6883), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4741), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6949), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5147), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6040), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7692), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5647), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4852), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5284), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5913), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6046), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6047), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6060), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4626), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7310), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7507), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7815), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4776), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4777), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6709), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7360), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5048), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7419), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6181), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5870), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5999), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6021), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6034), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5029), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5040), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6124), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6257), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5304), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7188), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4061), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4039), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3897), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7596), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5792), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7750), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), - [569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, 0, 0), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7492), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 1, 0, 0), - [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5909), - [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), - [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6031), - [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6032), - [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6033), - [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1, 0, 0), - [607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5911), - [610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2663), - [613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6081), - [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6082), - [619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6083), - [622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4626), - [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4626), - [628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2447), - [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7310), - [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2655), - [637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2623), - [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2799), - [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(847), - [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(53), - [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6314), - [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7507), - [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7815), - [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4776), - [661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4777), - [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6709), - [667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7360), - [670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2087), - [673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5048), - [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2114), - [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1232), - [682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7), - [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5344), - [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7419), - [691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1133), - [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2752), - [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3568), - [700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2625), - [703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5202), - [706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6181), - [709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3823), - [712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5150), - [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5354), - [718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2123), - [721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2145), - [724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(799), - [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(799), - [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(827), - [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(819), - [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1700), - [739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1700), - [742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1863), - [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7551), - [748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2085), - [751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6315), - [754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1418), - [757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6071), - [760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5780), - [763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7607), - [766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1746), - [769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4514), - [772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7627), - [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5925), - [778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2667), - [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6141), - [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6142), - [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6143), - [790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4626), - [793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4626), - [796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2447), - [799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7310), - [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2655), - [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2623), - [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2799), - [811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(847), - [814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(53), - [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6314), - [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7507), - [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7815), - [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5029), - [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5040), - [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6709), - [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7360), - [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2087), - [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6124), - [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1817), - [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1232), - [850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7), - [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5344), - [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6257), - [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1133), - [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2752), - [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3568), - [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2625), - [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5202), - [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6181), - [877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3661), - [880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5150), - [883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5354), - [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2123), - [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2145), - [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(799), - [895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(799), - [898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(827), - [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(819), - [904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1700), - [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1700), - [910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1863), - [913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7551), - [916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2085), - [919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6315), - [922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1418), - [925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6071), - [928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5780), - [931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7607), - [934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1704), - [937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4711), - [940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7627), - [943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, 0, 21), - [945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, 0, 21), - [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5541), - [949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1, 0, 0), - [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1, 0, 0), - [953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), - [955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), - [957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5541), - [960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 101), - [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 101), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 100), - [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 100), - [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1, 0, 0), - [974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1, 0, 0), - [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__str_double_quotes, 3, 0, 0), - [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3, 0, 0), - [984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw_str, 3, 0, 0), - [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw_str, 3, 0, 0), - [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 147), - [990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 147), - [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 146), - [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 146), - [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), - [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), - [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 3, 0, 21), - [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 3, 0, 21), - [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), - [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), - [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), - [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), - [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), - [1021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), - [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6363), - [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), - [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6404), - [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [1048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4626), - [1051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4626), - [1054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(847), - [1057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(53), - [1060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6363), - [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7815), - [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5029), - [1069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5040), - [1072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6124), - [1075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1943), - [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1232), - [1081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7), - [1084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5344), - [1087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6257), - [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1143), - [1093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3661), - [1096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5150), - [1099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5354), - [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2123), - [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2145), - [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(812), - [1111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(812), - [1114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(838), - [1117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(824), - [1120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1700), - [1123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1700), - [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1863), - [1129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7551), - [1132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2085), - [1135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6315), - [1138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1418), - [1141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6071), - [1144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5780), - [1147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7607), - [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1704), - [1153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4711), - [1156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7627), - [1159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4626), - [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4626), - [1165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(847), - [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(53), - [1171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6363), - [1174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7815), - [1177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4776), - [1180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4777), - [1183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5048), - [1186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2109), - [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1232), - [1192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7), - [1195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5344), - [1198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7419), - [1201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1143), - [1204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3823), - [1207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5150), - [1210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5354), - [1213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2123), - [1216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2145), - [1219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(812), - [1222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(812), - [1225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(838), - [1228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(824), - [1231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1700), - [1234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1700), - [1237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1863), - [1240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7551), - [1243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2085), - [1246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6315), - [1249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1418), - [1252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6071), - [1255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5780), - [1258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7607), - [1261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1746), - [1264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4514), - [1267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7627), - [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6507), - [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6183), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7498), - [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), - [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), - [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), - [1300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(201), - [1303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [1306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), - [1311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), - [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7600), - [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6550), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7725), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [1329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7600), - [1332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(4683), - [1335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(4683), - [1338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(70), - [1341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6550), - [1344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7865), - [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), - [1349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(93), - [1352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7725), - [1355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3623), - [1358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3623), - [1361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3641), - [1364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3629), - [1367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(1700), - [1370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(1700), - [1373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6183), - [1376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3668), - [1379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6071), - [1382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(5780), - [1385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(193), - [1388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7498), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), - [1395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7605), - [1398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(4683), - [1401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(4683), - [1404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(70), - [1407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6507), - [1410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7865), - [1413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(65), - [1416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7692), - [1419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3623), - [1422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3623), - [1425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3641), - [1428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3629), - [1431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(1700), - [1434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(1700), - [1437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6183), - [1440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3668), - [1443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6071), - [1446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5780), - [1449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(194), - [1452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7498), - [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), - [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), - [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 4, 0, 0), - [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 39), - [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6571), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 39), - [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 2, 0, 0), - [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, 0, 0), - [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), - [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), - [1485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(300), - [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3, 0, 0), - [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), - [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), - [1494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1845), - [1497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(336), - [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 38), - [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 38), - [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6568), - [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6574), - [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 133), - [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 133), - [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 4, 0, 0), - [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), - [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), - [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), - [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), - [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [1572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(314), - [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [1593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(313), - [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), - [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), - [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 132), - [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 132), - [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 3, 0, 0), - [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 3, 0, 0), - [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), - [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 130), - [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 130), - [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1, 0, 0), - [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1, 0, 0), - [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 131), - [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 131), - [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6263), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7825), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7465), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5036), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5037), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6603), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7350), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5093), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5370), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7405), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5249), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6232), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7655), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6264), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5965), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7454), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7647), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5633), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5847), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5848), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5849), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4634), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7016), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6520), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7306), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7451), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4778), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4779), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5967), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7543), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7020), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4781), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5330), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7023), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5171), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5972), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7699), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7518), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7539), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6297), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6086), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5709), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7741), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7614), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5656), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5892), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5895), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5697), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6956), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6296), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7429), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4743), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4928), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6000), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7701), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7041), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4886), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7135), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5164), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6072), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7684), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5832), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5842), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5982), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5994), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5997), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4599), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7446), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7507), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7803), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4745), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4773), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6699), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7356), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5022), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7416), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6174), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5753), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6025), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6067), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6120), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5019), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5020), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5948), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6698), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4069), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5288), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6995), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3892), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3997), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7640), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7514), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7713), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, 0, 0), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1, 0, 0), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5913), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6039), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6040), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6041), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 1, 0, 0), + [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5915), + [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2662), + [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6079), + [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6080), + [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6081), + [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4599), + [617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4599), + [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2538), + [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7446), + [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2654), + [629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2659), + [632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2795), + [635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(845), + [638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(50), + [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6296), + [644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7507), + [647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7803), + [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4745), + [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4773), + [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6699), + [659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7356), + [662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2399), + [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5022), + [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2408), + [671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1242), + [674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8), + [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5330), + [680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7416), + [683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1163), + [686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2797), + [689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2665), + [692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5201), + [695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6174), + [698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3835), + [701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5151), + [704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5326), + [707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2108), + [710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1990), + [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(770), + [716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(770), + [719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(813), + [722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(798), + [725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1532), + [728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1532), + [731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1698), + [734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7539), + [737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2105), + [740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6297), + [743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1392), + [746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6086), + [749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5709), + [752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7454), + [755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1756), + [758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4539), + [761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7614), + [764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5920), + [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2666), + [770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6138), + [773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6139), + [776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6140), + [779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4599), + [782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4599), + [785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2538), + [788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7446), + [791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2654), + [794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2659), + [797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2795), + [800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(845), + [803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(50), + [806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6296), + [809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7507), + [812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7803), + [815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5019), + [818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5020), + [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6699), + [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7356), + [827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2399), + [830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5948), + [833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2136), + [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1242), + [839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8), + [842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5330), + [845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6698), + [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1163), + [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2797), + [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2665), + [857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5201), + [860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6174), + [863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3789), + [866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5151), + [869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5326), + [872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2108), + [875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1990), + [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(770), + [881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(770), + [884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(813), + [887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(798), + [890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1532), + [893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1532), + [896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1698), + [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7539), + [902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2105), + [905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6297), + [908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1392), + [911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6086), + [914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5709), + [917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7454), + [920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1931), + [923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4601), + [926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7614), + [929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, 0, 21), + [931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, 0, 21), + [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5559), + [935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), + [937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), + [939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5559), + [942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1, 0, 0), + [944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1, 0, 0), + [946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3, 0, 0), + [948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3, 0, 0), + [950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 96), + [952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 96), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1, 0, 0), + [958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1, 0, 0), + [960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 2, 0, 0), + [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 2, 0, 0), + [964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw_str, 3, 0, 0), + [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw_str, 3, 0, 0), + [968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 97), + [970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 97), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 143), + [976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 143), + [978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 142), + [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 142), + [982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), + [984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), + [986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 3, 0, 21), + [988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 3, 0, 21), + [990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), + [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), + [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), + [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [1002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), + [1004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), + [1007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), + [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6327), + [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6359), + [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4599), + [1037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4599), + [1040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(845), + [1043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(50), + [1046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6327), + [1049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7803), + [1052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4745), + [1055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4773), + [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5022), + [1061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2407), + [1064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1242), + [1067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(8), + [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5330), + [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7416), + [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1176), + [1079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3835), + [1082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5151), + [1085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5326), + [1088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2108), + [1091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1990), + [1094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(797), + [1097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(797), + [1100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(830), + [1103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(818), + [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1532), + [1109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1532), + [1112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1698), + [1115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7539), + [1118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2105), + [1121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6297), + [1124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1392), + [1127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6086), + [1130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5709), + [1133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7454), + [1136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1756), + [1139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4539), + [1142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7614), + [1145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4599), + [1148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4599), + [1151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(845), + [1154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(50), + [1157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6327), + [1160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7803), + [1163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5019), + [1166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5020), + [1169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5948), + [1172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2134), + [1175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1242), + [1178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(8), + [1181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5330), + [1184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6698), + [1187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1176), + [1190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3789), + [1193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5151), + [1196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5326), + [1199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2108), + [1202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1990), + [1205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(797), + [1208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(797), + [1211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(830), + [1214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(818), + [1217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1532), + [1220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1532), + [1223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1698), + [1226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7539), + [1229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2105), + [1232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6297), + [1235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1392), + [1238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6086), + [1241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5709), + [1244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7454), + [1247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1931), + [1250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4601), + [1253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7614), + [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6456), + [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), + [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6176), + [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7501), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5885), + [1282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [1285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), + [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), + [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), + [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), + [1298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(201), + [1301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 51), SHIFT_REPEAT(7592), + [1304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 51), SHIFT_REPEAT(4634), + [1307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 51), SHIFT_REPEAT(4634), + [1310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 51), SHIFT_REPEAT(89), + [1313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 51), SHIFT_REPEAT(6506), + [1316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 51), SHIFT_REPEAT(7699), + [1319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 51), + [1321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 51), SHIFT_REPEAT(84), + [1324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 51), SHIFT_REPEAT(7690), + [1327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 51), SHIFT_REPEAT(3613), + [1330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 51), SHIFT_REPEAT(3613), + [1333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 51), SHIFT_REPEAT(3636), + [1336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 51), SHIFT_REPEAT(3626), + [1339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 51), SHIFT_REPEAT(1532), + [1342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 51), SHIFT_REPEAT(1532), + [1345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 51), SHIFT_REPEAT(6176), + [1348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 51), SHIFT_REPEAT(3793), + [1351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 51), SHIFT_REPEAT(6086), + [1354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 51), SHIFT_REPEAT(5709), + [1357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 51), SHIFT_REPEAT(195), + [1360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 51), SHIFT_REPEAT(7501), + [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7592), + [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6506), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7690), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), + [1381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(7701), + [1384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4634), + [1387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4634), + [1390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(89), + [1393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(6456), + [1396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(7699), + [1399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(80), + [1402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(7684), + [1405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(3613), + [1408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(3613), + [1411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(3636), + [1414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(3626), + [1417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(1532), + [1420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(1532), + [1423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(6176), + [1426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(3793), + [1429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(6086), + [1432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(5709), + [1435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(197), + [1438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(7501), + [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 37), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6530), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 37), + [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 2, 0, 0), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), + [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), + [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, 0, 0), + [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), + [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), + [1499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(308), + [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3, 0, 0), + [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), + [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), + [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), + [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), + [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 4, 0, 0), + [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 36), + [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 36), + [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6527), + [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6533), + [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 129), + [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 129), + [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 4, 0, 0), + [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 126), + [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 126), + [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 127), + [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 127), + [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 128), + [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 128), + [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), + [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), + [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 3, 0, 0), + [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 3, 0, 0), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [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(1677), + [1633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(365), + [1636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(321), + [1639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1, 0, 0), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1, 0, 0), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [1655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(326), + [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), + [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), + [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5562), [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2, 0, 0), [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2, 0, 0), - [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 3, 0, 0), - [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 3, 0, 0), - [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [1690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [1693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2, 0, 0), - [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2, 0, 0), - [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), - [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), - [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5544), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 2, 0, 0), - [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), - [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), - [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), - [1723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 4, 0, 0), - [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 4, 0, 0), - [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3, 0, 0), - [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3, 0, 0), - [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4, 0, 0), - [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4, 0, 0), - [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), - [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), - [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3, 0, 0), - [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3, 0, 0), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5543), - [1795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5544), - [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [1802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 23), - [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 2, 0, 0), - [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5402), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), - [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 23), - [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 86), - [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 3, 0, 0), - [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 86), - [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 3, 0, 0), - [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [1832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5543), - [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 4, 0, 0), - [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 4, 0, 0), - [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 2, 0, 21), - [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 2, 0, 21), - [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5542), - [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 3, 0, 0), - [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 3, 0, 0), - [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, 0, 0), - [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, 0, 0), - [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 = true}}, SHIFT(456), - [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5400), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), - [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), - [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [1891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 102), - [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 102), - [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2, 0, 0), - [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), - [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 212), - [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 212), - [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 148), - [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 148), - [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 151), - [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 151), - [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 148), - [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 148), - [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), - [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), - [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 182), - [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 182), - [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 183), - [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 183), - [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 184), - [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 184), - [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 182), - [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 182), - [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), - [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), - [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 210), - [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 210), - [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 183), - [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 183), - [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 184), - [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 184), - [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 211), - [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 211), - [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 212), - [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 212), - [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 210), - [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 210), - [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 211), - [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 211), - [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5538), - [1975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 2, 0, 0), - [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 2, 0, 0), - [1979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 230), - [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 230), - [1983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 230), - [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 230), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), - [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), - [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), - [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), - [2001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5538), - [2004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5542), - [2007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 118), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 118), - [2015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), - [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), - [2019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 83), - [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 83), - [2027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 84), - [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 84), - [2035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 85), - [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 85), + [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), + [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), + [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [1684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4, 0, 0), + [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4, 0, 0), + [1693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 2, 0, 0), + [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 3, 0, 0), + [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 3, 0, 0), + [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), + [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), + [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5561), + [1763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5562), + [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2, 0, 0), + [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2, 0, 0), + [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 4, 0, 0), + [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 4, 0, 0), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [1790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 4, 0, 0), + [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 4, 0, 0), + [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [1806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 23), + [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 2, 0, 0), + [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5342), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), + [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 23), + [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 82), + [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 3, 0, 0), + [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 82), + [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 3, 0, 0), + [1828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5561), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 179), + [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 179), + [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5560), + [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 144), + [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 144), + [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 178), + [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 178), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 179), + [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 179), + [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 180), + [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 180), + [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 180), + [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 180), + [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 207), + [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 207), + [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 178), + [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 178), + [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 208), + [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 208), + [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 206), + [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 206), + [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 207), + [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 207), + [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), + [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), + [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 226), + [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 226), + [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 208), + [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 208), + [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 226), + [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 226), + [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 147), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 147), + [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5340), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), + [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), + [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5556), + [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 2, 0, 0), + [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 2, 0, 0), + [1931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 98), + [1933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 98), + [1935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 3, 0, 0), + [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 3, 0, 0), + [1939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 144), + [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 144), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2, 0, 0), + [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), + [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), + [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), + [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 2, 0, 21), + [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 2, 0, 21), + [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), + [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), + [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, 0, 0), + [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, 0, 0), + [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 206), + [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 206), + [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 80), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 80), + [1985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 81), + [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 81), + [1993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5560), + [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 109), + [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 109), + [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [2014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 114), + [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 114), + [2018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 4, 0, 159), + [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 4, 0, 159), + [2022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), + [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), + [2026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), + [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), + [2030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 79), + [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 79), + [2038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5556), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), [2043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 22), - [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5397), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5335), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 22), - [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [2057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 4, 0, 163), - [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 4, 0, 163), - [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 113), - [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 113), - [2065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), REDUCE(aux_sym_command_repeat1, 1, 0, 0), - [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), - [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6465), - [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4258), - [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), - [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), - [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5255), - [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5287), - [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4451), - [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4446), - [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7847), - [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), - [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3979), - [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), - [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4583), - [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4506), - [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4512), - [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7656), - [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4452), - [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6388), - [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4058), - [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5955), - [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5863), - [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), - [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7050), - [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4516), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7668), - [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1, 0, 0), - [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), - [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1, 0, 0), - [2134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), - [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, 0, 40), - [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 50), - [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, 0, 40), - [2142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 50), - [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, 0, 40), - [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, 0, 40), - [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1, 0, 0), - [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1, 0, 0), - [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5395), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), - [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 173), - [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 5, 0, 0), - [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 173), - [2178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 5, 0, 0), - [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [2184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), - [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), - [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [2192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 103), - [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 103), - [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), - [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), - [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 103), - [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 103), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 14), - [2208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 14), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), - [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [2220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 39), - [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 39), - [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 122), - [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 4, 0, 0), - [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 122), - [2230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 1, 0, 0), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6934), - [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 1, 0, 0), - [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6435), - [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), - [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), - [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), - [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5207), - [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5208), - [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4478), - [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4504), - [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7530), - [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3958), - [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), - [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3982), - [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4788), - [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4691), - [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4561), - [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7629), - [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4479), - [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6342), - [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), - [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6164), - [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5794), - [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7058), - [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4681), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7465), - [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), - [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), - [2296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), - [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), - [2304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), - [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 1, 0, 19), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [2320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, 0, 127), - [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, 0, 127), - [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 102), - [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 102), - [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 151), - [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 151), - [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 148), - [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 148), - [2336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 182), - [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 182), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [2342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 183), - [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 183), - [2346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 184), - [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 184), - [2350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 210), - [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 210), - [2354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 211), - [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 211), - [2358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 212), - [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 212), - [2362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 10, 0, 230), - [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 10, 0, 230), - [2366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, 0, 6), - [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, 0, 6), - [2370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), - [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), - [2374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), - [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), - [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, 0, 70), - [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, 0, 70), - [2382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, 0, 70), - [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, 0, 70), - [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 38), - [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 38), - [2390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 119), - [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 119), - [2394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 120), - [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 120), - [2398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 121), - [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 121), - [2402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 4, 0, 0), - [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 4, 0, 0), - [2406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 166), - [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 166), - [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 167), - [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 167), - [2414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3, 0, 0), - [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3, 0, 0), - [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 169), - [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 169), - [2422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 170), - [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 170), - [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 171), - [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 171), - [2430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 172), - [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 172), - [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 19), - [2436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 51), - [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 19), - [2440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 52), - [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 3, 0, 21), - [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 3, 0, 21), - [2446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 0), - [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 0), - [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 19), - [2452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 117), - [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 117), - [2456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, 0, 0), - [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, 0, 0), - [2460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 0), - [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 0), - [2464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), - [2466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), - [2468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 5, 0, 164), - [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 5, 0, 164), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6911), - [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 4, 0, 104), - [2478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, 0, 0), - [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, 0, 0), - [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), - [2484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(736), - [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), - [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1, 0, 0), - [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), - [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 17), - [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 17), - [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 18), - [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 18), - [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2, 0, 0), - [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2, 0, 0), - [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 168), - [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 168), - [2509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(752), - [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 0), - [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 0), - [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 19), - [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 19), - [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), - [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), - [2524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(1845), - [2527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(776), - [2530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), - [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [2538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), - [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), - [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), - [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6556), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), - [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7721), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6551), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6155), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7404), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7404), - [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7798), - [2608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(771), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [2613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 3, 0, 0), SHIFT(2918), - [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 3, 0, 0), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6540), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5294), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7682), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6466), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), - [2664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7369), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7369), - [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7733), - [2672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(2918), - [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), - [2677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(836), - [2680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(47), - [2683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6540), - [2686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1562), - [2689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1547), - [2692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(15), - [2695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5294), - [2698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5297), - [2701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1586), - [2704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1598), - [2707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1233), - [2710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1233), - [2713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1318), - [2716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1241), - [2719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1725), - [2722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1644), - [2725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1638), - [2728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7682), - [2731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1575), - [2734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6466), - [2737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1731), - [2740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6077), - [2743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5742), - [2746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7369), - [2749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7369), - [2752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1660), - [2755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7733), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [2762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 5, 0, 0), SHIFT(2918), - [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 5, 0, 0), - [2767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 4, 0, 0), SHIFT(2918), - [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 4, 0, 0), - [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), - [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), - [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 2, 0, 0), - [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 3, 0, 0), - [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 4, 0, 0), - [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), - [2788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(836), - [2791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(47), - [2794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6540), - [2797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1562), - [2800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1547), - [2803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(15), - [2806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5294), - [2809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5297), - [2812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1586), - [2815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1598), - [2818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1233), - [2821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1233), - [2824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1318), - [2827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1241), - [2830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1725), - [2833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1644), - [2836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1638), - [2839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7682), - [2842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1575), - [2845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6466), - [2848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1731), - [2851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6077), - [2854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5742), - [2857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7369), - [2860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7369), - [2863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1660), - [2866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7733), - [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), - [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6480), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5193), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [2893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), - [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7609), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6405), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5979), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5902), - [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7681), - [2923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [2943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [2949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(850), - [2952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(55), - [2955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6480), - [2958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1661), - [2961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1697), - [2964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(10), - [2967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5193), - [2970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5201), - [2973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1669), - [2976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1631), - [2979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1253), - [2982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1253), - [2985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1346), - [2988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1337), - [2991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1901), - [2994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1795), - [2997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1796), - [3000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7609), - [3003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1670), - [3006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6405), - [3009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1876), - [3012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5979), - [3015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5902), - [3018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1714), - [3021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7681), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7515), - [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7515), - [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4589), - [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7767), - [3056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7767), - [3058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4652), - [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7494), - [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7494), - [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4844), - [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [3090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6279), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5225), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6506), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6392), - [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4988), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7033), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6953), - [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6612), - [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7517), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6510), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6281), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), - [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6969), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7606), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5685), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5454), - [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6027), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7560), - [3188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7560), - [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4622), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7864), - [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7864), - [3196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4670), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7467), - [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7467), - [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4842), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5286), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [3230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(833), - [3233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(46), - [3236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6279), - [3239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5), - [3242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5225), - [3245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(65), - [3248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5226), - [3251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6506), - [3254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6392), - [3257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7692), - [3260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(4988), - [3263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(4988), - [3266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5191), - [3269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5170), - [3272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7033), - [3275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6953), - [3278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6612), - [3281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7517), - [3284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6510), - [3287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6281), - [3290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5195), - [3293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6155), - [3296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5745), - [3299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(832), - [3302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7404), - [3305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7404), - [3308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6969), - [3311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7606), - [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5292), - [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), - [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5300), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5296), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), - [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), - [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5211), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 1, 0, 0), - [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7419), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [3412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5305), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), - [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7322), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6340), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5302), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), - [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3892), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), - [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3896), - [3492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), - [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [3498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), - [3500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), - [3502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1142), - [3505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1142), - [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), - [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6591), - [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5298), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), - [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3909), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), - [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), - [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [3540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), - [3542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1150), - [3545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), - [3547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), - [3553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(1160), - [3556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7607), - [3559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(7607), - [3562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [3566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), - [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), - [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6653), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5213), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), - [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3985), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), - [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4230), - [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7669), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6494), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), - [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7394), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7394), - [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4877), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7756), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6363), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), - [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7145), - [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5204), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6190), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6495), - [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5161), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5405), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6634), - [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6677), - [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), - [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), - [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5288), - [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), - [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7757), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6579), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6161), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), - [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7808), - [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5212), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6276), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6671), - [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5182), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7006), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6191), - [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7250), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5260), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7747), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6563), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6152), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), - [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7802), - [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [3820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7279), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6547), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5021), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), - [3860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7695), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6538), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [3868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7794), - [3872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [3878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1207), - [3881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(53), - [3884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6363), - [3887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(202), - [3890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7145), - [3893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5204), - [3896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5205), - [3899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6190), - [3902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6495), - [3905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5161), - [3908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5161), - [3911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5405), - [3914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5313), - [3917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1700), - [3920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6634), - [3923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1863), - [3926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7551), - [3929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6677), - [3932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6315), - [3935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1418), - [3938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7369), - [3941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7369), - [3944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(3896), - [3947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7627), - [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5324), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7413), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7437), - [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5383), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5630), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7336), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7415), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4969), - [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [4006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [4012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5489), - [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6493), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [4026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7765), - [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5729), - [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), - [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7639), - [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6543), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5836), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5838), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), - [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5036), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5956), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6481), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), - [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6678), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7746), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6537), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [4102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5810), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), - [4106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5116), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6001), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6055), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5728), - [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6387), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [4132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [4140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4981), - [4142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5489), - [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7868), - [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5864), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5865), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [4171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [4173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [4183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [4203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7626), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7620), - [4217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6531), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [4221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5795), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5802), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [4229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), - [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7642), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6436), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6023), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), - [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7707), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7563), - [4263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6553), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [4267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5906), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5907), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [4275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [4287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), - [4289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7708), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6541), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6139), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), - [4301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7795), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6773), - [4307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5115), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7840), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [4315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5703), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6342), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6164), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7506), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [4349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5715), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6727), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7135), - [4357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5219), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6983), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6878), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6388), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7539), - [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6520), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5811), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), - [4409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4572), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5781), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), - [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5645), - [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7734), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5677), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6420), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6006), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7694), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), - [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4511), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), - [4453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [4457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5531), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [4465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5597), - [4467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [4471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [4479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [4487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [4489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(1217), - [4492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), - [4494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(48), - [4497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(6547), - [4500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(205), - [4503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(5198), - [4506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(5254), - [4509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(3046), - [4512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(3058), - [4515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(2598), - [4518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(2598), - [4521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(2745), - [4524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(2666), - [4527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(3160), - [4530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(3051), - [4533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(3095), - [4536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(7695), - [4539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(3060), - [4542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(6538), - [4545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(3174), - [4548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(7404), - [4551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(7404), - [4554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(3177), - [4557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(7794), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [4562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [4570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5570), - [4572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5518), - [4574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5252), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7146), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6962), - [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5244), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7020), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7209), - [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [4616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5597), - [4619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5531), - [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5681), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5740), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [4630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [4632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [4644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [4648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [4652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5386), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [4662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [4672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5570), - [4675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5518), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6404), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5522), - [4698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [4704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [4712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [4720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [4724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), - [4726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5330), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [4740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [4744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [4748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), - [4750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5496), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [4754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [4758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5382), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [4766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [4772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [4776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [4780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [4782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), - [4784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), - [4786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [4794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [4798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [4804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [4808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [4812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [4816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5522), - [4819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [4827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [4831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [4839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 1, 0, 0), - [4841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 1, 0, 0), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [4845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [4847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [4851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5496), - [4854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [4858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [4860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1, 0, 0), - [4862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1, 0, 0), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [4870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 31), - [4872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 31), - [4874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), - [4876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), - [4878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 103), - [4880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 103), - [4882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), - [4884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), - [4886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 103), - [4888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 103), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [4892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), - [4894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), - [4896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [4900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [4904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), - [4914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5360), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), - [4918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), - [4920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [4928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [4932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [4936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [4940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), - [4944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 15), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6266), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [4956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5594), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [4960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), - [4962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6787), - [4966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [4970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 21), - [4972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 21), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [4984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 21), - [4986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 21), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [4990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 2, 0, 29), - [4992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), - [4994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), - [4996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [5000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 31), - [5002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 31), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [5008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5594), - [5011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 185), - [5017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 185), - [5019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 43), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [5023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [5027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5901), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5901), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7137), - [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 140), - [5037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 140), - [5039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 141), - [5041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 141), - [5043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [5046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [5049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [5053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 95), - [5055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 95), - [5057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 96), - [5059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 96), - [5061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5378), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [5067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 140), - [5069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 140), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [5075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 141), - [5077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 141), - [5079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1, 0, 0), - [5081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag, 1, 0, 0), - [5083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 10, 0), - [5085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 10, 0), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [5091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), - [5093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 0, 0), - [5095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 95), - [5097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 95), - [5099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 96), - [5101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 96), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6979), - [5107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(1845), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [5112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [5114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [5116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 82), - [5118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 82), - [5120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5343), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7293), - [5134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5328), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), - [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [5142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [5146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [5154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [5156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [5158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [5160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [5162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5368), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), - [5166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [5170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 192), - [5172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 192), - [5174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), - [5176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), - [5180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), - [5182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [5186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), - [5188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7519), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7624), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [5212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [5215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), - [5217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [5219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [5221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7836), - [5227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [5231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5373), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), + [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 14), + [2063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 14), + [2065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1, 0, 0), + [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), + [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1, 0, 0), + [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), + [2073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, 0, 38), + [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 48), + [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, 0, 38), + [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 48), + [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, 0, 38), + [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, 0, 38), + [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1, 0, 0), + [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1, 0, 0), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), REDUCE(aux_sym_command_repeat1, 1, 0, 0), + [2102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), + [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6419), + [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), + [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4295), + [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), + [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5198), + [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5246), + [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4395), + [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4274), + [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7811), + [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), + [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4003), + [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3950), + [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4600), + [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4477), + [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), + [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7644), + [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4397), + [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6344), + [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4059), + [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6096), + [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5755), + [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [2154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), + [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7037), + [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7656), + [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), + [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 37), + [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 37), + [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 118), + [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 4, 0, 0), + [2172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 118), + [2174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), + [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), + [2178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 99), + [2180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 99), + [2182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), + [2184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), + [2186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 99), + [2188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 99), + [2190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 169), + [2192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 5, 0, 0), + [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 169), + [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 5, 0, 0), + [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5333), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 1, 0, 19), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6389), + [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4525), + [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4475), + [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5258), + [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5267), + [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4545), + [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4546), + [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7664), + [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), + [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4031), + [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), + [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4819), + [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4718), + [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), + [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7616), + [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), + [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6310), + [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), + [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5941), + [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5733), + [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7108), + [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4655), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7629), + [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), + [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), + [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 1, 0, 0), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6927), + [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 1, 0, 0), + [2298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), + [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), + [2302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), + [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), + [2306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 98), + [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 98), + [2310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 178), + [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 178), + [2314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 179), + [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 179), + [2318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2, 0, 0), + [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2, 0, 0), + [2322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 113), + [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 113), + [2326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, 0, 0), + [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, 0, 0), + [2330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 180), + [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 180), + [2334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 0), + [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 0), + [2338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, 0, 66), + [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, 0, 66), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, 0, 66), + [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, 0, 66), + [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 19), + [2350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 19), + [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 19), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [2356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 115), + [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 115), + [2360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 116), + [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 116), + [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 5, 0, 160), + [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 5, 0, 160), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6906), + [2370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 117), + [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 117), + [2374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 36), + [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 36), + [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), + [2380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(686), + [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), + [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 0), + [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 0), + [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 206), + [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 206), + [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 207), + [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 207), + [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 17), + [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 17), + [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 18), + [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 18), + [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 49), + [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 144), + [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 144), + [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 4, 0, 100), + [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, 0, 0), + [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, 0, 0), + [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 4, 0, 0), + [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 4, 0, 0), + [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 208), + [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 208), + [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 163), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 163), + [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1, 0, 0), + [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), + [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 164), + [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 164), + [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 10, 0, 226), + [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 10, 0, 226), + [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, 0, 6), + [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, 0, 6), + [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3, 0, 0), + [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3, 0, 0), + [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 165), + [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 165), + [2453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 162), + [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 162), + [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, 0, 123), + [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, 0, 123), + [2461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 166), + [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 166), + [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 3, 0, 21), + [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 3, 0, 21), + [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), + [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), + [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 167), + [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 167), + [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 168), + [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 168), + [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 147), + [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 147), + [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 50), + [2495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 0), + [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 0), + [2499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(754), + [2502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 19), + [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 19), + [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), + [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), + [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), + [2572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(1677), + [2575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(820), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7535), + [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7535), + [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4659), + [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7574), + [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7574), + [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4605), + [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7715), + [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7715), + [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4827), + [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5305), + [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6513), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4998), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [2646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), + [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7709), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6507), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6071), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [2674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7340), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7340), + [2678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7786), + [2682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), + [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [2696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(809), + [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), + [2701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(842), + [2704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(47), + [2707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6494), + [2710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1639), + [2713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1604), + [2716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(16), + [2719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5255), + [2722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5259), + [2725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1609), + [2728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1613), + [2731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1256), + [2734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1256), + [2737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1370), + [2740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1286), + [2743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1831), + [2746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1659), + [2749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1745), + [2752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7670), + [2755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1602), + [2758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6420), + [2761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1932), + [2764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6068), + [2767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5801), + [2770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7342), + [2773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7342), + [2776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1720), + [2779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7721), + [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 4, 0, 0), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [2788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6494), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5255), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [2804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [2818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7670), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6420), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6068), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), + [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7342), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7342), + [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7721), + [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), + [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), + [2842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [2846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 4, 0, 0), SHIFT(2896), + [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 4, 0, 0), + [2851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(2896), + [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), + [2856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(842), + [2859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(47), + [2862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6494), + [2865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1639), + [2868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1604), + [2871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(16), + [2874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5255), + [2877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5259), + [2880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1609), + [2883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1613), + [2886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1256), + [2889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1256), + [2892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1370), + [2895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1286), + [2898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1831), + [2901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1659), + [2904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1745), + [2907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7670), + [2910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1602), + [2913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6420), + [2916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1932), + [2919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6068), + [2922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5801), + [2925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7342), + [2928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7342), + [2931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1720), + [2934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7721), + [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 2, 0, 0), + [2939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 3, 0, 0), SHIFT(2896), + [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 3, 0, 0), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 3, 0, 0), + [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), + [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), + [2952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 5, 0, 0), SHIFT(2896), + [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 5, 0, 0), + [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [2965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6431), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5280), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7596), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6360), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), + [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7669), + [3011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(860), + [3014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(56), + [3017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6431), + [3020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1681), + [3023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1662), + [3026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(11), + [3029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5280), + [3032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5294), + [3035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1709), + [3038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1668), + [3041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1266), + [3044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1266), + [3047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1401), + [3050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1357), + [3053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1991), + [3056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1763), + [3059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1871), + [3062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7596), + [3065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1722), + [3068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6360), + [3071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(2054), + [3074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5927), + [3077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5764), + [3080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1957), + [3083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7669), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7576), + [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7576), + [3090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4961), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7766), + [3094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7766), + [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7583), + [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7583), + [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4666), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6268), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5306), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6315), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6679), + [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5034), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6784), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6763), + [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6162), + [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7512), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6691), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6270), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), + [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6766), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7593), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5535), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5937), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5601), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5251), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5245), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5252), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [3236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(856), + [3239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(54), + [3242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(6268), + [3245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(6), + [3248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(5306), + [3251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(80), + [3254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(5190), + [3257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(6315), + [3260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(6679), + [3263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(7684), + [3266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(5034), + [3269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(5034), + [3272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(5290), + [3275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(5174), + [3278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(6784), + [3281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(6763), + [3284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(6162), + [3287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(7512), + [3290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(6691), + [3293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(6270), + [3296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(5291), + [3299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(6071), + [3302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(5710), + [3305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(862), + [3308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(7340), + [3311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(7340), + [3314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(6766), + [3317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(7593), + [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5265), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5272), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5320), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), + [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5244), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [3420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 1, 0, 0), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7416), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5093), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7405), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6551), + [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5185), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3905), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), + [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4033), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6309), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5270), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), + [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3896), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), + [3538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [3544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [3550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), + [3552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1187), + [3555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1187), + [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), + [3560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), + [3562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [3582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [3594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), + [3596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1198), + [3599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), + [3601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(1192), + [3604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(7454), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [3609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), + [3611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7454), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6327), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), + [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7274), + [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5237), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6660), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6446), + [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5170), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6365), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6697), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6630), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5311), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), + [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), + [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3993), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), + [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4204), + [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7657), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6445), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6089), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), + [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7332), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7332), + [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4816), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7744), + [3702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), + [3704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), + [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5289), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6278), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6674), + [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5175), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6942), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6662), + [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7004), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5247), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7745), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6538), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5930), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5827), + [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7796), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5203), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7735), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6521), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6155), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5820), + [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7790), + [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5223), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7412), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7411), + [3830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5374), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7366), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7418), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6876), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6503), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5091), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [3862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), + [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7683), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6490), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [3884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7782), + [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5528), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5054), + [3894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1219), + [3897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(50), + [3900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6327), + [3903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(206), + [3906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7274), + [3909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5237), + [3912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5238), + [3915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6660), + [3918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6446), + [3921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5170), + [3924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5170), + [3927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5327), + [3930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5274), + [3933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1532), + [3936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6365), + [3939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1698), + [3942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7539), + [3945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6697), + [3948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6297), + [3951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1392), + [3954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7342), + [3957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7342), + [3960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(3889), + [3963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7614), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [3978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5528), + [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6444), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5512), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7516), + [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6481), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5736), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [4065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), + [4067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7630), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6390), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5993), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), + [4079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7695), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7768), + [4087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6489), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5711), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5804), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5772), + [4099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5106), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5976), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5805), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6029), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6499), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5746), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), + [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5128), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5975), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6432), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), + [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6690), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7734), + [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5458), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7580), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5065), + [4157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6343), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [4171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [4179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7850), + [4185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5756), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5757), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [4217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6762), + [4221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5000), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7586), + [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6509), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [4231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5765), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [4239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), + [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7696), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6495), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6136), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), + [4265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7783), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7849), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [4277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5775), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6310), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5941), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5733), + [4305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7571), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [4315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5785), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7150), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6849), + [4323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5286), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5519), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5410), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6878), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7078), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6344), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6096), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5755), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7839), + [4361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5795), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5796), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [4369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7509), + [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6470), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [4391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5704), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5705), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5630), + [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4681), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5900), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5661), + [4411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5678), + [4413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7722), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6376), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7682), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5582), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), + [4431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4523), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5590), + [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [4447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), + [4449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5512), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [4462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [4464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [4472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6359), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [4496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5551), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [4508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 51), SHIFT_REPEAT(1224), + [4511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 51), + [4513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 51), SHIFT_REPEAT(48), + [4516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 51), SHIFT_REPEAT(6503), + [4519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 51), SHIFT_REPEAT(204), + [4522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 51), SHIFT_REPEAT(5268), + [4525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 51), SHIFT_REPEAT(5235), + [4528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 51), SHIFT_REPEAT(3068), + [4531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 51), SHIFT_REPEAT(3073), + [4534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 51), SHIFT_REPEAT(2568), + [4537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 51), SHIFT_REPEAT(2568), + [4540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 51), SHIFT_REPEAT(2754), + [4543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 51), SHIFT_REPEAT(2668), + [4546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 51), SHIFT_REPEAT(3209), + [4549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 51), SHIFT_REPEAT(3113), + [4552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 51), SHIFT_REPEAT(3123), + [4555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 51), SHIFT_REPEAT(7683), + [4558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 51), SHIFT_REPEAT(3081), + [4561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 51), SHIFT_REPEAT(6490), + [4564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 51), SHIFT_REPEAT(3169), + [4567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 51), SHIFT_REPEAT(7340), + [4570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 51), SHIFT_REPEAT(7340), + [4573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 51), SHIFT_REPEAT(3163), + [4576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 51), SHIFT_REPEAT(7782), + [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [4593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5458), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [4606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5542), + [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5640), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5894), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [4616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [4632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [4636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [4640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5551), + [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5196), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7199), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6716), + [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5260), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7032), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7013), + [4663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [4667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [4679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5542), + [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [4686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [4690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [4694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [4698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [4702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [4712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [4714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [4724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [4734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5411), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), + [4738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [4742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [4750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [4754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [4758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), + [4760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5544), + [4762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5420), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), + [4766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5458), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [4776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [4780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [4786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [4790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [4794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [4798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [4806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5531), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [4822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [4830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [4834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5544), + [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5588), + [4839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5394), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), + [4843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), + [4845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), + [4847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [4851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [4857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [4861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 1, 0, 0), + [4863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 1, 0, 0), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [4867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [4869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5383), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), + [4873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5531), + [4876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [4880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [4884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(1677), + [4887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), + [4889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), + [4891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 99), + [4893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 99), + [4895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [4897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [4899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 99), + [4901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 99), + [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [4907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [4911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [4915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5588), + [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [4922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), + [4924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), + [4926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 29), + [4928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 29), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [4932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5321), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), + [4936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [4938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1, 0, 0), + [4940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1, 0, 0), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [4944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [4954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [4960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 78), + [4962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 78), + [4964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [4968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 29), + [4970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 29), + [4972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5417), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), + [4976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4159), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), + [4984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 2, 0, 27), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6253), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [4996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [5000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [5004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [5006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [5008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [5010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [5012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [5016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5347), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), + [5020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [5024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), + [5026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7271), + [5030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [5034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 15), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [5040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 181), + [5042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 181), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [5046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [5050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 21), + [5052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 21), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [5056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), + [5058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), + [5060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 21), + [5062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 21), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [5072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5408), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), + [5076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 41), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6785), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), + [5084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [5087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [5090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 78), + [5092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 78), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [5098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 188), + [5100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 188), + [5102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 10, 0), + [5104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 10, 0), + [5106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5707), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6757), + [5114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), + [5116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 0, 0), + [5118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1, 0, 0), + [5120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag, 1, 0, 0), + [5122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 91), + [5124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 91), + [5126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 92), + [5128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 92), + [5130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 136), + [5132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 136), + [5134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 137), + [5136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 137), + [5138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 91), + [5140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 91), + [5142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 92), + [5144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 92), + [5146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 136), + [5148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 136), + [5150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 137), + [5152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 137), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [5156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 151), + [5158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 151), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6991), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [5166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [5168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [5170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 153), + [5172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 153), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [5184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [5187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), + [5189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [5191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [5193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [5197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), + [5199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), + [5201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5390), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), + [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5388), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [5211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 77), + [5213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 77), + [5215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [5219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [5223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [5227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [5231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), + [5233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), [5235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), [5237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), - [5239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5339), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), - [5243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [5247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [5253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), - [5255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), - [5257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 81), - [5259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 81), - [5261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5371), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), - [5265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [5269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), - [5271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), - [5273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [5277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 82), - [5279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 82), - [5281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 192), - [5283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 192), - [5285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 157), - [5287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 157), - [5289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 155), - [5291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 155), - [5293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7151), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7151), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6661), - [5301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 154), - [5303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 154), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [5307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6534), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [5311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5507), - [5313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), - [5315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [5319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 191), - [5321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 191), - [5323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 156), - [5325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 156), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [5329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), - [5331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [5333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), - [5335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), - [5337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 191), - [5339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 191), - [5341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 81), - [5343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 81), - [5345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 154), - [5347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 154), - [5349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 81), - [5351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 81), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6905), - [5355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), SHIFT(1845), - [5358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [5364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [5374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [5382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), - [5384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), - [5386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), - [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), - [5390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 81), SHIFT(1845), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [5397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5507), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [5402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5472), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [5406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), - [5408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [5420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6565), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), - [5426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), - [5428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [5432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [5438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [5442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [5460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 191), SHIFT(1845), - [5463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [5467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [5471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [5475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 154), SHIFT(1845), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [5480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [5486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6859), - [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), - [5512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), - [5514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), - [5516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5472), - [5519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [5525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [5533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6559), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [5541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [5557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [5565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [5571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), - [5573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [5591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [5599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5539), - [5601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), - [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6365), - [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7655), - [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [5615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), - [5617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), - [5619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), - [5621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [5625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), - [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [5629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 145), SHIFT_REPEAT(7151), - [5632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 145), SHIFT_REPEAT(7151), - [5635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 145), SHIFT_REPEAT(3628), - [5638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 145), SHIFT_REPEAT(3788), - [5641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 145), SHIFT_REPEAT(3667), - [5644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 145), SHIFT_REPEAT(6281), - [5647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 145), SHIFT_REPEAT(5195), - [5650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 145), SHIFT_REPEAT(7606), - [5653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), - [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [5657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), - [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [5663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), - [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6692), - [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7548), - [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [5675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 1, 0, 0), - [5677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 1, 0, 0), - [5679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 0), - [5681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 0), - [5683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 7), - [5685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 7), - [5687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 0), - [5689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 0), - [5691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 50), - [5693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 50), - [5695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 8), - [5697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 8), - [5699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 4, 0, 50), - [5701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 4, 0, 50), - [5703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5536), - [5705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5539), - [5708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5529), - [5710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [5714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [5718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 19), - [5720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 19), - [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [5724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 19), - [5726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [5734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [5738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5366), - [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5367), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7433), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7400), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7049), - [5748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5536), - [5751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), - [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [5755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 4, 0, 104), - [5757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2769), - [5760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 51), - [5762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 52), - [5764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5399), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5399), - [5768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), - [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [5772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), - [5774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), - [5776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), - [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [5782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6450), - [5784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5783), - [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), - [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7717), - [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5940), - [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5827), - [5794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), - [5796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [5799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [5801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [5803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), - [5806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5479), - [5808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [5810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [5812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), - [5815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5540), - [5817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), - [5825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), - [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [5829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5529), - [5832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), - [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [5840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2841), - [5843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5534), - [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [5849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), - [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [5855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6689), - [5857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5746), - [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5757), - [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7540), - [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), - [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), - [5867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), - [5869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), - [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [5877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), - [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [5881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5540), - [5884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5537), - [5886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 144), - [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7041), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [5892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 144), - [5894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6269), - [5896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6272), - [5898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6291), - [5900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), - [5902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), - [5904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(2851), - [5907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2918), - [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [5916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6245), - [5918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [5920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 16), - [5922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [5926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 16), - [5928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [5930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [5932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [5935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [5939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2880), - [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [5944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5390), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [5950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6860), - [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [5956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), - [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [5960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 194), - [5962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 194), - [5964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5349), - [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), - [5968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), - [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [5978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), - [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [5982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), - [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [5986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), - [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [5990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2907), - [5993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6754), - [5995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6832), - [5997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [6001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5385), - [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), - [6005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), - [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [6009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5537), - [6012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), - [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7287), - [6018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3013), - [6021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), - [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [6029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), - [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [6033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), - [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [6039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [6043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), - [6045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), - [6047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), - [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [6051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), - [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [6055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), - [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [6065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 19), - [6067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), - [6069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 19), - [6071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), - [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [6075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), - [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [6081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), - [6083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5118), - [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [6087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), - [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6862), - [6091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [6093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [6095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), - [6097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5139), - [6099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5057), - [6101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), - [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [6111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), - [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [6117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), - [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [6121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5130), - [6123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5117), - [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [6127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5137), - [6129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), - [6131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), - [6133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4901), - [6135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4902), - [6137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4906), - [6139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4907), - [6141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4911), - [6143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4912), - [6145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3040), - [6148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [6150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [6154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(3080), - [6157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [6161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), - [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [6171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), - [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [6177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), - [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [6181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [6185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), - [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6817), - [6191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), - [6193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), - [6196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), - [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [6202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3173), - [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [6209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 193), - [6211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 193), - [6213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 111), - [6215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 111), - [6217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 222), - [6219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 222), - [6221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), - [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [6225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 194), - [6227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 194), - [6229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 194), - [6231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 194), - [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [6237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_overlay_hide_repeat1, 2, 0, 0), SHIFT_REPEAT(849), - [6240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_overlay_hide_repeat1, 2, 0, 0), - [6242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_overlay_hide_repeat1, 2, 0, 0), - [6244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_overlay_hide_repeat1, 2, 0, 0), SHIFT_REPEAT(3271), - [6247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_hide_repeat1, 2, 0, 0), SHIFT_REPEAT(3270), - [6250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 110), - [6252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 110), - [6254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), - [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [6258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5527), - [6260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 19), - [6262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 19), - [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [6266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), - [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [6270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5394), - [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), - [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6157), - [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5862), - [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [6292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [6296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5527), - [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [6303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [6307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), - [6310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5389), - [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), - [6314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), - [6316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), - [6318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(3271), - [6321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(3270), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), - [6336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), - [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6839), - [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7652), - [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [6358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_overlay_hide_repeat1, 1, 0, 0), - [6360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_overlay_hide_repeat1, 1, 0, 0), - [6362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [6368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [6378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [6384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [6390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [6400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [6416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [6422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [6426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [6436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [6442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [6446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6237), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [6468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), - [6470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), - [6472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), - [6476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 4, 0, 0), - [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6044), - [6480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 4, 0, 0), - [6482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), - [6484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 178), SHIFT_REPEAT(6157), - [6487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 178), SHIFT_REPEAT(5862), - [6490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 178), SHIFT_REPEAT(5880), - [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), - [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), - [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), - [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [6505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), - [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), - [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [6515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [6521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [6525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [6543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), - [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6340), - [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), - [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6621), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6011), - [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6015), - [6567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [6575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(3590), - [6578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), - [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [6582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6591), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [6590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7631), - [6592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 97), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [6596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7671), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [6602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [6606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7702), - [6608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7849), - [6610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [6614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), - [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [6624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [6630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3605), - [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [6635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), - [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [6639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5381), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), - [6643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), - [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), - [6655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), - [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), - [6663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5401), - [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), - [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), - [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), - [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [6691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), - [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [6695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4219), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6419), - [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [6705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4447), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [6711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3850), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [6715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5329), - [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), - [6719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5392), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), - [6729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [6733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [6737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [6741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [6747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [6755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [6761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [6767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [6777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7862), - [6803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7862), - [6805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), - [6807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3862), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [6811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), - [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7546), - [6817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7546), - [6819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), - [6821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3864), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [6825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7718), - [6831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7718), - [6833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7273), - [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7666), - [6843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7666), - [6845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5806), - [6847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7543), - [6853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7543), - [6855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4096), - [6857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [6863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 2, 0, 0), - [6865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7592), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7592), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [6873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 0), - [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [6883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [6889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [6899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7603), - [6905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7603), - [6907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4107), - [6909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7723), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7723), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [6925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [6931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [6935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 0), - [6937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7593), - [6957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7593), - [6959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6978), - [6961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7617), - [6965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7617), - [6967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5859), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7521), - [6971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7521), - [6973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7772), - [6977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7772), - [6979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), - [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [6983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 1, 0, 0), - [6985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [7003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), - [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), - [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [7011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), - [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), - [7025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [7033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), - [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), - [7037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5552), - [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), - [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), - [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [7047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), - [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), - [7051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), - [7053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), - [7055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), - [7061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5552), - [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), - [7066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [7070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3885), - [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), - [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), - [7078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3907), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), - [7086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), - [7088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4269), - [7090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4168), - [7092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4696), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [7096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4555), - [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [7100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), - [7102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), - [7104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4065), - [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), - [7108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4394), - [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [7114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4831), - [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), - [7118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), - [7120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4536), - [7122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), - [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), - [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), - [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [7130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), - [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), - [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), - [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), - [7138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), - [7140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3933), - [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [7144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), - [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), - [7150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4507), - [7152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3950), - [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), - [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), - [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), - [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), - [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [7166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3995), - [7169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), - [7177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4519), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6653), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [7183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4715), - [7185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), - [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), - [7195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), - [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [7199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5513), - [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), - [7203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), - [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), - [7207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3918), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), - [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), - [7215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4693), - [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [7219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5128), - [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [7223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), - [7225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), - [7227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5396), - [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), - [7231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3887), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [7235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4420), - [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), - [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), - [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), - [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), - [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [7247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), - [7249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), - [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), - [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), - [7255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4031), - [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), - [7259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5513), - [7262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4624), - [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), - [7266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3955), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [7270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4680), - [7272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4682), - [7274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4897), - [7276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5391), - [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), - [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), - [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), - [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), - [7294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), - [7296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3894), - [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [7300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5501), - [7302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3891), - [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), - [7306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5451), - [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), - [7310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), - [7312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), - [7314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3920), - [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), - [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), - [7322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5376), - [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), - [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), - [7330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), - [7332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), - [7334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 62), - [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5014), - [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7340), - [7344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 62), - [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), - [7348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5501), - [7351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), - [7353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4229), - [7355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 81), - [7357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), - [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), - [7361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5413), - [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5413), - [7365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), - [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [7369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), - [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [7373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5346), - [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), - [7377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), - [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), - [7381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4242), - [7383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4247), - [7385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 2, 0, 0), - [7387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 2, 0, 0), - [7389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 82), - [7391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3928), - [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [7395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5423), - [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), - [7399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), - [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [7403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3913), - [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [7407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3915), - [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), - [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), - [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), - [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), - [7417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5451), - [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), - [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), - [7424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4207), - [7426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 3, 0, 0), - [7428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 3, 0, 0), - [7430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5114), - [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), - [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), - [7436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4672), - [7438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4885), - [7440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), - [7442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), - [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), - [7446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), - [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [7450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [7454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3935), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), - [7458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4956), - [7460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5398), - [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5398), - [7464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 59), - [7466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 59), - [7468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 31), - [7470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 31), - [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), - [7474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 116), - [7476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 116), - [7478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 116), - [7480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 116), - [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), - [7484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 62), - [7486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 62), - [7488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 73), - [7490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 73), - [7492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3917), - [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), - [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6760), - [7498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 59), - [7500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 59), - [7502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3990), - [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [7506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5424), - [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), - [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), - [7514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 125), SHIFT(1845), - [7517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 125), - [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), - [7521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 190), - [7523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 106), - [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), - [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), - [7529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), - [7531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), - [7533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4554), - [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [7537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 221), - [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), - [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), - [7545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 125), - [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), - [7551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 189), SHIFT(1845), - [7554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 189), - [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), - [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [7560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 189), - [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [7566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4553), - [7568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 106), - [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), - [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), - [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), - [7578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 125), - [7580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), - [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), - [7584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 190), - [7586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7064), - [7588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [7590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 3), - [7592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [7594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4510), - [7596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4580), - [7598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 221), - [7600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [7602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3947), - [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), - [7606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 221), SHIFT(1845), - [7609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 190), SHIFT(1845), - [7612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3945), - [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [7616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 31), - [7618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 31), - [7620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 32), - [7622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), - [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [7626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 79), - [7628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 79), - [7630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5372), - [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), - [7634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 32), - [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), - [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), - [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), - [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), - [7644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4309), - [7646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4577), - [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [7650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), - [7652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1152), - [7655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3995), - [7658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3502), - [7661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), - [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), - [7665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 32), - [7667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 3, 0, 197), - [7669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 3, 0, 197), - [7671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3973), - [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), - [7675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(4756), - [7678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), - [7680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7625), - [7683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7425), - [7686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7791), - [7689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7866), - [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4756), - [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), - [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7625), - [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7425), - [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7791), - [7704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7866), - [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), - [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), - [7714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 4, 0, 223), - [7716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 4, 0, 223), - [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [7720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4657), - [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), - [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), - [7728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4581), - [7730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4509), - [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), - [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6731), - [7736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4692), - [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [7742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(1845), - [7745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), - [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [7749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 36), - [7751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 37), - [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6655), - [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6656), - [7757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(1845), - [7760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), - [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6199), - [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6200), - [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), - [7770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 72), - [7772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4020), - [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), - [7776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4021), - [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), - [7780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4022), - [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [7784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 80), - [7786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 80), SHIFT_REPEAT(535), - [7789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5387), - [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), - [7793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [7797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 162), - [7799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 162), - [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [7811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 138), - [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [7815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 138), - [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7085), - [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), - [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), - [7823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4571), - [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), - [7827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(290), - [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), - [7832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(292), - [7835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 186), SHIFT(1845), - [7838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 186), - [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [7842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(1845), - [7845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), - [7847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 4, 0, 0), - [7849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 4, 0, 0), - [7851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 24), - [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6255), - [7855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 57), SHIFT(1845), - [7858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 57), - [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [7862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 152), SHIFT(1845), - [7865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 152), - [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [7869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 153), SHIFT(1845), - [7872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 153), - [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [7876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(5896), - [7879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 105), SHIFT(1845), - [7882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 105), - [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5899), - [7886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5837), - [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5837), - [7890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6680), - [7892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6360), - [7894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [7896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 24), SHIFT(1845), - [7899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 24), - [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5919), - [7903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(1845), - [7906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), - [7908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [7912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 36), - [7914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 3), - [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [7918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 72), - [7920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6705), - [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), - [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), - [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), - [7928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 80), - [7930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 80), SHIFT_REPEAT(554), - [7933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 37), - [7935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 3, 0, 72), - [7937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 80), SHIFT_REPEAT(564), - [7940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 80), SHIFT_REPEAT(564), - [7943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 80), - [7945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 74), - [7947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 74), - [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [7951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 75), - [7953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 75), - [7955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 76), - [7957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 76), - [7959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 77), - [7961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 77), - [7963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 78), - [7965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 78), - [7967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 177), - [7969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 177), - [7971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 36), - [7973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 37), - [7975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 3, 0, 129), - [7977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 129), - [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [7981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 93), - [7983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 93), - [7985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(298), - [7988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(282), - [7991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 92), - [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), - [7995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 92), - [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [7999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 152), SHIFT(1845), - [8002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 152), - [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [8006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 153), SHIFT(1845), - [8009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 153), - [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [8013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 186), SHIFT(1845), - [8016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 186), - [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [8020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(5721), - [8023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 1, 0, 3), - [8025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 57), SHIFT(1845), - [8028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 57), - [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [8032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 24), SHIFT(1845), - [8035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 24), - [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5915), - [8039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 105), SHIFT(1845), - [8042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 105), - [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), - [8046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 271), - [8048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 271), - [8050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 278), - [8052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 278), - [8054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 272), - [8056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 272), - [8058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 279), - [8060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 279), - [8062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 2), - [8064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 273), - [8066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 273), - [8068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 274), - [8070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 274), - [8072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 275), - [8074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 275), - [8076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 10, 0, 278), - [8078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 10, 0, 278), - [8080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 10, 0, 279), - [8082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 10, 0, 279), - [8084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 76), - [8086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 76), - [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6493), - [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5778), - [8092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5861), - [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [8096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 57), - [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [8100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 33), - [8102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 33), - [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [8108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), - [8110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), - [8112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), - [8114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), - [8116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 58), - [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), - [8120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 58), - [8122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 200), - [8124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 200), - [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), - [8128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 202), - [8130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 202), - [8132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 205), - [8134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 205), - [8136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6984), - [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), - [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5885), - [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), - [8144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 206), - [8146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 206), - [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [8150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6640), - [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), - [8154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5251), - [8156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5576), - [8158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5355), - [8160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 107), - [8162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 200), - [8164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 200), - [8166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 202), - [8168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 202), - [8170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 224), - [8172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 224), - [8174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 1), - [8176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 5), - [8178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), - [8180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 225), - [8182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 225), - [8184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 226), - [8186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 226), - [8188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 227), - [8190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 227), - [8192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 5, 0, 228), - [8194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 5, 0, 228), - [8196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 2, 0, 0), - [8198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6217), - [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), - [8202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5412), - [8204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5651), - [8206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5569), - [8208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 33), - [8210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 241), - [8212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 241), - [8214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [8216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [8218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 243), - [8220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 243), - [8222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6987), - [8224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 224), - [8226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 224), - [8228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 107), - [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6231), - [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [8234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 225), - [8236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 225), - [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5923), - [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), - [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5961), - [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6238), - [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6239), - [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [8250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 245), - [8252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 245), - [8254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 246), - [8256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 246), - [8258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 226), - [8260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 226), - [8262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 227), - [8264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 227), - [8266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 256), - [8268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 256), - [8270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), - [8272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 241), - [8274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 241), - [8276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 258), - [8278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 258), - [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), - [8282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 109), - [8284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 112), - [8286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 260), - [8288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 260), - [8290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 261), - [8292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 261), - [8294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 123), - [8296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 245), - [8298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 245), - [8300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 246), - [8302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 246), - [8304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 159), - [8306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 160), - [8308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 109), - [8310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 112), - [8312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 262), - [8314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 262), - [8316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 263), - [8318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 263), - [8320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 109), - [8322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 112), - [8324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 256), - [8326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 256), - [8328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 109), - [8330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 112), - [8332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 258), - [8334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 258), - [8336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 270), - [8338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 270), - [8340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 8, 0, 109), - [8342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 8, 0, 112), - [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5465), - [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5466), - [8348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_cmd, 2, 0, 13), - [8350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_cmd, 2, 0, 13), - [8352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 260), - [8354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 260), - [8356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 271), - [8358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 271), - [8360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 261), - [8362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 261), - [8364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 272), - [8366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 272), - [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [8370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 273), - [8372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 273), - [8374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 274), - [8376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 274), - [8378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 262), - [8380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 262), - [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [8390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(258), - [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [8399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(266), - [8402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(268), - [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [8407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(274), - [8410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 94), - [8412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 94), - [8414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 275), - [8416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 275), - [8418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 263), - [8420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 263), - [8422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 270), - [8424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 270), - [8426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 243), - [8428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 243), - [8430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 31), - [8432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 31), - [8434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 276), - [8436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 235), - [8438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 236), - [8440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), - [8442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6547), - [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7664), - [8446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), - [8448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), - [8450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 277), - [8452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), - [8454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 237), - [8456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), - [8458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 238), - [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6418), - [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), - [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6025), - [8466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4991), - [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), - [8470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 239), - [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), - [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), + [5239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 151), + [5241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 151), + [5243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 150), + [5245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 150), + [5247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 187), + [5249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 187), + [5251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 78), + [5253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 78), + [5255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 188), + [5257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 188), + [5259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 152), + [5261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 152), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [5269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7833), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7494), + [5275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 153), + [5277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 153), + [5279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 77), + [5281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 77), + [5283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 150), + [5285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 150), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7806), + [5291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 152), + [5293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 152), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [5297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 77), + [5299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 77), + [5301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 187), + [5303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 187), + [5305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [5311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [5321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [5325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 77), SHIFT(1677), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [5330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [5336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [5368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 187), SHIFT(1677), + [5371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 150), SHIFT(1677), + [5374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 152), SHIFT(1677), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [5379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [5385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [5389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [5407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5407), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), + [5411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6923), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [5419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5539), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [5423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6485), + [5425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7089), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7089), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6597), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6723), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [5437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [5443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [5447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [5467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), + [5469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), + [5471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), + [5473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), + [5475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5518), + [5477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [5481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5539), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [5488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6524), + [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), + [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), + [5496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), + [5498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [5506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), + [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), + [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), + [5512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [5516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), + [5518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [5526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), + [5528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), + [5530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), + [5532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5518), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [5543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), + [5545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6517), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [5557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [5567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [5575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), + [5577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [5585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [5589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [5593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5557), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [5597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [5601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6329), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7643), + [5611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), + [5613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), + [5615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), + [5617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 141), SHIFT_REPEAT(7089), + [5620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 141), SHIFT_REPEAT(7089), + [5623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 141), SHIFT_REPEAT(3628), + [5626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 141), SHIFT_REPEAT(3716), + [5629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 141), SHIFT_REPEAT(3637), + [5632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 141), SHIFT_REPEAT(6270), + [5635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 141), SHIFT_REPEAT(5291), + [5638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 141), SHIFT_REPEAT(7593), + [5641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [5647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 1, 0, 0), + [5649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 1, 0, 0), + [5651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 0), + [5653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 0), + [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [5661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 0), + [5663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 0), + [5665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 48), + [5667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 48), + [5669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 7), + [5671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 7), + [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [5675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 8), + [5677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 8), + [5679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), + [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6676), + [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7536), + [5689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 4, 0, 48), + [5691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 4, 0, 48), + [5693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [5701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5554), + [5703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5557), + [5706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5550), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [5710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6404), + [5712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5724), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5725), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7628), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6017), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), + [5722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), + [5724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [5732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [5735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [5737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), + [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [5741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5554), + [5744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [5752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), + [5754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [5762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5405), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7423), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7371), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6851), + [5772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5339), + [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), + [5776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [5780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), + [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [5784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2788), + [5787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 19), + [5789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 49), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [5793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 19), + [5795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 19), + [5797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 50), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [5805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 4, 0, 100), + [5807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [5811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [5813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [5817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [5819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), + [5822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5522), + [5824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [5826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), + [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [5830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5558), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [5834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6675), + [5836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5868), + [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5869), + [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7493), + [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6113), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), + [5846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [5850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5550), + [5853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), + [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [5857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5553), + [5859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2865), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [5878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), + [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [5882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [5888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), + [5890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), + [5893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), + [5895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [5899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 140), + [5901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6249), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [5905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 140), + [5907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5555), + [5909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6664), + [5911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7075), + [5913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6262), + [5915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6418), + [5917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [5921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), + [5923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [5927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [5931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [5935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [5939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 190), + [5941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 190), + [5943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), + [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [5947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6854), + [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [5953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2896), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [5962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [5966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2894), + [5969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2956), + [5972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [5974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 16), + [5976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [5980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 16), + [5982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [5984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7090), + [5986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7094), + [5988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5558), + [5991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5323), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), + [5995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), + [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [5999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [6001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [6004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [6006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), + [6008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), + [6010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(2838), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [6017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5391), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), + [6021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), + [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7269), + [6027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), + [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [6031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), + [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [6035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [6039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [6043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), + [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [6047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [6053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5555), + [6056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), + [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [6064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), + [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [6068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [6074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), + [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [6078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), + [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [6082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2971), + [6085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5402), + [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), + [6089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 19), + [6091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), + [6093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 19), + [6095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), + [6097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [6101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), + [6103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), + [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [6107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), + [6109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5052), + [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [6113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), + [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [6121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), + [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [6125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(3115), + [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [6132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [6134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [6140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3103), + [6143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5001), + [6145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5002), + [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [6149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), + [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [6155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4882), + [6157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4896), + [6159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [6161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [6163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5030), + [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6859), + [6167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4747), + [6169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5053), + [6171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4748), + [6173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), + [6175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), + [6177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5031), + [6179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4786), + [6181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4792), + [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [6185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), + [6187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), + [6190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), + [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [6196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5332), + [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), + [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6812), + [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [6206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), + [6208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), + [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [6212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3154), + [6215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 218), + [6217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 218), + [6219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), + [6222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 190), + [6224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 190), + [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [6236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 106), + [6238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 106), + [6240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 107), + [6242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 107), + [6244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [6248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), + [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [6252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 189), + [6254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 189), + [6256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_overlay_hide_repeat1, 2, 0, 0), SHIFT_REPEAT(844), + [6259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_overlay_hide_repeat1, 2, 0, 0), + [6261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_overlay_hide_repeat1, 2, 0, 0), + [6263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_overlay_hide_repeat1, 2, 0, 0), SHIFT_REPEAT(3307), + [6266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_hide_repeat1, 2, 0, 0), SHIFT_REPEAT(3305), + [6269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 190), + [6271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 190), + [6273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5322), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), + [6277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5548), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [6289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 19), + [6291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 19), + [6293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), + [6295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), + [6297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(3307), + [6300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(3305), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6066), + [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), + [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5893), + [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [6319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5548), + [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [6324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), + [6326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [6342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [6346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [6350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [6370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [6376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [6380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6836), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [6402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [6408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [6412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7646), + [6434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [6442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [6456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_overlay_hide_repeat1, 1, 0, 0), + [6458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_overlay_hide_repeat1, 1, 0, 0), + [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [6462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [6468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [6472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [6490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), + [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6616), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5951), + [6500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [6504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), + [6506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [6514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 4, 0, 0), + [6516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 4, 0, 0), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [6522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), + [6524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), + [6526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), + [6528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [6532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), + [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [6546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 174), SHIFT_REPEAT(6066), + [6549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 174), SHIFT_REPEAT(5891), + [6552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 174), SHIFT_REPEAT(5893), + [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), + [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [6563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [6567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), + [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [6571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), + [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6567), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5968), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5969), + [6587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), + [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [6595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(3603), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [6600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7549), + [6602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 93), + [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [6606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5393), + [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), + [6610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7468), + [6612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), + [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [6616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7842), + [6618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7688), + [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [6634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), + [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [6638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5341), + [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), + [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [6646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3624), + [6649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [6673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [6677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [6683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5372), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), + [6687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [6693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5329), + [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), + [6697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), + [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [6701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), + [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [6705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7700), + [6711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7700), + [6713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), + [6715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3797), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [6719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [6735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [6745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [6751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [6761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [6779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3813), + [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [6783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), + [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7698), + [6789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7698), + [6791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6865), + [6793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), + [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7572), + [6799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7572), + [6801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), + [6803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7843), + [6809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7843), + [6811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), + [6813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3803), + [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7852), + [6821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7852), + [6823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5750), + [6825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), + [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [6837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6375), + [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [6847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), + [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7542), + [6857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7542), + [6859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7747), + [6863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7747), + [6865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [6869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [6875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [6879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7638), + [6885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7638), + [6887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7530), + [6905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7530), + [6907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5856), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [6911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [6917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [6921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7746), + [6941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7746), + [6943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6994), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [6953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 0), + [6955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7584), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7584), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [6961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 2, 0, 0), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [6965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 1, 0, 0), + [6967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [6977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [6985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), + [6987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7547), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7547), + [6991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 0), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6309), + [6995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), + [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6551), + [7011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4221), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [7031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4305), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3959), + [7037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4079), + [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4018), + [7041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5527), + [7043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3890), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [7047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5527), + [7050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), + [7056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), + [7058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4297), + [7060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4243), + [7062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3882), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), + [7070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), + [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [7080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4551), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [7084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), + [7086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), + [7088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4055), + [7090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4688), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), + [7094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), + [7096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4835), + [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [7102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3924), + [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [7110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), + [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), + [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), + [7118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4023), + [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), + [7124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4198), + [7126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4550), + [7128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4462), + [7130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3920), + [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), + [7140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4521), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), + [7144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3936), + [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6630), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [7152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4578), + [7154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), + [7162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3995), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [7171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3891), + [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), + [7179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4474), + [7181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), + [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), + [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [7189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4977), + [7191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [7199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), + [7201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), + [7203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), + [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), + [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [7215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), + [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [7221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5541), + [7223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5334), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), + [7227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3963), + [7229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4074), + [7231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3913), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), + [7239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4632), + [7241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [7245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4583), + [7247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4585), + [7249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4845), + [7251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), + [7253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5536), + [7255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5541), + [7258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), + [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), + [7266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4685), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), + [7270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5328), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [7278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3887), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), + [7288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5385), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), + [7292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 29), + [7294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 29), + [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), + [7298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5513), + [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), + [7304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 77), + [7306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [7310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3907), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [7314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), + [7316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [7322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 60), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5087), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7425), + [7332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 60), + [7334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4060), + [7336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4184), + [7338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5362), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), + [7342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5536), + [7345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), + [7347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4209), + [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), + [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), + [7355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4162), + [7357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4163), + [7359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [7363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), + [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), + [7367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), + [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), + [7375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 78), + [7377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), + [7379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), + [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), + [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), + [7385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), + [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [7389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 29), + [7391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 29), + [7393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5358), + [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), + [7397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3915), + [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [7401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), + [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [7405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), + [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [7409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5412), + [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), + [7413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4218), + [7415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4224), + [7417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4248), + [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), + [7421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 2, 0, 0), + [7423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 2, 0, 0), + [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [7427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5513), + [7430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3930), + [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), + [7434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 3, 0, 0), + [7436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 3, 0, 0), + [7438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 69), + [7440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 69), + [7442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3916), + [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [7446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), + [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), + [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), + [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), + [7454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 112), + [7456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 112), + [7458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5363), + [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), + [7462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3964), + [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), + [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6759), + [7472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4999), + [7474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 57), + [7476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 57), + [7478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3917), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), + [7482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5338), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), + [7486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 57), + [7488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 57), + [7490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3928), + [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), + [7496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4918), + [7498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 112), + [7500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 112), + [7502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 60), + [7504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 60), + [7506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4722), + [7508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4852), + [7510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3918), + [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), + [7514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 186), + [7516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 217), + [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [7528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4538), + [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), + [7534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5336), + [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), + [7538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 217), + [7540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4463), + [7542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4705), + [7544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3952), + [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [7548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), + [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), + [7552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 185), + [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [7556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4537), + [7558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), + [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [7566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 30), + [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [7570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 121), + [7572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 121), SHIFT(1677), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), + [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), + [7579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 102), + [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), + [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [7585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 121), + [7587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 217), SHIFT(1677), + [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [7598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 102), + [7600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), + [7602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1197), + [7605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3995), + [7608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3542), + [7611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), + [7613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7284), + [7615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [7617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 3), + [7619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [7621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 30), + [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [7625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 121), + [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [7629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 75), + [7631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 75), + [7633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 185), + [7635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [7637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 185), SHIFT(1677), + [7640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 186), + [7642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 186), SHIFT(1677), + [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [7647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4553), + [7649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4716), + [7651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 30), + [7653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 35), + [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [7665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4628), + [7667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3958), + [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [7671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5413), + [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5413), + [7675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), + [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), + [7679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4027), + [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [7683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), + [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), + [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), + [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7573), + [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7452), + [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7575), + [7699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7711), + [7701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(1677), + [7704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), + [7706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(4962), + [7709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), + [7711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7573), + [7714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7452), + [7717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7575), + [7720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7711), + [7723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(1677), + [7726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), + [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [7730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 68), + [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6582), + [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6584), + [7736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 4, 0, 219), + [7738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 4, 0, 219), + [7740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [7742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 158), + [7744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 158), + [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6271), + [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6731), + [7758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4549), + [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), + [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [7764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4631), + [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [7772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 76), + [7774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 76), SHIFT_REPEAT(527), + [7777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 3, 0, 193), + [7779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 3, 0, 193), + [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [7787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 34), + [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), + [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), + [7793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4717), + [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6289), + [7797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 70), + [7799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 70), + [7801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 71), + [7803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 71), + [7805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 72), + [7807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 72), + [7809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 73), + [7811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 73), + [7813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 74), + [7815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 74), + [7817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 55), SHIFT(1677), + [7820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 55), + [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [7824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 148), SHIFT(1677), + [7827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 148), + [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [7831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 76), + [7833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 76), SHIFT_REPEAT(569), + [7836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 3), + [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [7840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 24), + [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6250), + [7844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(1677), + [7847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), + [7849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 88), + [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), + [7853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 88), + [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [7857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 149), SHIFT(1677), + [7860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 149), + [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [7864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [7868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 1, 0, 3), + [7870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 68), + [7872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(226), + [7875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 148), SHIFT(1677), + [7878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 148), + [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [7882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 149), SHIFT(1677), + [7885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 149), + [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [7889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 182), SHIFT(1677), + [7892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 182), + [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [7896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(5836), + [7899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(1677), + [7902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), + [7904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(243), + [7907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5874), + [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5874), + [7911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6191), + [7913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6571), + [7915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), + [7917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(5877), + [7920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 24), SHIFT(1677), + [7923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 24), + [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5865), + [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [7931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 89), + [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [7935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 89), + [7937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 134), + [7939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 134), + [7941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 101), SHIFT(1677), + [7944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 101), + [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), + [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7102), + [7950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 35), + [7952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(237), + [7955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 182), SHIFT(1677), + [7958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 182), + [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [7962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), + [7964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), + [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), + [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), + [7970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 34), + [7972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4668), + [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4984), + [7976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 35), + [7978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 4, 0, 0), + [7980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 4, 0, 0), + [7982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 29), + [7984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 29), + [7986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(235), + [7989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 34), + [7991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6635), + [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), + [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5634), + [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5563), + [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), + [8001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 55), SHIFT(1677), + [8004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 55), + [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [8008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 24), SHIFT(1677), + [8011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 24), + [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5738), + [8015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 101), SHIFT(1677), + [8018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 101), + [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), + [8022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 173), + [8024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 173), + [8026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 3, 0, 68), + [8028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 76), SHIFT_REPEAT(577), + [8031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 76), SHIFT_REPEAT(577), + [8034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 76), + [8036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 3, 0, 125), + [8038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 125), + [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5515), + [8042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 221), + [8044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 221), + [8046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), + [8048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 242), + [8050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 242), + [8052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 259), + [8054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 259), + [8056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 10, 0, 275), + [8058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 10, 0, 275), + [8060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6818), + [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5482), + [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5888), + [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), + [8068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 258), + [8070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 258), + [8072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 90), + [8074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 90), + [8076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 31), + [8078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), + [8080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), + [8082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), + [8084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 1), + [8086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 268), + [8088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 268), + [8090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 105), + [8092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 108), + [8094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 103), + [8096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 108), + [8098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 259), + [8100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 259), + [8102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 252), + [8104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 252), + [8106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 237), + [8108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 237), + [8110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 155), + [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), + [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6607), + [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6026), + [8118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 266), + [8120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 266), + [8122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 156), + [8124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 2), + [8126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 252), + [8128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 252), + [8130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 254), + [8132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 254), + [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6444), + [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5783), + [8138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5843), + [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [8142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 8, 0, 105), + [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [8146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 254), + [8148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 254), + [8150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 196), + [8152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 196), + [8154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 8, 0, 108), + [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [8158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 241), + [8160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 241), + [8162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 239), + [8164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 239), + [8166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 119), + [8168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 55), + [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [8172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 242), + [8174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 242), + [8176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 198), + [8178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 198), + [8180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 220), + [8182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 220), + [8184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), + [8186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), + [8188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 221), + [8190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 221), + [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6647), + [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6655), + [8196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 222), + [8198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 222), + [8200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 257), + [8202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 257), + [8204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 269), + [8206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 269), + [8208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 239), + [8210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 239), + [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [8216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6213), + [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), + [8220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5354), + [8222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5662), + [8224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5576), + [8226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 270), + [8228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 270), + [8230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 258), + [8232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 258), + [8234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6197), + [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), + [8238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5192), + [8240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5538), + [8242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5381), + [8244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [8246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [8248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 266), + [8250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 266), + [8252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 223), + [8254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 223), + [8256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 223), + [8258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 223), + [8260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 5, 0, 224), + [8262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 5, 0, 224), + [8264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 237), + [8266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 237), + [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [8276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(285), + [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [8285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(224), + [8288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(245), + [8291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [8293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 105), + [8295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(252), + [8298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 269), + [8300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 269), + [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4989), + [8304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 270), + [8306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 270), + [8308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 31), + [8310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 5), + [8312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 108), + [8314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 271), + [8316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 271), + [8318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 105), + [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6228), + [8322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 222), + [8324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 222), + [8326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 267), + [8328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 267), + [8330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 108), + [8332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 274), + [8334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 274), + [8336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6926), + [8338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 256), + [8340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 256), + [8342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 267), + [8344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 267), + [8346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 10, 0, 274), + [8348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 10, 0, 274), + [8350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 271), + [8352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 271), + [8354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 268), + [8356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 268), + [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [8360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 196), + [8362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 196), + [8364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 220), + [8366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 220), + [8368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 257), + [8370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 257), + [8372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 105), + [8374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 256), + [8376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 256), + [8378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 198), + [8380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 198), + [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), + [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), + [8386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 275), + [8388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 275), + [8390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 201), + [8392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 201), + [8394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 202), + [8396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 202), + [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [8400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 2, 0, 0), + [8402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 31), + [8404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 241), + [8406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 241), + [8408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 103), + [8410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_cmd, 2, 0, 13), + [8412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_cmd, 2, 0, 13), + [8414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 72), + [8416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 72), + [8418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 56), + [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), + [8422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 56), + [8424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 110), + [8426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 110), + [8428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 111), + [8430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 111), + [8432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 21), + [8434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 21), + [8436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 21), + [8438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 21), + [8440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_hide, 5, 0, 120), + [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), + [8446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5345), + [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5824), + [8450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5824), + [8452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6666), + [8454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6101), + [8456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), + [8458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), + [8460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7320), + [8462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), + [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7541), + [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [8468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6875), + [8470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6503), + [8472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), + [8474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), [8476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), [8478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6010), - [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5816), - [8484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5816), - [8486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6425), - [8488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5938), - [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6038), - [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7067), - [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6626), - [8496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 5, 0, 207), - [8498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 5, 0, 207), - [8500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 60), - [8502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 60), - [8504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), - [8506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5164), - [8508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5227), - [8510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 213), - [8512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 240), - [8514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 214), - [8516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 215), - [8518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 247), - [8520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 20), - [8522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [8524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 61), - [8526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 61), - [8528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 248), - [8530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 63), - [8532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 63), - [8534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 216), - [8536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7289), - [8538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 114), - [8540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 114), - [8542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_hide, 4, 0, 67), - [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5410), - [8548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5404), - [8550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_hide, 4, 0, 124), - [8552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6209), - [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6236), - [8556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 1), - [8558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 249), - [8560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 3, 0, 161), - [8562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 3, 0, 161), - [8564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 250), - [8566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 5), - [8568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5007), - [8570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5220), - [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), - [8574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6022), - [8576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 2), - [8578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 251), - [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), - [8582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5756), - [8584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6372), - [8586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6045), - [8588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 115), - [8590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 115), - [8592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 123), - [8594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 137), - [8596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 137), - [8598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 217), - [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), - [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5639), - [8604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 218), - [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6387), - [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [8610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 21), - [8612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 21), - [8614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_hide, 5, 0, 124), - [8616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 252), - [8618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 253), - [8620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 254), - [8622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5455), - [8625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 255), - [8627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 219), - [8629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 231), - [8631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 220), - [8633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 176), - [8635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 176), - [8637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7364), - [8639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 232), - [8641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 233), - [8643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 21), - [8645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 21), - [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [8655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(231), - [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [8664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(239), - [8667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(241), - [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [8672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(247), - [8675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), - [8677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), - [8679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7374), - [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), - [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6153), - [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5826), - [8687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 159), - [8689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 160), - [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6463), - [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), - [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), - [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5282), - [8699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 234), - [8701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_hide, 3, 0, 67), - [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [8705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6881), - [8707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5110), - [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), - [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [8713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 264), - [8715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 187), - [8717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 54), - [8719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 265), - [8721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 266), - [8723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 188), - [8725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 267), - [8727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 268), - [8729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_overlay_hide_repeat1, 2, 0, 0), SHIFT_REPEAT(856), - [8732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_overlay_hide_repeat1, 2, 0, 0), SHIFT_REPEAT(5410), - [8735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_hide_repeat1, 2, 0, 0), SHIFT_REPEAT(5404), - [8738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), - [8740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), - [8742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 269), - [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), - [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), - [8748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5709), - [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5462), - [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7815), - [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6172), - [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7382), - [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6928), - [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), - [8764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5499), - [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), - [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6224), - [8770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 3, 0, 67), - [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), - [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), - [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7846), - [8780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5171), - [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), - [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [8786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5232), - [8788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 116), - [8790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 116), - [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), - [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5422), - [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6593), - [8798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 124), - [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), - [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), - [8806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 59), - [8808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 59), - [8810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 62), - [8812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 62), - [8814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5178), - [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), - [8818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), - [8820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(5223), - [8823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), - [8825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_overlay_hide_repeat1, 2, 0, 0), SHIFT_REPEAT(858), - [8828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_overlay_hide_repeat1, 2, 0, 0), SHIFT_REPEAT(5530), - [8831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_hide_repeat1, 2, 0, 0), SHIFT_REPEAT(5499), - [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6681), - [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6952), - [8838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6172), - [8840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7382), - [8842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6928), - [8844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [8846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [8848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(5348), - [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), - [8853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [8855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [8859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5350), - [8861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5616), - [8863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5598), - [8865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5923), - [8867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6175), - [8869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5961), - [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [8873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5484), - [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7133), - [8877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [8879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), - [8881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), - [8883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6902), - [8885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), - [8887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), - [8889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4574), - [8891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4508), - [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), - [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), - [8897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4794), - [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), - [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6303), - [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6304), - [8905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5217), - [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5519), - [8909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6863), - [8911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4768), - [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), - [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6277), - [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6278), - [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5866), - [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5867), - [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), - [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), - [8927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5240), - [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5579), - [8931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5462), - [8934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5267), - [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), - [8938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5460), - [8940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5885), - [8942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5682), - [8944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6038), - [8946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7067), - [8948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6626), - [8950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6559), - [8952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), - [8954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), - [8956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [8958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), - [8960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [8962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 67), - [8964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [8966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [8968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [8970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), - [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), - [8976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5525), - [8979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 165), - [8981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 124), - [8983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 165), - [8985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 198), - [8987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 7, 0, 198), - [8989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), - [8991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [8993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [8999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), - [9001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), - [9003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), - [9005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [9007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [9009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [9011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [9013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), - [9015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), - [9017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), - [9019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), - [9021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), - [9023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), - [9025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), - [9027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [9029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [9031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), - [9033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4018), - [9035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), - [9037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), - [9039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), - [9041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), - [9043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), - [9045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), - [9047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), - [9049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4063), - [9051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), - [9053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), - [9055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3939), - [9057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), - [9059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), - [9061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), - [9063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), - [9065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), - [9067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), - [9069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), - [9071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), - [9073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), - [9075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), - [9077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4068), - [9079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), - [9081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), - [9083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), - [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [9087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5410), - [9090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5404), - [9093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5866), - [9095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5867), - [9097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6687), - [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), - [9101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5638), - [9103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6153), - [9105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5826), - [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), - [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), - [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5656), - [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6279), - [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576), - [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), - [9119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5530), - [9122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5499), - [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6435), - [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), - [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), - [9131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5335), - [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), - [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5556), - [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5557), - [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5561), - [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6406), - [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), - [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), - [9147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4645), - [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), - [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6204), - [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6205), - [9155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 204), SHIFT_REPEAT(6819), - [9158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 204), SHIFT_REPEAT(6281), - [9161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 204), SHIFT_REPEAT(5195), - [9164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 204), SHIFT_REPEAT(7606), - [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), - [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), - [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6465), - [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), - [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), - [9177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5403), - [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5648), - [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6372), - [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6045), - [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6690), - [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6565), - [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6550), - [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6574), - [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), - [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5669), - [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [9219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5571), - [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6425), - [9223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5938), - [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6596), - [9227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6623), - [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5580), - [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [9233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5359), - [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), - [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6226), - [9239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5484), - [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6242), - [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5563), - [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), - [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), - [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), - [9254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 259), - [9256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4724), - [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5608), - [9260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 259), - [9262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 201), - [9264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6312), - [9266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 201), - [9268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 203), - [9270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6313), - [9272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 203), - [9274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 242), - [9276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6317), - [9278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 242), - [9280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 244), - [9282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6320), - [9284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 244), - [9286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6325), - [9288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6328), - [9290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 257), - [9292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6339), - [9294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 257), - [9296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6341), - [9298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6345), - [9300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6348), - [9302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6361), - [9304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6364), - [9306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6366), - [9308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6367), - [9310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6370), - [9312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6373), - [9314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6375), - [9316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6376), - [9318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6385), - [9320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6386), - [9322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6059), - [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5671), - [9326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5988), - [9328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5778), - [9331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5861), - [9334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3993), - [9336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6114), - [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), - [9340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6090), - [9342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5993), - [9344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5582), - [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5890), - [9348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6094), - [9350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5352), - [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6779), - [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6780), - [9356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(5608), - [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6508), - [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [9363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), - [9365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7766), - [9367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), - [9369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6063), - [9371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6521), - [9373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6066), - [9375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5996), - [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7775), - [9379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4773), - [9381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4774), - [9383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5574), - [9385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4802), - [9387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6532), - [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [9391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7784), - [9395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4811), - [9397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4827), - [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6535), - [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [9403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7793), - [9407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4834), - [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [9411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5662), - [9413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), - [9415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6147), - [9417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4843), - [9419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4960), - [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6544), - [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [9425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), - [9427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7796), - [9429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4881), - [9431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4890), - [9433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), - [9435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4905), - [9437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6309), - [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6548), - [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [9443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7797), - [9447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4763), - [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), - [9451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7202), - [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7210), - [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6554), - [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [9459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [9461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7799), - [9463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5713), - [9466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5709), - [9469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5420), - [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6557), - [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [9475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), - [9477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7800), - [9479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6560), - [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [9483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), - [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7801), - [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5658), - [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6566), - [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [9495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7803), - [9499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5981), - [9501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6822), - [9503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6017), - [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6569), - [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [9509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), - [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7804), - [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6572), - [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [9517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), - [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7805), - [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6575), - [9523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [9525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7806), - [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6577), - [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [9533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), - [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7807), - [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6581), - [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [9541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), - [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7809), - [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6583), - [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [9549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7810), - [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6585), - [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [9557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7811), - [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6587), - [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [9565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7812), - [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6589), - [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [9573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7813), - [9577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6003), - [9579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4908), - [9581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6079), - [9583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4915), - [9585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6004), - [9587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6026), - [9589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6049), - [9591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [9593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4921), - [9595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4926), - [9597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6051), - [9599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4950), - [9601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6053), - [9603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4954), - [9605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6095), - [9607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6056), - [9609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6123), - [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), - [9613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [9615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6058), - [9617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5686), - [9619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5687), - [9621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5953), - [9623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5968), - [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [9627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4731), - [9629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), - [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5892), - [9633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4734), - [9635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4735), - [9637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4736), - [9639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4737), - [9641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6283), - [9643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6284), - [9645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6087), - [9647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4739), - [9649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [9651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [9653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [9655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6308), - [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6451), - [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [9661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7720), - [9665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5533), - [9668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7065), - [9670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6846), - [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [9674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5384), - [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), - [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7446), - [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7449), - [9682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5407), - [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), - [9686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4895), - [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), - [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), - [9692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5078), - [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), - [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7347), - [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7350), - [9700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5650), - [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6110), - [9704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5102), - [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), - [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5951), - [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [9720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5337), - [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), - [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6886), - [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5700), - [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5990), - [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [9734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 9), - [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [9738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5000), - [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), - [9742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7591), - [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5893), - [9746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(5758), - [9749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5837), - [9752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5837), - [9755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5067), - [9757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), - [9759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 11), - [9761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [9763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6483), - [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5939), - [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5652), - [9771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), - [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), - [9777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5655), - [9779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4801), - [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), - [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [9785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5976), - [9787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), - [9789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5037), - [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), - [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [9795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6007), - [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [9805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5038), - [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), - [9809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [9811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 42), - [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6149), - [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6215), - [9819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5369), - [9821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), - [9823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), - [9825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4850), - [9827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), - [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), - [9831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), - [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5457), - [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6756), - [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [9839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 3, 0, 0), - [9841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5039), - [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), - [9845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 87), - [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), - [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7016), - [9857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), - [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [9861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 71), SHIFT_REPEAT(107), - [9864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 71), SHIFT_REPEAT(6483), - [9867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 71), - [9869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), - [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), - [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [9875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5479), - [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [9880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5770), - [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6409), - [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), - [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), - [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), - [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5948), - [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6434), - [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [9924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7573), - [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6029), - [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [9932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [9934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [9936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), - [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6179), - [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), - [9942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), - [9944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 2, 0, 0), - [9946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), - [9948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6097), - [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6182), - [9954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), - [9956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6669), - [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [9960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 44), - [9962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), - [9964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [9966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7087), - [9968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [9970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5342), - [9972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), - [9974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5379), - [9976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), - [9978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4997), - [9980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), - [9982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4998), - [9984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), - [9986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4999), - [9988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), - [9990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5001), - [9992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), - [9994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), - [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [10000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 13), - [10002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), - [10004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), - [10006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [10008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [10010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6068), - [10012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), - [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), - [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [10018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), - [10020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), - [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [10024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), - [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), - [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6084), - [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), - [10052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 27), - [10054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 28), - [10056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5725), - [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6185), - [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [10064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6145), - [10066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), - [10069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [10071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6889), - [10073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), - [10075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [10077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [10079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7086), - [10081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5145), - [10083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), - [10085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5969), - [10087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [10089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [10091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6440), - [10093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6306), - [10095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6307), - [10097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5336), - [10099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), - [10101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 71), SHIFT_REPEAT(104), - [10104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 71), SHIFT_REPEAT(6889), - [10107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 71), - [10109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), - [10111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [10113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [10115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), - [10117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6321), - [10119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6324), - [10121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [10123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), - [10125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [10127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [10129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6329), - [10131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [10133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [10135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6330), - [10137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [10139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [10141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [10143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [10145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6349), - [10147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6350), - [10149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6177), - [10151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5971), - [10153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [10155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), - [10157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [10159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), - [10161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), - [10163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), - [10165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [10167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4797), - [10169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4800), - [10171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [10173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [10175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [10177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), - [10179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [10181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5534), - [10183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [10185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [10187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [10189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), - [10191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7069), - [10193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6178), - [10195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), - [10197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), - [10199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6162), - [10201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), - [10203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5934), - [10205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), - [10207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4876), - [10209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4878), - [10211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [10213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [10215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 0, 195), - [10217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 195), - [10219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 196), - [10221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 196), - [10223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [10225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [10227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [10229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5970), - [10231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6018), - [10233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6024), - [10235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [10237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4899), - [10239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6248), - [10241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), - [10243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6633), - [10245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7075), - [10247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5098), - [10249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4900), - [10251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6039), - [10253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [10255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5837), - [10258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5837), - [10261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [10263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6221), - [10265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4922), - [10267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4924), - [10269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [10271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [10273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7015), - [10275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [10277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5361), - [10279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), - [10281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [10283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [10285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), - [10287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [10289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 2, 0, 30), - [10291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_list, 2, 0, 0), - [10293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6759), - [10295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6636), - [10297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7357), - [10299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [10301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [10303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5629), - [10305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), - [10307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6864), - [10309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [10311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), - [10313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), - [10315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 149), - [10317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [10319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [10321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5188), - [10323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), - [10325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [10327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [10329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 134), - [10331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 135), - [10333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 136), - [10335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 139), - [10337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 142), - [10339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 143), - [10341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5411), - [10343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), - [10345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), - [10347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6263), - [10349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), - [10351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6264), - [10353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [10355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [10357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [10359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), - [10361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [10363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 158), - [10365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), - [10367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6286), - [10369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), - [10371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6287), - [10373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), - [10375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6168), - [10377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), - [10379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6288), - [10381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [10383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [10385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [10387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [10389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 174), - [10391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 175), - [10393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), - [10395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6310), - [10397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), - [10399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6311), - [10401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [10403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 143), - [10405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 180), - [10407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 181), - [10409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [10411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 41), - [10413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [10415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [10417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [10419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 45), - [10421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 199), - [10423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1, 0, 0), - [10425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 46), - [10427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 180), - [10429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 209), - [10431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 47), - [10433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 181), - [10435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 48), - [10437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 49), - [10439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5209), - [10441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), - [10443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), - [10445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5224), - [10447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5189), - [10449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 6, 0, 209), - [10451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 3, 0, 55), - [10453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), - [10455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), - [10457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), - [10459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3964), - [10461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), - [10463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), - [10465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3977), - [10467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), - [10469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 56), - [10471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), - [10473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), SHIFT_REPEAT(6864), - [10476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [10478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [10480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [10482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [10484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [10486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), - [10488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [10490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [10492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [10494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [10496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [10498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), - [10500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), - [10502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), - [10504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4165), - [10506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4194), - [10508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4196), - [10510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4197), - [10512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4205), - [10514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), - [10516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), - [10518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4215), - [10520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [10522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7131), - [10524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [10526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), - [10528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), - [10530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 64), - [10532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), - [10534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), - [10536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [10538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), - [10540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), - [10542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), - [10544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), - [10546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), - [10548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [10550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), - [10552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 65), - [10554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), - [10556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5673), - [10558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 3, 0, 29), - [10560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 3, 0, 66), - [10562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), - [10564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), - [10566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), - [10568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4091), - [10570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), - [10572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), - [10574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), - [10576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), - [10578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_new, 3, 0, 68), - [10580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [10582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [10584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), - [10586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6067), - [10588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), - [10590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), - [10592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6070), - [10594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4858), - [10596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4862), - [10598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4864), - [10600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4865), - [10602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4868), - [10604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4869), - [10606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4871), - [10608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4872), - [10610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), - [10612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5991), - [10614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), - [10616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5418), - [10618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), - [10620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5978), - [10622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5331), - [10624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [10626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [10628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [10630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [10632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), - [10634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [10636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [10638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [10640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), - [10642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), - [10644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [10646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), - [10648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6005), - [10650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6005), - [10652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5478), - [10654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5486), - [10656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5490), - [10658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5491), - [10660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5500), - [10662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5503), - [10664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5508), - [10666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5514), - [10668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), - [10670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [10672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [10674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [10676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), - [10678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), - [10680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), - [10682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), - [10684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), - [10686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), - [10688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), - [10690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), - [10692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), - [10694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4758), - [10696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), - [10698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4760), - [10700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3959), - [10702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [10704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [10706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7026), - [10708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [10710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [10712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [10714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5601), - [10716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5603), - [10718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), - [10720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), - [10722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), - [10724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), - [10726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), - [10728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), - [10730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), - [10732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), - [10734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5604), - [10736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [10738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5612), - [10740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5632), - [10742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [10744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [10746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 34), - [10748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 34), - [10750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), - [10752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), - [10754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), - [10756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), - [10758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), - [10760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), - [10762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), - [10764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), - [10766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [10768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), - [10770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4206), - [10772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5283), - [10774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5262), - [10776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5314), - [10778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5319), - [10780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5231), - [10782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5250), - [10784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5263), - [10786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5278), - [10788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6111), - [10790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [10792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), - [10794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [10796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [10798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [10800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [10802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [10804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [10806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [10808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [10810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5169), - [10812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5973), - [10814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6167), - [10816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [10818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [10820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [10822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [10824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [10826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [10828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [10830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [10832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), - [10834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [10836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [10838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5165), - [10840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [10842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [10844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4910), - [10846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), - [10848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), - [10850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [10852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), - [10854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), - [10856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5524), - [10858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), - [10860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), - [10862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [10864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [10866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), - [10868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [10870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [10872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [10874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), - [10876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), - [10878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), - [10880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [10882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [10884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), - [10886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), - [10888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), - [10890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), - [10892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), - [10894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), - [10896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [10898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [10900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [10902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), - [10904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [10906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [10908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [10910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), - [10912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), - [10914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [10916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), - [10918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), - [10920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [10922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [10924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [10926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), - [10928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), - [10930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [10932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [10934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), - [10936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), - [10938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [10940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [10942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [10944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [10946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [10948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [10950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [10952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [10954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), - [10956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), - [10958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4775), - [10960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), - [10962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4784), - [10964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [10966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), - [10968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4785), - [10970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), - [10972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4786), - [10974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 81), - [10976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5618), - [10978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5619), - [10980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5621), - [10982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6759), - [10985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5534), - [10988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5873), - [10990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5873), - [10992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), - [10994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 1, 0, 0), - [10996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7057), - [10998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 88), - [11000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 89), - [11002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 90), - [11004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 91), - [11006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [11008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), - [11010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4822), - [11012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), - [11014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4824), - [11016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5623), - [11018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), - [11020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), - [11022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [11024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [11026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 1, 0, 4), - [11028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), - [11030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7079), - [11032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), - [11034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7285), - [11036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7461), - [11038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_hide, 1, 0, 0), - [11040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [11042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [11044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_overlay, 1, 0, 0), - [11046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), - [11048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), - [11050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [11052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4360), - [11054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4364), - [11056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4366), - [11058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4367), - [11060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), - [11062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4371), - [11064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), - [11066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4374), - [11068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4067), - [11070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 98), - [11072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 99), - [11074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), - [11076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 103), - [11078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 103), - [11080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 10), - [11082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 10), - [11084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 10), - [11086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 4, 0, 108), - [11088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 4, 0, 0), - [11090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 12), - [11092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5323), - [11094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), - [11096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5190), - [11098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), - [11100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5317), - [11102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), - [11104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6790), - [11106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [11108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), - [11110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6148), - [11112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), - [11114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5947), - [11116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 12), - [11118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(7064), - [11121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 103), - [11123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 103), - [11125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [11127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), - [11129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), - [11131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6009), - [11133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), - [11135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6036), - [11137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), - [11139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 25), - [11141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 26), - [11143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), - [11145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5606), - [11147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [11149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6994), - [11151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4235), - [11153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4185), - [11155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4187), - [11157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4190), - [11159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4195), - [11161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4202), - [11163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4203), - [11165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4248), - [11167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), - [11169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7599), - [11171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7372), - [11173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), - [11175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), - [11177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), - [11179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), - [11181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), - [11183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), - [11185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [11187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7690), - [11189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), - [11191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), - [11193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), - [11195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6246), - [11197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6247), - [11199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), - [11201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(7372), - [11204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5676), - [11206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5678), - [11208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5679), - [11210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__all_type, 1, 0, 94), - [11212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 94), - [11214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), - [11216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), - [11218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), - [11220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4116), - [11222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), - [11224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4163), - [11226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), - [11228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4095), - [11230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), - [11232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6008), - [11234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [11236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6043), - [11238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [11240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 128), - [11242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 128), SHIFT_REPEAT(6994), - [11245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [11247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4856), - [11249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), - [11251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4859), - [11253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4860), - [11255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4861), - [11257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4863), - [11259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4866), - [11261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4867), - [11263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4870), - [11265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6316), - [11267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6318), - [11269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5030), - [11271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [11273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [11275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), - [11277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), - [11279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [11281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7457), - [11283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7459), - [11285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [11287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6069), - [11289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [11291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [11293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [11295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [11297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [11299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [11301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [11303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6343), - [11305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6347), - [11307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [11309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6351), - [11311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6362), - [11313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [11315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [11317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7441), - [11319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5469), - [11321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5480), - [11323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5483), - [11325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5485), - [11327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5488), - [11329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6368), - [11331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5494), - [11333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5497), - [11335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6371), - [11337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5506), - [11339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [11341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [11343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), - [11345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), - [11347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [11349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), - [11351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), - [11353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), - [11355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), - [11357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), - [11359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), - [11361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), - [11363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), - [11365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6950), - [11367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), - [11369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [11371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [11373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), - [11375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [11377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6270), - [11379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [11381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [11383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5841), - [11385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5602), - [11387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), - [11389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), - [11391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), - [11393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), - [11395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 81), - [11397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), - [11399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), - [11401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), - [11403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), - [11405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5605), - [11407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 34), - [11409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 34), - [11411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [11413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [11415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), - [11417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7042), - [11419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), - [11421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), - [11423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), - [11425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), - [11427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), - [11429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), - [11431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), - [11433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7127), - [11435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7044), - [11437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [11439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [11441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5246), - [11443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5315), - [11445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5228), - [11447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5245), - [11449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5281), - [11451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5194), - [11453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5221), - [11455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5259), - [11457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6207), - [11459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), - [11461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [11463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6100), - [11465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [11467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [11469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [11471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5654), - [11473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [11475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [11477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [11479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [11481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5965), - [11483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [11485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 10), - [11487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [11489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [11491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [11493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [11495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [11497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [11499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [11501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [11503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5722), - [11505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [11507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), - [11509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 69), - [11511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7303), - [11513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3962), - [11515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3963), - [11517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), - [11519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3997), - [11521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), - [11523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), - [11525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), - [11527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [11529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5793), - [11531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7598), - [11533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5983), - [11535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7863), - [11537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 10), - [11539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5620), - [11541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [11543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 19), - [11545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 10), - [11547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5707), - [11549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [11551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), - [11553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6811), - [11555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), - [11557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [11559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7325), - [11561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [11563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4836), - [11565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6265), - [11567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4845), - [11569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [11571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [11573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 134), - [11575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 139), - [11577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4909), - [11579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4919), - [11581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), - [11583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5989), - [11585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [11587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4925), - [11589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4948), - [11591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4725), - [11593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4732), - [11595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4358), - [11597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [11599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1350), - [11602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), - [11604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4361), - [11606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4362), - [11608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4363), - [11610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 31), - [11612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4365), - [11614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [11616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4368), - [11618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4472), - [11620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [11622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4372), - [11624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [11626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5844), - [11628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5924), - [11630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), - [11632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 150), SHIFT_REPEAT(853), - [11635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [11637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5903), - [11639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [11641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 104), - [11643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 51), - [11645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [11647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [11649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [11651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [11653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [11655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5914), - [11657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5733), - [11659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [11661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5809), - [11663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), - [11665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5823), - [11667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [11669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [11671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5843), - [11673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5860), - [11675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5872), - [11677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [11679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5889), - [11681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5910), - [11683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 90), - [11685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5822), - [11687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5026), - [11689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5706), - [11691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 91), - [11693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5710), - [11695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5719), - [11697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5724), - [11699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5734), - [11701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5738), - [11703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 51), - [11705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5744), - [11707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 52), - [11709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), - [11711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5747), - [11713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 104), - [11715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5853), - [11717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), - [11719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5854), - [11721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 52), - [11723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5753), - [11725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5755), - [11727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5761), - [11729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5763), - [11731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5767), - [11733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5769), - [11735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5773), - [11737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5775), - [11739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6074), - [11741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5777), - [11743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5779), - [11745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 41), - [11747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), - [11749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [11751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7302), - [11753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7754), - [11755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [11757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4894), - [11759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6115), - [11761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4896), - [11763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [11765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), - [11767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized, 1, 0, 4), - [11769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6755), - [11771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), - [11773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4416), - [11775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4427), - [11777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 126), - [11779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4293), - [11781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), - [11783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [11785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [11787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [11789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [11791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4547), - [11793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [11795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4548), - [11797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [11799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4689), - [11801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4690), - [11803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), - [11805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_type, 3, 0, 179), - [11807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 179), - [11809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), - [11811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 10, 196), - [11813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 10, 196), - [11815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [11817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4686), - [11819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4687), - [11821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [11823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [11825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7434), - [11828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [11830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7866), - [11832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), - [11834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [11836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7317), - [11839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6685), - [11841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6642), - [11843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7331), - [11846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6421), - [11848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6422), - [11850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [11852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [11854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [11856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [11858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [11860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), - [11862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [11864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 2, 0, 35), - [11866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 2, 0, 35), - [11868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [11870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6305), - [11872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [11874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7710), - [11876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), - [11878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), - [11880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6319), - [11882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5052), - [11884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7782), - [11886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6638), - [11888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6662), - [11890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [11892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [11894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [11896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4545), - [11898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 17), - [11900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), - [11902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4546), - [11904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 18), - [11906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 18), - [11908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 10, 195), - [11910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 10, 195), - [11912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), - [11914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), - [11916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), - [11918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7781), - [11920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4738), - [11922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [11924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), - [11926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [11928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6192), - [11930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), - [11932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [11934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5649), - [11936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [11938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [11940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4767), - [11942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [11944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [11946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), - [11948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [11950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5840), - [11952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), - [11954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), - [11956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [11958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [11960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4840), - [11962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), - [11964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), - [11966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6268), - [11968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7595), - [11970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), - [11972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [11974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [11976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [11978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [11980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), - [11982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), - [11984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 1, 0, 97), - [11986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [11988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6289), - [11990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [11992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [11994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), - [11996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4621), - [11998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [12000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [12002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [12004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), - [12006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [12008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7675), - [12010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5844), - [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), - [12014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), - [12016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [12018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [12020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), - [12022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [12024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), - [12026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), - [12028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), - [12030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), - [12032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [12034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7380), - [12036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [12038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5800), - [12040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5924), - [12042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), - [12044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [12046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [12048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), - [12050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [12052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7818), - [12054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [12056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5633), - [12058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6726), - [12060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), - [12062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [12064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7837), - [12066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6814), - [12068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [12070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5646), - [12072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4649), - [12074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [12076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [12078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [12080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), - [12082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [12084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5311), - [12086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [12088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [12090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6782), - [12092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), - [12094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), - [12096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [12098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [12100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7289), - [12102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), - [12104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [12106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [12108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [12110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [12112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [12114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), - [12116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6788), - [12118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7870), - [12120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [12122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [12124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 138), - [12126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [12128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [12130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7025), - [12132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), - [12134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), - [12136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7696), - [12138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7403), - [12140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [12142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [12144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [12146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [12148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [12150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), - [12152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5926), - [12154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [12156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [12158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [12160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [12162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), - [12164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), - [12166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), - [12168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7778), - [12170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), - [12172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 93), - [12174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6140), - [12176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [12178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), - [12180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [12182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [12184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), - [12186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), - [12188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), - [12190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), - [12192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), - [12194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [12196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [12198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [12200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2, 0, 0), - [12202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), - [12204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [12206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7654), - [12208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), - [12210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [12212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [12214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [12216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [12218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [12220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [12222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7476), - [12224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [12226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5849), - [12228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [12230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7653), - [12232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 6, 0, 229), - [12234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [12236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [12238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [12240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [12242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5820), - [12244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [12246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 93), - [12248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7777), - [12250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [12252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), - [12254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [12256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), - [12258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), - [12260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [12262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 93), - [12264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7684), - [12266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5659), - [12268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7623), - [12270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), - [12272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [12274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), - [12276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [12278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [12280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), - [12282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 138), - [12284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), - [12286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [12288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), - [12290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [12292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7792), - [12294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), - [12296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), - [12298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [12300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [12302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5928), - [12304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [12306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6924), - [12308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [12310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7610), - [12312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), - [12314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [12316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6048), - [12318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [12320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [12322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [12324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [12326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [12328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), - [12330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7486), - [12332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [12334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [12336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [12338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [12340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [12342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [12344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), - [12346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [12348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), - [12350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), - [12352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [12354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7566), - [12356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7616), - [12358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), - [12360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [12362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), - [12364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 229), - [12366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [12368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7630), - [12370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7196), - [12372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [12374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5935), - [12376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6917), - [12378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), - [12380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [12382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [12384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7686), - [12386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4658), - [12388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [12390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), - [12392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [12394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [12396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), - [12398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [12400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [12402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7726), - [12404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [12406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [12408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [12410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [12412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), - [12414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), - [12416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), - [12418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7768), - [12420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [12422] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [12424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), - [12426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [12428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [12430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), - [12432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [12434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7780), - [12436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7790), - [12438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7827), - [12440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7848), - [12442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7859), - [12444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7641), - [12446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7503), - [12448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7659), - [12450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7850), - [12452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7549), - [12454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7597), - [12456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7621), - [12458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7667), - [12460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7712), - [12462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7739), - [12464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7755), - [12466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7764), - [12468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7819), - [12470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7867), - [12472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7474), - [12474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7491), - [12476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), - [12478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [12480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [12482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [12484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [12486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [12488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [12490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [12492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [12494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [12496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [12498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [12500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [12502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [12504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [12506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), - [12508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [12510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), - [12512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [12514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [12516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [12518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), - [12520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [12522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [12524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), - [12526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [12528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 208), - [12530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [12532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [12534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [12536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), - [12538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [12540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), - [12542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6156), - [12544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), - [12546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [12548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [12550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [12552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), - [12554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 208), - [12556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4673), - [12558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5086), - [12560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [12562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), + [8480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 5, 0, 203), + [8482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 5, 0, 203), + [8484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_overlay_hide_repeat1, 2, 0, 0), SHIFT_REPEAT(868), + [8487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_overlay_hide_repeat1, 2, 0, 0), SHIFT_REPEAT(5378), + [8490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_hide_repeat1, 2, 0, 0), SHIFT_REPEAT(5345), + [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6347), + [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5861), + [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), + [8499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 133), + [8501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 133), + [8503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 209), + [8505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 210), + [8507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 211), + [8509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 212), + [8511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 213), + [8513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 214), + [8515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 215), + [8517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 216), + [8519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 1), + [8521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 2), + [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), + [8525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5701), + [8527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6668), + [8529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6149), + [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), + [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), + [8535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 5), + [8537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), + [8539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 119), + [8541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 20), + [8543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5035), + [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), + [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), + [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), + [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6392), + [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), + [8555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 227), + [8557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 228), + [8559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 229), + [8561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 230), + [8563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 231), + [8565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 232), + [8567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 233), + [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6050), + [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7030), + [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6574), + [8575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 234), + [8577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 235), + [8579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 236), + [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5977), + [8583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5977), + [8585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 244), + [8587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 245), + [8589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 246), + [8591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 247), + [8593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 248), + [8595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 249), + [8597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), + [8599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 250), + [8601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 251), + [8603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 260), + [8605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 261), + [8607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 262), + [8609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 263), + [8611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 264), + [8613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 265), + [8615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 272), + [8617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 273), + [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5984), + [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6343), + [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6202), + [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6600), + [8629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [8631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6754), + [8633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5515), + [8636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 3, 0, 157), + [8638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 3, 0, 157), + [8640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_hide, 3, 0, 63), + [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), + [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), + [8646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 52), + [8648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 172), + [8650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 172), + [8652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5102), + [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), + [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [8664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(280), + [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [8673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(230), + [8676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(256), + [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [8681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(262), + [8684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 155), + [8686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 156), + [8688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 183), + [8690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 184), + [8692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7415), + [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), + [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5960), + [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), + [8700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5182), + [8702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), + [8704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), + [8706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5124), + [8708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5304), + [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [8712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_hide, 4, 0, 63), + [8714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_hide, 4, 0, 120), + [8716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 58), + [8718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 58), + [8720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 59), + [8722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 59), + [8724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 61), + [8726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 61), + [8728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 243), + [8730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_overlay_hide_repeat1, 2, 0, 0), SHIFT_REPEAT(849), + [8733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_overlay_hide_repeat1, 2, 0, 0), SHIFT_REPEAT(5485), + [8736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_hide_repeat1, 2, 0, 0), SHIFT_REPEAT(5547), + [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), + [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), + [8743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 112), + [8745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 112), + [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), + [8751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5547), + [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5462), + [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7465), + [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7803), + [8759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), + [8761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(5305), + [8764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), + [8766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 120), + [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6288), + [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7333), + [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6895), + [8776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 3, 0, 63), + [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [8780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 57), + [8782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 57), + [8784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 60), + [8786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 60), + [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), + [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5769), + [8792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5840), + [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6593), + [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), + [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), + [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), + [8802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5169), + [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), + [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), + [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), + [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6493), + [8812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5172), + [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), + [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6221), + [8818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5310), + [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [8822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3954), + [8824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), + [8826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3962), + [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6798), + [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [8832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7252), + [8834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 161), + [8836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), + [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5564), + [8840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7003), + [8842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5462), + [8845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5482), + [8847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5888), + [8849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5668), + [8851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6050), + [8853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7030), + [8855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6574), + [8857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [8859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [8861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [8863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [8865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [8867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [8869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [8871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 161), + [8873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5623), + [8875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5960), + [8877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5845), + [8879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 120), + [8881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6288), + [8883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7333), + [8885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6895), + [8887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5546), + [8890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 194), + [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [8894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6517), + [8896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), + [8898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), + [8900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5415), + [8902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5634), + [8904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5563), + [8906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5714), + [8908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6607), + [8910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6026), + [8912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 7, 0, 194), + [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7043), + [8916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [8918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [8920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [8922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [8924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [8926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), + [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), + [8936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), + [8938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), + [8940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), + [8942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [8944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [8946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), + [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), + [8952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [8954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [8956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), + [8958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), + [8960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [8962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [8964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [8966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5315), + [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5577), + [8970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), + [8972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), + [8974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), + [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [8978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), + [8980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), + [8982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), + [8984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4061), + [8986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), + [8988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4095), + [8990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3922), + [8992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3972), + [8994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3937), + [8996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), + [8998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), + [9000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), + [9002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), + [9004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), + [9006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), + [9008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), + [9010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4165), + [9012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), + [9014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), + [9016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), + [9018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), + [9020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(5379), + [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), + [9025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4831), + [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), + [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6311), + [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6312), + [9033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [9035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5858), + [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5859), + [9041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5378), + [9044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5345), + [9047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5250), + [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), + [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), + [9053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5526), + [9055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [9057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [9059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5858), + [9061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5859), + [9063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6170), + [9065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4230), + [9067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), + [9069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4697), + [9071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4548), + [9073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 63), + [9075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4838), + [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), + [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6177), + [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), + [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), + [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), + [9087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), + [9089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), + [9091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), + [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6524), + [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), + [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6268), + [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6668), + [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6149), + [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), + [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6506), + [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6533), + [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6389), + [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), + [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), + [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [9141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5575), + [9143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5485), + [9146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5547), + [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6274), + [9151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 200), SHIFT_REPEAT(7005), + [9154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 200), SHIFT_REPEAT(6270), + [9157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 200), SHIFT_REPEAT(5291), + [9160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 200), SHIFT_REPEAT(7593), + [9163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5397), + [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5667), + [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), + [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), + [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), + [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), + [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), + [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5537), + [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6419), + [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), + [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), + [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), + [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6498), + [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6576), + [9193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5398), + [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), + [9197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4704), + [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), + [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6677), + [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6678), + [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5578), + [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6223), + [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6235), + [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5581), + [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), + [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), + [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5619), + [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6666), + [9223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), + [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6595), + [9227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5526), + [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), + [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), + [9234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5359), + [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5637), + [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), + [9240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 255), + [9242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6650), + [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5626), + [9246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 255), + [9248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 253), + [9250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6021), + [9252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 253), + [9254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6022), + [9256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 238), + [9258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6117), + [9260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 238), + [9262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 240), + [9264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5989), + [9266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 240), + [9268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 197), + [9270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4932), + [9272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 197), + [9274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 199), + [9276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4726), + [9278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 199), + [9280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4908), + [9282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4855), + [9284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6048), + [9286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5926), + [9288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4759), + [9290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4795), + [9292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4957), + [9294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), + [9296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6063), + [9298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4775), + [9300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4788), + [9302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4920), + [9304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4933), + [9306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4837), + [9308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4757), + [9310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4765), + [9312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4910), + [9314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4925), + [9316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4884), + [9318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4888), + [9320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4902), + [9322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4922), + [9324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4731), + [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), + [9328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5944), + [9330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5954), + [9332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6064), + [9334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6078), + [9336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [9338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6116), + [9340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6037), + [9342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5360), + [9344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5985), + [9346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5962), + [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7192), + [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7193), + [9352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5583), + [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5899), + [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [9360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6364), + [9362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6366), + [9364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6575), + [9366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6578), + [9368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6587), + [9370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6592), + [9372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6604), + [9374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6606), + [9376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6611), + [9378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6614), + [9380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6619), + [9382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6620), + [9384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6629), + [9386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6633), + [9388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6640), + [9390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6645), + [9392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6649), + [9394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6658), + [9396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6663), + [9398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6667), + [9400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6669), + [9402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6670), + [9404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6672), + [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6405), + [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [9410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7708), + [9414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), + [9416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4732), + [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), + [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7074), + [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7119), + [9424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5769), + [9427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5840), + [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6457), + [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [9434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), + [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7754), + [9438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(5626), + [9441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4803), + [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6471), + [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5952), + [9447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5929), + [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7763), + [9451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5579), + [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6482), + [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [9457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7772), + [9461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6008), + [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6486), + [9465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [9467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7781), + [9471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6012), + [9473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6159), + [9475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6053), + [9477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), + [9479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6500), + [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [9483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), + [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7784), + [9487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4068), + [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6504), + [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [9493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7785), + [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6510), + [9499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [9501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7787), + [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), + [9507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5331), + [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [9511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5655), + [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6514), + [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [9517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), + [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7788), + [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6518), + [9523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [9525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), + [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7789), + [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6525), + [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [9533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7791), + [9537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6704), + [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6528), + [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [9543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), + [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7792), + [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6531), + [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [9551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), + [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7793), + [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6534), + [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [9559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7794), + [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6536), + [9565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [9567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), + [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7795), + [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6540), + [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [9575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), + [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7797), + [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6542), + [9581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [9583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7798), + [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6544), + [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [9591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7799), + [9595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6546), + [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [9599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7800), + [9603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6548), + [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [9607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7801), + [9611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5925), + [9613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6023), + [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5648), + [9617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6032), + [9619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5783), + [9622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5843), + [9625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5928), + [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [9629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [9631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5687), + [9633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5688), + [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5677), + [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), + [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5908), + [9641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6153), + [9643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [9645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [9647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [9649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4789), + [9651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5123), + [9653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), + [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7421), + [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7426), + [9659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4972), + [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), + [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6992), + [9665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6707), + [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), + [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [9673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5023), + [9675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), + [9677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [9679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5636), + [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6104), + [9683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(5861), + [9686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5874), + [9689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5874), + [9692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4997), + [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), + [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7354), + [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7406), + [9700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5404), + [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), + [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6154), + [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5905), + [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), + [9720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7704), + [9722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 9), + [9724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5552), + [9727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 11), + [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [9731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4905), + [9733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), + [9735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5400), + [9737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), + [9739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6882), + [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), + [9743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5325), + [9745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), + [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6122), + [9749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6680), + [9751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6161), + [9753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 42), + [9755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5763), + [9757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), + [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [9761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6057), + [9763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [9771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7631), + [9773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6290), + [9777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [9779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6966), + [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5875), + [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6612), + [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [9787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7203), + [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [9801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5649), + [9805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5522), + [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), + [9812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6811), + [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), + [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [9828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), + [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6007), + [9836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 2, 0, 0), + [9838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), + [9840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), + [9842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4919), + [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), + [9846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5947), + [9854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6195), + [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), + [9862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6015), + [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5647), + [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), + [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), + [9874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690), + [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), + [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), + [9880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6088), + [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [9890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 13), + [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), + [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5232), + [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), + [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), + [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [9910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 67), SHIFT_REPEAT(108), + [9913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 67), SHIFT_REPEAT(6290), + [9916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 67), + [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), + [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5077), + [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [9924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [9932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [9934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5092), + [9936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), + [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), + [9942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), + [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6673), + [9946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), + [9948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5132), + [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), + [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [9954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [9956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [9960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), + [9963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [9965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [9967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5055), + [9969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), + [9971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [9973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5981), + [9975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [9977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5955), + [9979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 83), + [9981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5373), + [9983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), + [9985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5343), + [9987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), + [9989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [9991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5063), + [9993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), + [9995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5384), + [9997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), + [9999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), + [10001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5081), + [10003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), + [10005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5082), + [10007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), + [10009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5083), + [10011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), + [10013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6038), + [10015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6617), + [10017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), + [10019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), + [10021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4751), + [10023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5080), + [10025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), + [10027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [10029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 3, 0, 0), + [10031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 40), + [10033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6011), + [10035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [10037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6043), + [10039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [10041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [10043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6082), + [10045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [10047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6143), + [10049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [10051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5143), + [10053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), + [10055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [10057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [10059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [10061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7000), + [10063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [10065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6328), + [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [10069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6330), + [10071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [10073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [10075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6810), + [10077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), + [10079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4790), + [10081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6013), + [10083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [10085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [10087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6214), + [10089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [10091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [10093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5657), + [10095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [10097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), + [10099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [10101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 67), SHIFT_REPEAT(101), + [10104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 67), SHIFT_REPEAT(7000), + [10107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 67), + [10109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), + [10111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [10113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), + [10115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 0, 191), + [10117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 191), + [10119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [10121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6212), + [10123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [10125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [10127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), + [10129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [10131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5158), + [10133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), + [10135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [10137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), + [10139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 192), + [10141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 192), + [10143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [10145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5874), + [10148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5874), + [10151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [10153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6027), + [10155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6061), + [10157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [10159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [10161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [10163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [10165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5309), + [10167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5418), + [10169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), + [10171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6591), + [10173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7048), + [10175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [10177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6631), + [10179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5950), + [10181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), + [10183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4744), + [10185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), + [10187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7038), + [10189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [10191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6034), + [10193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4812), + [10195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6569), + [10197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6570), + [10199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [10201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4860), + [10203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [10205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [10207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6960), + [10209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4935), + [10211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6608), + [10213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6609), + [10215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [10217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [10219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [10221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5068), + [10223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6615), + [10225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6618), + [10227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), + [10229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), + [10231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4735), + [10233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [10235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4820), + [10237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6682), + [10239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), + [10241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [10243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6634), + [10245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6637), + [10247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4811), + [10249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [10251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5375), + [10253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), + [10255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6002), + [10257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6045), + [10259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4730), + [10261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [10263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [10265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [10267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [10269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6004), + [10271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 145), + [10273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4418), + [10275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5613), + [10277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7055), + [10279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [10281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [10283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), + [10285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), + [10287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [10289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 1, 0, 4), + [10291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [10293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), + [10295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_hide, 1, 0, 0), + [10297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_overlay, 1, 0, 0), + [10299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), + [10301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6973), + [10303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5841), + [10305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5841), + [10307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), + [10309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), + [10311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 10), + [10313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 10), + [10315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 10), + [10317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 131), + [10319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 12), + [10321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), + [10323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [10325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 154), + [10327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 132), + [10329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [10331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [10333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7079), + [10335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [10337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 12), + [10339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [10341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [10343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 99), + [10345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 99), + [10347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [10349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), + [10351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), + [10353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6241), + [10355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), + [10357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6242), + [10359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [10361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [10363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [10365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 99), + [10367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 99), + [10369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 25), + [10371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 26), + [10373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 135), + [10375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 2, 0, 28), + [10377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_list, 2, 0, 0), + [10379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [10381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5178), + [10383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), + [10385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), + [10387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6378), + [10389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), + [10391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6379), + [10393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), + [10395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6380), + [10397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), + [10399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6394), + [10401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [10403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [10405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [10407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [10409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7207), + [10411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 4, 0, 0), + [10413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [10415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7273), + [10417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [10419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [10421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), + [10423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6579), + [10425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), + [10427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6581), + [10429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [10431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 195), + [10433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 39), + [10435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [10437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [10439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 176), + [10441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), + [10443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), + [10445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 43), + [10447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1, 0, 0), + [10449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 44), + [10451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 45), + [10453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 46), + [10455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 47), + [10457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [10459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 205), + [10461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 177), + [10463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [10465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [10467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 3, 0, 53), + [10469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5292), + [10471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 54), + [10473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5298), + [10475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5188), + [10477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), + [10479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6028), + [10481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), + [10483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6030), + [10485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [10487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7207), + [10490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), + [10492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), + [10494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), + [10496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3979), + [10498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), + [10500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), + [10502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3989), + [10504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3991), + [10506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6349), + [10508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7449), + [10510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [10512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [10514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5389), + [10516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), + [10518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 32), + [10520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 32), + [10522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 3, 0, 27), + [10524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 3, 0, 62), + [10526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_new, 3, 0, 64), + [10528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [10530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [10532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [10534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [10536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [10538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [10540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [10542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [10544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [10546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [10548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [10550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3894), + [10552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), + [10554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), + [10556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [10558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 138), + [10560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), + [10562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4172), + [10564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4176), + [10566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4177), + [10568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4194), + [10570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4201), + [10572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4203), + [10574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4211), + [10576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5669), + [10578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [10580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), + [10582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), + [10584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5940), + [10586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5940), + [10588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), + [10590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), + [10592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), + [10594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), + [10596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), + [10598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [10600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [10602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), + [10604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [10606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), + [10608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), + [10610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), SHIFT_REPEAT(6973), + [10613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4071), + [10615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), + [10617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6146), + [10619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), + [10621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6105), + [10623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7068), + [10625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7335), + [10627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4096), + [10629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), + [10631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), + [10633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), + [10635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4152), + [10637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), + [10639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), + [10641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4113), + [10643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [10645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [10647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [10649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4847), + [10651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4889), + [10653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4897), + [10655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4900), + [10657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4947), + [10659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4733), + [10661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723), + [10663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4760), + [10665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4107), + [10667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5387), + [10669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5409), + [10671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [10673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [10675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [10677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [10679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [10681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [10683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [10685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [10687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), + [10689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [10691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), + [10693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), + [10695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4929), + [10697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), + [10699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4936), + [10701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5461), + [10703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5468), + [10705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5470), + [10707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5472), + [10709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5475), + [10711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5476), + [10713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5478), + [10715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5480), + [10717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5608), + [10719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), + [10721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [10723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5658), + [10725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5617), + [10727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [10729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), + [10731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), + [10733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), + [10735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), + [10737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), + [10739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), + [10741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), + [10743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), + [10745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 6, 0, 205), + [10747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), + [10749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [10751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [10753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), + [10755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), + [10757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), + [10759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), + [10761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), + [10763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), + [10765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), + [10767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), + [10769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [10771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5596), + [10773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5600), + [10775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), + [10777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), + [10779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), + [10781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), + [10783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), + [10785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), + [10787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), + [10789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), + [10791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [10793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), + [10795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), + [10797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5208), + [10799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5212), + [10801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5214), + [10803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5215), + [10805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5218), + [10807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5219), + [10809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5221), + [10811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5222), + [10813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5995), + [10815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [10817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), + [10819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [10821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [10823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [10825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [10827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [10829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [10831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [10833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [10835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [10837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5553), + [10840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5152), + [10842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5990), + [10844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6009), + [10846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [10848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [10850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [10852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [10854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [10856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [10858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [10860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [10862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), + [10864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [10866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 77), + [10868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [10870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5154), + [10872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [10874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [10876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(7284), + [10879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4818), + [10881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), + [10883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), + [10885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), + [10887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4804), + [10889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [10891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), + [10893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), + [10895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4807), + [10897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), + [10899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), + [10901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4810), + [10903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5488), + [10905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), + [10907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [10909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), + [10911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4857), + [10913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), + [10915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [10917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [10919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [10921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), + [10923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), + [10925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), + [10927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [10929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [10931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5664), + [10933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), + [10935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), + [10937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), + [10939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5672), + [10941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), + [10943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), + [10945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), + [10947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [10949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [10951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [10953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5605), + [10955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), + [10957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [10959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [10961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [10963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), + [10965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), + [10967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [10969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), + [10971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), + [10973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [10975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [10977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [10979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), + [10981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), + [10983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [10985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [10987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), + [10989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), + [10991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [10993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [10995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [10997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [10999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [11001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [11003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [11005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [11007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3942), + [11009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 170), + [11011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [11013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 171), + [11015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [11017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 139), + [11019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 84), + [11021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 85), + [11023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 86), + [11025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 87), + [11027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [11029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [11031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7177), + [11033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), + [11035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4794), + [11037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), + [11039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4798), + [11041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5607), + [11043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 94), + [11045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [11047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 95), + [11049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7052), + [11051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [11053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5938), + [11055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), + [11057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5945), + [11059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), + [11061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5961), + [11063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), + [11065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5980), + [11067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), + [11069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 4, 0, 104), + [11071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4412), + [11073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4416), + [11075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4419), + [11077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4249), + [11079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4422), + [11081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4424), + [11083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4425), + [11085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4065), + [11087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [11089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 1, 0, 0), + [11091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [11093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [11095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 130), + [11097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5241), + [11099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), + [11101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5242), + [11103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), + [11105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5243), + [11107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), + [11109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 139), + [11111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 176), + [11113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 177), + [11115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), + [11117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [11119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), + [11121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [11123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [11125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [11127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7309), + [11129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4236), + [11131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6665), + [11133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [11135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7331), + [11137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4205), + [11139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4207), + [11141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4219), + [11143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), + [11145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), + [11147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), + [11149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 49), + [11151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4202), + [11153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), + [11155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6671), + [11157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5671), + [11159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7225), + [11161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5603), + [11163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5638), + [11165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 49), + [11167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 124), + [11169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 124), SHIFT_REPEAT(7270), + [11172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), + [11174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7270), + [11176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7321), + [11178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 100), + [11180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 86), + [11182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [11184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), + [11186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 87), + [11188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), + [11190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), + [11192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), + [11194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), + [11196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), + [11198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 39), + [11200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), + [11202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), + [11204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), + [11206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 50), + [11208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), + [11210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), + [11212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), + [11214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized, 1, 0, 4), + [11216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), + [11218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), + [11220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), + [11222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), + [11224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), + [11226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), + [11228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), + [11230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), + [11232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 10), + [11234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), + [11236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5933), + [11238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(7296), + [11241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [11243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [11245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4841), + [11247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6016), + [11249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4850), + [11251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4865), + [11253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4879), + [11255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [11257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4891), + [11259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 10), + [11261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4914), + [11263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4926), + [11265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 10), + [11267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4740), + [11269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 50), + [11271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5974), + [11273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [11275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7482), + [11277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [11279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [11281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7487), + [11283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [11285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [11287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [11289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [11291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [11293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [11295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [11297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [11299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), + [11301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [11303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5452), + [11305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6261), + [11307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5463), + [11309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5464), + [11311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5465), + [11313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5469), + [11315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5473), + [11317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5474), + [11319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5477), + [11321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5609), + [11323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6602), + [11325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6605), + [11327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [11329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5621), + [11331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5624), + [11333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [11335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), + [11337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), + [11339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), + [11341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), + [11343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), + [11345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), + [11347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), + [11349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), + [11351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7091), + [11353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), + [11355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6623), + [11357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), + [11359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), + [11361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6632), + [11363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), + [11365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), + [11367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), + [11369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), + [11371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), + [11373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), + [11375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6639), + [11377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), + [11379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6642), + [11381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1400), + [11384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), + [11386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [11388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6654), + [11390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [11392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), + [11394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6659), + [11396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), + [11398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [11400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), + [11402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), + [11404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [11406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), + [11408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), + [11410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [11412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [11414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), + [11416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [11418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7283), + [11420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [11422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [11424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5206), + [11426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5209), + [11428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5210), + [11430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5211), + [11432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5213), + [11434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5216), + [11436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5217), + [11438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5220), + [11440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [11442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [11444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [11446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [11448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [11450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [11452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [11454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [11456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [11458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [11460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [11462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [11464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [11466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [11468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), + [11470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), + [11472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [11474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), + [11476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [11478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 29), + [11480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [11482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7533), + [11484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7296), + [11486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6561), + [11488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5685), + [11490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [11492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7295), + [11494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [11496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5599), + [11498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [11500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [11502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [11504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [11506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [11508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), + [11510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), + [11512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), + [11514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5728), + [11516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3967), + [11518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [11520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3968), + [11522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), + [11524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3982), + [11526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3985), + [11528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6069), + [11530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6137), + [11532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 146), SHIFT_REPEAT(852), + [11535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), + [11537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [11539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5770), + [11541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), + [11543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 32), + [11545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 32), + [11547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), + [11549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5636), + [11551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6076), + [11553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [11555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4758), + [11557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4780), + [11559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [11561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7112), + [11563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6049), + [11565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [11567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [11569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 130), + [11571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4853), + [11573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7380), + [11575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4921), + [11577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 135), + [11579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4833), + [11581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4923), + [11583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4913), + [11585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [11587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4939), + [11589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7751), + [11591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5773), + [11593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4410), + [11595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4413), + [11597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4414), + [11599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4415), + [11601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4417), + [11603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4420), + [11605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4421), + [11607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), + [11609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4423), + [11611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6054), + [11613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4903), + [11615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5739), + [11617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), + [11619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6075), + [11621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5751), + [11623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4911), + [11625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 19), + [11627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__all_type, 1, 0, 90), + [11629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 90), + [11631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 77), + [11633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [11635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), + [11637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [11639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5716), + [11641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5720), + [11643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [11645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [11647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [11649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5741), + [11651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5743), + [11653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [11655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5749), + [11657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5752), + [11659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5855), + [11661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [11663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5760), + [11665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [11667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5762), + [11669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7604), + [11671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5768), + [11673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5771), + [11675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [11677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [11679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5778), + [11681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5781), + [11683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5098), + [11685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5788), + [11687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5792), + [11689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5798), + [11691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5799), + [11693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5803), + [11695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5806), + [11697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5879), + [11699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5880), + [11701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5811), + [11703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5812), + [11705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6244), + [11707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5817), + [11709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5922), + [11711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6855), + [11713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5823), + [11715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5825), + [11717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5829), + [11719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5831), + [11721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5833), + [11723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5834), + [11725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6879), + [11727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [11729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 100), + [11731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [11733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 65), + [11735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7440), + [11737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [11739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [11741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5094), + [11743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), + [11745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [11747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [11749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), + [11751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), + [11753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 10, 191), + [11755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 10, 191), + [11757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 18), + [11759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 18), + [11761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4321), + [11763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4324), + [11765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [11767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [11769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [11771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [11773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 17), + [11775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), + [11777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4368), + [11779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4372), + [11781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [11783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [11785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), + [11787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [11789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [11791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [11793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [11795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6458), + [11797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6460), + [11799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [11801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6180), + [11803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [11805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [11807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 2, 0, 33), + [11809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 2, 0, 33), + [11811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6196), + [11813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 10, 192), + [11815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 10, 192), + [11817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7325), + [11820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4501), + [11822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7435), + [11825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4526), + [11827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6207), + [11829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), + [11831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), + [11833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [11835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [11837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_type, 3, 0, 175), + [11839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 175), + [11841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4491), + [11843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [11845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [11847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [11849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [11851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4494), + [11853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [11855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [11857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6258), + [11859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6260), + [11861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7351), + [11864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [11866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [11868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [11870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7711), + [11872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4572), + [11874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4597), + [11876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4609), + [11878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4626), + [11880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6194), + [11882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 122), + [11884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [11886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [11888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [11890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7777), + [11892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4967), + [11894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7676), + [11896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [11898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7336), + [11900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5992), + [11902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [11904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [11906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [11908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [11910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [11912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5959), + [11914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [11916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [11918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [11920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), + [11922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 89), + [11924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [11926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [11928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7673), + [11930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [11932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5319), + [11934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [11936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [11938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [11940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), + [11942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6417), + [11944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4840), + [11946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [11948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 1, 0, 93), + [11950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 134), + [11952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [11954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), + [11956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [11958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [11960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 204), + [11962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [11964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), + [11966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [11968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [11970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), + [11972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [11974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [11976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [11978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), + [11980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [11982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [11984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7851), + [11986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [11988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [11990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5918), + [11992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [11994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [11996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), + [11998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [12000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [12002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5665), + [12004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6733), + [12006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), + [12008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [12010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), + [12014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [12016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [12018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [12020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), + [12022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5837), + [12024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [12026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), + [12028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [12030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [12032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), + [12034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7757), + [12036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [12038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [12040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [12042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7816), + [12044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), + [12046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [12048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), + [12050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7459), + [12052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), + [12054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [12056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 6, 0, 225), + [12058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [12060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), + [12062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), + [12064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7288), + [12066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), + [12068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [12070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [12072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [12074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [12076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7132), + [12078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5723), + [12080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [12082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [12084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7042), + [12086] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [12088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [12090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [12092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), + [12094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), + [12096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4588), + [12098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4839), + [12100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4948), + [12102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [12104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [12106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [12108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [12110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [12112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4590), + [12114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [12116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [12118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [12120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [12122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7148), + [12124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [12126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5901), + [12128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [12130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7844), + [12132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [12134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [12136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [12138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), + [12140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5399), + [12142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [12144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 89), + [12146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [12148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [12150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835), + [12152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [12154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [12156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7497), + [12158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [12160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), + [12162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6754), + [12164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6464), + [12166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), + [12168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), + [12170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), + [12172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6158), + [12174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [12176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [12178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7804), + [12180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 89), + [12182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), + [12184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [12186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [12188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [12190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), + [12192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [12194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), + [12196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [12198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7474), + [12200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), + [12202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2, 0, 0), + [12204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7513), + [12206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [12208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5813), + [12210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [12212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), + [12214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [12216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [12218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7577), + [12220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), + [12222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [12224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [12226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [12228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), + [12230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [12232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), + [12234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [12236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [12238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7767), + [12240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), + [12242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7728), + [12244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [12246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [12248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5739), + [12250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), + [12252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [12254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [12256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), + [12258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [12260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7602), + [12262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5639), + [12264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), + [12266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), + [12268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 134), + [12270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [12272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [12274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), + [12276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [12278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [12280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [12282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7750), + [12284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6940), + [12286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), + [12288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [12290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [12292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [12294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6894), + [12296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [12298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7612), + [12300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [12302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4968), + [12304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [12306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [12308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4949), + [12310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [12312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5996), + [12314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [12316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [12318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [12320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7463), + [12322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [12324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [12326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), + [12328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [12330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [12332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), + [12334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), + [12336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [12338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), + [12340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [12342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7552), + [12344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [12346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), + [12348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7858), + [12350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), + [12352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7623), + [12354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6983), + [12356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), + [12358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6246), + [12360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), + [12362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [12364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 225), + [12366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [12368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [12370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7679), + [12372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [12374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [12376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [12378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [12380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [12382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [12384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7717), + [12386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), + [12388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [12390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4657), + [12392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), + [12394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [12396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7758), + [12398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863), + [12400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [12402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [12404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), + [12406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [12408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [12410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7771), + [12412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7779), + [12414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7832), + [12416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7847), + [12418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7854), + [12420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7538), + [12422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7753), + [12424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7491), + [12426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7550), + [12428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7582), + [12430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7603), + [12432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7659), + [12434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7693), + [12436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7718), + [12438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7752), + [12440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7807), + [12442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7458), + [12444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7464), + [12446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7475), + [12448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7483), + [12450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7496), + [12452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), + [12454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), + [12456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [12458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [12460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [12462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [12464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), + [12466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [12468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5606), + [12470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [12472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), + [12474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [12476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [12478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), + [12480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [12482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), + [12484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [12486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5602), + [12488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [12490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [12492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), + [12494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), + [12496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), + [12498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), + [12500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [12502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [12504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [12506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), + [12508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), + [12510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), + [12512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [12514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 204), + [12516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), + [12518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), + [12520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [12522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [12524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [12526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), + [12528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [12530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5852), + [12532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [12534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [12536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), + [12538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7058), + [12540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), }; enum ts_external_scanner_symbol_identifiers { @@ -446346,10 +448572,10 @@ static const bool ts_external_scanner_states[5][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_raw_string_begin] = true, }, [3] = { - [ts_external_token_raw_string_content] = true, + [ts_external_token_raw_string_end] = true, }, [4] = { - [ts_external_token_raw_string_end] = true, + [ts_external_token_raw_string_content] = true, }, }; diff --git a/test/corpus/pipe/where.nu b/test/corpus/pipe/where.nu index aa2ae3c..5f230c8 100644 --- a/test/corpus/pipe/where.nu +++ b/test/corpus/pipe/where.nu @@ -203,3 +203,30 @@ name !~ foo (val_bool) (val_string) (val_string)))))))) + +===== +where-008-operators +===== + +ls | where name has "e" +ls | where name not-has "e" + +----- + +(nu_script + (pipeline + (pipe_element + (command + head: (cmd_identifier))) + (pipe_element + (where_command + lhs: (val_string) + rhs: (val_string)))) + (pipeline + (pipe_element + (command + head: (cmd_identifier))) + (pipe_element + (where_command + lhs: (val_string) + rhs: (val_string))))) diff --git a/test/corpus/stmt/register.nu b/test/corpus/stmt/register.nu deleted file mode 100644 index 68b8484..0000000 --- a/test/corpus/stmt/register.nu +++ /dev/null @@ -1,112 +0,0 @@ -===== -register-001-smoke-test -===== - -register ~/plugins/nu-plugin-math - ------ - -(nu_script - (stmt_register - (val_string))) - -===== -register-002-semicolon -===== - -register ~/plugins/nu-plugin-math; - ------ - -(nu_script - (stmt_register - (val_string))) - -===== -register-003-signature -===== - -register ~/plugins/nu-plugin-math { - "sig": { - "name": "nu-plugin-math", - "usage": "Math stuff", - "extra_usage": "", - "input_type": "Any", - "output_type": "Any", - "required_positional": [ - { - "name": "a", - "desc": "required integer value", - "shape": "Int", - "var_id": None, - }, - { - "name": "b", - "desc": "required string value", - "shape": "String", - "var_id": None, - }, - ], - } -} - ------ - -(nu_script - (stmt_register - (val_string) - (val_record - (record_body - (record_entry - (val_string) - (val_record - (record_body - (record_entry - (val_string) - (val_string)) - (record_entry - (val_string) - (val_string)) - (record_entry - (val_string) - (val_string)) - (record_entry - (val_string) - (val_string)) - (record_entry - (val_string) - (val_string)) - (record_entry - (val_string) - (val_list - (list_body - (val_entry - (val_record - (record_body - (record_entry - (val_string) - (val_string)) - (record_entry - (val_string) - (val_string)) - (record_entry - (val_string) - (val_string)) - (record_entry - (val_string) - (val_string))))) - (val_entry - (val_record - (record_body - (record_entry - (val_string) - (val_string)) - (record_entry - (val_string) - (val_string)) - (record_entry - (val_string) - (val_string)) - (record_entry - (val_string) - (val_string)))))))))))))))